diff --git a/.codespellrc b/.codespellrc new file mode 100644 index 0000000..d34191e --- /dev/null +++ b/.codespellrc @@ -0,0 +1,3 @@ +[codespell] +skip = assets/**,addons/**,LICENSES/** +ignore-words-list = lod,LOD diff --git a/.env b/.env new file mode 100644 index 0000000..618dcaa --- /dev/null +++ b/.env @@ -0,0 +1,10 @@ +# Variables used by the Justfile + +# Godot + +GODOT_VERSION=4.2.2-stable + +# Game + +GAME_NAME=Frogger3D +GAME_VERSION=0.1.0 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..4f57441 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,15 @@ +# Properly detect languages on Github. +*.gd linguist-language=GDScript + +# Normalize EOL for all files that Git considers text files. +* text=auto eol=lf + +# The above only works properly for Git 2.10+, so for older versions +# we need to manually list the binary files we don't want modified. +*.mp3 binary +*.png binary +*.hdr binary + +# The .godot folder is generated and doesn't need to be committed, +# but CI won't work without it, so mark it to be hidden by default in diffs. +.godot/**/* linguist-generated=true diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..5762821 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,34 @@ +{ + "customManagers": [ + { + "customType": "regex", + "fileMatch": ["^plug\\.gd$"], + "matchStrings": [ + "\\s+plug\\(\\s*\"(?.*)\",\\s+{\\s*\"commit\":\\s*\"(?.*)\",\\s*\"renovate-branch\":\\s*\"(?.*)\"" + ], + "packageNameTemplate": "https://github.com/{{{depName}}}.git", + "versioningTemplate": "git", + "datasourceTemplate": "git-refs" + }, + { + "customType": "regex", + "fileMatch": ["^plug\\.gd$"], + "matchStrings": [ + "\\s+plug\\(\"(?.*?)\",\\ \\{\\s*\"tag\":\\ \"(?.*)\"" + ], + "packageNameTemplate": "https://github.com/{{{depName}}}.git", + "versioningTemplate": "git", + "datasourceTemplate": "git-tags" + }, + { + "customType": "regex", + "fileMatch": ["^.env$"], + "matchStrings": ["GODOT_VERSION=(?.*?)\\n"], + "depNameTemplate": "godotengine/godot", + "packageNameTemplate": "https://github.com/godotengine/godot.git", + "versioningTemplate": "loose", + "extractVersionTemplate": "^(?.*)$", + "datasourceTemplate": "git-tags" + } + ] +} diff --git a/.github/workflows/changelog_verifier.yml b/.github/workflows/changelog_verifier.yml new file mode 100644 index 0000000..3582306 --- /dev/null +++ b/.github/workflows/changelog_verifier.yml @@ -0,0 +1,15 @@ +name: Changelog Verifier + +on: + pull_request: + types: [opened, edited, review_requested, synchronize, reopened, ready_for_review, labeled, unlabeled] + +jobs: + # Enforces the update of a changelog file on every pull request + verify-changelog: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: dangoslen/changelog-enforcer@v3 + with: + skipLabels: "autocut, skip-changelog" diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml new file mode 100644 index 0000000..644f7c2 --- /dev/null +++ b/.github/workflows/links.yml @@ -0,0 +1,20 @@ +name: Link Checker + +on: + pull_request: + types: [opened, edited, review_requested, synchronize, reopened, ready_for_review, labeled, unlabeled] + +jobs: + linkchecker: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: lychee Link Checker + id: lychee + uses: lycheeverse/lychee-action@v1 + with: + args: --accept=200,403,429 "**/*.html" "**/*.md" "**/*.txt" "**/*.json" --exclude "file:///github/workspace/*" --exclude-path ".github/renovate.json" --exclude-mail + fail: true + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/lint_pr_title.yml b/.github/workflows/lint_pr_title.yml new file mode 100644 index 0000000..8ed41cb --- /dev/null +++ b/.github/workflows/lint_pr_title.yml @@ -0,0 +1,31 @@ +name: Lint PR Title + +on: + pull_request_target: + types: [opened, edited, synchronize] + +permissions: + pull-requests: read + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + scopes: | + addons + assets + scripts + scenes + dependabot + workflows + readme + changelog + deps + requireScope: false + validateSingleCommit: true + validateSingleCommitMatchesPrTitle: true diff --git a/.github/workflows/release-packaging.yml b/.github/workflows/release-packaging.yml new file mode 100644 index 0000000..5788f42 --- /dev/null +++ b/.github/workflows/release-packaging.yml @@ -0,0 +1,128 @@ +name: Release Packaging + +on: + workflow_dispatch: + # Ensure the build works on main + push: + branches: [main] + tags: ['*'] + # Ensure the build works on each pull request + pull_request: + +env: + BRANCH_NAME: ${{ github.head_ref || github.ref_name }} + +jobs: + check: + runs-on: ubuntu-22.04 + timeout-minutes: 30 + + steps: + - uses: actions/checkout@v4 + - uses: extractions/setup-just@v2 + + - name: Load dotenv + run: just ci-load-dotenv + + - name: Check + run: just fmt + + - name: Ensure version is equal to tag + if: startsWith(github.ref, 'refs/tags/') + run: | + [ "${{ env.game_version }}" == "${{ env.BRANCH_NAME }}" ] || exit 2 + + build: + runs-on: ubuntu-22.04 + timeout-minutes: 30 + needs: [check] + + steps: + - uses: actions/checkout@v4 + - uses: extractions/setup-just@v2 + + - name: Load dotenv + run: just ci-load-dotenv + + - name: Cache Godot + uses: actions/cache@v4 + with: + path: | + ~/.mkflower/bin + ~/.local/share/godot/export_templates + key: ${{ env.godot_version }} + + - name: Export + run: just export + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: ${{ env.game_name }}-v${{ env.game_version }} + path: dist/* + retention-days: 1 + + deploy: + runs-on: ubuntu-22.04 + timeout-minutes: 30 + needs: [check] + + if: github.ref == 'refs/heads/main' + + steps: + - uses: actions/checkout@v4 + - uses: extractions/setup-just@v2 + + - name: Load dotenv + run: just ci-load-dotenv + + - name: Cache Godot + uses: actions/cache@v4 + with: + path: | + ~/.mkflower/bin + ~/.local/share/godot/export_templates + key: ${{ env.godot_version }} + + - name: Export + run: just export-web + + # Installing rsync is needed in order to deploy to GitHub Pages. Without it, the build will fail. + - name: Install rsync + run: | + sudo apt-get update && sudo apt-get install -y rsync + + - name: Deploy to GitHub Pages + uses: JamesIves/github-pages-deploy-action@v4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + branch: gh-pages + folder: build/web + + publish: + runs-on: ubuntu-22.04 + timeout-minutes: 30 + needs: [build] + + if: startsWith(github.ref, 'refs/tags/') + + steps: + - uses: actions/checkout@v4 + - uses: extractions/setup-just@v2 + + - name: Load dotenv + run: just ci-load-dotenv + + - name: Download artifact + uses: dawidd6/action-download-artifact@v3 + with: + workflow: ${{ github.event.workflow_run.workflow_id }} + name: ${{ env.game_name }}-v${{ env.game_version }} + path: dist/ + skip_unpack: false + + - name: Publish + run: just ci-publish + env: + BUTLER_API_KEY: ${{ secrets.BUTLER_API_KEY }} + GITHUB_TOKEN: ${{ secrets.PAT }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..53f39ca --- /dev/null +++ b/.gitignore @@ -0,0 +1,28 @@ +# Godot-specific ignores +.godot/* +!.godot/imported/ +!.godot/global_script_class_cache.cfg +.import/ +gfxrecon_capture_* + +# Imported translations (automatically generated from CSV files) +*.translation + +# Mono-specific ignores +.mono/ +data_*/ + +# gd-plug +.plugged/ +addons/* +!addons/gd-plug/ +!addons/export-build-info/ +!addons/gh-release-checker/ + +# Python-specific ignores +venv/ + +# Export output +dist/ +build/ +override.cfg diff --git a/.godot/global_script_class_cache.cfg b/.godot/global_script_class_cache.cfg new file mode 100644 index 0000000..dfd00de --- /dev/null +++ b/.godot/global_script_class_cache.cfg @@ -0,0 +1,7 @@ +list=Array[Dictionary]([{ +"base": &"CharacterBody3D", +"class": &"MovementController", +"icon": "", +"language": &"GDScript", +"path": "res://scripts/player/movement_controller.gd" +}]) diff --git a/.godot/imported/0.ogg-5ef8b74463428fdad8a56714d7e5402e.md5 b/.godot/imported/0.ogg-5ef8b74463428fdad8a56714d7e5402e.md5 new file mode 100644 index 0000000..0d05181 --- /dev/null +++ b/.godot/imported/0.ogg-5ef8b74463428fdad8a56714d7e5402e.md5 @@ -0,0 +1,2 @@ +source_md5="603b69b0ae3dee4a3d634191d1dd6624" +dest_md5="b751d3a31145409bea56af6ca8667d62" diff --git a/.godot/imported/0.ogg-5ef8b74463428fdad8a56714d7e5402e.oggvorbisstr b/.godot/imported/0.ogg-5ef8b74463428fdad8a56714d7e5402e.oggvorbisstr new file mode 100644 index 0000000..70b14c1 Binary files /dev/null and b/.godot/imported/0.ogg-5ef8b74463428fdad8a56714d7e5402e.oggvorbisstr differ diff --git a/.godot/imported/0.ogg-75601aff950ad181168655f618e1a769.md5 b/.godot/imported/0.ogg-75601aff950ad181168655f618e1a769.md5 new file mode 100644 index 0000000..023ceba --- /dev/null +++ b/.godot/imported/0.ogg-75601aff950ad181168655f618e1a769.md5 @@ -0,0 +1,2 @@ +source_md5="9e3a37a589c1e3a82521d3a6d036cec1" +dest_md5="fca49b3082316543df402e67fabf2cba" diff --git a/.godot/imported/0.ogg-75601aff950ad181168655f618e1a769.oggvorbisstr b/.godot/imported/0.ogg-75601aff950ad181168655f618e1a769.oggvorbisstr new file mode 100644 index 0000000..75e427e Binary files /dev/null and b/.godot/imported/0.ogg-75601aff950ad181168655f618e1a769.oggvorbisstr differ diff --git a/.godot/imported/1.ogg-6d7761761d201543914d0157e12981ad.md5 b/.godot/imported/1.ogg-6d7761761d201543914d0157e12981ad.md5 new file mode 100644 index 0000000..906f108 --- /dev/null +++ b/.godot/imported/1.ogg-6d7761761d201543914d0157e12981ad.md5 @@ -0,0 +1,2 @@ +source_md5="1b51c7f8ca07f1ec47bf108456e9aba8" +dest_md5="84554495b08997cdb26ca3faa981bdb4" diff --git a/.godot/imported/1.ogg-6d7761761d201543914d0157e12981ad.oggvorbisstr b/.godot/imported/1.ogg-6d7761761d201543914d0157e12981ad.oggvorbisstr new file mode 100644 index 0000000..2c72bc3 Binary files /dev/null and b/.godot/imported/1.ogg-6d7761761d201543914d0157e12981ad.oggvorbisstr differ diff --git a/.godot/imported/1.ogg-945217c7ca09f7f0f84622f2c5ae1293.md5 b/.godot/imported/1.ogg-945217c7ca09f7f0f84622f2c5ae1293.md5 new file mode 100644 index 0000000..86189c1 --- /dev/null +++ b/.godot/imported/1.ogg-945217c7ca09f7f0f84622f2c5ae1293.md5 @@ -0,0 +1,2 @@ +source_md5="216bb6f3426e3b20d76e94fbce257f64" +dest_md5="e22b71306cab4f6d009e6b045f35dc28" diff --git a/.godot/imported/1.ogg-945217c7ca09f7f0f84622f2c5ae1293.oggvorbisstr b/.godot/imported/1.ogg-945217c7ca09f7f0f84622f2c5ae1293.oggvorbisstr new file mode 100644 index 0000000..ced9b2b Binary files /dev/null and b/.godot/imported/1.ogg-945217c7ca09f7f0f84622f2c5ae1293.oggvorbisstr differ diff --git a/.godot/imported/2.ogg-a4d2f4f89d5c79f7e6e61a2976c9238f.md5 b/.godot/imported/2.ogg-a4d2f4f89d5c79f7e6e61a2976c9238f.md5 new file mode 100644 index 0000000..de75d8f --- /dev/null +++ b/.godot/imported/2.ogg-a4d2f4f89d5c79f7e6e61a2976c9238f.md5 @@ -0,0 +1,2 @@ +source_md5="fc35f230d33696dcf6be4a5e68f31180" +dest_md5="177747ea58cad4c9578b17f756490c88" diff --git a/.godot/imported/2.ogg-a4d2f4f89d5c79f7e6e61a2976c9238f.oggvorbisstr b/.godot/imported/2.ogg-a4d2f4f89d5c79f7e6e61a2976c9238f.oggvorbisstr new file mode 100644 index 0000000..de4e2dd Binary files /dev/null and b/.godot/imported/2.ogg-a4d2f4f89d5c79f7e6e61a2976c9238f.oggvorbisstr differ diff --git a/.godot/imported/2.ogg-d4d948656139cac1ad8ea15a299f2bd5.md5 b/.godot/imported/2.ogg-d4d948656139cac1ad8ea15a299f2bd5.md5 new file mode 100644 index 0000000..c25c3a9 --- /dev/null +++ b/.godot/imported/2.ogg-d4d948656139cac1ad8ea15a299f2bd5.md5 @@ -0,0 +1,2 @@ +source_md5="a66aa6ae1bba2bee2295afb23bd13b8f" +dest_md5="6f8d49ff1a558bd68e02cf306799a607" diff --git a/.godot/imported/2.ogg-d4d948656139cac1ad8ea15a299f2bd5.oggvorbisstr b/.godot/imported/2.ogg-d4d948656139cac1ad8ea15a299f2bd5.oggvorbisstr new file mode 100644 index 0000000..8003e46 Binary files /dev/null and b/.godot/imported/2.ogg-d4d948656139cac1ad8ea15a299f2bd5.oggvorbisstr differ diff --git a/.godot/imported/3.ogg-77cc4fb1706a78fc48f09fdfd6f30125.md5 b/.godot/imported/3.ogg-77cc4fb1706a78fc48f09fdfd6f30125.md5 new file mode 100644 index 0000000..c28e21b --- /dev/null +++ b/.godot/imported/3.ogg-77cc4fb1706a78fc48f09fdfd6f30125.md5 @@ -0,0 +1,2 @@ +source_md5="73929c6b60004b96d5818036469cc2bd" +dest_md5="6710191d59a397d09ebd6ef1a73dbd18" diff --git a/.godot/imported/3.ogg-77cc4fb1706a78fc48f09fdfd6f30125.oggvorbisstr b/.godot/imported/3.ogg-77cc4fb1706a78fc48f09fdfd6f30125.oggvorbisstr new file mode 100644 index 0000000..52c58b1 Binary files /dev/null and b/.godot/imported/3.ogg-77cc4fb1706a78fc48f09fdfd6f30125.oggvorbisstr differ diff --git a/.godot/imported/3.ogg-d1867b78e8593038a43ee8c8da1e5e30.md5 b/.godot/imported/3.ogg-d1867b78e8593038a43ee8c8da1e5e30.md5 new file mode 100644 index 0000000..9a734d1 --- /dev/null +++ b/.godot/imported/3.ogg-d1867b78e8593038a43ee8c8da1e5e30.md5 @@ -0,0 +1,2 @@ +source_md5="b08416f2a84cec71c50caef1f015abd0" +dest_md5="3d93237f31e37dfcecee8866c0e5cdbc" diff --git a/.godot/imported/3.ogg-d1867b78e8593038a43ee8c8da1e5e30.oggvorbisstr b/.godot/imported/3.ogg-d1867b78e8593038a43ee8c8da1e5e30.oggvorbisstr new file mode 100644 index 0000000..3fc9f6f Binary files /dev/null and b/.godot/imported/3.ogg-d1867b78e8593038a43ee8c8da1e5e30.oggvorbisstr differ diff --git a/.godot/imported/4.ogg-5bcb9227bb35e189b7668e86adf48ede.md5 b/.godot/imported/4.ogg-5bcb9227bb35e189b7668e86adf48ede.md5 new file mode 100644 index 0000000..36403d3 --- /dev/null +++ b/.godot/imported/4.ogg-5bcb9227bb35e189b7668e86adf48ede.md5 @@ -0,0 +1,2 @@ +source_md5="6e06fd029965c8a592a7978fbfa39390" +dest_md5="3f55f474ed67827b69daea0d8936d3f1" diff --git a/.godot/imported/4.ogg-5bcb9227bb35e189b7668e86adf48ede.oggvorbisstr b/.godot/imported/4.ogg-5bcb9227bb35e189b7668e86adf48ede.oggvorbisstr new file mode 100644 index 0000000..77fc3c4 Binary files /dev/null and b/.godot/imported/4.ogg-5bcb9227bb35e189b7668e86adf48ede.oggvorbisstr differ diff --git a/.godot/imported/4.ogg-f32835d601cdaf86743f30016820a6aa.md5 b/.godot/imported/4.ogg-f32835d601cdaf86743f30016820a6aa.md5 new file mode 100644 index 0000000..5588ab7 --- /dev/null +++ b/.godot/imported/4.ogg-f32835d601cdaf86743f30016820a6aa.md5 @@ -0,0 +1,2 @@ +source_md5="75087bbe073c9a806c0e62b1ed723fa8" +dest_md5="ffedc94a3b96669a79fffa1c7d66a627" diff --git a/.godot/imported/4.ogg-f32835d601cdaf86743f30016820a6aa.oggvorbisstr b/.godot/imported/4.ogg-f32835d601cdaf86743f30016820a6aa.oggvorbisstr new file mode 100644 index 0000000..fd6745c Binary files /dev/null and b/.godot/imported/4.ogg-f32835d601cdaf86743f30016820a6aa.oggvorbisstr differ diff --git a/.godot/imported/5.ogg-1da32fca4bade8ccb2bf808029fb881c.md5 b/.godot/imported/5.ogg-1da32fca4bade8ccb2bf808029fb881c.md5 new file mode 100644 index 0000000..a62baf2 --- /dev/null +++ b/.godot/imported/5.ogg-1da32fca4bade8ccb2bf808029fb881c.md5 @@ -0,0 +1,2 @@ +source_md5="87ca2a172bbe9a6c56b1dabe1ca6581a" +dest_md5="6b0ce4c99daca1fdd7cfd4b94105ea49" diff --git a/.godot/imported/5.ogg-1da32fca4bade8ccb2bf808029fb881c.oggvorbisstr b/.godot/imported/5.ogg-1da32fca4bade8ccb2bf808029fb881c.oggvorbisstr new file mode 100644 index 0000000..cdbfa42 Binary files /dev/null and b/.godot/imported/5.ogg-1da32fca4bade8ccb2bf808029fb881c.oggvorbisstr differ diff --git a/.godot/imported/5.ogg-e59d0f1ad774a29cf2fa263e8dc95138.md5 b/.godot/imported/5.ogg-e59d0f1ad774a29cf2fa263e8dc95138.md5 new file mode 100644 index 0000000..e89df98 --- /dev/null +++ b/.godot/imported/5.ogg-e59d0f1ad774a29cf2fa263e8dc95138.md5 @@ -0,0 +1,2 @@ +source_md5="7e78765f4aafae5ad0c26cbfd9369e24" +dest_md5="dfe971bd89c2f7cebc6d4898da5524a7" diff --git a/.godot/imported/5.ogg-e59d0f1ad774a29cf2fa263e8dc95138.oggvorbisstr b/.godot/imported/5.ogg-e59d0f1ad774a29cf2fa263e8dc95138.oggvorbisstr new file mode 100644 index 0000000..aae7c8b Binary files /dev/null and b/.godot/imported/5.ogg-e59d0f1ad774a29cf2fa263e8dc95138.oggvorbisstr differ diff --git a/.godot/imported/6.ogg-b743a66a02f2bb5100a0950937c00771.md5 b/.godot/imported/6.ogg-b743a66a02f2bb5100a0950937c00771.md5 new file mode 100644 index 0000000..d700890 --- /dev/null +++ b/.godot/imported/6.ogg-b743a66a02f2bb5100a0950937c00771.md5 @@ -0,0 +1,2 @@ +source_md5="668b37215697a0db2b715eaa4018ac8c" +dest_md5="10ab9233cbcce9fc83699278bb59b130" diff --git a/.godot/imported/6.ogg-b743a66a02f2bb5100a0950937c00771.oggvorbisstr b/.godot/imported/6.ogg-b743a66a02f2bb5100a0950937c00771.oggvorbisstr new file mode 100644 index 0000000..a9cfbe4 Binary files /dev/null and b/.godot/imported/6.ogg-b743a66a02f2bb5100a0950937c00771.oggvorbisstr differ diff --git a/.godot/imported/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png-f0692e69ea5b47ebb2044af671126745.md5 b/.godot/imported/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png-f0692e69ea5b47ebb2044af671126745.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png-f0692e69ea5b47ebb2044af671126745.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png-f0692e69ea5b47ebb2044af671126745.s3tc.ctex b/.godot/imported/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png-f0692e69ea5b47ebb2044af671126745.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png-f0692e69ea5b47ebb2044af671126745.s3tc.ctex differ diff --git a/.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c.glb b/.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c.glb new file mode 100644 index 0000000..66e7ab9 Binary files /dev/null and b/.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c.glb differ diff --git a/.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png-da1aec616e68c0009e6ce4c3e7bd0071.md5 b/.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png-da1aec616e68c0009e6ce4c3e7bd0071.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png-da1aec616e68c0009e6ce4c3e7bd0071.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png-da1aec616e68c0009e6ce4c3e7bd0071.s3tc.ctex b/.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png-da1aec616e68c0009e6ce4c3e7bd0071.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png-da1aec616e68c0009e6ce4c3e7bd0071.s3tc.ctex differ diff --git a/.godot/imported/ambulance.fbx-ab4f68c6d5b3e553563bb3258f5a993c.md5 b/.godot/imported/ambulance.fbx-ab4f68c6d5b3e553563bb3258f5a993c.md5 new file mode 100644 index 0000000..1d9841d --- /dev/null +++ b/.godot/imported/ambulance.fbx-ab4f68c6d5b3e553563bb3258f5a993c.md5 @@ -0,0 +1,2 @@ +source_md5="6a1e2306bc9c09a376023d7a29e804d0" +dest_md5="36638579c823e09d51aa075e857f9774" diff --git a/.godot/imported/ambulance.fbx-ab4f68c6d5b3e553563bb3258f5a993c.scn b/.godot/imported/ambulance.fbx-ab4f68c6d5b3e553563bb3258f5a993c.scn new file mode 100644 index 0000000..78fc484 Binary files /dev/null and b/.godot/imported/ambulance.fbx-ab4f68c6d5b3e553563bb3258f5a993c.scn differ diff --git a/.godot/imported/balconyWall-80c6f78640d9a4bd596b9ff56755f6d0.glb b/.godot/imported/balconyWall-80c6f78640d9a4bd596b9ff56755f6d0.glb new file mode 100644 index 0000000..db8cd95 Binary files /dev/null and b/.godot/imported/balconyWall-80c6f78640d9a4bd596b9ff56755f6d0.glb differ diff --git a/.godot/imported/balconyWall.fbx-80c6f78640d9a4bd596b9ff56755f6d0.md5 b/.godot/imported/balconyWall.fbx-80c6f78640d9a4bd596b9ff56755f6d0.md5 new file mode 100644 index 0000000..fbff860 --- /dev/null +++ b/.godot/imported/balconyWall.fbx-80c6f78640d9a4bd596b9ff56755f6d0.md5 @@ -0,0 +1,2 @@ +source_md5="300d4c4e51f1b8454deba0caab927c91" +dest_md5="6f4ef8b3222c86514d34b534f83ef267" diff --git a/.godot/imported/balconyWall.fbx-80c6f78640d9a4bd596b9ff56755f6d0.scn b/.godot/imported/balconyWall.fbx-80c6f78640d9a4bd596b9ff56755f6d0.scn new file mode 100644 index 0000000..f1b370e Binary files /dev/null and b/.godot/imported/balconyWall.fbx-80c6f78640d9a4bd596b9ff56755f6d0.scn differ diff --git a/.godot/imported/balconyWallFence-a68f1ba3fa09b29b5f7dd6eaa9134e4f.glb b/.godot/imported/balconyWallFence-a68f1ba3fa09b29b5f7dd6eaa9134e4f.glb new file mode 100644 index 0000000..f0f344f Binary files /dev/null and b/.godot/imported/balconyWallFence-a68f1ba3fa09b29b5f7dd6eaa9134e4f.glb differ diff --git a/.godot/imported/balconyWallFence.fbx-a68f1ba3fa09b29b5f7dd6eaa9134e4f.md5 b/.godot/imported/balconyWallFence.fbx-a68f1ba3fa09b29b5f7dd6eaa9134e4f.md5 new file mode 100644 index 0000000..d4cd99e --- /dev/null +++ b/.godot/imported/balconyWallFence.fbx-a68f1ba3fa09b29b5f7dd6eaa9134e4f.md5 @@ -0,0 +1,2 @@ +source_md5="edeffa09e39fb41872836ba1c0abc836" +dest_md5="73b58deebebbcba44ece9f9d21f1f24c" diff --git a/.godot/imported/balconyWallFence.fbx-a68f1ba3fa09b29b5f7dd6eaa9134e4f.scn b/.godot/imported/balconyWallFence.fbx-a68f1ba3fa09b29b5f7dd6eaa9134e4f.scn new file mode 100644 index 0000000..c5d0b73 Binary files /dev/null and b/.godot/imported/balconyWallFence.fbx-a68f1ba3fa09b29b5f7dd6eaa9134e4f.scn differ diff --git a/.godot/imported/bannerGreen-af98aba154f80c18b7faa98a558ca7d0.glb b/.godot/imported/bannerGreen-af98aba154f80c18b7faa98a558ca7d0.glb new file mode 100644 index 0000000..6e43251 Binary files /dev/null and b/.godot/imported/bannerGreen-af98aba154f80c18b7faa98a558ca7d0.glb differ diff --git a/.godot/imported/bannerGreen.fbx-af98aba154f80c18b7faa98a558ca7d0.md5 b/.godot/imported/bannerGreen.fbx-af98aba154f80c18b7faa98a558ca7d0.md5 new file mode 100644 index 0000000..1935f3f --- /dev/null +++ b/.godot/imported/bannerGreen.fbx-af98aba154f80c18b7faa98a558ca7d0.md5 @@ -0,0 +1,2 @@ +source_md5="82bad9886cac53bdc1e01ac3b7d7c7c8" +dest_md5="fe8ab49b6bf4426ab6218c7dbe62196e" diff --git a/.godot/imported/bannerGreen.fbx-af98aba154f80c18b7faa98a558ca7d0.scn b/.godot/imported/bannerGreen.fbx-af98aba154f80c18b7faa98a558ca7d0.scn new file mode 100644 index 0000000..737ac73 Binary files /dev/null and b/.godot/imported/bannerGreen.fbx-af98aba154f80c18b7faa98a558ca7d0.scn differ diff --git a/.godot/imported/bannerRed-5d1b2642661f96cb66dae13962aeb57d.glb b/.godot/imported/bannerRed-5d1b2642661f96cb66dae13962aeb57d.glb new file mode 100644 index 0000000..e6440c5 Binary files /dev/null and b/.godot/imported/bannerRed-5d1b2642661f96cb66dae13962aeb57d.glb differ diff --git a/.godot/imported/bannerRed.fbx-5d1b2642661f96cb66dae13962aeb57d.md5 b/.godot/imported/bannerRed.fbx-5d1b2642661f96cb66dae13962aeb57d.md5 new file mode 100644 index 0000000..aaafa03 --- /dev/null +++ b/.godot/imported/bannerRed.fbx-5d1b2642661f96cb66dae13962aeb57d.md5 @@ -0,0 +1,2 @@ +source_md5="2f7aad3c6d1c8237ff79b4e3eb00b252" +dest_md5="5971b8a1c658898f28c85c68d91e1bb1" diff --git a/.godot/imported/bannerRed.fbx-5d1b2642661f96cb66dae13962aeb57d.scn b/.godot/imported/bannerRed.fbx-5d1b2642661f96cb66dae13962aeb57d.scn new file mode 100644 index 0000000..feae8c0 Binary files /dev/null and b/.godot/imported/bannerRed.fbx-5d1b2642661f96cb66dae13962aeb57d.scn differ diff --git a/.godot/imported/bed-9e4763f8eddc0e233cfaa2901e49ce96.glb b/.godot/imported/bed-9e4763f8eddc0e233cfaa2901e49ce96.glb new file mode 100644 index 0000000..3cc3791 Binary files /dev/null and b/.godot/imported/bed-9e4763f8eddc0e233cfaa2901e49ce96.glb differ diff --git a/.godot/imported/bed.fbx-9e4763f8eddc0e233cfaa2901e49ce96.md5 b/.godot/imported/bed.fbx-9e4763f8eddc0e233cfaa2901e49ce96.md5 new file mode 100644 index 0000000..e6e8320 --- /dev/null +++ b/.godot/imported/bed.fbx-9e4763f8eddc0e233cfaa2901e49ce96.md5 @@ -0,0 +1,2 @@ +source_md5="5be19981a38518d66dae9009bebf488a" +dest_md5="dc51580cdceb6bf0f6845e09fe2669a5" diff --git a/.godot/imported/bed.fbx-9e4763f8eddc0e233cfaa2901e49ce96.scn b/.godot/imported/bed.fbx-9e4763f8eddc0e233cfaa2901e49ce96.scn new file mode 100644 index 0000000..83e659f Binary files /dev/null and b/.godot/imported/bed.fbx-9e4763f8eddc0e233cfaa2901e49ce96.scn differ diff --git a/.godot/imported/bed_floor-ae1f92af9f20c4879343caedac4bbcd2.glb b/.godot/imported/bed_floor-ae1f92af9f20c4879343caedac4bbcd2.glb new file mode 100644 index 0000000..c97f15b Binary files /dev/null and b/.godot/imported/bed_floor-ae1f92af9f20c4879343caedac4bbcd2.glb differ diff --git a/.godot/imported/bed_floor.fbx-ae1f92af9f20c4879343caedac4bbcd2.md5 b/.godot/imported/bed_floor.fbx-ae1f92af9f20c4879343caedac4bbcd2.md5 new file mode 100644 index 0000000..d4c6992 --- /dev/null +++ b/.godot/imported/bed_floor.fbx-ae1f92af9f20c4879343caedac4bbcd2.md5 @@ -0,0 +1,2 @@ +source_md5="3208ee1e0c1c77545ff68fb5ff3f396c" +dest_md5="d554bb77f68d407e60f1b97da60be1e2" diff --git a/.godot/imported/bed_floor.fbx-ae1f92af9f20c4879343caedac4bbcd2.scn b/.godot/imported/bed_floor.fbx-ae1f92af9f20c4879343caedac4bbcd2.scn new file mode 100644 index 0000000..7570bee Binary files /dev/null and b/.godot/imported/bed_floor.fbx-ae1f92af9f20c4879343caedac4bbcd2.scn differ diff --git a/.godot/imported/blade-9e32139bfe943cbac50c0607953db8e7.glb b/.godot/imported/blade-9e32139bfe943cbac50c0607953db8e7.glb new file mode 100644 index 0000000..dd9a630 Binary files /dev/null and b/.godot/imported/blade-9e32139bfe943cbac50c0607953db8e7.glb differ diff --git a/.godot/imported/blade.fbx-9e32139bfe943cbac50c0607953db8e7.md5 b/.godot/imported/blade.fbx-9e32139bfe943cbac50c0607953db8e7.md5 new file mode 100644 index 0000000..43a6107 --- /dev/null +++ b/.godot/imported/blade.fbx-9e32139bfe943cbac50c0607953db8e7.md5 @@ -0,0 +1,2 @@ +source_md5="5e8d9971a022f1c9c0f3b8b96688468d" +dest_md5="b5f32aee74196c7fd4915b17849935b2" diff --git a/.godot/imported/blade.fbx-9e32139bfe943cbac50c0607953db8e7.scn b/.godot/imported/blade.fbx-9e32139bfe943cbac50c0607953db8e7.scn new file mode 100644 index 0000000..b542d8e Binary files /dev/null and b/.godot/imported/blade.fbx-9e32139bfe943cbac50c0607953db8e7.scn differ diff --git a/.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6.glb b/.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6.glb new file mode 100644 index 0000000..f4abbe5 Binary files /dev/null and b/.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6.glb differ diff --git a/.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png-b8b642eaffd28bf996c00befd3527fa2.md5 b/.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png-b8b642eaffd28bf996c00befd3527fa2.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png-b8b642eaffd28bf996c00befd3527fa2.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png-b8b642eaffd28bf996c00befd3527fa2.s3tc.ctex b/.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png-b8b642eaffd28bf996c00befd3527fa2.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png-b8b642eaffd28bf996c00befd3527fa2.s3tc.ctex differ diff --git a/.godot/imported/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png-1dc36c46f2c62cfec2cb119f928b9e90.md5 b/.godot/imported/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png-1dc36c46f2c62cfec2cb119f928b9e90.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png-1dc36c46f2c62cfec2cb119f928b9e90.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png-1dc36c46f2c62cfec2cb119f928b9e90.s3tc.ctex b/.godot/imported/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png-1dc36c46f2c62cfec2cb119f928b9e90.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png-1dc36c46f2c62cfec2cb119f928b9e90.s3tc.ctex differ diff --git a/.godot/imported/box.fbx-db9fe304cb98696046fc1de5bfec19b6.md5 b/.godot/imported/box.fbx-db9fe304cb98696046fc1de5bfec19b6.md5 new file mode 100644 index 0000000..9f8df5a --- /dev/null +++ b/.godot/imported/box.fbx-db9fe304cb98696046fc1de5bfec19b6.md5 @@ -0,0 +1,2 @@ +source_md5="e2ad191b9a4c9544f18e355198dc8d82" +dest_md5="a98da73466c7792218b5f9894bebdc85" diff --git a/.godot/imported/box.fbx-db9fe304cb98696046fc1de5bfec19b6.scn b/.godot/imported/box.fbx-db9fe304cb98696046fc1de5bfec19b6.scn new file mode 100644 index 0000000..c0398e2 Binary files /dev/null and b/.godot/imported/box.fbx-db9fe304cb98696046fc1de5bfec19b6.scn differ diff --git a/.godot/imported/bridge_center_stone-21462917b42032941a0d2c6235281689.glb b/.godot/imported/bridge_center_stone-21462917b42032941a0d2c6235281689.glb new file mode 100644 index 0000000..89ea71e Binary files /dev/null and b/.godot/imported/bridge_center_stone-21462917b42032941a0d2c6235281689.glb differ diff --git a/.godot/imported/bridge_center_stone.fbx-21462917b42032941a0d2c6235281689.md5 b/.godot/imported/bridge_center_stone.fbx-21462917b42032941a0d2c6235281689.md5 new file mode 100644 index 0000000..bc72622 --- /dev/null +++ b/.godot/imported/bridge_center_stone.fbx-21462917b42032941a0d2c6235281689.md5 @@ -0,0 +1,2 @@ +source_md5="ec7c35bc8cf8dd71f9ae8afb8fb9c775" +dest_md5="d44ee3c173d46ce6b0c4ced5085331c4" diff --git a/.godot/imported/bridge_center_stone.fbx-21462917b42032941a0d2c6235281689.scn b/.godot/imported/bridge_center_stone.fbx-21462917b42032941a0d2c6235281689.scn new file mode 100644 index 0000000..4e3ee94 Binary files /dev/null and b/.godot/imported/bridge_center_stone.fbx-21462917b42032941a0d2c6235281689.scn differ diff --git a/.godot/imported/bridge_center_stoneRound-fdae078d2a2d0b7e6f5f11151cf2f455.glb b/.godot/imported/bridge_center_stoneRound-fdae078d2a2d0b7e6f5f11151cf2f455.glb new file mode 100644 index 0000000..36d0361 Binary files /dev/null and b/.godot/imported/bridge_center_stoneRound-fdae078d2a2d0b7e6f5f11151cf2f455.glb differ diff --git a/.godot/imported/bridge_center_stoneRound.fbx-fdae078d2a2d0b7e6f5f11151cf2f455.md5 b/.godot/imported/bridge_center_stoneRound.fbx-fdae078d2a2d0b7e6f5f11151cf2f455.md5 new file mode 100644 index 0000000..6d4993d --- /dev/null +++ b/.godot/imported/bridge_center_stoneRound.fbx-fdae078d2a2d0b7e6f5f11151cf2f455.md5 @@ -0,0 +1,2 @@ +source_md5="dc584ac131730832af93c357ca474b82" +dest_md5="6ef9bf1fa89d74578bd08afae2f4df84" diff --git a/.godot/imported/bridge_center_stoneRound.fbx-fdae078d2a2d0b7e6f5f11151cf2f455.scn b/.godot/imported/bridge_center_stoneRound.fbx-fdae078d2a2d0b7e6f5f11151cf2f455.scn new file mode 100644 index 0000000..c3b7e19 Binary files /dev/null and b/.godot/imported/bridge_center_stoneRound.fbx-fdae078d2a2d0b7e6f5f11151cf2f455.scn differ diff --git a/.godot/imported/bridge_center_wood-675b8ecbdad440af154de46278c0ad18.glb b/.godot/imported/bridge_center_wood-675b8ecbdad440af154de46278c0ad18.glb new file mode 100644 index 0000000..a71d448 Binary files /dev/null and b/.godot/imported/bridge_center_wood-675b8ecbdad440af154de46278c0ad18.glb differ diff --git a/.godot/imported/bridge_center_wood.fbx-675b8ecbdad440af154de46278c0ad18.md5 b/.godot/imported/bridge_center_wood.fbx-675b8ecbdad440af154de46278c0ad18.md5 new file mode 100644 index 0000000..edb8b5d --- /dev/null +++ b/.godot/imported/bridge_center_wood.fbx-675b8ecbdad440af154de46278c0ad18.md5 @@ -0,0 +1,2 @@ +source_md5="166fe0fcf9397b31d049149727898124" +dest_md5="e5a8f168a52fd2abee195947cdc8e581" diff --git a/.godot/imported/bridge_center_wood.fbx-675b8ecbdad440af154de46278c0ad18.scn b/.godot/imported/bridge_center_wood.fbx-675b8ecbdad440af154de46278c0ad18.scn new file mode 100644 index 0000000..01e7441 Binary files /dev/null and b/.godot/imported/bridge_center_wood.fbx-675b8ecbdad440af154de46278c0ad18.scn differ diff --git a/.godot/imported/bridge_center_woodRound-06a9db4ccdb0f38d8dbbae2f4bb985f8.glb b/.godot/imported/bridge_center_woodRound-06a9db4ccdb0f38d8dbbae2f4bb985f8.glb new file mode 100644 index 0000000..1c063cf Binary files /dev/null and b/.godot/imported/bridge_center_woodRound-06a9db4ccdb0f38d8dbbae2f4bb985f8.glb differ diff --git a/.godot/imported/bridge_center_woodRound.fbx-06a9db4ccdb0f38d8dbbae2f4bb985f8.md5 b/.godot/imported/bridge_center_woodRound.fbx-06a9db4ccdb0f38d8dbbae2f4bb985f8.md5 new file mode 100644 index 0000000..dee09d1 --- /dev/null +++ b/.godot/imported/bridge_center_woodRound.fbx-06a9db4ccdb0f38d8dbbae2f4bb985f8.md5 @@ -0,0 +1,2 @@ +source_md5="aae0ec0ecfdacbf672b9774622d58ba8" +dest_md5="6a3fdffcb85a92dd930daba8e69ea0ed" diff --git a/.godot/imported/bridge_center_woodRound.fbx-06a9db4ccdb0f38d8dbbae2f4bb985f8.scn b/.godot/imported/bridge_center_woodRound.fbx-06a9db4ccdb0f38d8dbbae2f4bb985f8.scn new file mode 100644 index 0000000..d818c43 Binary files /dev/null and b/.godot/imported/bridge_center_woodRound.fbx-06a9db4ccdb0f38d8dbbae2f4bb985f8.scn differ diff --git a/.godot/imported/bridge_pillar-a9227a9fe360b1b396aab5bbfb6e686d.glb b/.godot/imported/bridge_pillar-a9227a9fe360b1b396aab5bbfb6e686d.glb new file mode 100644 index 0000000..f1c9769 Binary files /dev/null and b/.godot/imported/bridge_pillar-a9227a9fe360b1b396aab5bbfb6e686d.glb differ diff --git a/.godot/imported/bridge_pillar.fbx-a9227a9fe360b1b396aab5bbfb6e686d.md5 b/.godot/imported/bridge_pillar.fbx-a9227a9fe360b1b396aab5bbfb6e686d.md5 new file mode 100644 index 0000000..de39406 --- /dev/null +++ b/.godot/imported/bridge_pillar.fbx-a9227a9fe360b1b396aab5bbfb6e686d.md5 @@ -0,0 +1,2 @@ +source_md5="8fa800ea74883cf1e9bcf5c4d25d6959" +dest_md5="4d060919d067ff101b9514d3e7ddb7d3" diff --git a/.godot/imported/bridge_pillar.fbx-a9227a9fe360b1b396aab5bbfb6e686d.scn b/.godot/imported/bridge_pillar.fbx-a9227a9fe360b1b396aab5bbfb6e686d.scn new file mode 100644 index 0000000..f54f86b Binary files /dev/null and b/.godot/imported/bridge_pillar.fbx-a9227a9fe360b1b396aab5bbfb6e686d.scn differ diff --git a/.godot/imported/bridge_pillarWide-60d62647859a7e0c03a9346029d27a8d.glb b/.godot/imported/bridge_pillarWide-60d62647859a7e0c03a9346029d27a8d.glb new file mode 100644 index 0000000..5fe610e Binary files /dev/null and b/.godot/imported/bridge_pillarWide-60d62647859a7e0c03a9346029d27a8d.glb differ diff --git a/.godot/imported/bridge_pillarWide.fbx-60d62647859a7e0c03a9346029d27a8d.md5 b/.godot/imported/bridge_pillarWide.fbx-60d62647859a7e0c03a9346029d27a8d.md5 new file mode 100644 index 0000000..5fa1c3d --- /dev/null +++ b/.godot/imported/bridge_pillarWide.fbx-60d62647859a7e0c03a9346029d27a8d.md5 @@ -0,0 +1,2 @@ +source_md5="4fb4e104079eba867794d804ceeb6138" +dest_md5="96af0eb232a91b3b652f4eb706d34bdc" diff --git a/.godot/imported/bridge_pillarWide.fbx-60d62647859a7e0c03a9346029d27a8d.scn b/.godot/imported/bridge_pillarWide.fbx-60d62647859a7e0c03a9346029d27a8d.scn new file mode 100644 index 0000000..948aed5 Binary files /dev/null and b/.godot/imported/bridge_pillarWide.fbx-60d62647859a7e0c03a9346029d27a8d.scn differ diff --git a/.godot/imported/bridge_side_stone-e9bee054becf1aeba592739f2e926d5b.glb b/.godot/imported/bridge_side_stone-e9bee054becf1aeba592739f2e926d5b.glb new file mode 100644 index 0000000..c30db19 Binary files /dev/null and b/.godot/imported/bridge_side_stone-e9bee054becf1aeba592739f2e926d5b.glb differ diff --git a/.godot/imported/bridge_side_stone.fbx-e9bee054becf1aeba592739f2e926d5b.md5 b/.godot/imported/bridge_side_stone.fbx-e9bee054becf1aeba592739f2e926d5b.md5 new file mode 100644 index 0000000..053e940 --- /dev/null +++ b/.godot/imported/bridge_side_stone.fbx-e9bee054becf1aeba592739f2e926d5b.md5 @@ -0,0 +1,2 @@ +source_md5="ccfb5a69e813b0038c167331247ed9df" +dest_md5="5ce384dbdf2671da5449b561aec5e4b0" diff --git a/.godot/imported/bridge_side_stone.fbx-e9bee054becf1aeba592739f2e926d5b.scn b/.godot/imported/bridge_side_stone.fbx-e9bee054becf1aeba592739f2e926d5b.scn new file mode 100644 index 0000000..3a85399 Binary files /dev/null and b/.godot/imported/bridge_side_stone.fbx-e9bee054becf1aeba592739f2e926d5b.scn differ diff --git a/.godot/imported/bridge_side_stoneRound-a76ed9d66d0ee0156b96b04e65fdcd5e.glb b/.godot/imported/bridge_side_stoneRound-a76ed9d66d0ee0156b96b04e65fdcd5e.glb new file mode 100644 index 0000000..5f2efd2 Binary files /dev/null and b/.godot/imported/bridge_side_stoneRound-a76ed9d66d0ee0156b96b04e65fdcd5e.glb differ diff --git a/.godot/imported/bridge_side_stoneRound.fbx-a76ed9d66d0ee0156b96b04e65fdcd5e.md5 b/.godot/imported/bridge_side_stoneRound.fbx-a76ed9d66d0ee0156b96b04e65fdcd5e.md5 new file mode 100644 index 0000000..b6655a0 --- /dev/null +++ b/.godot/imported/bridge_side_stoneRound.fbx-a76ed9d66d0ee0156b96b04e65fdcd5e.md5 @@ -0,0 +1,2 @@ +source_md5="7fe90f08e236df6cf98e6e7cb3afd920" +dest_md5="2dd179bbd829499156de5afa95bcc609" diff --git a/.godot/imported/bridge_side_stoneRound.fbx-a76ed9d66d0ee0156b96b04e65fdcd5e.scn b/.godot/imported/bridge_side_stoneRound.fbx-a76ed9d66d0ee0156b96b04e65fdcd5e.scn new file mode 100644 index 0000000..d35a24a Binary files /dev/null and b/.godot/imported/bridge_side_stoneRound.fbx-a76ed9d66d0ee0156b96b04e65fdcd5e.scn differ diff --git a/.godot/imported/bridge_side_wood-b4dde50491e1f151696c9b3d2d90a39d.glb b/.godot/imported/bridge_side_wood-b4dde50491e1f151696c9b3d2d90a39d.glb new file mode 100644 index 0000000..c0934ab Binary files /dev/null and b/.godot/imported/bridge_side_wood-b4dde50491e1f151696c9b3d2d90a39d.glb differ diff --git a/.godot/imported/bridge_side_wood.fbx-b4dde50491e1f151696c9b3d2d90a39d.md5 b/.godot/imported/bridge_side_wood.fbx-b4dde50491e1f151696c9b3d2d90a39d.md5 new file mode 100644 index 0000000..7800135 --- /dev/null +++ b/.godot/imported/bridge_side_wood.fbx-b4dde50491e1f151696c9b3d2d90a39d.md5 @@ -0,0 +1,2 @@ +source_md5="905405c18313a2cfb085dcafecd384eb" +dest_md5="ac7a8c2c1e6b531b87d3d4d6639ee4bb" diff --git a/.godot/imported/bridge_side_wood.fbx-b4dde50491e1f151696c9b3d2d90a39d.scn b/.godot/imported/bridge_side_wood.fbx-b4dde50491e1f151696c9b3d2d90a39d.scn new file mode 100644 index 0000000..fbbdf81 Binary files /dev/null and b/.godot/imported/bridge_side_wood.fbx-b4dde50491e1f151696c9b3d2d90a39d.scn differ diff --git a/.godot/imported/bridge_side_woodRound-01d23c070c0c91c8e7e215f89ab409dc.glb b/.godot/imported/bridge_side_woodRound-01d23c070c0c91c8e7e215f89ab409dc.glb new file mode 100644 index 0000000..f6ee515 Binary files /dev/null and b/.godot/imported/bridge_side_woodRound-01d23c070c0c91c8e7e215f89ab409dc.glb differ diff --git a/.godot/imported/bridge_side_woodRound.fbx-01d23c070c0c91c8e7e215f89ab409dc.md5 b/.godot/imported/bridge_side_woodRound.fbx-01d23c070c0c91c8e7e215f89ab409dc.md5 new file mode 100644 index 0000000..159e448 --- /dev/null +++ b/.godot/imported/bridge_side_woodRound.fbx-01d23c070c0c91c8e7e215f89ab409dc.md5 @@ -0,0 +1,2 @@ +source_md5="2f681f90354f33a746d8b8b7e0e1fd5f" +dest_md5="03c7f2fd9f12008a4208694583453066" diff --git a/.godot/imported/bridge_side_woodRound.fbx-01d23c070c0c91c8e7e215f89ab409dc.scn b/.godot/imported/bridge_side_woodRound.fbx-01d23c070c0c91c8e7e215f89ab409dc.scn new file mode 100644 index 0000000..1d3c655 Binary files /dev/null and b/.godot/imported/bridge_side_woodRound.fbx-01d23c070c0c91c8e7e215f89ab409dc.scn differ diff --git a/.godot/imported/bridge_stone-65d0d7fc85dd4a6c359bce26afe0e79e.glb b/.godot/imported/bridge_stone-65d0d7fc85dd4a6c359bce26afe0e79e.glb new file mode 100644 index 0000000..f4ede58 Binary files /dev/null and b/.godot/imported/bridge_stone-65d0d7fc85dd4a6c359bce26afe0e79e.glb differ diff --git a/.godot/imported/bridge_stone.fbx-65d0d7fc85dd4a6c359bce26afe0e79e.md5 b/.godot/imported/bridge_stone.fbx-65d0d7fc85dd4a6c359bce26afe0e79e.md5 new file mode 100644 index 0000000..29c79a5 --- /dev/null +++ b/.godot/imported/bridge_stone.fbx-65d0d7fc85dd4a6c359bce26afe0e79e.md5 @@ -0,0 +1,2 @@ +source_md5="4f0023fee6575f9cce0ba80e3682e661" +dest_md5="62a1039b008b11cfe0c6545ba332f746" diff --git a/.godot/imported/bridge_stone.fbx-65d0d7fc85dd4a6c359bce26afe0e79e.scn b/.godot/imported/bridge_stone.fbx-65d0d7fc85dd4a6c359bce26afe0e79e.scn new file mode 100644 index 0000000..ef89ef7 Binary files /dev/null and b/.godot/imported/bridge_stone.fbx-65d0d7fc85dd4a6c359bce26afe0e79e.scn differ diff --git a/.godot/imported/bridge_stoneNarrow-8049699153558929af64cbd52046fc73.glb b/.godot/imported/bridge_stoneNarrow-8049699153558929af64cbd52046fc73.glb new file mode 100644 index 0000000..fd94ec7 Binary files /dev/null and b/.godot/imported/bridge_stoneNarrow-8049699153558929af64cbd52046fc73.glb differ diff --git a/.godot/imported/bridge_stoneNarrow.fbx-8049699153558929af64cbd52046fc73.md5 b/.godot/imported/bridge_stoneNarrow.fbx-8049699153558929af64cbd52046fc73.md5 new file mode 100644 index 0000000..9ac9974 --- /dev/null +++ b/.godot/imported/bridge_stoneNarrow.fbx-8049699153558929af64cbd52046fc73.md5 @@ -0,0 +1,2 @@ +source_md5="5e1ecf4ac5ca6c0d7d1b3f5518282de0" +dest_md5="b63746a95261f69983c81e21a417f61c" diff --git a/.godot/imported/bridge_stoneNarrow.fbx-8049699153558929af64cbd52046fc73.scn b/.godot/imported/bridge_stoneNarrow.fbx-8049699153558929af64cbd52046fc73.scn new file mode 100644 index 0000000..655b846 Binary files /dev/null and b/.godot/imported/bridge_stoneNarrow.fbx-8049699153558929af64cbd52046fc73.scn differ diff --git a/.godot/imported/bridge_stoneRound-9f822051e002cfa5300d9e9c7200a12f.glb b/.godot/imported/bridge_stoneRound-9f822051e002cfa5300d9e9c7200a12f.glb new file mode 100644 index 0000000..e9ad18e Binary files /dev/null and b/.godot/imported/bridge_stoneRound-9f822051e002cfa5300d9e9c7200a12f.glb differ diff --git a/.godot/imported/bridge_stoneRound.fbx-9f822051e002cfa5300d9e9c7200a12f.md5 b/.godot/imported/bridge_stoneRound.fbx-9f822051e002cfa5300d9e9c7200a12f.md5 new file mode 100644 index 0000000..b04cfc9 --- /dev/null +++ b/.godot/imported/bridge_stoneRound.fbx-9f822051e002cfa5300d9e9c7200a12f.md5 @@ -0,0 +1,2 @@ +source_md5="8754279e8faf35419e2ec0d735cf3550" +dest_md5="2a0e7bafea7159299cb22d3953d3ce04" diff --git a/.godot/imported/bridge_stoneRound.fbx-9f822051e002cfa5300d9e9c7200a12f.scn b/.godot/imported/bridge_stoneRound.fbx-9f822051e002cfa5300d9e9c7200a12f.scn new file mode 100644 index 0000000..5eaa390 Binary files /dev/null and b/.godot/imported/bridge_stoneRound.fbx-9f822051e002cfa5300d9e9c7200a12f.scn differ diff --git a/.godot/imported/bridge_stoneRoundNarrow-eb146dc3a5a09445e62d7b61b85d8e10.glb b/.godot/imported/bridge_stoneRoundNarrow-eb146dc3a5a09445e62d7b61b85d8e10.glb new file mode 100644 index 0000000..6c13589 Binary files /dev/null and b/.godot/imported/bridge_stoneRoundNarrow-eb146dc3a5a09445e62d7b61b85d8e10.glb differ diff --git a/.godot/imported/bridge_stoneRoundNarrow.fbx-eb146dc3a5a09445e62d7b61b85d8e10.md5 b/.godot/imported/bridge_stoneRoundNarrow.fbx-eb146dc3a5a09445e62d7b61b85d8e10.md5 new file mode 100644 index 0000000..09463f6 --- /dev/null +++ b/.godot/imported/bridge_stoneRoundNarrow.fbx-eb146dc3a5a09445e62d7b61b85d8e10.md5 @@ -0,0 +1,2 @@ +source_md5="01ea7b4ffaef657d5d74ef4f519aabbf" +dest_md5="b3a9b9855e94e9421d6e48109784b964" diff --git a/.godot/imported/bridge_stoneRoundNarrow.fbx-eb146dc3a5a09445e62d7b61b85d8e10.scn b/.godot/imported/bridge_stoneRoundNarrow.fbx-eb146dc3a5a09445e62d7b61b85d8e10.scn new file mode 100644 index 0000000..1291428 Binary files /dev/null and b/.godot/imported/bridge_stoneRoundNarrow.fbx-eb146dc3a5a09445e62d7b61b85d8e10.scn differ diff --git a/.godot/imported/bridge_wood-28c87591e4ea56cb1b4db01d36f74b40.glb b/.godot/imported/bridge_wood-28c87591e4ea56cb1b4db01d36f74b40.glb new file mode 100644 index 0000000..1eceb11 Binary files /dev/null and b/.godot/imported/bridge_wood-28c87591e4ea56cb1b4db01d36f74b40.glb differ diff --git a/.godot/imported/bridge_wood.fbx-28c87591e4ea56cb1b4db01d36f74b40.md5 b/.godot/imported/bridge_wood.fbx-28c87591e4ea56cb1b4db01d36f74b40.md5 new file mode 100644 index 0000000..37d2451 --- /dev/null +++ b/.godot/imported/bridge_wood.fbx-28c87591e4ea56cb1b4db01d36f74b40.md5 @@ -0,0 +1,2 @@ +source_md5="8baeadf4ced17bb7805410a7b8be3ebf" +dest_md5="b9f8615eb034d12e620af4f99acc79d2" diff --git a/.godot/imported/bridge_wood.fbx-28c87591e4ea56cb1b4db01d36f74b40.scn b/.godot/imported/bridge_wood.fbx-28c87591e4ea56cb1b4db01d36f74b40.scn new file mode 100644 index 0000000..72f1f62 Binary files /dev/null and b/.godot/imported/bridge_wood.fbx-28c87591e4ea56cb1b4db01d36f74b40.scn differ diff --git a/.godot/imported/bridge_woodNarrow-b6ecb2947f701e71a9bff09890655b82.glb b/.godot/imported/bridge_woodNarrow-b6ecb2947f701e71a9bff09890655b82.glb new file mode 100644 index 0000000..801bb28 Binary files /dev/null and b/.godot/imported/bridge_woodNarrow-b6ecb2947f701e71a9bff09890655b82.glb differ diff --git a/.godot/imported/bridge_woodNarrow.fbx-b6ecb2947f701e71a9bff09890655b82.md5 b/.godot/imported/bridge_woodNarrow.fbx-b6ecb2947f701e71a9bff09890655b82.md5 new file mode 100644 index 0000000..841db5e --- /dev/null +++ b/.godot/imported/bridge_woodNarrow.fbx-b6ecb2947f701e71a9bff09890655b82.md5 @@ -0,0 +1,2 @@ +source_md5="cd24e311c36d8d857b97df86295479b3" +dest_md5="be564e9395a2946298124feb65982be7" diff --git a/.godot/imported/bridge_woodNarrow.fbx-b6ecb2947f701e71a9bff09890655b82.scn b/.godot/imported/bridge_woodNarrow.fbx-b6ecb2947f701e71a9bff09890655b82.scn new file mode 100644 index 0000000..856cde6 Binary files /dev/null and b/.godot/imported/bridge_woodNarrow.fbx-b6ecb2947f701e71a9bff09890655b82.scn differ diff --git a/.godot/imported/bridge_woodRound-92fafc178cb19b5ddae58c49b17eae05.glb b/.godot/imported/bridge_woodRound-92fafc178cb19b5ddae58c49b17eae05.glb new file mode 100644 index 0000000..59ba1de Binary files /dev/null and b/.godot/imported/bridge_woodRound-92fafc178cb19b5ddae58c49b17eae05.glb differ diff --git a/.godot/imported/bridge_woodRound.fbx-92fafc178cb19b5ddae58c49b17eae05.md5 b/.godot/imported/bridge_woodRound.fbx-92fafc178cb19b5ddae58c49b17eae05.md5 new file mode 100644 index 0000000..d9fdc1d --- /dev/null +++ b/.godot/imported/bridge_woodRound.fbx-92fafc178cb19b5ddae58c49b17eae05.md5 @@ -0,0 +1,2 @@ +source_md5="4ad9e55135dfcf81cb7162a361ae41f6" +dest_md5="e54c9c56a4881c95250dd2b500d9d636" diff --git a/.godot/imported/bridge_woodRound.fbx-92fafc178cb19b5ddae58c49b17eae05.scn b/.godot/imported/bridge_woodRound.fbx-92fafc178cb19b5ddae58c49b17eae05.scn new file mode 100644 index 0000000..3eff227 Binary files /dev/null and b/.godot/imported/bridge_woodRound.fbx-92fafc178cb19b5ddae58c49b17eae05.scn differ diff --git a/.godot/imported/bridge_woodRoundNarrow-8a613f0839053e84dd869542d9bf3df5.glb b/.godot/imported/bridge_woodRoundNarrow-8a613f0839053e84dd869542d9bf3df5.glb new file mode 100644 index 0000000..5f4b5a7 Binary files /dev/null and b/.godot/imported/bridge_woodRoundNarrow-8a613f0839053e84dd869542d9bf3df5.glb differ diff --git a/.godot/imported/bridge_woodRoundNarrow.fbx-8a613f0839053e84dd869542d9bf3df5.md5 b/.godot/imported/bridge_woodRoundNarrow.fbx-8a613f0839053e84dd869542d9bf3df5.md5 new file mode 100644 index 0000000..dfa9f46 --- /dev/null +++ b/.godot/imported/bridge_woodRoundNarrow.fbx-8a613f0839053e84dd869542d9bf3df5.md5 @@ -0,0 +1,2 @@ +source_md5="08c36f603d28268d2198a546ab84f7e9" +dest_md5="8e20d81a127c00c581df4986f21061c1" diff --git a/.godot/imported/bridge_woodRoundNarrow.fbx-8a613f0839053e84dd869542d9bf3df5.scn b/.godot/imported/bridge_woodRoundNarrow.fbx-8a613f0839053e84dd869542d9bf3df5.scn new file mode 100644 index 0000000..51e705d Binary files /dev/null and b/.godot/imported/bridge_woodRoundNarrow.fbx-8a613f0839053e84dd869542d9bf3df5.scn differ diff --git a/.godot/imported/cactus_short-671c7c19b7ccf8a36dc56dd7df8ac4bb.glb b/.godot/imported/cactus_short-671c7c19b7ccf8a36dc56dd7df8ac4bb.glb new file mode 100644 index 0000000..88bfa39 Binary files /dev/null and b/.godot/imported/cactus_short-671c7c19b7ccf8a36dc56dd7df8ac4bb.glb differ diff --git a/.godot/imported/cactus_short.fbx-671c7c19b7ccf8a36dc56dd7df8ac4bb.md5 b/.godot/imported/cactus_short.fbx-671c7c19b7ccf8a36dc56dd7df8ac4bb.md5 new file mode 100644 index 0000000..13dc727 --- /dev/null +++ b/.godot/imported/cactus_short.fbx-671c7c19b7ccf8a36dc56dd7df8ac4bb.md5 @@ -0,0 +1,2 @@ +source_md5="02a3cb1d3d117fded1b4f61f6fcdf2aa" +dest_md5="1264184b5d48437839f7f6e81c43723b" diff --git a/.godot/imported/cactus_short.fbx-671c7c19b7ccf8a36dc56dd7df8ac4bb.scn b/.godot/imported/cactus_short.fbx-671c7c19b7ccf8a36dc56dd7df8ac4bb.scn new file mode 100644 index 0000000..2b81198 Binary files /dev/null and b/.godot/imported/cactus_short.fbx-671c7c19b7ccf8a36dc56dd7df8ac4bb.scn differ diff --git a/.godot/imported/cactus_tall-35a88d0e2f10d9e5ef346010d7259782.glb b/.godot/imported/cactus_tall-35a88d0e2f10d9e5ef346010d7259782.glb new file mode 100644 index 0000000..a7e777b Binary files /dev/null and b/.godot/imported/cactus_tall-35a88d0e2f10d9e5ef346010d7259782.glb differ diff --git a/.godot/imported/cactus_tall.fbx-35a88d0e2f10d9e5ef346010d7259782.md5 b/.godot/imported/cactus_tall.fbx-35a88d0e2f10d9e5ef346010d7259782.md5 new file mode 100644 index 0000000..88d0834 --- /dev/null +++ b/.godot/imported/cactus_tall.fbx-35a88d0e2f10d9e5ef346010d7259782.md5 @@ -0,0 +1,2 @@ +source_md5="bbc59a60aa595d25f59ec5bbff95103e" +dest_md5="6e67a7976eac50ddb40f527eed11f50b" diff --git a/.godot/imported/cactus_tall.fbx-35a88d0e2f10d9e5ef346010d7259782.scn b/.godot/imported/cactus_tall.fbx-35a88d0e2f10d9e5ef346010d7259782.scn new file mode 100644 index 0000000..e0d39df Binary files /dev/null and b/.godot/imported/cactus_tall.fbx-35a88d0e2f10d9e5ef346010d7259782.scn differ diff --git a/.godot/imported/campfire_bricks-6ee0c2b814f35e5de96b4f2a7d702764.glb b/.godot/imported/campfire_bricks-6ee0c2b814f35e5de96b4f2a7d702764.glb new file mode 100644 index 0000000..e0e4ab5 Binary files /dev/null and b/.godot/imported/campfire_bricks-6ee0c2b814f35e5de96b4f2a7d702764.glb differ diff --git a/.godot/imported/campfire_bricks.fbx-6ee0c2b814f35e5de96b4f2a7d702764.md5 b/.godot/imported/campfire_bricks.fbx-6ee0c2b814f35e5de96b4f2a7d702764.md5 new file mode 100644 index 0000000..6ef8320 --- /dev/null +++ b/.godot/imported/campfire_bricks.fbx-6ee0c2b814f35e5de96b4f2a7d702764.md5 @@ -0,0 +1,2 @@ +source_md5="f89ecc141891ce95130cee7f8507b69c" +dest_md5="b3fa4c3fb29041d1c13503a2d05a2c4c" diff --git a/.godot/imported/campfire_bricks.fbx-6ee0c2b814f35e5de96b4f2a7d702764.scn b/.godot/imported/campfire_bricks.fbx-6ee0c2b814f35e5de96b4f2a7d702764.scn new file mode 100644 index 0000000..29e4e1b Binary files /dev/null and b/.godot/imported/campfire_bricks.fbx-6ee0c2b814f35e5de96b4f2a7d702764.scn differ diff --git a/.godot/imported/campfire_logs-3a773ff99a42a5aae6fcd808458eae49.glb b/.godot/imported/campfire_logs-3a773ff99a42a5aae6fcd808458eae49.glb new file mode 100644 index 0000000..63d9f9a Binary files /dev/null and b/.godot/imported/campfire_logs-3a773ff99a42a5aae6fcd808458eae49.glb differ diff --git a/.godot/imported/campfire_logs.fbx-3a773ff99a42a5aae6fcd808458eae49.md5 b/.godot/imported/campfire_logs.fbx-3a773ff99a42a5aae6fcd808458eae49.md5 new file mode 100644 index 0000000..98efe7e --- /dev/null +++ b/.godot/imported/campfire_logs.fbx-3a773ff99a42a5aae6fcd808458eae49.md5 @@ -0,0 +1,2 @@ +source_md5="f4e2adb01634578e826bf14d0ed8d026" +dest_md5="702778b9128f94167e87424befef208c" diff --git a/.godot/imported/campfire_logs.fbx-3a773ff99a42a5aae6fcd808458eae49.scn b/.godot/imported/campfire_logs.fbx-3a773ff99a42a5aae6fcd808458eae49.scn new file mode 100644 index 0000000..c5d3a29 Binary files /dev/null and b/.godot/imported/campfire_logs.fbx-3a773ff99a42a5aae6fcd808458eae49.scn differ diff --git a/.godot/imported/campfire_planks-447c0f18653432dc64734bfb9e9cf5a3.glb b/.godot/imported/campfire_planks-447c0f18653432dc64734bfb9e9cf5a3.glb new file mode 100644 index 0000000..358f513 Binary files /dev/null and b/.godot/imported/campfire_planks-447c0f18653432dc64734bfb9e9cf5a3.glb differ diff --git a/.godot/imported/campfire_planks.fbx-447c0f18653432dc64734bfb9e9cf5a3.md5 b/.godot/imported/campfire_planks.fbx-447c0f18653432dc64734bfb9e9cf5a3.md5 new file mode 100644 index 0000000..71a3b93 --- /dev/null +++ b/.godot/imported/campfire_planks.fbx-447c0f18653432dc64734bfb9e9cf5a3.md5 @@ -0,0 +1,2 @@ +source_md5="9a363db39d9e5b9a9313e124863db881" +dest_md5="8992a5236e7dc2ff6cc378458c0f5057" diff --git a/.godot/imported/campfire_planks.fbx-447c0f18653432dc64734bfb9e9cf5a3.scn b/.godot/imported/campfire_planks.fbx-447c0f18653432dc64734bfb9e9cf5a3.scn new file mode 100644 index 0000000..4d349cb Binary files /dev/null and b/.godot/imported/campfire_planks.fbx-447c0f18653432dc64734bfb9e9cf5a3.scn differ diff --git a/.godot/imported/campfire_stones-b3fe69c4174c1113b64a2a6a15a67c20.glb b/.godot/imported/campfire_stones-b3fe69c4174c1113b64a2a6a15a67c20.glb new file mode 100644 index 0000000..b49f0ae Binary files /dev/null and b/.godot/imported/campfire_stones-b3fe69c4174c1113b64a2a6a15a67c20.glb differ diff --git a/.godot/imported/campfire_stones.fbx-b3fe69c4174c1113b64a2a6a15a67c20.md5 b/.godot/imported/campfire_stones.fbx-b3fe69c4174c1113b64a2a6a15a67c20.md5 new file mode 100644 index 0000000..adc6cf6 --- /dev/null +++ b/.godot/imported/campfire_stones.fbx-b3fe69c4174c1113b64a2a6a15a67c20.md5 @@ -0,0 +1,2 @@ +source_md5="617cc9ecba030043b3416414acf8fc28" +dest_md5="a2f83093b1dd0c2210cdf844bc2975d5" diff --git a/.godot/imported/campfire_stones.fbx-b3fe69c4174c1113b64a2a6a15a67c20.scn b/.godot/imported/campfire_stones.fbx-b3fe69c4174c1113b64a2a6a15a67c20.scn new file mode 100644 index 0000000..bade025 Binary files /dev/null and b/.godot/imported/campfire_stones.fbx-b3fe69c4174c1113b64a2a6a15a67c20.scn differ diff --git a/.godot/imported/canoe-5a13a20f98f99f8c2769b5bdb188b62e.glb b/.godot/imported/canoe-5a13a20f98f99f8c2769b5bdb188b62e.glb new file mode 100644 index 0000000..f17eaca Binary files /dev/null and b/.godot/imported/canoe-5a13a20f98f99f8c2769b5bdb188b62e.glb differ diff --git a/.godot/imported/canoe.fbx-5a13a20f98f99f8c2769b5bdb188b62e.md5 b/.godot/imported/canoe.fbx-5a13a20f98f99f8c2769b5bdb188b62e.md5 new file mode 100644 index 0000000..d9ae7f4 --- /dev/null +++ b/.godot/imported/canoe.fbx-5a13a20f98f99f8c2769b5bdb188b62e.md5 @@ -0,0 +1,2 @@ +source_md5="4f2e8075e66aadb7a78e2fa61a60a1db" +dest_md5="2b562670d0c5fa505e29e3cd9ad1a9f7" diff --git a/.godot/imported/canoe.fbx-5a13a20f98f99f8c2769b5bdb188b62e.scn b/.godot/imported/canoe.fbx-5a13a20f98f99f8c2769b5bdb188b62e.scn new file mode 100644 index 0000000..6f6ba28 Binary files /dev/null and b/.godot/imported/canoe.fbx-5a13a20f98f99f8c2769b5bdb188b62e.scn differ diff --git a/.godot/imported/canoe_paddle-e0865483d621015d983e94fde9cbc148.glb b/.godot/imported/canoe_paddle-e0865483d621015d983e94fde9cbc148.glb new file mode 100644 index 0000000..4db0bdb Binary files /dev/null and b/.godot/imported/canoe_paddle-e0865483d621015d983e94fde9cbc148.glb differ diff --git a/.godot/imported/canoe_paddle.fbx-e0865483d621015d983e94fde9cbc148.md5 b/.godot/imported/canoe_paddle.fbx-e0865483d621015d983e94fde9cbc148.md5 new file mode 100644 index 0000000..7977243 --- /dev/null +++ b/.godot/imported/canoe_paddle.fbx-e0865483d621015d983e94fde9cbc148.md5 @@ -0,0 +1,2 @@ +source_md5="22910b1fab1596b7cbbb4f616566429d" +dest_md5="c921e9c45cbea52ef6a1b6207f974147" diff --git a/.godot/imported/canoe_paddle.fbx-e0865483d621015d983e94fde9cbc148.scn b/.godot/imported/canoe_paddle.fbx-e0865483d621015d983e94fde9cbc148.scn new file mode 100644 index 0000000..fe68053 Binary files /dev/null and b/.godot/imported/canoe_paddle.fbx-e0865483d621015d983e94fde9cbc148.scn differ diff --git a/.godot/imported/car-ambiant.mp3-ff24ca63c4d5f0794881a808d0e98485.md5 b/.godot/imported/car-ambiant.mp3-ff24ca63c4d5f0794881a808d0e98485.md5 new file mode 100644 index 0000000..352139e --- /dev/null +++ b/.godot/imported/car-ambiant.mp3-ff24ca63c4d5f0794881a808d0e98485.md5 @@ -0,0 +1,2 @@ +source_md5="58f455da02f8163dfae42aa169d97adb" +dest_md5="1f6e0030605a9bb9ba30e1aa28bc3f72" diff --git a/.godot/imported/car-ambiant.mp3-ff24ca63c4d5f0794881a808d0e98485.mp3str b/.godot/imported/car-ambiant.mp3-ff24ca63c4d5f0794881a808d0e98485.mp3str new file mode 100644 index 0000000..1a4de91 Binary files /dev/null and b/.godot/imported/car-ambiant.mp3-ff24ca63c4d5f0794881a808d0e98485.mp3str differ diff --git a/.godot/imported/car-horn.mp3-77e293a7ad53bb580807765d09019218.md5 b/.godot/imported/car-horn.mp3-77e293a7ad53bb580807765d09019218.md5 new file mode 100644 index 0000000..d50e094 --- /dev/null +++ b/.godot/imported/car-horn.mp3-77e293a7ad53bb580807765d09019218.md5 @@ -0,0 +1,2 @@ +source_md5="58fcbe4123ac0335f37f4508cce5e7dd" +dest_md5="61de27322bea8adcf2060e888b83a5f3" diff --git a/.godot/imported/car-horn.mp3-77e293a7ad53bb580807765d09019218.mp3str b/.godot/imported/car-horn.mp3-77e293a7ad53bb580807765d09019218.mp3str new file mode 100644 index 0000000..8099e05 Binary files /dev/null and b/.godot/imported/car-horn.mp3-77e293a7ad53bb580807765d09019218.mp3str differ diff --git a/.godot/imported/car-horn.wav-89bf7b50c8e9525f026a4711b5f57c18.md5 b/.godot/imported/car-horn.wav-89bf7b50c8e9525f026a4711b5f57c18.md5 new file mode 100644 index 0000000..1c86853 --- /dev/null +++ b/.godot/imported/car-horn.wav-89bf7b50c8e9525f026a4711b5f57c18.md5 @@ -0,0 +1,2 @@ +source_md5="60d5e41e78545904c8ba51bdf1c34364" +dest_md5="8d67035e959d4112e3b3e14d1460dc33" diff --git a/.godot/imported/car-horn.wav-89bf7b50c8e9525f026a4711b5f57c18.sample b/.godot/imported/car-horn.wav-89bf7b50c8e9525f026a4711b5f57c18.sample new file mode 100644 index 0000000..dda750f Binary files /dev/null and b/.godot/imported/car-horn.wav-89bf7b50c8e9525f026a4711b5f57c18.sample differ diff --git a/.godot/imported/cart-17e7f3f8d04aa1d376a09a64e16e1ec0.glb b/.godot/imported/cart-17e7f3f8d04aa1d376a09a64e16e1ec0.glb new file mode 100644 index 0000000..2c98d44 Binary files /dev/null and b/.godot/imported/cart-17e7f3f8d04aa1d376a09a64e16e1ec0.glb differ diff --git a/.godot/imported/cart.fbx-17e7f3f8d04aa1d376a09a64e16e1ec0.md5 b/.godot/imported/cart.fbx-17e7f3f8d04aa1d376a09a64e16e1ec0.md5 new file mode 100644 index 0000000..d1e2a32 --- /dev/null +++ b/.godot/imported/cart.fbx-17e7f3f8d04aa1d376a09a64e16e1ec0.md5 @@ -0,0 +1,2 @@ +source_md5="93f689d691befa438c5a99dde3a70100" +dest_md5="f2789a7d6fc3c22ffad1f010d5460438" diff --git a/.godot/imported/cart.fbx-17e7f3f8d04aa1d376a09a64e16e1ec0.scn b/.godot/imported/cart.fbx-17e7f3f8d04aa1d376a09a64e16e1ec0.scn new file mode 100644 index 0000000..4bdadf9 Binary files /dev/null and b/.godot/imported/cart.fbx-17e7f3f8d04aa1d376a09a64e16e1ec0.scn differ diff --git a/.godot/imported/cartHigh-6deaf8e71868fa2866520913b6564cf2.glb b/.godot/imported/cartHigh-6deaf8e71868fa2866520913b6564cf2.glb new file mode 100644 index 0000000..f9d7763 Binary files /dev/null and b/.godot/imported/cartHigh-6deaf8e71868fa2866520913b6564cf2.glb differ diff --git a/.godot/imported/cartHigh.fbx-6deaf8e71868fa2866520913b6564cf2.md5 b/.godot/imported/cartHigh.fbx-6deaf8e71868fa2866520913b6564cf2.md5 new file mode 100644 index 0000000..267f632 --- /dev/null +++ b/.godot/imported/cartHigh.fbx-6deaf8e71868fa2866520913b6564cf2.md5 @@ -0,0 +1,2 @@ +source_md5="784507dd42763ca438801c79e1f62247" +dest_md5="c44def48c7fb0bb565df0e167b31cf9d" diff --git a/.godot/imported/cartHigh.fbx-6deaf8e71868fa2866520913b6564cf2.scn b/.godot/imported/cartHigh.fbx-6deaf8e71868fa2866520913b6564cf2.scn new file mode 100644 index 0000000..6eee9c6 Binary files /dev/null and b/.godot/imported/cartHigh.fbx-6deaf8e71868fa2866520913b6564cf2.scn differ diff --git a/.godot/imported/chimney-dd9e12bf9860536668c9c03027bd36cc.glb b/.godot/imported/chimney-dd9e12bf9860536668c9c03027bd36cc.glb new file mode 100644 index 0000000..9235e42 Binary files /dev/null and b/.godot/imported/chimney-dd9e12bf9860536668c9c03027bd36cc.glb differ diff --git a/.godot/imported/chimney.fbx-dd9e12bf9860536668c9c03027bd36cc.md5 b/.godot/imported/chimney.fbx-dd9e12bf9860536668c9c03027bd36cc.md5 new file mode 100644 index 0000000..fe089cf --- /dev/null +++ b/.godot/imported/chimney.fbx-dd9e12bf9860536668c9c03027bd36cc.md5 @@ -0,0 +1,2 @@ +source_md5="3744aaae572302b9dd5af60611ec80b1" +dest_md5="c892b0274a275ffedf5b3e0e072ef906" diff --git a/.godot/imported/chimney.fbx-dd9e12bf9860536668c9c03027bd36cc.scn b/.godot/imported/chimney.fbx-dd9e12bf9860536668c9c03027bd36cc.scn new file mode 100644 index 0000000..61c5eb8 Binary files /dev/null and b/.godot/imported/chimney.fbx-dd9e12bf9860536668c9c03027bd36cc.scn differ diff --git a/.godot/imported/chimneyBase-893c4c10b82084a69f8a7e26c783fb57.glb b/.godot/imported/chimneyBase-893c4c10b82084a69f8a7e26c783fb57.glb new file mode 100644 index 0000000..7bb3cf5 Binary files /dev/null and b/.godot/imported/chimneyBase-893c4c10b82084a69f8a7e26c783fb57.glb differ diff --git a/.godot/imported/chimneyBase.fbx-893c4c10b82084a69f8a7e26c783fb57.md5 b/.godot/imported/chimneyBase.fbx-893c4c10b82084a69f8a7e26c783fb57.md5 new file mode 100644 index 0000000..d9c3c2c --- /dev/null +++ b/.godot/imported/chimneyBase.fbx-893c4c10b82084a69f8a7e26c783fb57.md5 @@ -0,0 +1,2 @@ +source_md5="af977eb16e79ba48e35412e1f81423f9" +dest_md5="f1ee9b5ba7f089e6ff7b7f7197d42418" diff --git a/.godot/imported/chimneyBase.fbx-893c4c10b82084a69f8a7e26c783fb57.scn b/.godot/imported/chimneyBase.fbx-893c4c10b82084a69f8a7e26c783fb57.scn new file mode 100644 index 0000000..7ae8401 Binary files /dev/null and b/.godot/imported/chimneyBase.fbx-893c4c10b82084a69f8a7e26c783fb57.scn differ diff --git a/.godot/imported/chimneyTop-d8d5f743268a1ebbd0b48a27595f3b03.glb b/.godot/imported/chimneyTop-d8d5f743268a1ebbd0b48a27595f3b03.glb new file mode 100644 index 0000000..b452333 Binary files /dev/null and b/.godot/imported/chimneyTop-d8d5f743268a1ebbd0b48a27595f3b03.glb differ diff --git a/.godot/imported/chimneyTop.fbx-d8d5f743268a1ebbd0b48a27595f3b03.md5 b/.godot/imported/chimneyTop.fbx-d8d5f743268a1ebbd0b48a27595f3b03.md5 new file mode 100644 index 0000000..008666a --- /dev/null +++ b/.godot/imported/chimneyTop.fbx-d8d5f743268a1ebbd0b48a27595f3b03.md5 @@ -0,0 +1,2 @@ +source_md5="f957c955b6e5217c0fbe2cbcdf9d0268" +dest_md5="8f331277722da0fc3f045ab8f65e71e0" diff --git a/.godot/imported/chimneyTop.fbx-d8d5f743268a1ebbd0b48a27595f3b03.scn b/.godot/imported/chimneyTop.fbx-d8d5f743268a1ebbd0b48a27595f3b03.scn new file mode 100644 index 0000000..410af6e Binary files /dev/null and b/.godot/imported/chimneyTop.fbx-d8d5f743268a1ebbd0b48a27595f3b03.scn differ diff --git a/.godot/imported/cliff_blockCave_rock-cd185b9489888bc97de180bc73950403.glb b/.godot/imported/cliff_blockCave_rock-cd185b9489888bc97de180bc73950403.glb new file mode 100644 index 0000000..6405f57 Binary files /dev/null and b/.godot/imported/cliff_blockCave_rock-cd185b9489888bc97de180bc73950403.glb differ diff --git a/.godot/imported/cliff_blockCave_rock.fbx-cd185b9489888bc97de180bc73950403.md5 b/.godot/imported/cliff_blockCave_rock.fbx-cd185b9489888bc97de180bc73950403.md5 new file mode 100644 index 0000000..6f50c8d --- /dev/null +++ b/.godot/imported/cliff_blockCave_rock.fbx-cd185b9489888bc97de180bc73950403.md5 @@ -0,0 +1,2 @@ +source_md5="bedc2422a44a78651bcc41f39ba68697" +dest_md5="9402a9fb304e5650a5dd81e4a2c39712" diff --git a/.godot/imported/cliff_blockCave_rock.fbx-cd185b9489888bc97de180bc73950403.scn b/.godot/imported/cliff_blockCave_rock.fbx-cd185b9489888bc97de180bc73950403.scn new file mode 100644 index 0000000..b7de03f Binary files /dev/null and b/.godot/imported/cliff_blockCave_rock.fbx-cd185b9489888bc97de180bc73950403.scn differ diff --git a/.godot/imported/cliff_blockCave_stone-6424e2d7e8a5c07cb42b1a571e5e4f6a.glb b/.godot/imported/cliff_blockCave_stone-6424e2d7e8a5c07cb42b1a571e5e4f6a.glb new file mode 100644 index 0000000..8def3d6 Binary files /dev/null and b/.godot/imported/cliff_blockCave_stone-6424e2d7e8a5c07cb42b1a571e5e4f6a.glb differ diff --git a/.godot/imported/cliff_blockCave_stone.fbx-6424e2d7e8a5c07cb42b1a571e5e4f6a.md5 b/.godot/imported/cliff_blockCave_stone.fbx-6424e2d7e8a5c07cb42b1a571e5e4f6a.md5 new file mode 100644 index 0000000..ec0a199 --- /dev/null +++ b/.godot/imported/cliff_blockCave_stone.fbx-6424e2d7e8a5c07cb42b1a571e5e4f6a.md5 @@ -0,0 +1,2 @@ +source_md5="0d6629b45587b30d42fb91151296c614" +dest_md5="82a068372382548412a81ecc8c260fb5" diff --git a/.godot/imported/cliff_blockCave_stone.fbx-6424e2d7e8a5c07cb42b1a571e5e4f6a.scn b/.godot/imported/cliff_blockCave_stone.fbx-6424e2d7e8a5c07cb42b1a571e5e4f6a.scn new file mode 100644 index 0000000..5490212 Binary files /dev/null and b/.godot/imported/cliff_blockCave_stone.fbx-6424e2d7e8a5c07cb42b1a571e5e4f6a.scn differ diff --git a/.godot/imported/cliff_blockDiagonal_rock-5add4d70899321fe0a34dbdf775c71c7.glb b/.godot/imported/cliff_blockDiagonal_rock-5add4d70899321fe0a34dbdf775c71c7.glb new file mode 100644 index 0000000..be10e23 Binary files /dev/null and b/.godot/imported/cliff_blockDiagonal_rock-5add4d70899321fe0a34dbdf775c71c7.glb differ diff --git a/.godot/imported/cliff_blockDiagonal_rock.fbx-5add4d70899321fe0a34dbdf775c71c7.md5 b/.godot/imported/cliff_blockDiagonal_rock.fbx-5add4d70899321fe0a34dbdf775c71c7.md5 new file mode 100644 index 0000000..b623b2c --- /dev/null +++ b/.godot/imported/cliff_blockDiagonal_rock.fbx-5add4d70899321fe0a34dbdf775c71c7.md5 @@ -0,0 +1,2 @@ +source_md5="9cafff1531ddf979a5c034f65d2d23e4" +dest_md5="815a9d855b44314f25d0dfa3d3cbd141" diff --git a/.godot/imported/cliff_blockDiagonal_rock.fbx-5add4d70899321fe0a34dbdf775c71c7.scn b/.godot/imported/cliff_blockDiagonal_rock.fbx-5add4d70899321fe0a34dbdf775c71c7.scn new file mode 100644 index 0000000..75a1084 Binary files /dev/null and b/.godot/imported/cliff_blockDiagonal_rock.fbx-5add4d70899321fe0a34dbdf775c71c7.scn differ diff --git a/.godot/imported/cliff_blockDiagonal_stone-27d3c7d76338cc1c99fd5322da7f734f.glb b/.godot/imported/cliff_blockDiagonal_stone-27d3c7d76338cc1c99fd5322da7f734f.glb new file mode 100644 index 0000000..63c680b Binary files /dev/null and b/.godot/imported/cliff_blockDiagonal_stone-27d3c7d76338cc1c99fd5322da7f734f.glb differ diff --git a/.godot/imported/cliff_blockDiagonal_stone.fbx-27d3c7d76338cc1c99fd5322da7f734f.md5 b/.godot/imported/cliff_blockDiagonal_stone.fbx-27d3c7d76338cc1c99fd5322da7f734f.md5 new file mode 100644 index 0000000..374cb2d --- /dev/null +++ b/.godot/imported/cliff_blockDiagonal_stone.fbx-27d3c7d76338cc1c99fd5322da7f734f.md5 @@ -0,0 +1,2 @@ +source_md5="eae3c7eb5fa64e6c653014acd7b44769" +dest_md5="8effb58ab746f693652233dc81e56508" diff --git a/.godot/imported/cliff_blockDiagonal_stone.fbx-27d3c7d76338cc1c99fd5322da7f734f.scn b/.godot/imported/cliff_blockDiagonal_stone.fbx-27d3c7d76338cc1c99fd5322da7f734f.scn new file mode 100644 index 0000000..66ce85c Binary files /dev/null and b/.godot/imported/cliff_blockDiagonal_stone.fbx-27d3c7d76338cc1c99fd5322da7f734f.scn differ diff --git a/.godot/imported/cliff_blockHalf_rock-3785735c92a004aa469006c6108e6491.glb b/.godot/imported/cliff_blockHalf_rock-3785735c92a004aa469006c6108e6491.glb new file mode 100644 index 0000000..147c868 Binary files /dev/null and b/.godot/imported/cliff_blockHalf_rock-3785735c92a004aa469006c6108e6491.glb differ diff --git a/.godot/imported/cliff_blockHalf_rock.fbx-3785735c92a004aa469006c6108e6491.md5 b/.godot/imported/cliff_blockHalf_rock.fbx-3785735c92a004aa469006c6108e6491.md5 new file mode 100644 index 0000000..c1798c7 --- /dev/null +++ b/.godot/imported/cliff_blockHalf_rock.fbx-3785735c92a004aa469006c6108e6491.md5 @@ -0,0 +1,2 @@ +source_md5="6269a22312078331dd4f2a3591b38b59" +dest_md5="5f9486e14dbcca3f450cfc90d04694ea" diff --git a/.godot/imported/cliff_blockHalf_rock.fbx-3785735c92a004aa469006c6108e6491.scn b/.godot/imported/cliff_blockHalf_rock.fbx-3785735c92a004aa469006c6108e6491.scn new file mode 100644 index 0000000..08bd82e Binary files /dev/null and b/.godot/imported/cliff_blockHalf_rock.fbx-3785735c92a004aa469006c6108e6491.scn differ diff --git a/.godot/imported/cliff_blockHalf_stone-d7df29dc10a56cc0e5e8cd2343987f0c.glb b/.godot/imported/cliff_blockHalf_stone-d7df29dc10a56cc0e5e8cd2343987f0c.glb new file mode 100644 index 0000000..a9c2a08 Binary files /dev/null and b/.godot/imported/cliff_blockHalf_stone-d7df29dc10a56cc0e5e8cd2343987f0c.glb differ diff --git a/.godot/imported/cliff_blockHalf_stone.fbx-d7df29dc10a56cc0e5e8cd2343987f0c.md5 b/.godot/imported/cliff_blockHalf_stone.fbx-d7df29dc10a56cc0e5e8cd2343987f0c.md5 new file mode 100644 index 0000000..8a2e423 --- /dev/null +++ b/.godot/imported/cliff_blockHalf_stone.fbx-d7df29dc10a56cc0e5e8cd2343987f0c.md5 @@ -0,0 +1,2 @@ +source_md5="00479ea59f76e3a3931b292e2a8e9c1e" +dest_md5="5a42f824e852c1d079f4a6fda3b77527" diff --git a/.godot/imported/cliff_blockHalf_stone.fbx-d7df29dc10a56cc0e5e8cd2343987f0c.scn b/.godot/imported/cliff_blockHalf_stone.fbx-d7df29dc10a56cc0e5e8cd2343987f0c.scn new file mode 100644 index 0000000..747eba0 Binary files /dev/null and b/.godot/imported/cliff_blockHalf_stone.fbx-d7df29dc10a56cc0e5e8cd2343987f0c.scn differ diff --git a/.godot/imported/cliff_blockQuarter_rock-14cfb4660c88be7836cc64eb3bfbaf2e.glb b/.godot/imported/cliff_blockQuarter_rock-14cfb4660c88be7836cc64eb3bfbaf2e.glb new file mode 100644 index 0000000..3ebd13f Binary files /dev/null and b/.godot/imported/cliff_blockQuarter_rock-14cfb4660c88be7836cc64eb3bfbaf2e.glb differ diff --git a/.godot/imported/cliff_blockQuarter_rock.fbx-14cfb4660c88be7836cc64eb3bfbaf2e.md5 b/.godot/imported/cliff_blockQuarter_rock.fbx-14cfb4660c88be7836cc64eb3bfbaf2e.md5 new file mode 100644 index 0000000..ec78686 --- /dev/null +++ b/.godot/imported/cliff_blockQuarter_rock.fbx-14cfb4660c88be7836cc64eb3bfbaf2e.md5 @@ -0,0 +1,2 @@ +source_md5="1139acbb8b26a527623366704a438bdd" +dest_md5="1cd2326be6b8a994897331e27d84aaf9" diff --git a/.godot/imported/cliff_blockQuarter_rock.fbx-14cfb4660c88be7836cc64eb3bfbaf2e.scn b/.godot/imported/cliff_blockQuarter_rock.fbx-14cfb4660c88be7836cc64eb3bfbaf2e.scn new file mode 100644 index 0000000..4b1abb6 Binary files /dev/null and b/.godot/imported/cliff_blockQuarter_rock.fbx-14cfb4660c88be7836cc64eb3bfbaf2e.scn differ diff --git a/.godot/imported/cliff_blockQuarter_stone-291ee45adc893e066f0c8a3e6cbd386b.glb b/.godot/imported/cliff_blockQuarter_stone-291ee45adc893e066f0c8a3e6cbd386b.glb new file mode 100644 index 0000000..7230890 Binary files /dev/null and b/.godot/imported/cliff_blockQuarter_stone-291ee45adc893e066f0c8a3e6cbd386b.glb differ diff --git a/.godot/imported/cliff_blockQuarter_stone.fbx-291ee45adc893e066f0c8a3e6cbd386b.md5 b/.godot/imported/cliff_blockQuarter_stone.fbx-291ee45adc893e066f0c8a3e6cbd386b.md5 new file mode 100644 index 0000000..3aa970e --- /dev/null +++ b/.godot/imported/cliff_blockQuarter_stone.fbx-291ee45adc893e066f0c8a3e6cbd386b.md5 @@ -0,0 +1,2 @@ +source_md5="ba3dd1afff2c2efa89c743af4613a3e2" +dest_md5="11f88748d06b5b250ddda8c4a26d7532" diff --git a/.godot/imported/cliff_blockQuarter_stone.fbx-291ee45adc893e066f0c8a3e6cbd386b.scn b/.godot/imported/cliff_blockQuarter_stone.fbx-291ee45adc893e066f0c8a3e6cbd386b.scn new file mode 100644 index 0000000..54aa924 Binary files /dev/null and b/.godot/imported/cliff_blockQuarter_stone.fbx-291ee45adc893e066f0c8a3e6cbd386b.scn differ diff --git a/.godot/imported/cliff_blockSlopeHalfWalls_rock-f9c9cc51fd5f972fe4f8fb08b879fe96.glb b/.godot/imported/cliff_blockSlopeHalfWalls_rock-f9c9cc51fd5f972fe4f8fb08b879fe96.glb new file mode 100644 index 0000000..11fc2c9 Binary files /dev/null and b/.godot/imported/cliff_blockSlopeHalfWalls_rock-f9c9cc51fd5f972fe4f8fb08b879fe96.glb differ diff --git a/.godot/imported/cliff_blockSlopeHalfWalls_rock.fbx-f9c9cc51fd5f972fe4f8fb08b879fe96.md5 b/.godot/imported/cliff_blockSlopeHalfWalls_rock.fbx-f9c9cc51fd5f972fe4f8fb08b879fe96.md5 new file mode 100644 index 0000000..923c93e --- /dev/null +++ b/.godot/imported/cliff_blockSlopeHalfWalls_rock.fbx-f9c9cc51fd5f972fe4f8fb08b879fe96.md5 @@ -0,0 +1,2 @@ +source_md5="9387f1d796b5237cd7ac918b95f4e3b1" +dest_md5="7007fb34d2aa8fa29974ad39fbdad36d" diff --git a/.godot/imported/cliff_blockSlopeHalfWalls_rock.fbx-f9c9cc51fd5f972fe4f8fb08b879fe96.scn b/.godot/imported/cliff_blockSlopeHalfWalls_rock.fbx-f9c9cc51fd5f972fe4f8fb08b879fe96.scn new file mode 100644 index 0000000..7f79309 Binary files /dev/null and b/.godot/imported/cliff_blockSlopeHalfWalls_rock.fbx-f9c9cc51fd5f972fe4f8fb08b879fe96.scn differ diff --git a/.godot/imported/cliff_blockSlopeHalfWalls_stone-f4a445100db4de43192ae6b45a414fcb.glb b/.godot/imported/cliff_blockSlopeHalfWalls_stone-f4a445100db4de43192ae6b45a414fcb.glb new file mode 100644 index 0000000..b80758c Binary files /dev/null and b/.godot/imported/cliff_blockSlopeHalfWalls_stone-f4a445100db4de43192ae6b45a414fcb.glb differ diff --git a/.godot/imported/cliff_blockSlopeHalfWalls_stone.fbx-f4a445100db4de43192ae6b45a414fcb.md5 b/.godot/imported/cliff_blockSlopeHalfWalls_stone.fbx-f4a445100db4de43192ae6b45a414fcb.md5 new file mode 100644 index 0000000..a7d218c --- /dev/null +++ b/.godot/imported/cliff_blockSlopeHalfWalls_stone.fbx-f4a445100db4de43192ae6b45a414fcb.md5 @@ -0,0 +1,2 @@ +source_md5="fc4290863ee2f173b2a8943e9956b90a" +dest_md5="de6a2b2e4243ba436a3852b249d47998" diff --git a/.godot/imported/cliff_blockSlopeHalfWalls_stone.fbx-f4a445100db4de43192ae6b45a414fcb.scn b/.godot/imported/cliff_blockSlopeHalfWalls_stone.fbx-f4a445100db4de43192ae6b45a414fcb.scn new file mode 100644 index 0000000..30d1f03 Binary files /dev/null and b/.godot/imported/cliff_blockSlopeHalfWalls_stone.fbx-f4a445100db4de43192ae6b45a414fcb.scn differ diff --git a/.godot/imported/cliff_blockSlopeWalls_rock-6aba4bd797443db1545fffce70850e14.glb b/.godot/imported/cliff_blockSlopeWalls_rock-6aba4bd797443db1545fffce70850e14.glb new file mode 100644 index 0000000..43afd88 Binary files /dev/null and b/.godot/imported/cliff_blockSlopeWalls_rock-6aba4bd797443db1545fffce70850e14.glb differ diff --git a/.godot/imported/cliff_blockSlopeWalls_rock.fbx-6aba4bd797443db1545fffce70850e14.md5 b/.godot/imported/cliff_blockSlopeWalls_rock.fbx-6aba4bd797443db1545fffce70850e14.md5 new file mode 100644 index 0000000..9ffe687 --- /dev/null +++ b/.godot/imported/cliff_blockSlopeWalls_rock.fbx-6aba4bd797443db1545fffce70850e14.md5 @@ -0,0 +1,2 @@ +source_md5="441a75e7269224ece360055eab695f44" +dest_md5="88477c19192071691e51d41e229d7981" diff --git a/.godot/imported/cliff_blockSlopeWalls_rock.fbx-6aba4bd797443db1545fffce70850e14.scn b/.godot/imported/cliff_blockSlopeWalls_rock.fbx-6aba4bd797443db1545fffce70850e14.scn new file mode 100644 index 0000000..217c214 Binary files /dev/null and b/.godot/imported/cliff_blockSlopeWalls_rock.fbx-6aba4bd797443db1545fffce70850e14.scn differ diff --git a/.godot/imported/cliff_blockSlopeWalls_stone-c75edf5b5b8b169eb977b549650f7788.glb b/.godot/imported/cliff_blockSlopeWalls_stone-c75edf5b5b8b169eb977b549650f7788.glb new file mode 100644 index 0000000..ae16e76 Binary files /dev/null and b/.godot/imported/cliff_blockSlopeWalls_stone-c75edf5b5b8b169eb977b549650f7788.glb differ diff --git a/.godot/imported/cliff_blockSlopeWalls_stone.fbx-c75edf5b5b8b169eb977b549650f7788.md5 b/.godot/imported/cliff_blockSlopeWalls_stone.fbx-c75edf5b5b8b169eb977b549650f7788.md5 new file mode 100644 index 0000000..3bb7582 --- /dev/null +++ b/.godot/imported/cliff_blockSlopeWalls_stone.fbx-c75edf5b5b8b169eb977b549650f7788.md5 @@ -0,0 +1,2 @@ +source_md5="8f31185a8b320a34b1070399edab40ff" +dest_md5="ab40cdb51dd45c55d4110d26f31152fd" diff --git a/.godot/imported/cliff_blockSlopeWalls_stone.fbx-c75edf5b5b8b169eb977b549650f7788.scn b/.godot/imported/cliff_blockSlopeWalls_stone.fbx-c75edf5b5b8b169eb977b549650f7788.scn new file mode 100644 index 0000000..044dee5 Binary files /dev/null and b/.godot/imported/cliff_blockSlopeWalls_stone.fbx-c75edf5b5b8b169eb977b549650f7788.scn differ diff --git a/.godot/imported/cliff_blockSlope_rock-b32b6f44be4becd5f5e0ffdf6342f8ac.glb b/.godot/imported/cliff_blockSlope_rock-b32b6f44be4becd5f5e0ffdf6342f8ac.glb new file mode 100644 index 0000000..620f5eb Binary files /dev/null and b/.godot/imported/cliff_blockSlope_rock-b32b6f44be4becd5f5e0ffdf6342f8ac.glb differ diff --git a/.godot/imported/cliff_blockSlope_rock.fbx-b32b6f44be4becd5f5e0ffdf6342f8ac.md5 b/.godot/imported/cliff_blockSlope_rock.fbx-b32b6f44be4becd5f5e0ffdf6342f8ac.md5 new file mode 100644 index 0000000..86aa3b9 --- /dev/null +++ b/.godot/imported/cliff_blockSlope_rock.fbx-b32b6f44be4becd5f5e0ffdf6342f8ac.md5 @@ -0,0 +1,2 @@ +source_md5="5d46efea674d7941d592621262703994" +dest_md5="63949564a26fb3c84356c202b1534af3" diff --git a/.godot/imported/cliff_blockSlope_rock.fbx-b32b6f44be4becd5f5e0ffdf6342f8ac.scn b/.godot/imported/cliff_blockSlope_rock.fbx-b32b6f44be4becd5f5e0ffdf6342f8ac.scn new file mode 100644 index 0000000..f433906 Binary files /dev/null and b/.godot/imported/cliff_blockSlope_rock.fbx-b32b6f44be4becd5f5e0ffdf6342f8ac.scn differ diff --git a/.godot/imported/cliff_blockSlope_stone-0debca0e00b1bd4df0cb762d0170bdc2.glb b/.godot/imported/cliff_blockSlope_stone-0debca0e00b1bd4df0cb762d0170bdc2.glb new file mode 100644 index 0000000..12d68ea Binary files /dev/null and b/.godot/imported/cliff_blockSlope_stone-0debca0e00b1bd4df0cb762d0170bdc2.glb differ diff --git a/.godot/imported/cliff_blockSlope_stone.fbx-0debca0e00b1bd4df0cb762d0170bdc2.md5 b/.godot/imported/cliff_blockSlope_stone.fbx-0debca0e00b1bd4df0cb762d0170bdc2.md5 new file mode 100644 index 0000000..e246cb4 --- /dev/null +++ b/.godot/imported/cliff_blockSlope_stone.fbx-0debca0e00b1bd4df0cb762d0170bdc2.md5 @@ -0,0 +1,2 @@ +source_md5="7c742884799468a91723ce61b28bb854" +dest_md5="8acc6bb11f04e0e0c0038d72de21978d" diff --git a/.godot/imported/cliff_blockSlope_stone.fbx-0debca0e00b1bd4df0cb762d0170bdc2.scn b/.godot/imported/cliff_blockSlope_stone.fbx-0debca0e00b1bd4df0cb762d0170bdc2.scn new file mode 100644 index 0000000..e8f4bcb Binary files /dev/null and b/.godot/imported/cliff_blockSlope_stone.fbx-0debca0e00b1bd4df0cb762d0170bdc2.scn differ diff --git a/.godot/imported/cliff_block_rock-6f32fc0a6a82827d1f4044c71d72c6a3.glb b/.godot/imported/cliff_block_rock-6f32fc0a6a82827d1f4044c71d72c6a3.glb new file mode 100644 index 0000000..c2f5280 Binary files /dev/null and b/.godot/imported/cliff_block_rock-6f32fc0a6a82827d1f4044c71d72c6a3.glb differ diff --git a/.godot/imported/cliff_block_rock.fbx-6f32fc0a6a82827d1f4044c71d72c6a3.md5 b/.godot/imported/cliff_block_rock.fbx-6f32fc0a6a82827d1f4044c71d72c6a3.md5 new file mode 100644 index 0000000..894686a --- /dev/null +++ b/.godot/imported/cliff_block_rock.fbx-6f32fc0a6a82827d1f4044c71d72c6a3.md5 @@ -0,0 +1,2 @@ +source_md5="59df5fecfb9e71b1589173cb67332b50" +dest_md5="d218437a46df875d3450e621f3d57086" diff --git a/.godot/imported/cliff_block_rock.fbx-6f32fc0a6a82827d1f4044c71d72c6a3.scn b/.godot/imported/cliff_block_rock.fbx-6f32fc0a6a82827d1f4044c71d72c6a3.scn new file mode 100644 index 0000000..7cb1508 Binary files /dev/null and b/.godot/imported/cliff_block_rock.fbx-6f32fc0a6a82827d1f4044c71d72c6a3.scn differ diff --git a/.godot/imported/cliff_block_stone-ef6f058b985dd7174d1b70ae1485055b.glb b/.godot/imported/cliff_block_stone-ef6f058b985dd7174d1b70ae1485055b.glb new file mode 100644 index 0000000..937937b Binary files /dev/null and b/.godot/imported/cliff_block_stone-ef6f058b985dd7174d1b70ae1485055b.glb differ diff --git a/.godot/imported/cliff_block_stone.fbx-ef6f058b985dd7174d1b70ae1485055b.md5 b/.godot/imported/cliff_block_stone.fbx-ef6f058b985dd7174d1b70ae1485055b.md5 new file mode 100644 index 0000000..cfa359b --- /dev/null +++ b/.godot/imported/cliff_block_stone.fbx-ef6f058b985dd7174d1b70ae1485055b.md5 @@ -0,0 +1,2 @@ +source_md5="69f1f71842c954e80e02ae0965c068eb" +dest_md5="c313330c4e63c18a1d12c0987fbf6c83" diff --git a/.godot/imported/cliff_block_stone.fbx-ef6f058b985dd7174d1b70ae1485055b.scn b/.godot/imported/cliff_block_stone.fbx-ef6f058b985dd7174d1b70ae1485055b.scn new file mode 100644 index 0000000..773b856 Binary files /dev/null and b/.godot/imported/cliff_block_stone.fbx-ef6f058b985dd7174d1b70ae1485055b.scn differ diff --git a/.godot/imported/cliff_cave_rock-7fc8b171c3b1e44315d3eb44f83930c9.glb b/.godot/imported/cliff_cave_rock-7fc8b171c3b1e44315d3eb44f83930c9.glb new file mode 100644 index 0000000..725a6f9 Binary files /dev/null and b/.godot/imported/cliff_cave_rock-7fc8b171c3b1e44315d3eb44f83930c9.glb differ diff --git a/.godot/imported/cliff_cave_rock.fbx-7fc8b171c3b1e44315d3eb44f83930c9.md5 b/.godot/imported/cliff_cave_rock.fbx-7fc8b171c3b1e44315d3eb44f83930c9.md5 new file mode 100644 index 0000000..95e8651 --- /dev/null +++ b/.godot/imported/cliff_cave_rock.fbx-7fc8b171c3b1e44315d3eb44f83930c9.md5 @@ -0,0 +1,2 @@ +source_md5="6b0f259e7867211fddd1c99f516213d7" +dest_md5="2cc5b990d91fac0d5bd6f175e2c013fa" diff --git a/.godot/imported/cliff_cave_rock.fbx-7fc8b171c3b1e44315d3eb44f83930c9.scn b/.godot/imported/cliff_cave_rock.fbx-7fc8b171c3b1e44315d3eb44f83930c9.scn new file mode 100644 index 0000000..806730e Binary files /dev/null and b/.godot/imported/cliff_cave_rock.fbx-7fc8b171c3b1e44315d3eb44f83930c9.scn differ diff --git a/.godot/imported/cliff_cave_stone-af9a8aa486bfdab5bfc69d721af7157e.glb b/.godot/imported/cliff_cave_stone-af9a8aa486bfdab5bfc69d721af7157e.glb new file mode 100644 index 0000000..013be90 Binary files /dev/null and b/.godot/imported/cliff_cave_stone-af9a8aa486bfdab5bfc69d721af7157e.glb differ diff --git a/.godot/imported/cliff_cave_stone.fbx-af9a8aa486bfdab5bfc69d721af7157e.md5 b/.godot/imported/cliff_cave_stone.fbx-af9a8aa486bfdab5bfc69d721af7157e.md5 new file mode 100644 index 0000000..dd8ad6d --- /dev/null +++ b/.godot/imported/cliff_cave_stone.fbx-af9a8aa486bfdab5bfc69d721af7157e.md5 @@ -0,0 +1,2 @@ +source_md5="3cfc6ab529e76198afdb21f709442cce" +dest_md5="d725764f5d3420f22c8b3096a5bb2143" diff --git a/.godot/imported/cliff_cave_stone.fbx-af9a8aa486bfdab5bfc69d721af7157e.scn b/.godot/imported/cliff_cave_stone.fbx-af9a8aa486bfdab5bfc69d721af7157e.scn new file mode 100644 index 0000000..b293f39 Binary files /dev/null and b/.godot/imported/cliff_cave_stone.fbx-af9a8aa486bfdab5bfc69d721af7157e.scn differ diff --git a/.godot/imported/cliff_cornerInnerLarge_rock-040fefef87cdef38471d43856df58586.glb b/.godot/imported/cliff_cornerInnerLarge_rock-040fefef87cdef38471d43856df58586.glb new file mode 100644 index 0000000..fa99be4 Binary files /dev/null and b/.godot/imported/cliff_cornerInnerLarge_rock-040fefef87cdef38471d43856df58586.glb differ diff --git a/.godot/imported/cliff_cornerInnerLarge_rock.fbx-040fefef87cdef38471d43856df58586.md5 b/.godot/imported/cliff_cornerInnerLarge_rock.fbx-040fefef87cdef38471d43856df58586.md5 new file mode 100644 index 0000000..3932b27 --- /dev/null +++ b/.godot/imported/cliff_cornerInnerLarge_rock.fbx-040fefef87cdef38471d43856df58586.md5 @@ -0,0 +1,2 @@ +source_md5="c2efc8b6116f0249178dfbef4b859ef2" +dest_md5="13f4129b5b4cd36a0168e030e8580a31" diff --git a/.godot/imported/cliff_cornerInnerLarge_rock.fbx-040fefef87cdef38471d43856df58586.scn b/.godot/imported/cliff_cornerInnerLarge_rock.fbx-040fefef87cdef38471d43856df58586.scn new file mode 100644 index 0000000..e740376 Binary files /dev/null and b/.godot/imported/cliff_cornerInnerLarge_rock.fbx-040fefef87cdef38471d43856df58586.scn differ diff --git a/.godot/imported/cliff_cornerInnerLarge_stone-ef5876a7703ee83be5e750c433c361c8.glb b/.godot/imported/cliff_cornerInnerLarge_stone-ef5876a7703ee83be5e750c433c361c8.glb new file mode 100644 index 0000000..885dd27 Binary files /dev/null and b/.godot/imported/cliff_cornerInnerLarge_stone-ef5876a7703ee83be5e750c433c361c8.glb differ diff --git a/.godot/imported/cliff_cornerInnerLarge_stone.fbx-ef5876a7703ee83be5e750c433c361c8.md5 b/.godot/imported/cliff_cornerInnerLarge_stone.fbx-ef5876a7703ee83be5e750c433c361c8.md5 new file mode 100644 index 0000000..f6d4858 --- /dev/null +++ b/.godot/imported/cliff_cornerInnerLarge_stone.fbx-ef5876a7703ee83be5e750c433c361c8.md5 @@ -0,0 +1,2 @@ +source_md5="adb171ca1a2438445e0b7e6bf3fe8636" +dest_md5="700b447f556f5f57d4c3a28c851d17a2" diff --git a/.godot/imported/cliff_cornerInnerLarge_stone.fbx-ef5876a7703ee83be5e750c433c361c8.scn b/.godot/imported/cliff_cornerInnerLarge_stone.fbx-ef5876a7703ee83be5e750c433c361c8.scn new file mode 100644 index 0000000..93d18b5 Binary files /dev/null and b/.godot/imported/cliff_cornerInnerLarge_stone.fbx-ef5876a7703ee83be5e750c433c361c8.scn differ diff --git a/.godot/imported/cliff_cornerInnerTop_rock-aa7974a76bfaddc2911c7a3a45b2e3d9.glb b/.godot/imported/cliff_cornerInnerTop_rock-aa7974a76bfaddc2911c7a3a45b2e3d9.glb new file mode 100644 index 0000000..2024d45 Binary files /dev/null and b/.godot/imported/cliff_cornerInnerTop_rock-aa7974a76bfaddc2911c7a3a45b2e3d9.glb differ diff --git a/.godot/imported/cliff_cornerInnerTop_rock.fbx-aa7974a76bfaddc2911c7a3a45b2e3d9.md5 b/.godot/imported/cliff_cornerInnerTop_rock.fbx-aa7974a76bfaddc2911c7a3a45b2e3d9.md5 new file mode 100644 index 0000000..6dfecab --- /dev/null +++ b/.godot/imported/cliff_cornerInnerTop_rock.fbx-aa7974a76bfaddc2911c7a3a45b2e3d9.md5 @@ -0,0 +1,2 @@ +source_md5="958b47ec82ce872d69cf5232567ebbde" +dest_md5="a408a6ac1f1337ad56b79ca08a2e930c" diff --git a/.godot/imported/cliff_cornerInnerTop_rock.fbx-aa7974a76bfaddc2911c7a3a45b2e3d9.scn b/.godot/imported/cliff_cornerInnerTop_rock.fbx-aa7974a76bfaddc2911c7a3a45b2e3d9.scn new file mode 100644 index 0000000..83ff8f6 Binary files /dev/null and b/.godot/imported/cliff_cornerInnerTop_rock.fbx-aa7974a76bfaddc2911c7a3a45b2e3d9.scn differ diff --git a/.godot/imported/cliff_cornerInnerTop_stone-8b0ea36a3f1a28148c03cd19e3d5c0e2.glb b/.godot/imported/cliff_cornerInnerTop_stone-8b0ea36a3f1a28148c03cd19e3d5c0e2.glb new file mode 100644 index 0000000..d0125b2 Binary files /dev/null and b/.godot/imported/cliff_cornerInnerTop_stone-8b0ea36a3f1a28148c03cd19e3d5c0e2.glb differ diff --git a/.godot/imported/cliff_cornerInnerTop_stone.fbx-8b0ea36a3f1a28148c03cd19e3d5c0e2.md5 b/.godot/imported/cliff_cornerInnerTop_stone.fbx-8b0ea36a3f1a28148c03cd19e3d5c0e2.md5 new file mode 100644 index 0000000..cce91ae --- /dev/null +++ b/.godot/imported/cliff_cornerInnerTop_stone.fbx-8b0ea36a3f1a28148c03cd19e3d5c0e2.md5 @@ -0,0 +1,2 @@ +source_md5="33fc70365febe25c48646776edf75f90" +dest_md5="5937f06c30f3718be4f755a8221b9e1e" diff --git a/.godot/imported/cliff_cornerInnerTop_stone.fbx-8b0ea36a3f1a28148c03cd19e3d5c0e2.scn b/.godot/imported/cliff_cornerInnerTop_stone.fbx-8b0ea36a3f1a28148c03cd19e3d5c0e2.scn new file mode 100644 index 0000000..793d6ee Binary files /dev/null and b/.godot/imported/cliff_cornerInnerTop_stone.fbx-8b0ea36a3f1a28148c03cd19e3d5c0e2.scn differ diff --git a/.godot/imported/cliff_cornerInner_rock-beb132022421ac125f5d2184e54677ee.glb b/.godot/imported/cliff_cornerInner_rock-beb132022421ac125f5d2184e54677ee.glb new file mode 100644 index 0000000..e525aea Binary files /dev/null and b/.godot/imported/cliff_cornerInner_rock-beb132022421ac125f5d2184e54677ee.glb differ diff --git a/.godot/imported/cliff_cornerInner_rock.fbx-beb132022421ac125f5d2184e54677ee.md5 b/.godot/imported/cliff_cornerInner_rock.fbx-beb132022421ac125f5d2184e54677ee.md5 new file mode 100644 index 0000000..cf0c4fc --- /dev/null +++ b/.godot/imported/cliff_cornerInner_rock.fbx-beb132022421ac125f5d2184e54677ee.md5 @@ -0,0 +1,2 @@ +source_md5="275b655d7b308ed77ebe4f01bfbca5e0" +dest_md5="12c4adfeb9e171b3f37ff16bada1993b" diff --git a/.godot/imported/cliff_cornerInner_rock.fbx-beb132022421ac125f5d2184e54677ee.scn b/.godot/imported/cliff_cornerInner_rock.fbx-beb132022421ac125f5d2184e54677ee.scn new file mode 100644 index 0000000..fa1950a Binary files /dev/null and b/.godot/imported/cliff_cornerInner_rock.fbx-beb132022421ac125f5d2184e54677ee.scn differ diff --git a/.godot/imported/cliff_cornerInner_stone-c975dd975e4f52276e04e62a60695351.glb b/.godot/imported/cliff_cornerInner_stone-c975dd975e4f52276e04e62a60695351.glb new file mode 100644 index 0000000..4c70530 Binary files /dev/null and b/.godot/imported/cliff_cornerInner_stone-c975dd975e4f52276e04e62a60695351.glb differ diff --git a/.godot/imported/cliff_cornerInner_stone.fbx-c975dd975e4f52276e04e62a60695351.md5 b/.godot/imported/cliff_cornerInner_stone.fbx-c975dd975e4f52276e04e62a60695351.md5 new file mode 100644 index 0000000..75c1536 --- /dev/null +++ b/.godot/imported/cliff_cornerInner_stone.fbx-c975dd975e4f52276e04e62a60695351.md5 @@ -0,0 +1,2 @@ +source_md5="b6393bbb5c0b3652b9294dd1e6851f43" +dest_md5="b08bd2a38299ca42554414ef1da74bd7" diff --git a/.godot/imported/cliff_cornerInner_stone.fbx-c975dd975e4f52276e04e62a60695351.scn b/.godot/imported/cliff_cornerInner_stone.fbx-c975dd975e4f52276e04e62a60695351.scn new file mode 100644 index 0000000..19a9ea6 Binary files /dev/null and b/.godot/imported/cliff_cornerInner_stone.fbx-c975dd975e4f52276e04e62a60695351.scn differ diff --git a/.godot/imported/cliff_cornerLarge_rock-15e1fde88c0b55fc7acb05e68411a087.glb b/.godot/imported/cliff_cornerLarge_rock-15e1fde88c0b55fc7acb05e68411a087.glb new file mode 100644 index 0000000..293ac77 Binary files /dev/null and b/.godot/imported/cliff_cornerLarge_rock-15e1fde88c0b55fc7acb05e68411a087.glb differ diff --git a/.godot/imported/cliff_cornerLarge_rock.fbx-15e1fde88c0b55fc7acb05e68411a087.md5 b/.godot/imported/cliff_cornerLarge_rock.fbx-15e1fde88c0b55fc7acb05e68411a087.md5 new file mode 100644 index 0000000..eba2367 --- /dev/null +++ b/.godot/imported/cliff_cornerLarge_rock.fbx-15e1fde88c0b55fc7acb05e68411a087.md5 @@ -0,0 +1,2 @@ +source_md5="66a002e32a3cb30ef11baa3a076bb645" +dest_md5="bcbc6c99b3c4a08dcc6a8b2fe1f4ceeb" diff --git a/.godot/imported/cliff_cornerLarge_rock.fbx-15e1fde88c0b55fc7acb05e68411a087.scn b/.godot/imported/cliff_cornerLarge_rock.fbx-15e1fde88c0b55fc7acb05e68411a087.scn new file mode 100644 index 0000000..83e97a5 Binary files /dev/null and b/.godot/imported/cliff_cornerLarge_rock.fbx-15e1fde88c0b55fc7acb05e68411a087.scn differ diff --git a/.godot/imported/cliff_cornerLarge_stone-b8f58f45090de3fd089281e10be67b9c.glb b/.godot/imported/cliff_cornerLarge_stone-b8f58f45090de3fd089281e10be67b9c.glb new file mode 100644 index 0000000..9652b97 Binary files /dev/null and b/.godot/imported/cliff_cornerLarge_stone-b8f58f45090de3fd089281e10be67b9c.glb differ diff --git a/.godot/imported/cliff_cornerLarge_stone.fbx-b8f58f45090de3fd089281e10be67b9c.md5 b/.godot/imported/cliff_cornerLarge_stone.fbx-b8f58f45090de3fd089281e10be67b9c.md5 new file mode 100644 index 0000000..2f4baae --- /dev/null +++ b/.godot/imported/cliff_cornerLarge_stone.fbx-b8f58f45090de3fd089281e10be67b9c.md5 @@ -0,0 +1,2 @@ +source_md5="6ea492e549524c594338df83bd33e0c8" +dest_md5="34c21aa903d371408a70605a4ae2425e" diff --git a/.godot/imported/cliff_cornerLarge_stone.fbx-b8f58f45090de3fd089281e10be67b9c.scn b/.godot/imported/cliff_cornerLarge_stone.fbx-b8f58f45090de3fd089281e10be67b9c.scn new file mode 100644 index 0000000..ceff0ad Binary files /dev/null and b/.godot/imported/cliff_cornerLarge_stone.fbx-b8f58f45090de3fd089281e10be67b9c.scn differ diff --git a/.godot/imported/cliff_cornerTop_rock-229bcf7d4f57446394a0cb46831e779d.glb b/.godot/imported/cliff_cornerTop_rock-229bcf7d4f57446394a0cb46831e779d.glb new file mode 100644 index 0000000..7f0a63e Binary files /dev/null and b/.godot/imported/cliff_cornerTop_rock-229bcf7d4f57446394a0cb46831e779d.glb differ diff --git a/.godot/imported/cliff_cornerTop_rock.fbx-229bcf7d4f57446394a0cb46831e779d.md5 b/.godot/imported/cliff_cornerTop_rock.fbx-229bcf7d4f57446394a0cb46831e779d.md5 new file mode 100644 index 0000000..b373028 --- /dev/null +++ b/.godot/imported/cliff_cornerTop_rock.fbx-229bcf7d4f57446394a0cb46831e779d.md5 @@ -0,0 +1,2 @@ +source_md5="3b020a579fda0cb0a96a78f02b4b4c35" +dest_md5="6cb2db794d64c4455d0978f37d0e1461" diff --git a/.godot/imported/cliff_cornerTop_rock.fbx-229bcf7d4f57446394a0cb46831e779d.scn b/.godot/imported/cliff_cornerTop_rock.fbx-229bcf7d4f57446394a0cb46831e779d.scn new file mode 100644 index 0000000..b8d9528 Binary files /dev/null and b/.godot/imported/cliff_cornerTop_rock.fbx-229bcf7d4f57446394a0cb46831e779d.scn differ diff --git a/.godot/imported/cliff_cornerTop_stone-7569836f5bb1bd73440596a62b344434.glb b/.godot/imported/cliff_cornerTop_stone-7569836f5bb1bd73440596a62b344434.glb new file mode 100644 index 0000000..401b500 Binary files /dev/null and b/.godot/imported/cliff_cornerTop_stone-7569836f5bb1bd73440596a62b344434.glb differ diff --git a/.godot/imported/cliff_cornerTop_stone.fbx-7569836f5bb1bd73440596a62b344434.md5 b/.godot/imported/cliff_cornerTop_stone.fbx-7569836f5bb1bd73440596a62b344434.md5 new file mode 100644 index 0000000..7776904 --- /dev/null +++ b/.godot/imported/cliff_cornerTop_stone.fbx-7569836f5bb1bd73440596a62b344434.md5 @@ -0,0 +1,2 @@ +source_md5="0c4bb088762941e4c977c4a2416fa333" +dest_md5="760e200a4382fcd221ff5b19030e29d5" diff --git a/.godot/imported/cliff_cornerTop_stone.fbx-7569836f5bb1bd73440596a62b344434.scn b/.godot/imported/cliff_cornerTop_stone.fbx-7569836f5bb1bd73440596a62b344434.scn new file mode 100644 index 0000000..aad88bd Binary files /dev/null and b/.godot/imported/cliff_cornerTop_stone.fbx-7569836f5bb1bd73440596a62b344434.scn differ diff --git a/.godot/imported/cliff_corner_rock-fcfba0aa19fa32258d24fad54e7d0cbb.glb b/.godot/imported/cliff_corner_rock-fcfba0aa19fa32258d24fad54e7d0cbb.glb new file mode 100644 index 0000000..3cd37f4 Binary files /dev/null and b/.godot/imported/cliff_corner_rock-fcfba0aa19fa32258d24fad54e7d0cbb.glb differ diff --git a/.godot/imported/cliff_corner_rock.fbx-fcfba0aa19fa32258d24fad54e7d0cbb.md5 b/.godot/imported/cliff_corner_rock.fbx-fcfba0aa19fa32258d24fad54e7d0cbb.md5 new file mode 100644 index 0000000..7455945 --- /dev/null +++ b/.godot/imported/cliff_corner_rock.fbx-fcfba0aa19fa32258d24fad54e7d0cbb.md5 @@ -0,0 +1,2 @@ +source_md5="9ca6eb8c1ff423119b5d1bdf2004d2da" +dest_md5="6aaaf92f26fc2df662e07ff099d6280a" diff --git a/.godot/imported/cliff_corner_rock.fbx-fcfba0aa19fa32258d24fad54e7d0cbb.scn b/.godot/imported/cliff_corner_rock.fbx-fcfba0aa19fa32258d24fad54e7d0cbb.scn new file mode 100644 index 0000000..19a5c25 Binary files /dev/null and b/.godot/imported/cliff_corner_rock.fbx-fcfba0aa19fa32258d24fad54e7d0cbb.scn differ diff --git a/.godot/imported/cliff_corner_stone-5a177b95ba4e90e7dc15edd1731ae720.glb b/.godot/imported/cliff_corner_stone-5a177b95ba4e90e7dc15edd1731ae720.glb new file mode 100644 index 0000000..baabc5d Binary files /dev/null and b/.godot/imported/cliff_corner_stone-5a177b95ba4e90e7dc15edd1731ae720.glb differ diff --git a/.godot/imported/cliff_corner_stone.fbx-5a177b95ba4e90e7dc15edd1731ae720.md5 b/.godot/imported/cliff_corner_stone.fbx-5a177b95ba4e90e7dc15edd1731ae720.md5 new file mode 100644 index 0000000..34c6d45 --- /dev/null +++ b/.godot/imported/cliff_corner_stone.fbx-5a177b95ba4e90e7dc15edd1731ae720.md5 @@ -0,0 +1,2 @@ +source_md5="646de4009fd4637bf5b3cfbe44a10041" +dest_md5="f838ccf0f3e346b1887bdf4f43ab1e0d" diff --git a/.godot/imported/cliff_corner_stone.fbx-5a177b95ba4e90e7dc15edd1731ae720.scn b/.godot/imported/cliff_corner_stone.fbx-5a177b95ba4e90e7dc15edd1731ae720.scn new file mode 100644 index 0000000..fc0a7e3 Binary files /dev/null and b/.godot/imported/cliff_corner_stone.fbx-5a177b95ba4e90e7dc15edd1731ae720.scn differ diff --git a/.godot/imported/cliff_diagonal_rock-a636df227a045b094d9a77f96c64a258.glb b/.godot/imported/cliff_diagonal_rock-a636df227a045b094d9a77f96c64a258.glb new file mode 100644 index 0000000..2ad5044 Binary files /dev/null and b/.godot/imported/cliff_diagonal_rock-a636df227a045b094d9a77f96c64a258.glb differ diff --git a/.godot/imported/cliff_diagonal_rock.fbx-a636df227a045b094d9a77f96c64a258.md5 b/.godot/imported/cliff_diagonal_rock.fbx-a636df227a045b094d9a77f96c64a258.md5 new file mode 100644 index 0000000..54d9c54 --- /dev/null +++ b/.godot/imported/cliff_diagonal_rock.fbx-a636df227a045b094d9a77f96c64a258.md5 @@ -0,0 +1,2 @@ +source_md5="3a58fe98d644a238c027d5289ca386e3" +dest_md5="3ffc0a3bfc0ffdbb783778e9b0259f4a" diff --git a/.godot/imported/cliff_diagonal_rock.fbx-a636df227a045b094d9a77f96c64a258.scn b/.godot/imported/cliff_diagonal_rock.fbx-a636df227a045b094d9a77f96c64a258.scn new file mode 100644 index 0000000..a4f5d90 Binary files /dev/null and b/.godot/imported/cliff_diagonal_rock.fbx-a636df227a045b094d9a77f96c64a258.scn differ diff --git a/.godot/imported/cliff_diagonal_stone-1e9129adcdb17d9a5340566c94aefb81.glb b/.godot/imported/cliff_diagonal_stone-1e9129adcdb17d9a5340566c94aefb81.glb new file mode 100644 index 0000000..fb40a86 Binary files /dev/null and b/.godot/imported/cliff_diagonal_stone-1e9129adcdb17d9a5340566c94aefb81.glb differ diff --git a/.godot/imported/cliff_diagonal_stone.fbx-1e9129adcdb17d9a5340566c94aefb81.md5 b/.godot/imported/cliff_diagonal_stone.fbx-1e9129adcdb17d9a5340566c94aefb81.md5 new file mode 100644 index 0000000..72a67df --- /dev/null +++ b/.godot/imported/cliff_diagonal_stone.fbx-1e9129adcdb17d9a5340566c94aefb81.md5 @@ -0,0 +1,2 @@ +source_md5="90b45afe1693d9ff58a253874b3478ba" +dest_md5="1d99b2bcc76ab63a1685c38edb4b421a" diff --git a/.godot/imported/cliff_diagonal_stone.fbx-1e9129adcdb17d9a5340566c94aefb81.scn b/.godot/imported/cliff_diagonal_stone.fbx-1e9129adcdb17d9a5340566c94aefb81.scn new file mode 100644 index 0000000..991ed79 Binary files /dev/null and b/.godot/imported/cliff_diagonal_stone.fbx-1e9129adcdb17d9a5340566c94aefb81.scn differ diff --git a/.godot/imported/cliff_halfCornerInner_rock-a415d8a335e7eb027b39bdcab7a357a2.glb b/.godot/imported/cliff_halfCornerInner_rock-a415d8a335e7eb027b39bdcab7a357a2.glb new file mode 100644 index 0000000..ef86b12 Binary files /dev/null and b/.godot/imported/cliff_halfCornerInner_rock-a415d8a335e7eb027b39bdcab7a357a2.glb differ diff --git a/.godot/imported/cliff_halfCornerInner_rock.fbx-a415d8a335e7eb027b39bdcab7a357a2.md5 b/.godot/imported/cliff_halfCornerInner_rock.fbx-a415d8a335e7eb027b39bdcab7a357a2.md5 new file mode 100644 index 0000000..1a2c316 --- /dev/null +++ b/.godot/imported/cliff_halfCornerInner_rock.fbx-a415d8a335e7eb027b39bdcab7a357a2.md5 @@ -0,0 +1,2 @@ +source_md5="233f2d9f44ce8b24cf4bec3d7b2d326b" +dest_md5="63a8906e8e5a496d9ae8e58b4be9590c" diff --git a/.godot/imported/cliff_halfCornerInner_rock.fbx-a415d8a335e7eb027b39bdcab7a357a2.scn b/.godot/imported/cliff_halfCornerInner_rock.fbx-a415d8a335e7eb027b39bdcab7a357a2.scn new file mode 100644 index 0000000..c7406d9 Binary files /dev/null and b/.godot/imported/cliff_halfCornerInner_rock.fbx-a415d8a335e7eb027b39bdcab7a357a2.scn differ diff --git a/.godot/imported/cliff_halfCornerInner_stone-3152d054586d2fa25c001532b34bceeb.glb b/.godot/imported/cliff_halfCornerInner_stone-3152d054586d2fa25c001532b34bceeb.glb new file mode 100644 index 0000000..c2db852 Binary files /dev/null and b/.godot/imported/cliff_halfCornerInner_stone-3152d054586d2fa25c001532b34bceeb.glb differ diff --git a/.godot/imported/cliff_halfCornerInner_stone.fbx-3152d054586d2fa25c001532b34bceeb.md5 b/.godot/imported/cliff_halfCornerInner_stone.fbx-3152d054586d2fa25c001532b34bceeb.md5 new file mode 100644 index 0000000..0d2072d --- /dev/null +++ b/.godot/imported/cliff_halfCornerInner_stone.fbx-3152d054586d2fa25c001532b34bceeb.md5 @@ -0,0 +1,2 @@ +source_md5="d10a22477efab6ad68e65a99fd0d8ffa" +dest_md5="6aecb52329b2bdf0bde6fbc3dab9fd0b" diff --git a/.godot/imported/cliff_halfCornerInner_stone.fbx-3152d054586d2fa25c001532b34bceeb.scn b/.godot/imported/cliff_halfCornerInner_stone.fbx-3152d054586d2fa25c001532b34bceeb.scn new file mode 100644 index 0000000..5a80e6c Binary files /dev/null and b/.godot/imported/cliff_halfCornerInner_stone.fbx-3152d054586d2fa25c001532b34bceeb.scn differ diff --git a/.godot/imported/cliff_halfCorner_rock-c2dc3455f397680a2e10dbc65629f06e.glb b/.godot/imported/cliff_halfCorner_rock-c2dc3455f397680a2e10dbc65629f06e.glb new file mode 100644 index 0000000..d908bf5 Binary files /dev/null and b/.godot/imported/cliff_halfCorner_rock-c2dc3455f397680a2e10dbc65629f06e.glb differ diff --git a/.godot/imported/cliff_halfCorner_rock.fbx-c2dc3455f397680a2e10dbc65629f06e.md5 b/.godot/imported/cliff_halfCorner_rock.fbx-c2dc3455f397680a2e10dbc65629f06e.md5 new file mode 100644 index 0000000..99dc44c --- /dev/null +++ b/.godot/imported/cliff_halfCorner_rock.fbx-c2dc3455f397680a2e10dbc65629f06e.md5 @@ -0,0 +1,2 @@ +source_md5="01ff0de3c34c528ed7b27acbf2ebddfe" +dest_md5="bafa08df50235f6afcf8c6747e60e0df" diff --git a/.godot/imported/cliff_halfCorner_rock.fbx-c2dc3455f397680a2e10dbc65629f06e.scn b/.godot/imported/cliff_halfCorner_rock.fbx-c2dc3455f397680a2e10dbc65629f06e.scn new file mode 100644 index 0000000..2ab179d Binary files /dev/null and b/.godot/imported/cliff_halfCorner_rock.fbx-c2dc3455f397680a2e10dbc65629f06e.scn differ diff --git a/.godot/imported/cliff_halfCorner_stone-09bcd25a890d2800b2c9c34c086845f1.glb b/.godot/imported/cliff_halfCorner_stone-09bcd25a890d2800b2c9c34c086845f1.glb new file mode 100644 index 0000000..afdca44 Binary files /dev/null and b/.godot/imported/cliff_halfCorner_stone-09bcd25a890d2800b2c9c34c086845f1.glb differ diff --git a/.godot/imported/cliff_halfCorner_stone.fbx-09bcd25a890d2800b2c9c34c086845f1.md5 b/.godot/imported/cliff_halfCorner_stone.fbx-09bcd25a890d2800b2c9c34c086845f1.md5 new file mode 100644 index 0000000..4dce524 --- /dev/null +++ b/.godot/imported/cliff_halfCorner_stone.fbx-09bcd25a890d2800b2c9c34c086845f1.md5 @@ -0,0 +1,2 @@ +source_md5="4f105fd58a12a98e61c1eb0eb86a2c80" +dest_md5="7127325a0fd424eb028fb3615bf2e1fd" diff --git a/.godot/imported/cliff_halfCorner_stone.fbx-09bcd25a890d2800b2c9c34c086845f1.scn b/.godot/imported/cliff_halfCorner_stone.fbx-09bcd25a890d2800b2c9c34c086845f1.scn new file mode 100644 index 0000000..7c47e3a Binary files /dev/null and b/.godot/imported/cliff_halfCorner_stone.fbx-09bcd25a890d2800b2c9c34c086845f1.scn differ diff --git a/.godot/imported/cliff_half_rock-8220a69d2835c2b7e0ae0903379f10da.glb b/.godot/imported/cliff_half_rock-8220a69d2835c2b7e0ae0903379f10da.glb new file mode 100644 index 0000000..74fa75f Binary files /dev/null and b/.godot/imported/cliff_half_rock-8220a69d2835c2b7e0ae0903379f10da.glb differ diff --git a/.godot/imported/cliff_half_rock.fbx-8220a69d2835c2b7e0ae0903379f10da.md5 b/.godot/imported/cliff_half_rock.fbx-8220a69d2835c2b7e0ae0903379f10da.md5 new file mode 100644 index 0000000..df354b6 --- /dev/null +++ b/.godot/imported/cliff_half_rock.fbx-8220a69d2835c2b7e0ae0903379f10da.md5 @@ -0,0 +1,2 @@ +source_md5="cd6760b0155aac7a74dca18aeb2a9bcf" +dest_md5="036e70b32bcd2f69d6050a5192fdb62a" diff --git a/.godot/imported/cliff_half_rock.fbx-8220a69d2835c2b7e0ae0903379f10da.scn b/.godot/imported/cliff_half_rock.fbx-8220a69d2835c2b7e0ae0903379f10da.scn new file mode 100644 index 0000000..407de89 Binary files /dev/null and b/.godot/imported/cliff_half_rock.fbx-8220a69d2835c2b7e0ae0903379f10da.scn differ diff --git a/.godot/imported/cliff_half_stone-f5fea9ee661e4473e690a2805740a52a.glb b/.godot/imported/cliff_half_stone-f5fea9ee661e4473e690a2805740a52a.glb new file mode 100644 index 0000000..8ceefbd Binary files /dev/null and b/.godot/imported/cliff_half_stone-f5fea9ee661e4473e690a2805740a52a.glb differ diff --git a/.godot/imported/cliff_half_stone.fbx-f5fea9ee661e4473e690a2805740a52a.md5 b/.godot/imported/cliff_half_stone.fbx-f5fea9ee661e4473e690a2805740a52a.md5 new file mode 100644 index 0000000..5e90139 --- /dev/null +++ b/.godot/imported/cliff_half_stone.fbx-f5fea9ee661e4473e690a2805740a52a.md5 @@ -0,0 +1,2 @@ +source_md5="469fbd839c4e4ee8339426f5aa465c91" +dest_md5="658a06fd52b441f8a94e9778eba9c4e3" diff --git a/.godot/imported/cliff_half_stone.fbx-f5fea9ee661e4473e690a2805740a52a.scn b/.godot/imported/cliff_half_stone.fbx-f5fea9ee661e4473e690a2805740a52a.scn new file mode 100644 index 0000000..6ef1107 Binary files /dev/null and b/.godot/imported/cliff_half_stone.fbx-f5fea9ee661e4473e690a2805740a52a.scn differ diff --git a/.godot/imported/cliff_large_rock-420f36247a4c41ee26576d7bdcf15612.glb b/.godot/imported/cliff_large_rock-420f36247a4c41ee26576d7bdcf15612.glb new file mode 100644 index 0000000..e9b073c Binary files /dev/null and b/.godot/imported/cliff_large_rock-420f36247a4c41ee26576d7bdcf15612.glb differ diff --git a/.godot/imported/cliff_large_rock.fbx-420f36247a4c41ee26576d7bdcf15612.md5 b/.godot/imported/cliff_large_rock.fbx-420f36247a4c41ee26576d7bdcf15612.md5 new file mode 100644 index 0000000..15b49c6 --- /dev/null +++ b/.godot/imported/cliff_large_rock.fbx-420f36247a4c41ee26576d7bdcf15612.md5 @@ -0,0 +1,2 @@ +source_md5="75f4ce2b68c8e57c8fb876213152583d" +dest_md5="05701d58cf415f51aa3d7ce456f049a5" diff --git a/.godot/imported/cliff_large_rock.fbx-420f36247a4c41ee26576d7bdcf15612.scn b/.godot/imported/cliff_large_rock.fbx-420f36247a4c41ee26576d7bdcf15612.scn new file mode 100644 index 0000000..c1bf486 Binary files /dev/null and b/.godot/imported/cliff_large_rock.fbx-420f36247a4c41ee26576d7bdcf15612.scn differ diff --git a/.godot/imported/cliff_large_stone-ef9c020a5dc06b8fad160dc3a2cd37b3.glb b/.godot/imported/cliff_large_stone-ef9c020a5dc06b8fad160dc3a2cd37b3.glb new file mode 100644 index 0000000..578f494 Binary files /dev/null and b/.godot/imported/cliff_large_stone-ef9c020a5dc06b8fad160dc3a2cd37b3.glb differ diff --git a/.godot/imported/cliff_large_stone.fbx-ef9c020a5dc06b8fad160dc3a2cd37b3.md5 b/.godot/imported/cliff_large_stone.fbx-ef9c020a5dc06b8fad160dc3a2cd37b3.md5 new file mode 100644 index 0000000..9b1bb32 --- /dev/null +++ b/.godot/imported/cliff_large_stone.fbx-ef9c020a5dc06b8fad160dc3a2cd37b3.md5 @@ -0,0 +1,2 @@ +source_md5="21339f37cc2c55daffa0b7ddf1a29c13" +dest_md5="5143e4853329ba5c696e020973efd7d2" diff --git a/.godot/imported/cliff_large_stone.fbx-ef9c020a5dc06b8fad160dc3a2cd37b3.scn b/.godot/imported/cliff_large_stone.fbx-ef9c020a5dc06b8fad160dc3a2cd37b3.scn new file mode 100644 index 0000000..3511dbf Binary files /dev/null and b/.godot/imported/cliff_large_stone.fbx-ef9c020a5dc06b8fad160dc3a2cd37b3.scn differ diff --git a/.godot/imported/cliff_rock-11c397c7edb7f6d70de6c98172a720d4.glb b/.godot/imported/cliff_rock-11c397c7edb7f6d70de6c98172a720d4.glb new file mode 100644 index 0000000..5267506 Binary files /dev/null and b/.godot/imported/cliff_rock-11c397c7edb7f6d70de6c98172a720d4.glb differ diff --git a/.godot/imported/cliff_rock.fbx-11c397c7edb7f6d70de6c98172a720d4.md5 b/.godot/imported/cliff_rock.fbx-11c397c7edb7f6d70de6c98172a720d4.md5 new file mode 100644 index 0000000..c2253c6 --- /dev/null +++ b/.godot/imported/cliff_rock.fbx-11c397c7edb7f6d70de6c98172a720d4.md5 @@ -0,0 +1,2 @@ +source_md5="fe744dabf277d58816dc7cf814da867f" +dest_md5="e0ff280d388d7758953ac85ad7088ddc" diff --git a/.godot/imported/cliff_rock.fbx-11c397c7edb7f6d70de6c98172a720d4.scn b/.godot/imported/cliff_rock.fbx-11c397c7edb7f6d70de6c98172a720d4.scn new file mode 100644 index 0000000..60e0222 Binary files /dev/null and b/.godot/imported/cliff_rock.fbx-11c397c7edb7f6d70de6c98172a720d4.scn differ diff --git a/.godot/imported/cliff_stepsCornerInner_rock-c1d28f3a1e6bb8be23f8b22ce1cc5559.glb b/.godot/imported/cliff_stepsCornerInner_rock-c1d28f3a1e6bb8be23f8b22ce1cc5559.glb new file mode 100644 index 0000000..c4ad896 Binary files /dev/null and b/.godot/imported/cliff_stepsCornerInner_rock-c1d28f3a1e6bb8be23f8b22ce1cc5559.glb differ diff --git a/.godot/imported/cliff_stepsCornerInner_rock.fbx-c1d28f3a1e6bb8be23f8b22ce1cc5559.md5 b/.godot/imported/cliff_stepsCornerInner_rock.fbx-c1d28f3a1e6bb8be23f8b22ce1cc5559.md5 new file mode 100644 index 0000000..3c567be --- /dev/null +++ b/.godot/imported/cliff_stepsCornerInner_rock.fbx-c1d28f3a1e6bb8be23f8b22ce1cc5559.md5 @@ -0,0 +1,2 @@ +source_md5="9b4477ef1ee3a6b11b812c1642d2a90c" +dest_md5="73c7c272777034ec35254e409f5b6e96" diff --git a/.godot/imported/cliff_stepsCornerInner_rock.fbx-c1d28f3a1e6bb8be23f8b22ce1cc5559.scn b/.godot/imported/cliff_stepsCornerInner_rock.fbx-c1d28f3a1e6bb8be23f8b22ce1cc5559.scn new file mode 100644 index 0000000..6f32a30 Binary files /dev/null and b/.godot/imported/cliff_stepsCornerInner_rock.fbx-c1d28f3a1e6bb8be23f8b22ce1cc5559.scn differ diff --git a/.godot/imported/cliff_stepsCornerInner_stone-ee37113cce970aa87ef3f51457ce1206.glb b/.godot/imported/cliff_stepsCornerInner_stone-ee37113cce970aa87ef3f51457ce1206.glb new file mode 100644 index 0000000..bb18a3d Binary files /dev/null and b/.godot/imported/cliff_stepsCornerInner_stone-ee37113cce970aa87ef3f51457ce1206.glb differ diff --git a/.godot/imported/cliff_stepsCornerInner_stone.fbx-ee37113cce970aa87ef3f51457ce1206.md5 b/.godot/imported/cliff_stepsCornerInner_stone.fbx-ee37113cce970aa87ef3f51457ce1206.md5 new file mode 100644 index 0000000..5549107 --- /dev/null +++ b/.godot/imported/cliff_stepsCornerInner_stone.fbx-ee37113cce970aa87ef3f51457ce1206.md5 @@ -0,0 +1,2 @@ +source_md5="bbbeab6878caf8598f9edbca188c9f7a" +dest_md5="ccf1d5913f5af4d18e69e064a17b8cab" diff --git a/.godot/imported/cliff_stepsCornerInner_stone.fbx-ee37113cce970aa87ef3f51457ce1206.scn b/.godot/imported/cliff_stepsCornerInner_stone.fbx-ee37113cce970aa87ef3f51457ce1206.scn new file mode 100644 index 0000000..0001c55 Binary files /dev/null and b/.godot/imported/cliff_stepsCornerInner_stone.fbx-ee37113cce970aa87ef3f51457ce1206.scn differ diff --git a/.godot/imported/cliff_stepsCorner_rock-c4c245e408be8f51b703d4ac9127f26d.glb b/.godot/imported/cliff_stepsCorner_rock-c4c245e408be8f51b703d4ac9127f26d.glb new file mode 100644 index 0000000..01583e5 Binary files /dev/null and b/.godot/imported/cliff_stepsCorner_rock-c4c245e408be8f51b703d4ac9127f26d.glb differ diff --git a/.godot/imported/cliff_stepsCorner_rock.fbx-c4c245e408be8f51b703d4ac9127f26d.md5 b/.godot/imported/cliff_stepsCorner_rock.fbx-c4c245e408be8f51b703d4ac9127f26d.md5 new file mode 100644 index 0000000..0b65f2f --- /dev/null +++ b/.godot/imported/cliff_stepsCorner_rock.fbx-c4c245e408be8f51b703d4ac9127f26d.md5 @@ -0,0 +1,2 @@ +source_md5="6e624b1eb638f936b73bf2529dad0567" +dest_md5="fd9b6f61886786de241f4cd9d9e78fa8" diff --git a/.godot/imported/cliff_stepsCorner_rock.fbx-c4c245e408be8f51b703d4ac9127f26d.scn b/.godot/imported/cliff_stepsCorner_rock.fbx-c4c245e408be8f51b703d4ac9127f26d.scn new file mode 100644 index 0000000..468bdc5 Binary files /dev/null and b/.godot/imported/cliff_stepsCorner_rock.fbx-c4c245e408be8f51b703d4ac9127f26d.scn differ diff --git a/.godot/imported/cliff_stepsCorner_stone-15b23a0accab2800dd2cc2b6deb2e3ec.glb b/.godot/imported/cliff_stepsCorner_stone-15b23a0accab2800dd2cc2b6deb2e3ec.glb new file mode 100644 index 0000000..9de8ac9 Binary files /dev/null and b/.godot/imported/cliff_stepsCorner_stone-15b23a0accab2800dd2cc2b6deb2e3ec.glb differ diff --git a/.godot/imported/cliff_stepsCorner_stone.fbx-15b23a0accab2800dd2cc2b6deb2e3ec.md5 b/.godot/imported/cliff_stepsCorner_stone.fbx-15b23a0accab2800dd2cc2b6deb2e3ec.md5 new file mode 100644 index 0000000..7e5d3ab --- /dev/null +++ b/.godot/imported/cliff_stepsCorner_stone.fbx-15b23a0accab2800dd2cc2b6deb2e3ec.md5 @@ -0,0 +1,2 @@ +source_md5="015ff7e312abd1052e8b7141c7dcd4d5" +dest_md5="6b5e09ec8522f0ec18c1aa24527ad42d" diff --git a/.godot/imported/cliff_stepsCorner_stone.fbx-15b23a0accab2800dd2cc2b6deb2e3ec.scn b/.godot/imported/cliff_stepsCorner_stone.fbx-15b23a0accab2800dd2cc2b6deb2e3ec.scn new file mode 100644 index 0000000..f7fcb4d Binary files /dev/null and b/.godot/imported/cliff_stepsCorner_stone.fbx-15b23a0accab2800dd2cc2b6deb2e3ec.scn differ diff --git a/.godot/imported/cliff_steps_rock-bbfcc7b086a525d0cce5b0b84d21c8d8.glb b/.godot/imported/cliff_steps_rock-bbfcc7b086a525d0cce5b0b84d21c8d8.glb new file mode 100644 index 0000000..2e4490a Binary files /dev/null and b/.godot/imported/cliff_steps_rock-bbfcc7b086a525d0cce5b0b84d21c8d8.glb differ diff --git a/.godot/imported/cliff_steps_rock.fbx-bbfcc7b086a525d0cce5b0b84d21c8d8.md5 b/.godot/imported/cliff_steps_rock.fbx-bbfcc7b086a525d0cce5b0b84d21c8d8.md5 new file mode 100644 index 0000000..1676ad0 --- /dev/null +++ b/.godot/imported/cliff_steps_rock.fbx-bbfcc7b086a525d0cce5b0b84d21c8d8.md5 @@ -0,0 +1,2 @@ +source_md5="b6fe308a485d8e0eacdbe0bb26824bf3" +dest_md5="8ede829ce70d6635df47999d7bd7e6bc" diff --git a/.godot/imported/cliff_steps_rock.fbx-bbfcc7b086a525d0cce5b0b84d21c8d8.scn b/.godot/imported/cliff_steps_rock.fbx-bbfcc7b086a525d0cce5b0b84d21c8d8.scn new file mode 100644 index 0000000..d24aad5 Binary files /dev/null and b/.godot/imported/cliff_steps_rock.fbx-bbfcc7b086a525d0cce5b0b84d21c8d8.scn differ diff --git a/.godot/imported/cliff_steps_stone-53164cd9903e8039b7f85a2e42e76135.glb b/.godot/imported/cliff_steps_stone-53164cd9903e8039b7f85a2e42e76135.glb new file mode 100644 index 0000000..68423d0 Binary files /dev/null and b/.godot/imported/cliff_steps_stone-53164cd9903e8039b7f85a2e42e76135.glb differ diff --git a/.godot/imported/cliff_steps_stone.fbx-53164cd9903e8039b7f85a2e42e76135.md5 b/.godot/imported/cliff_steps_stone.fbx-53164cd9903e8039b7f85a2e42e76135.md5 new file mode 100644 index 0000000..6c5529e --- /dev/null +++ b/.godot/imported/cliff_steps_stone.fbx-53164cd9903e8039b7f85a2e42e76135.md5 @@ -0,0 +1,2 @@ +source_md5="a318ac3aa2aff1a7d634e823b8828987" +dest_md5="21ee967472c6cd5384b898c31222bc68" diff --git a/.godot/imported/cliff_steps_stone.fbx-53164cd9903e8039b7f85a2e42e76135.scn b/.godot/imported/cliff_steps_stone.fbx-53164cd9903e8039b7f85a2e42e76135.scn new file mode 100644 index 0000000..cc0d554 Binary files /dev/null and b/.godot/imported/cliff_steps_stone.fbx-53164cd9903e8039b7f85a2e42e76135.scn differ diff --git a/.godot/imported/cliff_stone-8cb729383ac7d13ea4b2db99bdeddedf.glb b/.godot/imported/cliff_stone-8cb729383ac7d13ea4b2db99bdeddedf.glb new file mode 100644 index 0000000..85ffdab Binary files /dev/null and b/.godot/imported/cliff_stone-8cb729383ac7d13ea4b2db99bdeddedf.glb differ diff --git a/.godot/imported/cliff_stone.fbx-8cb729383ac7d13ea4b2db99bdeddedf.md5 b/.godot/imported/cliff_stone.fbx-8cb729383ac7d13ea4b2db99bdeddedf.md5 new file mode 100644 index 0000000..ed0a259 --- /dev/null +++ b/.godot/imported/cliff_stone.fbx-8cb729383ac7d13ea4b2db99bdeddedf.md5 @@ -0,0 +1,2 @@ +source_md5="70025a79b38ef92369a8bf2eeea0cbdc" +dest_md5="ad20cda5c30b69c3799ca851aa476dbf" diff --git a/.godot/imported/cliff_stone.fbx-8cb729383ac7d13ea4b2db99bdeddedf.scn b/.godot/imported/cliff_stone.fbx-8cb729383ac7d13ea4b2db99bdeddedf.scn new file mode 100644 index 0000000..c8ca9e7 Binary files /dev/null and b/.godot/imported/cliff_stone.fbx-8cb729383ac7d13ea4b2db99bdeddedf.scn differ diff --git a/.godot/imported/cliff_topDiagonal_rock-eaba593bc353be6df09f315534c8b856.glb b/.godot/imported/cliff_topDiagonal_rock-eaba593bc353be6df09f315534c8b856.glb new file mode 100644 index 0000000..f85be4e Binary files /dev/null and b/.godot/imported/cliff_topDiagonal_rock-eaba593bc353be6df09f315534c8b856.glb differ diff --git a/.godot/imported/cliff_topDiagonal_rock.fbx-eaba593bc353be6df09f315534c8b856.md5 b/.godot/imported/cliff_topDiagonal_rock.fbx-eaba593bc353be6df09f315534c8b856.md5 new file mode 100644 index 0000000..5220a6c --- /dev/null +++ b/.godot/imported/cliff_topDiagonal_rock.fbx-eaba593bc353be6df09f315534c8b856.md5 @@ -0,0 +1,2 @@ +source_md5="a5ee4a88d32913bd02a6bf1e38ab029f" +dest_md5="2c8cef9828eaa469c73fed93ab2afeae" diff --git a/.godot/imported/cliff_topDiagonal_rock.fbx-eaba593bc353be6df09f315534c8b856.scn b/.godot/imported/cliff_topDiagonal_rock.fbx-eaba593bc353be6df09f315534c8b856.scn new file mode 100644 index 0000000..9c96ecb Binary files /dev/null and b/.godot/imported/cliff_topDiagonal_rock.fbx-eaba593bc353be6df09f315534c8b856.scn differ diff --git a/.godot/imported/cliff_topDiagonal_stone-519d2e58fd8c3fd9af48809f5511536d.glb b/.godot/imported/cliff_topDiagonal_stone-519d2e58fd8c3fd9af48809f5511536d.glb new file mode 100644 index 0000000..8a9db7f Binary files /dev/null and b/.godot/imported/cliff_topDiagonal_stone-519d2e58fd8c3fd9af48809f5511536d.glb differ diff --git a/.godot/imported/cliff_topDiagonal_stone.fbx-519d2e58fd8c3fd9af48809f5511536d.md5 b/.godot/imported/cliff_topDiagonal_stone.fbx-519d2e58fd8c3fd9af48809f5511536d.md5 new file mode 100644 index 0000000..78b218d --- /dev/null +++ b/.godot/imported/cliff_topDiagonal_stone.fbx-519d2e58fd8c3fd9af48809f5511536d.md5 @@ -0,0 +1,2 @@ +source_md5="b6fe52547be19e8f1b357558fe9f2614" +dest_md5="575213631e62e683ea2877f8f773611d" diff --git a/.godot/imported/cliff_topDiagonal_stone.fbx-519d2e58fd8c3fd9af48809f5511536d.scn b/.godot/imported/cliff_topDiagonal_stone.fbx-519d2e58fd8c3fd9af48809f5511536d.scn new file mode 100644 index 0000000..8e2bdff Binary files /dev/null and b/.godot/imported/cliff_topDiagonal_stone.fbx-519d2e58fd8c3fd9af48809f5511536d.scn differ diff --git a/.godot/imported/cliff_top_rock-2cc8222456a66c29eb8e1daa9c7329a8.glb b/.godot/imported/cliff_top_rock-2cc8222456a66c29eb8e1daa9c7329a8.glb new file mode 100644 index 0000000..5e328bc Binary files /dev/null and b/.godot/imported/cliff_top_rock-2cc8222456a66c29eb8e1daa9c7329a8.glb differ diff --git a/.godot/imported/cliff_top_rock.fbx-2cc8222456a66c29eb8e1daa9c7329a8.md5 b/.godot/imported/cliff_top_rock.fbx-2cc8222456a66c29eb8e1daa9c7329a8.md5 new file mode 100644 index 0000000..dcabc72 --- /dev/null +++ b/.godot/imported/cliff_top_rock.fbx-2cc8222456a66c29eb8e1daa9c7329a8.md5 @@ -0,0 +1,2 @@ +source_md5="905d183c7f1c2bf7a74216e80eb44331" +dest_md5="652d6b17f0a125a156fe6b679b1554fb" diff --git a/.godot/imported/cliff_top_rock.fbx-2cc8222456a66c29eb8e1daa9c7329a8.scn b/.godot/imported/cliff_top_rock.fbx-2cc8222456a66c29eb8e1daa9c7329a8.scn new file mode 100644 index 0000000..2185321 Binary files /dev/null and b/.godot/imported/cliff_top_rock.fbx-2cc8222456a66c29eb8e1daa9c7329a8.scn differ diff --git a/.godot/imported/cliff_top_stone-c66931ff4193060c58fe0e508dcf87e5.glb b/.godot/imported/cliff_top_stone-c66931ff4193060c58fe0e508dcf87e5.glb new file mode 100644 index 0000000..b12dc9a Binary files /dev/null and b/.godot/imported/cliff_top_stone-c66931ff4193060c58fe0e508dcf87e5.glb differ diff --git a/.godot/imported/cliff_top_stone.fbx-c66931ff4193060c58fe0e508dcf87e5.md5 b/.godot/imported/cliff_top_stone.fbx-c66931ff4193060c58fe0e508dcf87e5.md5 new file mode 100644 index 0000000..5f52bbc --- /dev/null +++ b/.godot/imported/cliff_top_stone.fbx-c66931ff4193060c58fe0e508dcf87e5.md5 @@ -0,0 +1,2 @@ +source_md5="c45daf10d02c47387ff43af41a2f04a9" +dest_md5="103e28fefd34950eb9f9c01eb1eb8588" diff --git a/.godot/imported/cliff_top_stone.fbx-c66931ff4193060c58fe0e508dcf87e5.scn b/.godot/imported/cliff_top_stone.fbx-c66931ff4193060c58fe0e508dcf87e5.scn new file mode 100644 index 0000000..53de5f0 Binary files /dev/null and b/.godot/imported/cliff_top_stone.fbx-c66931ff4193060c58fe0e508dcf87e5.scn differ diff --git a/.godot/imported/cliff_waterfallTop_rock-bf7f4aa7a9a182f61016d040fc30e2cd.glb b/.godot/imported/cliff_waterfallTop_rock-bf7f4aa7a9a182f61016d040fc30e2cd.glb new file mode 100644 index 0000000..bb7bc0a Binary files /dev/null and b/.godot/imported/cliff_waterfallTop_rock-bf7f4aa7a9a182f61016d040fc30e2cd.glb differ diff --git a/.godot/imported/cliff_waterfallTop_rock.fbx-bf7f4aa7a9a182f61016d040fc30e2cd.md5 b/.godot/imported/cliff_waterfallTop_rock.fbx-bf7f4aa7a9a182f61016d040fc30e2cd.md5 new file mode 100644 index 0000000..cfd249e --- /dev/null +++ b/.godot/imported/cliff_waterfallTop_rock.fbx-bf7f4aa7a9a182f61016d040fc30e2cd.md5 @@ -0,0 +1,2 @@ +source_md5="a4d5c88a7a3f651fe7b503ecfdb9b822" +dest_md5="e48d16cbdf9253f28f17144b3343aa6a" diff --git a/.godot/imported/cliff_waterfallTop_rock.fbx-bf7f4aa7a9a182f61016d040fc30e2cd.scn b/.godot/imported/cliff_waterfallTop_rock.fbx-bf7f4aa7a9a182f61016d040fc30e2cd.scn new file mode 100644 index 0000000..2282f64 Binary files /dev/null and b/.godot/imported/cliff_waterfallTop_rock.fbx-bf7f4aa7a9a182f61016d040fc30e2cd.scn differ diff --git a/.godot/imported/cliff_waterfallTop_stone-c102a53bb5b91e222c07a588bc5d2723.glb b/.godot/imported/cliff_waterfallTop_stone-c102a53bb5b91e222c07a588bc5d2723.glb new file mode 100644 index 0000000..f7a0e7b Binary files /dev/null and b/.godot/imported/cliff_waterfallTop_stone-c102a53bb5b91e222c07a588bc5d2723.glb differ diff --git a/.godot/imported/cliff_waterfallTop_stone.fbx-c102a53bb5b91e222c07a588bc5d2723.md5 b/.godot/imported/cliff_waterfallTop_stone.fbx-c102a53bb5b91e222c07a588bc5d2723.md5 new file mode 100644 index 0000000..8b8cf93 --- /dev/null +++ b/.godot/imported/cliff_waterfallTop_stone.fbx-c102a53bb5b91e222c07a588bc5d2723.md5 @@ -0,0 +1,2 @@ +source_md5="be0aef86921f262458b56a83483d9344" +dest_md5="3785170883a6dfad76be8559ec3f122b" diff --git a/.godot/imported/cliff_waterfallTop_stone.fbx-c102a53bb5b91e222c07a588bc5d2723.scn b/.godot/imported/cliff_waterfallTop_stone.fbx-c102a53bb5b91e222c07a588bc5d2723.scn new file mode 100644 index 0000000..dc8da1d Binary files /dev/null and b/.godot/imported/cliff_waterfallTop_stone.fbx-c102a53bb5b91e222c07a588bc5d2723.scn differ diff --git a/.godot/imported/cliff_waterfall_rock-80983002e0aa1a5447aafbd6522ce1b0.glb b/.godot/imported/cliff_waterfall_rock-80983002e0aa1a5447aafbd6522ce1b0.glb new file mode 100644 index 0000000..ef53544 Binary files /dev/null and b/.godot/imported/cliff_waterfall_rock-80983002e0aa1a5447aafbd6522ce1b0.glb differ diff --git a/.godot/imported/cliff_waterfall_rock.fbx-80983002e0aa1a5447aafbd6522ce1b0.md5 b/.godot/imported/cliff_waterfall_rock.fbx-80983002e0aa1a5447aafbd6522ce1b0.md5 new file mode 100644 index 0000000..e7c5f42 --- /dev/null +++ b/.godot/imported/cliff_waterfall_rock.fbx-80983002e0aa1a5447aafbd6522ce1b0.md5 @@ -0,0 +1,2 @@ +source_md5="c6f670e684821807812f48abbeb40a84" +dest_md5="56191b53f67d51fec5be114c05520e7d" diff --git a/.godot/imported/cliff_waterfall_rock.fbx-80983002e0aa1a5447aafbd6522ce1b0.scn b/.godot/imported/cliff_waterfall_rock.fbx-80983002e0aa1a5447aafbd6522ce1b0.scn new file mode 100644 index 0000000..4d00ff4 Binary files /dev/null and b/.godot/imported/cliff_waterfall_rock.fbx-80983002e0aa1a5447aafbd6522ce1b0.scn differ diff --git a/.godot/imported/cliff_waterfall_stone-bba6d88ed8dbde1ea981af58f9b7c615.glb b/.godot/imported/cliff_waterfall_stone-bba6d88ed8dbde1ea981af58f9b7c615.glb new file mode 100644 index 0000000..102e333 Binary files /dev/null and b/.godot/imported/cliff_waterfall_stone-bba6d88ed8dbde1ea981af58f9b7c615.glb differ diff --git a/.godot/imported/cliff_waterfall_stone.fbx-bba6d88ed8dbde1ea981af58f9b7c615.md5 b/.godot/imported/cliff_waterfall_stone.fbx-bba6d88ed8dbde1ea981af58f9b7c615.md5 new file mode 100644 index 0000000..b2def22 --- /dev/null +++ b/.godot/imported/cliff_waterfall_stone.fbx-bba6d88ed8dbde1ea981af58f9b7c615.md5 @@ -0,0 +1,2 @@ +source_md5="c010ef72de7573fe5ba290287c77a096" +dest_md5="256c3e829341ac3f000def4a3637ce99" diff --git a/.godot/imported/cliff_waterfall_stone.fbx-bba6d88ed8dbde1ea981af58f9b7c615.scn b/.godot/imported/cliff_waterfall_stone.fbx-bba6d88ed8dbde1ea981af58f9b7c615.scn new file mode 100644 index 0000000..0ddeb9b Binary files /dev/null and b/.godot/imported/cliff_waterfall_stone.fbx-bba6d88ed8dbde1ea981af58f9b7c615.scn differ diff --git a/.godot/imported/collect.mp3-683ae7633ebf1b7dfcdb971307588307.md5 b/.godot/imported/collect.mp3-683ae7633ebf1b7dfcdb971307588307.md5 new file mode 100644 index 0000000..15ed2cd --- /dev/null +++ b/.godot/imported/collect.mp3-683ae7633ebf1b7dfcdb971307588307.md5 @@ -0,0 +1,2 @@ +source_md5="7f455a3b4ef47edee8bbcee199e06a2b" +dest_md5="9088aee079a25162bffddc6294497cc6" diff --git a/.godot/imported/collect.mp3-683ae7633ebf1b7dfcdb971307588307.mp3str b/.godot/imported/collect.mp3-683ae7633ebf1b7dfcdb971307588307.mp3str new file mode 100644 index 0000000..2cb62fd Binary files /dev/null and b/.godot/imported/collect.mp3-683ae7633ebf1b7dfcdb971307588307.mp3str differ diff --git a/.godot/imported/colormap.png-f0301cbc55ac52248d97785372e63b84.ctex b/.godot/imported/colormap.png-f0301cbc55ac52248d97785372e63b84.ctex new file mode 100644 index 0000000..1999fd4 Binary files /dev/null and b/.godot/imported/colormap.png-f0301cbc55ac52248d97785372e63b84.ctex differ diff --git a/.godot/imported/colormap.png-f0301cbc55ac52248d97785372e63b84.md5 b/.godot/imported/colormap.png-f0301cbc55ac52248d97785372e63b84.md5 new file mode 100644 index 0000000..2f67e07 --- /dev/null +++ b/.godot/imported/colormap.png-f0301cbc55ac52248d97785372e63b84.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9e720d08ee73bcc24e1a76cd43a50015" diff --git a/.godot/imported/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png-c35d2604b3dc221d818357c2fe3f8dcd.md5 b/.godot/imported/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png-c35d2604b3dc221d818357c2fe3f8dcd.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png-c35d2604b3dc221d818357c2fe3f8dcd.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png-c35d2604b3dc221d818357c2fe3f8dcd.s3tc.ctex b/.godot/imported/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png-c35d2604b3dc221d818357c2fe3f8dcd.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png-c35d2604b3dc221d818357c2fe3f8dcd.s3tc.ctex differ diff --git a/.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1.glb b/.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1.glb new file mode 100644 index 0000000..94bb939 Binary files /dev/null and b/.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1.glb differ diff --git a/.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png-87e9c9b42252680947aa76887c45c44a.md5 b/.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png-87e9c9b42252680947aa76887c45c44a.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png-87e9c9b42252680947aa76887c45c44a.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png-87e9c9b42252680947aa76887c45c44a.s3tc.ctex b/.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png-87e9c9b42252680947aa76887c45c44a.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png-87e9c9b42252680947aa76887c45c44a.s3tc.ctex differ diff --git a/.godot/imported/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png-f4df57c0e66445512089d92ddc5ad63e.md5 b/.godot/imported/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png-f4df57c0e66445512089d92ddc5ad63e.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png-f4df57c0e66445512089d92ddc5ad63e.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png-f4df57c0e66445512089d92ddc5ad63e.s3tc.ctex b/.godot/imported/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png-f4df57c0e66445512089d92ddc5ad63e.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png-f4df57c0e66445512089d92ddc5ad63e.s3tc.ctex differ diff --git a/.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d.glb b/.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d.glb new file mode 100644 index 0000000..c29e7ae Binary files /dev/null and b/.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d.glb differ diff --git a/.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png-e699f5d452dccc206b13edb40d3751bc.md5 b/.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png-e699f5d452dccc206b13edb40d3751bc.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png-e699f5d452dccc206b13edb40d3751bc.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png-e699f5d452dccc206b13edb40d3751bc.s3tc.ctex b/.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png-e699f5d452dccc206b13edb40d3751bc.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png-e699f5d452dccc206b13edb40d3751bc.s3tc.ctex differ diff --git a/.godot/imported/cone-flat.fbx-64d4d7fe5fa89a4720b21cea40c5c21d.md5 b/.godot/imported/cone-flat.fbx-64d4d7fe5fa89a4720b21cea40c5c21d.md5 new file mode 100644 index 0000000..46c376d --- /dev/null +++ b/.godot/imported/cone-flat.fbx-64d4d7fe5fa89a4720b21cea40c5c21d.md5 @@ -0,0 +1,2 @@ +source_md5="81ac00e18ba6726de4e75b613cf98e05" +dest_md5="36d6dfad3d4ac4ff2938121e4f92f783" diff --git a/.godot/imported/cone-flat.fbx-64d4d7fe5fa89a4720b21cea40c5c21d.scn b/.godot/imported/cone-flat.fbx-64d4d7fe5fa89a4720b21cea40c5c21d.scn new file mode 100644 index 0000000..747847f Binary files /dev/null and b/.godot/imported/cone-flat.fbx-64d4d7fe5fa89a4720b21cea40c5c21d.scn differ diff --git a/.godot/imported/cone.fbx-7204c03e2a68a26469cbbca6a21f91d1.md5 b/.godot/imported/cone.fbx-7204c03e2a68a26469cbbca6a21f91d1.md5 new file mode 100644 index 0000000..24a59dc --- /dev/null +++ b/.godot/imported/cone.fbx-7204c03e2a68a26469cbbca6a21f91d1.md5 @@ -0,0 +1,2 @@ +source_md5="806d46b9d1ca07d8c73fda05368fff96" +dest_md5="f4d48e15bc44307100221ae825065441" diff --git a/.godot/imported/cone.fbx-7204c03e2a68a26469cbbca6a21f91d1.scn b/.godot/imported/cone.fbx-7204c03e2a68a26469cbbca6a21f91d1.scn new file mode 100644 index 0000000..7698b29 Binary files /dev/null and b/.godot/imported/cone.fbx-7204c03e2a68a26469cbbca6a21f91d1.scn differ diff --git a/.godot/imported/construction_barrier-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.glb b/.godot/imported/construction_barrier-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.glb new file mode 100644 index 0000000..48791f4 Binary files /dev/null and b/.godot/imported/construction_barrier-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.glb differ diff --git a/.godot/imported/construction_barrier.fbx-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.md5 b/.godot/imported/construction_barrier.fbx-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.md5 new file mode 100644 index 0000000..da81bc3 --- /dev/null +++ b/.godot/imported/construction_barrier.fbx-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.md5 @@ -0,0 +1,2 @@ +source_md5="58d58107463f7e9bda85a8c27131e5d4" +dest_md5="85d0ccbb70fb8ff4b91b9ead3af59d90" diff --git a/.godot/imported/construction_barrier.fbx-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.scn b/.godot/imported/construction_barrier.fbx-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.scn new file mode 100644 index 0000000..b4c7ad6 Binary files /dev/null and b/.godot/imported/construction_barrier.fbx-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.scn differ diff --git a/.godot/imported/construction_light-2485318907577e98da3c73dfa9ab614c.glb b/.godot/imported/construction_light-2485318907577e98da3c73dfa9ab614c.glb new file mode 100644 index 0000000..93bb153 Binary files /dev/null and b/.godot/imported/construction_light-2485318907577e98da3c73dfa9ab614c.glb differ diff --git a/.godot/imported/construction_light.fbx-2485318907577e98da3c73dfa9ab614c.md5 b/.godot/imported/construction_light.fbx-2485318907577e98da3c73dfa9ab614c.md5 new file mode 100644 index 0000000..02ea32b --- /dev/null +++ b/.godot/imported/construction_light.fbx-2485318907577e98da3c73dfa9ab614c.md5 @@ -0,0 +1,2 @@ +source_md5="dd123d572ffccd7a1ddaf987c170390d" +dest_md5="774f42d35bc3f28ff38982c126f695e1" diff --git a/.godot/imported/construction_light.fbx-2485318907577e98da3c73dfa9ab614c.scn b/.godot/imported/construction_light.fbx-2485318907577e98da3c73dfa9ab614c.scn new file mode 100644 index 0000000..6f527bf Binary files /dev/null and b/.godot/imported/construction_light.fbx-2485318907577e98da3c73dfa9ab614c.scn differ diff --git a/.godot/imported/construction_pylon-04e5b479aa3ce5f6d207c760a5aa3f89.glb b/.godot/imported/construction_pylon-04e5b479aa3ce5f6d207c760a5aa3f89.glb new file mode 100644 index 0000000..68d7ae2 Binary files /dev/null and b/.godot/imported/construction_pylon-04e5b479aa3ce5f6d207c760a5aa3f89.glb differ diff --git a/.godot/imported/construction_pylon.fbx-04e5b479aa3ce5f6d207c760a5aa3f89.md5 b/.godot/imported/construction_pylon.fbx-04e5b479aa3ce5f6d207c760a5aa3f89.md5 new file mode 100644 index 0000000..aeb399d --- /dev/null +++ b/.godot/imported/construction_pylon.fbx-04e5b479aa3ce5f6d207c760a5aa3f89.md5 @@ -0,0 +1,2 @@ +source_md5="15078cdb918b426f3707d4c8297e4b88" +dest_md5="ab156f54f99c8b368530e6a7bd3f9fb7" diff --git a/.godot/imported/construction_pylon.fbx-04e5b479aa3ce5f6d207c760a5aa3f89.scn b/.godot/imported/construction_pylon.fbx-04e5b479aa3ce5f6d207c760a5aa3f89.scn new file mode 100644 index 0000000..8886844 Binary files /dev/null and b/.godot/imported/construction_pylon.fbx-04e5b479aa3ce5f6d207c760a5aa3f89.scn differ diff --git a/.godot/imported/crop_carrot-c605785a68fededbf983d0558b3e58e0.glb b/.godot/imported/crop_carrot-c605785a68fededbf983d0558b3e58e0.glb new file mode 100644 index 0000000..fdc9eb3 Binary files /dev/null and b/.godot/imported/crop_carrot-c605785a68fededbf983d0558b3e58e0.glb differ diff --git a/.godot/imported/crop_carrot.fbx-c605785a68fededbf983d0558b3e58e0.md5 b/.godot/imported/crop_carrot.fbx-c605785a68fededbf983d0558b3e58e0.md5 new file mode 100644 index 0000000..51cceb3 --- /dev/null +++ b/.godot/imported/crop_carrot.fbx-c605785a68fededbf983d0558b3e58e0.md5 @@ -0,0 +1,2 @@ +source_md5="e5baa3285718899443189e42b5e641a5" +dest_md5="b91e1806d68e9925d34aaae5fe9c6f08" diff --git a/.godot/imported/crop_carrot.fbx-c605785a68fededbf983d0558b3e58e0.scn b/.godot/imported/crop_carrot.fbx-c605785a68fededbf983d0558b3e58e0.scn new file mode 100644 index 0000000..0c6c708 Binary files /dev/null and b/.godot/imported/crop_carrot.fbx-c605785a68fededbf983d0558b3e58e0.scn differ diff --git a/.godot/imported/crop_melon-562ea96d09d143bc0b177198c4bb9046.glb b/.godot/imported/crop_melon-562ea96d09d143bc0b177198c4bb9046.glb new file mode 100644 index 0000000..19fbd8e Binary files /dev/null and b/.godot/imported/crop_melon-562ea96d09d143bc0b177198c4bb9046.glb differ diff --git a/.godot/imported/crop_melon.fbx-562ea96d09d143bc0b177198c4bb9046.md5 b/.godot/imported/crop_melon.fbx-562ea96d09d143bc0b177198c4bb9046.md5 new file mode 100644 index 0000000..3dfef23 --- /dev/null +++ b/.godot/imported/crop_melon.fbx-562ea96d09d143bc0b177198c4bb9046.md5 @@ -0,0 +1,2 @@ +source_md5="04ffaad81a1f571aca5f3b86be06a1b0" +dest_md5="898e6b2dc3e5e9c0d93a875f93b073af" diff --git a/.godot/imported/crop_melon.fbx-562ea96d09d143bc0b177198c4bb9046.scn b/.godot/imported/crop_melon.fbx-562ea96d09d143bc0b177198c4bb9046.scn new file mode 100644 index 0000000..be35f1a Binary files /dev/null and b/.godot/imported/crop_melon.fbx-562ea96d09d143bc0b177198c4bb9046.scn differ diff --git a/.godot/imported/crop_pumpkin-f8566a62937eea52bbef2f2cd7ef1e59.glb b/.godot/imported/crop_pumpkin-f8566a62937eea52bbef2f2cd7ef1e59.glb new file mode 100644 index 0000000..eff1000 Binary files /dev/null and b/.godot/imported/crop_pumpkin-f8566a62937eea52bbef2f2cd7ef1e59.glb differ diff --git a/.godot/imported/crop_pumpkin.fbx-f8566a62937eea52bbef2f2cd7ef1e59.md5 b/.godot/imported/crop_pumpkin.fbx-f8566a62937eea52bbef2f2cd7ef1e59.md5 new file mode 100644 index 0000000..f3ca17d --- /dev/null +++ b/.godot/imported/crop_pumpkin.fbx-f8566a62937eea52bbef2f2cd7ef1e59.md5 @@ -0,0 +1,2 @@ +source_md5="9a1304ed69ea64e11617c6344db6d558" +dest_md5="918a1587c3d431b9e7cb532d4b2c8c35" diff --git a/.godot/imported/crop_pumpkin.fbx-f8566a62937eea52bbef2f2cd7ef1e59.scn b/.godot/imported/crop_pumpkin.fbx-f8566a62937eea52bbef2f2cd7ef1e59.scn new file mode 100644 index 0000000..25e4506 Binary files /dev/null and b/.godot/imported/crop_pumpkin.fbx-f8566a62937eea52bbef2f2cd7ef1e59.scn differ diff --git a/.godot/imported/crop_turnip-7b83392d2d66d3e0c0a99221e68cf415.glb b/.godot/imported/crop_turnip-7b83392d2d66d3e0c0a99221e68cf415.glb new file mode 100644 index 0000000..1c0f701 Binary files /dev/null and b/.godot/imported/crop_turnip-7b83392d2d66d3e0c0a99221e68cf415.glb differ diff --git a/.godot/imported/crop_turnip.fbx-7b83392d2d66d3e0c0a99221e68cf415.md5 b/.godot/imported/crop_turnip.fbx-7b83392d2d66d3e0c0a99221e68cf415.md5 new file mode 100644 index 0000000..694b7fd --- /dev/null +++ b/.godot/imported/crop_turnip.fbx-7b83392d2d66d3e0c0a99221e68cf415.md5 @@ -0,0 +1,2 @@ +source_md5="074819f61fcd6ecbc027b9fa31f07570" +dest_md5="582cf9de6d938a5cc78bd8f5e282d5c6" diff --git a/.godot/imported/crop_turnip.fbx-7b83392d2d66d3e0c0a99221e68cf415.scn b/.godot/imported/crop_turnip.fbx-7b83392d2d66d3e0c0a99221e68cf415.scn new file mode 100644 index 0000000..534c834 Binary files /dev/null and b/.godot/imported/crop_turnip.fbx-7b83392d2d66d3e0c0a99221e68cf415.scn differ diff --git a/.godot/imported/crops_bambooStageA-0d18c2ad802046956f35bcdbee3175be.glb b/.godot/imported/crops_bambooStageA-0d18c2ad802046956f35bcdbee3175be.glb new file mode 100644 index 0000000..e9098ec Binary files /dev/null and b/.godot/imported/crops_bambooStageA-0d18c2ad802046956f35bcdbee3175be.glb differ diff --git a/.godot/imported/crops_bambooStageA.fbx-0d18c2ad802046956f35bcdbee3175be.md5 b/.godot/imported/crops_bambooStageA.fbx-0d18c2ad802046956f35bcdbee3175be.md5 new file mode 100644 index 0000000..e4de113 --- /dev/null +++ b/.godot/imported/crops_bambooStageA.fbx-0d18c2ad802046956f35bcdbee3175be.md5 @@ -0,0 +1,2 @@ +source_md5="1a285cfe8fc84d3d92e2433e3abc6659" +dest_md5="05fec56637722325d041299a5d8b7989" diff --git a/.godot/imported/crops_bambooStageA.fbx-0d18c2ad802046956f35bcdbee3175be.scn b/.godot/imported/crops_bambooStageA.fbx-0d18c2ad802046956f35bcdbee3175be.scn new file mode 100644 index 0000000..f9d2348 Binary files /dev/null and b/.godot/imported/crops_bambooStageA.fbx-0d18c2ad802046956f35bcdbee3175be.scn differ diff --git a/.godot/imported/crops_bambooStageB-7133088aa85a0e7d2cac89346d18c458.glb b/.godot/imported/crops_bambooStageB-7133088aa85a0e7d2cac89346d18c458.glb new file mode 100644 index 0000000..11699bb Binary files /dev/null and b/.godot/imported/crops_bambooStageB-7133088aa85a0e7d2cac89346d18c458.glb differ diff --git a/.godot/imported/crops_bambooStageB.fbx-7133088aa85a0e7d2cac89346d18c458.md5 b/.godot/imported/crops_bambooStageB.fbx-7133088aa85a0e7d2cac89346d18c458.md5 new file mode 100644 index 0000000..a7e31dc --- /dev/null +++ b/.godot/imported/crops_bambooStageB.fbx-7133088aa85a0e7d2cac89346d18c458.md5 @@ -0,0 +1,2 @@ +source_md5="73b6a72aa63c37be18bef071864a684f" +dest_md5="26db416c2ab887bee5cb1f82fbaef37c" diff --git a/.godot/imported/crops_bambooStageB.fbx-7133088aa85a0e7d2cac89346d18c458.scn b/.godot/imported/crops_bambooStageB.fbx-7133088aa85a0e7d2cac89346d18c458.scn new file mode 100644 index 0000000..21d9a86 Binary files /dev/null and b/.godot/imported/crops_bambooStageB.fbx-7133088aa85a0e7d2cac89346d18c458.scn differ diff --git a/.godot/imported/crops_cornStageA-b87d2810c4699aa219c79956f33fe94b.glb b/.godot/imported/crops_cornStageA-b87d2810c4699aa219c79956f33fe94b.glb new file mode 100644 index 0000000..38e07e1 Binary files /dev/null and b/.godot/imported/crops_cornStageA-b87d2810c4699aa219c79956f33fe94b.glb differ diff --git a/.godot/imported/crops_cornStageA.fbx-b87d2810c4699aa219c79956f33fe94b.md5 b/.godot/imported/crops_cornStageA.fbx-b87d2810c4699aa219c79956f33fe94b.md5 new file mode 100644 index 0000000..47d583c --- /dev/null +++ b/.godot/imported/crops_cornStageA.fbx-b87d2810c4699aa219c79956f33fe94b.md5 @@ -0,0 +1,2 @@ +source_md5="bc7f97e14bc50fd97abf3b3a35b72214" +dest_md5="61c6394cf9585424dc1fd2a889ef645a" diff --git a/.godot/imported/crops_cornStageA.fbx-b87d2810c4699aa219c79956f33fe94b.scn b/.godot/imported/crops_cornStageA.fbx-b87d2810c4699aa219c79956f33fe94b.scn new file mode 100644 index 0000000..93c3d43 Binary files /dev/null and b/.godot/imported/crops_cornStageA.fbx-b87d2810c4699aa219c79956f33fe94b.scn differ diff --git a/.godot/imported/crops_cornStageB-df2164b2e00fbc6eff267c7a00828b90.glb b/.godot/imported/crops_cornStageB-df2164b2e00fbc6eff267c7a00828b90.glb new file mode 100644 index 0000000..5b6e0ee Binary files /dev/null and b/.godot/imported/crops_cornStageB-df2164b2e00fbc6eff267c7a00828b90.glb differ diff --git a/.godot/imported/crops_cornStageB.fbx-df2164b2e00fbc6eff267c7a00828b90.md5 b/.godot/imported/crops_cornStageB.fbx-df2164b2e00fbc6eff267c7a00828b90.md5 new file mode 100644 index 0000000..8006852 --- /dev/null +++ b/.godot/imported/crops_cornStageB.fbx-df2164b2e00fbc6eff267c7a00828b90.md5 @@ -0,0 +1,2 @@ +source_md5="c2fe6b9d10fc29602f929fc09e41fd77" +dest_md5="bde079778c44121adbf7cbdbdc919788" diff --git a/.godot/imported/crops_cornStageB.fbx-df2164b2e00fbc6eff267c7a00828b90.scn b/.godot/imported/crops_cornStageB.fbx-df2164b2e00fbc6eff267c7a00828b90.scn new file mode 100644 index 0000000..9e396ed Binary files /dev/null and b/.godot/imported/crops_cornStageB.fbx-df2164b2e00fbc6eff267c7a00828b90.scn differ diff --git a/.godot/imported/crops_cornStageC-9921a5dc682886c90356a60ed36654b8.glb b/.godot/imported/crops_cornStageC-9921a5dc682886c90356a60ed36654b8.glb new file mode 100644 index 0000000..fc6d96f Binary files /dev/null and b/.godot/imported/crops_cornStageC-9921a5dc682886c90356a60ed36654b8.glb differ diff --git a/.godot/imported/crops_cornStageC.fbx-9921a5dc682886c90356a60ed36654b8.md5 b/.godot/imported/crops_cornStageC.fbx-9921a5dc682886c90356a60ed36654b8.md5 new file mode 100644 index 0000000..be88fe0 --- /dev/null +++ b/.godot/imported/crops_cornStageC.fbx-9921a5dc682886c90356a60ed36654b8.md5 @@ -0,0 +1,2 @@ +source_md5="e7e4c79b947cb7b509cd516af8f19425" +dest_md5="24545a5b8e7249456114df4ace06532c" diff --git a/.godot/imported/crops_cornStageC.fbx-9921a5dc682886c90356a60ed36654b8.scn b/.godot/imported/crops_cornStageC.fbx-9921a5dc682886c90356a60ed36654b8.scn new file mode 100644 index 0000000..085bb03 Binary files /dev/null and b/.godot/imported/crops_cornStageC.fbx-9921a5dc682886c90356a60ed36654b8.scn differ diff --git a/.godot/imported/crops_cornStageD-3f5ffce99eb2d16f14fe1d856713e2e7.glb b/.godot/imported/crops_cornStageD-3f5ffce99eb2d16f14fe1d856713e2e7.glb new file mode 100644 index 0000000..28578e0 Binary files /dev/null and b/.godot/imported/crops_cornStageD-3f5ffce99eb2d16f14fe1d856713e2e7.glb differ diff --git a/.godot/imported/crops_cornStageD.fbx-3f5ffce99eb2d16f14fe1d856713e2e7.md5 b/.godot/imported/crops_cornStageD.fbx-3f5ffce99eb2d16f14fe1d856713e2e7.md5 new file mode 100644 index 0000000..303c9b5 --- /dev/null +++ b/.godot/imported/crops_cornStageD.fbx-3f5ffce99eb2d16f14fe1d856713e2e7.md5 @@ -0,0 +1,2 @@ +source_md5="ee423300196f65ce33d57fff8e093bc8" +dest_md5="689f03537b81483f53917e52aadf8543" diff --git a/.godot/imported/crops_cornStageD.fbx-3f5ffce99eb2d16f14fe1d856713e2e7.scn b/.godot/imported/crops_cornStageD.fbx-3f5ffce99eb2d16f14fe1d856713e2e7.scn new file mode 100644 index 0000000..4202cef Binary files /dev/null and b/.godot/imported/crops_cornStageD.fbx-3f5ffce99eb2d16f14fe1d856713e2e7.scn differ diff --git a/.godot/imported/crops_dirtDoubleRow-42efca5f61d3e90cf63461b172c96fa9.glb b/.godot/imported/crops_dirtDoubleRow-42efca5f61d3e90cf63461b172c96fa9.glb new file mode 100644 index 0000000..18914c0 Binary files /dev/null and b/.godot/imported/crops_dirtDoubleRow-42efca5f61d3e90cf63461b172c96fa9.glb differ diff --git a/.godot/imported/crops_dirtDoubleRow.fbx-42efca5f61d3e90cf63461b172c96fa9.md5 b/.godot/imported/crops_dirtDoubleRow.fbx-42efca5f61d3e90cf63461b172c96fa9.md5 new file mode 100644 index 0000000..2f41538 --- /dev/null +++ b/.godot/imported/crops_dirtDoubleRow.fbx-42efca5f61d3e90cf63461b172c96fa9.md5 @@ -0,0 +1,2 @@ +source_md5="80a7c331685021f8ad55d1fdd566aebf" +dest_md5="18ee839c2f235763bd4cc73799dfa486" diff --git a/.godot/imported/crops_dirtDoubleRow.fbx-42efca5f61d3e90cf63461b172c96fa9.scn b/.godot/imported/crops_dirtDoubleRow.fbx-42efca5f61d3e90cf63461b172c96fa9.scn new file mode 100644 index 0000000..9e2b501 Binary files /dev/null and b/.godot/imported/crops_dirtDoubleRow.fbx-42efca5f61d3e90cf63461b172c96fa9.scn differ diff --git a/.godot/imported/crops_dirtDoubleRowCorner-3d29fb882dc435d2e60ec6e1e1a5a2a7.glb b/.godot/imported/crops_dirtDoubleRowCorner-3d29fb882dc435d2e60ec6e1e1a5a2a7.glb new file mode 100644 index 0000000..d89f2cc Binary files /dev/null and b/.godot/imported/crops_dirtDoubleRowCorner-3d29fb882dc435d2e60ec6e1e1a5a2a7.glb differ diff --git a/.godot/imported/crops_dirtDoubleRowCorner.fbx-3d29fb882dc435d2e60ec6e1e1a5a2a7.md5 b/.godot/imported/crops_dirtDoubleRowCorner.fbx-3d29fb882dc435d2e60ec6e1e1a5a2a7.md5 new file mode 100644 index 0000000..a522e2f --- /dev/null +++ b/.godot/imported/crops_dirtDoubleRowCorner.fbx-3d29fb882dc435d2e60ec6e1e1a5a2a7.md5 @@ -0,0 +1,2 @@ +source_md5="4b07a1189939708b0b5142be09d618d8" +dest_md5="ed3739b57a2dfba1f8aee1b25b10d8c7" diff --git a/.godot/imported/crops_dirtDoubleRowCorner.fbx-3d29fb882dc435d2e60ec6e1e1a5a2a7.scn b/.godot/imported/crops_dirtDoubleRowCorner.fbx-3d29fb882dc435d2e60ec6e1e1a5a2a7.scn new file mode 100644 index 0000000..e986bdd Binary files /dev/null and b/.godot/imported/crops_dirtDoubleRowCorner.fbx-3d29fb882dc435d2e60ec6e1e1a5a2a7.scn differ diff --git a/.godot/imported/crops_dirtDoubleRowEnd-5a7fff21d0969a984c52b92b42b959a3.glb b/.godot/imported/crops_dirtDoubleRowEnd-5a7fff21d0969a984c52b92b42b959a3.glb new file mode 100644 index 0000000..f1925a8 Binary files /dev/null and b/.godot/imported/crops_dirtDoubleRowEnd-5a7fff21d0969a984c52b92b42b959a3.glb differ diff --git a/.godot/imported/crops_dirtDoubleRowEnd.fbx-5a7fff21d0969a984c52b92b42b959a3.md5 b/.godot/imported/crops_dirtDoubleRowEnd.fbx-5a7fff21d0969a984c52b92b42b959a3.md5 new file mode 100644 index 0000000..1ae6a42 --- /dev/null +++ b/.godot/imported/crops_dirtDoubleRowEnd.fbx-5a7fff21d0969a984c52b92b42b959a3.md5 @@ -0,0 +1,2 @@ +source_md5="8766cc464d4ecd32ec412cbee0f083a2" +dest_md5="35d22f5601d41678ca3cbba071d970c3" diff --git a/.godot/imported/crops_dirtDoubleRowEnd.fbx-5a7fff21d0969a984c52b92b42b959a3.scn b/.godot/imported/crops_dirtDoubleRowEnd.fbx-5a7fff21d0969a984c52b92b42b959a3.scn new file mode 100644 index 0000000..0d8df28 Binary files /dev/null and b/.godot/imported/crops_dirtDoubleRowEnd.fbx-5a7fff21d0969a984c52b92b42b959a3.scn differ diff --git a/.godot/imported/crops_dirtRow-29cf661061e51e45a4744955892f1867.glb b/.godot/imported/crops_dirtRow-29cf661061e51e45a4744955892f1867.glb new file mode 100644 index 0000000..55168b2 Binary files /dev/null and b/.godot/imported/crops_dirtRow-29cf661061e51e45a4744955892f1867.glb differ diff --git a/.godot/imported/crops_dirtRow.fbx-29cf661061e51e45a4744955892f1867.md5 b/.godot/imported/crops_dirtRow.fbx-29cf661061e51e45a4744955892f1867.md5 new file mode 100644 index 0000000..cea2b92 --- /dev/null +++ b/.godot/imported/crops_dirtRow.fbx-29cf661061e51e45a4744955892f1867.md5 @@ -0,0 +1,2 @@ +source_md5="79d1993407a64ebe96550b780a81c868" +dest_md5="093f1092b5254de69000d56ca9d6f70e" diff --git a/.godot/imported/crops_dirtRow.fbx-29cf661061e51e45a4744955892f1867.scn b/.godot/imported/crops_dirtRow.fbx-29cf661061e51e45a4744955892f1867.scn new file mode 100644 index 0000000..2358e45 Binary files /dev/null and b/.godot/imported/crops_dirtRow.fbx-29cf661061e51e45a4744955892f1867.scn differ diff --git a/.godot/imported/crops_dirtRowCorner-31268ecc18ff37ecce8a44a2a2f9e565.glb b/.godot/imported/crops_dirtRowCorner-31268ecc18ff37ecce8a44a2a2f9e565.glb new file mode 100644 index 0000000..45553ea Binary files /dev/null and b/.godot/imported/crops_dirtRowCorner-31268ecc18ff37ecce8a44a2a2f9e565.glb differ diff --git a/.godot/imported/crops_dirtRowCorner.fbx-31268ecc18ff37ecce8a44a2a2f9e565.md5 b/.godot/imported/crops_dirtRowCorner.fbx-31268ecc18ff37ecce8a44a2a2f9e565.md5 new file mode 100644 index 0000000..d93e958 --- /dev/null +++ b/.godot/imported/crops_dirtRowCorner.fbx-31268ecc18ff37ecce8a44a2a2f9e565.md5 @@ -0,0 +1,2 @@ +source_md5="5b095e404bfe3c8720814eec3bd38181" +dest_md5="c5d07b6b28d092bc2bf584b13c06b4c9" diff --git a/.godot/imported/crops_dirtRowCorner.fbx-31268ecc18ff37ecce8a44a2a2f9e565.scn b/.godot/imported/crops_dirtRowCorner.fbx-31268ecc18ff37ecce8a44a2a2f9e565.scn new file mode 100644 index 0000000..ccae73f Binary files /dev/null and b/.godot/imported/crops_dirtRowCorner.fbx-31268ecc18ff37ecce8a44a2a2f9e565.scn differ diff --git a/.godot/imported/crops_dirtRowEnd-f0665728c95f42c7378ab9ac5f64fa95.glb b/.godot/imported/crops_dirtRowEnd-f0665728c95f42c7378ab9ac5f64fa95.glb new file mode 100644 index 0000000..89569ef Binary files /dev/null and b/.godot/imported/crops_dirtRowEnd-f0665728c95f42c7378ab9ac5f64fa95.glb differ diff --git a/.godot/imported/crops_dirtRowEnd.fbx-f0665728c95f42c7378ab9ac5f64fa95.md5 b/.godot/imported/crops_dirtRowEnd.fbx-f0665728c95f42c7378ab9ac5f64fa95.md5 new file mode 100644 index 0000000..ab484ac --- /dev/null +++ b/.godot/imported/crops_dirtRowEnd.fbx-f0665728c95f42c7378ab9ac5f64fa95.md5 @@ -0,0 +1,2 @@ +source_md5="bc087e9765d9642f51fa55c4225e99c7" +dest_md5="4f30fefddfb7ea1b50a3b8279cfc2dbe" diff --git a/.godot/imported/crops_dirtRowEnd.fbx-f0665728c95f42c7378ab9ac5f64fa95.scn b/.godot/imported/crops_dirtRowEnd.fbx-f0665728c95f42c7378ab9ac5f64fa95.scn new file mode 100644 index 0000000..0259928 Binary files /dev/null and b/.godot/imported/crops_dirtRowEnd.fbx-f0665728c95f42c7378ab9ac5f64fa95.scn differ diff --git a/.godot/imported/crops_dirtSingle-35111b70ebff8d5ab6a865c4d0d17521.glb b/.godot/imported/crops_dirtSingle-35111b70ebff8d5ab6a865c4d0d17521.glb new file mode 100644 index 0000000..034a0fc Binary files /dev/null and b/.godot/imported/crops_dirtSingle-35111b70ebff8d5ab6a865c4d0d17521.glb differ diff --git a/.godot/imported/crops_dirtSingle.fbx-35111b70ebff8d5ab6a865c4d0d17521.md5 b/.godot/imported/crops_dirtSingle.fbx-35111b70ebff8d5ab6a865c4d0d17521.md5 new file mode 100644 index 0000000..43a05a5 --- /dev/null +++ b/.godot/imported/crops_dirtSingle.fbx-35111b70ebff8d5ab6a865c4d0d17521.md5 @@ -0,0 +1,2 @@ +source_md5="5da72dd5998dc4f4ea195ba8ada8aae2" +dest_md5="a58d218f617b832bfee3127390808568" diff --git a/.godot/imported/crops_dirtSingle.fbx-35111b70ebff8d5ab6a865c4d0d17521.scn b/.godot/imported/crops_dirtSingle.fbx-35111b70ebff8d5ab6a865c4d0d17521.scn new file mode 100644 index 0000000..7a794a2 Binary files /dev/null and b/.godot/imported/crops_dirtSingle.fbx-35111b70ebff8d5ab6a865c4d0d17521.scn differ diff --git a/.godot/imported/crops_leafsStageA-a5f78eb83ea8fd1ebdef3cd7645b8295.glb b/.godot/imported/crops_leafsStageA-a5f78eb83ea8fd1ebdef3cd7645b8295.glb new file mode 100644 index 0000000..bf9073a Binary files /dev/null and b/.godot/imported/crops_leafsStageA-a5f78eb83ea8fd1ebdef3cd7645b8295.glb differ diff --git a/.godot/imported/crops_leafsStageA.fbx-a5f78eb83ea8fd1ebdef3cd7645b8295.md5 b/.godot/imported/crops_leafsStageA.fbx-a5f78eb83ea8fd1ebdef3cd7645b8295.md5 new file mode 100644 index 0000000..20dd850 --- /dev/null +++ b/.godot/imported/crops_leafsStageA.fbx-a5f78eb83ea8fd1ebdef3cd7645b8295.md5 @@ -0,0 +1,2 @@ +source_md5="b2d688f6464c04c5ffc5e47af1a265bb" +dest_md5="6e35887263d6a4e1f6395aaa758d910f" diff --git a/.godot/imported/crops_leafsStageA.fbx-a5f78eb83ea8fd1ebdef3cd7645b8295.scn b/.godot/imported/crops_leafsStageA.fbx-a5f78eb83ea8fd1ebdef3cd7645b8295.scn new file mode 100644 index 0000000..14c0ee7 Binary files /dev/null and b/.godot/imported/crops_leafsStageA.fbx-a5f78eb83ea8fd1ebdef3cd7645b8295.scn differ diff --git a/.godot/imported/crops_leafsStageB-c131e1461eb7de06cc526210e4c009de.glb b/.godot/imported/crops_leafsStageB-c131e1461eb7de06cc526210e4c009de.glb new file mode 100644 index 0000000..3fcddbb Binary files /dev/null and b/.godot/imported/crops_leafsStageB-c131e1461eb7de06cc526210e4c009de.glb differ diff --git a/.godot/imported/crops_leafsStageB.fbx-c131e1461eb7de06cc526210e4c009de.md5 b/.godot/imported/crops_leafsStageB.fbx-c131e1461eb7de06cc526210e4c009de.md5 new file mode 100644 index 0000000..529ced0 --- /dev/null +++ b/.godot/imported/crops_leafsStageB.fbx-c131e1461eb7de06cc526210e4c009de.md5 @@ -0,0 +1,2 @@ +source_md5="e25a484e0ae0b43a2b5d5d31e1650ff6" +dest_md5="f6b8c0bd4093e6e35ac22137b9f7eea6" diff --git a/.godot/imported/crops_leafsStageB.fbx-c131e1461eb7de06cc526210e4c009de.scn b/.godot/imported/crops_leafsStageB.fbx-c131e1461eb7de06cc526210e4c009de.scn new file mode 100644 index 0000000..f261df6 Binary files /dev/null and b/.godot/imported/crops_leafsStageB.fbx-c131e1461eb7de06cc526210e4c009de.scn differ diff --git a/.godot/imported/crops_wheatStageA-69b778664b92f6033f9a522dbb5fa7d9.glb b/.godot/imported/crops_wheatStageA-69b778664b92f6033f9a522dbb5fa7d9.glb new file mode 100644 index 0000000..bea6dd2 Binary files /dev/null and b/.godot/imported/crops_wheatStageA-69b778664b92f6033f9a522dbb5fa7d9.glb differ diff --git a/.godot/imported/crops_wheatStageA.fbx-69b778664b92f6033f9a522dbb5fa7d9.md5 b/.godot/imported/crops_wheatStageA.fbx-69b778664b92f6033f9a522dbb5fa7d9.md5 new file mode 100644 index 0000000..45b64dd --- /dev/null +++ b/.godot/imported/crops_wheatStageA.fbx-69b778664b92f6033f9a522dbb5fa7d9.md5 @@ -0,0 +1,2 @@ +source_md5="70920adfb1a0957f2d851a3e3d0a0bd3" +dest_md5="dfbd817a83c540a8220dc7e2374cc054" diff --git a/.godot/imported/crops_wheatStageA.fbx-69b778664b92f6033f9a522dbb5fa7d9.scn b/.godot/imported/crops_wheatStageA.fbx-69b778664b92f6033f9a522dbb5fa7d9.scn new file mode 100644 index 0000000..51c9f79 Binary files /dev/null and b/.godot/imported/crops_wheatStageA.fbx-69b778664b92f6033f9a522dbb5fa7d9.scn differ diff --git a/.godot/imported/crops_wheatStageB-80482ee60eb407f0ec0a9762d4621a16.glb b/.godot/imported/crops_wheatStageB-80482ee60eb407f0ec0a9762d4621a16.glb new file mode 100644 index 0000000..7155b21 Binary files /dev/null and b/.godot/imported/crops_wheatStageB-80482ee60eb407f0ec0a9762d4621a16.glb differ diff --git a/.godot/imported/crops_wheatStageB.fbx-80482ee60eb407f0ec0a9762d4621a16.md5 b/.godot/imported/crops_wheatStageB.fbx-80482ee60eb407f0ec0a9762d4621a16.md5 new file mode 100644 index 0000000..eaaeb95 --- /dev/null +++ b/.godot/imported/crops_wheatStageB.fbx-80482ee60eb407f0ec0a9762d4621a16.md5 @@ -0,0 +1,2 @@ +source_md5="60e12b80250806cd3395423f2138a5cf" +dest_md5="60562e0058ca8b8cc9c510d0651f5c20" diff --git a/.godot/imported/crops_wheatStageB.fbx-80482ee60eb407f0ec0a9762d4621a16.scn b/.godot/imported/crops_wheatStageB.fbx-80482ee60eb407f0ec0a9762d4621a16.scn new file mode 100644 index 0000000..de59cdd Binary files /dev/null and b/.godot/imported/crops_wheatStageB.fbx-80482ee60eb407f0ec0a9762d4621a16.scn differ diff --git a/.godot/imported/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png-a1b53292a14e0d14a6520eb991cb10c8.md5 b/.godot/imported/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png-a1b53292a14e0d14a6520eb991cb10c8.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png-a1b53292a14e0d14a6520eb991cb10c8.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png-a1b53292a14e0d14a6520eb991cb10c8.s3tc.ctex b/.godot/imported/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png-a1b53292a14e0d14a6520eb991cb10c8.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png-a1b53292a14e0d14a6520eb991cb10c8.s3tc.ctex differ diff --git a/.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4.glb b/.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4.glb new file mode 100644 index 0000000..941e22e Binary files /dev/null and b/.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4.glb differ diff --git a/.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png-0f3c0a9cbaa4729a2e2ecf3ea805202f.md5 b/.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png-0f3c0a9cbaa4729a2e2ecf3ea805202f.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png-0f3c0a9cbaa4729a2e2ecf3ea805202f.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png-0f3c0a9cbaa4729a2e2ecf3ea805202f.s3tc.ctex b/.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png-0f3c0a9cbaa4729a2e2ecf3ea805202f.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png-0f3c0a9cbaa4729a2e2ecf3ea805202f.s3tc.ctex differ diff --git a/.godot/imported/debris-bolt.fbx-d57e1b72289d548cb67c2f402acfdaa4.md5 b/.godot/imported/debris-bolt.fbx-d57e1b72289d548cb67c2f402acfdaa4.md5 new file mode 100644 index 0000000..442bcbb --- /dev/null +++ b/.godot/imported/debris-bolt.fbx-d57e1b72289d548cb67c2f402acfdaa4.md5 @@ -0,0 +1,2 @@ +source_md5="5ec97e4d1ba9b68ee954a63c9b91c020" +dest_md5="16fe370ee201f226c337a387cf6e0059" diff --git a/.godot/imported/debris-bolt.fbx-d57e1b72289d548cb67c2f402acfdaa4.scn b/.godot/imported/debris-bolt.fbx-d57e1b72289d548cb67c2f402acfdaa4.scn new file mode 100644 index 0000000..ab832fc Binary files /dev/null and b/.godot/imported/debris-bolt.fbx-d57e1b72289d548cb67c2f402acfdaa4.scn differ diff --git a/.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5.glb b/.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5.glb new file mode 100644 index 0000000..e28bc13 Binary files /dev/null and b/.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5.glb differ diff --git a/.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png-f43a924acd1c0a316c190b59f62e5d08.md5 b/.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png-f43a924acd1c0a316c190b59f62e5d08.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png-f43a924acd1c0a316c190b59f62e5d08.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png-f43a924acd1c0a316c190b59f62e5d08.s3tc.ctex b/.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png-f43a924acd1c0a316c190b59f62e5d08.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png-f43a924acd1c0a316c190b59f62e5d08.s3tc.ctex differ diff --git a/.godot/imported/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png-47b2ccd0c1f36f23de22533712af4992.md5 b/.godot/imported/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png-47b2ccd0c1f36f23de22533712af4992.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png-47b2ccd0c1f36f23de22533712af4992.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png-47b2ccd0c1f36f23de22533712af4992.s3tc.ctex b/.godot/imported/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png-47b2ccd0c1f36f23de22533712af4992.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png-47b2ccd0c1f36f23de22533712af4992.s3tc.ctex differ diff --git a/.godot/imported/debris-bumper.fbx-0a6bef899d7e008595a8524259ab73b5.md5 b/.godot/imported/debris-bumper.fbx-0a6bef899d7e008595a8524259ab73b5.md5 new file mode 100644 index 0000000..c512472 --- /dev/null +++ b/.godot/imported/debris-bumper.fbx-0a6bef899d7e008595a8524259ab73b5.md5 @@ -0,0 +1,2 @@ +source_md5="1a2e2e0e2f2bda2b19313ac7b29bd551" +dest_md5="996f653e6c3c713b386177bc6076e466" diff --git a/.godot/imported/debris-bumper.fbx-0a6bef899d7e008595a8524259ab73b5.scn b/.godot/imported/debris-bumper.fbx-0a6bef899d7e008595a8524259ab73b5.scn new file mode 100644 index 0000000..98d3272 Binary files /dev/null and b/.godot/imported/debris-bumper.fbx-0a6bef899d7e008595a8524259ab73b5.scn differ diff --git a/.godot/imported/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png-85829824fc0c1bdf155547028809749a.md5 b/.godot/imported/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png-85829824fc0c1bdf155547028809749a.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png-85829824fc0c1bdf155547028809749a.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png-85829824fc0c1bdf155547028809749a.s3tc.ctex b/.godot/imported/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png-85829824fc0c1bdf155547028809749a.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png-85829824fc0c1bdf155547028809749a.s3tc.ctex differ diff --git a/.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51.glb b/.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51.glb new file mode 100644 index 0000000..f67f9d6 Binary files /dev/null and b/.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51.glb differ diff --git a/.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png-6a1beb19684637ef9d22fee8459287cf.md5 b/.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png-6a1beb19684637ef9d22fee8459287cf.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png-6a1beb19684637ef9d22fee8459287cf.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png-6a1beb19684637ef9d22fee8459287cf.s3tc.ctex b/.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png-6a1beb19684637ef9d22fee8459287cf.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png-6a1beb19684637ef9d22fee8459287cf.s3tc.ctex differ diff --git a/.godot/imported/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png-704a66414a4f55a20b807ac73b3a1e1f.md5 b/.godot/imported/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png-704a66414a4f55a20b807ac73b3a1e1f.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png-704a66414a4f55a20b807ac73b3a1e1f.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png-704a66414a4f55a20b807ac73b3a1e1f.s3tc.ctex b/.godot/imported/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png-704a66414a4f55a20b807ac73b3a1e1f.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png-704a66414a4f55a20b807ac73b3a1e1f.s3tc.ctex differ diff --git a/.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8.glb b/.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8.glb new file mode 100644 index 0000000..b5cc2ad Binary files /dev/null and b/.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8.glb differ diff --git a/.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png-94a314b58da92bef4805e1e9b3f06f3c.md5 b/.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png-94a314b58da92bef4805e1e9b3f06f3c.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png-94a314b58da92bef4805e1e9b3f06f3c.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png-94a314b58da92bef4805e1e9b3f06f3c.s3tc.ctex b/.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png-94a314b58da92bef4805e1e9b3f06f3c.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png-94a314b58da92bef4805e1e9b3f06f3c.s3tc.ctex differ diff --git a/.godot/imported/debris-door-window.fbx-7c12a3f2a0708dd697f058ec33a4acc8.md5 b/.godot/imported/debris-door-window.fbx-7c12a3f2a0708dd697f058ec33a4acc8.md5 new file mode 100644 index 0000000..4cb0e85 --- /dev/null +++ b/.godot/imported/debris-door-window.fbx-7c12a3f2a0708dd697f058ec33a4acc8.md5 @@ -0,0 +1,2 @@ +source_md5="32bec43ff45cacbf04893c911e7093b4" +dest_md5="66a1ff086b6058bd800c2b2ceb7d9351" diff --git a/.godot/imported/debris-door-window.fbx-7c12a3f2a0708dd697f058ec33a4acc8.scn b/.godot/imported/debris-door-window.fbx-7c12a3f2a0708dd697f058ec33a4acc8.scn new file mode 100644 index 0000000..cf9f9dd Binary files /dev/null and b/.godot/imported/debris-door-window.fbx-7c12a3f2a0708dd697f058ec33a4acc8.scn differ diff --git a/.godot/imported/debris-door.fbx-535e0f30f491a0784d8c9d704f288e51.md5 b/.godot/imported/debris-door.fbx-535e0f30f491a0784d8c9d704f288e51.md5 new file mode 100644 index 0000000..4a5b30e --- /dev/null +++ b/.godot/imported/debris-door.fbx-535e0f30f491a0784d8c9d704f288e51.md5 @@ -0,0 +1,2 @@ +source_md5="5aadf0bedff373205596a5e4eb42ce59" +dest_md5="1e9fd1417b9a9448f0b94beb17bc2aa8" diff --git a/.godot/imported/debris-door.fbx-535e0f30f491a0784d8c9d704f288e51.scn b/.godot/imported/debris-door.fbx-535e0f30f491a0784d8c9d704f288e51.scn new file mode 100644 index 0000000..3065e4a Binary files /dev/null and b/.godot/imported/debris-door.fbx-535e0f30f491a0784d8c9d704f288e51.scn differ diff --git a/.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754.glb b/.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754.glb new file mode 100644 index 0000000..9648119 Binary files /dev/null and b/.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754.glb differ diff --git a/.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png-2de8956732649c07a7c1b7e23f98075a.md5 b/.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png-2de8956732649c07a7c1b7e23f98075a.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png-2de8956732649c07a7c1b7e23f98075a.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png-2de8956732649c07a7c1b7e23f98075a.s3tc.ctex b/.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png-2de8956732649c07a7c1b7e23f98075a.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png-2de8956732649c07a7c1b7e23f98075a.s3tc.ctex differ diff --git a/.godot/imported/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png-626688ca5a9f31bbc68719595e1a5a54.md5 b/.godot/imported/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png-626688ca5a9f31bbc68719595e1a5a54.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png-626688ca5a9f31bbc68719595e1a5a54.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png-626688ca5a9f31bbc68719595e1a5a54.s3tc.ctex b/.godot/imported/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png-626688ca5a9f31bbc68719595e1a5a54.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png-626688ca5a9f31bbc68719595e1a5a54.s3tc.ctex differ diff --git a/.godot/imported/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png-9ac0afb89c7d260e297c99fc530075b3.md5 b/.godot/imported/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png-9ac0afb89c7d260e297c99fc530075b3.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png-9ac0afb89c7d260e297c99fc530075b3.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png-9ac0afb89c7d260e297c99fc530075b3.s3tc.ctex b/.godot/imported/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png-9ac0afb89c7d260e297c99fc530075b3.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png-9ac0afb89c7d260e297c99fc530075b3.s3tc.ctex differ diff --git a/.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d.glb b/.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d.glb new file mode 100644 index 0000000..5f91c26 Binary files /dev/null and b/.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d.glb differ diff --git a/.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png-740fe61f516f5b41819a6c4169f82ba3.md5 b/.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png-740fe61f516f5b41819a6c4169f82ba3.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png-740fe61f516f5b41819a6c4169f82ba3.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png-740fe61f516f5b41819a6c4169f82ba3.s3tc.ctex b/.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png-740fe61f516f5b41819a6c4169f82ba3.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png-740fe61f516f5b41819a6c4169f82ba3.s3tc.ctex differ diff --git a/.godot/imported/debris-drivetrain-axle.fbx-c60d445c676130ce7ade989d921bbe4d.md5 b/.godot/imported/debris-drivetrain-axle.fbx-c60d445c676130ce7ade989d921bbe4d.md5 new file mode 100644 index 0000000..bdeec92 --- /dev/null +++ b/.godot/imported/debris-drivetrain-axle.fbx-c60d445c676130ce7ade989d921bbe4d.md5 @@ -0,0 +1,2 @@ +source_md5="a94912815ae36cfb3fa2db16a63c84f1" +dest_md5="188464fbf2633e7c261fe132a01ae328" diff --git a/.godot/imported/debris-drivetrain-axle.fbx-c60d445c676130ce7ade989d921bbe4d.scn b/.godot/imported/debris-drivetrain-axle.fbx-c60d445c676130ce7ade989d921bbe4d.scn new file mode 100644 index 0000000..2cc6630 Binary files /dev/null and b/.godot/imported/debris-drivetrain-axle.fbx-c60d445c676130ce7ade989d921bbe4d.scn differ diff --git a/.godot/imported/debris-drivetrain.fbx-71a1de7a82e5f0b3c8758871676b2754.md5 b/.godot/imported/debris-drivetrain.fbx-71a1de7a82e5f0b3c8758871676b2754.md5 new file mode 100644 index 0000000..a0270cd --- /dev/null +++ b/.godot/imported/debris-drivetrain.fbx-71a1de7a82e5f0b3c8758871676b2754.md5 @@ -0,0 +1,2 @@ +source_md5="419856214b771ba391de9f70cc086c30" +dest_md5="02723f7e2b624017d2ec2b1a2762d1d9" diff --git a/.godot/imported/debris-drivetrain.fbx-71a1de7a82e5f0b3c8758871676b2754.scn b/.godot/imported/debris-drivetrain.fbx-71a1de7a82e5f0b3c8758871676b2754.scn new file mode 100644 index 0000000..8b059b1 Binary files /dev/null and b/.godot/imported/debris-drivetrain.fbx-71a1de7a82e5f0b3c8758871676b2754.scn differ diff --git a/.godot/imported/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png-5fdf6a92328c82e662164319d17fa656.md5 b/.godot/imported/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png-5fdf6a92328c82e662164319d17fa656.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png-5fdf6a92328c82e662164319d17fa656.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png-5fdf6a92328c82e662164319d17fa656.s3tc.ctex b/.godot/imported/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png-5fdf6a92328c82e662164319d17fa656.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png-5fdf6a92328c82e662164319d17fa656.s3tc.ctex differ diff --git a/.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc.glb b/.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc.glb new file mode 100644 index 0000000..83560f4 Binary files /dev/null and b/.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc.glb differ diff --git a/.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png-a075d1b758382f176f7fff14458d3771.md5 b/.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png-a075d1b758382f176f7fff14458d3771.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png-a075d1b758382f176f7fff14458d3771.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png-a075d1b758382f176f7fff14458d3771.s3tc.ctex b/.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png-a075d1b758382f176f7fff14458d3771.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png-a075d1b758382f176f7fff14458d3771.s3tc.ctex differ diff --git a/.godot/imported/debris-nut.fbx-bf8794044a3af91988fbd2e425ef05cc.md5 b/.godot/imported/debris-nut.fbx-bf8794044a3af91988fbd2e425ef05cc.md5 new file mode 100644 index 0000000..87778a4 --- /dev/null +++ b/.godot/imported/debris-nut.fbx-bf8794044a3af91988fbd2e425ef05cc.md5 @@ -0,0 +1,2 @@ +source_md5="1d27a05ae4a6f3fbf1299e12863ba6de" +dest_md5="877766c07a8e3a694a8e04a1d682bf5f" diff --git a/.godot/imported/debris-nut.fbx-bf8794044a3af91988fbd2e425ef05cc.scn b/.godot/imported/debris-nut.fbx-bf8794044a3af91988fbd2e425ef05cc.scn new file mode 100644 index 0000000..d862194 Binary files /dev/null and b/.godot/imported/debris-nut.fbx-bf8794044a3af91988fbd2e425ef05cc.scn differ diff --git a/.godot/imported/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png-637348c454b8b217a6c317f31f56b0fb.md5 b/.godot/imported/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png-637348c454b8b217a6c317f31f56b0fb.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png-637348c454b8b217a6c317f31f56b0fb.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png-637348c454b8b217a6c317f31f56b0fb.s3tc.ctex b/.godot/imported/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png-637348c454b8b217a6c317f31f56b0fb.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png-637348c454b8b217a6c317f31f56b0fb.s3tc.ctex differ diff --git a/.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4.glb b/.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4.glb new file mode 100644 index 0000000..3bcfbe7 Binary files /dev/null and b/.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4.glb differ diff --git a/.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png-9a2e781aff0c0920f71d1ffbcb1cf782.md5 b/.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png-9a2e781aff0c0920f71d1ffbcb1cf782.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png-9a2e781aff0c0920f71d1ffbcb1cf782.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png-9a2e781aff0c0920f71d1ffbcb1cf782.s3tc.ctex b/.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png-9a2e781aff0c0920f71d1ffbcb1cf782.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png-9a2e781aff0c0920f71d1ffbcb1cf782.s3tc.ctex differ diff --git a/.godot/imported/debris-plate-a.fbx-88374f9a0fe925ef3dd047373211bae4.md5 b/.godot/imported/debris-plate-a.fbx-88374f9a0fe925ef3dd047373211bae4.md5 new file mode 100644 index 0000000..6b222f6 --- /dev/null +++ b/.godot/imported/debris-plate-a.fbx-88374f9a0fe925ef3dd047373211bae4.md5 @@ -0,0 +1,2 @@ +source_md5="a66a53cd44fea5f3848c13d5a4ec825c" +dest_md5="e69158a97410bc357aa76a23a4e2ac8e" diff --git a/.godot/imported/debris-plate-a.fbx-88374f9a0fe925ef3dd047373211bae4.scn b/.godot/imported/debris-plate-a.fbx-88374f9a0fe925ef3dd047373211bae4.scn new file mode 100644 index 0000000..ed7a4a0 Binary files /dev/null and b/.godot/imported/debris-plate-a.fbx-88374f9a0fe925ef3dd047373211bae4.scn differ diff --git a/.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886.glb b/.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886.glb new file mode 100644 index 0000000..3d374f7 Binary files /dev/null and b/.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886.glb differ diff --git a/.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png-8169e8f549d03aea7104372826cac319.md5 b/.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png-8169e8f549d03aea7104372826cac319.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png-8169e8f549d03aea7104372826cac319.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png-8169e8f549d03aea7104372826cac319.s3tc.ctex b/.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png-8169e8f549d03aea7104372826cac319.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png-8169e8f549d03aea7104372826cac319.s3tc.ctex differ diff --git a/.godot/imported/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png-95b1d24ef53827c534a45e95afed8667.md5 b/.godot/imported/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png-95b1d24ef53827c534a45e95afed8667.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png-95b1d24ef53827c534a45e95afed8667.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png-95b1d24ef53827c534a45e95afed8667.s3tc.ctex b/.godot/imported/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png-95b1d24ef53827c534a45e95afed8667.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png-95b1d24ef53827c534a45e95afed8667.s3tc.ctex differ diff --git a/.godot/imported/debris-plate-b.fbx-185005f3d68d37e4c05f701a8b8e6886.md5 b/.godot/imported/debris-plate-b.fbx-185005f3d68d37e4c05f701a8b8e6886.md5 new file mode 100644 index 0000000..ff556b4 --- /dev/null +++ b/.godot/imported/debris-plate-b.fbx-185005f3d68d37e4c05f701a8b8e6886.md5 @@ -0,0 +1,2 @@ +source_md5="3d1cb98a55f229fe00411e2ec14d26e0" +dest_md5="cdf8a7c4fca186125a30d2544328cfa8" diff --git a/.godot/imported/debris-plate-b.fbx-185005f3d68d37e4c05f701a8b8e6886.scn b/.godot/imported/debris-plate-b.fbx-185005f3d68d37e4c05f701a8b8e6886.scn new file mode 100644 index 0000000..8953e75 Binary files /dev/null and b/.godot/imported/debris-plate-b.fbx-185005f3d68d37e4c05f701a8b8e6886.scn differ diff --git a/.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae.glb b/.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae.glb new file mode 100644 index 0000000..8047636 Binary files /dev/null and b/.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae.glb differ diff --git a/.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png-a2ed6245ff38146748a2b1a7831e8421.md5 b/.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png-a2ed6245ff38146748a2b1a7831e8421.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png-a2ed6245ff38146748a2b1a7831e8421.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png-a2ed6245ff38146748a2b1a7831e8421.s3tc.ctex b/.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png-a2ed6245ff38146748a2b1a7831e8421.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png-a2ed6245ff38146748a2b1a7831e8421.s3tc.ctex differ diff --git a/.godot/imported/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png-6f7a5ad6d795593ec612e1fc030dda27.md5 b/.godot/imported/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png-6f7a5ad6d795593ec612e1fc030dda27.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png-6f7a5ad6d795593ec612e1fc030dda27.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png-6f7a5ad6d795593ec612e1fc030dda27.s3tc.ctex b/.godot/imported/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png-6f7a5ad6d795593ec612e1fc030dda27.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png-6f7a5ad6d795593ec612e1fc030dda27.s3tc.ctex differ diff --git a/.godot/imported/debris-plate-small-a.fbx-2e7b042177182659258aaab3ebe951ae.md5 b/.godot/imported/debris-plate-small-a.fbx-2e7b042177182659258aaab3ebe951ae.md5 new file mode 100644 index 0000000..43aafac --- /dev/null +++ b/.godot/imported/debris-plate-small-a.fbx-2e7b042177182659258aaab3ebe951ae.md5 @@ -0,0 +1,2 @@ +source_md5="f1e521aaccadbf4192354eb1caf08637" +dest_md5="8572593c82cf99ecb928b339ffea47b1" diff --git a/.godot/imported/debris-plate-small-a.fbx-2e7b042177182659258aaab3ebe951ae.scn b/.godot/imported/debris-plate-small-a.fbx-2e7b042177182659258aaab3ebe951ae.scn new file mode 100644 index 0000000..0a3137f Binary files /dev/null and b/.godot/imported/debris-plate-small-a.fbx-2e7b042177182659258aaab3ebe951ae.scn differ diff --git a/.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734.glb b/.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734.glb new file mode 100644 index 0000000..47c4927 Binary files /dev/null and b/.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734.glb differ diff --git a/.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png-15f7cdc8cc1edd5983ff45b84a173e62.md5 b/.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png-15f7cdc8cc1edd5983ff45b84a173e62.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png-15f7cdc8cc1edd5983ff45b84a173e62.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png-15f7cdc8cc1edd5983ff45b84a173e62.s3tc.ctex b/.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png-15f7cdc8cc1edd5983ff45b84a173e62.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png-15f7cdc8cc1edd5983ff45b84a173e62.s3tc.ctex differ diff --git a/.godot/imported/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png-1c9755e03870edae7c97255b41e02ae9.md5 b/.godot/imported/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png-1c9755e03870edae7c97255b41e02ae9.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png-1c9755e03870edae7c97255b41e02ae9.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png-1c9755e03870edae7c97255b41e02ae9.s3tc.ctex b/.godot/imported/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png-1c9755e03870edae7c97255b41e02ae9.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png-1c9755e03870edae7c97255b41e02ae9.s3tc.ctex differ diff --git a/.godot/imported/debris-plate-small-b.fbx-3ec1bddb97c534489decd53d06f4c734.md5 b/.godot/imported/debris-plate-small-b.fbx-3ec1bddb97c534489decd53d06f4c734.md5 new file mode 100644 index 0000000..228a5a6 --- /dev/null +++ b/.godot/imported/debris-plate-small-b.fbx-3ec1bddb97c534489decd53d06f4c734.md5 @@ -0,0 +1,2 @@ +source_md5="8031c70ba4a9082447ce96a38d18b707" +dest_md5="4d8232dc85c2651e39ab54a9c80f695e" diff --git a/.godot/imported/debris-plate-small-b.fbx-3ec1bddb97c534489decd53d06f4c734.scn b/.godot/imported/debris-plate-small-b.fbx-3ec1bddb97c534489decd53d06f4c734.scn new file mode 100644 index 0000000..ca60547 Binary files /dev/null and b/.godot/imported/debris-plate-small-b.fbx-3ec1bddb97c534489decd53d06f4c734.scn differ diff --git a/.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b.glb b/.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b.glb new file mode 100644 index 0000000..372f46e Binary files /dev/null and b/.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b.glb differ diff --git a/.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png-93509cbc9677f4928f717e49739bfad8.md5 b/.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png-93509cbc9677f4928f717e49739bfad8.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png-93509cbc9677f4928f717e49739bfad8.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png-93509cbc9677f4928f717e49739bfad8.s3tc.ctex b/.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png-93509cbc9677f4928f717e49739bfad8.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png-93509cbc9677f4928f717e49739bfad8.s3tc.ctex differ diff --git a/.godot/imported/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png-ea26dce4648ad9cc3f8839e9f9101b5e.md5 b/.godot/imported/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png-ea26dce4648ad9cc3f8839e9f9101b5e.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png-ea26dce4648ad9cc3f8839e9f9101b5e.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png-ea26dce4648ad9cc3f8839e9f9101b5e.s3tc.ctex b/.godot/imported/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png-ea26dce4648ad9cc3f8839e9f9101b5e.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png-ea26dce4648ad9cc3f8839e9f9101b5e.s3tc.ctex differ diff --git a/.godot/imported/debris-spoiler-a.fbx-59723e33d73e227ad8c755d6e262405b.md5 b/.godot/imported/debris-spoiler-a.fbx-59723e33d73e227ad8c755d6e262405b.md5 new file mode 100644 index 0000000..9c56d87 --- /dev/null +++ b/.godot/imported/debris-spoiler-a.fbx-59723e33d73e227ad8c755d6e262405b.md5 @@ -0,0 +1,2 @@ +source_md5="c76fd2610ab9f3de89829f5c42008ae4" +dest_md5="8d6f68b6112da92508b3e1e68ff5d1cc" diff --git a/.godot/imported/debris-spoiler-a.fbx-59723e33d73e227ad8c755d6e262405b.scn b/.godot/imported/debris-spoiler-a.fbx-59723e33d73e227ad8c755d6e262405b.scn new file mode 100644 index 0000000..64277a2 Binary files /dev/null and b/.godot/imported/debris-spoiler-a.fbx-59723e33d73e227ad8c755d6e262405b.scn differ diff --git a/.godot/imported/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png-1ff9d9a65a1ceba775f57d8dd5d318ec.md5 b/.godot/imported/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png-1ff9d9a65a1ceba775f57d8dd5d318ec.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png-1ff9d9a65a1ceba775f57d8dd5d318ec.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png-1ff9d9a65a1ceba775f57d8dd5d318ec.s3tc.ctex b/.godot/imported/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png-1ff9d9a65a1ceba775f57d8dd5d318ec.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png-1ff9d9a65a1ceba775f57d8dd5d318ec.s3tc.ctex differ diff --git a/.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365.glb b/.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365.glb new file mode 100644 index 0000000..f8e6f22 Binary files /dev/null and b/.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365.glb differ diff --git a/.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png-140eb78de9b03faf29829667f6659357.md5 b/.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png-140eb78de9b03faf29829667f6659357.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png-140eb78de9b03faf29829667f6659357.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png-140eb78de9b03faf29829667f6659357.s3tc.ctex b/.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png-140eb78de9b03faf29829667f6659357.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png-140eb78de9b03faf29829667f6659357.s3tc.ctex differ diff --git a/.godot/imported/debris-spoiler-b.fbx-d740f6d9070ac93fb566391cb74d1365.md5 b/.godot/imported/debris-spoiler-b.fbx-d740f6d9070ac93fb566391cb74d1365.md5 new file mode 100644 index 0000000..f3dacca --- /dev/null +++ b/.godot/imported/debris-spoiler-b.fbx-d740f6d9070ac93fb566391cb74d1365.md5 @@ -0,0 +1,2 @@ +source_md5="6052a43b9acaf080af2bae421f9a47b7" +dest_md5="0d8c173b85622ccee1d30f09d7528fd2" diff --git a/.godot/imported/debris-spoiler-b.fbx-d740f6d9070ac93fb566391cb74d1365.scn b/.godot/imported/debris-spoiler-b.fbx-d740f6d9070ac93fb566391cb74d1365.scn new file mode 100644 index 0000000..1d2c9e1 Binary files /dev/null and b/.godot/imported/debris-spoiler-b.fbx-d740f6d9070ac93fb566391cb74d1365.scn differ diff --git a/.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f.glb b/.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f.glb new file mode 100644 index 0000000..a497e8a Binary files /dev/null and b/.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f.glb differ diff --git a/.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png-0ba5f8c982a050d2466daa3e29e4c601.md5 b/.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png-0ba5f8c982a050d2466daa3e29e4c601.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png-0ba5f8c982a050d2466daa3e29e4c601.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png-0ba5f8c982a050d2466daa3e29e4c601.s3tc.ctex b/.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png-0ba5f8c982a050d2466daa3e29e4c601.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png-0ba5f8c982a050d2466daa3e29e4c601.s3tc.ctex differ diff --git a/.godot/imported/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png-49c8e7ccf70aae378eac6ce25a4cdf50.md5 b/.godot/imported/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png-49c8e7ccf70aae378eac6ce25a4cdf50.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png-49c8e7ccf70aae378eac6ce25a4cdf50.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png-49c8e7ccf70aae378eac6ce25a4cdf50.s3tc.ctex b/.godot/imported/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png-49c8e7ccf70aae378eac6ce25a4cdf50.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png-49c8e7ccf70aae378eac6ce25a4cdf50.s3tc.ctex differ diff --git a/.godot/imported/debris-tire.fbx-87b601983b1095750a192239e16e3e9f.md5 b/.godot/imported/debris-tire.fbx-87b601983b1095750a192239e16e3e9f.md5 new file mode 100644 index 0000000..ffed0c0 --- /dev/null +++ b/.godot/imported/debris-tire.fbx-87b601983b1095750a192239e16e3e9f.md5 @@ -0,0 +1,2 @@ +source_md5="0d31b34e57bd068e428d4e11131e2446" +dest_md5="bb48f343bf93455e5a5ca698be17ba8c" diff --git a/.godot/imported/debris-tire.fbx-87b601983b1095750a192239e16e3e9f.scn b/.godot/imported/debris-tire.fbx-87b601983b1095750a192239e16e3e9f.scn new file mode 100644 index 0000000..fbdb95b Binary files /dev/null and b/.godot/imported/debris-tire.fbx-87b601983b1095750a192239e16e3e9f.scn differ diff --git a/.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933.glb b/.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933.glb new file mode 100644 index 0000000..2912407 Binary files /dev/null and b/.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933.glb differ diff --git a/.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png-07c8b1742f2ca890bc583d1e9ac30dfb.md5 b/.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png-07c8b1742f2ca890bc583d1e9ac30dfb.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png-07c8b1742f2ca890bc583d1e9ac30dfb.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png-07c8b1742f2ca890bc583d1e9ac30dfb.s3tc.ctex b/.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png-07c8b1742f2ca890bc583d1e9ac30dfb.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png-07c8b1742f2ca890bc583d1e9ac30dfb.s3tc.ctex differ diff --git a/.godot/imported/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png-2e25aef48b1550b9b64c619d638e8745.md5 b/.godot/imported/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png-2e25aef48b1550b9b64c619d638e8745.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png-2e25aef48b1550b9b64c619d638e8745.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png-2e25aef48b1550b9b64c619d638e8745.s3tc.ctex b/.godot/imported/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png-2e25aef48b1550b9b64c619d638e8745.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png-2e25aef48b1550b9b64c619d638e8745.s3tc.ctex differ diff --git a/.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44.glb b/.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44.glb new file mode 100644 index 0000000..402c0b6 Binary files /dev/null and b/.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44.glb differ diff --git a/.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png-d4c6632d66d130121bc6cafa7787415a.md5 b/.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png-d4c6632d66d130121bc6cafa7787415a.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png-d4c6632d66d130121bc6cafa7787415a.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png-d4c6632d66d130121bc6cafa7787415a.s3tc.ctex b/.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png-d4c6632d66d130121bc6cafa7787415a.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png-d4c6632d66d130121bc6cafa7787415a.s3tc.ctex differ diff --git a/.godot/imported/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png-0dbaa44f7fc985e69986b0fd68c8dc04.md5 b/.godot/imported/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png-0dbaa44f7fc985e69986b0fd68c8dc04.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png-0dbaa44f7fc985e69986b0fd68c8dc04.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png-0dbaa44f7fc985e69986b0fd68c8dc04.s3tc.ctex b/.godot/imported/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png-0dbaa44f7fc985e69986b0fd68c8dc04.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png-0dbaa44f7fc985e69986b0fd68c8dc04.s3tc.ctex differ diff --git a/.godot/imported/delivery-flat.fbx-2f28d2b34af58e4c2ebba85dc0bd3a44.md5 b/.godot/imported/delivery-flat.fbx-2f28d2b34af58e4c2ebba85dc0bd3a44.md5 new file mode 100644 index 0000000..367cea7 --- /dev/null +++ b/.godot/imported/delivery-flat.fbx-2f28d2b34af58e4c2ebba85dc0bd3a44.md5 @@ -0,0 +1,2 @@ +source_md5="e30c777f47ca259d088255f59ce8ccbc" +dest_md5="5c04dd02ade22d15855becbd33597fd0" diff --git a/.godot/imported/delivery-flat.fbx-2f28d2b34af58e4c2ebba85dc0bd3a44.scn b/.godot/imported/delivery-flat.fbx-2f28d2b34af58e4c2ebba85dc0bd3a44.scn new file mode 100644 index 0000000..ba2c0d3 Binary files /dev/null and b/.godot/imported/delivery-flat.fbx-2f28d2b34af58e4c2ebba85dc0bd3a44.scn differ diff --git a/.godot/imported/delivery.fbx-480571e272cc8da9a50ecc7c53b67933.md5 b/.godot/imported/delivery.fbx-480571e272cc8da9a50ecc7c53b67933.md5 new file mode 100644 index 0000000..3d1023e --- /dev/null +++ b/.godot/imported/delivery.fbx-480571e272cc8da9a50ecc7c53b67933.md5 @@ -0,0 +1,2 @@ +source_md5="5402ad34ebe863d51a647a5c50eedffa" +dest_md5="8bbb85af35afbeeba92d5420ae79f269" diff --git a/.godot/imported/delivery.fbx-480571e272cc8da9a50ecc7c53b67933.scn b/.godot/imported/delivery.fbx-480571e272cc8da9a50ecc7c53b67933.scn new file mode 100644 index 0000000..5c15d4e Binary files /dev/null and b/.godot/imported/delivery.fbx-480571e272cc8da9a50ecc7c53b67933.scn differ diff --git a/.godot/imported/fence-3590fde68d9bee7ca4146bdf9928e86c.glb b/.godot/imported/fence-3590fde68d9bee7ca4146bdf9928e86c.glb new file mode 100644 index 0000000..be60ffa Binary files /dev/null and b/.godot/imported/fence-3590fde68d9bee7ca4146bdf9928e86c.glb differ diff --git a/.godot/imported/fence.fbx-3590fde68d9bee7ca4146bdf9928e86c.md5 b/.godot/imported/fence.fbx-3590fde68d9bee7ca4146bdf9928e86c.md5 new file mode 100644 index 0000000..f7e1e1d --- /dev/null +++ b/.godot/imported/fence.fbx-3590fde68d9bee7ca4146bdf9928e86c.md5 @@ -0,0 +1,2 @@ +source_md5="5df240430f253a39beb31144ecb6494b" +dest_md5="dff7f87976821794fefbfeaed7a2615b" diff --git a/.godot/imported/fence.fbx-3590fde68d9bee7ca4146bdf9928e86c.scn b/.godot/imported/fence.fbx-3590fde68d9bee7ca4146bdf9928e86c.scn new file mode 100644 index 0000000..4b48e3a Binary files /dev/null and b/.godot/imported/fence.fbx-3590fde68d9bee7ca4146bdf9928e86c.scn differ diff --git a/.godot/imported/fenceBroken-a7ba7462c56bc33a76606fa21756adcc.glb b/.godot/imported/fenceBroken-a7ba7462c56bc33a76606fa21756adcc.glb new file mode 100644 index 0000000..4922f45 Binary files /dev/null and b/.godot/imported/fenceBroken-a7ba7462c56bc33a76606fa21756adcc.glb differ diff --git a/.godot/imported/fenceBroken.fbx-a7ba7462c56bc33a76606fa21756adcc.md5 b/.godot/imported/fenceBroken.fbx-a7ba7462c56bc33a76606fa21756adcc.md5 new file mode 100644 index 0000000..f061e90 --- /dev/null +++ b/.godot/imported/fenceBroken.fbx-a7ba7462c56bc33a76606fa21756adcc.md5 @@ -0,0 +1,2 @@ +source_md5="e275f2bacc07277c54184449b6bdb5d7" +dest_md5="36a5631a09a85ad687e4d43c4054af88" diff --git a/.godot/imported/fenceBroken.fbx-a7ba7462c56bc33a76606fa21756adcc.scn b/.godot/imported/fenceBroken.fbx-a7ba7462c56bc33a76606fa21756adcc.scn new file mode 100644 index 0000000..3edc73f Binary files /dev/null and b/.godot/imported/fenceBroken.fbx-a7ba7462c56bc33a76606fa21756adcc.scn differ diff --git a/.godot/imported/fenceCurved-2483bf9eaff6f508d87bf18e82793693.glb b/.godot/imported/fenceCurved-2483bf9eaff6f508d87bf18e82793693.glb new file mode 100644 index 0000000..d2317c6 Binary files /dev/null and b/.godot/imported/fenceCurved-2483bf9eaff6f508d87bf18e82793693.glb differ diff --git a/.godot/imported/fenceCurved.fbx-2483bf9eaff6f508d87bf18e82793693.md5 b/.godot/imported/fenceCurved.fbx-2483bf9eaff6f508d87bf18e82793693.md5 new file mode 100644 index 0000000..5df2e5c --- /dev/null +++ b/.godot/imported/fenceCurved.fbx-2483bf9eaff6f508d87bf18e82793693.md5 @@ -0,0 +1,2 @@ +source_md5="756c096cb4e27ea68f9c87330b8d7b8d" +dest_md5="a0bad4336c1793bfe6d3a9ce75e3dc92" diff --git a/.godot/imported/fenceCurved.fbx-2483bf9eaff6f508d87bf18e82793693.scn b/.godot/imported/fenceCurved.fbx-2483bf9eaff6f508d87bf18e82793693.scn new file mode 100644 index 0000000..1a2ecaa Binary files /dev/null and b/.godot/imported/fenceCurved.fbx-2483bf9eaff6f508d87bf18e82793693.scn differ diff --git a/.godot/imported/fenceGate-c078cc815b2f2d70dce649304b430c53.glb b/.godot/imported/fenceGate-c078cc815b2f2d70dce649304b430c53.glb new file mode 100644 index 0000000..4df856c Binary files /dev/null and b/.godot/imported/fenceGate-c078cc815b2f2d70dce649304b430c53.glb differ diff --git a/.godot/imported/fenceGate.fbx-c078cc815b2f2d70dce649304b430c53.md5 b/.godot/imported/fenceGate.fbx-c078cc815b2f2d70dce649304b430c53.md5 new file mode 100644 index 0000000..1947e05 --- /dev/null +++ b/.godot/imported/fenceGate.fbx-c078cc815b2f2d70dce649304b430c53.md5 @@ -0,0 +1,2 @@ +source_md5="3b3d92abb42d376be8446c96d32c0d76" +dest_md5="d588962189810ad29d07ab9072cdd7a1" diff --git a/.godot/imported/fenceGate.fbx-c078cc815b2f2d70dce649304b430c53.scn b/.godot/imported/fenceGate.fbx-c078cc815b2f2d70dce649304b430c53.scn new file mode 100644 index 0000000..e3a9a27 Binary files /dev/null and b/.godot/imported/fenceGate.fbx-c078cc815b2f2d70dce649304b430c53.scn differ diff --git a/.godot/imported/fence_bend-f79a6a7d3e811b3f77b8cd9162d5f325.glb b/.godot/imported/fence_bend-f79a6a7d3e811b3f77b8cd9162d5f325.glb new file mode 100644 index 0000000..d57892a Binary files /dev/null and b/.godot/imported/fence_bend-f79a6a7d3e811b3f77b8cd9162d5f325.glb differ diff --git a/.godot/imported/fence_bend.fbx-f79a6a7d3e811b3f77b8cd9162d5f325.md5 b/.godot/imported/fence_bend.fbx-f79a6a7d3e811b3f77b8cd9162d5f325.md5 new file mode 100644 index 0000000..a3a4cf7 --- /dev/null +++ b/.godot/imported/fence_bend.fbx-f79a6a7d3e811b3f77b8cd9162d5f325.md5 @@ -0,0 +1,2 @@ +source_md5="bf7e4ae494c75663c250054362c255d4" +dest_md5="ee49444314ba533012c3bdeeca09f4b7" diff --git a/.godot/imported/fence_bend.fbx-f79a6a7d3e811b3f77b8cd9162d5f325.scn b/.godot/imported/fence_bend.fbx-f79a6a7d3e811b3f77b8cd9162d5f325.scn new file mode 100644 index 0000000..ec7f84f Binary files /dev/null and b/.godot/imported/fence_bend.fbx-f79a6a7d3e811b3f77b8cd9162d5f325.scn differ diff --git a/.godot/imported/fence_bendCenter-a3811ded6e3994fb38ab19bb85f5fb52.glb b/.godot/imported/fence_bendCenter-a3811ded6e3994fb38ab19bb85f5fb52.glb new file mode 100644 index 0000000..d943b63 Binary files /dev/null and b/.godot/imported/fence_bendCenter-a3811ded6e3994fb38ab19bb85f5fb52.glb differ diff --git a/.godot/imported/fence_bendCenter.fbx-a3811ded6e3994fb38ab19bb85f5fb52.md5 b/.godot/imported/fence_bendCenter.fbx-a3811ded6e3994fb38ab19bb85f5fb52.md5 new file mode 100644 index 0000000..ef5d3ae --- /dev/null +++ b/.godot/imported/fence_bendCenter.fbx-a3811ded6e3994fb38ab19bb85f5fb52.md5 @@ -0,0 +1,2 @@ +source_md5="a2d03ea2ef4fb03c3af70a87201be6a7" +dest_md5="0833f18adcca6a4dfb04b33f7781c119" diff --git a/.godot/imported/fence_bendCenter.fbx-a3811ded6e3994fb38ab19bb85f5fb52.scn b/.godot/imported/fence_bendCenter.fbx-a3811ded6e3994fb38ab19bb85f5fb52.scn new file mode 100644 index 0000000..657845f Binary files /dev/null and b/.godot/imported/fence_bendCenter.fbx-a3811ded6e3994fb38ab19bb85f5fb52.scn differ diff --git a/.godot/imported/fence_corner-6b1b6450ce85e81b8aaf52bdab305f5b.glb b/.godot/imported/fence_corner-6b1b6450ce85e81b8aaf52bdab305f5b.glb new file mode 100644 index 0000000..b6e1dd7 Binary files /dev/null and b/.godot/imported/fence_corner-6b1b6450ce85e81b8aaf52bdab305f5b.glb differ diff --git a/.godot/imported/fence_corner.fbx-6b1b6450ce85e81b8aaf52bdab305f5b.md5 b/.godot/imported/fence_corner.fbx-6b1b6450ce85e81b8aaf52bdab305f5b.md5 new file mode 100644 index 0000000..7186959 --- /dev/null +++ b/.godot/imported/fence_corner.fbx-6b1b6450ce85e81b8aaf52bdab305f5b.md5 @@ -0,0 +1,2 @@ +source_md5="52f082884eb97246b8ce1230ade28505" +dest_md5="151eaf12ae1e6ed2fa65556a37aea509" diff --git a/.godot/imported/fence_corner.fbx-6b1b6450ce85e81b8aaf52bdab305f5b.scn b/.godot/imported/fence_corner.fbx-6b1b6450ce85e81b8aaf52bdab305f5b.scn new file mode 100644 index 0000000..9138b7c Binary files /dev/null and b/.godot/imported/fence_corner.fbx-6b1b6450ce85e81b8aaf52bdab305f5b.scn differ diff --git a/.godot/imported/fence_gate-76cb45b2c8652f77bcaabce35a57b5df.glb b/.godot/imported/fence_gate-76cb45b2c8652f77bcaabce35a57b5df.glb new file mode 100644 index 0000000..cc67dae Binary files /dev/null and b/.godot/imported/fence_gate-76cb45b2c8652f77bcaabce35a57b5df.glb differ diff --git a/.godot/imported/fence_gate.fbx-76cb45b2c8652f77bcaabce35a57b5df.md5 b/.godot/imported/fence_gate.fbx-76cb45b2c8652f77bcaabce35a57b5df.md5 new file mode 100644 index 0000000..8816b78 --- /dev/null +++ b/.godot/imported/fence_gate.fbx-76cb45b2c8652f77bcaabce35a57b5df.md5 @@ -0,0 +1,2 @@ +source_md5="044f84dbd92271e43e9b353a753d516f" +dest_md5="1427634e8cb89f25a04e7000df1fc189" diff --git a/.godot/imported/fence_gate.fbx-76cb45b2c8652f77bcaabce35a57b5df.scn b/.godot/imported/fence_gate.fbx-76cb45b2c8652f77bcaabce35a57b5df.scn new file mode 100644 index 0000000..3add641 Binary files /dev/null and b/.godot/imported/fence_gate.fbx-76cb45b2c8652f77bcaabce35a57b5df.scn differ diff --git a/.godot/imported/fence_planks-5a91dd41965873efc89fc6f65baa2e5f.glb b/.godot/imported/fence_planks-5a91dd41965873efc89fc6f65baa2e5f.glb new file mode 100644 index 0000000..dcd697b Binary files /dev/null and b/.godot/imported/fence_planks-5a91dd41965873efc89fc6f65baa2e5f.glb differ diff --git a/.godot/imported/fence_planks.fbx-5a91dd41965873efc89fc6f65baa2e5f.md5 b/.godot/imported/fence_planks.fbx-5a91dd41965873efc89fc6f65baa2e5f.md5 new file mode 100644 index 0000000..c29a460 --- /dev/null +++ b/.godot/imported/fence_planks.fbx-5a91dd41965873efc89fc6f65baa2e5f.md5 @@ -0,0 +1,2 @@ +source_md5="9e95a6237da3954e81bd664636cf18a2" +dest_md5="737b40be53152f72db6f15e31cfe19b8" diff --git a/.godot/imported/fence_planks.fbx-5a91dd41965873efc89fc6f65baa2e5f.scn b/.godot/imported/fence_planks.fbx-5a91dd41965873efc89fc6f65baa2e5f.scn new file mode 100644 index 0000000..d2857a5 Binary files /dev/null and b/.godot/imported/fence_planks.fbx-5a91dd41965873efc89fc6f65baa2e5f.scn differ diff --git a/.godot/imported/fence_planksDouble-76e0eacb27c32d5722df5b0cfe860a0e.glb b/.godot/imported/fence_planksDouble-76e0eacb27c32d5722df5b0cfe860a0e.glb new file mode 100644 index 0000000..5a96dfa Binary files /dev/null and b/.godot/imported/fence_planksDouble-76e0eacb27c32d5722df5b0cfe860a0e.glb differ diff --git a/.godot/imported/fence_planksDouble.fbx-76e0eacb27c32d5722df5b0cfe860a0e.md5 b/.godot/imported/fence_planksDouble.fbx-76e0eacb27c32d5722df5b0cfe860a0e.md5 new file mode 100644 index 0000000..2e07b47 --- /dev/null +++ b/.godot/imported/fence_planksDouble.fbx-76e0eacb27c32d5722df5b0cfe860a0e.md5 @@ -0,0 +1,2 @@ +source_md5="077497c3a1d0c63696e8202ba03eeaea" +dest_md5="74d791ef758f2fc1eb27a9c7bb312c0f" diff --git a/.godot/imported/fence_planksDouble.fbx-76e0eacb27c32d5722df5b0cfe860a0e.scn b/.godot/imported/fence_planksDouble.fbx-76e0eacb27c32d5722df5b0cfe860a0e.scn new file mode 100644 index 0000000..b900047 Binary files /dev/null and b/.godot/imported/fence_planksDouble.fbx-76e0eacb27c32d5722df5b0cfe860a0e.scn differ diff --git a/.godot/imported/fence_simple-d3b27217d94a181a9e6a433d10f04a5d.glb b/.godot/imported/fence_simple-d3b27217d94a181a9e6a433d10f04a5d.glb new file mode 100644 index 0000000..c818d06 Binary files /dev/null and b/.godot/imported/fence_simple-d3b27217d94a181a9e6a433d10f04a5d.glb differ diff --git a/.godot/imported/fence_simple.fbx-d3b27217d94a181a9e6a433d10f04a5d.md5 b/.godot/imported/fence_simple.fbx-d3b27217d94a181a9e6a433d10f04a5d.md5 new file mode 100644 index 0000000..eb8003b --- /dev/null +++ b/.godot/imported/fence_simple.fbx-d3b27217d94a181a9e6a433d10f04a5d.md5 @@ -0,0 +1,2 @@ +source_md5="f8c0a6ccab341a1bf94282ef05db83d4" +dest_md5="10dacf674401d1c32ba5ae138b08c08f" diff --git a/.godot/imported/fence_simple.fbx-d3b27217d94a181a9e6a433d10f04a5d.scn b/.godot/imported/fence_simple.fbx-d3b27217d94a181a9e6a433d10f04a5d.scn new file mode 100644 index 0000000..dfe7baa Binary files /dev/null and b/.godot/imported/fence_simple.fbx-d3b27217d94a181a9e6a433d10f04a5d.scn differ diff --git a/.godot/imported/fence_simpleCenter-9d460ba967c6039e86e935ddccf8965b.glb b/.godot/imported/fence_simpleCenter-9d460ba967c6039e86e935ddccf8965b.glb new file mode 100644 index 0000000..72633e2 Binary files /dev/null and b/.godot/imported/fence_simpleCenter-9d460ba967c6039e86e935ddccf8965b.glb differ diff --git a/.godot/imported/fence_simpleCenter.fbx-9d460ba967c6039e86e935ddccf8965b.md5 b/.godot/imported/fence_simpleCenter.fbx-9d460ba967c6039e86e935ddccf8965b.md5 new file mode 100644 index 0000000..0af68bb --- /dev/null +++ b/.godot/imported/fence_simpleCenter.fbx-9d460ba967c6039e86e935ddccf8965b.md5 @@ -0,0 +1,2 @@ +source_md5="f1530540327001f31265d20479d88dc5" +dest_md5="a780661155c5cf4e644b58b96cd8182d" diff --git a/.godot/imported/fence_simpleCenter.fbx-9d460ba967c6039e86e935ddccf8965b.scn b/.godot/imported/fence_simpleCenter.fbx-9d460ba967c6039e86e935ddccf8965b.scn new file mode 100644 index 0000000..ee49b31 Binary files /dev/null and b/.godot/imported/fence_simpleCenter.fbx-9d460ba967c6039e86e935ddccf8965b.scn differ diff --git a/.godot/imported/fence_simpleDiagonal-50f736ddcfb90c21e3ef353f98d55be0.glb b/.godot/imported/fence_simpleDiagonal-50f736ddcfb90c21e3ef353f98d55be0.glb new file mode 100644 index 0000000..2a32faf Binary files /dev/null and b/.godot/imported/fence_simpleDiagonal-50f736ddcfb90c21e3ef353f98d55be0.glb differ diff --git a/.godot/imported/fence_simpleDiagonal.fbx-50f736ddcfb90c21e3ef353f98d55be0.md5 b/.godot/imported/fence_simpleDiagonal.fbx-50f736ddcfb90c21e3ef353f98d55be0.md5 new file mode 100644 index 0000000..70c59e4 --- /dev/null +++ b/.godot/imported/fence_simpleDiagonal.fbx-50f736ddcfb90c21e3ef353f98d55be0.md5 @@ -0,0 +1,2 @@ +source_md5="815e520fa2cbddd5dd5e9e703176653c" +dest_md5="85f52e3542a45b91c2b437d97c7d0287" diff --git a/.godot/imported/fence_simpleDiagonal.fbx-50f736ddcfb90c21e3ef353f98d55be0.scn b/.godot/imported/fence_simpleDiagonal.fbx-50f736ddcfb90c21e3ef353f98d55be0.scn new file mode 100644 index 0000000..b72e90a Binary files /dev/null and b/.godot/imported/fence_simpleDiagonal.fbx-50f736ddcfb90c21e3ef353f98d55be0.scn differ diff --git a/.godot/imported/fence_simpleDiagonalCenter-e74f02b3b23a676ba4a7adae77836ee2.glb b/.godot/imported/fence_simpleDiagonalCenter-e74f02b3b23a676ba4a7adae77836ee2.glb new file mode 100644 index 0000000..8523ada Binary files /dev/null and b/.godot/imported/fence_simpleDiagonalCenter-e74f02b3b23a676ba4a7adae77836ee2.glb differ diff --git a/.godot/imported/fence_simpleDiagonalCenter.fbx-e74f02b3b23a676ba4a7adae77836ee2.md5 b/.godot/imported/fence_simpleDiagonalCenter.fbx-e74f02b3b23a676ba4a7adae77836ee2.md5 new file mode 100644 index 0000000..e044412 --- /dev/null +++ b/.godot/imported/fence_simpleDiagonalCenter.fbx-e74f02b3b23a676ba4a7adae77836ee2.md5 @@ -0,0 +1,2 @@ +source_md5="beae8edc9c0f7a7876638414a6cccd35" +dest_md5="f684666c4ff0734470e334d948a28da3" diff --git a/.godot/imported/fence_simpleDiagonalCenter.fbx-e74f02b3b23a676ba4a7adae77836ee2.scn b/.godot/imported/fence_simpleDiagonalCenter.fbx-e74f02b3b23a676ba4a7adae77836ee2.scn new file mode 100644 index 0000000..b3169c1 Binary files /dev/null and b/.godot/imported/fence_simpleDiagonalCenter.fbx-e74f02b3b23a676ba4a7adae77836ee2.scn differ diff --git a/.godot/imported/fence_simpleHigh-bd134e39fb34de3325ed271e39edcc47.glb b/.godot/imported/fence_simpleHigh-bd134e39fb34de3325ed271e39edcc47.glb new file mode 100644 index 0000000..88e3857 Binary files /dev/null and b/.godot/imported/fence_simpleHigh-bd134e39fb34de3325ed271e39edcc47.glb differ diff --git a/.godot/imported/fence_simpleHigh.fbx-bd134e39fb34de3325ed271e39edcc47.md5 b/.godot/imported/fence_simpleHigh.fbx-bd134e39fb34de3325ed271e39edcc47.md5 new file mode 100644 index 0000000..2ce640f --- /dev/null +++ b/.godot/imported/fence_simpleHigh.fbx-bd134e39fb34de3325ed271e39edcc47.md5 @@ -0,0 +1,2 @@ +source_md5="cc6ef6ed700d1e839265525b1f87f76f" +dest_md5="f0319abd0c92a836f7e2483b7fcaf2ed" diff --git a/.godot/imported/fence_simpleHigh.fbx-bd134e39fb34de3325ed271e39edcc47.scn b/.godot/imported/fence_simpleHigh.fbx-bd134e39fb34de3325ed271e39edcc47.scn new file mode 100644 index 0000000..6daab94 Binary files /dev/null and b/.godot/imported/fence_simpleHigh.fbx-bd134e39fb34de3325ed271e39edcc47.scn differ diff --git a/.godot/imported/fence_simpleLow-cf36fcac80301916684abbd5eab39d95.glb b/.godot/imported/fence_simpleLow-cf36fcac80301916684abbd5eab39d95.glb new file mode 100644 index 0000000..fdfbb31 Binary files /dev/null and b/.godot/imported/fence_simpleLow-cf36fcac80301916684abbd5eab39d95.glb differ diff --git a/.godot/imported/fence_simpleLow.fbx-cf36fcac80301916684abbd5eab39d95.md5 b/.godot/imported/fence_simpleLow.fbx-cf36fcac80301916684abbd5eab39d95.md5 new file mode 100644 index 0000000..a493296 --- /dev/null +++ b/.godot/imported/fence_simpleLow.fbx-cf36fcac80301916684abbd5eab39d95.md5 @@ -0,0 +1,2 @@ +source_md5="578df7b40b0c0d75ffdf9bc1ff16e3e5" +dest_md5="861db0165fa77c68d60283cf3c89060f" diff --git a/.godot/imported/fence_simpleLow.fbx-cf36fcac80301916684abbd5eab39d95.scn b/.godot/imported/fence_simpleLow.fbx-cf36fcac80301916684abbd5eab39d95.scn new file mode 100644 index 0000000..7280419 Binary files /dev/null and b/.godot/imported/fence_simpleLow.fbx-cf36fcac80301916684abbd5eab39d95.scn differ diff --git a/.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b.glb b/.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b.glb new file mode 100644 index 0000000..45355c1 Binary files /dev/null and b/.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b.glb differ diff --git a/.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png-445d4224acc6edd7f9d8c76ba3d97068.md5 b/.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png-445d4224acc6edd7f9d8c76ba3d97068.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png-445d4224acc6edd7f9d8c76ba3d97068.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png-445d4224acc6edd7f9d8c76ba3d97068.s3tc.ctex b/.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png-445d4224acc6edd7f9d8c76ba3d97068.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png-445d4224acc6edd7f9d8c76ba3d97068.s3tc.ctex differ diff --git a/.godot/imported/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png-e44d05f9d138613f37d5361a72b60f5c.md5 b/.godot/imported/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png-e44d05f9d138613f37d5361a72b60f5c.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png-e44d05f9d138613f37d5361a72b60f5c.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png-e44d05f9d138613f37d5361a72b60f5c.s3tc.ctex b/.godot/imported/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png-e44d05f9d138613f37d5361a72b60f5c.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png-e44d05f9d138613f37d5361a72b60f5c.s3tc.ctex differ diff --git a/.godot/imported/firetruck.fbx-2f443765a3f65797b79732d435703b7b.md5 b/.godot/imported/firetruck.fbx-2f443765a3f65797b79732d435703b7b.md5 new file mode 100644 index 0000000..17b5220 --- /dev/null +++ b/.godot/imported/firetruck.fbx-2f443765a3f65797b79732d435703b7b.md5 @@ -0,0 +1,2 @@ +source_md5="930fab472ce8d25d9794caf85b94bd68" +dest_md5="a83a406d5e55b42293e5c847bb1c8815" diff --git a/.godot/imported/firetruck.fbx-2f443765a3f65797b79732d435703b7b.scn b/.godot/imported/firetruck.fbx-2f443765a3f65797b79732d435703b7b.scn new file mode 100644 index 0000000..405e86c Binary files /dev/null and b/.godot/imported/firetruck.fbx-2f443765a3f65797b79732d435703b7b.scn differ diff --git a/.godot/imported/flower_purpleA-af3c2b172bc1d933610152d35aa98850.glb b/.godot/imported/flower_purpleA-af3c2b172bc1d933610152d35aa98850.glb new file mode 100644 index 0000000..224f5a8 Binary files /dev/null and b/.godot/imported/flower_purpleA-af3c2b172bc1d933610152d35aa98850.glb differ diff --git a/.godot/imported/flower_purpleA.fbx-af3c2b172bc1d933610152d35aa98850.md5 b/.godot/imported/flower_purpleA.fbx-af3c2b172bc1d933610152d35aa98850.md5 new file mode 100644 index 0000000..b66a3f7 --- /dev/null +++ b/.godot/imported/flower_purpleA.fbx-af3c2b172bc1d933610152d35aa98850.md5 @@ -0,0 +1,2 @@ +source_md5="da45e2eb51a55545344a96ad8f192aee" +dest_md5="eed26322ae5d57ab3dc0014112521da2" diff --git a/.godot/imported/flower_purpleA.fbx-af3c2b172bc1d933610152d35aa98850.scn b/.godot/imported/flower_purpleA.fbx-af3c2b172bc1d933610152d35aa98850.scn new file mode 100644 index 0000000..9b8ee38 Binary files /dev/null and b/.godot/imported/flower_purpleA.fbx-af3c2b172bc1d933610152d35aa98850.scn differ diff --git a/.godot/imported/flower_purpleB-effd572a817adba86e2e870d94bd41d0.glb b/.godot/imported/flower_purpleB-effd572a817adba86e2e870d94bd41d0.glb new file mode 100644 index 0000000..f50ac4d Binary files /dev/null and b/.godot/imported/flower_purpleB-effd572a817adba86e2e870d94bd41d0.glb differ diff --git a/.godot/imported/flower_purpleB.fbx-effd572a817adba86e2e870d94bd41d0.md5 b/.godot/imported/flower_purpleB.fbx-effd572a817adba86e2e870d94bd41d0.md5 new file mode 100644 index 0000000..1591224 --- /dev/null +++ b/.godot/imported/flower_purpleB.fbx-effd572a817adba86e2e870d94bd41d0.md5 @@ -0,0 +1,2 @@ +source_md5="7e0397d7b47145cda8a5d09cd052ced3" +dest_md5="a81fa41be126008ba582648400070d50" diff --git a/.godot/imported/flower_purpleB.fbx-effd572a817adba86e2e870d94bd41d0.scn b/.godot/imported/flower_purpleB.fbx-effd572a817adba86e2e870d94bd41d0.scn new file mode 100644 index 0000000..41cb816 Binary files /dev/null and b/.godot/imported/flower_purpleB.fbx-effd572a817adba86e2e870d94bd41d0.scn differ diff --git a/.godot/imported/flower_purpleC-588e83b2e65443d7466301c4c96f1f7e.glb b/.godot/imported/flower_purpleC-588e83b2e65443d7466301c4c96f1f7e.glb new file mode 100644 index 0000000..4d86711 Binary files /dev/null and b/.godot/imported/flower_purpleC-588e83b2e65443d7466301c4c96f1f7e.glb differ diff --git a/.godot/imported/flower_purpleC.fbx-588e83b2e65443d7466301c4c96f1f7e.md5 b/.godot/imported/flower_purpleC.fbx-588e83b2e65443d7466301c4c96f1f7e.md5 new file mode 100644 index 0000000..6acf32c --- /dev/null +++ b/.godot/imported/flower_purpleC.fbx-588e83b2e65443d7466301c4c96f1f7e.md5 @@ -0,0 +1,2 @@ +source_md5="61b3d2af12c981f41f75dac0af5c9d7e" +dest_md5="4d4c05bf09f1fd3b3201777931394b91" diff --git a/.godot/imported/flower_purpleC.fbx-588e83b2e65443d7466301c4c96f1f7e.scn b/.godot/imported/flower_purpleC.fbx-588e83b2e65443d7466301c4c96f1f7e.scn new file mode 100644 index 0000000..6c91eca Binary files /dev/null and b/.godot/imported/flower_purpleC.fbx-588e83b2e65443d7466301c4c96f1f7e.scn differ diff --git a/.godot/imported/flower_redA-1a50bcb3b5220df18ecd4fc8ad6259db.glb b/.godot/imported/flower_redA-1a50bcb3b5220df18ecd4fc8ad6259db.glb new file mode 100644 index 0000000..169a820 Binary files /dev/null and b/.godot/imported/flower_redA-1a50bcb3b5220df18ecd4fc8ad6259db.glb differ diff --git a/.godot/imported/flower_redA.fbx-1a50bcb3b5220df18ecd4fc8ad6259db.md5 b/.godot/imported/flower_redA.fbx-1a50bcb3b5220df18ecd4fc8ad6259db.md5 new file mode 100644 index 0000000..4a64349 --- /dev/null +++ b/.godot/imported/flower_redA.fbx-1a50bcb3b5220df18ecd4fc8ad6259db.md5 @@ -0,0 +1,2 @@ +source_md5="e3dae1308d2564736b7c7f677de8cb00" +dest_md5="1a9fb7842e6a8a78f130a2d1cfec59a4" diff --git a/.godot/imported/flower_redA.fbx-1a50bcb3b5220df18ecd4fc8ad6259db.scn b/.godot/imported/flower_redA.fbx-1a50bcb3b5220df18ecd4fc8ad6259db.scn new file mode 100644 index 0000000..273eb7c Binary files /dev/null and b/.godot/imported/flower_redA.fbx-1a50bcb3b5220df18ecd4fc8ad6259db.scn differ diff --git a/.godot/imported/flower_redB-e7ff9c5cc5241df04a05ee56cd4cd52e.glb b/.godot/imported/flower_redB-e7ff9c5cc5241df04a05ee56cd4cd52e.glb new file mode 100644 index 0000000..dad0f03 Binary files /dev/null and b/.godot/imported/flower_redB-e7ff9c5cc5241df04a05ee56cd4cd52e.glb differ diff --git a/.godot/imported/flower_redB.fbx-e7ff9c5cc5241df04a05ee56cd4cd52e.md5 b/.godot/imported/flower_redB.fbx-e7ff9c5cc5241df04a05ee56cd4cd52e.md5 new file mode 100644 index 0000000..633d8ca --- /dev/null +++ b/.godot/imported/flower_redB.fbx-e7ff9c5cc5241df04a05ee56cd4cd52e.md5 @@ -0,0 +1,2 @@ +source_md5="e4071ed41074f82cc1976a40131f6b04" +dest_md5="cb2d02e9aea19c2b077d9b9b4e14d200" diff --git a/.godot/imported/flower_redB.fbx-e7ff9c5cc5241df04a05ee56cd4cd52e.scn b/.godot/imported/flower_redB.fbx-e7ff9c5cc5241df04a05ee56cd4cd52e.scn new file mode 100644 index 0000000..d255363 Binary files /dev/null and b/.godot/imported/flower_redB.fbx-e7ff9c5cc5241df04a05ee56cd4cd52e.scn differ diff --git a/.godot/imported/flower_redC-2be4936d8d71d8536c1f72a391e39fad.glb b/.godot/imported/flower_redC-2be4936d8d71d8536c1f72a391e39fad.glb new file mode 100644 index 0000000..0ffffc1 Binary files /dev/null and b/.godot/imported/flower_redC-2be4936d8d71d8536c1f72a391e39fad.glb differ diff --git a/.godot/imported/flower_redC.fbx-2be4936d8d71d8536c1f72a391e39fad.md5 b/.godot/imported/flower_redC.fbx-2be4936d8d71d8536c1f72a391e39fad.md5 new file mode 100644 index 0000000..8d3f055 --- /dev/null +++ b/.godot/imported/flower_redC.fbx-2be4936d8d71d8536c1f72a391e39fad.md5 @@ -0,0 +1,2 @@ +source_md5="12260b75b1ff9c28abd83261e40a57e2" +dest_md5="7f45c3fd020edbdf283acd68ac01f8bc" diff --git a/.godot/imported/flower_redC.fbx-2be4936d8d71d8536c1f72a391e39fad.scn b/.godot/imported/flower_redC.fbx-2be4936d8d71d8536c1f72a391e39fad.scn new file mode 100644 index 0000000..5fee820 Binary files /dev/null and b/.godot/imported/flower_redC.fbx-2be4936d8d71d8536c1f72a391e39fad.scn differ diff --git a/.godot/imported/flower_yellowA-898051c53b90604018ef5453f4c6fe13.glb b/.godot/imported/flower_yellowA-898051c53b90604018ef5453f4c6fe13.glb new file mode 100644 index 0000000..81b9673 Binary files /dev/null and b/.godot/imported/flower_yellowA-898051c53b90604018ef5453f4c6fe13.glb differ diff --git a/.godot/imported/flower_yellowA.fbx-898051c53b90604018ef5453f4c6fe13.md5 b/.godot/imported/flower_yellowA.fbx-898051c53b90604018ef5453f4c6fe13.md5 new file mode 100644 index 0000000..ed2ab70 --- /dev/null +++ b/.godot/imported/flower_yellowA.fbx-898051c53b90604018ef5453f4c6fe13.md5 @@ -0,0 +1,2 @@ +source_md5="9d164fede8f6ee9c9cfbbe0d915eaa99" +dest_md5="9c859c6eeb976376c11703a111df9d68" diff --git a/.godot/imported/flower_yellowA.fbx-898051c53b90604018ef5453f4c6fe13.scn b/.godot/imported/flower_yellowA.fbx-898051c53b90604018ef5453f4c6fe13.scn new file mode 100644 index 0000000..038b8e5 Binary files /dev/null and b/.godot/imported/flower_yellowA.fbx-898051c53b90604018ef5453f4c6fe13.scn differ diff --git a/.godot/imported/flower_yellowB-56b941c6d984fbd61a553b2471ab97c2.glb b/.godot/imported/flower_yellowB-56b941c6d984fbd61a553b2471ab97c2.glb new file mode 100644 index 0000000..2c0c44c Binary files /dev/null and b/.godot/imported/flower_yellowB-56b941c6d984fbd61a553b2471ab97c2.glb differ diff --git a/.godot/imported/flower_yellowB.fbx-56b941c6d984fbd61a553b2471ab97c2.md5 b/.godot/imported/flower_yellowB.fbx-56b941c6d984fbd61a553b2471ab97c2.md5 new file mode 100644 index 0000000..2a336f7 --- /dev/null +++ b/.godot/imported/flower_yellowB.fbx-56b941c6d984fbd61a553b2471ab97c2.md5 @@ -0,0 +1,2 @@ +source_md5="281a372ad405647dbe43dc6802a69cd2" +dest_md5="9b6b6d5ed6d4f00f06b9492a952b1195" diff --git a/.godot/imported/flower_yellowB.fbx-56b941c6d984fbd61a553b2471ab97c2.scn b/.godot/imported/flower_yellowB.fbx-56b941c6d984fbd61a553b2471ab97c2.scn new file mode 100644 index 0000000..302ebee Binary files /dev/null and b/.godot/imported/flower_yellowB.fbx-56b941c6d984fbd61a553b2471ab97c2.scn differ diff --git a/.godot/imported/flower_yellowC-691b36aa29b326b708e758e4596f75b4.glb b/.godot/imported/flower_yellowC-691b36aa29b326b708e758e4596f75b4.glb new file mode 100644 index 0000000..22b5807 Binary files /dev/null and b/.godot/imported/flower_yellowC-691b36aa29b326b708e758e4596f75b4.glb differ diff --git a/.godot/imported/flower_yellowC.fbx-691b36aa29b326b708e758e4596f75b4.md5 b/.godot/imported/flower_yellowC.fbx-691b36aa29b326b708e758e4596f75b4.md5 new file mode 100644 index 0000000..8bb80c1 --- /dev/null +++ b/.godot/imported/flower_yellowC.fbx-691b36aa29b326b708e758e4596f75b4.md5 @@ -0,0 +1,2 @@ +source_md5="4bce55b9571988b920e853170224de2e" +dest_md5="c42bb0156a0019bee4b492b02977e422" diff --git a/.godot/imported/flower_yellowC.fbx-691b36aa29b326b708e758e4596f75b4.scn b/.godot/imported/flower_yellowC.fbx-691b36aa29b326b708e758e4596f75b4.scn new file mode 100644 index 0000000..fa29645 Binary files /dev/null and b/.godot/imported/flower_yellowC.fbx-691b36aa29b326b708e758e4596f75b4.scn differ diff --git a/.godot/imported/fountainCenter-06e28e45318147149f8cc97d18310466.glb b/.godot/imported/fountainCenter-06e28e45318147149f8cc97d18310466.glb new file mode 100644 index 0000000..5420201 Binary files /dev/null and b/.godot/imported/fountainCenter-06e28e45318147149f8cc97d18310466.glb differ diff --git a/.godot/imported/fountainCenter.fbx-06e28e45318147149f8cc97d18310466.md5 b/.godot/imported/fountainCenter.fbx-06e28e45318147149f8cc97d18310466.md5 new file mode 100644 index 0000000..4815673 --- /dev/null +++ b/.godot/imported/fountainCenter.fbx-06e28e45318147149f8cc97d18310466.md5 @@ -0,0 +1,2 @@ +source_md5="d08e24fd18d751abea7581dc074cb510" +dest_md5="b708d59723fa4a8f11cf605585e8139e" diff --git a/.godot/imported/fountainCenter.fbx-06e28e45318147149f8cc97d18310466.scn b/.godot/imported/fountainCenter.fbx-06e28e45318147149f8cc97d18310466.scn new file mode 100644 index 0000000..9c72ba2 Binary files /dev/null and b/.godot/imported/fountainCenter.fbx-06e28e45318147149f8cc97d18310466.scn differ diff --git a/.godot/imported/fountainCorner-3b297b1365bcd91c57a644d83c72d8b0.glb b/.godot/imported/fountainCorner-3b297b1365bcd91c57a644d83c72d8b0.glb new file mode 100644 index 0000000..6041b76 Binary files /dev/null and b/.godot/imported/fountainCorner-3b297b1365bcd91c57a644d83c72d8b0.glb differ diff --git a/.godot/imported/fountainCorner.fbx-3b297b1365bcd91c57a644d83c72d8b0.md5 b/.godot/imported/fountainCorner.fbx-3b297b1365bcd91c57a644d83c72d8b0.md5 new file mode 100644 index 0000000..c67d06e --- /dev/null +++ b/.godot/imported/fountainCorner.fbx-3b297b1365bcd91c57a644d83c72d8b0.md5 @@ -0,0 +1,2 @@ +source_md5="a075f5aee333fca1e587a4e6c06c877e" +dest_md5="61f07aed5ba9842fb5ac204c29bc66ce" diff --git a/.godot/imported/fountainCorner.fbx-3b297b1365bcd91c57a644d83c72d8b0.scn b/.godot/imported/fountainCorner.fbx-3b297b1365bcd91c57a644d83c72d8b0.scn new file mode 100644 index 0000000..67898cf Binary files /dev/null and b/.godot/imported/fountainCorner.fbx-3b297b1365bcd91c57a644d83c72d8b0.scn differ diff --git a/.godot/imported/fountainCornerInner-4f1aa65a6961d8bf6fd490c6baabf97f.glb b/.godot/imported/fountainCornerInner-4f1aa65a6961d8bf6fd490c6baabf97f.glb new file mode 100644 index 0000000..1ffc919 Binary files /dev/null and b/.godot/imported/fountainCornerInner-4f1aa65a6961d8bf6fd490c6baabf97f.glb differ diff --git a/.godot/imported/fountainCornerInner.fbx-4f1aa65a6961d8bf6fd490c6baabf97f.md5 b/.godot/imported/fountainCornerInner.fbx-4f1aa65a6961d8bf6fd490c6baabf97f.md5 new file mode 100644 index 0000000..d63197d --- /dev/null +++ b/.godot/imported/fountainCornerInner.fbx-4f1aa65a6961d8bf6fd490c6baabf97f.md5 @@ -0,0 +1,2 @@ +source_md5="5b1dfd973cea49b2197979edb5b4a9d7" +dest_md5="45b6fe44dd17f3a59ff333f5bf4076cf" diff --git a/.godot/imported/fountainCornerInner.fbx-4f1aa65a6961d8bf6fd490c6baabf97f.scn b/.godot/imported/fountainCornerInner.fbx-4f1aa65a6961d8bf6fd490c6baabf97f.scn new file mode 100644 index 0000000..d50704c Binary files /dev/null and b/.godot/imported/fountainCornerInner.fbx-4f1aa65a6961d8bf6fd490c6baabf97f.scn differ diff --git a/.godot/imported/fountainCornerInnerSquare-00af1cabf405a62bc0a2670c136bad31.glb b/.godot/imported/fountainCornerInnerSquare-00af1cabf405a62bc0a2670c136bad31.glb new file mode 100644 index 0000000..836271e Binary files /dev/null and b/.godot/imported/fountainCornerInnerSquare-00af1cabf405a62bc0a2670c136bad31.glb differ diff --git a/.godot/imported/fountainCornerInnerSquare.fbx-00af1cabf405a62bc0a2670c136bad31.md5 b/.godot/imported/fountainCornerInnerSquare.fbx-00af1cabf405a62bc0a2670c136bad31.md5 new file mode 100644 index 0000000..c3f9b8d --- /dev/null +++ b/.godot/imported/fountainCornerInnerSquare.fbx-00af1cabf405a62bc0a2670c136bad31.md5 @@ -0,0 +1,2 @@ +source_md5="ddae42a88f022fcb23f1d8d9f41f1c7f" +dest_md5="1940450e1b1388ac2854a9e8ab011039" diff --git a/.godot/imported/fountainCornerInnerSquare.fbx-00af1cabf405a62bc0a2670c136bad31.scn b/.godot/imported/fountainCornerInnerSquare.fbx-00af1cabf405a62bc0a2670c136bad31.scn new file mode 100644 index 0000000..4e58e81 Binary files /dev/null and b/.godot/imported/fountainCornerInnerSquare.fbx-00af1cabf405a62bc0a2670c136bad31.scn differ diff --git a/.godot/imported/fountainCurved-45e2399e0c7b05856f3575c6402fb50d.glb b/.godot/imported/fountainCurved-45e2399e0c7b05856f3575c6402fb50d.glb new file mode 100644 index 0000000..d1b775a Binary files /dev/null and b/.godot/imported/fountainCurved-45e2399e0c7b05856f3575c6402fb50d.glb differ diff --git a/.godot/imported/fountainCurved.fbx-45e2399e0c7b05856f3575c6402fb50d.md5 b/.godot/imported/fountainCurved.fbx-45e2399e0c7b05856f3575c6402fb50d.md5 new file mode 100644 index 0000000..890f377 --- /dev/null +++ b/.godot/imported/fountainCurved.fbx-45e2399e0c7b05856f3575c6402fb50d.md5 @@ -0,0 +1,2 @@ +source_md5="a9dc2527e1ea9e2afac089b7ee4d71f1" +dest_md5="6d64d2ccb93739b4e3191178aa32874e" diff --git a/.godot/imported/fountainCurved.fbx-45e2399e0c7b05856f3575c6402fb50d.scn b/.godot/imported/fountainCurved.fbx-45e2399e0c7b05856f3575c6402fb50d.scn new file mode 100644 index 0000000..f699b15 Binary files /dev/null and b/.godot/imported/fountainCurved.fbx-45e2399e0c7b05856f3575c6402fb50d.scn differ diff --git a/.godot/imported/fountainEdge-2d0e5fe8ff67eec8d7e71a727c63a6cb.glb b/.godot/imported/fountainEdge-2d0e5fe8ff67eec8d7e71a727c63a6cb.glb new file mode 100644 index 0000000..aa29549 Binary files /dev/null and b/.godot/imported/fountainEdge-2d0e5fe8ff67eec8d7e71a727c63a6cb.glb differ diff --git a/.godot/imported/fountainEdge.fbx-2d0e5fe8ff67eec8d7e71a727c63a6cb.md5 b/.godot/imported/fountainEdge.fbx-2d0e5fe8ff67eec8d7e71a727c63a6cb.md5 new file mode 100644 index 0000000..a0e01d2 --- /dev/null +++ b/.godot/imported/fountainEdge.fbx-2d0e5fe8ff67eec8d7e71a727c63a6cb.md5 @@ -0,0 +1,2 @@ +source_md5="4d50cc0a448cd3e865f46e843964ecd1" +dest_md5="681c5b13a6a03533318fbb8a8b630b20" diff --git a/.godot/imported/fountainEdge.fbx-2d0e5fe8ff67eec8d7e71a727c63a6cb.scn b/.godot/imported/fountainEdge.fbx-2d0e5fe8ff67eec8d7e71a727c63a6cb.scn new file mode 100644 index 0000000..d653f5d Binary files /dev/null and b/.godot/imported/fountainEdge.fbx-2d0e5fe8ff67eec8d7e71a727c63a6cb.scn differ diff --git a/.godot/imported/fountainRound-e5ecc9c4d844b4cf9dc2f18050ae7808.glb b/.godot/imported/fountainRound-e5ecc9c4d844b4cf9dc2f18050ae7808.glb new file mode 100644 index 0000000..ab6c6eb Binary files /dev/null and b/.godot/imported/fountainRound-e5ecc9c4d844b4cf9dc2f18050ae7808.glb differ diff --git a/.godot/imported/fountainRound.fbx-e5ecc9c4d844b4cf9dc2f18050ae7808.md5 b/.godot/imported/fountainRound.fbx-e5ecc9c4d844b4cf9dc2f18050ae7808.md5 new file mode 100644 index 0000000..7a19b8c --- /dev/null +++ b/.godot/imported/fountainRound.fbx-e5ecc9c4d844b4cf9dc2f18050ae7808.md5 @@ -0,0 +1,2 @@ +source_md5="43c076f742f7d9c0f16d6c1a5f8dca6c" +dest_md5="c40988480cf130e59b8f493656990269" diff --git a/.godot/imported/fountainRound.fbx-e5ecc9c4d844b4cf9dc2f18050ae7808.scn b/.godot/imported/fountainRound.fbx-e5ecc9c4d844b4cf9dc2f18050ae7808.scn new file mode 100644 index 0000000..edea9cb Binary files /dev/null and b/.godot/imported/fountainRound.fbx-e5ecc9c4d844b4cf9dc2f18050ae7808.scn differ diff --git a/.godot/imported/fountainRoundDetail-776dc765bd49c2e3885b8a9314dc3e65.glb b/.godot/imported/fountainRoundDetail-776dc765bd49c2e3885b8a9314dc3e65.glb new file mode 100644 index 0000000..34bd952 Binary files /dev/null and b/.godot/imported/fountainRoundDetail-776dc765bd49c2e3885b8a9314dc3e65.glb differ diff --git a/.godot/imported/fountainRoundDetail.fbx-776dc765bd49c2e3885b8a9314dc3e65.md5 b/.godot/imported/fountainRoundDetail.fbx-776dc765bd49c2e3885b8a9314dc3e65.md5 new file mode 100644 index 0000000..0770baa --- /dev/null +++ b/.godot/imported/fountainRoundDetail.fbx-776dc765bd49c2e3885b8a9314dc3e65.md5 @@ -0,0 +1,2 @@ +source_md5="6e73e8dd3477f2238f92b09e9a6db306" +dest_md5="4e1872da2ae500bec40bc0c57f4d93c3" diff --git a/.godot/imported/fountainRoundDetail.fbx-776dc765bd49c2e3885b8a9314dc3e65.scn b/.godot/imported/fountainRoundDetail.fbx-776dc765bd49c2e3885b8a9314dc3e65.scn new file mode 100644 index 0000000..1269161 Binary files /dev/null and b/.godot/imported/fountainRoundDetail.fbx-776dc765bd49c2e3885b8a9314dc3e65.scn differ diff --git a/.godot/imported/fountainSquare-6405b867a9363a87a21c00f93ee1c817.glb b/.godot/imported/fountainSquare-6405b867a9363a87a21c00f93ee1c817.glb new file mode 100644 index 0000000..5365df1 Binary files /dev/null and b/.godot/imported/fountainSquare-6405b867a9363a87a21c00f93ee1c817.glb differ diff --git a/.godot/imported/fountainSquare.fbx-6405b867a9363a87a21c00f93ee1c817.md5 b/.godot/imported/fountainSquare.fbx-6405b867a9363a87a21c00f93ee1c817.md5 new file mode 100644 index 0000000..382640b --- /dev/null +++ b/.godot/imported/fountainSquare.fbx-6405b867a9363a87a21c00f93ee1c817.md5 @@ -0,0 +1,2 @@ +source_md5="4eb3f5ac8608854d298514fab4839a3c" +dest_md5="6da09d181b92d11adf9ffe51b6aef10e" diff --git a/.godot/imported/fountainSquare.fbx-6405b867a9363a87a21c00f93ee1c817.scn b/.godot/imported/fountainSquare.fbx-6405b867a9363a87a21c00f93ee1c817.scn new file mode 100644 index 0000000..83cd9bf Binary files /dev/null and b/.godot/imported/fountainSquare.fbx-6405b867a9363a87a21c00f93ee1c817.scn differ diff --git a/.godot/imported/fountainSquareDetail-f381ac2528ed91009dd162c67eec6135.glb b/.godot/imported/fountainSquareDetail-f381ac2528ed91009dd162c67eec6135.glb new file mode 100644 index 0000000..017cd37 Binary files /dev/null and b/.godot/imported/fountainSquareDetail-f381ac2528ed91009dd162c67eec6135.glb differ diff --git a/.godot/imported/fountainSquareDetail.fbx-f381ac2528ed91009dd162c67eec6135.md5 b/.godot/imported/fountainSquareDetail.fbx-f381ac2528ed91009dd162c67eec6135.md5 new file mode 100644 index 0000000..667f4af --- /dev/null +++ b/.godot/imported/fountainSquareDetail.fbx-f381ac2528ed91009dd162c67eec6135.md5 @@ -0,0 +1,2 @@ +source_md5="9a4be30e7af978729eca645f21366a91" +dest_md5="50a091ef4fdd8660658499065921fef1" diff --git a/.godot/imported/fountainSquareDetail.fbx-f381ac2528ed91009dd162c67eec6135.scn b/.godot/imported/fountainSquareDetail.fbx-f381ac2528ed91009dd162c67eec6135.scn new file mode 100644 index 0000000..a5f8661 Binary files /dev/null and b/.godot/imported/fountainSquareDetail.fbx-f381ac2528ed91009dd162c67eec6135.scn differ diff --git a/.godot/imported/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png-50cc58d9124d2c57064fcc7c2e140786.md5 b/.godot/imported/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png-50cc58d9124d2c57064fcc7c2e140786.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png-50cc58d9124d2c57064fcc7c2e140786.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png-50cc58d9124d2c57064fcc7c2e140786.s3tc.ctex b/.godot/imported/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png-50cc58d9124d2c57064fcc7c2e140786.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png-50cc58d9124d2c57064fcc7c2e140786.s3tc.ctex differ diff --git a/.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c.glb b/.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c.glb new file mode 100644 index 0000000..cf212b9 Binary files /dev/null and b/.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c.glb differ diff --git a/.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png-f099778d7db63a2c396b3740cad77508.md5 b/.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png-f099778d7db63a2c396b3740cad77508.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png-f099778d7db63a2c396b3740cad77508.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png-f099778d7db63a2c396b3740cad77508.s3tc.ctex b/.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png-f099778d7db63a2c396b3740cad77508.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png-f099778d7db63a2c396b3740cad77508.s3tc.ctex differ diff --git a/.godot/imported/garbage-truck.fbx-5c6e3ace96366a1650a184ae9bc4278c.md5 b/.godot/imported/garbage-truck.fbx-5c6e3ace96366a1650a184ae9bc4278c.md5 new file mode 100644 index 0000000..f74d57f --- /dev/null +++ b/.godot/imported/garbage-truck.fbx-5c6e3ace96366a1650a184ae9bc4278c.md5 @@ -0,0 +1,2 @@ +source_md5="4808aac8337fe7aaec28ca0d63ecbf28" +dest_md5="e65e7acfb439fae5c9d6bb9e6f097f39" diff --git a/.godot/imported/garbage-truck.fbx-5c6e3ace96366a1650a184ae9bc4278c.scn b/.godot/imported/garbage-truck.fbx-5c6e3ace96366a1650a184ae9bc4278c.scn new file mode 100644 index 0000000..bd279a0 Binary files /dev/null and b/.godot/imported/garbage-truck.fbx-5c6e3ace96366a1650a184ae9bc4278c.scn differ diff --git a/.godot/imported/grass-eff0f3a67d5ec5c40395d6d0a5acc107.glb b/.godot/imported/grass-eff0f3a67d5ec5c40395d6d0a5acc107.glb new file mode 100644 index 0000000..9a52794 Binary files /dev/null and b/.godot/imported/grass-eff0f3a67d5ec5c40395d6d0a5acc107.glb differ diff --git a/.godot/imported/grass.fbx-eff0f3a67d5ec5c40395d6d0a5acc107.md5 b/.godot/imported/grass.fbx-eff0f3a67d5ec5c40395d6d0a5acc107.md5 new file mode 100644 index 0000000..19d798d --- /dev/null +++ b/.godot/imported/grass.fbx-eff0f3a67d5ec5c40395d6d0a5acc107.md5 @@ -0,0 +1,2 @@ +source_md5="e4aafee6166ff7dc578b1ef3b52b74e3" +dest_md5="e7e6177f55f33793be1f22f80f8ffc47" diff --git a/.godot/imported/grass.fbx-eff0f3a67d5ec5c40395d6d0a5acc107.scn b/.godot/imported/grass.fbx-eff0f3a67d5ec5c40395d6d0a5acc107.scn new file mode 100644 index 0000000..ee32364 Binary files /dev/null and b/.godot/imported/grass.fbx-eff0f3a67d5ec5c40395d6d0a5acc107.scn differ diff --git a/.godot/imported/grass_large-e32512cba5e9b7e0a8a4dd72810e3048.glb b/.godot/imported/grass_large-e32512cba5e9b7e0a8a4dd72810e3048.glb new file mode 100644 index 0000000..7af5003 Binary files /dev/null and b/.godot/imported/grass_large-e32512cba5e9b7e0a8a4dd72810e3048.glb differ diff --git a/.godot/imported/grass_large.fbx-e32512cba5e9b7e0a8a4dd72810e3048.md5 b/.godot/imported/grass_large.fbx-e32512cba5e9b7e0a8a4dd72810e3048.md5 new file mode 100644 index 0000000..7362ded --- /dev/null +++ b/.godot/imported/grass_large.fbx-e32512cba5e9b7e0a8a4dd72810e3048.md5 @@ -0,0 +1,2 @@ +source_md5="c6ea6b18a19aa9de97a815abfcc992db" +dest_md5="d6ec0fab34cfeee31f007d494c77b54f" diff --git a/.godot/imported/grass_large.fbx-e32512cba5e9b7e0a8a4dd72810e3048.scn b/.godot/imported/grass_large.fbx-e32512cba5e9b7e0a8a4dd72810e3048.scn new file mode 100644 index 0000000..90b5dd9 Binary files /dev/null and b/.godot/imported/grass_large.fbx-e32512cba5e9b7e0a8a4dd72810e3048.scn differ diff --git a/.godot/imported/grass_leafs-0d1d8ff1be0208e8d9a6d41e1bb23f4a.glb b/.godot/imported/grass_leafs-0d1d8ff1be0208e8d9a6d41e1bb23f4a.glb new file mode 100644 index 0000000..961936e Binary files /dev/null and b/.godot/imported/grass_leafs-0d1d8ff1be0208e8d9a6d41e1bb23f4a.glb differ diff --git a/.godot/imported/grass_leafs.fbx-0d1d8ff1be0208e8d9a6d41e1bb23f4a.md5 b/.godot/imported/grass_leafs.fbx-0d1d8ff1be0208e8d9a6d41e1bb23f4a.md5 new file mode 100644 index 0000000..509cc46 --- /dev/null +++ b/.godot/imported/grass_leafs.fbx-0d1d8ff1be0208e8d9a6d41e1bb23f4a.md5 @@ -0,0 +1,2 @@ +source_md5="1756a32abd827513663fdb13f0741497" +dest_md5="0487e06e07a821e3e575cf7c9e48a522" diff --git a/.godot/imported/grass_leafs.fbx-0d1d8ff1be0208e8d9a6d41e1bb23f4a.scn b/.godot/imported/grass_leafs.fbx-0d1d8ff1be0208e8d9a6d41e1bb23f4a.scn new file mode 100644 index 0000000..f21b17d Binary files /dev/null and b/.godot/imported/grass_leafs.fbx-0d1d8ff1be0208e8d9a6d41e1bb23f4a.scn differ diff --git a/.godot/imported/grass_leafsLarge-cd9d79a5164fc45cca43906248525b7f.glb b/.godot/imported/grass_leafsLarge-cd9d79a5164fc45cca43906248525b7f.glb new file mode 100644 index 0000000..f11f73a Binary files /dev/null and b/.godot/imported/grass_leafsLarge-cd9d79a5164fc45cca43906248525b7f.glb differ diff --git a/.godot/imported/grass_leafsLarge.fbx-cd9d79a5164fc45cca43906248525b7f.md5 b/.godot/imported/grass_leafsLarge.fbx-cd9d79a5164fc45cca43906248525b7f.md5 new file mode 100644 index 0000000..9239dd8 --- /dev/null +++ b/.godot/imported/grass_leafsLarge.fbx-cd9d79a5164fc45cca43906248525b7f.md5 @@ -0,0 +1,2 @@ +source_md5="a5fafc1e9c3cbcbbce7ac0a86c501af2" +dest_md5="da7286ebaed2e2ceaf162eb175380e62" diff --git a/.godot/imported/grass_leafsLarge.fbx-cd9d79a5164fc45cca43906248525b7f.scn b/.godot/imported/grass_leafsLarge.fbx-cd9d79a5164fc45cca43906248525b7f.scn new file mode 100644 index 0000000..90bb4bc Binary files /dev/null and b/.godot/imported/grass_leafsLarge.fbx-cd9d79a5164fc45cca43906248525b7f.scn differ diff --git a/.godot/imported/ground_grass-e369269b8f8d633f70fdebb0d97bd46d.glb b/.godot/imported/ground_grass-e369269b8f8d633f70fdebb0d97bd46d.glb new file mode 100644 index 0000000..44216b4 Binary files /dev/null and b/.godot/imported/ground_grass-e369269b8f8d633f70fdebb0d97bd46d.glb differ diff --git a/.godot/imported/ground_grass.fbx-e369269b8f8d633f70fdebb0d97bd46d.md5 b/.godot/imported/ground_grass.fbx-e369269b8f8d633f70fdebb0d97bd46d.md5 new file mode 100644 index 0000000..160f2df --- /dev/null +++ b/.godot/imported/ground_grass.fbx-e369269b8f8d633f70fdebb0d97bd46d.md5 @@ -0,0 +1,2 @@ +source_md5="89b5d92163e3f6fbfb2ebe1be5d866f0" +dest_md5="34c72d94dbf340095e1d6c963f4a9888" diff --git a/.godot/imported/ground_grass.fbx-e369269b8f8d633f70fdebb0d97bd46d.scn b/.godot/imported/ground_grass.fbx-e369269b8f8d633f70fdebb0d97bd46d.scn new file mode 100644 index 0000000..e81b387 Binary files /dev/null and b/.godot/imported/ground_grass.fbx-e369269b8f8d633f70fdebb0d97bd46d.scn differ diff --git a/.godot/imported/ground_pathBend-ec6843139a4eb2c0e7ef6997011e69aa.glb b/.godot/imported/ground_pathBend-ec6843139a4eb2c0e7ef6997011e69aa.glb new file mode 100644 index 0000000..fe16fbd Binary files /dev/null and b/.godot/imported/ground_pathBend-ec6843139a4eb2c0e7ef6997011e69aa.glb differ diff --git a/.godot/imported/ground_pathBend.fbx-ec6843139a4eb2c0e7ef6997011e69aa.md5 b/.godot/imported/ground_pathBend.fbx-ec6843139a4eb2c0e7ef6997011e69aa.md5 new file mode 100644 index 0000000..38a8277 --- /dev/null +++ b/.godot/imported/ground_pathBend.fbx-ec6843139a4eb2c0e7ef6997011e69aa.md5 @@ -0,0 +1,2 @@ +source_md5="0d7de3a71afccf5393bed3e2849aff05" +dest_md5="e97d8fc090b0ee5430fcf27f3fd1e79d" diff --git a/.godot/imported/ground_pathBend.fbx-ec6843139a4eb2c0e7ef6997011e69aa.scn b/.godot/imported/ground_pathBend.fbx-ec6843139a4eb2c0e7ef6997011e69aa.scn new file mode 100644 index 0000000..fe87489 Binary files /dev/null and b/.godot/imported/ground_pathBend.fbx-ec6843139a4eb2c0e7ef6997011e69aa.scn differ diff --git a/.godot/imported/ground_pathBendBank-91ad3c112d5c9200c435eb8c15e50326.glb b/.godot/imported/ground_pathBendBank-91ad3c112d5c9200c435eb8c15e50326.glb new file mode 100644 index 0000000..965c730 Binary files /dev/null and b/.godot/imported/ground_pathBendBank-91ad3c112d5c9200c435eb8c15e50326.glb differ diff --git a/.godot/imported/ground_pathBendBank.fbx-91ad3c112d5c9200c435eb8c15e50326.md5 b/.godot/imported/ground_pathBendBank.fbx-91ad3c112d5c9200c435eb8c15e50326.md5 new file mode 100644 index 0000000..334602b --- /dev/null +++ b/.godot/imported/ground_pathBendBank.fbx-91ad3c112d5c9200c435eb8c15e50326.md5 @@ -0,0 +1,2 @@ +source_md5="c0be3356fa49c4925bb7621f58e414d1" +dest_md5="15ed46f8630f5f3d3cfa3de0d14fd872" diff --git a/.godot/imported/ground_pathBendBank.fbx-91ad3c112d5c9200c435eb8c15e50326.scn b/.godot/imported/ground_pathBendBank.fbx-91ad3c112d5c9200c435eb8c15e50326.scn new file mode 100644 index 0000000..f922924 Binary files /dev/null and b/.godot/imported/ground_pathBendBank.fbx-91ad3c112d5c9200c435eb8c15e50326.scn differ diff --git a/.godot/imported/ground_pathCorner-8c29f01e65c778c6a7712278372f83b9.glb b/.godot/imported/ground_pathCorner-8c29f01e65c778c6a7712278372f83b9.glb new file mode 100644 index 0000000..9f22419 Binary files /dev/null and b/.godot/imported/ground_pathCorner-8c29f01e65c778c6a7712278372f83b9.glb differ diff --git a/.godot/imported/ground_pathCorner.fbx-8c29f01e65c778c6a7712278372f83b9.md5 b/.godot/imported/ground_pathCorner.fbx-8c29f01e65c778c6a7712278372f83b9.md5 new file mode 100644 index 0000000..eef1f99 --- /dev/null +++ b/.godot/imported/ground_pathCorner.fbx-8c29f01e65c778c6a7712278372f83b9.md5 @@ -0,0 +1,2 @@ +source_md5="9aeb3f2f86aa6fa29b9143edf7846bb5" +dest_md5="dfbcbd087cdf89bd3c07c417bd0939c5" diff --git a/.godot/imported/ground_pathCorner.fbx-8c29f01e65c778c6a7712278372f83b9.scn b/.godot/imported/ground_pathCorner.fbx-8c29f01e65c778c6a7712278372f83b9.scn new file mode 100644 index 0000000..2d11be4 Binary files /dev/null and b/.godot/imported/ground_pathCorner.fbx-8c29f01e65c778c6a7712278372f83b9.scn differ diff --git a/.godot/imported/ground_pathCornerSmall-75dea240609556ac95d7f8d376420da2.glb b/.godot/imported/ground_pathCornerSmall-75dea240609556ac95d7f8d376420da2.glb new file mode 100644 index 0000000..65a667f Binary files /dev/null and b/.godot/imported/ground_pathCornerSmall-75dea240609556ac95d7f8d376420da2.glb differ diff --git a/.godot/imported/ground_pathCornerSmall.fbx-75dea240609556ac95d7f8d376420da2.md5 b/.godot/imported/ground_pathCornerSmall.fbx-75dea240609556ac95d7f8d376420da2.md5 new file mode 100644 index 0000000..cb6b3d0 --- /dev/null +++ b/.godot/imported/ground_pathCornerSmall.fbx-75dea240609556ac95d7f8d376420da2.md5 @@ -0,0 +1,2 @@ +source_md5="70ffaba7aead8066a24eb7b1ea625ac8" +dest_md5="a498f9870fd1221817f4792e26758c29" diff --git a/.godot/imported/ground_pathCornerSmall.fbx-75dea240609556ac95d7f8d376420da2.scn b/.godot/imported/ground_pathCornerSmall.fbx-75dea240609556ac95d7f8d376420da2.scn new file mode 100644 index 0000000..7dfd4fb Binary files /dev/null and b/.godot/imported/ground_pathCornerSmall.fbx-75dea240609556ac95d7f8d376420da2.scn differ diff --git a/.godot/imported/ground_pathCross-583c96cdcb40ff4c08b841dca51b945a.glb b/.godot/imported/ground_pathCross-583c96cdcb40ff4c08b841dca51b945a.glb new file mode 100644 index 0000000..c495960 Binary files /dev/null and b/.godot/imported/ground_pathCross-583c96cdcb40ff4c08b841dca51b945a.glb differ diff --git a/.godot/imported/ground_pathCross.fbx-583c96cdcb40ff4c08b841dca51b945a.md5 b/.godot/imported/ground_pathCross.fbx-583c96cdcb40ff4c08b841dca51b945a.md5 new file mode 100644 index 0000000..f942dde --- /dev/null +++ b/.godot/imported/ground_pathCross.fbx-583c96cdcb40ff4c08b841dca51b945a.md5 @@ -0,0 +1,2 @@ +source_md5="07a3a1ba99b7bf84ff85279f6d018fe7" +dest_md5="e27c4021d993eb6d01a09c7723bbcbf9" diff --git a/.godot/imported/ground_pathCross.fbx-583c96cdcb40ff4c08b841dca51b945a.scn b/.godot/imported/ground_pathCross.fbx-583c96cdcb40ff4c08b841dca51b945a.scn new file mode 100644 index 0000000..3a8ba0d Binary files /dev/null and b/.godot/imported/ground_pathCross.fbx-583c96cdcb40ff4c08b841dca51b945a.scn differ diff --git a/.godot/imported/ground_pathEnd-317ec0baeecac1153a0c8f1b5e7f98c0.glb b/.godot/imported/ground_pathEnd-317ec0baeecac1153a0c8f1b5e7f98c0.glb new file mode 100644 index 0000000..4ac4eec Binary files /dev/null and b/.godot/imported/ground_pathEnd-317ec0baeecac1153a0c8f1b5e7f98c0.glb differ diff --git a/.godot/imported/ground_pathEnd.fbx-317ec0baeecac1153a0c8f1b5e7f98c0.md5 b/.godot/imported/ground_pathEnd.fbx-317ec0baeecac1153a0c8f1b5e7f98c0.md5 new file mode 100644 index 0000000..6866064 --- /dev/null +++ b/.godot/imported/ground_pathEnd.fbx-317ec0baeecac1153a0c8f1b5e7f98c0.md5 @@ -0,0 +1,2 @@ +source_md5="227778fd58f9552420c4e3c916bbe8bd" +dest_md5="96621b88ba67402fb2ca02c7b571b2d2" diff --git a/.godot/imported/ground_pathEnd.fbx-317ec0baeecac1153a0c8f1b5e7f98c0.scn b/.godot/imported/ground_pathEnd.fbx-317ec0baeecac1153a0c8f1b5e7f98c0.scn new file mode 100644 index 0000000..1af6612 Binary files /dev/null and b/.godot/imported/ground_pathEnd.fbx-317ec0baeecac1153a0c8f1b5e7f98c0.scn differ diff --git a/.godot/imported/ground_pathEndClosed-128944c3f3c8948f5a7d40e3b2c9761d.glb b/.godot/imported/ground_pathEndClosed-128944c3f3c8948f5a7d40e3b2c9761d.glb new file mode 100644 index 0000000..1bb83da Binary files /dev/null and b/.godot/imported/ground_pathEndClosed-128944c3f3c8948f5a7d40e3b2c9761d.glb differ diff --git a/.godot/imported/ground_pathEndClosed.fbx-128944c3f3c8948f5a7d40e3b2c9761d.md5 b/.godot/imported/ground_pathEndClosed.fbx-128944c3f3c8948f5a7d40e3b2c9761d.md5 new file mode 100644 index 0000000..45c9542 --- /dev/null +++ b/.godot/imported/ground_pathEndClosed.fbx-128944c3f3c8948f5a7d40e3b2c9761d.md5 @@ -0,0 +1,2 @@ +source_md5="b5075c7f208a5867d0c3f15254110357" +dest_md5="ac826453a281672c1469adb4691f1134" diff --git a/.godot/imported/ground_pathEndClosed.fbx-128944c3f3c8948f5a7d40e3b2c9761d.scn b/.godot/imported/ground_pathEndClosed.fbx-128944c3f3c8948f5a7d40e3b2c9761d.scn new file mode 100644 index 0000000..aa5c7f0 Binary files /dev/null and b/.godot/imported/ground_pathEndClosed.fbx-128944c3f3c8948f5a7d40e3b2c9761d.scn differ diff --git a/.godot/imported/ground_pathOpen-4ed9659b36b52018317363be002bcf94.glb b/.godot/imported/ground_pathOpen-4ed9659b36b52018317363be002bcf94.glb new file mode 100644 index 0000000..72e1039 Binary files /dev/null and b/.godot/imported/ground_pathOpen-4ed9659b36b52018317363be002bcf94.glb differ diff --git a/.godot/imported/ground_pathOpen.fbx-4ed9659b36b52018317363be002bcf94.md5 b/.godot/imported/ground_pathOpen.fbx-4ed9659b36b52018317363be002bcf94.md5 new file mode 100644 index 0000000..0b69293 --- /dev/null +++ b/.godot/imported/ground_pathOpen.fbx-4ed9659b36b52018317363be002bcf94.md5 @@ -0,0 +1,2 @@ +source_md5="4c26da6a9cea03999d38dd3b94ededc9" +dest_md5="ba8858df54812ef47614f43f1a97957c" diff --git a/.godot/imported/ground_pathOpen.fbx-4ed9659b36b52018317363be002bcf94.scn b/.godot/imported/ground_pathOpen.fbx-4ed9659b36b52018317363be002bcf94.scn new file mode 100644 index 0000000..89c7e49 Binary files /dev/null and b/.godot/imported/ground_pathOpen.fbx-4ed9659b36b52018317363be002bcf94.scn differ diff --git a/.godot/imported/ground_pathRocks-df0366e481073ac2ba49de69c7261b01.glb b/.godot/imported/ground_pathRocks-df0366e481073ac2ba49de69c7261b01.glb new file mode 100644 index 0000000..19da853 Binary files /dev/null and b/.godot/imported/ground_pathRocks-df0366e481073ac2ba49de69c7261b01.glb differ diff --git a/.godot/imported/ground_pathRocks.fbx-df0366e481073ac2ba49de69c7261b01.md5 b/.godot/imported/ground_pathRocks.fbx-df0366e481073ac2ba49de69c7261b01.md5 new file mode 100644 index 0000000..b0dc159 --- /dev/null +++ b/.godot/imported/ground_pathRocks.fbx-df0366e481073ac2ba49de69c7261b01.md5 @@ -0,0 +1,2 @@ +source_md5="264bdbd7a961e8596a037737088db4d9" +dest_md5="89dc5f805c4a3337b5b87b7fb5e360d4" diff --git a/.godot/imported/ground_pathRocks.fbx-df0366e481073ac2ba49de69c7261b01.scn b/.godot/imported/ground_pathRocks.fbx-df0366e481073ac2ba49de69c7261b01.scn new file mode 100644 index 0000000..d4fae09 Binary files /dev/null and b/.godot/imported/ground_pathRocks.fbx-df0366e481073ac2ba49de69c7261b01.scn differ diff --git a/.godot/imported/ground_pathSide-f46f79582381c20052d8b735d6f6b6ef.glb b/.godot/imported/ground_pathSide-f46f79582381c20052d8b735d6f6b6ef.glb new file mode 100644 index 0000000..9debd96 Binary files /dev/null and b/.godot/imported/ground_pathSide-f46f79582381c20052d8b735d6f6b6ef.glb differ diff --git a/.godot/imported/ground_pathSide.fbx-f46f79582381c20052d8b735d6f6b6ef.md5 b/.godot/imported/ground_pathSide.fbx-f46f79582381c20052d8b735d6f6b6ef.md5 new file mode 100644 index 0000000..42c40f5 --- /dev/null +++ b/.godot/imported/ground_pathSide.fbx-f46f79582381c20052d8b735d6f6b6ef.md5 @@ -0,0 +1,2 @@ +source_md5="1578ef9f4da872979aaafda0d6ba2b07" +dest_md5="82c0e9f085193e6bc1045228e9360068" diff --git a/.godot/imported/ground_pathSide.fbx-f46f79582381c20052d8b735d6f6b6ef.scn b/.godot/imported/ground_pathSide.fbx-f46f79582381c20052d8b735d6f6b6ef.scn new file mode 100644 index 0000000..9a5a2ee Binary files /dev/null and b/.godot/imported/ground_pathSide.fbx-f46f79582381c20052d8b735d6f6b6ef.scn differ diff --git a/.godot/imported/ground_pathSideOpen-c4b2726abbb5c8e28c3b473e4fd8f9ff.glb b/.godot/imported/ground_pathSideOpen-c4b2726abbb5c8e28c3b473e4fd8f9ff.glb new file mode 100644 index 0000000..0b1d5a8 Binary files /dev/null and b/.godot/imported/ground_pathSideOpen-c4b2726abbb5c8e28c3b473e4fd8f9ff.glb differ diff --git a/.godot/imported/ground_pathSideOpen.fbx-c4b2726abbb5c8e28c3b473e4fd8f9ff.md5 b/.godot/imported/ground_pathSideOpen.fbx-c4b2726abbb5c8e28c3b473e4fd8f9ff.md5 new file mode 100644 index 0000000..6fb06d2 --- /dev/null +++ b/.godot/imported/ground_pathSideOpen.fbx-c4b2726abbb5c8e28c3b473e4fd8f9ff.md5 @@ -0,0 +1,2 @@ +source_md5="508380e1a1c0dd8a63d100dbdc5b53f7" +dest_md5="2a7ece811469939403b62e33bf0fe0d9" diff --git a/.godot/imported/ground_pathSideOpen.fbx-c4b2726abbb5c8e28c3b473e4fd8f9ff.scn b/.godot/imported/ground_pathSideOpen.fbx-c4b2726abbb5c8e28c3b473e4fd8f9ff.scn new file mode 100644 index 0000000..df15c9c Binary files /dev/null and b/.godot/imported/ground_pathSideOpen.fbx-c4b2726abbb5c8e28c3b473e4fd8f9ff.scn differ diff --git a/.godot/imported/ground_pathSplit-9f503d092dc458dd728e0594e501821a.glb b/.godot/imported/ground_pathSplit-9f503d092dc458dd728e0594e501821a.glb new file mode 100644 index 0000000..ce2fc6a Binary files /dev/null and b/.godot/imported/ground_pathSplit-9f503d092dc458dd728e0594e501821a.glb differ diff --git a/.godot/imported/ground_pathSplit.fbx-9f503d092dc458dd728e0594e501821a.md5 b/.godot/imported/ground_pathSplit.fbx-9f503d092dc458dd728e0594e501821a.md5 new file mode 100644 index 0000000..b87cb9a --- /dev/null +++ b/.godot/imported/ground_pathSplit.fbx-9f503d092dc458dd728e0594e501821a.md5 @@ -0,0 +1,2 @@ +source_md5="c0f636bfeae18f6ca85ca4538448e7ca" +dest_md5="e54b2bcebbb8997a9a2ca7d28b0cf913" diff --git a/.godot/imported/ground_pathSplit.fbx-9f503d092dc458dd728e0594e501821a.scn b/.godot/imported/ground_pathSplit.fbx-9f503d092dc458dd728e0594e501821a.scn new file mode 100644 index 0000000..d05cfb5 Binary files /dev/null and b/.godot/imported/ground_pathSplit.fbx-9f503d092dc458dd728e0594e501821a.scn differ diff --git a/.godot/imported/ground_pathStraight-74ec802f328504872cab3f932f59aac7.glb b/.godot/imported/ground_pathStraight-74ec802f328504872cab3f932f59aac7.glb new file mode 100644 index 0000000..44066c9 Binary files /dev/null and b/.godot/imported/ground_pathStraight-74ec802f328504872cab3f932f59aac7.glb differ diff --git a/.godot/imported/ground_pathStraight.fbx-74ec802f328504872cab3f932f59aac7.md5 b/.godot/imported/ground_pathStraight.fbx-74ec802f328504872cab3f932f59aac7.md5 new file mode 100644 index 0000000..1d59595 --- /dev/null +++ b/.godot/imported/ground_pathStraight.fbx-74ec802f328504872cab3f932f59aac7.md5 @@ -0,0 +1,2 @@ +source_md5="85d9a5b567b5c534db08447bd99151a2" +dest_md5="ce4c6e4b15a3092e36d527be4d8dcc82" diff --git a/.godot/imported/ground_pathStraight.fbx-74ec802f328504872cab3f932f59aac7.scn b/.godot/imported/ground_pathStraight.fbx-74ec802f328504872cab3f932f59aac7.scn new file mode 100644 index 0000000..accdd2c Binary files /dev/null and b/.godot/imported/ground_pathStraight.fbx-74ec802f328504872cab3f932f59aac7.scn differ diff --git a/.godot/imported/ground_pathTile-43cf0f7bc577a86cb64e8c096c0ced99.glb b/.godot/imported/ground_pathTile-43cf0f7bc577a86cb64e8c096c0ced99.glb new file mode 100644 index 0000000..d24aeb6 Binary files /dev/null and b/.godot/imported/ground_pathTile-43cf0f7bc577a86cb64e8c096c0ced99.glb differ diff --git a/.godot/imported/ground_pathTile.fbx-43cf0f7bc577a86cb64e8c096c0ced99.md5 b/.godot/imported/ground_pathTile.fbx-43cf0f7bc577a86cb64e8c096c0ced99.md5 new file mode 100644 index 0000000..81e2fa4 --- /dev/null +++ b/.godot/imported/ground_pathTile.fbx-43cf0f7bc577a86cb64e8c096c0ced99.md5 @@ -0,0 +1,2 @@ +source_md5="156a118e0d65d6bd329ac1af177d0de3" +dest_md5="52254997b6d77697d4737d6c99bbc2b0" diff --git a/.godot/imported/ground_pathTile.fbx-43cf0f7bc577a86cb64e8c096c0ced99.scn b/.godot/imported/ground_pathTile.fbx-43cf0f7bc577a86cb64e8c096c0ced99.scn new file mode 100644 index 0000000..aa7258d Binary files /dev/null and b/.godot/imported/ground_pathTile.fbx-43cf0f7bc577a86cb64e8c096c0ced99.scn differ diff --git a/.godot/imported/ground_riverBend-4d3fbdadcea4eda6bedea38a09c913cf.glb b/.godot/imported/ground_riverBend-4d3fbdadcea4eda6bedea38a09c913cf.glb new file mode 100644 index 0000000..ee7c14c Binary files /dev/null and b/.godot/imported/ground_riverBend-4d3fbdadcea4eda6bedea38a09c913cf.glb differ diff --git a/.godot/imported/ground_riverBend.fbx-4d3fbdadcea4eda6bedea38a09c913cf.md5 b/.godot/imported/ground_riverBend.fbx-4d3fbdadcea4eda6bedea38a09c913cf.md5 new file mode 100644 index 0000000..82a0af7 --- /dev/null +++ b/.godot/imported/ground_riverBend.fbx-4d3fbdadcea4eda6bedea38a09c913cf.md5 @@ -0,0 +1,2 @@ +source_md5="53caca9f277ec952d2184983e6d163f4" +dest_md5="84cdec0127cf6e09a7fc073cd7c4a33a" diff --git a/.godot/imported/ground_riverBend.fbx-4d3fbdadcea4eda6bedea38a09c913cf.scn b/.godot/imported/ground_riverBend.fbx-4d3fbdadcea4eda6bedea38a09c913cf.scn new file mode 100644 index 0000000..e56b2ce Binary files /dev/null and b/.godot/imported/ground_riverBend.fbx-4d3fbdadcea4eda6bedea38a09c913cf.scn differ diff --git a/.godot/imported/ground_riverBendBank-ee654a9bd20723a1a3a5c1ccc94784f5.glb b/.godot/imported/ground_riverBendBank-ee654a9bd20723a1a3a5c1ccc94784f5.glb new file mode 100644 index 0000000..ddaac2e Binary files /dev/null and b/.godot/imported/ground_riverBendBank-ee654a9bd20723a1a3a5c1ccc94784f5.glb differ diff --git a/.godot/imported/ground_riverBendBank.fbx-ee654a9bd20723a1a3a5c1ccc94784f5.md5 b/.godot/imported/ground_riverBendBank.fbx-ee654a9bd20723a1a3a5c1ccc94784f5.md5 new file mode 100644 index 0000000..69f7059 --- /dev/null +++ b/.godot/imported/ground_riverBendBank.fbx-ee654a9bd20723a1a3a5c1ccc94784f5.md5 @@ -0,0 +1,2 @@ +source_md5="d1ff1d8711627050c856c7e4ff5876e0" +dest_md5="53c0abe70c93157062ff5b533bf14005" diff --git a/.godot/imported/ground_riverBendBank.fbx-ee654a9bd20723a1a3a5c1ccc94784f5.scn b/.godot/imported/ground_riverBendBank.fbx-ee654a9bd20723a1a3a5c1ccc94784f5.scn new file mode 100644 index 0000000..8342711 Binary files /dev/null and b/.godot/imported/ground_riverBendBank.fbx-ee654a9bd20723a1a3a5c1ccc94784f5.scn differ diff --git a/.godot/imported/ground_riverCorner-cf5f2a4fe44da71155b1f2785f11598e.glb b/.godot/imported/ground_riverCorner-cf5f2a4fe44da71155b1f2785f11598e.glb new file mode 100644 index 0000000..1b5dcbf Binary files /dev/null and b/.godot/imported/ground_riverCorner-cf5f2a4fe44da71155b1f2785f11598e.glb differ diff --git a/.godot/imported/ground_riverCorner.fbx-cf5f2a4fe44da71155b1f2785f11598e.md5 b/.godot/imported/ground_riverCorner.fbx-cf5f2a4fe44da71155b1f2785f11598e.md5 new file mode 100644 index 0000000..b6f3998 --- /dev/null +++ b/.godot/imported/ground_riverCorner.fbx-cf5f2a4fe44da71155b1f2785f11598e.md5 @@ -0,0 +1,2 @@ +source_md5="bdc11836579f804498458125bc0bc0f1" +dest_md5="ba61a41f75622c4913b6d67d534713cd" diff --git a/.godot/imported/ground_riverCorner.fbx-cf5f2a4fe44da71155b1f2785f11598e.scn b/.godot/imported/ground_riverCorner.fbx-cf5f2a4fe44da71155b1f2785f11598e.scn new file mode 100644 index 0000000..6d5f008 Binary files /dev/null and b/.godot/imported/ground_riverCorner.fbx-cf5f2a4fe44da71155b1f2785f11598e.scn differ diff --git a/.godot/imported/ground_riverCornerSmall-cd32746f8008ffff1e869db87b73f5ff.glb b/.godot/imported/ground_riverCornerSmall-cd32746f8008ffff1e869db87b73f5ff.glb new file mode 100644 index 0000000..5d1b768 Binary files /dev/null and b/.godot/imported/ground_riverCornerSmall-cd32746f8008ffff1e869db87b73f5ff.glb differ diff --git a/.godot/imported/ground_riverCornerSmall.fbx-cd32746f8008ffff1e869db87b73f5ff.md5 b/.godot/imported/ground_riverCornerSmall.fbx-cd32746f8008ffff1e869db87b73f5ff.md5 new file mode 100644 index 0000000..63eb73d --- /dev/null +++ b/.godot/imported/ground_riverCornerSmall.fbx-cd32746f8008ffff1e869db87b73f5ff.md5 @@ -0,0 +1,2 @@ +source_md5="bb1f0caf6bdd7f6d0d73d3ae6244b213" +dest_md5="00ff61dce1f21c8ce27b21d962773230" diff --git a/.godot/imported/ground_riverCornerSmall.fbx-cd32746f8008ffff1e869db87b73f5ff.scn b/.godot/imported/ground_riverCornerSmall.fbx-cd32746f8008ffff1e869db87b73f5ff.scn new file mode 100644 index 0000000..6f41cca Binary files /dev/null and b/.godot/imported/ground_riverCornerSmall.fbx-cd32746f8008ffff1e869db87b73f5ff.scn differ diff --git a/.godot/imported/ground_riverCross-41eac995ebb6589941552568737fa14b.glb b/.godot/imported/ground_riverCross-41eac995ebb6589941552568737fa14b.glb new file mode 100644 index 0000000..4b250c6 Binary files /dev/null and b/.godot/imported/ground_riverCross-41eac995ebb6589941552568737fa14b.glb differ diff --git a/.godot/imported/ground_riverCross.fbx-41eac995ebb6589941552568737fa14b.md5 b/.godot/imported/ground_riverCross.fbx-41eac995ebb6589941552568737fa14b.md5 new file mode 100644 index 0000000..d2e8891 --- /dev/null +++ b/.godot/imported/ground_riverCross.fbx-41eac995ebb6589941552568737fa14b.md5 @@ -0,0 +1,2 @@ +source_md5="2bb88688399229ff38c47b8c1f5a3afc" +dest_md5="bdc35976358c2fac61bc14ddd1a4417f" diff --git a/.godot/imported/ground_riverCross.fbx-41eac995ebb6589941552568737fa14b.scn b/.godot/imported/ground_riverCross.fbx-41eac995ebb6589941552568737fa14b.scn new file mode 100644 index 0000000..ad8e810 Binary files /dev/null and b/.godot/imported/ground_riverCross.fbx-41eac995ebb6589941552568737fa14b.scn differ diff --git a/.godot/imported/ground_riverEnd-220a773b47a5a11f6da48820568c0d81.glb b/.godot/imported/ground_riverEnd-220a773b47a5a11f6da48820568c0d81.glb new file mode 100644 index 0000000..1f77539 Binary files /dev/null and b/.godot/imported/ground_riverEnd-220a773b47a5a11f6da48820568c0d81.glb differ diff --git a/.godot/imported/ground_riverEnd.fbx-220a773b47a5a11f6da48820568c0d81.md5 b/.godot/imported/ground_riverEnd.fbx-220a773b47a5a11f6da48820568c0d81.md5 new file mode 100644 index 0000000..478fe33 --- /dev/null +++ b/.godot/imported/ground_riverEnd.fbx-220a773b47a5a11f6da48820568c0d81.md5 @@ -0,0 +1,2 @@ +source_md5="4f0ebcabfdebaec8fe545f9e79961f44" +dest_md5="3df8730e06c209f0ddbc74a0ebd83fff" diff --git a/.godot/imported/ground_riverEnd.fbx-220a773b47a5a11f6da48820568c0d81.scn b/.godot/imported/ground_riverEnd.fbx-220a773b47a5a11f6da48820568c0d81.scn new file mode 100644 index 0000000..3c2f4f4 Binary files /dev/null and b/.godot/imported/ground_riverEnd.fbx-220a773b47a5a11f6da48820568c0d81.scn differ diff --git a/.godot/imported/ground_riverEndClosed-56e90b1abbe64c87f514b295893a98f7.glb b/.godot/imported/ground_riverEndClosed-56e90b1abbe64c87f514b295893a98f7.glb new file mode 100644 index 0000000..5174dc0 Binary files /dev/null and b/.godot/imported/ground_riverEndClosed-56e90b1abbe64c87f514b295893a98f7.glb differ diff --git a/.godot/imported/ground_riverEndClosed.fbx-56e90b1abbe64c87f514b295893a98f7.md5 b/.godot/imported/ground_riverEndClosed.fbx-56e90b1abbe64c87f514b295893a98f7.md5 new file mode 100644 index 0000000..4ec3f1b --- /dev/null +++ b/.godot/imported/ground_riverEndClosed.fbx-56e90b1abbe64c87f514b295893a98f7.md5 @@ -0,0 +1,2 @@ +source_md5="de65d7bd3268516bce0bd27b773066e9" +dest_md5="3c75bc932b459e9dc8efc65d911e4232" diff --git a/.godot/imported/ground_riverEndClosed.fbx-56e90b1abbe64c87f514b295893a98f7.scn b/.godot/imported/ground_riverEndClosed.fbx-56e90b1abbe64c87f514b295893a98f7.scn new file mode 100644 index 0000000..c39714a Binary files /dev/null and b/.godot/imported/ground_riverEndClosed.fbx-56e90b1abbe64c87f514b295893a98f7.scn differ diff --git a/.godot/imported/ground_riverOpen-293a1523dbb7ca0b8b2751092aa20bf3.glb b/.godot/imported/ground_riverOpen-293a1523dbb7ca0b8b2751092aa20bf3.glb new file mode 100644 index 0000000..e2e27e9 Binary files /dev/null and b/.godot/imported/ground_riverOpen-293a1523dbb7ca0b8b2751092aa20bf3.glb differ diff --git a/.godot/imported/ground_riverOpen.fbx-293a1523dbb7ca0b8b2751092aa20bf3.md5 b/.godot/imported/ground_riverOpen.fbx-293a1523dbb7ca0b8b2751092aa20bf3.md5 new file mode 100644 index 0000000..d8930d6 --- /dev/null +++ b/.godot/imported/ground_riverOpen.fbx-293a1523dbb7ca0b8b2751092aa20bf3.md5 @@ -0,0 +1,2 @@ +source_md5="f533adc41e09c218cceb9127929b12ac" +dest_md5="307ffbc32e03385dfa7020de464e0c9d" diff --git a/.godot/imported/ground_riverOpen.fbx-293a1523dbb7ca0b8b2751092aa20bf3.scn b/.godot/imported/ground_riverOpen.fbx-293a1523dbb7ca0b8b2751092aa20bf3.scn new file mode 100644 index 0000000..09b545d Binary files /dev/null and b/.godot/imported/ground_riverOpen.fbx-293a1523dbb7ca0b8b2751092aa20bf3.scn differ diff --git a/.godot/imported/ground_riverRocks-46ee604b1361610e50e66a26a43bc67d.glb b/.godot/imported/ground_riverRocks-46ee604b1361610e50e66a26a43bc67d.glb new file mode 100644 index 0000000..ececf81 Binary files /dev/null and b/.godot/imported/ground_riverRocks-46ee604b1361610e50e66a26a43bc67d.glb differ diff --git a/.godot/imported/ground_riverRocks.fbx-46ee604b1361610e50e66a26a43bc67d.md5 b/.godot/imported/ground_riverRocks.fbx-46ee604b1361610e50e66a26a43bc67d.md5 new file mode 100644 index 0000000..dd2f058 --- /dev/null +++ b/.godot/imported/ground_riverRocks.fbx-46ee604b1361610e50e66a26a43bc67d.md5 @@ -0,0 +1,2 @@ +source_md5="d05188c8a40c2c51ec2e847b8fa9e4e9" +dest_md5="dabb566ae141f43926cba3d006aa58ea" diff --git a/.godot/imported/ground_riverRocks.fbx-46ee604b1361610e50e66a26a43bc67d.scn b/.godot/imported/ground_riverRocks.fbx-46ee604b1361610e50e66a26a43bc67d.scn new file mode 100644 index 0000000..4c118da Binary files /dev/null and b/.godot/imported/ground_riverRocks.fbx-46ee604b1361610e50e66a26a43bc67d.scn differ diff --git a/.godot/imported/ground_riverSide-a481820f60e59dd722947c93658b0dd2.glb b/.godot/imported/ground_riverSide-a481820f60e59dd722947c93658b0dd2.glb new file mode 100644 index 0000000..f7de3c3 Binary files /dev/null and b/.godot/imported/ground_riverSide-a481820f60e59dd722947c93658b0dd2.glb differ diff --git a/.godot/imported/ground_riverSide.fbx-a481820f60e59dd722947c93658b0dd2.md5 b/.godot/imported/ground_riverSide.fbx-a481820f60e59dd722947c93658b0dd2.md5 new file mode 100644 index 0000000..04ab6c4 --- /dev/null +++ b/.godot/imported/ground_riverSide.fbx-a481820f60e59dd722947c93658b0dd2.md5 @@ -0,0 +1,2 @@ +source_md5="de5c785759d832e61be62b257d5d3fc2" +dest_md5="382ef27403ca09b468e6f9cd43245b3f" diff --git a/.godot/imported/ground_riverSide.fbx-a481820f60e59dd722947c93658b0dd2.scn b/.godot/imported/ground_riverSide.fbx-a481820f60e59dd722947c93658b0dd2.scn new file mode 100644 index 0000000..886406e Binary files /dev/null and b/.godot/imported/ground_riverSide.fbx-a481820f60e59dd722947c93658b0dd2.scn differ diff --git a/.godot/imported/ground_riverSideOpen-4578a7bf81d0fca97d32a8c366b7796c.glb b/.godot/imported/ground_riverSideOpen-4578a7bf81d0fca97d32a8c366b7796c.glb new file mode 100644 index 0000000..0ad6284 Binary files /dev/null and b/.godot/imported/ground_riverSideOpen-4578a7bf81d0fca97d32a8c366b7796c.glb differ diff --git a/.godot/imported/ground_riverSideOpen.fbx-4578a7bf81d0fca97d32a8c366b7796c.md5 b/.godot/imported/ground_riverSideOpen.fbx-4578a7bf81d0fca97d32a8c366b7796c.md5 new file mode 100644 index 0000000..23724f9 --- /dev/null +++ b/.godot/imported/ground_riverSideOpen.fbx-4578a7bf81d0fca97d32a8c366b7796c.md5 @@ -0,0 +1,2 @@ +source_md5="a621ede8d484e64dd728bba4303c019b" +dest_md5="f7a58468c59150a706f50e2fa5e7aacf" diff --git a/.godot/imported/ground_riverSideOpen.fbx-4578a7bf81d0fca97d32a8c366b7796c.scn b/.godot/imported/ground_riverSideOpen.fbx-4578a7bf81d0fca97d32a8c366b7796c.scn new file mode 100644 index 0000000..02479e0 Binary files /dev/null and b/.godot/imported/ground_riverSideOpen.fbx-4578a7bf81d0fca97d32a8c366b7796c.scn differ diff --git a/.godot/imported/ground_riverSplit-24d36506707e0b998a8fd029832e936d.glb b/.godot/imported/ground_riverSplit-24d36506707e0b998a8fd029832e936d.glb new file mode 100644 index 0000000..18574a1 Binary files /dev/null and b/.godot/imported/ground_riverSplit-24d36506707e0b998a8fd029832e936d.glb differ diff --git a/.godot/imported/ground_riverSplit.fbx-24d36506707e0b998a8fd029832e936d.md5 b/.godot/imported/ground_riverSplit.fbx-24d36506707e0b998a8fd029832e936d.md5 new file mode 100644 index 0000000..f9249b9 --- /dev/null +++ b/.godot/imported/ground_riverSplit.fbx-24d36506707e0b998a8fd029832e936d.md5 @@ -0,0 +1,2 @@ +source_md5="88196d635119b33bcc5edc81cfaea80b" +dest_md5="1a8b92eedd828fc6e4589ea2b848d827" diff --git a/.godot/imported/ground_riverSplit.fbx-24d36506707e0b998a8fd029832e936d.scn b/.godot/imported/ground_riverSplit.fbx-24d36506707e0b998a8fd029832e936d.scn new file mode 100644 index 0000000..6c645e8 Binary files /dev/null and b/.godot/imported/ground_riverSplit.fbx-24d36506707e0b998a8fd029832e936d.scn differ diff --git a/.godot/imported/ground_riverStraight-82e2d343c0c73a615c1398eceb7bed75.glb b/.godot/imported/ground_riverStraight-82e2d343c0c73a615c1398eceb7bed75.glb new file mode 100644 index 0000000..968a1bf Binary files /dev/null and b/.godot/imported/ground_riverStraight-82e2d343c0c73a615c1398eceb7bed75.glb differ diff --git a/.godot/imported/ground_riverStraight.fbx-82e2d343c0c73a615c1398eceb7bed75.md5 b/.godot/imported/ground_riverStraight.fbx-82e2d343c0c73a615c1398eceb7bed75.md5 new file mode 100644 index 0000000..be5999a --- /dev/null +++ b/.godot/imported/ground_riverStraight.fbx-82e2d343c0c73a615c1398eceb7bed75.md5 @@ -0,0 +1,2 @@ +source_md5="6c011dd9a9a37679eefcf3a73e8deaaf" +dest_md5="a14b1d838ca82f8d775e14d73ac12278" diff --git a/.godot/imported/ground_riverStraight.fbx-82e2d343c0c73a615c1398eceb7bed75.scn b/.godot/imported/ground_riverStraight.fbx-82e2d343c0c73a615c1398eceb7bed75.scn new file mode 100644 index 0000000..f1ad8ca Binary files /dev/null and b/.godot/imported/ground_riverStraight.fbx-82e2d343c0c73a615c1398eceb7bed75.scn differ diff --git a/.godot/imported/ground_riverTile-cbfc85233cd51084d1282a5467e75c19.glb b/.godot/imported/ground_riverTile-cbfc85233cd51084d1282a5467e75c19.glb new file mode 100644 index 0000000..3f3ce38 Binary files /dev/null and b/.godot/imported/ground_riverTile-cbfc85233cd51084d1282a5467e75c19.glb differ diff --git a/.godot/imported/ground_riverTile.fbx-cbfc85233cd51084d1282a5467e75c19.md5 b/.godot/imported/ground_riverTile.fbx-cbfc85233cd51084d1282a5467e75c19.md5 new file mode 100644 index 0000000..02023c2 --- /dev/null +++ b/.godot/imported/ground_riverTile.fbx-cbfc85233cd51084d1282a5467e75c19.md5 @@ -0,0 +1,2 @@ +source_md5="22b3d60257ba453f729697ff4ae4417b" +dest_md5="6157f50722cddf9daaf380fdfb59082c" diff --git a/.godot/imported/ground_riverTile.fbx-cbfc85233cd51084d1282a5467e75c19.scn b/.godot/imported/ground_riverTile.fbx-cbfc85233cd51084d1282a5467e75c19.scn new file mode 100644 index 0000000..ac6f0c1 Binary files /dev/null and b/.godot/imported/ground_riverTile.fbx-cbfc85233cd51084d1282a5467e75c19.scn differ diff --git a/.godot/imported/hanging_moss-bc1686a4d55040a850584cfab992134d.glb b/.godot/imported/hanging_moss-bc1686a4d55040a850584cfab992134d.glb new file mode 100644 index 0000000..2af1652 Binary files /dev/null and b/.godot/imported/hanging_moss-bc1686a4d55040a850584cfab992134d.glb differ diff --git a/.godot/imported/hanging_moss.fbx-bc1686a4d55040a850584cfab992134d.md5 b/.godot/imported/hanging_moss.fbx-bc1686a4d55040a850584cfab992134d.md5 new file mode 100644 index 0000000..8fd9095 --- /dev/null +++ b/.godot/imported/hanging_moss.fbx-bc1686a4d55040a850584cfab992134d.md5 @@ -0,0 +1,2 @@ +source_md5="b9536f53679fb0a41aa6c41c257ef397" +dest_md5="3dc44c674d6d87f85f9401c644997730" diff --git a/.godot/imported/hanging_moss.fbx-bc1686a4d55040a850584cfab992134d.scn b/.godot/imported/hanging_moss.fbx-bc1686a4d55040a850584cfab992134d.scn new file mode 100644 index 0000000..3a0a5a4 Binary files /dev/null and b/.godot/imported/hanging_moss.fbx-bc1686a4d55040a850584cfab992134d.scn differ diff --git a/.godot/imported/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png-ef8a25e179291cdf11eb3fb95896b068.md5 b/.godot/imported/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png-ef8a25e179291cdf11eb3fb95896b068.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png-ef8a25e179291cdf11eb3fb95896b068.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png-ef8a25e179291cdf11eb3fb95896b068.s3tc.ctex b/.godot/imported/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png-ef8a25e179291cdf11eb3fb95896b068.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png-ef8a25e179291cdf11eb3fb95896b068.s3tc.ctex differ diff --git a/.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e.glb b/.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e.glb new file mode 100644 index 0000000..5d09683 Binary files /dev/null and b/.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e.glb differ diff --git a/.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png-da4a511f9273f2f80c29f693053a7363.md5 b/.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png-da4a511f9273f2f80c29f693053a7363.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png-da4a511f9273f2f80c29f693053a7363.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png-da4a511f9273f2f80c29f693053a7363.s3tc.ctex b/.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png-da4a511f9273f2f80c29f693053a7363.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png-da4a511f9273f2f80c29f693053a7363.s3tc.ctex differ diff --git a/.godot/imported/hatchback-sports.fbx-7ad16901b59011916a0a6287f63c797e.md5 b/.godot/imported/hatchback-sports.fbx-7ad16901b59011916a0a6287f63c797e.md5 new file mode 100644 index 0000000..c8b1925 --- /dev/null +++ b/.godot/imported/hatchback-sports.fbx-7ad16901b59011916a0a6287f63c797e.md5 @@ -0,0 +1,2 @@ +source_md5="0a51089120bf90d4feb9611630107714" +dest_md5="8f4877996798fdb1b0767432a248a264" diff --git a/.godot/imported/hatchback-sports.fbx-7ad16901b59011916a0a6287f63c797e.scn b/.godot/imported/hatchback-sports.fbx-7ad16901b59011916a0a6287f63c797e.scn new file mode 100644 index 0000000..f5e0995 Binary files /dev/null and b/.godot/imported/hatchback-sports.fbx-7ad16901b59011916a0a6287f63c797e.scn differ diff --git a/.godot/imported/hedge-32f466f1fec34f7cbe70fe5d5a2ce372.glb b/.godot/imported/hedge-32f466f1fec34f7cbe70fe5d5a2ce372.glb new file mode 100644 index 0000000..634d859 Binary files /dev/null and b/.godot/imported/hedge-32f466f1fec34f7cbe70fe5d5a2ce372.glb differ diff --git a/.godot/imported/hedge.fbx-32f466f1fec34f7cbe70fe5d5a2ce372.md5 b/.godot/imported/hedge.fbx-32f466f1fec34f7cbe70fe5d5a2ce372.md5 new file mode 100644 index 0000000..4d04240 --- /dev/null +++ b/.godot/imported/hedge.fbx-32f466f1fec34f7cbe70fe5d5a2ce372.md5 @@ -0,0 +1,2 @@ +source_md5="85bcc7ccff212e4f62141e82b3323662" +dest_md5="c45996d11b5067751dd09869d6256366" diff --git a/.godot/imported/hedge.fbx-32f466f1fec34f7cbe70fe5d5a2ce372.scn b/.godot/imported/hedge.fbx-32f466f1fec34f7cbe70fe5d5a2ce372.scn new file mode 100644 index 0000000..442c4e0 Binary files /dev/null and b/.godot/imported/hedge.fbx-32f466f1fec34f7cbe70fe5d5a2ce372.scn differ diff --git a/.godot/imported/hedgeCurved-188a7b90718b10220539776adac094cc.glb b/.godot/imported/hedgeCurved-188a7b90718b10220539776adac094cc.glb new file mode 100644 index 0000000..04a0d15 Binary files /dev/null and b/.godot/imported/hedgeCurved-188a7b90718b10220539776adac094cc.glb differ diff --git a/.godot/imported/hedgeCurved.fbx-188a7b90718b10220539776adac094cc.md5 b/.godot/imported/hedgeCurved.fbx-188a7b90718b10220539776adac094cc.md5 new file mode 100644 index 0000000..a5b29fb --- /dev/null +++ b/.godot/imported/hedgeCurved.fbx-188a7b90718b10220539776adac094cc.md5 @@ -0,0 +1,2 @@ +source_md5="6621bd4472452195ed90efdb2a21f91f" +dest_md5="9098272db218b6fe5b4d2b61b6004432" diff --git a/.godot/imported/hedgeCurved.fbx-188a7b90718b10220539776adac094cc.scn b/.godot/imported/hedgeCurved.fbx-188a7b90718b10220539776adac094cc.scn new file mode 100644 index 0000000..8eeebec Binary files /dev/null and b/.godot/imported/hedgeCurved.fbx-188a7b90718b10220539776adac094cc.scn differ diff --git a/.godot/imported/hedgeGate-abac6b122143698060b9c10827a0b7be.glb b/.godot/imported/hedgeGate-abac6b122143698060b9c10827a0b7be.glb new file mode 100644 index 0000000..b7a0d30 Binary files /dev/null and b/.godot/imported/hedgeGate-abac6b122143698060b9c10827a0b7be.glb differ diff --git a/.godot/imported/hedgeGate.fbx-abac6b122143698060b9c10827a0b7be.md5 b/.godot/imported/hedgeGate.fbx-abac6b122143698060b9c10827a0b7be.md5 new file mode 100644 index 0000000..1af633c --- /dev/null +++ b/.godot/imported/hedgeGate.fbx-abac6b122143698060b9c10827a0b7be.md5 @@ -0,0 +1,2 @@ +source_md5="db2d81fcbf2470477db1a59118495176" +dest_md5="fc145ff03111d8c6858a6f4a417bedb5" diff --git a/.godot/imported/hedgeGate.fbx-abac6b122143698060b9c10827a0b7be.scn b/.godot/imported/hedgeGate.fbx-abac6b122143698060b9c10827a0b7be.scn new file mode 100644 index 0000000..b319b4b Binary files /dev/null and b/.godot/imported/hedgeGate.fbx-abac6b122143698060b9c10827a0b7be.scn differ diff --git a/.godot/imported/hedgeLarge-0cdd13e810f48d9ac843210a2cd710c5.glb b/.godot/imported/hedgeLarge-0cdd13e810f48d9ac843210a2cd710c5.glb new file mode 100644 index 0000000..427c74c Binary files /dev/null and b/.godot/imported/hedgeLarge-0cdd13e810f48d9ac843210a2cd710c5.glb differ diff --git a/.godot/imported/hedgeLarge.fbx-0cdd13e810f48d9ac843210a2cd710c5.md5 b/.godot/imported/hedgeLarge.fbx-0cdd13e810f48d9ac843210a2cd710c5.md5 new file mode 100644 index 0000000..7c864a5 --- /dev/null +++ b/.godot/imported/hedgeLarge.fbx-0cdd13e810f48d9ac843210a2cd710c5.md5 @@ -0,0 +1,2 @@ +source_md5="f7fd21bbc73cfea7f686cb6a5417efe1" +dest_md5="2ce919a612554d777faf18e03ae94ec6" diff --git a/.godot/imported/hedgeLarge.fbx-0cdd13e810f48d9ac843210a2cd710c5.scn b/.godot/imported/hedgeLarge.fbx-0cdd13e810f48d9ac843210a2cd710c5.scn new file mode 100644 index 0000000..f15ae07 Binary files /dev/null and b/.godot/imported/hedgeLarge.fbx-0cdd13e810f48d9ac843210a2cd710c5.scn differ diff --git a/.godot/imported/hedgeLargeCurved-f5e0d41cc4689e228bc9b03ff2f472f8.glb b/.godot/imported/hedgeLargeCurved-f5e0d41cc4689e228bc9b03ff2f472f8.glb new file mode 100644 index 0000000..349070a Binary files /dev/null and b/.godot/imported/hedgeLargeCurved-f5e0d41cc4689e228bc9b03ff2f472f8.glb differ diff --git a/.godot/imported/hedgeLargeCurved.fbx-f5e0d41cc4689e228bc9b03ff2f472f8.md5 b/.godot/imported/hedgeLargeCurved.fbx-f5e0d41cc4689e228bc9b03ff2f472f8.md5 new file mode 100644 index 0000000..aa11810 --- /dev/null +++ b/.godot/imported/hedgeLargeCurved.fbx-f5e0d41cc4689e228bc9b03ff2f472f8.md5 @@ -0,0 +1,2 @@ +source_md5="9f45550330382f8a95e3cb3434e3bc8c" +dest_md5="af33233e4ee627f8b3835a4047e8b418" diff --git a/.godot/imported/hedgeLargeCurved.fbx-f5e0d41cc4689e228bc9b03ff2f472f8.scn b/.godot/imported/hedgeLargeCurved.fbx-f5e0d41cc4689e228bc9b03ff2f472f8.scn new file mode 100644 index 0000000..df8e7c2 Binary files /dev/null and b/.godot/imported/hedgeLargeCurved.fbx-f5e0d41cc4689e228bc9b03ff2f472f8.scn differ diff --git a/.godot/imported/hedgeLargeGate-354755e820207deaadf39d34cc434292.glb b/.godot/imported/hedgeLargeGate-354755e820207deaadf39d34cc434292.glb new file mode 100644 index 0000000..ce05511 Binary files /dev/null and b/.godot/imported/hedgeLargeGate-354755e820207deaadf39d34cc434292.glb differ diff --git a/.godot/imported/hedgeLargeGate.fbx-354755e820207deaadf39d34cc434292.md5 b/.godot/imported/hedgeLargeGate.fbx-354755e820207deaadf39d34cc434292.md5 new file mode 100644 index 0000000..684704e --- /dev/null +++ b/.godot/imported/hedgeLargeGate.fbx-354755e820207deaadf39d34cc434292.md5 @@ -0,0 +1,2 @@ +source_md5="b5ea2e983b16fc6c3eeee8635d46fc40" +dest_md5="cf27e945486f6050dc58e8eeaa05542e" diff --git a/.godot/imported/hedgeLargeGate.fbx-354755e820207deaadf39d34cc434292.scn b/.godot/imported/hedgeLargeGate.fbx-354755e820207deaadf39d34cc434292.scn new file mode 100644 index 0000000..f10c136 Binary files /dev/null and b/.godot/imported/hedgeLargeGate.fbx-354755e820207deaadf39d34cc434292.scn differ diff --git a/.godot/imported/ka1.ttf-f94fd73f6e4b266204211ac670a1b03a.fontdata b/.godot/imported/ka1.ttf-f94fd73f6e4b266204211ac670a1b03a.fontdata new file mode 100644 index 0000000..72ed2b3 Binary files /dev/null and b/.godot/imported/ka1.ttf-f94fd73f6e4b266204211ac670a1b03a.fontdata differ diff --git a/.godot/imported/ka1.ttf-f94fd73f6e4b266204211ac670a1b03a.md5 b/.godot/imported/ka1.ttf-f94fd73f6e4b266204211ac670a1b03a.md5 new file mode 100644 index 0000000..447d3e7 --- /dev/null +++ b/.godot/imported/ka1.ttf-f94fd73f6e4b266204211ac670a1b03a.md5 @@ -0,0 +1,2 @@ +source_md5="63eba5d9bf6f7197cda2a69d66f44ac2" +dest_md5="93bc55021d03a0fea05da2108b53d3a5" diff --git a/.godot/imported/lantern-a4e85575bad4d7621d0b207d7be4c130.glb b/.godot/imported/lantern-a4e85575bad4d7621d0b207d7be4c130.glb new file mode 100644 index 0000000..67bd3cc Binary files /dev/null and b/.godot/imported/lantern-a4e85575bad4d7621d0b207d7be4c130.glb differ diff --git a/.godot/imported/lantern.fbx-a4e85575bad4d7621d0b207d7be4c130.md5 b/.godot/imported/lantern.fbx-a4e85575bad4d7621d0b207d7be4c130.md5 new file mode 100644 index 0000000..a941ccc --- /dev/null +++ b/.godot/imported/lantern.fbx-a4e85575bad4d7621d0b207d7be4c130.md5 @@ -0,0 +1,2 @@ +source_md5="8cda84a457419aa676b9737fd1331597" +dest_md5="c82e17e68a56696f8d6dd9aa3df6985d" diff --git a/.godot/imported/lantern.fbx-a4e85575bad4d7621d0b207d7be4c130.scn b/.godot/imported/lantern.fbx-a4e85575bad4d7621d0b207d7be4c130.scn new file mode 100644 index 0000000..e8ca438 Binary files /dev/null and b/.godot/imported/lantern.fbx-a4e85575bad4d7621d0b207d7be4c130.scn differ diff --git a/.godot/imported/light_curved-258b04277ed113be4b42b197a6fc8103.glb b/.godot/imported/light_curved-258b04277ed113be4b42b197a6fc8103.glb new file mode 100644 index 0000000..3821c17 Binary files /dev/null and b/.godot/imported/light_curved-258b04277ed113be4b42b197a6fc8103.glb differ diff --git a/.godot/imported/light_curved.fbx-258b04277ed113be4b42b197a6fc8103.md5 b/.godot/imported/light_curved.fbx-258b04277ed113be4b42b197a6fc8103.md5 new file mode 100644 index 0000000..f1cba21 --- /dev/null +++ b/.godot/imported/light_curved.fbx-258b04277ed113be4b42b197a6fc8103.md5 @@ -0,0 +1,2 @@ +source_md5="ecbec6e7dbd9d12e76d8d07521a834b5" +dest_md5="8aa57ab7415198039c213b21691e6afb" diff --git a/.godot/imported/light_curved.fbx-258b04277ed113be4b42b197a6fc8103.scn b/.godot/imported/light_curved.fbx-258b04277ed113be4b42b197a6fc8103.scn new file mode 100644 index 0000000..41929b3 Binary files /dev/null and b/.godot/imported/light_curved.fbx-258b04277ed113be4b42b197a6fc8103.scn differ diff --git a/.godot/imported/light_curvedCross-50fc05bee01552dcdb18a1f68460c319.glb b/.godot/imported/light_curvedCross-50fc05bee01552dcdb18a1f68460c319.glb new file mode 100644 index 0000000..077e9ff Binary files /dev/null and b/.godot/imported/light_curvedCross-50fc05bee01552dcdb18a1f68460c319.glb differ diff --git a/.godot/imported/light_curvedCross.fbx-50fc05bee01552dcdb18a1f68460c319.md5 b/.godot/imported/light_curvedCross.fbx-50fc05bee01552dcdb18a1f68460c319.md5 new file mode 100644 index 0000000..1d379e2 --- /dev/null +++ b/.godot/imported/light_curvedCross.fbx-50fc05bee01552dcdb18a1f68460c319.md5 @@ -0,0 +1,2 @@ +source_md5="1dadfdf15f6c7709960b13b5d390ead9" +dest_md5="2adde21fd2662d66f12b89e2e57aabe4" diff --git a/.godot/imported/light_curvedCross.fbx-50fc05bee01552dcdb18a1f68460c319.scn b/.godot/imported/light_curvedCross.fbx-50fc05bee01552dcdb18a1f68460c319.scn new file mode 100644 index 0000000..5d9f770 Binary files /dev/null and b/.godot/imported/light_curvedCross.fbx-50fc05bee01552dcdb18a1f68460c319.scn differ diff --git a/.godot/imported/light_curvedDouble-c695281e478a2c04aff433f372e4c0e7.glb b/.godot/imported/light_curvedDouble-c695281e478a2c04aff433f372e4c0e7.glb new file mode 100644 index 0000000..9bc46b7 Binary files /dev/null and b/.godot/imported/light_curvedDouble-c695281e478a2c04aff433f372e4c0e7.glb differ diff --git a/.godot/imported/light_curvedDouble.fbx-c695281e478a2c04aff433f372e4c0e7.md5 b/.godot/imported/light_curvedDouble.fbx-c695281e478a2c04aff433f372e4c0e7.md5 new file mode 100644 index 0000000..5e8608b --- /dev/null +++ b/.godot/imported/light_curvedDouble.fbx-c695281e478a2c04aff433f372e4c0e7.md5 @@ -0,0 +1,2 @@ +source_md5="0bcdaf24fccb2dc36828620b910f766f" +dest_md5="bbee5b38b2a017dc56caa39fdf035a00" diff --git a/.godot/imported/light_curvedDouble.fbx-c695281e478a2c04aff433f372e4c0e7.scn b/.godot/imported/light_curvedDouble.fbx-c695281e478a2c04aff433f372e4c0e7.scn new file mode 100644 index 0000000..fa4e94d Binary files /dev/null and b/.godot/imported/light_curvedDouble.fbx-c695281e478a2c04aff433f372e4c0e7.scn differ diff --git a/.godot/imported/light_square-729d44de9e4b1f0943c5752684b18085.glb b/.godot/imported/light_square-729d44de9e4b1f0943c5752684b18085.glb new file mode 100644 index 0000000..56e3fcc Binary files /dev/null and b/.godot/imported/light_square-729d44de9e4b1f0943c5752684b18085.glb differ diff --git a/.godot/imported/light_square.fbx-729d44de9e4b1f0943c5752684b18085.md5 b/.godot/imported/light_square.fbx-729d44de9e4b1f0943c5752684b18085.md5 new file mode 100644 index 0000000..e5f3036 --- /dev/null +++ b/.godot/imported/light_square.fbx-729d44de9e4b1f0943c5752684b18085.md5 @@ -0,0 +1,2 @@ +source_md5="5126801a890f54b2dc616e2e6f29c021" +dest_md5="6690c046f85204cfd00740c9adca7f4e" diff --git a/.godot/imported/light_square.fbx-729d44de9e4b1f0943c5752684b18085.scn b/.godot/imported/light_square.fbx-729d44de9e4b1f0943c5752684b18085.scn new file mode 100644 index 0000000..60c6b86 Binary files /dev/null and b/.godot/imported/light_square.fbx-729d44de9e4b1f0943c5752684b18085.scn differ diff --git a/.godot/imported/light_squareCross-ed7cfb424da4960a35a528d97bc00599.glb b/.godot/imported/light_squareCross-ed7cfb424da4960a35a528d97bc00599.glb new file mode 100644 index 0000000..bcb32ab Binary files /dev/null and b/.godot/imported/light_squareCross-ed7cfb424da4960a35a528d97bc00599.glb differ diff --git a/.godot/imported/light_squareCross.fbx-ed7cfb424da4960a35a528d97bc00599.md5 b/.godot/imported/light_squareCross.fbx-ed7cfb424da4960a35a528d97bc00599.md5 new file mode 100644 index 0000000..0910b5b --- /dev/null +++ b/.godot/imported/light_squareCross.fbx-ed7cfb424da4960a35a528d97bc00599.md5 @@ -0,0 +1,2 @@ +source_md5="6bb8127b1b76e7c89fb285f4256e87a2" +dest_md5="21a251a940e05378a2345b8bfc0b01eb" diff --git a/.godot/imported/light_squareCross.fbx-ed7cfb424da4960a35a528d97bc00599.scn b/.godot/imported/light_squareCross.fbx-ed7cfb424da4960a35a528d97bc00599.scn new file mode 100644 index 0000000..443850a Binary files /dev/null and b/.godot/imported/light_squareCross.fbx-ed7cfb424da4960a35a528d97bc00599.scn differ diff --git a/.godot/imported/light_squareDouble-ed670b42f50011ac648f7bef123a4749.glb b/.godot/imported/light_squareDouble-ed670b42f50011ac648f7bef123a4749.glb new file mode 100644 index 0000000..b15a541 Binary files /dev/null and b/.godot/imported/light_squareDouble-ed670b42f50011ac648f7bef123a4749.glb differ diff --git a/.godot/imported/light_squareDouble.fbx-ed670b42f50011ac648f7bef123a4749.md5 b/.godot/imported/light_squareDouble.fbx-ed670b42f50011ac648f7bef123a4749.md5 new file mode 100644 index 0000000..4e32193 --- /dev/null +++ b/.godot/imported/light_squareDouble.fbx-ed670b42f50011ac648f7bef123a4749.md5 @@ -0,0 +1,2 @@ +source_md5="d4842827bd19f56f7743471a6a920f15" +dest_md5="8e2826c188e0b183f35e3fbbb4353c0f" diff --git a/.godot/imported/light_squareDouble.fbx-ed670b42f50011ac648f7bef123a4749.scn b/.godot/imported/light_squareDouble.fbx-ed670b42f50011ac648f7bef123a4749.scn new file mode 100644 index 0000000..42f6969 Binary files /dev/null and b/.godot/imported/light_squareDouble.fbx-ed670b42f50011ac648f7bef123a4749.scn differ diff --git a/.godot/imported/lily_large-6cef067b894eddd26fc4640312ec677b.glb b/.godot/imported/lily_large-6cef067b894eddd26fc4640312ec677b.glb new file mode 100644 index 0000000..5606d38 Binary files /dev/null and b/.godot/imported/lily_large-6cef067b894eddd26fc4640312ec677b.glb differ diff --git a/.godot/imported/lily_large.fbx-6cef067b894eddd26fc4640312ec677b.md5 b/.godot/imported/lily_large.fbx-6cef067b894eddd26fc4640312ec677b.md5 new file mode 100644 index 0000000..a53c8dd --- /dev/null +++ b/.godot/imported/lily_large.fbx-6cef067b894eddd26fc4640312ec677b.md5 @@ -0,0 +1,2 @@ +source_md5="b7bd035afcd3e2b4b7aae9f0e1cf8976" +dest_md5="8eac973677c641ec42e8b45633b8c8d9" diff --git a/.godot/imported/lily_large.fbx-6cef067b894eddd26fc4640312ec677b.scn b/.godot/imported/lily_large.fbx-6cef067b894eddd26fc4640312ec677b.scn new file mode 100644 index 0000000..56850a5 Binary files /dev/null and b/.godot/imported/lily_large.fbx-6cef067b894eddd26fc4640312ec677b.scn differ diff --git a/.godot/imported/lily_small-bde51f44cf0be6c061793c43918b2c97.glb b/.godot/imported/lily_small-bde51f44cf0be6c061793c43918b2c97.glb new file mode 100644 index 0000000..a45f7af Binary files /dev/null and b/.godot/imported/lily_small-bde51f44cf0be6c061793c43918b2c97.glb differ diff --git a/.godot/imported/lily_small.fbx-bde51f44cf0be6c061793c43918b2c97.md5 b/.godot/imported/lily_small.fbx-bde51f44cf0be6c061793c43918b2c97.md5 new file mode 100644 index 0000000..58c58bf --- /dev/null +++ b/.godot/imported/lily_small.fbx-bde51f44cf0be6c061793c43918b2c97.md5 @@ -0,0 +1,2 @@ +source_md5="ee793fc01fea9ba913369917c4259059" +dest_md5="230c7df94cc6a9a07e41f09fb2a0e146" diff --git a/.godot/imported/lily_small.fbx-bde51f44cf0be6c061793c43918b2c97.scn b/.godot/imported/lily_small.fbx-bde51f44cf0be6c061793c43918b2c97.scn new file mode 100644 index 0000000..6806691 Binary files /dev/null and b/.godot/imported/lily_small.fbx-bde51f44cf0be6c061793c43918b2c97.scn differ diff --git a/.godot/imported/log-69fde7c106ac4e0b433b9fb4cf805c27.glb b/.godot/imported/log-69fde7c106ac4e0b433b9fb4cf805c27.glb new file mode 100644 index 0000000..a16a645 Binary files /dev/null and b/.godot/imported/log-69fde7c106ac4e0b433b9fb4cf805c27.glb differ diff --git a/.godot/imported/log.fbx-69fde7c106ac4e0b433b9fb4cf805c27.md5 b/.godot/imported/log.fbx-69fde7c106ac4e0b433b9fb4cf805c27.md5 new file mode 100644 index 0000000..b579dc6 --- /dev/null +++ b/.godot/imported/log.fbx-69fde7c106ac4e0b433b9fb4cf805c27.md5 @@ -0,0 +1,2 @@ +source_md5="5ba8f2714eac73bc9be2a2d25a7ec213" +dest_md5="fb28ffc101437fcbd55099b949fe64a5" diff --git a/.godot/imported/log.fbx-69fde7c106ac4e0b433b9fb4cf805c27.scn b/.godot/imported/log.fbx-69fde7c106ac4e0b433b9fb4cf805c27.scn new file mode 100644 index 0000000..d6bc322 Binary files /dev/null and b/.godot/imported/log.fbx-69fde7c106ac4e0b433b9fb4cf805c27.scn differ diff --git a/.godot/imported/log_large-59d76a1705738b09eee5b7bc4bb10584.glb b/.godot/imported/log_large-59d76a1705738b09eee5b7bc4bb10584.glb new file mode 100644 index 0000000..f5a0578 Binary files /dev/null and b/.godot/imported/log_large-59d76a1705738b09eee5b7bc4bb10584.glb differ diff --git a/.godot/imported/log_large.fbx-59d76a1705738b09eee5b7bc4bb10584.md5 b/.godot/imported/log_large.fbx-59d76a1705738b09eee5b7bc4bb10584.md5 new file mode 100644 index 0000000..8c69819 --- /dev/null +++ b/.godot/imported/log_large.fbx-59d76a1705738b09eee5b7bc4bb10584.md5 @@ -0,0 +1,2 @@ +source_md5="77105e74b6b8ad602a6f517e6643a8fc" +dest_md5="5c7722cdf0a64a6f48a2754f15dcb6ff" diff --git a/.godot/imported/log_large.fbx-59d76a1705738b09eee5b7bc4bb10584.scn b/.godot/imported/log_large.fbx-59d76a1705738b09eee5b7bc4bb10584.scn new file mode 100644 index 0000000..c445466 Binary files /dev/null and b/.godot/imported/log_large.fbx-59d76a1705738b09eee5b7bc4bb10584.scn differ diff --git a/.godot/imported/log_stack-2a347af57cb619904eb4258b23d84c6f.glb b/.godot/imported/log_stack-2a347af57cb619904eb4258b23d84c6f.glb new file mode 100644 index 0000000..30e301e Binary files /dev/null and b/.godot/imported/log_stack-2a347af57cb619904eb4258b23d84c6f.glb differ diff --git a/.godot/imported/log_stack.fbx-2a347af57cb619904eb4258b23d84c6f.md5 b/.godot/imported/log_stack.fbx-2a347af57cb619904eb4258b23d84c6f.md5 new file mode 100644 index 0000000..bc9f315 --- /dev/null +++ b/.godot/imported/log_stack.fbx-2a347af57cb619904eb4258b23d84c6f.md5 @@ -0,0 +1,2 @@ +source_md5="70c31e66e70a306c3ad54a7356adc6e9" +dest_md5="07755c0cdcb76af70a4b07d83f9a7a01" diff --git a/.godot/imported/log_stack.fbx-2a347af57cb619904eb4258b23d84c6f.scn b/.godot/imported/log_stack.fbx-2a347af57cb619904eb4258b23d84c6f.scn new file mode 100644 index 0000000..9451f6a Binary files /dev/null and b/.godot/imported/log_stack.fbx-2a347af57cb619904eb4258b23d84c6f.scn differ diff --git a/.godot/imported/log_stackLarge-9a673381f84685e666ea17c460ee9f62.glb b/.godot/imported/log_stackLarge-9a673381f84685e666ea17c460ee9f62.glb new file mode 100644 index 0000000..9f463eb Binary files /dev/null and b/.godot/imported/log_stackLarge-9a673381f84685e666ea17c460ee9f62.glb differ diff --git a/.godot/imported/log_stackLarge.fbx-9a673381f84685e666ea17c460ee9f62.md5 b/.godot/imported/log_stackLarge.fbx-9a673381f84685e666ea17c460ee9f62.md5 new file mode 100644 index 0000000..0ba8281 --- /dev/null +++ b/.godot/imported/log_stackLarge.fbx-9a673381f84685e666ea17c460ee9f62.md5 @@ -0,0 +1,2 @@ +source_md5="cb775cd267ffb412925eea20b4ac1237" +dest_md5="f3db18a28e5231f746a8e9d485704566" diff --git a/.godot/imported/log_stackLarge.fbx-9a673381f84685e666ea17c460ee9f62.scn b/.godot/imported/log_stackLarge.fbx-9a673381f84685e666ea17c460ee9f62.scn new file mode 100644 index 0000000..db5534c Binary files /dev/null and b/.godot/imported/log_stackLarge.fbx-9a673381f84685e666ea17c460ee9f62.scn differ diff --git a/.godot/imported/mushroom_red-ea567a65202f68051e18e54a71c043eb.glb b/.godot/imported/mushroom_red-ea567a65202f68051e18e54a71c043eb.glb new file mode 100644 index 0000000..91794d2 Binary files /dev/null and b/.godot/imported/mushroom_red-ea567a65202f68051e18e54a71c043eb.glb differ diff --git a/.godot/imported/mushroom_red.fbx-ea567a65202f68051e18e54a71c043eb.md5 b/.godot/imported/mushroom_red.fbx-ea567a65202f68051e18e54a71c043eb.md5 new file mode 100644 index 0000000..7d5b46d --- /dev/null +++ b/.godot/imported/mushroom_red.fbx-ea567a65202f68051e18e54a71c043eb.md5 @@ -0,0 +1,2 @@ +source_md5="07ba639b3c10b7655e6efac53ca24287" +dest_md5="4e34213b92f472aedfbd7339d75b2905" diff --git a/.godot/imported/mushroom_red.fbx-ea567a65202f68051e18e54a71c043eb.scn b/.godot/imported/mushroom_red.fbx-ea567a65202f68051e18e54a71c043eb.scn new file mode 100644 index 0000000..1abdcb0 Binary files /dev/null and b/.godot/imported/mushroom_red.fbx-ea567a65202f68051e18e54a71c043eb.scn differ diff --git a/.godot/imported/mushroom_redGroup-3fb15f31b02660008fd22438317011de.glb b/.godot/imported/mushroom_redGroup-3fb15f31b02660008fd22438317011de.glb new file mode 100644 index 0000000..56f5d9a Binary files /dev/null and b/.godot/imported/mushroom_redGroup-3fb15f31b02660008fd22438317011de.glb differ diff --git a/.godot/imported/mushroom_redGroup.fbx-3fb15f31b02660008fd22438317011de.md5 b/.godot/imported/mushroom_redGroup.fbx-3fb15f31b02660008fd22438317011de.md5 new file mode 100644 index 0000000..4711d5f --- /dev/null +++ b/.godot/imported/mushroom_redGroup.fbx-3fb15f31b02660008fd22438317011de.md5 @@ -0,0 +1,2 @@ +source_md5="0003e74d80e46e71b32ddaf961a2158a" +dest_md5="a5cf2dc310d7b0c7ccc8e4fa3ef135ae" diff --git a/.godot/imported/mushroom_redGroup.fbx-3fb15f31b02660008fd22438317011de.scn b/.godot/imported/mushroom_redGroup.fbx-3fb15f31b02660008fd22438317011de.scn new file mode 100644 index 0000000..134575d Binary files /dev/null and b/.godot/imported/mushroom_redGroup.fbx-3fb15f31b02660008fd22438317011de.scn differ diff --git a/.godot/imported/mushroom_redTall-816922b71a3825ae350efbf01d685e89.glb b/.godot/imported/mushroom_redTall-816922b71a3825ae350efbf01d685e89.glb new file mode 100644 index 0000000..32bcc0a Binary files /dev/null and b/.godot/imported/mushroom_redTall-816922b71a3825ae350efbf01d685e89.glb differ diff --git a/.godot/imported/mushroom_redTall.fbx-816922b71a3825ae350efbf01d685e89.md5 b/.godot/imported/mushroom_redTall.fbx-816922b71a3825ae350efbf01d685e89.md5 new file mode 100644 index 0000000..d4b8f3b --- /dev/null +++ b/.godot/imported/mushroom_redTall.fbx-816922b71a3825ae350efbf01d685e89.md5 @@ -0,0 +1,2 @@ +source_md5="8feed0ea4f26880e2b3a0c7137b39686" +dest_md5="de2afea752868e89a4862d4ead864eb0" diff --git a/.godot/imported/mushroom_redTall.fbx-816922b71a3825ae350efbf01d685e89.scn b/.godot/imported/mushroom_redTall.fbx-816922b71a3825ae350efbf01d685e89.scn new file mode 100644 index 0000000..354fb80 Binary files /dev/null and b/.godot/imported/mushroom_redTall.fbx-816922b71a3825ae350efbf01d685e89.scn differ diff --git a/.godot/imported/mushroom_tan-da38f882e60ef083786b06a9c3090bec.glb b/.godot/imported/mushroom_tan-da38f882e60ef083786b06a9c3090bec.glb new file mode 100644 index 0000000..b8427d1 Binary files /dev/null and b/.godot/imported/mushroom_tan-da38f882e60ef083786b06a9c3090bec.glb differ diff --git a/.godot/imported/mushroom_tan.fbx-da38f882e60ef083786b06a9c3090bec.md5 b/.godot/imported/mushroom_tan.fbx-da38f882e60ef083786b06a9c3090bec.md5 new file mode 100644 index 0000000..7a9df5e --- /dev/null +++ b/.godot/imported/mushroom_tan.fbx-da38f882e60ef083786b06a9c3090bec.md5 @@ -0,0 +1,2 @@ +source_md5="45f7b273f95bda212a8a8cc2affa5bce" +dest_md5="3f13aef327988324ac67c265065acea5" diff --git a/.godot/imported/mushroom_tan.fbx-da38f882e60ef083786b06a9c3090bec.scn b/.godot/imported/mushroom_tan.fbx-da38f882e60ef083786b06a9c3090bec.scn new file mode 100644 index 0000000..7b877d1 Binary files /dev/null and b/.godot/imported/mushroom_tan.fbx-da38f882e60ef083786b06a9c3090bec.scn differ diff --git a/.godot/imported/mushroom_tanGroup-f286a38f8f2938de87471d9b5ebeef46.glb b/.godot/imported/mushroom_tanGroup-f286a38f8f2938de87471d9b5ebeef46.glb new file mode 100644 index 0000000..42942eb Binary files /dev/null and b/.godot/imported/mushroom_tanGroup-f286a38f8f2938de87471d9b5ebeef46.glb differ diff --git a/.godot/imported/mushroom_tanGroup.fbx-f286a38f8f2938de87471d9b5ebeef46.md5 b/.godot/imported/mushroom_tanGroup.fbx-f286a38f8f2938de87471d9b5ebeef46.md5 new file mode 100644 index 0000000..bcf418f --- /dev/null +++ b/.godot/imported/mushroom_tanGroup.fbx-f286a38f8f2938de87471d9b5ebeef46.md5 @@ -0,0 +1,2 @@ +source_md5="299a5099660ab6c906a4acf3d2134ac4" +dest_md5="88b4a4403d850e35983b3edb95d97441" diff --git a/.godot/imported/mushroom_tanGroup.fbx-f286a38f8f2938de87471d9b5ebeef46.scn b/.godot/imported/mushroom_tanGroup.fbx-f286a38f8f2938de87471d9b5ebeef46.scn new file mode 100644 index 0000000..af7e174 Binary files /dev/null and b/.godot/imported/mushroom_tanGroup.fbx-f286a38f8f2938de87471d9b5ebeef46.scn differ diff --git a/.godot/imported/mushroom_tanTall-2a886a81b985fc713f8a26a0bb8a12c1.glb b/.godot/imported/mushroom_tanTall-2a886a81b985fc713f8a26a0bb8a12c1.glb new file mode 100644 index 0000000..3308d34 Binary files /dev/null and b/.godot/imported/mushroom_tanTall-2a886a81b985fc713f8a26a0bb8a12c1.glb differ diff --git a/.godot/imported/mushroom_tanTall.fbx-2a886a81b985fc713f8a26a0bb8a12c1.md5 b/.godot/imported/mushroom_tanTall.fbx-2a886a81b985fc713f8a26a0bb8a12c1.md5 new file mode 100644 index 0000000..c8b6f18 --- /dev/null +++ b/.godot/imported/mushroom_tanTall.fbx-2a886a81b985fc713f8a26a0bb8a12c1.md5 @@ -0,0 +1,2 @@ +source_md5="a7a9955b68d453a4954e257d824d1e87" +dest_md5="f3aa0b8eb86016e0d6627d24776f83ab" diff --git a/.godot/imported/mushroom_tanTall.fbx-2a886a81b985fc713f8a26a0bb8a12c1.scn b/.godot/imported/mushroom_tanTall.fbx-2a886a81b985fc713f8a26a0bb8a12c1.scn new file mode 100644 index 0000000..5bd72fa Binary files /dev/null and b/.godot/imported/mushroom_tanTall.fbx-2a886a81b985fc713f8a26a0bb8a12c1.scn differ diff --git a/.godot/imported/new_song.wav-7cfd2a2b290d790920bd61c317d520db.md5 b/.godot/imported/new_song.wav-7cfd2a2b290d790920bd61c317d520db.md5 new file mode 100644 index 0000000..57ecd15 --- /dev/null +++ b/.godot/imported/new_song.wav-7cfd2a2b290d790920bd61c317d520db.md5 @@ -0,0 +1,2 @@ +source_md5="9a8a915751a1d3848f0a6ee3e3582f75" +dest_md5="f8425d6b09704b545518527a83113777" diff --git a/.godot/imported/new_song.wav-7cfd2a2b290d790920bd61c317d520db.sample b/.godot/imported/new_song.wav-7cfd2a2b290d790920bd61c317d520db.sample new file mode 100644 index 0000000..62463d0 Binary files /dev/null and b/.godot/imported/new_song.wav-7cfd2a2b290d790920bd61c317d520db.sample differ diff --git a/.godot/imported/overhang-8a20e0b6afbec812324e0a847fdd63e8.glb b/.godot/imported/overhang-8a20e0b6afbec812324e0a847fdd63e8.glb new file mode 100644 index 0000000..4ef56bf Binary files /dev/null and b/.godot/imported/overhang-8a20e0b6afbec812324e0a847fdd63e8.glb differ diff --git a/.godot/imported/overhang.fbx-8a20e0b6afbec812324e0a847fdd63e8.md5 b/.godot/imported/overhang.fbx-8a20e0b6afbec812324e0a847fdd63e8.md5 new file mode 100644 index 0000000..a16c371 --- /dev/null +++ b/.godot/imported/overhang.fbx-8a20e0b6afbec812324e0a847fdd63e8.md5 @@ -0,0 +1,2 @@ +source_md5="ec66a67f7b3915b8909add24e216c6fa" +dest_md5="6efc1aad831a7062320204c42335c1b8" diff --git a/.godot/imported/overhang.fbx-8a20e0b6afbec812324e0a847fdd63e8.scn b/.godot/imported/overhang.fbx-8a20e0b6afbec812324e0a847fdd63e8.scn new file mode 100644 index 0000000..e8cc9db Binary files /dev/null and b/.godot/imported/overhang.fbx-8a20e0b6afbec812324e0a847fdd63e8.scn differ diff --git a/.godot/imported/path_stone-11a1b1341743a2bfc817dec0a247458d.glb b/.godot/imported/path_stone-11a1b1341743a2bfc817dec0a247458d.glb new file mode 100644 index 0000000..5cfff00 Binary files /dev/null and b/.godot/imported/path_stone-11a1b1341743a2bfc817dec0a247458d.glb differ diff --git a/.godot/imported/path_stone.fbx-11a1b1341743a2bfc817dec0a247458d.md5 b/.godot/imported/path_stone.fbx-11a1b1341743a2bfc817dec0a247458d.md5 new file mode 100644 index 0000000..13e9ab8 --- /dev/null +++ b/.godot/imported/path_stone.fbx-11a1b1341743a2bfc817dec0a247458d.md5 @@ -0,0 +1,2 @@ +source_md5="ba155fa7238b969694a2c385898e64a2" +dest_md5="beaca1f70168af547143d1059224009a" diff --git a/.godot/imported/path_stone.fbx-11a1b1341743a2bfc817dec0a247458d.scn b/.godot/imported/path_stone.fbx-11a1b1341743a2bfc817dec0a247458d.scn new file mode 100644 index 0000000..b6be00c Binary files /dev/null and b/.godot/imported/path_stone.fbx-11a1b1341743a2bfc817dec0a247458d.scn differ diff --git a/.godot/imported/path_stoneCircle-b83db649c2c75299228b236272b4e020.glb b/.godot/imported/path_stoneCircle-b83db649c2c75299228b236272b4e020.glb new file mode 100644 index 0000000..58a3236 Binary files /dev/null and b/.godot/imported/path_stoneCircle-b83db649c2c75299228b236272b4e020.glb differ diff --git a/.godot/imported/path_stoneCircle.fbx-b83db649c2c75299228b236272b4e020.md5 b/.godot/imported/path_stoneCircle.fbx-b83db649c2c75299228b236272b4e020.md5 new file mode 100644 index 0000000..b6010db --- /dev/null +++ b/.godot/imported/path_stoneCircle.fbx-b83db649c2c75299228b236272b4e020.md5 @@ -0,0 +1,2 @@ +source_md5="d5967042c95ea560233cd2a0fce9a83d" +dest_md5="154e2e195b6ef08f6c5281fcd62b0a54" diff --git a/.godot/imported/path_stoneCircle.fbx-b83db649c2c75299228b236272b4e020.scn b/.godot/imported/path_stoneCircle.fbx-b83db649c2c75299228b236272b4e020.scn new file mode 100644 index 0000000..559838d Binary files /dev/null and b/.godot/imported/path_stoneCircle.fbx-b83db649c2c75299228b236272b4e020.scn differ diff --git a/.godot/imported/path_stoneCorner-40cbf57f361886c216a186108e48007b.glb b/.godot/imported/path_stoneCorner-40cbf57f361886c216a186108e48007b.glb new file mode 100644 index 0000000..2c8dbdf Binary files /dev/null and b/.godot/imported/path_stoneCorner-40cbf57f361886c216a186108e48007b.glb differ diff --git a/.godot/imported/path_stoneCorner.fbx-40cbf57f361886c216a186108e48007b.md5 b/.godot/imported/path_stoneCorner.fbx-40cbf57f361886c216a186108e48007b.md5 new file mode 100644 index 0000000..85fa558 --- /dev/null +++ b/.godot/imported/path_stoneCorner.fbx-40cbf57f361886c216a186108e48007b.md5 @@ -0,0 +1,2 @@ +source_md5="fc4bc7f15971643bde3f01fee45cef2d" +dest_md5="9a9542ed866501ac380191167bc935d6" diff --git a/.godot/imported/path_stoneCorner.fbx-40cbf57f361886c216a186108e48007b.scn b/.godot/imported/path_stoneCorner.fbx-40cbf57f361886c216a186108e48007b.scn new file mode 100644 index 0000000..f45ea75 Binary files /dev/null and b/.godot/imported/path_stoneCorner.fbx-40cbf57f361886c216a186108e48007b.scn differ diff --git a/.godot/imported/path_stoneEnd-6e493c41966bc92916383df604835112.glb b/.godot/imported/path_stoneEnd-6e493c41966bc92916383df604835112.glb new file mode 100644 index 0000000..0127575 Binary files /dev/null and b/.godot/imported/path_stoneEnd-6e493c41966bc92916383df604835112.glb differ diff --git a/.godot/imported/path_stoneEnd.fbx-6e493c41966bc92916383df604835112.md5 b/.godot/imported/path_stoneEnd.fbx-6e493c41966bc92916383df604835112.md5 new file mode 100644 index 0000000..26a4246 --- /dev/null +++ b/.godot/imported/path_stoneEnd.fbx-6e493c41966bc92916383df604835112.md5 @@ -0,0 +1,2 @@ +source_md5="cd1c71769991b64ffd5465f918105d41" +dest_md5="9fc1eef055d41157acf219849b29311b" diff --git a/.godot/imported/path_stoneEnd.fbx-6e493c41966bc92916383df604835112.scn b/.godot/imported/path_stoneEnd.fbx-6e493c41966bc92916383df604835112.scn new file mode 100644 index 0000000..f3f0795 Binary files /dev/null and b/.godot/imported/path_stoneEnd.fbx-6e493c41966bc92916383df604835112.scn differ diff --git a/.godot/imported/path_wood-19c4eca79ec0a0fa59b0e189c3d7680b.glb b/.godot/imported/path_wood-19c4eca79ec0a0fa59b0e189c3d7680b.glb new file mode 100644 index 0000000..fabcad8 Binary files /dev/null and b/.godot/imported/path_wood-19c4eca79ec0a0fa59b0e189c3d7680b.glb differ diff --git a/.godot/imported/path_wood.fbx-19c4eca79ec0a0fa59b0e189c3d7680b.md5 b/.godot/imported/path_wood.fbx-19c4eca79ec0a0fa59b0e189c3d7680b.md5 new file mode 100644 index 0000000..93edd30 --- /dev/null +++ b/.godot/imported/path_wood.fbx-19c4eca79ec0a0fa59b0e189c3d7680b.md5 @@ -0,0 +1,2 @@ +source_md5="286f7f866edc8187342b617d4e0f1f24" +dest_md5="5fa07159eddb3a3cbaf5bb3af37a88aa" diff --git a/.godot/imported/path_wood.fbx-19c4eca79ec0a0fa59b0e189c3d7680b.scn b/.godot/imported/path_wood.fbx-19c4eca79ec0a0fa59b0e189c3d7680b.scn new file mode 100644 index 0000000..cb4df8a Binary files /dev/null and b/.godot/imported/path_wood.fbx-19c4eca79ec0a0fa59b0e189c3d7680b.scn differ diff --git a/.godot/imported/path_woodCorner-7a41b8d068d1b89962de486c200e27df.glb b/.godot/imported/path_woodCorner-7a41b8d068d1b89962de486c200e27df.glb new file mode 100644 index 0000000..4f61133 Binary files /dev/null and b/.godot/imported/path_woodCorner-7a41b8d068d1b89962de486c200e27df.glb differ diff --git a/.godot/imported/path_woodCorner.fbx-7a41b8d068d1b89962de486c200e27df.md5 b/.godot/imported/path_woodCorner.fbx-7a41b8d068d1b89962de486c200e27df.md5 new file mode 100644 index 0000000..fc7c77c --- /dev/null +++ b/.godot/imported/path_woodCorner.fbx-7a41b8d068d1b89962de486c200e27df.md5 @@ -0,0 +1,2 @@ +source_md5="990c52fecae8014123a61c6296dfc5d6" +dest_md5="d7bb10707d47ba51987a29ea1d485f5e" diff --git a/.godot/imported/path_woodCorner.fbx-7a41b8d068d1b89962de486c200e27df.scn b/.godot/imported/path_woodCorner.fbx-7a41b8d068d1b89962de486c200e27df.scn new file mode 100644 index 0000000..34ab22c Binary files /dev/null and b/.godot/imported/path_woodCorner.fbx-7a41b8d068d1b89962de486c200e27df.scn differ diff --git a/.godot/imported/path_woodEnd-4b73da5831078d2dbe9dd5a83fef4bed.glb b/.godot/imported/path_woodEnd-4b73da5831078d2dbe9dd5a83fef4bed.glb new file mode 100644 index 0000000..50aa0af Binary files /dev/null and b/.godot/imported/path_woodEnd-4b73da5831078d2dbe9dd5a83fef4bed.glb differ diff --git a/.godot/imported/path_woodEnd.fbx-4b73da5831078d2dbe9dd5a83fef4bed.md5 b/.godot/imported/path_woodEnd.fbx-4b73da5831078d2dbe9dd5a83fef4bed.md5 new file mode 100644 index 0000000..9b2f547 --- /dev/null +++ b/.godot/imported/path_woodEnd.fbx-4b73da5831078d2dbe9dd5a83fef4bed.md5 @@ -0,0 +1,2 @@ +source_md5="1d9ecb96794cdd4cdcc26b800e5c6f4a" +dest_md5="87582f6bc988bb3e6ebf478b17926770" diff --git a/.godot/imported/path_woodEnd.fbx-4b73da5831078d2dbe9dd5a83fef4bed.scn b/.godot/imported/path_woodEnd.fbx-4b73da5831078d2dbe9dd5a83fef4bed.scn new file mode 100644 index 0000000..21effb0 Binary files /dev/null and b/.godot/imported/path_woodEnd.fbx-4b73da5831078d2dbe9dd5a83fef4bed.scn differ diff --git a/.godot/imported/pillarStone-c50ad9a426a8b3bb0b951aa4c46259f8.glb b/.godot/imported/pillarStone-c50ad9a426a8b3bb0b951aa4c46259f8.glb new file mode 100644 index 0000000..6dd5705 Binary files /dev/null and b/.godot/imported/pillarStone-c50ad9a426a8b3bb0b951aa4c46259f8.glb differ diff --git a/.godot/imported/pillarStone.fbx-c50ad9a426a8b3bb0b951aa4c46259f8.md5 b/.godot/imported/pillarStone.fbx-c50ad9a426a8b3bb0b951aa4c46259f8.md5 new file mode 100644 index 0000000..81243eb --- /dev/null +++ b/.godot/imported/pillarStone.fbx-c50ad9a426a8b3bb0b951aa4c46259f8.md5 @@ -0,0 +1,2 @@ +source_md5="58e2f245c7a1907318b2559c3792c0bd" +dest_md5="b0983548a43627a84da78d545139ecd7" diff --git a/.godot/imported/pillarStone.fbx-c50ad9a426a8b3bb0b951aa4c46259f8.scn b/.godot/imported/pillarStone.fbx-c50ad9a426a8b3bb0b951aa4c46259f8.scn new file mode 100644 index 0000000..ba41861 Binary files /dev/null and b/.godot/imported/pillarStone.fbx-c50ad9a426a8b3bb0b951aa4c46259f8.scn differ diff --git a/.godot/imported/pillarWood-e0ef3dce4eea6cac0fc87bc8eb27142d.glb b/.godot/imported/pillarWood-e0ef3dce4eea6cac0fc87bc8eb27142d.glb new file mode 100644 index 0000000..b2e193c Binary files /dev/null and b/.godot/imported/pillarWood-e0ef3dce4eea6cac0fc87bc8eb27142d.glb differ diff --git a/.godot/imported/pillarWood.fbx-e0ef3dce4eea6cac0fc87bc8eb27142d.md5 b/.godot/imported/pillarWood.fbx-e0ef3dce4eea6cac0fc87bc8eb27142d.md5 new file mode 100644 index 0000000..4a19871 --- /dev/null +++ b/.godot/imported/pillarWood.fbx-e0ef3dce4eea6cac0fc87bc8eb27142d.md5 @@ -0,0 +1,2 @@ +source_md5="89a74335309d1e994eaf24908ed4261b" +dest_md5="1a36667609362fd6919bbc6a63cb473a" diff --git a/.godot/imported/pillarWood.fbx-e0ef3dce4eea6cac0fc87bc8eb27142d.scn b/.godot/imported/pillarWood.fbx-e0ef3dce4eea6cac0fc87bc8eb27142d.scn new file mode 100644 index 0000000..4282439 Binary files /dev/null and b/.godot/imported/pillarWood.fbx-e0ef3dce4eea6cac0fc87bc8eb27142d.scn differ diff --git a/.godot/imported/planks-29f01598c2649ceadc7097296dd0fc0f.glb b/.godot/imported/planks-29f01598c2649ceadc7097296dd0fc0f.glb new file mode 100644 index 0000000..5b222db Binary files /dev/null and b/.godot/imported/planks-29f01598c2649ceadc7097296dd0fc0f.glb differ diff --git a/.godot/imported/planks.fbx-29f01598c2649ceadc7097296dd0fc0f.md5 b/.godot/imported/planks.fbx-29f01598c2649ceadc7097296dd0fc0f.md5 new file mode 100644 index 0000000..a99eaf0 --- /dev/null +++ b/.godot/imported/planks.fbx-29f01598c2649ceadc7097296dd0fc0f.md5 @@ -0,0 +1,2 @@ +source_md5="ad7bbff99d070df3931e5ea0ffce2f72" +dest_md5="b990fc88cf6c4720b67e74dd6152e9f1" diff --git a/.godot/imported/planks.fbx-29f01598c2649ceadc7097296dd0fc0f.scn b/.godot/imported/planks.fbx-29f01598c2649ceadc7097296dd0fc0f.scn new file mode 100644 index 0000000..66193cf Binary files /dev/null and b/.godot/imported/planks.fbx-29f01598c2649ceadc7097296dd0fc0f.scn differ diff --git a/.godot/imported/planksHalf-43bbcbc6a12d5bdefab426e588c965b2.glb b/.godot/imported/planksHalf-43bbcbc6a12d5bdefab426e588c965b2.glb new file mode 100644 index 0000000..03f93f4 Binary files /dev/null and b/.godot/imported/planksHalf-43bbcbc6a12d5bdefab426e588c965b2.glb differ diff --git a/.godot/imported/planksHalf.fbx-43bbcbc6a12d5bdefab426e588c965b2.md5 b/.godot/imported/planksHalf.fbx-43bbcbc6a12d5bdefab426e588c965b2.md5 new file mode 100644 index 0000000..75f7660 --- /dev/null +++ b/.godot/imported/planksHalf.fbx-43bbcbc6a12d5bdefab426e588c965b2.md5 @@ -0,0 +1,2 @@ +source_md5="ce91a6b6090cc282bebf263cd97a86d4" +dest_md5="57d8f8f5e7e7f30dead215e43118e044" diff --git a/.godot/imported/planksHalf.fbx-43bbcbc6a12d5bdefab426e588c965b2.scn b/.godot/imported/planksHalf.fbx-43bbcbc6a12d5bdefab426e588c965b2.scn new file mode 100644 index 0000000..de006da Binary files /dev/null and b/.godot/imported/planksHalf.fbx-43bbcbc6a12d5bdefab426e588c965b2.scn differ diff --git a/.godot/imported/planksOpening-ec155acbca68ba0de5bd6076ed1c6241.glb b/.godot/imported/planksOpening-ec155acbca68ba0de5bd6076ed1c6241.glb new file mode 100644 index 0000000..3b6c99d Binary files /dev/null and b/.godot/imported/planksOpening-ec155acbca68ba0de5bd6076ed1c6241.glb differ diff --git a/.godot/imported/planksOpening.fbx-ec155acbca68ba0de5bd6076ed1c6241.md5 b/.godot/imported/planksOpening.fbx-ec155acbca68ba0de5bd6076ed1c6241.md5 new file mode 100644 index 0000000..1b01b1a --- /dev/null +++ b/.godot/imported/planksOpening.fbx-ec155acbca68ba0de5bd6076ed1c6241.md5 @@ -0,0 +1,2 @@ +source_md5="a1495aecfdfbfa137bacd85889e09d1b" +dest_md5="042bcc11af4274a2a69dde541e630a0b" diff --git a/.godot/imported/planksOpening.fbx-ec155acbca68ba0de5bd6076ed1c6241.scn b/.godot/imported/planksOpening.fbx-ec155acbca68ba0de5bd6076ed1c6241.scn new file mode 100644 index 0000000..a4e2259 Binary files /dev/null and b/.godot/imported/planksOpening.fbx-ec155acbca68ba0de5bd6076ed1c6241.scn differ diff --git a/.godot/imported/plant_bush-92d9ac424b6cc169b3091e020e51e631.glb b/.godot/imported/plant_bush-92d9ac424b6cc169b3091e020e51e631.glb new file mode 100644 index 0000000..4787446 Binary files /dev/null and b/.godot/imported/plant_bush-92d9ac424b6cc169b3091e020e51e631.glb differ diff --git a/.godot/imported/plant_bush.fbx-92d9ac424b6cc169b3091e020e51e631.md5 b/.godot/imported/plant_bush.fbx-92d9ac424b6cc169b3091e020e51e631.md5 new file mode 100644 index 0000000..d2b9e82 --- /dev/null +++ b/.godot/imported/plant_bush.fbx-92d9ac424b6cc169b3091e020e51e631.md5 @@ -0,0 +1,2 @@ +source_md5="98d8e74569a586b03c14cf1cb2ce4265" +dest_md5="898b2a211c0d2c08c19b6489f73e2a76" diff --git a/.godot/imported/plant_bush.fbx-92d9ac424b6cc169b3091e020e51e631.scn b/.godot/imported/plant_bush.fbx-92d9ac424b6cc169b3091e020e51e631.scn new file mode 100644 index 0000000..8aa0571 Binary files /dev/null and b/.godot/imported/plant_bush.fbx-92d9ac424b6cc169b3091e020e51e631.scn differ diff --git a/.godot/imported/plant_bushDetailed-e6ee651f8cfc4b0134775720885eb3f2.glb b/.godot/imported/plant_bushDetailed-e6ee651f8cfc4b0134775720885eb3f2.glb new file mode 100644 index 0000000..f26a478 Binary files /dev/null and b/.godot/imported/plant_bushDetailed-e6ee651f8cfc4b0134775720885eb3f2.glb differ diff --git a/.godot/imported/plant_bushDetailed.fbx-e6ee651f8cfc4b0134775720885eb3f2.md5 b/.godot/imported/plant_bushDetailed.fbx-e6ee651f8cfc4b0134775720885eb3f2.md5 new file mode 100644 index 0000000..f08e896 --- /dev/null +++ b/.godot/imported/plant_bushDetailed.fbx-e6ee651f8cfc4b0134775720885eb3f2.md5 @@ -0,0 +1,2 @@ +source_md5="e224f35cee386df7487d1a6e9227f27f" +dest_md5="bf04dcdcd2c43dfdecef08300390e894" diff --git a/.godot/imported/plant_bushDetailed.fbx-e6ee651f8cfc4b0134775720885eb3f2.scn b/.godot/imported/plant_bushDetailed.fbx-e6ee651f8cfc4b0134775720885eb3f2.scn new file mode 100644 index 0000000..a8c30d4 Binary files /dev/null and b/.godot/imported/plant_bushDetailed.fbx-e6ee651f8cfc4b0134775720885eb3f2.scn differ diff --git a/.godot/imported/plant_bushLarge-20748f118e902af6e6e9c01757193c0c.glb b/.godot/imported/plant_bushLarge-20748f118e902af6e6e9c01757193c0c.glb new file mode 100644 index 0000000..db59583 Binary files /dev/null and b/.godot/imported/plant_bushLarge-20748f118e902af6e6e9c01757193c0c.glb differ diff --git a/.godot/imported/plant_bushLarge.fbx-20748f118e902af6e6e9c01757193c0c.md5 b/.godot/imported/plant_bushLarge.fbx-20748f118e902af6e6e9c01757193c0c.md5 new file mode 100644 index 0000000..d66ce96 --- /dev/null +++ b/.godot/imported/plant_bushLarge.fbx-20748f118e902af6e6e9c01757193c0c.md5 @@ -0,0 +1,2 @@ +source_md5="0743c559f925d8e5ccbf98f3e873b89e" +dest_md5="1a96f94815521aee3aff19b337f4fbcf" diff --git a/.godot/imported/plant_bushLarge.fbx-20748f118e902af6e6e9c01757193c0c.scn b/.godot/imported/plant_bushLarge.fbx-20748f118e902af6e6e9c01757193c0c.scn new file mode 100644 index 0000000..d7369e8 Binary files /dev/null and b/.godot/imported/plant_bushLarge.fbx-20748f118e902af6e6e9c01757193c0c.scn differ diff --git a/.godot/imported/plant_bushLargeTriangle-cdb1671b773e36cb399cf42752a37342.glb b/.godot/imported/plant_bushLargeTriangle-cdb1671b773e36cb399cf42752a37342.glb new file mode 100644 index 0000000..eaa274e Binary files /dev/null and b/.godot/imported/plant_bushLargeTriangle-cdb1671b773e36cb399cf42752a37342.glb differ diff --git a/.godot/imported/plant_bushLargeTriangle.fbx-cdb1671b773e36cb399cf42752a37342.md5 b/.godot/imported/plant_bushLargeTriangle.fbx-cdb1671b773e36cb399cf42752a37342.md5 new file mode 100644 index 0000000..88cc16b --- /dev/null +++ b/.godot/imported/plant_bushLargeTriangle.fbx-cdb1671b773e36cb399cf42752a37342.md5 @@ -0,0 +1,2 @@ +source_md5="8045dfd0556ce64bdceb4b60ec5c0d3d" +dest_md5="7e78122b54486585b6ee7beac43a88ff" diff --git a/.godot/imported/plant_bushLargeTriangle.fbx-cdb1671b773e36cb399cf42752a37342.scn b/.godot/imported/plant_bushLargeTriangle.fbx-cdb1671b773e36cb399cf42752a37342.scn new file mode 100644 index 0000000..e91df45 Binary files /dev/null and b/.godot/imported/plant_bushLargeTriangle.fbx-cdb1671b773e36cb399cf42752a37342.scn differ diff --git a/.godot/imported/plant_bushSmall-e040d7fae1e9c780193f6ccd067de9c4.glb b/.godot/imported/plant_bushSmall-e040d7fae1e9c780193f6ccd067de9c4.glb new file mode 100644 index 0000000..ce6cdc4 Binary files /dev/null and b/.godot/imported/plant_bushSmall-e040d7fae1e9c780193f6ccd067de9c4.glb differ diff --git a/.godot/imported/plant_bushSmall.fbx-e040d7fae1e9c780193f6ccd067de9c4.md5 b/.godot/imported/plant_bushSmall.fbx-e040d7fae1e9c780193f6ccd067de9c4.md5 new file mode 100644 index 0000000..4855202 --- /dev/null +++ b/.godot/imported/plant_bushSmall.fbx-e040d7fae1e9c780193f6ccd067de9c4.md5 @@ -0,0 +1,2 @@ +source_md5="72a9a1e4a504d60253c00b1a6031ba88" +dest_md5="7c4ed9238b334e93cb0e8d8d54d1ecd2" diff --git a/.godot/imported/plant_bushSmall.fbx-e040d7fae1e9c780193f6ccd067de9c4.scn b/.godot/imported/plant_bushSmall.fbx-e040d7fae1e9c780193f6ccd067de9c4.scn new file mode 100644 index 0000000..1726e0f Binary files /dev/null and b/.godot/imported/plant_bushSmall.fbx-e040d7fae1e9c780193f6ccd067de9c4.scn differ diff --git a/.godot/imported/plant_bushTriangle-12f04a1bb1c74dcc73b091223ed67936.glb b/.godot/imported/plant_bushTriangle-12f04a1bb1c74dcc73b091223ed67936.glb new file mode 100644 index 0000000..dfe8349 Binary files /dev/null and b/.godot/imported/plant_bushTriangle-12f04a1bb1c74dcc73b091223ed67936.glb differ diff --git a/.godot/imported/plant_bushTriangle.fbx-12f04a1bb1c74dcc73b091223ed67936.md5 b/.godot/imported/plant_bushTriangle.fbx-12f04a1bb1c74dcc73b091223ed67936.md5 new file mode 100644 index 0000000..1ce830c --- /dev/null +++ b/.godot/imported/plant_bushTriangle.fbx-12f04a1bb1c74dcc73b091223ed67936.md5 @@ -0,0 +1,2 @@ +source_md5="499ffe6109196070b2bf2665d18b2e22" +dest_md5="b0c2df2de903dd2ae126e5e0d293eea8" diff --git a/.godot/imported/plant_bushTriangle.fbx-12f04a1bb1c74dcc73b091223ed67936.scn b/.godot/imported/plant_bushTriangle.fbx-12f04a1bb1c74dcc73b091223ed67936.scn new file mode 100644 index 0000000..5f20c96 Binary files /dev/null and b/.godot/imported/plant_bushTriangle.fbx-12f04a1bb1c74dcc73b091223ed67936.scn differ diff --git a/.godot/imported/plant_flatShort-0cfbd1524333b1ef1e5c4fe9c47e4c5a.glb b/.godot/imported/plant_flatShort-0cfbd1524333b1ef1e5c4fe9c47e4c5a.glb new file mode 100644 index 0000000..fc3a9aa Binary files /dev/null and b/.godot/imported/plant_flatShort-0cfbd1524333b1ef1e5c4fe9c47e4c5a.glb differ diff --git a/.godot/imported/plant_flatShort.fbx-0cfbd1524333b1ef1e5c4fe9c47e4c5a.md5 b/.godot/imported/plant_flatShort.fbx-0cfbd1524333b1ef1e5c4fe9c47e4c5a.md5 new file mode 100644 index 0000000..6f2a254 --- /dev/null +++ b/.godot/imported/plant_flatShort.fbx-0cfbd1524333b1ef1e5c4fe9c47e4c5a.md5 @@ -0,0 +1,2 @@ +source_md5="1788cedae79603b46b0138dc2902ce45" +dest_md5="2c4664df64828651419908c8ecc694cf" diff --git a/.godot/imported/plant_flatShort.fbx-0cfbd1524333b1ef1e5c4fe9c47e4c5a.scn b/.godot/imported/plant_flatShort.fbx-0cfbd1524333b1ef1e5c4fe9c47e4c5a.scn new file mode 100644 index 0000000..7bf32ff Binary files /dev/null and b/.godot/imported/plant_flatShort.fbx-0cfbd1524333b1ef1e5c4fe9c47e4c5a.scn differ diff --git a/.godot/imported/plant_flatTall-7d722f1a50b0ad72057655ba2777f42c.glb b/.godot/imported/plant_flatTall-7d722f1a50b0ad72057655ba2777f42c.glb new file mode 100644 index 0000000..1a5c275 Binary files /dev/null and b/.godot/imported/plant_flatTall-7d722f1a50b0ad72057655ba2777f42c.glb differ diff --git a/.godot/imported/plant_flatTall.fbx-7d722f1a50b0ad72057655ba2777f42c.md5 b/.godot/imported/plant_flatTall.fbx-7d722f1a50b0ad72057655ba2777f42c.md5 new file mode 100644 index 0000000..21991d0 --- /dev/null +++ b/.godot/imported/plant_flatTall.fbx-7d722f1a50b0ad72057655ba2777f42c.md5 @@ -0,0 +1,2 @@ +source_md5="308d2ebfe122e40efc3cdbdbe52d30bb" +dest_md5="09141e9827d480f702ab0b1ecd1c8748" diff --git a/.godot/imported/plant_flatTall.fbx-7d722f1a50b0ad72057655ba2777f42c.scn b/.godot/imported/plant_flatTall.fbx-7d722f1a50b0ad72057655ba2777f42c.scn new file mode 100644 index 0000000..46cd077 Binary files /dev/null and b/.godot/imported/plant_flatTall.fbx-7d722f1a50b0ad72057655ba2777f42c.scn differ diff --git a/.godot/imported/platform_beach-5609dd5542466b88fac68c7a10eaa5f4.glb b/.godot/imported/platform_beach-5609dd5542466b88fac68c7a10eaa5f4.glb new file mode 100644 index 0000000..cecf95e Binary files /dev/null and b/.godot/imported/platform_beach-5609dd5542466b88fac68c7a10eaa5f4.glb differ diff --git a/.godot/imported/platform_beach.fbx-5609dd5542466b88fac68c7a10eaa5f4.md5 b/.godot/imported/platform_beach.fbx-5609dd5542466b88fac68c7a10eaa5f4.md5 new file mode 100644 index 0000000..6d09062 --- /dev/null +++ b/.godot/imported/platform_beach.fbx-5609dd5542466b88fac68c7a10eaa5f4.md5 @@ -0,0 +1,2 @@ +source_md5="cd50c7e099ad781ce40e1754c3f80fa1" +dest_md5="e96c92974208c4566b2b14116bd4897f" diff --git a/.godot/imported/platform_beach.fbx-5609dd5542466b88fac68c7a10eaa5f4.scn b/.godot/imported/platform_beach.fbx-5609dd5542466b88fac68c7a10eaa5f4.scn new file mode 100644 index 0000000..6489551 Binary files /dev/null and b/.godot/imported/platform_beach.fbx-5609dd5542466b88fac68c7a10eaa5f4.scn differ diff --git a/.godot/imported/platform_grass-5366eb81956fc07f71dec6048a660c5a.glb b/.godot/imported/platform_grass-5366eb81956fc07f71dec6048a660c5a.glb new file mode 100644 index 0000000..6778bdb Binary files /dev/null and b/.godot/imported/platform_grass-5366eb81956fc07f71dec6048a660c5a.glb differ diff --git a/.godot/imported/platform_grass.fbx-5366eb81956fc07f71dec6048a660c5a.md5 b/.godot/imported/platform_grass.fbx-5366eb81956fc07f71dec6048a660c5a.md5 new file mode 100644 index 0000000..aa0d38d --- /dev/null +++ b/.godot/imported/platform_grass.fbx-5366eb81956fc07f71dec6048a660c5a.md5 @@ -0,0 +1,2 @@ +source_md5="a9fa02b90b0e8c253eec59eabbb2329f" +dest_md5="0338b2d9457746c97db81b063a429fb7" diff --git a/.godot/imported/platform_grass.fbx-5366eb81956fc07f71dec6048a660c5a.scn b/.godot/imported/platform_grass.fbx-5366eb81956fc07f71dec6048a660c5a.scn new file mode 100644 index 0000000..cba24d3 Binary files /dev/null and b/.godot/imported/platform_grass.fbx-5366eb81956fc07f71dec6048a660c5a.scn differ diff --git a/.godot/imported/platform_stone-b84c90d1b313352dc50fa2e5e95fad0d.glb b/.godot/imported/platform_stone-b84c90d1b313352dc50fa2e5e95fad0d.glb new file mode 100644 index 0000000..7c8bb8e Binary files /dev/null and b/.godot/imported/platform_stone-b84c90d1b313352dc50fa2e5e95fad0d.glb differ diff --git a/.godot/imported/platform_stone.fbx-b84c90d1b313352dc50fa2e5e95fad0d.md5 b/.godot/imported/platform_stone.fbx-b84c90d1b313352dc50fa2e5e95fad0d.md5 new file mode 100644 index 0000000..7c5d177 --- /dev/null +++ b/.godot/imported/platform_stone.fbx-b84c90d1b313352dc50fa2e5e95fad0d.md5 @@ -0,0 +1,2 @@ +source_md5="b4cda06e26d09c9d28d60c8810fb6d65" +dest_md5="d1f797f1c859460c93dcf9d7ab17e469" diff --git a/.godot/imported/platform_stone.fbx-b84c90d1b313352dc50fa2e5e95fad0d.scn b/.godot/imported/platform_stone.fbx-b84c90d1b313352dc50fa2e5e95fad0d.scn new file mode 100644 index 0000000..924c957 Binary files /dev/null and b/.godot/imported/platform_stone.fbx-b84c90d1b313352dc50fa2e5e95fad0d.scn differ diff --git a/.godot/imported/poles-75680718f1c2782e2a617e7159fe984d.glb b/.godot/imported/poles-75680718f1c2782e2a617e7159fe984d.glb new file mode 100644 index 0000000..18faf9e Binary files /dev/null and b/.godot/imported/poles-75680718f1c2782e2a617e7159fe984d.glb differ diff --git a/.godot/imported/poles.fbx-75680718f1c2782e2a617e7159fe984d.md5 b/.godot/imported/poles.fbx-75680718f1c2782e2a617e7159fe984d.md5 new file mode 100644 index 0000000..cc738fd --- /dev/null +++ b/.godot/imported/poles.fbx-75680718f1c2782e2a617e7159fe984d.md5 @@ -0,0 +1,2 @@ +source_md5="d78c586f570b99a2d2d052465235889b" +dest_md5="e4aaefdaa9aa31c0bca957cd093d2307" diff --git a/.godot/imported/poles.fbx-75680718f1c2782e2a617e7159fe984d.scn b/.godot/imported/poles.fbx-75680718f1c2782e2a617e7159fe984d.scn new file mode 100644 index 0000000..b2d8051 Binary files /dev/null and b/.godot/imported/poles.fbx-75680718f1c2782e2a617e7159fe984d.scn differ diff --git a/.godot/imported/polesHorizontal-fc5e5a08288cbb0c68029646cd69913e.glb b/.godot/imported/polesHorizontal-fc5e5a08288cbb0c68029646cd69913e.glb new file mode 100644 index 0000000..2bcb790 Binary files /dev/null and b/.godot/imported/polesHorizontal-fc5e5a08288cbb0c68029646cd69913e.glb differ diff --git a/.godot/imported/polesHorizontal.fbx-fc5e5a08288cbb0c68029646cd69913e.md5 b/.godot/imported/polesHorizontal.fbx-fc5e5a08288cbb0c68029646cd69913e.md5 new file mode 100644 index 0000000..71c395b --- /dev/null +++ b/.godot/imported/polesHorizontal.fbx-fc5e5a08288cbb0c68029646cd69913e.md5 @@ -0,0 +1,2 @@ +source_md5="103549b4a5ba578d9e662dc699de1489" +dest_md5="9615fe6e3d9e6dfc54486c35f61ba2ea" diff --git a/.godot/imported/polesHorizontal.fbx-fc5e5a08288cbb0c68029646cd69913e.scn b/.godot/imported/polesHorizontal.fbx-fc5e5a08288cbb0c68029646cd69913e.scn new file mode 100644 index 0000000..df08061 Binary files /dev/null and b/.godot/imported/polesHorizontal.fbx-fc5e5a08288cbb0c68029646cd69913e.scn differ diff --git a/.godot/imported/police-811b2974777e8acbf7854256c0f04cd9_colormap.png-f79e090b9bf74e65d2b8da71db79e3ca.md5 b/.godot/imported/police-811b2974777e8acbf7854256c0f04cd9_colormap.png-f79e090b9bf74e65d2b8da71db79e3ca.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/police-811b2974777e8acbf7854256c0f04cd9_colormap.png-f79e090b9bf74e65d2b8da71db79e3ca.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/police-811b2974777e8acbf7854256c0f04cd9_colormap.png-f79e090b9bf74e65d2b8da71db79e3ca.s3tc.ctex b/.godot/imported/police-811b2974777e8acbf7854256c0f04cd9_colormap.png-f79e090b9bf74e65d2b8da71db79e3ca.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/police-811b2974777e8acbf7854256c0f04cd9_colormap.png-f79e090b9bf74e65d2b8da71db79e3ca.s3tc.ctex differ diff --git a/.godot/imported/police-aabc120e77056c144e2e39fcd4c64750.glb b/.godot/imported/police-aabc120e77056c144e2e39fcd4c64750.glb new file mode 100644 index 0000000..b85cb38 Binary files /dev/null and b/.godot/imported/police-aabc120e77056c144e2e39fcd4c64750.glb differ diff --git a/.godot/imported/police-aabc120e77056c144e2e39fcd4c64750_colormap.png-960322e492137d908af3ce2f59292a44.md5 b/.godot/imported/police-aabc120e77056c144e2e39fcd4c64750_colormap.png-960322e492137d908af3ce2f59292a44.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/police-aabc120e77056c144e2e39fcd4c64750_colormap.png-960322e492137d908af3ce2f59292a44.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/police-aabc120e77056c144e2e39fcd4c64750_colormap.png-960322e492137d908af3ce2f59292a44.s3tc.ctex b/.godot/imported/police-aabc120e77056c144e2e39fcd4c64750_colormap.png-960322e492137d908af3ce2f59292a44.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/police-aabc120e77056c144e2e39fcd4c64750_colormap.png-960322e492137d908af3ce2f59292a44.s3tc.ctex differ diff --git a/.godot/imported/police.fbx-aabc120e77056c144e2e39fcd4c64750.md5 b/.godot/imported/police.fbx-aabc120e77056c144e2e39fcd4c64750.md5 new file mode 100644 index 0000000..054cd39 --- /dev/null +++ b/.godot/imported/police.fbx-aabc120e77056c144e2e39fcd4c64750.md5 @@ -0,0 +1,2 @@ +source_md5="4fe01b33cba4c8c2f82b20fcca58349c" +dest_md5="89245ced37f295d56b01bda81cf6e4e3" diff --git a/.godot/imported/police.fbx-aabc120e77056c144e2e39fcd4c64750.scn b/.godot/imported/police.fbx-aabc120e77056c144e2e39fcd4c64750.scn new file mode 100644 index 0000000..7d4aae0 Binary files /dev/null and b/.godot/imported/police.fbx-aabc120e77056c144e2e39fcd4c64750.scn differ diff --git a/.godot/imported/pot_large-17955296bc490beaafcadaaf2a351a98.glb b/.godot/imported/pot_large-17955296bc490beaafcadaaf2a351a98.glb new file mode 100644 index 0000000..4955ff6 Binary files /dev/null and b/.godot/imported/pot_large-17955296bc490beaafcadaaf2a351a98.glb differ diff --git a/.godot/imported/pot_large.fbx-17955296bc490beaafcadaaf2a351a98.md5 b/.godot/imported/pot_large.fbx-17955296bc490beaafcadaaf2a351a98.md5 new file mode 100644 index 0000000..ab56a75 --- /dev/null +++ b/.godot/imported/pot_large.fbx-17955296bc490beaafcadaaf2a351a98.md5 @@ -0,0 +1,2 @@ +source_md5="b2e5f612e242472832de8d963dcc3733" +dest_md5="feaac13d759952a99bcf5aecd4f5aeca" diff --git a/.godot/imported/pot_large.fbx-17955296bc490beaafcadaaf2a351a98.scn b/.godot/imported/pot_large.fbx-17955296bc490beaafcadaaf2a351a98.scn new file mode 100644 index 0000000..9d04e1c Binary files /dev/null and b/.godot/imported/pot_large.fbx-17955296bc490beaafcadaaf2a351a98.scn differ diff --git a/.godot/imported/pot_small-7837efebe6dd482e6b582fc667a80bc5.glb b/.godot/imported/pot_small-7837efebe6dd482e6b582fc667a80bc5.glb new file mode 100644 index 0000000..9727fec Binary files /dev/null and b/.godot/imported/pot_small-7837efebe6dd482e6b582fc667a80bc5.glb differ diff --git a/.godot/imported/pot_small.fbx-7837efebe6dd482e6b582fc667a80bc5.md5 b/.godot/imported/pot_small.fbx-7837efebe6dd482e6b582fc667a80bc5.md5 new file mode 100644 index 0000000..cc1c4bb --- /dev/null +++ b/.godot/imported/pot_small.fbx-7837efebe6dd482e6b582fc667a80bc5.md5 @@ -0,0 +1,2 @@ +source_md5="69024bd0a5ac7df381dbcee56cb779a0" +dest_md5="b3d0681307634ca281d98a1a5062c195" diff --git a/.godot/imported/pot_small.fbx-7837efebe6dd482e6b582fc667a80bc5.scn b/.godot/imported/pot_small.fbx-7837efebe6dd482e6b582fc667a80bc5.scn new file mode 100644 index 0000000..9693268 Binary files /dev/null and b/.godot/imported/pot_small.fbx-7837efebe6dd482e6b582fc667a80bc5.scn differ diff --git a/.godot/imported/race-19495721e3b762b6796c229453102098_colormap.png-3ce3ad4c25ccb28f28fb19348204db00.md5 b/.godot/imported/race-19495721e3b762b6796c229453102098_colormap.png-3ce3ad4c25ccb28f28fb19348204db00.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/race-19495721e3b762b6796c229453102098_colormap.png-3ce3ad4c25ccb28f28fb19348204db00.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/race-19495721e3b762b6796c229453102098_colormap.png-3ce3ad4c25ccb28f28fb19348204db00.s3tc.ctex b/.godot/imported/race-19495721e3b762b6796c229453102098_colormap.png-3ce3ad4c25ccb28f28fb19348204db00.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/race-19495721e3b762b6796c229453102098_colormap.png-3ce3ad4c25ccb28f28fb19348204db00.s3tc.ctex differ diff --git a/.godot/imported/race-45b9541950bc0a23cf51298208251a0e.glb b/.godot/imported/race-45b9541950bc0a23cf51298208251a0e.glb new file mode 100644 index 0000000..ae865ab Binary files /dev/null and b/.godot/imported/race-45b9541950bc0a23cf51298208251a0e.glb differ diff --git a/.godot/imported/race-45b9541950bc0a23cf51298208251a0e_colormap.png-21d15e2f14d2e0c2550806e983b7da36.md5 b/.godot/imported/race-45b9541950bc0a23cf51298208251a0e_colormap.png-21d15e2f14d2e0c2550806e983b7da36.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/race-45b9541950bc0a23cf51298208251a0e_colormap.png-21d15e2f14d2e0c2550806e983b7da36.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/race-45b9541950bc0a23cf51298208251a0e_colormap.png-21d15e2f14d2e0c2550806e983b7da36.s3tc.ctex b/.godot/imported/race-45b9541950bc0a23cf51298208251a0e_colormap.png-21d15e2f14d2e0c2550806e983b7da36.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/race-45b9541950bc0a23cf51298208251a0e_colormap.png-21d15e2f14d2e0c2550806e983b7da36.s3tc.ctex differ diff --git a/.godot/imported/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png-1183fc144e4efa1baa66a0f41eb7f5a7.md5 b/.godot/imported/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png-1183fc144e4efa1baa66a0f41eb7f5a7.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png-1183fc144e4efa1baa66a0f41eb7f5a7.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png-1183fc144e4efa1baa66a0f41eb7f5a7.s3tc.ctex b/.godot/imported/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png-1183fc144e4efa1baa66a0f41eb7f5a7.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png-1183fc144e4efa1baa66a0f41eb7f5a7.s3tc.ctex differ diff --git a/.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63.glb b/.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63.glb new file mode 100644 index 0000000..5634f4a Binary files /dev/null and b/.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63.glb differ diff --git a/.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png-3de7528a6e9d7d465de4c7588abc7bfa.md5 b/.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png-3de7528a6e9d7d465de4c7588abc7bfa.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png-3de7528a6e9d7d465de4c7588abc7bfa.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png-3de7528a6e9d7d465de4c7588abc7bfa.s3tc.ctex b/.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png-3de7528a6e9d7d465de4c7588abc7bfa.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png-3de7528a6e9d7d465de4c7588abc7bfa.s3tc.ctex differ diff --git a/.godot/imported/race-future.fbx-dbad115cdb6d0d3ecb5686cf0cef0d63.md5 b/.godot/imported/race-future.fbx-dbad115cdb6d0d3ecb5686cf0cef0d63.md5 new file mode 100644 index 0000000..bbe7c07 --- /dev/null +++ b/.godot/imported/race-future.fbx-dbad115cdb6d0d3ecb5686cf0cef0d63.md5 @@ -0,0 +1,2 @@ +source_md5="ba091d7ce8d48bfcc8bbc97140a839c9" +dest_md5="1923d412884c7d585a3aea28c19ad83a" diff --git a/.godot/imported/race-future.fbx-dbad115cdb6d0d3ecb5686cf0cef0d63.scn b/.godot/imported/race-future.fbx-dbad115cdb6d0d3ecb5686cf0cef0d63.scn new file mode 100644 index 0000000..7976e64 Binary files /dev/null and b/.godot/imported/race-future.fbx-dbad115cdb6d0d3ecb5686cf0cef0d63.scn differ diff --git a/.godot/imported/race.fbx-45b9541950bc0a23cf51298208251a0e.md5 b/.godot/imported/race.fbx-45b9541950bc0a23cf51298208251a0e.md5 new file mode 100644 index 0000000..05dd1fa --- /dev/null +++ b/.godot/imported/race.fbx-45b9541950bc0a23cf51298208251a0e.md5 @@ -0,0 +1,2 @@ +source_md5="7f564e9efe8c83b94d1871b547c5f5d5" +dest_md5="6ba447a59fd354c7fd09501809f8cefa" diff --git a/.godot/imported/race.fbx-45b9541950bc0a23cf51298208251a0e.scn b/.godot/imported/race.fbx-45b9541950bc0a23cf51298208251a0e.scn new file mode 100644 index 0000000..4838d09 Binary files /dev/null and b/.godot/imported/race.fbx-45b9541950bc0a23cf51298208251a0e.scn differ diff --git a/.godot/imported/road-4b17e8e83ae45f54bda4e597843539fa.glb b/.godot/imported/road-4b17e8e83ae45f54bda4e597843539fa.glb new file mode 100644 index 0000000..f38a8c5 Binary files /dev/null and b/.godot/imported/road-4b17e8e83ae45f54bda4e597843539fa.glb differ diff --git a/.godot/imported/road.fbx-4b17e8e83ae45f54bda4e597843539fa.md5 b/.godot/imported/road.fbx-4b17e8e83ae45f54bda4e597843539fa.md5 new file mode 100644 index 0000000..0f39210 --- /dev/null +++ b/.godot/imported/road.fbx-4b17e8e83ae45f54bda4e597843539fa.md5 @@ -0,0 +1,2 @@ +source_md5="dd474582a91453fdd2f47825277b36d7" +dest_md5="cd688931bb5f393dfbac36a898b1db65" diff --git a/.godot/imported/road.fbx-4b17e8e83ae45f54bda4e597843539fa.scn b/.godot/imported/road.fbx-4b17e8e83ae45f54bda4e597843539fa.scn new file mode 100644 index 0000000..91001b6 Binary files /dev/null and b/.godot/imported/road.fbx-4b17e8e83ae45f54bda4e597843539fa.scn differ diff --git a/.godot/imported/roadBend-cfd6320c242feb2f77874b8cea76e6e9.glb b/.godot/imported/roadBend-cfd6320c242feb2f77874b8cea76e6e9.glb new file mode 100644 index 0000000..993ca50 Binary files /dev/null and b/.godot/imported/roadBend-cfd6320c242feb2f77874b8cea76e6e9.glb differ diff --git a/.godot/imported/roadBend.fbx-cfd6320c242feb2f77874b8cea76e6e9.md5 b/.godot/imported/roadBend.fbx-cfd6320c242feb2f77874b8cea76e6e9.md5 new file mode 100644 index 0000000..6a81f90 --- /dev/null +++ b/.godot/imported/roadBend.fbx-cfd6320c242feb2f77874b8cea76e6e9.md5 @@ -0,0 +1,2 @@ +source_md5="cfc23a477a7a93b1dfe204ccec173a32" +dest_md5="a42842f49d9b80615476bac4925e9cf2" diff --git a/.godot/imported/roadBend.fbx-cfd6320c242feb2f77874b8cea76e6e9.scn b/.godot/imported/roadBend.fbx-cfd6320c242feb2f77874b8cea76e6e9.scn new file mode 100644 index 0000000..8489f99 Binary files /dev/null and b/.godot/imported/roadBend.fbx-cfd6320c242feb2f77874b8cea76e6e9.scn differ diff --git a/.godot/imported/roadCorner-d6c04d412ee6c12f380b43145a83a90a.glb b/.godot/imported/roadCorner-d6c04d412ee6c12f380b43145a83a90a.glb new file mode 100644 index 0000000..0ce74f3 Binary files /dev/null and b/.godot/imported/roadCorner-d6c04d412ee6c12f380b43145a83a90a.glb differ diff --git a/.godot/imported/roadCorner.fbx-d6c04d412ee6c12f380b43145a83a90a.md5 b/.godot/imported/roadCorner.fbx-d6c04d412ee6c12f380b43145a83a90a.md5 new file mode 100644 index 0000000..d4206f0 --- /dev/null +++ b/.godot/imported/roadCorner.fbx-d6c04d412ee6c12f380b43145a83a90a.md5 @@ -0,0 +1,2 @@ +source_md5="80513f3e948ad5d42b8442a75b34de57" +dest_md5="4bda57bd91544f4eae7045665eefd838" diff --git a/.godot/imported/roadCorner.fbx-d6c04d412ee6c12f380b43145a83a90a.scn b/.godot/imported/roadCorner.fbx-d6c04d412ee6c12f380b43145a83a90a.scn new file mode 100644 index 0000000..34d3f7f Binary files /dev/null and b/.godot/imported/roadCorner.fbx-d6c04d412ee6c12f380b43145a83a90a.scn differ diff --git a/.godot/imported/roadCornerInner-8eb867371637dcc2005ac1427000ea16.glb b/.godot/imported/roadCornerInner-8eb867371637dcc2005ac1427000ea16.glb new file mode 100644 index 0000000..d08b06d Binary files /dev/null and b/.godot/imported/roadCornerInner-8eb867371637dcc2005ac1427000ea16.glb differ diff --git a/.godot/imported/roadCornerInner.fbx-8eb867371637dcc2005ac1427000ea16.md5 b/.godot/imported/roadCornerInner.fbx-8eb867371637dcc2005ac1427000ea16.md5 new file mode 100644 index 0000000..166fe07 --- /dev/null +++ b/.godot/imported/roadCornerInner.fbx-8eb867371637dcc2005ac1427000ea16.md5 @@ -0,0 +1,2 @@ +source_md5="1331431d53d30e4da0d9daf55721fdf2" +dest_md5="82e30641fdc704bc9de6df69ec7c73f8" diff --git a/.godot/imported/roadCornerInner.fbx-8eb867371637dcc2005ac1427000ea16.scn b/.godot/imported/roadCornerInner.fbx-8eb867371637dcc2005ac1427000ea16.scn new file mode 100644 index 0000000..5b7f530 Binary files /dev/null and b/.godot/imported/roadCornerInner.fbx-8eb867371637dcc2005ac1427000ea16.scn differ diff --git a/.godot/imported/roadCurb-c6c700f57ebad5fcd0f411081f01328c.glb b/.godot/imported/roadCurb-c6c700f57ebad5fcd0f411081f01328c.glb new file mode 100644 index 0000000..4813911 Binary files /dev/null and b/.godot/imported/roadCurb-c6c700f57ebad5fcd0f411081f01328c.glb differ diff --git a/.godot/imported/roadCurb.fbx-c6c700f57ebad5fcd0f411081f01328c.md5 b/.godot/imported/roadCurb.fbx-c6c700f57ebad5fcd0f411081f01328c.md5 new file mode 100644 index 0000000..df30f2b --- /dev/null +++ b/.godot/imported/roadCurb.fbx-c6c700f57ebad5fcd0f411081f01328c.md5 @@ -0,0 +1,2 @@ +source_md5="c25a4bbf9fe4a3f2142e3410a1e26cc7" +dest_md5="2a34494288a04ae2fcfbdbc08c84675a" diff --git a/.godot/imported/roadCurb.fbx-c6c700f57ebad5fcd0f411081f01328c.scn b/.godot/imported/roadCurb.fbx-c6c700f57ebad5fcd0f411081f01328c.scn new file mode 100644 index 0000000..96c7f99 Binary files /dev/null and b/.godot/imported/roadCurb.fbx-c6c700f57ebad5fcd0f411081f01328c.scn differ diff --git a/.godot/imported/roadCurbEnd-d1ef087f07579847ab64f70fc9e6087e.glb b/.godot/imported/roadCurbEnd-d1ef087f07579847ab64f70fc9e6087e.glb new file mode 100644 index 0000000..059ed96 Binary files /dev/null and b/.godot/imported/roadCurbEnd-d1ef087f07579847ab64f70fc9e6087e.glb differ diff --git a/.godot/imported/roadCurbEnd.fbx-d1ef087f07579847ab64f70fc9e6087e.md5 b/.godot/imported/roadCurbEnd.fbx-d1ef087f07579847ab64f70fc9e6087e.md5 new file mode 100644 index 0000000..7813fcf --- /dev/null +++ b/.godot/imported/roadCurbEnd.fbx-d1ef087f07579847ab64f70fc9e6087e.md5 @@ -0,0 +1,2 @@ +source_md5="94661c6a0e79728403e44ccefa557e48" +dest_md5="557fb64f7bd417b9fde11219c384d90e" diff --git a/.godot/imported/roadCurbEnd.fbx-d1ef087f07579847ab64f70fc9e6087e.scn b/.godot/imported/roadCurbEnd.fbx-d1ef087f07579847ab64f70fc9e6087e.scn new file mode 100644 index 0000000..700be72 Binary files /dev/null and b/.godot/imported/roadCurbEnd.fbx-d1ef087f07579847ab64f70fc9e6087e.scn differ diff --git a/.godot/imported/roadEdge-a1e7b1e146b77116911b8e43b63e45b7.glb b/.godot/imported/roadEdge-a1e7b1e146b77116911b8e43b63e45b7.glb new file mode 100644 index 0000000..8486ba5 Binary files /dev/null and b/.godot/imported/roadEdge-a1e7b1e146b77116911b8e43b63e45b7.glb differ diff --git a/.godot/imported/roadEdge.fbx-a1e7b1e146b77116911b8e43b63e45b7.md5 b/.godot/imported/roadEdge.fbx-a1e7b1e146b77116911b8e43b63e45b7.md5 new file mode 100644 index 0000000..5f81a4f --- /dev/null +++ b/.godot/imported/roadEdge.fbx-a1e7b1e146b77116911b8e43b63e45b7.md5 @@ -0,0 +1,2 @@ +source_md5="f7413b8e05b0848f8f3151666c223143" +dest_md5="b18ac831ad4c0971921b7806e1834de9" diff --git a/.godot/imported/roadEdge.fbx-a1e7b1e146b77116911b8e43b63e45b7.scn b/.godot/imported/roadEdge.fbx-a1e7b1e146b77116911b8e43b63e45b7.scn new file mode 100644 index 0000000..9c329e0 Binary files /dev/null and b/.godot/imported/roadEdge.fbx-a1e7b1e146b77116911b8e43b63e45b7.scn differ diff --git a/.godot/imported/roadEdgeSlope-78653215f27caf3b1f9383eb8b87d671.glb b/.godot/imported/roadEdgeSlope-78653215f27caf3b1f9383eb8b87d671.glb new file mode 100644 index 0000000..6b7d0ad Binary files /dev/null and b/.godot/imported/roadEdgeSlope-78653215f27caf3b1f9383eb8b87d671.glb differ diff --git a/.godot/imported/roadEdgeSlope.fbx-78653215f27caf3b1f9383eb8b87d671.md5 b/.godot/imported/roadEdgeSlope.fbx-78653215f27caf3b1f9383eb8b87d671.md5 new file mode 100644 index 0000000..c031871 --- /dev/null +++ b/.godot/imported/roadEdgeSlope.fbx-78653215f27caf3b1f9383eb8b87d671.md5 @@ -0,0 +1,2 @@ +source_md5="931720509377378122d3280fa2bd0db4" +dest_md5="cf73399a794a1de134bfe823724e8e3a" diff --git a/.godot/imported/roadEdgeSlope.fbx-78653215f27caf3b1f9383eb8b87d671.scn b/.godot/imported/roadEdgeSlope.fbx-78653215f27caf3b1f9383eb8b87d671.scn new file mode 100644 index 0000000..2aa9f2f Binary files /dev/null and b/.godot/imported/roadEdgeSlope.fbx-78653215f27caf3b1f9383eb8b87d671.scn differ diff --git a/.godot/imported/roadSlope-68bc0d8c75147ab63c62cabdceb3941f.glb b/.godot/imported/roadSlope-68bc0d8c75147ab63c62cabdceb3941f.glb new file mode 100644 index 0000000..ac9a522 Binary files /dev/null and b/.godot/imported/roadSlope-68bc0d8c75147ab63c62cabdceb3941f.glb differ diff --git a/.godot/imported/roadSlope.fbx-68bc0d8c75147ab63c62cabdceb3941f.md5 b/.godot/imported/roadSlope.fbx-68bc0d8c75147ab63c62cabdceb3941f.md5 new file mode 100644 index 0000000..a119535 --- /dev/null +++ b/.godot/imported/roadSlope.fbx-68bc0d8c75147ab63c62cabdceb3941f.md5 @@ -0,0 +1,2 @@ +source_md5="d12d14f93935ea1f548ae86fac447c90" +dest_md5="902daf6646ffe10253814e2153973243" diff --git a/.godot/imported/roadSlope.fbx-68bc0d8c75147ab63c62cabdceb3941f.scn b/.godot/imported/roadSlope.fbx-68bc0d8c75147ab63c62cabdceb3941f.scn new file mode 100644 index 0000000..79da748 Binary files /dev/null and b/.godot/imported/roadSlope.fbx-68bc0d8c75147ab63c62cabdceb3941f.scn differ diff --git a/.godot/imported/road_bend-2335fbfb7e51d88331864b49b5021724.glb b/.godot/imported/road_bend-2335fbfb7e51d88331864b49b5021724.glb new file mode 100644 index 0000000..971d9cc Binary files /dev/null and b/.godot/imported/road_bend-2335fbfb7e51d88331864b49b5021724.glb differ diff --git a/.godot/imported/road_bend.fbx-2335fbfb7e51d88331864b49b5021724.md5 b/.godot/imported/road_bend.fbx-2335fbfb7e51d88331864b49b5021724.md5 new file mode 100644 index 0000000..a9dd032 --- /dev/null +++ b/.godot/imported/road_bend.fbx-2335fbfb7e51d88331864b49b5021724.md5 @@ -0,0 +1,2 @@ +source_md5="76c295f772cd2278a769bd4d1b532af3" +dest_md5="060c59627e22d48e1224c850b3804fe9" diff --git a/.godot/imported/road_bend.fbx-2335fbfb7e51d88331864b49b5021724.scn b/.godot/imported/road_bend.fbx-2335fbfb7e51d88331864b49b5021724.scn new file mode 100644 index 0000000..a5deb76 Binary files /dev/null and b/.godot/imported/road_bend.fbx-2335fbfb7e51d88331864b49b5021724.scn differ diff --git a/.godot/imported/road_bendBarrier-c159822451c3889b73a8b1485f71b618.glb b/.godot/imported/road_bendBarrier-c159822451c3889b73a8b1485f71b618.glb new file mode 100644 index 0000000..c253c67 Binary files /dev/null and b/.godot/imported/road_bendBarrier-c159822451c3889b73a8b1485f71b618.glb differ diff --git a/.godot/imported/road_bendBarrier.fbx-c159822451c3889b73a8b1485f71b618.md5 b/.godot/imported/road_bendBarrier.fbx-c159822451c3889b73a8b1485f71b618.md5 new file mode 100644 index 0000000..7774b79 --- /dev/null +++ b/.godot/imported/road_bendBarrier.fbx-c159822451c3889b73a8b1485f71b618.md5 @@ -0,0 +1,2 @@ +source_md5="62aaf1b53470077cc75ba1b4fdccc557" +dest_md5="77463c480999ed8c16c3e8554b95a2d2" diff --git a/.godot/imported/road_bendBarrier.fbx-c159822451c3889b73a8b1485f71b618.scn b/.godot/imported/road_bendBarrier.fbx-c159822451c3889b73a8b1485f71b618.scn new file mode 100644 index 0000000..2e54eae Binary files /dev/null and b/.godot/imported/road_bendBarrier.fbx-c159822451c3889b73a8b1485f71b618.scn differ diff --git a/.godot/imported/road_bendSidewalk-6e5c57f654ade62d77cc2a4fc3f5bca5.glb b/.godot/imported/road_bendSidewalk-6e5c57f654ade62d77cc2a4fc3f5bca5.glb new file mode 100644 index 0000000..81a6fc4 Binary files /dev/null and b/.godot/imported/road_bendSidewalk-6e5c57f654ade62d77cc2a4fc3f5bca5.glb differ diff --git a/.godot/imported/road_bendSidewalk.fbx-6e5c57f654ade62d77cc2a4fc3f5bca5.md5 b/.godot/imported/road_bendSidewalk.fbx-6e5c57f654ade62d77cc2a4fc3f5bca5.md5 new file mode 100644 index 0000000..10fd437 --- /dev/null +++ b/.godot/imported/road_bendSidewalk.fbx-6e5c57f654ade62d77cc2a4fc3f5bca5.md5 @@ -0,0 +1,2 @@ +source_md5="d47982b2bd53732cedc175049b2bf120" +dest_md5="9c6f0a8e90025c0137ffbf5b5f7e3412" diff --git a/.godot/imported/road_bendSidewalk.fbx-6e5c57f654ade62d77cc2a4fc3f5bca5.scn b/.godot/imported/road_bendSidewalk.fbx-6e5c57f654ade62d77cc2a4fc3f5bca5.scn new file mode 100644 index 0000000..e6874e1 Binary files /dev/null and b/.godot/imported/road_bendSidewalk.fbx-6e5c57f654ade62d77cc2a4fc3f5bca5.scn differ diff --git a/.godot/imported/road_bendSquare-1d740009c50585a243c5c8d4ec923ba8.glb b/.godot/imported/road_bendSquare-1d740009c50585a243c5c8d4ec923ba8.glb new file mode 100644 index 0000000..e2ce6d7 Binary files /dev/null and b/.godot/imported/road_bendSquare-1d740009c50585a243c5c8d4ec923ba8.glb differ diff --git a/.godot/imported/road_bendSquare.fbx-1d740009c50585a243c5c8d4ec923ba8.md5 b/.godot/imported/road_bendSquare.fbx-1d740009c50585a243c5c8d4ec923ba8.md5 new file mode 100644 index 0000000..7d5fcbb --- /dev/null +++ b/.godot/imported/road_bendSquare.fbx-1d740009c50585a243c5c8d4ec923ba8.md5 @@ -0,0 +1,2 @@ +source_md5="d6bed8d578d0b65273f6a4e0999123f6" +dest_md5="87c5751269acbf2aedaf5a15b2038254" diff --git a/.godot/imported/road_bendSquare.fbx-1d740009c50585a243c5c8d4ec923ba8.scn b/.godot/imported/road_bendSquare.fbx-1d740009c50585a243c5c8d4ec923ba8.scn new file mode 100644 index 0000000..97fd47a Binary files /dev/null and b/.godot/imported/road_bendSquare.fbx-1d740009c50585a243c5c8d4ec923ba8.scn differ diff --git a/.godot/imported/road_bendSquareBarrier-c0850d934b2653074b3110ee7b33e76d.glb b/.godot/imported/road_bendSquareBarrier-c0850d934b2653074b3110ee7b33e76d.glb new file mode 100644 index 0000000..cad79e4 Binary files /dev/null and b/.godot/imported/road_bendSquareBarrier-c0850d934b2653074b3110ee7b33e76d.glb differ diff --git a/.godot/imported/road_bendSquareBarrier.fbx-c0850d934b2653074b3110ee7b33e76d.md5 b/.godot/imported/road_bendSquareBarrier.fbx-c0850d934b2653074b3110ee7b33e76d.md5 new file mode 100644 index 0000000..fdd866e --- /dev/null +++ b/.godot/imported/road_bendSquareBarrier.fbx-c0850d934b2653074b3110ee7b33e76d.md5 @@ -0,0 +1,2 @@ +source_md5="18913803f5e3ef0ba4839581ae02fa3c" +dest_md5="e0bfe69436464c2759fb1bbea49923f7" diff --git a/.godot/imported/road_bendSquareBarrier.fbx-c0850d934b2653074b3110ee7b33e76d.scn b/.godot/imported/road_bendSquareBarrier.fbx-c0850d934b2653074b3110ee7b33e76d.scn new file mode 100644 index 0000000..26a032e Binary files /dev/null and b/.godot/imported/road_bendSquareBarrier.fbx-c0850d934b2653074b3110ee7b33e76d.scn differ diff --git a/.godot/imported/road_bridge-404bc0433bc7c3b2c658d57f90941aee.glb b/.godot/imported/road_bridge-404bc0433bc7c3b2c658d57f90941aee.glb new file mode 100644 index 0000000..9fa7df6 Binary files /dev/null and b/.godot/imported/road_bridge-404bc0433bc7c3b2c658d57f90941aee.glb differ diff --git a/.godot/imported/road_bridge.fbx-404bc0433bc7c3b2c658d57f90941aee.md5 b/.godot/imported/road_bridge.fbx-404bc0433bc7c3b2c658d57f90941aee.md5 new file mode 100644 index 0000000..5ac7be8 --- /dev/null +++ b/.godot/imported/road_bridge.fbx-404bc0433bc7c3b2c658d57f90941aee.md5 @@ -0,0 +1,2 @@ +source_md5="2715f166348987280338baf1a018aafb" +dest_md5="7de4de9a2ca4abd36d1a12b0c2d473c7" diff --git a/.godot/imported/road_bridge.fbx-404bc0433bc7c3b2c658d57f90941aee.scn b/.godot/imported/road_bridge.fbx-404bc0433bc7c3b2c658d57f90941aee.scn new file mode 100644 index 0000000..6c1978d Binary files /dev/null and b/.godot/imported/road_bridge.fbx-404bc0433bc7c3b2c658d57f90941aee.scn differ diff --git a/.godot/imported/road_crossing-a2dbcb35272dfca2a91db651d91dc90a.glb b/.godot/imported/road_crossing-a2dbcb35272dfca2a91db651d91dc90a.glb new file mode 100644 index 0000000..8e2e63b Binary files /dev/null and b/.godot/imported/road_crossing-a2dbcb35272dfca2a91db651d91dc90a.glb differ diff --git a/.godot/imported/road_crossing.fbx-a2dbcb35272dfca2a91db651d91dc90a.md5 b/.godot/imported/road_crossing.fbx-a2dbcb35272dfca2a91db651d91dc90a.md5 new file mode 100644 index 0000000..e7d0048 --- /dev/null +++ b/.godot/imported/road_crossing.fbx-a2dbcb35272dfca2a91db651d91dc90a.md5 @@ -0,0 +1,2 @@ +source_md5="73a13f980ac380e82d8637ab5c67c368" +dest_md5="cc769492ecd9bbca65be6fb45fa951bb" diff --git a/.godot/imported/road_crossing.fbx-a2dbcb35272dfca2a91db651d91dc90a.scn b/.godot/imported/road_crossing.fbx-a2dbcb35272dfca2a91db651d91dc90a.scn new file mode 100644 index 0000000..e114cc0 Binary files /dev/null and b/.godot/imported/road_crossing.fbx-a2dbcb35272dfca2a91db651d91dc90a.scn differ diff --git a/.godot/imported/road_crossroad-d2d275b6531323a18b937857518487bb.glb b/.godot/imported/road_crossroad-d2d275b6531323a18b937857518487bb.glb new file mode 100644 index 0000000..a0674fd Binary files /dev/null and b/.godot/imported/road_crossroad-d2d275b6531323a18b937857518487bb.glb differ diff --git a/.godot/imported/road_crossroad.fbx-d2d275b6531323a18b937857518487bb.md5 b/.godot/imported/road_crossroad.fbx-d2d275b6531323a18b937857518487bb.md5 new file mode 100644 index 0000000..6d7419a --- /dev/null +++ b/.godot/imported/road_crossroad.fbx-d2d275b6531323a18b937857518487bb.md5 @@ -0,0 +1,2 @@ +source_md5="cebef877d5fe813feb78c9e4f73865af" +dest_md5="d1a7f5af52f0be199d8778a58d67b1fe" diff --git a/.godot/imported/road_crossroad.fbx-d2d275b6531323a18b937857518487bb.scn b/.godot/imported/road_crossroad.fbx-d2d275b6531323a18b937857518487bb.scn new file mode 100644 index 0000000..14c8dcf Binary files /dev/null and b/.godot/imported/road_crossroad.fbx-d2d275b6531323a18b937857518487bb.scn differ diff --git a/.godot/imported/road_crossroadBarrier-0dc959820cf88bf7d4fae0ff84366985.glb b/.godot/imported/road_crossroadBarrier-0dc959820cf88bf7d4fae0ff84366985.glb new file mode 100644 index 0000000..d47d061 Binary files /dev/null and b/.godot/imported/road_crossroadBarrier-0dc959820cf88bf7d4fae0ff84366985.glb differ diff --git a/.godot/imported/road_crossroadBarrier.fbx-0dc959820cf88bf7d4fae0ff84366985.md5 b/.godot/imported/road_crossroadBarrier.fbx-0dc959820cf88bf7d4fae0ff84366985.md5 new file mode 100644 index 0000000..9c9a467 --- /dev/null +++ b/.godot/imported/road_crossroadBarrier.fbx-0dc959820cf88bf7d4fae0ff84366985.md5 @@ -0,0 +1,2 @@ +source_md5="12b01f5c575d93c56f5408849c002ad5" +dest_md5="b0e59e94ca4720fc60533a0a07d6c0df" diff --git a/.godot/imported/road_crossroadBarrier.fbx-0dc959820cf88bf7d4fae0ff84366985.scn b/.godot/imported/road_crossroadBarrier.fbx-0dc959820cf88bf7d4fae0ff84366985.scn new file mode 100644 index 0000000..6f2d87f Binary files /dev/null and b/.godot/imported/road_crossroadBarrier.fbx-0dc959820cf88bf7d4fae0ff84366985.scn differ diff --git a/.godot/imported/road_crossroadLine-40778678288ef95db7feeeae433e472f.glb b/.godot/imported/road_crossroadLine-40778678288ef95db7feeeae433e472f.glb new file mode 100644 index 0000000..253fa0b Binary files /dev/null and b/.godot/imported/road_crossroadLine-40778678288ef95db7feeeae433e472f.glb differ diff --git a/.godot/imported/road_crossroadLine.fbx-40778678288ef95db7feeeae433e472f.md5 b/.godot/imported/road_crossroadLine.fbx-40778678288ef95db7feeeae433e472f.md5 new file mode 100644 index 0000000..ec3639a --- /dev/null +++ b/.godot/imported/road_crossroadLine.fbx-40778678288ef95db7feeeae433e472f.md5 @@ -0,0 +1,2 @@ +source_md5="83e378edb605e1662e5308db49205606" +dest_md5="2a4558172590d22e018c55cff383a55a" diff --git a/.godot/imported/road_crossroadLine.fbx-40778678288ef95db7feeeae433e472f.scn b/.godot/imported/road_crossroadLine.fbx-40778678288ef95db7feeeae433e472f.scn new file mode 100644 index 0000000..5e43bd6 Binary files /dev/null and b/.godot/imported/road_crossroadLine.fbx-40778678288ef95db7feeeae433e472f.scn differ diff --git a/.godot/imported/road_crossroadPath-8a5b9c5256731ece19d14c6d3c24f14f.glb b/.godot/imported/road_crossroadPath-8a5b9c5256731ece19d14c6d3c24f14f.glb new file mode 100644 index 0000000..838adb4 Binary files /dev/null and b/.godot/imported/road_crossroadPath-8a5b9c5256731ece19d14c6d3c24f14f.glb differ diff --git a/.godot/imported/road_crossroadPath.fbx-8a5b9c5256731ece19d14c6d3c24f14f.md5 b/.godot/imported/road_crossroadPath.fbx-8a5b9c5256731ece19d14c6d3c24f14f.md5 new file mode 100644 index 0000000..403fb9b --- /dev/null +++ b/.godot/imported/road_crossroadPath.fbx-8a5b9c5256731ece19d14c6d3c24f14f.md5 @@ -0,0 +1,2 @@ +source_md5="ca7f02631949f54228f5cc48011c7e0d" +dest_md5="8b56be5cdbf92049bf61d626828993e8" diff --git a/.godot/imported/road_crossroadPath.fbx-8a5b9c5256731ece19d14c6d3c24f14f.scn b/.godot/imported/road_crossroadPath.fbx-8a5b9c5256731ece19d14c6d3c24f14f.scn new file mode 100644 index 0000000..4a1742c Binary files /dev/null and b/.godot/imported/road_crossroadPath.fbx-8a5b9c5256731ece19d14c6d3c24f14f.scn differ diff --git a/.godot/imported/road_curve-fa58100b2897e2eb7cabe3793665a961.glb b/.godot/imported/road_curve-fa58100b2897e2eb7cabe3793665a961.glb new file mode 100644 index 0000000..090aaec Binary files /dev/null and b/.godot/imported/road_curve-fa58100b2897e2eb7cabe3793665a961.glb differ diff --git a/.godot/imported/road_curve.fbx-fa58100b2897e2eb7cabe3793665a961.md5 b/.godot/imported/road_curve.fbx-fa58100b2897e2eb7cabe3793665a961.md5 new file mode 100644 index 0000000..9432940 --- /dev/null +++ b/.godot/imported/road_curve.fbx-fa58100b2897e2eb7cabe3793665a961.md5 @@ -0,0 +1,2 @@ +source_md5="509de90c90f2fe6439885ad7ca4304e9" +dest_md5="4888ef1e5b13b3a2333700fddd48626f" diff --git a/.godot/imported/road_curve.fbx-fa58100b2897e2eb7cabe3793665a961.scn b/.godot/imported/road_curve.fbx-fa58100b2897e2eb7cabe3793665a961.scn new file mode 100644 index 0000000..6d271a1 Binary files /dev/null and b/.godot/imported/road_curve.fbx-fa58100b2897e2eb7cabe3793665a961.scn differ diff --git a/.godot/imported/road_curveBarrier-01988a31eb84cc48016efd5c84ce58d0.glb b/.godot/imported/road_curveBarrier-01988a31eb84cc48016efd5c84ce58d0.glb new file mode 100644 index 0000000..9603ec2 Binary files /dev/null and b/.godot/imported/road_curveBarrier-01988a31eb84cc48016efd5c84ce58d0.glb differ diff --git a/.godot/imported/road_curveBarrier.fbx-01988a31eb84cc48016efd5c84ce58d0.md5 b/.godot/imported/road_curveBarrier.fbx-01988a31eb84cc48016efd5c84ce58d0.md5 new file mode 100644 index 0000000..b0e2af7 --- /dev/null +++ b/.godot/imported/road_curveBarrier.fbx-01988a31eb84cc48016efd5c84ce58d0.md5 @@ -0,0 +1,2 @@ +source_md5="1a2b6419f904b169f82ec210b5bdad82" +dest_md5="a16639cb7e7beab7903b211799c8eea0" diff --git a/.godot/imported/road_curveBarrier.fbx-01988a31eb84cc48016efd5c84ce58d0.scn b/.godot/imported/road_curveBarrier.fbx-01988a31eb84cc48016efd5c84ce58d0.scn new file mode 100644 index 0000000..5c005ce Binary files /dev/null and b/.godot/imported/road_curveBarrier.fbx-01988a31eb84cc48016efd5c84ce58d0.scn differ diff --git a/.godot/imported/road_curveIntersection-9dec7cee2ed3c4d4885330051d70c1bc.glb b/.godot/imported/road_curveIntersection-9dec7cee2ed3c4d4885330051d70c1bc.glb new file mode 100644 index 0000000..0210f86 Binary files /dev/null and b/.godot/imported/road_curveIntersection-9dec7cee2ed3c4d4885330051d70c1bc.glb differ diff --git a/.godot/imported/road_curveIntersection.fbx-9dec7cee2ed3c4d4885330051d70c1bc.md5 b/.godot/imported/road_curveIntersection.fbx-9dec7cee2ed3c4d4885330051d70c1bc.md5 new file mode 100644 index 0000000..655199f --- /dev/null +++ b/.godot/imported/road_curveIntersection.fbx-9dec7cee2ed3c4d4885330051d70c1bc.md5 @@ -0,0 +1,2 @@ +source_md5="ee70166aa2f516d78e24e6b4a756cccb" +dest_md5="e25c36c0d2ae442a8eee24b3e9e6a504" diff --git a/.godot/imported/road_curveIntersection.fbx-9dec7cee2ed3c4d4885330051d70c1bc.scn b/.godot/imported/road_curveIntersection.fbx-9dec7cee2ed3c4d4885330051d70c1bc.scn new file mode 100644 index 0000000..e702909 Binary files /dev/null and b/.godot/imported/road_curveIntersection.fbx-9dec7cee2ed3c4d4885330051d70c1bc.scn differ diff --git a/.godot/imported/road_curveIntersectionBarrier-9734082e30ad8755e5cc91a5297b19e0.glb b/.godot/imported/road_curveIntersectionBarrier-9734082e30ad8755e5cc91a5297b19e0.glb new file mode 100644 index 0000000..bd87f71 Binary files /dev/null and b/.godot/imported/road_curveIntersectionBarrier-9734082e30ad8755e5cc91a5297b19e0.glb differ diff --git a/.godot/imported/road_curveIntersectionBarrier.fbx-9734082e30ad8755e5cc91a5297b19e0.md5 b/.godot/imported/road_curveIntersectionBarrier.fbx-9734082e30ad8755e5cc91a5297b19e0.md5 new file mode 100644 index 0000000..e1b3b30 --- /dev/null +++ b/.godot/imported/road_curveIntersectionBarrier.fbx-9734082e30ad8755e5cc91a5297b19e0.md5 @@ -0,0 +1,2 @@ +source_md5="30b011b4ef58f81fcc3b89f892ffb169" +dest_md5="8d3cca6766926d9e0a31f7ea8cd899e1" diff --git a/.godot/imported/road_curveIntersectionBarrier.fbx-9734082e30ad8755e5cc91a5297b19e0.scn b/.godot/imported/road_curveIntersectionBarrier.fbx-9734082e30ad8755e5cc91a5297b19e0.scn new file mode 100644 index 0000000..2d9f858 Binary files /dev/null and b/.godot/imported/road_curveIntersectionBarrier.fbx-9734082e30ad8755e5cc91a5297b19e0.scn differ diff --git a/.godot/imported/road_curvePavement-99fdcc6d28323301a317a20c79a2ee1c.glb b/.godot/imported/road_curvePavement-99fdcc6d28323301a317a20c79a2ee1c.glb new file mode 100644 index 0000000..27393d9 Binary files /dev/null and b/.godot/imported/road_curvePavement-99fdcc6d28323301a317a20c79a2ee1c.glb differ diff --git a/.godot/imported/road_curvePavement.fbx-99fdcc6d28323301a317a20c79a2ee1c.md5 b/.godot/imported/road_curvePavement.fbx-99fdcc6d28323301a317a20c79a2ee1c.md5 new file mode 100644 index 0000000..275b120 --- /dev/null +++ b/.godot/imported/road_curvePavement.fbx-99fdcc6d28323301a317a20c79a2ee1c.md5 @@ -0,0 +1,2 @@ +source_md5="387bbb396f076f854ec2194ef360a9cd" +dest_md5="bd42d854797e7f6627ee274c28fadb2a" diff --git a/.godot/imported/road_curvePavement.fbx-99fdcc6d28323301a317a20c79a2ee1c.scn b/.godot/imported/road_curvePavement.fbx-99fdcc6d28323301a317a20c79a2ee1c.scn new file mode 100644 index 0000000..6d7b0cd Binary files /dev/null and b/.godot/imported/road_curvePavement.fbx-99fdcc6d28323301a317a20c79a2ee1c.scn differ diff --git a/.godot/imported/road_drivewayDouble-909fc4f02b3a97359cc38f9d3fb80304.glb b/.godot/imported/road_drivewayDouble-909fc4f02b3a97359cc38f9d3fb80304.glb new file mode 100644 index 0000000..a100d8d Binary files /dev/null and b/.godot/imported/road_drivewayDouble-909fc4f02b3a97359cc38f9d3fb80304.glb differ diff --git a/.godot/imported/road_drivewayDouble.fbx-909fc4f02b3a97359cc38f9d3fb80304.md5 b/.godot/imported/road_drivewayDouble.fbx-909fc4f02b3a97359cc38f9d3fb80304.md5 new file mode 100644 index 0000000..66c762c --- /dev/null +++ b/.godot/imported/road_drivewayDouble.fbx-909fc4f02b3a97359cc38f9d3fb80304.md5 @@ -0,0 +1,2 @@ +source_md5="b3bcc86bee0ba20286ff05f3252e85b4" +dest_md5="61cf5d7f8dde3654d4a7154e41e2e676" diff --git a/.godot/imported/road_drivewayDouble.fbx-909fc4f02b3a97359cc38f9d3fb80304.scn b/.godot/imported/road_drivewayDouble.fbx-909fc4f02b3a97359cc38f9d3fb80304.scn new file mode 100644 index 0000000..0f16dbd Binary files /dev/null and b/.godot/imported/road_drivewayDouble.fbx-909fc4f02b3a97359cc38f9d3fb80304.scn differ diff --git a/.godot/imported/road_drivewayDoubleBarrier-702e1a33fc26cd4d2c19e538b29ed544.glb b/.godot/imported/road_drivewayDoubleBarrier-702e1a33fc26cd4d2c19e538b29ed544.glb new file mode 100644 index 0000000..17d2f75 Binary files /dev/null and b/.godot/imported/road_drivewayDoubleBarrier-702e1a33fc26cd4d2c19e538b29ed544.glb differ diff --git a/.godot/imported/road_drivewayDoubleBarrier.fbx-702e1a33fc26cd4d2c19e538b29ed544.md5 b/.godot/imported/road_drivewayDoubleBarrier.fbx-702e1a33fc26cd4d2c19e538b29ed544.md5 new file mode 100644 index 0000000..491dba6 --- /dev/null +++ b/.godot/imported/road_drivewayDoubleBarrier.fbx-702e1a33fc26cd4d2c19e538b29ed544.md5 @@ -0,0 +1,2 @@ +source_md5="6a91083dffa43b434e88439ecdb9ff13" +dest_md5="371a20f7c0bed40d5cb79d578f3a93de" diff --git a/.godot/imported/road_drivewayDoubleBarrier.fbx-702e1a33fc26cd4d2c19e538b29ed544.scn b/.godot/imported/road_drivewayDoubleBarrier.fbx-702e1a33fc26cd4d2c19e538b29ed544.scn new file mode 100644 index 0000000..0e0893f Binary files /dev/null and b/.godot/imported/road_drivewayDoubleBarrier.fbx-702e1a33fc26cd4d2c19e538b29ed544.scn differ diff --git a/.godot/imported/road_drivewaySingle-984fabe10ef049266edb612bc1180337.glb b/.godot/imported/road_drivewaySingle-984fabe10ef049266edb612bc1180337.glb new file mode 100644 index 0000000..9855b1f Binary files /dev/null and b/.godot/imported/road_drivewaySingle-984fabe10ef049266edb612bc1180337.glb differ diff --git a/.godot/imported/road_drivewaySingle.fbx-984fabe10ef049266edb612bc1180337.md5 b/.godot/imported/road_drivewaySingle.fbx-984fabe10ef049266edb612bc1180337.md5 new file mode 100644 index 0000000..f0ad37d --- /dev/null +++ b/.godot/imported/road_drivewaySingle.fbx-984fabe10ef049266edb612bc1180337.md5 @@ -0,0 +1,2 @@ +source_md5="5cba5ff976fd6c9da1703a3b735fa6b1" +dest_md5="88ff10cfbaf26c92e36aa58a960e92ec" diff --git a/.godot/imported/road_drivewaySingle.fbx-984fabe10ef049266edb612bc1180337.scn b/.godot/imported/road_drivewaySingle.fbx-984fabe10ef049266edb612bc1180337.scn new file mode 100644 index 0000000..b581940 Binary files /dev/null and b/.godot/imported/road_drivewaySingle.fbx-984fabe10ef049266edb612bc1180337.scn differ diff --git a/.godot/imported/road_drivewaySingleBarrier-fcd11fc1fa0363243f7ab6b8db005c86.glb b/.godot/imported/road_drivewaySingleBarrier-fcd11fc1fa0363243f7ab6b8db005c86.glb new file mode 100644 index 0000000..aae9bbc Binary files /dev/null and b/.godot/imported/road_drivewaySingleBarrier-fcd11fc1fa0363243f7ab6b8db005c86.glb differ diff --git a/.godot/imported/road_drivewaySingleBarrier.fbx-fcd11fc1fa0363243f7ab6b8db005c86.md5 b/.godot/imported/road_drivewaySingleBarrier.fbx-fcd11fc1fa0363243f7ab6b8db005c86.md5 new file mode 100644 index 0000000..0efff2d --- /dev/null +++ b/.godot/imported/road_drivewaySingleBarrier.fbx-fcd11fc1fa0363243f7ab6b8db005c86.md5 @@ -0,0 +1,2 @@ +source_md5="2547f16024f2fb07847b27df77b46ec6" +dest_md5="4f7d1508810a55bcd2b2123bce789e1b" diff --git a/.godot/imported/road_drivewaySingleBarrier.fbx-fcd11fc1fa0363243f7ab6b8db005c86.scn b/.godot/imported/road_drivewaySingleBarrier.fbx-fcd11fc1fa0363243f7ab6b8db005c86.scn new file mode 100644 index 0000000..1285442 Binary files /dev/null and b/.godot/imported/road_drivewaySingleBarrier.fbx-fcd11fc1fa0363243f7ab6b8db005c86.scn differ diff --git a/.godot/imported/road_end-95ed120fded5105eeb733e94b86cd8f1.glb b/.godot/imported/road_end-95ed120fded5105eeb733e94b86cd8f1.glb new file mode 100644 index 0000000..4a29fbd Binary files /dev/null and b/.godot/imported/road_end-95ed120fded5105eeb733e94b86cd8f1.glb differ diff --git a/.godot/imported/road_end.fbx-95ed120fded5105eeb733e94b86cd8f1.md5 b/.godot/imported/road_end.fbx-95ed120fded5105eeb733e94b86cd8f1.md5 new file mode 100644 index 0000000..fb2e027 --- /dev/null +++ b/.godot/imported/road_end.fbx-95ed120fded5105eeb733e94b86cd8f1.md5 @@ -0,0 +1,2 @@ +source_md5="31b5d23d83ac2c3324d996b9f3a4af52" +dest_md5="60dc0f6fae2d9365145cce8c083cd9a9" diff --git a/.godot/imported/road_end.fbx-95ed120fded5105eeb733e94b86cd8f1.scn b/.godot/imported/road_end.fbx-95ed120fded5105eeb733e94b86cd8f1.scn new file mode 100644 index 0000000..3075d0f Binary files /dev/null and b/.godot/imported/road_end.fbx-95ed120fded5105eeb733e94b86cd8f1.scn differ diff --git a/.godot/imported/road_endBarrier-da03d679e58a514dca87719a40582643.glb b/.godot/imported/road_endBarrier-da03d679e58a514dca87719a40582643.glb new file mode 100644 index 0000000..b9e45e2 Binary files /dev/null and b/.godot/imported/road_endBarrier-da03d679e58a514dca87719a40582643.glb differ diff --git a/.godot/imported/road_endBarrier.fbx-da03d679e58a514dca87719a40582643.md5 b/.godot/imported/road_endBarrier.fbx-da03d679e58a514dca87719a40582643.md5 new file mode 100644 index 0000000..2e676a3 --- /dev/null +++ b/.godot/imported/road_endBarrier.fbx-da03d679e58a514dca87719a40582643.md5 @@ -0,0 +1,2 @@ +source_md5="7135302de36689a287a03cb41b372997" +dest_md5="98cfff0cc49c5a33bbe63ad02ab11283" diff --git a/.godot/imported/road_endBarrier.fbx-da03d679e58a514dca87719a40582643.scn b/.godot/imported/road_endBarrier.fbx-da03d679e58a514dca87719a40582643.scn new file mode 100644 index 0000000..0d9a345 Binary files /dev/null and b/.godot/imported/road_endBarrier.fbx-da03d679e58a514dca87719a40582643.scn differ diff --git a/.godot/imported/road_endRound-ce67ecc8bc488c2dc0543a6b953910dd.glb b/.godot/imported/road_endRound-ce67ecc8bc488c2dc0543a6b953910dd.glb new file mode 100644 index 0000000..8b0075a Binary files /dev/null and b/.godot/imported/road_endRound-ce67ecc8bc488c2dc0543a6b953910dd.glb differ diff --git a/.godot/imported/road_endRound.fbx-ce67ecc8bc488c2dc0543a6b953910dd.md5 b/.godot/imported/road_endRound.fbx-ce67ecc8bc488c2dc0543a6b953910dd.md5 new file mode 100644 index 0000000..a810895 --- /dev/null +++ b/.godot/imported/road_endRound.fbx-ce67ecc8bc488c2dc0543a6b953910dd.md5 @@ -0,0 +1,2 @@ +source_md5="3d464106f86288b889eec30bd7302ca5" +dest_md5="6eedfc12ee9d6e505445bab15da2f8a4" diff --git a/.godot/imported/road_endRound.fbx-ce67ecc8bc488c2dc0543a6b953910dd.scn b/.godot/imported/road_endRound.fbx-ce67ecc8bc488c2dc0543a6b953910dd.scn new file mode 100644 index 0000000..57475e2 Binary files /dev/null and b/.godot/imported/road_endRound.fbx-ce67ecc8bc488c2dc0543a6b953910dd.scn differ diff --git a/.godot/imported/road_endRoundBarrier-5030ebbdc8380945d34fb0321e7f1299.glb b/.godot/imported/road_endRoundBarrier-5030ebbdc8380945d34fb0321e7f1299.glb new file mode 100644 index 0000000..fa91773 Binary files /dev/null and b/.godot/imported/road_endRoundBarrier-5030ebbdc8380945d34fb0321e7f1299.glb differ diff --git a/.godot/imported/road_endRoundBarrier.fbx-5030ebbdc8380945d34fb0321e7f1299.md5 b/.godot/imported/road_endRoundBarrier.fbx-5030ebbdc8380945d34fb0321e7f1299.md5 new file mode 100644 index 0000000..4504a4e --- /dev/null +++ b/.godot/imported/road_endRoundBarrier.fbx-5030ebbdc8380945d34fb0321e7f1299.md5 @@ -0,0 +1,2 @@ +source_md5="bd852d715297b5b268a29f1bf4fb70fd" +dest_md5="632bbc0ddadcd909ec00ab7f8e7f7f92" diff --git a/.godot/imported/road_endRoundBarrier.fbx-5030ebbdc8380945d34fb0321e7f1299.scn b/.godot/imported/road_endRoundBarrier.fbx-5030ebbdc8380945d34fb0321e7f1299.scn new file mode 100644 index 0000000..5405c9b Binary files /dev/null and b/.godot/imported/road_endRoundBarrier.fbx-5030ebbdc8380945d34fb0321e7f1299.scn differ diff --git a/.godot/imported/road_intersection-f10346fc9721c1d279adbf15d631a2da.glb b/.godot/imported/road_intersection-f10346fc9721c1d279adbf15d631a2da.glb new file mode 100644 index 0000000..e55b3fb Binary files /dev/null and b/.godot/imported/road_intersection-f10346fc9721c1d279adbf15d631a2da.glb differ diff --git a/.godot/imported/road_intersection.fbx-f10346fc9721c1d279adbf15d631a2da.md5 b/.godot/imported/road_intersection.fbx-f10346fc9721c1d279adbf15d631a2da.md5 new file mode 100644 index 0000000..1908eb6 --- /dev/null +++ b/.godot/imported/road_intersection.fbx-f10346fc9721c1d279adbf15d631a2da.md5 @@ -0,0 +1,2 @@ +source_md5="109dd6ff0e63e8fc92906e2bd44476f4" +dest_md5="a67b1c97e3c19335bdb464ce1748e3d3" diff --git a/.godot/imported/road_intersection.fbx-f10346fc9721c1d279adbf15d631a2da.scn b/.godot/imported/road_intersection.fbx-f10346fc9721c1d279adbf15d631a2da.scn new file mode 100644 index 0000000..78d0900 Binary files /dev/null and b/.godot/imported/road_intersection.fbx-f10346fc9721c1d279adbf15d631a2da.scn differ diff --git a/.godot/imported/road_intersectionBarrier-f2f120862ca3d243c66da2a5c4dc9721.glb b/.godot/imported/road_intersectionBarrier-f2f120862ca3d243c66da2a5c4dc9721.glb new file mode 100644 index 0000000..7be746f Binary files /dev/null and b/.godot/imported/road_intersectionBarrier-f2f120862ca3d243c66da2a5c4dc9721.glb differ diff --git a/.godot/imported/road_intersectionBarrier.fbx-f2f120862ca3d243c66da2a5c4dc9721.md5 b/.godot/imported/road_intersectionBarrier.fbx-f2f120862ca3d243c66da2a5c4dc9721.md5 new file mode 100644 index 0000000..6c1bee9 --- /dev/null +++ b/.godot/imported/road_intersectionBarrier.fbx-f2f120862ca3d243c66da2a5c4dc9721.md5 @@ -0,0 +1,2 @@ +source_md5="191f00eb0326d7b26508acd611649cef" +dest_md5="bf3b449f5629b309910bcd5093b9ca51" diff --git a/.godot/imported/road_intersectionBarrier.fbx-f2f120862ca3d243c66da2a5c4dc9721.scn b/.godot/imported/road_intersectionBarrier.fbx-f2f120862ca3d243c66da2a5c4dc9721.scn new file mode 100644 index 0000000..0e63e97 Binary files /dev/null and b/.godot/imported/road_intersectionBarrier.fbx-f2f120862ca3d243c66da2a5c4dc9721.scn differ diff --git a/.godot/imported/road_intersectionLine-e4de199aeb66fb8c24873c566193d002.glb b/.godot/imported/road_intersectionLine-e4de199aeb66fb8c24873c566193d002.glb new file mode 100644 index 0000000..ae69c5a Binary files /dev/null and b/.godot/imported/road_intersectionLine-e4de199aeb66fb8c24873c566193d002.glb differ diff --git a/.godot/imported/road_intersectionLine.fbx-e4de199aeb66fb8c24873c566193d002.md5 b/.godot/imported/road_intersectionLine.fbx-e4de199aeb66fb8c24873c566193d002.md5 new file mode 100644 index 0000000..7529171 --- /dev/null +++ b/.godot/imported/road_intersectionLine.fbx-e4de199aeb66fb8c24873c566193d002.md5 @@ -0,0 +1,2 @@ +source_md5="d5848248692fe8af9d7afef6251bcfc3" +dest_md5="94d6fd5ce5e421c568fc81df5a19ffc0" diff --git a/.godot/imported/road_intersectionLine.fbx-e4de199aeb66fb8c24873c566193d002.scn b/.godot/imported/road_intersectionLine.fbx-e4de199aeb66fb8c24873c566193d002.scn new file mode 100644 index 0000000..f0112c4 Binary files /dev/null and b/.godot/imported/road_intersectionLine.fbx-e4de199aeb66fb8c24873c566193d002.scn differ diff --git a/.godot/imported/road_intersectionPath-1d0b3d0f3f065b41ab3cb8aa6ae6142c.glb b/.godot/imported/road_intersectionPath-1d0b3d0f3f065b41ab3cb8aa6ae6142c.glb new file mode 100644 index 0000000..5ef0c9f Binary files /dev/null and b/.godot/imported/road_intersectionPath-1d0b3d0f3f065b41ab3cb8aa6ae6142c.glb differ diff --git a/.godot/imported/road_intersectionPath.fbx-1d0b3d0f3f065b41ab3cb8aa6ae6142c.md5 b/.godot/imported/road_intersectionPath.fbx-1d0b3d0f3f065b41ab3cb8aa6ae6142c.md5 new file mode 100644 index 0000000..2894509 --- /dev/null +++ b/.godot/imported/road_intersectionPath.fbx-1d0b3d0f3f065b41ab3cb8aa6ae6142c.md5 @@ -0,0 +1,2 @@ +source_md5="c703d1ce39b94d106aefb970c5df4d2f" +dest_md5="5b61d3affec1fb6ce304e29c8b6e5400" diff --git a/.godot/imported/road_intersectionPath.fbx-1d0b3d0f3f065b41ab3cb8aa6ae6142c.scn b/.godot/imported/road_intersectionPath.fbx-1d0b3d0f3f065b41ab3cb8aa6ae6142c.scn new file mode 100644 index 0000000..ef192b6 Binary files /dev/null and b/.godot/imported/road_intersectionPath.fbx-1d0b3d0f3f065b41ab3cb8aa6ae6142c.scn differ diff --git a/.godot/imported/road_roundabout-7985b4afcb505561cc98fa6ced235e54.glb b/.godot/imported/road_roundabout-7985b4afcb505561cc98fa6ced235e54.glb new file mode 100644 index 0000000..203b915 Binary files /dev/null and b/.godot/imported/road_roundabout-7985b4afcb505561cc98fa6ced235e54.glb differ diff --git a/.godot/imported/road_roundabout.fbx-7985b4afcb505561cc98fa6ced235e54.md5 b/.godot/imported/road_roundabout.fbx-7985b4afcb505561cc98fa6ced235e54.md5 new file mode 100644 index 0000000..241a0d2 --- /dev/null +++ b/.godot/imported/road_roundabout.fbx-7985b4afcb505561cc98fa6ced235e54.md5 @@ -0,0 +1,2 @@ +source_md5="a2416e46d33d9ad6865174b9dbe2d3b0" +dest_md5="576176ebef32ad96a430dec64f9b7bea" diff --git a/.godot/imported/road_roundabout.fbx-7985b4afcb505561cc98fa6ced235e54.scn b/.godot/imported/road_roundabout.fbx-7985b4afcb505561cc98fa6ced235e54.scn new file mode 100644 index 0000000..5d8c9b2 Binary files /dev/null and b/.godot/imported/road_roundabout.fbx-7985b4afcb505561cc98fa6ced235e54.scn differ diff --git a/.godot/imported/road_roundaboutBarrier-a023d98ec3827c6abe5679f3d280f50c.glb b/.godot/imported/road_roundaboutBarrier-a023d98ec3827c6abe5679f3d280f50c.glb new file mode 100644 index 0000000..3fe1b3f Binary files /dev/null and b/.godot/imported/road_roundaboutBarrier-a023d98ec3827c6abe5679f3d280f50c.glb differ diff --git a/.godot/imported/road_roundaboutBarrier.fbx-a023d98ec3827c6abe5679f3d280f50c.md5 b/.godot/imported/road_roundaboutBarrier.fbx-a023d98ec3827c6abe5679f3d280f50c.md5 new file mode 100644 index 0000000..41cfd2e --- /dev/null +++ b/.godot/imported/road_roundaboutBarrier.fbx-a023d98ec3827c6abe5679f3d280f50c.md5 @@ -0,0 +1,2 @@ +source_md5="3930656bc14ab0baffbb9bcdb7c603cc" +dest_md5="10a54803a3e1e46b6200bfac42041bfe" diff --git a/.godot/imported/road_roundaboutBarrier.fbx-a023d98ec3827c6abe5679f3d280f50c.scn b/.godot/imported/road_roundaboutBarrier.fbx-a023d98ec3827c6abe5679f3d280f50c.scn new file mode 100644 index 0000000..40b0564 Binary files /dev/null and b/.godot/imported/road_roundaboutBarrier.fbx-a023d98ec3827c6abe5679f3d280f50c.scn differ diff --git a/.godot/imported/road_side-925f61d89e48aeb0eda84390c6a58420.glb b/.godot/imported/road_side-925f61d89e48aeb0eda84390c6a58420.glb new file mode 100644 index 0000000..8b571a0 Binary files /dev/null and b/.godot/imported/road_side-925f61d89e48aeb0eda84390c6a58420.glb differ diff --git a/.godot/imported/road_side.fbx-925f61d89e48aeb0eda84390c6a58420.md5 b/.godot/imported/road_side.fbx-925f61d89e48aeb0eda84390c6a58420.md5 new file mode 100644 index 0000000..0d6c0d2 --- /dev/null +++ b/.godot/imported/road_side.fbx-925f61d89e48aeb0eda84390c6a58420.md5 @@ -0,0 +1,2 @@ +source_md5="1b9ec5df440469ddeb584eabb0257f1b" +dest_md5="d373205faf9736b2fda36ed10d0792ff" diff --git a/.godot/imported/road_side.fbx-925f61d89e48aeb0eda84390c6a58420.scn b/.godot/imported/road_side.fbx-925f61d89e48aeb0eda84390c6a58420.scn new file mode 100644 index 0000000..c776aba Binary files /dev/null and b/.godot/imported/road_side.fbx-925f61d89e48aeb0eda84390c6a58420.scn differ diff --git a/.godot/imported/road_sideBarrier-b8c718cc141d2d1fc276205e6296efd7.glb b/.godot/imported/road_sideBarrier-b8c718cc141d2d1fc276205e6296efd7.glb new file mode 100644 index 0000000..6cd4952 Binary files /dev/null and b/.godot/imported/road_sideBarrier-b8c718cc141d2d1fc276205e6296efd7.glb differ diff --git a/.godot/imported/road_sideBarrier.fbx-b8c718cc141d2d1fc276205e6296efd7.md5 b/.godot/imported/road_sideBarrier.fbx-b8c718cc141d2d1fc276205e6296efd7.md5 new file mode 100644 index 0000000..0fb700a --- /dev/null +++ b/.godot/imported/road_sideBarrier.fbx-b8c718cc141d2d1fc276205e6296efd7.md5 @@ -0,0 +1,2 @@ +source_md5="fa3ad6272aaa68fd412af048d978ba98" +dest_md5="85cee6807cd1d20ac7d3a41acc9e3540" diff --git a/.godot/imported/road_sideBarrier.fbx-b8c718cc141d2d1fc276205e6296efd7.scn b/.godot/imported/road_sideBarrier.fbx-b8c718cc141d2d1fc276205e6296efd7.scn new file mode 100644 index 0000000..2adb48a Binary files /dev/null and b/.godot/imported/road_sideBarrier.fbx-b8c718cc141d2d1fc276205e6296efd7.scn differ diff --git a/.godot/imported/road_sideEntry-0fe0696951300e406bb7d727246eaefd.glb b/.godot/imported/road_sideEntry-0fe0696951300e406bb7d727246eaefd.glb new file mode 100644 index 0000000..8c9d4b2 Binary files /dev/null and b/.godot/imported/road_sideEntry-0fe0696951300e406bb7d727246eaefd.glb differ diff --git a/.godot/imported/road_sideEntry.fbx-0fe0696951300e406bb7d727246eaefd.md5 b/.godot/imported/road_sideEntry.fbx-0fe0696951300e406bb7d727246eaefd.md5 new file mode 100644 index 0000000..d466ee0 --- /dev/null +++ b/.godot/imported/road_sideEntry.fbx-0fe0696951300e406bb7d727246eaefd.md5 @@ -0,0 +1,2 @@ +source_md5="548ef0071c9688eeade64be7608c2fb6" +dest_md5="8c05b7bb0457a6d67b48881b22cc4718" diff --git a/.godot/imported/road_sideEntry.fbx-0fe0696951300e406bb7d727246eaefd.scn b/.godot/imported/road_sideEntry.fbx-0fe0696951300e406bb7d727246eaefd.scn new file mode 100644 index 0000000..81ecc82 Binary files /dev/null and b/.godot/imported/road_sideEntry.fbx-0fe0696951300e406bb7d727246eaefd.scn differ diff --git a/.godot/imported/road_sideEntryBarrier-91176283a26881e36208848e2605fe6b.glb b/.godot/imported/road_sideEntryBarrier-91176283a26881e36208848e2605fe6b.glb new file mode 100644 index 0000000..fc8a05f Binary files /dev/null and b/.godot/imported/road_sideEntryBarrier-91176283a26881e36208848e2605fe6b.glb differ diff --git a/.godot/imported/road_sideEntryBarrier.fbx-91176283a26881e36208848e2605fe6b.md5 b/.godot/imported/road_sideEntryBarrier.fbx-91176283a26881e36208848e2605fe6b.md5 new file mode 100644 index 0000000..ed4478f --- /dev/null +++ b/.godot/imported/road_sideEntryBarrier.fbx-91176283a26881e36208848e2605fe6b.md5 @@ -0,0 +1,2 @@ +source_md5="a2a470e941f167861d5b06242e29cc3d" +dest_md5="ce9fce2a317180b3dba8a29fd159aff7" diff --git a/.godot/imported/road_sideEntryBarrier.fbx-91176283a26881e36208848e2605fe6b.scn b/.godot/imported/road_sideEntryBarrier.fbx-91176283a26881e36208848e2605fe6b.scn new file mode 100644 index 0000000..8fa35a0 Binary files /dev/null and b/.godot/imported/road_sideEntryBarrier.fbx-91176283a26881e36208848e2605fe6b.scn differ diff --git a/.godot/imported/road_sideExit-15b234f93d3bec7442b996af3cf9098c.glb b/.godot/imported/road_sideExit-15b234f93d3bec7442b996af3cf9098c.glb new file mode 100644 index 0000000..85ecaa6 Binary files /dev/null and b/.godot/imported/road_sideExit-15b234f93d3bec7442b996af3cf9098c.glb differ diff --git a/.godot/imported/road_sideExit.fbx-15b234f93d3bec7442b996af3cf9098c.md5 b/.godot/imported/road_sideExit.fbx-15b234f93d3bec7442b996af3cf9098c.md5 new file mode 100644 index 0000000..52f4a7a --- /dev/null +++ b/.godot/imported/road_sideExit.fbx-15b234f93d3bec7442b996af3cf9098c.md5 @@ -0,0 +1,2 @@ +source_md5="d6eb4415b15d79cc51bf79ad8c0da675" +dest_md5="8b4487c42a0444fe012e17344f8a35e0" diff --git a/.godot/imported/road_sideExit.fbx-15b234f93d3bec7442b996af3cf9098c.scn b/.godot/imported/road_sideExit.fbx-15b234f93d3bec7442b996af3cf9098c.scn new file mode 100644 index 0000000..a824b0a Binary files /dev/null and b/.godot/imported/road_sideExit.fbx-15b234f93d3bec7442b996af3cf9098c.scn differ diff --git a/.godot/imported/road_sideExitBarrier-ff77d1fed68f3eafcba6a9afaa72c3cc.glb b/.godot/imported/road_sideExitBarrier-ff77d1fed68f3eafcba6a9afaa72c3cc.glb new file mode 100644 index 0000000..dece82e Binary files /dev/null and b/.godot/imported/road_sideExitBarrier-ff77d1fed68f3eafcba6a9afaa72c3cc.glb differ diff --git a/.godot/imported/road_sideExitBarrier.fbx-ff77d1fed68f3eafcba6a9afaa72c3cc.md5 b/.godot/imported/road_sideExitBarrier.fbx-ff77d1fed68f3eafcba6a9afaa72c3cc.md5 new file mode 100644 index 0000000..17b7b51 --- /dev/null +++ b/.godot/imported/road_sideExitBarrier.fbx-ff77d1fed68f3eafcba6a9afaa72c3cc.md5 @@ -0,0 +1,2 @@ +source_md5="f89d52c5050b244713c15e7d7d1f3bdc" +dest_md5="f4526a68b6a596b16e41592c75871f60" diff --git a/.godot/imported/road_sideExitBarrier.fbx-ff77d1fed68f3eafcba6a9afaa72c3cc.scn b/.godot/imported/road_sideExitBarrier.fbx-ff77d1fed68f3eafcba6a9afaa72c3cc.scn new file mode 100644 index 0000000..4c1980d Binary files /dev/null and b/.godot/imported/road_sideExitBarrier.fbx-ff77d1fed68f3eafcba6a9afaa72c3cc.scn differ diff --git a/.godot/imported/road_slant-9f4f98da6f194b67c852b9a38851b5ec.glb b/.godot/imported/road_slant-9f4f98da6f194b67c852b9a38851b5ec.glb new file mode 100644 index 0000000..d905aed Binary files /dev/null and b/.godot/imported/road_slant-9f4f98da6f194b67c852b9a38851b5ec.glb differ diff --git a/.godot/imported/road_slant.fbx-9f4f98da6f194b67c852b9a38851b5ec.md5 b/.godot/imported/road_slant.fbx-9f4f98da6f194b67c852b9a38851b5ec.md5 new file mode 100644 index 0000000..f319460 --- /dev/null +++ b/.godot/imported/road_slant.fbx-9f4f98da6f194b67c852b9a38851b5ec.md5 @@ -0,0 +1,2 @@ +source_md5="0ca329490d04d0a9fe795be6f1c28f22" +dest_md5="aa30fcbc15c1effb72172f1de68f8c40" diff --git a/.godot/imported/road_slant.fbx-9f4f98da6f194b67c852b9a38851b5ec.scn b/.godot/imported/road_slant.fbx-9f4f98da6f194b67c852b9a38851b5ec.scn new file mode 100644 index 0000000..92cd1a2 Binary files /dev/null and b/.godot/imported/road_slant.fbx-9f4f98da6f194b67c852b9a38851b5ec.scn differ diff --git a/.godot/imported/road_slantBarrier-b152ac19bb00b093672c803fb75edd1b.glb b/.godot/imported/road_slantBarrier-b152ac19bb00b093672c803fb75edd1b.glb new file mode 100644 index 0000000..4b63ed1 Binary files /dev/null and b/.godot/imported/road_slantBarrier-b152ac19bb00b093672c803fb75edd1b.glb differ diff --git a/.godot/imported/road_slantBarrier.fbx-b152ac19bb00b093672c803fb75edd1b.md5 b/.godot/imported/road_slantBarrier.fbx-b152ac19bb00b093672c803fb75edd1b.md5 new file mode 100644 index 0000000..8a72aae --- /dev/null +++ b/.godot/imported/road_slantBarrier.fbx-b152ac19bb00b093672c803fb75edd1b.md5 @@ -0,0 +1,2 @@ +source_md5="cd95bb4481ef675e5056f13fccb8a1ef" +dest_md5="b4ea3b4b1170c69ab1f460b771b8b2f0" diff --git a/.godot/imported/road_slantBarrier.fbx-b152ac19bb00b093672c803fb75edd1b.scn b/.godot/imported/road_slantBarrier.fbx-b152ac19bb00b093672c803fb75edd1b.scn new file mode 100644 index 0000000..0934667 Binary files /dev/null and b/.godot/imported/road_slantBarrier.fbx-b152ac19bb00b093672c803fb75edd1b.scn differ diff --git a/.godot/imported/road_slantCurve-a5348e32c9a320e574497cf85e351617.glb b/.godot/imported/road_slantCurve-a5348e32c9a320e574497cf85e351617.glb new file mode 100644 index 0000000..5a1ab7a Binary files /dev/null and b/.godot/imported/road_slantCurve-a5348e32c9a320e574497cf85e351617.glb differ diff --git a/.godot/imported/road_slantCurve.fbx-a5348e32c9a320e574497cf85e351617.md5 b/.godot/imported/road_slantCurve.fbx-a5348e32c9a320e574497cf85e351617.md5 new file mode 100644 index 0000000..6712e03 --- /dev/null +++ b/.godot/imported/road_slantCurve.fbx-a5348e32c9a320e574497cf85e351617.md5 @@ -0,0 +1,2 @@ +source_md5="038431c41c1a8e956e64e5b3d6a10793" +dest_md5="806a1b6b6486cb7a53ff974c2d5de886" diff --git a/.godot/imported/road_slantCurve.fbx-a5348e32c9a320e574497cf85e351617.scn b/.godot/imported/road_slantCurve.fbx-a5348e32c9a320e574497cf85e351617.scn new file mode 100644 index 0000000..12adb06 Binary files /dev/null and b/.godot/imported/road_slantCurve.fbx-a5348e32c9a320e574497cf85e351617.scn differ diff --git a/.godot/imported/road_slantCurveBarrier-582bdd8bb583539a5d05f851232ce21c.glb b/.godot/imported/road_slantCurveBarrier-582bdd8bb583539a5d05f851232ce21c.glb new file mode 100644 index 0000000..03691a0 Binary files /dev/null and b/.godot/imported/road_slantCurveBarrier-582bdd8bb583539a5d05f851232ce21c.glb differ diff --git a/.godot/imported/road_slantCurveBarrier.fbx-582bdd8bb583539a5d05f851232ce21c.md5 b/.godot/imported/road_slantCurveBarrier.fbx-582bdd8bb583539a5d05f851232ce21c.md5 new file mode 100644 index 0000000..eafcc1f --- /dev/null +++ b/.godot/imported/road_slantCurveBarrier.fbx-582bdd8bb583539a5d05f851232ce21c.md5 @@ -0,0 +1,2 @@ +source_md5="fcaa0d0099363415baf9b392c2952d54" +dest_md5="6b4f6e4b6510db14841594cc9c6d295e" diff --git a/.godot/imported/road_slantCurveBarrier.fbx-582bdd8bb583539a5d05f851232ce21c.scn b/.godot/imported/road_slantCurveBarrier.fbx-582bdd8bb583539a5d05f851232ce21c.scn new file mode 100644 index 0000000..4e7bb5f Binary files /dev/null and b/.godot/imported/road_slantCurveBarrier.fbx-582bdd8bb583539a5d05f851232ce21c.scn differ diff --git a/.godot/imported/road_slantFlat-e7491a694af2819cefe517835a5aaae8.glb b/.godot/imported/road_slantFlat-e7491a694af2819cefe517835a5aaae8.glb new file mode 100644 index 0000000..4123cad Binary files /dev/null and b/.godot/imported/road_slantFlat-e7491a694af2819cefe517835a5aaae8.glb differ diff --git a/.godot/imported/road_slantFlat.fbx-e7491a694af2819cefe517835a5aaae8.md5 b/.godot/imported/road_slantFlat.fbx-e7491a694af2819cefe517835a5aaae8.md5 new file mode 100644 index 0000000..22fc7e0 --- /dev/null +++ b/.godot/imported/road_slantFlat.fbx-e7491a694af2819cefe517835a5aaae8.md5 @@ -0,0 +1,2 @@ +source_md5="b376c37b2f6921470d6167f397ba46c4" +dest_md5="ecd42f7aa4fb6eb92a175bb14fcf35ff" diff --git a/.godot/imported/road_slantFlat.fbx-e7491a694af2819cefe517835a5aaae8.scn b/.godot/imported/road_slantFlat.fbx-e7491a694af2819cefe517835a5aaae8.scn new file mode 100644 index 0000000..ac0993b Binary files /dev/null and b/.godot/imported/road_slantFlat.fbx-e7491a694af2819cefe517835a5aaae8.scn differ diff --git a/.godot/imported/road_slantFlatCurve-988f44631803d58de52a64b5e3771983.glb b/.godot/imported/road_slantFlatCurve-988f44631803d58de52a64b5e3771983.glb new file mode 100644 index 0000000..3e9ddf8 Binary files /dev/null and b/.godot/imported/road_slantFlatCurve-988f44631803d58de52a64b5e3771983.glb differ diff --git a/.godot/imported/road_slantFlatCurve.fbx-988f44631803d58de52a64b5e3771983.md5 b/.godot/imported/road_slantFlatCurve.fbx-988f44631803d58de52a64b5e3771983.md5 new file mode 100644 index 0000000..f57763c --- /dev/null +++ b/.godot/imported/road_slantFlatCurve.fbx-988f44631803d58de52a64b5e3771983.md5 @@ -0,0 +1,2 @@ +source_md5="25045338b22b9ef258079e128dfbe9a1" +dest_md5="5fab714776669f59393d191845b6fcaf" diff --git a/.godot/imported/road_slantFlatCurve.fbx-988f44631803d58de52a64b5e3771983.scn b/.godot/imported/road_slantFlatCurve.fbx-988f44631803d58de52a64b5e3771983.scn new file mode 100644 index 0000000..1833d4c Binary files /dev/null and b/.godot/imported/road_slantFlatCurve.fbx-988f44631803d58de52a64b5e3771983.scn differ diff --git a/.godot/imported/road_slantFlatHigh-970d2172e520391a5b932f2a36f10b7e.glb b/.godot/imported/road_slantFlatHigh-970d2172e520391a5b932f2a36f10b7e.glb new file mode 100644 index 0000000..23f9d32 Binary files /dev/null and b/.godot/imported/road_slantFlatHigh-970d2172e520391a5b932f2a36f10b7e.glb differ diff --git a/.godot/imported/road_slantFlatHigh.fbx-970d2172e520391a5b932f2a36f10b7e.md5 b/.godot/imported/road_slantFlatHigh.fbx-970d2172e520391a5b932f2a36f10b7e.md5 new file mode 100644 index 0000000..d031b03 --- /dev/null +++ b/.godot/imported/road_slantFlatHigh.fbx-970d2172e520391a5b932f2a36f10b7e.md5 @@ -0,0 +1,2 @@ +source_md5="6344614d9226127646e5cb7420fe7aea" +dest_md5="023ba4247e30f829e0be9641dc31ae3c" diff --git a/.godot/imported/road_slantFlatHigh.fbx-970d2172e520391a5b932f2a36f10b7e.scn b/.godot/imported/road_slantFlatHigh.fbx-970d2172e520391a5b932f2a36f10b7e.scn new file mode 100644 index 0000000..52a966b Binary files /dev/null and b/.godot/imported/road_slantFlatHigh.fbx-970d2172e520391a5b932f2a36f10b7e.scn differ diff --git a/.godot/imported/road_slantHigh-5889b720191b6a0da6943587cfdcac73.glb b/.godot/imported/road_slantHigh-5889b720191b6a0da6943587cfdcac73.glb new file mode 100644 index 0000000..e496fd7 Binary files /dev/null and b/.godot/imported/road_slantHigh-5889b720191b6a0da6943587cfdcac73.glb differ diff --git a/.godot/imported/road_slantHigh.fbx-5889b720191b6a0da6943587cfdcac73.md5 b/.godot/imported/road_slantHigh.fbx-5889b720191b6a0da6943587cfdcac73.md5 new file mode 100644 index 0000000..0e9b522 --- /dev/null +++ b/.godot/imported/road_slantHigh.fbx-5889b720191b6a0da6943587cfdcac73.md5 @@ -0,0 +1,2 @@ +source_md5="5e76d896b214bca7b5bbee88c093f09f" +dest_md5="8264abc31fc08df6ecd3258cc90780d2" diff --git a/.godot/imported/road_slantHigh.fbx-5889b720191b6a0da6943587cfdcac73.scn b/.godot/imported/road_slantHigh.fbx-5889b720191b6a0da6943587cfdcac73.scn new file mode 100644 index 0000000..fe9ede4 Binary files /dev/null and b/.godot/imported/road_slantHigh.fbx-5889b720191b6a0da6943587cfdcac73.scn differ diff --git a/.godot/imported/road_slantHighBarrier-894b6096eac9c3f3288f211271c5e0c4.glb b/.godot/imported/road_slantHighBarrier-894b6096eac9c3f3288f211271c5e0c4.glb new file mode 100644 index 0000000..22535e2 Binary files /dev/null and b/.godot/imported/road_slantHighBarrier-894b6096eac9c3f3288f211271c5e0c4.glb differ diff --git a/.godot/imported/road_slantHighBarrier.fbx-894b6096eac9c3f3288f211271c5e0c4.md5 b/.godot/imported/road_slantHighBarrier.fbx-894b6096eac9c3f3288f211271c5e0c4.md5 new file mode 100644 index 0000000..d7cfe4f --- /dev/null +++ b/.godot/imported/road_slantHighBarrier.fbx-894b6096eac9c3f3288f211271c5e0c4.md5 @@ -0,0 +1,2 @@ +source_md5="e3e910fe4b343bdeccc2ad835af97105" +dest_md5="ab3af9e805205bdec4888862b938e081" diff --git a/.godot/imported/road_slantHighBarrier.fbx-894b6096eac9c3f3288f211271c5e0c4.scn b/.godot/imported/road_slantHighBarrier.fbx-894b6096eac9c3f3288f211271c5e0c4.scn new file mode 100644 index 0000000..aa0102e Binary files /dev/null and b/.godot/imported/road_slantHighBarrier.fbx-894b6096eac9c3f3288f211271c5e0c4.scn differ diff --git a/.godot/imported/road_split-465134edeac8fa7397be7a1f59f5a92b.glb b/.godot/imported/road_split-465134edeac8fa7397be7a1f59f5a92b.glb new file mode 100644 index 0000000..d5dd1ce Binary files /dev/null and b/.godot/imported/road_split-465134edeac8fa7397be7a1f59f5a92b.glb differ diff --git a/.godot/imported/road_split.fbx-465134edeac8fa7397be7a1f59f5a92b.md5 b/.godot/imported/road_split.fbx-465134edeac8fa7397be7a1f59f5a92b.md5 new file mode 100644 index 0000000..e06defd --- /dev/null +++ b/.godot/imported/road_split.fbx-465134edeac8fa7397be7a1f59f5a92b.md5 @@ -0,0 +1,2 @@ +source_md5="708722177639d2f582a58c034906e3f9" +dest_md5="24d0294c05c38371c9a1aa0d62e8b994" diff --git a/.godot/imported/road_split.fbx-465134edeac8fa7397be7a1f59f5a92b.scn b/.godot/imported/road_split.fbx-465134edeac8fa7397be7a1f59f5a92b.scn new file mode 100644 index 0000000..8bd766d Binary files /dev/null and b/.godot/imported/road_split.fbx-465134edeac8fa7397be7a1f59f5a92b.scn differ diff --git a/.godot/imported/road_splitBarrier-4cd26e9b38d6aa8be08c044d3bea1e87.glb b/.godot/imported/road_splitBarrier-4cd26e9b38d6aa8be08c044d3bea1e87.glb new file mode 100644 index 0000000..dd7a112 Binary files /dev/null and b/.godot/imported/road_splitBarrier-4cd26e9b38d6aa8be08c044d3bea1e87.glb differ diff --git a/.godot/imported/road_splitBarrier.fbx-4cd26e9b38d6aa8be08c044d3bea1e87.md5 b/.godot/imported/road_splitBarrier.fbx-4cd26e9b38d6aa8be08c044d3bea1e87.md5 new file mode 100644 index 0000000..a38f5c6 --- /dev/null +++ b/.godot/imported/road_splitBarrier.fbx-4cd26e9b38d6aa8be08c044d3bea1e87.md5 @@ -0,0 +1,2 @@ +source_md5="d98175c8c8aa5d740c73f1aac95f7843" +dest_md5="6e123cb2f38c5050421e47cf1f9a2b3d" diff --git a/.godot/imported/road_splitBarrier.fbx-4cd26e9b38d6aa8be08c044d3bea1e87.scn b/.godot/imported/road_splitBarrier.fbx-4cd26e9b38d6aa8be08c044d3bea1e87.scn new file mode 100644 index 0000000..c005e48 Binary files /dev/null and b/.godot/imported/road_splitBarrier.fbx-4cd26e9b38d6aa8be08c044d3bea1e87.scn differ diff --git a/.godot/imported/road_square-4ebae2a586338029b2fc8cc4a4c9137c.glb b/.godot/imported/road_square-4ebae2a586338029b2fc8cc4a4c9137c.glb new file mode 100644 index 0000000..d225efc Binary files /dev/null and b/.godot/imported/road_square-4ebae2a586338029b2fc8cc4a4c9137c.glb differ diff --git a/.godot/imported/road_square.fbx-4ebae2a586338029b2fc8cc4a4c9137c.md5 b/.godot/imported/road_square.fbx-4ebae2a586338029b2fc8cc4a4c9137c.md5 new file mode 100644 index 0000000..ed575d2 --- /dev/null +++ b/.godot/imported/road_square.fbx-4ebae2a586338029b2fc8cc4a4c9137c.md5 @@ -0,0 +1,2 @@ +source_md5="4885ba875f32068eceb2e380e29fd094" +dest_md5="02f90d426a78c3814a1fb5ac8b4d26b1" diff --git a/.godot/imported/road_square.fbx-4ebae2a586338029b2fc8cc4a4c9137c.scn b/.godot/imported/road_square.fbx-4ebae2a586338029b2fc8cc4a4c9137c.scn new file mode 100644 index 0000000..7a8fd60 Binary files /dev/null and b/.godot/imported/road_square.fbx-4ebae2a586338029b2fc8cc4a4c9137c.scn differ diff --git a/.godot/imported/road_squareBarrier-63b630c7606d7528a83c975cfd70b548.glb b/.godot/imported/road_squareBarrier-63b630c7606d7528a83c975cfd70b548.glb new file mode 100644 index 0000000..6b8fcea Binary files /dev/null and b/.godot/imported/road_squareBarrier-63b630c7606d7528a83c975cfd70b548.glb differ diff --git a/.godot/imported/road_squareBarrier.fbx-63b630c7606d7528a83c975cfd70b548.md5 b/.godot/imported/road_squareBarrier.fbx-63b630c7606d7528a83c975cfd70b548.md5 new file mode 100644 index 0000000..db7e83a --- /dev/null +++ b/.godot/imported/road_squareBarrier.fbx-63b630c7606d7528a83c975cfd70b548.md5 @@ -0,0 +1,2 @@ +source_md5="3d1f1a2789bebf394505fa29a86ffe18" +dest_md5="fb7af54cefaac11a0c43408945301830" diff --git a/.godot/imported/road_squareBarrier.fbx-63b630c7606d7528a83c975cfd70b548.scn b/.godot/imported/road_squareBarrier.fbx-63b630c7606d7528a83c975cfd70b548.scn new file mode 100644 index 0000000..20de053 Binary files /dev/null and b/.godot/imported/road_squareBarrier.fbx-63b630c7606d7528a83c975cfd70b548.scn differ diff --git a/.godot/imported/road_straight-fa15a1df680ac599b85df4dadb1279ab.glb b/.godot/imported/road_straight-fa15a1df680ac599b85df4dadb1279ab.glb new file mode 100644 index 0000000..2a2003d Binary files /dev/null and b/.godot/imported/road_straight-fa15a1df680ac599b85df4dadb1279ab.glb differ diff --git a/.godot/imported/road_straight.fbx-fa15a1df680ac599b85df4dadb1279ab.md5 b/.godot/imported/road_straight.fbx-fa15a1df680ac599b85df4dadb1279ab.md5 new file mode 100644 index 0000000..a3319f3 --- /dev/null +++ b/.godot/imported/road_straight.fbx-fa15a1df680ac599b85df4dadb1279ab.md5 @@ -0,0 +1,2 @@ +source_md5="ba29e2571716f6dfc3024e55ab2d8c2a" +dest_md5="fdd4ba4aec7bc7700481af618a5af5b8" diff --git a/.godot/imported/road_straight.fbx-fa15a1df680ac599b85df4dadb1279ab.scn b/.godot/imported/road_straight.fbx-fa15a1df680ac599b85df4dadb1279ab.scn new file mode 100644 index 0000000..603e933 Binary files /dev/null and b/.godot/imported/road_straight.fbx-fa15a1df680ac599b85df4dadb1279ab.scn differ diff --git a/.godot/imported/road_straightBarrier-278172b8cd385115778f1d9c0346dc03.glb b/.godot/imported/road_straightBarrier-278172b8cd385115778f1d9c0346dc03.glb new file mode 100644 index 0000000..5ef30d6 Binary files /dev/null and b/.godot/imported/road_straightBarrier-278172b8cd385115778f1d9c0346dc03.glb differ diff --git a/.godot/imported/road_straightBarrier.fbx-278172b8cd385115778f1d9c0346dc03.md5 b/.godot/imported/road_straightBarrier.fbx-278172b8cd385115778f1d9c0346dc03.md5 new file mode 100644 index 0000000..5c5694e --- /dev/null +++ b/.godot/imported/road_straightBarrier.fbx-278172b8cd385115778f1d9c0346dc03.md5 @@ -0,0 +1,2 @@ +source_md5="eaab76e2ba444036b4e9d48a7d0295e4" +dest_md5="410597ec536a4cd8f75f1e12d6434396" diff --git a/.godot/imported/road_straightBarrier.fbx-278172b8cd385115778f1d9c0346dc03.scn b/.godot/imported/road_straightBarrier.fbx-278172b8cd385115778f1d9c0346dc03.scn new file mode 100644 index 0000000..3711a33 Binary files /dev/null and b/.godot/imported/road_straightBarrier.fbx-278172b8cd385115778f1d9c0346dc03.scn differ diff --git a/.godot/imported/road_straightBarrierEnd-08845819b5b56a7f35fbed15d86bdc4b.glb b/.godot/imported/road_straightBarrierEnd-08845819b5b56a7f35fbed15d86bdc4b.glb new file mode 100644 index 0000000..ce705c3 Binary files /dev/null and b/.godot/imported/road_straightBarrierEnd-08845819b5b56a7f35fbed15d86bdc4b.glb differ diff --git a/.godot/imported/road_straightBarrierEnd.fbx-08845819b5b56a7f35fbed15d86bdc4b.md5 b/.godot/imported/road_straightBarrierEnd.fbx-08845819b5b56a7f35fbed15d86bdc4b.md5 new file mode 100644 index 0000000..fc7a724 --- /dev/null +++ b/.godot/imported/road_straightBarrierEnd.fbx-08845819b5b56a7f35fbed15d86bdc4b.md5 @@ -0,0 +1,2 @@ +source_md5="6e020f430d805bdc12a8d09dcbe3823e" +dest_md5="fee272233233f49bb76676d9502282e1" diff --git a/.godot/imported/road_straightBarrierEnd.fbx-08845819b5b56a7f35fbed15d86bdc4b.scn b/.godot/imported/road_straightBarrierEnd.fbx-08845819b5b56a7f35fbed15d86bdc4b.scn new file mode 100644 index 0000000..7ffe438 Binary files /dev/null and b/.godot/imported/road_straightBarrierEnd.fbx-08845819b5b56a7f35fbed15d86bdc4b.scn differ diff --git a/.godot/imported/rockLarge-51a8d41b3a97849d42cf2e094282b325.glb b/.godot/imported/rockLarge-51a8d41b3a97849d42cf2e094282b325.glb new file mode 100644 index 0000000..b786d5f Binary files /dev/null and b/.godot/imported/rockLarge-51a8d41b3a97849d42cf2e094282b325.glb differ diff --git a/.godot/imported/rockLarge.fbx-51a8d41b3a97849d42cf2e094282b325.md5 b/.godot/imported/rockLarge.fbx-51a8d41b3a97849d42cf2e094282b325.md5 new file mode 100644 index 0000000..1add6a1 --- /dev/null +++ b/.godot/imported/rockLarge.fbx-51a8d41b3a97849d42cf2e094282b325.md5 @@ -0,0 +1,2 @@ +source_md5="710c971c230cf4fe4208062a6941e3b3" +dest_md5="75727e07e09d36d3c69b2e5d839d5f2b" diff --git a/.godot/imported/rockLarge.fbx-51a8d41b3a97849d42cf2e094282b325.scn b/.godot/imported/rockLarge.fbx-51a8d41b3a97849d42cf2e094282b325.scn new file mode 100644 index 0000000..629938f Binary files /dev/null and b/.godot/imported/rockLarge.fbx-51a8d41b3a97849d42cf2e094282b325.scn differ diff --git a/.godot/imported/rockSmall-1a88af54de7f68d30a698915ec3d8885.glb b/.godot/imported/rockSmall-1a88af54de7f68d30a698915ec3d8885.glb new file mode 100644 index 0000000..30d9ff4 Binary files /dev/null and b/.godot/imported/rockSmall-1a88af54de7f68d30a698915ec3d8885.glb differ diff --git a/.godot/imported/rockSmall.fbx-1a88af54de7f68d30a698915ec3d8885.md5 b/.godot/imported/rockSmall.fbx-1a88af54de7f68d30a698915ec3d8885.md5 new file mode 100644 index 0000000..efa862b --- /dev/null +++ b/.godot/imported/rockSmall.fbx-1a88af54de7f68d30a698915ec3d8885.md5 @@ -0,0 +1,2 @@ +source_md5="3d015fe1dd95441e9586975330a0613c" +dest_md5="5cd339bc4544a0c3a34a647d26ef13d9" diff --git a/.godot/imported/rockSmall.fbx-1a88af54de7f68d30a698915ec3d8885.scn b/.godot/imported/rockSmall.fbx-1a88af54de7f68d30a698915ec3d8885.scn new file mode 100644 index 0000000..2150e93 Binary files /dev/null and b/.godot/imported/rockSmall.fbx-1a88af54de7f68d30a698915ec3d8885.scn differ diff --git a/.godot/imported/rockWide-e218a201d75f749e7d67b87695f8e178.glb b/.godot/imported/rockWide-e218a201d75f749e7d67b87695f8e178.glb new file mode 100644 index 0000000..f6f2429 Binary files /dev/null and b/.godot/imported/rockWide-e218a201d75f749e7d67b87695f8e178.glb differ diff --git a/.godot/imported/rockWide.fbx-e218a201d75f749e7d67b87695f8e178.md5 b/.godot/imported/rockWide.fbx-e218a201d75f749e7d67b87695f8e178.md5 new file mode 100644 index 0000000..104f600 --- /dev/null +++ b/.godot/imported/rockWide.fbx-e218a201d75f749e7d67b87695f8e178.md5 @@ -0,0 +1,2 @@ +source_md5="0fcd3b23f405e44f7f346cc536e70a72" +dest_md5="148fc6afc35b69c15e71b8468331def6" diff --git a/.godot/imported/rockWide.fbx-e218a201d75f749e7d67b87695f8e178.scn b/.godot/imported/rockWide.fbx-e218a201d75f749e7d67b87695f8e178.scn new file mode 100644 index 0000000..a0d7689 Binary files /dev/null and b/.godot/imported/rockWide.fbx-e218a201d75f749e7d67b87695f8e178.scn differ diff --git a/.godot/imported/rock_largeA-73ba9145ac17feb0539842e0177400aa.glb b/.godot/imported/rock_largeA-73ba9145ac17feb0539842e0177400aa.glb new file mode 100644 index 0000000..cbf2c30 Binary files /dev/null and b/.godot/imported/rock_largeA-73ba9145ac17feb0539842e0177400aa.glb differ diff --git a/.godot/imported/rock_largeA.fbx-73ba9145ac17feb0539842e0177400aa.md5 b/.godot/imported/rock_largeA.fbx-73ba9145ac17feb0539842e0177400aa.md5 new file mode 100644 index 0000000..f7dac5d --- /dev/null +++ b/.godot/imported/rock_largeA.fbx-73ba9145ac17feb0539842e0177400aa.md5 @@ -0,0 +1,2 @@ +source_md5="4d79eff61dd9f8026f6b6dbcfb86119b" +dest_md5="8cfc7207b317cf9409c7663ca4cce5be" diff --git a/.godot/imported/rock_largeA.fbx-73ba9145ac17feb0539842e0177400aa.scn b/.godot/imported/rock_largeA.fbx-73ba9145ac17feb0539842e0177400aa.scn new file mode 100644 index 0000000..e28d3ae Binary files /dev/null and b/.godot/imported/rock_largeA.fbx-73ba9145ac17feb0539842e0177400aa.scn differ diff --git a/.godot/imported/rock_largeB-d2037983bbf678552983182071fa9279.glb b/.godot/imported/rock_largeB-d2037983bbf678552983182071fa9279.glb new file mode 100644 index 0000000..539362d Binary files /dev/null and b/.godot/imported/rock_largeB-d2037983bbf678552983182071fa9279.glb differ diff --git a/.godot/imported/rock_largeB.fbx-d2037983bbf678552983182071fa9279.md5 b/.godot/imported/rock_largeB.fbx-d2037983bbf678552983182071fa9279.md5 new file mode 100644 index 0000000..4d61371 --- /dev/null +++ b/.godot/imported/rock_largeB.fbx-d2037983bbf678552983182071fa9279.md5 @@ -0,0 +1,2 @@ +source_md5="353e0bc4c2b01b47e67e3dce9faf1794" +dest_md5="76542be1c39ca07bcb4b75237ee1ca60" diff --git a/.godot/imported/rock_largeB.fbx-d2037983bbf678552983182071fa9279.scn b/.godot/imported/rock_largeB.fbx-d2037983bbf678552983182071fa9279.scn new file mode 100644 index 0000000..60b1872 Binary files /dev/null and b/.godot/imported/rock_largeB.fbx-d2037983bbf678552983182071fa9279.scn differ diff --git a/.godot/imported/rock_largeC-f55015c4c0586fd5ebf1e9ee728dde3e.glb b/.godot/imported/rock_largeC-f55015c4c0586fd5ebf1e9ee728dde3e.glb new file mode 100644 index 0000000..60674c0 Binary files /dev/null and b/.godot/imported/rock_largeC-f55015c4c0586fd5ebf1e9ee728dde3e.glb differ diff --git a/.godot/imported/rock_largeC.fbx-f55015c4c0586fd5ebf1e9ee728dde3e.md5 b/.godot/imported/rock_largeC.fbx-f55015c4c0586fd5ebf1e9ee728dde3e.md5 new file mode 100644 index 0000000..d41f173 --- /dev/null +++ b/.godot/imported/rock_largeC.fbx-f55015c4c0586fd5ebf1e9ee728dde3e.md5 @@ -0,0 +1,2 @@ +source_md5="a0a1b97e8a9bc819ba2872df9df5c8f6" +dest_md5="0ce702d8a0b48cfd8107cd4cdc064cc8" diff --git a/.godot/imported/rock_largeC.fbx-f55015c4c0586fd5ebf1e9ee728dde3e.scn b/.godot/imported/rock_largeC.fbx-f55015c4c0586fd5ebf1e9ee728dde3e.scn new file mode 100644 index 0000000..2bf0bfb Binary files /dev/null and b/.godot/imported/rock_largeC.fbx-f55015c4c0586fd5ebf1e9ee728dde3e.scn differ diff --git a/.godot/imported/rock_largeD-1ddfa2f24dc3b099b633d058346e02a9.glb b/.godot/imported/rock_largeD-1ddfa2f24dc3b099b633d058346e02a9.glb new file mode 100644 index 0000000..a0b3ac9 Binary files /dev/null and b/.godot/imported/rock_largeD-1ddfa2f24dc3b099b633d058346e02a9.glb differ diff --git a/.godot/imported/rock_largeD.fbx-1ddfa2f24dc3b099b633d058346e02a9.md5 b/.godot/imported/rock_largeD.fbx-1ddfa2f24dc3b099b633d058346e02a9.md5 new file mode 100644 index 0000000..5d3f8ca --- /dev/null +++ b/.godot/imported/rock_largeD.fbx-1ddfa2f24dc3b099b633d058346e02a9.md5 @@ -0,0 +1,2 @@ +source_md5="69c4bbba449a2a809b6ee13fe159efdc" +dest_md5="bd31fb373136e0693285982914df09a8" diff --git a/.godot/imported/rock_largeD.fbx-1ddfa2f24dc3b099b633d058346e02a9.scn b/.godot/imported/rock_largeD.fbx-1ddfa2f24dc3b099b633d058346e02a9.scn new file mode 100644 index 0000000..659e511 Binary files /dev/null and b/.godot/imported/rock_largeD.fbx-1ddfa2f24dc3b099b633d058346e02a9.scn differ diff --git a/.godot/imported/rock_largeE-c98af04a5f9503467aa925feac41a808.glb b/.godot/imported/rock_largeE-c98af04a5f9503467aa925feac41a808.glb new file mode 100644 index 0000000..d889514 Binary files /dev/null and b/.godot/imported/rock_largeE-c98af04a5f9503467aa925feac41a808.glb differ diff --git a/.godot/imported/rock_largeE.fbx-c98af04a5f9503467aa925feac41a808.md5 b/.godot/imported/rock_largeE.fbx-c98af04a5f9503467aa925feac41a808.md5 new file mode 100644 index 0000000..6d745f8 --- /dev/null +++ b/.godot/imported/rock_largeE.fbx-c98af04a5f9503467aa925feac41a808.md5 @@ -0,0 +1,2 @@ +source_md5="045f979657556421c3aed89c6f539f7f" +dest_md5="8bbd1a3691848e89ce1614d84a63dc69" diff --git a/.godot/imported/rock_largeE.fbx-c98af04a5f9503467aa925feac41a808.scn b/.godot/imported/rock_largeE.fbx-c98af04a5f9503467aa925feac41a808.scn new file mode 100644 index 0000000..3ea2c45 Binary files /dev/null and b/.godot/imported/rock_largeE.fbx-c98af04a5f9503467aa925feac41a808.scn differ diff --git a/.godot/imported/rock_largeF-b9c3e675920d5752fb0bc4902c11955f.glb b/.godot/imported/rock_largeF-b9c3e675920d5752fb0bc4902c11955f.glb new file mode 100644 index 0000000..88325e8 Binary files /dev/null and b/.godot/imported/rock_largeF-b9c3e675920d5752fb0bc4902c11955f.glb differ diff --git a/.godot/imported/rock_largeF.fbx-b9c3e675920d5752fb0bc4902c11955f.md5 b/.godot/imported/rock_largeF.fbx-b9c3e675920d5752fb0bc4902c11955f.md5 new file mode 100644 index 0000000..db8efaa --- /dev/null +++ b/.godot/imported/rock_largeF.fbx-b9c3e675920d5752fb0bc4902c11955f.md5 @@ -0,0 +1,2 @@ +source_md5="45a1a40cd4f338eb22e6ee4a78e6cca7" +dest_md5="3b2aec5582e7e1a995a11ddc46eb6f01" diff --git a/.godot/imported/rock_largeF.fbx-b9c3e675920d5752fb0bc4902c11955f.scn b/.godot/imported/rock_largeF.fbx-b9c3e675920d5752fb0bc4902c11955f.scn new file mode 100644 index 0000000..4deb713 Binary files /dev/null and b/.godot/imported/rock_largeF.fbx-b9c3e675920d5752fb0bc4902c11955f.scn differ diff --git a/.godot/imported/rock_smallA-58c421955e4f0dd16c98634e1ae821b1.glb b/.godot/imported/rock_smallA-58c421955e4f0dd16c98634e1ae821b1.glb new file mode 100644 index 0000000..0fb6d67 Binary files /dev/null and b/.godot/imported/rock_smallA-58c421955e4f0dd16c98634e1ae821b1.glb differ diff --git a/.godot/imported/rock_smallA.fbx-58c421955e4f0dd16c98634e1ae821b1.md5 b/.godot/imported/rock_smallA.fbx-58c421955e4f0dd16c98634e1ae821b1.md5 new file mode 100644 index 0000000..f4f6085 --- /dev/null +++ b/.godot/imported/rock_smallA.fbx-58c421955e4f0dd16c98634e1ae821b1.md5 @@ -0,0 +1,2 @@ +source_md5="d06bd5475dc9797791e9ed93a5ead954" +dest_md5="fab4f49669ee5acc495460b84a9fae03" diff --git a/.godot/imported/rock_smallA.fbx-58c421955e4f0dd16c98634e1ae821b1.scn b/.godot/imported/rock_smallA.fbx-58c421955e4f0dd16c98634e1ae821b1.scn new file mode 100644 index 0000000..724efd1 Binary files /dev/null and b/.godot/imported/rock_smallA.fbx-58c421955e4f0dd16c98634e1ae821b1.scn differ diff --git a/.godot/imported/rock_smallB-b5cca32602e3fc32585fc9869c6dda7f.glb b/.godot/imported/rock_smallB-b5cca32602e3fc32585fc9869c6dda7f.glb new file mode 100644 index 0000000..8fd747d Binary files /dev/null and b/.godot/imported/rock_smallB-b5cca32602e3fc32585fc9869c6dda7f.glb differ diff --git a/.godot/imported/rock_smallB.fbx-b5cca32602e3fc32585fc9869c6dda7f.md5 b/.godot/imported/rock_smallB.fbx-b5cca32602e3fc32585fc9869c6dda7f.md5 new file mode 100644 index 0000000..2b7f2b3 --- /dev/null +++ b/.godot/imported/rock_smallB.fbx-b5cca32602e3fc32585fc9869c6dda7f.md5 @@ -0,0 +1,2 @@ +source_md5="d7de97ec3eeee6a85706a8bd483e40e8" +dest_md5="50cd2d3b5c8e81ec3be569e54b0972b2" diff --git a/.godot/imported/rock_smallB.fbx-b5cca32602e3fc32585fc9869c6dda7f.scn b/.godot/imported/rock_smallB.fbx-b5cca32602e3fc32585fc9869c6dda7f.scn new file mode 100644 index 0000000..bf67f02 Binary files /dev/null and b/.godot/imported/rock_smallB.fbx-b5cca32602e3fc32585fc9869c6dda7f.scn differ diff --git a/.godot/imported/rock_smallC-f01eef081ff57ffec48919d62ef05ac4.glb b/.godot/imported/rock_smallC-f01eef081ff57ffec48919d62ef05ac4.glb new file mode 100644 index 0000000..9d605bc Binary files /dev/null and b/.godot/imported/rock_smallC-f01eef081ff57ffec48919d62ef05ac4.glb differ diff --git a/.godot/imported/rock_smallC.fbx-f01eef081ff57ffec48919d62ef05ac4.md5 b/.godot/imported/rock_smallC.fbx-f01eef081ff57ffec48919d62ef05ac4.md5 new file mode 100644 index 0000000..28597a0 --- /dev/null +++ b/.godot/imported/rock_smallC.fbx-f01eef081ff57ffec48919d62ef05ac4.md5 @@ -0,0 +1,2 @@ +source_md5="2a3788999f3221b9a094a9cca1eea84e" +dest_md5="0f815fe6a85f73946005ed45ce726430" diff --git a/.godot/imported/rock_smallC.fbx-f01eef081ff57ffec48919d62ef05ac4.scn b/.godot/imported/rock_smallC.fbx-f01eef081ff57ffec48919d62ef05ac4.scn new file mode 100644 index 0000000..7293700 Binary files /dev/null and b/.godot/imported/rock_smallC.fbx-f01eef081ff57ffec48919d62ef05ac4.scn differ diff --git a/.godot/imported/rock_smallD-4de97ccb8de0169cda28aedafc48c6c5.glb b/.godot/imported/rock_smallD-4de97ccb8de0169cda28aedafc48c6c5.glb new file mode 100644 index 0000000..ac83007 Binary files /dev/null and b/.godot/imported/rock_smallD-4de97ccb8de0169cda28aedafc48c6c5.glb differ diff --git a/.godot/imported/rock_smallD.fbx-4de97ccb8de0169cda28aedafc48c6c5.md5 b/.godot/imported/rock_smallD.fbx-4de97ccb8de0169cda28aedafc48c6c5.md5 new file mode 100644 index 0000000..ca488e3 --- /dev/null +++ b/.godot/imported/rock_smallD.fbx-4de97ccb8de0169cda28aedafc48c6c5.md5 @@ -0,0 +1,2 @@ +source_md5="f16c7de4cd321d7738d823dd88767572" +dest_md5="f76b3c1180ad3dbe64a66221de6552df" diff --git a/.godot/imported/rock_smallD.fbx-4de97ccb8de0169cda28aedafc48c6c5.scn b/.godot/imported/rock_smallD.fbx-4de97ccb8de0169cda28aedafc48c6c5.scn new file mode 100644 index 0000000..f73cc04 Binary files /dev/null and b/.godot/imported/rock_smallD.fbx-4de97ccb8de0169cda28aedafc48c6c5.scn differ diff --git a/.godot/imported/rock_smallE-e151857ec70b62167511e22ce860785b.glb b/.godot/imported/rock_smallE-e151857ec70b62167511e22ce860785b.glb new file mode 100644 index 0000000..6abefca Binary files /dev/null and b/.godot/imported/rock_smallE-e151857ec70b62167511e22ce860785b.glb differ diff --git a/.godot/imported/rock_smallE.fbx-e151857ec70b62167511e22ce860785b.md5 b/.godot/imported/rock_smallE.fbx-e151857ec70b62167511e22ce860785b.md5 new file mode 100644 index 0000000..4665593 --- /dev/null +++ b/.godot/imported/rock_smallE.fbx-e151857ec70b62167511e22ce860785b.md5 @@ -0,0 +1,2 @@ +source_md5="d421dc6d0becccdb2efeb65585481618" +dest_md5="5395f3759bedab7344edd2ff0c7a8a6f" diff --git a/.godot/imported/rock_smallE.fbx-e151857ec70b62167511e22ce860785b.scn b/.godot/imported/rock_smallE.fbx-e151857ec70b62167511e22ce860785b.scn new file mode 100644 index 0000000..7fcf5e9 Binary files /dev/null and b/.godot/imported/rock_smallE.fbx-e151857ec70b62167511e22ce860785b.scn differ diff --git a/.godot/imported/rock_smallF-ed8e7f62c7c7c1786721fda30c9a877c.glb b/.godot/imported/rock_smallF-ed8e7f62c7c7c1786721fda30c9a877c.glb new file mode 100644 index 0000000..9412f7c Binary files /dev/null and b/.godot/imported/rock_smallF-ed8e7f62c7c7c1786721fda30c9a877c.glb differ diff --git a/.godot/imported/rock_smallF.fbx-ed8e7f62c7c7c1786721fda30c9a877c.md5 b/.godot/imported/rock_smallF.fbx-ed8e7f62c7c7c1786721fda30c9a877c.md5 new file mode 100644 index 0000000..342ac77 --- /dev/null +++ b/.godot/imported/rock_smallF.fbx-ed8e7f62c7c7c1786721fda30c9a877c.md5 @@ -0,0 +1,2 @@ +source_md5="67842647a6d73fde86b9470517d27822" +dest_md5="472b87474d581548549a932eafbd9e4e" diff --git a/.godot/imported/rock_smallF.fbx-ed8e7f62c7c7c1786721fda30c9a877c.scn b/.godot/imported/rock_smallF.fbx-ed8e7f62c7c7c1786721fda30c9a877c.scn new file mode 100644 index 0000000..77cacaf Binary files /dev/null and b/.godot/imported/rock_smallF.fbx-ed8e7f62c7c7c1786721fda30c9a877c.scn differ diff --git a/.godot/imported/rock_smallFlatA-ba78a94957e6c1501201a00c75e09f4d.glb b/.godot/imported/rock_smallFlatA-ba78a94957e6c1501201a00c75e09f4d.glb new file mode 100644 index 0000000..0707848 Binary files /dev/null and b/.godot/imported/rock_smallFlatA-ba78a94957e6c1501201a00c75e09f4d.glb differ diff --git a/.godot/imported/rock_smallFlatA.fbx-ba78a94957e6c1501201a00c75e09f4d.md5 b/.godot/imported/rock_smallFlatA.fbx-ba78a94957e6c1501201a00c75e09f4d.md5 new file mode 100644 index 0000000..873e7c3 --- /dev/null +++ b/.godot/imported/rock_smallFlatA.fbx-ba78a94957e6c1501201a00c75e09f4d.md5 @@ -0,0 +1,2 @@ +source_md5="e8d41d1b3c82e38c2ec60a1aa6bdb1b2" +dest_md5="a2794f4ab9b8dc1e394d5085077c4195" diff --git a/.godot/imported/rock_smallFlatA.fbx-ba78a94957e6c1501201a00c75e09f4d.scn b/.godot/imported/rock_smallFlatA.fbx-ba78a94957e6c1501201a00c75e09f4d.scn new file mode 100644 index 0000000..91f3726 Binary files /dev/null and b/.godot/imported/rock_smallFlatA.fbx-ba78a94957e6c1501201a00c75e09f4d.scn differ diff --git a/.godot/imported/rock_smallFlatB-01a311efbc4195b8254d7572d9ee1659.glb b/.godot/imported/rock_smallFlatB-01a311efbc4195b8254d7572d9ee1659.glb new file mode 100644 index 0000000..d5e91b5 Binary files /dev/null and b/.godot/imported/rock_smallFlatB-01a311efbc4195b8254d7572d9ee1659.glb differ diff --git a/.godot/imported/rock_smallFlatB.fbx-01a311efbc4195b8254d7572d9ee1659.md5 b/.godot/imported/rock_smallFlatB.fbx-01a311efbc4195b8254d7572d9ee1659.md5 new file mode 100644 index 0000000..27f663b --- /dev/null +++ b/.godot/imported/rock_smallFlatB.fbx-01a311efbc4195b8254d7572d9ee1659.md5 @@ -0,0 +1,2 @@ +source_md5="bf64bbabd8605f36adc70e46b8f154a1" +dest_md5="8f247d3faede341512617cac857b5c34" diff --git a/.godot/imported/rock_smallFlatB.fbx-01a311efbc4195b8254d7572d9ee1659.scn b/.godot/imported/rock_smallFlatB.fbx-01a311efbc4195b8254d7572d9ee1659.scn new file mode 100644 index 0000000..3d1c566 Binary files /dev/null and b/.godot/imported/rock_smallFlatB.fbx-01a311efbc4195b8254d7572d9ee1659.scn differ diff --git a/.godot/imported/rock_smallFlatC-7aebdb671dd717670e456e5fcc011c93.glb b/.godot/imported/rock_smallFlatC-7aebdb671dd717670e456e5fcc011c93.glb new file mode 100644 index 0000000..e9149ee Binary files /dev/null and b/.godot/imported/rock_smallFlatC-7aebdb671dd717670e456e5fcc011c93.glb differ diff --git a/.godot/imported/rock_smallFlatC.fbx-7aebdb671dd717670e456e5fcc011c93.md5 b/.godot/imported/rock_smallFlatC.fbx-7aebdb671dd717670e456e5fcc011c93.md5 new file mode 100644 index 0000000..f4d0304 --- /dev/null +++ b/.godot/imported/rock_smallFlatC.fbx-7aebdb671dd717670e456e5fcc011c93.md5 @@ -0,0 +1,2 @@ +source_md5="24955354ecf0d152f680e072b48f317b" +dest_md5="4bd9af860a2bdaee2207cced4c9bddaa" diff --git a/.godot/imported/rock_smallFlatC.fbx-7aebdb671dd717670e456e5fcc011c93.scn b/.godot/imported/rock_smallFlatC.fbx-7aebdb671dd717670e456e5fcc011c93.scn new file mode 100644 index 0000000..458e05c Binary files /dev/null and b/.godot/imported/rock_smallFlatC.fbx-7aebdb671dd717670e456e5fcc011c93.scn differ diff --git a/.godot/imported/rock_smallG-d16b7852726d455e579f606c9ee2e776.glb b/.godot/imported/rock_smallG-d16b7852726d455e579f606c9ee2e776.glb new file mode 100644 index 0000000..1f15820 Binary files /dev/null and b/.godot/imported/rock_smallG-d16b7852726d455e579f606c9ee2e776.glb differ diff --git a/.godot/imported/rock_smallG.fbx-d16b7852726d455e579f606c9ee2e776.md5 b/.godot/imported/rock_smallG.fbx-d16b7852726d455e579f606c9ee2e776.md5 new file mode 100644 index 0000000..435295f --- /dev/null +++ b/.godot/imported/rock_smallG.fbx-d16b7852726d455e579f606c9ee2e776.md5 @@ -0,0 +1,2 @@ +source_md5="0b218d29ce22b03bb0cd4892a88c6d80" +dest_md5="8118a42edd33092cdb4a92981ce877f3" diff --git a/.godot/imported/rock_smallG.fbx-d16b7852726d455e579f606c9ee2e776.scn b/.godot/imported/rock_smallG.fbx-d16b7852726d455e579f606c9ee2e776.scn new file mode 100644 index 0000000..ac518cc Binary files /dev/null and b/.godot/imported/rock_smallG.fbx-d16b7852726d455e579f606c9ee2e776.scn differ diff --git a/.godot/imported/rock_smallH-bc7ff87f5b345b7c7b88c5df287e07d4.glb b/.godot/imported/rock_smallH-bc7ff87f5b345b7c7b88c5df287e07d4.glb new file mode 100644 index 0000000..1bf027f Binary files /dev/null and b/.godot/imported/rock_smallH-bc7ff87f5b345b7c7b88c5df287e07d4.glb differ diff --git a/.godot/imported/rock_smallH.fbx-bc7ff87f5b345b7c7b88c5df287e07d4.md5 b/.godot/imported/rock_smallH.fbx-bc7ff87f5b345b7c7b88c5df287e07d4.md5 new file mode 100644 index 0000000..e94bb72 --- /dev/null +++ b/.godot/imported/rock_smallH.fbx-bc7ff87f5b345b7c7b88c5df287e07d4.md5 @@ -0,0 +1,2 @@ +source_md5="d667670270491239a8b39dcac91db0cf" +dest_md5="7f06d19b37c970dd9a78a329d435c2a2" diff --git a/.godot/imported/rock_smallH.fbx-bc7ff87f5b345b7c7b88c5df287e07d4.scn b/.godot/imported/rock_smallH.fbx-bc7ff87f5b345b7c7b88c5df287e07d4.scn new file mode 100644 index 0000000..0f85b5f Binary files /dev/null and b/.godot/imported/rock_smallH.fbx-bc7ff87f5b345b7c7b88c5df287e07d4.scn differ diff --git a/.godot/imported/rock_smallI-9cb0ab1f20da83f06d86f2c00055772d.glb b/.godot/imported/rock_smallI-9cb0ab1f20da83f06d86f2c00055772d.glb new file mode 100644 index 0000000..770f0ea Binary files /dev/null and b/.godot/imported/rock_smallI-9cb0ab1f20da83f06d86f2c00055772d.glb differ diff --git a/.godot/imported/rock_smallI.fbx-9cb0ab1f20da83f06d86f2c00055772d.md5 b/.godot/imported/rock_smallI.fbx-9cb0ab1f20da83f06d86f2c00055772d.md5 new file mode 100644 index 0000000..0299991 --- /dev/null +++ b/.godot/imported/rock_smallI.fbx-9cb0ab1f20da83f06d86f2c00055772d.md5 @@ -0,0 +1,2 @@ +source_md5="cba2c9480593fceb8c459ace2b89a4c6" +dest_md5="35a0e9312862bfa0bf4b6a56e46d0a37" diff --git a/.godot/imported/rock_smallI.fbx-9cb0ab1f20da83f06d86f2c00055772d.scn b/.godot/imported/rock_smallI.fbx-9cb0ab1f20da83f06d86f2c00055772d.scn new file mode 100644 index 0000000..ee69355 Binary files /dev/null and b/.godot/imported/rock_smallI.fbx-9cb0ab1f20da83f06d86f2c00055772d.scn differ diff --git a/.godot/imported/rock_smallTopA-62a433b5482b2c5f2bd65407b58375f7.glb b/.godot/imported/rock_smallTopA-62a433b5482b2c5f2bd65407b58375f7.glb new file mode 100644 index 0000000..ecc8ae8 Binary files /dev/null and b/.godot/imported/rock_smallTopA-62a433b5482b2c5f2bd65407b58375f7.glb differ diff --git a/.godot/imported/rock_smallTopA.fbx-62a433b5482b2c5f2bd65407b58375f7.md5 b/.godot/imported/rock_smallTopA.fbx-62a433b5482b2c5f2bd65407b58375f7.md5 new file mode 100644 index 0000000..acfa1ed --- /dev/null +++ b/.godot/imported/rock_smallTopA.fbx-62a433b5482b2c5f2bd65407b58375f7.md5 @@ -0,0 +1,2 @@ +source_md5="0db860b6f16fe5393d5f9757c90559c3" +dest_md5="fd6d661888d2745eb475085c8fbc766d" diff --git a/.godot/imported/rock_smallTopA.fbx-62a433b5482b2c5f2bd65407b58375f7.scn b/.godot/imported/rock_smallTopA.fbx-62a433b5482b2c5f2bd65407b58375f7.scn new file mode 100644 index 0000000..bbd6bf4 Binary files /dev/null and b/.godot/imported/rock_smallTopA.fbx-62a433b5482b2c5f2bd65407b58375f7.scn differ diff --git a/.godot/imported/rock_smallTopB-9ae9e533f8fc41130fbbc43162369246.glb b/.godot/imported/rock_smallTopB-9ae9e533f8fc41130fbbc43162369246.glb new file mode 100644 index 0000000..7da6a8c Binary files /dev/null and b/.godot/imported/rock_smallTopB-9ae9e533f8fc41130fbbc43162369246.glb differ diff --git a/.godot/imported/rock_smallTopB.fbx-9ae9e533f8fc41130fbbc43162369246.md5 b/.godot/imported/rock_smallTopB.fbx-9ae9e533f8fc41130fbbc43162369246.md5 new file mode 100644 index 0000000..0fe3859 --- /dev/null +++ b/.godot/imported/rock_smallTopB.fbx-9ae9e533f8fc41130fbbc43162369246.md5 @@ -0,0 +1,2 @@ +source_md5="3a537ce7b5af0623b26e512175bece11" +dest_md5="951d7450fd3739d3f8fa08642eb7a567" diff --git a/.godot/imported/rock_smallTopB.fbx-9ae9e533f8fc41130fbbc43162369246.scn b/.godot/imported/rock_smallTopB.fbx-9ae9e533f8fc41130fbbc43162369246.scn new file mode 100644 index 0000000..3d1401b Binary files /dev/null and b/.godot/imported/rock_smallTopB.fbx-9ae9e533f8fc41130fbbc43162369246.scn differ diff --git a/.godot/imported/rock_tallA-8bfe4e80ed9b96aebb4d06bf5b8f3db5.glb b/.godot/imported/rock_tallA-8bfe4e80ed9b96aebb4d06bf5b8f3db5.glb new file mode 100644 index 0000000..0c8b07e Binary files /dev/null and b/.godot/imported/rock_tallA-8bfe4e80ed9b96aebb4d06bf5b8f3db5.glb differ diff --git a/.godot/imported/rock_tallA.fbx-8bfe4e80ed9b96aebb4d06bf5b8f3db5.md5 b/.godot/imported/rock_tallA.fbx-8bfe4e80ed9b96aebb4d06bf5b8f3db5.md5 new file mode 100644 index 0000000..4341305 --- /dev/null +++ b/.godot/imported/rock_tallA.fbx-8bfe4e80ed9b96aebb4d06bf5b8f3db5.md5 @@ -0,0 +1,2 @@ +source_md5="f3344d1a8101279aa7cab5c6a6550665" +dest_md5="f0288f16f2e7cb8a4c6c1afc63862181" diff --git a/.godot/imported/rock_tallA.fbx-8bfe4e80ed9b96aebb4d06bf5b8f3db5.scn b/.godot/imported/rock_tallA.fbx-8bfe4e80ed9b96aebb4d06bf5b8f3db5.scn new file mode 100644 index 0000000..0b49705 Binary files /dev/null and b/.godot/imported/rock_tallA.fbx-8bfe4e80ed9b96aebb4d06bf5b8f3db5.scn differ diff --git a/.godot/imported/rock_tallB-6efa727adfe7cb382082bf3e4d68cbbc.glb b/.godot/imported/rock_tallB-6efa727adfe7cb382082bf3e4d68cbbc.glb new file mode 100644 index 0000000..d48d846 Binary files /dev/null and b/.godot/imported/rock_tallB-6efa727adfe7cb382082bf3e4d68cbbc.glb differ diff --git a/.godot/imported/rock_tallB.fbx-6efa727adfe7cb382082bf3e4d68cbbc.md5 b/.godot/imported/rock_tallB.fbx-6efa727adfe7cb382082bf3e4d68cbbc.md5 new file mode 100644 index 0000000..99d0ecb --- /dev/null +++ b/.godot/imported/rock_tallB.fbx-6efa727adfe7cb382082bf3e4d68cbbc.md5 @@ -0,0 +1,2 @@ +source_md5="c0b603a25b8ae88f7888fb370028181d" +dest_md5="5ee734544a2f69bf780a376b54a8b6a7" diff --git a/.godot/imported/rock_tallB.fbx-6efa727adfe7cb382082bf3e4d68cbbc.scn b/.godot/imported/rock_tallB.fbx-6efa727adfe7cb382082bf3e4d68cbbc.scn new file mode 100644 index 0000000..49192b5 Binary files /dev/null and b/.godot/imported/rock_tallB.fbx-6efa727adfe7cb382082bf3e4d68cbbc.scn differ diff --git a/.godot/imported/rock_tallC-c919c488326554755b205bf0e5ee2dfe.glb b/.godot/imported/rock_tallC-c919c488326554755b205bf0e5ee2dfe.glb new file mode 100644 index 0000000..f71342d Binary files /dev/null and b/.godot/imported/rock_tallC-c919c488326554755b205bf0e5ee2dfe.glb differ diff --git a/.godot/imported/rock_tallC.fbx-c919c488326554755b205bf0e5ee2dfe.md5 b/.godot/imported/rock_tallC.fbx-c919c488326554755b205bf0e5ee2dfe.md5 new file mode 100644 index 0000000..3d435b5 --- /dev/null +++ b/.godot/imported/rock_tallC.fbx-c919c488326554755b205bf0e5ee2dfe.md5 @@ -0,0 +1,2 @@ +source_md5="9b9b625957b1439b2c04d6b2dd71bfa7" +dest_md5="b527398c34fcd5b8253cfe60defe0e91" diff --git a/.godot/imported/rock_tallC.fbx-c919c488326554755b205bf0e5ee2dfe.scn b/.godot/imported/rock_tallC.fbx-c919c488326554755b205bf0e5ee2dfe.scn new file mode 100644 index 0000000..2c14288 Binary files /dev/null and b/.godot/imported/rock_tallC.fbx-c919c488326554755b205bf0e5ee2dfe.scn differ diff --git a/.godot/imported/rock_tallD-41a73c88d77a87ad73375f60735cedb4.glb b/.godot/imported/rock_tallD-41a73c88d77a87ad73375f60735cedb4.glb new file mode 100644 index 0000000..3dc4ed5 Binary files /dev/null and b/.godot/imported/rock_tallD-41a73c88d77a87ad73375f60735cedb4.glb differ diff --git a/.godot/imported/rock_tallD.fbx-41a73c88d77a87ad73375f60735cedb4.md5 b/.godot/imported/rock_tallD.fbx-41a73c88d77a87ad73375f60735cedb4.md5 new file mode 100644 index 0000000..620b1c9 --- /dev/null +++ b/.godot/imported/rock_tallD.fbx-41a73c88d77a87ad73375f60735cedb4.md5 @@ -0,0 +1,2 @@ +source_md5="8b3d41d0cc6dbd37473265f10ecbfcfc" +dest_md5="f168ce0c39e31eaaab7763b194678acd" diff --git a/.godot/imported/rock_tallD.fbx-41a73c88d77a87ad73375f60735cedb4.scn b/.godot/imported/rock_tallD.fbx-41a73c88d77a87ad73375f60735cedb4.scn new file mode 100644 index 0000000..caf0927 Binary files /dev/null and b/.godot/imported/rock_tallD.fbx-41a73c88d77a87ad73375f60735cedb4.scn differ diff --git a/.godot/imported/rock_tallE-cd6f541e910dc6feb1b6dbb2f48d6d6c.glb b/.godot/imported/rock_tallE-cd6f541e910dc6feb1b6dbb2f48d6d6c.glb new file mode 100644 index 0000000..4e48c30 Binary files /dev/null and b/.godot/imported/rock_tallE-cd6f541e910dc6feb1b6dbb2f48d6d6c.glb differ diff --git a/.godot/imported/rock_tallE.fbx-cd6f541e910dc6feb1b6dbb2f48d6d6c.md5 b/.godot/imported/rock_tallE.fbx-cd6f541e910dc6feb1b6dbb2f48d6d6c.md5 new file mode 100644 index 0000000..8b8eaa6 --- /dev/null +++ b/.godot/imported/rock_tallE.fbx-cd6f541e910dc6feb1b6dbb2f48d6d6c.md5 @@ -0,0 +1,2 @@ +source_md5="8c96238b10dc67eae8fbcc7966bdd449" +dest_md5="d1f5eaff33e6e03aa48ef54cc154882a" diff --git a/.godot/imported/rock_tallE.fbx-cd6f541e910dc6feb1b6dbb2f48d6d6c.scn b/.godot/imported/rock_tallE.fbx-cd6f541e910dc6feb1b6dbb2f48d6d6c.scn new file mode 100644 index 0000000..e529d32 Binary files /dev/null and b/.godot/imported/rock_tallE.fbx-cd6f541e910dc6feb1b6dbb2f48d6d6c.scn differ diff --git a/.godot/imported/rock_tallF-0c5847f742c249ebfe482dede77b716b.glb b/.godot/imported/rock_tallF-0c5847f742c249ebfe482dede77b716b.glb new file mode 100644 index 0000000..932ffdc Binary files /dev/null and b/.godot/imported/rock_tallF-0c5847f742c249ebfe482dede77b716b.glb differ diff --git a/.godot/imported/rock_tallF.fbx-0c5847f742c249ebfe482dede77b716b.md5 b/.godot/imported/rock_tallF.fbx-0c5847f742c249ebfe482dede77b716b.md5 new file mode 100644 index 0000000..f1b602e --- /dev/null +++ b/.godot/imported/rock_tallF.fbx-0c5847f742c249ebfe482dede77b716b.md5 @@ -0,0 +1,2 @@ +source_md5="7b2ed84ea2511ce5b89410e042923431" +dest_md5="6a0abecc5473da9e8b0abde722549cac" diff --git a/.godot/imported/rock_tallF.fbx-0c5847f742c249ebfe482dede77b716b.scn b/.godot/imported/rock_tallF.fbx-0c5847f742c249ebfe482dede77b716b.scn new file mode 100644 index 0000000..d936209 Binary files /dev/null and b/.godot/imported/rock_tallF.fbx-0c5847f742c249ebfe482dede77b716b.scn differ diff --git a/.godot/imported/rock_tallG-cdad14c0293f1a7d336a59afa1c6a1d3.glb b/.godot/imported/rock_tallG-cdad14c0293f1a7d336a59afa1c6a1d3.glb new file mode 100644 index 0000000..e87a604 Binary files /dev/null and b/.godot/imported/rock_tallG-cdad14c0293f1a7d336a59afa1c6a1d3.glb differ diff --git a/.godot/imported/rock_tallG.fbx-cdad14c0293f1a7d336a59afa1c6a1d3.md5 b/.godot/imported/rock_tallG.fbx-cdad14c0293f1a7d336a59afa1c6a1d3.md5 new file mode 100644 index 0000000..ea20c8d --- /dev/null +++ b/.godot/imported/rock_tallG.fbx-cdad14c0293f1a7d336a59afa1c6a1d3.md5 @@ -0,0 +1,2 @@ +source_md5="ab0a7816ad7ebe73f39857727fc48191" +dest_md5="e8229e353a28e07ebeeb7f2fe8c1365d" diff --git a/.godot/imported/rock_tallG.fbx-cdad14c0293f1a7d336a59afa1c6a1d3.scn b/.godot/imported/rock_tallG.fbx-cdad14c0293f1a7d336a59afa1c6a1d3.scn new file mode 100644 index 0000000..9df0633 Binary files /dev/null and b/.godot/imported/rock_tallG.fbx-cdad14c0293f1a7d336a59afa1c6a1d3.scn differ diff --git a/.godot/imported/rock_tallH-26edc56aaa642b49dce6ea6e957e36a7.glb b/.godot/imported/rock_tallH-26edc56aaa642b49dce6ea6e957e36a7.glb new file mode 100644 index 0000000..02cfec8 Binary files /dev/null and b/.godot/imported/rock_tallH-26edc56aaa642b49dce6ea6e957e36a7.glb differ diff --git a/.godot/imported/rock_tallH.fbx-26edc56aaa642b49dce6ea6e957e36a7.md5 b/.godot/imported/rock_tallH.fbx-26edc56aaa642b49dce6ea6e957e36a7.md5 new file mode 100644 index 0000000..f5743d1 --- /dev/null +++ b/.godot/imported/rock_tallH.fbx-26edc56aaa642b49dce6ea6e957e36a7.md5 @@ -0,0 +1,2 @@ +source_md5="536431822d02ee0c8e47f9e4bd1ea106" +dest_md5="b70c24aa775ee72feca92e5ae7b3420b" diff --git a/.godot/imported/rock_tallH.fbx-26edc56aaa642b49dce6ea6e957e36a7.scn b/.godot/imported/rock_tallH.fbx-26edc56aaa642b49dce6ea6e957e36a7.scn new file mode 100644 index 0000000..476be6c Binary files /dev/null and b/.godot/imported/rock_tallH.fbx-26edc56aaa642b49dce6ea6e957e36a7.scn differ diff --git a/.godot/imported/rock_tallI-70fec7e39a39078abb4049bcfc46c47f.glb b/.godot/imported/rock_tallI-70fec7e39a39078abb4049bcfc46c47f.glb new file mode 100644 index 0000000..12decc6 Binary files /dev/null and b/.godot/imported/rock_tallI-70fec7e39a39078abb4049bcfc46c47f.glb differ diff --git a/.godot/imported/rock_tallI.fbx-70fec7e39a39078abb4049bcfc46c47f.md5 b/.godot/imported/rock_tallI.fbx-70fec7e39a39078abb4049bcfc46c47f.md5 new file mode 100644 index 0000000..c8a42e4 --- /dev/null +++ b/.godot/imported/rock_tallI.fbx-70fec7e39a39078abb4049bcfc46c47f.md5 @@ -0,0 +1,2 @@ +source_md5="2dba2a7a4260f114d231c74213db36b7" +dest_md5="008608853cc2114d2389670293e766fe" diff --git a/.godot/imported/rock_tallI.fbx-70fec7e39a39078abb4049bcfc46c47f.scn b/.godot/imported/rock_tallI.fbx-70fec7e39a39078abb4049bcfc46c47f.scn new file mode 100644 index 0000000..f5b6f1a Binary files /dev/null and b/.godot/imported/rock_tallI.fbx-70fec7e39a39078abb4049bcfc46c47f.scn differ diff --git a/.godot/imported/rock_tallJ-5fe27c3488636d20ec2f1b1746e64d95.glb b/.godot/imported/rock_tallJ-5fe27c3488636d20ec2f1b1746e64d95.glb new file mode 100644 index 0000000..93ada25 Binary files /dev/null and b/.godot/imported/rock_tallJ-5fe27c3488636d20ec2f1b1746e64d95.glb differ diff --git a/.godot/imported/rock_tallJ.fbx-5fe27c3488636d20ec2f1b1746e64d95.md5 b/.godot/imported/rock_tallJ.fbx-5fe27c3488636d20ec2f1b1746e64d95.md5 new file mode 100644 index 0000000..2ee1f89 --- /dev/null +++ b/.godot/imported/rock_tallJ.fbx-5fe27c3488636d20ec2f1b1746e64d95.md5 @@ -0,0 +1,2 @@ +source_md5="3c6e386c38a56cb92e6c01e3a7568991" +dest_md5="c647e44fdd2fdf1bf87779e73d1a1e5d" diff --git a/.godot/imported/rock_tallJ.fbx-5fe27c3488636d20ec2f1b1746e64d95.scn b/.godot/imported/rock_tallJ.fbx-5fe27c3488636d20ec2f1b1746e64d95.scn new file mode 100644 index 0000000..afaa6d8 Binary files /dev/null and b/.godot/imported/rock_tallJ.fbx-5fe27c3488636d20ec2f1b1746e64d95.scn differ diff --git a/.godot/imported/roof-21c61e4f05239f1691afe0ac6cb09162.glb b/.godot/imported/roof-21c61e4f05239f1691afe0ac6cb09162.glb new file mode 100644 index 0000000..7ef55c3 Binary files /dev/null and b/.godot/imported/roof-21c61e4f05239f1691afe0ac6cb09162.glb differ diff --git a/.godot/imported/roof.fbx-21c61e4f05239f1691afe0ac6cb09162.md5 b/.godot/imported/roof.fbx-21c61e4f05239f1691afe0ac6cb09162.md5 new file mode 100644 index 0000000..20943e6 --- /dev/null +++ b/.godot/imported/roof.fbx-21c61e4f05239f1691afe0ac6cb09162.md5 @@ -0,0 +1,2 @@ +source_md5="f82908f3a759f53f617724dbf5c23a6e" +dest_md5="772ff96280c45f4dcf668679be33d22e" diff --git a/.godot/imported/roof.fbx-21c61e4f05239f1691afe0ac6cb09162.scn b/.godot/imported/roof.fbx-21c61e4f05239f1691afe0ac6cb09162.scn new file mode 100644 index 0000000..73d710c Binary files /dev/null and b/.godot/imported/roof.fbx-21c61e4f05239f1691afe0ac6cb09162.scn differ diff --git a/.godot/imported/roofCorner-877956136e525fa98dc7eb4a5522fcef.glb b/.godot/imported/roofCorner-877956136e525fa98dc7eb4a5522fcef.glb new file mode 100644 index 0000000..35a0940 Binary files /dev/null and b/.godot/imported/roofCorner-877956136e525fa98dc7eb4a5522fcef.glb differ diff --git a/.godot/imported/roofCorner.fbx-877956136e525fa98dc7eb4a5522fcef.md5 b/.godot/imported/roofCorner.fbx-877956136e525fa98dc7eb4a5522fcef.md5 new file mode 100644 index 0000000..740f57a --- /dev/null +++ b/.godot/imported/roofCorner.fbx-877956136e525fa98dc7eb4a5522fcef.md5 @@ -0,0 +1,2 @@ +source_md5="159b20f1cab5061ba76349b752c8df15" +dest_md5="fdc61bc5586685f653884f7f9fc57ebc" diff --git a/.godot/imported/roofCorner.fbx-877956136e525fa98dc7eb4a5522fcef.scn b/.godot/imported/roofCorner.fbx-877956136e525fa98dc7eb4a5522fcef.scn new file mode 100644 index 0000000..63f9e24 Binary files /dev/null and b/.godot/imported/roofCorner.fbx-877956136e525fa98dc7eb4a5522fcef.scn differ diff --git a/.godot/imported/roofCornerInner-c030db5f8beaa40e6936a932d4a946f8.glb b/.godot/imported/roofCornerInner-c030db5f8beaa40e6936a932d4a946f8.glb new file mode 100644 index 0000000..078a7f1 Binary files /dev/null and b/.godot/imported/roofCornerInner-c030db5f8beaa40e6936a932d4a946f8.glb differ diff --git a/.godot/imported/roofCornerInner.fbx-c030db5f8beaa40e6936a932d4a946f8.md5 b/.godot/imported/roofCornerInner.fbx-c030db5f8beaa40e6936a932d4a946f8.md5 new file mode 100644 index 0000000..3517ebe --- /dev/null +++ b/.godot/imported/roofCornerInner.fbx-c030db5f8beaa40e6936a932d4a946f8.md5 @@ -0,0 +1,2 @@ +source_md5="c62fd10b5253607693944a97e61e1e81" +dest_md5="82db1f778d31d1536ef40862e7217a79" diff --git a/.godot/imported/roofCornerInner.fbx-c030db5f8beaa40e6936a932d4a946f8.scn b/.godot/imported/roofCornerInner.fbx-c030db5f8beaa40e6936a932d4a946f8.scn new file mode 100644 index 0000000..8744cc9 Binary files /dev/null and b/.godot/imported/roofCornerInner.fbx-c030db5f8beaa40e6936a932d4a946f8.scn differ diff --git a/.godot/imported/roofCornerRound-eb3fd95aaf06c4c61b5e46f726e3bb21.glb b/.godot/imported/roofCornerRound-eb3fd95aaf06c4c61b5e46f726e3bb21.glb new file mode 100644 index 0000000..f4b71a0 Binary files /dev/null and b/.godot/imported/roofCornerRound-eb3fd95aaf06c4c61b5e46f726e3bb21.glb differ diff --git a/.godot/imported/roofCornerRound.fbx-eb3fd95aaf06c4c61b5e46f726e3bb21.md5 b/.godot/imported/roofCornerRound.fbx-eb3fd95aaf06c4c61b5e46f726e3bb21.md5 new file mode 100644 index 0000000..3bc5ced --- /dev/null +++ b/.godot/imported/roofCornerRound.fbx-eb3fd95aaf06c4c61b5e46f726e3bb21.md5 @@ -0,0 +1,2 @@ +source_md5="58f679f6ff1005951f468b8946d2ae88" +dest_md5="15df311ab0f70b3f5175c69ef1e47653" diff --git a/.godot/imported/roofCornerRound.fbx-eb3fd95aaf06c4c61b5e46f726e3bb21.scn b/.godot/imported/roofCornerRound.fbx-eb3fd95aaf06c4c61b5e46f726e3bb21.scn new file mode 100644 index 0000000..aa33ad1 Binary files /dev/null and b/.godot/imported/roofCornerRound.fbx-eb3fd95aaf06c4c61b5e46f726e3bb21.scn differ diff --git a/.godot/imported/roofFlat-631d1a0c14c313b7f3cd3a16831ddd9a.glb b/.godot/imported/roofFlat-631d1a0c14c313b7f3cd3a16831ddd9a.glb new file mode 100644 index 0000000..ffed86f Binary files /dev/null and b/.godot/imported/roofFlat-631d1a0c14c313b7f3cd3a16831ddd9a.glb differ diff --git a/.godot/imported/roofFlat.fbx-631d1a0c14c313b7f3cd3a16831ddd9a.md5 b/.godot/imported/roofFlat.fbx-631d1a0c14c313b7f3cd3a16831ddd9a.md5 new file mode 100644 index 0000000..7172cf6 --- /dev/null +++ b/.godot/imported/roofFlat.fbx-631d1a0c14c313b7f3cd3a16831ddd9a.md5 @@ -0,0 +1,2 @@ +source_md5="0daf65d58cc753f8c6e8f86b77c51f74" +dest_md5="77e307aec16367c2b6ea4072a7ef223a" diff --git a/.godot/imported/roofFlat.fbx-631d1a0c14c313b7f3cd3a16831ddd9a.scn b/.godot/imported/roofFlat.fbx-631d1a0c14c313b7f3cd3a16831ddd9a.scn new file mode 100644 index 0000000..34216d2 Binary files /dev/null and b/.godot/imported/roofFlat.fbx-631d1a0c14c313b7f3cd3a16831ddd9a.scn differ diff --git a/.godot/imported/roofGable-d6973c2f4dda9e86e020987b3c41d376.glb b/.godot/imported/roofGable-d6973c2f4dda9e86e020987b3c41d376.glb new file mode 100644 index 0000000..021e9d6 Binary files /dev/null and b/.godot/imported/roofGable-d6973c2f4dda9e86e020987b3c41d376.glb differ diff --git a/.godot/imported/roofGable.fbx-d6973c2f4dda9e86e020987b3c41d376.md5 b/.godot/imported/roofGable.fbx-d6973c2f4dda9e86e020987b3c41d376.md5 new file mode 100644 index 0000000..26a3ef0 --- /dev/null +++ b/.godot/imported/roofGable.fbx-d6973c2f4dda9e86e020987b3c41d376.md5 @@ -0,0 +1,2 @@ +source_md5="feb4e1d269eff29d4438f15ad0ef5a2e" +dest_md5="a1e54708c7bbcfb2522a742b5147642b" diff --git a/.godot/imported/roofGable.fbx-d6973c2f4dda9e86e020987b3c41d376.scn b/.godot/imported/roofGable.fbx-d6973c2f4dda9e86e020987b3c41d376.scn new file mode 100644 index 0000000..330afe2 Binary files /dev/null and b/.godot/imported/roofGable.fbx-d6973c2f4dda9e86e020987b3c41d376.scn differ diff --git a/.godot/imported/roofGableDetail-70082e99c2c58515283892d3d739c1d2.glb b/.godot/imported/roofGableDetail-70082e99c2c58515283892d3d739c1d2.glb new file mode 100644 index 0000000..7f7cff3 Binary files /dev/null and b/.godot/imported/roofGableDetail-70082e99c2c58515283892d3d739c1d2.glb differ diff --git a/.godot/imported/roofGableDetail.fbx-70082e99c2c58515283892d3d739c1d2.md5 b/.godot/imported/roofGableDetail.fbx-70082e99c2c58515283892d3d739c1d2.md5 new file mode 100644 index 0000000..8db25cb --- /dev/null +++ b/.godot/imported/roofGableDetail.fbx-70082e99c2c58515283892d3d739c1d2.md5 @@ -0,0 +1,2 @@ +source_md5="c05ea7d86c6e6d2a34df969c0a16b951" +dest_md5="b00422fd1c45e138405bd2e030c2e72a" diff --git a/.godot/imported/roofGableDetail.fbx-70082e99c2c58515283892d3d739c1d2.scn b/.godot/imported/roofGableDetail.fbx-70082e99c2c58515283892d3d739c1d2.scn new file mode 100644 index 0000000..8769454 Binary files /dev/null and b/.godot/imported/roofGableDetail.fbx-70082e99c2c58515283892d3d739c1d2.scn differ diff --git a/.godot/imported/roofGableEnd-55ce421580d2f13cdc1de4e85b0c2b77.glb b/.godot/imported/roofGableEnd-55ce421580d2f13cdc1de4e85b0c2b77.glb new file mode 100644 index 0000000..4765a3a Binary files /dev/null and b/.godot/imported/roofGableEnd-55ce421580d2f13cdc1de4e85b0c2b77.glb differ diff --git a/.godot/imported/roofGableEnd.fbx-55ce421580d2f13cdc1de4e85b0c2b77.md5 b/.godot/imported/roofGableEnd.fbx-55ce421580d2f13cdc1de4e85b0c2b77.md5 new file mode 100644 index 0000000..803c3f3 --- /dev/null +++ b/.godot/imported/roofGableEnd.fbx-55ce421580d2f13cdc1de4e85b0c2b77.md5 @@ -0,0 +1,2 @@ +source_md5="c961b680722b8533a94fa02851e58d10" +dest_md5="65ca8e5b5e57ee75f7e4278e32dadd67" diff --git a/.godot/imported/roofGableEnd.fbx-55ce421580d2f13cdc1de4e85b0c2b77.scn b/.godot/imported/roofGableEnd.fbx-55ce421580d2f13cdc1de4e85b0c2b77.scn new file mode 100644 index 0000000..b5b9fe3 Binary files /dev/null and b/.godot/imported/roofGableEnd.fbx-55ce421580d2f13cdc1de4e85b0c2b77.scn differ diff --git a/.godot/imported/roofGableTop-a31f8585a843bb2e3533a33af13dd8a6.glb b/.godot/imported/roofGableTop-a31f8585a843bb2e3533a33af13dd8a6.glb new file mode 100644 index 0000000..9d584c1 Binary files /dev/null and b/.godot/imported/roofGableTop-a31f8585a843bb2e3533a33af13dd8a6.glb differ diff --git a/.godot/imported/roofGableTop.fbx-a31f8585a843bb2e3533a33af13dd8a6.md5 b/.godot/imported/roofGableTop.fbx-a31f8585a843bb2e3533a33af13dd8a6.md5 new file mode 100644 index 0000000..3d49397 --- /dev/null +++ b/.godot/imported/roofGableTop.fbx-a31f8585a843bb2e3533a33af13dd8a6.md5 @@ -0,0 +1,2 @@ +source_md5="af7d484f2b1784ebefcca0a0e2659968" +dest_md5="9c75e291bc25db3c1c02a69e6ad9ad1f" diff --git a/.godot/imported/roofGableTop.fbx-a31f8585a843bb2e3533a33af13dd8a6.scn b/.godot/imported/roofGableTop.fbx-a31f8585a843bb2e3533a33af13dd8a6.scn new file mode 100644 index 0000000..2695703 Binary files /dev/null and b/.godot/imported/roofGableTop.fbx-a31f8585a843bb2e3533a33af13dd8a6.scn differ diff --git a/.godot/imported/roofHigh-51be8a20da5748b16bbf166803b20118.glb b/.godot/imported/roofHigh-51be8a20da5748b16bbf166803b20118.glb new file mode 100644 index 0000000..1ab802a Binary files /dev/null and b/.godot/imported/roofHigh-51be8a20da5748b16bbf166803b20118.glb differ diff --git a/.godot/imported/roofHigh.fbx-51be8a20da5748b16bbf166803b20118.md5 b/.godot/imported/roofHigh.fbx-51be8a20da5748b16bbf166803b20118.md5 new file mode 100644 index 0000000..0978928 --- /dev/null +++ b/.godot/imported/roofHigh.fbx-51be8a20da5748b16bbf166803b20118.md5 @@ -0,0 +1,2 @@ +source_md5="b64dfbf1d9d919c8db2c867fcb220114" +dest_md5="7d0c9f527be0264c009d35808403385b" diff --git a/.godot/imported/roofHigh.fbx-51be8a20da5748b16bbf166803b20118.scn b/.godot/imported/roofHigh.fbx-51be8a20da5748b16bbf166803b20118.scn new file mode 100644 index 0000000..c95931f Binary files /dev/null and b/.godot/imported/roofHigh.fbx-51be8a20da5748b16bbf166803b20118.scn differ diff --git a/.godot/imported/roofHighCorner-fd257355ceb776002c4d06dc171876ab.glb b/.godot/imported/roofHighCorner-fd257355ceb776002c4d06dc171876ab.glb new file mode 100644 index 0000000..7687cfc Binary files /dev/null and b/.godot/imported/roofHighCorner-fd257355ceb776002c4d06dc171876ab.glb differ diff --git a/.godot/imported/roofHighCorner.fbx-fd257355ceb776002c4d06dc171876ab.md5 b/.godot/imported/roofHighCorner.fbx-fd257355ceb776002c4d06dc171876ab.md5 new file mode 100644 index 0000000..c86c526 --- /dev/null +++ b/.godot/imported/roofHighCorner.fbx-fd257355ceb776002c4d06dc171876ab.md5 @@ -0,0 +1,2 @@ +source_md5="dd02869ff96bfc4841799edecad18cda" +dest_md5="2d312e47baf064a9e457327fcf6a4314" diff --git a/.godot/imported/roofHighCorner.fbx-fd257355ceb776002c4d06dc171876ab.scn b/.godot/imported/roofHighCorner.fbx-fd257355ceb776002c4d06dc171876ab.scn new file mode 100644 index 0000000..39f4c1a Binary files /dev/null and b/.godot/imported/roofHighCorner.fbx-fd257355ceb776002c4d06dc171876ab.scn differ diff --git a/.godot/imported/roofHighCornerInner-23d5e50772c4fe43fd27a6652a1afaee.glb b/.godot/imported/roofHighCornerInner-23d5e50772c4fe43fd27a6652a1afaee.glb new file mode 100644 index 0000000..3f8a9a2 Binary files /dev/null and b/.godot/imported/roofHighCornerInner-23d5e50772c4fe43fd27a6652a1afaee.glb differ diff --git a/.godot/imported/roofHighCornerInner.fbx-23d5e50772c4fe43fd27a6652a1afaee.md5 b/.godot/imported/roofHighCornerInner.fbx-23d5e50772c4fe43fd27a6652a1afaee.md5 new file mode 100644 index 0000000..bfbfb11 --- /dev/null +++ b/.godot/imported/roofHighCornerInner.fbx-23d5e50772c4fe43fd27a6652a1afaee.md5 @@ -0,0 +1,2 @@ +source_md5="9862b1f5f362e7637cbd525b9fd4ad72" +dest_md5="cbd1d47fe6b4d47cb645408507f9c4c9" diff --git a/.godot/imported/roofHighCornerInner.fbx-23d5e50772c4fe43fd27a6652a1afaee.scn b/.godot/imported/roofHighCornerInner.fbx-23d5e50772c4fe43fd27a6652a1afaee.scn new file mode 100644 index 0000000..e15dfdd Binary files /dev/null and b/.godot/imported/roofHighCornerInner.fbx-23d5e50772c4fe43fd27a6652a1afaee.scn differ diff --git a/.godot/imported/roofHighCornerRound-8c70e4105c0d1a53eef1e229cf6663b0.glb b/.godot/imported/roofHighCornerRound-8c70e4105c0d1a53eef1e229cf6663b0.glb new file mode 100644 index 0000000..10223c1 Binary files /dev/null and b/.godot/imported/roofHighCornerRound-8c70e4105c0d1a53eef1e229cf6663b0.glb differ diff --git a/.godot/imported/roofHighCornerRound.fbx-8c70e4105c0d1a53eef1e229cf6663b0.md5 b/.godot/imported/roofHighCornerRound.fbx-8c70e4105c0d1a53eef1e229cf6663b0.md5 new file mode 100644 index 0000000..3353634 --- /dev/null +++ b/.godot/imported/roofHighCornerRound.fbx-8c70e4105c0d1a53eef1e229cf6663b0.md5 @@ -0,0 +1,2 @@ +source_md5="f81be80e485131f015972ec459a70be0" +dest_md5="82a5ee972e9c351af91277115ae7be21" diff --git a/.godot/imported/roofHighCornerRound.fbx-8c70e4105c0d1a53eef1e229cf6663b0.scn b/.godot/imported/roofHighCornerRound.fbx-8c70e4105c0d1a53eef1e229cf6663b0.scn new file mode 100644 index 0000000..b7980e3 Binary files /dev/null and b/.godot/imported/roofHighCornerRound.fbx-8c70e4105c0d1a53eef1e229cf6663b0.scn differ diff --git a/.godot/imported/roofHighFlat-ad751a56e78e1f335f407218e7b0bf31.glb b/.godot/imported/roofHighFlat-ad751a56e78e1f335f407218e7b0bf31.glb new file mode 100644 index 0000000..0031017 Binary files /dev/null and b/.godot/imported/roofHighFlat-ad751a56e78e1f335f407218e7b0bf31.glb differ diff --git a/.godot/imported/roofHighFlat.fbx-ad751a56e78e1f335f407218e7b0bf31.md5 b/.godot/imported/roofHighFlat.fbx-ad751a56e78e1f335f407218e7b0bf31.md5 new file mode 100644 index 0000000..09b1a06 --- /dev/null +++ b/.godot/imported/roofHighFlat.fbx-ad751a56e78e1f335f407218e7b0bf31.md5 @@ -0,0 +1,2 @@ +source_md5="18c87d7a2a4186f8fd353068e439a274" +dest_md5="5588130088486a04fefd09527cdb239a" diff --git a/.godot/imported/roofHighFlat.fbx-ad751a56e78e1f335f407218e7b0bf31.scn b/.godot/imported/roofHighFlat.fbx-ad751a56e78e1f335f407218e7b0bf31.scn new file mode 100644 index 0000000..4bcf817 Binary files /dev/null and b/.godot/imported/roofHighFlat.fbx-ad751a56e78e1f335f407218e7b0bf31.scn differ diff --git a/.godot/imported/roofHighGable-0a22b05ae425219f7756ed9008a41897.glb b/.godot/imported/roofHighGable-0a22b05ae425219f7756ed9008a41897.glb new file mode 100644 index 0000000..96936fd Binary files /dev/null and b/.godot/imported/roofHighGable-0a22b05ae425219f7756ed9008a41897.glb differ diff --git a/.godot/imported/roofHighGable.fbx-0a22b05ae425219f7756ed9008a41897.md5 b/.godot/imported/roofHighGable.fbx-0a22b05ae425219f7756ed9008a41897.md5 new file mode 100644 index 0000000..f9d2281 --- /dev/null +++ b/.godot/imported/roofHighGable.fbx-0a22b05ae425219f7756ed9008a41897.md5 @@ -0,0 +1,2 @@ +source_md5="72512f00b81cc6aebf3fadbcbe88bba2" +dest_md5="bcce75b3b1dc4207109eff01c349f0c6" diff --git a/.godot/imported/roofHighGable.fbx-0a22b05ae425219f7756ed9008a41897.scn b/.godot/imported/roofHighGable.fbx-0a22b05ae425219f7756ed9008a41897.scn new file mode 100644 index 0000000..93001e5 Binary files /dev/null and b/.godot/imported/roofHighGable.fbx-0a22b05ae425219f7756ed9008a41897.scn differ diff --git a/.godot/imported/roofHighGableDetail-cbcddec4651b6858b5ddac7ff2957dc3.glb b/.godot/imported/roofHighGableDetail-cbcddec4651b6858b5ddac7ff2957dc3.glb new file mode 100644 index 0000000..47e0a6a Binary files /dev/null and b/.godot/imported/roofHighGableDetail-cbcddec4651b6858b5ddac7ff2957dc3.glb differ diff --git a/.godot/imported/roofHighGableDetail.fbx-cbcddec4651b6858b5ddac7ff2957dc3.md5 b/.godot/imported/roofHighGableDetail.fbx-cbcddec4651b6858b5ddac7ff2957dc3.md5 new file mode 100644 index 0000000..b63d68e --- /dev/null +++ b/.godot/imported/roofHighGableDetail.fbx-cbcddec4651b6858b5ddac7ff2957dc3.md5 @@ -0,0 +1,2 @@ +source_md5="e9875b191f6192cf5f33e9a7a882e1f9" +dest_md5="3eb6f6c5d84e035d8e87d03f7e7ca1b4" diff --git a/.godot/imported/roofHighGableDetail.fbx-cbcddec4651b6858b5ddac7ff2957dc3.scn b/.godot/imported/roofHighGableDetail.fbx-cbcddec4651b6858b5ddac7ff2957dc3.scn new file mode 100644 index 0000000..8d197db Binary files /dev/null and b/.godot/imported/roofHighGableDetail.fbx-cbcddec4651b6858b5ddac7ff2957dc3.scn differ diff --git a/.godot/imported/roofHighGableEnd-dc8202d02d832b4128379c5c46525e03.glb b/.godot/imported/roofHighGableEnd-dc8202d02d832b4128379c5c46525e03.glb new file mode 100644 index 0000000..e363d35 Binary files /dev/null and b/.godot/imported/roofHighGableEnd-dc8202d02d832b4128379c5c46525e03.glb differ diff --git a/.godot/imported/roofHighGableEnd.fbx-dc8202d02d832b4128379c5c46525e03.md5 b/.godot/imported/roofHighGableEnd.fbx-dc8202d02d832b4128379c5c46525e03.md5 new file mode 100644 index 0000000..e4decd7 --- /dev/null +++ b/.godot/imported/roofHighGableEnd.fbx-dc8202d02d832b4128379c5c46525e03.md5 @@ -0,0 +1,2 @@ +source_md5="37ccf1ea80f9f13291e3eca7138430de" +dest_md5="ad2dd74b80e17faa58c330b66be2caa2" diff --git a/.godot/imported/roofHighGableEnd.fbx-dc8202d02d832b4128379c5c46525e03.scn b/.godot/imported/roofHighGableEnd.fbx-dc8202d02d832b4128379c5c46525e03.scn new file mode 100644 index 0000000..55f02d2 Binary files /dev/null and b/.godot/imported/roofHighGableEnd.fbx-dc8202d02d832b4128379c5c46525e03.scn differ diff --git a/.godot/imported/roofHighGableTop-1964cb99ac23b58ea7f66950ec11bafc.glb b/.godot/imported/roofHighGableTop-1964cb99ac23b58ea7f66950ec11bafc.glb new file mode 100644 index 0000000..be0308f Binary files /dev/null and b/.godot/imported/roofHighGableTop-1964cb99ac23b58ea7f66950ec11bafc.glb differ diff --git a/.godot/imported/roofHighGableTop.fbx-1964cb99ac23b58ea7f66950ec11bafc.md5 b/.godot/imported/roofHighGableTop.fbx-1964cb99ac23b58ea7f66950ec11bafc.md5 new file mode 100644 index 0000000..f110bba --- /dev/null +++ b/.godot/imported/roofHighGableTop.fbx-1964cb99ac23b58ea7f66950ec11bafc.md5 @@ -0,0 +1,2 @@ +source_md5="b2516e7f3a57e9519ab4d1706e54706d" +dest_md5="288875811c4a9de0382fd64b4d71b44c" diff --git a/.godot/imported/roofHighGableTop.fbx-1964cb99ac23b58ea7f66950ec11bafc.scn b/.godot/imported/roofHighGableTop.fbx-1964cb99ac23b58ea7f66950ec11bafc.scn new file mode 100644 index 0000000..fd5813c Binary files /dev/null and b/.godot/imported/roofHighGableTop.fbx-1964cb99ac23b58ea7f66950ec11bafc.scn differ diff --git a/.godot/imported/roofHighLeft-1e2ddab9021b36af4ac7a3d63a709d70.glb b/.godot/imported/roofHighLeft-1e2ddab9021b36af4ac7a3d63a709d70.glb new file mode 100644 index 0000000..51878b6 Binary files /dev/null and b/.godot/imported/roofHighLeft-1e2ddab9021b36af4ac7a3d63a709d70.glb differ diff --git a/.godot/imported/roofHighLeft.fbx-1e2ddab9021b36af4ac7a3d63a709d70.md5 b/.godot/imported/roofHighLeft.fbx-1e2ddab9021b36af4ac7a3d63a709d70.md5 new file mode 100644 index 0000000..d0403b4 --- /dev/null +++ b/.godot/imported/roofHighLeft.fbx-1e2ddab9021b36af4ac7a3d63a709d70.md5 @@ -0,0 +1,2 @@ +source_md5="c8274eae849ab88812a0d82eb53e4102" +dest_md5="786a668842f4a7b6ea736c35b564802b" diff --git a/.godot/imported/roofHighLeft.fbx-1e2ddab9021b36af4ac7a3d63a709d70.scn b/.godot/imported/roofHighLeft.fbx-1e2ddab9021b36af4ac7a3d63a709d70.scn new file mode 100644 index 0000000..5df30b2 Binary files /dev/null and b/.godot/imported/roofHighLeft.fbx-1e2ddab9021b36af4ac7a3d63a709d70.scn differ diff --git a/.godot/imported/roofHighPoint-238dc341439685e0efb3ecf06d174800.glb b/.godot/imported/roofHighPoint-238dc341439685e0efb3ecf06d174800.glb new file mode 100644 index 0000000..45f7a5c Binary files /dev/null and b/.godot/imported/roofHighPoint-238dc341439685e0efb3ecf06d174800.glb differ diff --git a/.godot/imported/roofHighPoint.fbx-238dc341439685e0efb3ecf06d174800.md5 b/.godot/imported/roofHighPoint.fbx-238dc341439685e0efb3ecf06d174800.md5 new file mode 100644 index 0000000..7edd591 --- /dev/null +++ b/.godot/imported/roofHighPoint.fbx-238dc341439685e0efb3ecf06d174800.md5 @@ -0,0 +1,2 @@ +source_md5="035892309658d0f4b59e86ac8902787a" +dest_md5="bfd957f59ac9539150d477fc3643eae3" diff --git a/.godot/imported/roofHighPoint.fbx-238dc341439685e0efb3ecf06d174800.scn b/.godot/imported/roofHighPoint.fbx-238dc341439685e0efb3ecf06d174800.scn new file mode 100644 index 0000000..f5ae6cc Binary files /dev/null and b/.godot/imported/roofHighPoint.fbx-238dc341439685e0efb3ecf06d174800.scn differ diff --git a/.godot/imported/roofHighRight-12b33a55ac4785b8df6fcd59e4708669.glb b/.godot/imported/roofHighRight-12b33a55ac4785b8df6fcd59e4708669.glb new file mode 100644 index 0000000..a35d26d Binary files /dev/null and b/.godot/imported/roofHighRight-12b33a55ac4785b8df6fcd59e4708669.glb differ diff --git a/.godot/imported/roofHighRight.fbx-12b33a55ac4785b8df6fcd59e4708669.md5 b/.godot/imported/roofHighRight.fbx-12b33a55ac4785b8df6fcd59e4708669.md5 new file mode 100644 index 0000000..e42337a --- /dev/null +++ b/.godot/imported/roofHighRight.fbx-12b33a55ac4785b8df6fcd59e4708669.md5 @@ -0,0 +1,2 @@ +source_md5="29d18b5bfba9c9a8810dd30c0338777d" +dest_md5="0e156417e476b66bd729c36a21edf708" diff --git a/.godot/imported/roofHighRight.fbx-12b33a55ac4785b8df6fcd59e4708669.scn b/.godot/imported/roofHighRight.fbx-12b33a55ac4785b8df6fcd59e4708669.scn new file mode 100644 index 0000000..9d979c9 Binary files /dev/null and b/.godot/imported/roofHighRight.fbx-12b33a55ac4785b8df6fcd59e4708669.scn differ diff --git a/.godot/imported/roofHighWindow-b099da52150a95c295b7253f3d4d8031.glb b/.godot/imported/roofHighWindow-b099da52150a95c295b7253f3d4d8031.glb new file mode 100644 index 0000000..0f7a5c7 Binary files /dev/null and b/.godot/imported/roofHighWindow-b099da52150a95c295b7253f3d4d8031.glb differ diff --git a/.godot/imported/roofHighWindow.fbx-b099da52150a95c295b7253f3d4d8031.md5 b/.godot/imported/roofHighWindow.fbx-b099da52150a95c295b7253f3d4d8031.md5 new file mode 100644 index 0000000..a49ac29 --- /dev/null +++ b/.godot/imported/roofHighWindow.fbx-b099da52150a95c295b7253f3d4d8031.md5 @@ -0,0 +1,2 @@ +source_md5="6b4f5fabe774ff9778139b990eaf33ed" +dest_md5="eab1e6b88c36c62c61690f6fa08e74ed" diff --git a/.godot/imported/roofHighWindow.fbx-b099da52150a95c295b7253f3d4d8031.scn b/.godot/imported/roofHighWindow.fbx-b099da52150a95c295b7253f3d4d8031.scn new file mode 100644 index 0000000..d5d736a Binary files /dev/null and b/.godot/imported/roofHighWindow.fbx-b099da52150a95c295b7253f3d4d8031.scn differ diff --git a/.godot/imported/roofLeft-b7a2c49fcd85de272119d917a874d874.glb b/.godot/imported/roofLeft-b7a2c49fcd85de272119d917a874d874.glb new file mode 100644 index 0000000..c313f57 Binary files /dev/null and b/.godot/imported/roofLeft-b7a2c49fcd85de272119d917a874d874.glb differ diff --git a/.godot/imported/roofLeft.fbx-b7a2c49fcd85de272119d917a874d874.md5 b/.godot/imported/roofLeft.fbx-b7a2c49fcd85de272119d917a874d874.md5 new file mode 100644 index 0000000..1e11545 --- /dev/null +++ b/.godot/imported/roofLeft.fbx-b7a2c49fcd85de272119d917a874d874.md5 @@ -0,0 +1,2 @@ +source_md5="f6e1b33e356e367dd135cad0e51a33f1" +dest_md5="3e0d6b18e91d7e7a3b2fe897247e2020" diff --git a/.godot/imported/roofLeft.fbx-b7a2c49fcd85de272119d917a874d874.scn b/.godot/imported/roofLeft.fbx-b7a2c49fcd85de272119d917a874d874.scn new file mode 100644 index 0000000..d5f7123 Binary files /dev/null and b/.godot/imported/roofLeft.fbx-b7a2c49fcd85de272119d917a874d874.scn differ diff --git a/.godot/imported/roofPoint-f87c3a690dac7d20947417c2df315299.glb b/.godot/imported/roofPoint-f87c3a690dac7d20947417c2df315299.glb new file mode 100644 index 0000000..e87bf10 Binary files /dev/null and b/.godot/imported/roofPoint-f87c3a690dac7d20947417c2df315299.glb differ diff --git a/.godot/imported/roofPoint.fbx-f87c3a690dac7d20947417c2df315299.md5 b/.godot/imported/roofPoint.fbx-f87c3a690dac7d20947417c2df315299.md5 new file mode 100644 index 0000000..8711100 --- /dev/null +++ b/.godot/imported/roofPoint.fbx-f87c3a690dac7d20947417c2df315299.md5 @@ -0,0 +1,2 @@ +source_md5="93de89af3eaef67b0bebce78ba0173d8" +dest_md5="79b41a11d0ccd461ca2043e0b3c92da3" diff --git a/.godot/imported/roofPoint.fbx-f87c3a690dac7d20947417c2df315299.scn b/.godot/imported/roofPoint.fbx-f87c3a690dac7d20947417c2df315299.scn new file mode 100644 index 0000000..2331eee Binary files /dev/null and b/.godot/imported/roofPoint.fbx-f87c3a690dac7d20947417c2df315299.scn differ diff --git a/.godot/imported/roofRight-5417d10fd8bc4f821ecbd2ec8896d928.glb b/.godot/imported/roofRight-5417d10fd8bc4f821ecbd2ec8896d928.glb new file mode 100644 index 0000000..bfbe1d5 Binary files /dev/null and b/.godot/imported/roofRight-5417d10fd8bc4f821ecbd2ec8896d928.glb differ diff --git a/.godot/imported/roofRight.fbx-5417d10fd8bc4f821ecbd2ec8896d928.md5 b/.godot/imported/roofRight.fbx-5417d10fd8bc4f821ecbd2ec8896d928.md5 new file mode 100644 index 0000000..254fc87 --- /dev/null +++ b/.godot/imported/roofRight.fbx-5417d10fd8bc4f821ecbd2ec8896d928.md5 @@ -0,0 +1,2 @@ +source_md5="46cc21f572a6113e00c97268541be27f" +dest_md5="2cbfa785cbd57b2521bcb0804b283f63" diff --git a/.godot/imported/roofRight.fbx-5417d10fd8bc4f821ecbd2ec8896d928.scn b/.godot/imported/roofRight.fbx-5417d10fd8bc4f821ecbd2ec8896d928.scn new file mode 100644 index 0000000..449c22a Binary files /dev/null and b/.godot/imported/roofRight.fbx-5417d10fd8bc4f821ecbd2ec8896d928.scn differ diff --git a/.godot/imported/roofWindow-118bcfa7030ac9beb987afccbb1e1813.glb b/.godot/imported/roofWindow-118bcfa7030ac9beb987afccbb1e1813.glb new file mode 100644 index 0000000..817c424 Binary files /dev/null and b/.godot/imported/roofWindow-118bcfa7030ac9beb987afccbb1e1813.glb differ diff --git a/.godot/imported/roofWindow.fbx-118bcfa7030ac9beb987afccbb1e1813.md5 b/.godot/imported/roofWindow.fbx-118bcfa7030ac9beb987afccbb1e1813.md5 new file mode 100644 index 0000000..b7e614c --- /dev/null +++ b/.godot/imported/roofWindow.fbx-118bcfa7030ac9beb987afccbb1e1813.md5 @@ -0,0 +1,2 @@ +source_md5="1fa94db6fad9c1e934bc25ab826c6f1c" +dest_md5="d0e86dbd4c1c5896c28dbb6ea2da99a6" diff --git a/.godot/imported/roofWindow.fbx-118bcfa7030ac9beb987afccbb1e1813.scn b/.godot/imported/roofWindow.fbx-118bcfa7030ac9beb987afccbb1e1813.scn new file mode 100644 index 0000000..aa44695 Binary files /dev/null and b/.godot/imported/roofWindow.fbx-118bcfa7030ac9beb987afccbb1e1813.scn differ diff --git a/.godot/imported/running-water.mp3-99afb0dc6f38749fe4b95441262fb35e.md5 b/.godot/imported/running-water.mp3-99afb0dc6f38749fe4b95441262fb35e.md5 new file mode 100644 index 0000000..4d16a95 --- /dev/null +++ b/.godot/imported/running-water.mp3-99afb0dc6f38749fe4b95441262fb35e.md5 @@ -0,0 +1,2 @@ +source_md5="8d3dccbe8107b110bd9e115b5d797bc6" +dest_md5="24773d0fa64139b0ad8dd5c908e417b2" diff --git a/.godot/imported/running-water.mp3-99afb0dc6f38749fe4b95441262fb35e.mp3str b/.godot/imported/running-water.mp3-99afb0dc6f38749fe4b95441262fb35e.mp3str new file mode 100644 index 0000000..6de78a1 Binary files /dev/null and b/.godot/imported/running-water.mp3-99afb0dc6f38749fe4b95441262fb35e.mp3str differ diff --git a/.godot/imported/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png-64d5aa15b90a7bfca507e7d8e600f50b.md5 b/.godot/imported/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png-64d5aa15b90a7bfca507e7d8e600f50b.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png-64d5aa15b90a7bfca507e7d8e600f50b.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png-64d5aa15b90a7bfca507e7d8e600f50b.s3tc.ctex b/.godot/imported/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png-64d5aa15b90a7bfca507e7d8e600f50b.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png-64d5aa15b90a7bfca507e7d8e600f50b.s3tc.ctex differ diff --git a/.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81.glb b/.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81.glb new file mode 100644 index 0000000..d197c29 Binary files /dev/null and b/.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81.glb differ diff --git a/.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png-d47d51c23cce38076f0787303bcb1ce5.md5 b/.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png-d47d51c23cce38076f0787303bcb1ce5.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png-d47d51c23cce38076f0787303bcb1ce5.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png-d47d51c23cce38076f0787303bcb1ce5.s3tc.ctex b/.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png-d47d51c23cce38076f0787303bcb1ce5.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png-d47d51c23cce38076f0787303bcb1ce5.s3tc.ctex differ diff --git a/.godot/imported/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png-6489d8fc23cba5a4e5e024b3a9411fde.md5 b/.godot/imported/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png-6489d8fc23cba5a4e5e024b3a9411fde.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png-6489d8fc23cba5a4e5e024b3a9411fde.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png-6489d8fc23cba5a4e5e024b3a9411fde.s3tc.ctex b/.godot/imported/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png-6489d8fc23cba5a4e5e024b3a9411fde.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png-6489d8fc23cba5a4e5e024b3a9411fde.s3tc.ctex differ diff --git a/.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7.glb b/.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7.glb new file mode 100644 index 0000000..ac62c0d Binary files /dev/null and b/.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7.glb differ diff --git a/.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png-23199b4e7e7089d5031fd8f8258757fe.md5 b/.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png-23199b4e7e7089d5031fd8f8258757fe.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png-23199b4e7e7089d5031fd8f8258757fe.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png-23199b4e7e7089d5031fd8f8258757fe.s3tc.ctex b/.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png-23199b4e7e7089d5031fd8f8258757fe.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png-23199b4e7e7089d5031fd8f8258757fe.s3tc.ctex differ diff --git a/.godot/imported/sedan-sports.fbx-69ac797fd37e51ef48bd80666f3ae9c7.md5 b/.godot/imported/sedan-sports.fbx-69ac797fd37e51ef48bd80666f3ae9c7.md5 new file mode 100644 index 0000000..efa8733 --- /dev/null +++ b/.godot/imported/sedan-sports.fbx-69ac797fd37e51ef48bd80666f3ae9c7.md5 @@ -0,0 +1,2 @@ +source_md5="53e3b4040c15d5df77d44c8eb3609600" +dest_md5="67e28c81e739a20036866742a2158eda" diff --git a/.godot/imported/sedan-sports.fbx-69ac797fd37e51ef48bd80666f3ae9c7.scn b/.godot/imported/sedan-sports.fbx-69ac797fd37e51ef48bd80666f3ae9c7.scn new file mode 100644 index 0000000..e1bcbc8 Binary files /dev/null and b/.godot/imported/sedan-sports.fbx-69ac797fd37e51ef48bd80666f3ae9c7.scn differ diff --git a/.godot/imported/sedan.fbx-724c6d97251a0c32d634fff331b48d81.md5 b/.godot/imported/sedan.fbx-724c6d97251a0c32d634fff331b48d81.md5 new file mode 100644 index 0000000..dae09e6 --- /dev/null +++ b/.godot/imported/sedan.fbx-724c6d97251a0c32d634fff331b48d81.md5 @@ -0,0 +1,2 @@ +source_md5="62c67781bcdf93d3e78477336831daf6" +dest_md5="4961e80f451ec468542e05a9bff22a35" diff --git a/.godot/imported/sedan.fbx-724c6d97251a0c32d634fff331b48d81.scn b/.godot/imported/sedan.fbx-724c6d97251a0c32d634fff331b48d81.scn new file mode 100644 index 0000000..419109b Binary files /dev/null and b/.godot/imported/sedan.fbx-724c6d97251a0c32d634fff331b48d81.scn differ diff --git a/.godot/imported/sign-2500382c44b3cf82988f3356826084ba.glb b/.godot/imported/sign-2500382c44b3cf82988f3356826084ba.glb new file mode 100644 index 0000000..cf182f9 Binary files /dev/null and b/.godot/imported/sign-2500382c44b3cf82988f3356826084ba.glb differ diff --git a/.godot/imported/sign.fbx-2500382c44b3cf82988f3356826084ba.md5 b/.godot/imported/sign.fbx-2500382c44b3cf82988f3356826084ba.md5 new file mode 100644 index 0000000..bca2c93 --- /dev/null +++ b/.godot/imported/sign.fbx-2500382c44b3cf82988f3356826084ba.md5 @@ -0,0 +1,2 @@ +source_md5="1b03c36eb608794b7d3cf39ec146304d" +dest_md5="848d6217208cbb231ea6d64629ba2c6a" diff --git a/.godot/imported/sign.fbx-2500382c44b3cf82988f3356826084ba.scn b/.godot/imported/sign.fbx-2500382c44b3cf82988f3356826084ba.scn new file mode 100644 index 0000000..2e80368 Binary files /dev/null and b/.godot/imported/sign.fbx-2500382c44b3cf82988f3356826084ba.scn differ diff --git a/.godot/imported/stairsFull-60fea4eaf9b0b28ddfe6063895e9671b.glb b/.godot/imported/stairsFull-60fea4eaf9b0b28ddfe6063895e9671b.glb new file mode 100644 index 0000000..da78478 Binary files /dev/null and b/.godot/imported/stairsFull-60fea4eaf9b0b28ddfe6063895e9671b.glb differ diff --git a/.godot/imported/stairsFull.fbx-60fea4eaf9b0b28ddfe6063895e9671b.md5 b/.godot/imported/stairsFull.fbx-60fea4eaf9b0b28ddfe6063895e9671b.md5 new file mode 100644 index 0000000..2317ea7 --- /dev/null +++ b/.godot/imported/stairsFull.fbx-60fea4eaf9b0b28ddfe6063895e9671b.md5 @@ -0,0 +1,2 @@ +source_md5="9997729a198f0f64b31ec57e21a1c9c4" +dest_md5="04c6ed054639b2e7596f2928e0844560" diff --git a/.godot/imported/stairsFull.fbx-60fea4eaf9b0b28ddfe6063895e9671b.scn b/.godot/imported/stairsFull.fbx-60fea4eaf9b0b28ddfe6063895e9671b.scn new file mode 100644 index 0000000..7594b2e Binary files /dev/null and b/.godot/imported/stairsFull.fbx-60fea4eaf9b0b28ddfe6063895e9671b.scn differ diff --git a/.godot/imported/stairsFullCornerInner-f3b5b832ebcf1b49a879c3b2c5ff67e8.glb b/.godot/imported/stairsFullCornerInner-f3b5b832ebcf1b49a879c3b2c5ff67e8.glb new file mode 100644 index 0000000..0e196dd Binary files /dev/null and b/.godot/imported/stairsFullCornerInner-f3b5b832ebcf1b49a879c3b2c5ff67e8.glb differ diff --git a/.godot/imported/stairsFullCornerInner.fbx-f3b5b832ebcf1b49a879c3b2c5ff67e8.md5 b/.godot/imported/stairsFullCornerInner.fbx-f3b5b832ebcf1b49a879c3b2c5ff67e8.md5 new file mode 100644 index 0000000..b5fecdd --- /dev/null +++ b/.godot/imported/stairsFullCornerInner.fbx-f3b5b832ebcf1b49a879c3b2c5ff67e8.md5 @@ -0,0 +1,2 @@ +source_md5="49eb4dda0a891bcbf2ad6145841d21cd" +dest_md5="9605b3cda209299ddfc64ad78c59f06f" diff --git a/.godot/imported/stairsFullCornerInner.fbx-f3b5b832ebcf1b49a879c3b2c5ff67e8.scn b/.godot/imported/stairsFullCornerInner.fbx-f3b5b832ebcf1b49a879c3b2c5ff67e8.scn new file mode 100644 index 0000000..bf64a39 Binary files /dev/null and b/.godot/imported/stairsFullCornerInner.fbx-f3b5b832ebcf1b49a879c3b2c5ff67e8.scn differ diff --git a/.godot/imported/stairsFullCornerOuter-4b453b7835bf7da718df1792c5543b9c.glb b/.godot/imported/stairsFullCornerOuter-4b453b7835bf7da718df1792c5543b9c.glb new file mode 100644 index 0000000..06635f8 Binary files /dev/null and b/.godot/imported/stairsFullCornerOuter-4b453b7835bf7da718df1792c5543b9c.glb differ diff --git a/.godot/imported/stairsFullCornerOuter.fbx-4b453b7835bf7da718df1792c5543b9c.md5 b/.godot/imported/stairsFullCornerOuter.fbx-4b453b7835bf7da718df1792c5543b9c.md5 new file mode 100644 index 0000000..744d75d --- /dev/null +++ b/.godot/imported/stairsFullCornerOuter.fbx-4b453b7835bf7da718df1792c5543b9c.md5 @@ -0,0 +1,2 @@ +source_md5="e6527b4ef689b49fb496fab7f5786919" +dest_md5="c03ef1e61000653eb2d3cbab866a312e" diff --git a/.godot/imported/stairsFullCornerOuter.fbx-4b453b7835bf7da718df1792c5543b9c.scn b/.godot/imported/stairsFullCornerOuter.fbx-4b453b7835bf7da718df1792c5543b9c.scn new file mode 100644 index 0000000..9778a6e Binary files /dev/null and b/.godot/imported/stairsFullCornerOuter.fbx-4b453b7835bf7da718df1792c5543b9c.scn differ diff --git a/.godot/imported/stairsStone-2c765a0509a1de6afbdfe70af67d2fa2.glb b/.godot/imported/stairsStone-2c765a0509a1de6afbdfe70af67d2fa2.glb new file mode 100644 index 0000000..525eb85 Binary files /dev/null and b/.godot/imported/stairsStone-2c765a0509a1de6afbdfe70af67d2fa2.glb differ diff --git a/.godot/imported/stairsStone.fbx-2c765a0509a1de6afbdfe70af67d2fa2.md5 b/.godot/imported/stairsStone.fbx-2c765a0509a1de6afbdfe70af67d2fa2.md5 new file mode 100644 index 0000000..040a558 --- /dev/null +++ b/.godot/imported/stairsStone.fbx-2c765a0509a1de6afbdfe70af67d2fa2.md5 @@ -0,0 +1,2 @@ +source_md5="18e58f4193a4e35061b992b2b90dafa1" +dest_md5="23901c913f9e0110f5b9503a1918519e" diff --git a/.godot/imported/stairsStone.fbx-2c765a0509a1de6afbdfe70af67d2fa2.scn b/.godot/imported/stairsStone.fbx-2c765a0509a1de6afbdfe70af67d2fa2.scn new file mode 100644 index 0000000..b9ffd38 Binary files /dev/null and b/.godot/imported/stairsStone.fbx-2c765a0509a1de6afbdfe70af67d2fa2.scn differ diff --git a/.godot/imported/stairsStoneCorner-727bc3a5d497d9ec23a0ea404fb52921.glb b/.godot/imported/stairsStoneCorner-727bc3a5d497d9ec23a0ea404fb52921.glb new file mode 100644 index 0000000..e07c54c Binary files /dev/null and b/.godot/imported/stairsStoneCorner-727bc3a5d497d9ec23a0ea404fb52921.glb differ diff --git a/.godot/imported/stairsStoneCorner.fbx-727bc3a5d497d9ec23a0ea404fb52921.md5 b/.godot/imported/stairsStoneCorner.fbx-727bc3a5d497d9ec23a0ea404fb52921.md5 new file mode 100644 index 0000000..c36466e --- /dev/null +++ b/.godot/imported/stairsStoneCorner.fbx-727bc3a5d497d9ec23a0ea404fb52921.md5 @@ -0,0 +1,2 @@ +source_md5="688127d81761f7c7bda24e0d3fd50a34" +dest_md5="77e53768d51d964f4527deaa7d6a976a" diff --git a/.godot/imported/stairsStoneCorner.fbx-727bc3a5d497d9ec23a0ea404fb52921.scn b/.godot/imported/stairsStoneCorner.fbx-727bc3a5d497d9ec23a0ea404fb52921.scn new file mode 100644 index 0000000..2083cc4 Binary files /dev/null and b/.godot/imported/stairsStoneCorner.fbx-727bc3a5d497d9ec23a0ea404fb52921.scn differ diff --git a/.godot/imported/stairsStoneHandrail-0ca5fb6a331084c486c1c90301bf4e24.glb b/.godot/imported/stairsStoneHandrail-0ca5fb6a331084c486c1c90301bf4e24.glb new file mode 100644 index 0000000..d3785e5 Binary files /dev/null and b/.godot/imported/stairsStoneHandrail-0ca5fb6a331084c486c1c90301bf4e24.glb differ diff --git a/.godot/imported/stairsStoneHandrail.fbx-0ca5fb6a331084c486c1c90301bf4e24.md5 b/.godot/imported/stairsStoneHandrail.fbx-0ca5fb6a331084c486c1c90301bf4e24.md5 new file mode 100644 index 0000000..26fdb9f --- /dev/null +++ b/.godot/imported/stairsStoneHandrail.fbx-0ca5fb6a331084c486c1c90301bf4e24.md5 @@ -0,0 +1,2 @@ +source_md5="2c8560ac5cb908ae685d322eb6bc59ff" +dest_md5="952ed8c70724b119e83eac989e6f6149" diff --git a/.godot/imported/stairsStoneHandrail.fbx-0ca5fb6a331084c486c1c90301bf4e24.scn b/.godot/imported/stairsStoneHandrail.fbx-0ca5fb6a331084c486c1c90301bf4e24.scn new file mode 100644 index 0000000..a541c5a Binary files /dev/null and b/.godot/imported/stairsStoneHandrail.fbx-0ca5fb6a331084c486c1c90301bf4e24.scn differ diff --git a/.godot/imported/stairsStoneRound-53f289156861d483abfdb9dde4facfdc.glb b/.godot/imported/stairsStoneRound-53f289156861d483abfdb9dde4facfdc.glb new file mode 100644 index 0000000..97795c8 Binary files /dev/null and b/.godot/imported/stairsStoneRound-53f289156861d483abfdb9dde4facfdc.glb differ diff --git a/.godot/imported/stairsStoneRound.fbx-53f289156861d483abfdb9dde4facfdc.md5 b/.godot/imported/stairsStoneRound.fbx-53f289156861d483abfdb9dde4facfdc.md5 new file mode 100644 index 0000000..33bd708 --- /dev/null +++ b/.godot/imported/stairsStoneRound.fbx-53f289156861d483abfdb9dde4facfdc.md5 @@ -0,0 +1,2 @@ +source_md5="8a538c3e0d294e4f94d5e90b7cfa3f45" +dest_md5="d82b3c9dccc44e0b6b97427f5bb76cc8" diff --git a/.godot/imported/stairsStoneRound.fbx-53f289156861d483abfdb9dde4facfdc.scn b/.godot/imported/stairsStoneRound.fbx-53f289156861d483abfdb9dde4facfdc.scn new file mode 100644 index 0000000..74853e2 Binary files /dev/null and b/.godot/imported/stairsStoneRound.fbx-53f289156861d483abfdb9dde4facfdc.scn differ diff --git a/.godot/imported/stairsWideStone-67e4bf276c6f623003a7a698fe822df3.glb b/.godot/imported/stairsWideStone-67e4bf276c6f623003a7a698fe822df3.glb new file mode 100644 index 0000000..d9a5ff4 Binary files /dev/null and b/.godot/imported/stairsWideStone-67e4bf276c6f623003a7a698fe822df3.glb differ diff --git a/.godot/imported/stairsWideStone.fbx-67e4bf276c6f623003a7a698fe822df3.md5 b/.godot/imported/stairsWideStone.fbx-67e4bf276c6f623003a7a698fe822df3.md5 new file mode 100644 index 0000000..94c78e1 --- /dev/null +++ b/.godot/imported/stairsWideStone.fbx-67e4bf276c6f623003a7a698fe822df3.md5 @@ -0,0 +1,2 @@ +source_md5="658115bbb3a3671bdce00121254fa3b0" +dest_md5="8ee86addc049ec954969acc261007658" diff --git a/.godot/imported/stairsWideStone.fbx-67e4bf276c6f623003a7a698fe822df3.scn b/.godot/imported/stairsWideStone.fbx-67e4bf276c6f623003a7a698fe822df3.scn new file mode 100644 index 0000000..605cbd2 Binary files /dev/null and b/.godot/imported/stairsWideStone.fbx-67e4bf276c6f623003a7a698fe822df3.scn differ diff --git a/.godot/imported/stairsWideStoneHandrail-869e1933a8a978c007cd9bcea318df9a.glb b/.godot/imported/stairsWideStoneHandrail-869e1933a8a978c007cd9bcea318df9a.glb new file mode 100644 index 0000000..be8d026 Binary files /dev/null and b/.godot/imported/stairsWideStoneHandrail-869e1933a8a978c007cd9bcea318df9a.glb differ diff --git a/.godot/imported/stairsWideStoneHandrail.fbx-869e1933a8a978c007cd9bcea318df9a.md5 b/.godot/imported/stairsWideStoneHandrail.fbx-869e1933a8a978c007cd9bcea318df9a.md5 new file mode 100644 index 0000000..7c51110 --- /dev/null +++ b/.godot/imported/stairsWideStoneHandrail.fbx-869e1933a8a978c007cd9bcea318df9a.md5 @@ -0,0 +1,2 @@ +source_md5="611e586d1da07660a6348426400ba08e" +dest_md5="d03c18d8ded404f987e6272f0abc6094" diff --git a/.godot/imported/stairsWideStoneHandrail.fbx-869e1933a8a978c007cd9bcea318df9a.scn b/.godot/imported/stairsWideStoneHandrail.fbx-869e1933a8a978c007cd9bcea318df9a.scn new file mode 100644 index 0000000..24271c1 Binary files /dev/null and b/.godot/imported/stairsWideStoneHandrail.fbx-869e1933a8a978c007cd9bcea318df9a.scn differ diff --git a/.godot/imported/stairsWideWood-f304f784d00d5b138ef7c9dae34f2d96.glb b/.godot/imported/stairsWideWood-f304f784d00d5b138ef7c9dae34f2d96.glb new file mode 100644 index 0000000..77a9420 Binary files /dev/null and b/.godot/imported/stairsWideWood-f304f784d00d5b138ef7c9dae34f2d96.glb differ diff --git a/.godot/imported/stairsWideWood.fbx-f304f784d00d5b138ef7c9dae34f2d96.md5 b/.godot/imported/stairsWideWood.fbx-f304f784d00d5b138ef7c9dae34f2d96.md5 new file mode 100644 index 0000000..0d4992a --- /dev/null +++ b/.godot/imported/stairsWideWood.fbx-f304f784d00d5b138ef7c9dae34f2d96.md5 @@ -0,0 +1,2 @@ +source_md5="38be62130383205bb812d6da8191a100" +dest_md5="cdd801789189c678e587f0da75de8c9a" diff --git a/.godot/imported/stairsWideWood.fbx-f304f784d00d5b138ef7c9dae34f2d96.scn b/.godot/imported/stairsWideWood.fbx-f304f784d00d5b138ef7c9dae34f2d96.scn new file mode 100644 index 0000000..8cbb520 Binary files /dev/null and b/.godot/imported/stairsWideWood.fbx-f304f784d00d5b138ef7c9dae34f2d96.scn differ diff --git a/.godot/imported/stairsWideWoodHandrail-6d6f89eda06cc2efbf15e4cf45aa8f1c.glb b/.godot/imported/stairsWideWoodHandrail-6d6f89eda06cc2efbf15e4cf45aa8f1c.glb new file mode 100644 index 0000000..a307b00 Binary files /dev/null and b/.godot/imported/stairsWideWoodHandrail-6d6f89eda06cc2efbf15e4cf45aa8f1c.glb differ diff --git a/.godot/imported/stairsWideWoodHandrail.fbx-6d6f89eda06cc2efbf15e4cf45aa8f1c.md5 b/.godot/imported/stairsWideWoodHandrail.fbx-6d6f89eda06cc2efbf15e4cf45aa8f1c.md5 new file mode 100644 index 0000000..6f023b3 --- /dev/null +++ b/.godot/imported/stairsWideWoodHandrail.fbx-6d6f89eda06cc2efbf15e4cf45aa8f1c.md5 @@ -0,0 +1,2 @@ +source_md5="f8eda8230d68c4b2290c1a41e1776681" +dest_md5="4daa3553daf907fd124f69ea46843c62" diff --git a/.godot/imported/stairsWideWoodHandrail.fbx-6d6f89eda06cc2efbf15e4cf45aa8f1c.scn b/.godot/imported/stairsWideWoodHandrail.fbx-6d6f89eda06cc2efbf15e4cf45aa8f1c.scn new file mode 100644 index 0000000..a9f695e Binary files /dev/null and b/.godot/imported/stairsWideWoodHandrail.fbx-6d6f89eda06cc2efbf15e4cf45aa8f1c.scn differ diff --git a/.godot/imported/stairsWood-1b5c96c706697c72e937654624deebaf.glb b/.godot/imported/stairsWood-1b5c96c706697c72e937654624deebaf.glb new file mode 100644 index 0000000..3e17c1b Binary files /dev/null and b/.godot/imported/stairsWood-1b5c96c706697c72e937654624deebaf.glb differ diff --git a/.godot/imported/stairsWood.fbx-1b5c96c706697c72e937654624deebaf.md5 b/.godot/imported/stairsWood.fbx-1b5c96c706697c72e937654624deebaf.md5 new file mode 100644 index 0000000..ab47a0e --- /dev/null +++ b/.godot/imported/stairsWood.fbx-1b5c96c706697c72e937654624deebaf.md5 @@ -0,0 +1,2 @@ +source_md5="87df5e7d72846288e87df1cf37740d9c" +dest_md5="4c6637f5304ea11c4d5531c5127f280d" diff --git a/.godot/imported/stairsWood.fbx-1b5c96c706697c72e937654624deebaf.scn b/.godot/imported/stairsWood.fbx-1b5c96c706697c72e937654624deebaf.scn new file mode 100644 index 0000000..de29646 Binary files /dev/null and b/.godot/imported/stairsWood.fbx-1b5c96c706697c72e937654624deebaf.scn differ diff --git a/.godot/imported/stairsWoodHandrail-dad83406364bde9f647891a787d64ef9.glb b/.godot/imported/stairsWoodHandrail-dad83406364bde9f647891a787d64ef9.glb new file mode 100644 index 0000000..4c2f6b1 Binary files /dev/null and b/.godot/imported/stairsWoodHandrail-dad83406364bde9f647891a787d64ef9.glb differ diff --git a/.godot/imported/stairsWoodHandrail.fbx-dad83406364bde9f647891a787d64ef9.md5 b/.godot/imported/stairsWoodHandrail.fbx-dad83406364bde9f647891a787d64ef9.md5 new file mode 100644 index 0000000..1d10ea3 --- /dev/null +++ b/.godot/imported/stairsWoodHandrail.fbx-dad83406364bde9f647891a787d64ef9.md5 @@ -0,0 +1,2 @@ +source_md5="95b6de5a2155b9dc5dfd87992f8f5fc2" +dest_md5="8e61bebfa8a5763598672d8f961b225a" diff --git a/.godot/imported/stairsWoodHandrail.fbx-dad83406364bde9f647891a787d64ef9.scn b/.godot/imported/stairsWoodHandrail.fbx-dad83406364bde9f647891a787d64ef9.scn new file mode 100644 index 0000000..9ee54c6 Binary files /dev/null and b/.godot/imported/stairsWoodHandrail.fbx-dad83406364bde9f647891a787d64ef9.scn differ diff --git a/.godot/imported/stall-4984b8b770d3c9482eb801bbc2ed738a.glb b/.godot/imported/stall-4984b8b770d3c9482eb801bbc2ed738a.glb new file mode 100644 index 0000000..b0eb5da Binary files /dev/null and b/.godot/imported/stall-4984b8b770d3c9482eb801bbc2ed738a.glb differ diff --git a/.godot/imported/stall.fbx-4984b8b770d3c9482eb801bbc2ed738a.md5 b/.godot/imported/stall.fbx-4984b8b770d3c9482eb801bbc2ed738a.md5 new file mode 100644 index 0000000..e2093a8 --- /dev/null +++ b/.godot/imported/stall.fbx-4984b8b770d3c9482eb801bbc2ed738a.md5 @@ -0,0 +1,2 @@ +source_md5="1fa8c1e0c96dddb33718d95ddec793b1" +dest_md5="49106f28b66f55c1c854215a6d5b7c30" diff --git a/.godot/imported/stall.fbx-4984b8b770d3c9482eb801bbc2ed738a.scn b/.godot/imported/stall.fbx-4984b8b770d3c9482eb801bbc2ed738a.scn new file mode 100644 index 0000000..9abeabd Binary files /dev/null and b/.godot/imported/stall.fbx-4984b8b770d3c9482eb801bbc2ed738a.scn differ diff --git a/.godot/imported/stallBench-3de43222943aa3e4b2da7f6c77e37ce0.glb b/.godot/imported/stallBench-3de43222943aa3e4b2da7f6c77e37ce0.glb new file mode 100644 index 0000000..f59012a Binary files /dev/null and b/.godot/imported/stallBench-3de43222943aa3e4b2da7f6c77e37ce0.glb differ diff --git a/.godot/imported/stallBench.fbx-3de43222943aa3e4b2da7f6c77e37ce0.md5 b/.godot/imported/stallBench.fbx-3de43222943aa3e4b2da7f6c77e37ce0.md5 new file mode 100644 index 0000000..738e015 --- /dev/null +++ b/.godot/imported/stallBench.fbx-3de43222943aa3e4b2da7f6c77e37ce0.md5 @@ -0,0 +1,2 @@ +source_md5="f28f3bfe857dfa7650c83638985d14e7" +dest_md5="b6aab55675e75a645ca99adae83b0ff4" diff --git a/.godot/imported/stallBench.fbx-3de43222943aa3e4b2da7f6c77e37ce0.scn b/.godot/imported/stallBench.fbx-3de43222943aa3e4b2da7f6c77e37ce0.scn new file mode 100644 index 0000000..fc672c9 Binary files /dev/null and b/.godot/imported/stallBench.fbx-3de43222943aa3e4b2da7f6c77e37ce0.scn differ diff --git a/.godot/imported/stallGreen-a207f56fa504ae0165c40e36cedcf970.glb b/.godot/imported/stallGreen-a207f56fa504ae0165c40e36cedcf970.glb new file mode 100644 index 0000000..c4adc82 Binary files /dev/null and b/.godot/imported/stallGreen-a207f56fa504ae0165c40e36cedcf970.glb differ diff --git a/.godot/imported/stallGreen.fbx-a207f56fa504ae0165c40e36cedcf970.md5 b/.godot/imported/stallGreen.fbx-a207f56fa504ae0165c40e36cedcf970.md5 new file mode 100644 index 0000000..fef3e8a --- /dev/null +++ b/.godot/imported/stallGreen.fbx-a207f56fa504ae0165c40e36cedcf970.md5 @@ -0,0 +1,2 @@ +source_md5="649b8dbcb893839a31b3050d0d230250" +dest_md5="5d6b17b040a6f95689efcdd69424cbda" diff --git a/.godot/imported/stallGreen.fbx-a207f56fa504ae0165c40e36cedcf970.scn b/.godot/imported/stallGreen.fbx-a207f56fa504ae0165c40e36cedcf970.scn new file mode 100644 index 0000000..fa99e6f Binary files /dev/null and b/.godot/imported/stallGreen.fbx-a207f56fa504ae0165c40e36cedcf970.scn differ diff --git a/.godot/imported/stallRed-a7221ac4cade0475b9da72460ef87438.glb b/.godot/imported/stallRed-a7221ac4cade0475b9da72460ef87438.glb new file mode 100644 index 0000000..3749f38 Binary files /dev/null and b/.godot/imported/stallRed-a7221ac4cade0475b9da72460ef87438.glb differ diff --git a/.godot/imported/stallRed.fbx-a7221ac4cade0475b9da72460ef87438.md5 b/.godot/imported/stallRed.fbx-a7221ac4cade0475b9da72460ef87438.md5 new file mode 100644 index 0000000..a112c8d --- /dev/null +++ b/.godot/imported/stallRed.fbx-a7221ac4cade0475b9da72460ef87438.md5 @@ -0,0 +1,2 @@ +source_md5="93a97db2cbccf2954cf449772b332537" +dest_md5="d27290319c89eec18d2aaa2c87f9c235" diff --git a/.godot/imported/stallRed.fbx-a7221ac4cade0475b9da72460ef87438.scn b/.godot/imported/stallRed.fbx-a7221ac4cade0475b9da72460ef87438.scn new file mode 100644 index 0000000..e8fc914 Binary files /dev/null and b/.godot/imported/stallRed.fbx-a7221ac4cade0475b9da72460ef87438.scn differ diff --git a/.godot/imported/stallStool-65983dd37277183b034490b6b88aec12.glb b/.godot/imported/stallStool-65983dd37277183b034490b6b88aec12.glb new file mode 100644 index 0000000..7965282 Binary files /dev/null and b/.godot/imported/stallStool-65983dd37277183b034490b6b88aec12.glb differ diff --git a/.godot/imported/stallStool.fbx-65983dd37277183b034490b6b88aec12.md5 b/.godot/imported/stallStool.fbx-65983dd37277183b034490b6b88aec12.md5 new file mode 100644 index 0000000..7505b08 --- /dev/null +++ b/.godot/imported/stallStool.fbx-65983dd37277183b034490b6b88aec12.md5 @@ -0,0 +1,2 @@ +source_md5="4696cc720318df1c2f178d8d89c2dee5" +dest_md5="29fee415c428bca25ac36bd916a33a56" diff --git a/.godot/imported/stallStool.fbx-65983dd37277183b034490b6b88aec12.scn b/.godot/imported/stallStool.fbx-65983dd37277183b034490b6b88aec12.scn new file mode 100644 index 0000000..bf3a82c Binary files /dev/null and b/.godot/imported/stallStool.fbx-65983dd37277183b034490b6b88aec12.scn differ diff --git a/.godot/imported/statue_block-642abc1eb897fcb1115c50a9543b3ce3.glb b/.godot/imported/statue_block-642abc1eb897fcb1115c50a9543b3ce3.glb new file mode 100644 index 0000000..aa4bea6 Binary files /dev/null and b/.godot/imported/statue_block-642abc1eb897fcb1115c50a9543b3ce3.glb differ diff --git a/.godot/imported/statue_block.fbx-642abc1eb897fcb1115c50a9543b3ce3.md5 b/.godot/imported/statue_block.fbx-642abc1eb897fcb1115c50a9543b3ce3.md5 new file mode 100644 index 0000000..c6c263f --- /dev/null +++ b/.godot/imported/statue_block.fbx-642abc1eb897fcb1115c50a9543b3ce3.md5 @@ -0,0 +1,2 @@ +source_md5="dc0cef12081fb86ac8b037b3e75aca73" +dest_md5="e0fb4f2d492aeb131f7f9910a4c6919e" diff --git a/.godot/imported/statue_block.fbx-642abc1eb897fcb1115c50a9543b3ce3.scn b/.godot/imported/statue_block.fbx-642abc1eb897fcb1115c50a9543b3ce3.scn new file mode 100644 index 0000000..563131f Binary files /dev/null and b/.godot/imported/statue_block.fbx-642abc1eb897fcb1115c50a9543b3ce3.scn differ diff --git a/.godot/imported/statue_column-6efcfdc3e3d314961984c8afdc78ec57.glb b/.godot/imported/statue_column-6efcfdc3e3d314961984c8afdc78ec57.glb new file mode 100644 index 0000000..59dcec9 Binary files /dev/null and b/.godot/imported/statue_column-6efcfdc3e3d314961984c8afdc78ec57.glb differ diff --git a/.godot/imported/statue_column.fbx-6efcfdc3e3d314961984c8afdc78ec57.md5 b/.godot/imported/statue_column.fbx-6efcfdc3e3d314961984c8afdc78ec57.md5 new file mode 100644 index 0000000..1becd93 --- /dev/null +++ b/.godot/imported/statue_column.fbx-6efcfdc3e3d314961984c8afdc78ec57.md5 @@ -0,0 +1,2 @@ +source_md5="6d38afb5b89a62d1d1803dec6a7713cf" +dest_md5="fec7eb6bec64da4ce0921997eba3db45" diff --git a/.godot/imported/statue_column.fbx-6efcfdc3e3d314961984c8afdc78ec57.scn b/.godot/imported/statue_column.fbx-6efcfdc3e3d314961984c8afdc78ec57.scn new file mode 100644 index 0000000..cc1715a Binary files /dev/null and b/.godot/imported/statue_column.fbx-6efcfdc3e3d314961984c8afdc78ec57.scn differ diff --git a/.godot/imported/statue_columnDamaged-ac997f152327b35da0a6400741996fa6.glb b/.godot/imported/statue_columnDamaged-ac997f152327b35da0a6400741996fa6.glb new file mode 100644 index 0000000..d23e803 Binary files /dev/null and b/.godot/imported/statue_columnDamaged-ac997f152327b35da0a6400741996fa6.glb differ diff --git a/.godot/imported/statue_columnDamaged.fbx-ac997f152327b35da0a6400741996fa6.md5 b/.godot/imported/statue_columnDamaged.fbx-ac997f152327b35da0a6400741996fa6.md5 new file mode 100644 index 0000000..f7d1e40 --- /dev/null +++ b/.godot/imported/statue_columnDamaged.fbx-ac997f152327b35da0a6400741996fa6.md5 @@ -0,0 +1,2 @@ +source_md5="5578cccba5189a5a9768e26d415af7a3" +dest_md5="f4eb4fddeb54f623c3f23390cb684568" diff --git a/.godot/imported/statue_columnDamaged.fbx-ac997f152327b35da0a6400741996fa6.scn b/.godot/imported/statue_columnDamaged.fbx-ac997f152327b35da0a6400741996fa6.scn new file mode 100644 index 0000000..43362da Binary files /dev/null and b/.godot/imported/statue_columnDamaged.fbx-ac997f152327b35da0a6400741996fa6.scn differ diff --git a/.godot/imported/statue_head-b1f1f1ae9d5368f30caf8b7b6f4a03e2.glb b/.godot/imported/statue_head-b1f1f1ae9d5368f30caf8b7b6f4a03e2.glb new file mode 100644 index 0000000..283f858 Binary files /dev/null and b/.godot/imported/statue_head-b1f1f1ae9d5368f30caf8b7b6f4a03e2.glb differ diff --git a/.godot/imported/statue_head.fbx-b1f1f1ae9d5368f30caf8b7b6f4a03e2.md5 b/.godot/imported/statue_head.fbx-b1f1f1ae9d5368f30caf8b7b6f4a03e2.md5 new file mode 100644 index 0000000..c463117 --- /dev/null +++ b/.godot/imported/statue_head.fbx-b1f1f1ae9d5368f30caf8b7b6f4a03e2.md5 @@ -0,0 +1,2 @@ +source_md5="11b04cd7179521be669b1c868a4e73f0" +dest_md5="61345befff51515f70d9a7ff9d70a0d3" diff --git a/.godot/imported/statue_head.fbx-b1f1f1ae9d5368f30caf8b7b6f4a03e2.scn b/.godot/imported/statue_head.fbx-b1f1f1ae9d5368f30caf8b7b6f4a03e2.scn new file mode 100644 index 0000000..19ff84a Binary files /dev/null and b/.godot/imported/statue_head.fbx-b1f1f1ae9d5368f30caf8b7b6f4a03e2.scn differ diff --git a/.godot/imported/statue_obelisk-15ab840f9fd68cc8084e93e607b2cda3.glb b/.godot/imported/statue_obelisk-15ab840f9fd68cc8084e93e607b2cda3.glb new file mode 100644 index 0000000..1953cc4 Binary files /dev/null and b/.godot/imported/statue_obelisk-15ab840f9fd68cc8084e93e607b2cda3.glb differ diff --git a/.godot/imported/statue_obelisk.fbx-15ab840f9fd68cc8084e93e607b2cda3.md5 b/.godot/imported/statue_obelisk.fbx-15ab840f9fd68cc8084e93e607b2cda3.md5 new file mode 100644 index 0000000..82162e1 --- /dev/null +++ b/.godot/imported/statue_obelisk.fbx-15ab840f9fd68cc8084e93e607b2cda3.md5 @@ -0,0 +1,2 @@ +source_md5="e267a46faae7ce4421bbfffa750246e9" +dest_md5="07d03bee9f14162e518f7670972cc264" diff --git a/.godot/imported/statue_obelisk.fbx-15ab840f9fd68cc8084e93e607b2cda3.scn b/.godot/imported/statue_obelisk.fbx-15ab840f9fd68cc8084e93e607b2cda3.scn new file mode 100644 index 0000000..eecf2e7 Binary files /dev/null and b/.godot/imported/statue_obelisk.fbx-15ab840f9fd68cc8084e93e607b2cda3.scn differ diff --git a/.godot/imported/statue_ring-521b1a525082f135c57257e95e304f28.glb b/.godot/imported/statue_ring-521b1a525082f135c57257e95e304f28.glb new file mode 100644 index 0000000..495485e Binary files /dev/null and b/.godot/imported/statue_ring-521b1a525082f135c57257e95e304f28.glb differ diff --git a/.godot/imported/statue_ring.fbx-521b1a525082f135c57257e95e304f28.md5 b/.godot/imported/statue_ring.fbx-521b1a525082f135c57257e95e304f28.md5 new file mode 100644 index 0000000..64c46b2 --- /dev/null +++ b/.godot/imported/statue_ring.fbx-521b1a525082f135c57257e95e304f28.md5 @@ -0,0 +1,2 @@ +source_md5="d8768d851a6e2a5c64d0154644747cb0" +dest_md5="148c355b267224f3788f8183449387bb" diff --git a/.godot/imported/statue_ring.fbx-521b1a525082f135c57257e95e304f28.scn b/.godot/imported/statue_ring.fbx-521b1a525082f135c57257e95e304f28.scn new file mode 100644 index 0000000..585cda8 Binary files /dev/null and b/.godot/imported/statue_ring.fbx-521b1a525082f135c57257e95e304f28.scn differ diff --git a/.godot/imported/stone_largeA-34081d6ac24e9af234d90b1f72a9ef3e.glb b/.godot/imported/stone_largeA-34081d6ac24e9af234d90b1f72a9ef3e.glb new file mode 100644 index 0000000..d0e03ad Binary files /dev/null and b/.godot/imported/stone_largeA-34081d6ac24e9af234d90b1f72a9ef3e.glb differ diff --git a/.godot/imported/stone_largeA.fbx-34081d6ac24e9af234d90b1f72a9ef3e.md5 b/.godot/imported/stone_largeA.fbx-34081d6ac24e9af234d90b1f72a9ef3e.md5 new file mode 100644 index 0000000..fe47bec --- /dev/null +++ b/.godot/imported/stone_largeA.fbx-34081d6ac24e9af234d90b1f72a9ef3e.md5 @@ -0,0 +1,2 @@ +source_md5="884e9e2a3b40b74563fa531afabc2543" +dest_md5="8d2ceb7f89aba2d2635c57b48b16bb2b" diff --git a/.godot/imported/stone_largeA.fbx-34081d6ac24e9af234d90b1f72a9ef3e.scn b/.godot/imported/stone_largeA.fbx-34081d6ac24e9af234d90b1f72a9ef3e.scn new file mode 100644 index 0000000..dc86e1b Binary files /dev/null and b/.godot/imported/stone_largeA.fbx-34081d6ac24e9af234d90b1f72a9ef3e.scn differ diff --git a/.godot/imported/stone_largeB-c81c123ae8dbf8db8a03b3f6f871732f.glb b/.godot/imported/stone_largeB-c81c123ae8dbf8db8a03b3f6f871732f.glb new file mode 100644 index 0000000..ce1eebc Binary files /dev/null and b/.godot/imported/stone_largeB-c81c123ae8dbf8db8a03b3f6f871732f.glb differ diff --git a/.godot/imported/stone_largeB.fbx-c81c123ae8dbf8db8a03b3f6f871732f.md5 b/.godot/imported/stone_largeB.fbx-c81c123ae8dbf8db8a03b3f6f871732f.md5 new file mode 100644 index 0000000..4e74ce9 --- /dev/null +++ b/.godot/imported/stone_largeB.fbx-c81c123ae8dbf8db8a03b3f6f871732f.md5 @@ -0,0 +1,2 @@ +source_md5="40b6bc3a8feec1f9dfe603b08a0429b6" +dest_md5="d8ad6e0104d9c1bf6111bd176e56636f" diff --git a/.godot/imported/stone_largeB.fbx-c81c123ae8dbf8db8a03b3f6f871732f.scn b/.godot/imported/stone_largeB.fbx-c81c123ae8dbf8db8a03b3f6f871732f.scn new file mode 100644 index 0000000..43b98c9 Binary files /dev/null and b/.godot/imported/stone_largeB.fbx-c81c123ae8dbf8db8a03b3f6f871732f.scn differ diff --git a/.godot/imported/stone_largeC-4ffb583a1b59ba230ab806ae64798a8a.glb b/.godot/imported/stone_largeC-4ffb583a1b59ba230ab806ae64798a8a.glb new file mode 100644 index 0000000..9554fbd Binary files /dev/null and b/.godot/imported/stone_largeC-4ffb583a1b59ba230ab806ae64798a8a.glb differ diff --git a/.godot/imported/stone_largeC.fbx-4ffb583a1b59ba230ab806ae64798a8a.md5 b/.godot/imported/stone_largeC.fbx-4ffb583a1b59ba230ab806ae64798a8a.md5 new file mode 100644 index 0000000..c83f43d --- /dev/null +++ b/.godot/imported/stone_largeC.fbx-4ffb583a1b59ba230ab806ae64798a8a.md5 @@ -0,0 +1,2 @@ +source_md5="9b46022e143ef338ee8ac66ffac6ebc7" +dest_md5="383eda12a69bf3d4e02127cbd689af5e" diff --git a/.godot/imported/stone_largeC.fbx-4ffb583a1b59ba230ab806ae64798a8a.scn b/.godot/imported/stone_largeC.fbx-4ffb583a1b59ba230ab806ae64798a8a.scn new file mode 100644 index 0000000..47e3ac2 Binary files /dev/null and b/.godot/imported/stone_largeC.fbx-4ffb583a1b59ba230ab806ae64798a8a.scn differ diff --git a/.godot/imported/stone_largeD-684c1c38c6dd99e51e7cad2900942342.glb b/.godot/imported/stone_largeD-684c1c38c6dd99e51e7cad2900942342.glb new file mode 100644 index 0000000..7a7bd8e Binary files /dev/null and b/.godot/imported/stone_largeD-684c1c38c6dd99e51e7cad2900942342.glb differ diff --git a/.godot/imported/stone_largeD.fbx-684c1c38c6dd99e51e7cad2900942342.md5 b/.godot/imported/stone_largeD.fbx-684c1c38c6dd99e51e7cad2900942342.md5 new file mode 100644 index 0000000..bc82570 --- /dev/null +++ b/.godot/imported/stone_largeD.fbx-684c1c38c6dd99e51e7cad2900942342.md5 @@ -0,0 +1,2 @@ +source_md5="1401fbcc267b70b5571478560f23a35f" +dest_md5="168c3f9163937a3f595714668bd48707" diff --git a/.godot/imported/stone_largeD.fbx-684c1c38c6dd99e51e7cad2900942342.scn b/.godot/imported/stone_largeD.fbx-684c1c38c6dd99e51e7cad2900942342.scn new file mode 100644 index 0000000..05c20e7 Binary files /dev/null and b/.godot/imported/stone_largeD.fbx-684c1c38c6dd99e51e7cad2900942342.scn differ diff --git a/.godot/imported/stone_largeE-f9b2e1b672372f35f01278b7543eaced.glb b/.godot/imported/stone_largeE-f9b2e1b672372f35f01278b7543eaced.glb new file mode 100644 index 0000000..f902ca2 Binary files /dev/null and b/.godot/imported/stone_largeE-f9b2e1b672372f35f01278b7543eaced.glb differ diff --git a/.godot/imported/stone_largeE.fbx-f9b2e1b672372f35f01278b7543eaced.md5 b/.godot/imported/stone_largeE.fbx-f9b2e1b672372f35f01278b7543eaced.md5 new file mode 100644 index 0000000..e271e95 --- /dev/null +++ b/.godot/imported/stone_largeE.fbx-f9b2e1b672372f35f01278b7543eaced.md5 @@ -0,0 +1,2 @@ +source_md5="20d8dcd78d3f4a55dd146ee512ffa155" +dest_md5="335ac5b2cf204638d5e0477167b44a3d" diff --git a/.godot/imported/stone_largeE.fbx-f9b2e1b672372f35f01278b7543eaced.scn b/.godot/imported/stone_largeE.fbx-f9b2e1b672372f35f01278b7543eaced.scn new file mode 100644 index 0000000..8b4432e Binary files /dev/null and b/.godot/imported/stone_largeE.fbx-f9b2e1b672372f35f01278b7543eaced.scn differ diff --git a/.godot/imported/stone_largeF-954da9782dd311cfeb5c3ba1b94f271a.glb b/.godot/imported/stone_largeF-954da9782dd311cfeb5c3ba1b94f271a.glb new file mode 100644 index 0000000..e3e1677 Binary files /dev/null and b/.godot/imported/stone_largeF-954da9782dd311cfeb5c3ba1b94f271a.glb differ diff --git a/.godot/imported/stone_largeF.fbx-954da9782dd311cfeb5c3ba1b94f271a.md5 b/.godot/imported/stone_largeF.fbx-954da9782dd311cfeb5c3ba1b94f271a.md5 new file mode 100644 index 0000000..6fb1196 --- /dev/null +++ b/.godot/imported/stone_largeF.fbx-954da9782dd311cfeb5c3ba1b94f271a.md5 @@ -0,0 +1,2 @@ +source_md5="e4a44ddb77871b290d2b4622e14fb0dd" +dest_md5="8227af7ee47edbadc745152fe180d788" diff --git a/.godot/imported/stone_largeF.fbx-954da9782dd311cfeb5c3ba1b94f271a.scn b/.godot/imported/stone_largeF.fbx-954da9782dd311cfeb5c3ba1b94f271a.scn new file mode 100644 index 0000000..02d0147 Binary files /dev/null and b/.godot/imported/stone_largeF.fbx-954da9782dd311cfeb5c3ba1b94f271a.scn differ diff --git a/.godot/imported/stone_smallA-bb93c79598893d1945bf19f5c920f614.glb b/.godot/imported/stone_smallA-bb93c79598893d1945bf19f5c920f614.glb new file mode 100644 index 0000000..e092c7d Binary files /dev/null and b/.godot/imported/stone_smallA-bb93c79598893d1945bf19f5c920f614.glb differ diff --git a/.godot/imported/stone_smallA.fbx-bb93c79598893d1945bf19f5c920f614.md5 b/.godot/imported/stone_smallA.fbx-bb93c79598893d1945bf19f5c920f614.md5 new file mode 100644 index 0000000..68e5f13 --- /dev/null +++ b/.godot/imported/stone_smallA.fbx-bb93c79598893d1945bf19f5c920f614.md5 @@ -0,0 +1,2 @@ +source_md5="132321a42ec99b4f50d2d8a729e6b4bc" +dest_md5="d36bb49fb82d56d2e54de4f45b36a5b2" diff --git a/.godot/imported/stone_smallA.fbx-bb93c79598893d1945bf19f5c920f614.scn b/.godot/imported/stone_smallA.fbx-bb93c79598893d1945bf19f5c920f614.scn new file mode 100644 index 0000000..40dc18a Binary files /dev/null and b/.godot/imported/stone_smallA.fbx-bb93c79598893d1945bf19f5c920f614.scn differ diff --git a/.godot/imported/stone_smallB-c85b8c75423c79a63744410c195ade85.glb b/.godot/imported/stone_smallB-c85b8c75423c79a63744410c195ade85.glb new file mode 100644 index 0000000..4e81d04 Binary files /dev/null and b/.godot/imported/stone_smallB-c85b8c75423c79a63744410c195ade85.glb differ diff --git a/.godot/imported/stone_smallB.fbx-c85b8c75423c79a63744410c195ade85.md5 b/.godot/imported/stone_smallB.fbx-c85b8c75423c79a63744410c195ade85.md5 new file mode 100644 index 0000000..d43f953 --- /dev/null +++ b/.godot/imported/stone_smallB.fbx-c85b8c75423c79a63744410c195ade85.md5 @@ -0,0 +1,2 @@ +source_md5="695306fa51d456a00fa699a4abd4096d" +dest_md5="2da61913ba6baafdfc5b6ef5ab620230" diff --git a/.godot/imported/stone_smallB.fbx-c85b8c75423c79a63744410c195ade85.scn b/.godot/imported/stone_smallB.fbx-c85b8c75423c79a63744410c195ade85.scn new file mode 100644 index 0000000..faf850c Binary files /dev/null and b/.godot/imported/stone_smallB.fbx-c85b8c75423c79a63744410c195ade85.scn differ diff --git a/.godot/imported/stone_smallC-48eea7f978389709364af9bdef4fb061.glb b/.godot/imported/stone_smallC-48eea7f978389709364af9bdef4fb061.glb new file mode 100644 index 0000000..960f2d5 Binary files /dev/null and b/.godot/imported/stone_smallC-48eea7f978389709364af9bdef4fb061.glb differ diff --git a/.godot/imported/stone_smallC.fbx-48eea7f978389709364af9bdef4fb061.md5 b/.godot/imported/stone_smallC.fbx-48eea7f978389709364af9bdef4fb061.md5 new file mode 100644 index 0000000..2cc3c72 --- /dev/null +++ b/.godot/imported/stone_smallC.fbx-48eea7f978389709364af9bdef4fb061.md5 @@ -0,0 +1,2 @@ +source_md5="f372b361586e97a7e7735c88cc19ad8d" +dest_md5="28a83364db8922880066efc5c1a89949" diff --git a/.godot/imported/stone_smallC.fbx-48eea7f978389709364af9bdef4fb061.scn b/.godot/imported/stone_smallC.fbx-48eea7f978389709364af9bdef4fb061.scn new file mode 100644 index 0000000..472e37d Binary files /dev/null and b/.godot/imported/stone_smallC.fbx-48eea7f978389709364af9bdef4fb061.scn differ diff --git a/.godot/imported/stone_smallD-c91558925865b64dd913bed543606ef9.glb b/.godot/imported/stone_smallD-c91558925865b64dd913bed543606ef9.glb new file mode 100644 index 0000000..862e5bf Binary files /dev/null and b/.godot/imported/stone_smallD-c91558925865b64dd913bed543606ef9.glb differ diff --git a/.godot/imported/stone_smallD.fbx-c91558925865b64dd913bed543606ef9.md5 b/.godot/imported/stone_smallD.fbx-c91558925865b64dd913bed543606ef9.md5 new file mode 100644 index 0000000..b4083fe --- /dev/null +++ b/.godot/imported/stone_smallD.fbx-c91558925865b64dd913bed543606ef9.md5 @@ -0,0 +1,2 @@ +source_md5="7e8ea1cee2b1aa193b228db2c852aa11" +dest_md5="ba2912167bb6fb51caf908a5cbabf134" diff --git a/.godot/imported/stone_smallD.fbx-c91558925865b64dd913bed543606ef9.scn b/.godot/imported/stone_smallD.fbx-c91558925865b64dd913bed543606ef9.scn new file mode 100644 index 0000000..4e81794 Binary files /dev/null and b/.godot/imported/stone_smallD.fbx-c91558925865b64dd913bed543606ef9.scn differ diff --git a/.godot/imported/stone_smallE-d150bcb822ef797c51fd1618786fd239.glb b/.godot/imported/stone_smallE-d150bcb822ef797c51fd1618786fd239.glb new file mode 100644 index 0000000..8d9940d Binary files /dev/null and b/.godot/imported/stone_smallE-d150bcb822ef797c51fd1618786fd239.glb differ diff --git a/.godot/imported/stone_smallE.fbx-d150bcb822ef797c51fd1618786fd239.md5 b/.godot/imported/stone_smallE.fbx-d150bcb822ef797c51fd1618786fd239.md5 new file mode 100644 index 0000000..d6307ca --- /dev/null +++ b/.godot/imported/stone_smallE.fbx-d150bcb822ef797c51fd1618786fd239.md5 @@ -0,0 +1,2 @@ +source_md5="f23e957a572296a2cc3230312ab21540" +dest_md5="33e93f4ce3ca7ba542fe6d9fc69b9acf" diff --git a/.godot/imported/stone_smallE.fbx-d150bcb822ef797c51fd1618786fd239.scn b/.godot/imported/stone_smallE.fbx-d150bcb822ef797c51fd1618786fd239.scn new file mode 100644 index 0000000..96c828d Binary files /dev/null and b/.godot/imported/stone_smallE.fbx-d150bcb822ef797c51fd1618786fd239.scn differ diff --git a/.godot/imported/stone_smallF-e08759529710637ee7c1a862a6ec9ceb.glb b/.godot/imported/stone_smallF-e08759529710637ee7c1a862a6ec9ceb.glb new file mode 100644 index 0000000..4a7eb39 Binary files /dev/null and b/.godot/imported/stone_smallF-e08759529710637ee7c1a862a6ec9ceb.glb differ diff --git a/.godot/imported/stone_smallF.fbx-e08759529710637ee7c1a862a6ec9ceb.md5 b/.godot/imported/stone_smallF.fbx-e08759529710637ee7c1a862a6ec9ceb.md5 new file mode 100644 index 0000000..4b7e538 --- /dev/null +++ b/.godot/imported/stone_smallF.fbx-e08759529710637ee7c1a862a6ec9ceb.md5 @@ -0,0 +1,2 @@ +source_md5="133a7cbe67c536e8c1cdd0a5142dd816" +dest_md5="934ee9e5ab705991ed1c5cbf7bd1ed92" diff --git a/.godot/imported/stone_smallF.fbx-e08759529710637ee7c1a862a6ec9ceb.scn b/.godot/imported/stone_smallF.fbx-e08759529710637ee7c1a862a6ec9ceb.scn new file mode 100644 index 0000000..e90eb77 Binary files /dev/null and b/.godot/imported/stone_smallF.fbx-e08759529710637ee7c1a862a6ec9ceb.scn differ diff --git a/.godot/imported/stone_smallFlatA-352b54a05ad80841ce4f0918b8d83b4e.glb b/.godot/imported/stone_smallFlatA-352b54a05ad80841ce4f0918b8d83b4e.glb new file mode 100644 index 0000000..ffce41c Binary files /dev/null and b/.godot/imported/stone_smallFlatA-352b54a05ad80841ce4f0918b8d83b4e.glb differ diff --git a/.godot/imported/stone_smallFlatA.fbx-352b54a05ad80841ce4f0918b8d83b4e.md5 b/.godot/imported/stone_smallFlatA.fbx-352b54a05ad80841ce4f0918b8d83b4e.md5 new file mode 100644 index 0000000..328c22c --- /dev/null +++ b/.godot/imported/stone_smallFlatA.fbx-352b54a05ad80841ce4f0918b8d83b4e.md5 @@ -0,0 +1,2 @@ +source_md5="9d82e671573439a6d33d74dae26f793d" +dest_md5="2cd93817b596931363c4e4a57726f131" diff --git a/.godot/imported/stone_smallFlatA.fbx-352b54a05ad80841ce4f0918b8d83b4e.scn b/.godot/imported/stone_smallFlatA.fbx-352b54a05ad80841ce4f0918b8d83b4e.scn new file mode 100644 index 0000000..49bc665 Binary files /dev/null and b/.godot/imported/stone_smallFlatA.fbx-352b54a05ad80841ce4f0918b8d83b4e.scn differ diff --git a/.godot/imported/stone_smallFlatB-89e93cb3b404ef6e32e49236d2f8b91d.glb b/.godot/imported/stone_smallFlatB-89e93cb3b404ef6e32e49236d2f8b91d.glb new file mode 100644 index 0000000..49fb13d Binary files /dev/null and b/.godot/imported/stone_smallFlatB-89e93cb3b404ef6e32e49236d2f8b91d.glb differ diff --git a/.godot/imported/stone_smallFlatB.fbx-89e93cb3b404ef6e32e49236d2f8b91d.md5 b/.godot/imported/stone_smallFlatB.fbx-89e93cb3b404ef6e32e49236d2f8b91d.md5 new file mode 100644 index 0000000..b4d77a5 --- /dev/null +++ b/.godot/imported/stone_smallFlatB.fbx-89e93cb3b404ef6e32e49236d2f8b91d.md5 @@ -0,0 +1,2 @@ +source_md5="31ba2f37ca4fe11513fa813bcf3c9386" +dest_md5="f55103e420fdcd6526dee534e0d4c4ad" diff --git a/.godot/imported/stone_smallFlatB.fbx-89e93cb3b404ef6e32e49236d2f8b91d.scn b/.godot/imported/stone_smallFlatB.fbx-89e93cb3b404ef6e32e49236d2f8b91d.scn new file mode 100644 index 0000000..35986b0 Binary files /dev/null and b/.godot/imported/stone_smallFlatB.fbx-89e93cb3b404ef6e32e49236d2f8b91d.scn differ diff --git a/.godot/imported/stone_smallFlatC-0f7f049835e7805a20cfcb039a8d706b.glb b/.godot/imported/stone_smallFlatC-0f7f049835e7805a20cfcb039a8d706b.glb new file mode 100644 index 0000000..4e1a07f Binary files /dev/null and b/.godot/imported/stone_smallFlatC-0f7f049835e7805a20cfcb039a8d706b.glb differ diff --git a/.godot/imported/stone_smallFlatC.fbx-0f7f049835e7805a20cfcb039a8d706b.md5 b/.godot/imported/stone_smallFlatC.fbx-0f7f049835e7805a20cfcb039a8d706b.md5 new file mode 100644 index 0000000..3988361 --- /dev/null +++ b/.godot/imported/stone_smallFlatC.fbx-0f7f049835e7805a20cfcb039a8d706b.md5 @@ -0,0 +1,2 @@ +source_md5="9b44dd96b0c10ea8780466e58fe9d3d0" +dest_md5="574745f177a053a664942f32d1a17958" diff --git a/.godot/imported/stone_smallFlatC.fbx-0f7f049835e7805a20cfcb039a8d706b.scn b/.godot/imported/stone_smallFlatC.fbx-0f7f049835e7805a20cfcb039a8d706b.scn new file mode 100644 index 0000000..3f869c2 Binary files /dev/null and b/.godot/imported/stone_smallFlatC.fbx-0f7f049835e7805a20cfcb039a8d706b.scn differ diff --git a/.godot/imported/stone_smallG-fd8e10dfb51a43b7e8d0992d2c5d9554.glb b/.godot/imported/stone_smallG-fd8e10dfb51a43b7e8d0992d2c5d9554.glb new file mode 100644 index 0000000..02a15f3 Binary files /dev/null and b/.godot/imported/stone_smallG-fd8e10dfb51a43b7e8d0992d2c5d9554.glb differ diff --git a/.godot/imported/stone_smallG.fbx-fd8e10dfb51a43b7e8d0992d2c5d9554.md5 b/.godot/imported/stone_smallG.fbx-fd8e10dfb51a43b7e8d0992d2c5d9554.md5 new file mode 100644 index 0000000..ca0bbb2 --- /dev/null +++ b/.godot/imported/stone_smallG.fbx-fd8e10dfb51a43b7e8d0992d2c5d9554.md5 @@ -0,0 +1,2 @@ +source_md5="79411b7c4a3246b948966c94e921e833" +dest_md5="69f0d6e906491d637bd89363737162d3" diff --git a/.godot/imported/stone_smallG.fbx-fd8e10dfb51a43b7e8d0992d2c5d9554.scn b/.godot/imported/stone_smallG.fbx-fd8e10dfb51a43b7e8d0992d2c5d9554.scn new file mode 100644 index 0000000..62c77fa Binary files /dev/null and b/.godot/imported/stone_smallG.fbx-fd8e10dfb51a43b7e8d0992d2c5d9554.scn differ diff --git a/.godot/imported/stone_smallH-d5bf9f1bcace0c32942425391bb6359f.glb b/.godot/imported/stone_smallH-d5bf9f1bcace0c32942425391bb6359f.glb new file mode 100644 index 0000000..5aae972 Binary files /dev/null and b/.godot/imported/stone_smallH-d5bf9f1bcace0c32942425391bb6359f.glb differ diff --git a/.godot/imported/stone_smallH.fbx-d5bf9f1bcace0c32942425391bb6359f.md5 b/.godot/imported/stone_smallH.fbx-d5bf9f1bcace0c32942425391bb6359f.md5 new file mode 100644 index 0000000..988ec1c --- /dev/null +++ b/.godot/imported/stone_smallH.fbx-d5bf9f1bcace0c32942425391bb6359f.md5 @@ -0,0 +1,2 @@ +source_md5="36f783041dda6930c58093f2e65bbdf9" +dest_md5="e33f4dc37736f8b3d2ae04dc2d194341" diff --git a/.godot/imported/stone_smallH.fbx-d5bf9f1bcace0c32942425391bb6359f.scn b/.godot/imported/stone_smallH.fbx-d5bf9f1bcace0c32942425391bb6359f.scn new file mode 100644 index 0000000..9198fa8 Binary files /dev/null and b/.godot/imported/stone_smallH.fbx-d5bf9f1bcace0c32942425391bb6359f.scn differ diff --git a/.godot/imported/stone_smallI-6c7048e22a9f583863f49ddce4c8ee7e.glb b/.godot/imported/stone_smallI-6c7048e22a9f583863f49ddce4c8ee7e.glb new file mode 100644 index 0000000..5d28af6 Binary files /dev/null and b/.godot/imported/stone_smallI-6c7048e22a9f583863f49ddce4c8ee7e.glb differ diff --git a/.godot/imported/stone_smallI.fbx-6c7048e22a9f583863f49ddce4c8ee7e.md5 b/.godot/imported/stone_smallI.fbx-6c7048e22a9f583863f49ddce4c8ee7e.md5 new file mode 100644 index 0000000..7272397 --- /dev/null +++ b/.godot/imported/stone_smallI.fbx-6c7048e22a9f583863f49ddce4c8ee7e.md5 @@ -0,0 +1,2 @@ +source_md5="75edcc7e62eb81df0a4ca8093c8f3948" +dest_md5="b56ea12f644b8537a6fc9f6e96aae6b3" diff --git a/.godot/imported/stone_smallI.fbx-6c7048e22a9f583863f49ddce4c8ee7e.scn b/.godot/imported/stone_smallI.fbx-6c7048e22a9f583863f49ddce4c8ee7e.scn new file mode 100644 index 0000000..23357f8 Binary files /dev/null and b/.godot/imported/stone_smallI.fbx-6c7048e22a9f583863f49ddce4c8ee7e.scn differ diff --git a/.godot/imported/stone_smallTopA-52fd2cf4b0b905d60a3745503d4ea02b.glb b/.godot/imported/stone_smallTopA-52fd2cf4b0b905d60a3745503d4ea02b.glb new file mode 100644 index 0000000..f472686 Binary files /dev/null and b/.godot/imported/stone_smallTopA-52fd2cf4b0b905d60a3745503d4ea02b.glb differ diff --git a/.godot/imported/stone_smallTopA.fbx-52fd2cf4b0b905d60a3745503d4ea02b.md5 b/.godot/imported/stone_smallTopA.fbx-52fd2cf4b0b905d60a3745503d4ea02b.md5 new file mode 100644 index 0000000..662dc16 --- /dev/null +++ b/.godot/imported/stone_smallTopA.fbx-52fd2cf4b0b905d60a3745503d4ea02b.md5 @@ -0,0 +1,2 @@ +source_md5="14a4b11e83c075ed0c713937ec5540b5" +dest_md5="2b5f76bf84033a2fcbad284693bb1059" diff --git a/.godot/imported/stone_smallTopA.fbx-52fd2cf4b0b905d60a3745503d4ea02b.scn b/.godot/imported/stone_smallTopA.fbx-52fd2cf4b0b905d60a3745503d4ea02b.scn new file mode 100644 index 0000000..e827ef0 Binary files /dev/null and b/.godot/imported/stone_smallTopA.fbx-52fd2cf4b0b905d60a3745503d4ea02b.scn differ diff --git a/.godot/imported/stone_smallTopB-0b893137e83fb3c2f3114e1f2a73eb43.glb b/.godot/imported/stone_smallTopB-0b893137e83fb3c2f3114e1f2a73eb43.glb new file mode 100644 index 0000000..750b52a Binary files /dev/null and b/.godot/imported/stone_smallTopB-0b893137e83fb3c2f3114e1f2a73eb43.glb differ diff --git a/.godot/imported/stone_smallTopB.fbx-0b893137e83fb3c2f3114e1f2a73eb43.md5 b/.godot/imported/stone_smallTopB.fbx-0b893137e83fb3c2f3114e1f2a73eb43.md5 new file mode 100644 index 0000000..0c50de9 --- /dev/null +++ b/.godot/imported/stone_smallTopB.fbx-0b893137e83fb3c2f3114e1f2a73eb43.md5 @@ -0,0 +1,2 @@ +source_md5="a527312d0561c404a0faa554e60ea6ba" +dest_md5="23226c1bd91e849940a92422ed0211a3" diff --git a/.godot/imported/stone_smallTopB.fbx-0b893137e83fb3c2f3114e1f2a73eb43.scn b/.godot/imported/stone_smallTopB.fbx-0b893137e83fb3c2f3114e1f2a73eb43.scn new file mode 100644 index 0000000..3d30a7a Binary files /dev/null and b/.godot/imported/stone_smallTopB.fbx-0b893137e83fb3c2f3114e1f2a73eb43.scn differ diff --git a/.godot/imported/stone_tallA-2d9b3d5cfebac6d93b7440eb21f59cd8.glb b/.godot/imported/stone_tallA-2d9b3d5cfebac6d93b7440eb21f59cd8.glb new file mode 100644 index 0000000..1fafeb8 Binary files /dev/null and b/.godot/imported/stone_tallA-2d9b3d5cfebac6d93b7440eb21f59cd8.glb differ diff --git a/.godot/imported/stone_tallA.fbx-2d9b3d5cfebac6d93b7440eb21f59cd8.md5 b/.godot/imported/stone_tallA.fbx-2d9b3d5cfebac6d93b7440eb21f59cd8.md5 new file mode 100644 index 0000000..9caeb57 --- /dev/null +++ b/.godot/imported/stone_tallA.fbx-2d9b3d5cfebac6d93b7440eb21f59cd8.md5 @@ -0,0 +1,2 @@ +source_md5="93bde9a9b24e60b3e4fb6553bec73c86" +dest_md5="b17afa28b26bd2b405965b5cb4cb5990" diff --git a/.godot/imported/stone_tallA.fbx-2d9b3d5cfebac6d93b7440eb21f59cd8.scn b/.godot/imported/stone_tallA.fbx-2d9b3d5cfebac6d93b7440eb21f59cd8.scn new file mode 100644 index 0000000..1598bd3 Binary files /dev/null and b/.godot/imported/stone_tallA.fbx-2d9b3d5cfebac6d93b7440eb21f59cd8.scn differ diff --git a/.godot/imported/stone_tallB-a242a581c6d92c6adfe48f9bca27ebfb.glb b/.godot/imported/stone_tallB-a242a581c6d92c6adfe48f9bca27ebfb.glb new file mode 100644 index 0000000..56d0f52 Binary files /dev/null and b/.godot/imported/stone_tallB-a242a581c6d92c6adfe48f9bca27ebfb.glb differ diff --git a/.godot/imported/stone_tallB.fbx-a242a581c6d92c6adfe48f9bca27ebfb.md5 b/.godot/imported/stone_tallB.fbx-a242a581c6d92c6adfe48f9bca27ebfb.md5 new file mode 100644 index 0000000..3712ae6 --- /dev/null +++ b/.godot/imported/stone_tallB.fbx-a242a581c6d92c6adfe48f9bca27ebfb.md5 @@ -0,0 +1,2 @@ +source_md5="e2582132eb8192d1b758f824892d3746" +dest_md5="8aa98aee1f362ced7149e73f9cafda08" diff --git a/.godot/imported/stone_tallB.fbx-a242a581c6d92c6adfe48f9bca27ebfb.scn b/.godot/imported/stone_tallB.fbx-a242a581c6d92c6adfe48f9bca27ebfb.scn new file mode 100644 index 0000000..9978aaa Binary files /dev/null and b/.godot/imported/stone_tallB.fbx-a242a581c6d92c6adfe48f9bca27ebfb.scn differ diff --git a/.godot/imported/stone_tallC-2b6174cb74fd390ed6820a2a56a46c8b.glb b/.godot/imported/stone_tallC-2b6174cb74fd390ed6820a2a56a46c8b.glb new file mode 100644 index 0000000..7389119 Binary files /dev/null and b/.godot/imported/stone_tallC-2b6174cb74fd390ed6820a2a56a46c8b.glb differ diff --git a/.godot/imported/stone_tallC.fbx-2b6174cb74fd390ed6820a2a56a46c8b.md5 b/.godot/imported/stone_tallC.fbx-2b6174cb74fd390ed6820a2a56a46c8b.md5 new file mode 100644 index 0000000..a1d36e6 --- /dev/null +++ b/.godot/imported/stone_tallC.fbx-2b6174cb74fd390ed6820a2a56a46c8b.md5 @@ -0,0 +1,2 @@ +source_md5="cbb9dd181c33f7659b4082a580c276ed" +dest_md5="95c37e117649cc5184d618c1896111e0" diff --git a/.godot/imported/stone_tallC.fbx-2b6174cb74fd390ed6820a2a56a46c8b.scn b/.godot/imported/stone_tallC.fbx-2b6174cb74fd390ed6820a2a56a46c8b.scn new file mode 100644 index 0000000..f543e9d Binary files /dev/null and b/.godot/imported/stone_tallC.fbx-2b6174cb74fd390ed6820a2a56a46c8b.scn differ diff --git a/.godot/imported/stone_tallD-3777d95ac1ecb0c4775d699fd09e6e89.glb b/.godot/imported/stone_tallD-3777d95ac1ecb0c4775d699fd09e6e89.glb new file mode 100644 index 0000000..f52cbe0 Binary files /dev/null and b/.godot/imported/stone_tallD-3777d95ac1ecb0c4775d699fd09e6e89.glb differ diff --git a/.godot/imported/stone_tallD.fbx-3777d95ac1ecb0c4775d699fd09e6e89.md5 b/.godot/imported/stone_tallD.fbx-3777d95ac1ecb0c4775d699fd09e6e89.md5 new file mode 100644 index 0000000..64e1b51 --- /dev/null +++ b/.godot/imported/stone_tallD.fbx-3777d95ac1ecb0c4775d699fd09e6e89.md5 @@ -0,0 +1,2 @@ +source_md5="790d77640c155740580cfdff2ebe3e48" +dest_md5="75896d60043517a16f73de010d041cf6" diff --git a/.godot/imported/stone_tallD.fbx-3777d95ac1ecb0c4775d699fd09e6e89.scn b/.godot/imported/stone_tallD.fbx-3777d95ac1ecb0c4775d699fd09e6e89.scn new file mode 100644 index 0000000..27f5fa5 Binary files /dev/null and b/.godot/imported/stone_tallD.fbx-3777d95ac1ecb0c4775d699fd09e6e89.scn differ diff --git a/.godot/imported/stone_tallE-63508634940d8077fcf5da98f6bd6091.glb b/.godot/imported/stone_tallE-63508634940d8077fcf5da98f6bd6091.glb new file mode 100644 index 0000000..729d9c1 Binary files /dev/null and b/.godot/imported/stone_tallE-63508634940d8077fcf5da98f6bd6091.glb differ diff --git a/.godot/imported/stone_tallE.fbx-63508634940d8077fcf5da98f6bd6091.md5 b/.godot/imported/stone_tallE.fbx-63508634940d8077fcf5da98f6bd6091.md5 new file mode 100644 index 0000000..6ded08a --- /dev/null +++ b/.godot/imported/stone_tallE.fbx-63508634940d8077fcf5da98f6bd6091.md5 @@ -0,0 +1,2 @@ +source_md5="37b08f1bebd5f02f58cf6ec2235698b1" +dest_md5="009d34e83f505fb7cddf3bd3fbf2e192" diff --git a/.godot/imported/stone_tallE.fbx-63508634940d8077fcf5da98f6bd6091.scn b/.godot/imported/stone_tallE.fbx-63508634940d8077fcf5da98f6bd6091.scn new file mode 100644 index 0000000..7677113 Binary files /dev/null and b/.godot/imported/stone_tallE.fbx-63508634940d8077fcf5da98f6bd6091.scn differ diff --git a/.godot/imported/stone_tallF-1a849b814bb35f256fb82e1ecc5fcc83.glb b/.godot/imported/stone_tallF-1a849b814bb35f256fb82e1ecc5fcc83.glb new file mode 100644 index 0000000..e9da0dd Binary files /dev/null and b/.godot/imported/stone_tallF-1a849b814bb35f256fb82e1ecc5fcc83.glb differ diff --git a/.godot/imported/stone_tallF.fbx-1a849b814bb35f256fb82e1ecc5fcc83.md5 b/.godot/imported/stone_tallF.fbx-1a849b814bb35f256fb82e1ecc5fcc83.md5 new file mode 100644 index 0000000..dad20d0 --- /dev/null +++ b/.godot/imported/stone_tallF.fbx-1a849b814bb35f256fb82e1ecc5fcc83.md5 @@ -0,0 +1,2 @@ +source_md5="c174766f25d7744f73088c1d806f5166" +dest_md5="1cf41c0ab561a75fa926f0be79ecae0b" diff --git a/.godot/imported/stone_tallF.fbx-1a849b814bb35f256fb82e1ecc5fcc83.scn b/.godot/imported/stone_tallF.fbx-1a849b814bb35f256fb82e1ecc5fcc83.scn new file mode 100644 index 0000000..199ee77 Binary files /dev/null and b/.godot/imported/stone_tallF.fbx-1a849b814bb35f256fb82e1ecc5fcc83.scn differ diff --git a/.godot/imported/stone_tallG-56e374a935cbf397e10f3aad39fe6412.glb b/.godot/imported/stone_tallG-56e374a935cbf397e10f3aad39fe6412.glb new file mode 100644 index 0000000..6b1a25b Binary files /dev/null and b/.godot/imported/stone_tallG-56e374a935cbf397e10f3aad39fe6412.glb differ diff --git a/.godot/imported/stone_tallG.fbx-56e374a935cbf397e10f3aad39fe6412.md5 b/.godot/imported/stone_tallG.fbx-56e374a935cbf397e10f3aad39fe6412.md5 new file mode 100644 index 0000000..56ffa89 --- /dev/null +++ b/.godot/imported/stone_tallG.fbx-56e374a935cbf397e10f3aad39fe6412.md5 @@ -0,0 +1,2 @@ +source_md5="504a7b3113080ad4e60e8ae0629a6c40" +dest_md5="c3daf6dfdbba6336278980f9ad7c24cf" diff --git a/.godot/imported/stone_tallG.fbx-56e374a935cbf397e10f3aad39fe6412.scn b/.godot/imported/stone_tallG.fbx-56e374a935cbf397e10f3aad39fe6412.scn new file mode 100644 index 0000000..741c227 Binary files /dev/null and b/.godot/imported/stone_tallG.fbx-56e374a935cbf397e10f3aad39fe6412.scn differ diff --git a/.godot/imported/stone_tallH-871f3131970f7f93b7d5009bd4f637ce.glb b/.godot/imported/stone_tallH-871f3131970f7f93b7d5009bd4f637ce.glb new file mode 100644 index 0000000..bde9efc Binary files /dev/null and b/.godot/imported/stone_tallH-871f3131970f7f93b7d5009bd4f637ce.glb differ diff --git a/.godot/imported/stone_tallH.fbx-871f3131970f7f93b7d5009bd4f637ce.md5 b/.godot/imported/stone_tallH.fbx-871f3131970f7f93b7d5009bd4f637ce.md5 new file mode 100644 index 0000000..b650b8f --- /dev/null +++ b/.godot/imported/stone_tallH.fbx-871f3131970f7f93b7d5009bd4f637ce.md5 @@ -0,0 +1,2 @@ +source_md5="1b02b2cf5ace9d8590468c71f6d84c56" +dest_md5="6adf6d4261a1b50b89e20ce7c5fd45d5" diff --git a/.godot/imported/stone_tallH.fbx-871f3131970f7f93b7d5009bd4f637ce.scn b/.godot/imported/stone_tallH.fbx-871f3131970f7f93b7d5009bd4f637ce.scn new file mode 100644 index 0000000..9766037 Binary files /dev/null and b/.godot/imported/stone_tallH.fbx-871f3131970f7f93b7d5009bd4f637ce.scn differ diff --git a/.godot/imported/stone_tallI-28825d9e37e23dd685010c0551c81ed0.glb b/.godot/imported/stone_tallI-28825d9e37e23dd685010c0551c81ed0.glb new file mode 100644 index 0000000..eeddded Binary files /dev/null and b/.godot/imported/stone_tallI-28825d9e37e23dd685010c0551c81ed0.glb differ diff --git a/.godot/imported/stone_tallI.fbx-28825d9e37e23dd685010c0551c81ed0.md5 b/.godot/imported/stone_tallI.fbx-28825d9e37e23dd685010c0551c81ed0.md5 new file mode 100644 index 0000000..d3b65d6 --- /dev/null +++ b/.godot/imported/stone_tallI.fbx-28825d9e37e23dd685010c0551c81ed0.md5 @@ -0,0 +1,2 @@ +source_md5="a88644bd464b0e070ae9fe2d2c30f921" +dest_md5="ec3b2c73485aa54088abaa7749e00ec8" diff --git a/.godot/imported/stone_tallI.fbx-28825d9e37e23dd685010c0551c81ed0.scn b/.godot/imported/stone_tallI.fbx-28825d9e37e23dd685010c0551c81ed0.scn new file mode 100644 index 0000000..04fcafd Binary files /dev/null and b/.godot/imported/stone_tallI.fbx-28825d9e37e23dd685010c0551c81ed0.scn differ diff --git a/.godot/imported/stone_tallJ-0a1a64578d65425a14a0085713e1051f.glb b/.godot/imported/stone_tallJ-0a1a64578d65425a14a0085713e1051f.glb new file mode 100644 index 0000000..24455d7 Binary files /dev/null and b/.godot/imported/stone_tallJ-0a1a64578d65425a14a0085713e1051f.glb differ diff --git a/.godot/imported/stone_tallJ.fbx-0a1a64578d65425a14a0085713e1051f.md5 b/.godot/imported/stone_tallJ.fbx-0a1a64578d65425a14a0085713e1051f.md5 new file mode 100644 index 0000000..2ad882b --- /dev/null +++ b/.godot/imported/stone_tallJ.fbx-0a1a64578d65425a14a0085713e1051f.md5 @@ -0,0 +1,2 @@ +source_md5="32f24da92012983760d14bd0210f0d45" +dest_md5="da7fdb130dd58086031cb11a1db3edc7" diff --git a/.godot/imported/stone_tallJ.fbx-0a1a64578d65425a14a0085713e1051f.scn b/.godot/imported/stone_tallJ.fbx-0a1a64578d65425a14a0085713e1051f.scn new file mode 100644 index 0000000..46dedbe Binary files /dev/null and b/.godot/imported/stone_tallJ.fbx-0a1a64578d65425a14a0085713e1051f.scn differ diff --git a/.godot/imported/stump_old-9667b5b6a5b0fdf01e85b151f969a76d.glb b/.godot/imported/stump_old-9667b5b6a5b0fdf01e85b151f969a76d.glb new file mode 100644 index 0000000..254b137 Binary files /dev/null and b/.godot/imported/stump_old-9667b5b6a5b0fdf01e85b151f969a76d.glb differ diff --git a/.godot/imported/stump_old.fbx-9667b5b6a5b0fdf01e85b151f969a76d.md5 b/.godot/imported/stump_old.fbx-9667b5b6a5b0fdf01e85b151f969a76d.md5 new file mode 100644 index 0000000..f2cb021 --- /dev/null +++ b/.godot/imported/stump_old.fbx-9667b5b6a5b0fdf01e85b151f969a76d.md5 @@ -0,0 +1,2 @@ +source_md5="014d6798d046f351032e065d65d8f805" +dest_md5="3a9f2dc1db74da205bb8647d1acaa21c" diff --git a/.godot/imported/stump_old.fbx-9667b5b6a5b0fdf01e85b151f969a76d.scn b/.godot/imported/stump_old.fbx-9667b5b6a5b0fdf01e85b151f969a76d.scn new file mode 100644 index 0000000..fde4b6c Binary files /dev/null and b/.godot/imported/stump_old.fbx-9667b5b6a5b0fdf01e85b151f969a76d.scn differ diff --git a/.godot/imported/stump_oldTall-2b005ba03997b79a56a8f8381a586f39.glb b/.godot/imported/stump_oldTall-2b005ba03997b79a56a8f8381a586f39.glb new file mode 100644 index 0000000..79fc06e Binary files /dev/null and b/.godot/imported/stump_oldTall-2b005ba03997b79a56a8f8381a586f39.glb differ diff --git a/.godot/imported/stump_oldTall.fbx-2b005ba03997b79a56a8f8381a586f39.md5 b/.godot/imported/stump_oldTall.fbx-2b005ba03997b79a56a8f8381a586f39.md5 new file mode 100644 index 0000000..5db9570 --- /dev/null +++ b/.godot/imported/stump_oldTall.fbx-2b005ba03997b79a56a8f8381a586f39.md5 @@ -0,0 +1,2 @@ +source_md5="7a126d328666a6e94e5de1ddb2091876" +dest_md5="bc827b4a8dcd61504bef10be95754cab" diff --git a/.godot/imported/stump_oldTall.fbx-2b005ba03997b79a56a8f8381a586f39.scn b/.godot/imported/stump_oldTall.fbx-2b005ba03997b79a56a8f8381a586f39.scn new file mode 100644 index 0000000..416b205 Binary files /dev/null and b/.godot/imported/stump_oldTall.fbx-2b005ba03997b79a56a8f8381a586f39.scn differ diff --git a/.godot/imported/stump_round-f8253397049ea9994019f81193753cdd.glb b/.godot/imported/stump_round-f8253397049ea9994019f81193753cdd.glb new file mode 100644 index 0000000..b9b5670 Binary files /dev/null and b/.godot/imported/stump_round-f8253397049ea9994019f81193753cdd.glb differ diff --git a/.godot/imported/stump_round.fbx-f8253397049ea9994019f81193753cdd.md5 b/.godot/imported/stump_round.fbx-f8253397049ea9994019f81193753cdd.md5 new file mode 100644 index 0000000..de2aa8c --- /dev/null +++ b/.godot/imported/stump_round.fbx-f8253397049ea9994019f81193753cdd.md5 @@ -0,0 +1,2 @@ +source_md5="1eabebf4f2a74d5228a254334ce5d745" +dest_md5="b1d60dd7c45d0f3eb822cbbc22c45fc5" diff --git a/.godot/imported/stump_round.fbx-f8253397049ea9994019f81193753cdd.scn b/.godot/imported/stump_round.fbx-f8253397049ea9994019f81193753cdd.scn new file mode 100644 index 0000000..8d06524 Binary files /dev/null and b/.godot/imported/stump_round.fbx-f8253397049ea9994019f81193753cdd.scn differ diff --git a/.godot/imported/stump_roundDetailed-aeca280af3242f9ba7a786492fd5df3f.glb b/.godot/imported/stump_roundDetailed-aeca280af3242f9ba7a786492fd5df3f.glb new file mode 100644 index 0000000..0bf74a0 Binary files /dev/null and b/.godot/imported/stump_roundDetailed-aeca280af3242f9ba7a786492fd5df3f.glb differ diff --git a/.godot/imported/stump_roundDetailed.fbx-aeca280af3242f9ba7a786492fd5df3f.md5 b/.godot/imported/stump_roundDetailed.fbx-aeca280af3242f9ba7a786492fd5df3f.md5 new file mode 100644 index 0000000..cdd1702 --- /dev/null +++ b/.godot/imported/stump_roundDetailed.fbx-aeca280af3242f9ba7a786492fd5df3f.md5 @@ -0,0 +1,2 @@ +source_md5="f08b86c62c054ec851b0d0ecccc4fcfa" +dest_md5="ad436a8d6182636433212bdfab235584" diff --git a/.godot/imported/stump_roundDetailed.fbx-aeca280af3242f9ba7a786492fd5df3f.scn b/.godot/imported/stump_roundDetailed.fbx-aeca280af3242f9ba7a786492fd5df3f.scn new file mode 100644 index 0000000..0f41dcf Binary files /dev/null and b/.godot/imported/stump_roundDetailed.fbx-aeca280af3242f9ba7a786492fd5df3f.scn differ diff --git a/.godot/imported/stump_square-d5ee45904247b6c735b7bd4834fdcbb7.glb b/.godot/imported/stump_square-d5ee45904247b6c735b7bd4834fdcbb7.glb new file mode 100644 index 0000000..657e218 Binary files /dev/null and b/.godot/imported/stump_square-d5ee45904247b6c735b7bd4834fdcbb7.glb differ diff --git a/.godot/imported/stump_square.fbx-d5ee45904247b6c735b7bd4834fdcbb7.md5 b/.godot/imported/stump_square.fbx-d5ee45904247b6c735b7bd4834fdcbb7.md5 new file mode 100644 index 0000000..e245f62 --- /dev/null +++ b/.godot/imported/stump_square.fbx-d5ee45904247b6c735b7bd4834fdcbb7.md5 @@ -0,0 +1,2 @@ +source_md5="2da65776f7a5f4f5971768f1e6d90c4c" +dest_md5="7dedc5dd3d211230a7a10e3286f4eb3b" diff --git a/.godot/imported/stump_square.fbx-d5ee45904247b6c735b7bd4834fdcbb7.scn b/.godot/imported/stump_square.fbx-d5ee45904247b6c735b7bd4834fdcbb7.scn new file mode 100644 index 0000000..a43587e Binary files /dev/null and b/.godot/imported/stump_square.fbx-d5ee45904247b6c735b7bd4834fdcbb7.scn differ diff --git a/.godot/imported/stump_squareDetailed-85c5f027ae5a1643f67d40a9818a2985.glb b/.godot/imported/stump_squareDetailed-85c5f027ae5a1643f67d40a9818a2985.glb new file mode 100644 index 0000000..c14099a Binary files /dev/null and b/.godot/imported/stump_squareDetailed-85c5f027ae5a1643f67d40a9818a2985.glb differ diff --git a/.godot/imported/stump_squareDetailed.fbx-85c5f027ae5a1643f67d40a9818a2985.md5 b/.godot/imported/stump_squareDetailed.fbx-85c5f027ae5a1643f67d40a9818a2985.md5 new file mode 100644 index 0000000..e6bb8ce --- /dev/null +++ b/.godot/imported/stump_squareDetailed.fbx-85c5f027ae5a1643f67d40a9818a2985.md5 @@ -0,0 +1,2 @@ +source_md5="37ac86d54735d155674d9b7c22471a55" +dest_md5="4ef60a1f0f1284be473141520e517cec" diff --git a/.godot/imported/stump_squareDetailed.fbx-85c5f027ae5a1643f67d40a9818a2985.scn b/.godot/imported/stump_squareDetailed.fbx-85c5f027ae5a1643f67d40a9818a2985.scn new file mode 100644 index 0000000..f515bd3 Binary files /dev/null and b/.godot/imported/stump_squareDetailed.fbx-85c5f027ae5a1643f67d40a9818a2985.scn differ diff --git a/.godot/imported/stump_squareDetailedWide-2a834552d6f33485abe86399f0e53248.glb b/.godot/imported/stump_squareDetailedWide-2a834552d6f33485abe86399f0e53248.glb new file mode 100644 index 0000000..78e5dcc Binary files /dev/null and b/.godot/imported/stump_squareDetailedWide-2a834552d6f33485abe86399f0e53248.glb differ diff --git a/.godot/imported/stump_squareDetailedWide.fbx-2a834552d6f33485abe86399f0e53248.md5 b/.godot/imported/stump_squareDetailedWide.fbx-2a834552d6f33485abe86399f0e53248.md5 new file mode 100644 index 0000000..a4c7f08 --- /dev/null +++ b/.godot/imported/stump_squareDetailedWide.fbx-2a834552d6f33485abe86399f0e53248.md5 @@ -0,0 +1,2 @@ +source_md5="5f8adcaf389ea2fe4cf5f7cbc4fea77b" +dest_md5="29ddfbba4011a03934a29f70cbc11d3a" diff --git a/.godot/imported/stump_squareDetailedWide.fbx-2a834552d6f33485abe86399f0e53248.scn b/.godot/imported/stump_squareDetailedWide.fbx-2a834552d6f33485abe86399f0e53248.scn new file mode 100644 index 0000000..8691870 Binary files /dev/null and b/.godot/imported/stump_squareDetailedWide.fbx-2a834552d6f33485abe86399f0e53248.scn differ diff --git a/.godot/imported/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png-1695d5bb39490a58afe867de98815524.md5 b/.godot/imported/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png-1695d5bb39490a58afe867de98815524.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png-1695d5bb39490a58afe867de98815524.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png-1695d5bb39490a58afe867de98815524.s3tc.ctex b/.godot/imported/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png-1695d5bb39490a58afe867de98815524.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png-1695d5bb39490a58afe867de98815524.s3tc.ctex differ diff --git a/.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51.glb b/.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51.glb new file mode 100644 index 0000000..37fcdb6 Binary files /dev/null and b/.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51.glb differ diff --git a/.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png-ae4e5bb57d0f3d4acf0c5519904ac064.md5 b/.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png-ae4e5bb57d0f3d4acf0c5519904ac064.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png-ae4e5bb57d0f3d4acf0c5519904ac064.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png-ae4e5bb57d0f3d4acf0c5519904ac064.s3tc.ctex b/.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png-ae4e5bb57d0f3d4acf0c5519904ac064.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png-ae4e5bb57d0f3d4acf0c5519904ac064.s3tc.ctex differ diff --git a/.godot/imported/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png-de4d125d9ee0af323ff8177422e8d44d.md5 b/.godot/imported/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png-de4d125d9ee0af323ff8177422e8d44d.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png-de4d125d9ee0af323ff8177422e8d44d.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png-de4d125d9ee0af323ff8177422e8d44d.s3tc.ctex b/.godot/imported/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png-de4d125d9ee0af323ff8177422e8d44d.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png-de4d125d9ee0af323ff8177422e8d44d.s3tc.ctex differ diff --git a/.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201.glb b/.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201.glb new file mode 100644 index 0000000..c6466f7 Binary files /dev/null and b/.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201.glb differ diff --git a/.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png-7dab798c8e3acda106965cee74bb13a7.md5 b/.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png-7dab798c8e3acda106965cee74bb13a7.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png-7dab798c8e3acda106965cee74bb13a7.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png-7dab798c8e3acda106965cee74bb13a7.s3tc.ctex b/.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png-7dab798c8e3acda106965cee74bb13a7.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png-7dab798c8e3acda106965cee74bb13a7.s3tc.ctex differ diff --git a/.godot/imported/suv-luxury.fbx-c8d23ff93d21deb7f005aae5c4453201.md5 b/.godot/imported/suv-luxury.fbx-c8d23ff93d21deb7f005aae5c4453201.md5 new file mode 100644 index 0000000..021652b --- /dev/null +++ b/.godot/imported/suv-luxury.fbx-c8d23ff93d21deb7f005aae5c4453201.md5 @@ -0,0 +1,2 @@ +source_md5="1b7651065d7a799d542fb3d32dc35655" +dest_md5="7c09e0dd5e257784dc3e7e77ca7e7c56" diff --git a/.godot/imported/suv-luxury.fbx-c8d23ff93d21deb7f005aae5c4453201.scn b/.godot/imported/suv-luxury.fbx-c8d23ff93d21deb7f005aae5c4453201.scn new file mode 100644 index 0000000..9bc129d Binary files /dev/null and b/.godot/imported/suv-luxury.fbx-c8d23ff93d21deb7f005aae5c4453201.scn differ diff --git a/.godot/imported/suv.fbx-3e9e7dad3b30dc45d211faaf35e87c51.md5 b/.godot/imported/suv.fbx-3e9e7dad3b30dc45d211faaf35e87c51.md5 new file mode 100644 index 0000000..2fc2c5e --- /dev/null +++ b/.godot/imported/suv.fbx-3e9e7dad3b30dc45d211faaf35e87c51.md5 @@ -0,0 +1,2 @@ +source_md5="704f3b2a31af4bda01b964cb03b172b5" +dest_md5="d5fcf2d988a0f44aa0c41724ca399074" diff --git a/.godot/imported/suv.fbx-3e9e7dad3b30dc45d211faaf35e87c51.scn b/.godot/imported/suv.fbx-3e9e7dad3b30dc45d211faaf35e87c51.scn new file mode 100644 index 0000000..103a00b Binary files /dev/null and b/.godot/imported/suv.fbx-3e9e7dad3b30dc45d211faaf35e87c51.scn differ diff --git a/.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc.glb b/.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc.glb new file mode 100644 index 0000000..23f5e64 Binary files /dev/null and b/.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc.glb differ diff --git a/.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png-04079029230e3dcac3eefdb88d49c26f.md5 b/.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png-04079029230e3dcac3eefdb88d49c26f.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png-04079029230e3dcac3eefdb88d49c26f.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png-04079029230e3dcac3eefdb88d49c26f.s3tc.ctex b/.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png-04079029230e3dcac3eefdb88d49c26f.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png-04079029230e3dcac3eefdb88d49c26f.s3tc.ctex differ diff --git a/.godot/imported/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png-d6b3210a13e44174a34137259d30eedf.md5 b/.godot/imported/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png-d6b3210a13e44174a34137259d30eedf.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png-d6b3210a13e44174a34137259d30eedf.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png-d6b3210a13e44174a34137259d30eedf.s3tc.ctex b/.godot/imported/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png-d6b3210a13e44174a34137259d30eedf.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png-d6b3210a13e44174a34137259d30eedf.s3tc.ctex differ diff --git a/.godot/imported/taxi.fbx-9b95c08c706a83d816fa926eb80f1fcc.md5 b/.godot/imported/taxi.fbx-9b95c08c706a83d816fa926eb80f1fcc.md5 new file mode 100644 index 0000000..9285f98 --- /dev/null +++ b/.godot/imported/taxi.fbx-9b95c08c706a83d816fa926eb80f1fcc.md5 @@ -0,0 +1,2 @@ +source_md5="0c37a704d711aa0e1ce02d57b7b60df0" +dest_md5="13b0405464a7074ba4d41f29c766ba7c" diff --git a/.godot/imported/taxi.fbx-9b95c08c706a83d816fa926eb80f1fcc.scn b/.godot/imported/taxi.fbx-9b95c08c706a83d816fa926eb80f1fcc.scn new file mode 100644 index 0000000..319eb7c Binary files /dev/null and b/.godot/imported/taxi.fbx-9b95c08c706a83d816fa926eb80f1fcc.scn differ diff --git a/.godot/imported/tent_detailedClosed-c175ba27692d9c1e8f91d894a30fb8e1.glb b/.godot/imported/tent_detailedClosed-c175ba27692d9c1e8f91d894a30fb8e1.glb new file mode 100644 index 0000000..cad53cb Binary files /dev/null and b/.godot/imported/tent_detailedClosed-c175ba27692d9c1e8f91d894a30fb8e1.glb differ diff --git a/.godot/imported/tent_detailedClosed.fbx-c175ba27692d9c1e8f91d894a30fb8e1.md5 b/.godot/imported/tent_detailedClosed.fbx-c175ba27692d9c1e8f91d894a30fb8e1.md5 new file mode 100644 index 0000000..001ac12 --- /dev/null +++ b/.godot/imported/tent_detailedClosed.fbx-c175ba27692d9c1e8f91d894a30fb8e1.md5 @@ -0,0 +1,2 @@ +source_md5="66726860b10417658909e786bf71d6fe" +dest_md5="9eadf36304c576ff88fa1da8f08fa1bb" diff --git a/.godot/imported/tent_detailedClosed.fbx-c175ba27692d9c1e8f91d894a30fb8e1.scn b/.godot/imported/tent_detailedClosed.fbx-c175ba27692d9c1e8f91d894a30fb8e1.scn new file mode 100644 index 0000000..a751f2a Binary files /dev/null and b/.godot/imported/tent_detailedClosed.fbx-c175ba27692d9c1e8f91d894a30fb8e1.scn differ diff --git a/.godot/imported/tent_detailedOpen-523e792608bddab458f284c2c295aa58.glb b/.godot/imported/tent_detailedOpen-523e792608bddab458f284c2c295aa58.glb new file mode 100644 index 0000000..0007bcc Binary files /dev/null and b/.godot/imported/tent_detailedOpen-523e792608bddab458f284c2c295aa58.glb differ diff --git a/.godot/imported/tent_detailedOpen.fbx-523e792608bddab458f284c2c295aa58.md5 b/.godot/imported/tent_detailedOpen.fbx-523e792608bddab458f284c2c295aa58.md5 new file mode 100644 index 0000000..6995023 --- /dev/null +++ b/.godot/imported/tent_detailedOpen.fbx-523e792608bddab458f284c2c295aa58.md5 @@ -0,0 +1,2 @@ +source_md5="9838b9a8f6933439a89bc7377bc3f45e" +dest_md5="b62a2d66754bd63ad3be6803c5dde5fd" diff --git a/.godot/imported/tent_detailedOpen.fbx-523e792608bddab458f284c2c295aa58.scn b/.godot/imported/tent_detailedOpen.fbx-523e792608bddab458f284c2c295aa58.scn new file mode 100644 index 0000000..c9f1336 Binary files /dev/null and b/.godot/imported/tent_detailedOpen.fbx-523e792608bddab458f284c2c295aa58.scn differ diff --git a/.godot/imported/tent_smallClosed-88dbc1cc31c10080c2f46b24243207d5.glb b/.godot/imported/tent_smallClosed-88dbc1cc31c10080c2f46b24243207d5.glb new file mode 100644 index 0000000..146df57 Binary files /dev/null and b/.godot/imported/tent_smallClosed-88dbc1cc31c10080c2f46b24243207d5.glb differ diff --git a/.godot/imported/tent_smallClosed.fbx-88dbc1cc31c10080c2f46b24243207d5.md5 b/.godot/imported/tent_smallClosed.fbx-88dbc1cc31c10080c2f46b24243207d5.md5 new file mode 100644 index 0000000..39a6b18 --- /dev/null +++ b/.godot/imported/tent_smallClosed.fbx-88dbc1cc31c10080c2f46b24243207d5.md5 @@ -0,0 +1,2 @@ +source_md5="22bfcb80acecea24a508dffbd6ea68d8" +dest_md5="f1779bb5c7861088621ee950c20e4e4a" diff --git a/.godot/imported/tent_smallClosed.fbx-88dbc1cc31c10080c2f46b24243207d5.scn b/.godot/imported/tent_smallClosed.fbx-88dbc1cc31c10080c2f46b24243207d5.scn new file mode 100644 index 0000000..aae1774 Binary files /dev/null and b/.godot/imported/tent_smallClosed.fbx-88dbc1cc31c10080c2f46b24243207d5.scn differ diff --git a/.godot/imported/tent_smallOpen-e5c27b9af36a933264716689a9e2a8cc.glb b/.godot/imported/tent_smallOpen-e5c27b9af36a933264716689a9e2a8cc.glb new file mode 100644 index 0000000..218c822 Binary files /dev/null and b/.godot/imported/tent_smallOpen-e5c27b9af36a933264716689a9e2a8cc.glb differ diff --git a/.godot/imported/tent_smallOpen.fbx-e5c27b9af36a933264716689a9e2a8cc.md5 b/.godot/imported/tent_smallOpen.fbx-e5c27b9af36a933264716689a9e2a8cc.md5 new file mode 100644 index 0000000..9a92485 --- /dev/null +++ b/.godot/imported/tent_smallOpen.fbx-e5c27b9af36a933264716689a9e2a8cc.md5 @@ -0,0 +1,2 @@ +source_md5="a378ce326e848e40f519d119d4f5c585" +dest_md5="4b53b50efa9b8be2aeaaab2c9c7c221e" diff --git a/.godot/imported/tent_smallOpen.fbx-e5c27b9af36a933264716689a9e2a8cc.scn b/.godot/imported/tent_smallOpen.fbx-e5c27b9af36a933264716689a9e2a8cc.scn new file mode 100644 index 0000000..d0d9fcd Binary files /dev/null and b/.godot/imported/tent_smallOpen.fbx-e5c27b9af36a933264716689a9e2a8cc.scn differ diff --git a/.godot/imported/tile_high-3cfad8be785aab9534500088ec0e1ac4.glb b/.godot/imported/tile_high-3cfad8be785aab9534500088ec0e1ac4.glb new file mode 100644 index 0000000..2b5da45 Binary files /dev/null and b/.godot/imported/tile_high-3cfad8be785aab9534500088ec0e1ac4.glb differ diff --git a/.godot/imported/tile_high.fbx-3cfad8be785aab9534500088ec0e1ac4.md5 b/.godot/imported/tile_high.fbx-3cfad8be785aab9534500088ec0e1ac4.md5 new file mode 100644 index 0000000..ed8b403 --- /dev/null +++ b/.godot/imported/tile_high.fbx-3cfad8be785aab9534500088ec0e1ac4.md5 @@ -0,0 +1,2 @@ +source_md5="eae1aed38780b93aaa8968d87bc88884" +dest_md5="272552c17e70b92fbe404f22939b5818" diff --git a/.godot/imported/tile_high.fbx-3cfad8be785aab9534500088ec0e1ac4.scn b/.godot/imported/tile_high.fbx-3cfad8be785aab9534500088ec0e1ac4.scn new file mode 100644 index 0000000..ec64acf Binary files /dev/null and b/.godot/imported/tile_high.fbx-3cfad8be785aab9534500088ec0e1ac4.scn differ diff --git a/.godot/imported/tile_low-51c38c70d80541c270460992523a7cf3.glb b/.godot/imported/tile_low-51c38c70d80541c270460992523a7cf3.glb new file mode 100644 index 0000000..1926ca7 Binary files /dev/null and b/.godot/imported/tile_low-51c38c70d80541c270460992523a7cf3.glb differ diff --git a/.godot/imported/tile_low.fbx-51c38c70d80541c270460992523a7cf3.md5 b/.godot/imported/tile_low.fbx-51c38c70d80541c270460992523a7cf3.md5 new file mode 100644 index 0000000..f44fe30 --- /dev/null +++ b/.godot/imported/tile_low.fbx-51c38c70d80541c270460992523a7cf3.md5 @@ -0,0 +1,2 @@ +source_md5="36725f3eed4f48ba7b6fc76c186a7e5f" +dest_md5="434f37bb671f2ee5adf7037b6f839d04" diff --git a/.godot/imported/tile_low.fbx-51c38c70d80541c270460992523a7cf3.scn b/.godot/imported/tile_low.fbx-51c38c70d80541c270460992523a7cf3.scn new file mode 100644 index 0000000..c6c78a7 Binary files /dev/null and b/.godot/imported/tile_low.fbx-51c38c70d80541c270460992523a7cf3.scn differ diff --git a/.godot/imported/tile_slant-5809088c8753c3ba437c8cc0acfb2ffb.glb b/.godot/imported/tile_slant-5809088c8753c3ba437c8cc0acfb2ffb.glb new file mode 100644 index 0000000..ed75d8e Binary files /dev/null and b/.godot/imported/tile_slant-5809088c8753c3ba437c8cc0acfb2ffb.glb differ diff --git a/.godot/imported/tile_slant.fbx-5809088c8753c3ba437c8cc0acfb2ffb.md5 b/.godot/imported/tile_slant.fbx-5809088c8753c3ba437c8cc0acfb2ffb.md5 new file mode 100644 index 0000000..e326ac6 --- /dev/null +++ b/.godot/imported/tile_slant.fbx-5809088c8753c3ba437c8cc0acfb2ffb.md5 @@ -0,0 +1,2 @@ +source_md5="1b82d35e0206a3feb5094b334c14af68" +dest_md5="d9e29c44d712e17ff9d2c361e514aab7" diff --git a/.godot/imported/tile_slant.fbx-5809088c8753c3ba437c8cc0acfb2ffb.scn b/.godot/imported/tile_slant.fbx-5809088c8753c3ba437c8cc0acfb2ffb.scn new file mode 100644 index 0000000..9750000 Binary files /dev/null and b/.godot/imported/tile_slant.fbx-5809088c8753c3ba437c8cc0acfb2ffb.scn differ diff --git a/.godot/imported/tile_slantHigh-63850f38e3180dd10e325a47382942fb.glb b/.godot/imported/tile_slantHigh-63850f38e3180dd10e325a47382942fb.glb new file mode 100644 index 0000000..80f5723 Binary files /dev/null and b/.godot/imported/tile_slantHigh-63850f38e3180dd10e325a47382942fb.glb differ diff --git a/.godot/imported/tile_slantHigh.fbx-63850f38e3180dd10e325a47382942fb.md5 b/.godot/imported/tile_slantHigh.fbx-63850f38e3180dd10e325a47382942fb.md5 new file mode 100644 index 0000000..6b2e4f0 --- /dev/null +++ b/.godot/imported/tile_slantHigh.fbx-63850f38e3180dd10e325a47382942fb.md5 @@ -0,0 +1,2 @@ +source_md5="d63b22c5af979e66c8391247591f2ce6" +dest_md5="3a63c56f5d2270316223db7b58f8d6e1" diff --git a/.godot/imported/tile_slantHigh.fbx-63850f38e3180dd10e325a47382942fb.scn b/.godot/imported/tile_slantHigh.fbx-63850f38e3180dd10e325a47382942fb.scn new file mode 100644 index 0000000..43d48eb Binary files /dev/null and b/.godot/imported/tile_slantHigh.fbx-63850f38e3180dd10e325a47382942fb.scn differ diff --git a/.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5.glb b/.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5.glb new file mode 100644 index 0000000..d0501ee Binary files /dev/null and b/.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5.glb differ diff --git a/.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png-f45693dacaba195973809e1493340729.md5 b/.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png-f45693dacaba195973809e1493340729.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png-f45693dacaba195973809e1493340729.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png-f45693dacaba195973809e1493340729.s3tc.ctex b/.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png-f45693dacaba195973809e1493340729.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png-f45693dacaba195973809e1493340729.s3tc.ctex differ diff --git a/.godot/imported/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png-80363efffb4165b3d52cbcb0695d5ecf.md5 b/.godot/imported/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png-80363efffb4165b3d52cbcb0695d5ecf.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png-80363efffb4165b3d52cbcb0695d5ecf.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png-80363efffb4165b3d52cbcb0695d5ecf.s3tc.ctex b/.godot/imported/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png-80363efffb4165b3d52cbcb0695d5ecf.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png-80363efffb4165b3d52cbcb0695d5ecf.s3tc.ctex differ diff --git a/.godot/imported/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png-19c516f12276e9e62993e69fee570217.md5 b/.godot/imported/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png-19c516f12276e9e62993e69fee570217.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png-19c516f12276e9e62993e69fee570217.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png-19c516f12276e9e62993e69fee570217.s3tc.ctex b/.godot/imported/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png-19c516f12276e9e62993e69fee570217.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png-19c516f12276e9e62993e69fee570217.s3tc.ctex differ diff --git a/.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb.glb b/.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb.glb new file mode 100644 index 0000000..0e0b9ce Binary files /dev/null and b/.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb.glb differ diff --git a/.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png-bba2f5893a624692b56cbaa2bbe3f3d1.md5 b/.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png-bba2f5893a624692b56cbaa2bbe3f3d1.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png-bba2f5893a624692b56cbaa2bbe3f3d1.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png-bba2f5893a624692b56cbaa2bbe3f3d1.s3tc.ctex b/.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png-bba2f5893a624692b56cbaa2bbe3f3d1.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png-bba2f5893a624692b56cbaa2bbe3f3d1.s3tc.ctex differ diff --git a/.godot/imported/tractor-police.fbx-c767a154c68bcc10cb5ce0ea97a3ebeb.md5 b/.godot/imported/tractor-police.fbx-c767a154c68bcc10cb5ce0ea97a3ebeb.md5 new file mode 100644 index 0000000..6325db0 --- /dev/null +++ b/.godot/imported/tractor-police.fbx-c767a154c68bcc10cb5ce0ea97a3ebeb.md5 @@ -0,0 +1,2 @@ +source_md5="b6d204ade2cee4189c3479646d45c200" +dest_md5="d2130e2de77d8a936aebb5f4ed5ac3f5" diff --git a/.godot/imported/tractor-police.fbx-c767a154c68bcc10cb5ce0ea97a3ebeb.scn b/.godot/imported/tractor-police.fbx-c767a154c68bcc10cb5ce0ea97a3ebeb.scn new file mode 100644 index 0000000..b7a311b Binary files /dev/null and b/.godot/imported/tractor-police.fbx-c767a154c68bcc10cb5ce0ea97a3ebeb.scn differ diff --git a/.godot/imported/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png-3f4448f6738f975c32536d2c8e5b2076.md5 b/.godot/imported/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png-3f4448f6738f975c32536d2c8e5b2076.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png-3f4448f6738f975c32536d2c8e5b2076.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png-3f4448f6738f975c32536d2c8e5b2076.s3tc.ctex b/.godot/imported/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png-3f4448f6738f975c32536d2c8e5b2076.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png-3f4448f6738f975c32536d2c8e5b2076.s3tc.ctex differ diff --git a/.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574.glb b/.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574.glb new file mode 100644 index 0000000..781698c Binary files /dev/null and b/.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574.glb differ diff --git a/.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png-7575dc7fe39906180e6a49c1e4bf6a36.md5 b/.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png-7575dc7fe39906180e6a49c1e4bf6a36.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png-7575dc7fe39906180e6a49c1e4bf6a36.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png-7575dc7fe39906180e6a49c1e4bf6a36.s3tc.ctex b/.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png-7575dc7fe39906180e6a49c1e4bf6a36.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png-7575dc7fe39906180e6a49c1e4bf6a36.s3tc.ctex differ diff --git a/.godot/imported/tractor-shovel.fbx-c9232c3d0317c18151cf25d5ccab6574.md5 b/.godot/imported/tractor-shovel.fbx-c9232c3d0317c18151cf25d5ccab6574.md5 new file mode 100644 index 0000000..c01e71c --- /dev/null +++ b/.godot/imported/tractor-shovel.fbx-c9232c3d0317c18151cf25d5ccab6574.md5 @@ -0,0 +1,2 @@ +source_md5="d7802ff183d790ce27fe0c7693a943d1" +dest_md5="fcacd0263259c1121f9cf48cc84ce45d" diff --git a/.godot/imported/tractor-shovel.fbx-c9232c3d0317c18151cf25d5ccab6574.scn b/.godot/imported/tractor-shovel.fbx-c9232c3d0317c18151cf25d5ccab6574.scn new file mode 100644 index 0000000..bb5d97b Binary files /dev/null and b/.godot/imported/tractor-shovel.fbx-c9232c3d0317c18151cf25d5ccab6574.scn differ diff --git a/.godot/imported/tractor.fbx-aa55c818cc41903db70ed1df369bb7d5.md5 b/.godot/imported/tractor.fbx-aa55c818cc41903db70ed1df369bb7d5.md5 new file mode 100644 index 0000000..972649a --- /dev/null +++ b/.godot/imported/tractor.fbx-aa55c818cc41903db70ed1df369bb7d5.md5 @@ -0,0 +1,2 @@ +source_md5="f53f9c9006a76007eb36fe577ff9ffbf" +dest_md5="5e57ec59d98f11aa8872030f91b65230" diff --git a/.godot/imported/tractor.fbx-aa55c818cc41903db70ed1df369bb7d5.scn b/.godot/imported/tractor.fbx-aa55c818cc41903db70ed1df369bb7d5.scn new file mode 100644 index 0000000..4140245 Binary files /dev/null and b/.godot/imported/tractor.fbx-aa55c818cc41903db70ed1df369bb7d5.scn differ diff --git a/.godot/imported/tree-814d22d6ede4273fd7ef9d304da63d1c.glb b/.godot/imported/tree-814d22d6ede4273fd7ef9d304da63d1c.glb new file mode 100644 index 0000000..617f657 Binary files /dev/null and b/.godot/imported/tree-814d22d6ede4273fd7ef9d304da63d1c.glb differ diff --git a/.godot/imported/tree.fbx-814d22d6ede4273fd7ef9d304da63d1c.md5 b/.godot/imported/tree.fbx-814d22d6ede4273fd7ef9d304da63d1c.md5 new file mode 100644 index 0000000..ca466f8 --- /dev/null +++ b/.godot/imported/tree.fbx-814d22d6ede4273fd7ef9d304da63d1c.md5 @@ -0,0 +1,2 @@ +source_md5="0cf3fb2696a3fca9511a39f7e056dca4" +dest_md5="75b726e54798a1d9a4d8d48d68007dc0" diff --git a/.godot/imported/tree.fbx-814d22d6ede4273fd7ef9d304da63d1c.scn b/.godot/imported/tree.fbx-814d22d6ede4273fd7ef9d304da63d1c.scn new file mode 100644 index 0000000..3ac1966 Binary files /dev/null and b/.godot/imported/tree.fbx-814d22d6ede4273fd7ef9d304da63d1c.scn differ diff --git a/.godot/imported/treeCrooked-ebfd67da19534797847247fdfde33331.glb b/.godot/imported/treeCrooked-ebfd67da19534797847247fdfde33331.glb new file mode 100644 index 0000000..37ebb19 Binary files /dev/null and b/.godot/imported/treeCrooked-ebfd67da19534797847247fdfde33331.glb differ diff --git a/.godot/imported/treeCrooked.fbx-ebfd67da19534797847247fdfde33331.md5 b/.godot/imported/treeCrooked.fbx-ebfd67da19534797847247fdfde33331.md5 new file mode 100644 index 0000000..19a86ea --- /dev/null +++ b/.godot/imported/treeCrooked.fbx-ebfd67da19534797847247fdfde33331.md5 @@ -0,0 +1,2 @@ +source_md5="5a9e259420a0fba79e14783f14d679dc" +dest_md5="4bdafaf1a51709849fa754136ee51b67" diff --git a/.godot/imported/treeCrooked.fbx-ebfd67da19534797847247fdfde33331.scn b/.godot/imported/treeCrooked.fbx-ebfd67da19534797847247fdfde33331.scn new file mode 100644 index 0000000..a218dad Binary files /dev/null and b/.godot/imported/treeCrooked.fbx-ebfd67da19534797847247fdfde33331.scn differ diff --git a/.godot/imported/treeHigh-0119c808301514b4c23e1c9a576cd193.glb b/.godot/imported/treeHigh-0119c808301514b4c23e1c9a576cd193.glb new file mode 100644 index 0000000..a131468 Binary files /dev/null and b/.godot/imported/treeHigh-0119c808301514b4c23e1c9a576cd193.glb differ diff --git a/.godot/imported/treeHigh.fbx-0119c808301514b4c23e1c9a576cd193.md5 b/.godot/imported/treeHigh.fbx-0119c808301514b4c23e1c9a576cd193.md5 new file mode 100644 index 0000000..13269b1 --- /dev/null +++ b/.godot/imported/treeHigh.fbx-0119c808301514b4c23e1c9a576cd193.md5 @@ -0,0 +1,2 @@ +source_md5="0268544f6018cfdf7997bff8508a5fd7" +dest_md5="b74bbed1172bc3406b9ac82eecf3e484" diff --git a/.godot/imported/treeHigh.fbx-0119c808301514b4c23e1c9a576cd193.scn b/.godot/imported/treeHigh.fbx-0119c808301514b4c23e1c9a576cd193.scn new file mode 100644 index 0000000..6f80efc Binary files /dev/null and b/.godot/imported/treeHigh.fbx-0119c808301514b4c23e1c9a576cd193.scn differ diff --git a/.godot/imported/treeHighCrooked-929068f2d485a4c2cb96650f31de18aa.glb b/.godot/imported/treeHighCrooked-929068f2d485a4c2cb96650f31de18aa.glb new file mode 100644 index 0000000..223ea24 Binary files /dev/null and b/.godot/imported/treeHighCrooked-929068f2d485a4c2cb96650f31de18aa.glb differ diff --git a/.godot/imported/treeHighCrooked.fbx-929068f2d485a4c2cb96650f31de18aa.md5 b/.godot/imported/treeHighCrooked.fbx-929068f2d485a4c2cb96650f31de18aa.md5 new file mode 100644 index 0000000..2b6362a --- /dev/null +++ b/.godot/imported/treeHighCrooked.fbx-929068f2d485a4c2cb96650f31de18aa.md5 @@ -0,0 +1,2 @@ +source_md5="18b578f296e448b42b059a787a923e12" +dest_md5="8579388143d6a59f02d32bb88280f327" diff --git a/.godot/imported/treeHighCrooked.fbx-929068f2d485a4c2cb96650f31de18aa.scn b/.godot/imported/treeHighCrooked.fbx-929068f2d485a4c2cb96650f31de18aa.scn new file mode 100644 index 0000000..7c60309 Binary files /dev/null and b/.godot/imported/treeHighCrooked.fbx-929068f2d485a4c2cb96650f31de18aa.scn differ diff --git a/.godot/imported/treeHighRound-9f2acb0dbb65eee92da502da7bd9c6c4.glb b/.godot/imported/treeHighRound-9f2acb0dbb65eee92da502da7bd9c6c4.glb new file mode 100644 index 0000000..9b4bf87 Binary files /dev/null and b/.godot/imported/treeHighRound-9f2acb0dbb65eee92da502da7bd9c6c4.glb differ diff --git a/.godot/imported/treeHighRound.fbx-9f2acb0dbb65eee92da502da7bd9c6c4.md5 b/.godot/imported/treeHighRound.fbx-9f2acb0dbb65eee92da502da7bd9c6c4.md5 new file mode 100644 index 0000000..944e475 --- /dev/null +++ b/.godot/imported/treeHighRound.fbx-9f2acb0dbb65eee92da502da7bd9c6c4.md5 @@ -0,0 +1,2 @@ +source_md5="4537ec1cea401b8a55de3e3801ae80a5" +dest_md5="0a4f2670513e4363fbd59486936e7d4f" diff --git a/.godot/imported/treeHighRound.fbx-9f2acb0dbb65eee92da502da7bd9c6c4.scn b/.godot/imported/treeHighRound.fbx-9f2acb0dbb65eee92da502da7bd9c6c4.scn new file mode 100644 index 0000000..9527144 Binary files /dev/null and b/.godot/imported/treeHighRound.fbx-9f2acb0dbb65eee92da502da7bd9c6c4.scn differ diff --git a/.godot/imported/tree_blocks-fc33105860573e7910996edff25db293.glb b/.godot/imported/tree_blocks-fc33105860573e7910996edff25db293.glb new file mode 100644 index 0000000..839a8b0 Binary files /dev/null and b/.godot/imported/tree_blocks-fc33105860573e7910996edff25db293.glb differ diff --git a/.godot/imported/tree_blocks.fbx-fc33105860573e7910996edff25db293.md5 b/.godot/imported/tree_blocks.fbx-fc33105860573e7910996edff25db293.md5 new file mode 100644 index 0000000..c4b33ab --- /dev/null +++ b/.godot/imported/tree_blocks.fbx-fc33105860573e7910996edff25db293.md5 @@ -0,0 +1,2 @@ +source_md5="7bbd8994b00afa83225963149f186834" +dest_md5="b9077e69c25fb2c7cd7cca52fa8a9baf" diff --git a/.godot/imported/tree_blocks.fbx-fc33105860573e7910996edff25db293.scn b/.godot/imported/tree_blocks.fbx-fc33105860573e7910996edff25db293.scn new file mode 100644 index 0000000..d0cf192 Binary files /dev/null and b/.godot/imported/tree_blocks.fbx-fc33105860573e7910996edff25db293.scn differ diff --git a/.godot/imported/tree_blocks_dark-8563d42cd86a3d2e100947777c48a266.glb b/.godot/imported/tree_blocks_dark-8563d42cd86a3d2e100947777c48a266.glb new file mode 100644 index 0000000..7b549ac Binary files /dev/null and b/.godot/imported/tree_blocks_dark-8563d42cd86a3d2e100947777c48a266.glb differ diff --git a/.godot/imported/tree_blocks_dark.fbx-8563d42cd86a3d2e100947777c48a266.md5 b/.godot/imported/tree_blocks_dark.fbx-8563d42cd86a3d2e100947777c48a266.md5 new file mode 100644 index 0000000..aa7e00d --- /dev/null +++ b/.godot/imported/tree_blocks_dark.fbx-8563d42cd86a3d2e100947777c48a266.md5 @@ -0,0 +1,2 @@ +source_md5="88878272a7f3652a2678f5aeb0ccb0c2" +dest_md5="3fa45c2a8a8051675aecdc1f6813ee48" diff --git a/.godot/imported/tree_blocks_dark.fbx-8563d42cd86a3d2e100947777c48a266.scn b/.godot/imported/tree_blocks_dark.fbx-8563d42cd86a3d2e100947777c48a266.scn new file mode 100644 index 0000000..59e9d51 Binary files /dev/null and b/.godot/imported/tree_blocks_dark.fbx-8563d42cd86a3d2e100947777c48a266.scn differ diff --git a/.godot/imported/tree_blocks_fall-d5cbec1818a7d563ce72770ede18f396.glb b/.godot/imported/tree_blocks_fall-d5cbec1818a7d563ce72770ede18f396.glb new file mode 100644 index 0000000..2880a73 Binary files /dev/null and b/.godot/imported/tree_blocks_fall-d5cbec1818a7d563ce72770ede18f396.glb differ diff --git a/.godot/imported/tree_blocks_fall.fbx-d5cbec1818a7d563ce72770ede18f396.md5 b/.godot/imported/tree_blocks_fall.fbx-d5cbec1818a7d563ce72770ede18f396.md5 new file mode 100644 index 0000000..2354b08 --- /dev/null +++ b/.godot/imported/tree_blocks_fall.fbx-d5cbec1818a7d563ce72770ede18f396.md5 @@ -0,0 +1,2 @@ +source_md5="ba6bc96829461b2f8fa60d93e0b5b297" +dest_md5="bc132fac3335f730fe017b2c1968e35c" diff --git a/.godot/imported/tree_blocks_fall.fbx-d5cbec1818a7d563ce72770ede18f396.scn b/.godot/imported/tree_blocks_fall.fbx-d5cbec1818a7d563ce72770ede18f396.scn new file mode 100644 index 0000000..e8ee8ac Binary files /dev/null and b/.godot/imported/tree_blocks_fall.fbx-d5cbec1818a7d563ce72770ede18f396.scn differ diff --git a/.godot/imported/tree_cone-22b47cc66d6ff3118b00fb2de16884be.glb b/.godot/imported/tree_cone-22b47cc66d6ff3118b00fb2de16884be.glb new file mode 100644 index 0000000..b8c22a6 Binary files /dev/null and b/.godot/imported/tree_cone-22b47cc66d6ff3118b00fb2de16884be.glb differ diff --git a/.godot/imported/tree_cone.fbx-22b47cc66d6ff3118b00fb2de16884be.md5 b/.godot/imported/tree_cone.fbx-22b47cc66d6ff3118b00fb2de16884be.md5 new file mode 100644 index 0000000..9903d14 --- /dev/null +++ b/.godot/imported/tree_cone.fbx-22b47cc66d6ff3118b00fb2de16884be.md5 @@ -0,0 +1,2 @@ +source_md5="fe74afb2b1370600d6c3648bcb10508b" +dest_md5="5c1d8dbfcddbab3e77ba8438ec14c8f2" diff --git a/.godot/imported/tree_cone.fbx-22b47cc66d6ff3118b00fb2de16884be.scn b/.godot/imported/tree_cone.fbx-22b47cc66d6ff3118b00fb2de16884be.scn new file mode 100644 index 0000000..9463792 Binary files /dev/null and b/.godot/imported/tree_cone.fbx-22b47cc66d6ff3118b00fb2de16884be.scn differ diff --git a/.godot/imported/tree_cone_dark-e4e58a58a3ffcdcb98f0d6102bc6de12.glb b/.godot/imported/tree_cone_dark-e4e58a58a3ffcdcb98f0d6102bc6de12.glb new file mode 100644 index 0000000..042d191 Binary files /dev/null and b/.godot/imported/tree_cone_dark-e4e58a58a3ffcdcb98f0d6102bc6de12.glb differ diff --git a/.godot/imported/tree_cone_dark.fbx-e4e58a58a3ffcdcb98f0d6102bc6de12.md5 b/.godot/imported/tree_cone_dark.fbx-e4e58a58a3ffcdcb98f0d6102bc6de12.md5 new file mode 100644 index 0000000..eef0aac --- /dev/null +++ b/.godot/imported/tree_cone_dark.fbx-e4e58a58a3ffcdcb98f0d6102bc6de12.md5 @@ -0,0 +1,2 @@ +source_md5="fd5a996c3b67caa8af52bfcbf0f7e0b1" +dest_md5="bdfe68c9b7a4e8877d9ed382659eae46" diff --git a/.godot/imported/tree_cone_dark.fbx-e4e58a58a3ffcdcb98f0d6102bc6de12.scn b/.godot/imported/tree_cone_dark.fbx-e4e58a58a3ffcdcb98f0d6102bc6de12.scn new file mode 100644 index 0000000..56d0b69 Binary files /dev/null and b/.godot/imported/tree_cone_dark.fbx-e4e58a58a3ffcdcb98f0d6102bc6de12.scn differ diff --git a/.godot/imported/tree_cone_fall-5934d8b5c29157471f8d02e5ef21d7ca.glb b/.godot/imported/tree_cone_fall-5934d8b5c29157471f8d02e5ef21d7ca.glb new file mode 100644 index 0000000..ef14f5c Binary files /dev/null and b/.godot/imported/tree_cone_fall-5934d8b5c29157471f8d02e5ef21d7ca.glb differ diff --git a/.godot/imported/tree_cone_fall.fbx-5934d8b5c29157471f8d02e5ef21d7ca.md5 b/.godot/imported/tree_cone_fall.fbx-5934d8b5c29157471f8d02e5ef21d7ca.md5 new file mode 100644 index 0000000..2c6e7c3 --- /dev/null +++ b/.godot/imported/tree_cone_fall.fbx-5934d8b5c29157471f8d02e5ef21d7ca.md5 @@ -0,0 +1,2 @@ +source_md5="32c5e3417461150c69429dd079b50068" +dest_md5="653f5855a34f5d39b62c9e2d9c49f397" diff --git a/.godot/imported/tree_cone_fall.fbx-5934d8b5c29157471f8d02e5ef21d7ca.scn b/.godot/imported/tree_cone_fall.fbx-5934d8b5c29157471f8d02e5ef21d7ca.scn new file mode 100644 index 0000000..6c6107d Binary files /dev/null and b/.godot/imported/tree_cone_fall.fbx-5934d8b5c29157471f8d02e5ef21d7ca.scn differ diff --git a/.godot/imported/tree_default-c66764402931b40df2e7c392b9b1a24a.glb b/.godot/imported/tree_default-c66764402931b40df2e7c392b9b1a24a.glb new file mode 100644 index 0000000..b19d53b Binary files /dev/null and b/.godot/imported/tree_default-c66764402931b40df2e7c392b9b1a24a.glb differ diff --git a/.godot/imported/tree_default.fbx-c66764402931b40df2e7c392b9b1a24a.md5 b/.godot/imported/tree_default.fbx-c66764402931b40df2e7c392b9b1a24a.md5 new file mode 100644 index 0000000..5b6aa0e --- /dev/null +++ b/.godot/imported/tree_default.fbx-c66764402931b40df2e7c392b9b1a24a.md5 @@ -0,0 +1,2 @@ +source_md5="fd3c40dd56115923a5c9001e76972df3" +dest_md5="8dba35a74ae4a707e919f5eff560771b" diff --git a/.godot/imported/tree_default.fbx-c66764402931b40df2e7c392b9b1a24a.scn b/.godot/imported/tree_default.fbx-c66764402931b40df2e7c392b9b1a24a.scn new file mode 100644 index 0000000..3b6edba Binary files /dev/null and b/.godot/imported/tree_default.fbx-c66764402931b40df2e7c392b9b1a24a.scn differ diff --git a/.godot/imported/tree_default_dark-6e7b1d04c23f3faee6cfd232cbb2813e.glb b/.godot/imported/tree_default_dark-6e7b1d04c23f3faee6cfd232cbb2813e.glb new file mode 100644 index 0000000..8a03442 Binary files /dev/null and b/.godot/imported/tree_default_dark-6e7b1d04c23f3faee6cfd232cbb2813e.glb differ diff --git a/.godot/imported/tree_default_dark.fbx-6e7b1d04c23f3faee6cfd232cbb2813e.md5 b/.godot/imported/tree_default_dark.fbx-6e7b1d04c23f3faee6cfd232cbb2813e.md5 new file mode 100644 index 0000000..b9d6657 --- /dev/null +++ b/.godot/imported/tree_default_dark.fbx-6e7b1d04c23f3faee6cfd232cbb2813e.md5 @@ -0,0 +1,2 @@ +source_md5="b9682293b11a4ab4f3fe5e68f1a13bff" +dest_md5="ae057b5c723f885e75b4a4d3f5b2af8a" diff --git a/.godot/imported/tree_default_dark.fbx-6e7b1d04c23f3faee6cfd232cbb2813e.scn b/.godot/imported/tree_default_dark.fbx-6e7b1d04c23f3faee6cfd232cbb2813e.scn new file mode 100644 index 0000000..a8a3d16 Binary files /dev/null and b/.godot/imported/tree_default_dark.fbx-6e7b1d04c23f3faee6cfd232cbb2813e.scn differ diff --git a/.godot/imported/tree_default_fall-2468e3b7e4bd2a3b60f852d894481f8b.glb b/.godot/imported/tree_default_fall-2468e3b7e4bd2a3b60f852d894481f8b.glb new file mode 100644 index 0000000..94e6ca0 Binary files /dev/null and b/.godot/imported/tree_default_fall-2468e3b7e4bd2a3b60f852d894481f8b.glb differ diff --git a/.godot/imported/tree_default_fall.fbx-2468e3b7e4bd2a3b60f852d894481f8b.md5 b/.godot/imported/tree_default_fall.fbx-2468e3b7e4bd2a3b60f852d894481f8b.md5 new file mode 100644 index 0000000..0f68184 --- /dev/null +++ b/.godot/imported/tree_default_fall.fbx-2468e3b7e4bd2a3b60f852d894481f8b.md5 @@ -0,0 +1,2 @@ +source_md5="fa34769b7481d3f5075f21cbe7422cdc" +dest_md5="043b17f5a5104d8631c65ded2c466305" diff --git a/.godot/imported/tree_default_fall.fbx-2468e3b7e4bd2a3b60f852d894481f8b.scn b/.godot/imported/tree_default_fall.fbx-2468e3b7e4bd2a3b60f852d894481f8b.scn new file mode 100644 index 0000000..bf57175 Binary files /dev/null and b/.godot/imported/tree_default_fall.fbx-2468e3b7e4bd2a3b60f852d894481f8b.scn differ diff --git a/.godot/imported/tree_detailed-36e22b5478b9d47ffac99257b21ea960.glb b/.godot/imported/tree_detailed-36e22b5478b9d47ffac99257b21ea960.glb new file mode 100644 index 0000000..9dc6c11 Binary files /dev/null and b/.godot/imported/tree_detailed-36e22b5478b9d47ffac99257b21ea960.glb differ diff --git a/.godot/imported/tree_detailed.fbx-36e22b5478b9d47ffac99257b21ea960.md5 b/.godot/imported/tree_detailed.fbx-36e22b5478b9d47ffac99257b21ea960.md5 new file mode 100644 index 0000000..ba9be7d --- /dev/null +++ b/.godot/imported/tree_detailed.fbx-36e22b5478b9d47ffac99257b21ea960.md5 @@ -0,0 +1,2 @@ +source_md5="e02895305cbc8137fbd1614f19a74b9f" +dest_md5="d3e1160487d581ab745f869f61d5c831" diff --git a/.godot/imported/tree_detailed.fbx-36e22b5478b9d47ffac99257b21ea960.scn b/.godot/imported/tree_detailed.fbx-36e22b5478b9d47ffac99257b21ea960.scn new file mode 100644 index 0000000..2029568 Binary files /dev/null and b/.godot/imported/tree_detailed.fbx-36e22b5478b9d47ffac99257b21ea960.scn differ diff --git a/.godot/imported/tree_detailed_dark-90391d3c69e11ade1ff4873f7c42080b.glb b/.godot/imported/tree_detailed_dark-90391d3c69e11ade1ff4873f7c42080b.glb new file mode 100644 index 0000000..612c48e Binary files /dev/null and b/.godot/imported/tree_detailed_dark-90391d3c69e11ade1ff4873f7c42080b.glb differ diff --git a/.godot/imported/tree_detailed_dark.fbx-90391d3c69e11ade1ff4873f7c42080b.md5 b/.godot/imported/tree_detailed_dark.fbx-90391d3c69e11ade1ff4873f7c42080b.md5 new file mode 100644 index 0000000..610fc81 --- /dev/null +++ b/.godot/imported/tree_detailed_dark.fbx-90391d3c69e11ade1ff4873f7c42080b.md5 @@ -0,0 +1,2 @@ +source_md5="8bcd55e104ceb6bc0ea0ad2f5c4d74b4" +dest_md5="765e1508a62ee3e7e605d6d20a35cc09" diff --git a/.godot/imported/tree_detailed_dark.fbx-90391d3c69e11ade1ff4873f7c42080b.scn b/.godot/imported/tree_detailed_dark.fbx-90391d3c69e11ade1ff4873f7c42080b.scn new file mode 100644 index 0000000..06ea5e9 Binary files /dev/null and b/.godot/imported/tree_detailed_dark.fbx-90391d3c69e11ade1ff4873f7c42080b.scn differ diff --git a/.godot/imported/tree_detailed_fall-52f5db5f0ad4a6c8d784a018ff60d0c6.glb b/.godot/imported/tree_detailed_fall-52f5db5f0ad4a6c8d784a018ff60d0c6.glb new file mode 100644 index 0000000..23bfff9 Binary files /dev/null and b/.godot/imported/tree_detailed_fall-52f5db5f0ad4a6c8d784a018ff60d0c6.glb differ diff --git a/.godot/imported/tree_detailed_fall.fbx-52f5db5f0ad4a6c8d784a018ff60d0c6.md5 b/.godot/imported/tree_detailed_fall.fbx-52f5db5f0ad4a6c8d784a018ff60d0c6.md5 new file mode 100644 index 0000000..9280eca --- /dev/null +++ b/.godot/imported/tree_detailed_fall.fbx-52f5db5f0ad4a6c8d784a018ff60d0c6.md5 @@ -0,0 +1,2 @@ +source_md5="163e54002530d94113a1598cf2a96978" +dest_md5="97ce8e32423e49cb0831242771ce4a06" diff --git a/.godot/imported/tree_detailed_fall.fbx-52f5db5f0ad4a6c8d784a018ff60d0c6.scn b/.godot/imported/tree_detailed_fall.fbx-52f5db5f0ad4a6c8d784a018ff60d0c6.scn new file mode 100644 index 0000000..3c590a5 Binary files /dev/null and b/.godot/imported/tree_detailed_fall.fbx-52f5db5f0ad4a6c8d784a018ff60d0c6.scn differ diff --git a/.godot/imported/tree_fat-a7f8c277c81495dd4d3d28d2672b24e2.glb b/.godot/imported/tree_fat-a7f8c277c81495dd4d3d28d2672b24e2.glb new file mode 100644 index 0000000..f529e29 Binary files /dev/null and b/.godot/imported/tree_fat-a7f8c277c81495dd4d3d28d2672b24e2.glb differ diff --git a/.godot/imported/tree_fat.fbx-a7f8c277c81495dd4d3d28d2672b24e2.md5 b/.godot/imported/tree_fat.fbx-a7f8c277c81495dd4d3d28d2672b24e2.md5 new file mode 100644 index 0000000..424b568 --- /dev/null +++ b/.godot/imported/tree_fat.fbx-a7f8c277c81495dd4d3d28d2672b24e2.md5 @@ -0,0 +1,2 @@ +source_md5="635cd53e466a115af72001e4109570d0" +dest_md5="2aba9df9ddb2c8d6c363def531ec5873" diff --git a/.godot/imported/tree_fat.fbx-a7f8c277c81495dd4d3d28d2672b24e2.scn b/.godot/imported/tree_fat.fbx-a7f8c277c81495dd4d3d28d2672b24e2.scn new file mode 100644 index 0000000..64e4558 Binary files /dev/null and b/.godot/imported/tree_fat.fbx-a7f8c277c81495dd4d3d28d2672b24e2.scn differ diff --git a/.godot/imported/tree_fat_darkh-89b53810c2ce256720b12751d7dafc2c.glb b/.godot/imported/tree_fat_darkh-89b53810c2ce256720b12751d7dafc2c.glb new file mode 100644 index 0000000..e42cbcd Binary files /dev/null and b/.godot/imported/tree_fat_darkh-89b53810c2ce256720b12751d7dafc2c.glb differ diff --git a/.godot/imported/tree_fat_darkh.fbx-89b53810c2ce256720b12751d7dafc2c.md5 b/.godot/imported/tree_fat_darkh.fbx-89b53810c2ce256720b12751d7dafc2c.md5 new file mode 100644 index 0000000..6c4ebca --- /dev/null +++ b/.godot/imported/tree_fat_darkh.fbx-89b53810c2ce256720b12751d7dafc2c.md5 @@ -0,0 +1,2 @@ +source_md5="c48aeab7aabee4f835153698dbcf8fa7" +dest_md5="814a33b04f84580e4c97eb034088a1f7" diff --git a/.godot/imported/tree_fat_darkh.fbx-89b53810c2ce256720b12751d7dafc2c.scn b/.godot/imported/tree_fat_darkh.fbx-89b53810c2ce256720b12751d7dafc2c.scn new file mode 100644 index 0000000..2e45d3c Binary files /dev/null and b/.godot/imported/tree_fat_darkh.fbx-89b53810c2ce256720b12751d7dafc2c.scn differ diff --git a/.godot/imported/tree_fat_fall-9d69692aaca06c3b76799aaba89c83ea.glb b/.godot/imported/tree_fat_fall-9d69692aaca06c3b76799aaba89c83ea.glb new file mode 100644 index 0000000..7681f34 Binary files /dev/null and b/.godot/imported/tree_fat_fall-9d69692aaca06c3b76799aaba89c83ea.glb differ diff --git a/.godot/imported/tree_fat_fall.fbx-9d69692aaca06c3b76799aaba89c83ea.md5 b/.godot/imported/tree_fat_fall.fbx-9d69692aaca06c3b76799aaba89c83ea.md5 new file mode 100644 index 0000000..425b676 --- /dev/null +++ b/.godot/imported/tree_fat_fall.fbx-9d69692aaca06c3b76799aaba89c83ea.md5 @@ -0,0 +1,2 @@ +source_md5="f19a3e49fe146d054b334f252a66ae58" +dest_md5="8d57d83fd1f6a86d746a798fc269323a" diff --git a/.godot/imported/tree_fat_fall.fbx-9d69692aaca06c3b76799aaba89c83ea.scn b/.godot/imported/tree_fat_fall.fbx-9d69692aaca06c3b76799aaba89c83ea.scn new file mode 100644 index 0000000..ada8d0b Binary files /dev/null and b/.godot/imported/tree_fat_fall.fbx-9d69692aaca06c3b76799aaba89c83ea.scn differ diff --git a/.godot/imported/tree_oak-935a771d572251d18840caba13578a9a.glb b/.godot/imported/tree_oak-935a771d572251d18840caba13578a9a.glb new file mode 100644 index 0000000..ea21d50 Binary files /dev/null and b/.godot/imported/tree_oak-935a771d572251d18840caba13578a9a.glb differ diff --git a/.godot/imported/tree_oak.fbx-935a771d572251d18840caba13578a9a.md5 b/.godot/imported/tree_oak.fbx-935a771d572251d18840caba13578a9a.md5 new file mode 100644 index 0000000..fa68e00 --- /dev/null +++ b/.godot/imported/tree_oak.fbx-935a771d572251d18840caba13578a9a.md5 @@ -0,0 +1,2 @@ +source_md5="4ee7cdaa6a6252118e56ff4ddaf821d0" +dest_md5="5b75e6fc2ed3960abcb241f0c6ed7943" diff --git a/.godot/imported/tree_oak.fbx-935a771d572251d18840caba13578a9a.scn b/.godot/imported/tree_oak.fbx-935a771d572251d18840caba13578a9a.scn new file mode 100644 index 0000000..6b7a594 Binary files /dev/null and b/.godot/imported/tree_oak.fbx-935a771d572251d18840caba13578a9a.scn differ diff --git a/.godot/imported/tree_oak_dark-2141fd6040fcdb0f03d653d426ceb533.glb b/.godot/imported/tree_oak_dark-2141fd6040fcdb0f03d653d426ceb533.glb new file mode 100644 index 0000000..f7ac853 Binary files /dev/null and b/.godot/imported/tree_oak_dark-2141fd6040fcdb0f03d653d426ceb533.glb differ diff --git a/.godot/imported/tree_oak_dark.fbx-2141fd6040fcdb0f03d653d426ceb533.md5 b/.godot/imported/tree_oak_dark.fbx-2141fd6040fcdb0f03d653d426ceb533.md5 new file mode 100644 index 0000000..93baf5d --- /dev/null +++ b/.godot/imported/tree_oak_dark.fbx-2141fd6040fcdb0f03d653d426ceb533.md5 @@ -0,0 +1,2 @@ +source_md5="c005c33e80ff0d255cd29bd2461cfd7d" +dest_md5="752c3fbeeffe03bfe2adefe9e7892378" diff --git a/.godot/imported/tree_oak_dark.fbx-2141fd6040fcdb0f03d653d426ceb533.scn b/.godot/imported/tree_oak_dark.fbx-2141fd6040fcdb0f03d653d426ceb533.scn new file mode 100644 index 0000000..9ec84a8 Binary files /dev/null and b/.godot/imported/tree_oak_dark.fbx-2141fd6040fcdb0f03d653d426ceb533.scn differ diff --git a/.godot/imported/tree_oak_fall-23b7cf1f9b8024d0a9861d0c0186c123.glb b/.godot/imported/tree_oak_fall-23b7cf1f9b8024d0a9861d0c0186c123.glb new file mode 100644 index 0000000..db40a02 Binary files /dev/null and b/.godot/imported/tree_oak_fall-23b7cf1f9b8024d0a9861d0c0186c123.glb differ diff --git a/.godot/imported/tree_oak_fall.fbx-23b7cf1f9b8024d0a9861d0c0186c123.md5 b/.godot/imported/tree_oak_fall.fbx-23b7cf1f9b8024d0a9861d0c0186c123.md5 new file mode 100644 index 0000000..e9391c0 --- /dev/null +++ b/.godot/imported/tree_oak_fall.fbx-23b7cf1f9b8024d0a9861d0c0186c123.md5 @@ -0,0 +1,2 @@ +source_md5="54d5daf270b7b1666ece670415b71381" +dest_md5="91a59169c40cbac26b735c32583b19bb" diff --git a/.godot/imported/tree_oak_fall.fbx-23b7cf1f9b8024d0a9861d0c0186c123.scn b/.godot/imported/tree_oak_fall.fbx-23b7cf1f9b8024d0a9861d0c0186c123.scn new file mode 100644 index 0000000..047a628 Binary files /dev/null and b/.godot/imported/tree_oak_fall.fbx-23b7cf1f9b8024d0a9861d0c0186c123.scn differ diff --git a/.godot/imported/tree_palm-25d8c7e063ddc596b1c11567f07d367d.glb b/.godot/imported/tree_palm-25d8c7e063ddc596b1c11567f07d367d.glb new file mode 100644 index 0000000..b6a6696 Binary files /dev/null and b/.godot/imported/tree_palm-25d8c7e063ddc596b1c11567f07d367d.glb differ diff --git a/.godot/imported/tree_palm.fbx-25d8c7e063ddc596b1c11567f07d367d.md5 b/.godot/imported/tree_palm.fbx-25d8c7e063ddc596b1c11567f07d367d.md5 new file mode 100644 index 0000000..d1ab1a6 --- /dev/null +++ b/.godot/imported/tree_palm.fbx-25d8c7e063ddc596b1c11567f07d367d.md5 @@ -0,0 +1,2 @@ +source_md5="b4d69a0c95fe4496a90b99daa506dba1" +dest_md5="4b50312d99fd166f850049c88155effb" diff --git a/.godot/imported/tree_palm.fbx-25d8c7e063ddc596b1c11567f07d367d.scn b/.godot/imported/tree_palm.fbx-25d8c7e063ddc596b1c11567f07d367d.scn new file mode 100644 index 0000000..efe64ae Binary files /dev/null and b/.godot/imported/tree_palm.fbx-25d8c7e063ddc596b1c11567f07d367d.scn differ diff --git a/.godot/imported/tree_palmBend-71a059c7fa8570957bc89b7c8f10333d.glb b/.godot/imported/tree_palmBend-71a059c7fa8570957bc89b7c8f10333d.glb new file mode 100644 index 0000000..fae0dec Binary files /dev/null and b/.godot/imported/tree_palmBend-71a059c7fa8570957bc89b7c8f10333d.glb differ diff --git a/.godot/imported/tree_palmBend.fbx-71a059c7fa8570957bc89b7c8f10333d.md5 b/.godot/imported/tree_palmBend.fbx-71a059c7fa8570957bc89b7c8f10333d.md5 new file mode 100644 index 0000000..3e2b653 --- /dev/null +++ b/.godot/imported/tree_palmBend.fbx-71a059c7fa8570957bc89b7c8f10333d.md5 @@ -0,0 +1,2 @@ +source_md5="4dfcd9164ec0fed420d9fe03a72dbaa4" +dest_md5="af6bca86f5cdf4e4d2ad444b368f4064" diff --git a/.godot/imported/tree_palmBend.fbx-71a059c7fa8570957bc89b7c8f10333d.scn b/.godot/imported/tree_palmBend.fbx-71a059c7fa8570957bc89b7c8f10333d.scn new file mode 100644 index 0000000..c17d5ee Binary files /dev/null and b/.godot/imported/tree_palmBend.fbx-71a059c7fa8570957bc89b7c8f10333d.scn differ diff --git a/.godot/imported/tree_palmDetailedShort-1e5a1e31c5fd094849dae46966af933a.glb b/.godot/imported/tree_palmDetailedShort-1e5a1e31c5fd094849dae46966af933a.glb new file mode 100644 index 0000000..27d7c3e Binary files /dev/null and b/.godot/imported/tree_palmDetailedShort-1e5a1e31c5fd094849dae46966af933a.glb differ diff --git a/.godot/imported/tree_palmDetailedShort.fbx-1e5a1e31c5fd094849dae46966af933a.md5 b/.godot/imported/tree_palmDetailedShort.fbx-1e5a1e31c5fd094849dae46966af933a.md5 new file mode 100644 index 0000000..afe12d4 --- /dev/null +++ b/.godot/imported/tree_palmDetailedShort.fbx-1e5a1e31c5fd094849dae46966af933a.md5 @@ -0,0 +1,2 @@ +source_md5="e64b3350eee590e43a68e637228c34f5" +dest_md5="f39b2c99678f259ce5a1611bc45f79af" diff --git a/.godot/imported/tree_palmDetailedShort.fbx-1e5a1e31c5fd094849dae46966af933a.scn b/.godot/imported/tree_palmDetailedShort.fbx-1e5a1e31c5fd094849dae46966af933a.scn new file mode 100644 index 0000000..bf17503 Binary files /dev/null and b/.godot/imported/tree_palmDetailedShort.fbx-1e5a1e31c5fd094849dae46966af933a.scn differ diff --git a/.godot/imported/tree_palmDetailedTall-93b6abe2dbe6c85a969b92822a04a033.glb b/.godot/imported/tree_palmDetailedTall-93b6abe2dbe6c85a969b92822a04a033.glb new file mode 100644 index 0000000..bb3c5c7 Binary files /dev/null and b/.godot/imported/tree_palmDetailedTall-93b6abe2dbe6c85a969b92822a04a033.glb differ diff --git a/.godot/imported/tree_palmDetailedTall.fbx-93b6abe2dbe6c85a969b92822a04a033.md5 b/.godot/imported/tree_palmDetailedTall.fbx-93b6abe2dbe6c85a969b92822a04a033.md5 new file mode 100644 index 0000000..69c4fa2 --- /dev/null +++ b/.godot/imported/tree_palmDetailedTall.fbx-93b6abe2dbe6c85a969b92822a04a033.md5 @@ -0,0 +1,2 @@ +source_md5="3baab260c4c6a9fe37d3c29b8b297cbf" +dest_md5="98d4f750522475082701fd5dddf865a0" diff --git a/.godot/imported/tree_palmDetailedTall.fbx-93b6abe2dbe6c85a969b92822a04a033.scn b/.godot/imported/tree_palmDetailedTall.fbx-93b6abe2dbe6c85a969b92822a04a033.scn new file mode 100644 index 0000000..975fb94 Binary files /dev/null and b/.godot/imported/tree_palmDetailedTall.fbx-93b6abe2dbe6c85a969b92822a04a033.scn differ diff --git a/.godot/imported/tree_palmShort-f3f373b29b2e06907f74e5bba908b9d9.glb b/.godot/imported/tree_palmShort-f3f373b29b2e06907f74e5bba908b9d9.glb new file mode 100644 index 0000000..5f4b9f3 Binary files /dev/null and b/.godot/imported/tree_palmShort-f3f373b29b2e06907f74e5bba908b9d9.glb differ diff --git a/.godot/imported/tree_palmShort.fbx-f3f373b29b2e06907f74e5bba908b9d9.md5 b/.godot/imported/tree_palmShort.fbx-f3f373b29b2e06907f74e5bba908b9d9.md5 new file mode 100644 index 0000000..2003f77 --- /dev/null +++ b/.godot/imported/tree_palmShort.fbx-f3f373b29b2e06907f74e5bba908b9d9.md5 @@ -0,0 +1,2 @@ +source_md5="65679c5aa9f54d5b5afe7650bf59da4d" +dest_md5="3720d105629803a64e76f5c96aec4846" diff --git a/.godot/imported/tree_palmShort.fbx-f3f373b29b2e06907f74e5bba908b9d9.scn b/.godot/imported/tree_palmShort.fbx-f3f373b29b2e06907f74e5bba908b9d9.scn new file mode 100644 index 0000000..0e268b5 Binary files /dev/null and b/.godot/imported/tree_palmShort.fbx-f3f373b29b2e06907f74e5bba908b9d9.scn differ diff --git a/.godot/imported/tree_palmTall-fb1ce2c73bf584a7f25f1648320fbabf.glb b/.godot/imported/tree_palmTall-fb1ce2c73bf584a7f25f1648320fbabf.glb new file mode 100644 index 0000000..8b3709e Binary files /dev/null and b/.godot/imported/tree_palmTall-fb1ce2c73bf584a7f25f1648320fbabf.glb differ diff --git a/.godot/imported/tree_palmTall.fbx-fb1ce2c73bf584a7f25f1648320fbabf.md5 b/.godot/imported/tree_palmTall.fbx-fb1ce2c73bf584a7f25f1648320fbabf.md5 new file mode 100644 index 0000000..42ddc06 --- /dev/null +++ b/.godot/imported/tree_palmTall.fbx-fb1ce2c73bf584a7f25f1648320fbabf.md5 @@ -0,0 +1,2 @@ +source_md5="3524f4357c6a9cb598ab82259937a61a" +dest_md5="f6da699f090f34c2148de64f24e6b5a5" diff --git a/.godot/imported/tree_palmTall.fbx-fb1ce2c73bf584a7f25f1648320fbabf.scn b/.godot/imported/tree_palmTall.fbx-fb1ce2c73bf584a7f25f1648320fbabf.scn new file mode 100644 index 0000000..059b0a8 Binary files /dev/null and b/.godot/imported/tree_palmTall.fbx-fb1ce2c73bf584a7f25f1648320fbabf.scn differ diff --git a/.godot/imported/tree_pineDefaultA-a591b8df9b833e9480208528b8e7b5d8.glb b/.godot/imported/tree_pineDefaultA-a591b8df9b833e9480208528b8e7b5d8.glb new file mode 100644 index 0000000..9d50de5 Binary files /dev/null and b/.godot/imported/tree_pineDefaultA-a591b8df9b833e9480208528b8e7b5d8.glb differ diff --git a/.godot/imported/tree_pineDefaultA.fbx-a591b8df9b833e9480208528b8e7b5d8.md5 b/.godot/imported/tree_pineDefaultA.fbx-a591b8df9b833e9480208528b8e7b5d8.md5 new file mode 100644 index 0000000..ebc921a --- /dev/null +++ b/.godot/imported/tree_pineDefaultA.fbx-a591b8df9b833e9480208528b8e7b5d8.md5 @@ -0,0 +1,2 @@ +source_md5="0ba1d62a4ede7d82525800b2db99c3e0" +dest_md5="88e7dbae30fa6665516ba8be796f7da9" diff --git a/.godot/imported/tree_pineDefaultA.fbx-a591b8df9b833e9480208528b8e7b5d8.scn b/.godot/imported/tree_pineDefaultA.fbx-a591b8df9b833e9480208528b8e7b5d8.scn new file mode 100644 index 0000000..0ed3188 Binary files /dev/null and b/.godot/imported/tree_pineDefaultA.fbx-a591b8df9b833e9480208528b8e7b5d8.scn differ diff --git a/.godot/imported/tree_pineDefaultB-80347008ea7cb4d6f9f41d985c3def8a.glb b/.godot/imported/tree_pineDefaultB-80347008ea7cb4d6f9f41d985c3def8a.glb new file mode 100644 index 0000000..56adb9f Binary files /dev/null and b/.godot/imported/tree_pineDefaultB-80347008ea7cb4d6f9f41d985c3def8a.glb differ diff --git a/.godot/imported/tree_pineDefaultB.fbx-80347008ea7cb4d6f9f41d985c3def8a.md5 b/.godot/imported/tree_pineDefaultB.fbx-80347008ea7cb4d6f9f41d985c3def8a.md5 new file mode 100644 index 0000000..338a9af --- /dev/null +++ b/.godot/imported/tree_pineDefaultB.fbx-80347008ea7cb4d6f9f41d985c3def8a.md5 @@ -0,0 +1,2 @@ +source_md5="e4fe4dccd0c3802a2ca7c03ef9b926bf" +dest_md5="584c4326ad4d9bf728f8c88a6c4cd5f9" diff --git a/.godot/imported/tree_pineDefaultB.fbx-80347008ea7cb4d6f9f41d985c3def8a.scn b/.godot/imported/tree_pineDefaultB.fbx-80347008ea7cb4d6f9f41d985c3def8a.scn new file mode 100644 index 0000000..a1f7721 Binary files /dev/null and b/.godot/imported/tree_pineDefaultB.fbx-80347008ea7cb4d6f9f41d985c3def8a.scn differ diff --git a/.godot/imported/tree_pineGroundA-4f98740221e8d695effc041883729a00.glb b/.godot/imported/tree_pineGroundA-4f98740221e8d695effc041883729a00.glb new file mode 100644 index 0000000..a2c3d62 Binary files /dev/null and b/.godot/imported/tree_pineGroundA-4f98740221e8d695effc041883729a00.glb differ diff --git a/.godot/imported/tree_pineGroundA.fbx-4f98740221e8d695effc041883729a00.md5 b/.godot/imported/tree_pineGroundA.fbx-4f98740221e8d695effc041883729a00.md5 new file mode 100644 index 0000000..bae759b --- /dev/null +++ b/.godot/imported/tree_pineGroundA.fbx-4f98740221e8d695effc041883729a00.md5 @@ -0,0 +1,2 @@ +source_md5="f86e7fa803c1f3a9283c61d0ff73c71c" +dest_md5="191b404c89f418f25564940b8c7f91ec" diff --git a/.godot/imported/tree_pineGroundA.fbx-4f98740221e8d695effc041883729a00.scn b/.godot/imported/tree_pineGroundA.fbx-4f98740221e8d695effc041883729a00.scn new file mode 100644 index 0000000..7c32eb2 Binary files /dev/null and b/.godot/imported/tree_pineGroundA.fbx-4f98740221e8d695effc041883729a00.scn differ diff --git a/.godot/imported/tree_pineGroundB-e1e67bd60a5114a7fb01e87ac9c08734.glb b/.godot/imported/tree_pineGroundB-e1e67bd60a5114a7fb01e87ac9c08734.glb new file mode 100644 index 0000000..c6de546 Binary files /dev/null and b/.godot/imported/tree_pineGroundB-e1e67bd60a5114a7fb01e87ac9c08734.glb differ diff --git a/.godot/imported/tree_pineGroundB.fbx-e1e67bd60a5114a7fb01e87ac9c08734.md5 b/.godot/imported/tree_pineGroundB.fbx-e1e67bd60a5114a7fb01e87ac9c08734.md5 new file mode 100644 index 0000000..39419fa --- /dev/null +++ b/.godot/imported/tree_pineGroundB.fbx-e1e67bd60a5114a7fb01e87ac9c08734.md5 @@ -0,0 +1,2 @@ +source_md5="2f0f1fe1f74338e88b0df613b9d546c0" +dest_md5="a02e4e4670637fd2b3a4b62b11d76921" diff --git a/.godot/imported/tree_pineGroundB.fbx-e1e67bd60a5114a7fb01e87ac9c08734.scn b/.godot/imported/tree_pineGroundB.fbx-e1e67bd60a5114a7fb01e87ac9c08734.scn new file mode 100644 index 0000000..7b5635f Binary files /dev/null and b/.godot/imported/tree_pineGroundB.fbx-e1e67bd60a5114a7fb01e87ac9c08734.scn differ diff --git a/.godot/imported/tree_pineRoundA-690df4dc93b3b4e0b39de16652247a0e.glb b/.godot/imported/tree_pineRoundA-690df4dc93b3b4e0b39de16652247a0e.glb new file mode 100644 index 0000000..57afe6a Binary files /dev/null and b/.godot/imported/tree_pineRoundA-690df4dc93b3b4e0b39de16652247a0e.glb differ diff --git a/.godot/imported/tree_pineRoundA.fbx-690df4dc93b3b4e0b39de16652247a0e.md5 b/.godot/imported/tree_pineRoundA.fbx-690df4dc93b3b4e0b39de16652247a0e.md5 new file mode 100644 index 0000000..2e736c1 --- /dev/null +++ b/.godot/imported/tree_pineRoundA.fbx-690df4dc93b3b4e0b39de16652247a0e.md5 @@ -0,0 +1,2 @@ +source_md5="a13b8bea20fd1cf80e3068a6eaa06930" +dest_md5="1d491c20237cfd1ecf1702d18761d1b8" diff --git a/.godot/imported/tree_pineRoundA.fbx-690df4dc93b3b4e0b39de16652247a0e.scn b/.godot/imported/tree_pineRoundA.fbx-690df4dc93b3b4e0b39de16652247a0e.scn new file mode 100644 index 0000000..91b0dd6 Binary files /dev/null and b/.godot/imported/tree_pineRoundA.fbx-690df4dc93b3b4e0b39de16652247a0e.scn differ diff --git a/.godot/imported/tree_pineRoundB-f5357f4d542bcf5db608f31a3edea499.glb b/.godot/imported/tree_pineRoundB-f5357f4d542bcf5db608f31a3edea499.glb new file mode 100644 index 0000000..26f4c3f Binary files /dev/null and b/.godot/imported/tree_pineRoundB-f5357f4d542bcf5db608f31a3edea499.glb differ diff --git a/.godot/imported/tree_pineRoundB.fbx-f5357f4d542bcf5db608f31a3edea499.md5 b/.godot/imported/tree_pineRoundB.fbx-f5357f4d542bcf5db608f31a3edea499.md5 new file mode 100644 index 0000000..41c780a --- /dev/null +++ b/.godot/imported/tree_pineRoundB.fbx-f5357f4d542bcf5db608f31a3edea499.md5 @@ -0,0 +1,2 @@ +source_md5="4e1bc4a9248675b0ad5ae826af18be75" +dest_md5="f851ff5de3aa9cc6c18e8b04b0bb33ed" diff --git a/.godot/imported/tree_pineRoundB.fbx-f5357f4d542bcf5db608f31a3edea499.scn b/.godot/imported/tree_pineRoundB.fbx-f5357f4d542bcf5db608f31a3edea499.scn new file mode 100644 index 0000000..d66c1c4 Binary files /dev/null and b/.godot/imported/tree_pineRoundB.fbx-f5357f4d542bcf5db608f31a3edea499.scn differ diff --git a/.godot/imported/tree_pineRoundC-4e8a104a1e9bbba8337063f0c74f9f71.glb b/.godot/imported/tree_pineRoundC-4e8a104a1e9bbba8337063f0c74f9f71.glb new file mode 100644 index 0000000..dddca86 Binary files /dev/null and b/.godot/imported/tree_pineRoundC-4e8a104a1e9bbba8337063f0c74f9f71.glb differ diff --git a/.godot/imported/tree_pineRoundC.fbx-4e8a104a1e9bbba8337063f0c74f9f71.md5 b/.godot/imported/tree_pineRoundC.fbx-4e8a104a1e9bbba8337063f0c74f9f71.md5 new file mode 100644 index 0000000..ffe962f --- /dev/null +++ b/.godot/imported/tree_pineRoundC.fbx-4e8a104a1e9bbba8337063f0c74f9f71.md5 @@ -0,0 +1,2 @@ +source_md5="d5b94810393e8be7cbc327aa0fb8381c" +dest_md5="cbc3193108f2ed9828ab2f6cb59a0ae7" diff --git a/.godot/imported/tree_pineRoundC.fbx-4e8a104a1e9bbba8337063f0c74f9f71.scn b/.godot/imported/tree_pineRoundC.fbx-4e8a104a1e9bbba8337063f0c74f9f71.scn new file mode 100644 index 0000000..7a835ce Binary files /dev/null and b/.godot/imported/tree_pineRoundC.fbx-4e8a104a1e9bbba8337063f0c74f9f71.scn differ diff --git a/.godot/imported/tree_pineRoundD-b04a9e28877324835302c86e20017a62.glb b/.godot/imported/tree_pineRoundD-b04a9e28877324835302c86e20017a62.glb new file mode 100644 index 0000000..d434907 Binary files /dev/null and b/.godot/imported/tree_pineRoundD-b04a9e28877324835302c86e20017a62.glb differ diff --git a/.godot/imported/tree_pineRoundD.fbx-b04a9e28877324835302c86e20017a62.md5 b/.godot/imported/tree_pineRoundD.fbx-b04a9e28877324835302c86e20017a62.md5 new file mode 100644 index 0000000..4f3a644 --- /dev/null +++ b/.godot/imported/tree_pineRoundD.fbx-b04a9e28877324835302c86e20017a62.md5 @@ -0,0 +1,2 @@ +source_md5="3272feccacdeb967e36d79768815ca87" +dest_md5="e93758ea341581207f1f87375f65fdbb" diff --git a/.godot/imported/tree_pineRoundD.fbx-b04a9e28877324835302c86e20017a62.scn b/.godot/imported/tree_pineRoundD.fbx-b04a9e28877324835302c86e20017a62.scn new file mode 100644 index 0000000..c2321fc Binary files /dev/null and b/.godot/imported/tree_pineRoundD.fbx-b04a9e28877324835302c86e20017a62.scn differ diff --git a/.godot/imported/tree_pineRoundE-c8f2337dba91cc962847b1b5eb8754bc.glb b/.godot/imported/tree_pineRoundE-c8f2337dba91cc962847b1b5eb8754bc.glb new file mode 100644 index 0000000..6010dce Binary files /dev/null and b/.godot/imported/tree_pineRoundE-c8f2337dba91cc962847b1b5eb8754bc.glb differ diff --git a/.godot/imported/tree_pineRoundE.fbx-c8f2337dba91cc962847b1b5eb8754bc.md5 b/.godot/imported/tree_pineRoundE.fbx-c8f2337dba91cc962847b1b5eb8754bc.md5 new file mode 100644 index 0000000..306ff32 --- /dev/null +++ b/.godot/imported/tree_pineRoundE.fbx-c8f2337dba91cc962847b1b5eb8754bc.md5 @@ -0,0 +1,2 @@ +source_md5="e5af964b1e17018597b4ed0bcf023c86" +dest_md5="7230b41c09d081750616e11bcc31b258" diff --git a/.godot/imported/tree_pineRoundE.fbx-c8f2337dba91cc962847b1b5eb8754bc.scn b/.godot/imported/tree_pineRoundE.fbx-c8f2337dba91cc962847b1b5eb8754bc.scn new file mode 100644 index 0000000..cbd1966 Binary files /dev/null and b/.godot/imported/tree_pineRoundE.fbx-c8f2337dba91cc962847b1b5eb8754bc.scn differ diff --git a/.godot/imported/tree_pineRoundF-b3ca086647984eef97db6f0735a4ba7e.glb b/.godot/imported/tree_pineRoundF-b3ca086647984eef97db6f0735a4ba7e.glb new file mode 100644 index 0000000..38d1a28 Binary files /dev/null and b/.godot/imported/tree_pineRoundF-b3ca086647984eef97db6f0735a4ba7e.glb differ diff --git a/.godot/imported/tree_pineRoundF.fbx-b3ca086647984eef97db6f0735a4ba7e.md5 b/.godot/imported/tree_pineRoundF.fbx-b3ca086647984eef97db6f0735a4ba7e.md5 new file mode 100644 index 0000000..0a3dc73 --- /dev/null +++ b/.godot/imported/tree_pineRoundF.fbx-b3ca086647984eef97db6f0735a4ba7e.md5 @@ -0,0 +1,2 @@ +source_md5="4f07b77c8e0aeeb78b2c602e77e7124a" +dest_md5="c84c266dbfa3a69f9b7c9135d0098310" diff --git a/.godot/imported/tree_pineRoundF.fbx-b3ca086647984eef97db6f0735a4ba7e.scn b/.godot/imported/tree_pineRoundF.fbx-b3ca086647984eef97db6f0735a4ba7e.scn new file mode 100644 index 0000000..2e25b76 Binary files /dev/null and b/.godot/imported/tree_pineRoundF.fbx-b3ca086647984eef97db6f0735a4ba7e.scn differ diff --git a/.godot/imported/tree_pineSmallA-d14e427fefa114a5ff2ff35156507efe.glb b/.godot/imported/tree_pineSmallA-d14e427fefa114a5ff2ff35156507efe.glb new file mode 100644 index 0000000..8ac3c06 Binary files /dev/null and b/.godot/imported/tree_pineSmallA-d14e427fefa114a5ff2ff35156507efe.glb differ diff --git a/.godot/imported/tree_pineSmallA.fbx-d14e427fefa114a5ff2ff35156507efe.md5 b/.godot/imported/tree_pineSmallA.fbx-d14e427fefa114a5ff2ff35156507efe.md5 new file mode 100644 index 0000000..14da386 --- /dev/null +++ b/.godot/imported/tree_pineSmallA.fbx-d14e427fefa114a5ff2ff35156507efe.md5 @@ -0,0 +1,2 @@ +source_md5="a6528b234ec51d6318705b6ca9c6ad88" +dest_md5="b85f19e1c2ffef8f45044f39a7e1342e" diff --git a/.godot/imported/tree_pineSmallA.fbx-d14e427fefa114a5ff2ff35156507efe.scn b/.godot/imported/tree_pineSmallA.fbx-d14e427fefa114a5ff2ff35156507efe.scn new file mode 100644 index 0000000..3221ed5 Binary files /dev/null and b/.godot/imported/tree_pineSmallA.fbx-d14e427fefa114a5ff2ff35156507efe.scn differ diff --git a/.godot/imported/tree_pineSmallB-427e573314359829a6fe246bce5b4b6a.glb b/.godot/imported/tree_pineSmallB-427e573314359829a6fe246bce5b4b6a.glb new file mode 100644 index 0000000..24df622 Binary files /dev/null and b/.godot/imported/tree_pineSmallB-427e573314359829a6fe246bce5b4b6a.glb differ diff --git a/.godot/imported/tree_pineSmallB.fbx-427e573314359829a6fe246bce5b4b6a.md5 b/.godot/imported/tree_pineSmallB.fbx-427e573314359829a6fe246bce5b4b6a.md5 new file mode 100644 index 0000000..7ce45c3 --- /dev/null +++ b/.godot/imported/tree_pineSmallB.fbx-427e573314359829a6fe246bce5b4b6a.md5 @@ -0,0 +1,2 @@ +source_md5="820881159a0ec7235c9be795980382b7" +dest_md5="ef12961000158fe3c3ec68ae89616aa0" diff --git a/.godot/imported/tree_pineSmallB.fbx-427e573314359829a6fe246bce5b4b6a.scn b/.godot/imported/tree_pineSmallB.fbx-427e573314359829a6fe246bce5b4b6a.scn new file mode 100644 index 0000000..0f4fcf7 Binary files /dev/null and b/.godot/imported/tree_pineSmallB.fbx-427e573314359829a6fe246bce5b4b6a.scn differ diff --git a/.godot/imported/tree_pineSmallC-31d56ec7cc8973184559234c3e009437.glb b/.godot/imported/tree_pineSmallC-31d56ec7cc8973184559234c3e009437.glb new file mode 100644 index 0000000..ef75a5e Binary files /dev/null and b/.godot/imported/tree_pineSmallC-31d56ec7cc8973184559234c3e009437.glb differ diff --git a/.godot/imported/tree_pineSmallC.fbx-31d56ec7cc8973184559234c3e009437.md5 b/.godot/imported/tree_pineSmallC.fbx-31d56ec7cc8973184559234c3e009437.md5 new file mode 100644 index 0000000..145b627 --- /dev/null +++ b/.godot/imported/tree_pineSmallC.fbx-31d56ec7cc8973184559234c3e009437.md5 @@ -0,0 +1,2 @@ +source_md5="d5edf70e0f5dad6500c2d8d464756deb" +dest_md5="9b8a053e5fc20aa565345fe2ad36aa1c" diff --git a/.godot/imported/tree_pineSmallC.fbx-31d56ec7cc8973184559234c3e009437.scn b/.godot/imported/tree_pineSmallC.fbx-31d56ec7cc8973184559234c3e009437.scn new file mode 100644 index 0000000..7c0aba8 Binary files /dev/null and b/.godot/imported/tree_pineSmallC.fbx-31d56ec7cc8973184559234c3e009437.scn differ diff --git a/.godot/imported/tree_pineSmallD-536b285a5ee8a7615b1c6f5a5d47bbc8.glb b/.godot/imported/tree_pineSmallD-536b285a5ee8a7615b1c6f5a5d47bbc8.glb new file mode 100644 index 0000000..703d67f Binary files /dev/null and b/.godot/imported/tree_pineSmallD-536b285a5ee8a7615b1c6f5a5d47bbc8.glb differ diff --git a/.godot/imported/tree_pineSmallD.fbx-536b285a5ee8a7615b1c6f5a5d47bbc8.md5 b/.godot/imported/tree_pineSmallD.fbx-536b285a5ee8a7615b1c6f5a5d47bbc8.md5 new file mode 100644 index 0000000..a49b8b3 --- /dev/null +++ b/.godot/imported/tree_pineSmallD.fbx-536b285a5ee8a7615b1c6f5a5d47bbc8.md5 @@ -0,0 +1,2 @@ +source_md5="1aa11228158e970dfdc7e7c8c29631bb" +dest_md5="d9978b642491c76aa16757a36f0ca660" diff --git a/.godot/imported/tree_pineSmallD.fbx-536b285a5ee8a7615b1c6f5a5d47bbc8.scn b/.godot/imported/tree_pineSmallD.fbx-536b285a5ee8a7615b1c6f5a5d47bbc8.scn new file mode 100644 index 0000000..1efe04c Binary files /dev/null and b/.godot/imported/tree_pineSmallD.fbx-536b285a5ee8a7615b1c6f5a5d47bbc8.scn differ diff --git a/.godot/imported/tree_pineTallA-cded9fe549135cc822d925df98890f4a.glb b/.godot/imported/tree_pineTallA-cded9fe549135cc822d925df98890f4a.glb new file mode 100644 index 0000000..223ce4d Binary files /dev/null and b/.godot/imported/tree_pineTallA-cded9fe549135cc822d925df98890f4a.glb differ diff --git a/.godot/imported/tree_pineTallA.fbx-cded9fe549135cc822d925df98890f4a.md5 b/.godot/imported/tree_pineTallA.fbx-cded9fe549135cc822d925df98890f4a.md5 new file mode 100644 index 0000000..3904cd9 --- /dev/null +++ b/.godot/imported/tree_pineTallA.fbx-cded9fe549135cc822d925df98890f4a.md5 @@ -0,0 +1,2 @@ +source_md5="d548453090ddecb2f1b7e2bcd44762fa" +dest_md5="5a434ce86885aa0ad6f43156174bc920" diff --git a/.godot/imported/tree_pineTallA.fbx-cded9fe549135cc822d925df98890f4a.scn b/.godot/imported/tree_pineTallA.fbx-cded9fe549135cc822d925df98890f4a.scn new file mode 100644 index 0000000..af3eda3 Binary files /dev/null and b/.godot/imported/tree_pineTallA.fbx-cded9fe549135cc822d925df98890f4a.scn differ diff --git a/.godot/imported/tree_pineTallA_detailed-0b41cc2a16d8443e3666a2f38ecd499c.glb b/.godot/imported/tree_pineTallA_detailed-0b41cc2a16d8443e3666a2f38ecd499c.glb new file mode 100644 index 0000000..608e8ee Binary files /dev/null and b/.godot/imported/tree_pineTallA_detailed-0b41cc2a16d8443e3666a2f38ecd499c.glb differ diff --git a/.godot/imported/tree_pineTallA_detailed.fbx-0b41cc2a16d8443e3666a2f38ecd499c.md5 b/.godot/imported/tree_pineTallA_detailed.fbx-0b41cc2a16d8443e3666a2f38ecd499c.md5 new file mode 100644 index 0000000..473fee4 --- /dev/null +++ b/.godot/imported/tree_pineTallA_detailed.fbx-0b41cc2a16d8443e3666a2f38ecd499c.md5 @@ -0,0 +1,2 @@ +source_md5="5c583a44b8443cf0bacffb9337722f4f" +dest_md5="6723d0b59541e88b6af3d70e5e5c82e4" diff --git a/.godot/imported/tree_pineTallA_detailed.fbx-0b41cc2a16d8443e3666a2f38ecd499c.scn b/.godot/imported/tree_pineTallA_detailed.fbx-0b41cc2a16d8443e3666a2f38ecd499c.scn new file mode 100644 index 0000000..e920f2f Binary files /dev/null and b/.godot/imported/tree_pineTallA_detailed.fbx-0b41cc2a16d8443e3666a2f38ecd499c.scn differ diff --git a/.godot/imported/tree_pineTallB-6e94fff5fc3329b71d99be2825a7131c.glb b/.godot/imported/tree_pineTallB-6e94fff5fc3329b71d99be2825a7131c.glb new file mode 100644 index 0000000..d0a490a Binary files /dev/null and b/.godot/imported/tree_pineTallB-6e94fff5fc3329b71d99be2825a7131c.glb differ diff --git a/.godot/imported/tree_pineTallB.fbx-6e94fff5fc3329b71d99be2825a7131c.md5 b/.godot/imported/tree_pineTallB.fbx-6e94fff5fc3329b71d99be2825a7131c.md5 new file mode 100644 index 0000000..d45323e --- /dev/null +++ b/.godot/imported/tree_pineTallB.fbx-6e94fff5fc3329b71d99be2825a7131c.md5 @@ -0,0 +1,2 @@ +source_md5="49b6a0ed907691284bc9b0dd36f3eafe" +dest_md5="d9370d42c7f247649e06dc89bde889e4" diff --git a/.godot/imported/tree_pineTallB.fbx-6e94fff5fc3329b71d99be2825a7131c.scn b/.godot/imported/tree_pineTallB.fbx-6e94fff5fc3329b71d99be2825a7131c.scn new file mode 100644 index 0000000..3a12485 Binary files /dev/null and b/.godot/imported/tree_pineTallB.fbx-6e94fff5fc3329b71d99be2825a7131c.scn differ diff --git a/.godot/imported/tree_pineTallB_detailed-580e2a5a5ec9a25b985b684cb79b1d56.glb b/.godot/imported/tree_pineTallB_detailed-580e2a5a5ec9a25b985b684cb79b1d56.glb new file mode 100644 index 0000000..b8685bf Binary files /dev/null and b/.godot/imported/tree_pineTallB_detailed-580e2a5a5ec9a25b985b684cb79b1d56.glb differ diff --git a/.godot/imported/tree_pineTallB_detailed.fbx-580e2a5a5ec9a25b985b684cb79b1d56.md5 b/.godot/imported/tree_pineTallB_detailed.fbx-580e2a5a5ec9a25b985b684cb79b1d56.md5 new file mode 100644 index 0000000..f197f41 --- /dev/null +++ b/.godot/imported/tree_pineTallB_detailed.fbx-580e2a5a5ec9a25b985b684cb79b1d56.md5 @@ -0,0 +1,2 @@ +source_md5="416cdad819d4befc82fed77cdfe52ee9" +dest_md5="a556f43ea5932866f670529c72bb2b06" diff --git a/.godot/imported/tree_pineTallB_detailed.fbx-580e2a5a5ec9a25b985b684cb79b1d56.scn b/.godot/imported/tree_pineTallB_detailed.fbx-580e2a5a5ec9a25b985b684cb79b1d56.scn new file mode 100644 index 0000000..1866685 Binary files /dev/null and b/.godot/imported/tree_pineTallB_detailed.fbx-580e2a5a5ec9a25b985b684cb79b1d56.scn differ diff --git a/.godot/imported/tree_pineTallC-c35adc961d4f77a38484b82e8d9ef0e3.glb b/.godot/imported/tree_pineTallC-c35adc961d4f77a38484b82e8d9ef0e3.glb new file mode 100644 index 0000000..0a64e9b Binary files /dev/null and b/.godot/imported/tree_pineTallC-c35adc961d4f77a38484b82e8d9ef0e3.glb differ diff --git a/.godot/imported/tree_pineTallC.fbx-c35adc961d4f77a38484b82e8d9ef0e3.md5 b/.godot/imported/tree_pineTallC.fbx-c35adc961d4f77a38484b82e8d9ef0e3.md5 new file mode 100644 index 0000000..621048f --- /dev/null +++ b/.godot/imported/tree_pineTallC.fbx-c35adc961d4f77a38484b82e8d9ef0e3.md5 @@ -0,0 +1,2 @@ +source_md5="0a16b5233fb65fbc0ea9b9981ea1fa5f" +dest_md5="48c41e2a1b79e67a76a8bef40c4ece4e" diff --git a/.godot/imported/tree_pineTallC.fbx-c35adc961d4f77a38484b82e8d9ef0e3.scn b/.godot/imported/tree_pineTallC.fbx-c35adc961d4f77a38484b82e8d9ef0e3.scn new file mode 100644 index 0000000..416dfdd Binary files /dev/null and b/.godot/imported/tree_pineTallC.fbx-c35adc961d4f77a38484b82e8d9ef0e3.scn differ diff --git a/.godot/imported/tree_pineTallC_detailed-684f0286d0a5018b7162be4a9a4d95da.glb b/.godot/imported/tree_pineTallC_detailed-684f0286d0a5018b7162be4a9a4d95da.glb new file mode 100644 index 0000000..2704345 Binary files /dev/null and b/.godot/imported/tree_pineTallC_detailed-684f0286d0a5018b7162be4a9a4d95da.glb differ diff --git a/.godot/imported/tree_pineTallC_detailed.fbx-684f0286d0a5018b7162be4a9a4d95da.md5 b/.godot/imported/tree_pineTallC_detailed.fbx-684f0286d0a5018b7162be4a9a4d95da.md5 new file mode 100644 index 0000000..e49fd32 --- /dev/null +++ b/.godot/imported/tree_pineTallC_detailed.fbx-684f0286d0a5018b7162be4a9a4d95da.md5 @@ -0,0 +1,2 @@ +source_md5="37f6c8280a318f3c8802b8cab8e9a507" +dest_md5="7be9d8b3a236507c3fcd157f8feafcdb" diff --git a/.godot/imported/tree_pineTallC_detailed.fbx-684f0286d0a5018b7162be4a9a4d95da.scn b/.godot/imported/tree_pineTallC_detailed.fbx-684f0286d0a5018b7162be4a9a4d95da.scn new file mode 100644 index 0000000..9319057 Binary files /dev/null and b/.godot/imported/tree_pineTallC_detailed.fbx-684f0286d0a5018b7162be4a9a4d95da.scn differ diff --git a/.godot/imported/tree_pineTallD-bd7b5302fd0a0f39348197a7c4ac11a6.glb b/.godot/imported/tree_pineTallD-bd7b5302fd0a0f39348197a7c4ac11a6.glb new file mode 100644 index 0000000..d41803f Binary files /dev/null and b/.godot/imported/tree_pineTallD-bd7b5302fd0a0f39348197a7c4ac11a6.glb differ diff --git a/.godot/imported/tree_pineTallD.fbx-bd7b5302fd0a0f39348197a7c4ac11a6.md5 b/.godot/imported/tree_pineTallD.fbx-bd7b5302fd0a0f39348197a7c4ac11a6.md5 new file mode 100644 index 0000000..09a59f6 --- /dev/null +++ b/.godot/imported/tree_pineTallD.fbx-bd7b5302fd0a0f39348197a7c4ac11a6.md5 @@ -0,0 +1,2 @@ +source_md5="281fb379e550367c39901b2b6659658d" +dest_md5="812fc8065e2c8a85077375ec050b1f09" diff --git a/.godot/imported/tree_pineTallD.fbx-bd7b5302fd0a0f39348197a7c4ac11a6.scn b/.godot/imported/tree_pineTallD.fbx-bd7b5302fd0a0f39348197a7c4ac11a6.scn new file mode 100644 index 0000000..b051652 Binary files /dev/null and b/.godot/imported/tree_pineTallD.fbx-bd7b5302fd0a0f39348197a7c4ac11a6.scn differ diff --git a/.godot/imported/tree_pineTallD_detailed-2318f581a0f8a198c09defd6ba4e3fd6.glb b/.godot/imported/tree_pineTallD_detailed-2318f581a0f8a198c09defd6ba4e3fd6.glb new file mode 100644 index 0000000..2f46964 Binary files /dev/null and b/.godot/imported/tree_pineTallD_detailed-2318f581a0f8a198c09defd6ba4e3fd6.glb differ diff --git a/.godot/imported/tree_pineTallD_detailed.fbx-2318f581a0f8a198c09defd6ba4e3fd6.md5 b/.godot/imported/tree_pineTallD_detailed.fbx-2318f581a0f8a198c09defd6ba4e3fd6.md5 new file mode 100644 index 0000000..9a6c64b --- /dev/null +++ b/.godot/imported/tree_pineTallD_detailed.fbx-2318f581a0f8a198c09defd6ba4e3fd6.md5 @@ -0,0 +1,2 @@ +source_md5="57394b4ebfa06b38b0d1704fcf8c05e3" +dest_md5="2b28e6ee5bac33abdd2bad742e7a7c6e" diff --git a/.godot/imported/tree_pineTallD_detailed.fbx-2318f581a0f8a198c09defd6ba4e3fd6.scn b/.godot/imported/tree_pineTallD_detailed.fbx-2318f581a0f8a198c09defd6ba4e3fd6.scn new file mode 100644 index 0000000..1cce5d1 Binary files /dev/null and b/.godot/imported/tree_pineTallD_detailed.fbx-2318f581a0f8a198c09defd6ba4e3fd6.scn differ diff --git a/.godot/imported/tree_plateau-82bad6f7ece5db017899999d870ff3c0.glb b/.godot/imported/tree_plateau-82bad6f7ece5db017899999d870ff3c0.glb new file mode 100644 index 0000000..8c9e74a Binary files /dev/null and b/.godot/imported/tree_plateau-82bad6f7ece5db017899999d870ff3c0.glb differ diff --git a/.godot/imported/tree_plateau.fbx-82bad6f7ece5db017899999d870ff3c0.md5 b/.godot/imported/tree_plateau.fbx-82bad6f7ece5db017899999d870ff3c0.md5 new file mode 100644 index 0000000..c19cbb7 --- /dev/null +++ b/.godot/imported/tree_plateau.fbx-82bad6f7ece5db017899999d870ff3c0.md5 @@ -0,0 +1,2 @@ +source_md5="3607857350e2d391b1bd882868d9921e" +dest_md5="f465fb8fab438a028c0ce66d911e6288" diff --git a/.godot/imported/tree_plateau.fbx-82bad6f7ece5db017899999d870ff3c0.scn b/.godot/imported/tree_plateau.fbx-82bad6f7ece5db017899999d870ff3c0.scn new file mode 100644 index 0000000..7d48137 Binary files /dev/null and b/.godot/imported/tree_plateau.fbx-82bad6f7ece5db017899999d870ff3c0.scn differ diff --git a/.godot/imported/tree_plateau_dark-9e0492eb470e15da778926458e10ec27.glb b/.godot/imported/tree_plateau_dark-9e0492eb470e15da778926458e10ec27.glb new file mode 100644 index 0000000..e9c65fc Binary files /dev/null and b/.godot/imported/tree_plateau_dark-9e0492eb470e15da778926458e10ec27.glb differ diff --git a/.godot/imported/tree_plateau_dark.fbx-9e0492eb470e15da778926458e10ec27.md5 b/.godot/imported/tree_plateau_dark.fbx-9e0492eb470e15da778926458e10ec27.md5 new file mode 100644 index 0000000..c5f7f64 --- /dev/null +++ b/.godot/imported/tree_plateau_dark.fbx-9e0492eb470e15da778926458e10ec27.md5 @@ -0,0 +1,2 @@ +source_md5="2ce1ae1d251bc05ff9a37e31450889b2" +dest_md5="4ab9505419b1a570a8d08d5c5ed830ca" diff --git a/.godot/imported/tree_plateau_dark.fbx-9e0492eb470e15da778926458e10ec27.scn b/.godot/imported/tree_plateau_dark.fbx-9e0492eb470e15da778926458e10ec27.scn new file mode 100644 index 0000000..8266385 Binary files /dev/null and b/.godot/imported/tree_plateau_dark.fbx-9e0492eb470e15da778926458e10ec27.scn differ diff --git a/.godot/imported/tree_plateau_fall-278786410a19205277778d228f09cd5f.glb b/.godot/imported/tree_plateau_fall-278786410a19205277778d228f09cd5f.glb new file mode 100644 index 0000000..efa7e93 Binary files /dev/null and b/.godot/imported/tree_plateau_fall-278786410a19205277778d228f09cd5f.glb differ diff --git a/.godot/imported/tree_plateau_fall.fbx-278786410a19205277778d228f09cd5f.md5 b/.godot/imported/tree_plateau_fall.fbx-278786410a19205277778d228f09cd5f.md5 new file mode 100644 index 0000000..062ed77 --- /dev/null +++ b/.godot/imported/tree_plateau_fall.fbx-278786410a19205277778d228f09cd5f.md5 @@ -0,0 +1,2 @@ +source_md5="0beb53d2645b5b3fe931f44e84761f86" +dest_md5="3fe3afe6c2eff945da86fc2039b809a1" diff --git a/.godot/imported/tree_plateau_fall.fbx-278786410a19205277778d228f09cd5f.scn b/.godot/imported/tree_plateau_fall.fbx-278786410a19205277778d228f09cd5f.scn new file mode 100644 index 0000000..7360a9a Binary files /dev/null and b/.godot/imported/tree_plateau_fall.fbx-278786410a19205277778d228f09cd5f.scn differ diff --git a/.godot/imported/tree_simple-f9bed219dcedb298e09145db78257f47.glb b/.godot/imported/tree_simple-f9bed219dcedb298e09145db78257f47.glb new file mode 100644 index 0000000..1ba6292 Binary files /dev/null and b/.godot/imported/tree_simple-f9bed219dcedb298e09145db78257f47.glb differ diff --git a/.godot/imported/tree_simple.fbx-f9bed219dcedb298e09145db78257f47.md5 b/.godot/imported/tree_simple.fbx-f9bed219dcedb298e09145db78257f47.md5 new file mode 100644 index 0000000..ff341c8 --- /dev/null +++ b/.godot/imported/tree_simple.fbx-f9bed219dcedb298e09145db78257f47.md5 @@ -0,0 +1,2 @@ +source_md5="291d1b3386d01bf5f0f26769dd8b9594" +dest_md5="eb0070f437851ccfa4bf3e58ff7fbf72" diff --git a/.godot/imported/tree_simple.fbx-f9bed219dcedb298e09145db78257f47.scn b/.godot/imported/tree_simple.fbx-f9bed219dcedb298e09145db78257f47.scn new file mode 100644 index 0000000..f798fb5 Binary files /dev/null and b/.godot/imported/tree_simple.fbx-f9bed219dcedb298e09145db78257f47.scn differ diff --git a/.godot/imported/tree_simple_dark-42d2ff81d33674da52439a5dde61a82c.glb b/.godot/imported/tree_simple_dark-42d2ff81d33674da52439a5dde61a82c.glb new file mode 100644 index 0000000..8be4932 Binary files /dev/null and b/.godot/imported/tree_simple_dark-42d2ff81d33674da52439a5dde61a82c.glb differ diff --git a/.godot/imported/tree_simple_dark.fbx-42d2ff81d33674da52439a5dde61a82c.md5 b/.godot/imported/tree_simple_dark.fbx-42d2ff81d33674da52439a5dde61a82c.md5 new file mode 100644 index 0000000..8c22d76 --- /dev/null +++ b/.godot/imported/tree_simple_dark.fbx-42d2ff81d33674da52439a5dde61a82c.md5 @@ -0,0 +1,2 @@ +source_md5="4f98119cc95e20ed8c42d88a30053b10" +dest_md5="755ed5481d55a6a15858d94443b6580d" diff --git a/.godot/imported/tree_simple_dark.fbx-42d2ff81d33674da52439a5dde61a82c.scn b/.godot/imported/tree_simple_dark.fbx-42d2ff81d33674da52439a5dde61a82c.scn new file mode 100644 index 0000000..b92254c Binary files /dev/null and b/.godot/imported/tree_simple_dark.fbx-42d2ff81d33674da52439a5dde61a82c.scn differ diff --git a/.godot/imported/tree_simple_fall-cd9cb739553d7f28b7d9e192db2154f0.glb b/.godot/imported/tree_simple_fall-cd9cb739553d7f28b7d9e192db2154f0.glb new file mode 100644 index 0000000..fc8e845 Binary files /dev/null and b/.godot/imported/tree_simple_fall-cd9cb739553d7f28b7d9e192db2154f0.glb differ diff --git a/.godot/imported/tree_simple_fall.fbx-cd9cb739553d7f28b7d9e192db2154f0.md5 b/.godot/imported/tree_simple_fall.fbx-cd9cb739553d7f28b7d9e192db2154f0.md5 new file mode 100644 index 0000000..7267eb5 --- /dev/null +++ b/.godot/imported/tree_simple_fall.fbx-cd9cb739553d7f28b7d9e192db2154f0.md5 @@ -0,0 +1,2 @@ +source_md5="0301f80b79570a1969af212335bfaf7f" +dest_md5="c6746242a2dacca1d799549898696abe" diff --git a/.godot/imported/tree_simple_fall.fbx-cd9cb739553d7f28b7d9e192db2154f0.scn b/.godot/imported/tree_simple_fall.fbx-cd9cb739553d7f28b7d9e192db2154f0.scn new file mode 100644 index 0000000..2278aa5 Binary files /dev/null and b/.godot/imported/tree_simple_fall.fbx-cd9cb739553d7f28b7d9e192db2154f0.scn differ diff --git a/.godot/imported/tree_small-31bdfa7a2b3147a3178812bd59f6e77e.glb b/.godot/imported/tree_small-31bdfa7a2b3147a3178812bd59f6e77e.glb new file mode 100644 index 0000000..6906594 Binary files /dev/null and b/.godot/imported/tree_small-31bdfa7a2b3147a3178812bd59f6e77e.glb differ diff --git a/.godot/imported/tree_small.fbx-31bdfa7a2b3147a3178812bd59f6e77e.md5 b/.godot/imported/tree_small.fbx-31bdfa7a2b3147a3178812bd59f6e77e.md5 new file mode 100644 index 0000000..b232233 --- /dev/null +++ b/.godot/imported/tree_small.fbx-31bdfa7a2b3147a3178812bd59f6e77e.md5 @@ -0,0 +1,2 @@ +source_md5="a732d45753ee603bed38c1c4c4e1b2fb" +dest_md5="9a9f07b3ffe3bb30dad703df532a264d" diff --git a/.godot/imported/tree_small.fbx-31bdfa7a2b3147a3178812bd59f6e77e.scn b/.godot/imported/tree_small.fbx-31bdfa7a2b3147a3178812bd59f6e77e.scn new file mode 100644 index 0000000..1601641 Binary files /dev/null and b/.godot/imported/tree_small.fbx-31bdfa7a2b3147a3178812bd59f6e77e.scn differ diff --git a/.godot/imported/tree_small_dark-81d16f0e058339a716c2fa4c5dee735f.glb b/.godot/imported/tree_small_dark-81d16f0e058339a716c2fa4c5dee735f.glb new file mode 100644 index 0000000..ce86ad0 Binary files /dev/null and b/.godot/imported/tree_small_dark-81d16f0e058339a716c2fa4c5dee735f.glb differ diff --git a/.godot/imported/tree_small_dark.fbx-81d16f0e058339a716c2fa4c5dee735f.md5 b/.godot/imported/tree_small_dark.fbx-81d16f0e058339a716c2fa4c5dee735f.md5 new file mode 100644 index 0000000..51874b9 --- /dev/null +++ b/.godot/imported/tree_small_dark.fbx-81d16f0e058339a716c2fa4c5dee735f.md5 @@ -0,0 +1,2 @@ +source_md5="5a18ddb8438b6bd0d1673fa4fede080c" +dest_md5="4e91ac320c1b0953bc69fda0f76a3fd7" diff --git a/.godot/imported/tree_small_dark.fbx-81d16f0e058339a716c2fa4c5dee735f.scn b/.godot/imported/tree_small_dark.fbx-81d16f0e058339a716c2fa4c5dee735f.scn new file mode 100644 index 0000000..730d53e Binary files /dev/null and b/.godot/imported/tree_small_dark.fbx-81d16f0e058339a716c2fa4c5dee735f.scn differ diff --git a/.godot/imported/tree_small_fall-dc73c538929a8613e790f1cd7ae8965e.glb b/.godot/imported/tree_small_fall-dc73c538929a8613e790f1cd7ae8965e.glb new file mode 100644 index 0000000..e96b648 Binary files /dev/null and b/.godot/imported/tree_small_fall-dc73c538929a8613e790f1cd7ae8965e.glb differ diff --git a/.godot/imported/tree_small_fall.fbx-dc73c538929a8613e790f1cd7ae8965e.md5 b/.godot/imported/tree_small_fall.fbx-dc73c538929a8613e790f1cd7ae8965e.md5 new file mode 100644 index 0000000..57fa58f --- /dev/null +++ b/.godot/imported/tree_small_fall.fbx-dc73c538929a8613e790f1cd7ae8965e.md5 @@ -0,0 +1,2 @@ +source_md5="c9a3ee845e0706c6c324cdf5d2c29ead" +dest_md5="cbbae596f4458d1a65dc16c04550737e" diff --git a/.godot/imported/tree_small_fall.fbx-dc73c538929a8613e790f1cd7ae8965e.scn b/.godot/imported/tree_small_fall.fbx-dc73c538929a8613e790f1cd7ae8965e.scn new file mode 100644 index 0000000..d5c74d6 Binary files /dev/null and b/.godot/imported/tree_small_fall.fbx-dc73c538929a8613e790f1cd7ae8965e.scn differ diff --git a/.godot/imported/tree_tall-1b04d6ed7f7eee806efbd7446db8eb0f.glb b/.godot/imported/tree_tall-1b04d6ed7f7eee806efbd7446db8eb0f.glb new file mode 100644 index 0000000..754bb2d Binary files /dev/null and b/.godot/imported/tree_tall-1b04d6ed7f7eee806efbd7446db8eb0f.glb differ diff --git a/.godot/imported/tree_tall.fbx-1b04d6ed7f7eee806efbd7446db8eb0f.md5 b/.godot/imported/tree_tall.fbx-1b04d6ed7f7eee806efbd7446db8eb0f.md5 new file mode 100644 index 0000000..545ecf7 --- /dev/null +++ b/.godot/imported/tree_tall.fbx-1b04d6ed7f7eee806efbd7446db8eb0f.md5 @@ -0,0 +1,2 @@ +source_md5="c2dbcb811c6a71812d563d01b7b306d7" +dest_md5="24ec41592c8f81e2b5cae9102a9992d0" diff --git a/.godot/imported/tree_tall.fbx-1b04d6ed7f7eee806efbd7446db8eb0f.scn b/.godot/imported/tree_tall.fbx-1b04d6ed7f7eee806efbd7446db8eb0f.scn new file mode 100644 index 0000000..a9369c6 Binary files /dev/null and b/.godot/imported/tree_tall.fbx-1b04d6ed7f7eee806efbd7446db8eb0f.scn differ diff --git a/.godot/imported/tree_tall_dark-b706c9b71d75f619ea127d9dd122e58f.glb b/.godot/imported/tree_tall_dark-b706c9b71d75f619ea127d9dd122e58f.glb new file mode 100644 index 0000000..19676e8 Binary files /dev/null and b/.godot/imported/tree_tall_dark-b706c9b71d75f619ea127d9dd122e58f.glb differ diff --git a/.godot/imported/tree_tall_dark.fbx-b706c9b71d75f619ea127d9dd122e58f.md5 b/.godot/imported/tree_tall_dark.fbx-b706c9b71d75f619ea127d9dd122e58f.md5 new file mode 100644 index 0000000..23810ed --- /dev/null +++ b/.godot/imported/tree_tall_dark.fbx-b706c9b71d75f619ea127d9dd122e58f.md5 @@ -0,0 +1,2 @@ +source_md5="fb88105d18285e665ceae010c3b466a3" +dest_md5="e1f5c516498456101e2e810a999459d2" diff --git a/.godot/imported/tree_tall_dark.fbx-b706c9b71d75f619ea127d9dd122e58f.scn b/.godot/imported/tree_tall_dark.fbx-b706c9b71d75f619ea127d9dd122e58f.scn new file mode 100644 index 0000000..da94f90 Binary files /dev/null and b/.godot/imported/tree_tall_dark.fbx-b706c9b71d75f619ea127d9dd122e58f.scn differ diff --git a/.godot/imported/tree_tall_fall-24b7fff48f349f8d86ce4db407be088c.glb b/.godot/imported/tree_tall_fall-24b7fff48f349f8d86ce4db407be088c.glb new file mode 100644 index 0000000..5c83865 Binary files /dev/null and b/.godot/imported/tree_tall_fall-24b7fff48f349f8d86ce4db407be088c.glb differ diff --git a/.godot/imported/tree_tall_fall.fbx-24b7fff48f349f8d86ce4db407be088c.md5 b/.godot/imported/tree_tall_fall.fbx-24b7fff48f349f8d86ce4db407be088c.md5 new file mode 100644 index 0000000..c7729aa --- /dev/null +++ b/.godot/imported/tree_tall_fall.fbx-24b7fff48f349f8d86ce4db407be088c.md5 @@ -0,0 +1,2 @@ +source_md5="bff2f6f1d7ccda00ad59ee5e543e07e9" +dest_md5="91443e0e0740fbc657ebb5901d0162b9" diff --git a/.godot/imported/tree_tall_fall.fbx-24b7fff48f349f8d86ce4db407be088c.scn b/.godot/imported/tree_tall_fall.fbx-24b7fff48f349f8d86ce4db407be088c.scn new file mode 100644 index 0000000..d3b0b76 Binary files /dev/null and b/.godot/imported/tree_tall_fall.fbx-24b7fff48f349f8d86ce4db407be088c.scn differ diff --git a/.godot/imported/tree_thin-a94024d8859690093ecefe43f36ee21a.glb b/.godot/imported/tree_thin-a94024d8859690093ecefe43f36ee21a.glb new file mode 100644 index 0000000..6ce665e Binary files /dev/null and b/.godot/imported/tree_thin-a94024d8859690093ecefe43f36ee21a.glb differ diff --git a/.godot/imported/tree_thin.fbx-a94024d8859690093ecefe43f36ee21a.md5 b/.godot/imported/tree_thin.fbx-a94024d8859690093ecefe43f36ee21a.md5 new file mode 100644 index 0000000..19c5ad6 --- /dev/null +++ b/.godot/imported/tree_thin.fbx-a94024d8859690093ecefe43f36ee21a.md5 @@ -0,0 +1,2 @@ +source_md5="a939ce3dedf6bc36acd7bc2c84fdcfc1" +dest_md5="181107df7f7933cb94ce6e4b2da2d512" diff --git a/.godot/imported/tree_thin.fbx-a94024d8859690093ecefe43f36ee21a.scn b/.godot/imported/tree_thin.fbx-a94024d8859690093ecefe43f36ee21a.scn new file mode 100644 index 0000000..622a664 Binary files /dev/null and b/.godot/imported/tree_thin.fbx-a94024d8859690093ecefe43f36ee21a.scn differ diff --git a/.godot/imported/tree_thin_dark-a76199fc01f5390ab1ba6f6b9cdd0651.glb b/.godot/imported/tree_thin_dark-a76199fc01f5390ab1ba6f6b9cdd0651.glb new file mode 100644 index 0000000..9b8b57a Binary files /dev/null and b/.godot/imported/tree_thin_dark-a76199fc01f5390ab1ba6f6b9cdd0651.glb differ diff --git a/.godot/imported/tree_thin_dark.fbx-a76199fc01f5390ab1ba6f6b9cdd0651.md5 b/.godot/imported/tree_thin_dark.fbx-a76199fc01f5390ab1ba6f6b9cdd0651.md5 new file mode 100644 index 0000000..0ae4d43 --- /dev/null +++ b/.godot/imported/tree_thin_dark.fbx-a76199fc01f5390ab1ba6f6b9cdd0651.md5 @@ -0,0 +1,2 @@ +source_md5="ea7ddb7d5ebef5812993fa9dd6d9bc02" +dest_md5="8bdbf82e9720cbbf38114c0973929977" diff --git a/.godot/imported/tree_thin_dark.fbx-a76199fc01f5390ab1ba6f6b9cdd0651.scn b/.godot/imported/tree_thin_dark.fbx-a76199fc01f5390ab1ba6f6b9cdd0651.scn new file mode 100644 index 0000000..b952cb7 Binary files /dev/null and b/.godot/imported/tree_thin_dark.fbx-a76199fc01f5390ab1ba6f6b9cdd0651.scn differ diff --git a/.godot/imported/tree_thin_fall-84d6cde189d133e20ffaec772efd3cb2.glb b/.godot/imported/tree_thin_fall-84d6cde189d133e20ffaec772efd3cb2.glb new file mode 100644 index 0000000..20be98f Binary files /dev/null and b/.godot/imported/tree_thin_fall-84d6cde189d133e20ffaec772efd3cb2.glb differ diff --git a/.godot/imported/tree_thin_fall.fbx-84d6cde189d133e20ffaec772efd3cb2.md5 b/.godot/imported/tree_thin_fall.fbx-84d6cde189d133e20ffaec772efd3cb2.md5 new file mode 100644 index 0000000..a29031a --- /dev/null +++ b/.godot/imported/tree_thin_fall.fbx-84d6cde189d133e20ffaec772efd3cb2.md5 @@ -0,0 +1,2 @@ +source_md5="0a991484e8b4decf479662e6fe839b04" +dest_md5="f1a0bfcfddc22eb6e112eea761598eb7" diff --git a/.godot/imported/tree_thin_fall.fbx-84d6cde189d133e20ffaec772efd3cb2.scn b/.godot/imported/tree_thin_fall.fbx-84d6cde189d133e20ffaec772efd3cb2.scn new file mode 100644 index 0000000..bd1487a Binary files /dev/null and b/.godot/imported/tree_thin_fall.fbx-84d6cde189d133e20ffaec772efd3cb2.scn differ diff --git a/.godot/imported/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png-713d5b6b6c552cbbb0fdb6b0c1230aba.md5 b/.godot/imported/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png-713d5b6b6c552cbbb0fdb6b0c1230aba.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png-713d5b6b6c552cbbb0fdb6b0c1230aba.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png-713d5b6b6c552cbbb0fdb6b0c1230aba.s3tc.ctex b/.godot/imported/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png-713d5b6b6c552cbbb0fdb6b0c1230aba.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png-713d5b6b6c552cbbb0fdb6b0c1230aba.s3tc.ctex differ diff --git a/.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21.glb b/.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21.glb new file mode 100644 index 0000000..7cfdf09 Binary files /dev/null and b/.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21.glb differ diff --git a/.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png-489d911b2419d9a4910933cb17d4ae81.md5 b/.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png-489d911b2419d9a4910933cb17d4ae81.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png-489d911b2419d9a4910933cb17d4ae81.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png-489d911b2419d9a4910933cb17d4ae81.s3tc.ctex b/.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png-489d911b2419d9a4910933cb17d4ae81.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png-489d911b2419d9a4910933cb17d4ae81.s3tc.ctex differ diff --git a/.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27.glb b/.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27.glb new file mode 100644 index 0000000..83ff7a5 Binary files /dev/null and b/.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27.glb differ diff --git a/.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png-9a824d052ddcb8bf5b82ceb833579be0.md5 b/.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png-9a824d052ddcb8bf5b82ceb833579be0.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png-9a824d052ddcb8bf5b82ceb833579be0.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png-9a824d052ddcb8bf5b82ceb833579be0.s3tc.ctex b/.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png-9a824d052ddcb8bf5b82ceb833579be0.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png-9a824d052ddcb8bf5b82ceb833579be0.s3tc.ctex differ diff --git a/.godot/imported/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png-70c2207c1403051087a6af102881b46a.md5 b/.godot/imported/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png-70c2207c1403051087a6af102881b46a.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png-70c2207c1403051087a6af102881b46a.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png-70c2207c1403051087a6af102881b46a.s3tc.ctex b/.godot/imported/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png-70c2207c1403051087a6af102881b46a.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png-70c2207c1403051087a6af102881b46a.s3tc.ctex differ diff --git a/.godot/imported/truck-flat.fbx-2d670a8df84ef81da18dca4f2c784e27.md5 b/.godot/imported/truck-flat.fbx-2d670a8df84ef81da18dca4f2c784e27.md5 new file mode 100644 index 0000000..e20b313 --- /dev/null +++ b/.godot/imported/truck-flat.fbx-2d670a8df84ef81da18dca4f2c784e27.md5 @@ -0,0 +1,2 @@ +source_md5="eabd4dc435e4fc6280177d7444ffb7a1" +dest_md5="cb6ee0df7f37d4a5333c6720aa09855d" diff --git a/.godot/imported/truck-flat.fbx-2d670a8df84ef81da18dca4f2c784e27.scn b/.godot/imported/truck-flat.fbx-2d670a8df84ef81da18dca4f2c784e27.scn new file mode 100644 index 0000000..f9e5951 Binary files /dev/null and b/.godot/imported/truck-flat.fbx-2d670a8df84ef81da18dca4f2c784e27.scn differ diff --git a/.godot/imported/truck.fbx-bc57f2646fb0056e7e666cff8016dd21.md5 b/.godot/imported/truck.fbx-bc57f2646fb0056e7e666cff8016dd21.md5 new file mode 100644 index 0000000..c9ff425 --- /dev/null +++ b/.godot/imported/truck.fbx-bc57f2646fb0056e7e666cff8016dd21.md5 @@ -0,0 +1,2 @@ +source_md5="ed15e60ed49e964f12b787b76c79406c" +dest_md5="ef7aeaac2590b37037de961b0a4371f5" diff --git a/.godot/imported/truck.fbx-bc57f2646fb0056e7e666cff8016dd21.scn b/.godot/imported/truck.fbx-bc57f2646fb0056e7e666cff8016dd21.scn new file mode 100644 index 0000000..2b87bf5 Binary files /dev/null and b/.godot/imported/truck.fbx-bc57f2646fb0056e7e666cff8016dd21.scn differ diff --git a/.godot/imported/van-10e58b7034f352cb54f3809a0c471e46.glb b/.godot/imported/van-10e58b7034f352cb54f3809a0c471e46.glb new file mode 100644 index 0000000..152efe3 Binary files /dev/null and b/.godot/imported/van-10e58b7034f352cb54f3809a0c471e46.glb differ diff --git a/.godot/imported/van-10e58b7034f352cb54f3809a0c471e46_colormap.png-9169ee86f78475d11aceeb574225f78d.md5 b/.godot/imported/van-10e58b7034f352cb54f3809a0c471e46_colormap.png-9169ee86f78475d11aceeb574225f78d.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/van-10e58b7034f352cb54f3809a0c471e46_colormap.png-9169ee86f78475d11aceeb574225f78d.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/van-10e58b7034f352cb54f3809a0c471e46_colormap.png-9169ee86f78475d11aceeb574225f78d.s3tc.ctex b/.godot/imported/van-10e58b7034f352cb54f3809a0c471e46_colormap.png-9169ee86f78475d11aceeb574225f78d.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/van-10e58b7034f352cb54f3809a0c471e46_colormap.png-9169ee86f78475d11aceeb574225f78d.s3tc.ctex differ diff --git a/.godot/imported/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png-e5afec11abe21507370f3f711760fc67.md5 b/.godot/imported/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png-e5afec11abe21507370f3f711760fc67.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png-e5afec11abe21507370f3f711760fc67.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png-e5afec11abe21507370f3f711760fc67.s3tc.ctex b/.godot/imported/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png-e5afec11abe21507370f3f711760fc67.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png-e5afec11abe21507370f3f711760fc67.s3tc.ctex differ diff --git a/.godot/imported/van.fbx-10e58b7034f352cb54f3809a0c471e46.md5 b/.godot/imported/van.fbx-10e58b7034f352cb54f3809a0c471e46.md5 new file mode 100644 index 0000000..c6c48b1 --- /dev/null +++ b/.godot/imported/van.fbx-10e58b7034f352cb54f3809a0c471e46.md5 @@ -0,0 +1,2 @@ +source_md5="d8a21e38af4a7e24e533adb01aa993cf" +dest_md5="43a7b79e87ae09eccd5e313796da0765" diff --git a/.godot/imported/van.fbx-10e58b7034f352cb54f3809a0c471e46.scn b/.godot/imported/van.fbx-10e58b7034f352cb54f3809a0c471e46.scn new file mode 100644 index 0000000..7e2d90b Binary files /dev/null and b/.godot/imported/van.fbx-10e58b7034f352cb54f3809a0c471e46.scn differ diff --git a/.godot/imported/vcr_osd_mono.001.ttf-5a3ea29920ca20877c4b9fb7ad16b73f.fontdata b/.godot/imported/vcr_osd_mono.001.ttf-5a3ea29920ca20877c4b9fb7ad16b73f.fontdata new file mode 100644 index 0000000..26c6681 Binary files /dev/null and b/.godot/imported/vcr_osd_mono.001.ttf-5a3ea29920ca20877c4b9fb7ad16b73f.fontdata differ diff --git a/.godot/imported/vcr_osd_mono.001.ttf-5a3ea29920ca20877c4b9fb7ad16b73f.md5 b/.godot/imported/vcr_osd_mono.001.ttf-5a3ea29920ca20877c4b9fb7ad16b73f.md5 new file mode 100644 index 0000000..09ea315 --- /dev/null +++ b/.godot/imported/vcr_osd_mono.001.ttf-5a3ea29920ca20877c4b9fb7ad16b73f.md5 @@ -0,0 +1,2 @@ +source_md5="5fcd6c657ffa8a6791632c705f0944ea" +dest_md5="47587c3ee02da1454d1a4e5526fc8577" diff --git a/.godot/imported/wall-71b9dbc287ca1d1bd542e4257dc7ee98.glb b/.godot/imported/wall-71b9dbc287ca1d1bd542e4257dc7ee98.glb new file mode 100644 index 0000000..0420154 Binary files /dev/null and b/.godot/imported/wall-71b9dbc287ca1d1bd542e4257dc7ee98.glb differ diff --git a/.godot/imported/wall.fbx-71b9dbc287ca1d1bd542e4257dc7ee98.md5 b/.godot/imported/wall.fbx-71b9dbc287ca1d1bd542e4257dc7ee98.md5 new file mode 100644 index 0000000..e7a2391 --- /dev/null +++ b/.godot/imported/wall.fbx-71b9dbc287ca1d1bd542e4257dc7ee98.md5 @@ -0,0 +1,2 @@ +source_md5="790382004cb08ffddb62a40fbc090f09" +dest_md5="4b3d79efda8faa3380695097ddff89be" diff --git a/.godot/imported/wall.fbx-71b9dbc287ca1d1bd542e4257dc7ee98.scn b/.godot/imported/wall.fbx-71b9dbc287ca1d1bd542e4257dc7ee98.scn new file mode 100644 index 0000000..b7f4fc5 Binary files /dev/null and b/.godot/imported/wall.fbx-71b9dbc287ca1d1bd542e4257dc7ee98.scn differ diff --git a/.godot/imported/wallArch-e80daa1d4ca78be8527d782e8341a0e9.glb b/.godot/imported/wallArch-e80daa1d4ca78be8527d782e8341a0e9.glb new file mode 100644 index 0000000..a622dc2 Binary files /dev/null and b/.godot/imported/wallArch-e80daa1d4ca78be8527d782e8341a0e9.glb differ diff --git a/.godot/imported/wallArch.fbx-e80daa1d4ca78be8527d782e8341a0e9.md5 b/.godot/imported/wallArch.fbx-e80daa1d4ca78be8527d782e8341a0e9.md5 new file mode 100644 index 0000000..395547b --- /dev/null +++ b/.godot/imported/wallArch.fbx-e80daa1d4ca78be8527d782e8341a0e9.md5 @@ -0,0 +1,2 @@ +source_md5="af832e88937df055a5f3570b6d3e0c5a" +dest_md5="707387dadef75ccf92e616f2ed2ffbc5" diff --git a/.godot/imported/wallArch.fbx-e80daa1d4ca78be8527d782e8341a0e9.scn b/.godot/imported/wallArch.fbx-e80daa1d4ca78be8527d782e8341a0e9.scn new file mode 100644 index 0000000..edd4f57 Binary files /dev/null and b/.godot/imported/wallArch.fbx-e80daa1d4ca78be8527d782e8341a0e9.scn differ diff --git a/.godot/imported/wallArchTop-8424b862163b33fcdf8fb39170db8e40.glb b/.godot/imported/wallArchTop-8424b862163b33fcdf8fb39170db8e40.glb new file mode 100644 index 0000000..b74dd6e Binary files /dev/null and b/.godot/imported/wallArchTop-8424b862163b33fcdf8fb39170db8e40.glb differ diff --git a/.godot/imported/wallArchTop.fbx-8424b862163b33fcdf8fb39170db8e40.md5 b/.godot/imported/wallArchTop.fbx-8424b862163b33fcdf8fb39170db8e40.md5 new file mode 100644 index 0000000..25f7624 --- /dev/null +++ b/.godot/imported/wallArchTop.fbx-8424b862163b33fcdf8fb39170db8e40.md5 @@ -0,0 +1,2 @@ +source_md5="a7f392668c4117a7c93e328c2b62cb06" +dest_md5="f230918835c51492f7c2c576dcd4ee93" diff --git a/.godot/imported/wallArchTop.fbx-8424b862163b33fcdf8fb39170db8e40.scn b/.godot/imported/wallArchTop.fbx-8424b862163b33fcdf8fb39170db8e40.scn new file mode 100644 index 0000000..cd7d4b1 Binary files /dev/null and b/.godot/imported/wallArchTop.fbx-8424b862163b33fcdf8fb39170db8e40.scn differ diff --git a/.godot/imported/wallArchTopDetail-76020f22ede78b100e05285017f5a988.glb b/.godot/imported/wallArchTopDetail-76020f22ede78b100e05285017f5a988.glb new file mode 100644 index 0000000..24ad70a Binary files /dev/null and b/.godot/imported/wallArchTopDetail-76020f22ede78b100e05285017f5a988.glb differ diff --git a/.godot/imported/wallArchTopDetail.fbx-76020f22ede78b100e05285017f5a988.md5 b/.godot/imported/wallArchTopDetail.fbx-76020f22ede78b100e05285017f5a988.md5 new file mode 100644 index 0000000..3420841 --- /dev/null +++ b/.godot/imported/wallArchTopDetail.fbx-76020f22ede78b100e05285017f5a988.md5 @@ -0,0 +1,2 @@ +source_md5="a5a2701f1469d0d93986e274ac6343ab" +dest_md5="95fdc63ef25e459bef6b01c786162c56" diff --git a/.godot/imported/wallArchTopDetail.fbx-76020f22ede78b100e05285017f5a988.scn b/.godot/imported/wallArchTopDetail.fbx-76020f22ede78b100e05285017f5a988.scn new file mode 100644 index 0000000..e760778 Binary files /dev/null and b/.godot/imported/wallArchTopDetail.fbx-76020f22ede78b100e05285017f5a988.scn differ diff --git a/.godot/imported/wallBlock-0136deae5905f7a0dc91377546ca1ef9.glb b/.godot/imported/wallBlock-0136deae5905f7a0dc91377546ca1ef9.glb new file mode 100644 index 0000000..92e0395 Binary files /dev/null and b/.godot/imported/wallBlock-0136deae5905f7a0dc91377546ca1ef9.glb differ diff --git a/.godot/imported/wallBlock.fbx-0136deae5905f7a0dc91377546ca1ef9.md5 b/.godot/imported/wallBlock.fbx-0136deae5905f7a0dc91377546ca1ef9.md5 new file mode 100644 index 0000000..f91f0e0 --- /dev/null +++ b/.godot/imported/wallBlock.fbx-0136deae5905f7a0dc91377546ca1ef9.md5 @@ -0,0 +1,2 @@ +source_md5="a18971c4d968173baae8fd5d5e15a543" +dest_md5="0784c97d01ae309c110e64e1e1f2c5fb" diff --git a/.godot/imported/wallBlock.fbx-0136deae5905f7a0dc91377546ca1ef9.scn b/.godot/imported/wallBlock.fbx-0136deae5905f7a0dc91377546ca1ef9.scn new file mode 100644 index 0000000..ff90ea3 Binary files /dev/null and b/.godot/imported/wallBlock.fbx-0136deae5905f7a0dc91377546ca1ef9.scn differ diff --git a/.godot/imported/wallBlockHalf-389e8ee690fa236cd40bc9c906db73e5.glb b/.godot/imported/wallBlockHalf-389e8ee690fa236cd40bc9c906db73e5.glb new file mode 100644 index 0000000..43a3ae4 Binary files /dev/null and b/.godot/imported/wallBlockHalf-389e8ee690fa236cd40bc9c906db73e5.glb differ diff --git a/.godot/imported/wallBlockHalf.fbx-389e8ee690fa236cd40bc9c906db73e5.md5 b/.godot/imported/wallBlockHalf.fbx-389e8ee690fa236cd40bc9c906db73e5.md5 new file mode 100644 index 0000000..ce80564 --- /dev/null +++ b/.godot/imported/wallBlockHalf.fbx-389e8ee690fa236cd40bc9c906db73e5.md5 @@ -0,0 +1,2 @@ +source_md5="715af7df9055de75ded4463935a06626" +dest_md5="6fc3d480e4ba631b83368264174c2160" diff --git a/.godot/imported/wallBlockHalf.fbx-389e8ee690fa236cd40bc9c906db73e5.scn b/.godot/imported/wallBlockHalf.fbx-389e8ee690fa236cd40bc9c906db73e5.scn new file mode 100644 index 0000000..3237ff1 Binary files /dev/null and b/.godot/imported/wallBlockHalf.fbx-389e8ee690fa236cd40bc9c906db73e5.scn differ diff --git a/.godot/imported/wallBroken-967fa6fff6b556ec28b026b380a6fb71.glb b/.godot/imported/wallBroken-967fa6fff6b556ec28b026b380a6fb71.glb new file mode 100644 index 0000000..a04e43e Binary files /dev/null and b/.godot/imported/wallBroken-967fa6fff6b556ec28b026b380a6fb71.glb differ diff --git a/.godot/imported/wallBroken.fbx-967fa6fff6b556ec28b026b380a6fb71.md5 b/.godot/imported/wallBroken.fbx-967fa6fff6b556ec28b026b380a6fb71.md5 new file mode 100644 index 0000000..718394e --- /dev/null +++ b/.godot/imported/wallBroken.fbx-967fa6fff6b556ec28b026b380a6fb71.md5 @@ -0,0 +1,2 @@ +source_md5="605e35725b845da8eb7cfea5b515fa49" +dest_md5="1cb2d3ae23090c389e98d926ba907f11" diff --git a/.godot/imported/wallBroken.fbx-967fa6fff6b556ec28b026b380a6fb71.scn b/.godot/imported/wallBroken.fbx-967fa6fff6b556ec28b026b380a6fb71.scn new file mode 100644 index 0000000..3d5492e Binary files /dev/null and b/.godot/imported/wallBroken.fbx-967fa6fff6b556ec28b026b380a6fb71.scn differ diff --git a/.godot/imported/wallCorner-fd2eefceaad284538a9a98b17e6bac45.glb b/.godot/imported/wallCorner-fd2eefceaad284538a9a98b17e6bac45.glb new file mode 100644 index 0000000..ede385d Binary files /dev/null and b/.godot/imported/wallCorner-fd2eefceaad284538a9a98b17e6bac45.glb differ diff --git a/.godot/imported/wallCorner.fbx-fd2eefceaad284538a9a98b17e6bac45.md5 b/.godot/imported/wallCorner.fbx-fd2eefceaad284538a9a98b17e6bac45.md5 new file mode 100644 index 0000000..89c3623 --- /dev/null +++ b/.godot/imported/wallCorner.fbx-fd2eefceaad284538a9a98b17e6bac45.md5 @@ -0,0 +1,2 @@ +source_md5="04785bebcbbe5e0ccef534a4f9208a7e" +dest_md5="f265991fa52a5c93f8daaf5b238be94a" diff --git a/.godot/imported/wallCorner.fbx-fd2eefceaad284538a9a98b17e6bac45.scn b/.godot/imported/wallCorner.fbx-fd2eefceaad284538a9a98b17e6bac45.scn new file mode 100644 index 0000000..24e6a70 Binary files /dev/null and b/.godot/imported/wallCorner.fbx-fd2eefceaad284538a9a98b17e6bac45.scn differ diff --git a/.godot/imported/wallCornerDetail-49b33efb22964f83ef44f5ecb4af0fe3.glb b/.godot/imported/wallCornerDetail-49b33efb22964f83ef44f5ecb4af0fe3.glb new file mode 100644 index 0000000..ac27fb4 Binary files /dev/null and b/.godot/imported/wallCornerDetail-49b33efb22964f83ef44f5ecb4af0fe3.glb differ diff --git a/.godot/imported/wallCornerDetail.fbx-49b33efb22964f83ef44f5ecb4af0fe3.md5 b/.godot/imported/wallCornerDetail.fbx-49b33efb22964f83ef44f5ecb4af0fe3.md5 new file mode 100644 index 0000000..e72dd48 --- /dev/null +++ b/.godot/imported/wallCornerDetail.fbx-49b33efb22964f83ef44f5ecb4af0fe3.md5 @@ -0,0 +1,2 @@ +source_md5="a80f7223eb5445825cd1947708e5e6b3" +dest_md5="504a90175ffd4cbe17f65742f60d0e30" diff --git a/.godot/imported/wallCornerDetail.fbx-49b33efb22964f83ef44f5ecb4af0fe3.scn b/.godot/imported/wallCornerDetail.fbx-49b33efb22964f83ef44f5ecb4af0fe3.scn new file mode 100644 index 0000000..5a05536 Binary files /dev/null and b/.godot/imported/wallCornerDetail.fbx-49b33efb22964f83ef44f5ecb4af0fe3.scn differ diff --git a/.godot/imported/wallCornerDiagonal-10a9ae1ef2463fc16752360541d940c4.glb b/.godot/imported/wallCornerDiagonal-10a9ae1ef2463fc16752360541d940c4.glb new file mode 100644 index 0000000..2344c43 Binary files /dev/null and b/.godot/imported/wallCornerDiagonal-10a9ae1ef2463fc16752360541d940c4.glb differ diff --git a/.godot/imported/wallCornerDiagonal.fbx-10a9ae1ef2463fc16752360541d940c4.md5 b/.godot/imported/wallCornerDiagonal.fbx-10a9ae1ef2463fc16752360541d940c4.md5 new file mode 100644 index 0000000..675f80f --- /dev/null +++ b/.godot/imported/wallCornerDiagonal.fbx-10a9ae1ef2463fc16752360541d940c4.md5 @@ -0,0 +1,2 @@ +source_md5="a0b656008e0cacd75959841b457c36d4" +dest_md5="a46c3626c6c466f028323067ec530a05" diff --git a/.godot/imported/wallCornerDiagonal.fbx-10a9ae1ef2463fc16752360541d940c4.scn b/.godot/imported/wallCornerDiagonal.fbx-10a9ae1ef2463fc16752360541d940c4.scn new file mode 100644 index 0000000..ae19d2d Binary files /dev/null and b/.godot/imported/wallCornerDiagonal.fbx-10a9ae1ef2463fc16752360541d940c4.scn differ diff --git a/.godot/imported/wallCornerDiagonalHalf-eeb8680da73d17f6b38e71695d06a25c.glb b/.godot/imported/wallCornerDiagonalHalf-eeb8680da73d17f6b38e71695d06a25c.glb new file mode 100644 index 0000000..d73b826 Binary files /dev/null and b/.godot/imported/wallCornerDiagonalHalf-eeb8680da73d17f6b38e71695d06a25c.glb differ diff --git a/.godot/imported/wallCornerDiagonalHalf.fbx-eeb8680da73d17f6b38e71695d06a25c.md5 b/.godot/imported/wallCornerDiagonalHalf.fbx-eeb8680da73d17f6b38e71695d06a25c.md5 new file mode 100644 index 0000000..d038090 --- /dev/null +++ b/.godot/imported/wallCornerDiagonalHalf.fbx-eeb8680da73d17f6b38e71695d06a25c.md5 @@ -0,0 +1,2 @@ +source_md5="a00926a618334a13516507f40e6e1cce" +dest_md5="0823c28fb82edb8b14918f88ac5f70bf" diff --git a/.godot/imported/wallCornerDiagonalHalf.fbx-eeb8680da73d17f6b38e71695d06a25c.scn b/.godot/imported/wallCornerDiagonalHalf.fbx-eeb8680da73d17f6b38e71695d06a25c.scn new file mode 100644 index 0000000..69b2599 Binary files /dev/null and b/.godot/imported/wallCornerDiagonalHalf.fbx-eeb8680da73d17f6b38e71695d06a25c.scn differ diff --git a/.godot/imported/wallCornerEdge-22ff12953aa9d1ab52a7b50d7703e04a.glb b/.godot/imported/wallCornerEdge-22ff12953aa9d1ab52a7b50d7703e04a.glb new file mode 100644 index 0000000..e057648 Binary files /dev/null and b/.godot/imported/wallCornerEdge-22ff12953aa9d1ab52a7b50d7703e04a.glb differ diff --git a/.godot/imported/wallCornerEdge.fbx-22ff12953aa9d1ab52a7b50d7703e04a.md5 b/.godot/imported/wallCornerEdge.fbx-22ff12953aa9d1ab52a7b50d7703e04a.md5 new file mode 100644 index 0000000..ad01725 --- /dev/null +++ b/.godot/imported/wallCornerEdge.fbx-22ff12953aa9d1ab52a7b50d7703e04a.md5 @@ -0,0 +1,2 @@ +source_md5="c2d83b2132552cef625f8eaeb3386712" +dest_md5="0f9ebb9d16f1bfa8728bf96d05974d51" diff --git a/.godot/imported/wallCornerEdge.fbx-22ff12953aa9d1ab52a7b50d7703e04a.scn b/.godot/imported/wallCornerEdge.fbx-22ff12953aa9d1ab52a7b50d7703e04a.scn new file mode 100644 index 0000000..4c328e6 Binary files /dev/null and b/.godot/imported/wallCornerEdge.fbx-22ff12953aa9d1ab52a7b50d7703e04a.scn differ diff --git a/.godot/imported/wallCurved-90322a4e358752d56d7023eb88cbf335.glb b/.godot/imported/wallCurved-90322a4e358752d56d7023eb88cbf335.glb new file mode 100644 index 0000000..faa524b Binary files /dev/null and b/.godot/imported/wallCurved-90322a4e358752d56d7023eb88cbf335.glb differ diff --git a/.godot/imported/wallCurved.fbx-90322a4e358752d56d7023eb88cbf335.md5 b/.godot/imported/wallCurved.fbx-90322a4e358752d56d7023eb88cbf335.md5 new file mode 100644 index 0000000..4328eb5 --- /dev/null +++ b/.godot/imported/wallCurved.fbx-90322a4e358752d56d7023eb88cbf335.md5 @@ -0,0 +1,2 @@ +source_md5="1ee42fce8d81cd83c8caca7ae493abd7" +dest_md5="76932fcc41b7b834574fcc6f0b7bc302" diff --git a/.godot/imported/wallCurved.fbx-90322a4e358752d56d7023eb88cbf335.scn b/.godot/imported/wallCurved.fbx-90322a4e358752d56d7023eb88cbf335.scn new file mode 100644 index 0000000..fd81bc4 Binary files /dev/null and b/.godot/imported/wallCurved.fbx-90322a4e358752d56d7023eb88cbf335.scn differ diff --git a/.godot/imported/wallDetailCross-45800a356c0af159e9f2aba268d6abb9.glb b/.godot/imported/wallDetailCross-45800a356c0af159e9f2aba268d6abb9.glb new file mode 100644 index 0000000..699a344 Binary files /dev/null and b/.godot/imported/wallDetailCross-45800a356c0af159e9f2aba268d6abb9.glb differ diff --git a/.godot/imported/wallDetailCross.fbx-45800a356c0af159e9f2aba268d6abb9.md5 b/.godot/imported/wallDetailCross.fbx-45800a356c0af159e9f2aba268d6abb9.md5 new file mode 100644 index 0000000..c61e5c4 --- /dev/null +++ b/.godot/imported/wallDetailCross.fbx-45800a356c0af159e9f2aba268d6abb9.md5 @@ -0,0 +1,2 @@ +source_md5="8e040274623cef4ec88197b3293b80d4" +dest_md5="890fc4898d4fe7cc7d0c18aeebd170f9" diff --git a/.godot/imported/wallDetailCross.fbx-45800a356c0af159e9f2aba268d6abb9.scn b/.godot/imported/wallDetailCross.fbx-45800a356c0af159e9f2aba268d6abb9.scn new file mode 100644 index 0000000..6a4ba10 Binary files /dev/null and b/.godot/imported/wallDetailCross.fbx-45800a356c0af159e9f2aba268d6abb9.scn differ diff --git a/.godot/imported/wallDetailDiagonal-a7ca7bc6491f6f5818f566c5f46ff7f6.glb b/.godot/imported/wallDetailDiagonal-a7ca7bc6491f6f5818f566c5f46ff7f6.glb new file mode 100644 index 0000000..76dbd69 Binary files /dev/null and b/.godot/imported/wallDetailDiagonal-a7ca7bc6491f6f5818f566c5f46ff7f6.glb differ diff --git a/.godot/imported/wallDetailDiagonal.fbx-a7ca7bc6491f6f5818f566c5f46ff7f6.md5 b/.godot/imported/wallDetailDiagonal.fbx-a7ca7bc6491f6f5818f566c5f46ff7f6.md5 new file mode 100644 index 0000000..a2ec6d5 --- /dev/null +++ b/.godot/imported/wallDetailDiagonal.fbx-a7ca7bc6491f6f5818f566c5f46ff7f6.md5 @@ -0,0 +1,2 @@ +source_md5="30206a88403c139ba29cf659b342c29e" +dest_md5="d0aaf16a5304e59c64ddc42949d0f3c8" diff --git a/.godot/imported/wallDetailDiagonal.fbx-a7ca7bc6491f6f5818f566c5f46ff7f6.scn b/.godot/imported/wallDetailDiagonal.fbx-a7ca7bc6491f6f5818f566c5f46ff7f6.scn new file mode 100644 index 0000000..4161dcd Binary files /dev/null and b/.godot/imported/wallDetailDiagonal.fbx-a7ca7bc6491f6f5818f566c5f46ff7f6.scn differ diff --git a/.godot/imported/wallDetailHorizontal-33ecca2616e864c6bcb631636165bf31.glb b/.godot/imported/wallDetailHorizontal-33ecca2616e864c6bcb631636165bf31.glb new file mode 100644 index 0000000..2215397 Binary files /dev/null and b/.godot/imported/wallDetailHorizontal-33ecca2616e864c6bcb631636165bf31.glb differ diff --git a/.godot/imported/wallDetailHorizontal.fbx-33ecca2616e864c6bcb631636165bf31.md5 b/.godot/imported/wallDetailHorizontal.fbx-33ecca2616e864c6bcb631636165bf31.md5 new file mode 100644 index 0000000..8d12e07 --- /dev/null +++ b/.godot/imported/wallDetailHorizontal.fbx-33ecca2616e864c6bcb631636165bf31.md5 @@ -0,0 +1,2 @@ +source_md5="51dd5f74d0218bd69c6ac349850a3ef0" +dest_md5="f7b2b45acfe3e4f7fd032434195fa939" diff --git a/.godot/imported/wallDetailHorizontal.fbx-33ecca2616e864c6bcb631636165bf31.scn b/.godot/imported/wallDetailHorizontal.fbx-33ecca2616e864c6bcb631636165bf31.scn new file mode 100644 index 0000000..5dedca3 Binary files /dev/null and b/.godot/imported/wallDetailHorizontal.fbx-33ecca2616e864c6bcb631636165bf31.scn differ diff --git a/.godot/imported/wallDiagonal-292e4ed936c4359d5cec8fb4d914f5ff.glb b/.godot/imported/wallDiagonal-292e4ed936c4359d5cec8fb4d914f5ff.glb new file mode 100644 index 0000000..32a35fb Binary files /dev/null and b/.godot/imported/wallDiagonal-292e4ed936c4359d5cec8fb4d914f5ff.glb differ diff --git a/.godot/imported/wallDiagonal.fbx-292e4ed936c4359d5cec8fb4d914f5ff.md5 b/.godot/imported/wallDiagonal.fbx-292e4ed936c4359d5cec8fb4d914f5ff.md5 new file mode 100644 index 0000000..a2339d4 --- /dev/null +++ b/.godot/imported/wallDiagonal.fbx-292e4ed936c4359d5cec8fb4d914f5ff.md5 @@ -0,0 +1,2 @@ +source_md5="76cb848d22d5763e5610dd6749200ee3" +dest_md5="9dcec7c291130bb267f04100af670d53" diff --git a/.godot/imported/wallDiagonal.fbx-292e4ed936c4359d5cec8fb4d914f5ff.scn b/.godot/imported/wallDiagonal.fbx-292e4ed936c4359d5cec8fb4d914f5ff.scn new file mode 100644 index 0000000..239a8a3 Binary files /dev/null and b/.godot/imported/wallDiagonal.fbx-292e4ed936c4359d5cec8fb4d914f5ff.scn differ diff --git a/.godot/imported/wallDoor-10f6befa5b30d227cab7a1824d9a5896.glb b/.godot/imported/wallDoor-10f6befa5b30d227cab7a1824d9a5896.glb new file mode 100644 index 0000000..fa8b896 Binary files /dev/null and b/.godot/imported/wallDoor-10f6befa5b30d227cab7a1824d9a5896.glb differ diff --git a/.godot/imported/wallDoor.fbx-10f6befa5b30d227cab7a1824d9a5896.md5 b/.godot/imported/wallDoor.fbx-10f6befa5b30d227cab7a1824d9a5896.md5 new file mode 100644 index 0000000..eadc686 --- /dev/null +++ b/.godot/imported/wallDoor.fbx-10f6befa5b30d227cab7a1824d9a5896.md5 @@ -0,0 +1,2 @@ +source_md5="365b1a4f10ad4936e2a615dd705fa535" +dest_md5="222242deafd7c0ffe725148297835289" diff --git a/.godot/imported/wallDoor.fbx-10f6befa5b30d227cab7a1824d9a5896.scn b/.godot/imported/wallDoor.fbx-10f6befa5b30d227cab7a1824d9a5896.scn new file mode 100644 index 0000000..d5aca44 Binary files /dev/null and b/.godot/imported/wallDoor.fbx-10f6befa5b30d227cab7a1824d9a5896.scn differ diff --git a/.godot/imported/wallDoorwayBase-ff51a4eb143fb17e99be9e0ff9d6ac0b.glb b/.godot/imported/wallDoorwayBase-ff51a4eb143fb17e99be9e0ff9d6ac0b.glb new file mode 100644 index 0000000..3768d11 Binary files /dev/null and b/.godot/imported/wallDoorwayBase-ff51a4eb143fb17e99be9e0ff9d6ac0b.glb differ diff --git a/.godot/imported/wallDoorwayBase.fbx-ff51a4eb143fb17e99be9e0ff9d6ac0b.md5 b/.godot/imported/wallDoorwayBase.fbx-ff51a4eb143fb17e99be9e0ff9d6ac0b.md5 new file mode 100644 index 0000000..64f9469 --- /dev/null +++ b/.godot/imported/wallDoorwayBase.fbx-ff51a4eb143fb17e99be9e0ff9d6ac0b.md5 @@ -0,0 +1,2 @@ +source_md5="e2b438b122991003ca994012c1ac37de" +dest_md5="dd889a81048c81cf9c47e8272b7c9684" diff --git a/.godot/imported/wallDoorwayBase.fbx-ff51a4eb143fb17e99be9e0ff9d6ac0b.scn b/.godot/imported/wallDoorwayBase.fbx-ff51a4eb143fb17e99be9e0ff9d6ac0b.scn new file mode 100644 index 0000000..5443e7a Binary files /dev/null and b/.godot/imported/wallDoorwayBase.fbx-ff51a4eb143fb17e99be9e0ff9d6ac0b.scn differ diff --git a/.godot/imported/wallDoorwayRound-bc909e8b2259000faa433900b3098140.glb b/.godot/imported/wallDoorwayRound-bc909e8b2259000faa433900b3098140.glb new file mode 100644 index 0000000..380c4cb Binary files /dev/null and b/.godot/imported/wallDoorwayRound-bc909e8b2259000faa433900b3098140.glb differ diff --git a/.godot/imported/wallDoorwayRound.fbx-bc909e8b2259000faa433900b3098140.md5 b/.godot/imported/wallDoorwayRound.fbx-bc909e8b2259000faa433900b3098140.md5 new file mode 100644 index 0000000..846e470 --- /dev/null +++ b/.godot/imported/wallDoorwayRound.fbx-bc909e8b2259000faa433900b3098140.md5 @@ -0,0 +1,2 @@ +source_md5="16ad436b3d3b79253447c6d272960127" +dest_md5="c7921ed024fa0a156a65c6557bcda8d1" diff --git a/.godot/imported/wallDoorwayRound.fbx-bc909e8b2259000faa433900b3098140.scn b/.godot/imported/wallDoorwayRound.fbx-bc909e8b2259000faa433900b3098140.scn new file mode 100644 index 0000000..06b9abd Binary files /dev/null and b/.godot/imported/wallDoorwayRound.fbx-bc909e8b2259000faa433900b3098140.scn differ diff --git a/.godot/imported/wallDoorwaySquare-332634440d4cba1bb3df501d4163fc59.glb b/.godot/imported/wallDoorwaySquare-332634440d4cba1bb3df501d4163fc59.glb new file mode 100644 index 0000000..4fbf1cb Binary files /dev/null and b/.godot/imported/wallDoorwaySquare-332634440d4cba1bb3df501d4163fc59.glb differ diff --git a/.godot/imported/wallDoorwaySquare.fbx-332634440d4cba1bb3df501d4163fc59.md5 b/.godot/imported/wallDoorwaySquare.fbx-332634440d4cba1bb3df501d4163fc59.md5 new file mode 100644 index 0000000..d3ec86f --- /dev/null +++ b/.godot/imported/wallDoorwaySquare.fbx-332634440d4cba1bb3df501d4163fc59.md5 @@ -0,0 +1,2 @@ +source_md5="13280ad89bd500203309ee5a4de52094" +dest_md5="fbc92f604ac6c59e70b88b590d3a53b3" diff --git a/.godot/imported/wallDoorwaySquare.fbx-332634440d4cba1bb3df501d4163fc59.scn b/.godot/imported/wallDoorwaySquare.fbx-332634440d4cba1bb3df501d4163fc59.scn new file mode 100644 index 0000000..8f98258 Binary files /dev/null and b/.godot/imported/wallDoorwaySquare.fbx-332634440d4cba1bb3df501d4163fc59.scn differ diff --git a/.godot/imported/wallDoorwaySquareWide-282c3941faa1d51157a1d885790b37bf.glb b/.godot/imported/wallDoorwaySquareWide-282c3941faa1d51157a1d885790b37bf.glb new file mode 100644 index 0000000..24414f8 Binary files /dev/null and b/.godot/imported/wallDoorwaySquareWide-282c3941faa1d51157a1d885790b37bf.glb differ diff --git a/.godot/imported/wallDoorwaySquareWide.fbx-282c3941faa1d51157a1d885790b37bf.md5 b/.godot/imported/wallDoorwaySquareWide.fbx-282c3941faa1d51157a1d885790b37bf.md5 new file mode 100644 index 0000000..3125b65 --- /dev/null +++ b/.godot/imported/wallDoorwaySquareWide.fbx-282c3941faa1d51157a1d885790b37bf.md5 @@ -0,0 +1,2 @@ +source_md5="499d90ac9ebd01dc69fb383f8b94605d" +dest_md5="a75d496fddfa06347f6e1976aad7e42e" diff --git a/.godot/imported/wallDoorwaySquareWide.fbx-282c3941faa1d51157a1d885790b37bf.scn b/.godot/imported/wallDoorwaySquareWide.fbx-282c3941faa1d51157a1d885790b37bf.scn new file mode 100644 index 0000000..03b4b03 Binary files /dev/null and b/.godot/imported/wallDoorwaySquareWide.fbx-282c3941faa1d51157a1d885790b37bf.scn differ diff --git a/.godot/imported/wallDoorwaySquareWideCurved-62482db3fa5780768e34269bba5051df.glb b/.godot/imported/wallDoorwaySquareWideCurved-62482db3fa5780768e34269bba5051df.glb new file mode 100644 index 0000000..7e578a3 Binary files /dev/null and b/.godot/imported/wallDoorwaySquareWideCurved-62482db3fa5780768e34269bba5051df.glb differ diff --git a/.godot/imported/wallDoorwaySquareWideCurved.fbx-62482db3fa5780768e34269bba5051df.md5 b/.godot/imported/wallDoorwaySquareWideCurved.fbx-62482db3fa5780768e34269bba5051df.md5 new file mode 100644 index 0000000..b86d902 --- /dev/null +++ b/.godot/imported/wallDoorwaySquareWideCurved.fbx-62482db3fa5780768e34269bba5051df.md5 @@ -0,0 +1,2 @@ +source_md5="c50e8da70a6d840f21d70d2a2b3459a1" +dest_md5="cf17927f595a1d6698337074e2f84bbf" diff --git a/.godot/imported/wallDoorwaySquareWideCurved.fbx-62482db3fa5780768e34269bba5051df.scn b/.godot/imported/wallDoorwaySquareWideCurved.fbx-62482db3fa5780768e34269bba5051df.scn new file mode 100644 index 0000000..c4f7d87 Binary files /dev/null and b/.godot/imported/wallDoorwaySquareWideCurved.fbx-62482db3fa5780768e34269bba5051df.scn differ diff --git a/.godot/imported/wallHalf-d52f17322228d88a424e6054f4631e7e.glb b/.godot/imported/wallHalf-d52f17322228d88a424e6054f4631e7e.glb new file mode 100644 index 0000000..a7c2c2f Binary files /dev/null and b/.godot/imported/wallHalf-d52f17322228d88a424e6054f4631e7e.glb differ diff --git a/.godot/imported/wallHalf.fbx-d52f17322228d88a424e6054f4631e7e.md5 b/.godot/imported/wallHalf.fbx-d52f17322228d88a424e6054f4631e7e.md5 new file mode 100644 index 0000000..31637fe --- /dev/null +++ b/.godot/imported/wallHalf.fbx-d52f17322228d88a424e6054f4631e7e.md5 @@ -0,0 +1,2 @@ +source_md5="31d67e311022b3b91def3bfda221e83d" +dest_md5="7d82e055b6726157e22192eaba122f51" diff --git a/.godot/imported/wallHalf.fbx-d52f17322228d88a424e6054f4631e7e.scn b/.godot/imported/wallHalf.fbx-d52f17322228d88a424e6054f4631e7e.scn new file mode 100644 index 0000000..4cd2340 Binary files /dev/null and b/.godot/imported/wallHalf.fbx-d52f17322228d88a424e6054f4631e7e.scn differ diff --git a/.godot/imported/wallRounded-52bdedb9c9a90ab4322fdfb1e572ab64.glb b/.godot/imported/wallRounded-52bdedb9c9a90ab4322fdfb1e572ab64.glb new file mode 100644 index 0000000..85d58e5 Binary files /dev/null and b/.godot/imported/wallRounded-52bdedb9c9a90ab4322fdfb1e572ab64.glb differ diff --git a/.godot/imported/wallRounded.fbx-52bdedb9c9a90ab4322fdfb1e572ab64.md5 b/.godot/imported/wallRounded.fbx-52bdedb9c9a90ab4322fdfb1e572ab64.md5 new file mode 100644 index 0000000..da443cd --- /dev/null +++ b/.godot/imported/wallRounded.fbx-52bdedb9c9a90ab4322fdfb1e572ab64.md5 @@ -0,0 +1,2 @@ +source_md5="c916990b6614d179e4bd77ae3e5c6029" +dest_md5="921446d2b60420f555d242fe7cabc0a9" diff --git a/.godot/imported/wallRounded.fbx-52bdedb9c9a90ab4322fdfb1e572ab64.scn b/.godot/imported/wallRounded.fbx-52bdedb9c9a90ab4322fdfb1e572ab64.scn new file mode 100644 index 0000000..c723a64 Binary files /dev/null and b/.godot/imported/wallRounded.fbx-52bdedb9c9a90ab4322fdfb1e572ab64.scn differ diff --git a/.godot/imported/wallSide-cf4114fe0ace8bcc0e50bd1f47a14bae.glb b/.godot/imported/wallSide-cf4114fe0ace8bcc0e50bd1f47a14bae.glb new file mode 100644 index 0000000..187701e Binary files /dev/null and b/.godot/imported/wallSide-cf4114fe0ace8bcc0e50bd1f47a14bae.glb differ diff --git a/.godot/imported/wallSide.fbx-cf4114fe0ace8bcc0e50bd1f47a14bae.md5 b/.godot/imported/wallSide.fbx-cf4114fe0ace8bcc0e50bd1f47a14bae.md5 new file mode 100644 index 0000000..08589ba --- /dev/null +++ b/.godot/imported/wallSide.fbx-cf4114fe0ace8bcc0e50bd1f47a14bae.md5 @@ -0,0 +1,2 @@ +source_md5="28e829d6b87c559f63886ae33995cc07" +dest_md5="b49a8a8e41bd2fdd30be00f36c6f35d1" diff --git a/.godot/imported/wallSide.fbx-cf4114fe0ace8bcc0e50bd1f47a14bae.scn b/.godot/imported/wallSide.fbx-cf4114fe0ace8bcc0e50bd1f47a14bae.scn new file mode 100644 index 0000000..3798dd0 Binary files /dev/null and b/.godot/imported/wallSide.fbx-cf4114fe0ace8bcc0e50bd1f47a14bae.scn differ diff --git a/.godot/imported/wallSlope-6b6410d277b750314eddf19f58f47a77.glb b/.godot/imported/wallSlope-6b6410d277b750314eddf19f58f47a77.glb new file mode 100644 index 0000000..ee6a264 Binary files /dev/null and b/.godot/imported/wallSlope-6b6410d277b750314eddf19f58f47a77.glb differ diff --git a/.godot/imported/wallSlope.fbx-6b6410d277b750314eddf19f58f47a77.md5 b/.godot/imported/wallSlope.fbx-6b6410d277b750314eddf19f58f47a77.md5 new file mode 100644 index 0000000..2986f38 --- /dev/null +++ b/.godot/imported/wallSlope.fbx-6b6410d277b750314eddf19f58f47a77.md5 @@ -0,0 +1,2 @@ +source_md5="1a6e09735933d37eea9601825d579b58" +dest_md5="687e32e750659b64330a61f0ab0b4d1a" diff --git a/.godot/imported/wallSlope.fbx-6b6410d277b750314eddf19f58f47a77.scn b/.godot/imported/wallSlope.fbx-6b6410d277b750314eddf19f58f47a77.scn new file mode 100644 index 0000000..c43544d Binary files /dev/null and b/.godot/imported/wallSlope.fbx-6b6410d277b750314eddf19f58f47a77.scn differ diff --git a/.godot/imported/wallWindowGlass-3db10b461840493029352395bd8d1bc5.glb b/.godot/imported/wallWindowGlass-3db10b461840493029352395bd8d1bc5.glb new file mode 100644 index 0000000..f8cb893 Binary files /dev/null and b/.godot/imported/wallWindowGlass-3db10b461840493029352395bd8d1bc5.glb differ diff --git a/.godot/imported/wallWindowGlass.fbx-3db10b461840493029352395bd8d1bc5.md5 b/.godot/imported/wallWindowGlass.fbx-3db10b461840493029352395bd8d1bc5.md5 new file mode 100644 index 0000000..d9bdfba --- /dev/null +++ b/.godot/imported/wallWindowGlass.fbx-3db10b461840493029352395bd8d1bc5.md5 @@ -0,0 +1,2 @@ +source_md5="920718516a1644af260a8afbb38882d1" +dest_md5="c233a1862f671ecc4abd4845e6245ea3" diff --git a/.godot/imported/wallWindowGlass.fbx-3db10b461840493029352395bd8d1bc5.scn b/.godot/imported/wallWindowGlass.fbx-3db10b461840493029352395bd8d1bc5.scn new file mode 100644 index 0000000..32bd1bd Binary files /dev/null and b/.godot/imported/wallWindowGlass.fbx-3db10b461840493029352395bd8d1bc5.scn differ diff --git a/.godot/imported/wallWindowRound-ffad91add225812e72e410cff18788c7.glb b/.godot/imported/wallWindowRound-ffad91add225812e72e410cff18788c7.glb new file mode 100644 index 0000000..58c0fca Binary files /dev/null and b/.godot/imported/wallWindowRound-ffad91add225812e72e410cff18788c7.glb differ diff --git a/.godot/imported/wallWindowRound.fbx-ffad91add225812e72e410cff18788c7.md5 b/.godot/imported/wallWindowRound.fbx-ffad91add225812e72e410cff18788c7.md5 new file mode 100644 index 0000000..5e9cae4 --- /dev/null +++ b/.godot/imported/wallWindowRound.fbx-ffad91add225812e72e410cff18788c7.md5 @@ -0,0 +1,2 @@ +source_md5="2e9c89d7eae949919aea0683721a726d" +dest_md5="b61ba9d7c97f2355da7d6db897a2dcc8" diff --git a/.godot/imported/wallWindowRound.fbx-ffad91add225812e72e410cff18788c7.scn b/.godot/imported/wallWindowRound.fbx-ffad91add225812e72e410cff18788c7.scn new file mode 100644 index 0000000..87a3475 Binary files /dev/null and b/.godot/imported/wallWindowRound.fbx-ffad91add225812e72e410cff18788c7.scn differ diff --git a/.godot/imported/wallWindowShutters-62fb565378fcd7982961a106f3c7745b.glb b/.godot/imported/wallWindowShutters-62fb565378fcd7982961a106f3c7745b.glb new file mode 100644 index 0000000..4f7f881 Binary files /dev/null and b/.godot/imported/wallWindowShutters-62fb565378fcd7982961a106f3c7745b.glb differ diff --git a/.godot/imported/wallWindowShutters.fbx-62fb565378fcd7982961a106f3c7745b.md5 b/.godot/imported/wallWindowShutters.fbx-62fb565378fcd7982961a106f3c7745b.md5 new file mode 100644 index 0000000..5d7fd6b --- /dev/null +++ b/.godot/imported/wallWindowShutters.fbx-62fb565378fcd7982961a106f3c7745b.md5 @@ -0,0 +1,2 @@ +source_md5="e5bcd7a05eda4abe26c775ee753af3c6" +dest_md5="abd4f0cf612dd58f490f6a55b7f81d06" diff --git a/.godot/imported/wallWindowShutters.fbx-62fb565378fcd7982961a106f3c7745b.scn b/.godot/imported/wallWindowShutters.fbx-62fb565378fcd7982961a106f3c7745b.scn new file mode 100644 index 0000000..e230c1e Binary files /dev/null and b/.godot/imported/wallWindowShutters.fbx-62fb565378fcd7982961a106f3c7745b.scn differ diff --git a/.godot/imported/wallWindowSmall-d537c4efd8eaf746c07b589f11a58088.glb b/.godot/imported/wallWindowSmall-d537c4efd8eaf746c07b589f11a58088.glb new file mode 100644 index 0000000..2c2e147 Binary files /dev/null and b/.godot/imported/wallWindowSmall-d537c4efd8eaf746c07b589f11a58088.glb differ diff --git a/.godot/imported/wallWindowSmall.fbx-d537c4efd8eaf746c07b589f11a58088.md5 b/.godot/imported/wallWindowSmall.fbx-d537c4efd8eaf746c07b589f11a58088.md5 new file mode 100644 index 0000000..9be3e1c --- /dev/null +++ b/.godot/imported/wallWindowSmall.fbx-d537c4efd8eaf746c07b589f11a58088.md5 @@ -0,0 +1,2 @@ +source_md5="c67905d92d48e9135b4c098601804205" +dest_md5="2522eafb02575186a82890264bf23563" diff --git a/.godot/imported/wallWindowSmall.fbx-d537c4efd8eaf746c07b589f11a58088.scn b/.godot/imported/wallWindowSmall.fbx-d537c4efd8eaf746c07b589f11a58088.scn new file mode 100644 index 0000000..565b84b Binary files /dev/null and b/.godot/imported/wallWindowSmall.fbx-d537c4efd8eaf746c07b589f11a58088.scn differ diff --git a/.godot/imported/wallWindowStone-23de847e58191fb957202c2d46d38b62.glb b/.godot/imported/wallWindowStone-23de847e58191fb957202c2d46d38b62.glb new file mode 100644 index 0000000..7702001 Binary files /dev/null and b/.godot/imported/wallWindowStone-23de847e58191fb957202c2d46d38b62.glb differ diff --git a/.godot/imported/wallWindowStone.fbx-23de847e58191fb957202c2d46d38b62.md5 b/.godot/imported/wallWindowStone.fbx-23de847e58191fb957202c2d46d38b62.md5 new file mode 100644 index 0000000..91d9403 --- /dev/null +++ b/.godot/imported/wallWindowStone.fbx-23de847e58191fb957202c2d46d38b62.md5 @@ -0,0 +1,2 @@ +source_md5="b71a39d595fce354caa439bdbd0035ef" +dest_md5="c9243e604f172e8b12347cc3a9b3b584" diff --git a/.godot/imported/wallWindowStone.fbx-23de847e58191fb957202c2d46d38b62.scn b/.godot/imported/wallWindowStone.fbx-23de847e58191fb957202c2d46d38b62.scn new file mode 100644 index 0000000..323a609 Binary files /dev/null and b/.godot/imported/wallWindowStone.fbx-23de847e58191fb957202c2d46d38b62.scn differ diff --git a/.godot/imported/wallWood-d89e625570863a3ed1efb038f139d475.glb b/.godot/imported/wallWood-d89e625570863a3ed1efb038f139d475.glb new file mode 100644 index 0000000..f5bf20b Binary files /dev/null and b/.godot/imported/wallWood-d89e625570863a3ed1efb038f139d475.glb differ diff --git a/.godot/imported/wallWood.fbx-d89e625570863a3ed1efb038f139d475.md5 b/.godot/imported/wallWood.fbx-d89e625570863a3ed1efb038f139d475.md5 new file mode 100644 index 0000000..703f836 --- /dev/null +++ b/.godot/imported/wallWood.fbx-d89e625570863a3ed1efb038f139d475.md5 @@ -0,0 +1,2 @@ +source_md5="04e825902586be69d88ce4ccf2db53ce" +dest_md5="0e35ded2d46fd05e4b24d2b156adba5c" diff --git a/.godot/imported/wallWood.fbx-d89e625570863a3ed1efb038f139d475.scn b/.godot/imported/wallWood.fbx-d89e625570863a3ed1efb038f139d475.scn new file mode 100644 index 0000000..358bee6 Binary files /dev/null and b/.godot/imported/wallWood.fbx-d89e625570863a3ed1efb038f139d475.scn differ diff --git a/.godot/imported/wallWoodArch-e4b1ea042c2525d35dfb2131f6caac9d.glb b/.godot/imported/wallWoodArch-e4b1ea042c2525d35dfb2131f6caac9d.glb new file mode 100644 index 0000000..b10911e Binary files /dev/null and b/.godot/imported/wallWoodArch-e4b1ea042c2525d35dfb2131f6caac9d.glb differ diff --git a/.godot/imported/wallWoodArch.fbx-e4b1ea042c2525d35dfb2131f6caac9d.md5 b/.godot/imported/wallWoodArch.fbx-e4b1ea042c2525d35dfb2131f6caac9d.md5 new file mode 100644 index 0000000..92b8bfc --- /dev/null +++ b/.godot/imported/wallWoodArch.fbx-e4b1ea042c2525d35dfb2131f6caac9d.md5 @@ -0,0 +1,2 @@ +source_md5="ddea70741b13fcecadc2708e04f72b06" +dest_md5="d770da58ed3ef5d4c38aca3e2f52f858" diff --git a/.godot/imported/wallWoodArch.fbx-e4b1ea042c2525d35dfb2131f6caac9d.scn b/.godot/imported/wallWoodArch.fbx-e4b1ea042c2525d35dfb2131f6caac9d.scn new file mode 100644 index 0000000..c357e9c Binary files /dev/null and b/.godot/imported/wallWoodArch.fbx-e4b1ea042c2525d35dfb2131f6caac9d.scn differ diff --git a/.godot/imported/wallWoodArchTop-a22314abfa2978c3061d6230f10b1944.glb b/.godot/imported/wallWoodArchTop-a22314abfa2978c3061d6230f10b1944.glb new file mode 100644 index 0000000..91c36ac Binary files /dev/null and b/.godot/imported/wallWoodArchTop-a22314abfa2978c3061d6230f10b1944.glb differ diff --git a/.godot/imported/wallWoodArchTop.fbx-a22314abfa2978c3061d6230f10b1944.md5 b/.godot/imported/wallWoodArchTop.fbx-a22314abfa2978c3061d6230f10b1944.md5 new file mode 100644 index 0000000..bcb9278 --- /dev/null +++ b/.godot/imported/wallWoodArchTop.fbx-a22314abfa2978c3061d6230f10b1944.md5 @@ -0,0 +1,2 @@ +source_md5="69a703d1b002fb34adc3293f12039bc7" +dest_md5="0f96509268d3803346069fbf066e47a8" diff --git a/.godot/imported/wallWoodArchTop.fbx-a22314abfa2978c3061d6230f10b1944.scn b/.godot/imported/wallWoodArchTop.fbx-a22314abfa2978c3061d6230f10b1944.scn new file mode 100644 index 0000000..69da206 Binary files /dev/null and b/.godot/imported/wallWoodArchTop.fbx-a22314abfa2978c3061d6230f10b1944.scn differ diff --git a/.godot/imported/wallWoodArchTopDetail-c7801c53f0dd6d810d39561637a407c9.glb b/.godot/imported/wallWoodArchTopDetail-c7801c53f0dd6d810d39561637a407c9.glb new file mode 100644 index 0000000..e972c42 Binary files /dev/null and b/.godot/imported/wallWoodArchTopDetail-c7801c53f0dd6d810d39561637a407c9.glb differ diff --git a/.godot/imported/wallWoodArchTopDetail.fbx-c7801c53f0dd6d810d39561637a407c9.md5 b/.godot/imported/wallWoodArchTopDetail.fbx-c7801c53f0dd6d810d39561637a407c9.md5 new file mode 100644 index 0000000..6ebb5b5 --- /dev/null +++ b/.godot/imported/wallWoodArchTopDetail.fbx-c7801c53f0dd6d810d39561637a407c9.md5 @@ -0,0 +1,2 @@ +source_md5="56a29d78c0b7c29e5e8d3847df35a31e" +dest_md5="02fd6c491eb0f679bf99287ddeef7253" diff --git a/.godot/imported/wallWoodArchTopDetail.fbx-c7801c53f0dd6d810d39561637a407c9.scn b/.godot/imported/wallWoodArchTopDetail.fbx-c7801c53f0dd6d810d39561637a407c9.scn new file mode 100644 index 0000000..640e416 Binary files /dev/null and b/.godot/imported/wallWoodArchTopDetail.fbx-c7801c53f0dd6d810d39561637a407c9.scn differ diff --git a/.godot/imported/wallWoodBlock-636bec06de74aab92cb19d83a751fd8d.glb b/.godot/imported/wallWoodBlock-636bec06de74aab92cb19d83a751fd8d.glb new file mode 100644 index 0000000..3cb9e2d Binary files /dev/null and b/.godot/imported/wallWoodBlock-636bec06de74aab92cb19d83a751fd8d.glb differ diff --git a/.godot/imported/wallWoodBlock.fbx-636bec06de74aab92cb19d83a751fd8d.md5 b/.godot/imported/wallWoodBlock.fbx-636bec06de74aab92cb19d83a751fd8d.md5 new file mode 100644 index 0000000..8156de7 --- /dev/null +++ b/.godot/imported/wallWoodBlock.fbx-636bec06de74aab92cb19d83a751fd8d.md5 @@ -0,0 +1,2 @@ +source_md5="161535af2fd575a3632fc94e30f4df2a" +dest_md5="4fbf492b7bb6c23a54629c1ae59f30b2" diff --git a/.godot/imported/wallWoodBlock.fbx-636bec06de74aab92cb19d83a751fd8d.scn b/.godot/imported/wallWoodBlock.fbx-636bec06de74aab92cb19d83a751fd8d.scn new file mode 100644 index 0000000..d224331 Binary files /dev/null and b/.godot/imported/wallWoodBlock.fbx-636bec06de74aab92cb19d83a751fd8d.scn differ diff --git a/.godot/imported/wallWoodBlockHalf-e0206a5fb76e6e0f09d3f0105ca61302.glb b/.godot/imported/wallWoodBlockHalf-e0206a5fb76e6e0f09d3f0105ca61302.glb new file mode 100644 index 0000000..ce02f2f Binary files /dev/null and b/.godot/imported/wallWoodBlockHalf-e0206a5fb76e6e0f09d3f0105ca61302.glb differ diff --git a/.godot/imported/wallWoodBlockHalf.fbx-e0206a5fb76e6e0f09d3f0105ca61302.md5 b/.godot/imported/wallWoodBlockHalf.fbx-e0206a5fb76e6e0f09d3f0105ca61302.md5 new file mode 100644 index 0000000..12764f5 --- /dev/null +++ b/.godot/imported/wallWoodBlockHalf.fbx-e0206a5fb76e6e0f09d3f0105ca61302.md5 @@ -0,0 +1,2 @@ +source_md5="4f5acd366f3e334fce2ad93406852318" +dest_md5="2a91ce25c26dbe1999c62863b05de5f0" diff --git a/.godot/imported/wallWoodBlockHalf.fbx-e0206a5fb76e6e0f09d3f0105ca61302.scn b/.godot/imported/wallWoodBlockHalf.fbx-e0206a5fb76e6e0f09d3f0105ca61302.scn new file mode 100644 index 0000000..8e821a5 Binary files /dev/null and b/.godot/imported/wallWoodBlockHalf.fbx-e0206a5fb76e6e0f09d3f0105ca61302.scn differ diff --git a/.godot/imported/wallWoodBroken-193b0286626ab1692943fcbc98729169.glb b/.godot/imported/wallWoodBroken-193b0286626ab1692943fcbc98729169.glb new file mode 100644 index 0000000..cad0fc4 Binary files /dev/null and b/.godot/imported/wallWoodBroken-193b0286626ab1692943fcbc98729169.glb differ diff --git a/.godot/imported/wallWoodBroken.fbx-193b0286626ab1692943fcbc98729169.md5 b/.godot/imported/wallWoodBroken.fbx-193b0286626ab1692943fcbc98729169.md5 new file mode 100644 index 0000000..df12c18 --- /dev/null +++ b/.godot/imported/wallWoodBroken.fbx-193b0286626ab1692943fcbc98729169.md5 @@ -0,0 +1,2 @@ +source_md5="bc39a83229c123a9b4e5e09cb5ca1c61" +dest_md5="3b47cd9d37e2400f3c0403db8bc429f5" diff --git a/.godot/imported/wallWoodBroken.fbx-193b0286626ab1692943fcbc98729169.scn b/.godot/imported/wallWoodBroken.fbx-193b0286626ab1692943fcbc98729169.scn new file mode 100644 index 0000000..c17db7b Binary files /dev/null and b/.godot/imported/wallWoodBroken.fbx-193b0286626ab1692943fcbc98729169.scn differ diff --git a/.godot/imported/wallWoodCorner-05fb733a9c9205dbd1c7d927c238f56d.glb b/.godot/imported/wallWoodCorner-05fb733a9c9205dbd1c7d927c238f56d.glb new file mode 100644 index 0000000..9bef393 Binary files /dev/null and b/.godot/imported/wallWoodCorner-05fb733a9c9205dbd1c7d927c238f56d.glb differ diff --git a/.godot/imported/wallWoodCorner.fbx-05fb733a9c9205dbd1c7d927c238f56d.md5 b/.godot/imported/wallWoodCorner.fbx-05fb733a9c9205dbd1c7d927c238f56d.md5 new file mode 100644 index 0000000..fe068cf --- /dev/null +++ b/.godot/imported/wallWoodCorner.fbx-05fb733a9c9205dbd1c7d927c238f56d.md5 @@ -0,0 +1,2 @@ +source_md5="06540ad2445e97fa369635dedc69474c" +dest_md5="c067f3978fc31bb5736c7d60b75d6600" diff --git a/.godot/imported/wallWoodCorner.fbx-05fb733a9c9205dbd1c7d927c238f56d.scn b/.godot/imported/wallWoodCorner.fbx-05fb733a9c9205dbd1c7d927c238f56d.scn new file mode 100644 index 0000000..1327155 Binary files /dev/null and b/.godot/imported/wallWoodCorner.fbx-05fb733a9c9205dbd1c7d927c238f56d.scn differ diff --git a/.godot/imported/wallWoodCornerDiagonal-88f59b7b7f147b6017a2fb2911aa1113.glb b/.godot/imported/wallWoodCornerDiagonal-88f59b7b7f147b6017a2fb2911aa1113.glb new file mode 100644 index 0000000..00d3792 Binary files /dev/null and b/.godot/imported/wallWoodCornerDiagonal-88f59b7b7f147b6017a2fb2911aa1113.glb differ diff --git a/.godot/imported/wallWoodCornerDiagonal.fbx-88f59b7b7f147b6017a2fb2911aa1113.md5 b/.godot/imported/wallWoodCornerDiagonal.fbx-88f59b7b7f147b6017a2fb2911aa1113.md5 new file mode 100644 index 0000000..c047fba --- /dev/null +++ b/.godot/imported/wallWoodCornerDiagonal.fbx-88f59b7b7f147b6017a2fb2911aa1113.md5 @@ -0,0 +1,2 @@ +source_md5="cbc1663a80bfac30d84d5d786a0daf50" +dest_md5="17707280fb3c10d3c837d4f94b1d2656" diff --git a/.godot/imported/wallWoodCornerDiagonal.fbx-88f59b7b7f147b6017a2fb2911aa1113.scn b/.godot/imported/wallWoodCornerDiagonal.fbx-88f59b7b7f147b6017a2fb2911aa1113.scn new file mode 100644 index 0000000..c64758e Binary files /dev/null and b/.godot/imported/wallWoodCornerDiagonal.fbx-88f59b7b7f147b6017a2fb2911aa1113.scn differ diff --git a/.godot/imported/wallWoodCornerDiagonalHalf-f4469214f7e7ca9bf014648550065192.glb b/.godot/imported/wallWoodCornerDiagonalHalf-f4469214f7e7ca9bf014648550065192.glb new file mode 100644 index 0000000..b3494f5 Binary files /dev/null and b/.godot/imported/wallWoodCornerDiagonalHalf-f4469214f7e7ca9bf014648550065192.glb differ diff --git a/.godot/imported/wallWoodCornerDiagonalHalf.fbx-f4469214f7e7ca9bf014648550065192.md5 b/.godot/imported/wallWoodCornerDiagonalHalf.fbx-f4469214f7e7ca9bf014648550065192.md5 new file mode 100644 index 0000000..87156ca --- /dev/null +++ b/.godot/imported/wallWoodCornerDiagonalHalf.fbx-f4469214f7e7ca9bf014648550065192.md5 @@ -0,0 +1,2 @@ +source_md5="ba75b15e2563bc14abfc1448cb520c63" +dest_md5="3416fee35431f5b08deba8d351b67415" diff --git a/.godot/imported/wallWoodCornerDiagonalHalf.fbx-f4469214f7e7ca9bf014648550065192.scn b/.godot/imported/wallWoodCornerDiagonalHalf.fbx-f4469214f7e7ca9bf014648550065192.scn new file mode 100644 index 0000000..d91cd33 Binary files /dev/null and b/.godot/imported/wallWoodCornerDiagonalHalf.fbx-f4469214f7e7ca9bf014648550065192.scn differ diff --git a/.godot/imported/wallWoodCornerEdge-d9050a91bd56e7f90eb54bff874b7155.glb b/.godot/imported/wallWoodCornerEdge-d9050a91bd56e7f90eb54bff874b7155.glb new file mode 100644 index 0000000..2c4682d Binary files /dev/null and b/.godot/imported/wallWoodCornerEdge-d9050a91bd56e7f90eb54bff874b7155.glb differ diff --git a/.godot/imported/wallWoodCornerEdge.fbx-d9050a91bd56e7f90eb54bff874b7155.md5 b/.godot/imported/wallWoodCornerEdge.fbx-d9050a91bd56e7f90eb54bff874b7155.md5 new file mode 100644 index 0000000..e00c5be --- /dev/null +++ b/.godot/imported/wallWoodCornerEdge.fbx-d9050a91bd56e7f90eb54bff874b7155.md5 @@ -0,0 +1,2 @@ +source_md5="38129cc2f44fd359c0c32033064e93c5" +dest_md5="4506b5f57eaef9b78fcdea41b8f5ba43" diff --git a/.godot/imported/wallWoodCornerEdge.fbx-d9050a91bd56e7f90eb54bff874b7155.scn b/.godot/imported/wallWoodCornerEdge.fbx-d9050a91bd56e7f90eb54bff874b7155.scn new file mode 100644 index 0000000..40a18a2 Binary files /dev/null and b/.godot/imported/wallWoodCornerEdge.fbx-d9050a91bd56e7f90eb54bff874b7155.scn differ diff --git a/.godot/imported/wallWoodCurved-362619b22cc032ec50ec4ca2d4b34fa0.glb b/.godot/imported/wallWoodCurved-362619b22cc032ec50ec4ca2d4b34fa0.glb new file mode 100644 index 0000000..f77b375 Binary files /dev/null and b/.godot/imported/wallWoodCurved-362619b22cc032ec50ec4ca2d4b34fa0.glb differ diff --git a/.godot/imported/wallWoodCurved.fbx-362619b22cc032ec50ec4ca2d4b34fa0.md5 b/.godot/imported/wallWoodCurved.fbx-362619b22cc032ec50ec4ca2d4b34fa0.md5 new file mode 100644 index 0000000..ad86a10 --- /dev/null +++ b/.godot/imported/wallWoodCurved.fbx-362619b22cc032ec50ec4ca2d4b34fa0.md5 @@ -0,0 +1,2 @@ +source_md5="0f51a04ac16ff7d49d0914d797e85fb5" +dest_md5="fa0299e004da41bd2a2d7022715c39b5" diff --git a/.godot/imported/wallWoodCurved.fbx-362619b22cc032ec50ec4ca2d4b34fa0.scn b/.godot/imported/wallWoodCurved.fbx-362619b22cc032ec50ec4ca2d4b34fa0.scn new file mode 100644 index 0000000..3d20760 Binary files /dev/null and b/.godot/imported/wallWoodCurved.fbx-362619b22cc032ec50ec4ca2d4b34fa0.scn differ diff --git a/.godot/imported/wallWoodDetailCross-5c24b56ce5eadd63b205963116199e31.glb b/.godot/imported/wallWoodDetailCross-5c24b56ce5eadd63b205963116199e31.glb new file mode 100644 index 0000000..03b9dae Binary files /dev/null and b/.godot/imported/wallWoodDetailCross-5c24b56ce5eadd63b205963116199e31.glb differ diff --git a/.godot/imported/wallWoodDetailCross.fbx-5c24b56ce5eadd63b205963116199e31.md5 b/.godot/imported/wallWoodDetailCross.fbx-5c24b56ce5eadd63b205963116199e31.md5 new file mode 100644 index 0000000..427bbde --- /dev/null +++ b/.godot/imported/wallWoodDetailCross.fbx-5c24b56ce5eadd63b205963116199e31.md5 @@ -0,0 +1,2 @@ +source_md5="ed93ffbdde1ef04f0d5cfc67a46da388" +dest_md5="6cca6bc2cc2053a4ce77c063ae6e9af3" diff --git a/.godot/imported/wallWoodDetailCross.fbx-5c24b56ce5eadd63b205963116199e31.scn b/.godot/imported/wallWoodDetailCross.fbx-5c24b56ce5eadd63b205963116199e31.scn new file mode 100644 index 0000000..b5c4187 Binary files /dev/null and b/.godot/imported/wallWoodDetailCross.fbx-5c24b56ce5eadd63b205963116199e31.scn differ diff --git a/.godot/imported/wallWoodDetailDiagonal-2661519b35af1435fad4cf801bc895ee.glb b/.godot/imported/wallWoodDetailDiagonal-2661519b35af1435fad4cf801bc895ee.glb new file mode 100644 index 0000000..127ba9a Binary files /dev/null and b/.godot/imported/wallWoodDetailDiagonal-2661519b35af1435fad4cf801bc895ee.glb differ diff --git a/.godot/imported/wallWoodDetailDiagonal.fbx-2661519b35af1435fad4cf801bc895ee.md5 b/.godot/imported/wallWoodDetailDiagonal.fbx-2661519b35af1435fad4cf801bc895ee.md5 new file mode 100644 index 0000000..8b337bd --- /dev/null +++ b/.godot/imported/wallWoodDetailDiagonal.fbx-2661519b35af1435fad4cf801bc895ee.md5 @@ -0,0 +1,2 @@ +source_md5="0aa532de4d7b12329e90cc6ebfde4178" +dest_md5="9802f7e6fe54d98574fa07a6b370b8fa" diff --git a/.godot/imported/wallWoodDetailDiagonal.fbx-2661519b35af1435fad4cf801bc895ee.scn b/.godot/imported/wallWoodDetailDiagonal.fbx-2661519b35af1435fad4cf801bc895ee.scn new file mode 100644 index 0000000..e0b4e00 Binary files /dev/null and b/.godot/imported/wallWoodDetailDiagonal.fbx-2661519b35af1435fad4cf801bc895ee.scn differ diff --git a/.godot/imported/wallWoodDetailHorizontal-8010e276142c0e3cbb5aa99a8d5fb106.glb b/.godot/imported/wallWoodDetailHorizontal-8010e276142c0e3cbb5aa99a8d5fb106.glb new file mode 100644 index 0000000..24f81e1 Binary files /dev/null and b/.godot/imported/wallWoodDetailHorizontal-8010e276142c0e3cbb5aa99a8d5fb106.glb differ diff --git a/.godot/imported/wallWoodDetailHorizontal.fbx-8010e276142c0e3cbb5aa99a8d5fb106.md5 b/.godot/imported/wallWoodDetailHorizontal.fbx-8010e276142c0e3cbb5aa99a8d5fb106.md5 new file mode 100644 index 0000000..89cc70d --- /dev/null +++ b/.godot/imported/wallWoodDetailHorizontal.fbx-8010e276142c0e3cbb5aa99a8d5fb106.md5 @@ -0,0 +1,2 @@ +source_md5="a61c692814c65db0dde85cd617ead90e" +dest_md5="55edb9bbf05309c2c3c37cc2229ad410" diff --git a/.godot/imported/wallWoodDetailHorizontal.fbx-8010e276142c0e3cbb5aa99a8d5fb106.scn b/.godot/imported/wallWoodDetailHorizontal.fbx-8010e276142c0e3cbb5aa99a8d5fb106.scn new file mode 100644 index 0000000..b3c42c2 Binary files /dev/null and b/.godot/imported/wallWoodDetailHorizontal.fbx-8010e276142c0e3cbb5aa99a8d5fb106.scn differ diff --git a/.godot/imported/wallWoodDiagonal-ba98d072795f630712e3b32f85f651eb.glb b/.godot/imported/wallWoodDiagonal-ba98d072795f630712e3b32f85f651eb.glb new file mode 100644 index 0000000..3f55a8b Binary files /dev/null and b/.godot/imported/wallWoodDiagonal-ba98d072795f630712e3b32f85f651eb.glb differ diff --git a/.godot/imported/wallWoodDiagonal.fbx-ba98d072795f630712e3b32f85f651eb.md5 b/.godot/imported/wallWoodDiagonal.fbx-ba98d072795f630712e3b32f85f651eb.md5 new file mode 100644 index 0000000..8631279 --- /dev/null +++ b/.godot/imported/wallWoodDiagonal.fbx-ba98d072795f630712e3b32f85f651eb.md5 @@ -0,0 +1,2 @@ +source_md5="0f112d56ebc3985497774e108ed8eb69" +dest_md5="4338c40a86cb9120e76d917cc3d531a5" diff --git a/.godot/imported/wallWoodDiagonal.fbx-ba98d072795f630712e3b32f85f651eb.scn b/.godot/imported/wallWoodDiagonal.fbx-ba98d072795f630712e3b32f85f651eb.scn new file mode 100644 index 0000000..4691e59 Binary files /dev/null and b/.godot/imported/wallWoodDiagonal.fbx-ba98d072795f630712e3b32f85f651eb.scn differ diff --git a/.godot/imported/wallWoodDoor-fbcf60bbeec9fe6cfe21a9b284efa811.glb b/.godot/imported/wallWoodDoor-fbcf60bbeec9fe6cfe21a9b284efa811.glb new file mode 100644 index 0000000..1db4e60 Binary files /dev/null and b/.godot/imported/wallWoodDoor-fbcf60bbeec9fe6cfe21a9b284efa811.glb differ diff --git a/.godot/imported/wallWoodDoor.fbx-fbcf60bbeec9fe6cfe21a9b284efa811.md5 b/.godot/imported/wallWoodDoor.fbx-fbcf60bbeec9fe6cfe21a9b284efa811.md5 new file mode 100644 index 0000000..5956e06 --- /dev/null +++ b/.godot/imported/wallWoodDoor.fbx-fbcf60bbeec9fe6cfe21a9b284efa811.md5 @@ -0,0 +1,2 @@ +source_md5="7869264a970e88b6418537b6504ef29c" +dest_md5="4f144d44c20508ec02c6467c6aa2665a" diff --git a/.godot/imported/wallWoodDoor.fbx-fbcf60bbeec9fe6cfe21a9b284efa811.scn b/.godot/imported/wallWoodDoor.fbx-fbcf60bbeec9fe6cfe21a9b284efa811.scn new file mode 100644 index 0000000..feff0ac Binary files /dev/null and b/.godot/imported/wallWoodDoor.fbx-fbcf60bbeec9fe6cfe21a9b284efa811.scn differ diff --git a/.godot/imported/wallWoodDoorwayBase-48ec5162878c664a10ea965bfcd1d81f.glb b/.godot/imported/wallWoodDoorwayBase-48ec5162878c664a10ea965bfcd1d81f.glb new file mode 100644 index 0000000..323874d Binary files /dev/null and b/.godot/imported/wallWoodDoorwayBase-48ec5162878c664a10ea965bfcd1d81f.glb differ diff --git a/.godot/imported/wallWoodDoorwayBase.fbx-48ec5162878c664a10ea965bfcd1d81f.md5 b/.godot/imported/wallWoodDoorwayBase.fbx-48ec5162878c664a10ea965bfcd1d81f.md5 new file mode 100644 index 0000000..c33384e --- /dev/null +++ b/.godot/imported/wallWoodDoorwayBase.fbx-48ec5162878c664a10ea965bfcd1d81f.md5 @@ -0,0 +1,2 @@ +source_md5="0cb76bd1e0996895c41b6f2e3fab8bf3" +dest_md5="1334a9f0ae42b17344f7ae85ede19302" diff --git a/.godot/imported/wallWoodDoorwayBase.fbx-48ec5162878c664a10ea965bfcd1d81f.scn b/.godot/imported/wallWoodDoorwayBase.fbx-48ec5162878c664a10ea965bfcd1d81f.scn new file mode 100644 index 0000000..86c87b4 Binary files /dev/null and b/.godot/imported/wallWoodDoorwayBase.fbx-48ec5162878c664a10ea965bfcd1d81f.scn differ diff --git a/.godot/imported/wallWoodDoorwayRound-50aa583f9adb7c029b25446837b5ca23.glb b/.godot/imported/wallWoodDoorwayRound-50aa583f9adb7c029b25446837b5ca23.glb new file mode 100644 index 0000000..ac2aaa0 Binary files /dev/null and b/.godot/imported/wallWoodDoorwayRound-50aa583f9adb7c029b25446837b5ca23.glb differ diff --git a/.godot/imported/wallWoodDoorwayRound.fbx-50aa583f9adb7c029b25446837b5ca23.md5 b/.godot/imported/wallWoodDoorwayRound.fbx-50aa583f9adb7c029b25446837b5ca23.md5 new file mode 100644 index 0000000..6ec7808 --- /dev/null +++ b/.godot/imported/wallWoodDoorwayRound.fbx-50aa583f9adb7c029b25446837b5ca23.md5 @@ -0,0 +1,2 @@ +source_md5="6ec334e587921398dfb557dc320f9d9d" +dest_md5="c37010db48cda0f45d8c3eeae78aa22d" diff --git a/.godot/imported/wallWoodDoorwayRound.fbx-50aa583f9adb7c029b25446837b5ca23.scn b/.godot/imported/wallWoodDoorwayRound.fbx-50aa583f9adb7c029b25446837b5ca23.scn new file mode 100644 index 0000000..cea06be Binary files /dev/null and b/.godot/imported/wallWoodDoorwayRound.fbx-50aa583f9adb7c029b25446837b5ca23.scn differ diff --git a/.godot/imported/wallWoodDoorwaySquare-71712784eec631b5d619768966b1bc1a.glb b/.godot/imported/wallWoodDoorwaySquare-71712784eec631b5d619768966b1bc1a.glb new file mode 100644 index 0000000..996e793 Binary files /dev/null and b/.godot/imported/wallWoodDoorwaySquare-71712784eec631b5d619768966b1bc1a.glb differ diff --git a/.godot/imported/wallWoodDoorwaySquare.fbx-71712784eec631b5d619768966b1bc1a.md5 b/.godot/imported/wallWoodDoorwaySquare.fbx-71712784eec631b5d619768966b1bc1a.md5 new file mode 100644 index 0000000..b735d51 --- /dev/null +++ b/.godot/imported/wallWoodDoorwaySquare.fbx-71712784eec631b5d619768966b1bc1a.md5 @@ -0,0 +1,2 @@ +source_md5="ad5bbf355741548146b9879a416c82b5" +dest_md5="648a784146b6bb422a8d7ce16a9233d8" diff --git a/.godot/imported/wallWoodDoorwaySquare.fbx-71712784eec631b5d619768966b1bc1a.scn b/.godot/imported/wallWoodDoorwaySquare.fbx-71712784eec631b5d619768966b1bc1a.scn new file mode 100644 index 0000000..6779280 Binary files /dev/null and b/.godot/imported/wallWoodDoorwaySquare.fbx-71712784eec631b5d619768966b1bc1a.scn differ diff --git a/.godot/imported/wallWoodDoorwaySquareWide-d95d12c2400f993b53adcc536dcda35a.glb b/.godot/imported/wallWoodDoorwaySquareWide-d95d12c2400f993b53adcc536dcda35a.glb new file mode 100644 index 0000000..2a640ae Binary files /dev/null and b/.godot/imported/wallWoodDoorwaySquareWide-d95d12c2400f993b53adcc536dcda35a.glb differ diff --git a/.godot/imported/wallWoodDoorwaySquareWide.fbx-d95d12c2400f993b53adcc536dcda35a.md5 b/.godot/imported/wallWoodDoorwaySquareWide.fbx-d95d12c2400f993b53adcc536dcda35a.md5 new file mode 100644 index 0000000..2769300 --- /dev/null +++ b/.godot/imported/wallWoodDoorwaySquareWide.fbx-d95d12c2400f993b53adcc536dcda35a.md5 @@ -0,0 +1,2 @@ +source_md5="6126e422570f989828e12f6592cbe945" +dest_md5="5ed38a4ad791ce81c39bbea9c324d856" diff --git a/.godot/imported/wallWoodDoorwaySquareWide.fbx-d95d12c2400f993b53adcc536dcda35a.scn b/.godot/imported/wallWoodDoorwaySquareWide.fbx-d95d12c2400f993b53adcc536dcda35a.scn new file mode 100644 index 0000000..d191836 Binary files /dev/null and b/.godot/imported/wallWoodDoorwaySquareWide.fbx-d95d12c2400f993b53adcc536dcda35a.scn differ diff --git a/.godot/imported/wallWoodDoorwaySquareWideCurved-2b41ba688f0d773bcf4c2c98cf3ea379.glb b/.godot/imported/wallWoodDoorwaySquareWideCurved-2b41ba688f0d773bcf4c2c98cf3ea379.glb new file mode 100644 index 0000000..fcdb152 Binary files /dev/null and b/.godot/imported/wallWoodDoorwaySquareWideCurved-2b41ba688f0d773bcf4c2c98cf3ea379.glb differ diff --git a/.godot/imported/wallWoodDoorwaySquareWideCurved.fbx-2b41ba688f0d773bcf4c2c98cf3ea379.md5 b/.godot/imported/wallWoodDoorwaySquareWideCurved.fbx-2b41ba688f0d773bcf4c2c98cf3ea379.md5 new file mode 100644 index 0000000..8cdec27 --- /dev/null +++ b/.godot/imported/wallWoodDoorwaySquareWideCurved.fbx-2b41ba688f0d773bcf4c2c98cf3ea379.md5 @@ -0,0 +1,2 @@ +source_md5="9b959f033dcead08c6449f7856b46d6d" +dest_md5="af6fc178ee2eb5615549763fa4bf7387" diff --git a/.godot/imported/wallWoodDoorwaySquareWideCurved.fbx-2b41ba688f0d773bcf4c2c98cf3ea379.scn b/.godot/imported/wallWoodDoorwaySquareWideCurved.fbx-2b41ba688f0d773bcf4c2c98cf3ea379.scn new file mode 100644 index 0000000..8a9fa52 Binary files /dev/null and b/.godot/imported/wallWoodDoorwaySquareWideCurved.fbx-2b41ba688f0d773bcf4c2c98cf3ea379.scn differ diff --git a/.godot/imported/wallWoodHalf-a177e3def9c258faad1ae72c5ed36a11.glb b/.godot/imported/wallWoodHalf-a177e3def9c258faad1ae72c5ed36a11.glb new file mode 100644 index 0000000..2d53529 Binary files /dev/null and b/.godot/imported/wallWoodHalf-a177e3def9c258faad1ae72c5ed36a11.glb differ diff --git a/.godot/imported/wallWoodHalf.fbx-a177e3def9c258faad1ae72c5ed36a11.md5 b/.godot/imported/wallWoodHalf.fbx-a177e3def9c258faad1ae72c5ed36a11.md5 new file mode 100644 index 0000000..ca3323c --- /dev/null +++ b/.godot/imported/wallWoodHalf.fbx-a177e3def9c258faad1ae72c5ed36a11.md5 @@ -0,0 +1,2 @@ +source_md5="5e1f7753d70a8055000d12b2ee5e0c8e" +dest_md5="95deee3ad5e52bd758b1ae3959645b41" diff --git a/.godot/imported/wallWoodHalf.fbx-a177e3def9c258faad1ae72c5ed36a11.scn b/.godot/imported/wallWoodHalf.fbx-a177e3def9c258faad1ae72c5ed36a11.scn new file mode 100644 index 0000000..8954e4b Binary files /dev/null and b/.godot/imported/wallWoodHalf.fbx-a177e3def9c258faad1ae72c5ed36a11.scn differ diff --git a/.godot/imported/wallWoodRounded-4af885cce30601f9f8702724f396e7e0.glb b/.godot/imported/wallWoodRounded-4af885cce30601f9f8702724f396e7e0.glb new file mode 100644 index 0000000..2c70418 Binary files /dev/null and b/.godot/imported/wallWoodRounded-4af885cce30601f9f8702724f396e7e0.glb differ diff --git a/.godot/imported/wallWoodRounded.fbx-4af885cce30601f9f8702724f396e7e0.md5 b/.godot/imported/wallWoodRounded.fbx-4af885cce30601f9f8702724f396e7e0.md5 new file mode 100644 index 0000000..5e8f57a --- /dev/null +++ b/.godot/imported/wallWoodRounded.fbx-4af885cce30601f9f8702724f396e7e0.md5 @@ -0,0 +1,2 @@ +source_md5="de5601f2cdb36e5e47f222efb1a77ade" +dest_md5="b408e0597e8d5808b567d35868bfe360" diff --git a/.godot/imported/wallWoodRounded.fbx-4af885cce30601f9f8702724f396e7e0.scn b/.godot/imported/wallWoodRounded.fbx-4af885cce30601f9f8702724f396e7e0.scn new file mode 100644 index 0000000..3a50082 Binary files /dev/null and b/.godot/imported/wallWoodRounded.fbx-4af885cce30601f9f8702724f396e7e0.scn differ diff --git a/.godot/imported/wallWoodSide-a184d8880d44de395f8b09726f936350.glb b/.godot/imported/wallWoodSide-a184d8880d44de395f8b09726f936350.glb new file mode 100644 index 0000000..f41fc50 Binary files /dev/null and b/.godot/imported/wallWoodSide-a184d8880d44de395f8b09726f936350.glb differ diff --git a/.godot/imported/wallWoodSide.fbx-a184d8880d44de395f8b09726f936350.md5 b/.godot/imported/wallWoodSide.fbx-a184d8880d44de395f8b09726f936350.md5 new file mode 100644 index 0000000..25dd59b --- /dev/null +++ b/.godot/imported/wallWoodSide.fbx-a184d8880d44de395f8b09726f936350.md5 @@ -0,0 +1,2 @@ +source_md5="fa3f65d2bd03bb7ec927a34163d4460e" +dest_md5="ce3d8410f936a561fb2b18082a1f2638" diff --git a/.godot/imported/wallWoodSide.fbx-a184d8880d44de395f8b09726f936350.scn b/.godot/imported/wallWoodSide.fbx-a184d8880d44de395f8b09726f936350.scn new file mode 100644 index 0000000..d5d93da Binary files /dev/null and b/.godot/imported/wallWoodSide.fbx-a184d8880d44de395f8b09726f936350.scn differ diff --git a/.godot/imported/wallWoodSlope-f84294d64798a956b5fc76950745fed4.glb b/.godot/imported/wallWoodSlope-f84294d64798a956b5fc76950745fed4.glb new file mode 100644 index 0000000..45924f3 Binary files /dev/null and b/.godot/imported/wallWoodSlope-f84294d64798a956b5fc76950745fed4.glb differ diff --git a/.godot/imported/wallWoodSlope.fbx-f84294d64798a956b5fc76950745fed4.md5 b/.godot/imported/wallWoodSlope.fbx-f84294d64798a956b5fc76950745fed4.md5 new file mode 100644 index 0000000..09031ec --- /dev/null +++ b/.godot/imported/wallWoodSlope.fbx-f84294d64798a956b5fc76950745fed4.md5 @@ -0,0 +1,2 @@ +source_md5="a4d1b8e688476d7f747779b1b15cf81c" +dest_md5="ce7164bd4863c235c6970e3b3343a904" diff --git a/.godot/imported/wallWoodSlope.fbx-f84294d64798a956b5fc76950745fed4.scn b/.godot/imported/wallWoodSlope.fbx-f84294d64798a956b5fc76950745fed4.scn new file mode 100644 index 0000000..3624fe3 Binary files /dev/null and b/.godot/imported/wallWoodSlope.fbx-f84294d64798a956b5fc76950745fed4.scn differ diff --git a/.godot/imported/wallWoodWindowGlass-4dac85cf24798495080f6a0f049996a8.glb b/.godot/imported/wallWoodWindowGlass-4dac85cf24798495080f6a0f049996a8.glb new file mode 100644 index 0000000..74196a3 Binary files /dev/null and b/.godot/imported/wallWoodWindowGlass-4dac85cf24798495080f6a0f049996a8.glb differ diff --git a/.godot/imported/wallWoodWindowGlass.fbx-4dac85cf24798495080f6a0f049996a8.md5 b/.godot/imported/wallWoodWindowGlass.fbx-4dac85cf24798495080f6a0f049996a8.md5 new file mode 100644 index 0000000..d71bf08 --- /dev/null +++ b/.godot/imported/wallWoodWindowGlass.fbx-4dac85cf24798495080f6a0f049996a8.md5 @@ -0,0 +1,2 @@ +source_md5="3f1ef87c888b73dced39e4509bf13e63" +dest_md5="502e939dfe2943c4ed8e60a2c18e52b4" diff --git a/.godot/imported/wallWoodWindowGlass.fbx-4dac85cf24798495080f6a0f049996a8.scn b/.godot/imported/wallWoodWindowGlass.fbx-4dac85cf24798495080f6a0f049996a8.scn new file mode 100644 index 0000000..fcc5be6 Binary files /dev/null and b/.godot/imported/wallWoodWindowGlass.fbx-4dac85cf24798495080f6a0f049996a8.scn differ diff --git a/.godot/imported/wallWoodWindowRound-54f636385ae11e78aa1036cca3fa70a7.glb b/.godot/imported/wallWoodWindowRound-54f636385ae11e78aa1036cca3fa70a7.glb new file mode 100644 index 0000000..c471771 Binary files /dev/null and b/.godot/imported/wallWoodWindowRound-54f636385ae11e78aa1036cca3fa70a7.glb differ diff --git a/.godot/imported/wallWoodWindowRound.fbx-54f636385ae11e78aa1036cca3fa70a7.md5 b/.godot/imported/wallWoodWindowRound.fbx-54f636385ae11e78aa1036cca3fa70a7.md5 new file mode 100644 index 0000000..e9da655 --- /dev/null +++ b/.godot/imported/wallWoodWindowRound.fbx-54f636385ae11e78aa1036cca3fa70a7.md5 @@ -0,0 +1,2 @@ +source_md5="db8b7dcd4b2b732bc7d9e8933ef7d534" +dest_md5="05466f26b3acd36cbcb7c7f60891c4cf" diff --git a/.godot/imported/wallWoodWindowRound.fbx-54f636385ae11e78aa1036cca3fa70a7.scn b/.godot/imported/wallWoodWindowRound.fbx-54f636385ae11e78aa1036cca3fa70a7.scn new file mode 100644 index 0000000..cf0f7e7 Binary files /dev/null and b/.godot/imported/wallWoodWindowRound.fbx-54f636385ae11e78aa1036cca3fa70a7.scn differ diff --git a/.godot/imported/wallWoodWindowShutters-3f5121e5bda628b60f4754a2b4b79aa3.glb b/.godot/imported/wallWoodWindowShutters-3f5121e5bda628b60f4754a2b4b79aa3.glb new file mode 100644 index 0000000..685072a Binary files /dev/null and b/.godot/imported/wallWoodWindowShutters-3f5121e5bda628b60f4754a2b4b79aa3.glb differ diff --git a/.godot/imported/wallWoodWindowShutters.fbx-3f5121e5bda628b60f4754a2b4b79aa3.md5 b/.godot/imported/wallWoodWindowShutters.fbx-3f5121e5bda628b60f4754a2b4b79aa3.md5 new file mode 100644 index 0000000..5b2ee05 --- /dev/null +++ b/.godot/imported/wallWoodWindowShutters.fbx-3f5121e5bda628b60f4754a2b4b79aa3.md5 @@ -0,0 +1,2 @@ +source_md5="eea0dd64c616a350b0269ac66e2322ce" +dest_md5="998bc68c787d6ef029a1af7a8ce3f030" diff --git a/.godot/imported/wallWoodWindowShutters.fbx-3f5121e5bda628b60f4754a2b4b79aa3.scn b/.godot/imported/wallWoodWindowShutters.fbx-3f5121e5bda628b60f4754a2b4b79aa3.scn new file mode 100644 index 0000000..3a07d59 Binary files /dev/null and b/.godot/imported/wallWoodWindowShutters.fbx-3f5121e5bda628b60f4754a2b4b79aa3.scn differ diff --git a/.godot/imported/wallWoodWindowSmall-5086ca6840021bde7a2dacbab4097474.glb b/.godot/imported/wallWoodWindowSmall-5086ca6840021bde7a2dacbab4097474.glb new file mode 100644 index 0000000..baa51d7 Binary files /dev/null and b/.godot/imported/wallWoodWindowSmall-5086ca6840021bde7a2dacbab4097474.glb differ diff --git a/.godot/imported/wallWoodWindowSmall.fbx-5086ca6840021bde7a2dacbab4097474.md5 b/.godot/imported/wallWoodWindowSmall.fbx-5086ca6840021bde7a2dacbab4097474.md5 new file mode 100644 index 0000000..9a48de3 --- /dev/null +++ b/.godot/imported/wallWoodWindowSmall.fbx-5086ca6840021bde7a2dacbab4097474.md5 @@ -0,0 +1,2 @@ +source_md5="1c46201de8c528a9a8f37200d3099daa" +dest_md5="8b803d1ad30851b5f08a96effb778d9d" diff --git a/.godot/imported/wallWoodWindowSmall.fbx-5086ca6840021bde7a2dacbab4097474.scn b/.godot/imported/wallWoodWindowSmall.fbx-5086ca6840021bde7a2dacbab4097474.scn new file mode 100644 index 0000000..ee040df Binary files /dev/null and b/.godot/imported/wallWoodWindowSmall.fbx-5086ca6840021bde7a2dacbab4097474.scn differ diff --git a/.godot/imported/wallWoodWindowStone-6be489e45df8c75bdfddd35bd8faf22a.glb b/.godot/imported/wallWoodWindowStone-6be489e45df8c75bdfddd35bd8faf22a.glb new file mode 100644 index 0000000..f5befa5 Binary files /dev/null and b/.godot/imported/wallWoodWindowStone-6be489e45df8c75bdfddd35bd8faf22a.glb differ diff --git a/.godot/imported/wallWoodWindowStone.fbx-6be489e45df8c75bdfddd35bd8faf22a.md5 b/.godot/imported/wallWoodWindowStone.fbx-6be489e45df8c75bdfddd35bd8faf22a.md5 new file mode 100644 index 0000000..2b1aa66 --- /dev/null +++ b/.godot/imported/wallWoodWindowStone.fbx-6be489e45df8c75bdfddd35bd8faf22a.md5 @@ -0,0 +1,2 @@ +source_md5="c660a03ec314a068f5741abf458934ea" +dest_md5="d07043be2c4b66be92a3d55047b0d60c" diff --git a/.godot/imported/wallWoodWindowStone.fbx-6be489e45df8c75bdfddd35bd8faf22a.scn b/.godot/imported/wallWoodWindowStone.fbx-6be489e45df8c75bdfddd35bd8faf22a.scn new file mode 100644 index 0000000..ae94e5d Binary files /dev/null and b/.godot/imported/wallWoodWindowStone.fbx-6be489e45df8c75bdfddd35bd8faf22a.scn differ diff --git a/.godot/imported/water-splosh.mp3-92c7d29e8f402d9c820e6564fa7796da.md5 b/.godot/imported/water-splosh.mp3-92c7d29e8f402d9c820e6564fa7796da.md5 new file mode 100644 index 0000000..cfa26cb --- /dev/null +++ b/.godot/imported/water-splosh.mp3-92c7d29e8f402d9c820e6564fa7796da.md5 @@ -0,0 +1,2 @@ +source_md5="ba16db3e6b8b61051cebc64bd88f8dd0" +dest_md5="65d553e2d7682f6df7cb9b54ba8e9c20" diff --git a/.godot/imported/water-splosh.mp3-92c7d29e8f402d9c820e6564fa7796da.mp3str b/.godot/imported/water-splosh.mp3-92c7d29e8f402d9c820e6564fa7796da.mp3str new file mode 100644 index 0000000..76ef181 Binary files /dev/null and b/.godot/imported/water-splosh.mp3-92c7d29e8f402d9c820e6564fa7796da.mp3str differ diff --git a/.godot/imported/water-stream.mp3-a68173a9021fa9ddcf37c25345820309.md5 b/.godot/imported/water-stream.mp3-a68173a9021fa9ddcf37c25345820309.md5 new file mode 100644 index 0000000..75dd88f --- /dev/null +++ b/.godot/imported/water-stream.mp3-a68173a9021fa9ddcf37c25345820309.md5 @@ -0,0 +1,2 @@ +source_md5="de7878ac0f3350781cbf0c896ba7f7bf" +dest_md5="02e55c49d05b4d209e4ea8fc360e52e8" diff --git a/.godot/imported/water-stream.mp3-a68173a9021fa9ddcf37c25345820309.mp3str b/.godot/imported/water-stream.mp3-a68173a9021fa9ddcf37c25345820309.mp3str new file mode 100644 index 0000000..942801f Binary files /dev/null and b/.godot/imported/water-stream.mp3-a68173a9021fa9ddcf37c25345820309.mp3str differ diff --git a/.godot/imported/watermill-a45afa8bde2c6c12bc49489eefee3666.glb b/.godot/imported/watermill-a45afa8bde2c6c12bc49489eefee3666.glb new file mode 100644 index 0000000..99c6f54 Binary files /dev/null and b/.godot/imported/watermill-a45afa8bde2c6c12bc49489eefee3666.glb differ diff --git a/.godot/imported/watermill.fbx-a45afa8bde2c6c12bc49489eefee3666.md5 b/.godot/imported/watermill.fbx-a45afa8bde2c6c12bc49489eefee3666.md5 new file mode 100644 index 0000000..63373d8 --- /dev/null +++ b/.godot/imported/watermill.fbx-a45afa8bde2c6c12bc49489eefee3666.md5 @@ -0,0 +1,2 @@ +source_md5="2c68bda731ad6bc4f9d36130e085daa3" +dest_md5="3896a54aa42651f1476909316bdf8e75" diff --git a/.godot/imported/watermill.fbx-a45afa8bde2c6c12bc49489eefee3666.scn b/.godot/imported/watermill.fbx-a45afa8bde2c6c12bc49489eefee3666.scn new file mode 100644 index 0000000..1f9a6a6 Binary files /dev/null and b/.godot/imported/watermill.fbx-a45afa8bde2c6c12bc49489eefee3666.scn differ diff --git a/.godot/imported/watermillWide-23bd408cc0c85d13ac4d7f791e5eca65.glb b/.godot/imported/watermillWide-23bd408cc0c85d13ac4d7f791e5eca65.glb new file mode 100644 index 0000000..3b916b9 Binary files /dev/null and b/.godot/imported/watermillWide-23bd408cc0c85d13ac4d7f791e5eca65.glb differ diff --git a/.godot/imported/watermillWide.fbx-23bd408cc0c85d13ac4d7f791e5eca65.md5 b/.godot/imported/watermillWide.fbx-23bd408cc0c85d13ac4d7f791e5eca65.md5 new file mode 100644 index 0000000..765d76e --- /dev/null +++ b/.godot/imported/watermillWide.fbx-23bd408cc0c85d13ac4d7f791e5eca65.md5 @@ -0,0 +1,2 @@ +source_md5="1187549cd835939295184144d56cb2a4" +dest_md5="299abb34495177c57c4f8838be210ed3" diff --git a/.godot/imported/watermillWide.fbx-23bd408cc0c85d13ac4d7f791e5eca65.scn b/.godot/imported/watermillWide.fbx-23bd408cc0c85d13ac4d7f791e5eca65.scn new file mode 100644 index 0000000..2f98812 Binary files /dev/null and b/.godot/imported/watermillWide.fbx-23bd408cc0c85d13ac4d7f791e5eca65.scn differ diff --git a/.godot/imported/wheel-9e8d018be88ebb8dd2096855160c4269.glb b/.godot/imported/wheel-9e8d018be88ebb8dd2096855160c4269.glb new file mode 100644 index 0000000..5a688ec Binary files /dev/null and b/.godot/imported/wheel-9e8d018be88ebb8dd2096855160c4269.glb differ diff --git a/.godot/imported/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png-3fce8092ad2e3c62c5c8d1b25ce3e3e4.md5 b/.godot/imported/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png-3fce8092ad2e3c62c5c8d1b25ce3e3e4.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png-3fce8092ad2e3c62c5c8d1b25ce3e3e4.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png-3fce8092ad2e3c62c5c8d1b25ce3e3e4.s3tc.ctex b/.godot/imported/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png-3fce8092ad2e3c62c5c8d1b25ce3e3e4.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png-3fce8092ad2e3c62c5c8d1b25ce3e3e4.s3tc.ctex differ diff --git a/.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e.glb b/.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e.glb new file mode 100644 index 0000000..d97b111 Binary files /dev/null and b/.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e.glb differ diff --git a/.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png-753bcb4e4ec3fdc840e238c7ea1ff4e0.md5 b/.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png-753bcb4e4ec3fdc840e238c7ea1ff4e0.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png-753bcb4e4ec3fdc840e238c7ea1ff4e0.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png-753bcb4e4ec3fdc840e238c7ea1ff4e0.s3tc.ctex b/.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png-753bcb4e4ec3fdc840e238c7ea1ff4e0.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png-753bcb4e4ec3fdc840e238c7ea1ff4e0.s3tc.ctex differ diff --git a/.godot/imported/wheel-dark.fbx-7ecf87e0af972bf91855abad94dd5d8e.md5 b/.godot/imported/wheel-dark.fbx-7ecf87e0af972bf91855abad94dd5d8e.md5 new file mode 100644 index 0000000..d21d106 --- /dev/null +++ b/.godot/imported/wheel-dark.fbx-7ecf87e0af972bf91855abad94dd5d8e.md5 @@ -0,0 +1,2 @@ +source_md5="3d39cadce2e6b03aa396677364994ff9" +dest_md5="7c85cefd6421240832545f93e56bb9e6" diff --git a/.godot/imported/wheel-dark.fbx-7ecf87e0af972bf91855abad94dd5d8e.scn b/.godot/imported/wheel-dark.fbx-7ecf87e0af972bf91855abad94dd5d8e.scn new file mode 100644 index 0000000..288d0be Binary files /dev/null and b/.godot/imported/wheel-dark.fbx-7ecf87e0af972bf91855abad94dd5d8e.scn differ diff --git a/.godot/imported/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png-fb5dad07f77ec0ca89484784a0c1da1f.md5 b/.godot/imported/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png-fb5dad07f77ec0ca89484784a0c1da1f.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png-fb5dad07f77ec0ca89484784a0c1da1f.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png-fb5dad07f77ec0ca89484784a0c1da1f.s3tc.ctex b/.godot/imported/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png-fb5dad07f77ec0ca89484784a0c1da1f.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png-fb5dad07f77ec0ca89484784a0c1da1f.s3tc.ctex differ diff --git a/.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.glb b/.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.glb new file mode 100644 index 0000000..bec811d Binary files /dev/null and b/.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.glb differ diff --git a/.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png-e793c320d1a6893bfdfe49d3aa36549d.md5 b/.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png-e793c320d1a6893bfdfe49d3aa36549d.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png-e793c320d1a6893bfdfe49d3aa36549d.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png-e793c320d1a6893bfdfe49d3aa36549d.s3tc.ctex b/.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png-e793c320d1a6893bfdfe49d3aa36549d.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png-e793c320d1a6893bfdfe49d3aa36549d.s3tc.ctex differ diff --git a/.godot/imported/wheel-default.fbx-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.md5 b/.godot/imported/wheel-default.fbx-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.md5 new file mode 100644 index 0000000..7e4de5d --- /dev/null +++ b/.godot/imported/wheel-default.fbx-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.md5 @@ -0,0 +1,2 @@ +source_md5="91006bcfac44f158d7b007a605aa1f02" +dest_md5="a7da5421de61816b2f2c9fac6a321cae" diff --git a/.godot/imported/wheel-default.fbx-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.scn b/.godot/imported/wheel-default.fbx-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.scn new file mode 100644 index 0000000..77fa9f8 Binary files /dev/null and b/.godot/imported/wheel-default.fbx-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.scn differ diff --git a/.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e.glb b/.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e.glb new file mode 100644 index 0000000..2c274ed Binary files /dev/null and b/.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e.glb differ diff --git a/.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png-caf8ef67a15564d072132d7ecce3573a.md5 b/.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png-caf8ef67a15564d072132d7ecce3573a.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png-caf8ef67a15564d072132d7ecce3573a.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png-caf8ef67a15564d072132d7ecce3573a.s3tc.ctex b/.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png-caf8ef67a15564d072132d7ecce3573a.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png-caf8ef67a15564d072132d7ecce3573a.s3tc.ctex differ diff --git a/.godot/imported/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png-02f6cdd33e24cc987a93650a54089f10.md5 b/.godot/imported/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png-02f6cdd33e24cc987a93650a54089f10.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png-02f6cdd33e24cc987a93650a54089f10.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png-02f6cdd33e24cc987a93650a54089f10.s3tc.ctex b/.godot/imported/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png-02f6cdd33e24cc987a93650a54089f10.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png-02f6cdd33e24cc987a93650a54089f10.s3tc.ctex differ diff --git a/.godot/imported/wheel-racing.fbx-ba4a8ab46b0b014c15390637da7d9c8e.md5 b/.godot/imported/wheel-racing.fbx-ba4a8ab46b0b014c15390637da7d9c8e.md5 new file mode 100644 index 0000000..294dcef --- /dev/null +++ b/.godot/imported/wheel-racing.fbx-ba4a8ab46b0b014c15390637da7d9c8e.md5 @@ -0,0 +1,2 @@ +source_md5="702f13bd591ad4512a513b216ed12e75" +dest_md5="266add8837bdeb8f68865de345e83d79" diff --git a/.godot/imported/wheel-racing.fbx-ba4a8ab46b0b014c15390637da7d9c8e.scn b/.godot/imported/wheel-racing.fbx-ba4a8ab46b0b014c15390637da7d9c8e.scn new file mode 100644 index 0000000..548e288 Binary files /dev/null and b/.godot/imported/wheel-racing.fbx-ba4a8ab46b0b014c15390637da7d9c8e.scn differ diff --git a/.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74.glb b/.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74.glb new file mode 100644 index 0000000..20c896a Binary files /dev/null and b/.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74.glb differ diff --git a/.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png-f6c07c1b7720cf04cc4d59e215beb2f1.md5 b/.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png-f6c07c1b7720cf04cc4d59e215beb2f1.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png-f6c07c1b7720cf04cc4d59e215beb2f1.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png-f6c07c1b7720cf04cc4d59e215beb2f1.s3tc.ctex b/.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png-f6c07c1b7720cf04cc4d59e215beb2f1.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png-f6c07c1b7720cf04cc4d59e215beb2f1.s3tc.ctex differ diff --git a/.godot/imported/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png-6737e2d30052893882e7ad1aea333fab.md5 b/.godot/imported/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png-6737e2d30052893882e7ad1aea333fab.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png-6737e2d30052893882e7ad1aea333fab.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png-6737e2d30052893882e7ad1aea333fab.s3tc.ctex b/.godot/imported/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png-6737e2d30052893882e7ad1aea333fab.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png-6737e2d30052893882e7ad1aea333fab.s3tc.ctex differ diff --git a/.godot/imported/wheel-tractor-back.fbx-483ba6e3e1439658704d16c86d777f74.md5 b/.godot/imported/wheel-tractor-back.fbx-483ba6e3e1439658704d16c86d777f74.md5 new file mode 100644 index 0000000..7c106aa --- /dev/null +++ b/.godot/imported/wheel-tractor-back.fbx-483ba6e3e1439658704d16c86d777f74.md5 @@ -0,0 +1,2 @@ +source_md5="b40cabd84a15233d9ab1fe8a48d6d000" +dest_md5="08f42ee59391f4548fd30081a264ef94" diff --git a/.godot/imported/wheel-tractor-back.fbx-483ba6e3e1439658704d16c86d777f74.scn b/.godot/imported/wheel-tractor-back.fbx-483ba6e3e1439658704d16c86d777f74.scn new file mode 100644 index 0000000..8ae1139 Binary files /dev/null and b/.godot/imported/wheel-tractor-back.fbx-483ba6e3e1439658704d16c86d777f74.scn differ diff --git a/.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae.glb b/.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae.glb new file mode 100644 index 0000000..ae4a21c Binary files /dev/null and b/.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae.glb differ diff --git a/.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png-f4958786fdfa897a8c95c39b6bbdcc12.md5 b/.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png-f4958786fdfa897a8c95c39b6bbdcc12.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png-f4958786fdfa897a8c95c39b6bbdcc12.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png-f4958786fdfa897a8c95c39b6bbdcc12.s3tc.ctex b/.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png-f4958786fdfa897a8c95c39b6bbdcc12.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png-f4958786fdfa897a8c95c39b6bbdcc12.s3tc.ctex differ diff --git a/.godot/imported/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png-f7c451f6ebcd931ba56790be6d791639.md5 b/.godot/imported/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png-f7c451f6ebcd931ba56790be6d791639.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png-f7c451f6ebcd931ba56790be6d791639.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png-f7c451f6ebcd931ba56790be6d791639.s3tc.ctex b/.godot/imported/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png-f7c451f6ebcd931ba56790be6d791639.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png-f7c451f6ebcd931ba56790be6d791639.s3tc.ctex differ diff --git a/.godot/imported/wheel-tractor-dark-back.fbx-0614adb67d26e65ad4b142633d8926ae.md5 b/.godot/imported/wheel-tractor-dark-back.fbx-0614adb67d26e65ad4b142633d8926ae.md5 new file mode 100644 index 0000000..b2a6590 --- /dev/null +++ b/.godot/imported/wheel-tractor-dark-back.fbx-0614adb67d26e65ad4b142633d8926ae.md5 @@ -0,0 +1,2 @@ +source_md5="28c0a8cd9cb8ab1e4b9bdbec1b6f8fb2" +dest_md5="cc9d8b42561c91587933bd1ad1fb3fcc" diff --git a/.godot/imported/wheel-tractor-dark-back.fbx-0614adb67d26e65ad4b142633d8926ae.scn b/.godot/imported/wheel-tractor-dark-back.fbx-0614adb67d26e65ad4b142633d8926ae.scn new file mode 100644 index 0000000..2fd26d6 Binary files /dev/null and b/.godot/imported/wheel-tractor-dark-back.fbx-0614adb67d26e65ad4b142633d8926ae.scn differ diff --git a/.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079.glb b/.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079.glb new file mode 100644 index 0000000..44a7541 Binary files /dev/null and b/.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079.glb differ diff --git a/.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png-568b849df57da6fcabf011fc4b4cff2d.md5 b/.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png-568b849df57da6fcabf011fc4b4cff2d.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png-568b849df57da6fcabf011fc4b4cff2d.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png-568b849df57da6fcabf011fc4b4cff2d.s3tc.ctex b/.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png-568b849df57da6fcabf011fc4b4cff2d.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png-568b849df57da6fcabf011fc4b4cff2d.s3tc.ctex differ diff --git a/.godot/imported/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png-28c3cb88fca0b26d4b180f84ce11da5d.md5 b/.godot/imported/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png-28c3cb88fca0b26d4b180f84ce11da5d.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png-28c3cb88fca0b26d4b180f84ce11da5d.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png-28c3cb88fca0b26d4b180f84ce11da5d.s3tc.ctex b/.godot/imported/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png-28c3cb88fca0b26d4b180f84ce11da5d.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png-28c3cb88fca0b26d4b180f84ce11da5d.s3tc.ctex differ diff --git a/.godot/imported/wheel-tractor-dark-front.fbx-63114def4676ded40568a8392b7a1079.md5 b/.godot/imported/wheel-tractor-dark-front.fbx-63114def4676ded40568a8392b7a1079.md5 new file mode 100644 index 0000000..54296a2 --- /dev/null +++ b/.godot/imported/wheel-tractor-dark-front.fbx-63114def4676ded40568a8392b7a1079.md5 @@ -0,0 +1,2 @@ +source_md5="8704ed76835ae89c47da8557ccae1939" +dest_md5="147671c275c90bd7a54f03298c8b2165" diff --git a/.godot/imported/wheel-tractor-dark-front.fbx-63114def4676ded40568a8392b7a1079.scn b/.godot/imported/wheel-tractor-dark-front.fbx-63114def4676ded40568a8392b7a1079.scn new file mode 100644 index 0000000..a58ecef Binary files /dev/null and b/.godot/imported/wheel-tractor-dark-front.fbx-63114def4676ded40568a8392b7a1079.scn differ diff --git a/.godot/imported/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png-170351e2ea48d22dcb7068f7c7c39be8.md5 b/.godot/imported/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png-170351e2ea48d22dcb7068f7c7c39be8.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png-170351e2ea48d22dcb7068f7c7c39be8.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png-170351e2ea48d22dcb7068f7c7c39be8.s3tc.ctex b/.godot/imported/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png-170351e2ea48d22dcb7068f7c7c39be8.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png-170351e2ea48d22dcb7068f7c7c39be8.s3tc.ctex differ diff --git a/.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f.glb b/.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f.glb new file mode 100644 index 0000000..f2dce99 Binary files /dev/null and b/.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f.glb differ diff --git a/.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png-ff70515a19bcb59f8ef75465f5273e1c.md5 b/.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png-ff70515a19bcb59f8ef75465f5273e1c.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png-ff70515a19bcb59f8ef75465f5273e1c.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png-ff70515a19bcb59f8ef75465f5273e1c.s3tc.ctex b/.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png-ff70515a19bcb59f8ef75465f5273e1c.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png-ff70515a19bcb59f8ef75465f5273e1c.s3tc.ctex differ diff --git a/.godot/imported/wheel-tractor-front.fbx-78d5954adba2164363170986e1568e9f.md5 b/.godot/imported/wheel-tractor-front.fbx-78d5954adba2164363170986e1568e9f.md5 new file mode 100644 index 0000000..fee4215 --- /dev/null +++ b/.godot/imported/wheel-tractor-front.fbx-78d5954adba2164363170986e1568e9f.md5 @@ -0,0 +1,2 @@ +source_md5="4f099dbe949d3bca1352a37d0aeeba76" +dest_md5="1495403e4bed0b95928b10e3c31bc3af" diff --git a/.godot/imported/wheel-tractor-front.fbx-78d5954adba2164363170986e1568e9f.scn b/.godot/imported/wheel-tractor-front.fbx-78d5954adba2164363170986e1568e9f.scn new file mode 100644 index 0000000..3071fce Binary files /dev/null and b/.godot/imported/wheel-tractor-front.fbx-78d5954adba2164363170986e1568e9f.scn differ diff --git a/.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a.glb b/.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a.glb new file mode 100644 index 0000000..ed2682c Binary files /dev/null and b/.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a.glb differ diff --git a/.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png-f57dfbcba5eedd52e42965634c1b13a0.md5 b/.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png-f57dfbcba5eedd52e42965634c1b13a0.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png-f57dfbcba5eedd52e42965634c1b13a0.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png-f57dfbcba5eedd52e42965634c1b13a0.s3tc.ctex b/.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png-f57dfbcba5eedd52e42965634c1b13a0.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png-f57dfbcba5eedd52e42965634c1b13a0.s3tc.ctex differ diff --git a/.godot/imported/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png-cb2838662226668259c059bf954a2bb2.md5 b/.godot/imported/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png-cb2838662226668259c059bf954a2bb2.md5 new file mode 100644 index 0000000..10158ae --- /dev/null +++ b/.godot/imported/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png-cb2838662226668259c059bf954a2bb2.md5 @@ -0,0 +1,2 @@ +source_md5="ba9871dd8c8164c001ce2a63aad33146" +dest_md5="9f173748f042f371217b732bb85bc949" diff --git a/.godot/imported/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png-cb2838662226668259c059bf954a2bb2.s3tc.ctex b/.godot/imported/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png-cb2838662226668259c059bf954a2bb2.s3tc.ctex new file mode 100644 index 0000000..b64e028 Binary files /dev/null and b/.godot/imported/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png-cb2838662226668259c059bf954a2bb2.s3tc.ctex differ diff --git a/.godot/imported/wheel-truck.fbx-049233e75b129e581ddd1bf88dc0b24a.md5 b/.godot/imported/wheel-truck.fbx-049233e75b129e581ddd1bf88dc0b24a.md5 new file mode 100644 index 0000000..5f45b42 --- /dev/null +++ b/.godot/imported/wheel-truck.fbx-049233e75b129e581ddd1bf88dc0b24a.md5 @@ -0,0 +1,2 @@ +source_md5="8b81971e63f07210e5a695e8853caa39" +dest_md5="03200bf298a2ff9fbd58fa0f6f3e4650" diff --git a/.godot/imported/wheel-truck.fbx-049233e75b129e581ddd1bf88dc0b24a.scn b/.godot/imported/wheel-truck.fbx-049233e75b129e581ddd1bf88dc0b24a.scn new file mode 100644 index 0000000..f9e9fe5 Binary files /dev/null and b/.godot/imported/wheel-truck.fbx-049233e75b129e581ddd1bf88dc0b24a.scn differ diff --git a/.godot/imported/wheel.fbx-9e8d018be88ebb8dd2096855160c4269.md5 b/.godot/imported/wheel.fbx-9e8d018be88ebb8dd2096855160c4269.md5 new file mode 100644 index 0000000..d4e5b77 --- /dev/null +++ b/.godot/imported/wheel.fbx-9e8d018be88ebb8dd2096855160c4269.md5 @@ -0,0 +1,2 @@ +source_md5="819b92d0b3ca8eaf0d03597b5d2a21c6" +dest_md5="e53cfc3057095a90fcbba8337b67f06c" diff --git a/.godot/imported/wheel.fbx-9e8d018be88ebb8dd2096855160c4269.scn b/.godot/imported/wheel.fbx-9e8d018be88ebb8dd2096855160c4269.scn new file mode 100644 index 0000000..9aa55c3 Binary files /dev/null and b/.godot/imported/wheel.fbx-9e8d018be88ebb8dd2096855160c4269.scn differ diff --git a/.godot/imported/windmill-33938364d4bb440e278cdb62215ff4e0.glb b/.godot/imported/windmill-33938364d4bb440e278cdb62215ff4e0.glb new file mode 100644 index 0000000..6af02f1 Binary files /dev/null and b/.godot/imported/windmill-33938364d4bb440e278cdb62215ff4e0.glb differ diff --git a/.godot/imported/windmill.fbx-33938364d4bb440e278cdb62215ff4e0.md5 b/.godot/imported/windmill.fbx-33938364d4bb440e278cdb62215ff4e0.md5 new file mode 100644 index 0000000..346e3d0 --- /dev/null +++ b/.godot/imported/windmill.fbx-33938364d4bb440e278cdb62215ff4e0.md5 @@ -0,0 +1,2 @@ +source_md5="b2cc4c8c49cd0e6804db4878ced063eb" +dest_md5="1def35a4d3aec8f43b9354f0fa9860e1" diff --git a/.godot/imported/windmill.fbx-33938364d4bb440e278cdb62215ff4e0.scn b/.godot/imported/windmill.fbx-33938364d4bb440e278cdb62215ff4e0.scn new file mode 100644 index 0000000..cae635f Binary files /dev/null and b/.godot/imported/windmill.fbx-33938364d4bb440e278cdb62215ff4e0.scn differ diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml new file mode 100644 index 0000000..1555150 --- /dev/null +++ b/.pre-commit-config.yaml @@ -0,0 +1,57 @@ +repos: +- repo: https://github.com/pre-commit/pre-commit-hooks + rev: v4.4.0 + hooks: + - id: check-added-large-files # Prevent giant files from being committed + args: ['--maxkb=1500'] + - id: fix-byte-order-marker # Prevents weird UTF-8 encoding edge cases + - id: check-case-conflict # Check if case-insensitive filesystems would bork + - id: check-docstring-first # Check for if docstring was misplaced + - id: check-executables-have-shebangs + - id: check-json # Checks for valid json + - id: check-merge-conflict # Checks strings that look like a committed merge conflict + - id: check-xml # Checks for valid xml + - id: check-yaml # Checks for valid yaml + - id: end-of-file-fixer # Checks for ending with a newline + - id: mixed-line-ending # Consistent LF or CRLF + - id: trailing-whitespace # No trailing whitespace +- repo: https://github.com/codespell-project/codespell + rev: v2.2.5 + hooks: + - id: codespell +- repo: https://github.com/Scony/godot-gdscript-toolkit + rev: 4.2.2 + hooks: + - id: gdformat + exclude: '^addons/gd-plug/' + - id: gdlint + exclude: '^addons/gd-plug/' +- repo: local + hooks: + - id: check-filenames-are-lowercase + name: check that filenames are lowercase + entry: filenames must be lower-case or lower_case only + language: fail + files: '[^a-z0-9._/-]' + exclude: | + (?x)^( + .godot/| + addons/gd-plug/| + assets/models/| + CREDITS.md| + Justfile| + LICENSE.md| + LICENSES/| + public/| + README.md + ) + - id: format-shaders + name: format shaders + entry: clang-format + args: + - --style=llvm + - -Werror + - -i + language: system + files: \.gdshader$ + exclude: ^addons/gd-plug/ diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..79149cb --- /dev/null +++ b/Justfile @@ -0,0 +1,259 @@ +#!/usr/bin/env -S just --justfile + +# === Settings === + +set dotenv-load := true + +# === Aliases === + +[private] +alias g := godot + +[private] +alias e := editor + +# === Variables === + +# Global directories +# To make the Godot binaries available for other projects +home_dir := env_var('HOME') +main_dir := home_dir / ".mkflower" +cache_dir := main_dir / "cache" +bin_dir := main_dir / "bin" + +# Local directories for game exports +build_dir := justfile_directory() / "build" +dist_dir := justfile_directory() / "dist" + +# Godot variables +godot_version := env_var('GODOT_VERSION') +godot_platform := if arch() == "x86" { + "linux.x86_32" +} else if arch() == "x86_64" { + "linux.x86_64" +} else if arch() == "arm" { + "linux.arm32" +} else if arch() == "aarch64" { + "linux.arm64" +} else { + "" +} +godot_filename := "Godot_v" + godot_version + "_" + godot_platform +godot_template := "Godot_v" + godot_version + "_export_templates.tpz" +godot_bin := bin_dir / godot_filename +godot_editor_data_dir := "~/.local/share/godot" +godot_templates_dir := godot_editor_data_dir / "export_templates" / replace_regex(godot_version, "([^-]+)-([^-]+)", "$1.$2") + +# Game variables +game_name := env_var('GAME_NAME') +game_version := env_var('GAME_VERSION') +game_itchio_key := env_var_or_default('GAME_ITCHIO_KEY', "") + +# Build info +datetime := `date '+%Y%m%d'` +short_version := replace_regex(game_version, "([0-9]+).([0-9]+).[0-9]+", "$1.$2") +commit_hash := `git log --pretty=format:"%H" -1` + +# Python virtualenv +venv_dir := justfile_directory() / "venv" + +# Butler binary +butler_bin := bin_dir / "butler" +butler_platform := if arch() == "x86" { + "linux-386" +} else if arch() == "x86_64" { + "linux-amd64" +} else { + "" +} + +# === Commands === + +# Display all commands +@default: + echo -e "OS: {{ os() }} - ARCH: {{ arch() }}\n" + just --list + +# Create directories +[private] +@makedirs: + mkdir -p {{ cache_dir }} {{ bin_dir }} {{ build_dir }} {{ dist_dir }} + +# === Installer === +# +# Recipes for checking and/or installing binaries like Godot and Butler. +# Ensures consistent environments across CI and local development. + +# Download Godot +[private] +install-godot: makedirs + curl -L --progress-bar -X GET "https://github.com/godotengine/godot-builds/releases/download/{{ godot_version }}/{{ godot_filename }}.zip" --output {{ cache_dir }}/{{ godot_filename }}.zip + unzip -o {{ cache_dir }}/{{ godot_filename }}.zip -d {{ cache_dir }} + cp {{ cache_dir }}/{{ godot_filename }} {{ godot_bin }} + +# Check and download Godot if not already installed +[private] +@check-godot: + [ ! -e {{ godot_bin }} ] && just install-godot || true + +# Download Godot export templates +[private] +install-templates: makedirs + curl -L --progress-bar -X GET "https://github.com/godotengine/godot-builds/releases/download/{{ godot_version }}/{{ godot_template }}" --output {{ cache_dir }}/{{ godot_template }} + unzip -o {{ cache_dir }}/{{ godot_template }} -d {{ cache_dir }} + mkdir -p {{ godot_templates_dir }} + cp {{ cache_dir }}/templates/* {{ godot_templates_dir }} + +# Check and download Godot export templates if not already installed +[private] +@check-templates: + [ ! -d {{ godot_templates_dir }} ] && just install-templates || true + +# Download Butler +[private] +install-butler: makedirs + curl -L --silent -X GET "https://broth.itch.ovh/butler/{{ butler_platform }}/LATEST/archive/default" --output {{ cache_dir }}/butler.zip + unzip -o {{ cache_dir }}/butler.zip -d {{ cache_dir }} + mv {{ cache_dir }}/butler {{ butler_bin }} + chmod +x {{ butler_bin }} + +# Check and download Butler if not already installed +[private] +@check-butler: + [ ! -e {{ butler_bin }} ] && just install-butler || true + +# === Python === +# +# Recipes for working with Python and Python packages. +# These recipes ensure that Python packages are installed within a virtual environment, +# providing a clean and isolated environment. + +export PIP_REQUIRE_VIRTUALENV := "true" + +# Python virtualenv wrapper +[private] +@venv *ARGS: + [ ! -d {{ venv_dir }} ] && python3 -m venv {{ venv_dir }} && touch {{ venv_dir }}/.gdignore || true + . {{ venv_dir }}/bin/activate && {{ ARGS }} + +# Run files formatters +fmt: + just venv pip install pre-commit==3.* + just venv pre-commit run -a + +# === Godot === +# +# Recipes for managing the Godot binary. +# These recipes simplify common tasks such as installing addons, importing game resources, +# and opening the Godot editor. + + +# Godot binary wrapper +godot *ARGS: check-godot check-templates + {{ godot_bin }} {{ ARGS }} + +# Download game plugins +@install-addons: + [ -f plug.gd ] && just godot --headless --script plug.gd install force || true + +# Import game resources +@import-resources: + just godot --headless --import + +# Open the Godot editor +@editor: + just godot --editor + +# === Butler === +# +# Recipes for managing the Butler binary. + +# Bulter wrapper +butler *ARGS: check-butler + {{ butler_bin }} {{ ARGS }} + +# === Export === +# +# Recipes for exporting the game to different platforms. +# Handles tasks such as updating version information, preparing directories, +# and exporting the game for Windows, MacOS, Linux, and the web. + +# Updates the game version for export +@bump-version: + echo "Update version in the presets.cfg" + sed -i "s,application/file_version=.*$,application/file_version=\"{{ game_version }}.{{ datetime }}\",g" ./export_presets.cfg + sed -i "s,application/product_version=.*$,application/product_version=\"{{ game_version }}.{{ datetime }}\",g" ./export_presets.cfg + sed -i "s,application/version=.*$,application/version=\"{{ game_version }}\",g" ./export_presets.cfg + sed -i "s,application/short_version=.*$,application/short_version=\"{{ short_version }}\",g" ./export_presets.cfg + + echo "Update version in the project.godot" + sed -i "s,config/version=.*$,config/version=\"{{ game_version }}\",g" ./project.godot + +[private] +pre-export: clean-addons makedirs bump-version install-addons import-resources + +# Export game on Windows +export-windows: pre-export + mkdir -p {{ build_dir }}/windows + just godot --headless --export-release '"Windows Desktop"' {{ build_dir }}/windows/{{ game_name }}.exe + (cd {{ build_dir }}/windows && zip {{ game_name }}-windows-v{{ game_version }}.zip -r .) + mv {{ build_dir }}/windows/{{ game_name }}-windows-v{{ game_version }}.zip {{ dist_dir }}/{{ game_name }}-windows-v{{ game_version }}.zip + rm -rf {{ build_dir }}/windows + +# Export game on MacOS +export-mac: pre-export + just godot --headless --export-release "macOS" {{ dist_dir }}/{{ game_name }}-mac-v{{ game_version }}.zip + +# Export game on Linux +export-linux: pre-export + mkdir -p {{ build_dir }}/linux + just godot --headless --export-release "Linux/X11" {{ build_dir }}/linux/{{ game_name }}.x86_64 + (cd {{ build_dir }}/linux && zip {{ game_name }}-linux-v{{ game_version }}.zip -r .) + mv {{ build_dir }}/linux/{{ game_name }}-linux-v{{ game_version }}.zip {{ dist_dir }}/{{ game_name }}-linux-v{{ game_version }}.zip + rm -rf {{ build_dir }}/linux + +# Export game for the web +export-web: pre-export + mkdir -p {{ build_dir }}/web + just godot --headless --export-release "Web" {{ build_dir }}/web/index.html + +# Export on all platform +export: export-windows export-mac export-linux + +# === Clean === +# +# Recipes for cleaning up the project, removing files and folders created by this Justfile. + +# Remove game plugins +clean-addons: + rm -rf .plugged + [ -f plug.gd ] && (cd addons/ && git clean -f -X -d) || true + +# Remove files created by Godot +clean-resources: + rm -rf .godot + +# Remove files created during the export +clean-export: + rm -rf {{ build_dir }} {{ dist_dir }} + +# Remove any unnecessary files +clean: clean-addons clean-resources clean-export + +# === CI === +# +# Recipes triggered by CI steps. +# Can be run locally but requires setup of environment variables. + +# Add some variables to Github env +ci-load-dotenv: + echo "godot_version={{ godot_version }}" >> $GITHUB_ENV + echo "game_name={{ game_name }}" >> $GITHUB_ENV + echo "game_version={{ game_version }}" >> $GITHUB_ENV + +# Upload the game on Github and Itch.io +ci-publish: + gh release create "{{ game_version }}" --title="v{{ game_version }}" --generate-notes {{ dist_dir }}/* + just butler push {{ dist_dir }}/{{ game_name }}-windows-v{{ game_version }}.zip mechanical-flower/{{ game_itchio_key }}:windows --userversion {{ game_version }} + just butler push {{ dist_dir }}/{{ game_name }}-mac-v{{ game_version }}.zip mechanical-flower/{{ game_itchio_key }}:mac --userversion {{ game_version }} + just butler push {{ dist_dir }}/{{ game_name }}-linux-v{{ game_version }}.zip mechanical-flower/{{ game_itchio_key }}:linux --userversion {{ game_version }} diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..a5abbf3 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,7 @@ +Copyright © 2024-present Florian Vazelle + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/addons/export-build-info/build_info.gd b/addons/export-build-info/build_info.gd new file mode 100644 index 0000000..c4bc315 --- /dev/null +++ b/addons/export-build-info/build_info.gd @@ -0,0 +1,19 @@ +const BUILD_INFO_VERSION := "application/config/version" +const BUILD_INFO_COMMIT := "custom_options/build_info/commit" +const BUILD_INFO_DATE := "custom_options/build_info/date" + + +static func setup_build_info_settings(): + var output := [] + + # Commit Hash + OS.execute("git", ["log", '--pretty=format:"%H"', "-1"], output, false) + output[0] = output[0].trim_suffix("\n") + ProjectSettings.set_as_internal(BUILD_INFO_COMMIT, true) + ProjectSettings.set_setting(BUILD_INFO_COMMIT, output[0]) + + # Datetime + OS.execute("date", ["+%Y/%m/%d"], output, false) + output[1] = output[1].trim_suffix("\n") + ProjectSettings.set_as_internal(BUILD_INFO_DATE, true) + ProjectSettings.set_setting(BUILD_INFO_DATE, output[1]) diff --git a/addons/export-build-info/export_plugin.gd b/addons/export-build-info/export_plugin.gd new file mode 100644 index 0000000..a1db813 --- /dev/null +++ b/addons/export-build-info/export_plugin.gd @@ -0,0 +1,7 @@ +extends EditorExportPlugin + +const BuildInfo := preload("res://addons/export-build-info/build_info.gd") + + +func _export_begin(_features, _is_debug, _path, _flags) -> void: + BuildInfo.setup_build_info_settings() diff --git a/addons/export-build-info/label.gd b/addons/export-build-info/label.gd new file mode 100644 index 0000000..9048772 --- /dev/null +++ b/addons/export-build-info/label.gd @@ -0,0 +1,15 @@ +@tool +extends Label + +const BuildInfo := preload("res://addons/export-build-info/build_info.gd") + + +func _ready(): + var build_version = ProjectSettings.get_setting(BuildInfo.BUILD_INFO_VERSION) + var build_commit = ProjectSettings.get_setting(BuildInfo.BUILD_INFO_COMMIT) + var build_date = ProjectSettings.get_setting(BuildInfo.BUILD_INFO_DATE) + + if build_version and build_commit and build_date: + set_text("v%s @ %s\n%s" % [build_version, build_commit.left(7), build_date]) + else: + set_text("") diff --git a/addons/export-build-info/plugin.cfg b/addons/export-build-info/plugin.cfg new file mode 100644 index 0000000..c89fddd --- /dev/null +++ b/addons/export-build-info/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="build_info" +description="" +author="florianvazelle" +version="0.0.0" +script="plugin.gd" diff --git a/addons/export-build-info/plugin.gd b/addons/export-build-info/plugin.gd new file mode 100644 index 0000000..3d3b081 --- /dev/null +++ b/addons/export-build-info/plugin.gd @@ -0,0 +1,17 @@ +@tool +extends EditorPlugin + +const BuildInfo := preload("res://addons/export-build-info/build_info.gd") + +var export_plugin := preload("res://addons/export-build-info/export_plugin.gd").new() + + +func _enter_tree(): + add_export_plugin(export_plugin) + + if Engine.is_editor_hint(): + BuildInfo.setup_build_info_settings() + + +func _exit_tree(): + remove_export_plugin(export_plugin) diff --git a/addons/gd-plug/plug.gd b/addons/gd-plug/plug.gd new file mode 100644 index 0000000..7ebf0ef --- /dev/null +++ b/addons/gd-plug/plug.gd @@ -0,0 +1,1015 @@ +@tool +extends SceneTree + +signal updated(plugin) + +const VERSION = "0.2.5" +const DEFAULT_PLUGIN_URL = "https://git::@github.com/%s.git" +const DEFAULT_PLUG_DIR = "res://.plugged" +const DEFAULT_CONFIG_PATH = DEFAULT_PLUG_DIR + "/index.cfg" +const DEFAULT_USER_PLUG_SCRIPT_PATH = "res://plug.gd" +const DEFAULT_BASE_PLUG_SCRIPT_PATH = "res://addons/gd-plug/plug.gd" + +const ENV_PRODUCTION = "production" +const ENV_TEST = "test" +const ENV_FORCE = "force" +const ENV_KEEP_IMPORT_FILE = "keep_import_file" +const ENV_KEEP_IMPORT_RESOURCE_FILE = "keep_import_resource_file" + +const MSG_PLUG_START_ASSERTION = "_plug_start() must be called first" + +var project_dir +var installation_config = ConfigFile.new() +var logger = _Logger.new() + +var _installed_plugins +var _plugged_plugins = {} + +var _threads = [] +var _mutex = Mutex.new() +var _start_time = 0 +var threadpool = _ThreadPool.new(logger) + + +func _init(): + threadpool.connect("all_thread_finished", request_quit) + project_dir = DirAccess.open("res://") + +func _initialize(): + var args = OS.get_cmdline_args() + # Trim unwanted args passed to godot executable + for arg in Array(args): + args.remove_at(0) + if "plug.gd" in arg: + break + + for arg in args: + # NOTE: "--key" or "-key" will always be consumed by godot executable, see https://github.com/godotengine/godot/issues/8721 + var key = arg.to_lower() + match key: + "detail": + logger.log_format = _Logger.DEFAULT_LOG_FORMAT_DETAIL + "debug", "d": + logger.log_level = _Logger.LogLevel.DEBUG + "quiet", "q", "silent": + logger.log_level = _Logger.LogLevel.NONE + "production": + OS.set_environment(ENV_PRODUCTION, "true") + "test": + OS.set_environment(ENV_TEST, "true") + "force": + OS.set_environment(ENV_FORCE, "true") + "keep-import-file": + OS.set_environment(ENV_KEEP_IMPORT_FILE, "true") + "keep-import-resource-file": + OS.set_environment(ENV_KEEP_IMPORT_RESOURCE_FILE, "true") + + logger.debug("cmdline_args: %s" % args) + _start_time = Time.get_ticks_msec() + _plug_start() + if args.size() > 0: + _plugging() + match args[0]: + "init": + _plug_init() + "install", "update": + _plug_install() + "uninstall": + _plug_uninstall() + "clean": + _plug_clean() + "upgrade": + _plug_upgrade() + "status": + _plug_status() + "version": + logger.info(VERSION) + _: + logger.error("Unknown command %s" % args[0]) + # NOTE: Do no put anything after this line except request_quit(), as _plug_*() may call request_quit() + request_quit() + +func _process(delta): + threadpool.process(delta) + +func _finalize(): + _plug_end() + threadpool.stop() + logger.info("Finished, elapsed %.3fs" % ((Time.get_ticks_msec() - _start_time) / 1000.0)) + +func _on_updated(plugin): + pass + +func _plugging(): + pass + +func request_quit(exit_code=-1): + if threadpool.is_all_thread_finished() and threadpool.is_all_task_finished(): + quit(exit_code) + return true + logger.debug("Request quit declined, threadpool is still running") + return false + +# Index installed plugins, or create directory "plugged" if not exists +func _plug_start(): + logger.debug("Plug start") + if not project_dir.dir_exists(DEFAULT_PLUG_DIR): + if project_dir.make_dir(ProjectSettings.globalize_path(DEFAULT_PLUG_DIR)) == OK: + logger.debug("Make dir %s for plugin installation") + if installation_config.load(DEFAULT_CONFIG_PATH) == OK: + logger.debug("Installation config loaded") + else: + logger.debug("Installation config not found") + _installed_plugins = installation_config.get_value("plugin", "installed", {}) + +# Install plugin or uninstall plugin if unlisted +func _plug_end(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + var test = !OS.get_environment(ENV_TEST).is_empty() + if not test: + installation_config.set_value("plugin", "installed", _installed_plugins) + if installation_config.save(DEFAULT_CONFIG_PATH) == OK: + logger.debug("Plugged config saved") + else: + logger.error("Failed to save plugged config") + else: + logger.warn("Skipped saving of plugged config in test mode") + _installed_plugins = null + +func _plug_init(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + logger.info("Init gd-plug...") + if FileAccess.file_exists(DEFAULT_USER_PLUG_SCRIPT_PATH): + logger.warn("%s already exists!" % DEFAULT_USER_PLUG_SCRIPT_PATH) + else: + var file = FileAccess.open(DEFAULT_USER_PLUG_SCRIPT_PATH, FileAccess.WRITE) + file.store_string(INIT_PLUG_SCRIPT) + file.close() + logger.info("Created %s" % DEFAULT_USER_PLUG_SCRIPT_PATH) + +func _plug_install(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Installing...") + for plugin in _plugged_plugins.values(): + var installed = plugin.name in _installed_plugins + if installed: + var installed_plugin = get_installed_plugin(plugin.name) + if (installed_plugin.dev or plugin.dev) and OS.get_environment(ENV_PRODUCTION): + logger.info("Remove dev plugin for production: %s" % plugin.name) + threadpool.enqueue_task(uninstall_plugin.bind(installed_plugin)) + else: + threadpool.enqueue_task(update_plugin.bind(plugin)) + else: + threadpool.enqueue_task(install_plugin.bind(plugin)) + + var removed_plugins = [] + for plugin in _installed_plugins.values(): + var removed = not (plugin.name in _plugged_plugins) + if removed: + removed_plugins.append(plugin) + if removed_plugins: + threadpool.disconnect("all_thread_finished", request_quit) + if not threadpool.is_all_thread_finished(): + threadpool.active = true + await threadpool.all_thread_finished + threadpool.active = false + logger.debug("All installation finished! Ready to uninstall removed plugins...") + threadpool.connect("all_thread_finished", request_quit) + for plugin in removed_plugins: + threadpool.enqueue_task(uninstall_plugin.bind(plugin), Thread.PRIORITY_LOW) + threadpool.active = true + +func _plug_uninstall(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Uninstalling...") + for plugin in _installed_plugins.values(): + var installed_plugin = get_installed_plugin(plugin.name) + threadpool.enqueue_task(uninstall_plugin.bind(installed_plugin), Thread.PRIORITY_LOW) + threadpool.active = true + +func _plug_clean(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Cleaning...") + var plugged_dir = DirAccess.open(DEFAULT_PLUG_DIR) + plugged_dir.include_hidden = true + plugged_dir.list_dir_begin() # TODOGODOT4 fill missing arguments https://github.com/godotengine/godot/pull/40547 + var file = plugged_dir.get_next() + while not file.is_empty(): + if plugged_dir.current_is_dir(): + if not (file in _installed_plugins): + logger.info("Remove %s" % file) + threadpool.enqueue_task(directory_delete_recursively.bind(plugged_dir.get_current_dir() + "/" + file)) + file = plugged_dir.get_next() + plugged_dir.list_dir_end() + threadpool.active = true + +func _plug_upgrade(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Upgrading gd-plug...") + plug("imjp94/gd-plug") + var gd_plug = _plugged_plugins["gd-plug"] + OS.set_environment(ENV_FORCE, "true") # Required to overwrite res://addons/gd-plug/plug.gd + threadpool.enqueue_task(install_plugin.bind(gd_plug)) + threadpool.disconnect("all_thread_finished", request_quit) + if not threadpool.is_all_thread_finished(): + threadpool.active = true + await threadpool.all_thread_finished + threadpool.active = false + logger.debug("All installation finished! Ready to uninstall removed plugins...") + threadpool.connect("all_thread_finished", request_quit) + threadpool.enqueue_task(directory_delete_recursively.bind(gd_plug.plug_dir)) + threadpool.active = true + +func _plug_status(): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + threadpool.active = false + logger.info("Installed %d plugin%s" % [_installed_plugins.size(), "s" if _installed_plugins.size() > 1 else ""]) + var new_plugins = _plugged_plugins.duplicate() + var has_checking_plugin = false + var removed_plugins = [] + for plugin in _installed_plugins.values(): + logger.info("- {name} - {url}".format(plugin)) + new_plugins.erase(plugin.name) + var removed = not (plugin.name in _plugged_plugins) + if removed: + removed_plugins.append(plugin) + else: + threadpool.enqueue_task(check_plugin.bind(_plugged_plugins[plugin.name])) + has_checking_plugin = true + if has_checking_plugin: + logger.info("\n", true) + threadpool.disconnect("all_thread_finished", request_quit) + threadpool.active = true + await threadpool.all_thread_finished + threadpool.active = false + threadpool.connect("all_thread_finished", request_quit) + logger.debug("Finished checking plugins, ready to proceed") + if new_plugins: + logger.info("\nPlugged %d plugin%s" % [new_plugins.size(), "s" if new_plugins.size() > 1 else ""]) + for plugin in new_plugins.values(): + var is_new = not (plugin.name in _installed_plugins) + if is_new: + logger.info("- {name} - {url}".format(plugin)) + if removed_plugins: + logger.info("\nUnplugged %d plugin%s" % [removed_plugins.size(), "s" if removed_plugins.size() > 1 else ""]) + for plugin in removed_plugins: + logger.info("- %s removed" % plugin.name) + var plug_directory = DirAccess.open(DEFAULT_PLUG_DIR) + var orphan_dirs = [] + if plug_directory.get_open_error() == OK: + plug_directory.list_dir_begin() # TODOGODOT4 fill missing arguments https://github.com/godotengine/godot/pull/40547 + var file = plug_directory.get_next() + while not file.is_empty(): + if plug_directory.current_is_dir(): + if not (file in _installed_plugins): + orphan_dirs.append(file) + file = plug_directory.get_next() + plug_directory.list_dir_end() + if orphan_dirs: + logger.info("\nOrphan directory, %d found in %s, execute \"clean\" command to remove" % [orphan_dirs.size(), DEFAULT_PLUG_DIR]) + for dir in orphan_dirs: + logger.info("- %s" % dir) + threadpool.active = true + + if has_checking_plugin: + request_quit() + +# Index & validate plugin +func plug(repo, args={}): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + repo = repo.strip_edges() + var plugin_name = get_plugin_name_from_repo(repo) + if plugin_name in _plugged_plugins: + logger.info("Plugin already plugged: %s" % plugin_name) + return + var plugin = {} + plugin.name = plugin_name + plugin.url = "" + if ":" in repo: + plugin.url = repo + elif repo.find("/") == repo.rfind("/"): + plugin.url = DEFAULT_PLUGIN_URL % repo + else: + logger.error("Invalid repo: %s" % repo) + plugin.plug_dir = DEFAULT_PLUG_DIR + "/" + plugin.name + + var is_valid = true + plugin.include = args.get("include", []) + is_valid = is_valid and validate_var_type(plugin, "include", TYPE_ARRAY, "Array") + plugin.exclude = args.get("exclude", []) + is_valid = is_valid and validate_var_type(plugin, "exclude", TYPE_ARRAY, "Array") + plugin.branch = args.get("branch", "") + is_valid = is_valid and validate_var_type(plugin, "branch", TYPE_STRING, "String") + plugin.tag = args.get("tag", "") + is_valid = is_valid and validate_var_type(plugin, "tag", TYPE_STRING, "String") + plugin.commit = args.get("commit", "") + is_valid = is_valid and validate_var_type(plugin, "commit", TYPE_STRING, "String") + if not plugin.commit.is_empty(): + var is_valid_commit = plugin.commit.length() == 40 + if not is_valid_commit: + logger.error("Expected full length 40 digits commit-hash string, given %s" % plugin.commit) + is_valid = is_valid and is_valid_commit + plugin.dev = args.get("dev", false) + is_valid = is_valid and validate_var_type(plugin, "dev", TYPE_BOOL, "Boolean") + plugin.on_updated = args.get("on_updated", "") + is_valid = is_valid and validate_var_type(plugin, "on_updated", TYPE_STRING, "String") + plugin.install_root = args.get("install_root", "") + is_valid = is_valid and validate_var_type(plugin, "install_root", TYPE_STRING, "String") + + if is_valid: + _plugged_plugins[plugin.name] = plugin + logger.debug("Plug: %s" % plugin) + else: + logger.error("Failed to plug %s, validation error" % plugin.name) + +func install_plugin(plugin): + var test = !OS.get_environment(ENV_TEST).is_empty() + var can_install = OS.get_environment(ENV_PRODUCTION).is_empty() if plugin.dev else true + if can_install: + logger.info("Installing plugin %s..." % plugin.name) + var result = is_plugin_downloaded(plugin) + if result != OK: + result = downlaod(plugin) + else: + logger.info("Plugin already downloaded") + + if result == OK: + install(plugin) + else: + logger.error("Failed to install plugin %s with error code %d" % [plugin.name, result]) + +func uninstall_plugin(plugin): + var test = !OS.get_environment(ENV_TEST).is_empty() + logger.info("Uninstalling plugin %s..." % plugin.name) + uninstall(plugin) + directory_delete_recursively(plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test}) + +func update_plugin(plugin, checking=false): + if not (plugin.name in _installed_plugins): + logger.info("%s new plugin" % plugin.name) + return true + + var git = _GitExecutable.new(ProjectSettings.globalize_path(plugin.plug_dir), logger) + var installed_plugin = get_installed_plugin(plugin.name) + var changes = compare_plugins(plugin, installed_plugin) + var should_clone = false + var should_pull = false + var should_reinstall = false + + if plugin.tag or plugin.commit: + for rev in ["tag", "commit"]: + var freeze_at = plugin[rev] + if freeze_at: + logger.info("%s frozen at %s \"%s\"" % [plugin.name, rev, freeze_at]) + break + else: + var ahead_behind = [] + if git.fetch("origin " + plugin.branch if plugin.branch else "origin").exit == OK: + ahead_behind = git.get_commit_comparison("HEAD", "origin/" + plugin.branch if plugin.branch else "origin") + var is_commit_behind = !!ahead_behind[1] if ahead_behind.size() == 2 else false + if is_commit_behind: + logger.info("%s %d commits behind, update required" % [plugin.name, ahead_behind[1]]) + should_pull = true + else: + logger.info("%s up to date" % plugin.name) + + if changes: + logger.info("%s changed %s" % [plugin.name, changes]) + should_reinstall = true + if "url" in changes or "branch" in changes or "tag" in changes or "commit" in changes: + logger.info("%s repository setting changed, update required" % plugin.name) + should_clone = true + + if not checking: + if should_clone: + logger.info("%s cloning from %s..." % [plugin.name, plugin.url]) + var test = !OS.get_environment(ENV_TEST).is_empty() + uninstall(get_installed_plugin(plugin.name)) + directory_delete_recursively(plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test}) + if downlaod(plugin) == OK: + install(plugin) + elif should_pull: + logger.info("%s pulling updates from %s..." % [plugin.name, plugin.url]) + uninstall(get_installed_plugin(plugin.name)) + if git.pull().exit == OK: + install(plugin) + elif should_reinstall: + logger.info("%s reinstalling..." % plugin.name) + uninstall(get_installed_plugin(plugin.name)) + install(plugin) + +func check_plugin(plugin): + update_plugin(plugin, true) + +func downlaod(plugin): + logger.info("Downloading %s from %s..." % [plugin.name, plugin.url]) + var test = !OS.get_environment(ENV_TEST).is_empty() + var global_dest_dir = ProjectSettings.globalize_path(plugin.plug_dir) + if project_dir.dir_exists(plugin.plug_dir): + directory_delete_recursively(plugin.plug_dir) + project_dir.make_dir(plugin.plug_dir) + var result = _GitExecutable.new(global_dest_dir, logger).clone(plugin.url, global_dest_dir, {"branch": plugin.branch, "tag": plugin.tag, "commit": plugin.commit}) + if result.exit == OK: + logger.info("Successfully download %s" % [plugin.name]) + else: + logger.info("Failed to download %s" % plugin.name) + # Make sure plug_dir is clean when failed + directory_delete_recursively(plugin.plug_dir, {"exclude": [DEFAULT_CONFIG_PATH], "test": test}) + project_dir.remove(plugin.plug_dir) # Remove empty directory + return result.exit + +func install(plugin): + var include = plugin.get("include", []) + if include.is_empty(): # Auto include "addons/" folder if not explicitly specified + include = ["addons/"] + if OS.get_environment(ENV_FORCE).is_empty() and OS.get_environment(ENV_TEST).is_empty(): + var is_exists = false + var dest_files = directory_copy_recursively(plugin.plug_dir, "res://" + plugin.install_root, {"include": include, "exclude": plugin.exclude, "test": true, "silent_test": true}) + for dest_file in dest_files: + if project_dir.file_exists(dest_file): + logger.warn("%s attempting to overwrite file %s" % [plugin.name, dest_file]) + is_exists = true + if is_exists: + logger.warn("Installation of %s terminated to avoid overwriting user files, you may disable safe mode with command \"force\"" % plugin.name) + return ERR_ALREADY_EXISTS + + logger.info("Installing files for %s..." % plugin.name) + var test = !OS.get_environment(ENV_TEST).is_empty() + var dest_files = directory_copy_recursively(plugin.plug_dir, "res://" + plugin.install_root, {"include": include, "exclude": plugin.exclude, "test": test}) + plugin.dest_files = dest_files + logger.info("Installed %d file%s for %s" % [dest_files.size(), "s" if dest_files.size() > 1 else "", plugin.name]) + if plugin.name != "gd-plug": + set_installed_plugin(plugin) + if plugin.on_updated: + if has_method(plugin.on_updated): + logger.info("Execute post-update function for %s" % plugin.name) + _on_updated(plugin) + call(plugin.on_updated, plugin.duplicate()) + emit_signal("updated", plugin) + return OK + +func uninstall(plugin): + var test = !OS.get_environment(ENV_TEST).is_empty() + var keep_import_file = !OS.get_environment(ENV_KEEP_IMPORT_FILE).is_empty() + var keep_import_resource_file = !OS.get_environment(ENV_KEEP_IMPORT_RESOURCE_FILE).is_empty() + var dest_files = plugin.get("dest_files", []) + logger.info("Uninstalling %d file%s for %s..." % [dest_files.size(), "s" if dest_files.size() > 1 else "",plugin.name]) + directory_remove_batch(dest_files, {"test": test, "keep_import_file": keep_import_file, "keep_import_resource_file": keep_import_resource_file}) + logger.info("Uninstalled %d file%s for %s" % [dest_files.size(), "s" if dest_files.size() > 1 else "",plugin.name]) + remove_installed_plugin(plugin.name) + +func is_plugin_downloaded(plugin): + if not project_dir.dir_exists(plugin.plug_dir + "/.git"): + return + + var git = _GitExecutable.new(ProjectSettings.globalize_path(plugin.plug_dir), logger) + return git.is_up_to_date(plugin) + +# Get installed plugin, thread safe +func get_installed_plugin(plugin_name): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + _mutex.lock() + var installed_plugin = _installed_plugins[plugin_name] + _mutex.unlock() + return installed_plugin + +# Set installed plugin, thread safe +func set_installed_plugin(plugin): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + _mutex.lock() + _installed_plugins[plugin.name] = plugin + _mutex.unlock() + +# Remove installed plugin, thread safe +func remove_installed_plugin(plugin_name): + assert(_installed_plugins != null, MSG_PLUG_START_ASSERTION) + _mutex.lock() + var result = _installed_plugins.erase(plugin_name) + _mutex.unlock() + return result + +func directory_copy_recursively(from, to, args={}): + var include = args.get("include", []) + var exclude = args.get("exclude", []) + var test = args.get("test", false) + var silent_test = args.get("silent_test", false) + var dir = DirAccess.open(from) + dir.include_hidden = true + var dest_files = [] + if dir.get_open_error() == OK: + dir.list_dir_begin() # TODOGODOT4 fill missing arguments https://github.com/godotengine/godot/pull/40547 + var file_name = dir.get_next() + while not file_name.is_empty(): + var source = dir.get_current_dir() + ("/" if dir.get_current_dir() != "res://" else "") + file_name + var dest = to + ("/" if to != "res://" else "") + file_name + + if dir.current_is_dir(): + dest_files += directory_copy_recursively(source, dest, args) + else: + for include_key in include: + if include_key in source: + var is_excluded = false + for exclude_key in exclude: + if exclude_key in source: + is_excluded = true + break + if not is_excluded: + if test: + if not silent_test: logger.warn("[TEST] Writing to %s" % dest) + else: + dir.make_dir_recursive(to) + if dir.copy(source, dest) == OK: + logger.debug("Copy from %s to %s" % [source, dest]) + dest_files.append(dest) + break + file_name = dir.get_next() + dir.list_dir_end() + else: + logger.error("Failed to access path: %s" % from) + + return dest_files + +func directory_delete_recursively(dir_path, args={}): + var remove_empty_directory = args.get("remove_empty_directory", true) + var exclude = args.get("exclude", []) + var test = args.get("test", false) + var silent_test = args.get("silent_test", false) + var dir = DirAccess.open(dir_path) + dir.include_hidden = true + if dir.get_open_error() == OK: + dir.list_dir_begin() # TODOGODOT4 fill missing arguments https://github.com/godotengine/godot/pull/40547 + var file_name = dir.get_next() + while not file_name.is_empty(): + var source = dir.get_current_dir() + ("/" if dir.get_current_dir() != "res://" else "") + file_name + + if dir.current_is_dir(): + var sub_dir = directory_delete_recursively(source, args) + if remove_empty_directory: + if test: + if not silent_test: logger.warn("[TEST] Remove empty directory: %s" % sub_dir.get_current_dir()) + else: + if source.get_file() == ".git": + var empty_dir_path = ProjectSettings.globalize_path(source) + var exit = FAILED + match OS.get_name(): + "Windows": + empty_dir_path = "\"%s\"" % empty_dir_path + empty_dir_path = empty_dir_path.replace("/", "\\") + var cmd = "rd /s /q %s" % empty_dir_path + exit = OS.execute("cmd", ["/C", cmd]) + "X11", "OSX", "Server": + empty_dir_path = "\'%s\'" % empty_dir_path + var cmd = "rm -rf %s" % empty_dir_path + exit = OS.execute("bash", ["-c", cmd]) + # Hacks to remove .git, as git pack files stop it from being removed + # See https://stackoverflow.com/questions/1213430/how-to-fully-delete-a-git-repository-created-with-init + if exit == OK: + logger.debug("Remove empty directory: %s" % sub_dir.get_current_dir()) + else: + logger.debug("Failed to remove empty directory: %s" % sub_dir.get_current_dir()) + else: + if dir.remove(sub_dir.get_current_dir()) == OK: + logger.debug("Remove empty directory: %s" % sub_dir.get_current_dir()) + else: + var excluded = false + for exclude_key in exclude: + if source in exclude_key: + excluded = true + break + if not excluded: + if test: + if not silent_test: logger.warn("[TEST] Remove file: %s" % source) + else: + if dir.remove(file_name) == OK: + logger.debug("Remove file: %s" % source) + file_name = dir.get_next() + dir.list_dir_end() + else: + logger.error("Failed to access path: %s" % dir_path) + + if remove_empty_directory: + dir.remove(dir.get_current_dir()) + + return dir + +func directory_remove_batch(files, args={}): + var remove_empty_directory = args.get("remove_empty_directory", true) + var keep_import_file = args.get("keep_import_file", false) + var keep_import_resource_file = args.get("keep_import_resource_file", false) + var test = args.get("test", false) + var silent_test = args.get("silent_test", false) + var dirs = {} + for file in files: + var file_dir = file.get_base_dir() + var file_name =file.get_file() + var dir = dirs.get(file_dir) + + if not dir: + dir = DirAccess.open(file_dir) + dirs[file_dir] = dir + + if file.ends_with(".import"): + if not keep_import_file: + _remove_import_file(dir, file, keep_import_resource_file, test, silent_test) + else: + if test: + if not silent_test: logger.warn("[TEST] Remove file: " + file) + else: + if dir.remove(file_name) == OK: + logger.debug("Remove file: " + file) + if not keep_import_file: + _remove_import_file(dir, file + ".import", keep_import_resource_file, test, silent_test) + + for dir in dirs.values(): + var slash_count = dir.get_current_dir().count("/") - 2 # Deduct 2 slash from "res://" + if test: + if not silent_test: logger.warn("[TEST] Remove empty directory: %s" % dir.get_current_dir()) + else: + if dir.remove(dir.get_current_dir()) == OK: + logger.debug("Remove empty directory: %s" % dir.get_current_dir()) + # Dumb method to clean empty ancestor directories + logger.debug("Removing emoty ancestor directory for %s..." % dir.get_current_dir()) + var current_dir = dir.get_current_dir() + for i in slash_count: + current_dir = current_dir.get_base_dir() + var d = DirAccess.open(current_dir) + if d.get_open_error() == OK: + if test: + if not silent_test: logger.warn("[TEST] Remove empty ancestor directory: %s" % d.get_current_dir()) + else: + if d.remove(d.get_current_dir()) == OK: + logger.debug("Remove empty ancestor directory: %s" % d.get_current_dir()) + +func _remove_import_file(dir, file, keep_import_resource_file=false, test=false, silent_test=false): + if not dir.file_exists(file): + return + + if not keep_import_resource_file: + var import_config = ConfigFile.new() + if import_config.load(file) == OK: + var metadata = import_config.get_value("remap", "metadata", {}) + var imported_formats = metadata.get("imported_formats", []) + if imported_formats: + for format in imported_formats: + _remove_import_resource_file(dir, import_config, "." + format, test) + else: + _remove_import_resource_file(dir, import_config, "", test) + if test: + if not silent_test: logger.warn("[TEST] Remove import file: " + file) + else: + if dir.remove(file) == OK: + logger.debug("Remove import file: " + file) + else: + # TODO: Sometimes Directory.remove() unable to remove random .import file and return error code 1(Generic Error) + # Maybe enforce the removal from shell? + logger.warn("Failed to remove import file: " + file) + +func _remove_import_resource_file(dir, import_config, import_format="", test=false): + var import_resource_file = import_config.get_value("remap", "path" + import_format, "") + var checksum_file = import_resource_file.trim_suffix("." + import_resource_file.get_extension()) + ".md5" if import_resource_file else "" + if import_resource_file: + if dir.file_exists(import_resource_file): + if test: + logger.info("[IMPORT] Remove import resource file: " + import_resource_file) + else: + if dir.remove(import_resource_file) == OK: + logger.debug("Remove import resource file: " + import_resource_file) + if checksum_file: + checksum_file = checksum_file.replace(import_format, "") + if dir.file_exists(checksum_file): + if test: + logger.info("[IMPORT] Remove import checksum file: " + checksum_file) + else: + if dir.remove(checksum_file) == OK: + logger.debug("Remove import checksum file: " + checksum_file) + +func compare_plugins(p1, p2): + var changed_keys = [] + for key in p1.keys(): + var v1 = p1[key] + var v2 = p2[key] + if v1 != v2: + changed_keys.append(key) + return changed_keys + +func get_plugin_name_from_repo(repo): + repo = repo.replace(".git", "").trim_suffix("/") + return repo.get_file() + +func validate_var_type(obj, var_name, type, type_string): + var value = obj.get(var_name) + var is_valid = typeof(value) == type + if not is_valid: + logger.error("Expected variable \"%s\" to be %s, given %s" % [var_name, type_string, value]) + return is_valid + +const INIT_PLUG_SCRIPT = \ +"""extends "res://addons/gd-plug/plug.gd" + +func _plugging(): + # Declare plugins with plug(repo, args) + # For example, clone from github repo("user/repo_name") + # plug("imjp94/gd-YAFSM") # By default, gd-plug will only install anything from "addons/" directory + # Or you can explicitly specify which file/directory to include + # plug("imjp94/gd-YAFSM", {"include": ["addons/"]}) # By default, gd-plug will only install anything from "addons/" directory + pass +""" + +class _GitExecutable extends RefCounted: + var cwd = "" + var logger + + func _init(p_cwd, p_logger): + cwd = p_cwd + logger = p_logger + + func _execute(command, output=[], read_stderr=false): + var cmd = "cd '%s' && %s" % [cwd, command] + # NOTE: OS.execute() seems to ignore read_stderr + var exit = FAILED + match OS.get_name(): + "Windows": + cmd = cmd.replace("\'", "\"") # cmd doesn't accept single-quotes + cmd = cmd if read_stderr else "%s 2> nul" % cmd + logger.debug("Execute \"%s\"" % cmd) + exit = OS.execute("cmd", ["/C", cmd], output, read_stderr) + "macOS", "Linux", "FreeBSD", "NetBSD", "OpenBSD", "BSD": + cmd if read_stderr else "%s 2>/dev/null" % cmd + logger.debug("Execute \"%s\"" % cmd) + exit = OS.execute("bash", ["-c", cmd], output, read_stderr) + var unhandled_os: + logger.error("Unexpected OS: %s" % unhandled_os) + logger.debug("Execution ended(code:%d): %s" % [exit, output]) + return exit + + func init(): + logger.debug("Initializing git at %s..." % cwd) + var output = [] + var exit = _execute("git init", output) + logger.debug("Successfully init" if exit == OK else "Failed to init") + return {"exit": exit, "output": output} + + func clone(src, dest, args={}): + logger.debug("Cloning from %s to %s..." % [src, dest]) + var output = [] + var branch = args.get("branch", "") + var tag = args.get("tag", "") + var commit = args.get("commit", "") + var command = "git clone --depth=1 --progress '%s' '%s'" % [src, dest] + if branch or tag: + command = "git clone --depth=1 --single-branch --branch %s '%s' '%s'" % [branch if branch else tag, src, dest] + elif commit: + return clone_commit(src, dest, commit) + var exit = _execute(command, output) + logger.debug("Successfully cloned from %s" % src if exit == OK else "Failed to clone from %s" % src) + return {"exit": exit, "output": output} + + func clone_commit(src, dest, commit): + var output = [] + if commit.length() < 40: + logger.error("Expected full length 40 digits commit-hash to clone specific commit, given {%s}" % commit) + return {"exit": FAILED, "output": output} + + logger.debug("Cloning from %s to %s @ %s..." % [src, dest, commit]) + var result = init() + if result.exit == OK: + result = remote_add("origin", src) + if result.exit == OK: + result = fetch("%s %s" % ["origin", commit]) + if result.exit == OK: + result = reset("--hard", "FETCH_HEAD") + return result + + func fetch(rm="--all"): + logger.debug("Fetching %s..." % rm.replace("--", "")) + var output = [] + var exit = _execute("git fetch %s" % rm, output) + logger.debug("Successfully fetched" if exit == OK else "Failed to fetch") + return {"exit": exit, "output": output} + + func pull(): + logger.debug("Pulling...") + var output = [] + var exit = _execute("git pull --rebase", output) + logger.debug("Successfully pulled" if exit == OK else "Failed to pull") + return {"exit": exit, "output": output} + + func remote_add(name, src): + logger.debug("Adding remote %s@%s..." % [name, src]) + var output = [] + var exit = _execute("git remote add %s '%s'" % [name, src], output) + logger.debug("Successfully added remote" if exit == OK else "Failed to add remote") + return {"exit": exit, "output": output} + + func reset(mode, to): + logger.debug("Resetting %s %s..." % [mode, to]) + var output = [] + var exit = _execute("git reset %s %s" % [mode, to], output) + logger.debug("Successfully reset" if exit == OK else "Failed to reset") + return {"exit": exit, "output": output} + + func get_commit_comparison(branch_a, branch_b): + var output = [] + var exit = _execute("git rev-list --count --left-right %s...%s" % [branch_a, branch_b], output) + var raw_ahead_behind = output[0].split("\t") + var ahead_behind = [] + for msg in raw_ahead_behind: + ahead_behind.append(msg.to_int()) + return ahead_behind if exit == OK else [] + + func get_current_branch(): + var output = [] + var exit = _execute("git rev-parse --abbrev-ref HEAD", output) + return output[0] if exit == OK else "" + + func get_current_tag(): + var output = [] + var exit = _execute("git describe --tags --exact-match", output) + return output[0] if exit == OK else "" + + func get_current_commit(): + var output = [] + var exit = _execute("git rev-parse --short HEAD", output) + return output[0] if exit == OK else "" + + func is_detached_head(): + var output = [] + var exit = _execute("git rev-parse --short HEAD", output) + return (!!output[0]) if exit == OK else true + + func is_up_to_date(args={}): + if fetch().exit == OK: + var branch = args.get("branch", "") + var tag = args.get("tag", "") + var commit = args.get("commit", "") + + if branch: + if branch == get_current_branch(): + return FAILED if is_detached_head() else OK + elif tag: + if tag == get_current_tag(): + return OK + elif commit: + if commit == get_current_commit(): + return OK + + var ahead_behind = get_commit_comparison("HEAD", "origin") + var is_commit_behind = !!ahead_behind[1] if ahead_behind.size() == 2 else false + return FAILED if is_commit_behind else OK + return FAILED + +class _ThreadPool extends RefCounted: + signal all_thread_finished() + + var active = true + + var _threads = [] + var _finished_threads = [] + var _mutex = Mutex.new() + var _tasks = [] + var logger + + func _init(p_logger): + logger = p_logger + _threads.resize(OS.get_processor_count()) + + func _execute_task(task): + var thread = _get_thread() + var can_execute = thread + if can_execute: + task.thread = weakref(thread) + var callable = task.get("callable") + thread.start(_execute.bind(task), task.priority) + logger.debug("Execute task %s.%s() " % [callable.get_object(), callable.get_method()]) + return can_execute + + func _execute(args): + var callable = args.get("callable") + callable.call() + _mutex.lock() + var thread = args.thread.get_ref() + _threads[_threads.find(thread)] = null + _finished_threads.append(thread) + var all_finished = is_all_thread_finished() + _mutex.unlock() + + logger.debug("Execution finished %s.%s() " % [callable.get_object(), callable.get_method()]) + if all_finished: + logger.debug("All thread finished") + emit_signal("all_thread_finished") + + func _flush_tasks(): + if _tasks.size() == 0: + return + + var executed = true + while executed: + var task = _tasks.pop_front() + if task != null: + executed = _execute_task(task) + if not executed: + _tasks.push_front(task) + else: + executed = false + + func _flush_threads(): + for i in _finished_threads.size(): + var thread = _finished_threads.pop_front() + if not thread.is_alive(): + thread.wait_to_finish() + + func enqueue_task(callable, priority=1): + enqueue({"callable": callable, "priority": priority}) + + func enqueue(task): + var can_execute = false + if active: + can_execute = _execute_task(task) + if not can_execute: + _tasks.append(task) + + func process(delta): + if active: + _flush_tasks() + _flush_threads() + + func stop(): + _tasks.clear() + _flush_threads() + + func _get_thread(): + var thread + for i in OS.get_processor_count(): + var t = _threads[i] + if t: + if not t.is_started(): + thread = t + break + else: + thread = Thread.new() + _threads[i] = thread + break + return thread + + func is_all_thread_finished(): + for i in _threads.size(): + if _threads[i]: + return false + return true + + func is_all_task_finished(): + for i in _tasks.size(): + if _tasks[i]: + return false + return true + +class _Logger extends RefCounted: + enum LogLevel { + ALL, DEBUG, INFO, WARN, ERROR, NONE + } + const DEFAULT_LOG_FORMAT_DETAIL = "[{time}] [{level}] {msg}" + const DEFAULT_LOG_FORMAT_NORMAL = "{msg}" + + var log_level = LogLevel.INFO + var log_format = DEFAULT_LOG_FORMAT_NORMAL + var log_time_format = "{year}/{month}/{day} {hour}:{minute}:{second}" + + func debug(msg, raw=false): + _log(LogLevel.DEBUG, msg, raw) + + func info(msg, raw=false): + _log(LogLevel.INFO, msg, raw) + + func warn(msg, raw=false): + _log(LogLevel.WARN, msg, raw) + + func error(msg, raw=false): + _log(LogLevel.ERROR, msg, raw) + + func _log(level, msg, raw=false): + if log_level <= level: + if raw: + printraw(format_log(level, msg)) + else: + print(format_log(level, msg)) + + func format_log(level, msg): + return log_format.format({ + "time": log_time_format.format(get_formatted_datatime()), + "level": LogLevel.keys()[level], + "msg": msg + }) + + func get_formatted_datatime(): + var datetime = Time.get_datetime_dict_from_system() + datetime.year = "%04d" % datetime.year + datetime.month = "%02d" % datetime.month + datetime.day = "%02d" % datetime.day + datetime.hour = "%02d" % datetime.hour + datetime.minute = "%02d" % datetime.minute + datetime.second = "%02d" % datetime.second + return datetime diff --git a/assets/fonts/ka1.ttf b/assets/fonts/ka1.ttf new file mode 100644 index 0000000..d1df852 Binary files /dev/null and b/assets/fonts/ka1.ttf differ diff --git a/assets/fonts/ka1.ttf.import b/assets/fonts/ka1.ttf.import new file mode 100644 index 0000000..456c5b7 --- /dev/null +++ b/assets/fonts/ka1.ttf.import @@ -0,0 +1,33 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://h2n7gxhuvcw0" +path="res://.godot/imported/ka1.ttf-f94fd73f6e4b266204211ac670a1b03a.fontdata" + +[deps] + +source_file="res://assets/fonts/ka1.ttf" +dest_files=["res://.godot/imported/ka1.ttf-f94fd73f6e4b266204211ac670a1b03a.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/assets/fonts/vcr_osd_mono.001.ttf b/assets/fonts/vcr_osd_mono.001.ttf new file mode 100644 index 0000000..dcca687 Binary files /dev/null and b/assets/fonts/vcr_osd_mono.001.ttf differ diff --git a/assets/fonts/vcr_osd_mono.001.ttf.import b/assets/fonts/vcr_osd_mono.001.ttf.import new file mode 100644 index 0000000..e71580b --- /dev/null +++ b/assets/fonts/vcr_osd_mono.001.ttf.import @@ -0,0 +1,33 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://5ag0am7kcnrb" +path="res://.godot/imported/vcr_osd_mono.001.ttf-5a3ea29920ca20877c4b9fb7ad16b73f.fontdata" + +[deps] + +source_file="res://assets/fonts/vcr_osd_mono.001.ttf" +dest_files=["res://.godot/imported/vcr_osd_mono.001.ttf-5a3ea29920ca20877c4b9fb7ad16b73f.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/assets/models/kenney_car-kit/License.txt b/assets/models/kenney_car-kit/License.txt new file mode 100644 index 0000000..6c7d3fc --- /dev/null +++ b/assets/models/kenney_car-kit/License.txt @@ -0,0 +1,28 @@ + + + Car Kit (2.0) + + Created/distributed by Kenney (www.kenney.nl) + Creation date: 01-05-2024 11:13 + + ------------------------------ + + License: (Creative Commons Zero, CC0) + http://creativecommons.org/publicdomain/zero/1.0/ + + You can use this content for personal, educational, and commercial purposes. + + Support by crediting 'Kenney' or 'www.kenney.nl' (this is not a requirement) + + ------------------------------ + + • Website : www.kenney.nl + • Donate : www.kenney.nl/donate + + • Patreon : patreon.com/kenney + + Follow on social media for updates: + + • Twitter: twitter.com/KenneyNL + • Instagram: instagram.com/kenney_nl + • Mastodon: mastodon.gamedev.place/@kenney diff --git a/assets/models/kenney_car-kit/Models/FBX format/Textures/colormap.png b/assets/models/kenney_car-kit/Models/FBX format/Textures/colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/Textures/colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/Textures/colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/Textures/colormap.png.import new file mode 100644 index 0000000..ae5ff8f --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/Textures/colormap.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://780uqy68rium" +path="res://.godot/imported/colormap.png-f0301cbc55ac52248d97785372e63b84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/Textures/colormap.png" +dest_files=["res://.godot/imported/colormap.png-f0301cbc55ac52248d97785372e63b84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png.import new file mode 100644 index 0000000..580581f --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cml2l21h6bf41" +path.s3tc="res://.godot/imported/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png-f0692e69ea5b47ebb2044af671126745.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png" +dest_files=["res://.godot/imported/ambulance-1d74ca9daea40403f2ac8c59633a4ff8_colormap.png-f0692e69ea5b47ebb2044af671126745.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png.import new file mode 100644 index 0000000..5098821 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6iqdb0ik38hl" +path.s3tc="res://.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png-da1aec616e68c0009e6ce4c3e7bd0071.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png" +dest_files=["res://.godot/imported/ambulance-ab4f68c6d5b3e553563bb3258f5a993c_colormap.png-da1aec616e68c0009e6ce4c3e7bd0071.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/ambulance.fbx b/assets/models/kenney_car-kit/Models/FBX format/ambulance.fbx new file mode 100644 index 0000000..24d5607 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/ambulance.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/ambulance.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/ambulance.fbx.import new file mode 100644 index 0000000..09923c9 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/ambulance.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dk0pf3p1laanl" +path="res://.godot/imported/ambulance.fbx-ab4f68c6d5b3e553563bb3258f5a993c.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/ambulance.fbx" +dest_files=["res://.godot/imported/ambulance.fbx-ab4f68c6d5b3e553563bb3258f5a993c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png.import new file mode 100644 index 0000000..74c02e6 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm702qy2li20p" +path.s3tc="res://.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png-b8b642eaffd28bf996c00befd3527fa2.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png" +dest_files=["res://.godot/imported/box-db9fe304cb98696046fc1de5bfec19b6_colormap.png-b8b642eaffd28bf996c00befd3527fa2.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png.import new file mode 100644 index 0000000..4967c2a --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcqa7lu2x88wb" +path.s3tc="res://.godot/imported/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png-1dc36c46f2c62cfec2cb119f928b9e90.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png" +dest_files=["res://.godot/imported/box-f03e9f8353af3fa29ff2bff727a88f2e_colormap.png-1dc36c46f2c62cfec2cb119f928b9e90.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/box.fbx b/assets/models/kenney_car-kit/Models/FBX format/box.fbx new file mode 100644 index 0000000..8ec53c6 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/box.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/box.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/box.fbx.import new file mode 100644 index 0000000..a5817e1 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/box.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://doy7jts2kjuq2" +path="res://.godot/imported/box.fbx-db9fe304cb98696046fc1de5bfec19b6.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/box.fbx" +dest_files=["res://.godot/imported/box.fbx-db9fe304cb98696046fc1de5bfec19b6.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png.import new file mode 100644 index 0000000..15cd317 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d35h7brfqu4kq" +path.s3tc="res://.godot/imported/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png-c35d2604b3dc221d818357c2fe3f8dcd.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png" +dest_files=["res://.godot/imported/cone-4912e3ef0fa3322d28761a871f1ce5b4_colormap.png-c35d2604b3dc221d818357c2fe3f8dcd.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png.import new file mode 100644 index 0000000..beaebf3 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://358e112ar8mw" +path.s3tc="res://.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png-87e9c9b42252680947aa76887c45c44a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png" +dest_files=["res://.godot/imported/cone-7204c03e2a68a26469cbbca6a21f91d1_colormap.png-87e9c9b42252680947aa76887c45c44a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png.import new file mode 100644 index 0000000..a8f48fc --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp73iw6ah43vq" +path.s3tc="res://.godot/imported/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png-f4df57c0e66445512089d92ddc5ad63e.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png" +dest_files=["res://.godot/imported/cone-flat-56826033cee3ec0df8e67e5630766bf0_colormap.png-f4df57c0e66445512089d92ddc5ad63e.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png.import new file mode 100644 index 0000000..ac3f2f3 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deyl3jwigu1cp" +path.s3tc="res://.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png-e699f5d452dccc206b13edb40d3751bc.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png" +dest_files=["res://.godot/imported/cone-flat-64d4d7fe5fa89a4720b21cea40c5c21d_colormap.png-e699f5d452dccc206b13edb40d3751bc.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-flat.fbx b/assets/models/kenney_car-kit/Models/FBX format/cone-flat.fbx new file mode 100644 index 0000000..7b877eb Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/cone-flat.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone-flat.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/cone-flat.fbx.import new file mode 100644 index 0000000..af34188 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/cone-flat.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ejdyxosbo7s4" +path="res://.godot/imported/cone-flat.fbx-64d4d7fe5fa89a4720b21cea40c5c21d.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/cone-flat.fbx" +dest_files=["res://.godot/imported/cone-flat.fbx-64d4d7fe5fa89a4720b21cea40c5c21d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone.fbx b/assets/models/kenney_car-kit/Models/FBX format/cone.fbx new file mode 100644 index 0000000..4575aec Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/cone.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/cone.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/cone.fbx.import new file mode 100644 index 0000000..8f4433a --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/cone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d28so853u53ai" +path="res://.godot/imported/cone.fbx-7204c03e2a68a26469cbbca6a21f91d1.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/cone.fbx" +dest_files=["res://.godot/imported/cone.fbx-7204c03e2a68a26469cbbca6a21f91d1.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png.import new file mode 100644 index 0000000..9dad17e --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw0ms2glpqynn" +path.s3tc="res://.godot/imported/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png-a1b53292a14e0d14a6520eb991cb10c8.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png" +dest_files=["res://.godot/imported/debris-bolt-0aaee405f79b32718a9a492256392557_colormap.png-a1b53292a14e0d14a6520eb991cb10c8.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png.import new file mode 100644 index 0000000..d94dab9 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqhnud5ykhc1d" +path.s3tc="res://.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png-0f3c0a9cbaa4729a2e2ecf3ea805202f.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png" +dest_files=["res://.godot/imported/debris-bolt-d57e1b72289d548cb67c2f402acfdaa4_colormap.png-0f3c0a9cbaa4729a2e2ecf3ea805202f.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bolt.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt.fbx new file mode 100644 index 0000000..1f737a4 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bolt.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt.fbx.import new file mode 100644 index 0000000..4f966b1 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-bolt.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dcg4njk4t7pn6" +path="res://.godot/imported/debris-bolt.fbx-d57e1b72289d548cb67c2f402acfdaa4.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-bolt.fbx" +dest_files=["res://.godot/imported/debris-bolt.fbx-d57e1b72289d548cb67c2f402acfdaa4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png.import new file mode 100644 index 0000000..ae49fde --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cehs04sswxg6l" +path.s3tc="res://.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png-f43a924acd1c0a316c190b59f62e5d08.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png" +dest_files=["res://.godot/imported/debris-bumper-0a6bef899d7e008595a8524259ab73b5_colormap.png-f43a924acd1c0a316c190b59f62e5d08.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png.import new file mode 100644 index 0000000..f4fbf3a --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b546hlpac7tkc" +path.s3tc="res://.godot/imported/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png-47b2ccd0c1f36f23de22533712af4992.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png" +dest_files=["res://.godot/imported/debris-bumper-e1b0543e7f75691f63f361e4d362347e_colormap.png-47b2ccd0c1f36f23de22533712af4992.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bumper.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper.fbx new file mode 100644 index 0000000..e2775de Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-bumper.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper.fbx.import new file mode 100644 index 0000000..14e22d6 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-bumper.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c7tsnu102xolb" +path="res://.godot/imported/debris-bumper.fbx-0a6bef899d7e008595a8524259ab73b5.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-bumper.fbx" +dest_files=["res://.godot/imported/debris-bumper.fbx-0a6bef899d7e008595a8524259ab73b5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png.import new file mode 100644 index 0000000..bcf0816 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt4abi45fbk2" +path.s3tc="res://.godot/imported/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png-85829824fc0c1bdf155547028809749a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png" +dest_files=["res://.godot/imported/debris-door-459df79c10baf626aa1ec8d82e803bc2_colormap.png-85829824fc0c1bdf155547028809749a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png.import new file mode 100644 index 0000000..980f3d8 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dothsben8m1s2" +path.s3tc="res://.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png-6a1beb19684637ef9d22fee8459287cf.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png" +dest_files=["res://.godot/imported/debris-door-535e0f30f491a0784d8c9d704f288e51_colormap.png-6a1beb19684637ef9d22fee8459287cf.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png.import new file mode 100644 index 0000000..eeb201b --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drnsqd10xa28d" +path.s3tc="res://.godot/imported/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png-704a66414a4f55a20b807ac73b3a1e1f.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png" +dest_files=["res://.godot/imported/debris-door-window-6375404ba19c4a3e02d26fe7b2414d09_colormap.png-704a66414a4f55a20b807ac73b3a1e1f.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png.import new file mode 100644 index 0000000..14f53be --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnbckhgeh7783" +path.s3tc="res://.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png-94a314b58da92bef4805e1e9b3f06f3c.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png" +dest_files=["res://.godot/imported/debris-door-window-7c12a3f2a0708dd697f058ec33a4acc8_colormap.png-94a314b58da92bef4805e1e9b3f06f3c.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-window.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window.fbx new file mode 100644 index 0000000..85b4df9 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door-window.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window.fbx.import new file mode 100644 index 0000000..c28a7fa --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-door-window.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dlty5bpmdjdxq" +path="res://.godot/imported/debris-door-window.fbx-7c12a3f2a0708dd697f058ec33a4acc8.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-door-window.fbx" +dest_files=["res://.godot/imported/debris-door-window.fbx-7c12a3f2a0708dd697f058ec33a4acc8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-door.fbx new file mode 100644 index 0000000..aab625b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-door.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-door.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-door.fbx.import new file mode 100644 index 0000000..6443431 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-door.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://by437k3l88sr3" +path="res://.godot/imported/debris-door.fbx-535e0f30f491a0784d8c9d704f288e51.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-door.fbx" +dest_files=["res://.godot/imported/debris-door.fbx-535e0f30f491a0784d8c9d704f288e51.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png.import new file mode 100644 index 0000000..163054f --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cco4apdso8bfm" +path.s3tc="res://.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png-2de8956732649c07a7c1b7e23f98075a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png" +dest_files=["res://.godot/imported/debris-drivetrain-71a1de7a82e5f0b3c8758871676b2754_colormap.png-2de8956732649c07a7c1b7e23f98075a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png.import new file mode 100644 index 0000000..4ae26ea --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp8vndi84e1eh" +path.s3tc="res://.godot/imported/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png-626688ca5a9f31bbc68719595e1a5a54.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png" +dest_files=["res://.godot/imported/debris-drivetrain-7bb323a0a2644257cec0cde17393e0bc_colormap.png-626688ca5a9f31bbc68719595e1a5a54.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png.import new file mode 100644 index 0000000..6430d28 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c74q7dx8uexlt" +path.s3tc="res://.godot/imported/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png-9ac0afb89c7d260e297c99fc530075b3.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png" +dest_files=["res://.godot/imported/debris-drivetrain-axle-c3355971e78f42e528c1ce559c3c8382_colormap.png-9ac0afb89c7d260e297c99fc530075b3.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png.import new file mode 100644 index 0000000..7c521ac --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1y4wtn1dcemn" +path.s3tc="res://.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png-740fe61f516f5b41819a6c4169f82ba3.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png" +dest_files=["res://.godot/imported/debris-drivetrain-axle-c60d445c676130ce7ade989d921bbe4d_colormap.png-740fe61f516f5b41819a6c4169f82ba3.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle.fbx new file mode 100644 index 0000000..c329330 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle.fbx.import new file mode 100644 index 0000000..ae6b8d9 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dx5kgchmxtihn" +path="res://.godot/imported/debris-drivetrain-axle.fbx-c60d445c676130ce7ade989d921bbe4d.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain-axle.fbx" +dest_files=["res://.godot/imported/debris-drivetrain-axle.fbx-c60d445c676130ce7ade989d921bbe4d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain.fbx new file mode 100644 index 0000000..247c295 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain.fbx.import new file mode 100644 index 0000000..e46ec43 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://vk13q8kksxyk" +path="res://.godot/imported/debris-drivetrain.fbx-71a1de7a82e5f0b3c8758871676b2754.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-drivetrain.fbx" +dest_files=["res://.godot/imported/debris-drivetrain.fbx-71a1de7a82e5f0b3c8758871676b2754.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png.import new file mode 100644 index 0000000..b8e7c40 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jfy24uo0sob1" +path.s3tc="res://.godot/imported/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png-5fdf6a92328c82e662164319d17fa656.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png" +dest_files=["res://.godot/imported/debris-nut-83a21bf90e27a7419652d75dbc46d5f4_colormap.png-5fdf6a92328c82e662164319d17fa656.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png.import new file mode 100644 index 0000000..58cf292 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nx60rkjguan" +path.s3tc="res://.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png-a075d1b758382f176f7fff14458d3771.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png" +dest_files=["res://.godot/imported/debris-nut-bf8794044a3af91988fbd2e425ef05cc_colormap.png-a075d1b758382f176f7fff14458d3771.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-nut.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-nut.fbx new file mode 100644 index 0000000..e3e8a83 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-nut.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-nut.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-nut.fbx.import new file mode 100644 index 0000000..16af64a --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-nut.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ddfa0bako2yap" +path="res://.godot/imported/debris-nut.fbx-bf8794044a3af91988fbd2e425ef05cc.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-nut.fbx" +dest_files=["res://.godot/imported/debris-nut.fbx-bf8794044a3af91988fbd2e425ef05cc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png.import new file mode 100644 index 0000000..9f9e5e6 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be2su2oa8024p" +path.s3tc="res://.godot/imported/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png-637348c454b8b217a6c317f31f56b0fb.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png" +dest_files=["res://.godot/imported/debris-plate-a-4ab935edabd02f0f9e2ef019f990b9f4_colormap.png-637348c454b8b217a6c317f31f56b0fb.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png.import new file mode 100644 index 0000000..4f1b1e5 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do5eyxo3vxv33" +path.s3tc="res://.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png-9a2e781aff0c0920f71d1ffbcb1cf782.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png" +dest_files=["res://.godot/imported/debris-plate-a-88374f9a0fe925ef3dd047373211bae4_colormap.png-9a2e781aff0c0920f71d1ffbcb1cf782.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a.fbx new file mode 100644 index 0000000..a9a8edb Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a.fbx.import new file mode 100644 index 0000000..045d93c --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-a.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dpsdjvylcu6r3" +path="res://.godot/imported/debris-plate-a.fbx-88374f9a0fe925ef3dd047373211bae4.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-a.fbx" +dest_files=["res://.godot/imported/debris-plate-a.fbx-88374f9a0fe925ef3dd047373211bae4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png.import new file mode 100644 index 0000000..76fd40e --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h4ogw0wiwt27" +path.s3tc="res://.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png-8169e8f549d03aea7104372826cac319.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png" +dest_files=["res://.godot/imported/debris-plate-b-185005f3d68d37e4c05f701a8b8e6886_colormap.png-8169e8f549d03aea7104372826cac319.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png.import new file mode 100644 index 0000000..bdcc778 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjn1q4cfilegy" +path.s3tc="res://.godot/imported/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png-95b1d24ef53827c534a45e95afed8667.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png" +dest_files=["res://.godot/imported/debris-plate-b-b7251ea5a3fdbf71f77e2548d2360b62_colormap.png-95b1d24ef53827c534a45e95afed8667.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b.fbx new file mode 100644 index 0000000..60b1a34 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b.fbx.import new file mode 100644 index 0000000..5f8232a --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-b.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://biul3xnb21bs5" +path="res://.godot/imported/debris-plate-b.fbx-185005f3d68d37e4c05f701a8b8e6886.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-b.fbx" +dest_files=["res://.godot/imported/debris-plate-b.fbx-185005f3d68d37e4c05f701a8b8e6886.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png.import new file mode 100644 index 0000000..50abb64 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc204b6qjupsl" +path.s3tc="res://.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png-a2ed6245ff38146748a2b1a7831e8421.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png" +dest_files=["res://.godot/imported/debris-plate-small-a-2e7b042177182659258aaab3ebe951ae_colormap.png-a2ed6245ff38146748a2b1a7831e8421.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png.import new file mode 100644 index 0000000..765d163 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsvbpmf76bn2d" +path.s3tc="res://.godot/imported/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png-6f7a5ad6d795593ec612e1fc030dda27.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png" +dest_files=["res://.godot/imported/debris-plate-small-a-3ea80659c40e93bbf5f059e921123238_colormap.png-6f7a5ad6d795593ec612e1fc030dda27.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a.fbx new file mode 100644 index 0000000..f4b820a Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a.fbx.import new file mode 100644 index 0000000..b2a4609 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cr4edh1uga3g3" +path="res://.godot/imported/debris-plate-small-a.fbx-2e7b042177182659258aaab3ebe951ae.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-a.fbx" +dest_files=["res://.godot/imported/debris-plate-small-a.fbx-2e7b042177182659258aaab3ebe951ae.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png.import new file mode 100644 index 0000000..626d47e --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cppd77qq132iw" +path.s3tc="res://.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png-15f7cdc8cc1edd5983ff45b84a173e62.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png" +dest_files=["res://.godot/imported/debris-plate-small-b-3ec1bddb97c534489decd53d06f4c734_colormap.png-15f7cdc8cc1edd5983ff45b84a173e62.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png.import new file mode 100644 index 0000000..1b5855b --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j8l1h08u0fp3" +path.s3tc="res://.godot/imported/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png-1c9755e03870edae7c97255b41e02ae9.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png" +dest_files=["res://.godot/imported/debris-plate-small-b-f1bd0581efb2aaf23224a2dda02169e6_colormap.png-1c9755e03870edae7c97255b41e02ae9.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b.fbx new file mode 100644 index 0000000..7a458f7 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b.fbx.import new file mode 100644 index 0000000..47b197e --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bpnlye4lcsqx5" +path="res://.godot/imported/debris-plate-small-b.fbx-3ec1bddb97c534489decd53d06f4c734.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-plate-small-b.fbx" +dest_files=["res://.godot/imported/debris-plate-small-b.fbx-3ec1bddb97c534489decd53d06f4c734.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png.import new file mode 100644 index 0000000..1986b91 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i8o0w3ogn487" +path.s3tc="res://.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png-93509cbc9677f4928f717e49739bfad8.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png" +dest_files=["res://.godot/imported/debris-spoiler-a-59723e33d73e227ad8c755d6e262405b_colormap.png-93509cbc9677f4928f717e49739bfad8.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png.import new file mode 100644 index 0000000..71b7393 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cowpbv0hobrwn" +path.s3tc="res://.godot/imported/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png-ea26dce4648ad9cc3f8839e9f9101b5e.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png" +dest_files=["res://.godot/imported/debris-spoiler-a-e0d1b69ace8d21d58b442774597d5e9c_colormap.png-ea26dce4648ad9cc3f8839e9f9101b5e.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a.fbx new file mode 100644 index 0000000..6f5bb98 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a.fbx.import new file mode 100644 index 0000000..55e7c05 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c2mxjuhe7mwjq" +path="res://.godot/imported/debris-spoiler-a.fbx-59723e33d73e227ad8c755d6e262405b.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-a.fbx" +dest_files=["res://.godot/imported/debris-spoiler-a.fbx-59723e33d73e227ad8c755d6e262405b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png.import new file mode 100644 index 0000000..50c05f5 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddl5cpc27wggk" +path.s3tc="res://.godot/imported/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png-1ff9d9a65a1ceba775f57d8dd5d318ec.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png" +dest_files=["res://.godot/imported/debris-spoiler-b-4a99ad46326c32b5b02247b782308342_colormap.png-1ff9d9a65a1ceba775f57d8dd5d318ec.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png.import new file mode 100644 index 0000000..2d0b807 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bikuuy5fwqgbw" +path.s3tc="res://.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png-140eb78de9b03faf29829667f6659357.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png" +dest_files=["res://.godot/imported/debris-spoiler-b-d740f6d9070ac93fb566391cb74d1365_colormap.png-140eb78de9b03faf29829667f6659357.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b.fbx new file mode 100644 index 0000000..0a3e5b7 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b.fbx.import new file mode 100644 index 0000000..200141b --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://e42yecusn3cx" +path="res://.godot/imported/debris-spoiler-b.fbx-d740f6d9070ac93fb566391cb74d1365.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-spoiler-b.fbx" +dest_files=["res://.godot/imported/debris-spoiler-b.fbx-d740f6d9070ac93fb566391cb74d1365.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png.import new file mode 100644 index 0000000..9b08e42 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coy4n2jj1oix0" +path.s3tc="res://.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png-0ba5f8c982a050d2466daa3e29e4c601.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png" +dest_files=["res://.godot/imported/debris-tire-87b601983b1095750a192239e16e3e9f_colormap.png-0ba5f8c982a050d2466daa3e29e4c601.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png.import new file mode 100644 index 0000000..0163974 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdymhb1uf608c" +path.s3tc="res://.godot/imported/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png-49c8e7ccf70aae378eac6ce25a4cdf50.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png" +dest_files=["res://.godot/imported/debris-tire-b9cceb2f147bd541a48d4a3ace0c20b9_colormap.png-49c8e7ccf70aae378eac6ce25a4cdf50.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-tire.fbx b/assets/models/kenney_car-kit/Models/FBX format/debris-tire.fbx new file mode 100644 index 0000000..56e6712 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/debris-tire.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/debris-tire.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/debris-tire.fbx.import new file mode 100644 index 0000000..0474706 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/debris-tire.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4l8sf4dhss6l" +path="res://.godot/imported/debris-tire.fbx-87b601983b1095750a192239e16e3e9f.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/debris-tire.fbx" +dest_files=["res://.godot/imported/debris-tire.fbx-87b601983b1095750a192239e16e3e9f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png.import new file mode 100644 index 0000000..34ee2a0 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4jgr0qb1p8lv" +path.s3tc="res://.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png-07c8b1742f2ca890bc583d1e9ac30dfb.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png" +dest_files=["res://.godot/imported/delivery-480571e272cc8da9a50ecc7c53b67933_colormap.png-07c8b1742f2ca890bc583d1e9ac30dfb.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png.import new file mode 100644 index 0000000..824e49d --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhdoi8u452uh8" +path.s3tc="res://.godot/imported/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png-2e25aef48b1550b9b64c619d638e8745.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png" +dest_files=["res://.godot/imported/delivery-f67d8349f3c722a63cb4a45b7688dbf9_colormap.png-2e25aef48b1550b9b64c619d638e8745.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png.import new file mode 100644 index 0000000..7b7a319 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cohs226q6grg7" +path.s3tc="res://.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png-d4c6632d66d130121bc6cafa7787415a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png" +dest_files=["res://.godot/imported/delivery-flat-2f28d2b34af58e4c2ebba85dc0bd3a44_colormap.png-d4c6632d66d130121bc6cafa7787415a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png.import new file mode 100644 index 0000000..f7be8a9 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0gsjjvua6g3f" +path.s3tc="res://.godot/imported/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png-0dbaa44f7fc985e69986b0fd68c8dc04.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png" +dest_files=["res://.godot/imported/delivery-flat-79d3f6b315d5436fef7bf4391d88836c_colormap.png-0dbaa44f7fc985e69986b0fd68c8dc04.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-flat.fbx b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat.fbx new file mode 100644 index 0000000..c2544c7 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery-flat.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat.fbx.import new file mode 100644 index 0000000..a25d58e --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/delivery-flat.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dtqado1abugon" +path="res://.godot/imported/delivery-flat.fbx-2f28d2b34af58e4c2ebba85dc0bd3a44.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/delivery-flat.fbx" +dest_files=["res://.godot/imported/delivery-flat.fbx-2f28d2b34af58e4c2ebba85dc0bd3a44.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery.fbx b/assets/models/kenney_car-kit/Models/FBX format/delivery.fbx new file mode 100644 index 0000000..23addf3 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/delivery.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/delivery.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/delivery.fbx.import new file mode 100644 index 0000000..cf5b92a --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/delivery.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cbcv4x3ilmupw" +path="res://.godot/imported/delivery.fbx-480571e272cc8da9a50ecc7c53b67933.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/delivery.fbx" +dest_files=["res://.godot/imported/delivery.fbx-480571e272cc8da9a50ecc7c53b67933.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png.import new file mode 100644 index 0000000..8b15a45 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ded1mqtkl2itg" +path.s3tc="res://.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png-445d4224acc6edd7f9d8c76ba3d97068.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png" +dest_files=["res://.godot/imported/firetruck-2f443765a3f65797b79732d435703b7b_colormap.png-445d4224acc6edd7f9d8c76ba3d97068.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png.import new file mode 100644 index 0000000..4af77dc --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0q62s0kmo3p1" +path.s3tc="res://.godot/imported/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png-e44d05f9d138613f37d5361a72b60f5c.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png" +dest_files=["res://.godot/imported/firetruck-977dbc8bfc9014cca7eb46ad2e61a1ec_colormap.png-e44d05f9d138613f37d5361a72b60f5c.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/firetruck.fbx b/assets/models/kenney_car-kit/Models/FBX format/firetruck.fbx new file mode 100644 index 0000000..1dfce0b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/firetruck.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/firetruck.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/firetruck.fbx.import new file mode 100644 index 0000000..05875bd --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/firetruck.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dhb23yr1wb35h" +path="res://.godot/imported/firetruck.fbx-2f443765a3f65797b79732d435703b7b.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/firetruck.fbx" +dest_files=["res://.godot/imported/firetruck.fbx-2f443765a3f65797b79732d435703b7b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png.import new file mode 100644 index 0000000..eb89543 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dul8jmj7buw4a" +path.s3tc="res://.godot/imported/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png-50cc58d9124d2c57064fcc7c2e140786.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png" +dest_files=["res://.godot/imported/garbage-truck-412f355cc35345ad92ac135dc952ba55_colormap.png-50cc58d9124d2c57064fcc7c2e140786.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png.import new file mode 100644 index 0000000..0943609 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpm6xn1nupcln" +path.s3tc="res://.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png-f099778d7db63a2c396b3740cad77508.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png" +dest_files=["res://.godot/imported/garbage-truck-5c6e3ace96366a1650a184ae9bc4278c_colormap.png-f099778d7db63a2c396b3740cad77508.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/garbage-truck.fbx b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck.fbx new file mode 100644 index 0000000..2567a7e Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/garbage-truck.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck.fbx.import new file mode 100644 index 0000000..9df20a8 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/garbage-truck.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://lmei64mjgbng" +path="res://.godot/imported/garbage-truck.fbx-5c6e3ace96366a1650a184ae9bc4278c.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/garbage-truck.fbx" +dest_files=["res://.godot/imported/garbage-truck.fbx-5c6e3ace96366a1650a184ae9bc4278c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png.import new file mode 100644 index 0000000..5cdfeeb --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch7wwh7qjxp81" +path.s3tc="res://.godot/imported/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png-ef8a25e179291cdf11eb3fb95896b068.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png" +dest_files=["res://.godot/imported/hatchback-sports-468d865d8c570634f84736a3f29bc2ef_colormap.png-ef8a25e179291cdf11eb3fb95896b068.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png.import new file mode 100644 index 0000000..a339e70 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi1ote2sl4y64" +path.s3tc="res://.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png-da4a511f9273f2f80c29f693053a7363.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png" +dest_files=["res://.godot/imported/hatchback-sports-7ad16901b59011916a0a6287f63c797e_colormap.png-da4a511f9273f2f80c29f693053a7363.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports.fbx b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports.fbx new file mode 100644 index 0000000..93910ee Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports.fbx.import new file mode 100644 index 0000000..e3a993f --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/hatchback-sports.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://j80uti6fwefp" +path="res://.godot/imported/hatchback-sports.fbx-7ad16901b59011916a0a6287f63c797e.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/hatchback-sports.fbx" +dest_files=["res://.godot/imported/hatchback-sports.fbx-7ad16901b59011916a0a6287f63c797e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/police-811b2974777e8acbf7854256c0f04cd9_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/police-811b2974777e8acbf7854256c0f04cd9_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/police-811b2974777e8acbf7854256c0f04cd9_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/police-811b2974777e8acbf7854256c0f04cd9_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/police-811b2974777e8acbf7854256c0f04cd9_colormap.png.import new file mode 100644 index 0000000..ae47f11 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/police-811b2974777e8acbf7854256c0f04cd9_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bahrwr53bb4xt" +path.s3tc="res://.godot/imported/police-811b2974777e8acbf7854256c0f04cd9_colormap.png-f79e090b9bf74e65d2b8da71db79e3ca.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/police-811b2974777e8acbf7854256c0f04cd9_colormap.png" +dest_files=["res://.godot/imported/police-811b2974777e8acbf7854256c0f04cd9_colormap.png-f79e090b9bf74e65d2b8da71db79e3ca.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/police-aabc120e77056c144e2e39fcd4c64750_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/police-aabc120e77056c144e2e39fcd4c64750_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/police-aabc120e77056c144e2e39fcd4c64750_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/police-aabc120e77056c144e2e39fcd4c64750_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/police-aabc120e77056c144e2e39fcd4c64750_colormap.png.import new file mode 100644 index 0000000..194f9db --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/police-aabc120e77056c144e2e39fcd4c64750_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3f6fuxfjala5" +path.s3tc="res://.godot/imported/police-aabc120e77056c144e2e39fcd4c64750_colormap.png-960322e492137d908af3ce2f59292a44.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/police-aabc120e77056c144e2e39fcd4c64750_colormap.png" +dest_files=["res://.godot/imported/police-aabc120e77056c144e2e39fcd4c64750_colormap.png-960322e492137d908af3ce2f59292a44.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/police.fbx b/assets/models/kenney_car-kit/Models/FBX format/police.fbx new file mode 100644 index 0000000..c446036 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/police.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/police.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/police.fbx.import new file mode 100644 index 0000000..640a6c9 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/police.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dlrkn5f8he8lt" +path="res://.godot/imported/police.fbx-aabc120e77056c144e2e39fcd4c64750.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/police.fbx" +dest_files=["res://.godot/imported/police.fbx-aabc120e77056c144e2e39fcd4c64750.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-19495721e3b762b6796c229453102098_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/race-19495721e3b762b6796c229453102098_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/race-19495721e3b762b6796c229453102098_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-19495721e3b762b6796c229453102098_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/race-19495721e3b762b6796c229453102098_colormap.png.import new file mode 100644 index 0000000..612e117 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/race-19495721e3b762b6796c229453102098_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjso62rwc8ei6" +path.s3tc="res://.godot/imported/race-19495721e3b762b6796c229453102098_colormap.png-3ce3ad4c25ccb28f28fb19348204db00.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/race-19495721e3b762b6796c229453102098_colormap.png" +dest_files=["res://.godot/imported/race-19495721e3b762b6796c229453102098_colormap.png-3ce3ad4c25ccb28f28fb19348204db00.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-45b9541950bc0a23cf51298208251a0e_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/race-45b9541950bc0a23cf51298208251a0e_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/race-45b9541950bc0a23cf51298208251a0e_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-45b9541950bc0a23cf51298208251a0e_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/race-45b9541950bc0a23cf51298208251a0e_colormap.png.import new file mode 100644 index 0000000..e4724fb --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/race-45b9541950bc0a23cf51298208251a0e_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dji3q7squb0br" +path.s3tc="res://.godot/imported/race-45b9541950bc0a23cf51298208251a0e_colormap.png-21d15e2f14d2e0c2550806e983b7da36.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/race-45b9541950bc0a23cf51298208251a0e_colormap.png" +dest_files=["res://.godot/imported/race-45b9541950bc0a23cf51298208251a0e_colormap.png-21d15e2f14d2e0c2550806e983b7da36.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png.import new file mode 100644 index 0000000..cdeea7f --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bve75ncmwae72" +path.s3tc="res://.godot/imported/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png-1183fc144e4efa1baa66a0f41eb7f5a7.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png" +dest_files=["res://.godot/imported/race-future-d01be50c08c0992f14b6a109127cf2ac_colormap.png-1183fc144e4efa1baa66a0f41eb7f5a7.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png.import new file mode 100644 index 0000000..20e0ac1 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvosh2140q5op" +path.s3tc="res://.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png-3de7528a6e9d7d465de4c7588abc7bfa.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png" +dest_files=["res://.godot/imported/race-future-dbad115cdb6d0d3ecb5686cf0cef0d63_colormap.png-3de7528a6e9d7d465de4c7588abc7bfa.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-future.fbx b/assets/models/kenney_car-kit/Models/FBX format/race-future.fbx new file mode 100644 index 0000000..ff76458 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/race-future.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/race-future.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/race-future.fbx.import new file mode 100644 index 0000000..ffbe901 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/race-future.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://6fjsfnpgoxj5" +path="res://.godot/imported/race-future.fbx-dbad115cdb6d0d3ecb5686cf0cef0d63.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/race-future.fbx" +dest_files=["res://.godot/imported/race-future.fbx-dbad115cdb6d0d3ecb5686cf0cef0d63.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/race.fbx b/assets/models/kenney_car-kit/Models/FBX format/race.fbx new file mode 100644 index 0000000..ef2debf Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/race.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/race.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/race.fbx.import new file mode 100644 index 0000000..b451e8e --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/race.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://rmfhx401afqu" +path="res://.godot/imported/race.fbx-45b9541950bc0a23cf51298208251a0e.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/race.fbx" +dest_files=["res://.godot/imported/race.fbx-45b9541950bc0a23cf51298208251a0e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png.import new file mode 100644 index 0000000..501975d --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qfm0svw4thfb" +path.s3tc="res://.godot/imported/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png-64d5aa15b90a7bfca507e7d8e600f50b.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png" +dest_files=["res://.godot/imported/sedan-4ae86802b9ee7bc06fa7d82e950b6a97_colormap.png-64d5aa15b90a7bfca507e7d8e600f50b.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png.import new file mode 100644 index 0000000..ae67397 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmh504pu3v0rn" +path.s3tc="res://.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png-d47d51c23cce38076f0787303bcb1ce5.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png" +dest_files=["res://.godot/imported/sedan-724c6d97251a0c32d634fff331b48d81_colormap.png-d47d51c23cce38076f0787303bcb1ce5.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png.import new file mode 100644 index 0000000..c7eb7cf --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cow43w5k6fqjb" +path.s3tc="res://.godot/imported/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png-6489d8fc23cba5a4e5e024b3a9411fde.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png" +dest_files=["res://.godot/imported/sedan-sports-1ee0e0ff1cd2b9050164b3f95f6483f6_colormap.png-6489d8fc23cba5a4e5e024b3a9411fde.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png.import new file mode 100644 index 0000000..1275938 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1mjfj67agqei" +path.s3tc="res://.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png-23199b4e7e7089d5031fd8f8258757fe.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png" +dest_files=["res://.godot/imported/sedan-sports-69ac797fd37e51ef48bd80666f3ae9c7_colormap.png-23199b4e7e7089d5031fd8f8258757fe.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-sports.fbx b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports.fbx new file mode 100644 index 0000000..1c743e7 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan-sports.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports.fbx.import new file mode 100644 index 0000000..98d8670 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/sedan-sports.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ip0cqydw1opg" +path="res://.godot/imported/sedan-sports.fbx-69ac797fd37e51ef48bd80666f3ae9c7.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/sedan-sports.fbx" +dest_files=["res://.godot/imported/sedan-sports.fbx-69ac797fd37e51ef48bd80666f3ae9c7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan.fbx b/assets/models/kenney_car-kit/Models/FBX format/sedan.fbx new file mode 100644 index 0000000..10b5a0f Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/sedan.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/sedan.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/sedan.fbx.import new file mode 100644 index 0000000..990b2e0 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/sedan.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://crsv7j0ycye77" +path="res://.godot/imported/sedan.fbx-724c6d97251a0c32d634fff331b48d81.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/sedan.fbx" +dest_files=["res://.godot/imported/sedan.fbx-724c6d97251a0c32d634fff331b48d81.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png.import new file mode 100644 index 0000000..f1bd095 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc7xnpcw5g5h5" +path.s3tc="res://.godot/imported/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png-1695d5bb39490a58afe867de98815524.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png" +dest_files=["res://.godot/imported/suv-343e3c1513b464df6157dd8895eeb9f5_colormap.png-1695d5bb39490a58afe867de98815524.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png.import new file mode 100644 index 0000000..cec4ba1 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kb3b16gjvgwx" +path.s3tc="res://.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png-ae4e5bb57d0f3d4acf0c5519904ac064.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png" +dest_files=["res://.godot/imported/suv-3e9e7dad3b30dc45d211faaf35e87c51_colormap.png-ae4e5bb57d0f3d4acf0c5519904ac064.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png.import new file mode 100644 index 0000000..9dc7966 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vml1vfb0sps8" +path.s3tc="res://.godot/imported/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png-de4d125d9ee0af323ff8177422e8d44d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png" +dest_files=["res://.godot/imported/suv-luxury-6457e02393b4abad0d137f4af1446d7c_colormap.png-de4d125d9ee0af323ff8177422e8d44d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png.import new file mode 100644 index 0000000..97dce45 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmw2juqdvcp0o" +path.s3tc="res://.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png-7dab798c8e3acda106965cee74bb13a7.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png" +dest_files=["res://.godot/imported/suv-luxury-c8d23ff93d21deb7f005aae5c4453201_colormap.png-7dab798c8e3acda106965cee74bb13a7.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-luxury.fbx b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury.fbx new file mode 100644 index 0000000..023c955 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv-luxury.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury.fbx.import new file mode 100644 index 0000000..1d6b78a --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/suv-luxury.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ckd22vo33qaxf" +path="res://.godot/imported/suv-luxury.fbx-c8d23ff93d21deb7f005aae5c4453201.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/suv-luxury.fbx" +dest_files=["res://.godot/imported/suv-luxury.fbx-c8d23ff93d21deb7f005aae5c4453201.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv.fbx b/assets/models/kenney_car-kit/Models/FBX format/suv.fbx new file mode 100644 index 0000000..0f75d21 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/suv.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/suv.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/suv.fbx.import new file mode 100644 index 0000000..06d8224 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/suv.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dfmgxv2450yug" +path="res://.godot/imported/suv.fbx-3e9e7dad3b30dc45d211faaf35e87c51.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/suv.fbx" +dest_files=["res://.godot/imported/suv.fbx-3e9e7dad3b30dc45d211faaf35e87c51.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png.import new file mode 100644 index 0000000..eaafed1 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj0bbu8l63pxa" +path.s3tc="res://.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png-04079029230e3dcac3eefdb88d49c26f.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png" +dest_files=["res://.godot/imported/taxi-9b95c08c706a83d816fa926eb80f1fcc_colormap.png-04079029230e3dcac3eefdb88d49c26f.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png.import new file mode 100644 index 0000000..f35126f --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv3yq4i7ao3vm" +path.s3tc="res://.godot/imported/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png-d6b3210a13e44174a34137259d30eedf.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png" +dest_files=["res://.godot/imported/taxi-acdd4b4fc98db2b2965bdc81a03d5f1b_colormap.png-d6b3210a13e44174a34137259d30eedf.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/taxi.fbx b/assets/models/kenney_car-kit/Models/FBX format/taxi.fbx new file mode 100644 index 0000000..2ac521b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/taxi.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/taxi.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/taxi.fbx.import new file mode 100644 index 0000000..5b8ef27 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/taxi.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://mpyhovwmcetg" +path="res://.godot/imported/taxi.fbx-9b95c08c706a83d816fa926eb80f1fcc.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/taxi.fbx" +dest_files=["res://.godot/imported/taxi.fbx-9b95c08c706a83d816fa926eb80f1fcc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png.import new file mode 100644 index 0000000..38f0492 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ivgeaiuc8o0t" +path.s3tc="res://.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png-f45693dacaba195973809e1493340729.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png" +dest_files=["res://.godot/imported/tractor-aa55c818cc41903db70ed1df369bb7d5_colormap.png-f45693dacaba195973809e1493340729.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png.import new file mode 100644 index 0000000..d1707f2 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyowsyjajhve5" +path.s3tc="res://.godot/imported/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png-80363efffb4165b3d52cbcb0695d5ecf.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png" +dest_files=["res://.godot/imported/tractor-be18c6b852c9a70542ad42ac1a6d0631_colormap.png-80363efffb4165b3d52cbcb0695d5ecf.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png.import new file mode 100644 index 0000000..047495a --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxljv5o0axduw" +path.s3tc="res://.godot/imported/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png-19c516f12276e9e62993e69fee570217.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png" +dest_files=["res://.godot/imported/tractor-police-b2f4e1241eda7c3ac86bf73c23060118_colormap.png-19c516f12276e9e62993e69fee570217.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png.import new file mode 100644 index 0000000..325b212 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqg554rvi4g6d" +path.s3tc="res://.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png-bba2f5893a624692b56cbaa2bbe3f3d1.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png" +dest_files=["res://.godot/imported/tractor-police-c767a154c68bcc10cb5ce0ea97a3ebeb_colormap.png-bba2f5893a624692b56cbaa2bbe3f3d1.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-police.fbx b/assets/models/kenney_car-kit/Models/FBX format/tractor-police.fbx new file mode 100644 index 0000000..12d861b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/tractor-police.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-police.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/tractor-police.fbx.import new file mode 100644 index 0000000..98c1834 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/tractor-police.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b4ks0v7007j17" +path="res://.godot/imported/tractor-police.fbx-c767a154c68bcc10cb5ce0ea97a3ebeb.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/tractor-police.fbx" +dest_files=["res://.godot/imported/tractor-police.fbx-c767a154c68bcc10cb5ce0ea97a3ebeb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png.import new file mode 100644 index 0000000..10ea4da --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddxm1upgbmg8y" +path.s3tc="res://.godot/imported/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png-3f4448f6738f975c32536d2c8e5b2076.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png" +dest_files=["res://.godot/imported/tractor-shovel-6cc5f271abcbbda1400b1f1c72a91ab5_colormap.png-3f4448f6738f975c32536d2c8e5b2076.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png.import new file mode 100644 index 0000000..d7b4615 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b57yqvvoc84im" +path.s3tc="res://.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png-7575dc7fe39906180e6a49c1e4bf6a36.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png" +dest_files=["res://.godot/imported/tractor-shovel-c9232c3d0317c18151cf25d5ccab6574_colormap.png-7575dc7fe39906180e6a49c1e4bf6a36.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel.fbx b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel.fbx new file mode 100644 index 0000000..6429053 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel.fbx.import new file mode 100644 index 0000000..4e367dd --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/tractor-shovel.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b06fwosobgenn" +path="res://.godot/imported/tractor-shovel.fbx-c9232c3d0317c18151cf25d5ccab6574.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/tractor-shovel.fbx" +dest_files=["res://.godot/imported/tractor-shovel.fbx-c9232c3d0317c18151cf25d5ccab6574.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor.fbx b/assets/models/kenney_car-kit/Models/FBX format/tractor.fbx new file mode 100644 index 0000000..b65c19e Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/tractor.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/tractor.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/tractor.fbx.import new file mode 100644 index 0000000..69c438c --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/tractor.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://sfuy81no4ir4" +path="res://.godot/imported/tractor.fbx-aa55c818cc41903db70ed1df369bb7d5.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/tractor.fbx" +dest_files=["res://.godot/imported/tractor.fbx-aa55c818cc41903db70ed1df369bb7d5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png.import new file mode 100644 index 0000000..89d0801 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmhs8s8nrc0dt" +path.s3tc="res://.godot/imported/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png-713d5b6b6c552cbbb0fdb6b0c1230aba.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png" +dest_files=["res://.godot/imported/truck-910ac1aea40dbd9bb90ca03482723890_colormap.png-713d5b6b6c552cbbb0fdb6b0c1230aba.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png.import new file mode 100644 index 0000000..f1ee51b --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djqsn0gh8cjix" +path.s3tc="res://.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png-489d911b2419d9a4910933cb17d4ae81.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png" +dest_files=["res://.godot/imported/truck-bc57f2646fb0056e7e666cff8016dd21_colormap.png-489d911b2419d9a4910933cb17d4ae81.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png.import new file mode 100644 index 0000000..447bf59 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d10dck4x3pb54" +path.s3tc="res://.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png-9a824d052ddcb8bf5b82ceb833579be0.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png" +dest_files=["res://.godot/imported/truck-flat-2d670a8df84ef81da18dca4f2c784e27_colormap.png-9a824d052ddcb8bf5b82ceb833579be0.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png.import new file mode 100644 index 0000000..acd8e24 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpxge04g21e83" +path.s3tc="res://.godot/imported/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png-70c2207c1403051087a6af102881b46a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png" +dest_files=["res://.godot/imported/truck-flat-beb720dc51bb7448328fe708a2607060_colormap.png-70c2207c1403051087a6af102881b46a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-flat.fbx b/assets/models/kenney_car-kit/Models/FBX format/truck-flat.fbx new file mode 100644 index 0000000..867301b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/truck-flat.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck-flat.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/truck-flat.fbx.import new file mode 100644 index 0000000..f087823 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/truck-flat.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bn1g13sb3g0rw" +path="res://.godot/imported/truck-flat.fbx-2d670a8df84ef81da18dca4f2c784e27.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/truck-flat.fbx" +dest_files=["res://.godot/imported/truck-flat.fbx-2d670a8df84ef81da18dca4f2c784e27.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck.fbx b/assets/models/kenney_car-kit/Models/FBX format/truck.fbx new file mode 100644 index 0000000..00942e0 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/truck.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/truck.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/truck.fbx.import new file mode 100644 index 0000000..4a34aee --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/truck.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dflfjobqsa0de" +path="res://.godot/imported/truck.fbx-bc57f2646fb0056e7e666cff8016dd21.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/truck.fbx" +dest_files=["res://.godot/imported/truck.fbx-bc57f2646fb0056e7e666cff8016dd21.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/van-10e58b7034f352cb54f3809a0c471e46_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/van-10e58b7034f352cb54f3809a0c471e46_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/van-10e58b7034f352cb54f3809a0c471e46_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/van-10e58b7034f352cb54f3809a0c471e46_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/van-10e58b7034f352cb54f3809a0c471e46_colormap.png.import new file mode 100644 index 0000000..9131c08 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/van-10e58b7034f352cb54f3809a0c471e46_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ig03i48pcsdo" +path.s3tc="res://.godot/imported/van-10e58b7034f352cb54f3809a0c471e46_colormap.png-9169ee86f78475d11aceeb574225f78d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/van-10e58b7034f352cb54f3809a0c471e46_colormap.png" +dest_files=["res://.godot/imported/van-10e58b7034f352cb54f3809a0c471e46_colormap.png-9169ee86f78475d11aceeb574225f78d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png.import new file mode 100644 index 0000000..a950f4e --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dstgvs852y4sg" +path.s3tc="res://.godot/imported/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png-e5afec11abe21507370f3f711760fc67.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png" +dest_files=["res://.godot/imported/van-7974cf2cf9565323d02b5bc0ea435883_colormap.png-e5afec11abe21507370f3f711760fc67.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/van.fbx b/assets/models/kenney_car-kit/Models/FBX format/van.fbx new file mode 100644 index 0000000..e9f5a59 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/van.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/van.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/van.fbx.import new file mode 100644 index 0000000..1556a04 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/van.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cbru8457snlkp" +path="res://.godot/imported/van.fbx-10e58b7034f352cb54f3809a0c471e46.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/van.fbx" +dest_files=["res://.godot/imported/van.fbx-10e58b7034f352cb54f3809a0c471e46.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png.import new file mode 100644 index 0000000..4c9882c --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8gpdlqerho4u" +path.s3tc="res://.godot/imported/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png-3fce8092ad2e3c62c5c8d1b25ce3e3e4.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png" +dest_files=["res://.godot/imported/wheel-dark-6dce55eb4ccd759d09804605c78dc9de_colormap.png-3fce8092ad2e3c62c5c8d1b25ce3e3e4.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png.import new file mode 100644 index 0000000..811c3a6 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpukpvoi8suej" +path.s3tc="res://.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png-753bcb4e4ec3fdc840e238c7ea1ff4e0.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png" +dest_files=["res://.godot/imported/wheel-dark-7ecf87e0af972bf91855abad94dd5d8e_colormap.png-753bcb4e4ec3fdc840e238c7ea1ff4e0.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-dark.fbx b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark.fbx new file mode 100644 index 0000000..0431e3c Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-dark.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark.fbx.import new file mode 100644 index 0000000..978661a --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bkvrctyulr37b" +path="res://.godot/imported/wheel-dark.fbx-7ecf87e0af972bf91855abad94dd5d8e.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-dark.fbx" +dest_files=["res://.godot/imported/wheel-dark.fbx-7ecf87e0af972bf91855abad94dd5d8e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png.import new file mode 100644 index 0000000..284c89c --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1jyxhjyeec10" +path.s3tc="res://.godot/imported/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png-fb5dad07f77ec0ca89484784a0c1da1f.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png" +dest_files=["res://.godot/imported/wheel-default-7a6657bcdead7ff1e91fb2f9495a21aa_colormap.png-fb5dad07f77ec0ca89484784a0c1da1f.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png.import new file mode 100644 index 0000000..867597b --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dstg6pd4ciivm" +path.s3tc="res://.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png-e793c320d1a6893bfdfe49d3aa36549d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png" +dest_files=["res://.godot/imported/wheel-default-a5c8c0f3ca4c2f8d7834bfbac3c2f36c_colormap.png-e793c320d1a6893bfdfe49d3aa36549d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-default.fbx b/assets/models/kenney_car-kit/Models/FBX format/wheel-default.fbx new file mode 100644 index 0000000..52aa45a Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-default.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-default.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-default.fbx.import new file mode 100644 index 0000000..5cb0e5f --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-default.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://t8sd4mkmwyve" +path="res://.godot/imported/wheel-default.fbx-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-default.fbx" +dest_files=["res://.godot/imported/wheel-default.fbx-a5c8c0f3ca4c2f8d7834bfbac3c2f36c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png.import new file mode 100644 index 0000000..a6d56ec --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0mha0orgmnhb" +path.s3tc="res://.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png-caf8ef67a15564d072132d7ecce3573a.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png" +dest_files=["res://.godot/imported/wheel-racing-ba4a8ab46b0b014c15390637da7d9c8e_colormap.png-caf8ef67a15564d072132d7ecce3573a.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png.import new file mode 100644 index 0000000..c58014d --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj2tbqu8d64p7" +path.s3tc="res://.godot/imported/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png-02f6cdd33e24cc987a93650a54089f10.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png" +dest_files=["res://.godot/imported/wheel-racing-df99c59402955f05a90747bf8034aaef_colormap.png-02f6cdd33e24cc987a93650a54089f10.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-racing.fbx b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing.fbx new file mode 100644 index 0000000..e1203f3 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-racing.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing.fbx.import new file mode 100644 index 0000000..da82cbb --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-racing.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d2522mmbymwdv" +path="res://.godot/imported/wheel-racing.fbx-ba4a8ab46b0b014c15390637da7d9c8e.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-racing.fbx" +dest_files=["res://.godot/imported/wheel-racing.fbx-ba4a8ab46b0b014c15390637da7d9c8e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png.import new file mode 100644 index 0000000..06ac229 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b64ew5ukobw34" +path.s3tc="res://.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png-f6c07c1b7720cf04cc4d59e215beb2f1.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png" +dest_files=["res://.godot/imported/wheel-tractor-back-483ba6e3e1439658704d16c86d777f74_colormap.png-f6c07c1b7720cf04cc4d59e215beb2f1.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png.import new file mode 100644 index 0000000..97cf8e1 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cec65d1ep7dfp" +path.s3tc="res://.godot/imported/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png-6737e2d30052893882e7ad1aea333fab.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png" +dest_files=["res://.godot/imported/wheel-tractor-back-a6077f2e6cec101221880268f83dbd27_colormap.png-6737e2d30052893882e7ad1aea333fab.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back.fbx b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back.fbx new file mode 100644 index 0000000..8447754 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back.fbx.import new file mode 100644 index 0000000..23aa262 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dy8hwt0ytkohl" +path="res://.godot/imported/wheel-tractor-back.fbx-483ba6e3e1439658704d16c86d777f74.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-back.fbx" +dest_files=["res://.godot/imported/wheel-tractor-back.fbx-483ba6e3e1439658704d16c86d777f74.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png.import new file mode 100644 index 0000000..9f0943e --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwytc6hea1pjm" +path.s3tc="res://.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png-f4958786fdfa897a8c95c39b6bbdcc12.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png" +dest_files=["res://.godot/imported/wheel-tractor-dark-back-0614adb67d26e65ad4b142633d8926ae_colormap.png-f4958786fdfa897a8c95c39b6bbdcc12.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png.import new file mode 100644 index 0000000..355c638 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dckf1waahml7w" +path.s3tc="res://.godot/imported/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png-f7c451f6ebcd931ba56790be6d791639.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png" +dest_files=["res://.godot/imported/wheel-tractor-dark-back-f741fde2b57c6dddd2514ad85aecf124_colormap.png-f7c451f6ebcd931ba56790be6d791639.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back.fbx b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back.fbx new file mode 100644 index 0000000..133251a Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back.fbx.import new file mode 100644 index 0000000..6652f3c --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b12oeokpqqlde" +path="res://.godot/imported/wheel-tractor-dark-back.fbx-0614adb67d26e65ad4b142633d8926ae.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-back.fbx" +dest_files=["res://.godot/imported/wheel-tractor-dark-back.fbx-0614adb67d26e65ad4b142633d8926ae.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png.import new file mode 100644 index 0000000..8622f3d --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl0hchi3hfjo6" +path.s3tc="res://.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png-568b849df57da6fcabf011fc4b4cff2d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png" +dest_files=["res://.godot/imported/wheel-tractor-dark-front-63114def4676ded40568a8392b7a1079_colormap.png-568b849df57da6fcabf011fc4b4cff2d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png.import new file mode 100644 index 0000000..e945348 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2sugc87nvorf" +path.s3tc="res://.godot/imported/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png-28c3cb88fca0b26d4b180f84ce11da5d.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png" +dest_files=["res://.godot/imported/wheel-tractor-dark-front-b9abc888771bc33de8483c77b5d96129_colormap.png-28c3cb88fca0b26d4b180f84ce11da5d.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front.fbx b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front.fbx new file mode 100644 index 0000000..1ebf167 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front.fbx.import new file mode 100644 index 0000000..f1d852b --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4ih575bd0pad" +path="res://.godot/imported/wheel-tractor-dark-front.fbx-63114def4676ded40568a8392b7a1079.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-dark-front.fbx" +dest_files=["res://.godot/imported/wheel-tractor-dark-front.fbx-63114def4676ded40568a8392b7a1079.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png.import new file mode 100644 index 0000000..de26502 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdet70aegt8cx" +path.s3tc="res://.godot/imported/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png-170351e2ea48d22dcb7068f7c7c39be8.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png" +dest_files=["res://.godot/imported/wheel-tractor-front-0bb306044c580acbf1b5c1f519bb2a5f_colormap.png-170351e2ea48d22dcb7068f7c7c39be8.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png.import new file mode 100644 index 0000000..890e208 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qpadm7atg3ww" +path.s3tc="res://.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png-ff70515a19bcb59f8ef75465f5273e1c.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png" +dest_files=["res://.godot/imported/wheel-tractor-front-78d5954adba2164363170986e1568e9f_colormap.png-ff70515a19bcb59f8ef75465f5273e1c.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front.fbx b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front.fbx new file mode 100644 index 0000000..5290e1b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front.fbx.import new file mode 100644 index 0000000..9c74492 --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bii6dxjg31p7l" +path="res://.godot/imported/wheel-tractor-front.fbx-78d5954adba2164363170986e1568e9f.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-tractor-front.fbx" +dest_files=["res://.godot/imported/wheel-tractor-front.fbx-78d5954adba2164363170986e1568e9f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png.import new file mode 100644 index 0000000..9814bcb --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://srdctw2nyqtn" +path.s3tc="res://.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png-f57dfbcba5eedd52e42965634c1b13a0.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png" +dest_files=["res://.godot/imported/wheel-truck-049233e75b129e581ddd1bf88dc0b24a_colormap.png-f57dfbcba5eedd52e42965634c1b13a0.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png new file mode 100644 index 0000000..9b22d9b Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png.import new file mode 100644 index 0000000..9d7f41c --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png.import @@ -0,0 +1,38 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dql1yaoqk4e1i" +path.s3tc="res://.godot/imported/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png-cb2838662226668259c059bf954a2bb2.s3tc.ctex" +metadata={ +"imported_formats": ["s3tc_bptc"], +"vram_texture": true +} +generator_parameters={ +"md5": "611df30398ddade53b30132a6d84ae0a" +} + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png" +dest_files=["res://.godot/imported/wheel-truck-04bb88edbfb8f3af7a54251bf6738a8f_colormap.png-cb2838662226668259c059bf954a2bb2.s3tc.ctex"] + +[params] + +compress/mode=2 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=0 diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-truck.fbx b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck.fbx new file mode 100644 index 0000000..ba70562 Binary files /dev/null and b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck.fbx differ diff --git a/assets/models/kenney_car-kit/Models/FBX format/wheel-truck.fbx.import b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck.fbx.import new file mode 100644 index 0000000..68e487e --- /dev/null +++ b/assets/models/kenney_car-kit/Models/FBX format/wheel-truck.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://do4wytwhbu2k2" +path="res://.godot/imported/wheel-truck.fbx-049233e75b129e581ddd1bf88dc0b24a.scn" + +[deps] + +source_file="res://assets/models/kenney_car-kit/Models/FBX format/wheel-truck.fbx" +dest_files=["res://.godot/imported/wheel-truck.fbx-049233e75b129e581ddd1bf88dc0b24a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/License.txt b/assets/models/kenney_city-kit-roads/License.txt new file mode 100644 index 0000000..e861840 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/License.txt @@ -0,0 +1,24 @@ + + + City Kit Roads (1.1) + + Created/distributed by Kenney (www.kenney.nl) + Creation date: 15-10-2021 00:17 + + ------------------------------ + + License: (Creative Commons Zero, CC0) + http://creativecommons.org/publicdomain/zero/1.0/ + + This content is free to use in personal, educational and commercial projects. + + Support us by crediting Kenney or www.kenney.nl (this is not mandatory) + + ------------------------------ + + Donate: http://support.kenney.nl + Request: http://request.kenney.nl + Patreon: http://patreon.com/kenney/ + + Follow on Twitter for updates: + http://twitter.com/KenneyNL diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillar.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillar.fbx new file mode 100644 index 0000000..c08c36c --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillar.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 15 + Millisecond: 592 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_pillar.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_pillar.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5582450769877950725, "Model::bridge_pillar", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4616075296095484042, "Geometry::", "Mesh" { + Vertices: *264 { + a: 0.5,0.4,-0.5,0.5,0.4,0.5,0.375,1,-0.375,0.375,1,0.375,-0.5,0.4,-0.5,0.5,0.4,-0.5,-0.375,1,-0.375,0.375,1,-0.375,0.5,0.4,0.5,-0.5,0.4,0.5,0.375,1,0.375,-0.375,1,0.375,-0.5,0.4,-0.5,-0.375,1,-0.375,-0.5,0.4,0.5,-0.375,1,0.375,-0.5,0,-0.5,0.5,0,-0.5,-0.5,0.4,-0.5,0.5,0.4,-0.5,0.375,5,-0.375,0.375,4.7,-0.375,0.375,5,0.375,0.375,4.7,0.375,0.5,0,0.5,0.5,0,-0.5,-0.5,0,0.5,-0.5,0,-0.5,0.5,0,0.5,-0.5,0,0.5,0.5,0.4,0.5,-0.5,0.4,0.5,0.375,5,0.375,-0.375,5,0.375,0.375,5,-0.375,-0.375,5,-0.375,0.375,4.7,0.375,-0.375,4.7,0.375,0.375,5,0.375,-0.375,5,0.375,0.5,0.4,-0.5,0.5,0,-0.5,0.5,0.4,0.5,0.5,0,0.5,-0.5,0,-0.5,-0.5,0.4,-0.5,-0.5,0,0.5,-0.5,0.4,0.5,-0.375,4.7,-0.375,-0.375,5,-0.375,-0.375,4.7,0.375,-0.375,5,0.375,-0.375,4.7,-0.375,0.375,4.7,-0.375,-0.375,5,-0.375,0.375,5,-0.375,0.275,1,0.275,0.275,1,-0.275,0.375,1,-0.375,-0.375,1,-0.375,-0.275,1,-0.275,-0.375,1,0.375,0.375,1,0.375,-0.275,1,0.275,0.375,4.7,-0.375,0.275,4.7,0.275,0.375,4.7,0.375,-0.375,4.7,0.375,-0.275,4.7,0.275,-0.275,4.7,-0.275,0.275,4.7,-0.275,-0.375,4.7,-0.375,0.275,4.7,-0.275,0.275,1,-0.275,0.275,4.7,0.275,0.275,1,0.275,-0.275,1,-0.275,0.275,1,-0.275,-0.275,4.7,-0.275,0.275,4.7,-0.275,-0.275,1,-0.275,-0.275,4.7,-0.275,-0.275,1,0.275,-0.275,4.7,0.275,0.275,1,0.275,-0.275,1,0.275,0.275,4.7,0.275,-0.275,4.7,0.275 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,60,-60,61,62,-57,58,56,-63,63,61,-57,60,61,-64,64,66,-66,67,65,-67,68,65,-68,69,68,-68,65,70,-65,71,64,-71,69,71,-71,67,71,-70,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *176 { + a: 1.968504,1.140217,-1.968504,1.140217,1.476378,3.55314,-1.476378,3.55314,1.968504,1.140217,-1.968504,1.140217,1.476378,3.55314,-1.476378,3.55314,1.968504,1.140217,-1.968504,1.140217,1.476378,3.55314,-1.476378,3.55314,-1.968504,1.140217,-1.476378,3.55314,1.968504,1.140217,1.476378,3.55314,1.968504,0,-1.968504,0,1.968504,1.574803,-1.968504,1.574803,1.476378,19.68504,1.476378,18.50394,-1.476378,19.68504,-1.476378,18.50394,1.968504,1.968504,1.968504,-1.968504,-1.968504,1.968504,-1.968504,-1.968504,1.968504,0,-1.968504,0,1.968504,1.574803,-1.968504,1.574803,-1.476378,1.476378,1.476378,1.476378,-1.476378,-1.476378,1.476378,-1.476378,1.476378,18.50394,-1.476378,18.50394,1.476378,19.68504,-1.476378,19.68504,1.968504,1.574803,1.968504,0,-1.968504,1.574803,-1.968504,0,-1.968504,0,-1.968504,1.574803,1.968504,0,1.968504,1.574803,-1.476378,18.50394,-1.476378,19.68504,1.476378,18.50394,1.476378,19.68504,1.476378,18.50394,-1.476378,18.50394,1.476378,19.68504,-1.476378,19.68504,-1.082677,1.082677,-1.082677,-1.082677,-1.476378,-1.476378,1.476378,-1.476378,1.082677,-1.082677,1.476378,1.476378,-1.476378,1.476378,1.082677,1.082677,1.476378,-1.476378,1.082677,1.082677,1.476378,1.476378,-1.476378,1.476378,-1.082677,1.082677,-1.082677,-1.082677,1.082677,-1.082677,-1.476378,-1.476378,1.082677,18.50394,1.082677,3.937008,-1.082677,18.50394,-1.082677,3.937008,1.082677,3.937008,-1.082677,3.937008,1.082677,18.50394,-1.082677,18.50394,-1.082677,3.937008,-1.082677,18.50394,1.082677,3.937008,1.082677,18.50394,1.082677,3.937008,-1.082677,3.937008,1.082677,18.50394,-1.082677,18.50394 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,60,59,61,62,56,58,56,62,63,61,56,60,61,63,64,66,65,67,65,66,68,65,67,69,68,67,65,70,64,71,64,70,69,71,70,67,71,69,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_pillar, Model::RootNode + C: "OO",5582450769877950725,0 + + ;Geometry::, Model::Mesh bridge_pillar + C: "OO",4616075296095484042,5582450769877950725 + + ;Material::asphalt, Model::Mesh bridge_pillar + C: "OO",9934,5582450769877950725 + + ;Material::pavement, Model::Mesh bridge_pillar + C: "OO",17046,5582450769877950725 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillar.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillar.fbx.import new file mode 100644 index 0000000..10f9726 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillar.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cii06hn6cwx7q" +path="res://.godot/imported/bridge_pillar.fbx-a9227a9fe360b1b396aab5bbfb6e686d.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillar.fbx" +dest_files=["res://.godot/imported/bridge_pillar.fbx-a9227a9fe360b1b396aab5bbfb6e686d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillarWide.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillarWide.fbx new file mode 100644 index 0000000..519e219 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillarWide.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 15 + Millisecond: 707 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_pillarWide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_pillarWide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4670826796771604684, "Model::bridge_pillarWide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5020321534649031919, "Geometry::", "Mesh" { + Vertices: *264 { + a: 0.7,0.4,-0.7,0.7,0.4,0.7,0.575,1,-0.575,0.575,1,0.575,0.7,0.4,-0.7,0.575,1,-0.575,-0.7,0.4,-0.7,-0.575,1,-0.575,0.7,0.4,0.7,-0.7,0.4,0.7,0.575,1,0.575,-0.575,1,0.575,-0.7,0.4,-0.7,-0.575,1,-0.575,-0.7,0.4,0.7,-0.575,1,0.575,0.7,0,-0.7,0.7,0.4,-0.7,-0.7,4.511947E-16,-0.7,-0.7,0.4,-0.7,0.7,0,0.7,0.7,0,-0.7,-0.7,4.511947E-16,0.7,-0.7,4.511947E-16,-0.7,0.7,0,0.7,-0.7,4.511947E-16,0.7,0.7,0.4,0.7,-0.7,0.4,0.7,0.575,5,0.575,-0.575,5,0.575,0.575,5,-0.575,-0.575,5,-0.575,0.7,0.4,-0.7,0.7,0,-0.7,0.7,0.4,0.7,0.7,0,0.7,-0.7,4.511947E-16,-0.7,-0.7,0.4,-0.7,-0.7,4.511947E-16,0.7,-0.7,0.4,0.7,0.575,5,-0.575,0.575,4.7,-0.575,0.575,5,0.575,0.575,4.7,0.575,0.575,4.7,0.575,-0.575,4.7,0.575,0.575,5,0.575,-0.575,5,0.575,-0.575,4.7,-0.575,-0.575,5,-0.575,-0.575,4.7,0.575,-0.575,5,0.575,-0.575,4.7,-0.575,0.575,4.7,-0.575,-0.575,5,-0.575,0.575,5,-0.575,0.475,1,0.475,0.475,1,-0.475,0.575,1,-0.575,-0.575,1,-0.575,-0.475,1,-0.475,-0.575,1,0.575,0.575,1,0.575,-0.475,1,0.475,0.575,4.7,-0.575,0.475,4.7,0.475,0.575,4.7,0.575,-0.575,4.7,0.575,-0.475,4.7,0.475,-0.475,4.7,-0.475,0.475,4.7,-0.475,-0.575,4.7,-0.575,-0.475,1,-0.475,-0.475,4.7,-0.475,-0.475,1,0.475,-0.475,4.7,0.475,0.475,1,-0.475,0.475,4.7,-0.475,-0.475,1,-0.475,-0.475,4.7,-0.475,0.475,1,0.475,-0.475,1,0.475,0.475,4.7,0.475,-0.475,4.7,0.475,0.475,4.7,-0.475,0.475,1,-0.475,0.475,4.7,0.475,0.475,1,0.475 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,60,-60,61,62,-57,58,56,-63,63,61,-57,60,61,-64,64,66,-66,67,65,-67,68,65,-68,69,68,-68,65,70,-65,71,64,-71,69,71,-71,67,71,-70,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *176 { + a: 2.755906,0.9796228,-2.755906,0.9796228,2.26378,3.392546,-2.26378,3.392546,-2.755906,0.9796228,-2.26378,3.392546,2.755906,0.9796228,2.26378,3.392546,2.755906,0.9796228,-2.755906,0.9796228,2.26378,3.392546,-2.26378,3.392546,-2.755906,0.9796228,-2.26378,3.392546,2.755906,0.9796228,2.26378,3.392546,-2.755906,0,-2.755906,1.574803,2.755906,1.776357E-15,2.755906,1.574803,2.755906,2.755906,2.755906,-2.755906,-2.755906,2.755906,-2.755906,-2.755906,2.755906,0,-2.755906,1.776357E-15,2.755906,1.574803,-2.755906,1.574803,-2.26378,2.26378,2.26378,2.26378,-2.26378,-2.26378,2.26378,-2.26378,2.755906,1.574803,2.755906,0,-2.755906,1.574803,-2.755906,0,-2.755906,1.776357E-15,-2.755906,1.574803,2.755906,1.776357E-15,2.755906,1.574803,2.26378,19.68504,2.26378,18.50394,-2.26378,19.68504,-2.26378,18.50394,2.26378,18.50394,-2.26378,18.50394,2.26378,19.68504,-2.26378,19.68504,-2.26378,18.50394,-2.26378,19.68504,2.26378,18.50394,2.26378,19.68504,2.26378,18.50394,-2.26378,18.50394,2.26378,19.68504,-2.26378,19.68504,-1.870079,1.870079,-1.870079,-1.870079,-2.26378,-2.26378,2.26378,-2.26378,1.870079,-1.870079,2.26378,2.26378,-2.26378,2.26378,1.870079,1.870079,2.26378,-2.26378,1.870079,1.870079,2.26378,2.26378,-2.26378,2.26378,-1.870079,1.870079,-1.870079,-1.870079,1.870079,-1.870079,-2.26378,-2.26378,-1.870079,3.937008,-1.870079,18.50394,1.870079,3.937008,1.870079,18.50394,-1.870079,3.937008,-1.870079,18.50394,1.870079,3.937008,1.870079,18.50394,1.870079,3.937008,-1.870079,3.937008,1.870079,18.50394,-1.870079,18.50394,1.870079,18.50394,1.870079,3.937008,-1.870079,18.50394,-1.870079,3.937008 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,60,59,61,62,56,58,56,62,63,61,56,60,61,63,64,66,65,67,65,66,68,65,67,69,68,67,65,70,64,71,64,70,69,71,70,67,71,69,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_pillarWide, Model::RootNode + C: "OO",4670826796771604684,0 + + ;Geometry::, Model::Mesh bridge_pillarWide + C: "OO",5020321534649031919,4670826796771604684 + + ;Material::asphalt, Model::Mesh bridge_pillarWide + C: "OO",9934,4670826796771604684 + + ;Material::pavement, Model::Mesh bridge_pillarWide + C: "OO",17046,4670826796771604684 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillarWide.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillarWide.fbx.import new file mode 100644 index 0000000..61c4922 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillarWide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://11c3ia0vfnf5" +path="res://.godot/imported/bridge_pillarWide.fbx-60d62647859a7e0c03a9346029d27a8d.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/bridge_pillarWide.fbx" +dest_files=["res://.godot/imported/bridge_pillarWide.fbx-60d62647859a7e0c03a9346029d27a8d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/construction_barrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_barrier.fbx new file mode 100644 index 0000000..245fce9 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_barrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 15 + Millisecond: 806 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "construction_barrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "construction_barrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5091048290664662771, "Model::construction_barrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4703721480383107827, "Geometry::", "Mesh" { + Vertices: *288 { + a: -0.14375,1.1875,1.0375,-0.14375,0,1.0375,-0.14375,1.1875,1.125,-0.14375,0,1.125,0.14375,0,1.0375,0.14375,1.1875,1.0375,0.14375,0,1.125,0.14375,1.1875,1.125,0.14375,0,1.0375,-0.14375,0,1.0375,0.14375,1.1875,1.0375,-0.14375,1.1875,1.0375,-0.14375,0,-1.0375,0.14375,0,-1.0375,-0.14375,1.1875,-1.0375,0.14375,1.1875,-1.0375,0.425,0,1.125,0.14375,0,1.125,0.425,0.1875,1.125,0.14375,1.1875,1.125,0.2375,0.9875,1.125,0.2375,1.1875,1.125,0.2375,0.9875,-1.125,0.425,0.1875,-1.125,0.2375,0.9875,1.125,0.425,0.1875,1.125,-0.425,0.1875,-1.125,-0.2375,0.9875,-1.125,-0.425,0.1875,1.125,-0.2375,0.9875,1.125,0.425,0.1875,-1.125,0.425,0,-1.125,0.425,0.1875,1.125,0.425,0,1.125,0.14375,0,-1.125,0.14375,1.1875,-1.125,0.14375,0,-1.0375,0.14375,1.1875,-1.0375,-0.425,0,-1.125,-0.14375,0,-1.125,-0.425,0.1875,-1.125,-0.14375,1.1875,-1.125,-0.2375,0.9875,-1.125,-0.2375,1.1875,-1.125,0.2375,1.1875,-1.125,0.2375,0.9875,-1.125,0.2375,1.1875,1.125,0.2375,0.9875,1.125,-0.14375,1.1875,-1.125,-0.14375,1.1875,-1.0375,-0.2375,1.1875,-1.125,-0.14375,1.1875,1.0375,-0.14375,1.1875,1.125,-0.2375,1.1875,1.125,0.14375,1.1875,1.0375,0.14375,1.1875,-1.0375,0.14375,1.1875,1.125,0.14375,1.1875,-1.125,0.2375,1.1875,1.125,0.2375,1.1875,-1.125,-0.2375,0.9875,-1.125,-0.2375,1.1875,-1.125,-0.2375,0.9875,1.125,-0.2375,1.1875,1.125,0.14375,0,-1.125,0.425,0,-1.125,0.14375,1.1875,-1.125,0.425,0.1875,-1.125,0.2375,0.9875,-1.125,0.2375,1.1875,-1.125,-0.14375,1.1875,-1.125,-0.14375,0,-1.125,-0.14375,1.1875,-1.0375,-0.14375,0,-1.0375,-0.425,0,-1.125,-0.425,0.1875,-1.125,-0.425,0,1.125,-0.425,0.1875,1.125,-0.14375,0,1.125,-0.14375,0,1.0375,-0.425,0,1.125,-0.14375,0,-1.0375,-0.14375,0,-1.125,-0.425,0,-1.125,0.14375,0,-1.0375,0.14375,0,1.0375,0.14375,0,-1.125,0.14375,0,1.125,0.425,0,-1.125,0.425,0,1.125,-0.14375,0,1.125,-0.425,0,1.125,-0.14375,1.1875,1.125,-0.425,0.1875,1.125,-0.2375,0.9875,1.125,-0.2375,1.1875,1.125 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,41,-41,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,53,52,-51,51,54,-50,55,49,-55,54,56,-56,55,56,-58,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,68,-67,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,81,-81,83,82,-81,81,84,-80,85,79,-85,84,86,-86,85,86,-88,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,93,-93,95,94,-93 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9736163,0.2281913,0,0.9736163,0.2281913,0,0.9736163,0.2281913,0,0.9736163,0.2281913,0,0.9736163,0.2281913,0,0.9736163,0.2281913,0,-0.9736163,0.2281913,0,-0.9736163,0.2281913,0,-0.9736163,0.2281913,0,-0.9736163,0.2281913,0,-0.9736163,0.2281913,0,-0.9736163,0.2281913,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: -4.084646,4.675197,-4.084646,0,-4.429134,4.675197,-4.429134,0,4.084646,0,4.084646,4.675197,4.429134,0,4.429134,4.675197,0.5659449,0,-0.5659449,0,0.5659449,4.675197,-0.5659449,4.675197,0.5659449,0,-0.5659449,0,0.5659449,4.675197,-0.5659449,4.675197,1.673228,0,0.5659449,0,1.673228,0.738189,0.5659449,4.675197,0.9350393,3.887795,0.9350393,4.675197,4.429134,3.571853,4.429134,0.3368966,-4.429134,3.571853,-4.429134,0.3368966,-4.429134,0.3368966,-4.429134,3.571853,4.429134,0.3368966,4.429134,3.571853,4.429134,0.738189,4.429134,0,-4.429134,0.738189,-4.429134,0,-4.429134,0,-4.429134,4.675197,-4.084646,0,-4.084646,4.675197,1.673228,0,0.5659449,0,1.673228,0.738189,0.5659449,4.675197,0.9350393,3.887795,0.9350393,4.675197,4.429134,4.675197,4.429134,3.887795,-4.429134,4.675197,-4.429134,3.887795,0.5659449,-4.429134,0.5659449,-4.084646,0.9350393,-4.429134,0.5659449,4.084646,0.5659449,4.429134,0.9350393,4.429134,-0.5659449,4.084646,-0.5659449,-4.084646,-0.5659449,4.429134,-0.5659449,-4.429134,-0.9350393,4.429134,-0.9350393,-4.429134,-4.429134,3.887795,-4.429134,4.675197,4.429134,3.887795,4.429134,4.675197,-0.5659449,0,-1.673228,0,-0.5659449,4.675197,-1.673228,0.738189,-0.9350393,3.887795,-0.9350393,4.675197,4.429134,4.675197,4.429134,0,4.084646,4.675197,4.084646,0,-4.429134,0,-4.429134,0.738189,4.429134,0,4.429134,0.738189,-0.5659449,4.429134,-0.5659449,4.084646,-1.673228,4.429134,-0.5659449,-4.084646,-0.5659449,-4.429134,-1.673228,-4.429134,0.5659449,-4.084646,0.5659449,4.084646,0.5659449,-4.429134,0.5659449,4.429134,1.673228,-4.429134,1.673228,4.429134,-0.5659449,0,-1.673228,0,-0.5659449,4.675197,-1.673228,0.738189,-0.9350393,3.887795,-0.9350393,4.675197 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,41,40,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,53,52,50,51,54,49,55,49,54,54,56,55,55,56,57,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,68,66,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,81,80,83,82,80,81,84,79,85,79,84,84,86,85,85,86,87,86,88,87,89,87,88,90,92,91,93,91,92,94,93,92,95,94,92 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh construction_barrier, Model::RootNode + C: "OO",5091048290664662771,0 + + ;Geometry::, Model::Mesh construction_barrier + C: "OO",4703721480383107827,5091048290664662771 + + ;Material::pavement, Model::Mesh construction_barrier + C: "OO",17046,5091048290664662771 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/construction_barrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_barrier.fbx.import new file mode 100644 index 0000000..9165a50 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_barrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c2mjc7mkwelqa" +path="res://.godot/imported/construction_barrier.fbx-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/construction_barrier.fbx" +dest_files=["res://.godot/imported/construction_barrier.fbx-a7dd98eb1ebc61d3f1b2e4fbf5e834fc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/construction_light.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_light.fbx new file mode 100644 index 0000000..a50344f --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_light.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 15 + Millisecond: 909 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "construction_light.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "construction_light.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5694292474308894011, "Model::construction_light", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4814090087741883514, "Geometry::", "Mesh" { + Vertices: *396 { + a: 0.375,0.1875,-0.375,0.1875,0.1875,-0.1875,-0.375,0.1875,-0.375,-0.1875,0.1875,-0.1875,-0.1875,0.1875,0.1875,0.1875,0.1875,0.1875,0.375,0.1875,0.375,-0.375,0.1875,0.375,0.375,0.1875,-0.375,0.375,0,-0.375,0.375,0.1875,0.375,0.375,0,0.375,-0.375,0,-0.375,-0.375,0.1875,-0.375,-0.375,0,0.375,-0.375,0.1875,0.375,-0.375,0,-0.375,0.375,0,-0.375,-0.375,0.1875,-0.375,0.375,0.1875,-0.375,0.375,0,0.375,0.375,0,-0.375,-0.375,0,0.375,-0.375,0,-0.375,0.375,0,0.375,-0.375,0,0.375,0.375,0.1875,0.375,-0.375,0.1875,0.375,-0.09375,0.3625,0.375,-0.09375,1.075,0.375,0.09375,0.3625,0.375,0.09375,1.075,0.375,-0.09375,1.075,-0.375,0.09375,1.075,-0.375,-0.09375,1.7875,-0.375,0.09375,1.7875,-0.375,0.09375,0.3625,-0.1875,0.09375,0.3625,-0.375,-0.09375,0.3625,-0.1875,-0.09375,0.3625,-0.375,0.09375,0.3625,0.375,0.09375,0.3625,0.1875,-0.09375,0.3625,0.375,-0.09375,0.3625,0.1875,0.09375,1.7875,0.0875,0.09375,1.7875,0.375,-0.09375,1.7875,0.0875,-0.09375,1.7875,0.375,-0.09375,1.075,-0.375,-0.09375,1.7875,-0.375,-0.09375,1.7875,0.375,-0.09375,1.7875,-0.0875,-0.09375,1.7875,0.0875,0.09375,0.3625,-0.375,0.09375,0.3625,-0.1875,0.09375,1.075,0.375,0.09375,0.3625,0.1875,0.09375,0.3625,0.375,-0.09375,0.3625,-0.375,-0.09375,1.075,0.375,-0.09375,0.3625,-0.1875,-0.09375,0.3625,0.1875,-0.09375,0.3625,0.375,0.09375,1.7875,-0.375,0.09375,1.075,-0.375,0.09375,1.7875,-0.0875,0.09375,1.7875,0.0875,0.09375,1.7875,0.375,0.09375,1.7875,-0.375,0.09375,1.7875,-0.0875,-0.09375,1.7875,-0.375,-0.09375,1.7875,-0.0875,-0.09375,0.3625,-0.1875,-0.09375,0.3625,0.1875,-0.1875,0.1875,-0.1875,-0.1875,0.1875,0.1875,0.1875,0.1875,0.1875,-0.1875,0.1875,0.1875,0.09375,0.3625,0.1875,-0.09375,0.3625,0.1875,-0.1875,0.1875,-0.1875,0.1875,0.1875,-0.1875,-0.09375,0.3625,-0.1875,0.09375,0.3625,-0.1875,0.09375,0.3625,-0.1875,0.1875,0.1875,-0.1875,0.09375,0.3625,0.1875,0.1875,0.1875,0.1875,0.09375,2.15,0.275,-0.09375,2.15,0.275,0.09375,2.3375,0.0875,-0.09375,2.3375,0.0875,0.09375,1.7875,0.0875,-0.09375,1.7875,0.0875,0.09375,1.975,0.275,-0.09375,1.975,0.275,-0.09375,2.15,-0.275,0.09375,2.15,-0.275,-0.09375,2.3375,-0.0875,0.09375,2.3375,-0.0875,0.09375,1.975,0.275,-0.09375,1.975,0.275,0.09375,2.15,0.275,-0.09375,2.15,0.275,-0.09375,1.975,-0.275,0.09375,1.975,-0.275,-0.09375,2.15,-0.275,0.09375,2.15,-0.275,-0.09375,1.7875,-0.0875,0.09375,1.7875,-0.0875,-0.09375,1.975,-0.275,0.09375,1.975,-0.275,0.09375,2.3375,-0.0875,0.09375,2.3375,0.0875,-0.09375,2.3375,-0.0875,-0.09375,2.3375,0.0875,-0.09375,0.3625,-0.375,0.09375,0.3625,-0.375,-0.09375,1.7875,0.375,0.09375,1.7875,0.375,-0.09375,1.975,-0.275,-0.09375,2.15,-0.275,-0.09375,2.3375,-0.0875,-0.09375,2.3375,0.0875,-0.09375,1.975,0.275,-0.09375,2.15,0.275,0.09375,2.15,-0.275,0.09375,1.975,-0.275,0.09375,2.3375,-0.0875,0.09375,2.3375,0.0875,0.09375,2.15,0.275,0.09375,1.975,0.275 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,1,-3,4,3,-3,1,5,-1,0,5,-7,7,6,-6,4,7,-6,2,7,-5,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,53,55,-55,56,54,-56,57,56,-56,58,60,-60,61,59,-61,62,59,-62,63,65,-65,66,64,-66,67,64,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,58,59,-49,50,48,-60,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,64,67,-54,55,53,-68,116,32,-118,33,117,-33,29,31,-119,119,118,-32,120,51,-122,122,121,-52,52,122,-52,123,122,-53,124,123,-53,125,123,-125,126,128,-128,65,127,-129,129,65,-129,66,65,-130,130,66,-130,131,66,-131 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.88148,0.4722214,0,-0.88148,0.4722214,0,-0.88148,0.4722214,0,-0.88148,0.4722214,0,-0.88148,0.4722214,0,-0.88148,0.4722214,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.88148,0.4722214,0,0.88148,0.4722214,0,0.88148,0.4722214,0,0.88148,0.4722214,0,0.88148,0.4722214,0,0.88148,0.4722214,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: -1.476378,-1.476378,-0.738189,-0.738189,1.476378,-1.476378,0.738189,-0.738189,0.738189,0.738189,-0.738189,0.738189,-1.476378,1.476378,1.476378,1.476378,1.476378,0.738189,1.476378,0,-1.476378,0.738189,-1.476378,0,-1.476378,0,-1.476378,0.738189,1.476378,0,1.476378,0.738189,1.476378,0,-1.476378,0,1.476378,0.738189,-1.476378,0.738189,1.476378,1.476378,1.476378,-1.476378,-1.476378,1.476378,-1.476378,-1.476378,1.476378,0,-1.476378,0,1.476378,0.738189,-1.476378,0.738189,-0.3690945,1.427165,-0.3690945,4.232284,0.3690945,1.427165,0.3690945,4.232284,0.3690945,4.232284,-0.3690945,4.232284,0.3690945,7.037402,-0.3690945,7.037402,0.3690945,-0.738189,0.3690945,-1.476378,-0.3690945,-0.738189,-0.3690945,-1.476378,0.3690945,1.476378,0.3690945,0.738189,-0.3690945,1.476378,-0.3690945,0.738189,-0.3690945,0.3444882,-0.3690945,1.476378,0.3690945,0.3444882,0.3690945,1.476378,-1.476378,4.232284,-1.476378,7.037402,1.476378,7.037402,-0.3444882,7.037402,0.3444882,7.037402,1.476378,1.427165,0.738189,1.427165,-1.476378,4.232284,-0.738189,1.427165,-1.476378,1.427165,-1.476378,1.427165,1.476378,4.232284,-0.738189,1.427165,0.738189,1.427165,1.476378,1.427165,1.476378,7.037402,1.476378,4.232284,0.3444882,7.037402,-0.3444882,7.037402,-1.476378,7.037402,-0.3690945,-1.476378,-0.3690945,-0.3444882,0.3690945,-1.476378,0.3690945,-0.3444882,-0.738189,1.083723,0.738189,1.083723,-0.738189,0.3021102,0.738189,0.3021102,0.738189,0.738189,-0.738189,0.738189,0.3690945,1.427165,-0.3690945,1.427165,0.738189,0.738189,-0.738189,0.738189,0.3690945,1.427165,-0.3690945,1.427165,0.738189,1.083723,0.738189,0.3021102,-0.738189,1.083723,-0.738189,0.3021102,0.3690945,5.219784,-0.3690945,5.219784,0.3690945,6.263741,-0.3690945,6.263741,0.3690945,5.219784,-0.3690945,5.219784,0.3690945,6.263741,-0.3690945,6.263741,0.3690945,5.219784,-0.3690945,5.219784,0.3690945,6.263741,-0.3690945,6.263741,0.3690945,7.77559,-0.3690945,7.77559,0.3690945,8.464567,-0.3690945,8.464567,0.3690945,7.77559,-0.3690945,7.77559,0.3690945,8.464567,-0.3690945,8.464567,0.3690945,5.219784,-0.3690945,5.219784,0.3690945,6.263741,-0.3690945,6.263741,-0.3690945,-0.3444882,-0.3690945,0.3444882,0.3690945,-0.3444882,0.3690945,0.3444882,0.3690945,1.427165,-0.3690945,1.427165,-0.3690945,7.037402,0.3690945,7.037402,-1.082677,7.77559,-1.082677,8.464567,-0.3444882,9.202756,0.3444882,9.202756,1.082677,7.77559,1.082677,8.464567,1.082677,8.464567,1.082677,7.77559,0.3444882,9.202756,-0.3444882,9.202756,-1.082677,8.464567,-1.082677,7.77559 + } + UVIndex: *252 { + a: 0,2,1,3,1,2,4,3,2,1,5,0,0,5,6,7,6,5,4,7,5,2,7,4,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,53,55,54,56,54,55,57,56,55,58,60,59,61,59,60,62,59,61,63,65,64,66,64,65,67,64,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,58,59,48,50,48,59,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,64,67,53,55,53,67,116,32,117,33,117,32,29,31,118,119,118,31,120,51,121,122,121,51,52,122,51,123,122,52,124,123,52,125,123,124,126,128,127,65,127,128,129,65,128,66,65,129,130,66,129,131,66,130 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 11172, "Material::cone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.4313726,0.145098 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.4313726,0.145098 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 7046, "Material::light", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.945098,0.9490196,0.9647059 + P: "DiffuseColor", "Color", "", "A",0.945098,0.9490196,0.9647059 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh construction_light, Model::RootNode + C: "OO",5694292474308894011,0 + + ;Geometry::, Model::Mesh construction_light + C: "OO",4814090087741883514,5694292474308894011 + + ;Material::asphaltEdge, Model::Mesh construction_light + C: "OO",17042,5694292474308894011 + + ;Material::cone, Model::Mesh construction_light + C: "OO",11172,5694292474308894011 + + ;Material::pavement, Model::Mesh construction_light + C: "OO",17046,5694292474308894011 + + ;Material::light, Model::Mesh construction_light + C: "OO",7046,5694292474308894011 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/construction_light.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_light.fbx.import new file mode 100644 index 0000000..e1a1993 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_light.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cn7pd264jpg8c" +path="res://.godot/imported/construction_light.fbx-2485318907577e98da3c73dfa9ab614c.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/construction_light.fbx" +dest_files=["res://.godot/imported/construction_light.fbx-2485318907577e98da3c73dfa9ab614c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/construction_pylon.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_pylon.fbx new file mode 100644 index 0000000..44dae17 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_pylon.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 16 + Millisecond: 39 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "construction_pylon.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "construction_pylon.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5745439150489584893, "Model::construction_pylon", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5174986684983090716, "Geometry::", "Mesh" { + Vertices: *648 { + a: 0.2876591,0.1875,1.804779E-15,0.2778574,0.1875,-0.07445166,0.375,0.1875,-0.375,0.2491201,0.1875,-0.1438296,0.2034057,0.1875,-0.2034057,0.1438296,0.1875,-0.2491201,0.07445166,0.1875,-0.2778574,-0.375,0.1875,-0.375,-1.353584E-15,0.1875,-0.2876591,-0.07445166,0.1875,-0.2778574,-0.1438296,0.1875,-0.2491201,-0.2034057,0.1875,-0.2034057,-0.2491201,0.1875,-0.1438296,-0.2778574,0.1875,-0.07445166,-0.2876591,0.1875,1.804779E-15,0.2778574,0.1875,0.07445166,0.375,0.1875,0.375,0.2491201,0.1875,0.1438296,0.2034057,0.1875,0.2034057,0.1438296,0.1875,0.2491201,0.07445166,0.1875,0.2778574,-0.375,0.1875,0.375,4.060752E-15,0.1875,0.2876591,-0.07445166,0.1875,0.2778574,-0.1438296,0.1875,0.2491201,-0.2034057,0.1875,0.2034057,-0.2491201,0.1875,0.1438296,-0.2778574,0.1875,0.07445166,0.1694017,0.5625,-0.09780411,0.188943,0.5625,-0.05062713,0.08968324,0.9375,-0.05177864,0.1000287,0.9375,-0.0268026,0.375,0.1875,-0.375,0.375,0,-0.375,0.375,0.1875,0.375,0.375,0,0.375,0.09780411,0.5625,-0.1694017,0.1383159,0.5625,-0.1383159,0.05177864,0.9375,-0.08968324,0.07322606,0.9375,-0.07322606,-0.09780411,0.5625,-0.1694017,-0.05062713,0.5625,-0.188943,-0.05177864,0.9375,-0.08968324,-0.0268026,0.9375,-0.1000287,0.05062713,0.5625,-0.188943,0.09780411,0.5625,-0.1694017,0.0268026,0.9375,-0.1000287,0.05177864,0.9375,-0.08968324,0.1035573,0.9375,1.804779E-15,0.1000287,0.9375,0.0268026,0.1000287,0.9375,-0.0268026,0.08968324,0.9375,-0.05177864,0.08968324,0.9375,0.05177864,0.07322606,0.9375,-0.07322606,0.07322606,0.9375,0.07322606,0.05177864,0.9375,-0.08968324,0.05177864,0.9375,0.08968324,0.0268026,0.9375,-0.1000287,0.0268026,0.9375,0.1000287,-1.353584E-15,0.9375,-0.1035573,-1.353584E-15,0.9375,0.1035573,-0.0268026,0.9375,-0.1000287,-0.0268026,0.9375,0.1000287,-0.05177864,0.9375,-0.08968324,-0.05177864,0.9375,0.08968324,-0.07322606,0.9375,-0.07322606,-0.07322606,0.9375,0.07322606,-0.08968324,0.9375,-0.05177864,-0.08968324,0.9375,0.05177864,-0.1000287,0.9375,-0.0268026,-0.1000287,0.9375,0.0268026,-0.1035573,0.9375,1.804779E-15,0.188943,0.5625,-0.05062713,0.1956082,0.5625,-5.414336E-15,0.1000287,0.9375,-0.0268026,0.1035573,0.9375,1.804779E-15,0.1000287,0.9375,0.0268026,0.188943,0.5625,0.05062713,0.08968324,0.9375,0.05177864,0.1694017,0.5625,0.09780411,-0.1383159,0.5625,-0.1383159,-0.07322606,0.9375,-0.07322606,-0.1694017,0.5625,-0.09780411,-0.08968324,0.9375,-0.05177864,-0.375,0,-0.375,-0.375,0.1875,-0.375,-0.375,0,0.375,-0.375,0.1875,0.375,-0.375,0,-0.375,0.375,0,-0.375,-0.375,0.1875,-0.375,0.375,0.1875,-0.375,-0.1000287,0.9375,0.0268026,-0.08968324,0.9375,0.05177864,-0.188943,0.5625,0.05062713,-0.1694017,0.5625,0.09780411,0.08968324,0.9375,0.05177864,0.1694017,0.5625,0.09780411,0.07322606,0.9375,0.07322606,0.1383159,0.5625,0.1383159,-0.1383159,0.5625,-0.1383159,-0.09780411,0.5625,-0.1694017,-0.07322606,0.9375,-0.07322606,-0.05177864,0.9375,-0.08968324,-0.09780411,0.5625,0.1694017,-0.1383159,0.5625,0.1383159,-0.05177864,0.9375,0.08968324,-0.07322606,0.9375,0.07322606,0.375,0,0.375,0.375,0,-0.375,-0.375,0,0.375,-0.375,0,-0.375,0.1383159,0.5625,0.1383159,0.09780411,0.5625,0.1694017,0.07322606,0.9375,0.07322606,0.05177864,0.9375,0.08968324,0.1956082,0.5625,-5.414336E-15,0.188943,0.5625,0.05062713,0.1035573,0.9375,1.804779E-15,0.1000287,0.9375,0.0268026,0.375,0,0.375,-0.375,0,0.375,0.375,0.1875,0.375,-0.375,0.1875,0.375,0.1383159,0.5625,-0.1383159,0.1694017,0.5625,-0.09780411,0.07322606,0.9375,-0.07322606,0.08968324,0.9375,-0.05177864,-0.05062713,0.5625,0.188943,-0.09780411,0.5625,0.1694017,-0.0268026,0.9375,0.1000287,-0.05177864,0.9375,0.08968324,2.707168E-15,0.5625,0.1956082,-0.05062713,0.5625,0.188943,-1.353584E-15,0.9375,0.1035573,-0.0268026,0.9375,0.1000287,0.05062713,0.5625,0.188943,2.707168E-15,0.5625,0.1956082,0.0268026,0.9375,0.1000287,-1.353584E-15,0.9375,0.1035573,-0.05062713,0.5625,-0.188943,-9.023893E-16,0.5625,-0.1956082,-0.0268026,0.9375,-0.1000287,-1.353584E-15,0.9375,-0.1035573,-0.1035573,0.9375,1.804779E-15,-0.1000287,0.9375,0.0268026,-0.1956082,0.5625,9.023893E-15,-0.188943,0.5625,0.05062713,-0.1694017,0.5625,-0.09780411,-0.08968324,0.9375,-0.05177864,-0.188943,0.5625,-0.05062713,-0.1000287,0.9375,-0.0268026,-0.188943,0.5625,-0.05062713,-0.1000287,0.9375,-0.0268026,-0.1956082,0.5625,9.023893E-15,-0.1035573,0.9375,1.804779E-15,0.09780411,0.5625,0.1694017,0.05062713,0.5625,0.188943,0.05177864,0.9375,0.08968324,0.0268026,0.9375,0.1000287,-9.023893E-16,0.5625,-0.1956082,0.05062713,0.5625,-0.188943,-1.353584E-15,0.9375,-0.1035573,0.0268026,0.9375,-0.1000287,-0.08968324,0.9375,0.05177864,-0.07322606,0.9375,0.07322606,-0.1694017,0.5625,0.09780411,-0.1383159,0.5625,0.1383159,0.1438296,0.1875,0.2491201,0.07445166,0.1875,0.2778574,-0.2876591,0.1875,1.804779E-15,-0.2778574,0.1875,0.07445166,-0.2491201,0.1875,-0.1438296,-0.2778574,0.1875,-0.07445166,-0.2491201,0.1875,0.1438296,-0.2034057,0.1875,0.2034057,-0.2778574,0.1875,-0.07445166,-0.2876591,0.1875,1.804779E-15,-1.353584E-15,0.1875,-0.2876591,0.07445166,0.1875,-0.2778574,0.07445166,0.1875,0.2778574,4.060752E-15,0.1875,0.2876591,0.1438296,0.1875,-0.2491201,0.2034057,0.1875,-0.2034057,-0.2778574,0.1875,0.07445166,-0.2491201,0.1875,0.1438296,0.2034057,0.1875,-0.2034057,0.2491201,0.1875,-0.1438296,0.07445166,0.1875,-0.2778574,0.1438296,0.1875,-0.2491201,-0.1438296,0.1875,0.2491201,-0.2034057,0.1875,0.2034057,-0.07445166,0.1875,0.2778574,-0.1438296,0.1875,0.2491201,0.2034057,0.1875,0.2034057,0.1438296,0.1875,0.2491201,0.2491201,0.1875,-0.1438296,0.2778574,0.1875,-0.07445166,0.2491201,0.1875,0.1438296,0.2034057,0.1875,0.2034057,-0.2034057,0.1875,-0.2034057,-0.2491201,0.1875,-0.1438296,-0.2034057,0.1875,-0.2034057,-0.1438296,0.1875,-0.2491201,4.060752E-15,0.1875,0.2876591,-0.07445166,0.1875,0.2778574,0.2778574,0.1875,-0.07445166,0.2876591,0.1875,1.804779E-15,0.2876591,0.1875,1.804779E-15,0.2778574,0.1875,0.07445166,0.2778574,0.1875,0.07445166,0.2491201,0.1875,0.1438296,-0.07445166,0.1875,-0.2778574,-1.353584E-15,0.1875,-0.2876591,-0.1438296,0.1875,-0.2491201,-0.07445166,0.1875,-0.2778574 + } + PolygonVertexIndex: *468 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,5,-3,7,6,-3,8,6,-8,9,8,-8,10,9,-8,11,10,-8,12,11,-8,13,12,-8,14,13,-8,0,15,-3,2,15,-17,15,17,-17,17,18,-17,18,19,-17,19,20,-17,21,16,-21,7,21,-15,22,21,-21,23,21,-23,24,21,-24,25,21,-25,26,21,-26,27,21,-27,14,21,-28,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,49,-52,53,52,-52,54,52,-54,55,54,-54,56,54,-56,57,56,-56,58,56,-58,59,58,-58,60,58,-60,61,60,-60,62,60,-62,63,62,-62,64,62,-64,65,64,-64,66,64,-66,67,66,-66,68,66,-68,69,68,-68,70,68,-70,71,70,-70,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,156,-170,157,169,-157,170,171,-147,147,146,-172,172,173,-149,150,148,-174,166,174,-168,175,167,-175,176,177,-153,154,152,-178,178,160,-180,161,179,-161,180,136,-182,137,181,-137,182,36,-184,37,183,-37,94,184,-96,185,95,-185,186,124,-188,125,187,-125,188,44,-190,45,189,-45,190,104,-192,105,191,-105,192,128,-194,129,193,-129,194,112,-196,113,195,-113,196,28,-198,29,197,-29,97,99,-199,199,198,-100,200,201,-81,82,80,-202,202,100,-204,101,203,-101,204,132,-206,133,205,-133,206,72,-208,73,207,-73,116,117,-209,209,208,-118,77,79,-211,211,210,-80,212,140,-214,141,213,-141,214,40,-216,41,215,-41 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1404 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8410571,0.238392,-0.4855845,0.8410571,0.238392,-0.4855845,0.9380773,0.238392,-0.251357,0.9380773,0.238392,-0.251357,0.9380773,0.238392,-0.251357,0.8410571,0.238392,-0.4855845,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4855845,0.238392,-0.8410571,0.4855845,0.238392,-0.8410571,0.6867202,0.238392,-0.6867202,0.6867202,0.238392,-0.6867202,0.6867202,0.238392,-0.6867202,0.4855845,0.238392,-0.8410571,-0.4855845,0.238392,-0.8410571,-0.4855845,0.238392,-0.8410571,-0.2513571,0.238392,-0.9380772,-0.2513571,0.238392,-0.9380772,-0.2513571,0.238392,-0.9380772,-0.4855845,0.238392,-0.8410571,0.2513571,0.238392,-0.9380772,0.2513571,0.238392,-0.9380772,0.4855845,0.238392,-0.8410571,0.4855845,0.238392,-0.8410571,0.4855845,0.238392,-0.8410571,0.2513571,0.238392,-0.9380772,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9380773,0.238392,-0.251357,0.9380773,0.238392,-0.251357,0.971169,0.238392,0,0.971169,0.238392,0,0.971169,0.238392,0,0.9380773,0.238392,-0.251357,0.9380773,0.238392,0.251357,0.8410571,0.238392,0.4855845,0.9380773,0.238392,0.251357,0.8410571,0.238392,0.4855845,0.9380773,0.238392,0.251357,0.8410571,0.238392,0.4855845,-0.6867202,0.238392,-0.6867202,-0.8410571,0.238392,-0.4855845,-0.6867202,0.238392,-0.6867202,-0.8410571,0.238392,-0.4855845,-0.6867202,0.238392,-0.6867202,-0.8410571,0.238392,-0.4855845,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9380773,0.238392,0.251357,-0.9380773,0.238392,0.251357,-0.8410571,0.238392,0.4855845,-0.8410571,0.238392,0.4855845,-0.8410571,0.238392,0.4855845,-0.9380773,0.238392,0.251357,0.8410571,0.238392,0.4855845,0.6867202,0.238392,0.6867202,0.8410571,0.238392,0.4855845,0.6867202,0.238392,0.6867202,0.8410571,0.238392,0.4855845,0.6867202,0.238392,0.6867202,-0.6867202,0.238392,-0.6867202,-0.6867202,0.238392,-0.6867202,-0.4855845,0.238392,-0.8410571,-0.4855845,0.238392,-0.8410571,-0.4855845,0.238392,-0.8410571,-0.6867202,0.238392,-0.6867202,-0.4855845,0.238392,0.8410571,-0.4855845,0.238392,0.8410571,-0.6867202,0.238392,0.6867202,-0.6867202,0.238392,0.6867202,-0.6867202,0.238392,0.6867202,-0.4855845,0.238392,0.8410571,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6867202,0.238392,0.6867202,0.6867202,0.238392,0.6867202,0.4855845,0.238392,0.8410571,0.4855845,0.238392,0.8410571,0.4855845,0.238392,0.8410571,0.6867202,0.238392,0.6867202,0.971169,0.238392,0,0.971169,0.238392,0,0.9380773,0.238392,0.251357,0.9380773,0.238392,0.251357,0.9380773,0.238392,0.251357,0.971169,0.238392,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6867202,0.238392,-0.6867202,0.6867202,0.238392,-0.6867202,0.8410571,0.238392,-0.4855845,0.8410571,0.238392,-0.4855845,0.8410571,0.238392,-0.4855845,0.6867202,0.238392,-0.6867202,-0.2513571,0.238392,0.9380772,-0.2513571,0.238392,0.9380772,-0.4855845,0.238392,0.8410571,-0.4855845,0.238392,0.8410571,-0.4855845,0.238392,0.8410571,-0.2513571,0.238392,0.9380772,0,0.238392,0.971169,0,0.238392,0.971169,-0.2513571,0.238392,0.9380772,-0.2513571,0.238392,0.9380772,-0.2513571,0.238392,0.9380772,0,0.238392,0.971169,0.2513571,0.238392,0.9380772,0.2513571,0.238392,0.9380772,0,0.238392,0.971169,0,0.238392,0.971169,0,0.238392,0.971169,0.2513571,0.238392,0.9380772,-0.2513571,0.238392,-0.9380772,-0.2513571,0.238392,-0.9380772,0,0.238392,-0.971169,0,0.238392,-0.971169,0,0.238392,-0.971169,-0.2513571,0.238392,-0.9380772,-0.971169,0.238392,0,-0.971169,0.238392,0,-0.9380773,0.238392,0.251357,-0.9380773,0.238392,0.251357,-0.9380773,0.238392,0.251357,-0.971169,0.238392,0,-0.8410571,0.238392,-0.4855845,-0.9380773,0.238392,-0.251357,-0.8410571,0.238392,-0.4855845,-0.9380773,0.238392,-0.251357,-0.8410571,0.238392,-0.4855845,-0.9380773,0.238392,-0.251357,-0.9380773,0.238392,-0.251357,-0.971169,0.238392,0,-0.9380773,0.238392,-0.251357,-0.971169,0.238392,0,-0.9380773,0.238392,-0.251357,-0.971169,0.238392,0,0.4855845,0.238392,0.8410571,0.4855845,0.238392,0.8410571,0.2513571,0.238392,0.9380772,0.2513571,0.238392,0.9380772,0.2513571,0.238392,0.9380772,0.4855845,0.238392,0.8410571,0,0.238392,-0.971169,0,0.238392,-0.971169,0.2513571,0.238392,-0.9380772,0.2513571,0.238392,-0.9380772,0.2513571,0.238392,-0.9380772,0,0.238392,-0.971169,-0.8410571,0.238392,0.4855845,-0.8410571,0.238392,0.4855845,-0.6867202,0.238392,0.6867202,-0.6867202,0.238392,0.6867202,-0.6867202,0.238392,0.6867202,-0.8410571,0.238392,0.4855845,0.4855845,0.238392,0.8410571,0.4855845,0.238392,0.8410571,0.2513571,0.238392,0.9380772,0.2513571,0.238392,0.9380772,0.2513571,0.238392,0.9380772,0.4855845,0.238392,0.8410571,-0.971169,0.238392,0,-0.9380773,0.238392,0.251357,-0.971169,0.238392,0,-0.9380773,0.238392,0.251357,-0.971169,0.238392,0,-0.9380773,0.238392,0.251357,-0.8410571,0.238392,-0.4855845,-0.9380773,0.238392,-0.251357,-0.8410571,0.238392,-0.4855845,-0.9380773,0.238392,-0.251357,-0.8410571,0.238392,-0.4855845,-0.9380773,0.238392,-0.251357,-0.8410571,0.238392,0.4855845,-0.8410571,0.238392,0.4855845,-0.6867202,0.238392,0.6867202,-0.6867202,0.238392,0.6867202,-0.6867202,0.238392,0.6867202,-0.8410571,0.238392,0.4855845,-0.9380773,0.238392,-0.251357,-0.971169,0.238392,0,-0.9380773,0.238392,-0.251357,-0.971169,0.238392,0,-0.9380773,0.238392,-0.251357,-0.971169,0.238392,0,0,0.238392,-0.971169,0,0.238392,-0.971169,0.2513571,0.238392,-0.9380772,0.2513571,0.238392,-0.9380772,0.2513571,0.238392,-0.9380772,0,0.238392,-0.971169,0.2513571,0.238392,0.9380772,0.2513571,0.238392,0.9380772,0,0.238392,0.971169,0,0.238392,0.971169,0,0.238392,0.971169,0.2513571,0.238392,0.9380772,0.4855845,0.238392,-0.8410571,0.4855845,0.238392,-0.8410571,0.6867202,0.238392,-0.6867202,0.6867202,0.238392,-0.6867202,0.6867202,0.238392,-0.6867202,0.4855845,0.238392,-0.8410571,-0.9380773,0.238392,0.251357,-0.9380773,0.238392,0.251357,-0.8410571,0.238392,0.4855845,-0.8410571,0.238392,0.4855845,-0.8410571,0.238392,0.4855845,-0.9380773,0.238392,0.251357,0.6867202,0.238392,-0.6867202,0.6867202,0.238392,-0.6867202,0.8410571,0.238392,-0.4855845,0.8410571,0.238392,-0.4855845,0.8410571,0.238392,-0.4855845,0.6867202,0.238392,-0.6867202,0.2513571,0.238392,-0.9380772,0.2513571,0.238392,-0.9380772,0.4855845,0.238392,-0.8410571,0.4855845,0.238392,-0.8410571,0.4855845,0.238392,-0.8410571,0.2513571,0.238392,-0.9380772,-0.4855845,0.238392,0.8410571,-0.4855845,0.238392,0.8410571,-0.6867202,0.238392,0.6867202,-0.6867202,0.238392,0.6867202,-0.6867202,0.238392,0.6867202,-0.4855845,0.238392,0.8410571,-0.2513571,0.238392,0.9380772,-0.2513571,0.238392,0.9380772,-0.4855845,0.238392,0.8410571,-0.4855845,0.238392,0.8410571,-0.4855845,0.238392,0.8410571,-0.2513571,0.238392,0.9380772,0.6867202,0.238392,0.6867202,0.6867202,0.238392,0.6867202,0.4855845,0.238392,0.8410571,0.4855845,0.238392,0.8410571,0.4855845,0.238392,0.8410571,0.6867202,0.238392,0.6867202,0.8410571,0.238392,-0.4855845,0.8410571,0.238392,-0.4855845,0.9380773,0.238392,-0.251357,0.9380773,0.238392,-0.251357,0.9380773,0.238392,-0.251357,0.8410571,0.238392,-0.4855845,0.8410571,0.238392,0.4855845,0.6867202,0.238392,0.6867202,0.8410571,0.238392,0.4855845,0.6867202,0.238392,0.6867202,0.8410571,0.238392,0.4855845,0.6867202,0.238392,0.6867202,-0.6867202,0.238392,-0.6867202,-0.8410571,0.238392,-0.4855845,-0.6867202,0.238392,-0.6867202,-0.8410571,0.238392,-0.4855845,-0.6867202,0.238392,-0.6867202,-0.8410571,0.238392,-0.4855845,-0.6867202,0.238392,-0.6867202,-0.6867202,0.238392,-0.6867202,-0.4855845,0.238392,-0.8410571,-0.4855845,0.238392,-0.8410571,-0.4855845,0.238392,-0.8410571,-0.6867202,0.238392,-0.6867202,0,0.238392,0.971169,0,0.238392,0.971169,-0.2513571,0.238392,0.9380772,-0.2513571,0.238392,0.9380772,-0.2513571,0.238392,0.9380772,0,0.238392,0.971169,0.9380773,0.238392,-0.251357,0.9380773,0.238392,-0.251357,0.971169,0.238392,0,0.971169,0.238392,0,0.971169,0.238392,0,0.9380773,0.238392,-0.251357,0.971169,0.238392,0,0.9380773,0.238392,0.251357,0.971169,0.238392,0,0.9380773,0.238392,0.251357,0.971169,0.238392,0,0.9380773,0.238392,0.251357,0.9380773,0.238392,0.251357,0.8410571,0.238392,0.4855845,0.9380773,0.238392,0.251357,0.8410571,0.238392,0.4855845,0.9380773,0.238392,0.251357,0.8410571,0.238392,0.4855845,-0.2513571,0.238392,-0.9380772,-0.2513571,0.238392,-0.9380772,0,0.238392,-0.971169,0,0.238392,-0.971169,0,0.238392,-0.971169,-0.2513571,0.238392,-0.9380772,-0.4855845,0.238392,-0.8410571,-0.4855845,0.238392,-0.8410571,-0.2513571,0.238392,-0.9380772,-0.2513571,0.238392,-0.9380772,-0.2513571,0.238392,-0.9380772,-0.4855845,0.238392,-0.8410571 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *432 { + a: -1.132516,7.105427E-15,-1.093927,-0.2931168,-1.476378,-1.476378,-0.9807879,-0.5662581,-0.8008099,-0.8008099,-0.5662581,-0.9807879,-0.2931168,-1.093927,1.476378,-1.476378,5.329071E-15,-1.132516,0.2931168,-1.093927,0.5662581,-0.9807879,0.8008099,-0.8008099,0.9807879,-0.5662581,1.093927,-0.2931168,1.132516,7.105427E-15,-1.093927,0.2931168,-1.476378,1.476378,-0.9807879,0.5662581,-0.8008099,0.8008099,-0.5662581,0.9807879,-0.2931168,1.093927,1.476378,1.476378,-1.598721E-14,1.132516,0.2931168,1.093927,0.5662581,0.9807879,0.8008099,0.8008099,0.9807879,0.5662581,1.093927,0.2931168,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,1.476378,0.738189,1.476378,0,-1.476378,0.738189,-1.476378,0,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,-0.4077059,7.105427E-15,-0.3938136,0.105522,-0.3938136,-0.105522,-0.3530836,-0.2038529,-0.3530836,0.2038529,-0.2882916,-0.2882916,-0.2882916,0.2882916,-0.2038529,-0.3530836,-0.2038529,0.3530836,-0.105522,-0.3938136,-0.105522,0.3938136,5.329071E-15,-0.4077059,5.329071E-15,0.4077059,0.105522,-0.3938136,0.105522,0.3938136,0.2038529,-0.3530836,0.2038529,0.3530836,0.2882916,-0.2882916,0.2882916,0.2882916,0.3530836,-0.2038529,0.3530836,0.2038529,0.3938136,-0.105522,0.3938136,0.105522,0.4077059,7.105427E-15,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.05321629,3.490684,0.1005197,1.971213,-0.05321629,3.490684,-0.1005197,1.971213,-0.1005197,1.971213,-0.05321629,3.490684,0.1005197,1.971213,0.05321629,3.490684,-1.476378,0,-1.476378,0.738189,1.476378,0,1.476378,0.738189,1.476378,0,-1.476378,0,1.476378,0.738189,-1.476378,0.738189,-0.05321629,3.490684,0.05321629,3.490684,-0.1005197,1.971213,0.1005197,1.971213,0.05321629,3.490684,0.1005197,1.971213,-0.05321629,3.490684,-0.1005197,1.971213,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,1.476378,1.476378,1.476378,-1.476378,-1.476378,1.476378,-1.476378,-1.476378,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,1.476378,0,-1.476378,0,1.476378,0.738189,-1.476378,0.738189,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,-0.05321629,3.490684,0.05321629,3.490684,-0.1005197,1.971213,0.1005197,1.971213,-0.1005197,1.971213,-0.05321629,3.490684,0.1005197,1.971213,0.05321629,3.490684,-0.1005197,1.971213,-0.05321629,3.490684,0.1005197,1.971213,0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,0.1005197,1.971213,-0.1005197,1.971213,0.05321629,3.490684,-0.05321629,3.490684,-0.05321629,3.490684,0.05321629,3.490684,-0.1005197,1.971213,0.1005197,1.971213,0.147823,0.4517419,-0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419,0.147823,0.4517419,-0.147823,0.4517419 + } + UVIndex: *468 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,5,2,7,6,2,8,6,7,9,8,7,10,9,7,11,10,7,12,11,7,13,12,7,14,13,7,0,15,2,2,15,16,15,17,16,17,18,16,18,19,16,19,20,16,21,16,20,7,21,14,22,21,20,23,21,22,24,21,23,25,21,24,26,21,25,27,21,26,14,21,27,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,49,51,53,52,51,54,52,53,55,54,53,56,54,55,57,56,55,58,56,57,59,58,57,60,58,59,61,60,59,62,60,61,63,62,61,64,62,63,65,64,63,66,64,65,67,66,65,68,66,67,69,68,67,70,68,69,71,70,69,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,156,169,157,169,156,170,171,146,147,146,171,172,173,148,150,148,173,166,174,167,175,167,174,176,177,152,154,152,177,178,160,179,161,179,160,180,136,181,137,181,136,182,36,183,37,183,36,94,184,95,185,95,184,186,124,187,125,187,124,188,44,189,45,189,44,190,104,191,105,191,104,192,128,193,129,193,128,194,112,195,113,195,112,196,28,197,29,197,28,97,99,198,199,198,99,200,201,80,82,80,201,202,100,203,101,203,100,204,132,205,133,205,132,206,72,207,73,207,72,116,117,208,209,208,117,77,79,210,211,210,79,212,140,213,141,213,140,214,40,215,41,215,40 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *156 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 11172, "Material::cone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.4313726,0.145098 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.4313726,0.145098 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh construction_pylon, Model::RootNode + C: "OO",5745439150489584893,0 + + ;Geometry::, Model::Mesh construction_pylon + C: "OO",5174986684983090716,5745439150489584893 + + ;Material::cone, Model::Mesh construction_pylon + C: "OO",11172,5745439150489584893 + + ;Material::pavement, Model::Mesh construction_pylon + C: "OO",17046,5745439150489584893 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/construction_pylon.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_pylon.fbx.import new file mode 100644 index 0000000..79ccedd --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/construction_pylon.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bup5le88fk4wy" +path="res://.godot/imported/construction_pylon.fbx-04e5b479aa3ce5f6d207c760a5aa3f89.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/construction_pylon.fbx" +dest_files=["res://.godot/imported/construction_pylon.fbx-04e5b479aa3ce5f6d207c760a5aa3f89.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_curved.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curved.fbx new file mode 100644 index 0000000..fee1c45 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curved.fbx @@ -0,0 +1,355 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 16 + Millisecond: 226 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "light_curved.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "light_curved.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5403439392267124632, "Model::light_curved", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5623517921031068456, "Geometry::", "Mesh" { + Vertices: *474 { + a: 0.25,6.75,-1.5,0.25,6.527778,-1.5,0.125,6.75,-1,0.125,6.527778,-1,0.25,0,0.25,-0.25,0,0.25,0.25,1,0.25,-0.25,1,0.25,0.125,6.527778,-1,0.125,6.502059,-0.7886714,0.125,6.75,-1,0.125,6.716933,-0.7282919,0.125,6.426402,-0.5896806,0.125,6.61966,-0.4724464,0.125,6.305226,-0.4146447,0.125,6.463862,-0.2474003,0.125,6.145604,-0.2737827,0.125,5.956856,-0.1753183,0.125,6.258634,-0.06629206,0.125,5.75,-0.125,0.125,1.5,-0.125,0.125,1.5,0.125,0.125,6.015958,0.06030502,0.125,5.75,0.125,0.125,6.305226,-0.4146447,0.125,6.426402,-0.5896806,-0.125,6.305226,-0.4146447,-0.125,6.426402,-0.5896806,0.125,6.258634,-0.06629206,-0.125,6.258634,-0.06629206,0.125,6.463862,-0.2474003,-0.125,6.463862,-0.2474003,0.25,1,-0.25,0.25,0,-0.25,0.25,1,0.25,0.25,0,0.25,-0.25,1,-0.25,-0.125,1.5,-0.125,-0.25,1,0.25,-0.125,1.5,0.125,-0.25,6.527778,-2,0.25,6.527778,-2,-0.25,6.75,-2,0.25,6.75,-2,-0.125,1.5,-0.125,0.125,1.5,-0.125,-0.125,5.75,-0.125,0.125,5.75,-0.125,0.125,6.502059,-0.7886714,0.125,6.527778,-1,-0.125,6.502059,-0.7886714,-0.125,6.527778,-1,0.25,6.75,-2,0.25,6.527778,-2,0.25,6.75,-1.5,0.25,6.527778,-1.5,0.25,1,0.25,-0.25,1,0.25,0.125,1.5,0.125,-0.125,1.5,0.125,0.125,1.5,0.125,-0.125,1.5,0.125,0.125,5.75,0.125,-0.125,5.75,0.125,0.125,6.716933,-0.7282919,0.125,6.61966,-0.4724464,-0.125,6.716933,-0.7282919,-0.125,6.61966,-0.4724464,0.125,5.75,0.125,-0.125,5.75,0.125,0.125,6.015958,0.06030502,-0.125,6.015958,0.06030502,-0.25,0,-0.25,0.25,0,-0.25,-0.25,1,-0.25,0.25,1,-0.25,-0.125,5.75,-0.125,0.125,5.75,-0.125,-0.125,5.956856,-0.1753183,0.125,5.956856,-0.1753183,-0.25,6.527778,-1.5,-0.25,6.75,-1.5,-0.125,6.527778,-1,-0.125,6.75,-1,0.125,6.61966,-0.4724464,0.125,6.463862,-0.2474003,-0.125,6.61966,-0.4724464,-0.125,6.463862,-0.2474003,-0.25,1,-0.25,0.25,1,-0.25,-0.125,1.5,-0.125,0.125,1.5,-0.125,-0.25,0,-0.25,-0.25,1,-0.25,-0.25,0,0.25,-0.25,1,0.25,-0.25,6.527778,-2,-0.25,6.75,-2,-0.25,6.527778,-1.5,-0.25,6.75,-1.5,0.125,6.426402,-0.5896806,0.125,6.502059,-0.7886714,-0.125,6.426402,-0.5896806,-0.125,6.502059,-0.7886714,0.25,6.75,-2,0.25,6.75,-1.5,-0.25,6.75,-2,0.125,6.75,-1,-0.125,6.75,-1,-0.25,6.75,-1.5,-0.125,5.956856,-0.1753183,0.125,5.956856,-0.1753183,-0.125,6.145604,-0.2737827,0.125,6.145604,-0.2737827,0.125,6.015958,0.06030502,-0.125,6.015958,0.06030502,0.125,6.258634,-0.06629206,-0.125,6.258634,-0.06629206,0.25,1,-0.25,0.25,1,0.25,0.125,1.5,-0.125,0.125,1.5,0.125,-0.125,6.145604,-0.2737827,0.125,6.145604,-0.2737827,-0.125,6.305226,-0.4146447,0.125,6.305226,-0.4146447,0.125,6.716933,-0.7282919,-0.125,6.716933,-0.7282919,0.125,6.75,-1,-0.125,6.75,-1,-0.125,1.5,-0.125,-0.125,5.75,-0.125,-0.125,1.5,0.125,-0.125,6.258634,-0.06629206,-0.125,6.015958,0.06030502,-0.125,5.75,0.125,-0.125,5.956856,-0.1753183,-0.125,6.463862,-0.2474003,-0.125,6.145604,-0.2737827,-0.125,6.305226,-0.4146447,-0.125,6.61966,-0.4724464,-0.125,6.426402,-0.5896806,-0.125,6.716933,-0.7282919,-0.125,6.502059,-0.7886714,-0.125,6.75,-1,-0.125,6.527778,-1,0.25,6.527778,-1.5,0.25,6.527778,-2,0.125,6.527778,-1,-0.25,6.527778,-2,-0.125,6.527778,-1,-0.25,6.527778,-1.5,0.25,0,0.25,0.25,0,-0.25,-0.25,0,0.25,-0.25,0,-0.25,-0.25,0,0.25,0.25,0,-0.25 + } + PolygonVertexIndex: *276 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,14,12,-14,15,14,-14,16,14,-16,17,16,-16,18,17,-16,19,17,-19,20,19,-19,21,20,-19,22,21,-19,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,107,-107,109,108,-107,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,133,-133,135,134,-133,131,133,-137,133,137,-137,136,137,-139,138,137,-140,137,140,-140,139,140,-142,140,142,-142,141,142,-144,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,149,-149,151,149,-151,152,154,-154,155,157,-157 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *828 { + a: 0.9925076,0,0.1221833,0.9701425,0,0.2425356,0.9925076,0,0.1221833,0.9701425,0,0.2425356,0.9925076,0,0.1221833,0.9701425,0,0.2425356,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7474093,-0.6643638,0,-0.7474093,-0.6643638,0,-0.8849414,-0.4657024,0,-0.8849414,-0.4657024,0,-0.8849414,-0.4657024,0,-0.7474093,-0.6643638,0,0.5662425,0.8242387,0,0.7474093,0.6643638,0,0.5662425,0.8242387,0,0.7474093,0.6643638,0,0.5662425,0.8242387,0,0.7474093,0.6643638,0.9936895,0.1121652,0,0.9936895,0.1121652,0,1,0,0,1,0,0,1,0,0,0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9936895,0.1121652,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9708093,-0.2398527,0,-0.9708093,-0.2398527,0,-0.9926755,-0.1208112,0,-0.9926755,-0.1208112,0,-0.9926755,-0.1208112,0,-0.9708093,-0.2398527,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9708093,0.2398527,0,0.9708093,0.2398527,0,0.8849414,0.4657024,0,0.8849414,0.4657024,0,0.8849414,0.4657024,0,0.9708093,0.2398527,0,0.2363607,0.9716654,0,0.3520176,0.9359934,0,0.2363607,0.9716654,0,0.3520176,0.9359934,0,0.2363607,0.9716654,0,0.3520176,0.9359934,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,-0.2363607,-0.9716654,0,-0.3520176,-0.9359934,0,-0.2363607,-0.9716654,0,-0.3520176,-0.9359934,0,-0.2363607,-0.9716654,0,-0.3520176,-0.9359934,-0.9925076,0,0.1221833,-0.9701425,0,0.2425356,-0.9925076,0,0.1221833,-0.9701425,0,0.2425356,-0.9925076,0,0.1221833,-0.9701425,0,0.2425356,0,0.8849414,0.4657024,0,0.8849414,0.4657024,0,0.7474093,0.6643638,0,0.7474093,0.6643638,0,0.7474093,0.6643638,0,0.8849414,0.4657024,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,-1,0,0,-1,0,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-1,0,0,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,0,-0.8849414,-0.4657024,0,-0.8849414,-0.4657024,0,-0.9708093,-0.2398527,0,-0.9708093,-0.2398527,0,-0.9708093,-0.2398527,0,-0.8849414,-0.4657024,0,1,0,0,1,0,0,1,0,0,0.998423,0.05613833,0,1,0,0,1,0,0,0.998423,0.05613833,0,0.998423,0.05613833,0,1,0,0,1,0,0,0.998423,0.05613833,0,1,0,0,-0.3520176,-0.9359934,0,-0.5662425,-0.8242387,0,-0.3520176,-0.9359934,0,-0.5662425,-0.8242387,0,-0.3520176,-0.9359934,0,-0.5662425,-0.8242387,0,0.3520176,0.9359934,0,0.5662425,0.8242387,0,0.3520176,0.9359934,0,0.5662425,0.8242387,0,0.3520176,0.9359934,0,0.5662425,0.8242387,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0,-0.5662425,-0.8242387,0,-0.7474093,-0.6643638,0,-0.5662425,-0.8242387,0,-0.7474093,-0.6643638,0,-0.5662425,-0.8242387,0,-0.7474093,-0.6643638,0,0.9708093,0.2398527,0,0.998423,0.05613833,0,0.9708093,0.2398527,0,0.998423,0.05613833,0,0.9708093,0.2398527,0,0.998423,0.05613833,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *316 { + a: 5.967904,26.5748,5.967904,25.69991,3.938817,26.5748,3.938817,25.69991,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,3.937008,25.69991,3.105006,25.59866,3.937008,26.5748,2.867291,26.44462,2.321577,25.3008,1.860025,26.06166,1.63246,24.82372,0.9740171,25.44828,1.077885,24.19529,0.6902296,23.45219,0.2609924,24.64029,0.492126,22.63779,0.492126,5.905512,-0.492126,5.905512,-0.2374213,23.68487,-0.492126,22.63779,-0.492126,15.47192,-0.492126,16.31007,0.492126,15.47192,0.492126,16.31007,0.492126,18.64781,-0.492126,18.64781,0.492126,19.72542,-0.492126,19.72542,0.984252,3.937008,0.984252,0,-0.984252,3.937008,-0.984252,0,-0.984252,3.580743,-0.492126,5.60983,0.984252,3.580743,0.492126,5.60983,0.984252,25.69991,-0.984252,25.69991,0.984252,26.5748,-0.984252,26.5748,0.492126,5.905512,-0.492126,5.905512,0.492126,22.63779,-0.492126,22.63779,-0.492126,6.174868,-0.492126,7.013009,0.492126,6.174868,0.492126,7.013009,7.874016,26.5748,7.874016,25.69991,5.905512,26.5748,5.905512,25.69991,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,0.492126,5.905512,-0.492126,5.905512,0.492126,22.63779,-0.492126,22.63779,0.492126,12.07802,0.492126,11.00041,-0.492126,12.07802,-0.492126,11.00041,0.492126,21.88004,-0.492126,21.88004,0.492126,22.95765,-0.492126,22.95765,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,0.492126,22.11268,-0.492126,22.11268,0.492126,22.95082,-0.492126,22.95082,-5.967904,25.69991,-5.967904,26.5748,-3.938817,25.69991,-3.938817,26.5748,0.492126,16.36366,0.492126,15.28605,-0.492126,16.36366,-0.492126,15.28605,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,-0.984252,0,-0.984252,3.937008,0.984252,0,0.984252,3.937008,-7.874016,25.69991,-7.874016,26.5748,-5.905512,25.69991,-5.905512,26.5748,-0.492126,11.16144,-0.492126,11.99958,0.492126,11.16144,0.492126,11.99958,-0.984252,-7.874016,-0.984252,-5.905512,0.984252,-7.874016,-0.492126,-3.937008,0.492126,-3.937008,0.984252,-5.905512,0.492126,21.11219,-0.492126,21.11219,0.492126,21.95033,-0.492126,21.95033,0.492126,20.88943,-0.492126,20.88943,0.492126,21.96704,-0.492126,21.96704,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,0.492126,18.85467,-0.492126,18.85467,0.492126,19.69281,-0.492126,19.69281,0.492126,6.041096,-0.492126,6.041096,0.492126,7.118706,-0.492126,7.118706,-0.492126,5.905512,-0.492126,22.63779,0.492126,5.905512,-0.2609924,24.64029,0.2374213,23.68487,0.492126,22.63779,-0.6902296,23.45219,-0.9740171,25.44828,-1.077885,24.19529,-1.63246,24.82372,-1.860025,26.06166,-2.321577,25.3008,-2.867291,26.44462,-3.105006,25.59866,-3.937008,26.5748,-3.937008,25.69991,0.984252,-5.905512,0.984252,-7.874016,0.492126,-3.937008,-0.984252,-7.874016,-0.492126,-3.937008,-0.984252,-5.905512,-5.905512,26.5748,-5.905512,25.69991,-7.874016,26.5748,-5.905512,26.5748,-5.905512,25.69991,-7.874016,26.5748 + } + UVIndex: *276 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,14,12,13,15,14,13,16,14,15,17,16,15,18,17,15,19,17,18,20,19,18,21,20,18,22,21,18,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,107,106,109,108,106,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,133,132,135,134,132,131,133,136,133,137,136,136,137,138,138,137,139,137,140,139,139,140,141,140,142,141,141,142,143,142,144,143,145,143,144,146,148,147,149,147,148,150,149,148,151,149,150,152,154,153,155,157,156 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *92 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 7046, "Material::light", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.945098,0.9490196,0.9647059 + P: "DiffuseColor", "Color", "", "A",0.945098,0.9490196,0.9647059 + } + } + + Material: 9918, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "EmissiveFactor", "Number", "", "A",0 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh light_curved, Model::RootNode + C: "OO",5403439392267124632,0 + + ;Geometry::, Model::Mesh light_curved + C: "OO",5623517921031068456,5403439392267124632 + + ;Material::pavement, Model::Mesh light_curved + C: "OO",17046,5403439392267124632 + + ;Material::light, Model::Mesh light_curved + C: "OO",7046,5403439392267124632 + + ;Material::_defaultMat, Model::Mesh light_curved + C: "OO",9918,5403439392267124632 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_curved.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curved.fbx.import new file mode 100644 index 0000000..b5421bb --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curved.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cnmv738gmsi2r" +path="res://.godot/imported/light_curved.fbx-258b04277ed113be4b42b197a6fc8103.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/light_curved.fbx" +dest_files=["res://.godot/imported/light_curved.fbx-258b04277ed113be4b42b197a6fc8103.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedCross.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedCross.fbx new file mode 100644 index 0000000..0ff95e0 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedCross.fbx @@ -0,0 +1,355 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 16 + Millisecond: 369 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "light_curvedCross.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "light_curvedCross.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4664799438840644939, "Model::light_curvedCross", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4981165146883750696, "Geometry::", "Mesh" { + Vertices: *1350 { + a: -1.5,6.527778,0.25,-2,6.527778,0.25,-1.5,6.75,0.25,-2,6.75,0.25,-0.7282919,6.716933,0.125,-1,6.75,0.125,-0.7282919,6.716933,-0.125,-1,6.75,-0.125,-0.2737827,6.145604,-0.125,-0.4146447,6.305226,-0.125,-0.2737827,6.145604,0.125,-0.4146447,6.305226,0.125,-0.1753183,5.956856,-0.125,-0.2737827,6.145604,-0.125,-0.1753183,5.956856,0.125,-0.2737827,6.145604,0.125,0.1753183,5.956856,-0.125,0.125,5.75,-0.125,0.1753183,5.956856,0.125,0.125,5.75,0.125,-1,6.527778,0.125,-1.5,6.527778,0.25,-1,6.75,0.125,-1.5,6.75,0.25,-2,6.527778,-0.25,-2,6.75,-0.25,-2,6.527778,0.25,-2,6.75,0.25,-0.4724464,6.61966,0.125,-0.7282919,6.716933,0.125,-0.4724464,6.61966,-0.125,-0.7282919,6.716933,-0.125,1,6.527778,0.125,1,6.527778,-0.125,0.7886714,6.502059,0.125,0.7886714,6.502059,-0.125,1.5,6.527778,0.25,1,6.527778,0.125,1.5,6.75,0.25,1,6.75,0.125,2,6.527778,0.25,1.5,6.527778,0.25,2,6.75,0.25,1.5,6.75,0.25,-0.4146447,6.305226,0.125,-0.4146447,6.305226,-0.125,-0.5896806,6.426402,0.125,-0.5896806,6.426402,-0.125,-1.5,6.527778,-0.25,-1,6.527778,-0.125,-1.5,6.75,-0.25,-1,6.75,-0.125,0.5896806,6.426402,0.125,0.5896806,6.426402,-0.125,0.4146447,6.305226,0.125,0.4146447,6.305226,-0.125,-0.7886714,6.502059,0.125,-0.7886714,6.502059,-0.125,-1,6.527778,0.125,-1,6.527778,-0.125,-1,6.75,0.125,-1.5,6.75,0.25,-1,6.75,-0.125,-1.5,6.75,-0.25,-2,6.75,0.25,-2,6.75,-0.25,2,6.75,-0.25,2,6.527778,-0.25,2,6.75,0.25,2,6.527778,0.25,-0.5896806,6.426402,0.125,-0.5896806,6.426402,-0.125,-0.7886714,6.502059,0.125,-0.7886714,6.502059,-0.125,-0.2474003,6.463862,0.125,-0.4724464,6.61966,0.125,-0.2474003,6.463862,-0.125,-0.4724464,6.61966,-0.125,-2,6.527778,-0.25,-1.5,6.527778,-0.25,-2,6.75,-0.25,-1.5,6.75,-0.25,0.7282919,6.716933,0.125,0.4724464,6.61966,0.125,0.7282919,6.716933,-0.125,0.4724464,6.61966,-0.125,-0.125,6.145604,-0.2737827,0.125,6.145604,-0.2737827,-0.125,6.305226,-0.4146447,0.125,6.305226,-0.4146447,-0.25,1,-0.25,-0.125,1.5,-0.125,-0.25,1,0.25,-0.125,1.5,0.125,0.125,6.75,1,0.125,6.527778,1,0.25,6.75,1.5,0.25,6.527778,1.5,-0.06629206,6.258634,0.06629206,9.565326E-14,6.131557,-1.010676E-13,0.06629206,6.258634,0.06629206,0.125,6.75,1,-0.125,6.75,1,0.125,6.716933,0.7282919,-0.125,6.716933,0.7282919,0.25,6.527778,2,-0.25,6.527778,2,0.25,6.75,2,-0.25,6.75,2,0.25,6.75,-2,0.25,6.75,-1.5,-0.25,6.75,-2,0.125,6.75,-1,-0.125,6.75,-1,-0.25,6.75,-1.5,0.125,6.61966,-0.4724464,0.125,6.463862,-0.2474003,-0.125,6.61966,-0.4724464,-0.125,6.463862,-0.2474003,0.125,6.426402,-0.5896806,0.125,6.502059,-0.7886714,-0.125,6.426402,-0.5896806,-0.125,6.502059,-0.7886714,0.125,1.5,0.125,-0.125,1.5,0.125,0.125,5.75,0.125,-0.125,5.75,0.125,0.125,6.32516,0.125,0.1753183,5.956856,0.125,0.2737827,6.145604,0.125,0.4146447,6.305226,0.125,0.5896806,6.426402,0.125,0.2474003,6.463862,0.125,0.7886714,6.502059,0.125,0.4724464,6.61966,0.125,1,6.527778,0.125,1,6.75,0.125,0.7282919,6.716933,0.125,-0.1753183,5.956856,0.125,-0.125,6.32516,0.125,-0.2737827,6.145604,0.125,-0.4146447,6.305226,0.125,-0.5896806,6.426402,0.125,-0.2474003,6.463862,0.125,-0.7886714,6.502059,0.125,-0.4724464,6.61966,0.125,-1,6.527778,0.125,-1,6.75,0.125,-0.7282919,6.716933,0.125,0.25,1,-0.25,0.25,0,-0.25,0.25,1,0.25,0.25,0,0.25,0.06629206,6.258634,-0.06629206,-0.06629206,6.258634,-0.06629206,0.125,6.32516,-0.125,-0.125,6.32516,-0.125,-0.125,6.463862,-0.2474003,0.125,6.463862,-0.2474003,0.125,6.716933,-0.7282919,-0.125,6.716933,-0.7282919,0.125,6.75,-1,-0.125,6.75,-1,0.2737827,6.145604,-0.125,0.1753183,5.956856,-0.125,0.2737827,6.145604,0.125,0.1753183,5.956856,0.125,-0.125,6.75,1,-0.25,6.75,1.5,-0.125,6.527778,1,-0.25,6.527778,1.5,2,6.75,0.25,1.5,6.75,0.25,2,6.75,-0.25,1.5,6.75,-0.25,1,6.75,0.125,1,6.75,-0.125,1,6.527778,-0.125,1.5,6.527778,-0.25,1,6.75,-0.125,1.5,6.75,-0.25,0.25,6.75,1.5,0.25,6.527778,1.5,0.25,6.75,2,0.25,6.527778,2,1,6.75,0.125,0.7282919,6.716933,0.125,1,6.75,-0.125,0.7282919,6.716933,-0.125,0.25,6.75,1.5,0.25,6.75,2,0.125,6.75,1,-0.25,6.75,2,-0.125,6.75,1,-0.25,6.75,1.5,1.5,6.527778,-0.25,2,6.527778,-0.25,1.5,6.75,-0.25,2,6.75,-0.25,-0.25,6.527778,-1.5,-0.25,6.75,-1.5,-0.125,6.527778,-1,-0.125,6.75,-1,0.125,6.502059,-0.7886714,0.125,6.527778,-1,-0.125,6.502059,-0.7886714,-0.125,6.527778,-1,-0.125,5.75,-0.125,-0.1753183,5.956856,-0.125,-0.125,5.75,0.125,-0.1753183,5.956856,0.125,0.4146447,6.305226,-0.125,0.2737827,6.145604,-0.125,0.4146447,6.305226,0.125,0.2737827,6.145604,0.125,0.25,0,0.25,-0.25,0,0.25,0.25,1,0.25,-0.25,1,0.25,-0.06629206,6.258634,0.06629206,0.06629206,6.258634,0.06629206,-0.125,6.32516,0.125,0.125,6.32516,0.125,0.125,6.463862,0.2474003,-0.125,6.463862,0.2474003,0.125,6.527778,1,0.125,6.502059,0.7886714,-0.125,6.527778,1,-0.125,6.502059,0.7886714,0.4724464,6.61966,0.125,0.2474003,6.463862,0.125,0.4724464,6.61966,-0.125,0.2474003,6.463862,-0.125,0.7886714,6.502059,0.125,0.7886714,6.502059,-0.125,0.5896806,6.426402,0.125,0.5896806,6.426402,-0.125,-0.25,6.527778,1.5,-0.25,6.75,1.5,-0.25,6.527778,2,-0.25,6.75,2,-0.125,5.75,0.125,-0.125,5.956856,0.1753183,0.125,5.75,0.125,0.125,5.956856,0.1753183,0.25,1,-0.25,0.25,1,0.25,0.125,1.5,-0.125,0.125,1.5,0.125,-0.25,0,-0.25,0.25,0,-0.25,-0.25,1,-0.25,0.25,1,-0.25,0.125,6.305226,0.4146447,-0.125,6.305226,0.4146447,0.125,6.426402,0.5896806,-0.125,6.426402,0.5896806,0.125,5.75,-0.125,0.125,1.5,-0.125,0.125,5.75,0.125,0.125,1.5,0.125,0.125,6.32516,-0.125,0.125,5.956856,-0.1753183,0.125,6.463862,-0.2474003,0.125,6.145604,-0.2737827,0.125,6.305226,-0.4146447,0.125,6.61966,-0.4724464,0.125,6.426402,-0.5896806,0.125,6.716933,-0.7282919,0.125,6.502059,-0.7886714,0.125,6.75,-1,0.125,6.527778,-1,0.125,6.32516,0.125,0.125,6.463862,0.2474003,0.125,5.956856,0.1753183,0.125,6.145604,0.2737827,0.125,6.61966,0.4724464,0.125,6.305226,0.4146447,0.125,6.426402,0.5896806,0.125,6.716933,0.7282919,0.125,6.502059,0.7886714,0.125,6.75,1,0.125,6.527778,1,-0.25,1,-0.25,0.25,1,-0.25,-0.125,1.5,-0.125,0.125,1.5,-0.125,-0.25,6.527778,-2,0.25,6.527778,-2,-0.25,6.75,-2,0.25,6.75,-2,-0.125,5.75,-0.125,0.125,5.75,-0.125,-0.125,5.956856,-0.1753183,0.125,5.956856,-0.1753183,0.125,6.305226,-0.4146447,0.125,6.426402,-0.5896806,-0.125,6.305226,-0.4146447,-0.125,6.426402,-0.5896806,0.125,6.463862,0.2474003,0.125,6.61966,0.4724464,-0.125,6.463862,0.2474003,-0.125,6.61966,0.4724464,0.25,1,0.25,-0.25,1,0.25,0.125,1.5,0.125,-0.125,1.5,0.125,0.125,5.75,-0.125,0.1753183,5.956856,-0.125,0.125,6.32516,-0.125,0.2737827,6.145604,-0.125,0.4146447,6.305226,-0.125,0.5896806,6.426402,-0.125,0.2474003,6.463862,-0.125,0.7886714,6.502059,-0.125,0.4724464,6.61966,-0.125,1,6.527778,-0.125,1,6.75,-0.125,0.7282919,6.716933,-0.125,-0.125,5.75,-0.125,0.125,1.5,-0.125,-0.125,1.5,-0.125,-0.125,6.32516,-0.125,-0.1753183,5.956856,-0.125,-0.2737827,6.145604,-0.125,-0.4146447,6.305226,-0.125,-0.5896806,6.426402,-0.125,-0.2474003,6.463862,-0.125,-0.7886714,6.502059,-0.125,-0.4724464,6.61966,-0.125,-1,6.527778,-0.125,-1,6.75,-0.125,-0.7282919,6.716933,-0.125,-0.125,5.956856,-0.1753183,0.125,5.956856,-0.1753183,-0.125,6.145604,-0.2737827,0.125,6.145604,-0.2737827,0.125,6.61966,0.4724464,0.125,6.716933,0.7282919,-0.125,6.61966,0.4724464,-0.125,6.716933,0.7282919,0.125,6.145604,0.2737827,-0.125,6.145604,0.2737827,0.125,6.305226,0.4146447,-0.125,6.305226,0.4146447,-0.25,6.527778,-2,-0.25,6.75,-2,-0.25,6.527778,-1.5,-0.25,6.75,-1.5,0.125,6.716933,-0.7282919,0.125,6.61966,-0.4724464,-0.125,6.716933,-0.7282919,-0.125,6.61966,-0.4724464,9.565326E-14,6.131557,-1.010676E-13,0.06629206,6.258634,-0.06629206,0.06629206,6.258634,0.06629206,-0.125,6.527778,-1,-0.125,6.75,-1,-0.125,6.502059,-0.7886714,-0.125,6.716933,-0.7282919,-0.125,6.426402,-0.5896806,-0.125,6.61966,-0.4724464,-0.125,6.305226,-0.4146447,-0.125,6.463862,-0.2474003,-0.125,6.145604,-0.2737827,-0.125,5.956856,-0.1753183,-0.125,6.32516,-0.125,-0.125,5.75,-0.125,-0.125,1.5,-0.125,-0.125,1.5,0.125,-0.125,5.75,0.125,-0.125,6.32516,0.125,-0.125,5.956856,0.1753183,-0.125,6.463862,0.2474003,-0.125,6.145604,0.2737827,-0.125,6.61966,0.4724464,-0.125,6.305226,0.4146447,-0.125,6.426402,0.5896806,-0.125,6.716933,0.7282919,-0.125,6.502059,0.7886714,-0.125,6.75,1,-0.125,6.527778,1,-0.125,6.32516,-0.125,-0.06629206,6.258634,-0.06629206,-0.2474003,6.463862,-0.125,-0.2474003,6.463862,0.125,-0.06629206,6.258634,0.06629206,-0.125,6.32516,0.125,0.125,6.426402,0.5896806,-0.125,6.426402,0.5896806,0.125,6.502059,0.7886714,-0.125,6.502059,0.7886714,-0.25,0,-0.25,-0.25,1,-0.25,-0.25,0,0.25,-0.25,1,0.25,0.25,6.75,-2,0.25,6.527778,-2,0.25,6.75,-1.5,0.25,6.527778,-1.5,0.25,6.75,-1.5,0.25,6.527778,-1.5,0.125,6.75,-1,0.125,6.527778,-1,0.125,5.956856,0.1753183,-0.125,5.956856,0.1753183,0.125,6.145604,0.2737827,-0.125,6.145604,0.2737827,0.06629206,6.258634,-0.06629206,9.565326E-14,6.131557,-1.010676E-13,-0.06629206,6.258634,-0.06629206,-0.06629206,6.258634,-0.06629206,9.565326E-14,6.131557,-1.010676E-13,-0.06629206,6.258634,0.06629206,0.2474003,6.463862,-0.125,0.2474003,6.463862,0.125,0.125,6.32516,-0.125,0.06629206,6.258634,-0.06629206,0.06629206,6.258634,0.06629206,0.125,6.32516,0.125,-1,6.527778,0.125,-1,6.527778,-0.125,-1.5,6.527778,0.25,-1.5,6.527778,-0.25,-2,6.527778,0.25,-2,6.527778,-0.25,2,6.527778,0.25,2,6.527778,-0.25,1.5,6.527778,0.25,1.5,6.527778,-0.25,1,6.527778,0.125,1,6.527778,-0.125,0.25,6.527778,1.5,0.125,6.527778,1,0.25,6.527778,2,-0.25,6.527778,2,-0.125,6.527778,1,-0.25,6.527778,1.5,0.25,6.527778,-1.5,0.25,6.527778,-2,0.125,6.527778,-1,-0.25,6.527778,-2,-0.125,6.527778,-1,-0.25,6.527778,-1.5,0.25,0,0.25,0.25,0,-0.25,-0.25,0,0.25,-0.25,0,-0.25,-0.25,0,0.25,0.25,0,-0.25 + } + PolygonVertexIndex: *810 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,61,-64,65,64,-64,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,112,-112,114,113,-112,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,125,128,-128,129,127,-129,130,127,-130,131,127,-131,132,127,-132,133,132,-132,134,132,-134,135,134,-134,136,134,-136,137,134,-137,126,139,-139,140,138,-140,141,140,-140,142,141,-140,143,142,-140,144,142,-144,145,144,-144,146,144,-146,147,146,-146,148,147,-146,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,156,-156,158,157,-156,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,169,-169,170,168,-170,171,173,-173,174,172,-174,175,172,-175,176,175,-175,177,179,-179,180,178,-180,181,183,-183,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,192,-192,194,192,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,222,-222,224,223,-222,225,227,-227,228,226,-228,229,231,-231,232,230,-232,233,235,-235,236,234,-236,237,239,-239,240,238,-240,241,243,-243,244,242,-244,245,247,-247,248,246,-248,249,251,-251,252,250,-252,253,255,-255,256,254,-256,257,259,-259,260,258,-260,257,262,-262,261,262,-264,262,264,-264,264,265,-264,263,265,-267,265,267,-267,266,267,-269,267,269,-269,268,269,-271,271,270,-270,272,273,-260,274,259,-274,275,274,-274,276,275,-274,277,275,-277,278,277,-277,279,278,-277,280,278,-280,281,280,-280,282,280,-282,283,285,-285,286,284,-286,287,289,-289,290,288,-290,291,293,-293,294,292,-294,295,297,-297,298,296,-298,299,301,-301,302,300,-302,303,305,-305,306,304,-306,307,309,-309,310,308,-310,311,310,-310,312,311,-310,313,312,-310,314,312,-314,315,314,-314,316,314,-316,317,316,-316,318,317,-316,307,320,-320,321,319,-321,319,323,-323,324,322,-324,325,322,-325,326,322,-326,327,322,-327,328,327,-327,329,327,-329,330,329,-329,331,329,-331,332,329,-332,333,335,-335,336,334,-336,337,339,-339,340,338,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348,349,351,-351,352,350,-352,353,355,-355,356,358,-358,359,357,-359,360,359,-359,361,359,-361,362,361,-361,363,361,-363,364,363,-363,365,363,-365,366,363,-366,367,366,-366,368,369,-368,370,367,-370,370,372,-372,373,371,-373,374,373,-373,375,373,-375,376,375,-375,377,375,-377,378,375,-378,379,378,-378,380,378,-380,381,380,-380,382,384,-384,385,383,-385,386,383,-386,387,386,-386,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,413,-413,414,416,-416,417,415,-417,418,415,-418,419,415,-419,420,422,-422,423,421,-423,424,423,-423,425,423,-425,426,428,-428,429,427,-429,430,429,-429,431,429,-431,432,434,-434,435,433,-435,436,433,-436,437,436,-436,438,440,-440,441,439,-441,442,441,-441,443,441,-443,444,446,-446,447,449,-449 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2430 { + a: 0.1221833,0,0.9925076,0.1221833,0,0.9925076,0,0,1,0,0,1,0,0,1,0.1221833,0,0.9925076,0.2398527,0.9708093,0,0.2398527,0.9708093,0,0.05613833,0.998423,0,0.05613833,0.998423,0,0.05613833,0.998423,0,0.2398527,0.9708093,0,-0.8242387,-0.5662425,0,-0.8242387,-0.5662425,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.8242387,-0.5662425,0,-0.9359934,-0.3520176,0,-0.9359934,-0.3520176,0,-0.8242387,-0.5662425,0,-0.8242387,-0.5662425,0,-0.8242387,-0.5662425,0,-0.9359934,-0.3520176,0,0.9359934,-0.3520176,0,0.9359934,-0.3520176,0,0.9716654,-0.2363607,0,0.9716654,-0.2363607,0,0.9716654,-0.2363607,0,0.9359934,-0.3520176,0,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.1221833,0,0.9925076,0.1221833,0,0.9925076,0.1221833,0,0.9925076,0.2425356,0,0.9701425,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.4657024,0.8849414,0,0.4657024,0.8849414,0,0.2398527,0.9708093,0,0.2398527,0.9708093,0,0.2398527,0.9708093,0,0.4657024,0.8849414,0,0.1208112,-0.9926755,0,0.2398527,-0.9708093,0,0.1208112,-0.9926755,0,0.2398527,-0.9708093,0,0.1208112,-0.9926755,0,0.2398527,-0.9708093,0,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,-0.2425356,0,0.9701425,-0.2425356,0,0.9701425,-0.2425356,0,0.9701425,-0.1221833,0,0.9925076,0,0,1,0,0,1,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,0,0,1,-0.6643638,-0.7474093,0,-0.4657024,-0.8849414,0,-0.6643638,-0.7474093,0,-0.4657024,-0.8849414,0,-0.6643638,-0.7474093,0,-0.4657024,-0.8849414,0,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.1221833,0,-0.9925076,0.4657024,-0.8849414,0,0.6643638,-0.7474093,0,0.4657024,-0.8849414,0,0.6643638,-0.7474093,0,0.4657024,-0.8849414,0,0.6643638,-0.7474093,0,-0.2398527,-0.9708093,0,-0.1208112,-0.9926755,0,-0.2398527,-0.9708093,0,-0.1208112,-0.9926755,0,-0.2398527,-0.9708093,0,-0.1208112,-0.9926755,0,0.05613833,0.998423,0,0.05613833,0.998423,0,0,1,0,0,1,0,0,1,0,0.05613833,0.998423,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.4657024,-0.8849414,0,-0.2398527,-0.9708093,0,-0.4657024,-0.8849414,0,-0.2398527,-0.9708093,0,-0.4657024,-0.8849414,0,-0.2398527,-0.9708093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.4657024,0.8849414,0,0.4657024,0.8849414,0,0.4657024,0.8849414,0,0.6643638,0.7474093,0,0,0,-1,0,0,-1,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0,0,-1,-0.2398527,0.9708093,0,-0.2398527,0.9708093,0,-0.4657024,0.8849414,0,-0.4657024,0.8849414,0,-0.4657024,0.8849414,0,-0.2398527,0.9708093,0,0,-0.5662425,-0.8242387,0,-0.7474093,-0.6643638,0,-0.5662425,-0.8242387,0,-0.7474093,-0.6643638,0,-0.5662425,-0.8242387,0,-0.7474093,-0.6643638,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9936895,0.1121652,0,0.9701425,0,-0.2425356,0.9925076,0,-0.1221833,0.9701425,0,-0.2425356,0.9925076,0,-0.1221833,0.9701425,0,-0.2425356,0.9925076,0,-0.1221833,0,0.5968242,-0.802372,0,0.5968242,-0.802372,0,0.4625177,-0.8866101,0,0.998423,-0.05613833,0,0.9708093,-0.2398527,0,0.998423,-0.05613833,0,0.9708093,-0.2398527,0,0.998423,-0.05613833,0,0.9708093,-0.2398527,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,0.998423,0.05613833,0,1,0,0,1,0,0,0.998423,0.05613833,0,0.998423,0.05613833,0,1,0,0,1,0,0,0.998423,0.05613833,0,1,0,0,0.8849414,0.4657024,0,0.8849414,0.4657024,0,0.7474093,0.6643638,0,0.7474093,0.6643638,0,0.7474093,0.6643638,0,0.8849414,0.4657024,0,-0.8849414,-0.4657024,0,-0.8849414,-0.4657024,0,-0.9708093,-0.2398527,0,-0.9708093,-0.2398527,0,-0.9708093,-0.2398527,0,-0.8849414,-0.4657024,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9936895,0.1121652,0,0.9936895,0.1121652,0,1,0,0,1,0,0,1,0,0,0.9936895,0.1121652,0,0,0.5968242,0.802372,0,0.6616723,0.7497932,0,0.5968242,0.802372,0,0.6616723,0.7497932,0,0.5968242,0.802372,0,0.6616723,0.7497932,0,0.7474093,0.6643638,0,0.6616723,0.7497932,0,0.6616723,0.7497932,0,0.7474093,0.6643638,0,0.7474093,0.6643638,0,0.6616723,0.7497932,0,0.9708093,0.2398527,0,0.998423,0.05613833,0,0.9708093,0.2398527,0,0.998423,0.05613833,0,0.9708093,0.2398527,0,0.998423,0.05613833,0.8242387,-0.5662425,0,0.8242387,-0.5662425,0,0.9359934,-0.3520176,0,0.9359934,-0.3520176,0,0.9359934,-0.3520176,0,0.8242387,-0.5662425,0,-0.9701425,0,-0.2425356,-0.9701425,0,-0.2425356,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9701425,0,-0.2425356,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.05613833,0.998423,0,0,1,0,0,1,0,-0.05613833,0.998423,0,-0.05613833,0.998423,0,0,1,0,-0.2425356,0,-0.9701425,-0.2425356,0,-0.9701425,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,-0.2425356,0,-0.9701425,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,1,0,0,-0.05613833,0.998423,0,-0.05613833,0.998423,0,-0.2398527,0.9708093,0,-0.2398527,0.9708093,0,-0.2398527,0.9708093,0,-0.05613833,0.998423,0,0,1,0,0,0.998423,-0.05613833,0,1,0,0,1,0,0,1,0,0,0.998423,-0.05613833,0,0.998423,-0.05613833,0,1,0,0,0.998423,-0.05613833,0,1,0,0,1,0,0,0.998423,-0.05613833,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,0,0,-1,0,0,-1,0,0,-1,-0.1221833,0,-0.9925076,-0.9925076,0,0.1221833,-0.9701425,0,0.2425356,-0.9925076,0,0.1221833,-0.9701425,0,0.2425356,-0.9925076,0,0.1221833,-0.9701425,0,0.2425356,0,-0.9708093,-0.2398527,0,-0.9708093,-0.2398527,0,-0.9926755,-0.1208112,0,-0.9926755,-0.1208112,0,-0.9926755,-0.1208112,0,-0.9708093,-0.2398527,-0.9716654,-0.2363607,0,-0.9716654,-0.2363607,0,-0.9359934,-0.3520176,0,-0.9359934,-0.3520176,0,-0.9359934,-0.3520176,0,-0.9716654,-0.2363607,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.8242387,-0.5662425,0,0.8242387,-0.5662425,0,0.8242387,-0.5662425,0,0.6643638,-0.7474093,0,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0,0.5968242,-0.802372,0,0.6616723,-0.7497932,0,0.5968242,-0.802372,0,0.6616723,-0.7497932,0,0.5968242,-0.802372,0,0.6616723,-0.7497932,0,0.7474093,-0.6643638,0,0.6616723,-0.7497932,0,0.6616723,-0.7497932,0,0.7474093,-0.6643638,0,0.7474093,-0.6643638,0,0.6616723,-0.7497932,0,-0.9926755,0.1208112,0,-0.9926755,0.1208112,0,-0.9708093,0.2398527,0,-0.9708093,0.2398527,0,-0.9708093,0.2398527,0,-0.9926755,0.1208112,-0.4657024,0.8849414,0,-0.4657024,0.8849414,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.4657024,0.8849414,0,0.2398527,-0.9708093,0,0.4657024,-0.8849414,0,0.2398527,-0.9708093,0,0.4657024,-0.8849414,0,0.2398527,-0.9708093,0,0.4657024,-0.8849414,0,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,0,-0.2363607,0.9716654,0,-0.2363607,0.9716654,0,-0.3520176,0.9359934,0,-0.3520176,0.9359934,0,-0.3520176,0.9359934,0,-0.2363607,0.9716654,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,-0.7474093,0.6643638,0,-0.8849414,0.4657024,0,-0.7474093,0.6643638,0,-0.8849414,0.4657024,0,-0.7474093,0.6643638,0,-0.8849414,0.4657024,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2363607,-0.9716654,0,-0.3520176,-0.9359934,0,-0.2363607,-0.9716654,0,-0.3520176,-0.9359934,0,-0.2363607,-0.9716654,0,-0.3520176,-0.9359934,0,-0.7474093,-0.6643638,0,-0.7474093,-0.6643638,0,-0.8849414,-0.4657024,0,-0.8849414,-0.4657024,0,-0.8849414,-0.4657024,0,-0.7474093,-0.6643638,0,0.7474093,-0.6643638,0,0.7474093,-0.6643638,0,0.8849414,-0.4657024,0,0.8849414,-0.4657024,0,0.8849414,-0.4657024,0,0.7474093,-0.6643638,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3520176,-0.9359934,0,-0.5662425,-0.8242387,0,-0.3520176,-0.9359934,0,-0.5662425,-0.8242387,0,-0.3520176,-0.9359934,0,-0.5662425,-0.8242387,0,0.8849414,-0.4657024,0,0.8849414,-0.4657024,0,0.9708093,-0.2398527,0,0.9708093,-0.2398527,0,0.9708093,-0.2398527,0,0.8849414,-0.4657024,0,-0.5662425,0.8242387,0,-0.7474093,0.6643638,0,-0.5662425,0.8242387,0,-0.7474093,0.6643638,0,-0.5662425,0.8242387,0,-0.7474093,0.6643638,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,0,0.9708093,0.2398527,0,0.9708093,0.2398527,0,0.8849414,0.4657024,0,0.8849414,0.4657024,0,0.8849414,0.4657024,0,0.9708093,0.2398527,-0.8866101,0.4625177,0,-0.802372,0.5968242,0,-0.802372,0.5968242,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7497932,0.6616723,0,0.6643638,0.7474093,0,0.802372,0.5968242,0,0.6643638,0.7474093,0,0.802372,0.5968242,0,0.6643638,0.7474093,0,0.802372,0.5968242,0,0.802372,0.5968242,0,0.6643638,0.7474093,0,0.7497932,0.6616723,0,0.802372,0.5968242,0,0.6643638,0.7474093,0,0,-0.8849414,0.4657024,0,-0.9708093,0.2398527,0,-0.8849414,0.4657024,0,-0.9708093,0.2398527,0,-0.8849414,0.4657024,0,-0.9708093,0.2398527,-1,0,0,-1,0,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-1,0,0,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9701425,0,0.2425356,0.9925076,0,0.1221833,0.9701425,0,0.2425356,0.9925076,0,0.1221833,0.9701425,0,0.2425356,0,-0.3520176,0.9359934,0,-0.5662425,0.8242387,0,-0.3520176,0.9359934,0,-0.5662425,0.8242387,0,-0.3520176,0.9359934,0,-0.5662425,0.8242387,0,0.5968242,0.802372,0,0.5968242,0.802372,0,0.4625177,0.8866101,0.802372,0.5968242,0,0.802372,0.5968242,0,0.8866101,0.4625177,0,-0.6643638,0.7474093,0,-0.7497932,0.6616723,0,-0.6643638,0.7474093,0,-0.802372,0.5968242,0,-0.6643638,0.7474093,0,-0.7497932,0.6616723,0,-0.802372,0.5968242,0,-0.6643638,0.7474093,0,-0.802372,0.5968242,0,-0.7497932,0.6616723,0,-0.6643638,0.7474093,0,-0.802372,0.5968242,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *900 { + a: -5.905512,25.69991,-7.874016,25.69991,-5.905512,26.5748,-7.874016,26.5748,-0.492126,6.041096,-0.492126,7.118706,0.492126,6.041096,0.492126,7.118706,-0.492126,18.85467,-0.492126,19.69281,0.492126,18.85467,0.492126,19.69281,-0.492126,21.11219,-0.492126,21.95033,0.492126,21.11219,0.492126,21.95033,0.492126,22.95082,0.492126,22.11268,-0.492126,22.95082,-0.492126,22.11268,-3.938817,25.69991,-5.967904,25.69991,-3.938817,26.5748,-5.967904,26.5748,-0.984252,25.69991,-0.984252,26.5748,0.984252,25.69991,0.984252,26.5748,-0.492126,11.00041,-0.492126,12.07802,0.492126,11.00041,0.492126,12.07802,-0.492126,7.013009,0.492126,7.013009,-0.492126,6.174868,0.492126,6.174868,5.967904,25.69991,3.938817,25.69991,5.967904,26.5748,3.938817,26.5748,7.874016,25.69991,5.905512,25.69991,7.874016,26.5748,5.905512,26.5748,0.492126,15.47192,-0.492126,15.47192,0.492126,16.31007,-0.492126,16.31007,5.967904,25.69991,3.938817,25.69991,5.967904,26.5748,3.938817,26.5748,-0.492126,16.31007,0.492126,16.31007,-0.492126,15.47192,0.492126,15.47192,0.492126,6.174868,-0.492126,6.174868,0.492126,7.013009,-0.492126,7.013009,3.937008,0.492126,5.905512,0.984252,3.937008,-0.492126,5.905512,-0.984252,7.874016,0.984252,7.874016,-0.984252,0.984252,26.5748,0.984252,25.69991,-0.984252,26.5748,-0.984252,25.69991,0.492126,11.16144,-0.492126,11.16144,0.492126,11.99958,-0.492126,11.99958,-0.492126,15.28605,-0.492126,16.36366,0.492126,15.28605,0.492126,16.36366,7.874016,25.69991,5.905512,25.69991,7.874016,26.5748,5.905512,26.5748,0.492126,12.07802,0.492126,11.00041,-0.492126,12.07802,-0.492126,11.00041,0.492126,18.85467,-0.492126,18.85467,0.492126,19.69281,-0.492126,19.69281,-0.984252,3.580743,-0.492126,5.60983,0.984252,3.580743,0.492126,5.60983,-3.938817,26.5748,-3.938817,25.69991,-5.967904,26.5748,-5.967904,25.69991,0.2609924,21.96704,-3.765876E-13,21.40276,-0.2609924,21.96704,-0.492126,7.118706,0.492126,7.118706,-0.492126,6.041096,0.492126,6.041096,0.984252,25.69991,-0.984252,25.69991,0.984252,26.5748,-0.984252,26.5748,-0.984252,-7.874016,-0.984252,-5.905512,0.984252,-7.874016,-0.492126,-3.937008,0.492126,-3.937008,0.984252,-5.905512,0.492126,16.36366,0.492126,15.28605,-0.492126,16.36366,-0.492126,15.28605,-0.492126,11.16144,-0.492126,11.99958,0.492126,11.16144,0.492126,11.99958,0.492126,5.905512,-0.492126,5.905512,0.492126,22.63779,-0.492126,22.63779,0.492126,24.90221,0.6902296,23.45219,1.077885,24.19529,1.63246,24.82372,2.321577,25.3008,0.9740171,25.44828,3.105006,25.59866,1.860025,26.06166,3.937008,25.69991,3.937008,26.5748,2.867291,26.44462,-0.6902296,23.45219,-0.492126,24.90221,-1.077885,24.19529,-1.63246,24.82372,-2.321577,25.3008,-0.9740171,25.44828,-3.105006,25.59866,-1.860025,26.06166,-3.937008,25.69991,-3.937008,26.5748,-2.867291,26.44462,0.984252,3.937008,0.984252,0,-0.984252,3.937008,-0.984252,0,0.2609924,18.64781,-0.2609924,18.64781,0.492126,18.99713,-0.492126,18.99713,-0.492126,19.72542,0.492126,19.72542,0.492126,6.041096,-0.492126,6.041096,0.492126,7.118706,-0.492126,7.118706,0.492126,21.95033,0.492126,21.11219,-0.492126,21.95033,-0.492126,21.11219,3.938817,26.5748,5.967904,26.5748,3.938817,25.69991,5.967904,25.69991,-7.874016,0.984252,-5.905512,0.984252,-7.874016,-0.984252,-5.905512,-0.984252,-3.937008,0.492126,-3.937008,-0.492126,-3.938817,25.69991,-5.967904,25.69991,-3.938817,26.5748,-5.967904,26.5748,-5.905512,26.5748,-5.905512,25.69991,-7.874016,26.5748,-7.874016,25.69991,0.492126,7.118706,0.492126,6.041096,-0.492126,7.118706,-0.492126,6.041096,-0.984252,5.905512,-0.984252,7.874016,-0.492126,3.937008,0.984252,7.874016,0.492126,3.937008,0.984252,5.905512,-5.905512,25.69991,-7.874016,25.69991,-5.905512,26.5748,-7.874016,26.5748,-5.967904,25.69991,-5.967904,26.5748,-3.938817,25.69991,-3.938817,26.5748,-0.492126,6.174868,-0.492126,7.013009,0.492126,6.174868,0.492126,7.013009,-0.492126,22.11268,-0.492126,22.95082,0.492126,22.11268,0.492126,22.95082,0.492126,19.69281,0.492126,18.85467,-0.492126,19.69281,-0.492126,18.85467,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,0.2609924,18.64781,-0.2609924,18.64781,0.492126,18.99713,-0.492126,18.99713,-0.492126,19.72542,0.492126,19.72542,0.492126,7.013009,0.492126,6.174868,-0.492126,7.013009,-0.492126,6.174868,0.492126,16.36366,0.492126,15.28605,-0.492126,16.36366,-0.492126,15.28605,-0.492126,11.99958,0.492126,11.99958,-0.492126,11.16144,0.492126,11.16144,5.905512,25.69991,5.905512,26.5748,7.874016,25.69991,7.874016,26.5748,-0.492126,22.11268,-0.492126,22.95082,0.492126,22.11268,0.492126,22.95082,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,0.492126,15.47192,-0.492126,15.47192,0.492126,16.31007,-0.492126,16.31007,0.492126,22.63779,0.492126,5.905512,-0.492126,22.63779,-0.492126,5.905512,0.492126,24.90221,0.6902296,23.45219,0.9740171,25.44828,1.077885,24.19529,1.63246,24.82372,1.860025,26.06166,2.321577,25.3008,2.867291,26.44462,3.105006,25.59866,3.937008,26.5748,3.937008,25.69991,-0.492126,24.90221,-0.9740171,25.44828,-0.6902296,23.45219,-1.077885,24.19529,-1.860025,26.06166,-1.63246,24.82372,-2.321577,25.3008,-2.867291,26.44462,-3.105006,25.59866,-3.937008,26.5748,-3.937008,25.69991,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,0.984252,25.69991,-0.984252,25.69991,0.984252,26.5748,-0.984252,26.5748,0.492126,22.11268,-0.492126,22.11268,0.492126,22.95082,-0.492126,22.95082,-0.492126,15.47192,-0.492126,16.31007,0.492126,15.47192,0.492126,16.31007,-0.492126,15.28605,-0.492126,16.36366,0.492126,15.28605,0.492126,16.36366,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,-0.492126,22.63779,-0.6902296,23.45219,-0.492126,24.90221,-1.077885,24.19529,-1.63246,24.82372,-2.321577,25.3008,-0.9740171,25.44828,-3.105006,25.59866,-1.860025,26.06166,-3.937008,25.69991,-3.937008,26.5748,-2.867291,26.44462,0.492126,22.63779,-0.492126,5.905512,0.492126,5.905512,0.492126,24.90221,0.6902296,23.45219,1.077885,24.19529,1.63246,24.82372,2.321577,25.3008,0.9740171,25.44828,3.105006,25.59866,1.860025,26.06166,3.937008,25.69991,3.937008,26.5748,2.867291,26.44462,0.492126,21.11219,-0.492126,21.11219,0.492126,21.95033,-0.492126,21.95033,-0.492126,11.00041,-0.492126,12.07802,0.492126,11.00041,0.492126,12.07802,0.492126,18.85467,-0.492126,18.85467,0.492126,19.69281,-0.492126,19.69281,-7.874016,25.69991,-7.874016,26.5748,-5.905512,25.69991,-5.905512,26.5748,0.492126,12.07802,0.492126,11.00041,-0.492126,12.07802,-0.492126,11.00041,-3.979039E-13,21.40276,-0.2609924,21.96704,0.2609924,21.96704,-3.937008,25.69991,-3.937008,26.5748,-3.105006,25.59866,-2.867291,26.44462,-2.321577,25.3008,-1.860025,26.06166,-1.63246,24.82372,-0.9740171,25.44828,-1.077885,24.19529,-0.6902296,23.45219,-0.492126,24.90221,-0.492126,22.63779,-0.492126,5.905512,0.492126,5.905512,0.492126,22.63779,0.492126,24.90221,0.6902296,23.45219,0.9740171,25.44828,1.077885,24.19529,1.860025,26.06166,1.63246,24.82372,2.321577,25.3008,2.867291,26.44462,3.105006,25.59866,3.937008,26.5748,3.937008,25.69991,0.492126,18.99713,0.2609924,18.64781,0.492126,19.72542,-0.492126,19.72542,-0.2609924,18.64781,-0.492126,18.99713,0.492126,11.16144,-0.492126,11.16144,0.492126,11.99958,-0.492126,11.99958,-0.984252,0,-0.984252,3.937008,0.984252,0,0.984252,3.937008,7.874016,26.5748,7.874016,25.69991,5.905512,26.5748,5.905512,25.69991,5.967904,26.5748,5.967904,25.69991,3.938817,26.5748,3.938817,25.69991,0.492126,21.11219,-0.492126,21.11219,0.492126,21.95033,-0.492126,21.95033,0.2609924,21.96704,3.765876E-13,21.40276,-0.2609924,21.96704,0.2609924,21.96704,3.979039E-13,21.40276,-0.2609924,21.96704,-0.492126,19.72542,0.492126,19.72542,-0.492126,18.99713,-0.2609924,18.64781,0.2609924,18.64781,0.492126,18.99713,-3.937008,0.492126,-3.937008,-0.492126,-5.905512,0.984252,-5.905512,-0.984252,-7.874016,0.984252,-7.874016,-0.984252,7.874016,0.984252,7.874016,-0.984252,5.905512,0.984252,5.905512,-0.984252,3.937008,0.492126,3.937008,-0.492126,0.984252,5.905512,0.492126,3.937008,0.984252,7.874016,-0.984252,7.874016,-0.492126,3.937008,-0.984252,5.905512,0.984252,-5.905512,0.984252,-7.874016,0.492126,-3.937008,-0.984252,-7.874016,-0.492126,-3.937008,-0.984252,-5.905512,-0.492126,5.905512,-0.492126,22.63779,0.492126,5.905512,-0.492126,5.905512,-0.492126,22.63779,0.492126,5.905512 + } + UVIndex: *810 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,61,63,65,64,63,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,112,111,114,113,111,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,125,128,127,129,127,128,130,127,129,131,127,130,132,127,131,133,132,131,134,132,133,135,134,133,136,134,135,137,134,136,126,139,138,140,138,139,141,140,139,142,141,139,143,142,139,144,142,143,145,144,143,146,144,145,147,146,145,148,147,145,149,151,150,152,150,151,153,155,154,156,154,155,157,156,155,158,157,155,159,161,160,162,160,161,163,165,164,166,164,165,167,169,168,170,168,169,171,173,172,174,172,173,175,172,174,176,175,174,177,179,178,180,178,179,181,183,182,184,182,183,185,187,186,188,186,187,189,191,190,192,190,191,193,192,191,194,192,193,195,197,196,198,196,197,199,201,200,202,200,201,203,205,204,206,204,205,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,218,216,217,219,221,220,222,220,221,223,222,221,224,223,221,225,227,226,228,226,227,229,231,230,232,230,231,233,235,234,236,234,235,237,239,238,240,238,239,241,243,242,244,242,243,245,247,246,248,246,247,249,251,250,252,250,251,253,255,254,256,254,255,257,259,258,260,258,259,257,262,261,261,262,263,262,264,263,264,265,263,263,265,266,265,267,266,266,267,268,267,269,268,268,269,270,271,270,269,272,273,259,274,259,273,275,274,273,276,275,273,277,275,276,278,277,276,279,278,276,280,278,279,281,280,279,282,280,281,283,285,284,286,284,285,287,289,288,290,288,289,291,293,292,294,292,293,295,297,296,298,296,297,299,301,300,302,300,301,303,305,304,306,304,305,307,309,308,310,308,309,311,310,309,312,311,309,313,312,309,314,312,313,315,314,313,316,314,315,317,316,315,318,317,315,307,320,319,321,319,320,319,323,322,324,322,323,325,322,324,326,322,325,327,322,326,328,327,326,329,327,328,330,329,328,331,329,330,332,329,331,333,335,334,336,334,335,337,339,338,340,338,339,341,343,342,344,342,343,345,347,346,348,346,347,349,351,350,352,350,351,353,355,354,356,358,357,359,357,358,360,359,358,361,359,360,362,361,360,363,361,362,364,363,362,365,363,364,366,363,365,367,366,365,368,369,367,370,367,369,370,372,371,373,371,372,374,373,372,375,373,374,376,375,374,377,375,376,378,375,377,379,378,377,380,378,379,381,380,379,382,384,383,385,383,384,386,383,385,387,386,385,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,413,412,414,416,415,417,415,416,418,415,417,419,415,418,420,422,421,423,421,422,424,423,422,425,423,424,426,428,427,429,427,428,430,429,428,431,429,430,432,434,433,435,433,434,436,433,435,437,436,435,438,440,439,441,439,440,442,441,440,443,441,442,444,446,445,447,449,448 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *270 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 7046, "Material::light", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.945098,0.9490196,0.9647059 + P: "DiffuseColor", "Color", "", "A",0.945098,0.9490196,0.9647059 + } + } + + Material: 9918, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "EmissiveFactor", "Number", "", "A",0 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh light_curvedCross, Model::RootNode + C: "OO",4664799438840644939,0 + + ;Geometry::, Model::Mesh light_curvedCross + C: "OO",4981165146883750696,4664799438840644939 + + ;Material::pavement, Model::Mesh light_curvedCross + C: "OO",17046,4664799438840644939 + + ;Material::light, Model::Mesh light_curvedCross + C: "OO",7046,4664799438840644939 + + ;Material::_defaultMat, Model::Mesh light_curvedCross + C: "OO",9918,4664799438840644939 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedCross.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedCross.fbx.import new file mode 100644 index 0000000..572aca1 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedCross.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d1ddm7p5uc8l8" +path="res://.godot/imported/light_curvedCross.fbx-50fc05bee01552dcdb18a1f68460c319.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedCross.fbx" +dest_files=["res://.godot/imported/light_curvedCross.fbx-50fc05bee01552dcdb18a1f68460c319.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedDouble.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedDouble.fbx new file mode 100644 index 0000000..3efb946 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedDouble.fbx @@ -0,0 +1,355 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 16 + Millisecond: 507 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "light_curvedDouble.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "light_curvedDouble.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5620185621732010327, "Model::light_curvedDouble", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5219517816896432093, "Geometry::", "Mesh" { + Vertices: *756 { + a: -0.125,6.258634,0.06629206,0.125,6.258634,0.06629206,-0.125,6.463862,0.2474003,0.125,6.463862,0.2474003,-0.125,6.75,1,-0.25,6.75,1.5,-0.125,6.527778,1,-0.25,6.527778,1.5,0.125,6.527778,1,0.125,6.502059,0.7886714,-0.125,6.527778,1,-0.125,6.502059,0.7886714,-0.25,6.527778,1.5,-0.25,6.75,1.5,-0.25,6.527778,2,-0.25,6.75,2,0.125,1.5,0.125,-0.125,1.5,0.125,0.125,5.75,0.125,-0.125,5.75,0.125,-0.25,0,-0.25,0.25,0,-0.25,-0.25,1,-0.25,0.25,1,-0.25,0.125,5.75,0.125,-0.125,5.75,0.125,0.125,5.956856,0.1753183,-0.125,5.956856,0.1753183,0.25,1,-0.25,0.25,1,0.25,0.125,1.5,-0.125,0.125,1.5,0.125,0.125,6.75,1,0.125,6.527778,1,0.25,6.75,1.5,0.25,6.527778,1.5,0.125,6.61966,0.4724464,0.125,6.716933,0.7282919,-0.125,6.61966,0.4724464,-0.125,6.716933,0.7282919,0.25,0,0.25,-0.25,0,0.25,0.25,1,0.25,-0.25,1,0.25,0.125,6.463862,0.2474003,0.125,6.61966,0.4724464,-0.125,6.463862,0.2474003,-0.125,6.61966,0.4724464,-0.25,0,-0.25,-0.25,1,-0.25,-0.25,0,0.25,-0.25,1,0.25,0.25,6.527778,2,-0.25,6.527778,2,0.25,6.75,2,-0.25,6.75,2,-0.25,1,-0.25,-0.125,1.5,-0.125,-0.25,1,0.25,-0.125,1.5,0.125,0.125,6.75,1,-0.125,6.75,1,0.125,6.716933,0.7282919,-0.125,6.716933,0.7282919,0.25,6.75,1.5,0.25,6.75,2,0.125,6.75,1,-0.25,6.75,2,-0.125,6.75,1,-0.25,6.75,1.5,-0.25,1,-0.25,0.25,1,-0.25,-0.125,1.5,-0.125,0.125,1.5,-0.125,0.125,6.145604,0.2737827,-0.125,6.145604,0.2737827,0.125,6.305226,0.4146447,-0.125,6.305226,0.4146447,0.125,5.956856,0.1753183,-0.125,5.956856,0.1753183,0.125,6.145604,0.2737827,-0.125,6.145604,0.2737827,0.125,6.426402,0.5896806,-0.125,6.426402,0.5896806,0.125,6.502059,0.7886714,-0.125,6.502059,0.7886714,0.125,6.502059,-0.7886714,0.125,6.527778,-1,-0.125,6.502059,-0.7886714,-0.125,6.527778,-1,0.125,6.258634,0.06629206,0.125,5.75,0.125,0.125,6.463862,0.2474003,0.125,5.956856,0.1753183,0.125,6.145604,0.2737827,0.125,6.61966,0.4724464,0.125,6.305226,0.4146447,0.125,6.426402,0.5896806,0.125,6.716933,0.7282919,0.125,6.502059,0.7886714,0.125,6.75,1,0.125,6.527778,1,0.125,1.5,0.125,0.125,6.131557,0,0.125,6.258634,-0.06629206,0.125,1.5,-0.125,0.125,5.75,-0.125,0.125,5.956856,-0.1753183,0.125,6.463862,-0.2474003,0.125,6.145604,-0.2737827,0.125,6.305226,-0.4146447,0.125,6.61966,-0.4724464,0.125,6.426402,-0.5896806,0.125,6.716933,-0.7282919,0.125,6.502059,-0.7886714,0.125,6.75,-1,0.125,6.527778,-1,0.125,6.258634,-0.06629206,-0.125,6.258634,-0.06629206,0.125,6.463862,-0.2474003,-0.125,6.463862,-0.2474003,0.25,6.75,-2,0.25,6.527778,-2,0.25,6.75,-1.5,0.25,6.527778,-1.5,-0.25,6.527778,-2,0.25,6.527778,-2,-0.25,6.75,-2,0.25,6.75,-2,0.125,6.131557,0,0.125,6.258634,0.06629206,-0.125,6.131557,0,-0.125,6.258634,0.06629206,-0.125,5.75,-0.125,0.125,5.75,-0.125,-0.125,5.956856,-0.1753183,0.125,5.956856,-0.1753183,0.25,6.75,1.5,0.25,6.527778,1.5,0.25,6.75,2,0.25,6.527778,2,0.125,6.305226,-0.4146447,0.125,6.426402,-0.5896806,-0.125,6.305226,-0.4146447,-0.125,6.426402,-0.5896806,0.25,1,-0.25,0.25,0,-0.25,0.25,1,0.25,0.25,0,0.25,0.25,1,0.25,-0.25,1,0.25,0.125,1.5,0.125,-0.125,1.5,0.125,0.25,6.75,-1.5,0.25,6.527778,-1.5,0.125,6.75,-1,0.125,6.527778,-1,-0.125,1.5,-0.125,0.125,1.5,-0.125,-0.125,5.75,-0.125,0.125,5.75,-0.125,0.125,6.305226,0.4146447,-0.125,6.305226,0.4146447,0.125,6.426402,0.5896806,-0.125,6.426402,0.5896806,-0.25,6.527778,-2,-0.25,6.75,-2,-0.25,6.527778,-1.5,-0.25,6.75,-1.5,-0.125,5.956856,-0.1753183,0.125,5.956856,-0.1753183,-0.125,6.145604,-0.2737827,0.125,6.145604,-0.2737827,-0.125,6.145604,-0.2737827,0.125,6.145604,-0.2737827,-0.125,6.305226,-0.4146447,0.125,6.305226,-0.4146447,-0.125,6.527778,-1,-0.125,6.75,-1,-0.125,6.502059,-0.7886714,-0.125,6.716933,-0.7282919,-0.125,6.426402,-0.5896806,-0.125,6.61966,-0.4724464,-0.125,6.305226,-0.4146447,-0.125,6.463862,-0.2474003,-0.125,6.145604,-0.2737827,-0.125,5.956856,-0.1753183,-0.125,6.258634,-0.06629206,-0.125,5.75,-0.125,-0.125,1.5,0.125,-0.125,1.5,-0.125,-0.125,6.131557,0,-0.125,6.258634,0.06629206,-0.125,5.75,0.125,-0.125,6.463862,0.2474003,-0.125,5.956856,0.1753183,-0.125,6.145604,0.2737827,-0.125,6.61966,0.4724464,-0.125,6.305226,0.4146447,-0.125,6.426402,0.5896806,-0.125,6.716933,0.7282919,-0.125,6.502059,0.7886714,-0.125,6.75,1,-0.125,6.527778,1,0.25,6.75,-2,0.25,6.75,-1.5,-0.25,6.75,-2,0.125,6.75,-1,-0.125,6.75,-1,-0.25,6.75,-1.5,0.125,6.61966,-0.4724464,0.125,6.463862,-0.2474003,-0.125,6.61966,-0.4724464,-0.125,6.463862,-0.2474003,-0.25,6.527778,-1.5,-0.25,6.75,-1.5,-0.125,6.527778,-1,-0.125,6.75,-1,0.125,6.426402,-0.5896806,0.125,6.502059,-0.7886714,-0.125,6.426402,-0.5896806,-0.125,6.502059,-0.7886714,0.125,6.716933,-0.7282919,0.125,6.61966,-0.4724464,-0.125,6.716933,-0.7282919,-0.125,6.61966,-0.4724464,0.125,6.131557,0,-0.125,6.131557,0,0.125,6.258634,-0.06629206,-0.125,6.258634,-0.06629206,0.125,6.716933,-0.7282919,-0.125,6.716933,-0.7282919,0.125,6.75,-1,-0.125,6.75,-1,0.25,6.527778,1.5,0.125,6.527778,1,0.25,6.527778,2,-0.25,6.527778,2,-0.125,6.527778,1,-0.25,6.527778,1.5,0.25,6.527778,-1.5,0.25,6.527778,-2,0.125,6.527778,-1,-0.25,6.527778,-2,-0.125,6.527778,-1,-0.25,6.527778,-1.5,0.25,0,0.25,0.25,0,-0.25,-0.25,0,0.25,-0.25,0,-0.25,-0.25,0,0.25,0.25,0,-0.25 + } + PolygonVertexIndex: *456 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,93,-93,95,94,-93,96,94,-96,97,96,-96,98,97,-96,99,97,-99,100,99,-99,101,99,-101,91,102,-91,90,102,-104,103,102,-105,102,105,-105,105,106,-105,106,107,-105,104,107,-109,107,109,-109,109,110,-109,108,110,-112,110,112,-112,111,112,-114,112,114,-114,113,114,-116,116,115,-115,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,179,-179,180,178,-180,181,180,-180,182,180,-182,183,182,-182,184,182,-184,185,184,-184,186,184,-186,187,184,-187,188,187,-187,187,188,-190,190,189,-189,191,187,-190,192,191,-190,193,192,-190,192,193,-195,195,194,-194,196,194,-196,197,194,-197,198,197,-197,199,197,-199,200,197,-200,201,200,-200,202,200,-202,203,202,-202,204,206,-206,207,205,-207,208,207,-207,209,208,-207,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,235,-238,239,238,-238,240,242,-242,243,241,-243,244,243,-243,245,243,-245,246,248,-248,249,251,-251 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1368 { + a: 0,0.5662425,-0.8242387,0,0.7474093,-0.6643638,0,0.5662425,-0.8242387,0,0.7474093,-0.6643638,0,0.5662425,-0.8242387,0,0.7474093,-0.6643638,-0.9701425,0,-0.2425356,-0.9701425,0,-0.2425356,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9701425,0,-0.2425356,0,-0.9926755,0.1208112,0,-0.9926755,0.1208112,0,-0.9708093,0.2398527,0,-0.9708093,0.2398527,0,-0.9708093,0.2398527,0,-0.9926755,0.1208112,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,-0.2363607,0.9716654,0,-0.3520176,0.9359934,0,-0.2363607,0.9716654,0,-0.3520176,0.9359934,0,-0.2363607,0.9716654,0,-0.3520176,0.9359934,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9701425,0,-0.2425356,0.9925076,0,-0.1221833,0.9701425,0,-0.2425356,0.9925076,0,-0.1221833,0.9701425,0,-0.2425356,0.9925076,0,-0.1221833,0,0.8849414,-0.4657024,0,0.8849414,-0.4657024,0,0.9708093,-0.2398527,0,0.9708093,-0.2398527,0,0.9708093,-0.2398527,0,0.8849414,-0.4657024,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0,0.7474093,-0.6643638,0,0.7474093,-0.6643638,0,0.8849414,-0.4657024,0,0.8849414,-0.4657024,0,0.8849414,-0.4657024,0,0.7474093,-0.6643638,-1,0,0,-1,0,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9936895,0.1121652,0,0,0.998423,-0.05613833,0,0.9708093,-0.2398527,0,0.998423,-0.05613833,0,0.9708093,-0.2398527,0,0.998423,-0.05613833,0,0.9708093,-0.2398527,0,1,0,0,0.998423,-0.05613833,0,1,0,0,1,0,0,1,0,0,0.998423,-0.05613833,0,0.998423,-0.05613833,0,1,0,0,0.998423,-0.05613833,0,1,0,0,1,0,0,0.998423,-0.05613833,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,-0.5662425,0.8242387,0,-0.7474093,0.6643638,0,-0.5662425,0.8242387,0,-0.7474093,0.6643638,0,-0.5662425,0.8242387,0,-0.7474093,0.6643638,0,-0.3520176,0.9359934,0,-0.5662425,0.8242387,0,-0.3520176,0.9359934,0,-0.5662425,0.8242387,0,-0.3520176,0.9359934,0,-0.5662425,0.8242387,0,-0.8849414,0.4657024,0,-0.9708093,0.2398527,0,-0.8849414,0.4657024,0,-0.9708093,0.2398527,0,-0.8849414,0.4657024,0,-0.9708093,0.2398527,0,-0.9708093,-0.2398527,0,-0.9708093,-0.2398527,0,-0.9926755,-0.1208112,0,-0.9926755,-0.1208112,0,-0.9926755,-0.1208112,0,-0.9708093,-0.2398527,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5662425,0.8242387,0,0.7474093,0.6643638,0,0.5662425,0.8242387,0,0.7474093,0.6643638,0,0.5662425,0.8242387,0,0.7474093,0.6643638,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4625177,-0.8866101,0,0.4625177,-0.8866101,0,0.5662425,-0.8242387,0,0.5662425,-0.8242387,0,0.5662425,-0.8242387,0,0.4625177,-0.8866101,0,-0.2363607,-0.9716654,0,-0.3520176,-0.9359934,0,-0.2363607,-0.9716654,0,-0.3520176,-0.9359934,0,-0.2363607,-0.9716654,0,-0.3520176,-0.9359934,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,1,0,0,0,-0.7474093,-0.6643638,0,-0.7474093,-0.6643638,0,-0.8849414,-0.4657024,0,-0.8849414,-0.4657024,0,-0.8849414,-0.4657024,0,-0.7474093,-0.6643638,0.9936895,0.1121652,0,0.9936895,0.1121652,0,1,0,0,1,0,0,1,0,0,0.9936895,0.1121652,0,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0.9925076,0,0.1221833,0.9701425,0,0.2425356,0.9925076,0,0.1221833,0.9701425,0,0.2425356,0.9925076,0,0.1221833,0.9701425,0,0.2425356,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7474093,0.6643638,0,-0.8849414,0.4657024,0,-0.7474093,0.6643638,0,-0.8849414,0.4657024,0,-0.7474093,0.6643638,0,-0.8849414,0.4657024,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,0,-0.3520176,-0.9359934,0,-0.5662425,-0.8242387,0,-0.3520176,-0.9359934,0,-0.5662425,-0.8242387,0,-0.3520176,-0.9359934,0,-0.5662425,-0.8242387,0,-0.5662425,-0.8242387,0,-0.7474093,-0.6643638,0,-0.5662425,-0.8242387,0,-0.7474093,-0.6643638,0,-0.5662425,-0.8242387,0,-0.7474093,-0.6643638,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,0.998423,0.05613833,0,1,0,0,1,0,0,0.998423,0.05613833,0,0.998423,0.05613833,0,1,0,0,1,0,0,0.998423,0.05613833,0,1,0,0,0.8849414,0.4657024,0,0.8849414,0.4657024,0,0.7474093,0.6643638,0,0.7474093,0.6643638,0,0.7474093,0.6643638,0,0.8849414,0.4657024,-0.9925076,0,0.1221833,-0.9701425,0,0.2425356,-0.9925076,0,0.1221833,-0.9701425,0,0.2425356,-0.9925076,0,0.1221833,-0.9701425,0,0.2425356,0,-0.8849414,-0.4657024,0,-0.8849414,-0.4657024,0,-0.9708093,-0.2398527,0,-0.9708093,-0.2398527,0,-0.9708093,-0.2398527,0,-0.8849414,-0.4657024,0,0.9708093,0.2398527,0,0.9708093,0.2398527,0,0.8849414,0.4657024,0,0.8849414,0.4657024,0,0.8849414,0.4657024,0,0.9708093,0.2398527,0,0.4625177,0.8866101,0,0.5662425,0.8242387,0,0.4625177,0.8866101,0,0.5662425,0.8242387,0,0.4625177,0.8866101,0,0.5662425,0.8242387,0,0.9708093,0.2398527,0,0.998423,0.05613833,0,0.9708093,0.2398527,0,0.998423,0.05613833,0,0.9708093,0.2398527,0,0.998423,0.05613833,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *504 { + a: 0.492126,18.64781,-0.492126,18.64781,0.492126,19.72542,-0.492126,19.72542,3.938817,26.5748,5.967904,26.5748,3.938817,25.69991,5.967904,25.69991,0.492126,7.013009,0.492126,6.174868,-0.492126,7.013009,-0.492126,6.174868,5.905512,25.69991,5.905512,26.5748,7.874016,25.69991,7.874016,26.5748,0.492126,5.905512,-0.492126,5.905512,0.492126,22.63779,-0.492126,22.63779,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,0.492126,22.11268,-0.492126,22.11268,0.492126,22.95082,-0.492126,22.95082,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,-3.938817,26.5748,-3.938817,25.69991,-5.967904,26.5748,-5.967904,25.69991,-0.492126,11.00041,-0.492126,12.07802,0.492126,11.00041,0.492126,12.07802,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,-0.492126,15.28605,-0.492126,16.36366,0.492126,15.28605,0.492126,16.36366,-0.984252,0,-0.984252,3.937008,0.984252,0,0.984252,3.937008,0.984252,25.69991,-0.984252,25.69991,0.984252,26.5748,-0.984252,26.5748,-0.984252,3.580743,-0.492126,5.60983,0.984252,3.580743,0.492126,5.60983,-0.492126,7.118706,0.492126,7.118706,-0.492126,6.041096,0.492126,6.041096,-0.984252,5.905512,-0.984252,7.874016,-0.492126,3.937008,0.984252,7.874016,0.492126,3.937008,0.984252,5.905512,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,0.492126,18.85467,-0.492126,18.85467,0.492126,19.69281,-0.492126,19.69281,0.492126,21.11219,-0.492126,21.11219,0.492126,21.95033,-0.492126,21.95033,0.492126,11.16144,-0.492126,11.16144,0.492126,11.99958,-0.492126,11.99958,-0.492126,6.174868,-0.492126,7.013009,0.492126,6.174868,0.492126,7.013009,-0.2609924,24.64029,-0.492126,22.63779,-0.9740171,25.44828,-0.6902296,23.45219,-1.077885,24.19529,-1.860025,26.06166,-1.63246,24.82372,-2.321577,25.3008,-2.867291,26.44462,-3.105006,25.59866,-3.937008,26.5748,-3.937008,25.69991,-0.492126,5.905512,6.407972E-15,24.13999,0.2609924,24.64029,0.492126,5.905512,0.492126,22.63779,0.6902296,23.45219,0.9740171,25.44828,1.077885,24.19529,1.63246,24.82372,1.860025,26.06166,2.321577,25.3008,2.867291,26.44462,3.105006,25.59866,3.937008,26.5748,3.937008,25.69991,0.492126,18.64781,-0.492126,18.64781,0.492126,19.72542,-0.492126,19.72542,7.874016,26.5748,7.874016,25.69991,5.905512,26.5748,5.905512,25.69991,0.984252,25.69991,-0.984252,25.69991,0.984252,26.5748,-0.984252,26.5748,-0.492126,21.40276,-0.492126,21.96704,0.492126,21.40276,0.492126,21.96704,0.492126,22.11268,-0.492126,22.11268,0.492126,22.95082,-0.492126,22.95082,-5.905512,26.5748,-5.905512,25.69991,-7.874016,26.5748,-7.874016,25.69991,-0.492126,15.47192,-0.492126,16.31007,0.492126,15.47192,0.492126,16.31007,0.984252,3.937008,0.984252,0,-0.984252,3.937008,-0.984252,0,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,5.967904,26.5748,5.967904,25.69991,3.938817,26.5748,3.938817,25.69991,0.492126,5.905512,-0.492126,5.905512,0.492126,22.63779,-0.492126,22.63779,0.492126,15.47192,-0.492126,15.47192,0.492126,16.31007,-0.492126,16.31007,-7.874016,25.69991,-7.874016,26.5748,-5.905512,25.69991,-5.905512,26.5748,0.492126,21.11219,-0.492126,21.11219,0.492126,21.95033,-0.492126,21.95033,0.492126,18.85467,-0.492126,18.85467,0.492126,19.69281,-0.492126,19.69281,-3.937008,25.69991,-3.937008,26.5748,-3.105006,25.59866,-2.867291,26.44462,-2.321577,25.3008,-1.860025,26.06166,-1.63246,24.82372,-0.9740171,25.44828,-1.077885,24.19529,-0.6902296,23.45219,-0.2609924,24.64029,-0.492126,22.63779,0.492126,5.905512,-0.492126,5.905512,6.407972E-15,24.13999,0.2609924,24.64029,0.492126,22.63779,0.9740171,25.44828,0.6902296,23.45219,1.077885,24.19529,1.860025,26.06166,1.63246,24.82372,2.321577,25.3008,2.867291,26.44462,3.105006,25.59866,3.937008,26.5748,3.937008,25.69991,-0.984252,-7.874016,-0.984252,-5.905512,0.984252,-7.874016,-0.492126,-3.937008,0.492126,-3.937008,0.984252,-5.905512,0.492126,16.36366,0.492126,15.28605,-0.492126,16.36366,-0.492126,15.28605,-5.967904,25.69991,-5.967904,26.5748,-3.938817,25.69991,-3.938817,26.5748,-0.492126,11.16144,-0.492126,11.99958,0.492126,11.16144,0.492126,11.99958,0.492126,12.07802,0.492126,11.00041,-0.492126,12.07802,-0.492126,11.00041,0.492126,21.40276,-0.492126,21.40276,0.492126,21.96704,-0.492126,21.96704,0.492126,6.041096,-0.492126,6.041096,0.492126,7.118706,-0.492126,7.118706,0.984252,5.905512,0.492126,3.937008,0.984252,7.874016,-0.984252,7.874016,-0.492126,3.937008,-0.984252,5.905512,0.984252,-5.905512,0.984252,-7.874016,0.492126,-3.937008,-0.984252,-7.874016,-0.492126,-3.937008,-0.984252,-5.905512,5.905512,25.69991,5.905512,26.5748,7.874016,25.69991,5.905512,25.69991,5.905512,26.5748,7.874016,25.69991 + } + UVIndex: *456 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,93,92,95,94,92,96,94,95,97,96,95,98,97,95,99,97,98,100,99,98,101,99,100,91,102,90,90,102,103,103,102,104,102,105,104,105,106,104,106,107,104,104,107,108,107,109,108,109,110,108,108,110,111,110,112,111,111,112,113,112,114,113,113,114,115,116,115,114,117,119,118,120,118,119,121,123,122,124,122,123,125,127,126,128,126,127,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,163,162,164,162,163,165,167,166,168,166,167,169,171,170,172,170,171,173,175,174,176,174,175,177,179,178,180,178,179,181,180,179,182,180,181,183,182,181,184,182,183,185,184,183,186,184,185,187,184,186,188,187,186,187,188,189,190,189,188,191,187,189,192,191,189,193,192,189,192,193,194,195,194,193,196,194,195,197,194,196,198,197,196,199,197,198,200,197,199,201,200,199,202,200,201,203,202,201,204,206,205,207,205,206,208,207,206,209,208,206,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,235,237,239,238,237,240,242,241,243,241,242,244,243,242,245,243,244,246,248,247,249,251,250 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *152 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 7046, "Material::light", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.945098,0.9490196,0.9647059 + P: "DiffuseColor", "Color", "", "A",0.945098,0.9490196,0.9647059 + } + } + + Material: 9918, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "EmissiveFactor", "Number", "", "A",0 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh light_curvedDouble, Model::RootNode + C: "OO",5620185621732010327,0 + + ;Geometry::, Model::Mesh light_curvedDouble + C: "OO",5219517816896432093,5620185621732010327 + + ;Material::pavement, Model::Mesh light_curvedDouble + C: "OO",17046,5620185621732010327 + + ;Material::light, Model::Mesh light_curvedDouble + C: "OO",7046,5620185621732010327 + + ;Material::_defaultMat, Model::Mesh light_curvedDouble + C: "OO",9918,5620185621732010327 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedDouble.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedDouble.fbx.import new file mode 100644 index 0000000..5cdb75e --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedDouble.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bvc3vi316xseb" +path="res://.godot/imported/light_curvedDouble.fbx-c695281e478a2c04aff433f372e4c0e7.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/light_curvedDouble.fbx" +dest_files=["res://.godot/imported/light_curvedDouble.fbx-c695281e478a2c04aff433f372e4c0e7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_square.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/light_square.fbx new file mode 100644 index 0000000..665240b --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_square.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 16 + Millisecond: 592 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "light_square.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "light_square.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4989196420348756219, "Model::light_square", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4800607793836994178, "Geometry::", "Mesh" { + Vertices: *312 { + a: -0.25,1,-0.25,0.25,1,-0.25,-0.125,1.5,-0.125,0.125,1.5,-0.125,0.25,0,0.25,0.25,0,-0.25,-0.25,0,0.25,-0.25,0,-0.25,0.125,6,-0.125,0.125,5.9375,0.0625,-0.125,6,-0.125,-0.125,5.9375,0.0625,-0.125,1.5,-0.125,0.125,1.5,-0.125,-0.125,5.75,-0.125,0.125,5.75,-0.125,0.125,5.75,0.125,-0.125,5.75,0.125,0.125,5.9375,0.0625,-0.125,5.9375,0.0625,0.25,0,0.25,-0.25,0,0.25,0.25,1,0.25,-0.25,1,0.25,0.25,1,-0.25,0.25,1,0.25,0.125,1.5,-0.125,0.125,1.5,0.125,-0.25,1,-0.25,-0.125,1.5,-0.125,-0.25,1,0.25,-0.125,1.5,0.125,-0.25,0,-0.25,-0.25,1,-0.25,-0.25,0,0.25,-0.25,1,0.25,0.125,6,-1.125,0.125,5.75,-1.125,0.125,6,-0.125,0.125,5.75,-0.125,0.125,5.9375,0.0625,0.125,1.5,-0.125,0.125,1.5,0.125,0.125,5.75,0.125,0.25,6,-2.125,0.25,5.75,-2.125,0.25,6,-1.625,0.25,5.75,-1.625,0.25,1,-0.25,0.25,0,-0.25,0.25,1,0.25,0.25,0,0.25,-0.25,5.75,-2.125,-0.25,6,-2.125,-0.25,5.75,-1.625,-0.25,6,-1.625,-0.25,5.75,-2.125,0.25,5.75,-2.125,-0.25,6,-2.125,0.25,6,-2.125,0.125,1.5,0.125,-0.125,1.5,0.125,0.125,5.75,0.125,-0.125,5.75,0.125,0.25,6,-2.125,0.25,6,-1.625,-0.25,6,-2.125,0.125,6,-1.125,0.125,6,-0.125,-0.125,6,-1.125,-0.25,6,-1.625,-0.125,6,-0.125,-0.125,1.5,-0.125,-0.125,5.75,-0.125,-0.125,1.5,0.125,-0.125,6,-0.125,-0.125,5.9375,0.0625,-0.125,5.75,0.125,-0.125,6,-1.125,-0.125,5.75,-1.125,0.25,6,-1.625,0.25,5.75,-1.625,0.125,6,-1.125,0.125,5.75,-1.125,-0.25,0,-0.25,0.25,0,-0.25,-0.25,1,-0.25,0.25,1,-0.25,0.25,1,0.25,-0.25,1,0.25,0.125,1.5,0.125,-0.125,1.5,0.125,-0.25,5.75,-1.625,-0.25,6,-1.625,-0.125,5.75,-1.125,-0.125,6,-1.125,0.125,5.75,-0.125,0.125,5.75,-1.125,-0.125,5.75,-0.125,-0.125,5.75,-1.125,0.25,5.75,-1.625,0.25,5.75,-2.125,-0.25,5.75,-2.125,-0.25,5.75,-1.625 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,39,-41,42,41,-41,43,42,-41,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,68,-67,70,69,-67,69,71,-69,72,74,-74,75,73,-75,76,75,-75,77,76,-75,75,78,-74,79,73,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,97,-102,102,101,-98,99,102,-98,103,102,-100 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3162278,0.9486833,0,0.3162278,0.9486833,0,0.3162278,0.9486833,0,0.3162278,0.9486833,0,0.3162278,0.9486833,0,0.3162278,0.9486833,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9936895,0.1121652,0,-1,0,0,-1,0,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,0.9936895,0.1121652,0,0.9936895,0.1121652,0,1,0,0,1,0,0,1,0,0,0.9936895,0.1121652,0,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *208 { + a: 0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,0.984252,0.984252,0.984252,-0.984252,-0.984252,0.984252,-0.984252,-0.984252,0.492126,7.936819,0.492126,7.1587,-0.492126,7.936819,-0.492126,7.1587,0.492126,5.905512,-0.492126,5.905512,0.492126,22.63779,-0.492126,22.63779,0.492126,21.32047,-0.492126,21.32047,0.492126,22.09859,-0.492126,22.09859,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,-0.984252,3.580743,-0.492126,5.60983,0.984252,3.580743,0.492126,5.60983,-0.984252,0,-0.984252,3.937008,0.984252,0,0.984252,3.937008,4.429134,23.62205,4.429134,22.63779,0.492126,23.62205,0.492126,22.63779,-0.246063,23.37598,0.492126,5.905512,-0.492126,5.905512,-0.492126,22.63779,8.366141,23.62205,8.366141,22.63779,6.397638,23.62205,6.397638,22.63779,0.984252,3.937008,0.984252,0,-0.984252,3.937008,-0.984252,0,-8.366141,22.63779,-8.366141,23.62205,-6.397638,22.63779,-6.397638,23.62205,0.984252,22.63779,-0.984252,22.63779,0.984252,23.62205,-0.984252,23.62205,0.492126,5.905512,-0.492126,5.905512,0.492126,22.63779,-0.492126,22.63779,-0.984252,-8.366141,-0.984252,-6.397638,0.984252,-8.366141,-0.492126,-4.429134,-0.492126,-0.492126,0.492126,-4.429134,0.984252,-6.397638,0.492126,-0.492126,-0.492126,5.905512,-0.492126,22.63779,0.492126,5.905512,-0.492126,23.62205,0.246063,23.37598,0.492126,22.63779,-4.429134,23.62205,-4.429134,22.63779,6.445336,23.62205,6.445336,22.63779,4.416249,23.62205,4.416249,22.63779,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,-6.445336,22.63779,-6.445336,23.62205,-4.416249,22.63779,-4.416249,23.62205,0.492126,-0.492126,0.492126,-4.429134,-0.492126,-0.492126,-0.492126,-4.429134,0.984252,-6.397638,0.984252,-8.366141,-0.984252,-8.366141,-0.984252,-6.397638 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,39,40,42,41,40,43,42,40,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,68,66,70,69,66,69,71,68,72,74,73,75,73,74,76,75,74,77,76,74,75,78,73,79,73,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,97,101,102,101,97,99,102,97,103,102,99 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 7046, "Material::light", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.945098,0.9490196,0.9647059 + P: "DiffuseColor", "Color", "", "A",0.945098,0.9490196,0.9647059 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh light_square, Model::RootNode + C: "OO",4989196420348756219,0 + + ;Geometry::, Model::Mesh light_square + C: "OO",4800607793836994178,4989196420348756219 + + ;Material::pavement, Model::Mesh light_square + C: "OO",17046,4989196420348756219 + + ;Material::light, Model::Mesh light_square + C: "OO",7046,4989196420348756219 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_square.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/light_square.fbx.import new file mode 100644 index 0000000..8ddf866 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_square.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dafursw3jhg37" +path="res://.godot/imported/light_square.fbx-729d44de9e4b1f0943c5752684b18085.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/light_square.fbx" +dest_files=["res://.godot/imported/light_square.fbx-729d44de9e4b1f0943c5752684b18085.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareCross.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareCross.fbx new file mode 100644 index 0000000..7eff18b --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareCross.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 16 + Millisecond: 732 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "light_squareCross.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "light_squareCross.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4906535786649348582, "Model::light_squareCross", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5357917351858301341, "Geometry::", "Mesh" { + Vertices: *672 { + a: -2.125,5.75,-0.2500001,-1.625,5.75,-0.25,-2.125,6,-0.2500001,-1.625,6,-0.25,1.625,5.75,-0.25,2.125,5.75,-0.25,1.625,6,-0.25,2.125,6,-0.25,-1.625,5.75,-0.25,-1.125,5.75,-0.125,-1.625,6,-0.25,-1.125,6,-0.125,2.125,5.75,0.25,1.625,5.75,0.25,2.125,6,0.25,1.625,6,0.25,1.125,5.75,0.125,0.125,5.75,0.125,1.125,6,0.125,0.125,6,0.125,0.125,1.5,0.125,-0.125,1.5,0.125,-0.125,5.75,0.125,-1.125,5.75,0.125,-0.125,6,0.125,-1.125,6,0.125,1.125,5.75,-0.125,0.125,5.75,-0.125,1.125,5.75,0.125,0.125,5.75,0.125,0.125,5.75,-1.125,-0.125,5.75,-0.125,-0.125,5.75,-1.125,-1.125,5.75,-0.125,-0.125,5.75,0.125,-1.125,5.75,0.125,0.125,5.75,1.125,-0.125,5.75,1.125,-1.125,5.75,0.125,-1.625,5.75,0.2499999,-1.125,6,0.125,-1.625,6,0.2499999,-1.125,5.75,-0.125,-0.125,5.75,-0.125,-1.125,6,-0.125,-0.125,6,-0.125,-0.125,1.5,-0.125,0.125,1.5,-0.125,0.125,5.75,-0.125,1.125,5.75,-0.125,0.125,6,-0.125,1.125,6,-0.125,-0.125,6,-0.125,-4.656607E-09,5.958333,4.656617E-09,-0.125,6,0.125,0.125,6,-0.125,0.125,6,0.125,-4.656607E-09,5.958333,4.656617E-09,-2.125,5.75,-0.2500001,-2.125,6,-0.2500001,-2.125,5.75,0.2499999,-2.125,6,0.2499999,-0.125,6,-0.125,-0.125,6,0.125,-1.125,6,-0.125,-1.125,6,0.125,-1.625,6,-0.25,-1.625,6,0.2499999,-2.125,6,-0.2500001,-2.125,6,0.2499999,0.125,6,0.125,0.125,6,1.125,-0.125,6,1.125,-0.25,6,2.125,0.2499999,6,2.125,0.25,6,1.625,-0.25,6,1.625,0.125,6,-0.125,1.125,6,0.125,1.125,6,-0.125,1.625,6,0.25,1.625,6,-0.25,2.125,6,0.25,2.125,6,-0.25,0.125,6,-1.125,-0.125,6,-1.125,-0.25,6,-2.125,0.25,6,-1.625,0.25,6,-2.125,-0.25,6,-1.625,1.125,5.75,-0.125,1.625,5.75,-0.25,1.125,6,-0.125,1.625,6,-0.25,-1.625,5.75,0.2499999,-2.125,5.75,0.2499999,-1.625,6,0.2499999,-2.125,6,0.2499999,2.125,6,-0.25,2.125,5.75,-0.25,2.125,6,0.25,2.125,5.75,0.25,1.625,5.75,0.25,1.125,5.75,0.125,1.625,6,0.25,1.125,6,0.125,-0.125,6,0.125,-0.125,6,1.125,-0.125,5.75,0.125,-0.125,5.75,1.125,-0.125,1.5,0.125,-0.125,5.75,-0.125,-0.125,1.5,-0.125,-0.125,5.75,-1.125,-0.125,6,-1.125,-0.125,6,-0.125,0.25,1,0.25,-0.25,1,0.25,0.125,1.5,0.125,-0.125,1.5,0.125,-0.25,5.75,-1.625,-0.25,6,-1.625,-0.125,5.75,-1.125,-0.125,6,-1.125,-0.25,0,-0.25,0.25,0,-0.25,-0.25,1,-0.25,0.25,1,-0.25,0.25,1,-0.25,0.25,0,-0.25,0.25,1,0.25,0.25,0,0.25,0.125,6,-0.125,-4.656607E-09,5.958333,4.656617E-09,-0.125,6,-0.125,0.2499999,5.75,2.125,-0.25,5.75,2.125,0.2499999,6,2.125,-0.25,6,2.125,0.125,6,-1.125,0.125,5.75,-1.125,0.125,6,-0.125,0.125,5.75,-0.125,0.125,1.5,-0.125,0.125,5.75,0.125,0.125,1.5,0.125,0.125,6,0.125,0.125,6,1.125,0.125,5.75,1.125,0.25,1,-0.25,0.25,1,0.25,0.125,1.5,-0.125,0.125,1.5,0.125,0.25,0,-0.25,-0.25,0,-0.25,0.25,0,0.25,-0.25,0,0.25,-0.25,5.75,-2.125,0.25,5.75,-2.125,-0.25,6,-2.125,0.25,6,-2.125,-4.656607E-09,5.958333,4.656617E-09,0.125,6,0.125,-0.125,6,0.125,-0.25,1,-0.25,0.25,1,-0.25,-0.125,1.5,-0.125,0.125,1.5,-0.125,0.25,6,1.625,0.25,5.75,1.625,0.2499999,6,2.125,0.2499999,5.75,2.125,0.25,6,-1.625,0.25,5.75,-1.625,0.125,6,-1.125,0.125,5.75,-1.125,-0.25,1,-0.25,-0.125,1.5,-0.125,-0.25,1,0.25,-0.125,1.5,0.125,-0.25,5.75,-2.125,-0.25,6,-2.125,-0.25,5.75,-1.625,-0.25,6,-1.625,0.25,0,0.25,-0.25,0,0.25,0.25,1,0.25,-0.25,1,0.25,0.25,6,-2.125,0.25,5.75,-2.125,0.25,6,-1.625,0.25,5.75,-1.625,-0.25,0,-0.25,-0.25,1,-0.25,-0.25,0,0.25,-0.25,1,0.25,-0.125,5.75,1.125,-0.125,6,1.125,-0.25,5.75,1.625,-0.25,6,1.625,-0.25,5.75,1.625,-0.25,6,1.625,-0.25,5.75,2.125,-0.25,6,2.125,0.125,6,1.125,0.125,5.75,1.125,0.25,6,1.625,0.25,5.75,1.625,2.125,5.75,-0.25,1.625,5.75,-0.25,2.125,5.75,0.25,1.625,5.75,0.25,-1.625,5.75,-0.25,-1.625,5.75,0.2499999,-2.125,5.75,-0.2500001,-2.125,5.75,0.2499999,0.25,5.75,-1.625,0.25,5.75,-2.125,-0.25,5.75,-2.125,-0.25,5.75,-1.625,0.25,5.75,1.625,0.2499999,5.75,2.125,-0.25,5.75,2.125,-0.25,5.75,1.625 + } + PolygonVertexIndex: *402 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-22,22,21,-18,22,24,-24,25,23,-25,26,28,-28,29,27,-29,27,31,-31,32,30,-32,31,34,-34,35,33,-35,29,36,-35,37,34,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,43,-48,48,47,-44,48,50,-50,51,49,-51,52,54,-54,55,57,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,65,-65,67,65,-67,68,67,-67,69,67,-69,70,63,-72,63,72,-72,72,73,-72,73,74,-72,75,71,-75,76,73,-73,70,78,-78,77,78,-80,78,80,-80,79,80,-82,80,82,-82,83,81,-83,84,62,-78,62,84,-86,85,84,-87,84,87,-87,88,86,-88,89,85,-87,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,108,111,-111,112,110,-112,113,111,-115,115,114,-112,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,137,-137,138,136,-138,139,141,-141,142,140,-142,142,144,-144,145,143,-145,146,147,-145,148,144,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,163,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,26,209,-212,28,26,-212,33,35,-213,213,212,-36,214,212,-214,215,214,-214,216,30,-218,218,217,-31,32,218,-31,219,218,-33,220,221,-37,222,36,-222,37,36,-223,223,37,-223 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1206 { + a: 0,0,-1,0,0,-1,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0,0,-1,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,0,0,-1,0,0,-1,0,0,-1,-0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0,0,1,0,0,1,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,0,0,1,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,0,0,1,0,0,1,0,0,1,-0.1221833,0,0.9925076,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.1221832,0,0.9925076,0.1221832,0,0.9925076,0.1221832,0,0.9925076,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.1221832,0,0.9925076,0.1221832,0,0.9925076,0.1221832,0,0.9925076,0.1221832,0,0.9925076,0.1221832,0,0.9925076,0.1221832,0,0.9925076,0.1221833,0,-0.9925076,0.1221833,0,-0.9925076,0,0,-1,0,0,-1,0,0,-1,0.1221833,0,-0.9925076,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,0,0,-1,0.3162278,0.9486833,0,0.3162278,0.9486833,0,0.3162278,0.9486833,0,-0.3162278,0.9486833,0,-0.3162278,0.9486833,0,-0.3162278,0.9486833,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,-0.1221833,0,-0.9925076,0.1221832,0,0.9925076,0.1221832,0,0.9925076,0,0,1,0,0,1,0,0,1,0.1221832,0,0.9925076,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,-0.1221833,0,0.9925076,-1,0,0,-1,0,0,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0.9936895,0.1121652,0,0.9936895,0.1121652,0,1,0,0,1,0,0,1,0,0,0.9936895,0.1121652,0,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9936895,0.1121652,0,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,-1,0,0,-1,0,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-1,0,0,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *448 { + a: 8.366141,22.63779,6.397638,22.63779,8.366141,23.62205,6.397638,23.62205,-6.397638,22.63779,-8.366141,22.63779,-6.397638,23.62205,-8.366141,23.62205,6.445336,22.63779,4.416249,22.63779,6.445336,23.62205,4.416249,23.62205,8.366141,22.63779,6.397638,22.63779,8.366141,23.62205,6.397638,23.62205,4.429134,22.63779,0.492126,22.63779,4.429134,23.62205,0.492126,23.62205,0.492126,5.905512,-0.492126,5.905512,-0.492126,22.63779,-4.429134,22.63779,-0.492126,23.62205,-4.429134,23.62205,4.429134,-0.4921259,0.492126,-0.492126,4.429134,0.4921261,0.492126,0.492126,0.492126,-4.429134,-0.492126,-0.492126,-0.492126,-4.429134,-4.429134,-0.4921261,-0.492126,0.492126,-4.429134,0.4921259,0.4921259,4.429134,-0.4921261,4.429134,-4.416249,22.63779,-6.445336,22.63779,-4.416249,23.62205,-6.445336,23.62205,4.429134,22.63779,0.492126,22.63779,4.429134,23.62205,0.492126,23.62205,0.492126,5.905512,-0.492126,5.905512,-0.492126,22.63779,-4.429134,22.63779,-0.492126,23.62205,-4.429134,23.62205,0.492126,7.936819,-1.833314E-08,7.418073,-0.492126,7.936819,-0.492126,7.936819,0.492126,7.936819,1.833314E-08,7.418073,-0.984252,22.63779,-0.984252,23.62205,0.984252,22.63779,0.984252,23.62205,0.492126,-0.492126,0.492126,0.492126,4.429134,-0.4921261,4.429134,0.4921259,6.397638,-0.9842522,6.397638,0.9842518,8.366141,-0.9842522,8.366141,0.9842517,-0.492126,0.492126,-0.4921259,4.429134,0.4921261,4.429134,0.9842521,8.366141,-0.9842518,8.366141,-0.9842519,6.397638,0.9842521,6.397638,-0.492126,-0.492126,-4.429134,0.4921261,-4.429134,-0.4921259,-6.397638,0.9842521,-6.397638,-0.9842519,-8.366141,0.9842521,-8.366141,-0.9842519,-0.492126,-4.429134,0.492126,-4.429134,0.984252,-8.366141,-0.984252,-6.397638,-0.984252,-8.366141,0.984252,-6.397638,-4.416249,22.63779,-6.445336,22.63779,-4.416249,23.62205,-6.445336,23.62205,-6.397638,22.63779,-8.366141,22.63779,-6.397638,23.62205,-8.366141,23.62205,0.984252,23.62205,0.984252,22.63779,-0.984252,23.62205,-0.984252,22.63779,6.445336,22.63779,4.416249,22.63779,6.445336,23.62205,4.416249,23.62205,0.492126,23.62205,4.429134,23.62205,0.492126,22.63779,4.429134,22.63779,0.492126,5.905512,-0.492126,22.63779,-0.492126,5.905512,-4.429134,22.63779,-4.429134,23.62205,-0.492126,23.62205,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,-6.445336,22.63779,-6.445336,23.62205,-4.416249,22.63779,-4.416249,23.62205,0.984252,1.206112E-15,-0.984252,1.206112E-15,0.984252,3.937008,-0.984252,3.937008,0.984252,3.937008,0.984252,-2.103999E-15,-0.984252,3.937008,-0.984252,-2.103999E-15,0.492126,7.936819,-1.83331E-08,7.418073,-0.492126,7.936819,0.984252,22.63779,-0.984252,22.63779,0.984252,23.62205,-0.984252,23.62205,4.429134,23.62205,4.429134,22.63779,0.492126,23.62205,0.492126,22.63779,0.492126,5.905512,-0.492126,22.63779,-0.492126,5.905512,-0.492126,23.62205,-4.429134,23.62205,-4.429134,22.63779,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,0.984252,-0.9842519,-0.984252,-0.984252,0.9842519,0.984252,-0.984252,0.984252,0.984252,22.63779,-0.984252,22.63779,0.984252,23.62205,-0.984252,23.62205,1.83331E-08,7.418073,-0.492126,7.936819,0.492126,7.936819,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,-6.397638,23.62205,-6.397638,22.63779,-8.366141,23.62205,-8.366141,22.63779,6.445336,23.62205,6.445336,22.63779,4.416249,23.62205,4.416249,22.63779,-0.984252,3.580743,-0.492126,5.60983,0.984252,3.580743,0.492126,5.60983,-8.366141,22.63779,-8.366141,23.62205,-6.397638,22.63779,-6.397638,23.62205,0.984252,-6.689687E-15,-0.984252,-6.689687E-15,0.984252,3.937008,-0.984252,3.937008,8.366141,23.62205,8.366141,22.63779,6.397638,23.62205,6.397638,22.63779,-0.984252,4.452682E-32,-0.984252,3.937008,0.984252,4.452682E-32,0.984252,3.937008,4.416249,22.63779,4.416249,23.62205,6.445336,22.63779,6.445336,23.62205,6.397638,22.63779,6.397638,23.62205,8.366141,22.63779,8.366141,23.62205,-4.416249,23.62205,-4.416249,22.63779,-6.445336,23.62205,-6.445336,22.63779,8.366141,-0.9842519,6.397638,-0.9842519,8.366141,0.9842521,6.397638,0.9842521,-6.397638,-0.9842522,-6.397638,0.9842518,-8.366141,-0.9842522,-8.366141,0.9842517,0.984252,-6.397638,0.984252,-8.366141,-0.984252,-8.366141,-0.984252,-6.397638,0.9842519,6.397638,0.9842518,8.366141,-0.9842521,8.366141,-0.9842521,6.397638 + } + UVIndex: *402 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,21,22,21,17,22,24,23,25,23,24,26,28,27,29,27,28,27,31,30,32,30,31,31,34,33,35,33,34,29,36,34,37,34,36,38,40,39,41,39,40,42,44,43,45,43,44,46,43,47,48,47,43,48,50,49,51,49,50,52,54,53,55,57,56,58,60,59,61,59,60,62,64,63,65,63,64,66,65,64,67,65,66,68,67,66,69,67,68,70,63,71,63,72,71,72,73,71,73,74,71,75,71,74,76,73,72,70,78,77,77,78,79,78,80,79,79,80,81,80,82,81,83,81,82,84,62,77,62,84,85,85,84,86,84,87,86,88,86,87,89,85,86,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,108,111,110,112,110,111,113,111,114,115,114,111,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,137,136,138,136,137,139,141,140,142,140,141,142,144,143,145,143,144,146,147,144,148,144,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,163,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,26,209,211,28,26,211,33,35,212,213,212,35,214,212,213,215,214,213,216,30,217,218,217,30,32,218,30,219,218,32,220,221,36,222,36,221,37,36,222,223,37,222 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *134 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 7046, "Material::light", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.945098,0.9490196,0.9647059 + P: "DiffuseColor", "Color", "", "A",0.945098,0.9490196,0.9647059 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh light_squareCross, Model::RootNode + C: "OO",4906535786649348582,0 + + ;Geometry::, Model::Mesh light_squareCross + C: "OO",5357917351858301341,4906535786649348582 + + ;Material::pavement, Model::Mesh light_squareCross + C: "OO",17046,4906535786649348582 + + ;Material::light, Model::Mesh light_squareCross + C: "OO",7046,4906535786649348582 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareCross.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareCross.fbx.import new file mode 100644 index 0000000..d571009 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareCross.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://brf8aejcosgk7" +path="res://.godot/imported/light_squareCross.fbx-ed7cfb424da4960a35a528d97bc00599.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/light_squareCross.fbx" +dest_files=["res://.godot/imported/light_squareCross.fbx-ed7cfb424da4960a35a528d97bc00599.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareDouble.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareDouble.fbx new file mode 100644 index 0000000..9ababca --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareDouble.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 16 + Millisecond: 821 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "light_squareDouble.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "light_squareDouble.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5459013829554465575, "Model::light_squareDouble", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5505807612405022288, "Geometry::", "Mesh" { + Vertices: *438 { + a: -0.25,1,-0.25,0.25,1,-0.25,-0.125,1.5,-0.125,0.125,1.5,-0.125,0.25,0,0.25,0.25,0,-0.25,-0.25,0,0.25,-0.25,0,-0.25,-0.125,1.5,-0.125,0.125,1.5,-0.125,-0.125,5.75,-0.125,0.125,5.75,-0.125,0.25,0,0.25,-0.25,0,0.25,0.25,1,0.25,-0.25,1,0.25,0.25,1,-0.25,0.25,1,0.25,0.125,1.5,-0.125,0.125,1.5,0.125,-0.25,1,-0.25,-0.125,1.5,-0.125,-0.25,1,0.25,-0.125,1.5,0.125,-0.25,0,-0.25,-0.25,1,-0.25,-0.25,0,0.25,-0.25,1,0.25,0.125,5.958333,1.862632E-09,0.125,5.75,0.125,0.125,6,0.125,0.125,5.75,1.125,0.125,6,1.125,0.125,1.5,0.125,0.125,1.5,-0.125,0.125,5.75,-0.125,0.125,6,-0.125,0.125,5.75,-1.125,0.125,6,-1.125,0.25,6,-2.125,0.25,5.75,-2.125,0.25,6,-1.625,0.25,5.75,-1.625,0.25,1,-0.25,0.25,0,-0.25,0.25,1,0.25,0.25,0,0.25,-0.25,5.75,-2.125,-0.25,6,-2.125,-0.25,5.75,-1.625,-0.25,6,-1.625,-0.25,5.75,-2.125,0.25,5.75,-2.125,-0.25,6,-2.125,0.25,6,-2.125,0.125,1.5,0.125,-0.125,1.5,0.125,0.125,5.75,0.125,-0.125,5.75,0.125,0.25,6,-2.125,0.25,6,-1.625,-0.25,6,-2.125,0.125,6,-1.125,0.125,6,-0.125,-0.125,6,-1.125,-0.25,6,-1.625,-0.125,6,-0.125,0.25,6,-1.625,0.25,5.75,-1.625,0.125,6,-1.125,0.125,5.75,-1.125,-0.25,0,-0.25,0.25,0,-0.25,-0.25,1,-0.25,0.25,1,-0.25,0.25,1,0.25,-0.25,1,0.25,0.125,1.5,0.125,-0.125,1.5,0.125,-0.25,5.75,-1.625,-0.25,6,-1.625,-0.125,5.75,-1.125,-0.125,6,-1.125,-0.125,1.5,-0.125,-0.125,5.75,-0.125,-0.125,1.5,0.125,-0.125,6,-0.125,-0.125,5.958333,7.219114E-15,-0.125,6,0.125,-0.125,5.75,0.125,-0.125,5.75,1.125,-0.125,6,1.125,-0.125,6,-1.125,-0.125,5.75,-1.125,0.125,5.75,0.125,-0.125,5.75,0.125,0.125,5.75,1.125,-0.125,5.75,1.125,-0.25,5.75,1.625,-0.25,6,1.625,-0.25,5.75,2.125,-0.25,6,2.125,0.125,6,1.125,0.125,5.75,1.125,0.25,6,1.625,0.25,5.75,1.625,0.125,5.958333,1.862632E-09,0.125,6,0.125,-0.125,5.958333,7.219114E-15,-0.125,6,0.125,0.25,5.75,2.125,-0.25,5.75,2.125,0.25,6,2.125,-0.25,6,2.125,0.25,6,1.625,0.25,5.75,1.625,0.25,6,2.125,0.25,5.75,2.125,0.125,6,0.125,0.125,6,1.125,-0.125,6,0.125,-0.125,6,1.125,-0.25,6,2.125,0.25,6,2.125,0.25,6,1.625,-0.25,6,1.625,-0.125,5.75,1.125,-0.125,6,1.125,-0.25,5.75,1.625,-0.25,6,1.625,0.125,6,-0.125,0.125,5.958333,1.862632E-09,-0.125,6,-0.125,-0.125,5.958333,7.219114E-15,0.125,5.75,-0.125,0.125,5.75,-1.125,-0.125,5.75,-0.125,-0.125,5.75,-1.125,0.25,5.75,-1.625,0.25,5.75,-2.125,-0.25,5.75,-2.125,-0.25,5.75,-1.625,0.25,5.75,1.625,0.25,5.75,2.125,-0.25,5.75,2.125,-0.25,5.75,1.625 + } + PolygonVertexIndex: *264 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,31,-31,29,33,-29,33,34,-29,34,35,-29,28,35,-37,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,62,-62,64,63,-62,65,64,-62,64,66,-64,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,86,-86,88,87,-86,89,88,-86,90,88,-90,91,88,-91,86,92,-85,93,84,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,120,121,-120,121,122,-120,122,123,-120,124,119,-124,125,122,-122,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,135,-140,140,139,-136,137,140,-136,141,140,-138,142,143,-97,144,96,-144,97,96,-145,145,97,-145 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *792 { + a: 0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,0.1121652,-0.9936895,0,0.2425356,-0.9701425,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0,0,1,0,0.1121652,0.9936895,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9701425,0.2425356,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9936895,0.1121652,0,-1,0,0,-1,0,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-0.9936895,0.1121652,0,-1,0,0,1,0,0,1,0,0,1,0,0,0.9925076,0,-0.1221833,1,0,0,1,0,0,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,1,0,0,0.9925076,0,0.1221833,0.9936895,0.1121652,0,0.9936895,0.1121652,0,1,0,0,1,0,0,1,0,0,0.9936895,0.1121652,0,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0.9925076,0,0.1221833,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,0,-1,0,0.1121652,-0.9936895,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,0,0.1121652,0.9936895,0,0.2425356,0.9701425,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-0.9925076,0,0.1221833,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,-1,0,0,-0.9925076,0,0.1221833,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,-0.9925076,0,-0.1221833,-1,0,0,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0.9925076,0,-0.1221833,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,1,0,0,0.9925076,0,-0.1221833,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,-0.9925076,0,-0.1221833,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *292 { + a: 0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,0.984252,0.984252,0.984252,-0.984252,-0.984252,0.984252,-0.984252,-0.984252,0.492126,5.905512,-0.492126,5.905512,0.492126,22.63779,-0.492126,22.63779,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,-0.984252,3.580743,-0.492126,5.60983,0.984252,3.580743,0.492126,5.60983,-0.984252,0,-0.984252,3.937008,0.984252,0,0.984252,3.937008,-3.288842E-09,23.45801,-0.492126,22.63779,-0.492126,23.62205,-4.429134,22.63779,-4.429134,23.62205,-0.492126,5.905512,0.492126,5.905512,0.492126,22.63779,0.492126,23.62205,4.429134,22.63779,4.429134,23.62205,8.366141,23.62205,8.366141,22.63779,6.397638,23.62205,6.397638,22.63779,0.984252,3.937008,0.984252,0,-0.984252,3.937008,-0.984252,0,-8.366141,22.63779,-8.366141,23.62205,-6.397638,22.63779,-6.397638,23.62205,0.984252,22.63779,-0.984252,22.63779,0.984252,23.62205,-0.984252,23.62205,0.492126,5.905512,-0.492126,5.905512,0.492126,22.63779,-0.492126,22.63779,-0.984252,-8.366141,-0.984252,-6.397638,0.984252,-8.366141,-0.492126,-4.429134,-0.492126,-0.492126,0.492126,-4.429134,0.984252,-6.397638,0.492126,-0.492126,6.445336,23.62205,6.445336,22.63779,4.416249,23.62205,4.416249,22.63779,0.984252,0,-0.984252,0,0.984252,3.937008,-0.984252,3.937008,0.984252,3.580743,-0.984252,3.580743,0.492126,5.60983,-0.492126,5.60983,-6.445336,22.63779,-6.445336,23.62205,-4.416249,22.63779,-4.416249,23.62205,-0.492126,5.905512,-0.492126,22.63779,0.492126,5.905512,-0.492126,23.62205,4.044386E-09,23.45801,0.492126,23.62205,0.492126,22.63779,4.429134,22.63779,4.429134,23.62205,-4.429134,23.62205,-4.429134,22.63779,0.492126,0.492126,-0.492126,0.492126,0.4921259,4.429134,-0.492126,4.429134,6.397638,22.63779,6.397638,23.62205,8.366141,22.63779,8.366141,23.62205,-4.416249,23.62205,-4.416249,22.63779,-6.445336,23.62205,-6.445336,22.63779,-0.492126,7.418073,-0.492126,7.936819,0.492126,7.418073,0.492126,7.936819,0.984252,22.63779,-0.984252,22.63779,0.984252,23.62205,-0.984252,23.62205,-6.397638,23.62205,-6.397638,22.63779,-8.366141,23.62205,-8.366141,22.63779,-0.492126,0.492126,-0.4921259,4.429134,0.492126,0.492126,0.492126,4.429134,0.9842521,8.366141,-0.9842519,8.366141,-0.9842519,6.397638,0.9842521,6.397638,4.416249,22.63779,4.416249,23.62205,6.445336,22.63779,6.445336,23.62205,0.492126,7.936819,0.492126,7.418073,-0.492126,7.936819,-0.492126,7.418073,0.492126,-0.492126,0.492126,-4.429134,-0.492126,-0.492126,-0.492126,-4.429134,0.984252,-6.397638,0.984252,-8.366141,-0.984252,-8.366141,-0.984252,-6.397638,0.9842519,6.397638,0.9842519,8.366141,-0.9842521,8.366141,-0.9842521,6.397638 + } + UVIndex: *264 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,31,30,29,33,28,33,34,28,34,35,28,28,35,36,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,62,61,64,63,61,65,64,61,64,66,63,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,86,85,88,87,85,89,88,85,90,88,89,91,88,90,86,92,84,93,84,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,120,121,119,121,122,119,122,123,119,124,119,123,125,122,121,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,135,139,140,139,135,137,140,135,141,140,137,142,143,96,144,96,143,97,96,144,145,97,144 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *88 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 7046, "Material::light", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.945098,0.9490196,0.9647059 + P: "DiffuseColor", "Color", "", "A",0.945098,0.9490196,0.9647059 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh light_squareDouble, Model::RootNode + C: "OO",5459013829554465575,0 + + ;Geometry::, Model::Mesh light_squareDouble + C: "OO",5505807612405022288,5459013829554465575 + + ;Material::pavement, Model::Mesh light_squareDouble + C: "OO",17046,5459013829554465575 + + ;Material::light, Model::Mesh light_squareDouble + C: "OO",7046,5459013829554465575 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareDouble.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareDouble.fbx.import new file mode 100644 index 0000000..baa5ec4 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/light_squareDouble.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bjownyxfwdy83" +path="res://.godot/imported/light_squareDouble.fbx-ed670b42f50011ac648f7bef123a4749.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/light_squareDouble.fbx" +dest_files=["res://.godot/imported/light_squareDouble.fbx-ed670b42f50011ac648f7bef123a4749.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bend.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bend.fbx new file mode 100644 index 0000000..7d79ac7 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bend.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 16 + Millisecond: 961 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_bend.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_bend.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5484232405686669977, "Model::road_bend", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5343044327335763792, "Geometry::", "Mesh" { + Vertices: *900 { + a: -4.206647,0.2,4.391239,-4.206647,0.09999999,4.391239,-4.133974,0.2,4.5,-4.133974,0.09999999,4.5,-4.292893,0.2,4.292893,-4.292893,0.09999999,4.292893,-4.206647,0.2,4.391239,-4.206647,0.09999999,4.391239,-4.391239,0.09999999,4.206647,-4.292893,0.09999999,4.292893,-4.391239,0.2,4.206647,-4.292893,0.2,4.292893,-4.617316,0.09999999,4.07612,-4.5,0.09999999,4.133974,-4.617316,0.2,4.07612,-4.5,0.2,4.133974,-4.741181,0.09999999,4.034074,-4.617316,0.09999999,4.07612,-4.741181,0.2,4.034074,-4.617316,0.2,4.07612,-5,0.09999999,4,-4.869473,0.09999999,4.008555,-5,0.2,4,-4.869473,0.2,4.008555,-3.825264,0.09999999,-3.923004,-3.825264,0.2,-3.923004,-2.670629,0.09999999,-3.693332,-2.670629,0.2,-3.693332,-2.670629,0.09999999,-3.693332,-2.670629,0.2,-3.693332,-1.555849,0.09999999,-3.314916,-1.555849,0.2,-3.314916,-4.5,0.09999999,4.133974,-4.391239,0.09999999,4.206647,-4.5,0.2,4.133974,-4.391239,0.2,4.206647,-4.869473,0.09999999,4.008555,-4.741181,0.09999999,4.034074,-4.869473,0.2,4.008555,-4.741181,0.2,4.034074,2.794229,0.09999999,0.5,2.794229,0.2,0.5,3.314916,0.09999999,1.555849,3.314916,0.2,1.555849,5,0,5,4.914449,0,3.694738,-5,0,5,4.659258,0,2.411809,4.238795,0,1.173166,3.660254,1.127987E-16,-1.570157E-13,2.933533,2.255973E-16,-1.087614,2.071068,4.511947E-16,-2.071068,1.087614,6.76792E-16,-2.933533,3.609557E-15,9.023893E-16,-3.660254,-1.173166,1.240785E-15,-4.238795,-2.411809,1.579181E-15,-4.659258,-3.694738,2.030376E-15,-4.914449,-5,0,-5,-0.5,0.09999999,-2.794229,-0.5,0.2,-2.794229,0.4788528,0.09999999,-2.14018,0.4788528,0.2,-2.14018,-5,0.09999999,-4,-5,0.2,-4,-3.825264,0.09999999,-3.923004,-3.825264,0.2,-3.923004,0.4788528,0.09999999,-2.14018,0.4788528,0.2,-2.14018,1.363961,0.09999999,-1.363961,1.363961,0.2,-1.363961,2.14018,0.09999999,-0.4788528,2.14018,0.2,-0.4788528,2.794229,0.09999999,0.5,2.794229,0.2,0.5,3.693332,0.09999999,2.670629,3.693332,0.2,2.670629,3.923004,0.09999999,3.825264,3.923004,0.2,3.825264,3.923004,0.09999999,3.825264,3.923004,0.2,3.825264,4,0.09999999,5,4,0.2,5,-4,0.2,5,-5,0.2,5,-4.008555,0.2,4.869473,-4.034074,0.2,4.741181,-4.07612,0.2,4.617316,-4.133974,0.2,4.5,-4.206647,0.2,4.391239,-4.292893,0.2,4.292893,-4.391239,0.2,4.206647,-4.5,0.2,4.133974,-4.617316,0.2,4.07612,-4.741181,0.2,4.034074,-4.869473,0.2,4.008555,-5,0.2,4,-4.034074,0.2,4.741181,-4.034074,0.09999999,4.741181,-4.008555,0.2,4.869473,-4.008555,0.09999999,4.869473,-4.07612,0.2,4.617316,-4.07612,0.09999999,4.617316,-4.034074,0.2,4.741181,-4.034074,0.09999999,4.741181,-1.555849,0.09999999,-3.314916,-1.555849,0.2,-3.314916,-0.5,0.09999999,-2.794229,-0.5,0.2,-2.794229,-4.133974,0.2,4.5,-4.133974,0.09999999,4.5,-4.07612,0.2,4.617316,-4.07612,0.09999999,4.617316,3.314916,0.09999999,1.555849,3.314916,0.2,1.555849,3.693332,0.09999999,2.670629,3.693332,0.2,2.670629,-4.008555,0.2,4.869473,-4.008555,0.09999999,4.869473,-4,0.2,5,-4,0.09999999,5,1.363961,0.09999999,-1.363961,1.363961,0.2,-1.363961,2.14018,0.09999999,-0.4788528,2.14018,0.2,-0.4788528,5,0.2,5,4,0.2,5,4.914449,0.2,3.694738,4.659258,0.2,2.411809,4.238795,0.2,1.173166,3.923004,0.2,3.825264,3.660254,0.2,-1.570157E-13,3.693332,0.2,2.670629,3.314916,0.2,1.555849,2.933533,0.2,-1.087614,2.794229,0.2,0.5,2.071068,0.2,-2.071068,2.14018,0.2,-0.4788528,1.363961,0.2,-1.363961,1.087614,0.2,-2.933533,0.4788528,0.2,-2.14018,3.609557E-15,0.2,-3.660254,-0.5,0.2,-2.794229,-1.173166,0.2,-4.238795,-1.555849,0.2,-3.314916,-2.411809,0.2,-4.659258,-2.670629,0.2,-3.693332,-3.694738,0.2,-4.914449,-3.825264,0.2,-3.923004,-5,0.2,-5,-5,0.2,-4,-5,0,-5,-3.694738,2.030376E-15,-4.914449,-5,0.2,-5,-3.694738,0.2,-4.914449,-2.411809,1.579181E-15,-4.659258,-2.411809,0.2,-4.659258,-3.694738,2.030376E-15,-4.914449,-3.694738,0.2,-4.914449,-1.173166,1.240785E-15,-4.238795,-1.173166,0.2,-4.238795,-2.411809,1.579181E-15,-4.659258,-2.411809,0.2,-4.659258,3.609557E-15,9.023893E-16,-3.660254,3.609557E-15,0.2,-3.660254,-1.173166,1.240785E-15,-4.238795,-1.173166,0.2,-4.238795,1.087614,6.76792E-16,-2.933533,1.087614,0.2,-2.933533,3.609557E-15,9.023893E-16,-3.660254,3.609557E-15,0.2,-3.660254,2.071068,4.511947E-16,-2.071068,2.071068,0.2,-2.071068,1.087614,6.76792E-16,-2.933533,1.087614,0.2,-2.933533,2.071068,0.2,-2.071068,2.071068,4.511947E-16,-2.071068,2.933533,0.2,-1.087614,2.933533,2.255973E-16,-1.087614,2.933533,0.2,-1.087614,2.933533,2.255973E-16,-1.087614,3.660254,0.2,-1.570157E-13,3.660254,1.127987E-16,-1.570157E-13,3.660254,0.2,-1.570157E-13,3.660254,1.127987E-16,-1.570157E-13,4.238795,0.2,1.173166,4.238795,0,1.173166,4.238795,0.2,1.173166,4.238795,0,1.173166,4.659258,0.2,2.411809,4.659258,0,2.411809,4.659258,0.2,2.411809,4.659258,0,2.411809,4.914449,0.2,3.694738,4.914449,0,3.694738,4.914449,0.2,3.694738,4.914449,0,3.694738,5,0.2,5,5,0,5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,-5,0,5,4,0.09999999,5,5,0,5,5,0.2,5,3,0.09999999,5,4,0.2,5,-4,0.09999999,5,0.09999999,0.09999999,5,-3,0.09999999,5,-0.09999999,0.09999999,5,-5,0.2,5,-4,0.2,5,-0.09999999,0.09999999,5,-3,0.09999999,5,-0.1419202,0.09999999,4.360422,-0.2669635,0.09999999,3.731787,-0.4729903,0.09999999,3.124851,-0.7564754,0.09999999,2.55,-1.112569,0.09999999,2.017069,-1.535177,0.09999999,1.535177,-2.017069,0.09999999,1.112569,-2.55,0.09999999,0.7564754,-3.124851,0.09999999,0.4729903,-3.01711,0.09999999,4.738948,-3.068148,0.09999999,4.482362,-3.152241,0.09999999,4.234633,-3.731787,0.09999999,0.2669635,-3.267949,0.09999999,4,-3.413293,0.09999999,3.782477,-3.585787,0.09999999,3.585787,-3.782477,0.09999999,3.413293,-4.360422,0.09999999,0.1419202,-4,0.09999999,3.267949,-4.234633,0.09999999,3.152241,-4.482362,0.09999999,3.068148,-5,0.09999999,0.09999999,-4.738948,0.09999999,3.01711,-5,0.09999999,3,3,0.09999999,5,0.09999999,0.09999999,5,2.931559,0.09999999,3.955791,2.727407,0.09999999,2.929448,2.391036,0.09999999,1.938533,1.928203,0.09999999,1,1.346827,0.09999999,0.1299086,0.6568542,0.09999999,-0.6568542,-0.1299086,0.09999999,-1.346827,0.05636879,0.09999999,4.334316,-0.07377829,0.09999999,3.680023,-0.2882144,0.09999999,3.048315,-1,0.09999999,-1.928203,-0.5832704,0.09999999,2.45,-0.953898,0.09999999,1.895317,-1.393755,0.09999999,1.393755,-1.938533,0.09999999,-2.391036,-1.895317,0.09999999,0.953898,-2.45,0.09999999,0.5832704,-2.929448,0.09999999,-2.727407,-3.048315,0.09999999,0.2882144,-3.955791,0.09999999,-2.931559,-3.680023,0.09999999,0.07377829,-4.334316,0.09999999,-0.05636879,-5,0.09999999,-3,-5,0.09999999,-0.09999999,4,0.09999999,5,3.923004,0.09999999,3.825264,3.693332,0.09999999,2.670629,3.314916,0.09999999,1.555849,2.794229,0.09999999,0.5,2.14018,0.09999999,-0.4788528,1.363961,0.09999999,-1.363961,0.4788528,0.09999999,-2.14018,-0.5,0.09999999,-2.794229,-1.555849,0.09999999,-3.314916,-2.670629,0.09999999,-3.693332,-3.825264,0.09999999,-3.923004,-5,0.09999999,-4,-4,0.09999999,5,-4.008555,0.09999999,4.869473,-4.034074,0.09999999,4.741181,-4.07612,0.09999999,4.617316,-4.133974,0.09999999,4.5,-4.206647,0.09999999,4.391239,-4.292893,0.09999999,4.292893,-4.391239,0.09999999,4.206647,-4.5,0.09999999,4.133974,-4.617316,0.09999999,4.07612,-4.741181,0.09999999,4.034074,-4.869473,0.09999999,4.008555,-5,0.09999999,4 + } + PolygonVertexIndex: *780 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,48,-47,50,49,-47,51,50,-47,52,51,-47,53,52,-47,54,53,-47,55,54,-47,56,55,-47,57,56,-47,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,83,-86,87,83,-87,88,83,-88,89,83,-89,90,83,-90,91,83,-91,92,83,-92,93,83,-93,94,83,-94,95,83,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,125,-128,129,125,-129,130,129,-129,131,129,-131,132,131,-131,133,132,-131,134,132,-134,135,134,-134,136,134,-136,137,136,-136,138,137,-136,139,137,-139,140,139,-139,141,139,-141,142,141,-141,143,141,-143,144,143,-143,145,143,-145,146,145,-145,147,145,-147,148,147,-147,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,199,-202,203,202,-202,204,203,-202,205,204,-202,206,205,-202,207,206,-202,208,207,-202,199,209,-199,210,212,-212,213,211,-213,214,210,-212,215,211,-214,214,216,-211,214,217,-217,218,216,-218,219,218,-218,220,210,-217,221,220,-217,222,224,-224,225,223,-225,226,223,-226,227,223,-227,228,223,-228,229,223,-229,230,223,-230,231,223,-231,232,223,-232,233,223,-233,234,233,-233,235,234,-233,236,235,-233,237,235,-237,238,237,-237,239,238,-237,240,239,-237,241,240,-237,242,240,-242,243,242,-242,244,243,-242,245,244,-242,246,244,-246,247,246,-246,248,250,-250,251,249,-251,252,249,-252,253,249,-253,254,249,-254,255,249,-255,256,249,-256,257,249,-257,258,257,-257,259,258,-257,260,259,-257,261,259,-261,262,261,-261,263,262,-261,264,263,-261,265,263,-265,266,265,-265,267,266,-265,268,266,-268,269,268,-268,270,268,-270,271,270,-270,272,271,-270,273,271,-273,274,275,-249,276,248,-276,277,248,-277,278,248,-278,250,248,-279,251,250,-279,279,251,-279,252,251,-280,253,252,-280,280,253,-280,254,253,-281,281,254,-281,255,254,-282,256,255,-282,282,256,-282,260,256,-283,283,260,-283,264,260,-284,284,264,-284,267,264,-285,285,267,-285,269,267,-286,286,269,-286,272,269,-287,223,233,-288,234,287,-234,235,287,-235,237,287,-236,238,287,-238,239,287,-239,240,287,-240,242,287,-241,288,287,-243,243,288,-243,289,288,-244,290,289,-244,291,290,-244,292,291,-244,293,292,-244,244,293,-244,294,293,-245,295,294,-245,246,295,-245,296,295,-247,297,296,-247,247,297,-247,298,297,-248,299,298,-248,249,257,-223,258,222,-258,224,222,-259,259,224,-259,225,224,-260,226,225,-260,261,226,-260,227,226,-262,262,227,-262,228,227,-263,263,228,-263,229,228,-264,265,229,-264,230,229,-266,266,230,-266,231,230,-267,268,231,-267,232,231,-269,270,232,-269,236,232,-271,271,236,-271,241,236,-272,273,241,-272,245,241,-274 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2340 { + a: 0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.06540313,0,-0.9978589,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.06540313,0,-0.9978589,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *600 { + a: -5.173597,0.7874016,-5.173597,0.3937008,-5.688583,0.7874016,-5.688583,0.3937008,-1.563255,0.7874016,-1.563255,0.3937008,-2.078241,0.7874016,-2.078241,0.3937008,2.078241,0.3937008,1.563255,0.3937008,2.078241,0.7874016,1.563255,0.7874016,9.205997,0.3937008,8.691012,0.3937008,9.205997,0.7874016,8.691012,0.7874016,12.5703,0.3937008,12.05532,0.3937008,12.5703,0.7874016,12.05532,0.7874016,18.61292,0.3937008,18.09794,0.3937008,18.61292,0.7874016,18.09794,0.7874016,-17.78387,0.3937008,-17.78387,0.7874016,-13.149,0.3937008,-13.149,0.7874016,-14.63024,0.3937008,-14.63024,0.7874016,-9.995375,0.3937008,-9.995375,0.7874016,5.688583,0.3937008,5.173597,0.3937008,5.688583,0.7874016,5.173597,0.7874016,15.72393,0.3937008,15.20894,0.3937008,15.72393,0.7874016,15.20894,0.7874016,6.631071,0.3937008,6.631071,0.7874016,11.26594,0.3937008,11.26594,0.7874016,19.68504,19.68504,19.34822,14.54621,-19.68504,19.68504,18.34354,9.495314,16.68817,4.618762,14.41045,-6.181722E-13,11.54934,-4.281946,8.153811,-8.153811,4.281946,-11.54934,1.421085E-14,-14.41045,-4.618762,-16.68817,-9.495314,-18.34354,-14.54621,-19.34822,-19.68504,-19.68504,-7.748524,0.3937008,-7.748524,0.7874016,-3.113657,0.3937008,-3.113657,0.7874016,-20.67286,0.3937008,-20.67286,0.7874016,-16.03799,0.3937008,-16.03799,0.7874016,-4.138182,0.3937008,-4.138182,0.7874016,0.4966858,0.3937008,0.4966858,0.7874016,3.113657,0.3937008,3.113657,0.7874016,7.748524,0.3937008,7.748524,0.7874016,13.149,0.3937008,13.149,0.7874016,17.78387,0.3937008,17.78387,0.7874016,16.03799,0.3937008,16.03799,0.7874016,20.67286,0.3937008,20.67286,0.7874016,15.74803,19.68504,19.68504,19.68504,15.78171,19.17116,15.88218,18.66607,16.04772,18.17841,16.27549,17.71654,16.5616,17.28834,16.90115,16.90115,17.28834,16.5616,17.71654,16.27549,18.17841,16.04772,18.66607,15.88218,19.17116,15.78171,19.68504,15.74803,-15.20894,0.7874016,-15.20894,0.3937008,-15.72393,0.7874016,-15.72393,0.3937008,-12.05532,0.7874016,-12.05532,0.3937008,-12.5703,0.7874016,-12.5703,0.3937008,-11.26594,0.3937008,-11.26594,0.7874016,-6.631071,0.3937008,-6.631071,0.7874016,-8.691012,0.7874016,-8.691012,0.3937008,-9.205997,0.7874016,-9.205997,0.3937008,9.995375,0.3937008,9.995375,0.7874016,14.63024,0.3937008,14.63024,0.7874016,-18.09794,0.7874016,-18.09794,0.3937008,-18.61292,0.7874016,-18.61292,0.3937008,-0.4966858,0.3937008,-0.4966858,0.7874016,4.138182,0.3937008,4.138182,0.7874016,-19.68504,19.68504,-15.74803,19.68504,-19.34822,14.54621,-18.34354,9.495314,-16.68817,4.618762,-15.4449,15.0601,-14.41045,-6.177671E-13,-14.54068,10.51429,-13.05085,6.12539,-11.54934,-4.281946,-11.0009,1.968504,-8.153811,-8.153811,-8.425906,-1.885247,-5.369925,-5.369925,-4.281946,-11.54934,-1.885247,-8.425906,-1.381269E-14,-14.41045,1.968504,-11.0009,4.618762,-16.68817,6.12539,-13.05085,9.495314,-18.34354,10.51429,-14.54068,14.54621,-19.34822,15.0601,-15.4449,19.68504,-19.68504,19.68504,-15.74803,20.93036,-1.8842E-15,15.7805,6.109405E-15,20.93036,0.7874016,15.7805,0.7874016,12.89151,2.850813E-15,12.89151,0.7874016,18.04136,4.62717E-15,18.04136,0.7874016,9.737882,1.893303E-15,9.737882,0.7874016,14.88773,3.225571E-15,14.88773,0.7874016,6.373579,8.938674E-16,6.373579,0.7874016,11.52343,2.226135E-15,11.52343,0.7874016,2.856164,2.803756E-16,2.856164,0.7874016,8.006017,1.168554E-15,8.006017,0.7874016,-0.7541785,-3.964607E-16,-0.7541785,0.7874016,4.395674,4.917177E-16,4.395674,0.7874016,0.7541785,0.7874016,0.7541785,-2.425187E-16,-4.395674,0.7874016,-4.395674,-1.130697E-15,-2.856164,0.7874016,-2.856164,-1.017821E-15,-8.006017,0.7874016,-8.006017,-1.46191E-15,-6.373579,0.7874016,-6.373579,-1.364948E-15,-11.52343,0.7874016,-11.52343,-1.809037E-15,-9.737882,0.7874016,-9.737882,-1.696295E-15,-14.88773,0.7874016,-14.88773,-1.696295E-15,-12.89151,0.7874016,-12.89151,-1.532351E-15,-18.04136,0.7874016,-18.04136,-1.532351E-15,-15.7805,0.7874016,-15.7805,2.479606E-17,-20.93036,0.7874016,-20.93036,2.479606E-17,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,2.460002E-13,19.68504,2.460002E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-19.68504,-2.974417E-12,15.74803,0.3937008,19.68504,-2.974417E-12,19.68504,0.7874016,11.81102,0.3937008,15.74803,0.7874016,-15.74803,0.3937008,0.3937008,0.3937008,-11.81102,0.3937008,-0.3937008,0.3937008,-19.68504,0.7874016,-15.74803,0.7874016,0.3937008,19.68504,11.81102,19.68504,0.5587409,17.16702,1.051037,14.69207,1.862167,12.30256,2.97825,10.03937,4.380191,7.941216,6.044003,6.044003,7.941216,4.380191,10.03937,2.97825,12.30256,1.862167,11.87839,18.65727,12.07932,17.64709,12.4104,16.67178,14.69207,1.051037,12.86594,15.74803,13.43816,14.89164,14.11727,14.11727,14.89164,13.43816,17.16702,0.5587409,15.74803,12.86594,16.67178,12.4104,17.64709,12.07932,19.68504,0.3937008,18.65727,11.87839,19.68504,11.81102,-11.81102,19.68504,-0.3937008,19.68504,-11.54157,15.57398,-10.73782,11.53326,-9.413528,7.632018,-7.591352,3.937008,-5.302467,0.5114511,-2.58604,-2.58604,0.5114511,-5.302467,-0.2219244,17.06424,0.2904657,14.48828,1.134702,12.00124,3.937008,-7.591352,2.29634,9.645669,3.755504,7.461877,5.487226,5.487226,7.632018,-9.413528,7.461877,3.755504,9.645669,2.29634,11.53326,-10.73782,12.00124,1.134702,15.57398,-11.54157,14.48828,0.2904657,17.06424,-0.2219244,19.68504,-11.81102,19.68504,-0.3937008,-15.74803,19.68504,-15.4449,15.0601,-14.54068,10.51429,-13.05085,6.12539,-11.0009,1.968504,-8.425906,-1.885247,-5.369925,-5.369925,-1.885247,-8.425906,1.968504,-11.0009,6.12539,-13.05085,10.51429,-14.54068,15.0601,-15.4449,19.68504,-15.74803,15.74803,19.68504,15.78171,19.17116,15.88218,18.66607,16.04772,18.17841,16.27549,17.71654,16.5616,17.28834,16.90115,16.90115,17.28834,16.5616,17.71654,16.27549,18.17841,16.04772,18.66607,15.88218,19.17116,15.78171,19.68504,15.74803 + } + UVIndex: *780 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,48,46,50,49,46,51,50,46,52,51,46,53,52,46,54,53,46,55,54,46,56,55,46,57,56,46,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,83,85,87,83,86,88,83,87,89,83,88,90,83,89,91,83,90,92,83,91,93,83,92,94,83,93,95,83,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,125,127,129,125,128,130,129,128,131,129,130,132,131,130,133,132,130,134,132,133,135,134,133,136,134,135,137,136,135,138,137,135,139,137,138,140,139,138,141,139,140,142,141,140,143,141,142,144,143,142,145,143,144,146,145,144,147,145,146,148,147,146,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,199,201,203,202,201,204,203,201,205,204,201,206,205,201,207,206,201,208,207,201,199,209,198,210,212,211,213,211,212,214,210,211,215,211,213,214,216,210,214,217,216,218,216,217,219,218,217,220,210,216,221,220,216,222,224,223,225,223,224,226,223,225,227,223,226,228,223,227,229,223,228,230,223,229,231,223,230,232,223,231,233,223,232,234,233,232,235,234,232,236,235,232,237,235,236,238,237,236,239,238,236,240,239,236,241,240,236,242,240,241,243,242,241,244,243,241,245,244,241,246,244,245,247,246,245,248,250,249,251,249,250,252,249,251,253,249,252,254,249,253,255,249,254,256,249,255,257,249,256,258,257,256,259,258,256,260,259,256,261,259,260,262,261,260,263,262,260,264,263,260,265,263,264,266,265,264,267,266,264,268,266,267,269,268,267,270,268,269,271,270,269,272,271,269,273,271,272,274,275,248,276,248,275,277,248,276,278,248,277,250,248,278,251,250,278,279,251,278,252,251,279,253,252,279,280,253,279,254,253,280,281,254,280,255,254,281,256,255,281,282,256,281,260,256,282,283,260,282,264,260,283,284,264,283,267,264,284,285,267,284,269,267,285,286,269,285,272,269,286,223,233,287,234,287,233,235,287,234,237,287,235,238,287,237,239,287,238,240,287,239,242,287,240,288,287,242,243,288,242,289,288,243,290,289,243,291,290,243,292,291,243,293,292,243,244,293,243,294,293,244,295,294,244,246,295,244,296,295,246,297,296,246,247,297,246,298,297,247,299,298,247,249,257,222,258,222,257,224,222,258,259,224,258,225,224,259,226,225,259,261,226,259,227,226,261,262,227,261,228,227,262,263,228,262,229,228,263,265,229,263,230,229,265,266,230,265,231,230,266,268,231,266,232,231,268,270,232,268,236,232,270,271,236,270,241,236,271,273,241,271,245,241,273 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *260 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_bend, Model::RootNode + C: "OO",5484232405686669977,0 + + ;Geometry::, Model::Mesh road_bend + C: "OO",5343044327335763792,5484232405686669977 + + ;Material::pavement, Model::Mesh road_bend + C: "OO",17046,5484232405686669977 + + ;Material::asphalt, Model::Mesh road_bend + C: "OO",9934,5484232405686669977 + + ;Material::asphaltEdge, Model::Mesh road_bend + C: "OO",17042,5484232405686669977 + + ;Material::line, Model::Mesh road_bend + C: "OO",9174,5484232405686669977 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bend.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bend.fbx.import new file mode 100644 index 0000000..75f3c84 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bend.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://br22w8dw40meb" +path="res://.godot/imported/road_bend.fbx-2335fbfb7e51d88331864b49b5021724.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_bend.fbx" +dest_files=["res://.godot/imported/road_bend.fbx-2335fbfb7e51d88331864b49b5021724.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendBarrier.fbx new file mode 100644 index 0000000..42f8eab --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 17 + Millisecond: 66 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_bendBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_bendBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5382775578957776793, "Model::road_bendBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5692034425221344690, "Geometry::", "Mesh" { + Vertices: *612 { + a: 5,2.368772E-15,5,4.914449,0,3.694738,4.5,2.368772E-15,5,4.659258,0,2.411809,4.418726,2.368772E-15,3.760001,4.238795,0,1.173166,4.176295,2.368772E-15,2.541219,3.660254,1.127987E-16,-1.090086E-12,3.776855,2.368772E-15,1.364507,3.227241,2.368772E-15,0.25,2.933533,2.255973E-16,-1.087614,2.536857,2.368772E-15,-0.7832336,2.071068,4.511947E-16,-2.071068,1.717514,2.368772E-15,-1.717514,1.087614,6.76792E-16,-2.933533,0.7832336,2.368772E-15,-2.536857,3.683553E-12,9.023893E-16,-3.660254,-0.25,2.368772E-15,-3.227241,-1.173166,1.240785E-15,-4.238795,-1.364507,2.368772E-15,-3.776855,-2.411809,1.579181E-15,-4.659258,-2.541219,2.368772E-15,-4.176295,-3.694738,2.030376E-15,-4.914449,-3.760001,2.368772E-15,-4.418726,-5,2.368772E-15,-5,-5,2.368772E-15,-4.5,4.914449,0.8,3.694738,4.914449,0,3.694738,5,0.8,5,5,2.368772E-15,5,4.659258,0.8,2.411809,4.659258,0,2.411809,4.914449,0.8,3.694738,4.914449,0,3.694738,4.238795,0.8,1.173166,4.238795,0,1.173166,4.659258,0.8,2.411809,4.659258,0,2.411809,3.660254,0.8,-1.090086E-12,3.660254,1.127987E-16,-1.090086E-12,4.238795,0.8,1.173166,4.238795,0,1.173166,2.933533,0.8,-1.087614,2.933533,2.255973E-16,-1.087614,3.660254,0.8,-1.090086E-12,3.660254,1.127987E-16,-1.090086E-12,2.071068,0.8,-2.071068,2.071068,4.511947E-16,-2.071068,2.933533,0.8,-1.087614,2.933533,2.255973E-16,-1.087614,2.071068,4.511947E-16,-2.071068,2.071068,0.8,-2.071068,1.087614,6.76792E-16,-2.933533,1.087614,0.8,-2.933533,1.087614,6.76792E-16,-2.933533,1.087614,0.8,-2.933533,3.683553E-12,9.023893E-16,-3.660254,3.683553E-12,0.8,-3.660254,3.683553E-12,9.023893E-16,-3.660254,3.683553E-12,0.8,-3.660254,-1.173166,1.240785E-15,-4.238795,-1.173166,0.8,-4.238795,-1.173166,1.240785E-15,-4.238795,-1.173166,0.8,-4.238795,-2.411809,1.579181E-15,-4.659258,-2.411809,0.8,-4.659258,-2.411809,1.579181E-15,-4.659258,-2.411809,0.8,-4.659258,-3.694738,2.030376E-15,-4.914449,-3.694738,0.8,-4.914449,-3.694738,2.030376E-15,-4.914449,-3.694738,0.8,-4.914449,-5,2.368772E-15,-5,-5,0.8,-5,3.776855,2.368772E-15,1.364507,3.961631,0.8,1.287971,4.36948,0.8,2.489455,4.176295,2.368772E-15,2.541219,4.418726,2.368772E-15,3.760001,4.617015,0.8,3.733896,4.7,0.8,5,4.5,2.368772E-15,5,4.176295,2.368772E-15,2.541219,4.36948,0.8,2.489455,4.617015,0.8,3.733896,4.418726,2.368772E-15,3.760001,-3.733896,0.8,-4.617015,-5,2.368772E-15,-4.5,-5,0.8,-4.7,-3.760001,2.368772E-15,-4.418726,0.9049859,0.8,-2.695527,-0.25,2.368772E-15,-3.227241,-0.15,0.8,-3.400446,0.7832336,2.368772E-15,-2.536857,-2.489455,0.8,-4.36948,-3.760001,2.368772E-15,-4.418726,-3.733896,0.8,-4.617015,-2.541219,2.368772E-15,-4.176295,3.227241,2.368772E-15,0.25,3.400446,0.8,0.15,3.961631,0.8,1.287971,3.776855,2.368772E-15,1.364507,1.858936,0.8,-1.858936,0.7832336,2.368772E-15,-2.536857,0.9049859,0.8,-2.695527,1.717514,2.368772E-15,-1.717514,1.717514,2.368772E-15,-1.717514,1.858936,0.8,-1.858936,2.695527,0.8,-0.9049859,2.536857,2.368772E-15,-0.7832336,2.536857,2.368772E-15,-0.7832336,2.695527,0.8,-0.9049859,3.400446,0.8,0.15,3.227241,2.368772E-15,0.25,-1.287971,0.8,-3.961631,-2.541219,2.368772E-15,-4.176295,-2.489455,0.8,-4.36948,-1.364507,2.368772E-15,-3.776855,-0.15,0.8,-3.400446,-1.364507,2.368772E-15,-3.776855,-1.287971,0.8,-3.961631,-0.25,2.368772E-15,-3.227241,-5,2.368772E-15,-5,-5,0.8,-5,-5,2.368772E-15,-4.5,-5,0.8,-4.7,5,0.8,5,4.7,0.8,5,4.914449,0.8,3.694738,4.659258,0.8,2.411809,4.617015,0.8,3.733896,4.238795,0.8,1.173166,4.36948,0.8,2.489455,3.961631,0.8,1.287971,3.660254,0.8,-1.090086E-12,3.400446,0.8,0.15,2.933533,0.8,-1.087614,2.695527,0.8,-0.9049859,2.071068,0.8,-2.071068,1.858936,0.8,-1.858936,1.087614,0.8,-2.933533,0.9049859,0.8,-2.695527,3.683553E-12,0.8,-3.660254,-0.15,0.8,-3.400446,-1.173166,0.8,-4.238795,-1.287971,0.8,-3.961631,-2.411809,0.8,-4.659258,-2.489455,0.8,-4.36948,-3.694738,0.8,-4.914449,-3.733896,0.8,-4.617015,-5,0.8,-5,-5,0.8,-4.7,5,2.368772E-15,5,4.5,2.368772E-15,5,5,0.8,5,4.7,0.8,5,-4.5,2.368772E-15,5,-4.517037,2.368772E-15,4.87059,-5,2.368772E-15,5,-4.566987,2.368772E-15,4.75,-4.646446,2.368772E-15,4.646446,-4.75,2.368772E-15,4.566987,-4.87059,2.368772E-15,4.517037,-5,2.368772E-15,4.5,-4.7,0.8,5,-5,0.8,5,-4.710222,0.8,4.922354,-4.740192,0.8,4.85,-4.787868,0.8,4.787868,-4.85,0.8,4.740192,-4.922354,0.8,4.710222,-5,0.8,4.7,-4.87059,2.368772E-15,4.517037,-4.75,2.368772E-15,4.566987,-4.922354,0.8,4.710222,-4.85,0.8,4.740192,-4.710222,0.8,4.922354,-4.517037,2.368772E-15,4.87059,-4.7,0.8,5,-4.5,2.368772E-15,5,-4.740192,0.8,4.85,-4.566987,2.368772E-15,4.75,-4.710222,0.8,4.922354,-4.517037,2.368772E-15,4.87059,-4.787868,0.8,4.787868,-4.646446,2.368772E-15,4.646446,-4.740192,0.8,4.85,-4.566987,2.368772E-15,4.75,-4.75,2.368772E-15,4.566987,-4.646446,2.368772E-15,4.646446,-4.85,0.8,4.740192,-4.787868,0.8,4.787868,-5,2.368772E-15,4.5,-4.87059,2.368772E-15,4.517037,-5,0.8,4.7,-4.922354,0.8,4.710222,-5,2.368772E-15,4.5,-5,0.8,4.7,-5,2.368772E-15,5,-5,0.8,5,-4.5,2.368772E-15,5,-5,2.368772E-15,5,-4.7,0.8,5,-5,0.8,5 + } + PolygonVertexIndex: *384 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,5,-5,7,5,-7,8,7,-7,9,7,-9,10,7,-10,11,10,-10,12,10,-12,13,12,-12,14,12,-14,15,14,-14,16,14,-16,17,16,-16,18,16,-18,19,18,-18,20,18,-20,21,20,-20,22,20,-22,23,22,-22,24,22,-24,25,24,-24,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,74,77,-77,78,80,-80,81,80,-79,82,84,-84,82,85,-85,86,88,-88,89,86,-88,90,92,-92,93,90,-92,94,96,-96,97,94,-96,98,100,-100,98,101,-101,102,104,-104,105,102,-104,106,108,-108,106,109,-109,110,112,-112,110,113,-113,114,116,-116,117,114,-116,118,120,-120,121,118,-120,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,127,-130,131,130,-130,132,130,-132,133,132,-132,134,133,-132,135,133,-135,136,135,-135,137,135,-137,138,137,-137,139,137,-139,140,139,-139,141,139,-141,142,141,-141,143,141,-143,144,143,-143,145,143,-145,146,145,-145,147,145,-147,148,147,-147,149,147,-149,150,149,-149,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,159,-159,161,160,-159,162,161,-159,163,162,-159,164,166,-166,167,165,-167,168,165,-168,169,165,-169,170,165,-170,171,165,-171,172,174,-174,174,175,-174,176,178,-178,178,179,-178,180,182,-182,181,182,-184,184,186,-186,185,186,-188,188,190,-190,190,191,-190,192,194,-194,194,195,-194,196,198,-198,199,197,-199,200,202,-202,203,201,-203 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1152 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,-0.8962947,0.2425356,0.3712575,-0.9370857,0.2425356,0.2510914,-0.8962947,0.2425356,0.3712575,-0.8962947,0.2425356,0.3712575,-0.9370857,0.2425356,0.2510914,-0.9370857,0.2425356,0.2510914,-0.9618428,0.2425356,0.126629,-0.9681872,0.2420468,0.06345834,-0.9618428,0.2425356,0.126629,-0.9681872,0.2420468,0.06345834,-0.9681872,0.2420468,0.06345834,-0.9618428,0.2425356,0.126629,-0.9370857,0.2425356,0.2510914,-0.9618428,0.2425356,0.126629,-0.9370857,0.2425356,0.2510914,-0.9370857,0.2425356,0.2510914,-0.9618428,0.2425356,0.126629,-0.9618428,0.2425356,0.126629,-0.126629,0.2425356,0.9618428,-0.06345834,0.2420468,0.9681872,-0.06345834,0.2420468,0.9681872,-0.126629,0.2425356,0.9618428,-0.126629,0.2425356,0.9618428,-0.06345834,0.2420468,0.9681872,-0.5905854,0.2425357,0.7696658,-0.4850713,0.2425356,0.8401681,-0.4850713,0.2425356,0.8401681,-0.5905854,0.2425357,0.7696658,-0.5905854,0.2425357,0.7696658,-0.4850713,0.2425356,0.8401681,-0.2510914,0.2425356,0.9370857,-0.126629,0.2425356,0.9618428,-0.126629,0.2425356,0.9618428,-0.2510914,0.2425356,0.9370857,-0.2510914,0.2425356,0.9370857,-0.126629,0.2425356,0.9618428,-0.8401681,0.2425356,0.4850713,-0.8962947,0.2425356,0.3712575,-0.8401681,0.2425356,0.4850713,-0.8401681,0.2425356,0.4850713,-0.8962947,0.2425356,0.3712575,-0.8962947,0.2425356,0.3712575,-0.6859944,0.2425356,0.6859944,-0.5905854,0.2425357,0.7696658,-0.5905854,0.2425357,0.7696658,-0.6859944,0.2425356,0.6859944,-0.6859944,0.2425356,0.6859944,-0.5905854,0.2425357,0.7696658,-0.6859944,0.2425356,0.6859944,-0.7696658,0.2425357,0.5905854,-0.6859944,0.2425356,0.6859944,-0.6859944,0.2425356,0.6859944,-0.7696658,0.2425357,0.5905854,-0.7696658,0.2425357,0.5905854,-0.7696658,0.2425357,0.5905854,-0.8401681,0.2425356,0.4850713,-0.7696658,0.2425357,0.5905854,-0.7696658,0.2425357,0.5905854,-0.8401681,0.2425356,0.4850713,-0.8401681,0.2425356,0.4850713,-0.3712575,0.2425356,0.8962947,-0.2510914,0.2425356,0.9370857,-0.2510914,0.2425356,0.9370857,-0.3712575,0.2425356,0.8962947,-0.3712575,0.2425356,0.8962947,-0.2510914,0.2425356,0.9370857,-0.4850713,0.2425356,0.8401681,-0.3712575,0.2425356,0.8962947,-0.3712575,0.2425356,0.8962947,-0.4850713,0.2425356,0.8401681,-0.4850713,0.2425356,0.8401681,-0.3712575,0.2425356,0.8962947,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.9370857,0.2425356,-0.2510914,0.9623252,0.2405813,-0.1266925,0.9370857,0.2425356,-0.2510914,0.9623252,0.2405813,-0.1266925,0.9623252,0.2405813,-0.1266925,0.9370857,0.2425356,-0.2510914,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.6859944,0.2425356,-0.6859944,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.6859944,0.2425356,-0.6859944,0.1266925,0.2405813,-0.9623252,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *408 { + a: 19.68504,19.68504,19.34822,14.54621,17.71654,19.68504,18.34354,9.495314,17.39656,14.80315,16.68817,4.618762,16.44211,10.0048,14.41045,-4.291678E-12,14.86951,5.372077,12.70567,0.984252,11.54934,-4.281946,9.987625,-3.083597,8.153811,-8.153811,6.761868,-6.761868,4.281946,-11.54934,3.083597,-9.987625,1.450218E-11,-14.41045,-0.984252,-12.70567,-4.618762,-16.68817,-5.372077,-14.86951,-9.495314,-18.34354,-10.0048,-16.44211,-14.54621,-19.34822,-14.80315,-17.39656,-19.68504,-19.68504,-19.68504,-17.71654,-15.7805,3.149606,-15.7805,6.829304E-15,-20.93036,3.149606,-20.93036,1.615518E-14,-12.89151,3.149606,-12.89151,6.489855E-15,-18.04136,3.149606,-18.04136,6.489855E-15,-9.737882,3.149606,-9.737882,6.089737E-15,-14.88773,3.149606,-14.88773,6.089737E-15,-6.373579,3.149606,-6.373579,6.146808E-15,-11.52343,3.149606,-11.52343,5.702719E-15,-2.856164,3.149606,-2.856164,6.275264E-15,-8.006017,3.149606,-8.006017,5.831175E-15,0.7541785,3.149606,0.7541785,6.957476E-15,-4.395674,3.149606,-4.395674,6.069297E-15,-0.7541785,6.87656E-15,-0.7541785,3.149606,4.395674,7.764738E-15,4.395674,3.149606,2.856164,7.800288E-15,2.856164,3.149606,8.006017,8.688467E-15,8.006017,3.149606,6.373579,8.808753E-15,6.373579,3.149606,11.52343,1.014102E-14,11.52343,3.149606,9.737882,1.029383E-14,9.737882,3.149606,14.88773,1.16261E-14,14.88773,3.149606,12.89151,1.174306E-14,12.89151,3.149606,18.04136,1.351942E-14,18.04136,3.149606,15.7805,1.352164E-14,15.7805,3.149606,20.93036,1.485391E-14,20.93036,3.149606,9.866629,2.990147,9.81513,6.236278,14.81049,6.236278,14.75899,2.990147,15.90925,3.967423,15.85775,7.213554,20.85311,7.213554,20.80161,3.967423,13.02026,3.430853,12.96876,6.676984,17.96412,6.676984,17.91262,3.430853,-15.85775,7.213554,-20.80161,3.967423,-20.85311,7.213554,-15.90925,3.967423,-2.933412,5.67085,-7.87727,2.424719,-7.928769,5.67085,-2.98491,2.424719,-12.96876,6.676984,-17.91262,3.430853,-17.96412,6.676984,-13.02026,3.430853,6.502325,2.652845,6.450826,5.898976,11.44618,5.898976,11.39468,2.652845,0.6769307,5.555802,-4.266928,2.309671,-4.318427,5.555802,0.6254321,2.309671,-0.6254321,2.309671,-0.6769307,5.555802,4.318427,5.555802,4.266928,2.309671,2.98491,2.424719,2.933412,5.67085,7.928769,5.67085,7.87727,2.424719,-9.81513,6.236278,-14.75899,2.990147,-14.81049,6.236278,-9.866629,2.990147,-6.450826,5.898976,-11.39468,2.652845,-11.44618,5.898976,-6.502325,2.652845,-19.68504,3.88384E-11,-19.68504,3.149606,-17.71654,3.88384E-11,-18.50394,3.149606,-19.68504,19.68504,-18.50394,19.68504,-19.34822,14.54621,-18.34354,9.495314,-18.17723,14.70038,-16.68817,4.618762,-17.20268,9.801005,-15.59697,5.070751,-14.41045,-4.291242E-12,-13.38758,0.5905512,-11.54934,-4.281946,-10.61231,-3.562937,-8.153811,-8.153811,-7.318645,-7.318645,-4.281946,-11.54934,-3.562937,-10.61231,-1.450151E-11,-14.41045,0.5905512,-13.38758,4.618762,-16.68817,5.070751,-15.59697,9.495314,-18.34354,9.801005,-17.20268,14.54621,-19.34822,14.70038,-18.17723,19.68504,-19.68504,19.68504,-18.50394,19.68504,7.202082E-14,17.71654,7.202082E-14,19.68504,3.149606,18.50394,3.149606,-17.71654,19.68504,-17.78361,19.17555,-19.68504,19.68504,-17.98026,18.70079,-18.2931,18.2931,-18.70079,17.98026,-19.17555,17.78361,-19.68504,17.71654,18.50394,19.68504,19.68504,19.68504,18.54418,19.37935,18.66217,19.09449,18.84987,18.84987,19.09449,18.66217,19.37935,18.54418,19.68504,18.50394,10.91041,5.718155,10.39653,5.718155,10.80763,8.963068,10.4993,8.963068,-16.79305,8.088868,-16.69028,4.843955,-17.10138,8.088868,-17.20416,4.843955,-10.4993,8.963068,-10.39653,5.718155,-10.80763,8.963068,-10.91041,5.718155,-3.479534,9.415587,-3.376758,6.170674,-3.787864,9.415587,-3.89064,6.170674,3.89064,6.170674,3.376758,6.170674,3.787864,9.415587,3.479534,9.415587,17.20416,4.843955,16.69028,4.843955,17.10138,8.088868,16.79305,8.088868,17.71654,-3.459455E-13,18.50394,3.149606,19.68504,-3.459455E-13,19.68504,3.149606,-17.71654,1.869616E-13,-19.68504,1.869616E-13,-18.50394,3.149606,-19.68504,3.149606 + } + UVIndex: *384 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,5,4,7,5,6,8,7,6,9,7,8,10,7,9,11,10,9,12,10,11,13,12,11,14,12,13,15,14,13,16,14,15,17,16,15,18,16,17,19,18,17,20,18,19,21,20,19,22,20,21,23,22,21,24,22,23,25,24,23,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,74,77,76,78,80,79,81,80,78,82,84,83,82,85,84,86,88,87,89,86,87,90,92,91,93,90,91,94,96,95,97,94,95,98,100,99,98,101,100,102,104,103,105,102,103,106,108,107,106,109,108,110,112,111,110,113,112,114,116,115,117,114,115,118,120,119,121,118,119,122,124,123,125,123,124,126,128,127,129,127,128,130,127,129,131,130,129,132,130,131,133,132,131,134,133,131,135,133,134,136,135,134,137,135,136,138,137,136,139,137,138,140,139,138,141,139,140,142,141,140,143,141,142,144,143,142,145,143,144,146,145,144,147,145,146,148,147,146,149,147,148,150,149,148,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,159,158,161,160,158,162,161,158,163,162,158,164,166,165,167,165,166,168,165,167,169,165,168,170,165,169,171,165,170,172,174,173,174,175,173,176,178,177,178,179,177,180,182,181,181,182,183,184,186,185,185,186,187,188,190,189,190,191,189,192,194,193,194,195,193,196,198,197,199,197,198,200,202,201,203,201,202 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *128 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_bendBarrier, Model::RootNode + C: "OO",5382775578957776793,0 + + ;Geometry::, Model::Mesh road_bendBarrier + C: "OO",5692034425221344690,5382775578957776793 + + ;Material::pavement, Model::Mesh road_bendBarrier + C: "OO",17046,5382775578957776793 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendBarrier.fbx.import new file mode 100644 index 0000000..3f9685a --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://btx4ocgkoye3f" +path="res://.godot/imported/road_bendBarrier.fbx-c159822451c3889b73a8b1485f71b618.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_bendBarrier.fbx" +dest_files=["res://.godot/imported/road_bendBarrier.fbx-c159822451c3889b73a8b1485f71b618.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSidewalk.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSidewalk.fbx new file mode 100644 index 0000000..8e93fc7 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSidewalk.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 17 + Millisecond: 212 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_bendSidewalk.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_bendSidewalk.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5539391777446933459, "Model::road_bendSidewalk", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5233138462328083257, "Geometry::", "Mesh" { + Vertices: *720 { + a: 5,0.2,-5,5,0,-5,5,0.2,5,5,0,5,-4.206647,0.2,4.391239,-4.206647,0.09999999,4.391239,-4.133974,0.2,4.5,-4.133974,0.09999999,4.5,-4.292893,0.2,4.292893,-4.292893,0.09999999,4.292893,-4.206647,0.2,4.391239,-4.206647,0.09999999,4.391239,-4.391239,0.09999999,4.206647,-4.292893,0.09999999,4.292893,-4.391239,0.2,4.206647,-4.292893,0.2,4.292893,-4.617316,0.09999999,4.07612,-4.5,0.09999999,4.133974,-4.617316,0.2,4.07612,-4.5,0.2,4.133974,-4.741181,0.09999999,4.034074,-4.617316,0.09999999,4.07612,-4.741181,0.2,4.034074,-4.617316,0.2,4.07612,-5,0.09999999,4,-4.869473,0.09999999,4.008555,-5,0.2,4,-4.869473,0.2,4.008555,-3.825264,0.09999999,-3.923004,-3.825264,0.2,-3.923004,-2.670629,0.09999999,-3.693332,-2.670629,0.2,-3.693332,-2.670629,0.09999999,-3.693332,-2.670629,0.2,-3.693332,-1.555849,0.09999999,-3.314916,-1.555849,0.2,-3.314916,5,0.2,5,3.314916,0.2,1.555849,5,0.2,-5,2.794229,0.2,0.5,2.14018,0.2,-0.4788528,1.363961,0.2,-1.363961,0.4788528,0.2,-2.14018,-0.5,0.2,-2.794229,-1.555849,0.2,-3.314916,-5,0.2,-5,3.693332,0.2,2.670629,3.923004,0.2,3.825264,4,0.2,5,-2.670629,0.2,-3.693332,-3.825264,0.2,-3.923004,-5,0.2,-4,-4.5,0.09999999,4.133974,-4.391239,0.09999999,4.206647,-4.5,0.2,4.133974,-4.391239,0.2,4.206647,-4.869473,0.09999999,4.008555,-4.741181,0.09999999,4.034074,-4.869473,0.2,4.008555,-4.741181,0.2,4.034074,2.794229,0.09999999,0.5,2.794229,0.2,0.5,3.314916,0.09999999,1.555849,3.314916,0.2,1.555849,5,0,-5,-5,0,-5,5,0,5,-5,0,5,-0.5,0.09999999,-2.794229,-0.5,0.2,-2.794229,0.4788528,0.09999999,-2.14018,0.4788528,0.2,-2.14018,-5,0.09999999,-4,-5,0.2,-4,-3.825264,0.09999999,-3.923004,-3.825264,0.2,-3.923004,0.4788528,0.09999999,-2.14018,0.4788528,0.2,-2.14018,1.363961,0.09999999,-1.363961,1.363961,0.2,-1.363961,2.14018,0.09999999,-0.4788528,2.14018,0.2,-0.4788528,2.794229,0.09999999,0.5,2.794229,0.2,0.5,3.693332,0.09999999,2.670629,3.693332,0.2,2.670629,3.923004,0.09999999,3.825264,3.923004,0.2,3.825264,3.923004,0.09999999,3.825264,3.923004,0.2,3.825264,4,0.09999999,5,4,0.2,5,-4,0.2,5,-5,0.2,5,-4.008555,0.2,4.869473,-4.034074,0.2,4.741181,-4.07612,0.2,4.617316,-4.133974,0.2,4.5,-4.206647,0.2,4.391239,-4.292893,0.2,4.292893,-4.391239,0.2,4.206647,-4.5,0.2,4.133974,-4.617316,0.2,4.07612,-4.741181,0.2,4.034074,-4.869473,0.2,4.008555,-5,0.2,4,-4.034074,0.2,4.741181,-4.034074,0.09999999,4.741181,-4.008555,0.2,4.869473,-4.008555,0.09999999,4.869473,-4.07612,0.2,4.617316,-4.07612,0.09999999,4.617316,-4.034074,0.2,4.741181,-4.034074,0.09999999,4.741181,-1.555849,0.09999999,-3.314916,-1.555849,0.2,-3.314916,-0.5,0.09999999,-2.794229,-0.5,0.2,-2.794229,-4.133974,0.2,4.5,-4.133974,0.09999999,4.5,-4.07612,0.2,4.617316,-4.07612,0.09999999,4.617316,3.314916,0.09999999,1.555849,3.314916,0.2,1.555849,3.693332,0.09999999,2.670629,3.693332,0.2,2.670629,-4.008555,0.2,4.869473,-4.008555,0.09999999,4.869473,-4,0.2,5,-4,0.09999999,5,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,1.363961,0.09999999,-1.363961,1.363961,0.2,-1.363961,2.14018,0.09999999,-0.4788528,2.14018,0.2,-0.4788528,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,-5,0,5,4,0.09999999,5,5,0,5,5,0.2,5,3,0.09999999,5,4,0.2,5,-4,0.09999999,5,0.09999999,0.09999999,5,-3,0.09999999,5,-0.09999999,0.09999999,5,-5,0.2,5,-4,0.2,5,-0.09999999,0.09999999,5,-3,0.09999999,5,-0.1419202,0.09999999,4.360422,-0.2669635,0.09999999,3.731787,-0.4729903,0.09999999,3.124851,-0.7564754,0.09999999,2.55,-1.112569,0.09999999,2.017069,-1.535177,0.09999999,1.535177,-2.017069,0.09999999,1.112569,-2.55,0.09999999,0.7564754,-3.124851,0.09999999,0.4729903,-3.01711,0.09999999,4.738948,-3.068148,0.09999999,4.482362,-3.152241,0.09999999,4.234633,-3.731787,0.09999999,0.2669635,-3.267949,0.09999999,4,-3.413293,0.09999999,3.782477,-3.585787,0.09999999,3.585787,-3.782477,0.09999999,3.413293,-4.360422,0.09999999,0.1419202,-4,0.09999999,3.267949,-4.234633,0.09999999,3.152241,-4.482362,0.09999999,3.068148,-5,0.09999999,0.09999999,-4.738948,0.09999999,3.01711,-5,0.09999999,3,3,0.09999999,5,0.09999999,0.09999999,5,2.931559,0.09999999,3.955791,2.727407,0.09999999,2.929448,2.391036,0.09999999,1.938533,1.928203,0.09999999,1,1.346827,0.09999999,0.1299086,0.6568542,0.09999999,-0.6568542,-0.1299086,0.09999999,-1.346827,0.05636879,0.09999999,4.334316,-0.07377829,0.09999999,3.680023,-0.2882144,0.09999999,3.048315,-1,0.09999999,-1.928203,-0.5832704,0.09999999,2.45,-0.953898,0.09999999,1.895317,-1.393755,0.09999999,1.393755,-1.938533,0.09999999,-2.391036,-1.895317,0.09999999,0.953898,-2.45,0.09999999,0.5832704,-2.929448,0.09999999,-2.727407,-3.048315,0.09999999,0.2882144,-3.955791,0.09999999,-2.931559,-3.680023,0.09999999,0.07377829,-4.334316,0.09999999,-0.05636879,-5,0.09999999,-3,-5,0.09999999,-0.09999999,4,0.09999999,5,3.923004,0.09999999,3.825264,3.693332,0.09999999,2.670629,3.314916,0.09999999,1.555849,2.794229,0.09999999,0.5,2.14018,0.09999999,-0.4788528,1.363961,0.09999999,-1.363961,0.4788528,0.09999999,-2.14018,-0.5,0.09999999,-2.794229,-1.555849,0.09999999,-3.314916,-2.670629,0.09999999,-3.693332,-3.825264,0.09999999,-3.923004,-5,0.09999999,-4,-4,0.09999999,5,-4.008555,0.09999999,4.869473,-4.034074,0.09999999,4.741181,-4.07612,0.09999999,4.617316,-4.133974,0.09999999,4.5,-4.206647,0.09999999,4.391239,-4.292893,0.09999999,4.292893,-4.391239,0.09999999,4.206647,-4.5,0.09999999,4.133974,-4.617316,0.09999999,4.07612,-4.741181,0.09999999,4.034074,-4.869473,0.09999999,4.008555,-5,0.09999999,4 + } + PolygonVertexIndex: *660 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,40,-39,42,41,-39,43,42,-39,44,43,-39,45,44,-39,46,36,-38,47,36,-47,48,36,-48,49,44,-46,50,49,-46,51,50,-46,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,93,-97,98,93,-98,99,93,-99,100,93,-100,101,93,-101,102,93,-102,103,93,-103,104,93,-104,105,93,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,139,-142,143,142,-142,144,143,-142,145,144,-142,146,145,-142,147,146,-142,148,147,-142,139,149,-139,150,152,-152,153,151,-153,154,150,-152,155,151,-154,154,156,-151,154,157,-157,158,156,-158,159,158,-158,160,150,-157,161,160,-157,162,164,-164,165,163,-165,166,163,-166,167,163,-167,168,163,-168,169,163,-169,170,163,-170,171,163,-171,172,163,-172,173,163,-173,174,173,-173,175,174,-173,176,175,-173,177,175,-177,178,177,-177,179,178,-177,180,179,-177,181,180,-177,182,180,-182,183,182,-182,184,183,-182,185,184,-182,186,184,-186,187,186,-186,188,190,-190,191,189,-191,192,189,-192,193,189,-193,194,189,-194,195,189,-195,196,189,-196,197,189,-197,198,197,-197,199,198,-197,200,199,-197,201,199,-201,202,201,-201,203,202,-201,204,203,-201,205,203,-205,206,205,-205,207,206,-205,208,206,-208,209,208,-208,210,208,-210,211,210,-210,212,211,-210,213,211,-213,214,215,-189,216,188,-216,217,188,-217,218,188,-218,190,188,-219,191,190,-219,219,191,-219,192,191,-220,193,192,-220,220,193,-220,194,193,-221,221,194,-221,195,194,-222,196,195,-222,222,196,-222,200,196,-223,223,200,-223,204,200,-224,224,204,-224,207,204,-225,225,207,-225,209,207,-226,226,209,-226,212,209,-227,163,173,-228,174,227,-174,175,227,-175,177,227,-176,178,227,-178,179,227,-179,180,227,-180,182,227,-181,228,227,-183,183,228,-183,229,228,-184,230,229,-184,231,230,-184,232,231,-184,233,232,-184,184,233,-184,234,233,-185,235,234,-185,186,235,-185,236,235,-187,237,236,-187,187,237,-187,238,237,-188,239,238,-188,189,197,-163,198,162,-198,164,162,-199,199,164,-199,165,164,-200,166,165,-200,201,166,-200,167,166,-202,202,167,-202,168,167,-203,203,168,-203,169,168,-204,205,169,-204,170,169,-206,206,170,-206,171,170,-207,208,171,-207,172,171,-209,210,172,-209,176,172,-211,211,176,-211,181,176,-212,213,181,-212,185,181,-214 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1980 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.06540313,0,-0.9978589,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *480 { + a: 19.68504,0.7874016,19.68504,0,-19.68504,0.7874016,-19.68504,0,-5.173597,0.7874016,-5.173597,0.3937008,-5.688583,0.7874016,-5.688583,0.3937008,-1.563255,0.7874016,-1.563255,0.3937008,-2.078241,0.7874016,-2.078241,0.3937008,2.078241,0.3937008,1.563255,0.3937008,2.078241,0.7874016,1.563255,0.7874016,9.205997,0.3937008,8.691012,0.3937008,9.205997,0.7874016,8.691012,0.7874016,12.5703,0.3937008,12.05532,0.3937008,12.5703,0.7874016,12.05532,0.7874016,18.61292,0.3937008,18.09794,0.3937008,18.61292,0.7874016,18.09794,0.7874016,-17.78387,0.3937008,-17.78387,0.7874016,-13.149,0.3937008,-13.149,0.7874016,-14.63024,0.3937008,-14.63024,0.7874016,-9.995375,0.3937008,-9.995375,0.7874016,-19.68504,19.68504,-13.05085,6.12539,-19.68504,-19.68504,-11.0009,1.968504,-8.425906,-1.885247,-5.369925,-5.369925,-1.885247,-8.425906,1.968504,-11.0009,6.12539,-13.05085,19.68504,-19.68504,-14.54068,10.51429,-15.4449,15.0601,-15.74803,19.68504,10.51429,-14.54068,15.0601,-15.4449,19.68504,-15.74803,5.688583,0.3937008,5.173597,0.3937008,5.688583,0.7874016,5.173597,0.7874016,15.72393,0.3937008,15.20894,0.3937008,15.72393,0.7874016,15.20894,0.7874016,6.631071,0.3937008,6.631071,0.7874016,11.26594,0.3937008,11.26594,0.7874016,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,-7.748524,0.3937008,-7.748524,0.7874016,-3.113657,0.3937008,-3.113657,0.7874016,-20.67286,0.3937008,-20.67286,0.7874016,-16.03799,0.3937008,-16.03799,0.7874016,-4.138182,0.3937008,-4.138182,0.7874016,0.4966858,0.3937008,0.4966858,0.7874016,3.113657,0.3937008,3.113657,0.7874016,7.748524,0.3937008,7.748524,0.7874016,13.149,0.3937008,13.149,0.7874016,17.78387,0.3937008,17.78387,0.7874016,16.03799,0.3937008,16.03799,0.7874016,20.67286,0.3937008,20.67286,0.7874016,15.74803,19.68504,19.68504,19.68504,15.78171,19.17116,15.88218,18.66607,16.04772,18.17841,16.27549,17.71654,16.5616,17.28834,16.90115,16.90115,17.28834,16.5616,17.71654,16.27549,18.17841,16.04772,18.66607,15.88218,19.17116,15.78171,19.68504,15.74803,-15.20894,0.7874016,-15.20894,0.3937008,-15.72393,0.7874016,-15.72393,0.3937008,-12.05532,0.7874016,-12.05532,0.3937008,-12.5703,0.7874016,-12.5703,0.3937008,-11.26594,0.3937008,-11.26594,0.7874016,-6.631071,0.3937008,-6.631071,0.7874016,-8.691012,0.7874016,-8.691012,0.3937008,-9.205997,0.7874016,-9.205997,0.3937008,9.995375,0.3937008,9.995375,0.7874016,14.63024,0.3937008,14.63024,0.7874016,-18.09794,0.7874016,-18.09794,0.3937008,-18.61292,0.7874016,-18.61292,0.3937008,19.68504,4.518987E-16,-19.68504,4.518987E-16,19.68504,0.7874016,-19.68504,0.7874016,-0.4966858,0.3937008,-0.4966858,0.7874016,4.138182,0.3937008,4.138182,0.7874016,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,2.331118E-13,19.68504,2.331118E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-19.68504,-2.974417E-12,15.74803,0.3937008,19.68504,-2.974417E-12,19.68504,0.7874016,11.81102,0.3937008,15.74803,0.7874016,-15.74803,0.3937008,0.3937008,0.3937008,-11.81102,0.3937008,-0.3937008,0.3937008,-19.68504,0.7874016,-15.74803,0.7874016,0.3937008,19.68504,11.81102,19.68504,0.5587409,17.16702,1.051037,14.69207,1.862167,12.30256,2.97825,10.03937,4.380191,7.941216,6.044003,6.044003,7.941216,4.380191,10.03937,2.97825,12.30256,1.862167,11.87839,18.65727,12.07932,17.64709,12.4104,16.67178,14.69207,1.051037,12.86594,15.74803,13.43816,14.89164,14.11727,14.11727,14.89164,13.43816,17.16702,0.5587409,15.74803,12.86594,16.67178,12.4104,17.64709,12.07932,19.68504,0.3937008,18.65727,11.87839,19.68504,11.81102,-11.81102,19.68504,-0.3937008,19.68504,-11.54157,15.57398,-10.73782,11.53326,-9.413528,7.632018,-7.591352,3.937008,-5.302467,0.5114511,-2.58604,-2.58604,0.5114511,-5.302467,-0.2219244,17.06424,0.2904657,14.48828,1.134702,12.00124,3.937008,-7.591352,2.29634,9.645669,3.755504,7.461877,5.487226,5.487226,7.632018,-9.413528,7.461877,3.755504,9.645669,2.29634,11.53326,-10.73782,12.00124,1.134702,15.57398,-11.54157,14.48828,0.2904657,17.06424,-0.2219244,19.68504,-11.81102,19.68504,-0.3937008,-15.74803,19.68504,-15.4449,15.0601,-14.54068,10.51429,-13.05085,6.12539,-11.0009,1.968504,-8.425906,-1.885247,-5.369925,-5.369925,-1.885247,-8.425906,1.968504,-11.0009,6.12539,-13.05085,10.51429,-14.54068,15.0601,-15.4449,19.68504,-15.74803,15.74803,19.68504,15.78171,19.17116,15.88218,18.66607,16.04772,18.17841,16.27549,17.71654,16.5616,17.28834,16.90115,16.90115,17.28834,16.5616,17.71654,16.27549,18.17841,16.04772,18.66607,15.88218,19.17116,15.78171,19.68504,15.74803 + } + UVIndex: *660 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,40,38,42,41,38,43,42,38,44,43,38,45,44,38,46,36,37,47,36,46,48,36,47,49,44,45,50,49,45,51,50,45,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,93,96,98,93,97,99,93,98,100,93,99,101,93,100,102,93,101,103,93,102,104,93,103,105,93,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,139,141,143,142,141,144,143,141,145,144,141,146,145,141,147,146,141,148,147,141,139,149,138,150,152,151,153,151,152,154,150,151,155,151,153,154,156,150,154,157,156,158,156,157,159,158,157,160,150,156,161,160,156,162,164,163,165,163,164,166,163,165,167,163,166,168,163,167,169,163,168,170,163,169,171,163,170,172,163,171,173,163,172,174,173,172,175,174,172,176,175,172,177,175,176,178,177,176,179,178,176,180,179,176,181,180,176,182,180,181,183,182,181,184,183,181,185,184,181,186,184,185,187,186,185,188,190,189,191,189,190,192,189,191,193,189,192,194,189,193,195,189,194,196,189,195,197,189,196,198,197,196,199,198,196,200,199,196,201,199,200,202,201,200,203,202,200,204,203,200,205,203,204,206,205,204,207,206,204,208,206,207,209,208,207,210,208,209,211,210,209,212,211,209,213,211,212,214,215,188,216,188,215,217,188,216,218,188,217,190,188,218,191,190,218,219,191,218,192,191,219,193,192,219,220,193,219,194,193,220,221,194,220,195,194,221,196,195,221,222,196,221,200,196,222,223,200,222,204,200,223,224,204,223,207,204,224,225,207,224,209,207,225,226,209,225,212,209,226,163,173,227,174,227,173,175,227,174,177,227,175,178,227,177,179,227,178,180,227,179,182,227,180,228,227,182,183,228,182,229,228,183,230,229,183,231,230,183,232,231,183,233,232,183,184,233,183,234,233,184,235,234,184,186,235,184,236,235,186,237,236,186,187,237,186,238,237,187,239,238,187,189,197,162,198,162,197,164,162,198,199,164,198,165,164,199,166,165,199,201,166,199,167,166,201,202,167,201,168,167,202,203,168,202,169,168,203,205,169,203,170,169,205,206,170,205,171,170,206,208,171,206,172,171,208,210,172,208,176,172,210,211,176,210,181,176,211,213,181,211,185,181,213 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *220 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_bendSidewalk, Model::RootNode + C: "OO",5539391777446933459,0 + + ;Geometry::, Model::Mesh road_bendSidewalk + C: "OO",5233138462328083257,5539391777446933459 + + ;Material::pavement, Model::Mesh road_bendSidewalk + C: "OO",17046,5539391777446933459 + + ;Material::asphalt, Model::Mesh road_bendSidewalk + C: "OO",9934,5539391777446933459 + + ;Material::asphaltEdge, Model::Mesh road_bendSidewalk + C: "OO",17042,5539391777446933459 + + ;Material::line, Model::Mesh road_bendSidewalk + C: "OO",9174,5539391777446933459 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSidewalk.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSidewalk.fbx.import new file mode 100644 index 0000000..018334f --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSidewalk.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dvegkd0rfx3ps" +path="res://.godot/imported/road_bendSidewalk.fbx-6e5c57f654ade62d77cc2a4fc3f5bca5.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSidewalk.fbx" +dest_files=["res://.godot/imported/road_bendSidewalk.fbx-6e5c57f654ade62d77cc2a4fc3f5bca5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquare.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquare.fbx new file mode 100644 index 0000000..9429ba8 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquare.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 17 + Millisecond: 336 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_bendSquare.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_bendSquare.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5102788823977667264, "Model::road_bendSquare", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5263060976734000262, "Geometry::", "Mesh" { + Vertices: *240 { + a: 5,0,5,5,0,-5,-5,0,5,-5,0,-5,5,0.2,-5,5,0,-5,5,0.2,5,5,0,5,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,-4,0.2,4,-4,0.2,5,-5,0.2,4,-5,0.2,5,-4,0.2,4,-4,0.09999999,4,-4,0.2,5,-4,0.09999999,5,-5,0.09999999,4,-4,0.09999999,4,-5,0.2,4,-4,0.2,4,5,0.2,5,4,0.2,-4,5,0.2,-5,-5,0.2,-5,-5,0.2,-4,4,0.2,5,4,0.09999999,-4,-5,0.09999999,-4,4,0.2,-4,-5,0.2,-4,4,0.09999999,-4,4,0.2,-4,4,0.09999999,5,4,0.2,5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,-5,0,5,4,0.09999999,5,5,0,5,5,0.2,5,4,0.2,5,-4,0.09999999,5,-5,0.2,5,3,0.09999999,5,0.09999999,0.09999999,5,-0.09999999,0.09999999,5,-3,0.09999999,5,-4,0.2,5,-0.09999999,0.09999999,0.09999999,-0.09999999,0.09999999,5,-5,0.09999999,0.09999999,-3,0.09999999,3,-5,0.09999999,3,-3,0.09999999,5,3,0.09999999,5,0.09999999,0.09999999,-0.09999999,3,0.09999999,-3,-5,0.09999999,-3,-5,0.09999999,-0.09999999,0.09999999,0.09999999,5,-4,0.09999999,4,-5,0.09999999,4,-4,0.09999999,5,4,0.09999999,5,4,0.09999999,-4,-5,0.09999999,-4 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,25,-28,25,29,-25,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,39,-42,43,42,-42,44,43,-42,45,44,-42,46,45,-42,47,46,-42,48,47,-42,39,49,-39,50,52,-52,53,51,-53,54,51,-54,51,55,-51,56,50,-56,57,55,-52,58,55,-58,59,55,-59,60,55,-60,61,56,-56,62,64,-64,65,63,-65,66,65,-65,65,67,-64,68,70,-70,71,69,-71,72,69,-72,69,73,-69,65,66,-68,74,67,-67,75,74,-67,74,76,-68,77,78,-71,79,70,-79,71,70,-80,70,68,-78,73,69,-63,72,62,-70,64,62,-73,62,63,-74 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *160 { + a: 19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,19.68504,0.7874016,19.68504,0,-19.68504,0.7874016,-19.68504,0,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,15.74803,15.74803,15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,0.3937008,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,-19.68504,19.68504,-15.74803,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,19.68504,-15.74803,-15.74803,19.68504,15.74803,0.3937008,-19.68504,0.3937008,15.74803,0.7874016,-19.68504,0.7874016,-15.74803,0.3937008,-15.74803,0.7874016,19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-1.972485E-13,19.68504,-1.972485E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-19.68504,-2.725615E-11,15.74803,0.3937008,19.68504,-2.725615E-11,19.68504,0.7874016,15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,11.81102,0.3937008,0.3937008,0.3937008,-0.3937008,0.3937008,-11.81102,0.3937008,-15.74803,0.7874016,0.3937008,0.3937008,0.3937008,19.68504,19.68504,0.3937008,11.81102,11.81102,19.68504,11.81102,11.81102,19.68504,-11.81102,19.68504,-0.3937008,-0.3937008,-11.81102,-11.81102,19.68504,-11.81102,19.68504,-0.3937008,-0.3937008,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,19.68504,-15.74803,19.68504,-15.74803,-15.74803,19.68504,-15.74803 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,25,27,25,29,24,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,39,41,43,42,41,44,43,41,45,44,41,46,45,41,47,46,41,48,47,41,39,49,38,50,52,51,53,51,52,54,51,53,51,55,50,56,50,55,57,55,51,58,55,57,59,55,58,60,55,59,61,56,55,62,64,63,65,63,64,66,65,64,65,67,63,68,70,69,71,69,70,72,69,71,69,73,68,65,66,67,74,67,66,75,74,66,74,76,67,77,78,70,79,70,78,71,70,79,70,68,77,73,69,62,72,62,69,64,62,72,62,63,73 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_bendSquare, Model::RootNode + C: "OO",5102788823977667264,0 + + ;Geometry::, Model::Mesh road_bendSquare + C: "OO",5263060976734000262,5102788823977667264 + + ;Material::pavement, Model::Mesh road_bendSquare + C: "OO",17046,5102788823977667264 + + ;Material::asphalt, Model::Mesh road_bendSquare + C: "OO",9934,5102788823977667264 + + ;Material::asphaltEdge, Model::Mesh road_bendSquare + C: "OO",17042,5102788823977667264 + + ;Material::line, Model::Mesh road_bendSquare + C: "OO",9174,5102788823977667264 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquare.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquare.fbx.import new file mode 100644 index 0000000..95896ae --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquare.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d0pj21vf5tngq" +path="res://.godot/imported/road_bendSquare.fbx-1d740009c50585a243c5c8d4ec923ba8.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquare.fbx" +dest_files=["res://.godot/imported/road_bendSquare.fbx-1d740009c50585a243c5c8d4ec923ba8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquareBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquareBarrier.fbx new file mode 100644 index 0000000..fc1e498 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquareBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 17 + Millisecond: 428 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_bendSquareBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_bendSquareBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5212069979244839275, "Model::road_bendSquareBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4685685492368429945, "Geometry::", "Mesh" { + Vertices: *252 { + a: -5,0,-5,-5,0.8,-5,-5,0,-4.5,-5,0.8,-4.7,5,0.8,-5,5,0,-5,5,0.8,5,5,5.639933E-17,5,5,5.639933E-17,5,4.5,2.819967E-17,-4.5,4.5,5.639933E-17,5,5,0,-5,-5,0,-5,-5,0,-4.5,-5,0,-5,5,0,-5,-5,0.8,-5,5,0.8,-5,5,0.8,5,4.7,0.8,-4.7,5,0.8,-5,-5,0.8,-5,-5,0.8,-4.7,4.7,0.8,5,4.7,0.8,-4.7,4.7,0.8,5,4.5,2.819967E-17,-4.5,4.5,5.639933E-17,5,5,5.639933E-17,5,4.5,5.639933E-17,5,5,0.8,5,4.7,0.8,5,-5,0,-4.5,-5,0.8,-4.7,4.5,2.819967E-17,-4.5,4.7,0.8,-4.7,-4.75,4.511947E-16,4.566987,-4.646446,4.511947E-16,4.646446,-4.85,0.8,4.740192,-4.787868,0.8,4.787868,-4.740192,0.8,4.85,-4.566987,4.511947E-16,4.75,-4.710222,0.8,4.922354,-4.517037,4.511947E-16,4.87059,-5,4.511947E-16,4.5,-4.87059,4.511947E-16,4.517037,-5,0.8,4.7,-4.922354,0.8,4.710222,-5,4.511947E-16,4.5,-5,0.8,4.7,-5,4.511947E-16,5,-5,0.8,5,-4.7,0.8,5,-5,0.8,5,-4.710222,0.8,4.922354,-4.740192,0.8,4.85,-4.787868,0.8,4.787868,-4.85,0.8,4.740192,-4.922354,0.8,4.710222,-5,0.8,4.7,-4.7,0.8,5,-4.517037,4.511947E-16,4.87059,-4.5,4.511947E-16,5,-4.710222,0.8,4.922354,-4.87059,4.511947E-16,4.517037,-4.75,4.511947E-16,4.566987,-4.922354,0.8,4.710222,-4.85,0.8,4.740192,-4.5,4.511947E-16,5,-5,4.511947E-16,5,-4.7,0.8,5,-5,0.8,5,-4.5,4.511947E-16,5,-4.517037,4.511947E-16,4.87059,-5,4.511947E-16,5,-4.566987,4.511947E-16,4.75,-4.646446,4.511947E-16,4.646446,-4.75,4.511947E-16,4.566987,-4.87059,4.511947E-16,4.517037,-5,4.511947E-16,4.5,-4.646446,4.511947E-16,4.646446,-4.566987,4.511947E-16,4.75,-4.740192,0.8,4.85,-4.787868,0.8,4.787868 + } + PolygonVertexIndex: *144 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,8,9,-12,12,11,-10,13,12,-10,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,19,-22,19,23,-19,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,38,39,-38,40,42,-42,41,42,-44,44,46,-46,46,47,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,53,-56,57,53,-57,58,53,-58,59,53,-59,60,62,-62,63,60,-62,64,66,-66,66,67,-66,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,77,76,-75,78,77,-75,79,78,-75,80,82,-82,83,82,-81 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *432 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.1266925,0.2405813,-0.9623252,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9623252,0.2405813,-0.1266925,0.9623252,0.2405813,-0.1266925,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.9623252,0.2405813,-0.1266925,0.9370857,0.2425356,-0.2510914,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.6859944,0.2425356,-0.6859944 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: -19.68504,-2.089832E-14,-19.68504,3.149606,-17.71654,-2.089832E-14,-18.50394,3.149606,19.68504,3.149606,19.68504,-4.979704E-11,-19.68504,3.149606,-19.68504,-4.979682E-11,19.68504,19.68504,17.71654,-17.71654,17.71654,19.68504,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,-17.71654,19.68504,1.497864E-12,-19.68504,1.497864E-12,19.68504,3.149606,-19.68504,3.149606,-19.68504,19.68504,-18.50394,-18.50394,-19.68504,-19.68504,19.68504,-19.68504,19.68504,-18.50394,-18.50394,19.68504,-18.50394,7.543431,19.68504,7.543431,-17.71654,4.296891,19.68504,4.296891,19.68504,1.047136E-13,17.71654,1.047136E-13,19.68504,3.149606,18.50394,3.149606,-19.68504,4.296891,-19.68504,7.543431,17.71654,4.296891,18.50394,7.543431,3.89064,6.170674,3.376758,6.170674,3.787864,9.415587,3.479534,9.415587,-10.4993,8.963068,-10.39653,5.718155,-10.80763,8.963068,-10.91041,5.718155,17.20416,4.843955,16.69028,4.843955,17.10138,8.088868,16.79305,8.088868,17.71654,-3.53495E-13,18.50394,3.149606,19.68504,-3.53495E-13,19.68504,3.149606,18.50394,19.68504,19.68504,19.68504,18.54418,19.37935,18.66217,19.09449,18.84987,18.84987,19.09449,18.66217,19.37935,18.54418,19.68504,18.50394,-17.10138,8.088868,-16.69028,4.843955,-17.20416,4.843955,-16.79305,8.088868,10.91041,5.718155,10.39653,5.718155,10.80763,8.963068,10.4993,8.963068,-17.71654,1.776357E-15,-19.68504,1.776357E-15,-18.50394,3.149606,-19.68504,3.149606,-17.71654,19.68504,-17.78361,19.17555,-19.68504,19.68504,-17.98026,18.70079,-18.2931,18.2931,-18.70079,17.98026,-19.17555,17.78361,-19.68504,17.71654,-3.376758,6.170674,-3.89064,6.170674,-3.787864,9.415587,-3.479534,9.415587 + } + UVIndex: *144 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,8,9,11,12,11,9,13,12,9,14,16,15,17,15,16,18,20,19,21,19,20,22,19,21,19,23,18,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,38,39,37,40,42,41,41,42,43,44,46,45,46,47,45,48,50,49,51,49,50,52,54,53,55,53,54,56,53,55,57,53,56,58,53,57,59,53,58,60,62,61,63,60,61,64,66,65,66,67,65,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,77,76,74,78,77,74,79,78,74,80,82,81,83,82,80 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *48 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_bendSquareBarrier, Model::RootNode + C: "OO",5212069979244839275,0 + + ;Geometry::, Model::Mesh road_bendSquareBarrier + C: "OO",4685685492368429945,5212069979244839275 + + ;Material::pavement, Model::Mesh road_bendSquareBarrier + C: "OO",17046,5212069979244839275 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquareBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquareBarrier.fbx.import new file mode 100644 index 0000000..c06606d --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquareBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b3vxkiafd76qn" +path="res://.godot/imported/road_bendSquareBarrier.fbx-c0850d934b2653074b3110ee7b33e76d.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_bendSquareBarrier.fbx" +dest_files=["res://.godot/imported/road_bendSquareBarrier.fbx-c0850d934b2653074b3110ee7b33e76d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bridge.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bridge.fbx new file mode 100644 index 0000000..49f35dd --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bridge.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 17 + Millisecond: 549 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_bridge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_bridge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5208806511534575807, "Model::road_bridge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4733336928448367398, "Geometry::", "Mesh" { + Vertices: *1350 { + a: 0.09999999,5.1,5,-0.09999999,5.1,5,0.09999999,5.1,-5,-0.09999999,5.1,-5,5,0.09999999,-0.09999999,5,0.09999999,0.09999999,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,3,5.1,5,3,5.1,-5,-3,5.1,5,-3,5.1,-5,5,5,-5,-4,5.1,-5,-5,5,-5,-5,5.2,-5,-4,5.2,-5,-3,5.1,-5,4,5.1,-5,5,5.2,-5,3,5.1,-5,-0.09999999,5.1,-5,0.09999999,5.1,-5,4,5.2,-5,-0.09999999,5.1,5,3,5.1,5,-3,5.1,5,4,5.1,5,0.09999999,5.1,5,-5,5,5,5,5,5,5,5.2,5,4,5.2,5,-4,5.1,5,-5,5.2,5,-4,5.2,5,5,0.09999999,3,-5,0.09999999,3,5,0.09999999,-3,-5,0.09999999,-3,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.6,-5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.6,4,-5,0.6,5,-5,0.2,5,-5,0.6,-4,-5,0.2,-4,5,0.6,4,5,0.2,4,5,0.6,5,5,0.09999999,4,5,0,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.6,-4,5,0.2,-5,5,0.6,-5,5,0.2,-4,5,0.2,5,-4,0.6,5,-5,0.6,5,-4.125,1.2,4.875,-4.875,1.2,4.875,-5,0.6,4,-4.875,1.2,4.125,-5,0.6,5,-4.875,1.2,4.875,-4.875,4.7,4.125,-4.875,5,4.125,-4.875,4.7,4.875,-4.875,5,4.875,-5,0.6,4,-4,0.6,4,-4.875,1.2,4.125,-4.125,1.2,4.125,-4.125,4.7,4.875,-4.875,4.7,4.875,-4.125,5,4.875,-4.875,5,4.875,-4,0.6,4,-4,0.2,4,-4,0.6,5,-4,0.2,5,-4.875,4.7,4.125,-4.125,4.7,4.125,-4.875,5,4.125,-4.125,5,4.125,-4,0.2,5,-5,0.2,5,-4,0.6,5,-5,0.6,5,-4.225,1.2,4.775,-4.225,1.2,4.225,-4.125,1.2,4.125,-4.875,1.2,4.125,-4.775,1.2,4.225,-4.875,1.2,4.875,-4.125,1.2,4.875,-4.775,1.2,4.775,-4.125,5,4.125,-4.125,4.7,4.125,-4.125,5,4.875,-4.125,4.7,4.875,-5,0.2,4,-4,0.2,4,-5,0.6,4,-4,0.6,4,-4.125,4.7,4.125,-4.225,4.7,4.775,-4.125,4.7,4.875,-4.875,4.7,4.875,-4.775,4.7,4.775,-4.775,4.7,4.225,-4.225,4.7,4.225,-4.875,4.7,4.125,-4,0.6,4,-4,0.6,5,-4.125,1.2,4.125,-4.125,1.2,4.875,4,0.6,4,5,0.6,4,4.125,1.2,4.125,4.875,1.2,4.125,4.875,4.7,4.875,4.125,4.7,4.875,4.875,5,4.875,4.125,5,4.875,4,0.2,4,4,0.6,4,4,0.2,5,4,0.6,5,4,0.2,4,5,0.2,4,4,0.6,4,5,0.6,4,4.875,5,4.125,4.875,4.7,4.125,4.875,5,4.875,4.875,4.7,4.875,4.125,4.7,4.125,4.125,5,4.125,4.125,4.7,4.875,4.125,5,4.875,5,0.6,5,4,0.6,5,4.875,1.2,4.875,4.125,1.2,4.875,4.775,1.2,4.775,4.775,1.2,4.225,4.875,1.2,4.125,4.125,1.2,4.125,4.225,1.2,4.225,4.125,1.2,4.875,4.875,1.2,4.875,4.225,1.2,4.775,5,0.2,5,4,0.2,5,5,0.6,5,4,0.6,5,4.125,4.7,4.125,4.875,4.7,4.125,4.125,5,4.125,4.875,5,4.125,4.875,4.7,4.125,4.775,4.7,4.775,4.875,4.7,4.875,4.125,4.7,4.875,4.225,4.7,4.775,4.225,4.7,4.225,4.775,4.7,4.225,4.125,4.7,4.125,4,0.6,4,4.125,1.2,4.125,4,0.6,5,4.125,1.2,4.875,5,0.6,4,5,0.6,5,4.875,1.2,4.125,4.875,1.2,4.875,-5,0.6,-5,-4.875,1.2,-4.875,-5,0.6,-4,-4.875,1.2,-4.125,-4.875,4.7,-4.875,-4.875,5,-4.875,-4.875,4.7,-4.125,-4.875,5,-4.125,-4,0.6,-4,-5,0.6,-4,-4.125,1.2,-4.125,-4.875,1.2,-4.125,-4.125,4.7,-4.875,-4.225,4.7,-4.225,-4.125,4.7,-4.125,-4.875,4.7,-4.125,-4.775,4.7,-4.225,-4.775,4.7,-4.775,-4.225,4.7,-4.775,-4.875,4.7,-4.875,-4,0.6,-5,-4,0.6,-4,-4.125,1.2,-4.875,-4.125,1.2,-4.125,-4.125,5,-4.875,-4.125,4.7,-4.875,-4.125,5,-4.125,-4.125,4.7,-4.125,-5,0.6,-5,-4,0.6,-5,-4.875,1.2,-4.875,-4.125,1.2,-4.875,-4.225,1.2,-4.225,-4.225,1.2,-4.775,-4.125,1.2,-4.875,-4.875,1.2,-4.875,-4.775,1.2,-4.775,-4.875,1.2,-4.125,-4.125,1.2,-4.125,-4.775,1.2,-4.225,-4,0.6,-5,-4,0.2,-5,-4,0.6,-4,-4,0.2,-4,-5,0.2,-5,-4,0.2,-5,-5,0.6,-5,-4,0.6,-5,-4.125,4.7,-4.125,-4.875,4.7,-4.125,-4.125,5,-4.125,-4.875,5,-4.125,-4.875,4.7,-4.875,-4.125,4.7,-4.875,-4.875,5,-4.875,-4.125,5,-4.875,-4,0.2,-4,-5,0.2,-4,-4,0.6,-4,-5,0.6,-4,4.125,4.7,-4.875,4.125,5,-4.875,4.125,4.7,-4.125,4.125,5,-4.125,4.875,4.7,-4.875,4.775,4.7,-4.225,4.875,4.7,-4.125,4.125,4.7,-4.125,4.225,4.7,-4.225,4.225,4.7,-4.775,4.775,4.7,-4.775,4.125,4.7,-4.875,4,0.2,-5,4,0.6,-5,4,0.2,-4,4,0.6,-4,5,0.6,-4,4,0.6,-4,4.875,1.2,-4.125,4.125,1.2,-4.125,4,0.2,-5,5,0.2,-5,4,0.6,-5,5,0.6,-5,4.875,5,-4.875,4.875,4.7,-4.875,4.875,5,-4.125,4.875,4.7,-4.125,4,0.6,-5,4.125,1.2,-4.875,4,0.6,-4,4.125,1.2,-4.125,5,0.2,-4,4,0.2,-4,5,0.6,-4,4,0.6,-4,4,0.6,-5,5,0.6,-5,4.125,1.2,-4.875,4.875,1.2,-4.875,4.775,1.2,-4.225,4.775,1.2,-4.775,4.875,1.2,-4.875,4.125,1.2,-4.875,4.225,1.2,-4.775,4.125,1.2,-4.125,4.875,1.2,-4.125,4.225,1.2,-4.225,4.125,4.7,-4.875,4.875,4.7,-4.875,4.125,5,-4.875,4.875,5,-4.875,4.875,4.7,-4.125,4.125,4.7,-4.125,4.875,5,-4.125,4.125,5,-4.125,5,0.6,-5,5,0.6,-4,4.875,1.2,-4.875,4.875,1.2,-4.125,-4,5.2,-5,-4,5.1,-5,-4,5.2,5,-4,5.1,5,4,5.1,-5,4,5.2,-5,4,5.1,5,4,5.2,5,5,5.2,5,4,5.2,5,5,5.2,-5,4,5.2,-5,-4,5.2,5,-5,5.2,5,-4,5.2,-5,-5,5.2,-5,5,5.2,-5,5,5,-5,5,5.2,5,5,5,5,-5,5,-5,-5,5.2,-5,-5,5,5,-5,5.2,5,-5,0.09999999,4,5,0.09999999,4,5,0.09999999,-4,-5,0.09999999,-4,5,0,5,5,0,-5,-5,0,5,-5,0,-5,4,0.2,-5,4,0.2,-4,-4,0.2,-5,-4,0.2,-4,5,0,5,-5,0,5,4,0.2,5,-4,0.2,5,4,0.2,4,4,0.2,5,-4,0.2,4,-4,0.2,5,-5,0,-5,5,0,-5,5,5,-5,4.875,5,4.875,5,5,5,-5,5,5,4.125,5,4.875,4.125,5,4.125,-4.125,5,4.875,4.125,5,-4.875,-4.875,5,4.875,-4.875,5,4.125,-4.875,5,-4.875,4.875,5,-4.125,4.875,5,-4.875,-5,5,-5,-4.125,5,-4.875,-4.125,5,-4.125,-4.125,5,4.125,-4.875,5,-4.125,4.125,5,-4.125,4.875,5,4.125,-4.775,1.2,4.225,-4.775,4.7,4.225,-4.775,1.2,4.775,-4.775,4.7,4.775,-4.775,1.2,4.225,-4.225,1.2,4.225,-4.775,4.7,4.225,-4.225,4.7,4.225,-4.225,1.2,4.775,-4.775,1.2,4.775,-4.225,4.7,4.775,-4.775,4.7,4.775,-4.225,4.7,4.225,-4.225,1.2,4.225,-4.225,4.7,4.775,-4.225,1.2,4.775,4.225,1.2,4.225,4.775,1.2,4.225,4.225,4.7,4.225,4.775,4.7,4.225,4.225,1.2,4.225,4.225,4.7,4.225,4.225,1.2,4.775,4.225,4.7,4.775,4.775,4.7,4.225,4.775,1.2,4.225,4.775,4.7,4.775,4.775,1.2,4.775,4.775,1.2,4.775,4.225,1.2,4.775,4.775,4.7,4.775,4.225,4.7,4.775,-4.775,1.2,-4.775,-4.225,1.2,-4.775,-4.775,4.7,-4.775,-4.225,4.7,-4.775,-4.775,1.2,-4.775,-4.775,4.7,-4.775,-4.775,1.2,-4.225,-4.775,4.7,-4.225,-4.225,1.2,-4.225,-4.775,1.2,-4.225,-4.225,4.7,-4.225,-4.775,4.7,-4.225,-4.225,4.7,-4.775,-4.225,1.2,-4.775,-4.225,4.7,-4.225,-4.225,1.2,-4.225,4.225,1.2,-4.775,4.225,4.7,-4.775,4.225,1.2,-4.225,4.225,4.7,-4.225,4.225,1.2,-4.775,4.775,1.2,-4.775,4.225,4.7,-4.775,4.775,4.7,-4.775,4.775,4.7,-4.775,4.775,1.2,-4.775,4.775,4.7,-4.225,4.775,1.2,-4.225,4.775,1.2,-4.225,4.225,1.2,-4.225,4.775,4.7,-4.225,4.225,4.7,-4.225,-4,5.1,5,-4,5.1,-5,4,5.1,5,4,5.1,-5,5,0.09999999,4,-5,0.09999999,4,5,0.09999999,-4,-5,0.09999999,-4 + } + PolygonVertexIndex: *936 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,9,-1,2,0,-10,1,3,-11,11,10,-4,12,14,-14,15,13,-15,16,13,-16,13,17,-13,17,18,-13,19,12,-19,20,18,-18,17,21,-21,22,20,-22,23,19,-19,24,26,-26,27,25,-27,28,24,-26,26,29,-28,29,30,-28,31,27,-31,32,27,-32,26,33,-30,34,29,-34,35,34,-34,36,5,-38,7,37,-6,38,39,-5,6,4,-40,40,42,-42,43,41,-43,44,40,-42,45,41,-44,46,45,-44,47,46,-44,48,47,-44,49,48,-44,50,49,-44,51,50,-44,52,51,-44,53,52,-44,44,41,-55,55,54,-42,56,58,-58,59,57,-59,58,60,-60,59,60,-62,61,60,-63,62,60,-64,63,60,-65,64,60,-66,60,66,-66,65,66,-68,66,68,-68,69,67,-69,70,65,-68,71,60,-59,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,108,-108,109,110,-105,106,104,-111,111,109,-105,108,109,-112,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,121,-124,125,124,-124,121,126,-121,127,120,-127,125,127,-127,123,127,-126,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,161,-164,165,164,-164,165,166,-161,162,160,-167,167,165,-161,164,165,-168,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,177,-180,181,180,-180,177,182,-177,183,176,-183,181,183,-183,179,183,-182,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,205,-208,209,208,-208,205,210,-205,211,204,-211,209,211,-211,207,211,-210,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,225,-228,229,228,-228,229,230,-225,226,224,-231,231,229,-225,228,229,-232,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,257,-260,261,260,-260,257,262,-257,263,256,-263,261,263,-263,259,263,-262,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,293,-296,297,296,-296,297,298,-293,294,292,-299,299,297,-293,296,297,-300,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,116,-338,145,337,-117,117,145,-117,144,145,-118,338,284,-340,249,339,-285,285,249,-285,248,249,-286,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,168,-350,101,349,-169,350,101,-169,351,101,-351,352,354,-354,355,353,-355,356,236,-358,273,357,-237,237,273,-237,272,273,-238,358,360,-360,361,359,-361,362,359,-362,363,362,-362,364,363,-362,365,363,-365,366,364,-362,367,366,-362,368,367,-362,359,369,-359,369,370,-359,371,358,-371,365,371,-371,361,371,-369,372,371,-366,368,371,-373,373,372,-366,364,373,-366,364,374,-374,375,373,-375,367,375,-375,368,375,-368,365,376,-364,376,369,-378,363,376,-378,359,377,-370,378,380,-380,381,379,-381,382,384,-384,385,383,-385,386,388,-388,389,387,-389,390,392,-392,393,391,-393,394,396,-396,397,395,-397,398,400,-400,401,399,-401,402,404,-404,405,403,-405,406,408,-408,409,407,-409,410,412,-412,413,411,-413,414,416,-416,417,415,-417,418,420,-420,421,419,-421,422,424,-424,425,423,-425,426,428,-428,429,427,-429,430,432,-432,433,431,-433,434,436,-436,437,435,-437,438,440,-440,441,439,-441,10,11,-443,443,442,-12,444,445,-9,9,8,-446,36,37,-447,447,446,-38,448,449,-39,39,38,-450 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2808 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0.2039542,0.9789804,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,-0.9789804,0.2039542,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,0.2039542,-0.9789804,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,0.9789804,0.2039542,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *900 { + a: -0.3937008,19.68504,0.3937008,19.68504,-0.3937008,-19.68504,0.3937008,-19.68504,-19.68504,-0.3937008,-19.68504,0.3937008,19.68504,-0.3937008,19.68504,0.3937008,-11.81102,19.68504,-11.81102,-19.68504,11.81102,19.68504,11.81102,-19.68504,-19.68504,19.68504,15.74803,20.07874,19.68504,19.68504,19.68504,20.47244,15.74803,20.47244,11.81102,20.07874,-15.74803,20.07874,-19.68504,20.47244,-11.81102,20.07874,0.3937008,20.07874,-0.3937008,20.07874,-15.74803,20.47244,-0.3937008,20.07874,11.81102,20.07874,-11.81102,20.07874,15.74803,20.07874,0.3937008,20.07874,-19.68504,19.68504,19.68504,19.68504,19.68504,20.47244,15.74803,20.47244,-15.74803,20.07874,-19.68504,20.47244,-15.74803,20.47244,-19.68504,11.81102,19.68504,11.81102,-19.68504,-11.81102,19.68504,-11.81102,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-2.579528E-13,19.68504,-2.579528E-13,-19.68504,2.362205,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,15.74803,2.362205,19.68504,2.362205,19.68504,0.7874016,-15.74803,2.362205,-15.74803,0.7874016,-15.74803,2.362205,-15.74803,0.7874016,-19.68504,2.362205,-15.74803,0.3937008,-19.68504,2.063622E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,2.063622E-13,15.74803,2.362205,19.68504,0.7874016,19.68504,2.362205,15.74803,0.7874016,-19.68504,0.7874016,-15.74803,-1.702295,-19.68504,-1.702295,-16.24016,0.710628,-19.19291,0.710628,15.74803,-1.702295,16.24016,0.710628,19.68504,-1.702295,19.19291,0.710628,16.24016,18.50394,16.24016,19.68504,19.19291,18.50394,19.19291,19.68504,19.68504,5.52443,15.74803,5.52443,19.19291,7.937354,16.24016,7.937354,-16.24016,18.50394,-19.19291,18.50394,-16.24016,19.68504,-19.19291,19.68504,-15.74803,2.362205,-15.74803,0.7874016,-19.68504,2.362205,-19.68504,0.7874016,19.19291,18.50394,16.24016,18.50394,19.19291,19.68504,16.24016,19.68504,-15.74803,0.7874016,-19.68504,0.7874016,-15.74803,2.362205,-19.68504,2.362205,16.63386,18.79921,16.63386,16.63386,16.24016,16.24016,19.19291,16.24016,18.79921,16.63386,19.19291,19.19291,16.24016,19.19291,18.79921,18.79921,-16.24016,19.68504,-16.24016,18.50394,-19.19291,19.68504,-19.19291,18.50394,19.68504,0.7874016,15.74803,0.7874016,19.68504,2.362205,15.74803,2.362205,-16.24016,16.24016,-16.63386,18.79921,-16.24016,19.19291,-19.19291,19.19291,-18.79921,18.79921,-18.79921,16.63386,-16.63386,16.63386,-19.19291,16.24016,-15.74803,5.52443,-19.68504,5.52443,-16.24016,7.937354,-19.19291,7.937354,-15.74803,5.52443,-19.68504,5.52443,-16.24016,7.937354,-19.19291,7.937354,19.19291,18.50394,16.24016,18.50394,19.19291,19.68504,16.24016,19.68504,15.74803,0.7874016,15.74803,2.362205,19.68504,0.7874016,19.68504,2.362205,-15.74803,0.7874016,-19.68504,0.7874016,-15.74803,2.362205,-19.68504,2.362205,-16.24016,19.68504,-16.24016,18.50394,-19.19291,19.68504,-19.19291,18.50394,16.24016,18.50394,16.24016,19.68504,19.19291,18.50394,19.19291,19.68504,19.68504,-1.702295,15.74803,-1.702295,19.19291,0.710628,16.24016,0.710628,-18.79921,18.79921,-18.79921,16.63386,-19.19291,16.24016,-16.24016,16.24016,-16.63386,16.63386,-16.24016,19.19291,-19.19291,19.19291,-16.63386,18.79921,19.68504,0.7874016,15.74803,0.7874016,19.68504,2.362205,15.74803,2.362205,-16.24016,18.50394,-19.19291,18.50394,-16.24016,19.68504,-19.19291,19.68504,19.19291,16.24016,18.79921,18.79921,19.19291,19.19291,16.24016,19.19291,16.63386,18.79921,16.63386,16.63386,18.79921,16.63386,16.24016,16.24016,15.74803,5.52443,16.24016,7.937354,19.68504,5.52443,19.19291,7.937354,-15.74803,-1.702295,-19.68504,-1.702295,-16.24016,0.710628,-19.19291,0.710628,-19.68504,-1.702295,-19.19291,0.710628,-15.74803,-1.702295,-16.24016,0.710628,-19.19291,18.50394,-19.19291,19.68504,-16.24016,18.50394,-16.24016,19.68504,-15.74803,5.52443,-19.68504,5.52443,-16.24016,7.937354,-19.19291,7.937354,-16.24016,-19.19291,-16.63386,-16.63386,-16.24016,-16.24016,-19.19291,-16.24016,-18.79921,-16.63386,-18.79921,-18.79921,-16.63386,-18.79921,-19.19291,-19.19291,19.68504,5.52443,15.74803,5.52443,19.19291,7.937354,16.24016,7.937354,19.19291,19.68504,19.19291,18.50394,16.24016,19.68504,16.24016,18.50394,19.68504,-1.702295,15.74803,-1.702295,19.19291,0.710628,16.24016,0.710628,16.63386,-16.63386,16.63386,-18.79921,16.24016,-19.19291,19.19291,-19.19291,18.79921,-18.79921,19.19291,-16.24016,16.24016,-16.24016,18.79921,-16.63386,19.68504,2.362205,19.68504,0.7874016,15.74803,2.362205,15.74803,0.7874016,19.68504,0.7874016,15.74803,0.7874016,19.68504,2.362205,15.74803,2.362205,-16.24016,18.50394,-19.19291,18.50394,-16.24016,19.68504,-19.19291,19.68504,19.19291,18.50394,16.24016,18.50394,19.19291,19.68504,16.24016,19.68504,-15.74803,0.7874016,-19.68504,0.7874016,-15.74803,2.362205,-19.68504,2.362205,-19.19291,18.50394,-19.19291,19.68504,-16.24016,18.50394,-16.24016,19.68504,19.19291,-19.19291,18.79921,-16.63386,19.19291,-16.24016,16.24016,-16.24016,16.63386,-16.63386,16.63386,-18.79921,18.79921,-18.79921,16.24016,-19.19291,-19.68504,0.7874016,-19.68504,2.362205,-15.74803,0.7874016,-15.74803,2.362205,19.68504,5.52443,15.74803,5.52443,19.19291,7.937354,16.24016,7.937354,-15.74803,0.7874016,-19.68504,0.7874016,-15.74803,2.362205,-19.68504,2.362205,19.19291,19.68504,19.19291,18.50394,16.24016,19.68504,16.24016,18.50394,-19.68504,5.52443,-19.19291,7.937354,-15.74803,5.52443,-16.24016,7.937354,19.68504,0.7874016,15.74803,0.7874016,19.68504,2.362205,15.74803,2.362205,-15.74803,-1.702295,-19.68504,-1.702295,-16.24016,0.710628,-19.19291,0.710628,-18.79921,-16.63386,-18.79921,-18.79921,-19.19291,-19.19291,-16.24016,-19.19291,-16.63386,-18.79921,-16.24016,-16.24016,-19.19291,-16.24016,-16.63386,-16.63386,-16.24016,18.50394,-19.19291,18.50394,-16.24016,19.68504,-19.19291,19.68504,19.19291,18.50394,16.24016,18.50394,19.19291,19.68504,16.24016,19.68504,19.68504,-1.702295,15.74803,-1.702295,19.19291,0.710628,16.24016,0.710628,19.68504,20.47244,19.68504,20.07874,-19.68504,20.47244,-19.68504,20.07874,-19.68504,20.07874,-19.68504,20.47244,19.68504,20.07874,19.68504,20.47244,-19.68504,19.68504,-15.74803,19.68504,-19.68504,-19.68504,-15.74803,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,19.68504,-19.68504,19.68504,20.47244,19.68504,19.68504,-19.68504,20.47244,-19.68504,19.68504,-19.68504,19.68504,-19.68504,20.47244,19.68504,19.68504,19.68504,20.47244,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.3937008,-19.68504,0.3937008,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-19.68504,-15.74803,-15.74803,15.74803,-19.68504,15.74803,-15.74803,19.68504,-1.776357E-13,-19.68504,-1.776357E-13,15.74803,0.7874016,-15.74803,0.7874016,-15.74803,15.74803,-15.74803,19.68504,15.74803,15.74803,15.74803,19.68504,19.68504,0,-19.68504,0,19.68504,-19.68504,19.19291,19.19291,19.68504,19.68504,-19.68504,19.68504,16.24016,19.19291,16.24016,16.24016,-16.24016,19.19291,16.24016,-19.19291,-19.19291,19.19291,-19.19291,16.24016,-19.19291,-19.19291,19.19291,-16.24016,19.19291,-19.19291,-19.68504,-19.68504,-16.24016,-19.19291,-16.24016,-16.24016,-16.24016,16.24016,-19.19291,-16.24016,16.24016,-16.24016,19.19291,16.24016,16.63386,4.72441,16.63386,18.50394,18.79921,4.72441,18.79921,18.50394,18.79921,4.72441,16.63386,4.72441,18.79921,18.50394,16.63386,18.50394,-16.63386,4.72441,-18.79921,4.72441,-16.63386,18.50394,-18.79921,18.50394,-16.63386,18.50394,-16.63386,4.72441,-18.79921,18.50394,-18.79921,4.72441,-16.63386,4.72441,-18.79921,4.72441,-16.63386,18.50394,-18.79921,18.50394,16.63386,4.72441,16.63386,18.50394,18.79921,4.72441,18.79921,18.50394,-16.63386,18.50394,-16.63386,4.72441,-18.79921,18.50394,-18.79921,4.72441,18.79921,4.72441,16.63386,4.72441,18.79921,18.50394,16.63386,18.50394,18.79921,4.72441,16.63386,4.72441,18.79921,18.50394,16.63386,18.50394,-18.79921,4.72441,-18.79921,18.50394,-16.63386,4.72441,-16.63386,18.50394,-16.63386,4.72441,-18.79921,4.72441,-16.63386,18.50394,-18.79921,18.50394,18.79921,18.50394,18.79921,4.72441,16.63386,18.50394,16.63386,4.72441,-18.79921,4.72441,-18.79921,18.50394,-16.63386,4.72441,-16.63386,18.50394,-16.63386,4.72441,-18.79921,4.72441,-16.63386,18.50394,-18.79921,18.50394,18.79921,18.50394,18.79921,4.72441,16.63386,18.50394,16.63386,4.72441,18.79921,4.72441,16.63386,4.72441,18.79921,18.50394,16.63386,18.50394,15.74803,19.68504,15.74803,-19.68504,-15.74803,19.68504,-15.74803,-19.68504,-19.68504,15.74803,19.68504,15.74803,-19.68504,-15.74803,19.68504,-15.74803 + } + UVIndex: *936 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,9,0,2,0,9,1,3,10,11,10,3,12,14,13,15,13,14,16,13,15,13,17,12,17,18,12,19,12,18,20,18,17,17,21,20,22,20,21,23,19,18,24,26,25,27,25,26,28,24,25,26,29,27,29,30,27,31,27,30,32,27,31,26,33,29,34,29,33,35,34,33,36,5,37,7,37,5,38,39,4,6,4,39,40,42,41,43,41,42,44,40,41,45,41,43,46,45,43,47,46,43,48,47,43,49,48,43,50,49,43,51,50,43,52,51,43,53,52,43,44,41,54,55,54,41,56,58,57,59,57,58,58,60,59,59,60,61,61,60,62,62,60,63,63,60,64,64,60,65,60,66,65,65,66,67,66,68,67,69,67,68,70,65,67,71,60,58,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,108,107,109,110,104,106,104,110,111,109,104,108,109,111,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,121,123,125,124,123,121,126,120,127,120,126,125,127,126,123,127,125,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,161,163,165,164,163,165,166,160,162,160,166,167,165,160,164,165,167,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,177,179,181,180,179,177,182,176,183,176,182,181,183,182,179,183,181,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,205,207,209,208,207,205,210,204,211,204,210,209,211,210,207,211,209,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,225,227,229,228,227,229,230,224,226,224,230,231,229,224,228,229,231,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,257,259,261,260,259,257,262,256,263,256,262,261,263,262,259,263,261,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,293,295,297,296,295,297,298,292,294,292,298,299,297,292,296,297,299,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,116,337,145,337,116,117,145,116,144,145,117,338,284,339,249,339,284,285,249,284,248,249,285,340,342,341,343,341,342,344,346,345,347,345,346,348,168,349,101,349,168,350,101,168,351,101,350,352,354,353,355,353,354,356,236,357,273,357,236,237,273,236,272,273,237,358,360,359,361,359,360,362,359,361,363,362,361,364,363,361,365,363,364,366,364,361,367,366,361,368,367,361,359,369,358,369,370,358,371,358,370,365,371,370,361,371,368,372,371,365,368,371,372,373,372,365,364,373,365,364,374,373,375,373,374,367,375,374,368,375,367,365,376,363,376,369,377,363,376,377,359,377,369,378,380,379,381,379,380,382,384,383,385,383,384,386,388,387,389,387,388,390,392,391,393,391,392,394,396,395,397,395,396,398,400,399,401,399,400,402,404,403,405,403,404,406,408,407,409,407,408,410,412,411,413,411,412,414,416,415,417,415,416,418,420,419,421,419,420,422,424,423,425,423,424,426,428,427,429,427,428,430,432,431,433,431,432,434,436,435,437,435,436,438,440,439,441,439,440,10,11,442,443,442,11,444,445,8,9,8,445,36,37,446,447,446,37,448,449,38,39,38,449 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *312 { + a: 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_bridge, Model::RootNode + C: "OO",5208806511534575807,0 + + ;Geometry::, Model::Mesh road_bridge + C: "OO",4733336928448367398,5208806511534575807 + + ;Material::line, Model::Mesh road_bridge + C: "OO",9174,5208806511534575807 + + ;Material::asphalt, Model::Mesh road_bridge + C: "OO",9934,5208806511534575807 + + ;Material::pavement, Model::Mesh road_bridge + C: "OO",17046,5208806511534575807 + + ;Material::asphaltEdge, Model::Mesh road_bridge + C: "OO",17042,5208806511534575807 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_bridge.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bridge.fbx.import new file mode 100644 index 0000000..c215b9c --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_bridge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b68udw8ug444q" +path="res://.godot/imported/road_bridge.fbx-404bc0433bc7c3b2c658d57f90941aee.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_bridge.fbx" +dest_files=["res://.godot/imported/road_bridge.fbx-404bc0433bc7c3b2c658d57f90941aee.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossing.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossing.fbx new file mode 100644 index 0000000..b30fe64 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossing.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 17 + Millisecond: 660 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_crossing.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_crossing.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5475640328738239337, "Model::road_crossing", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4735314763341421763, "Geometry::", "Mesh" { + Vertices: *282 { + a: 5,0.09999999,-0.09999999,5,0.09999999,0.09999999,2.248551,0.09999999,-0.09999999,2.248551,0.09999999,0.09999999,-2.248551,0.09999999,-0.09999999,-2.248551,0.09999999,0.09999999,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,1.648551,0.09999999,-3,1.648551,0.09999999,-2.5,1.448551,0.09999999,-3,1.648551,0.09999999,-1.5,1.648551,0.09999999,-0.5,1.648551,0.09999999,0.5,1.648551,0.09999999,1.5,1.648551,0.09999999,2.5,1.648551,0.09999999,3,1.448551,0.09999999,3,-1.448551,0.09999999,-3,-1.448551,0.09999999,3,-1.648551,0.09999999,-3,-1.648551,0.09999999,3,1.248551,0.09999999,-2.5,1.248551,0.09999999,-1.5,-1.248551,0.09999999,-2.5,-1.248551,0.09999999,-1.5,1.248551,0.09999999,-0.5,1.248551,0.09999999,0.5,-1.248551,0.09999999,-0.5,-1.248551,0.09999999,0.5,1.248551,0.09999999,1.5,1.248551,0.09999999,2.5,-1.248551,0.09999999,1.5,-1.248551,0.09999999,2.5,5,0,5,-5,0,5,5,0.2,5,-5,0.2,5,-5,0.09999999,4,5,0.09999999,4,-5,0.2,4,5,0.2,4,5,0.2,4,5,0.2,5,-5,0.2,4,-5,0.2,5,5,0.09999999,-4,-5,0.09999999,-4,5,0.2,-4,-5,0.2,-4,5,0,5,5,0,-5,-5,0,5,-5,0,-5,5,0.2,-5,5,0.2,-4,-5,0.2,-5,-5,0.2,-4,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,-5,0.09999999,-3,-5,0.09999999,3,5,0.09999999,-3,5,0.09999999,3,5,0.09999999,4,-5,0.09999999,4,5,0.09999999,-4,-5,0.09999999,-4 + } + PolygonVertexIndex: *312 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,13,-11,15,14,-11,16,15,-11,17,16,-11,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,64,65,-64,63,65,-67,66,65,-68,67,65,-69,68,65,-70,69,65,-71,65,71,-71,70,71,-73,73,72,-72,74,76,-76,77,75,-77,78,75,-78,79,78,-78,80,79,-78,81,80,-78,82,81,-78,83,82,-78,84,83,-78,75,85,-75,21,20,-5,86,4,-21,6,4,-87,4,5,-22,87,21,-6,7,87,-6,17,10,-23,18,22,-11,24,22,-19,25,24,-19,28,25,-19,29,28,-19,32,29,-19,33,32,-19,22,31,-18,19,17,-32,33,19,-32,18,19,-34,23,31,-23,26,31,-24,23,25,-27,28,26,-26,27,31,-27,30,31,-28,27,29,-31,32,30,-30,88,8,-1,2,0,-9,3,2,-9,8,15,-4,15,16,-4,3,16,-2,89,1,-17,9,15,-9,11,15,-10,12,15,-12,13,15,-13,14,15,-14,89,16,-91,91,90,-17,17,91,-17,19,91,-18,21,91,-20,87,91,-22,92,93,-89,8,88,-94,10,8,-94,18,10,-94,20,18,-94,86,20,-94 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *936 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *188 { + a: -19.68504,-0.3937008,-19.68504,0.3937008,-8.852563,-0.3937008,-8.852563,0.3937008,8.852563,-0.3937008,8.852563,0.3937008,19.68504,-0.3937008,19.68504,0.3937008,-6.490358,-11.81102,-6.490358,-9.84252,-5.702957,-11.81102,-6.490358,-5.905512,-6.490358,-1.968504,-6.490358,1.968504,-6.490358,5.905512,-6.490358,9.84252,-6.490358,11.81102,-5.702957,11.81102,5.702957,-11.81102,5.702957,11.81102,6.490358,-11.81102,6.490358,11.81102,-4.915555,-9.84252,-4.915555,-5.905512,4.915555,-9.84252,4.915555,-5.905512,-4.915555,-1.968504,-4.915555,1.968504,4.915555,-1.968504,4.915555,1.968504,-4.915555,5.905512,-4.915555,9.84252,4.915555,5.905512,4.915555,9.84252,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,-19.68504,15.74803,-19.68504,19.68504,19.68504,15.74803,19.68504,19.68504,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,1.725924E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,1.725924E-13,15.74803,0.7874016,19.68504,0.7874016,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-2.342326E-13,19.68504,-2.342326E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,19.68504,-11.81102,19.68504,11.81102,-19.68504,-11.81102,-19.68504,11.81102,-19.68504,15.74803,19.68504,15.74803,-19.68504,-15.74803,19.68504,-15.74803 + } + UVIndex: *312 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,13,10,15,14,10,16,15,10,17,16,10,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,64,65,63,63,65,66,66,65,67,67,65,68,68,65,69,69,65,70,65,71,70,70,71,72,73,72,71,74,76,75,77,75,76,78,75,77,79,78,77,80,79,77,81,80,77,82,81,77,83,82,77,84,83,77,75,85,74,21,20,4,86,4,20,6,4,86,4,5,21,87,21,5,7,87,5,17,10,22,18,22,10,24,22,18,25,24,18,28,25,18,29,28,18,32,29,18,33,32,18,22,31,17,19,17,31,33,19,31,18,19,33,23,31,22,26,31,23,23,25,26,28,26,25,27,31,26,30,31,27,27,29,30,32,30,29,88,8,0,2,0,8,3,2,8,8,15,3,15,16,3,3,16,1,89,1,16,9,15,8,11,15,9,12,15,11,13,15,12,14,15,13,89,16,90,91,90,16,17,91,16,19,91,17,21,91,19,87,91,21,92,93,88,8,88,93,10,8,93,18,10,93,20,18,93,86,20,93 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *104 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_crossing, Model::RootNode + C: "OO",5475640328738239337,0 + + ;Geometry::, Model::Mesh road_crossing + C: "OO",4735314763341421763,5475640328738239337 + + ;Material::line, Model::Mesh road_crossing + C: "OO",9174,5475640328738239337 + + ;Material::pavement, Model::Mesh road_crossing + C: "OO",17046,5475640328738239337 + + ;Material::asphalt, Model::Mesh road_crossing + C: "OO",9934,5475640328738239337 + + ;Material::asphaltEdge, Model::Mesh road_crossing + C: "OO",17042,5475640328738239337 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossing.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossing.fbx.import new file mode 100644 index 0000000..63a4203 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossing.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dcikg2vl387cq" +path="res://.godot/imported/road_crossing.fbx-a2dbcb35272dfca2a91db651d91dc90a.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_crossing.fbx" +dest_files=["res://.godot/imported/road_crossing.fbx-a2dbcb35272dfca2a91db651d91dc90a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroad.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroad.fbx new file mode 100644 index 0000000..9da485b --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroad.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 17 + Millisecond: 758 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_crossroad.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_crossroad.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5540877058939433924, "Model::road_crossroad", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5545209169591671889, "Geometry::", "Mesh" { + Vertices: *420 { + a: -5,0,5,4,0.09999999,5,5,0,5,5,0.2,5,3,0.09999999,5,4,0.2,5,-3,0.09999999,5,-4,0.09999999,5,-5,0.2,5,0.1000001,0.09999999,5,-0.09999992,0.09999999,5,-4,0.2,5,5,0,-5,-4,0.09999999,-5,-5,0,-5,-5,0.2,-5,-3,0.09999999,-5,-4,0.2,-5,3,0.09999999,-5,4,0.09999999,-5,5,0.2,-5,-0.1,0.09999999,-5,0.09999995,0.09999999,-5,4,0.2,-5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999993,-5,0.09999999,0.1000001,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,0.2,-5,5,0,-5,5,0.2,-4,5,0.09999999,-4,5,0,5,5,0.09999999,-3,5,0.09999999,-0.09999993,5,0.09999999,0.1000001,5,0.09999999,3,5,0.09999999,4,5,0.2,4,5,0.2,5,5,0.09999999,3,3,0.09999999,3,5,0.09999999,0.1000001,3,0.09999999,0.1000001,3,0.09999999,5,0.09999995,0.09999999,-5,3,0.09999999,-0.09999993,3,0.09999999,-3,5,0.09999999,-0.09999993,5,0.09999999,-3,3,0.09999999,-5,0.1000001,0.09999999,3,0.09999995,0.09999999,-3,-0.09999992,0.09999999,3,-0.1,0.09999999,-3,-0.09999992,0.09999999,5,-3,0.09999999,5,-3,0.09999999,3,-3,0.09999999,-5,-0.1,0.09999999,-5,-3,0.09999999,-3,-3,0.09999999,-0.09999993,-5,0.09999999,-3,-5,0.09999999,-0.09999993,-3,0.09999999,0.1000001,-5,0.09999999,0.1000001,-5,0.09999999,3,0.1000001,0.09999999,5,-4,0.09999999,4,-5,0.09999999,4,-4,0.09999999,5,-4,0.09999999,-5,-4,0.09999999,-4,-5,0.09999999,-4,5,0.09999999,4,4,0.09999999,4,4,0.09999999,5,4,0.09999999,-5,4,0.09999999,-4,5,0.09999999,-4,5,0,-5,-5,0,-5,5,0,5,-5,0,5,-5,0.09999999,4,-4,0.09999999,4,-5,0.2,4,-4,0.2,4,-4,0.2,4,-4,0.09999999,4,-4,0.2,5,-4,0.09999999,5,-4,0.2,4,-4,0.2,5,-5,0.2,4,-5,0.2,5,5,0.2,4,5,0.2,5,4,0.2,4,4,0.2,5,4,0.09999999,4,5,0.09999999,4,4,0.2,4,5,0.2,4,4,0.09999999,4,4,0.2,4,4,0.09999999,5,4,0.2,5,-4,0.2,-5,-4,0.2,-4,-5,0.2,-5,-5,0.2,-4,-5,0.09999999,-4,-5,0.2,-4,-4,0.09999999,-4,-4,0.2,-4,-4,0.2,-5,-4,0.09999999,-5,-4,0.2,-4,-4,0.09999999,-4,5,0.2,-5,5,0.2,-4,4,0.2,-5,4,0.2,-4,4,0.2,-5,4,0.2,-4,4,0.09999999,-5,4,0.09999999,-4,5,0.09999999,-4,4,0.09999999,-4,5,0.2,-4,4,0.2,-4 + } + PolygonVertexIndex: *348 { + a: 0,2,-2,3,1,-3,4,0,-2,5,1,-4,4,6,-1,6,7,-1,8,0,-8,9,6,-5,10,6,-10,11,8,-8,12,14,-14,15,13,-15,16,12,-14,17,13,-16,16,18,-13,18,19,-13,20,12,-20,21,18,-17,22,18,-22,23,20,-20,24,26,-26,27,25,-27,28,25,-28,29,28,-28,30,29,-28,31,30,-28,32,31,-28,33,32,-28,34,33,-28,25,35,-25,36,38,-38,39,37,-39,40,37,-40,41,40,-40,42,40,-42,43,40,-43,44,40,-44,45,40,-45,46,40,-46,47,40,-47,48,50,-50,51,49,-51,52,49,-52,52,51,-54,51,54,-54,54,55,-54,54,56,-56,57,55,-57,58,53,-56,59,52,-54,60,59,-54,61,59,-61,62,61,-61,63,61,-63,64,63,-63,65,64,-63,66,65,-63,67,66,-63,68,65,-67,69,65,-69,68,70,-70,71,69,-71,72,65,-70,72,73,-66,74,65,-74,59,75,-53,65,74,-65,76,64,-75,77,76,-75,76,78,-65,66,79,-69,80,68,-80,70,68,-81,81,70,-81,48,49,-83,83,82,-50,84,83,-50,52,84,-50,85,58,-87,58,55,-87,55,57,-87,87,86,-58,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,59,61,-76,63,75,-62,69,71,-73,73,72,-72,53,67,-61,62,60,-68,56,54,-51,51,50,-55 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1044 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *280 { + a: -19.68504,-4.173216E-07,15.74803,0.3937004,19.68504,-4.173216E-07,19.68504,0.7874011,11.81102,0.3937004,15.74803,0.7874011,-11.81102,0.3937004,-15.74803,0.3937004,-19.68504,0.7874011,0.3937014,0.3937004,-0.3937002,0.3937004,-15.74803,0.7874011,-19.68504,3.210984E-14,15.74803,0.3937008,19.68504,3.210984E-14,19.68504,0.7874016,11.81102,0.3937008,15.74803,0.7874016,-11.81102,0.3937008,-15.74803,0.3937008,-19.68504,0.7874016,0.3937013,0.3937008,-0.3937003,0.3937008,-15.74803,0.7874016,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-3.324868E-15,19.68504,-3.324868E-15,-11.81102,0.3937008,-0.3937002,0.3937008,0.3937014,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,19.68504,0.7874021,19.68504,5.089292E-07,15.74803,0.7874021,15.74803,0.3937013,-19.68504,5.089292E-07,11.81102,0.3937013,0.3937008,0.3937013,-0.3937008,0.3937013,-11.81102,0.3937013,-15.74803,0.3937013,-15.74803,0.7874021,-19.68504,0.7874021,-19.68504,11.81102,-11.81102,11.81102,-19.68504,0.3937011,-11.81102,0.3937011,-11.81102,19.68504,-0.3937006,-19.68504,-11.81102,-0.3937005,-11.81102,-11.81102,-19.68504,-0.3937005,-19.68504,-11.81102,-11.81102,-19.68504,-0.3937011,11.81102,-0.3937006,-11.81102,0.3937005,11.81102,0.393701,-11.81102,0.3937005,19.68504,11.81102,19.68504,11.81102,11.81102,11.81102,-19.68504,0.393701,-19.68504,11.81102,-11.81102,11.81102,-0.3937005,19.68504,-11.81102,19.68504,-0.3937005,11.81102,0.3937011,19.68504,0.3937011,19.68504,11.81102,-0.3937011,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,-19.68504,15.74803,-15.74803,19.68504,-15.74803,-19.68504,15.74803,-15.74803,15.74803,-15.74803,19.68504,-15.74803,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,0.3937008,15.74803,15.74803,15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,-15.74803,0.3937008,-19.68504,0.3937008,-15.74803,0.7874016,-19.68504,0.7874016,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.3937008,19.68504,0.7874016,15.74803,-19.68504,15.74803,-15.74803,19.68504,-19.68504,19.68504,-15.74803,-19.68504,0.3937008,-19.68504,0.7874016,-15.74803,0.3937008,-15.74803,0.7874016,19.68504,0.7874016,19.68504,0.3937008,15.74803,0.7874016,15.74803,0.3937008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,-19.68504,0.7874016,-15.74803,0.7874016,-19.68504,0.3937008,-15.74803,0.3937008,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016 + } + UVIndex: *348 { + a: 0,2,1,3,1,2,4,0,1,5,1,3,4,6,0,6,7,0,8,0,7,9,6,4,10,6,9,11,8,7,12,14,13,15,13,14,16,12,13,17,13,15,16,18,12,18,19,12,20,12,19,21,18,16,22,18,21,23,20,19,24,26,25,27,25,26,28,25,27,29,28,27,30,29,27,31,30,27,32,31,27,33,32,27,34,33,27,25,35,24,36,38,37,39,37,38,40,37,39,41,40,39,42,40,41,43,40,42,44,40,43,45,40,44,46,40,45,47,40,46,48,50,49,51,49,50,52,49,51,52,51,53,51,54,53,54,55,53,54,56,55,57,55,56,58,53,55,59,52,53,60,59,53,61,59,60,62,61,60,63,61,62,64,63,62,65,64,62,66,65,62,67,66,62,68,65,66,69,65,68,68,70,69,71,69,70,72,65,69,72,73,65,74,65,73,59,75,52,65,74,64,76,64,74,77,76,74,76,78,64,66,79,68,80,68,79,70,68,80,81,70,80,48,49,82,83,82,49,84,83,49,52,84,49,85,58,86,58,55,86,55,57,86,87,86,57,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,59,61,75,63,75,61,69,71,72,73,72,71,53,67,60,62,60,67,56,54,50,51,50,54 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *116 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_crossroad, Model::RootNode + C: "OO",5540877058939433924,0 + + ;Geometry::, Model::Mesh road_crossroad + C: "OO",5545209169591671889,5540877058939433924 + + ;Material::asphalt, Model::Mesh road_crossroad + C: "OO",9934,5540877058939433924 + + ;Material::asphaltEdge, Model::Mesh road_crossroad + C: "OO",17042,5540877058939433924 + + ;Material::pavement, Model::Mesh road_crossroad + C: "OO",17046,5540877058939433924 + + ;Material::line, Model::Mesh road_crossroad + C: "OO",9174,5540877058939433924 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroad.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroad.fbx.import new file mode 100644 index 0000000..d75adb5 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroad.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dayrlle260q6g" +path="res://.godot/imported/road_crossroad.fbx-d2d275b6531323a18b937857518487bb.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroad.fbx" +dest_files=["res://.godot/imported/road_crossroad.fbx-d2d275b6531323a18b937857518487bb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadBarrier.fbx new file mode 100644 index 0000000..b100c4f --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 17 + Millisecond: 847 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_crossroadBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_crossroadBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5240922519863759173, "Model::road_crossroadBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5303618466888653044, "Geometry::", "Mesh" { + Vertices: *576 { + a: 5,1.015188E-14,5,4.5,1.015188E-14,5,5,0.8,5,4.7,0.8,5,5,0.8,4.7,5,0.8,5,4.922354,0.8,4.710222,4.7,0.8,5,4.85,0.8,4.740192,4.787868,0.8,4.787868,4.740192,0.8,4.85,4.710222,0.8,4.922355,5,1.015188E-14,4.5,4.87059,1.015188E-14,4.517037,5,1.015188E-14,5,4.5,1.015188E-14,5,4.75,1.015188E-14,4.566987,4.646446,1.015188E-14,4.646446,4.566987,1.015188E-14,4.75,4.517036,1.015188E-14,4.870591,4.75,1.015188E-14,4.566987,4.87059,1.015188E-14,4.517037,4.922354,0.8,4.710222,4.85,0.8,4.740192,4.566987,1.015188E-14,4.75,4.740192,0.8,4.85,4.710222,0.8,4.922355,4.517036,1.015188E-14,4.870591,4.922354,0.8,4.710222,4.87059,1.015188E-14,4.517037,5,0.8,4.7,5,1.015188E-14,4.5,4.646446,1.015188E-14,4.646446,4.787868,0.8,4.787868,4.740192,0.8,4.85,4.566987,1.015188E-14,4.75,4.517036,1.015188E-14,4.870591,4.7,0.8,5,4.5,1.015188E-14,5,4.710222,0.8,4.922355,4.646446,1.015188E-14,4.646446,4.75,1.015188E-14,4.566987,4.85,0.8,4.740192,4.787868,0.8,4.787868,5,1.015188E-14,4.5,5,1.015188E-14,5,5,0.8,4.7,5,0.8,5,-4.87059,2.312373E-14,-4.517037,-5,2.312373E-14,-4.5,-5,0.8,-4.7,-4.922354,0.8,-4.710222,-4.7,0.8,-5,-4.5,2.312373E-14,-5,-4.517036,2.312373E-14,-4.870591,-4.710222,0.8,-4.922355,-5,2.312373E-14,-5,-5,0.8,-5,-5,2.312373E-14,-4.5,-5,0.8,-4.7,-4.787868,0.8,-4.787868,-4.740192,0.8,-4.85,-4.646446,2.312373E-14,-4.646446,-4.566987,2.312373E-14,-4.75,-4.710222,0.8,-4.922355,-4.517036,2.312373E-14,-4.870591,-4.566987,2.312373E-14,-4.75,-4.740192,0.8,-4.85,-4.7,0.8,-5,-4.710222,0.8,-4.922355,-5,0.8,-5,-4.740192,0.8,-4.85,-4.787868,0.8,-4.787868,-4.85,0.8,-4.740192,-4.922354,0.8,-4.710222,-5,0.8,-4.7,-4.5,2.312373E-14,-5,-5,2.312373E-14,-5,-4.517036,2.312373E-14,-4.870591,-4.566987,2.312373E-14,-4.75,-4.646446,2.312373E-14,-4.646446,-4.75,2.312373E-14,-4.566987,-4.87059,2.312373E-14,-4.517037,-5,2.312373E-14,-4.5,-4.646446,2.312373E-14,-4.646446,-4.75,2.312373E-14,-4.566987,-4.85,0.8,-4.740192,-4.787868,0.8,-4.787868,-4.85,0.8,-4.740192,-4.75,2.312373E-14,-4.566987,-4.922354,0.8,-4.710222,-4.87059,2.312373E-14,-4.517037,-5,2.312373E-14,-5,-4.5,2.312373E-14,-5,-5,0.8,-5,-4.7,0.8,-5,4.7,0.8,-5,4.710222,0.8,-4.922354,4.517037,1.297185E-14,-4.87059,4.5,1.297185E-14,-5,4.710222,0.8,-4.922354,4.740192,0.8,-4.85,4.566987,1.297185E-14,-4.75,4.517037,1.297185E-14,-4.87059,5,0.8,-5,5,1.297185E-14,-5,5,0.8,-4.7,5,1.297185E-14,-4.5,5,0.8,-5,5,0.8,-4.7,4.7,0.8,-5,4.922355,0.8,-4.710222,4.85,0.8,-4.740192,4.787868,0.8,-4.787868,4.740192,0.8,-4.85,4.710222,0.8,-4.922354,4.85,0.8,-4.740192,4.646446,1.297185E-14,-4.646446,4.787868,0.8,-4.787868,4.75,1.297185E-14,-4.566987,5,1.297185E-14,-5,4.5,1.297185E-14,-5,5,1.297185E-14,-4.5,4.870591,1.297185E-14,-4.517036,4.75,1.297185E-14,-4.566987,4.646446,1.297185E-14,-4.646446,4.566987,1.297185E-14,-4.75,4.517037,1.297185E-14,-4.87059,4.922355,0.8,-4.710222,4.75,1.297185E-14,-4.566987,4.85,0.8,-4.740192,4.870591,1.297185E-14,-4.517036,4.566987,1.297185E-14,-4.75,4.740192,0.8,-4.85,4.646446,1.297185E-14,-4.646446,4.787868,0.8,-4.787868,5,1.297185E-14,-4.5,4.870591,1.297185E-14,-4.517036,5,0.8,-4.7,4.922355,0.8,-4.710222,4.5,1.297185E-14,-5,5,1.297185E-14,-5,4.7,0.8,-5,5,0.8,-5,-5,0,4.5,-4.870591,0,4.517036,-5,0.8,4.7,-4.922355,0.8,4.710222,-4.7,0.8,5,-5,0.8,5,-4.710222,0.8,4.922354,-4.740192,0.8,4.85,-4.787868,0.8,4.787868,-4.85,0.8,4.740192,-4.922355,0.8,4.710222,-5,0.8,4.7,-4.870591,0,4.517036,-4.75,0,4.566987,-4.922355,0.8,4.710222,-4.85,0.8,4.740192,-4.787868,0.8,4.787868,-4.646446,0,4.646446,-4.740192,0.8,4.85,-4.566987,0,4.75,-4.5,0,5,-5,0,5,-4.7,0.8,5,-5,0.8,5,-4.566987,0,4.75,-4.517037,0,4.87059,-4.710222,0.8,4.922354,-4.740192,0.8,4.85,-4.7,0.8,5,-4.517037,0,4.87059,-4.5,0,5,-4.710222,0.8,4.922354,-4.85,0.8,4.740192,-4.646446,0,4.646446,-4.787868,0.8,4.787868,-4.75,0,4.566987,-4.5,0,5,-4.517037,0,4.87059,-5,0,5,-4.566987,0,4.75,-4.646446,0,4.646446,-4.75,0,4.566987,-4.870591,0,4.517036,-5,0,4.5,-5,0,4.5,-5,0.8,4.7,-5,0,5,-5,0.8,5 + } + PolygonVertexIndex: *336 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,7,-10,11,7,-11,12,14,-14,15,13,-15,16,13,-16,17,16,-16,18,17,-16,19,18,-16,20,22,-22,23,22,-21,24,26,-26,27,26,-25,28,30,-30,29,30,-32,32,34,-34,35,34,-33,36,38,-38,36,37,-40,40,42,-42,43,42,-41,44,46,-46,47,45,-47,48,50,-50,51,50,-49,52,54,-54,55,54,-53,56,58,-58,59,57,-59,60,62,-62,61,62,-64,64,66,-66,67,66,-65,68,70,-70,71,69,-71,72,71,-71,73,72,-71,74,73,-71,75,74,-71,76,78,-78,79,77,-79,80,77,-80,81,77,-81,82,77,-82,83,77,-83,84,86,-86,87,86,-85,88,90,-90,89,90,-92,92,94,-94,95,93,-95,96,98,-98,99,98,-97,100,102,-102,103,102,-101,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,111,-111,113,112,-111,114,113,-111,115,114,-111,116,118,-118,119,116,-118,120,122,-122,123,121,-123,124,121,-124,125,121,-125,126,121,-126,127,121,-127,128,130,-130,131,128,-130,132,134,-134,133,134,-136,136,138,-138,138,139,-138,140,142,-142,143,141,-143,144,146,-146,146,147,-146,148,150,-150,151,149,-151,152,149,-152,153,149,-153,154,149,-154,155,149,-155,156,158,-158,158,159,-158,160,162,-162,161,162,-164,164,166,-166,167,165,-167,168,170,-170,171,170,-169,172,174,-174,175,172,-174,176,178,-178,179,176,-178,180,182,-182,183,181,-183,184,183,-183,185,184,-183,186,185,-183,187,186,-183,188,190,-190,191,189,-191 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1008 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4850713,0.2425356,-0.8401681,-0.2510914,0.2425356,-0.9370857,-0.2510914,0.2425356,-0.9370857,-0.4850713,0.2425356,-0.8401681,-0.2510914,0.2425356,-0.9370857,-0.4850713,0.2425356,-0.8401681,-0.8401681,0.2425356,-0.4850713,-0.9370857,0.2425356,-0.2510914,-0.8401681,0.2425356,-0.4850713,-0.9370857,0.2425356,-0.2510914,-0.9370857,0.2425356,-0.2510914,-0.8401681,0.2425356,-0.4850713,-0.2510914,0.2425356,-0.9370857,-0.1266925,0.2405813,-0.9623252,-0.2510914,0.2425356,-0.9370857,-0.2510914,0.2425356,-0.9370857,-0.1266925,0.2405813,-0.9623252,-0.1266925,0.2405813,-0.9623252,-0.6859944,0.2425356,-0.6859944,-0.8401681,0.2425356,-0.4850713,-0.6859944,0.2425356,-0.6859944,-0.8401681,0.2425356,-0.4850713,-0.8401681,0.2425356,-0.4850713,-0.6859944,0.2425356,-0.6859944,-0.9370857,0.2425356,-0.2510914,-0.9623252,0.2405813,-0.1266925,-0.9623252,0.2405813,-0.1266925,-0.9370857,0.2425356,-0.2510914,-0.9623252,0.2405813,-0.1266925,-0.9370857,0.2425356,-0.2510914,-0.6859944,0.2425356,-0.6859944,-0.4850713,0.2425356,-0.8401681,-0.4850713,0.2425356,-0.8401681,-0.6859944,0.2425356,-0.6859944,-0.4850713,0.2425356,-0.8401681,-0.6859944,0.2425356,-0.6859944,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2510914,0.2425356,0.9370857,0.1266925,0.2405813,0.9623252,0.1266925,0.2405813,0.9623252,0.2510914,0.2425356,0.9370857,0.1266925,0.2405813,0.9623252,0.2510914,0.2425356,0.9370857,0.9623252,0.2405813,0.1266925,0.9370857,0.2425356,0.2510914,0.9623252,0.2405813,0.1266925,0.9370857,0.2425356,0.2510914,0.9370857,0.2425356,0.2510914,0.9623252,0.2405813,0.1266925,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6859944,0.2425356,0.6859944,0.6859944,0.2425356,0.6859944,0.8401681,0.2425356,0.4850713,0.8401681,0.2425356,0.4850713,0.6859944,0.2425356,0.6859944,0.8401681,0.2425356,0.4850713,0.9370857,0.2425356,0.2510914,0.8401681,0.2425356,0.4850713,0.9370857,0.2425356,0.2510914,0.8401681,0.2425356,0.4850713,0.8401681,0.2425356,0.4850713,0.9370857,0.2425356,0.2510914,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6859944,0.2425356,0.6859944,0.4850713,0.2425356,0.8401681,0.4850713,0.2425356,0.8401681,0.6859944,0.2425356,0.6859944,0.4850713,0.2425356,0.8401681,0.6859944,0.2425356,0.6859944,0.4850713,0.2425356,0.8401681,0.2510914,0.2425356,0.9370857,0.4850713,0.2425356,0.8401681,0.4850713,0.2425356,0.8401681,0.2510914,0.2425356,0.9370857,0.2510914,0.2425356,0.9370857,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9623252,0.2405813,0.1266925,-0.9370857,0.2425356,0.2510914,-0.9370857,0.2425356,0.2510914,-0.9623252,0.2405813,0.1266925,-0.9370857,0.2425356,0.2510914,-0.9623252,0.2405813,0.1266925,-0.9370857,0.2425356,0.2510914,-0.8401681,0.2425356,0.4850713,-0.8401681,0.2425356,0.4850713,-0.9370857,0.2425356,0.2510914,-0.8401681,0.2425356,0.4850713,-0.9370857,0.2425356,0.2510914,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4850713,0.2425356,0.8401681,-0.6859944,0.2425356,0.6859944,-0.6859944,0.2425356,0.6859944,-0.4850713,0.2425356,0.8401681,-0.4850713,0.2425356,0.8401681,-0.6859944,0.2425356,0.6859944,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2510914,0.2425356,0.9370857,-0.4850713,0.2425356,0.8401681,-0.4850713,0.2425356,0.8401681,-0.2510914,0.2425356,0.9370857,-0.2510914,0.2425356,0.9370857,-0.4850713,0.2425356,0.8401681,-0.8401681,0.2425356,0.4850713,-0.6859944,0.2425356,0.6859944,-0.8401681,0.2425356,0.4850713,-0.8401681,0.2425356,0.4850713,-0.6859944,0.2425356,0.6859944,-0.6859944,0.2425356,0.6859944,-0.1266925,0.2405813,0.9623252,-0.1266925,0.2405813,0.9623252,-0.2510914,0.2425356,0.9370857,-0.1266925,0.2405813,0.9623252,-0.2510914,0.2425356,0.9370857,-0.2510914,0.2425356,0.9370857,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.1266925,0.2405813,-0.9623252,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.6859944,0.2425356,-0.6859944,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.8401681,0.2425356,-0.4850713,0.9623252,0.2405813,-0.1266925,0.9623252,0.2405813,-0.1266925,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.9623252,0.2405813,-0.1266925,0.9370857,0.2425356,-0.2510914,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.6859944,0.2425356,-0.6859944,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *384 { + a: 19.68504,-3.153033E-13,17.71654,-3.153033E-13,19.68504,3.149606,18.50394,3.149606,-19.68504,18.50394,-19.68504,19.68504,-19.37935,18.54418,-18.50394,19.68504,-19.09449,18.66217,-18.84987,18.84987,-18.66217,19.09449,-18.54418,19.37935,19.68504,17.71654,19.17555,17.78361,19.68504,19.68504,17.71654,19.68504,18.70079,17.98026,18.2931,18.2931,17.98026,18.70079,17.78361,19.17555,-10.39652,5.718155,-10.91041,5.718155,-10.80763,8.963068,-10.4993,8.963068,10.39653,5.718155,10.4993,8.963068,10.80763,8.963068,10.91041,5.718155,-16.79305,8.088868,-16.69028,4.843956,-17.10138,8.088868,-17.20416,4.843956,3.376758,6.170674,3.479535,9.415587,3.787864,9.415587,3.890641,6.170674,16.69028,4.843955,17.10138,8.088868,17.20416,4.843955,16.79305,8.088868,-3.376757,6.170674,-3.89064,6.170674,-3.787863,9.415587,-3.479534,9.415587,-17.71654,2.176037E-13,-19.68504,2.176037E-13,-18.50394,3.149606,-19.68504,3.149606,-16.69028,4.843956,-17.20416,4.843956,-17.10138,8.088868,-16.79305,8.088868,17.10138,8.088868,17.20416,4.843955,16.69028,4.843955,16.79305,8.088868,-19.68504,2.68674E-13,-19.68504,3.149606,-17.71654,2.68674E-13,-18.50394,3.149606,3.479535,9.415587,3.787864,9.415587,3.376758,6.170674,3.890641,6.170674,10.80763,8.963068,10.91041,5.718155,10.39653,5.718155,10.4993,8.963068,18.50394,-19.68504,18.54418,-19.37935,19.68504,-19.68504,18.66217,-19.09449,18.84987,-18.84987,19.09449,-18.66217,19.37935,-18.54418,19.68504,-18.50394,-17.71654,-19.68504,-19.68504,-19.68504,-17.78361,-19.17555,-17.98026,-18.70079,-18.2931,-18.2931,-18.70079,-17.98026,-19.17555,-17.78361,-19.68504,-17.71654,-3.376757,6.170674,-3.89064,6.170674,-3.787863,9.415587,-3.479534,9.415587,-10.4993,8.963068,-10.39652,5.718155,-10.80763,8.963068,-10.91041,5.718155,19.68504,-2.642331E-13,17.71654,-2.642331E-13,19.68504,3.149606,18.50394,3.149606,-17.10138,8.088868,-16.79305,8.088868,-16.69028,4.843956,-17.20416,4.843956,-10.80763,8.963068,-10.4993,8.963068,-10.39652,5.718155,-10.91041,5.718155,19.68504,3.149606,19.68504,-3.042011E-13,18.50394,3.149606,17.71654,-3.042011E-13,-19.68504,-19.68504,-19.68504,-18.50394,-18.50394,-19.68504,-19.37935,-18.54418,-19.09449,-18.66217,-18.84987,-18.84987,-18.66217,-19.09449,-18.54418,-19.37935,3.787864,9.415587,3.376758,6.170674,3.479535,9.415587,3.890641,6.170674,19.68504,-19.68504,17.71654,-19.68504,19.68504,-17.71654,19.17555,-17.78361,18.70079,-17.98026,18.2931,-18.2931,17.98026,-18.70079,17.78361,-19.17555,10.80763,8.963068,10.39653,5.718155,10.4993,8.963068,10.91041,5.718155,-3.89064,6.170674,-3.787863,9.415587,-3.376757,6.170674,-3.479534,9.415587,17.20416,4.843955,16.69028,4.843955,17.10138,8.088868,16.79305,8.088868,-17.71654,2.287059E-13,-19.68504,2.287059E-13,-18.50394,3.149606,-19.68504,3.149606,17.20416,4.843955,16.69028,4.843955,17.10138,8.088868,16.79305,8.088868,18.50394,19.68504,19.68504,19.68504,18.54418,19.37935,18.66217,19.09449,18.84987,18.84987,19.09449,18.66217,19.37935,18.54418,19.68504,18.50394,10.91041,5.718155,10.39653,5.718155,10.80763,8.963068,10.4993,8.963068,-3.479534,9.415587,-3.376757,6.170674,-3.787863,9.415587,-3.89064,6.170674,-17.71654,1.776357E-13,-19.68504,1.776357E-13,-18.50394,3.149606,-19.68504,3.149606,-10.39652,5.718155,-10.91041,5.718155,-10.80763,8.963068,-10.4993,8.963068,-17.10138,8.088868,-16.69028,4.843956,-17.20416,4.843956,-16.79305,8.088868,3.787864,9.415587,3.376758,6.170674,3.479535,9.415587,3.890641,6.170674,-17.71654,19.68504,-17.78361,19.17555,-19.68504,19.68504,-17.98026,18.70079,-18.2931,18.2931,-18.70079,17.98026,-19.17555,17.78361,-19.68504,17.71654,17.71654,-3.552714E-13,18.50394,3.149606,19.68504,-3.552714E-13,19.68504,3.149606 + } + UVIndex: *336 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,7,9,11,7,10,12,14,13,15,13,14,16,13,15,17,16,15,18,17,15,19,18,15,20,22,21,23,22,20,24,26,25,27,26,24,28,30,29,29,30,31,32,34,33,35,34,32,36,38,37,36,37,39,40,42,41,43,42,40,44,46,45,47,45,46,48,50,49,51,50,48,52,54,53,55,54,52,56,58,57,59,57,58,60,62,61,61,62,63,64,66,65,67,66,64,68,70,69,71,69,70,72,71,70,73,72,70,74,73,70,75,74,70,76,78,77,79,77,78,80,77,79,81,77,80,82,77,81,83,77,82,84,86,85,87,86,84,88,90,89,89,90,91,92,94,93,95,93,94,96,98,97,99,98,96,100,102,101,103,102,100,104,106,105,107,105,106,108,110,109,111,109,110,112,111,110,113,112,110,114,113,110,115,114,110,116,118,117,119,116,117,120,122,121,123,121,122,124,121,123,125,121,124,126,121,125,127,121,126,128,130,129,131,128,129,132,134,133,133,134,135,136,138,137,138,139,137,140,142,141,143,141,142,144,146,145,146,147,145,148,150,149,151,149,150,152,149,151,153,149,152,154,149,153,155,149,154,156,158,157,158,159,157,160,162,161,161,162,163,164,166,165,167,165,166,168,170,169,171,170,168,172,174,173,175,172,173,176,178,177,179,176,177,180,182,181,183,181,182,184,183,182,185,184,182,186,185,182,187,186,182,188,190,189,191,189,190 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *112 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_crossroadBarrier, Model::RootNode + C: "OO",5240922519863759173,0 + + ;Geometry::, Model::Mesh road_crossroadBarrier + C: "OO",5303618466888653044,5240922519863759173 + + ;Material::pavement, Model::Mesh road_crossroadBarrier + C: "OO",17046,5240922519863759173 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadBarrier.fbx.import new file mode 100644 index 0000000..1c53353 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bjcgqpyr4b2vn" +path="res://.godot/imported/road_crossroadBarrier.fbx-0dc959820cf88bf7d4fae0ff84366985.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadBarrier.fbx" +dest_files=["res://.godot/imported/road_crossroadBarrier.fbx-0dc959820cf88bf7d4fae0ff84366985.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadLine.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadLine.fbx new file mode 100644 index 0000000..31a2e1f --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadLine.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 17 + Millisecond: 951 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_crossroadLine.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_crossroadLine.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5186351752975324221, "Model::road_crossroadLine", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5365195727654940759, "Geometry::", "Mesh" { + Vertices: *408 { + a: -5,0,5,4,0.09999999,5,5,0,5,5,0.2,5,3,0.09999999,5,4,0.2,5,-3,0.09999999,5,-4,0.09999999,5,-5,0.2,5,0.1000001,0.09999999,5,-0.09999992,0.09999999,5,-4,0.2,5,5,0,-5,-4,0.09999999,-5,-5,0,-5,-5,0.2,-5,-3,0.09999999,-5,-4,0.2,-5,3,0.09999999,-5,4,0.09999999,-5,5,0.2,-5,-0.1,0.09999999,-5,0.09999995,0.09999999,-5,4,0.2,-5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999993,-5,0.09999999,0.1000001,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,0.1000001,5,0.09999999,-0.09999993,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5,3,0.09999999,-5,3,0.09999999,-3,0.09999995,0.09999999,-5,0.1,0.09999999,-0.09999993,5,0.09999999,-0.09999993,5,0.09999999,-3,5,0.09999999,3,3,0.09999999,3,5,0.09999999,0.1000001,0.1,0.09999999,0.1000001,3,0.09999999,5,0.1000001,0.09999999,5,-0.09999998,0.09999999,0.1000001,-3,0.09999999,3,-5,0.09999999,0.1000001,-5,0.09999999,3,-3,0.09999999,5,-0.09999992,0.09999999,5,-0.09999999,0.09999999,-0.09999993,-5,0.09999999,-0.09999993,-0.1,0.09999999,-5,-3,0.09999999,-3,-3,0.09999999,-5,-5,0.09999999,-3,-4,0.09999999,4,-5,0.09999999,4,-4,0.09999999,5,-4,0.09999999,-5,-4,0.09999999,-4,-5,0.09999999,-4,5,0.09999999,4,4,0.09999999,4,4,0.09999999,5,4,0.09999999,-5,4,0.09999999,-4,5,0.09999999,-4,-5,0.09999999,4,-4,0.09999999,4,-5,0.2,4,-4,0.2,4,-4,0.2,4,-4,0.09999999,4,-4,0.2,5,-4,0.09999999,5,-4,0.2,4,-4,0.2,5,-5,0.2,4,-5,0.2,5,5,0.2,4,5,0.2,5,4,0.2,4,4,0.2,5,4,0.09999999,4,5,0.09999999,4,4,0.2,4,5,0.2,4,4,0.09999999,4,4,0.2,4,4,0.09999999,5,4,0.2,5,-4,0.2,-5,-4,0.2,-4,-5,0.2,-5,-5,0.2,-4,-5,0.09999999,-4,-5,0.2,-4,-4,0.09999999,-4,-4,0.2,-4,-4,0.2,-5,-4,0.09999999,-5,-4,0.2,-4,-4,0.09999999,-4,5,0.2,-5,5,0.2,-4,4,0.2,-5,4,0.2,-4,4,0.2,-5,4,0.2,-4,4,0.09999999,-5,4,0.09999999,-4,5,0.09999999,-4,4,0.09999999,-4,5,0.2,-4,4,0.2,-4,5,0,-5,-5,0,-5,5,0,5,-5,0,5 + } + PolygonVertexIndex: *324 { + a: 0,2,-2,3,1,-3,4,0,-2,5,1,-4,4,6,-1,6,7,-1,8,0,-8,9,6,-5,10,6,-10,11,8,-8,12,14,-14,15,13,-15,16,12,-14,17,13,-16,16,18,-13,18,19,-13,20,12,-20,21,18,-17,22,18,-22,23,20,-20,24,26,-26,27,25,-27,28,25,-28,29,28,-28,30,29,-28,31,30,-28,32,31,-28,33,32,-28,34,33,-28,25,35,-25,36,38,-38,39,37,-39,37,39,-41,40,39,-42,41,39,-43,42,39,-44,43,39,-45,39,45,-45,44,45,-47,47,46,-46,48,50,-50,51,49,-51,51,52,-50,53,49,-53,54,56,-56,57,55,-57,58,55,-58,59,58,-58,60,62,-62,63,61,-63,61,64,-61,65,60,-65,66,68,-68,69,67,-69,70,69,-69,71,67,-70,61,63,-65,72,64,-64,73,72,-64,72,74,-65,70,75,-70,76,69,-76,71,69,-77,77,71,-77,54,55,-79,79,78,-56,80,79,-56,58,80,-56,81,48,-83,48,49,-83,49,53,-83,83,82,-54,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,52,51,-57,57,56,-52,51,65,-58,59,57,-66,50,65,-52,60,65,-51,68,60,-51,66,60,-69,60,66,-63,67,62,-67 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *972 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *272 { + a: -19.68504,-4.173215E-07,15.74803,0.3937004,19.68504,-4.173215E-07,19.68504,0.7874011,11.81102,0.3937004,15.74803,0.7874011,-11.81102,0.3937004,-15.74803,0.3937004,-19.68504,0.7874011,0.3937014,0.3937004,-0.3937002,0.3937004,-15.74803,0.7874011,-19.68504,5.396407E-14,15.74803,0.3937008,19.68504,5.396407E-14,19.68504,0.7874016,11.81102,0.3937008,15.74803,0.7874016,-11.81102,0.3937008,-15.74803,0.3937008,-19.68504,0.7874016,0.3937013,0.3937008,-0.3937003,0.3937008,-15.74803,0.7874016,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-2.181691E-14,19.68504,-2.181691E-14,-11.81102,0.3937008,-0.3937002,0.3937008,0.3937014,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.7874021,-15.74803,0.3937013,-19.68504,0.7874021,-19.68504,5.089292E-07,-11.81102,0.3937013,-0.3937008,0.3937013,0.3937008,0.3937013,11.81102,0.3937013,15.74803,0.3937013,19.68504,5.089292E-07,15.74803,0.7874021,19.68504,0.7874021,-11.81102,-19.68504,-11.81102,-11.81102,-0.3937006,-19.68504,-0.3937008,-0.3937005,-19.68504,-0.3937005,-19.68504,-11.81102,-19.68504,11.81102,-11.81102,11.81102,-19.68504,0.3937011,-0.3937009,0.3937011,-11.81102,19.68504,-0.3937011,19.68504,0.3937007,0.3937011,11.81102,11.81102,19.68504,0.3937011,19.68504,11.81102,11.81102,19.68504,0.3937005,19.68504,0.3937007,-0.3937005,19.68504,-0.3937005,0.393701,-19.68504,11.81102,-11.81102,11.81102,-19.68504,19.68504,-11.81102,15.74803,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,-19.68504,15.74803,-15.74803,19.68504,-15.74803,-19.68504,15.74803,-15.74803,15.74803,-15.74803,19.68504,-15.74803,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,0.3937008,15.74803,15.74803,15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,-15.74803,0.3937008,-19.68504,0.3937008,-15.74803,0.7874016,-19.68504,0.7874016,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.3937008,19.68504,0.7874016,15.74803,-19.68504,15.74803,-15.74803,19.68504,-19.68504,19.68504,-15.74803,-19.68504,0.3937008,-19.68504,0.7874016,-15.74803,0.3937008,-15.74803,0.7874016,19.68504,0.7874016,19.68504,0.3937008,15.74803,0.7874016,15.74803,0.3937008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,-19.68504,0.7874016,-15.74803,0.7874016,-19.68504,0.3937008,-15.74803,0.3937008,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504 + } + UVIndex: *324 { + a: 0,2,1,3,1,2,4,0,1,5,1,3,4,6,0,6,7,0,8,0,7,9,6,4,10,6,9,11,8,7,12,14,13,15,13,14,16,12,13,17,13,15,16,18,12,18,19,12,20,12,19,21,18,16,22,18,21,23,20,19,24,26,25,27,25,26,28,25,27,29,28,27,30,29,27,31,30,27,32,31,27,33,32,27,34,33,27,25,35,24,36,38,37,39,37,38,37,39,40,40,39,41,41,39,42,42,39,43,43,39,44,39,45,44,44,45,46,47,46,45,48,50,49,51,49,50,51,52,49,53,49,52,54,56,55,57,55,56,58,55,57,59,58,57,60,62,61,63,61,62,61,64,60,65,60,64,66,68,67,69,67,68,70,69,68,71,67,69,61,63,64,72,64,63,73,72,63,72,74,64,70,75,69,76,69,75,71,69,76,77,71,76,54,55,78,79,78,55,80,79,55,58,80,55,81,48,82,48,49,82,49,53,82,83,82,53,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,52,51,56,57,56,51,51,65,57,59,57,65,50,65,51,60,65,50,68,60,50,66,60,68,60,66,62,67,62,66 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *108 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_crossroadLine, Model::RootNode + C: "OO",5186351752975324221,0 + + ;Geometry::, Model::Mesh road_crossroadLine + C: "OO",5365195727654940759,5186351752975324221 + + ;Material::asphalt, Model::Mesh road_crossroadLine + C: "OO",9934,5186351752975324221 + + ;Material::asphaltEdge, Model::Mesh road_crossroadLine + C: "OO",17042,5186351752975324221 + + ;Material::pavement, Model::Mesh road_crossroadLine + C: "OO",17046,5186351752975324221 + + ;Material::line, Model::Mesh road_crossroadLine + C: "OO",9174,5186351752975324221 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadLine.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadLine.fbx.import new file mode 100644 index 0000000..a734d65 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadLine.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bxcfb5rb2x4ch" +path="res://.godot/imported/road_crossroadLine.fbx-40778678288ef95db7feeeae433e472f.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadLine.fbx" +dest_files=["res://.godot/imported/road_crossroadLine.fbx-40778678288ef95db7feeeae433e472f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadPath.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadPath.fbx new file mode 100644 index 0000000..94db4dc --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadPath.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 18 + Millisecond: 84 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_crossroadPath.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_crossroadPath.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5366286925818153781, "Model::road_crossroadPath", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5205783653363799685, "Geometry::", "Mesh" { + Vertices: *636 { + a: 4.5,0.09999999,2.25,4.5,0.09999999,2.75,3,0.09999999,2.25,3,0.09999999,2.75,4.5,0.09999999,1.25,4.5,0.09999999,1.75,3,0.09999999,1.25,3,0.09999999,1.75,4.5,0.09999999,-1.75,4.5,0.09999999,-1.25,3,0.09999999,-1.75,3,0.09999999,-1.25,-3,0.09999999,0.2500001,-3,0.09999999,0.75,-4.5,0.09999999,0.2500001,-4.5,0.09999999,0.75,4.5,0.09999999,-2.75,4.5,0.09999999,-2.25,3,0.09999999,-2.75,3,0.09999999,-2.25,-3,0.09999999,2.25,-3,0.09999999,2.75,-4.5,0.09999999,2.25,-4.5,0.09999999,2.75,4.5,0.09999999,-0.7499999,4.5,0.09999999,-0.2499999,3,0.09999999,-0.7499999,3,0.09999999,-0.2499999,-3,0.09999999,-2.75,-3,0.09999999,-2.25,-4.5,0.09999999,-2.75,-4.5,0.09999999,-2.25,-3,0.09999999,-0.7499999,-3,0.09999999,-0.2499999,-4.5,0.09999999,-0.7499999,-4.5,0.09999999,-0.2499999,-3,0.09999999,-1.75,-3,0.09999999,-1.25,-4.5,0.09999999,-1.75,-4.5,0.09999999,-1.25,4.5,0.09999999,0.2500001,4.5,0.09999999,0.75,3,0.09999999,0.2500001,3,0.09999999,0.75,-3,0.09999999,1.25,-3,0.09999999,1.75,-4.5,0.09999999,1.25,-4.5,0.09999999,1.75,2.75,0.09999999,-3,2.25,0.09999999,-3,2.75,0.09999999,-4.5,2.25,0.09999999,-4.5,-0.25,0.09999999,-3,-0.75,0.09999999,-3,-0.25,0.09999999,-4.5,-0.75,0.09999999,-4.5,-2.25,0.09999999,-3,-2.75,0.09999999,-3,-2.25,0.09999999,-4.5,-2.75,0.09999999,-4.5,-1.25,0.09999999,-3,-1.75,0.09999999,-3,-1.25,0.09999999,-4.5,-1.75,0.09999999,-4.5,0.75,0.09999999,-3,0.25,0.09999999,-3,0.75,0.09999999,-4.5,0.25,0.09999999,-4.5,1.75,0.09999999,-3,1.25,0.09999999,-3,1.75,0.09999999,-4.5,1.25,0.09999999,-4.5,-0.25,0.09999999,4.5,-0.75,0.09999999,4.5,-0.25,0.09999999,3,-0.75,0.09999999,3,-2.25,0.09999999,4.5,-2.75,0.09999999,4.5,-2.25,0.09999999,3,-2.75,0.09999999,3,-1.25,0.09999999,4.5,-1.75,0.09999999,4.5,-1.25,0.09999999,3,-1.75,0.09999999,3,2.75,0.09999999,4.5,2.25,0.09999999,4.5,2.75,0.09999999,3,2.25,0.09999999,3,0.75,0.09999999,4.5,0.25,0.09999999,4.5,0.75,0.09999999,3,0.25,0.09999999,3,1.75,0.09999999,4.5,1.25,0.09999999,4.5,1.75,0.09999999,3,1.25,0.09999999,3,-3,0.09999999,-5,3,0.09999999,-5,3,0.09999999,-3,3,0.09999999,5,-3,0.09999999,5,-3,0.09999999,-3,-5,0.09999999,-3,-5,0.09999999,3,-3,0.09999999,3,3,0.09999999,3,5,0.09999999,3,5,0.09999999,-3,-5,0,5,4,0.09999999,5,5,0,5,5,0.2,5,3,0.09999999,5,4,0.2,5,-3,0.09999999,5,-4,0.09999999,5,-5,0.2,5,-4,0.2,5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5,5,0,-5,-4,0.09999999,-5,-5,0,-5,-5,0.2,-5,-3,0.09999999,-5,-4,0.2,-5,3,0.09999999,-5,4,0.09999999,-5,5,0.2,-5,4,0.2,-5,-4,0.09999999,4,-5,0.09999999,4,-4,0.09999999,5,-4,0.09999999,-5,-4,0.09999999,-4,-5,0.09999999,-4,5,0.09999999,4,4,0.09999999,4,4,0.09999999,5,4,0.09999999,-5,4,0.09999999,-4,5,0.09999999,-4,-4,0.2,4,-4,0.09999999,4,-4,0.2,5,-4,0.09999999,5,5,0.2,4,5,0.2,5,4,0.2,4,4,0.2,5,-5,0.09999999,-4,-5,0.2,-4,-4,0.09999999,-4,-4,0.2,-4,-4,0.2,-5,-4,0.09999999,-5,-4,0.2,-4,-4,0.09999999,-4,4,0.09999999,-5,4,0.2,-5,4,0.09999999,-4,4,0.2,-4,-4,0.2,-5,-4,0.2,-4,-5,0.2,-5,-5,0.2,-4,-5,0.09999999,4,-4,0.09999999,4,-5,0.2,4,-4,0.2,4,-4,0.2,4,-4,0.2,5,-5,0.2,4,-5,0.2,5,4,0.09999999,4,4,0.2,4,4,0.09999999,5,4,0.2,5,5,0.2,-5,5,0.2,-4,4,0.2,-5,4,0.2,-4,5,0.09999999,-4,4,0.09999999,-4,5,0.2,-4,4,0.2,-4,5,0,-5,-5,0,-5,5,0,5,-5,0,5,4,0.09999999,4,5,0.09999999,4,4,0.2,4,5,0.2,4 + } + PolygonVertexIndex: *828 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,94,68,-96,69,95,-69,94,92,-69,92,51,-69,68,51,-71,70,51,-97,51,50,-97,96,50,-98,98,97,-51,18,98,-51,19,18,-51,10,19,-51,11,10,-51,26,11,-51,27,26,-51,42,27,-51,43,42,-51,6,43,-51,7,6,-51,2,7,-51,3,2,-51,99,3,-51,48,99,-51,84,99,-49,86,84,-49,99,84,-101,85,100,-85,92,100,-86,87,92,-86,86,48,-88,49,92,-88,49,87,-49,51,92,-50,93,100,-93,88,100,-94,95,88,-94,69,88,-96,71,88,-70,88,71,-91,90,71,-67,66,71,-97,71,70,-97,64,90,-67,90,64,-92,65,91,-65,67,66,-97,54,67,-97,52,67,-55,72,67,-53,65,72,-92,67,72,-66,74,72,-53,55,54,-97,62,55,-97,60,55,-63,80,55,-61,82,80,-61,82,60,-84,61,83,-61,91,72,-90,72,100,-90,89,100,-89,73,100,-73,80,100,-74,75,80,-74,74,52,-76,53,80,-76,55,80,-54,53,75,-53,81,100,-81,76,100,-82,83,76,-82,61,76,-84,63,76,-62,63,62,-97,58,63,-97,78,63,-59,76,63,-79,56,78,-59,78,56,-80,57,79,-57,57,100,-80,59,58,-97,59,100,-58,28,59,-97,101,28,-97,30,28,-102,102,30,-102,31,30,-103,38,31,-103,39,38,-103,34,39,-103,35,34,-103,14,35,-103,15,14,-103,46,15,-103,47,46,-103,22,47,-103,23,22,-103,102,103,-24,103,104,-24,21,23,-105,22,20,-48,45,47,-21,20,21,-46,46,44,-16,45,21,-45,13,15,-45,44,21,-14,14,12,-36,13,21,-13,33,35,-13,12,21,-34,21,104,-60,104,100,-60,28,21,-60,29,21,-29,36,21,-30,29,31,-37,38,36,-32,37,21,-37,32,21,-38,33,21,-33,37,39,-33,34,32,-40,77,100,-77,79,100,-78,105,106,-2,16,1,-107,17,1,-17,8,1,-18,9,1,-9,24,1,-10,25,1,-25,40,1,-26,41,1,-41,4,1,-42,5,1,-5,0,1,-6,3,105,-2,99,105,-4,5,7,-1,2,0,-8,41,43,-5,6,4,-44,25,27,-41,42,40,-28,9,11,-25,26,24,-12,17,19,-9,10,8,-20,106,107,-17,98,16,-108,18,16,-99,108,110,-110,111,109,-111,112,108,-110,113,109,-112,112,114,-109,114,115,-109,116,108,-116,117,116,-116,118,120,-120,121,119,-121,122,119,-122,123,122,-122,124,123,-122,125,124,-122,126,125,-122,119,127,-119,128,130,-130,131,129,-131,129,131,-133,132,131,-134,133,131,-135,131,135,-135,134,135,-137,137,136,-136,138,140,-140,141,139,-141,142,138,-140,143,139,-142,142,144,-139,144,145,-139,146,138,-146,147,146,-146,104,103,-101,148,100,-104,149,148,-104,148,150,-101,96,151,-102,152,101,-152,102,101,-153,153,102,-153,106,105,-155,155,154,-106,156,155,-106,99,156,-106,157,97,-159,97,98,-159,98,107,-159,159,158,-108,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2484 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *424 { + a: -17.71654,8.858269,-17.71654,10.82677,-11.81102,8.858269,-11.81102,10.82677,-17.71654,4.92126,-17.71654,6.889764,-11.81102,4.92126,-11.81102,6.889764,-17.71654,-6.889764,-17.71654,-4.92126,-11.81102,-6.889764,-11.81102,-4.92126,11.81102,0.9842523,11.81102,2.952756,17.71654,0.9842523,17.71654,2.952756,-17.71654,-10.82677,-17.71654,-8.858268,-11.81102,-10.82677,-11.81102,-8.858268,11.81102,8.858269,11.81102,10.82677,17.71654,8.858269,17.71654,10.82677,-17.71654,-2.952756,-17.71654,-0.9842517,-11.81102,-2.952756,-11.81102,-0.9842517,11.81102,-10.82677,11.81102,-8.858268,17.71654,-10.82677,17.71654,-8.858268,11.81102,-2.952756,11.81102,-0.9842517,17.71654,-2.952756,17.71654,-0.9842517,11.81102,-6.889764,11.81102,-4.92126,17.71654,-6.889764,17.71654,-4.92126,-17.71654,0.9842523,-17.71654,2.952756,-11.81102,0.9842523,-11.81102,2.952756,11.81102,4.92126,11.81102,6.889764,17.71654,4.92126,17.71654,6.889764,-10.82677,-11.81102,-8.858268,-11.81102,-10.82677,-17.71654,-8.858268,-17.71654,0.9842522,-11.81102,2.952756,-11.81102,0.9842522,-17.71654,2.952756,-17.71654,8.858268,-11.81102,10.82677,-11.81102,8.858268,-17.71654,10.82677,-17.71654,4.92126,-11.81102,6.889764,-11.81102,4.92126,-17.71654,6.889764,-17.71654,-2.952756,-11.81102,-0.9842519,-11.81102,-2.952756,-17.71654,-0.9842519,-17.71654,-6.889764,-11.81102,-4.92126,-11.81102,-6.889764,-17.71654,-4.92126,-17.71654,0.9842522,17.71654,2.952756,17.71654,0.9842522,11.81102,2.952756,11.81102,8.858268,17.71654,10.82677,17.71654,8.858268,11.81102,10.82677,11.81102,4.92126,17.71654,6.889764,17.71654,4.92126,11.81102,6.889764,11.81102,-10.82677,17.71654,-8.858268,17.71654,-10.82677,11.81102,-8.858268,11.81102,-2.952756,17.71654,-0.9842519,17.71654,-2.952756,11.81102,-0.9842519,11.81102,-6.889764,17.71654,-4.92126,17.71654,-6.889764,11.81102,-4.92126,11.81102,11.81102,-19.68504,-11.81102,-19.68504,-11.81102,-11.81102,-11.81102,19.68504,11.81102,19.68504,11.81102,-11.81102,19.68504,-11.81102,19.68504,11.81102,11.81102,11.81102,-11.81102,11.81102,-19.68504,11.81102,-19.68504,-11.81102,-19.68504,-4.173215E-07,15.74803,0.3937004,19.68504,-4.173215E-07,19.68504,0.7874011,11.81102,0.3937004,15.74803,0.7874011,-11.81102,0.3937004,-15.74803,0.3937004,-19.68504,0.7874011,-15.74803,0.7874011,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-2.181691E-14,19.68504,-2.181691E-14,-11.81102,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.7874021,-15.74803,0.3937013,-19.68504,0.7874021,-19.68504,5.089292E-07,-11.81102,0.3937013,11.81102,0.3937013,15.74803,0.3937013,19.68504,5.089292E-07,15.74803,0.7874021,19.68504,0.7874021,-19.68504,5.396407E-14,15.74803,0.3937008,19.68504,5.396407E-14,19.68504,0.7874016,11.81102,0.3937008,15.74803,0.7874016,-11.81102,0.3937008,-15.74803,0.3937008,-19.68504,0.7874016,-15.74803,0.7874016,15.74803,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,-19.68504,15.74803,-15.74803,19.68504,-15.74803,-19.68504,15.74803,-15.74803,15.74803,-15.74803,19.68504,-15.74803,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,0.3937008,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,-19.68504,0.3937008,-19.68504,0.7874016,-15.74803,0.3937008,-15.74803,0.7874016,19.68504,0.7874016,19.68504,0.3937008,15.74803,0.7874016,15.74803,0.3937008,-19.68504,0.3937008,-19.68504,0.7874016,-15.74803,0.3937008,-15.74803,0.7874016,15.74803,-19.68504,15.74803,-15.74803,19.68504,-19.68504,19.68504,-15.74803,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,15.74803,15.74803,15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.3937008,19.68504,0.7874016,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,-15.74803,0.3937008,-19.68504,0.3937008,-15.74803,0.7874016,-19.68504,0.7874016 + } + UVIndex: *828 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,94,68,95,69,95,68,94,92,68,92,51,68,68,51,70,70,51,96,51,50,96,96,50,97,98,97,50,18,98,50,19,18,50,10,19,50,11,10,50,26,11,50,27,26,50,42,27,50,43,42,50,6,43,50,7,6,50,2,7,50,3,2,50,99,3,50,48,99,50,84,99,48,86,84,48,99,84,100,85,100,84,92,100,85,87,92,85,86,48,87,49,92,87,49,87,48,51,92,49,93,100,92,88,100,93,95,88,93,69,88,95,71,88,69,88,71,90,90,71,66,66,71,96,71,70,96,64,90,66,90,64,91,65,91,64,67,66,96,54,67,96,52,67,54,72,67,52,65,72,91,67,72,65,74,72,52,55,54,96,62,55,96,60,55,62,80,55,60,82,80,60,82,60,83,61,83,60,91,72,89,72,100,89,89,100,88,73,100,72,80,100,73,75,80,73,74,52,75,53,80,75,55,80,53,53,75,52,81,100,80,76,100,81,83,76,81,61,76,83,63,76,61,63,62,96,58,63,96,78,63,58,76,63,78,56,78,58,78,56,79,57,79,56,57,100,79,59,58,96,59,100,57,28,59,96,101,28,96,30,28,101,102,30,101,31,30,102,38,31,102,39,38,102,34,39,102,35,34,102,14,35,102,15,14,102,46,15,102,47,46,102,22,47,102,23,22,102,102,103,23,103,104,23,21,23,104,22,20,47,45,47,20,20,21,45,46,44,15,45,21,44,13,15,44,44,21,13,14,12,35,13,21,12,33,35,12,12,21,33,21,104,59,104,100,59,28,21,59,29,21,28,36,21,29,29,31,36,38,36,31,37,21,36,32,21,37,33,21,32,37,39,32,34,32,39,77,100,76,79,100,77,105,106,1,16,1,106,17,1,16,8,1,17,9,1,8,24,1,9,25,1,24,40,1,25,41,1,40,4,1,41,5,1,4,0,1,5,3,105,1,99,105,3,5,7,0,2,0,7,41,43,4,6,4,43,25,27,40,42,40,27,9,11,24,26,24,11,17,19,8,10,8,19,106,107,16,98,16,107,18,16,98,108,110,109,111,109,110,112,108,109,113,109,111,112,114,108,114,115,108,116,108,115,117,116,115,118,120,119,121,119,120,122,119,121,123,122,121,124,123,121,125,124,121,126,125,121,119,127,118,128,130,129,131,129,130,129,131,132,132,131,133,133,131,134,131,135,134,134,135,136,137,136,135,138,140,139,141,139,140,142,138,139,143,139,141,142,144,138,144,145,138,146,138,145,147,146,145,104,103,100,148,100,103,149,148,103,148,150,100,96,151,101,152,101,151,102,101,152,153,102,152,106,105,154,155,154,105,156,155,105,99,156,105,157,97,158,97,98,158,98,107,158,159,158,107,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *276 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_crossroadPath, Model::RootNode + C: "OO",5366286925818153781,0 + + ;Geometry::, Model::Mesh road_crossroadPath + C: "OO",5205783653363799685,5366286925818153781 + + ;Material::line, Model::Mesh road_crossroadPath + C: "OO",9174,5366286925818153781 + + ;Material::asphalt, Model::Mesh road_crossroadPath + C: "OO",9934,5366286925818153781 + + ;Material::asphaltEdge, Model::Mesh road_crossroadPath + C: "OO",17042,5366286925818153781 + + ;Material::pavement, Model::Mesh road_crossroadPath + C: "OO",17046,5366286925818153781 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadPath.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadPath.fbx.import new file mode 100644 index 0000000..c9d328c --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadPath.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ckcdw85fsdt1m" +path="res://.godot/imported/road_crossroadPath.fbx-8a5b9c5256731ece19d14c6d3c24f14f.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_crossroadPath.fbx" +dest_files=["res://.godot/imported/road_crossroadPath.fbx-8a5b9c5256731ece19d14c6d3c24f14f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curve.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curve.fbx new file mode 100644 index 0000000..21fade2 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curve.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 18 + Millisecond: 203 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_curve.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_curve.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5407669770439120813, "Model::road_curve", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5370490824815625928, "Geometry::", "Mesh" { + Vertices: *1116 { + a: 10,0,10,9.828897,3.158362E-15,7.389476,5.05338E-14,0,10,9.318516,3.158362E-15,4.823619,8.477591,3.609557E-15,2.346331,7.320508,4.060752E-15,-5.775292E-14,5.867067,4.511946E-15,-2.175229,4.142136,5.414336E-15,-4.142136,2.175229,6.316725E-15,-5.867067,2.887646E-14,7.219114E-15,-7.320508,-0.08555138,5.639933E-17,8.694737,-2.346331,8.121504E-15,-8.477591,-0.3407417,1.127987E-16,7.411809,-0.7612047,2.819966E-16,6.173166,-1.339746,5.07594E-16,5,-2.066467,7.895906E-16,3.912386,-2.928932,1.127987E-15,2.928932,-4.823619,9.023893E-15,-9.318516,-3.912386,1.522782E-15,2.066467,-5,1.973977E-15,1.339746,-7.389476,9.926282E-15,-9.828897,-6.173166,2.425171E-15,0.7612047,-7.411809,2.876366E-15,0.3407417,-10,0,-10,-8.694737,3.38396E-15,0.08555138,-10,3.891554E-15,-8.662937E-14,-10,0,-10,-7.389476,9.926282E-15,-9.828897,-10,0.2,-10,-7.389476,0.2,-9.828897,-4.823619,9.023893E-15,-9.318516,-4.823619,0.2,-9.318516,-7.389476,9.926282E-15,-9.828897,-7.389476,0.2,-9.828897,-2.346331,8.121504E-15,-8.477591,-2.346331,0.2,-8.477591,-4.823619,9.023893E-15,-9.318516,-4.823619,0.2,-9.318516,2.887646E-14,7.219114E-15,-7.320508,2.887646E-14,0.2,-7.320508,-2.346331,8.121504E-15,-8.477591,-2.346331,0.2,-8.477591,2.175229,6.316725E-15,-5.867067,2.175229,0.2,-5.867067,2.887646E-14,7.219114E-15,-7.320508,2.887646E-14,0.2,-7.320508,4.142136,5.414336E-15,-4.142136,4.142136,0.2,-4.142136,2.175229,6.316725E-15,-5.867067,2.175229,0.2,-5.867067,4.142136,0.2,-4.142136,4.142136,5.414336E-15,-4.142136,5.867067,0.2,-2.175229,5.867067,4.511946E-15,-2.175229,5.867067,0.2,-2.175229,5.867067,4.511946E-15,-2.175229,7.320508,0.2,-5.775292E-14,7.320508,4.060752E-15,-5.775292E-14,7.320508,0.2,-5.775292E-14,7.320508,4.060752E-15,-5.775292E-14,8.477591,0.2,2.346331,8.477591,3.609557E-15,2.346331,8.477591,0.2,2.346331,8.477591,3.609557E-15,2.346331,9.318516,0.2,4.823619,9.318516,3.158362E-15,4.823619,9.318516,0.2,4.823619,9.318516,3.158362E-15,4.823619,9.828897,0.2,7.389476,9.828897,3.158362E-15,7.389476,9.828897,0.2,7.389476,9.828897,3.158362E-15,7.389476,10,0.2,10,10,0,10,-0.08555138,5.639933E-17,8.694737,-0.08555138,0.2,8.694737,5.05338E-14,0,10,5.05338E-14,0.2,10,-0.3407417,1.127987E-16,7.411809,-0.3407417,0.2,7.411809,-0.08555138,5.639933E-17,8.694737,-0.08555138,0.2,8.694737,-0.7612047,2.819966E-16,6.173166,-0.7612047,0.2,6.173166,-0.3407417,1.127987E-16,7.411809,-0.3407417,0.2,7.411809,-1.339746,5.07594E-16,5,-1.339746,0.2,5,-0.7612047,2.819966E-16,6.173166,-0.7612047,0.2,6.173166,-2.066467,7.895906E-16,3.912386,-2.066467,0.2,3.912386,-1.339746,5.07594E-16,5,-1.339746,0.2,5,-2.928932,1.127987E-15,2.928932,-2.928932,0.2,2.928932,-2.066467,7.895906E-16,3.912386,-2.066467,0.2,3.912386,-2.928932,1.127987E-15,2.928932,-3.912386,1.522782E-15,2.066467,-2.928932,0.2,2.928932,-3.912386,0.2,2.066467,-3.912386,1.522782E-15,2.066467,-5,1.973977E-15,1.339746,-3.912386,0.2,2.066467,-5,0.2,1.339746,-5,1.973977E-15,1.339746,-6.173166,2.425171E-15,0.7612047,-5,0.2,1.339746,-6.173166,0.2,0.7612047,-6.173166,2.425171E-15,0.7612047,-7.411809,2.876366E-15,0.3407417,-6.173166,0.2,0.7612047,-7.411809,0.2,0.3407417,-7.411809,2.876366E-15,0.3407417,-8.694737,3.38396E-15,0.08555138,-7.411809,0.2,0.3407417,-8.694737,0.2,0.08555138,-8.694737,3.38396E-15,0.08555138,-10,3.891554E-15,-8.662937E-14,-8.694737,0.2,0.08555138,-10,0.2,-8.662937E-14,10,0.2,10,9,0.2,10,9.828897,0.2,7.389476,9.318516,0.2,4.823619,8.837453,0.2,7.520002,8.477591,0.2,2.346331,8.352591,0.2,5.082438,7.320508,0.2,-5.775292E-14,7.553711,0.2,2.729015,6.454483,0.2,0.5,5.867067,0.2,-2.175229,5.073714,0.2,-1.566467,4.142136,0.2,-4.142136,3.435029,0.2,-3.435029,2.175229,0.2,-5.867067,1.566467,0.2,-5.073714,2.887646E-14,0.2,-7.320508,-0.5,0.2,-6.454483,-2.346331,0.2,-8.477591,-2.729015,0.2,-7.553711,-4.823619,0.2,-9.318516,-5.082438,0.2,-8.352591,-7.389476,0.2,-9.828897,-7.520002,0.2,-8.837453,-10,0.2,-10,-10,0.2,-9,-7.520002,0.09999999,-8.837453,-10,0.09999999,-9,-7.520002,0.2,-8.837453,-10,0.2,-9,-5.082438,0.09999999,-8.352591,-7.520002,0.09999999,-8.837453,-5.082438,0.2,-8.352591,-7.520002,0.2,-8.837453,-2.729015,0.09999999,-7.553711,-5.082438,0.09999999,-8.352591,-2.729015,0.2,-7.553711,-5.082438,0.2,-8.352591,-0.5,0.09999999,-6.454483,-2.729015,0.09999999,-7.553711,-0.5,0.2,-6.454483,-2.729015,0.2,-7.553711,1.566467,0.09999999,-5.073714,-0.5,0.09999999,-6.454483,1.566467,0.2,-5.073714,-0.5,0.2,-6.454483,3.435029,0.09999999,-3.435029,1.566467,0.09999999,-5.073714,3.435029,0.2,-3.435029,1.566467,0.2,-5.073714,3.435029,0.09999999,-3.435029,3.435029,0.2,-3.435029,5.073714,0.09999999,-1.566467,5.073714,0.2,-1.566467,5.073714,0.09999999,-1.566467,5.073714,0.2,-1.566467,6.454483,0.09999999,0.5,6.454483,0.2,0.5,6.454483,0.09999999,0.5,6.454483,0.2,0.5,7.553711,0.09999999,2.729015,7.553711,0.2,2.729015,7.553711,0.09999999,2.729015,7.553711,0.2,2.729015,8.352591,0.09999999,5.082438,8.352591,0.2,5.082438,8.352591,0.09999999,5.082438,8.352591,0.2,5.082438,8.837453,0.09999999,7.520002,8.837453,0.2,7.520002,8.837453,0.09999999,7.520002,8.837453,0.2,7.520002,9,0.09999999,10,9,0.2,10,1,0.2,10,5.05338E-14,0.2,10,0.9058934,0.2,8.564212,0.6251841,0.2,7.152991,0.1626749,0.2,5.790482,-0.08555138,0.2,8.694737,-0.4737206,0.2,4.5,-0.3407417,0.2,7.411809,-0.7612047,0.2,6.173166,-1.273113,0.2,3.303624,-1.339746,0.2,5,-2.221825,0.2,2.221825,-2.066467,0.2,3.912386,-2.928932,0.2,2.928932,-3.303624,0.2,1.273113,-3.912386,0.2,2.066467,-4.5,0.2,0.4737206,-5,0.2,1.339746,-5.790482,0.2,-0.1626749,-6.173166,0.2,0.7612047,-7.152991,0.2,-0.6251841,-7.411809,0.2,0.3407417,-8.564212,0.2,-0.9058934,-8.694737,0.2,0.08555138,-10,0.2,-1,-10,0.2,-8.662937E-14,0.9058934,0.2,8.564212,0.9058934,0.09999999,8.564212,1,0.2,10,1,0.09999999,10,0.6251841,0.2,7.152991,0.6251841,0.09999999,7.152991,0.9058934,0.2,8.564212,0.9058934,0.09999999,8.564212,0.1626749,0.2,5.790482,0.1626749,0.09999999,5.790482,0.6251841,0.2,7.152991,0.6251841,0.09999999,7.152991,-0.4737206,0.2,4.5,-0.4737206,0.09999999,4.5,0.1626749,0.2,5.790482,0.1626749,0.09999999,5.790482,-1.273113,0.2,3.303624,-1.273113,0.09999999,3.303624,-0.4737206,0.2,4.5,-0.4737206,0.09999999,4.5,-2.221825,0.2,2.221825,-2.221825,0.09999999,2.221825,-1.273113,0.2,3.303624,-1.273113,0.09999999,3.303624,-3.303624,0.09999999,1.273113,-2.221825,0.09999999,2.221825,-3.303624,0.2,1.273113,-2.221825,0.2,2.221825,-4.5,0.09999999,0.4737206,-3.303624,0.09999999,1.273113,-4.5,0.2,0.4737206,-3.303624,0.2,1.273113,-4.5,0.09999999,0.4737206,-4.5,0.2,0.4737206,-5.790482,0.09999999,-0.1626749,-5.790482,0.2,-0.1626749,-5.790482,0.09999999,-0.1626749,-5.790482,0.2,-0.1626749,-7.152991,0.09999999,-0.6251841,-7.152991,0.2,-0.6251841,-7.152991,0.09999999,-0.6251841,-7.152991,0.2,-0.6251841,-8.564212,0.09999999,-0.9058934,-8.564212,0.2,-0.9058934,-8.564212,0.09999999,-0.9058934,-8.564212,0.2,-0.9058934,-10,0.09999999,-1,-10,0.2,-1,2,0.09999999,10,1,0.09999999,10,1.897338,0.09999999,8.433686,1.59111,0.09999999,6.894171,1.086554,0.09999999,5.407799,0.9058934,0.09999999,8.564212,0.3923048,0.09999999,4,0.6251841,0.09999999,7.152991,0.1626749,0.09999999,5.790482,-0.4797599,0.09999999,2.694863,-0.4737206,0.09999999,4.5,-1.273113,0.09999999,3.303624,-1.514719,0.09999999,1.514719,-2.221825,0.09999999,2.221825,-2.694863,0.09999999,0.4797599,-3.303624,0.09999999,1.273113,-4,0.09999999,-0.3923048,-4.5,0.09999999,0.4737206,-5.407799,0.09999999,-1.086554,-5.790482,0.09999999,-0.1626749,-6.894171,0.09999999,-1.59111,-7.152991,0.09999999,-0.6251841,-8.433686,0.09999999,-1.897338,-8.564212,0.09999999,-0.9058934,-10,0.09999999,-2,-10,0.09999999,-1,9,0.09999999,10,8,0.09999999,10,8.837453,0.09999999,7.520002,8.352591,0.09999999,5.082438,7.553711,0.09999999,2.729015,7.846007,0.09999999,7.650528,7.386665,0.09999999,5.341258,6.454483,0.09999999,0.5,6.629832,0.09999999,3.111698,5.588457,0.09999999,1,5.073714,0.09999999,-1.566467,4.28036,0.09999999,-0.9577057,3.435029,0.09999999,-3.435029,2.727922,0.09999999,-2.727922,1.566467,0.09999999,-5.073714,0.9577057,0.09999999,-4.28036,-0.5,0.09999999,-6.454483,-1,0.09999999,-5.588457,-2.729015,0.09999999,-7.553711,-3.111698,0.09999999,-6.629832,-5.082438,0.09999999,-8.352591,-5.341258,0.09999999,-7.386665,-7.520002,0.09999999,-8.837453,-7.650528,0.09999999,-7.846007,-10,0.09999999,-9,-10,0.09999999,-8,5.05338E-14,0,10,9,0.09999999,10,10,0,10,10,0.2,10,9,0.2,10,2,0.09999999,10,1,0.09999999,10,5.05338E-14,0.2,10,8,0.09999999,10,5.1,0.09999999,10,4.9,0.09999999,10,1,0.2,10,-10,0.2,-10,-10,0.09999999,-9,-10,0,-10,-10,3.891554E-15,-8.662937E-14,-10,0.09999999,-8,-10,0.09999999,-5.1,-10,0.09999999,-4.9,-10,0.09999999,-2,-10,0.09999999,-1,-10,0.2,-1,-10,0.2,-8.662937E-14,-10,0.2,-9,5.1,0.09999999,10,4.970817,0.09999999,8.029055,4.58548,0.09999999,6.091833,3.950581,0.09999999,4.22148,3.076984,0.09999999,2.45,1.979635,0.09999999,0.8077024,0.6773124,0.09999999,-0.6773124,-0.8077024,0.09999999,-1.979635,-2.45,0.09999999,-3.076984,-4.22148,0.09999999,-3.950581,-6.091833,0.09999999,-4.58548,-8.029055,0.09999999,-4.970817,-10,0.09999999,-5.1,4.9,0.09999999,10,4.772529,0.09999999,8.055161,4.392295,0.09999999,6.143596,3.765805,0.09999999,4.298017,2.903778,0.09999999,2.55,1.820965,0.09999999,0.9294547,0.535891,0.09999999,-0.535891,-0.9294547,0.09999999,-1.820965,-2.55,0.09999999,-2.903778,-4.298017,0.09999999,-3.765805,-6.143596,0.09999999,-4.392295,-8.055161,0.09999999,-4.772529,-10,0.09999999,-4.9 + } + PolygonVertexIndex: *924 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,5,-3,7,6,-3,8,7,-3,9,8,-3,10,9,-3,11,9,-11,12,11,-11,13,11,-13,14,11,-14,15,11,-15,16,11,-16,17,11,-17,18,17,-17,19,17,-19,20,17,-20,21,20,-20,22,20,-22,23,20,-23,24,23,-23,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,123,-126,127,126,-126,128,126,-128,129,128,-128,130,128,-130,131,130,-130,132,131,-130,133,131,-133,134,133,-133,135,133,-135,136,135,-135,137,135,-137,138,137,-137,139,137,-139,140,139,-139,141,139,-141,142,141,-141,143,141,-143,144,143,-143,145,143,-145,146,145,-145,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,197,-200,201,197,-201,202,201,-201,203,201,-203,204,203,-203,205,204,-203,206,204,-206,207,206,-206,208,206,-208,209,208,-208,210,209,-208,211,209,-211,212,211,-211,213,211,-213,214,213,-213,215,213,-215,216,215,-215,217,215,-217,218,217,-217,219,217,-219,220,219,-219,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,271,-274,275,271,-275,276,275,-275,277,275,-277,278,277,-277,279,278,-277,280,278,-280,281,280,-280,282,281,-280,283,281,-283,284,283,-283,285,283,-285,286,285,-285,287,285,-287,288,287,-287,289,287,-289,290,289,-289,291,289,-291,292,291,-291,293,291,-293,294,293,-293,295,293,-295,296,298,-298,299,297,-299,300,297,-300,301,297,-301,302,301,-301,303,302,-301,304,302,-304,305,304,-304,306,305,-304,307,305,-307,308,307,-307,309,307,-309,310,309,-309,311,309,-311,312,311,-311,313,311,-313,314,313,-313,315,313,-315,316,315,-315,317,315,-317,318,317,-317,319,317,-319,320,319,-319,321,319,-321,322,324,-324,325,323,-325,326,323,-326,323,327,-323,327,328,-323,329,322,-329,330,327,-324,330,331,-328,332,327,-332,333,329,-329,334,336,-336,337,335,-337,338,335,-338,339,338,-338,340,339,-338,341,340,-338,342,341,-338,343,342,-338,344,343,-338,335,345,-335,297,301,-347,302,346,-302,304,346,-303,305,346,-305,347,346,-306,307,347,-306,348,347,-308,349,348,-308,309,349,-308,350,349,-310,351,350,-310,311,351,-310,352,351,-312,313,352,-312,353,352,-314,354,353,-314,315,354,-314,355,354,-316,317,355,-316,356,355,-318,319,356,-318,357,356,-320,321,357,-320,358,357,-322,359,360,-271,361,270,-361,362,270,-362,363,270,-363,364,270,-364,272,270,-365,273,272,-365,365,273,-365,274,273,-366,276,274,-366,366,276,-366,279,276,-367,282,279,-367,367,282,-367,284,282,-368,368,284,-368,286,284,-369,288,286,-369,369,288,-369,290,288,-370,370,290,-370,292,290,-371,371,292,-371,294,292,-372,346,347,-360,360,359,-348,348,360,-348,361,360,-349,349,361,-349,362,361,-350,350,362,-350,363,362,-351,351,363,-351,364,363,-352,352,364,-352,365,364,-353,353,365,-353,366,365,-354,354,366,-354,367,366,-355,355,367,-355,368,367,-356,356,368,-356,369,368,-357,357,369,-357,370,369,-358,358,370,-358,371,370,-359 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2772 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.06540313,0,-0.9978589,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *744 { + a: 39.37008,39.37008,38.69645,29.09243,1.98952E-13,39.37008,36.68707,18.99063,33.37634,9.237525,28.8209,-2.273737E-13,23.09869,-8.563892,16.30762,-16.30762,8.563892,-23.09869,1.136868E-13,-28.8209,-0.3368165,34.23125,-9.237525,-33.37634,-1.341503,29.18035,-2.996869,24.3038,-5.27459,19.68504,-8.135695,15.40309,-11.53123,11.53123,-18.99063,-36.68707,-15.40309,8.135695,-19.68504,5.27459,-29.09243,-38.69645,-24.3038,2.996869,-29.18035,1.341503,-39.37008,-39.37008,-34.23125,0.3368165,-39.37008,-3.410605E-13,41.86071,-6.026112E-17,31.561,3.901959E-14,41.86071,0.7874016,31.561,0.7874016,25.78302,3.244209E-14,25.78302,0.7874016,36.08273,3.599481E-14,36.08273,0.7874016,19.47576,2.980437E-14,19.47576,0.7874016,29.77547,3.335708E-14,29.77547,0.7874016,12.74716,2.700813E-14,12.74716,0.7874016,23.04686,3.056085E-14,23.04686,0.7874016,5.712327,2.408643E-14,5.712327,0.7874016,16.01203,2.763915E-14,16.01203,0.7874016,-1.508357,2.108461E-14,-1.508357,0.7874016,8.791348,2.463733E-14,8.791348,0.7874016,1.508357,0.7874016,1.508357,2.160842E-14,-8.791348,0.7874016,-8.791348,1.805571E-14,-5.712327,0.7874016,-5.712327,1.860802E-14,-16.01203,0.7874016,-16.01203,1.683166E-14,-12.74716,0.7874016,-12.74716,1.746524E-14,-23.04686,0.7874016,-23.04686,1.568888E-14,-19.47576,0.7874016,-19.47576,1.644854E-14,-29.77547,0.7874016,-29.77547,1.467218E-14,-25.78302,0.7874016,-25.78302,1.559021E-14,-36.08273,0.7874016,-36.08273,1.559021E-14,-31.561,0.7874016,-31.561,1.240074E-14,-41.86071,0.7874016,-41.86071,-3.37545E-17,34.13593,2.202522E-16,34.13593,0.7874016,39.28579,-1.792378E-18,39.28579,0.7874016,28.35795,-2.236019E-15,28.35795,0.7874016,33.5078,-2.458063E-15,33.5078,0.7874016,22.05069,-2.821535E-15,22.05069,0.7874016,27.20054,-3.487669E-15,27.20054,0.7874016,15.32208,-2.699657E-15,15.32208,0.7874016,20.47194,-3.587835E-15,20.47194,0.7874016,8.287254,-1.857352E-15,8.287254,0.7874016,13.43711,-2.967575E-15,13.43711,0.7874016,1.066569,-3.275467E-16,1.066569,0.7874016,6.216422,-1.659814E-15,6.216422,0.7874016,-1.066569,2.596826E-16,-6.216422,1.813995E-15,-1.066569,0.7874016,-6.216422,0.7874016,-8.287254,2.67854E-15,-13.43711,4.454897E-15,-8.287254,0.7874016,-13.43711,0.7874016,-15.32208,5.456669E-15,-20.47194,7.233026E-15,-15.32208,0.7874016,-20.47194,0.7874016,-22.05069,8.215158E-15,-27.20054,9.991515E-15,-22.05069,0.7874016,-27.20054,0.7874016,-28.35795,1.079257E-14,-33.5078,1.279097E-14,-28.35795,0.7874016,-33.5078,0.7874016,-34.13593,1.330558E-14,-39.28579,1.530399E-14,-34.13593,0.7874016,-39.28579,0.7874016,-39.37008,39.37008,-35.43307,39.37008,-38.69645,29.09243,-36.68707,18.99063,-34.79312,29.60631,-33.37634,9.237525,-32.88422,20.0096,-28.8209,-2.272144E-13,-29.73902,10.74415,-25.41135,1.968504,-23.09869,-8.563892,-19.97525,-6.167193,-16.30762,-16.30762,-13.52374,-13.52374,-8.563892,-23.09869,-6.167193,-19.97525,-1.132824E-13,-28.8209,1.968504,-25.41135,9.237525,-33.37634,10.74415,-29.73902,18.99063,-36.68707,20.0096,-32.88422,29.09243,-38.69645,29.60631,-34.79312,39.37008,-39.37008,39.37008,-35.43307,-31.8185,0.3937008,-41.60322,0.3937008,-31.8185,0.7874016,-41.60322,0.7874016,-26.04051,0.3937008,-35.82523,0.3937008,-26.04051,0.7874016,-35.82523,0.7874016,-19.73326,0.3937008,-29.51798,0.3937008,-19.73326,0.7874016,-29.51798,0.7874016,-13.00465,0.3937008,-22.78937,0.3937008,-13.00465,0.7874016,-22.78937,0.7874016,-5.96982,0.3937008,-15.75454,0.3937008,-5.96982,0.7874016,-15.75454,0.7874016,1.250864,0.3937008,-8.533855,0.3937008,1.250864,0.7874016,-8.533855,0.7874016,-1.250864,0.3937008,-1.250864,0.7874016,8.533855,0.3937008,8.533855,0.7874016,5.96982,0.3937008,5.96982,0.7874016,15.75454,0.3937008,15.75454,0.7874016,13.00465,0.3937008,13.00465,0.7874016,22.78937,0.3937008,22.78937,0.7874016,19.73326,0.3937008,19.73326,0.7874016,29.51798,0.3937008,29.51798,0.7874016,26.04051,0.3937008,26.04051,0.7874016,35.82523,0.3937008,35.82523,0.7874016,31.8185,0.3937008,31.8185,0.7874016,41.60322,0.3937008,41.60322,0.7874016,-3.937008,39.37008,-1.9825E-13,39.37008,-3.56651,33.71737,-2.461355,28.16138,-0.6404522,22.79717,0.3368165,34.23125,1.865042,17.71654,1.341503,29.18035,2.996869,24.3038,5.012257,13.00639,5.27459,19.68504,8.747344,8.747344,8.135695,15.40309,11.53123,11.53123,13.00639,5.012257,15.40309,8.135695,17.71654,1.865042,19.68504,5.27459,22.79717,-0.6404522,24.3038,2.996869,28.16138,-2.461355,29.18035,1.341503,33.71737,-3.56651,34.23125,0.3368165,39.37008,-3.937008,39.37008,-3.403775E-13,-33.87844,0.7874016,-33.87844,0.3937008,-39.54328,0.7874016,-39.54328,0.3937008,-28.10045,0.7874016,-28.10045,0.3937008,-33.76529,0.7874016,-33.76529,0.3937008,-21.7932,0.7874016,-21.7932,0.3937008,-27.45804,0.7874016,-27.45804,0.3937008,-15.06459,0.7874016,-15.06459,0.3937008,-20.72943,0.7874016,-20.72943,0.3937008,-8.029761,0.7874016,-8.029761,0.3937008,-13.6946,0.7874016,-13.6946,0.3937008,-0.8090768,0.7874016,-0.8090768,0.3937008,-6.473915,0.7874016,-6.473915,0.3937008,6.473915,0.3937008,0.8090768,0.3937008,6.473915,0.7874016,0.8090768,0.7874016,13.6946,0.3937008,8.029761,0.3937008,13.6946,0.7874016,8.029761,0.7874016,15.06459,0.3937008,15.06459,0.7874016,20.72943,0.3937008,20.72943,0.7874016,21.7932,0.3937008,21.7932,0.7874016,27.45804,0.3937008,27.45804,0.7874016,28.10045,0.3937008,28.10045,0.7874016,33.76529,0.3937008,33.76529,0.7874016,33.87844,0.3937008,33.87844,0.7874016,39.54328,0.3937008,39.54328,0.7874016,-7.874016,39.37008,-3.937008,39.37008,-7.469836,33.20349,-6.264212,27.14241,-4.277773,21.29055,-3.56651,33.71737,-1.544507,15.74803,-2.461355,28.16138,-0.6404522,22.79717,1.888819,10.6097,1.865042,17.71654,5.012257,13.00639,5.963459,5.963459,8.747344,8.747344,10.6097,1.888819,13.00639,5.012257,15.74803,-1.544507,17.71654,1.865042,21.29055,-4.277773,22.79717,-0.6404522,27.14241,-6.264212,28.16138,-2.461355,33.20349,-7.469836,33.71737,-3.56651,39.37008,-7.874016,39.37008,-3.937008,-35.43307,39.37008,-31.49606,39.37008,-34.79312,29.60631,-32.88422,20.0096,-29.73902,10.74415,-30.88979,30.12019,-29.08136,21.02857,-25.41135,1.968504,-26.1017,12.25078,-22.0018,3.937008,-19.97525,-6.167193,-16.85181,-3.770495,-13.52374,-13.52374,-10.73985,-10.73985,-6.167193,-19.97525,-3.770495,-16.85181,1.968504,-25.41135,3.937008,-22.0018,10.74415,-29.73902,12.25078,-26.1017,20.0096,-32.88422,21.02857,-29.08136,29.60631,-34.79312,30.12019,-30.88979,39.37008,-35.43307,39.37008,-31.49606,1.002676E-13,-1.55109E-12,35.43307,0.3937008,39.37008,-1.55109E-12,39.37008,0.7874016,35.43307,0.7874016,7.874016,0.3937008,3.937008,0.3937008,1.002676E-13,0.7874016,31.49606,0.3937008,20.07874,0.3937008,19.29134,0.3937008,3.937008,0.7874016,-39.37008,0.7874016,-35.43307,0.3937008,-39.37008,-2.331118E-13,-3.293496E-13,-2.177907E-13,-31.49606,0.3937008,-20.07874,0.3937008,-19.29134,0.3937008,-7.874016,0.3937008,-3.937008,0.3937008,-3.937008,0.7874016,-3.293496E-13,0.7874016,-35.43307,0.7874016,-20.07874,39.37008,-19.57015,31.61045,-18.05307,23.98359,-15.55347,16.62,-12.11411,9.645669,-7.79384,3.179931,-2.666584,-2.666584,3.179931,-7.79384,9.645669,-12.11411,16.62,-15.55347,23.98359,-18.05307,31.61045,-19.57015,39.37008,-20.07874,-19.29134,39.37008,-18.78948,31.71323,-17.2925,24.18739,-14.826,16.92133,-11.4322,10.03937,-7.169153,3.659271,-2.109807,-2.109807,3.659271,-7.169153,10.03937,-11.4322,16.92133,-14.826,24.18739,-17.2925,31.71323,-18.78948,39.37008,-19.29134 + } + UVIndex: *924 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,5,2,7,6,2,8,7,2,9,8,2,10,9,2,11,9,10,12,11,10,13,11,12,14,11,13,15,11,14,16,11,15,17,11,16,18,17,16,19,17,18,20,17,19,21,20,19,22,20,21,23,20,22,24,23,22,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,123,125,127,126,125,128,126,127,129,128,127,130,128,129,131,130,129,132,131,129,133,131,132,134,133,132,135,133,134,136,135,134,137,135,136,138,137,136,139,137,138,140,139,138,141,139,140,142,141,140,143,141,142,144,143,142,145,143,144,146,145,144,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,197,199,201,197,200,202,201,200,203,201,202,204,203,202,205,204,202,206,204,205,207,206,205,208,206,207,209,208,207,210,209,207,211,209,210,212,211,210,213,211,212,214,213,212,215,213,214,216,215,214,217,215,216,218,217,216,219,217,218,220,219,218,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,271,273,275,271,274,276,275,274,277,275,276,278,277,276,279,278,276,280,278,279,281,280,279,282,281,279,283,281,282,284,283,282,285,283,284,286,285,284,287,285,286,288,287,286,289,287,288,290,289,288,291,289,290,292,291,290,293,291,292,294,293,292,295,293,294,296,298,297,299,297,298,300,297,299,301,297,300,302,301,300,303,302,300,304,302,303,305,304,303,306,305,303,307,305,306,308,307,306,309,307,308,310,309,308,311,309,310,312,311,310,313,311,312,314,313,312,315,313,314,316,315,314,317,315,316,318,317,316,319,317,318,320,319,318,321,319,320,322,324,323,325,323,324,326,323,325,323,327,322,327,328,322,329,322,328,330,327,323,330,331,327,332,327,331,333,329,328,334,336,335,337,335,336,338,335,337,339,338,337,340,339,337,341,340,337,342,341,337,343,342,337,344,343,337,335,345,334,297,301,346,302,346,301,304,346,302,305,346,304,347,346,305,307,347,305,348,347,307,349,348,307,309,349,307,350,349,309,351,350,309,311,351,309,352,351,311,313,352,311,353,352,313,354,353,313,315,354,313,355,354,315,317,355,315,356,355,317,319,356,317,357,356,319,321,357,319,358,357,321,359,360,270,361,270,360,362,270,361,363,270,362,364,270,363,272,270,364,273,272,364,365,273,364,274,273,365,276,274,365,366,276,365,279,276,366,282,279,366,367,282,366,284,282,367,368,284,367,286,284,368,288,286,368,369,288,368,290,288,369,370,290,369,292,290,370,371,292,370,294,292,371,346,347,359,360,359,347,348,360,347,361,360,348,349,361,348,362,361,349,350,362,349,363,362,350,351,363,350,364,363,351,352,364,351,365,364,352,353,365,352,366,365,353,354,366,353,367,366,354,355,367,354,368,367,355,356,368,355,369,368,356,357,369,356,370,369,357,358,370,357,371,370,358 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *308 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_curve, Model::RootNode + C: "OO",5407669770439120813,0 + + ;Geometry::, Model::Mesh road_curve + C: "OO",5370490824815625928,5407669770439120813 + + ;Material::pavement, Model::Mesh road_curve + C: "OO",17046,5407669770439120813 + + ;Material::asphaltEdge, Model::Mesh road_curve + C: "OO",17042,5407669770439120813 + + ;Material::asphalt, Model::Mesh road_curve + C: "OO",9934,5407669770439120813 + + ;Material::line, Model::Mesh road_curve + C: "OO",9174,5407669770439120813 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curve.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curve.fbx.import new file mode 100644 index 0000000..bb9ce28 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curve.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://chwk1ax5ybpsm" +path="res://.godot/imported/road_curve.fbx-fa58100b2897e2eb7cabe3793665a961.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_curve.fbx" +dest_files=["res://.godot/imported/road_curve.fbx-fa58100b2897e2eb7cabe3793665a961.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveBarrier.fbx new file mode 100644 index 0000000..945b535 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 18 + Millisecond: 307 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_curveBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_curveBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5535128936182883955, "Model::road_curveBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5017139550707891161, "Geometry::", "Mesh" { + Vertices: *936 { + a: -0.05096399,0.8,7.334164,0.410171,5.89373E-15,8.629476,0.2118821,0.8,8.655581,0.1422212,5.442535E-15,7.2824,-4.75,3.186562E-15,0.9067332,-4.85,0.8,1.079938,-6.058361,0.8,0.4840408,-5.981824,3.186562E-15,0.2992649,0.2118821,0.8,8.655581,0.5,6.796119E-15,10,0.3,0.8,10,0.410171,5.89373E-15,8.629476,-2.7168,0.8,2.7168,-2.575379,3.186562E-15,2.575379,-1.66979,3.637757E-15,3.608005,-1.828461,0.8,3.729757,-3.608005,3.186562E-15,1.66979,-3.729757,0.8,1.828461,-4.85,0.8,1.079938,-4.75,3.186562E-15,0.9067332,-1.079938,0.8,4.85,-0.9067332,4.088951E-15,4.75,-0.2992649,4.540146E-15,5.981824,-0.4840408,0.8,6.058361,-1.828461,0.8,3.729757,-0.9067332,4.088951E-15,4.75,-1.079938,0.8,4.85,-1.66979,3.637757E-15,3.608005,-2.575379,3.186562E-15,2.575379,-2.7168,0.8,2.7168,-3.729757,0.8,1.828461,-3.608005,3.186562E-15,1.66979,-10,4.088951E-15,-0.5,-8.629476,3.637757E-15,-0.410171,-10,0.8,-0.3,-8.655581,0.8,-0.2118821,-5.981824,3.186562E-15,0.2992649,-6.058361,0.8,0.4840408,-7.334164,0.8,0.05096399,-7.2824,3.186562E-15,-0.1422212,-0.4840408,0.8,6.058361,0.1422212,5.442535E-15,7.2824,-0.05096399,0.8,7.334164,-0.2992649,4.540146E-15,5.981824,-7.2824,3.186562E-15,-0.1422212,-7.334164,0.8,0.05096399,-8.655581,0.8,-0.2118821,-8.629476,3.637757E-15,-0.410171,0.3,0.8,10,7.666699E-12,0.8,10,0.2118821,0.8,8.655581,-0.05096399,0.8,7.334164,-0.08555138,0.8,8.694737,-0.4840408,0.8,6.058361,-0.3407417,0.8,7.411809,-0.7612047,0.8,6.173166,-1.079938,0.8,4.85,-1.339746,0.8,5,-1.828461,0.8,3.729757,-2.066467,0.8,3.912386,-2.7168,0.8,2.7168,-2.928932,0.8,2.928932,-3.729757,0.8,1.828461,-3.912386,0.8,2.066467,-4.85,0.8,1.079938,-5,0.8,1.339746,-6.058361,0.8,0.4840408,-6.173166,0.8,0.7612047,-7.334164,0.8,0.05096399,-7.411809,0.8,0.3407417,-8.655581,0.8,-0.2118821,-8.694737,0.8,0.08555138,-10,0.8,-0.3,-10,0.8,4.078799E-13,0.5,6.796119E-15,10,7.666699E-12,7.698508E-15,10,0.3,0.8,10,7.666699E-12,0.8,10,-10,4.088951E-15,-0.5,-10,0.8,-0.3,-10,1.130807E-14,4.078799E-13,-10,0.8,4.078799E-13,-8.694737,1.085687E-14,0.08555138,-10,1.130807E-14,4.078799E-13,-8.694737,0.8,0.08555138,-10,0.8,4.078799E-13,-7.411809,1.040568E-14,0.3407417,-8.694737,1.085687E-14,0.08555138,-7.411809,0.8,0.3407417,-8.694737,0.8,0.08555138,0.5,6.796119E-15,10,0.410171,5.89373E-15,8.629476,7.666699E-12,7.698508E-15,10,0.1422212,5.442535E-15,7.2824,-0.08555138,7.698508E-15,8.694737,-0.2992649,4.540146E-15,5.981824,-0.3407417,7.698508E-15,7.411809,-0.9067332,4.088951E-15,4.75,-0.7612047,7.698508E-15,6.173166,-1.339746,7.698508E-15,5,-1.66979,3.637757E-15,3.608005,-2.066467,8.149703E-15,3.912386,-2.575379,3.186562E-15,2.575379,-2.928932,8.600898E-15,2.928932,-3.608005,3.186562E-15,1.66979,-3.912386,9.052092E-15,2.066467,-4.75,3.186562E-15,0.9067332,-5,9.503287E-15,1.339746,-5.981824,3.186562E-15,0.2992649,-6.173166,9.954482E-15,0.7612047,-7.2824,3.186562E-15,-0.1422212,-7.411809,1.040568E-14,0.3407417,-8.629476,3.637757E-15,-0.410171,-8.694737,1.085687E-14,0.08555138,-10,4.088951E-15,-0.5,-10,1.130807E-14,4.078799E-13,-6.173166,9.954482E-15,0.7612047,-7.411809,1.040568E-14,0.3407417,-6.173166,0.8,0.7612047,-7.411809,0.8,0.3407417,-5,9.503287E-15,1.339746,-6.173166,9.954482E-15,0.7612047,-5,0.8,1.339746,-6.173166,0.8,0.7612047,-2.928932,8.600898E-15,2.928932,-3.912386,9.052092E-15,2.066467,-2.928932,0.8,2.928932,-3.912386,0.8,2.066467,-2.928932,8.600898E-15,2.928932,-2.928932,0.8,2.928932,-2.066467,8.149703E-15,3.912386,-2.066467,0.8,3.912386,-3.912386,9.052092E-15,2.066467,-5,9.503287E-15,1.339746,-3.912386,0.8,2.066467,-5,0.8,1.339746,-1.339746,7.698508E-15,5,-1.339746,0.8,5,-0.7612047,7.698508E-15,6.173166,-0.7612047,0.8,6.173166,-0.7612047,7.698508E-15,6.173166,-0.7612047,0.8,6.173166,-0.3407417,7.698508E-15,7.411809,-0.3407417,0.8,7.411809,-2.066467,8.149703E-15,3.912386,-2.066467,0.8,3.912386,-1.339746,7.698508E-15,5,-1.339746,0.8,5,-0.3407417,7.698508E-15,7.411809,-0.3407417,0.8,7.411809,-0.08555138,7.698508E-15,8.694737,-0.08555138,0.8,8.694737,-0.08555138,7.698508E-15,8.694737,-0.08555138,0.8,8.694737,7.666699E-12,7.698508E-15,10,7.666699E-12,0.8,10,10,7.670309E-15,10,9.828897,0,7.389476,9.499999,4.511947E-16,10,9.318516,0,4.823619,9.333174,4.511947E-16,7.454739,8.835553,4.511947E-16,4.953029,8.477591,4.511947E-16,2.346331,8.015651,9.023893E-16,2.537673,7.320508,9.023893E-16,-9.493135E-13,6.887495,1.353584E-15,0.25,5.867067,1.353584E-15,-2.175229,5.47039,1.804779E-15,-1.870848,4.142136,2.255973E-15,-4.142136,3.788582,2.255973E-15,-3.788582,2.175229,3.158362E-15,-5.867067,1.870848,3.158362E-15,-5.47039,2.093543E-13,4.060752E-15,-7.320508,-0.25,4.060752E-15,-6.887495,-2.346331,4.963141E-15,-8.477591,-2.537673,4.963141E-15,-8.015651,-4.823619,5.86553E-15,-9.318516,-4.953029,5.86553E-15,-8.835553,-7.389476,6.767919E-15,-9.828897,-7.454739,6.767919E-15,-9.333174,-10,7.670309E-15,-10,-10,7.670309E-15,-9.499999,9.828897,0.8,7.389476,9.828897,0,7.389476,10,0.8,10,10,7.670309E-15,10,-2.346331,4.963141E-15,-8.477591,-2.346331,0.8,-8.477591,-4.823619,5.86553E-15,-9.318516,-4.823619,0.8,-9.318516,2.175229,3.158362E-15,-5.867067,2.175229,0.8,-5.867067,2.093543E-13,4.060752E-15,-7.320508,2.093543E-13,0.8,-7.320508,9.318516,0.8,4.823619,9.318516,0,4.823619,9.828897,0.8,7.389476,9.828897,0,7.389476,7.320508,0.8,-9.493135E-13,7.320508,9.023893E-16,-9.493135E-13,8.477591,0.8,2.346331,8.477591,4.511947E-16,2.346331,2.093543E-13,4.060752E-15,-7.320508,2.093543E-13,0.8,-7.320508,-2.346331,4.963141E-15,-8.477591,-2.346331,0.8,-8.477591,4.142136,2.255973E-15,-4.142136,4.142136,0.8,-4.142136,2.175229,3.158362E-15,-5.867067,2.175229,0.8,-5.867067,5.867067,0.8,-2.175229,5.867067,1.353584E-15,-2.175229,7.320508,0.8,-9.493135E-13,7.320508,9.023893E-16,-9.493135E-13,-4.823619,5.86553E-15,-9.318516,-4.823619,0.8,-9.318516,-7.389476,6.767919E-15,-9.828897,-7.389476,0.8,-9.828897,-7.389476,6.767919E-15,-9.828897,-7.389476,0.8,-9.828897,-10,7.670309E-15,-10,-10,0.8,-10,8.477591,0.8,2.346331,8.477591,4.511947E-16,2.346331,9.318516,0.8,4.823619,9.318516,0,4.823619,4.142136,0.8,-4.142136,4.142136,2.255973E-15,-4.142136,5.867067,0.8,-2.175229,5.867067,1.353584E-15,-2.175229,-2.537673,4.963141E-15,-8.015651,-4.953029,5.86553E-15,-8.835553,-2.461136,0.8,-8.200427,-4.901265,0.8,-9.028739,-4.901265,0.8,-9.028739,-7.454739,6.767919E-15,-9.333174,-7.428634,0.8,-9.531464,-4.953029,5.86553E-15,-8.835553,-7.454739,6.767919E-15,-9.333174,-10,7.670309E-15,-9.499999,-7.428634,0.8,-9.531464,-10,0.8,-9.7,-0.15,0.8,-7.0607,-2.537673,4.963141E-15,-8.015651,-2.461136,0.8,-8.200427,-0.25,4.060752E-15,-6.887495,3.788582,2.255973E-15,-3.788582,1.870848,3.158362E-15,-5.47039,3.930004,0.8,-3.930004,1.9926,0.8,-5.629061,3.788582,2.255973E-15,-3.788582,5.629061,0.8,-1.9926,5.47039,1.804779E-15,-1.870848,3.930004,0.8,-3.930004,5.47039,1.804779E-15,-1.870848,7.0607,0.8,0.15,6.887495,1.353584E-15,0.25,5.629061,0.8,-1.9926,8.015651,9.023893E-16,2.537673,8.200427,0.8,2.461136,9.028739,0.8,4.901265,8.835553,4.511947E-16,4.953029,8.835553,4.511947E-16,4.953029,9.028739,0.8,4.901265,9.531464,0.8,7.428634,9.333174,4.511947E-16,7.454739,6.887495,1.353584E-15,0.25,8.200427,0.8,2.461136,8.015651,9.023893E-16,2.537673,7.0607,0.8,0.15,9.499999,4.511947E-16,10,9.333174,4.511947E-16,7.454739,9.7,0.8,10,9.531464,0.8,7.428634,1.870848,3.158362E-15,-5.47039,-0.25,4.060752E-15,-6.887495,1.9926,0.8,-5.629061,-0.15,0.8,-7.0607,10,0.8,10,9.7,0.8,10,9.828897,0.8,7.389476,9.531464,0.8,7.428634,9.318516,0.8,4.823619,9.028739,0.8,4.901265,8.477591,0.8,2.346331,8.200427,0.8,2.461136,7.320508,0.8,-9.493135E-13,7.0607,0.8,0.15,5.867067,0.8,-2.175229,5.629061,0.8,-1.9926,4.142136,0.8,-4.142136,3.930004,0.8,-3.930004,2.175229,0.8,-5.867067,1.9926,0.8,-5.629061,2.093543E-13,0.8,-7.320508,-0.15,0.8,-7.0607,-2.346331,0.8,-8.477591,-2.461136,0.8,-8.200427,-4.823619,0.8,-9.318516,-4.901265,0.8,-9.028739,-7.389476,0.8,-9.828897,-7.428634,0.8,-9.531464,-10,0.8,-10,-10,0.8,-9.7,-10,7.670309E-15,-10,-10,0.8,-10,-10,7.670309E-15,-9.499999,-10,0.8,-9.7,9.499999,4.511947E-16,10,9.7,0.8,10,10,7.670309E-15,10,10,0.8,10 + } + PolygonVertexIndex: *600 { + a: 0,2,-2,0,1,-4,4,6,-6,7,6,-5,8,10,-10,8,9,-12,12,14,-14,12,15,-15,16,18,-18,19,18,-17,20,22,-22,20,23,-23,24,26,-26,24,25,-28,28,30,-30,31,30,-29,32,34,-34,33,34,-36,36,38,-38,39,38,-37,40,42,-42,40,41,-44,44,46,-46,47,46,-45,48,50,-50,51,49,-51,52,49,-52,53,52,-52,54,52,-54,55,54,-54,56,55,-54,57,55,-57,58,57,-57,59,57,-59,60,59,-59,61,59,-61,62,61,-61,63,61,-63,64,63,-63,65,63,-65,66,65,-65,67,65,-67,68,67,-67,69,67,-69,70,69,-69,71,69,-71,72,71,-71,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,93,-93,95,93,-95,96,95,-95,97,95,-97,98,97,-97,99,97,-99,100,97,-100,101,100,-100,102,100,-102,103,102,-102,104,102,-104,105,104,-104,106,104,-106,107,106,-106,108,106,-108,109,108,-108,110,108,-110,111,110,-110,112,110,-112,113,112,-112,114,112,-114,115,114,-114,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,159,-159,161,159,-161,162,159,-162,163,162,-162,164,162,-164,165,164,-164,166,164,-166,167,166,-166,168,166,-168,169,168,-168,170,168,-170,171,170,-170,172,170,-172,173,172,-172,174,172,-174,175,174,-174,176,174,-176,177,176,-176,178,176,-178,179,178,-178,180,178,-180,181,180,-180,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,232,233,-232,234,236,-236,237,234,-236,238,240,-240,240,241,-240,242,244,-244,245,242,-244,246,248,-248,248,249,-248,250,252,-252,250,251,-254,254,256,-256,254,255,-258,258,260,-260,258,261,-261,262,264,-264,262,265,-265,266,268,-268,266,267,-270,270,272,-272,271,272,-274,274,276,-276,276,277,-276,278,280,-280,281,279,-281,282,281,-281,283,281,-283,284,283,-283,285,283,-285,286,285,-285,287,285,-287,288,287,-287,289,287,-289,290,289,-289,291,289,-291,292,291,-291,293,291,-293,294,293,-293,295,293,-295,296,295,-295,297,295,-297,298,297,-297,299,297,-299,300,299,-299,301,299,-301,302,301,-301,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1800 { + a: 0.9370857,0.2425356,-0.2510914,0.9618428,0.2425356,-0.126629,0.9618428,0.2425356,-0.126629,0.9370857,0.2425356,-0.2510914,0.9618428,0.2425356,-0.126629,0.9370857,0.2425356,-0.2510914,0.4850713,0.2425356,-0.8401681,0.3712575,0.2425356,-0.8962947,0.4850713,0.2425356,-0.8401681,0.3712575,0.2425356,-0.8962947,0.3712575,0.2425356,-0.8962947,0.4850713,0.2425356,-0.8401681,0.9618428,0.2425356,-0.126629,0.9681872,0.2420468,-0.06345834,0.9681872,0.2420468,-0.06345834,0.9618428,0.2425356,-0.126629,0.9681872,0.2420468,-0.06345834,0.9618428,0.2425356,-0.126629,0.6859944,0.2425356,-0.6859944,0.7696658,0.2425357,-0.5905854,0.6859944,0.2425356,-0.6859944,0.6859944,0.2425356,-0.6859944,0.7696658,0.2425357,-0.5905854,0.7696658,0.2425357,-0.5905854,0.5905854,0.2425357,-0.7696658,0.4850713,0.2425356,-0.8401681,0.5905854,0.2425357,-0.7696658,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.5905854,0.2425357,-0.7696658,0.8401681,0.2425356,-0.4850713,0.8962947,0.2425356,-0.3712575,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0.8962947,0.2425356,-0.3712575,0.8962947,0.2425356,-0.3712575,0.7696658,0.2425357,-0.5905854,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0.7696658,0.2425357,-0.5905854,0.8401681,0.2425356,-0.4850713,0.7696658,0.2425357,-0.5905854,0.6859944,0.2425356,-0.6859944,0.5905854,0.2425357,-0.7696658,0.6859944,0.2425356,-0.6859944,0.5905854,0.2425357,-0.7696658,0.5905854,0.2425357,-0.7696658,0.6859944,0.2425356,-0.6859944,0.06345834,0.2420468,-0.9681872,0.06345834,0.2420468,-0.9681872,0.126629,0.2425356,-0.9618428,0.126629,0.2425356,-0.9618428,0.06345834,0.2420468,-0.9681872,0.126629,0.2425356,-0.9618428,0.3712575,0.2425356,-0.8962947,0.2510914,0.2425356,-0.9370857,0.3712575,0.2425356,-0.8962947,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0.3712575,0.2425356,-0.8962947,0.8962947,0.2425356,-0.3712575,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.8962947,0.2425356,-0.3712575,0.9370857,0.2425356,-0.2510914,0.8962947,0.2425356,-0.3712575,0.2510914,0.2425356,-0.9370857,0.126629,0.2425356,-0.9618428,0.2510914,0.2425356,-0.9370857,0.126629,0.2425356,-0.9618428,0.126629,0.2425356,-0.9618428,0.2510914,0.2425356,-0.9370857,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,-0.3712575,0.2425356,0.8962947,-0.3712575,0.2425356,0.8962947,-0.2510914,0.2425356,0.9370857,-0.3712575,0.2425356,0.8962947,-0.2510914,0.2425356,0.9370857,-0.2510914,0.2425356,0.9370857,-0.2510914,0.2425356,0.9370857,-0.126629,0.2425356,0.9618428,-0.126629,0.2425356,0.9618428,-0.2510914,0.2425356,0.9370857,-0.2510914,0.2425356,0.9370857,-0.126629,0.2425356,0.9618428,-0.126629,0.2425356,0.9618428,-0.126629,0.2425356,0.9618428,-0.06345834,0.2420468,0.9681872,-0.126629,0.2425356,0.9618428,-0.06345834,0.2420468,0.9681872,-0.06345834,0.2420468,0.9681872,-0.4850713,0.2425356,0.8401681,-0.3712575,0.2425356,0.8962947,-0.3712575,0.2425356,0.8962947,-0.4850713,0.2425356,0.8401681,-0.4850713,0.2425356,0.8401681,-0.3712575,0.2425356,0.8962947,-0.6859944,0.2425356,0.6859944,-0.6859944,0.2425356,0.6859944,-0.5905854,0.2425357,0.7696658,-0.6859944,0.2425356,0.6859944,-0.5905854,0.2425357,0.7696658,-0.5905854,0.2425357,0.7696658,-0.6859944,0.2425356,0.6859944,-0.7696658,0.2425357,0.5905854,-0.7696658,0.2425357,0.5905854,-0.6859944,0.2425356,0.6859944,-0.7696658,0.2425357,0.5905854,-0.6859944,0.2425356,0.6859944,-0.7696658,0.2425357,0.5905854,-0.8401681,0.2425356,0.4850713,-0.8401681,0.2425356,0.4850713,-0.7696658,0.2425357,0.5905854,-0.8401681,0.2425356,0.4850713,-0.7696658,0.2425357,0.5905854,-0.8962947,0.2425356,0.3712575,-0.9370857,0.2425356,0.2510914,-0.8962947,0.2425356,0.3712575,-0.8962947,0.2425356,0.3712575,-0.9370857,0.2425356,0.2510914,-0.9370857,0.2425356,0.2510914,-0.9370857,0.2425356,0.2510914,-0.9618428,0.2425356,0.126629,-0.9370857,0.2425356,0.2510914,-0.9370857,0.2425356,0.2510914,-0.9618428,0.2425356,0.126629,-0.9618428,0.2425356,0.126629,-0.8401681,0.2425356,0.4850713,-0.8962947,0.2425356,0.3712575,-0.8962947,0.2425356,0.3712575,-0.8401681,0.2425356,0.4850713,-0.8962947,0.2425356,0.3712575,-0.8401681,0.2425356,0.4850713,-0.9681872,0.2420468,0.06345834,-0.9681872,0.2420468,0.06345834,-0.9618428,0.2425356,0.126629,-0.9618428,0.2425356,0.126629,-0.9681872,0.2420468,0.06345834,-0.9618428,0.2425356,0.126629,-0.5905854,0.2425357,0.7696658,-0.5905854,0.2425357,0.7696658,-0.4850713,0.2425356,0.8401681,-0.5905854,0.2425357,0.7696658,-0.4850713,0.2425356,0.8401681,-0.4850713,0.2425356,0.8401681,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *624 { + a: -28.2807,4.467074,-33.63654,1.220942,-33.58504,4.467074,-28.2292,1.220942,15.19334,2.776959,15.24484,6.02309,20.54918,6.02309,20.60068,2.776959,-34.05869,3.393934,-39.41453,0.1478028,-39.36303,3.393934,-34.00719,0.1478028,-0.9893216,6.709437,-0.9378231,3.463306,-6.345169,3.463306,-6.29367,6.709437,8.158507,3.233211,8.210006,6.479342,13.51435,6.479342,13.56585,3.233211,-15.24484,6.02309,-15.19334,2.776959,-20.60068,2.776959,-20.54918,6.02309,-8.210006,6.479342,-13.56585,3.233211,-13.51435,6.479342,-8.158507,3.233211,0.9378231,3.463306,0.9893216,6.709437,6.29367,6.709437,6.345169,3.463306,39.41453,0.1478028,34.00719,0.1478028,39.36303,3.393934,34.05869,3.393934,21.92194,2.102355,21.97344,5.348486,27.27779,5.348486,27.32929,2.102355,-21.97344,5.348486,-27.32929,2.102355,-27.27779,5.348486,-21.92194,2.102355,28.2292,1.220942,28.2807,4.467074,33.58504,4.467074,33.63654,1.220942,-1.181102,39.37008,-3.018224E-11,39.37008,-0.8341814,34.07709,0.2006456,28.87466,0.3368165,34.23125,1.905673,23.85181,1.341503,29.18035,2.996869,24.3038,4.251726,19.09449,5.27459,19.68504,7.198664,14.68408,8.135695,15.40309,10.69606,10.69606,11.53123,11.53123,14.68408,7.198664,15.40309,8.135695,19.09449,4.251726,19.68504,5.27459,23.85181,1.905673,24.3038,2.996869,28.87466,0.2006456,29.18035,1.341503,34.07709,-0.8341814,34.23125,0.3368165,39.37008,-1.181102,39.37008,1.606861E-12,1.968504,1.498995E-11,5.041342E-11,1.49935E-11,1.181102,3.149606,5.041342E-11,3.149606,-1.968504,2.517767E-11,-1.181102,3.149606,-3.199866E-11,2.520609E-11,-3.199866E-11,3.149606,-34.13593,4.092876E-14,-39.28579,4.270512E-14,-34.13593,3.149606,-39.28579,3.149606,-28.35795,3.546608E-14,-33.5078,3.724244E-14,-28.35795,3.149606,-33.5078,3.149606,1.968504,39.37008,1.614847,33.97431,3.018386E-11,39.37008,0.5599259,28.67087,-0.3368165,34.23125,-1.178208,23.55049,-1.341503,29.18035,-3.569816,18.70079,-2.996869,24.3038,-5.27459,19.68504,-6.573976,14.20474,-8.135695,15.40309,-10.13929,10.13929,-11.53123,11.53123,-14.20474,6.573976,-15.40309,8.135695,-18.70079,3.569816,-19.68504,5.27459,-23.55049,1.178208,-24.3038,2.996869,-28.67087,-0.5599259,-29.18035,1.341503,-33.97431,-1.614847,-34.23125,0.3368165,-39.37008,-1.968504,-39.37008,1.605827E-12,-22.05069,3.012122E-14,-27.20054,3.189758E-14,-22.05069,3.149606,-27.20054,3.149606,-15.32208,2.527109E-14,-20.47194,2.704744E-14,-15.32208,3.149606,-20.47194,3.149606,-1.066569,1.822474E-14,-6.216422,2.00011E-14,-1.066569,3.149606,-6.216422,3.149606,1.066569,1.81577E-14,1.066569,3.149606,6.216422,1.638134E-14,6.216422,3.149606,-8.287254,2.122964E-14,-13.43711,2.3006E-14,-8.287254,3.149606,-13.43711,3.149606,15.32208,1.789356E-14,15.32208,3.149606,20.47194,1.789356E-14,20.47194,3.149606,22.05069,2.094269E-14,22.05069,3.149606,27.20054,2.094269E-14,27.20054,3.149606,8.287254,1.748862E-14,8.287254,3.149606,13.43711,1.571226E-14,13.43711,3.149606,28.35795,2.456264E-14,28.35795,3.149606,33.5078,2.456264E-14,33.5078,3.149606,34.13593,2.838731E-14,34.13593,3.149606,39.28579,2.838731E-14,39.28579,3.149606,39.37008,39.37008,38.69645,29.09243,37.40157,39.37008,36.68707,18.99063,36.74478,29.34937,34.78564,19.50011,33.37634,9.237525,31.55768,9.990839,28.8209,-3.737455E-12,27.11612,0.984252,23.09869,-8.563892,21.53697,-7.365543,16.30762,-16.30762,14.91568,-14.91568,8.563892,-23.09869,7.365543,-21.53697,8.242296E-13,-28.8209,-0.984252,-27.11612,-9.237525,-33.37634,-9.990839,-31.55768,-18.99063,-36.68707,-19.50011,-34.78564,-29.09243,-38.69645,-29.34937,-36.74478,-39.37008,-39.37008,-39.37008,-37.40157,-31.561,3.149606,-31.561,1.985739E-14,-41.86071,3.149606,-41.86071,5.005546E-14,19.47576,3.015003E-14,19.47576,3.149606,29.77547,3.370275E-14,29.77547,3.149606,5.712327,2.369039E-14,5.712327,3.149606,16.01203,2.72431E-14,16.01203,3.149606,-25.78302,3.149606,-25.78302,1.805551E-14,-36.08273,3.149606,-36.08273,1.805551E-14,-12.74716,3.149606,-12.74716,1.82211E-14,-23.04686,3.149606,-23.04686,1.644474E-14,12.74716,2.694027E-14,12.74716,3.149606,23.04686,3.049299E-14,23.04686,3.149606,-1.508357,2.056407E-14,-1.508357,3.149606,8.791348,2.411679E-14,8.791348,3.149606,-5.712327,3.149606,-5.712327,1.867545E-14,-16.01203,3.149606,-16.01203,1.68991E-14,25.78302,3.312962E-14,25.78302,3.149606,36.08273,3.668234E-14,36.08273,3.149606,31.561,3.567927E-14,31.561,3.149606,41.86071,3.923198E-14,41.86071,3.149606,-19.47576,3.149606,-19.47576,1.804981E-14,-29.77547,3.149606,-29.77547,1.627346E-14,1.508357,3.149606,1.508357,2.12371E-14,-8.791348,3.149606,-8.791348,1.768439E-14,-19.60451,6.455743,-29.64672,6.455743,-19.55301,9.701875,-29.69822,9.701875,-25.86027,10.58329,-35.95398,7.337156,-36.00548,10.58329,-25.91177,7.337156,-31.68975,8.410295,-41.73196,8.410295,-31.63825,11.65643,-41.78346,11.65643,-12.8244,9.027271,-22.91812,5.78114,-22.96961,9.027271,-12.8759,5.78114,1.379611,5.094792,-8.662602,5.094792,1.431109,8.340923,-8.714101,8.340923,-1.379611,5.094792,8.714101,8.340923,8.662602,5.094792,-1.431109,8.340923,5.841074,5.324887,15.93478,8.571018,15.88329,5.324887,5.789576,8.571018,19.60451,6.455743,19.55301,9.701875,29.69822,9.701875,29.64672,6.455743,25.91177,7.337156,25.86027,10.58329,36.00548,10.58329,35.95398,7.337156,12.8759,5.78114,22.96961,9.027271,22.91812,5.78114,12.8244,9.027271,41.73196,8.410295,31.68975,8.410295,41.78346,11.65643,31.63825,11.65643,-5.841074,5.324887,-15.88329,5.324887,-5.789576,8.571018,-15.93478,8.571018,-39.37008,39.37008,-38.18898,39.37008,-38.69645,29.09243,-37.52545,29.24659,-36.68707,18.99063,-35.54622,19.29632,-33.37634,9.237525,-32.28514,9.689513,-28.8209,-3.736565E-12,-27.79803,0.5905512,-23.09869,-8.563892,-22.16166,-7.844882,-16.30762,-16.30762,-15.47246,-15.47246,-8.563892,-23.09869,-7.844882,-22.16166,-8.22928E-13,-28.8209,0.5905512,-27.79803,9.237525,-33.37634,9.689513,-32.28514,18.99063,-36.68707,19.29632,-35.54622,29.09243,-38.69645,29.24659,-37.52545,39.37008,-39.37008,39.37008,-38.18898,-39.37008,1.131529E-11,-39.37008,3.149606,-37.40157,1.131529E-11,-38.18898,3.149606,37.40157,8.37709E-13,38.18898,3.149606,39.37008,8.661307E-13,39.37008,3.149606 + } + UVIndex: *600 { + a: 0,2,1,0,1,3,4,6,5,7,6,4,8,10,9,8,9,11,12,14,13,12,15,14,16,18,17,19,18,16,20,22,21,20,23,22,24,26,25,24,25,27,28,30,29,31,30,28,32,34,33,33,34,35,36,38,37,39,38,36,40,42,41,40,41,43,44,46,45,47,46,44,48,50,49,51,49,50,52,49,51,53,52,51,54,52,53,55,54,53,56,55,53,57,55,56,58,57,56,59,57,58,60,59,58,61,59,60,62,61,60,63,61,62,64,63,62,65,63,64,66,65,64,67,65,66,68,67,66,69,67,68,70,69,68,71,69,70,72,71,70,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,93,92,95,93,94,96,95,94,97,95,96,98,97,96,99,97,98,100,97,99,101,100,99,102,100,101,103,102,101,104,102,103,105,104,103,106,104,105,107,106,105,108,106,107,109,108,107,110,108,109,111,110,109,112,110,111,113,112,111,114,112,113,115,114,113,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,159,158,161,159,160,162,159,161,163,162,161,164,162,163,165,164,163,166,164,165,167,166,165,168,166,167,169,168,167,170,168,169,171,170,169,172,170,171,173,172,171,174,172,173,175,174,173,176,174,175,177,176,175,178,176,177,179,178,177,180,178,179,181,180,179,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,232,233,231,234,236,235,237,234,235,238,240,239,240,241,239,242,244,243,245,242,243,246,248,247,248,249,247,250,252,251,250,251,253,254,256,255,254,255,257,258,260,259,258,261,260,262,264,263,262,265,264,266,268,267,266,267,269,270,272,271,271,272,273,274,276,275,276,277,275,278,280,279,281,279,280,282,281,280,283,281,282,284,283,282,285,283,284,286,285,284,287,285,286,288,287,286,289,287,288,290,289,288,291,289,290,292,291,290,293,291,292,294,293,292,295,293,294,296,295,294,297,295,296,298,297,296,299,297,298,300,299,298,301,299,300,302,301,300,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *200 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_curveBarrier, Model::RootNode + C: "OO",5535128936182883955,0 + + ;Geometry::, Model::Mesh road_curveBarrier + C: "OO",5017139550707891161,5535128936182883955 + + ;Material::pavement, Model::Mesh road_curveBarrier + C: "OO",17046,5535128936182883955 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveBarrier.fbx.import new file mode 100644 index 0000000..8314b0c --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cmjp2cqkp8x71" +path="res://.godot/imported/road_curveBarrier.fbx-01988a31eb84cc48016efd5c84ce58d0.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_curveBarrier.fbx" +dest_files=["res://.godot/imported/road_curveBarrier.fbx-01988a31eb84cc48016efd5c84ce58d0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersection.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersection.fbx new file mode 100644 index 0000000..2420245 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersection.fbx @@ -0,0 +1,381 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 18 + Millisecond: 449 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_curveIntersection.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_curveIntersection.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5725233743184507950, "Model::road_curveIntersection", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5310587382253366798, "Geometry::", "Mesh" { + Vertices: *1125 { + a: 5.452214,0.09999999,-1,5.452214,0.2,-1,6.120393,0.09999999,-4.872902E-14,6.120393,0.2,-2.887646E-14,6.454483,0.09999999,0.5,6.454483,0.2,0.5,-5.790482,0.09999999,-0.1626749,-5.46061,0.2,-2.887646E-14,-5.790482,0.2,-0.1626749,-4.5,0.2,0.4737206,-5.46061,0.09999999,-3.429079E-14,-4.5,0.09999999,0.4737206,-10,0.09999999,-1,-8.564212,0.09999999,-0.9058934,-10,0.2,-1,-8.564212,0.2,-0.9058934,-4.5,0.09999999,0.4737206,-3.303624,0.09999999,1.273113,-4.5,0.2,0.4737206,-3.303624,0.2,1.273113,-5.790482,0.09999999,-0.1626749,-5.790482,0.2,-0.1626749,-7.152991,0.09999999,-0.6251841,-7.152991,0.2,-0.6251841,-7.152991,0.09999999,-0.6251841,-7.152991,0.2,-0.6251841,-8.564212,0.09999999,-0.9058934,-8.564212,0.2,-0.9058934,10,0.2,-1,10,0.2,-2.887646E-14,5.452214,0.2,-1,7.320508,0.2,-5.775292E-14,6.454483,0.2,0.5,7.553711,0.2,2.729015,8.352591,0.2,5.082438,8.477591,0.2,2.346331,8.837453,0.2,7.520002,9.318516,0.2,4.823619,9,0.2,10,9.828897,0.2,7.389476,10,0.2,10,6.120393,0.2,-2.887646E-14,5.452214,0.2,-1,6.454483,0.2,0.5,-10,0,-10,10,0,-10,-10,0.2,-10,10,0.2,-10,10,0,-2.887646E-14,7.320508,4.117151E-15,-5.775292E-14,10,0.2,-2.887646E-14,7.320508,0.2,-5.775292E-14,10,0.09999999,-1,10,0.2,-1,5.452214,0.09999999,-1,5.452214,0.2,-1,10,0.09999999,-9,-10,0.09999999,-9,10,0.2,-9,-10,0.2,-9,1,0.2,10,-2.887646E-14,0.2,10,0.9058934,0.2,8.564212,0.6251841,0.2,7.152991,0.1626749,0.2,5.790482,-0.08555138,0.2,8.694737,-0.4737206,0.2,4.5,-0.3407417,0.2,7.411809,-0.7612047,0.2,6.173166,-1.273113,0.2,3.303624,-1.339746,0.2,5,-2.221825,0.2,2.221825,-2.066467,0.2,3.912386,-2.928932,0.2,2.928932,-3.303624,0.2,1.273113,-3.912386,0.2,2.066467,-4.5,0.2,0.4737206,-5,0.2,1.339746,-5.46061,0.2,-2.887646E-14,-6.173166,0.2,0.7612047,-5.790482,0.2,-0.1626749,-7.152991,0.2,-0.6251841,-7.411809,0.2,0.3407417,-8.564212,0.2,-0.9058934,-8.694737,0.2,0.08555138,-10,0.2,-1,-10,0.2,-2.887646E-14,7.320508,0.2,-5.775292E-14,7.320508,4.117151E-15,-5.775292E-14,8.477591,0.2,2.346331,8.477591,3.665956E-15,2.346331,9.828897,0.2,7.389476,9.828897,3.214762E-15,7.389476,10,0.2,10,10,5.639933E-17,10,-0.08555138,1.127987E-16,8.694737,-0.08555138,0.2,8.694737,-2.887646E-14,5.639933E-17,10,-2.887646E-14,0.2,10,-0.7612047,3.38396E-16,6.173166,-0.7612047,0.2,6.173166,-0.3407417,1.69198E-16,7.411809,-0.3407417,0.2,7.411809,-1.339746,5.639933E-16,5,-1.339746,0.2,5,-0.7612047,3.38396E-16,6.173166,-0.7612047,0.2,6.173166,-2.066467,8.459899E-16,3.912386,-2.066467,0.2,3.912386,-1.339746,5.639933E-16,5,-1.339746,0.2,5,-2.928932,1.184386E-15,2.928932,-2.928932,0.2,2.928932,-2.066467,8.459899E-16,3.912386,-2.066467,0.2,3.912386,-2.928932,1.184386E-15,2.928932,-3.912386,1.579181E-15,2.066467,-2.928932,0.2,2.928932,-3.912386,0.2,2.066467,-3.912386,1.579181E-15,2.066467,-5,2.030376E-15,1.339746,-3.912386,0.2,2.066467,-5,0.2,1.339746,10,0.2,-10,10,0.2,-9,-10,0.2,-10,-10,0.2,-9,8.477591,0.2,2.346331,8.477591,3.665956E-15,2.346331,9.318516,0.2,4.823619,9.318516,3.214762E-15,4.823619,9.318516,0.2,4.823619,9.318516,3.214762E-15,4.823619,9.828897,0.2,7.389476,9.828897,3.214762E-15,7.389476,-0.3407417,1.69198E-16,7.411809,-0.3407417,0.2,7.411809,-0.08555138,1.127987E-16,8.694737,-0.08555138,0.2,8.694737,-10,0,-2.887646E-14,-10,0.2,-2.887646E-14,-8.694737,3.440359E-15,0.08555138,-8.694737,0.2,0.08555138,-5,2.030376E-15,1.339746,-6.173166,2.48157E-15,0.7612047,-5,0.2,1.339746,-6.173166,0.2,0.7612047,-6.173166,2.48157E-15,0.7612047,-7.411809,2.932765E-15,0.3407417,-6.173166,0.2,0.7612047,-7.411809,0.2,0.3407417,-7.411809,2.932765E-15,0.3407417,-8.694737,3.440359E-15,0.08555138,-7.411809,0.2,0.3407417,-8.694737,0.2,0.08555138,6.454483,0.09999999,0.5,6.454483,0.2,0.5,7.553711,0.09999999,2.729015,7.553711,0.2,2.729015,7.553711,0.09999999,2.729015,7.553711,0.2,2.729015,8.352591,0.09999999,5.082438,8.352591,0.2,5.082438,0.9058934,0.2,8.564212,0.9058934,0.09999999,8.564212,1,0.2,10,1,0.09999999,10,0.6251841,0.2,7.152991,0.6251841,0.09999999,7.152991,0.9058934,0.2,8.564212,0.9058934,0.09999999,8.564212,0.1626749,0.2,5.790482,0.1626749,0.09999999,5.790482,0.6251841,0.2,7.152991,0.6251841,0.09999999,7.152991,-0.4737206,0.2,4.5,-0.4737206,0.09999999,4.5,0.1626749,0.2,5.790482,0.1626749,0.09999999,5.790482,-1.273113,0.2,3.303624,-1.273113,0.09999999,3.303624,-0.4737206,0.2,4.5,-0.4737206,0.09999999,4.5,-2.221825,0.2,2.221825,-2.221825,0.09999999,2.221825,-1.273113,0.2,3.303624,-1.273113,0.09999999,3.303624,8.352591,0.09999999,5.082438,8.352591,0.2,5.082438,8.837453,0.09999999,7.520002,8.837453,0.2,7.520002,-3.303624,0.09999999,1.273113,-2.221825,0.09999999,2.221825,-3.303624,0.2,1.273113,-2.221825,0.2,2.221825,8.837453,0.09999999,7.520002,8.837453,0.2,7.520002,9,0.09999999,10,9,0.2,10,10,0.09999999,-8,10,0.09999999,-5.1,-10,0.09999999,-8,-10,0.09999999,-5.1,4.9,0.09999999,10,2,0.09999999,10,4.772529,0.09999999,8.055161,4.392295,0.09999999,6.143596,3.765805,0.09999999,4.298017,2.903778,0.09999999,2.55,1.820965,0.09999999,0.9294547,1.897338,0.09999999,8.433686,1.59111,0.09999999,6.894171,1.005855,0.09999999,-4.331469E-14,1.086554,0.09999999,5.407799,0.3923048,0.09999999,4,0.535891,0.09999999,-0.535891,0.006676198,0.09999999,-1,-0.4797599,0.09999999,2.694863,-0.9294547,0.09999999,-1.820965,-1.514719,0.09999999,1.514719,-1.1974,0.09999999,-2,-2.55,0.09999999,-2.903778,-2.694863,0.09999999,0.4797599,-4.298017,0.09999999,-3.765805,-3.412874,0.09999999,-3.609557E-14,-4,0.09999999,-0.3923048,-5.232284,0.09999999,-1,-6.143596,0.09999999,-4.392295,-5.407799,0.09999999,-1.086554,-6.894171,0.09999999,-1.59111,-8.055161,0.09999999,-4.772529,-8.433686,0.09999999,-1.897338,-10,0.09999999,-4.9,-10,0.09999999,-2,10,0.09999999,-2,3.366292,0.09999999,-2,10,0.09999999,-4.9,-6.091833,0.09999999,-4.58548,-7.673031,0.09999999,-4.9,-4.22148,0.09999999,-3.950581,-2.45,0.09999999,-3.076984,-0.8381801,0.09999999,-2,-0.8077024,0.09999999,-1.979635,0.3093577,0.09999999,-1,0.6773124,0.09999999,-0.6773124,1.271299,0.09999999,-4.331469E-14,1.979635,0.09999999,0.8077024,3.076984,0.09999999,2.45,3.950581,0.09999999,4.22148,4.243269,0.09999999,-1,4.28036,0.09999999,-0.9577057,4.58548,0.09999999,6.091833,4.920279,0.09999999,-4.692424E-14,4.970817,0.09999999,8.029055,5.1,0.09999999,10,5.588457,0.09999999,1,6.629832,0.09999999,3.111698,7.386665,0.09999999,5.341258,7.846007,0.09999999,7.650528,8,0.09999999,10,10,0.2,-1,10,0.09999999,-1,10,0.2,-2.887646E-14,10,0,-2.887646E-14,10,0.09999999,-2,10,0.09999999,-4.9,10,0.09999999,-5.1,10,0.09999999,-8,10,0.09999999,-9,10,0,-10,10,0.2,-9,10,0.2,-10,-2.887646E-14,5.639933E-17,10,9,0.09999999,10,10,5.639933E-17,10,10,0.2,10,9,0.2,10,2,0.09999999,10,1,0.09999999,10,-2.887646E-14,0.2,10,8,0.09999999,10,5.1,0.09999999,10,4.9,0.09999999,10,1,0.2,10,-10,0.2,-10,-10,0.09999999,-9,-10,0,-10,-10,0,-2.887646E-14,-10,0.09999999,-8,-10,0.09999999,-5.1,-10,0.09999999,-4.9,-10,0.09999999,-2,-10,0.09999999,-1,-10,0.2,-1,-10,0.2,-2.887646E-14,-10,0.2,-9,10,0.09999999,-1,5.452214,0.09999999,-1,6.120393,0.09999999,-4.872902E-14,6.454483,0.09999999,0.5,7.553711,0.09999999,2.729015,8.352591,0.09999999,5.082438,8.837453,0.09999999,7.520002,9,0.09999999,10,10,0.09999999,-9,-10,0.09999999,-9,1,0.09999999,10,0.9058934,0.09999999,8.564212,0.6251841,0.09999999,7.152991,0.1626749,0.09999999,5.790482,-0.4737206,0.09999999,4.5,-1.273113,0.09999999,3.303624,-2.221825,0.09999999,2.221825,-3.303624,0.09999999,1.273113,-4.5,0.09999999,0.4737206,-5.46061,0.09999999,-3.429079E-14,-5.790482,0.09999999,-0.1626749,-7.152991,0.09999999,-0.6251841,-8.564212,0.09999999,-0.9058934,-10,0.09999999,-1,10,5.639933E-17,10,9.828897,3.214762E-15,7.389476,-2.887646E-14,5.639933E-17,10,9.318516,3.214762E-15,4.823619,-2.887646E-14,5.639933E-17,10,9.828897,3.214762E-15,7.389476,8.477591,3.665956E-15,2.346331,-2.887646E-14,5.639933E-17,10,9.318516,3.214762E-15,4.823619,7.320508,4.117151E-15,-5.775292E-14,-2.887646E-14,5.639933E-17,10,8.477591,3.665956E-15,2.346331,10,0,-2.887646E-14,10,0,-10,7.320508,4.117151E-15,-5.775292E-14,-10,0,-10,7.320508,4.117151E-15,-5.775292E-14,10,0,-10,-1.339746,5.639933E-16,5,7.320508,4.117151E-15,-5.775292E-14,-10,0,-10,-2.066467,8.459899E-16,3.912386,-1.339746,5.639933E-16,5,-2.928932,1.184386E-15,2.928932,-2.066467,8.459899E-16,3.912386,-0.7612047,3.38396E-16,6.173166,7.320508,4.117151E-15,-5.775292E-14,-1.339746,5.639933E-16,5,-0.3407417,1.69198E-16,7.411809,7.320508,4.117151E-15,-5.775292E-14,-0.7612047,3.38396E-16,6.173166,-0.08555138,1.127987E-16,8.694737,7.320508,4.117151E-15,-5.775292E-14,-0.3407417,1.69198E-16,7.411809,-2.887646E-14,5.639933E-17,10,7.320508,4.117151E-15,-5.775292E-14,-0.08555138,1.127987E-16,8.694737,-3.912386,1.579181E-15,2.066467,-2.928932,1.184386E-15,2.928932,-10,0,-10,-5,2.030376E-15,1.339746,-3.912386,1.579181E-15,2.066467,-10,0,-10,-6.173166,2.48157E-15,0.7612047,-5,2.030376E-15,1.339746,-10,0,-10,-7.411809,2.932765E-15,0.3407417,-6.173166,2.48157E-15,0.7612047,-10,0,-10,-8.694737,3.440359E-15,0.08555138,-7.411809,2.932765E-15,0.3407417,-10,0,-10,-10,0,-2.887646E-14,-8.694737,3.440359E-15,0.08555138,-10,0,-10 + } + PolygonVertexIndex: *894 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,7,9,-7,6,9,-11,11,10,-10,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,31,-31,32,33,-32,33,34,-32,31,34,-36,34,36,-36,35,36,-38,36,38,-38,37,38,-40,40,39,-39,41,43,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,61,-64,65,61,-65,66,65,-65,67,65,-67,68,67,-67,69,68,-67,70,68,-70,71,70,-70,72,70,-72,73,72,-72,74,73,-72,75,73,-75,76,75,-75,77,75,-77,78,77,-77,79,77,-79,80,79,-79,81,79,-81,82,79,-82,83,82,-82,84,82,-84,85,84,-84,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,113,-113,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,145,-145,146,144,-146,147,149,-149,150,148,-150,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,169,-169,170,168,-170,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,204,-207,208,204,-208,209,204,-209,210,204,-210,211,210,-210,212,211,-210,213,211,-213,214,213,-213,215,214,-213,216,214,-216,217,214,-217,218,217,-217,219,217,-219,220,219,-219,221,219,-221,222,219,-222,223,222,-222,224,222,-224,225,224,-224,226,225,-224,227,226,-224,228,226,-228,229,228,-228,230,229,-228,231,229,-231,232,231,-231,233,231,-233,234,236,-236,237,235,-237,238,237,-237,239,235,-238,240,235,-240,241,235,-241,242,235,-242,243,235,-243,244,235,-244,245,235,-245,246,235,-246,247,235,-247,247,248,-236,235,248,-250,249,248,-251,248,251,-251,250,251,-253,251,253,-253,253,254,-253,252,254,-256,255,254,-257,256,254,-258,257,254,-259,259,258,-255,260,262,-262,262,263,-262,261,263,-265,264,263,-266,265,263,-267,266,263,-268,267,263,-269,263,269,-269,268,269,-271,271,270,-270,272,274,-274,275,273,-275,276,273,-276,273,277,-273,277,278,-273,279,272,-279,280,277,-274,280,281,-278,282,277,-282,283,279,-279,284,286,-286,287,285,-287,288,285,-288,289,288,-288,290,289,-288,291,290,-288,292,291,-288,293,292,-288,294,293,-288,285,295,-285,234,235,-297,297,296,-236,250,297,-236,252,297,-251,249,250,-236,252,255,-298,297,255,-299,298,255,-300,255,256,-300,256,257,-300,299,257,-301,257,258,-301,258,259,-301,300,259,-302,301,259,-303,303,302,-260,304,305,-200,201,199,-306,204,210,-307,211,306,-211,213,306,-212,307,306,-214,214,307,-214,308,307,-215,309,308,-215,217,309,-215,310,309,-218,311,310,-218,219,311,-218,312,311,-220,222,312,-220,313,312,-223,224,313,-223,314,313,-225,225,314,-225,226,314,-226,315,314,-227,228,315,-227,229,315,-229,316,315,-230,317,316,-230,231,317,-230,318,317,-232,233,318,-232,319,318,-234,320,322,-322,323,325,-325,326,328,-328,329,331,-331,332,334,-334,335,337,-337,338,340,-340,341,340,-343,343,340,-345,345,347,-347,348,350,-350,351,353,-353,354,356,-356,357,359,-359,360,362,-362,363,365,-365,366,368,-368,369,371,-371,372,374,-374,200,202,-237,238,236,-203,230,238,-203,232,230,-203,230,227,-239,238,227,-238,227,223,-238,237,223,-240,223,221,-240,239,221,-241,221,220,-241,220,218,-241,240,218,-242,241,218,-243,218,216,-243,242,216,-244,216,215,-244,243,215,-245,215,212,-245,244,212,-246,212,209,-246,245,209,-247,209,208,-247,246,208,-248,208,207,-248,247,207,-249,207,206,-249,248,206,-252,206,205,-252,251,205,-254,205,203,-254,254,253,-204 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2682 { + a: -0.8314696,0,0.5555702,-0.8314696,0,0.5555702,-0.8314696,0,0.5555702,-0.8314696,0,0.5555702,-0.8314696,0,0.5555702,-0.8314696,0,0.5555702,-0.8660254,0,0.5,-0.8314696,0,0.5555702,-0.8314696,0,0.5555702,-0.8660254,0,0.5,-0.8314696,0,0.5555702,-0.8660254,0,0.5,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.4422887,0,-0.8968728,0.4422887,0,-0.8968728,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.4422887,0,-0.8968728,0.5,0,-0.8660254,0.4422887,0,-0.8968728,0.5,0,-0.8660254,0.06540313,0,-0.9978589,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8968728,0,-0.4422887,0.9238795,0,-0.3826834,0.8968728,0,-0.4422887,0.9238795,0,-0.3826834,0.8968728,0,-0.4422887,0.9238795,0,-0.3826834,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *750 { + a: 8.652041,0.3937008,8.652041,0.7874016,13.38704,0.3937008,13.38704,0.7874016,15.75454,0.3937008,15.75454,0.7874016,20.72943,0.3937008,19.28139,0.7874016,20.72943,0.7874016,15.06459,0.7874016,19.28139,0.3937008,15.06459,0.3937008,39.54328,0.3937008,33.87844,0.3937008,39.54328,0.7874016,33.87844,0.7874016,13.6946,0.3937008,8.029761,0.3937008,13.6946,0.7874016,8.029761,0.7874016,21.7932,0.3937008,21.7932,0.7874016,27.45804,0.3937008,27.45804,0.7874016,28.10045,0.3937008,28.10045,0.7874016,33.76529,0.3937008,33.76529,0.7874016,-39.37008,-3.937008,-39.37008,-1.133594E-13,-21.46541,-3.937008,-28.8209,-2.270462E-13,-25.41135,1.968504,-29.73902,10.74415,-32.88422,20.0096,-33.37634,9.237525,-34.79312,29.60631,-36.68707,18.99063,-35.43307,39.37008,-38.69645,29.09243,-39.37008,39.37008,-24.09604,-1.133594E-13,-21.46541,-3.937008,-25.41135,1.968504,39.37008,0,-39.37008,0,39.37008,0.7874016,-39.37008,0.7874016,39.37008,8.772128E-43,28.8209,1.620926E-14,39.37008,0.7874016,28.8209,0.7874016,-39.37008,0.3937008,-39.37008,0.7874016,-21.46541,0.3937008,-21.46541,0.7874016,39.37008,0.3937008,-39.37008,0.3937008,39.37008,0.7874016,-39.37008,0.7874016,-3.937008,39.37008,1.133211E-13,39.37008,-3.56651,33.71737,-2.461355,28.16138,-0.6404522,22.79717,0.3368165,34.23125,1.865042,17.71654,1.341503,29.18035,2.996869,24.3038,5.012257,13.00639,5.27459,19.68504,8.747344,8.747344,8.135695,15.40309,11.53123,11.53123,13.00639,5.012257,15.40309,8.135695,17.71654,1.865042,19.68504,5.27459,21.49847,-1.136304E-13,24.3038,2.996869,22.79717,-0.6404522,28.16138,-2.461355,29.18035,1.341503,33.71737,-3.56651,34.23125,0.3368165,39.37008,-3.937008,39.37008,-1.136304E-13,-12.74716,0.7874016,-12.74716,2.030048E-14,-23.04686,0.7874016,-23.04686,1.852413E-14,-31.561,0.7874016,-31.561,1.262279E-14,-41.86071,0.7874016,-41.86071,1.882901E-16,34.13593,4.422968E-16,34.13593,0.7874016,39.28579,2.202522E-16,39.28579,0.7874016,22.05069,-2.59949E-15,22.05069,0.7874016,27.20054,-3.265624E-15,27.20054,0.7874016,15.32208,-2.477613E-15,15.32208,0.7874016,20.47194,-3.365791E-15,20.47194,0.7874016,8.287254,-1.635308E-15,8.287254,0.7874016,13.43711,-2.745531E-15,13.43711,0.7874016,1.066569,-1.055021E-16,1.066569,0.7874016,6.216422,-1.43777E-15,6.216422,0.7874016,-1.066569,4.817272E-16,-6.216422,2.036039E-15,-1.066569,0.7874016,-6.216422,0.7874016,-8.287254,2.900585E-15,-13.43711,4.676942E-15,-8.287254,0.7874016,-13.43711,0.7874016,-39.37008,-39.37008,-39.37008,-35.43307,39.37008,-39.37008,39.37008,-35.43307,-19.47576,0.7874016,-19.47576,1.667059E-14,-29.77547,0.7874016,-29.77547,1.489423E-14,-25.78302,0.7874016,-25.78302,1.581226E-14,-36.08273,0.7874016,-36.08273,1.581226E-14,28.35795,-2.013974E-15,28.35795,0.7874016,33.5078,-2.236019E-15,33.5078,0.7874016,-39.28579,-3.869444E-17,-39.28579,0.7874016,-34.13593,1.350603E-14,-34.13593,0.7874016,-15.32208,5.678714E-15,-20.47194,7.455071E-15,-15.32208,0.7874016,-20.47194,0.7874016,-22.05069,8.437203E-15,-27.20054,1.021356E-14,-22.05069,0.7874016,-27.20054,0.7874016,-28.35795,1.101461E-14,-33.5078,1.301301E-14,-28.35795,0.7874016,-33.5078,0.7874016,13.00465,0.3937008,13.00465,0.7874016,22.78937,0.3937008,22.78937,0.7874016,19.73326,0.3937008,19.73326,0.7874016,29.51798,0.3937008,29.51798,0.7874016,-33.87844,0.7874016,-33.87844,0.3937008,-39.54328,0.7874016,-39.54328,0.3937008,-28.10045,0.7874016,-28.10045,0.3937008,-33.76529,0.7874016,-33.76529,0.3937008,-21.7932,0.7874016,-21.7932,0.3937008,-27.45804,0.7874016,-27.45804,0.3937008,-15.06459,0.7874016,-15.06459,0.3937008,-20.72943,0.7874016,-20.72943,0.3937008,-8.029761,0.7874016,-8.029761,0.3937008,-13.6946,0.7874016,-13.6946,0.3937008,-0.8090768,0.7874016,-0.8090768,0.3937008,-6.473915,0.7874016,-6.473915,0.3937008,26.04051,0.3937008,26.04051,0.7874016,35.82523,0.3937008,35.82523,0.7874016,6.473915,0.3937008,0.8090768,0.3937008,6.473915,0.7874016,0.8090768,0.7874016,31.8185,0.3937008,31.8185,0.7874016,41.60322,0.3937008,41.60322,0.7874016,-39.37008,-31.49606,-39.37008,-20.07874,39.37008,-31.49606,39.37008,-20.07874,-19.29134,39.37008,-7.874016,39.37008,-18.78948,31.71323,-17.2925,24.18739,-14.826,16.92133,-11.4322,10.03937,-7.169153,3.659271,-7.469836,33.20349,-6.264212,27.14241,-3.960058,-1.703737E-13,-4.277773,21.29055,-1.544507,15.74803,-2.109807,-2.109807,-0.02628424,-3.937008,1.888819,10.6097,3.659271,-7.169153,5.963459,5.963459,4.714173,-7.874016,10.03937,-11.4322,10.6097,1.888819,16.92133,-14.826,13.43651,-1.41952E-13,15.74803,-1.544507,20.59954,-3.937008,24.18739,-17.2925,21.29055,-4.277773,27.14241,-6.264212,31.71323,-18.78948,33.20349,-7.469836,39.37008,-19.29134,39.37008,-7.874016,-39.37008,-7.874016,-13.25312,-7.874016,-39.37008,-19.29134,23.98359,-18.05307,30.20878,-19.29134,16.62,-15.55347,9.645669,-12.11411,3.299922,-7.874016,3.179931,-7.79384,-1.217944,-3.937008,-2.666584,-2.666584,-5.005116,-1.702984E-13,-7.79384,3.179931,-12.11411,9.645669,-15.55347,16.62,-16.70578,-3.937008,-16.85181,-3.770495,-18.05307,23.98359,-19.37118,-1.84404E-13,-19.57015,31.61045,-20.07874,39.37008,-22.0018,3.937008,-26.1017,12.25078,-29.08136,21.02857,-30.88979,30.12019,-31.49606,39.37008,3.937008,0.7874016,3.937008,0.3937008,1.136868E-13,0.7874016,1.136868E-13,6.903696E-13,7.874016,0.3937008,19.29134,0.3937008,20.07874,0.3937008,31.49606,0.3937008,35.43307,0.3937008,39.37008,6.903696E-13,35.43307,0.7874016,39.37008,0.7874016,-2.123712E-13,-1.550868E-12,35.43307,0.3937008,39.37008,-1.550868E-12,39.37008,0.7874016,35.43307,0.7874016,7.874016,0.3937008,3.937008,0.3937008,-2.123712E-13,0.7874016,31.49606,0.3937008,20.07874,0.3937008,19.29134,0.3937008,3.937008,0.7874016,-39.37008,0.7874016,-35.43307,0.3937008,-39.37008,-1.337492E-12,-1.136868E-13,-1.337492E-12,-31.49606,0.3937008,-20.07874,0.3937008,-19.29134,0.3937008,-7.874016,0.3937008,-3.937008,0.3937008,-3.937008,0.7874016,-1.136868E-13,0.7874016,-35.43307,0.7874016,-39.37008,-3.937008,-21.46541,-3.937008,-24.09604,-1.915094E-13,-25.41135,1.968504,-29.73902,10.74415,-32.88422,20.0096,-34.79312,29.60631,-35.43307,39.37008,-39.37008,-35.43307,39.37008,-35.43307,-3.937008,39.37008,-3.56651,33.71737,-2.461355,28.16138,-0.6404522,22.79717,1.865042,17.71654,5.012257,13.00639,8.747344,8.747344,13.00639,5.012257,17.71654,1.865042,21.49847,-1.352702E-13,22.79717,-0.6404522,28.16138,-2.461355,33.71737,-3.56651,39.37008,-3.937008,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-41.86071,1.882901E-16,-41.86071,0.7874016,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14,-41.86071,1.882901E-16,-41.86071,0.7874016,-31.561,1.262279E-14 + } + UVIndex: *894 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,7,9,6,6,9,10,11,10,9,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,31,30,32,33,31,33,34,31,31,34,35,34,36,35,35,36,37,36,38,37,37,38,39,40,39,38,41,43,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,61,63,65,61,64,66,65,64,67,65,66,68,67,66,69,68,66,70,68,69,71,70,69,72,70,71,73,72,71,74,73,71,75,73,74,76,75,74,77,75,76,78,77,76,79,77,78,80,79,78,81,79,80,82,79,81,83,82,81,84,82,83,85,84,83,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,109,108,110,108,109,111,113,112,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,142,140,141,143,145,144,146,144,145,147,149,148,150,148,149,151,153,152,154,152,153,155,157,156,158,156,157,159,161,160,162,160,161,163,165,164,166,164,165,167,169,168,170,168,169,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,180,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,201,200,202,200,201,203,205,204,206,204,205,207,204,206,208,204,207,209,204,208,210,204,209,211,210,209,212,211,209,213,211,212,214,213,212,215,214,212,216,214,215,217,214,216,218,217,216,219,217,218,220,219,218,221,219,220,222,219,221,223,222,221,224,222,223,225,224,223,226,225,223,227,226,223,228,226,227,229,228,227,230,229,227,231,229,230,232,231,230,233,231,232,234,236,235,237,235,236,238,237,236,239,235,237,240,235,239,241,235,240,242,235,241,243,235,242,244,235,243,245,235,244,246,235,245,247,235,246,247,248,235,235,248,249,249,248,250,248,251,250,250,251,252,251,253,252,253,254,252,252,254,255,255,254,256,256,254,257,257,254,258,259,258,254,260,262,261,262,263,261,261,263,264,264,263,265,265,263,266,266,263,267,267,263,268,263,269,268,268,269,270,271,270,269,272,274,273,275,273,274,276,273,275,273,277,272,277,278,272,279,272,278,280,277,273,280,281,277,282,277,281,283,279,278,284,286,285,287,285,286,288,285,287,289,288,287,290,289,287,291,290,287,292,291,287,293,292,287,294,293,287,285,295,284,234,235,296,297,296,235,250,297,235,252,297,250,249,250,235,252,255,297,297,255,298,298,255,299,255,256,299,256,257,299,299,257,300,257,258,300,258,259,300,300,259,301,301,259,302,303,302,259,304,305,199,201,199,305,204,210,306,211,306,210,213,306,211,307,306,213,214,307,213,308,307,214,309,308,214,217,309,214,310,309,217,311,310,217,219,311,217,312,311,219,222,312,219,313,312,222,224,313,222,314,313,224,225,314,224,226,314,225,315,314,226,228,315,226,229,315,228,316,315,229,317,316,229,231,317,229,318,317,231,233,318,231,319,318,233,320,322,321,323,325,324,326,328,327,329,331,330,332,334,333,335,337,336,338,340,339,341,340,342,343,340,344,345,347,346,348,350,349,351,353,352,354,356,355,357,359,358,360,362,361,363,365,364,366,368,367,369,371,370,372,374,373,200,202,236,238,236,202,230,238,202,232,230,202,230,227,238,238,227,237,227,223,237,237,223,239,223,221,239,239,221,240,221,220,240,220,218,240,240,218,241,241,218,242,218,216,242,242,216,243,216,215,243,243,215,244,215,212,244,244,212,245,212,209,245,245,209,246,209,208,246,246,208,247,208,207,247,247,207,248,207,206,248,248,206,251,206,205,251,251,205,253,205,203,253,254,253,203 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *298 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9918, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "EmissiveFactor", "Number", "", "A",0 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_curveIntersection, Model::RootNode + C: "OO",5725233743184507950,0 + + ;Geometry::, Model::Mesh road_curveIntersection + C: "OO",5310587382253366798,5725233743184507950 + + ;Material::pavement, Model::Mesh road_curveIntersection + C: "OO",17046,5725233743184507950 + + ;Material::asphalt, Model::Mesh road_curveIntersection + C: "OO",9934,5725233743184507950 + + ;Material::asphaltEdge, Model::Mesh road_curveIntersection + C: "OO",17042,5725233743184507950 + + ;Material::_defaultMat, Model::Mesh road_curveIntersection + C: "OO",9918,5725233743184507950 + + ;Material::line, Model::Mesh road_curveIntersection + C: "OO",9174,5725233743184507950 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersection.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersection.fbx.import new file mode 100644 index 0000000..8195034 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersection.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bvpie7daibfaw" +path="res://.godot/imported/road_curveIntersection.fbx-9dec7cee2ed3c4d4885330051d70c1bc.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersection.fbx" +dest_files=["res://.godot/imported/road_curveIntersection.fbx-9dec7cee2ed3c4d4885330051d70c1bc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersectionBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersectionBarrier.fbx new file mode 100644 index 0000000..1c32901 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersectionBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 18 + Millisecond: 548 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_curveIntersectionBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_curveIntersectionBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5318578109065019740, "Model::road_curveIntersectionBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5171650569453187140, "Geometry::", "Mesh" { + Vertices: *798 { + a: 6.386362,6.495202E-15,-0.5,6.667675,0.6022899,-0.3494275,6.72045,6.442016E-15,8.532993E-12,7.0607,0.8,0.15,6.887495,1.353584E-15,0.25,6.76002,0.8,-0.3,6.960474,0.8,8.532993E-12,6.386362,6.495202E-15,-0.5,10,1.147726E-14,-0.5,6.667675,0.6022899,-0.3494275,10,0.8,-0.3,6.76002,0.8,-0.3,-0.3407417,7.698508E-15,7.411809,-0.3407417,0.8,7.411809,-0.08555138,7.698508E-15,8.694737,-0.08555138,0.8,8.694737,8.477591,0.8,2.346331,8.477591,4.511947E-16,2.346331,9.318516,0.8,4.823619,9.318516,0,4.823619,-2.928932,8.600898E-15,2.928932,-2.928932,0.8,2.928932,-2.066467,8.149703E-15,3.912386,-2.066467,0.8,3.912386,-0.7612047,7.698508E-15,6.173166,-0.7612047,0.8,6.173166,-0.3407417,7.698508E-15,7.411809,-0.3407417,0.8,7.411809,8.015651,9.023893E-16,2.537673,9.028739,0.8,4.901265,8.835553,4.511947E-16,4.953029,8.200427,0.8,2.461136,-7.411809,1.040568E-14,0.3407417,-8.694737,1.085687E-14,0.08555138,-7.411809,0.8,0.3407417,-8.694737,0.8,0.08555138,-6.173166,9.954482E-15,0.7612047,-7.411809,1.040568E-14,0.3407417,-6.173166,0.8,0.7612047,-7.411809,0.8,0.3407417,-5,9.503287E-15,1.339746,-6.173166,9.954482E-15,0.7612047,-5,0.8,1.339746,-6.173166,0.8,0.7612047,6.887495,1.353584E-15,0.25,8.200427,0.8,2.461136,8.015651,9.023893E-16,2.537673,7.0607,0.8,0.15,-10,4.088951E-15,-0.5,-10,0.8,-0.3,-10,1.130807E-14,4.042704E-13,-10,0.8,4.042704E-13,0.5,6.796119E-15,10,0.410171,5.89373E-15,8.629476,3.936222E-12,7.698508E-15,10,0.1422212,5.442535E-15,7.2824,-0.08555138,7.698508E-15,8.694737,-0.2992649,4.540146E-15,5.981824,-0.3407417,7.698508E-15,7.411809,-0.9067332,4.088951E-15,4.75,-0.7612047,7.698508E-15,6.173166,-1.339746,7.698508E-15,5,-1.66979,3.637757E-15,3.608005,-2.066467,8.149703E-15,3.912386,-2.575379,3.186562E-15,2.575379,-2.928932,8.600898E-15,2.928932,-3.608005,3.186562E-15,1.66979,-3.912386,9.052092E-15,2.066467,-4.75,3.186562E-15,0.9067332,-5,9.503287E-15,1.339746,-5.981824,3.186562E-15,0.2992649,-6.173166,9.954482E-15,0.7612047,-7.2824,3.186562E-15,-0.1422212,-7.411809,1.040568E-14,0.3407417,-8.629476,3.637757E-15,-0.410171,-8.694737,1.085687E-14,0.08555138,-10,4.088951E-15,-0.5,-10,1.130807E-14,4.042704E-13,-3.912386,9.052092E-15,2.066467,-5,9.503287E-15,1.339746,-3.912386,0.8,2.066467,-5,0.8,1.339746,8.835553,4.511947E-16,4.953029,9.028739,0.8,4.901265,9.531464,0.8,7.428634,9.333174,4.511947E-16,7.454739,10,0.8,-9.7,-10,0.8,-9.7,10,0.8,-10,-10,0.8,-10,-0.08555138,7.698508E-15,8.694737,-0.08555138,0.8,8.694737,3.936222E-12,7.698508E-15,10,3.936222E-12,0.8,10,9.333174,4.511947E-16,7.454739,9.531464,0.8,7.428634,9.7,0.8,10,9.499999,4.511947E-16,10,-2.066467,8.149703E-15,3.912386,-2.066467,0.8,3.912386,-1.339746,7.698508E-15,5,-1.339746,0.8,5,-2.928932,8.600898E-15,2.928932,-3.912386,9.052092E-15,2.066467,-2.928932,0.8,2.928932,-3.912386,0.8,2.066467,9.828897,0.8,7.389476,9.828897,0,7.389476,10,0.8,10,10,7.670309E-15,10,-8.694737,1.085687E-14,0.08555138,-10,1.130807E-14,4.042704E-13,-8.694737,0.8,0.08555138,-10,0.8,4.042704E-13,9.318516,0.8,4.823619,9.318516,0,4.823619,9.828897,0.8,7.389476,9.828897,0,7.389476,7.320508,0.8,-9.529231E-13,7.320508,9.023893E-16,-9.529231E-13,8.477591,0.8,2.346331,8.477591,4.511947E-16,2.346331,9.499999,4.511947E-16,10,9.7,0.8,10,10,7.670309E-15,10,10,0.8,10,-1.339746,7.698508E-15,5,-1.339746,0.8,5,-0.7612047,7.698508E-15,6.173166,-0.7612047,0.8,6.173166,10,1.147726E-14,-0.5,10,1.147726E-14,8.47524E-12,10,0.8,-0.3,10,0.8,8.47524E-12,-10,7.670309E-15,-10,10,1.147726E-14,-10,-10,0.8,-10,10,0.8,-10,10,1.147726E-14,-9.499999,10,1.147726E-14,-10,-10,7.670309E-15,-9.499999,-10,7.670309E-15,-10,10,0.8,8.47524E-12,7.320508,0.8,-9.529231E-13,10,0.8,-0.3,6.76002,0.8,-0.3,7.0607,0.8,0.15,8.200427,0.8,2.461136,8.477591,0.8,2.346331,9.028739,0.8,4.901265,9.318516,0.8,4.823619,9.531464,0.8,7.428634,9.828897,0.8,7.389476,9.7,0.8,10,10,0.8,10,6.960474,0.8,8.532993E-12,6.76002,0.8,-0.3,7.0607,0.8,0.15,-10,7.670309E-15,-9.499999,-10,0.8,-9.7,10,1.147726E-14,-9.499999,10,0.8,-9.7,10,0.8,-10,10,1.147726E-14,-10,10,0.8,-9.7,10,1.147726E-14,-9.499999,-10,7.670309E-15,-10,-10,0.8,-10,-10,7.670309E-15,-9.499999,-10,0.8,-9.7,7.320508,9.023893E-16,-9.529231E-13,7.320508,0.8,-9.529231E-13,10,1.147726E-14,8.47524E-12,10,0.8,8.47524E-12,10,7.670309E-15,10,9.828897,0,7.389476,9.499999,4.511947E-16,10,9.318516,0,4.823619,9.333174,4.511947E-16,7.454739,8.835553,4.511947E-16,4.953029,8.477591,4.511947E-16,2.346331,8.015651,9.023893E-16,2.537673,7.320508,9.023893E-16,-9.529231E-13,6.887495,1.353584E-15,0.25,6.386362,6.495202E-15,-0.5,10,1.147726E-14,-0.5,10,1.147726E-14,8.47524E-12,6.72045,6.442016E-15,8.532993E-12,-2.7168,0.8,2.7168,-1.66979,3.637757E-15,3.608005,-1.828461,0.8,3.729757,-2.575379,3.186562E-15,2.575379,-10,4.088951E-15,-0.5,-8.629476,3.637757E-15,-0.410171,-10,0.8,-0.3,-8.655581,0.8,-0.2118821,-7.2824,3.186562E-15,-0.1422212,-5.981824,3.186562E-15,0.2992649,-7.334164,0.8,0.05096399,-6.058361,0.8,0.4840408,-0.4840408,0.8,6.058361,0.1422212,5.442535E-15,7.2824,-0.05096399,0.8,7.334164,-0.2992649,4.540146E-15,5.981824,-1.079938,0.8,4.85,-0.2992649,4.540146E-15,5.981824,-0.4840408,0.8,6.058361,-0.9067332,4.088951E-15,4.75,-1.828461,0.8,3.729757,-1.66979,3.637757E-15,3.608005,-0.9067332,4.088951E-15,4.75,-1.079938,0.8,4.85,-7.2824,3.186562E-15,-0.1422212,-7.334164,0.8,0.05096399,-8.655581,0.8,-0.2118821,-8.629476,3.637757E-15,-0.410171,-2.575379,3.186562E-15,2.575379,-2.7168,0.8,2.7168,-3.729757,0.8,1.828461,-3.608005,3.186562E-15,1.66979,0.2118821,0.8,8.655581,0.410171,5.89373E-15,8.629476,0.5,6.796119E-15,10,0.3,0.8,10,-0.05096399,0.8,7.334164,0.1422212,5.442535E-15,7.2824,0.410171,5.89373E-15,8.629476,0.2118821,0.8,8.655581,-4.75,3.186562E-15,0.9067332,-3.608005,3.186562E-15,1.66979,-4.85,0.8,1.079938,-3.729757,0.8,1.828461,0.3,0.8,10,3.936222E-12,0.8,10,0.2118821,0.8,8.655581,-0.05096399,0.8,7.334164,-0.08555138,0.8,8.694737,-0.4840408,0.8,6.058361,-0.3407417,0.8,7.411809,-0.7612047,0.8,6.173166,-1.079938,0.8,4.85,-1.339746,0.8,5,-1.828461,0.8,3.729757,-2.066467,0.8,3.912386,-2.7168,0.8,2.7168,-2.928932,0.8,2.928932,-3.729757,0.8,1.828461,-3.912386,0.8,2.066467,-4.85,0.8,1.079938,-5,0.8,1.339746,-6.058361,0.8,0.4840408,-6.173166,0.8,0.7612047,-7.334164,0.8,0.05096399,-7.411809,0.8,0.3407417,-8.655581,0.8,-0.2118821,-8.694737,0.8,0.08555138,-10,0.8,-0.3,-10,0.8,4.042704E-13,0.5,6.796119E-15,10,3.936222E-12,7.698508E-15,10,0.3,0.8,10,3.936222E-12,0.8,10,-4.75,3.186562E-15,0.9067332,-4.85,0.8,1.079938,-6.058361,0.8,0.4840408,-5.981824,3.186562E-15,0.2992649 + } + PolygonVertexIndex: *498 { + a: 0,2,-2,3,1,-3,4,3,-3,1,3,-6,6,5,-4,7,9,-9,10,8,-10,11,10,-10,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,28,29,-32,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,44,45,-48,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,55,-55,57,55,-57,58,57,-57,59,57,-59,60,59,-59,61,59,-61,62,59,-62,63,62,-62,64,62,-64,65,64,-64,66,64,-66,67,66,-66,68,66,-68,69,68,-68,70,68,-70,71,70,-70,72,70,-72,73,72,-72,74,72,-74,75,74,-74,76,74,-76,77,76,-76,78,80,-80,81,79,-81,82,84,-84,82,85,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,96,-95,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,143,-146,146,147,-144,143,147,-149,147,149,-149,148,149,-151,149,151,-151,150,151,-153,151,153,-153,154,152,-154,155,157,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,177,-177,179,177,-179,180,177,-180,181,180,-180,182,180,-182,183,182,-182,183,184,-183,184,185,-183,186,182,-186,187,184,-184,188,190,-190,188,189,-192,192,194,-194,193,194,-196,196,198,-198,197,198,-200,200,202,-202,200,201,-204,204,206,-206,204,205,-208,208,210,-210,208,211,-211,212,214,-214,215,214,-213,216,218,-218,219,218,-217,220,222,-222,220,223,-223,224,226,-226,224,227,-227,228,230,-230,229,230,-232,232,234,-234,235,233,-235,236,233,-236,237,236,-236,238,236,-238,239,238,-238,240,239,-238,241,239,-241,242,241,-241,243,241,-243,244,243,-243,245,243,-245,246,245,-245,247,245,-247,248,247,-247,249,247,-249,250,249,-249,251,249,-251,252,251,-251,253,251,-253,254,253,-253,255,253,-255,256,255,-255,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,264,-263 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1494 { + a: -0.8067455,0.2420468,0.5390501,-0.8067455,0.2420468,0.5390501,-0.8067455,0.2420468,0.5390501,-0.8401681,0.2425356,0.4850713,-0.8067455,0.2420468,0.5390501,-0.8067455,0.2420468,0.5390501,-0.8401681,0.2425356,0.4850713,-0.8401681,0.2425356,0.4850713,-0.8067455,0.2420468,0.5390501,-0.8067455,0.2420468,0.5390501,-0.8401681,0.2425356,0.4850713,-0.8067455,0.2420468,0.5390501,-0.8067455,0.2420468,0.5390501,-0.8067455,0.2420468,0.5390501,-0.8401681,0.2425356,0.4850713,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.8962947,0.2425356,0.3712575,-0.9370857,0.2425356,0.2510914,-0.9370857,0.2425356,0.2510914,-0.8962947,0.2425356,0.3712575,-0.9370857,0.2425356,0.2510914,-0.8962947,0.2425356,0.3712575,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.8401681,0.2425356,0.4850713,-0.8962947,0.2425356,0.3712575,-0.8962947,0.2425356,0.3712575,-0.8401681,0.2425356,0.4850713,-0.8962947,0.2425356,0.3712575,-0.8401681,0.2425356,0.4850713,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.9370857,0.2425356,0.2510914,-0.9618428,0.2425356,0.126629,-0.9370857,0.2425356,0.2510914,-0.9370857,0.2425356,0.2510914,-0.9618428,0.2425356,0.126629,-0.9618428,0.2425356,0.126629,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9618428,0.2425356,0.126629,-0.9681872,0.2420468,0.06345834,-0.9618428,0.2425356,0.126629,-0.9681872,0.2420468,0.06345834,-0.9681872,0.2420468,0.06345834,-0.9618428,0.2425356,0.126629,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.8968728,0,-0.4422887,0.9238795,0,-0.3826834,0.8968728,0,-0.4422887,0.9238795,0,-0.3826834,0.8968728,0,-0.4422887,0.9238795,0,-0.3826834,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6859944,0.2425356,-0.6859944,0.7696658,0.2425357,-0.5905854,0.7696658,0.2425357,-0.5905854,0.6859944,0.2425356,-0.6859944,0.7696658,0.2425357,-0.5905854,0.6859944,0.2425356,-0.6859944,0.06345834,0.2420468,-0.9681872,0.06345834,0.2420468,-0.9681872,0.126629,0.2425356,-0.9618428,0.126629,0.2425356,-0.9618428,0.06345834,0.2420468,-0.9681872,0.126629,0.2425356,-0.9618428,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0.3712575,0.2425356,-0.8962947,0.3712575,0.2425356,-0.8962947,0.2510914,0.2425356,-0.9370857,0.3712575,0.2425356,-0.8962947,0.8962947,0.2425356,-0.3712575,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.8962947,0.2425356,-0.3712575,0.9370857,0.2425356,-0.2510914,0.8962947,0.2425356,-0.3712575,0.8401681,0.2425356,-0.4850713,0.8962947,0.2425356,-0.3712575,0.8962947,0.2425356,-0.3712575,0.8401681,0.2425356,-0.4850713,0.8962947,0.2425356,-0.3712575,0.8401681,0.2425356,-0.4850713,0.7696658,0.2425357,-0.5905854,0.8401681,0.2425356,-0.4850713,0.7696658,0.2425357,-0.5905854,0.7696658,0.2425357,-0.5905854,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0.2510914,0.2425356,-0.9370857,0.126629,0.2425356,-0.9618428,0.2510914,0.2425356,-0.9370857,0.126629,0.2425356,-0.9618428,0.126629,0.2425356,-0.9618428,0.2510914,0.2425356,-0.9370857,0.6859944,0.2425356,-0.6859944,0.5905854,0.2425357,-0.7696658,0.6859944,0.2425356,-0.6859944,0.5905854,0.2425357,-0.7696658,0.5905854,0.2425357,-0.7696658,0.6859944,0.2425356,-0.6859944,0.9618428,0.2425356,-0.126629,0.9681872,0.2420468,-0.06345834,0.9618428,0.2425356,-0.126629,0.9618428,0.2425356,-0.126629,0.9681872,0.2420468,-0.06345834,0.9681872,0.2420468,-0.06345834,0.9370857,0.2425356,-0.2510914,0.9618428,0.2425356,-0.126629,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.9618428,0.2425356,-0.126629,0.9618428,0.2425356,-0.126629,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.5905854,0.2425357,-0.7696658,0.5905854,0.2425357,-0.7696658,0.4850713,0.2425356,-0.8401681,0.5905854,0.2425357,-0.7696658,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.4850713,0.2425356,-0.8401681,0.3712575,0.2425356,-0.8962947,0.4850713,0.2425356,-0.8401681,0.3712575,0.2425356,-0.8962947,0.3712575,0.2425356,-0.8962947,0.4850713,0.2425356,-0.8401681 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *532 { + a: 12.33204,5.324887,13.44025,7.768777,14.69954,5.324887,15.93478,8.571018,15.88329,5.324887,13.80404,8.571018,15.22453,8.571018,-25.14316,-0.4774323,-39.37008,-0.4774323,-26.25069,1.966765,-39.37008,2.769108,-26.61425,2.769108,28.35795,2.456264E-14,28.35795,3.149606,33.5078,2.456264E-14,33.5078,3.149606,-19.47576,3.149606,-19.47576,1.804981E-14,-29.77547,3.149606,-29.77547,1.627346E-14,1.066569,1.81577E-14,1.066569,3.149606,6.216422,1.638134E-14,6.216422,3.149606,22.05069,2.094269E-14,22.05069,3.149606,27.20054,2.094269E-14,27.20054,3.149606,19.60451,6.455743,29.69822,9.701875,29.64672,6.455743,19.55301,9.701875,-28.35795,3.546608E-14,-33.5078,3.724244E-14,-28.35795,3.149606,-33.5078,3.149606,-22.05069,3.012122E-14,-27.20054,3.189758E-14,-22.05069,3.149606,-27.20054,3.149606,-15.32208,2.527109E-14,-20.47194,2.704744E-14,-15.32208,3.149606,-20.47194,3.149606,12.8759,5.78114,22.96961,9.027271,22.91812,5.78114,12.8244,9.027271,-1.968504,2.517767E-11,-1.181102,3.149606,-3.201287E-11,2.520609E-11,-3.201287E-11,3.149606,1.968504,39.37008,1.614847,33.97431,1.549694E-11,39.37008,0.5599259,28.67087,-0.3368165,34.23125,-1.178208,23.55049,-1.341503,29.18035,-3.569816,18.70079,-2.996869,24.3038,-5.27459,19.68504,-6.573976,14.20474,-8.135695,15.40309,-10.13929,10.13929,-11.53123,11.53123,-14.20474,6.573976,-15.40309,8.135695,-18.70079,3.569816,-19.68504,5.27459,-23.55049,1.178208,-24.3038,2.996869,-28.67087,-0.5599259,-29.18035,1.341503,-33.97431,-1.614847,-34.23125,0.3368165,-39.37008,-1.968504,-39.37008,1.591616E-12,-8.287254,2.122964E-14,-13.43711,2.3006E-14,-8.287254,3.149606,-13.43711,3.149606,25.91177,7.337156,25.86027,10.58329,36.00548,10.58329,35.95398,7.337156,-39.37008,-38.18898,39.37008,-38.18898,-39.37008,-39.37008,39.37008,-39.37008,34.13593,2.838731E-14,34.13593,3.149606,39.28579,2.838731E-14,39.28579,3.149606,31.68975,8.410295,31.63825,11.65643,41.78346,11.65643,41.73196,8.410295,8.287254,1.748862E-14,8.287254,3.149606,13.43711,1.571226E-14,13.43711,3.149606,-1.066569,1.822474E-14,-6.216422,2.00011E-14,-1.066569,3.149606,-6.216422,3.149606,-31.561,3.149606,-31.561,1.985739E-14,-41.86071,3.149606,-41.86071,5.005546E-14,-34.13593,4.092876E-14,-39.28579,4.270512E-14,-34.13593,3.149606,-39.28579,3.149606,-25.78302,3.149606,-25.78302,1.805551E-14,-36.08273,3.149606,-36.08273,1.805551E-14,-12.74716,3.149606,-12.74716,3.296613E-15,-23.04686,3.149606,-23.04686,1.520257E-15,37.40157,8.37709E-13,38.18898,3.149606,39.37008,8.661307E-13,39.37008,3.149606,15.32208,1.789356E-14,15.32208,3.149606,20.47194,1.789356E-14,20.47194,3.149606,1.968504,3.473692E-14,-3.396418E-11,3.473692E-14,1.181102,3.149606,-3.396418E-11,3.149606,39.37008,3.019807E-14,-39.37008,4.518608E-14,39.37008,3.149606,-39.37008,3.149606,39.37008,-37.40157,39.37008,-39.37008,-39.37008,-37.40157,-39.37008,-39.37008,-39.37008,3.336632E-11,-28.8209,-3.752433E-12,-39.37008,-1.181102,-26.61425,-1.181102,-27.79803,0.5905512,-32.28514,9.689513,-33.37634,9.237525,-35.54622,19.29632,-36.68707,18.99063,-37.52545,29.24659,-38.69645,29.09243,-38.18898,39.37008,-39.37008,39.37008,-27.40344,3.359369E-11,-26.61425,-1.181102,-27.79803,0.5905512,-39.37008,9.071215,-39.37008,12.31775,39.37008,9.071215,39.37008,12.31775,39.37008,3.149606,39.37008,7.557288E-13,38.18898,3.149606,37.40157,7.557288E-13,-39.37008,1.131529E-11,-39.37008,3.149606,-37.40157,1.131529E-11,-38.18898,3.149606,28.8209,3.552714E-15,28.8209,3.149606,39.37008,4.518608E-14,39.37008,3.149606,39.37008,39.37008,38.69645,29.09243,37.40157,39.37008,36.68707,18.99063,36.74478,29.34937,34.78564,19.50011,33.37634,9.237525,31.55768,9.990839,28.8209,-3.751666E-12,27.11612,0.984252,25.14316,-1.968504,39.37008,-1.968504,39.37008,3.336709E-11,26.45847,3.359446E-11,-0.9893216,6.709437,-6.345169,3.463306,-6.29367,6.709437,-0.9378231,3.463306,39.41453,0.1478028,34.00719,0.1478028,39.36303,3.393934,34.05869,3.393934,27.32929,2.102355,21.92194,2.102355,27.27779,5.348486,21.97344,5.348486,-21.97344,5.348486,-27.32929,2.102355,-27.27779,5.348486,-21.92194,2.102355,-15.24484,6.02309,-20.60068,2.776959,-20.54918,6.02309,-15.19334,2.776959,-8.210006,6.479342,-8.158507,3.233211,-13.56585,3.233211,-13.51435,6.479342,28.2292,1.220942,28.2807,4.467074,33.58504,4.467074,33.63654,1.220942,0.9378231,3.463306,0.9893216,6.709437,6.29367,6.709437,6.345169,3.463306,-34.05869,3.393934,-34.00719,0.1478028,-39.41453,0.1478028,-39.36303,3.393934,-28.2807,4.467074,-28.2292,1.220942,-33.63654,1.220942,-33.58504,4.467074,13.56585,3.233211,8.158507,3.233211,13.51435,6.479342,8.210006,6.479342,-1.181102,39.37008,-1.549532E-11,39.37008,-0.8341814,34.07709,0.2006456,28.87466,0.3368165,34.23125,1.905673,23.85181,1.341503,29.18035,2.996869,24.3038,4.251726,19.09449,5.27459,19.68504,7.198664,14.68408,8.135695,15.40309,10.69606,10.69606,11.53123,11.53123,14.68408,7.198664,15.40309,8.135695,19.09449,4.251726,19.68504,5.27459,23.85181,1.905673,24.3038,2.996869,28.87466,0.2006456,29.18035,1.341503,34.07709,-0.8341814,34.23125,0.3368165,39.37008,-1.181102,39.37008,1.59265E-12,1.968504,1.498995E-11,3.572651E-11,1.49935E-11,1.181102,3.149606,3.572651E-11,3.149606,15.19334,2.776959,15.24484,6.02309,20.54918,6.02309,20.60068,2.776959 + } + UVIndex: *498 { + a: 0,2,1,3,1,2,4,3,2,1,3,5,6,5,3,7,9,8,10,8,9,11,10,9,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,28,29,31,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,44,45,47,48,50,49,51,49,50,52,54,53,55,53,54,56,55,54,57,55,56,58,57,56,59,57,58,60,59,58,61,59,60,62,59,61,63,62,61,64,62,63,65,64,63,66,64,65,67,66,65,68,66,67,69,68,67,70,68,69,71,70,69,72,70,71,73,72,71,74,72,73,75,74,73,76,74,75,77,76,75,78,80,79,81,79,80,82,84,83,82,85,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,96,94,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,143,145,146,147,143,143,147,148,147,149,148,148,149,150,149,151,150,150,151,152,151,153,152,154,152,153,155,157,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,177,176,179,177,178,180,177,179,181,180,179,182,180,181,183,182,181,183,184,182,184,185,182,186,182,185,187,184,183,188,190,189,188,189,191,192,194,193,193,194,195,196,198,197,197,198,199,200,202,201,200,201,203,204,206,205,204,205,207,208,210,209,208,211,210,212,214,213,215,214,212,216,218,217,219,218,216,220,222,221,220,223,222,224,226,225,224,227,226,228,230,229,229,230,231,232,234,233,235,233,234,236,233,235,237,236,235,238,236,237,239,238,237,240,239,237,241,239,240,242,241,240,243,241,242,244,243,242,245,243,244,246,245,244,247,245,246,248,247,246,249,247,248,250,249,248,251,249,250,252,251,250,253,251,252,254,253,252,255,253,254,256,255,254,257,255,256,258,260,259,261,259,260,262,264,263,265,264,262 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *166 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_curveIntersectionBarrier, Model::RootNode + C: "OO",5318578109065019740,0 + + ;Geometry::, Model::Mesh road_curveIntersectionBarrier + C: "OO",5171650569453187140,5318578109065019740 + + ;Material::pavement, Model::Mesh road_curveIntersectionBarrier + C: "OO",17046,5318578109065019740 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersectionBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersectionBarrier.fbx.import new file mode 100644 index 0000000..8679883 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersectionBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://caaxfmqv73a2v" +path="res://.godot/imported/road_curveIntersectionBarrier.fbx-9734082e30ad8755e5cc91a5297b19e0.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_curveIntersectionBarrier.fbx" +dest_files=["res://.godot/imported/road_curveIntersectionBarrier.fbx-9734082e30ad8755e5cc91a5297b19e0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curvePavement.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curvePavement.fbx new file mode 100644 index 0000000..e474498 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curvePavement.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 18 + Millisecond: 654 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_curvePavement.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_curvePavement.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5479942777028127717, "Model::road_curvePavement", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5683768735364340854, "Geometry::", "Mesh" { + Vertices: *720 { + a: 10,0,10,10,0,-10,-10,0,10,-10,0,-10,10,0.2,-10,10,0,-10,10,0.2,10,10,0,10,-10,0,-10,10,0,-10,-10,0.2,-10,10,0.2,-10,10,0.2,10,8.352591,0.2,5.082438,10,0.2,-10,7.553711,0.2,2.729015,6.454483,0.2,0.5,5.073714,0.2,-1.566467,3.435029,0.2,-3.435029,1.566467,0.2,-5.073714,-0.5,0.2,-6.454483,-2.729015,0.2,-7.553711,-5.082438,0.2,-8.352591,-10,0.2,-10,8.837453,0.2,7.520002,9,0.2,10,-7.520002,0.2,-8.837453,-10,0.2,-9,-7.520002,0.09999999,-8.837453,-10,0.09999999,-9,-7.520002,0.2,-8.837453,-10,0.2,-9,-5.082438,0.09999999,-8.352591,-7.520002,0.09999999,-8.837453,-5.082438,0.2,-8.352591,-7.520002,0.2,-8.837453,-2.729015,0.09999999,-7.553711,-5.082438,0.09999999,-8.352591,-2.729015,0.2,-7.553711,-5.082438,0.2,-8.352591,-0.5,0.09999999,-6.454483,-2.729015,0.09999999,-7.553711,-0.5,0.2,-6.454483,-2.729015,0.2,-7.553711,1.566467,0.09999999,-5.073714,-0.5,0.09999999,-6.454483,1.566467,0.2,-5.073714,-0.5,0.2,-6.454483,3.435029,0.09999999,-3.435029,1.566467,0.09999999,-5.073714,3.435029,0.2,-3.435029,1.566467,0.2,-5.073714,3.435029,0.09999999,-3.435029,3.435029,0.2,-3.435029,5.073714,0.09999999,-1.566467,5.073714,0.2,-1.566467,5.073714,0.09999999,-1.566467,5.073714,0.2,-1.566467,6.454483,0.09999999,0.5,6.454483,0.2,0.5,6.454483,0.09999999,0.5,6.454483,0.2,0.5,7.553711,0.09999999,2.729015,7.553711,0.2,2.729015,7.553711,0.09999999,2.729015,7.553711,0.2,2.729015,8.352591,0.09999999,5.082438,8.352591,0.2,5.082438,8.352591,0.09999999,5.082438,8.352591,0.2,5.082438,8.837453,0.09999999,7.520002,8.837453,0.2,7.520002,8.837453,0.09999999,7.520002,8.837453,0.2,7.520002,9,0.09999999,10,9,0.2,10,1,0.2,10,-10,0.2,10,0.9058934,0.2,8.564212,0.6251841,0.2,7.152991,0.1626749,0.2,5.790482,-0.4737206,0.2,4.5,-1.273113,0.2,3.303624,-2.221825,0.2,2.221825,-3.303624,0.2,1.273113,-4.5,0.2,0.4737206,-5.790482,0.2,-0.1626749,-7.152991,0.2,-0.6251841,-8.564212,0.2,-0.9058934,-10,0.2,-1,0.9058934,0.2,8.564212,0.9058934,0.09999999,8.564212,1,0.2,10,1,0.09999999,10,0.6251841,0.2,7.152991,0.6251841,0.09999999,7.152991,0.9058934,0.2,8.564212,0.9058934,0.09999999,8.564212,0.1626749,0.2,5.790482,0.1626749,0.09999999,5.790482,0.6251841,0.2,7.152991,0.6251841,0.09999999,7.152991,-0.4737206,0.2,4.5,-0.4737206,0.09999999,4.5,0.1626749,0.2,5.790482,0.1626749,0.09999999,5.790482,-1.273113,0.2,3.303624,-1.273113,0.09999999,3.303624,-0.4737206,0.2,4.5,-0.4737206,0.09999999,4.5,-2.221825,0.2,2.221825,-2.221825,0.09999999,2.221825,-1.273113,0.2,3.303624,-1.273113,0.09999999,3.303624,-3.303624,0.09999999,1.273113,-2.221825,0.09999999,2.221825,-3.303624,0.2,1.273113,-2.221825,0.2,2.221825,-4.5,0.09999999,0.4737206,-3.303624,0.09999999,1.273113,-4.5,0.2,0.4737206,-3.303624,0.2,1.273113,-4.5,0.09999999,0.4737206,-4.5,0.2,0.4737206,-5.790482,0.09999999,-0.1626749,-5.790482,0.2,-0.1626749,-5.790482,0.09999999,-0.1626749,-5.790482,0.2,-0.1626749,-7.152991,0.09999999,-0.6251841,-7.152991,0.2,-0.6251841,-7.152991,0.09999999,-0.6251841,-7.152991,0.2,-0.6251841,-8.564212,0.09999999,-0.9058934,-8.564212,0.2,-0.9058934,-8.564212,0.09999999,-0.9058934,-8.564212,0.2,-0.9058934,-10,0.09999999,-1,-10,0.2,-1,2,0.09999999,10,1,0.09999999,10,1.897338,0.09999999,8.433686,1.59111,0.09999999,6.894171,1.086554,0.09999999,5.407799,0.9058934,0.09999999,8.564212,0.3923048,0.09999999,4,0.6251841,0.09999999,7.152991,0.1626749,0.09999999,5.790482,-0.4797599,0.09999999,2.694863,-0.4737206,0.09999999,4.5,-1.273113,0.09999999,3.303624,-1.514719,0.09999999,1.514719,-2.221825,0.09999999,2.221825,-2.694863,0.09999999,0.4797599,-3.303624,0.09999999,1.273113,-4,0.09999999,-0.3923048,-4.5,0.09999999,0.4737206,-5.407799,0.09999999,-1.086554,-5.790482,0.09999999,-0.1626749,-6.894171,0.09999999,-1.59111,-7.152991,0.09999999,-0.6251841,-8.433686,0.09999999,-1.897338,-8.564212,0.09999999,-0.9058934,-10,0.09999999,-2,-10,0.09999999,-1,9,0.09999999,10,8,0.09999999,10,8.837453,0.09999999,7.520002,8.352591,0.09999999,5.082438,7.553711,0.09999999,2.729015,7.846007,0.09999999,7.650528,7.386665,0.09999999,5.341258,6.454483,0.09999999,0.5,6.629832,0.09999999,3.111698,5.588457,0.09999999,1,5.073714,0.09999999,-1.566467,4.28036,0.09999999,-0.9577057,3.435029,0.09999999,-3.435029,2.727922,0.09999999,-2.727922,1.566467,0.09999999,-5.073714,0.9577057,0.09999999,-4.28036,-0.5,0.09999999,-6.454483,-1,0.09999999,-5.588457,-2.729015,0.09999999,-7.553711,-3.111698,0.09999999,-6.629832,-5.082438,0.09999999,-8.352591,-5.341258,0.09999999,-7.386665,-7.520002,0.09999999,-8.837453,-7.650528,0.09999999,-7.846007,-10,0.09999999,-9,-10,0.09999999,-8,-10,0,10,9,0.09999999,10,10,0,10,10,0.2,10,9,0.2,10,2,0.09999999,10,1,0.09999999,10,-10,0.2,10,8,0.09999999,10,5.1,0.09999999,10,4.9,0.09999999,10,1,0.2,10,-10,0.2,-10,-10,0.09999999,-9,-10,0,-10,-10,0,10,-10,0.09999999,-8,-10,0.09999999,-5.1,-10,0.09999999,-4.9,-10,0.09999999,-2,-10,0.09999999,-1,-10,0.2,-1,-10,0.2,10,-10,0.2,-9,4.9,0.09999999,10,4.772529,0.09999999,8.055161,4.392295,0.09999999,6.143596,3.765805,0.09999999,4.298017,2.903778,0.09999999,2.55,1.820965,0.09999999,0.9294547,0.535891,0.09999999,-0.535891,-0.9294547,0.09999999,-1.820965,-2.55,0.09999999,-2.903778,-4.298017,0.09999999,-3.765805,-6.143596,0.09999999,-4.392295,-8.055161,0.09999999,-4.772529,-10,0.09999999,-4.9,5.1,0.09999999,10,4.970817,0.09999999,8.029055,4.58548,0.09999999,6.091833,3.950581,0.09999999,4.22148,3.076984,0.09999999,2.45,1.979635,0.09999999,0.8077024,0.6773124,0.09999999,-0.6773124,-0.8077024,0.09999999,-1.979635,-2.45,0.09999999,-3.076984,-4.22148,0.09999999,-3.950581,-6.091833,0.09999999,-4.58548,-8.029055,0.09999999,-4.970817,-10,0.09999999,-5.1 + } + PolygonVertexIndex: *660 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,16,-15,18,17,-15,19,18,-15,20,19,-15,21,20,-15,22,21,-15,23,22,-15,24,12,-14,25,12,-25,26,22,-24,27,26,-24,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,77,-80,81,77,-81,82,77,-82,83,77,-83,84,77,-84,85,77,-85,86,77,-86,87,77,-87,88,77,-88,89,77,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,139,-142,143,139,-143,144,143,-143,145,143,-145,146,145,-145,147,146,-145,148,146,-148,149,148,-148,150,149,-148,151,149,-151,152,151,-151,153,151,-153,154,153,-153,155,153,-155,156,155,-155,157,155,-157,158,157,-157,159,157,-159,160,159,-159,161,159,-161,162,161,-161,163,161,-163,164,166,-166,167,165,-167,168,165,-168,169,165,-169,170,169,-169,171,170,-169,172,170,-172,173,172,-172,174,173,-172,175,173,-175,176,175,-175,177,175,-177,178,177,-177,179,177,-179,180,179,-179,181,179,-181,182,181,-181,183,181,-183,184,183,-183,185,183,-185,186,185,-185,187,185,-187,188,187,-187,189,187,-189,190,192,-192,193,191,-193,194,191,-194,191,195,-191,195,196,-191,197,190,-197,198,195,-192,198,199,-196,200,195,-200,201,197,-197,202,204,-204,205,203,-205,206,203,-206,207,206,-206,208,207,-206,209,208,-206,210,209,-206,211,210,-206,212,211,-206,203,213,-203,214,215,-139,216,138,-216,217,138,-217,218,138,-218,219,138,-219,140,138,-220,141,140,-220,220,141,-220,142,141,-221,144,142,-221,221,144,-221,147,144,-222,150,147,-222,222,150,-222,152,150,-223,223,152,-223,154,152,-224,156,154,-224,224,156,-224,158,156,-225,225,158,-225,160,158,-226,226,160,-226,162,160,-227,165,169,-228,170,227,-170,172,227,-171,173,227,-173,228,227,-174,175,228,-174,229,228,-176,230,229,-176,177,230,-176,231,230,-178,232,231,-178,179,232,-178,233,232,-180,181,233,-180,234,233,-182,235,234,-182,183,235,-182,236,235,-184,185,236,-184,237,236,-186,187,237,-186,238,237,-188,189,238,-188,239,238,-190,227,228,-215,215,214,-229,229,215,-229,216,215,-230,230,216,-230,217,216,-231,231,217,-231,218,217,-232,232,218,-232,219,218,-233,233,219,-233,220,219,-234,234,220,-234,221,220,-235,235,221,-235,222,221,-236,236,222,-236,223,222,-237,237,223,-237,224,223,-238,238,224,-238,225,224,-239,239,225,-239,226,225,-240 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1980 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *480 { + a: 39.37008,39.37008,39.37008,-39.37008,-39.37008,39.37008,-39.37008,-39.37008,39.37008,0.7874016,39.37008,0,-39.37008,0.7874016,-39.37008,0,39.37008,0,-39.37008,0,39.37008,0.7874016,-39.37008,0.7874016,-39.37008,39.37008,-32.88422,20.0096,-39.37008,-39.37008,-29.73902,10.74415,-25.41135,1.968504,-19.97525,-6.167193,-13.52374,-13.52374,-6.167193,-19.97525,1.968504,-25.41135,10.74415,-29.73902,20.0096,-32.88422,39.37008,-39.37008,-34.79312,29.60631,-35.43307,39.37008,29.60631,-34.79312,39.37008,-35.43307,-31.8185,0.3937008,-41.60322,0.3937008,-31.8185,0.7874016,-41.60322,0.7874016,-26.04051,0.3937008,-35.82523,0.3937008,-26.04051,0.7874016,-35.82523,0.7874016,-19.73326,0.3937008,-29.51798,0.3937008,-19.73326,0.7874016,-29.51798,0.7874016,-13.00465,0.3937008,-22.78937,0.3937008,-13.00465,0.7874016,-22.78937,0.7874016,-5.96982,0.3937008,-15.75454,0.3937008,-5.96982,0.7874016,-15.75454,0.7874016,1.250864,0.3937008,-8.533855,0.3937008,1.250864,0.7874016,-8.533855,0.7874016,-1.250864,0.3937008,-1.250864,0.7874016,8.533855,0.3937008,8.533855,0.7874016,5.96982,0.3937008,5.96982,0.7874016,15.75454,0.3937008,15.75454,0.7874016,13.00465,0.3937008,13.00465,0.7874016,22.78937,0.3937008,22.78937,0.7874016,19.73326,0.3937008,19.73326,0.7874016,29.51798,0.3937008,29.51798,0.7874016,26.04051,0.3937008,26.04051,0.7874016,35.82523,0.3937008,35.82523,0.7874016,31.8185,0.3937008,31.8185,0.7874016,41.60322,0.3937008,41.60322,0.7874016,-3.937008,39.37008,39.37008,39.37008,-3.56651,33.71737,-2.461355,28.16138,-0.6404522,22.79717,1.865042,17.71654,5.012257,13.00639,8.747344,8.747344,13.00639,5.012257,17.71654,1.865042,22.79717,-0.6404522,28.16138,-2.461355,33.71737,-3.56651,39.37008,-3.937008,-33.87844,0.7874016,-33.87844,0.3937008,-39.54328,0.7874016,-39.54328,0.3937008,-28.10045,0.7874016,-28.10045,0.3937008,-33.76529,0.7874016,-33.76529,0.3937008,-21.7932,0.7874016,-21.7932,0.3937008,-27.45804,0.7874016,-27.45804,0.3937008,-15.06459,0.7874016,-15.06459,0.3937008,-20.72943,0.7874016,-20.72943,0.3937008,-8.029761,0.7874016,-8.029761,0.3937008,-13.6946,0.7874016,-13.6946,0.3937008,-0.8090768,0.7874016,-0.8090768,0.3937008,-6.473915,0.7874016,-6.473915,0.3937008,6.473915,0.3937008,0.8090768,0.3937008,6.473915,0.7874016,0.8090768,0.7874016,13.6946,0.3937008,8.029761,0.3937008,13.6946,0.7874016,8.029761,0.7874016,15.06459,0.3937008,15.06459,0.7874016,20.72943,0.3937008,20.72943,0.7874016,21.7932,0.3937008,21.7932,0.7874016,27.45804,0.3937008,27.45804,0.7874016,28.10045,0.3937008,28.10045,0.7874016,33.76529,0.3937008,33.76529,0.7874016,33.87844,0.3937008,33.87844,0.7874016,39.54328,0.3937008,39.54328,0.7874016,-7.874016,39.37008,-3.937008,39.37008,-7.469836,33.20349,-6.264212,27.14241,-4.277773,21.29055,-3.56651,33.71737,-1.544507,15.74803,-2.461355,28.16138,-0.6404522,22.79717,1.888819,10.6097,1.865042,17.71654,5.012257,13.00639,5.963459,5.963459,8.747344,8.747344,10.6097,1.888819,13.00639,5.012257,15.74803,-1.544507,17.71654,1.865042,21.29055,-4.277773,22.79717,-0.6404522,27.14241,-6.264212,28.16138,-2.461355,33.20349,-7.469836,33.71737,-3.56651,39.37008,-7.874016,39.37008,-3.937008,-35.43307,39.37008,-31.49606,39.37008,-34.79312,29.60631,-32.88422,20.0096,-29.73902,10.74415,-30.88979,30.12019,-29.08136,21.02857,-25.41135,1.968504,-26.1017,12.25078,-22.0018,3.937008,-19.97525,-6.167193,-16.85181,-3.770495,-13.52374,-13.52374,-10.73985,-10.73985,-6.167193,-19.97525,-3.770495,-16.85181,1.968504,-25.41135,3.937008,-22.0018,10.74415,-29.73902,12.25078,-26.1017,20.0096,-32.88422,21.02857,-29.08136,29.60631,-34.79312,30.12019,-30.88979,39.37008,-35.43307,39.37008,-31.49606,-39.37008,-1.605866E-12,35.43307,0.3937008,39.37008,-1.605866E-12,39.37008,0.7874016,35.43307,0.7874016,7.874016,0.3937008,3.937008,0.3937008,-39.37008,0.7874016,31.49606,0.3937008,20.07874,0.3937008,19.29134,0.3937008,3.937008,0.7874016,-39.37008,0.7874016,-35.43307,0.3937008,-39.37008,-4.373065E-13,39.37008,-4.373065E-13,-31.49606,0.3937008,-20.07874,0.3937008,-19.29134,0.3937008,-7.874016,0.3937008,-3.937008,0.3937008,-3.937008,0.7874016,39.37008,0.7874016,-35.43307,0.7874016,-19.29134,39.37008,-18.78948,31.71323,-17.2925,24.18739,-14.826,16.92133,-11.4322,10.03937,-7.169153,3.659271,-2.109807,-2.109807,3.659271,-7.169153,10.03937,-11.4322,16.92133,-14.826,24.18739,-17.2925,31.71323,-18.78948,39.37008,-19.29134,-20.07874,39.37008,-19.57015,31.61045,-18.05307,23.98359,-15.55347,16.62,-12.11411,9.645669,-7.79384,3.179931,-2.666584,-2.666584,3.179931,-7.79384,9.645669,-12.11411,16.62,-15.55347,23.98359,-18.05307,31.61045,-19.57015,39.37008,-20.07874 + } + UVIndex: *660 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,16,14,18,17,14,19,18,14,20,19,14,21,20,14,22,21,14,23,22,14,24,12,13,25,12,24,26,22,23,27,26,23,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,77,79,81,77,80,82,77,81,83,77,82,84,77,83,85,77,84,86,77,85,87,77,86,88,77,87,89,77,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,139,141,143,139,142,144,143,142,145,143,144,146,145,144,147,146,144,148,146,147,149,148,147,150,149,147,151,149,150,152,151,150,153,151,152,154,153,152,155,153,154,156,155,154,157,155,156,158,157,156,159,157,158,160,159,158,161,159,160,162,161,160,163,161,162,164,166,165,167,165,166,168,165,167,169,165,168,170,169,168,171,170,168,172,170,171,173,172,171,174,173,171,175,173,174,176,175,174,177,175,176,178,177,176,179,177,178,180,179,178,181,179,180,182,181,180,183,181,182,184,183,182,185,183,184,186,185,184,187,185,186,188,187,186,189,187,188,190,192,191,193,191,192,194,191,193,191,195,190,195,196,190,197,190,196,198,195,191,198,199,195,200,195,199,201,197,196,202,204,203,205,203,204,206,203,205,207,206,205,208,207,205,209,208,205,210,209,205,211,210,205,212,211,205,203,213,202,214,215,138,216,138,215,217,138,216,218,138,217,219,138,218,140,138,219,141,140,219,220,141,219,142,141,220,144,142,220,221,144,220,147,144,221,150,147,221,222,150,221,152,150,222,223,152,222,154,152,223,156,154,223,224,156,223,158,156,224,225,158,224,160,158,225,226,160,225,162,160,226,165,169,227,170,227,169,172,227,170,173,227,172,228,227,173,175,228,173,229,228,175,230,229,175,177,230,175,231,230,177,232,231,177,179,232,177,233,232,179,181,233,179,234,233,181,235,234,181,183,235,181,236,235,183,185,236,183,237,236,185,187,237,185,238,237,187,189,238,187,239,238,189,227,228,214,215,214,228,229,215,228,216,215,229,230,216,229,217,216,230,231,217,230,218,217,231,232,218,231,219,218,232,233,219,232,220,219,233,234,220,233,221,220,234,235,221,234,222,221,235,236,222,235,223,222,236,237,223,236,224,223,237,238,224,237,225,224,238,239,225,238,226,225,239 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *220 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_curvePavement, Model::RootNode + C: "OO",5479942777028127717,0 + + ;Geometry::, Model::Mesh road_curvePavement + C: "OO",5683768735364340854,5479942777028127717 + + ;Material::pavement, Model::Mesh road_curvePavement + C: "OO",17046,5479942777028127717 + + ;Material::asphaltEdge, Model::Mesh road_curvePavement + C: "OO",17042,5479942777028127717 + + ;Material::asphalt, Model::Mesh road_curvePavement + C: "OO",9934,5479942777028127717 + + ;Material::line, Model::Mesh road_curvePavement + C: "OO",9174,5479942777028127717 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_curvePavement.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curvePavement.fbx.import new file mode 100644 index 0000000..f3eea89 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_curvePavement.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b6qpentiexnep" +path="res://.godot/imported/road_curvePavement.fbx-99fdcc6d28323301a317a20c79a2ee1c.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_curvePavement.fbx" +dest_files=["res://.godot/imported/road_curvePavement.fbx-99fdcc6d28323301a317a20c79a2ee1c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDouble.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDouble.fbx new file mode 100644 index 0000000..0fd389d --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDouble.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 18 + Millisecond: 749 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_drivewayDouble.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_drivewayDouble.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4980597104784132981, "Model::road_drivewayDouble", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4723151596281419608, "Geometry::", "Mesh" { + Vertices: *336 { + a: 1.3,0.09999999,4,1.8,0.09999999,4,1.3,0.2,4,5,0.09999999,4,5,0.2,4,5,0,5,5,0,-5,-5,0,5,-5,0,-5,-1.3,0.2,4,-1.3,0.2,5,-5,0.2,4,-5,0.2,5,-1.8,0.09999999,4,-1.3,0.09999999,4,-5,0.09999999,4,-1.3,0.2,4,-5,0.2,4,-1.3,0.2,-4,-5,0.2,-4,-1.3,0.2,-5,-5,0.2,-5,1.3,0.09999999,-4,1.3,0.2,-5,1.3,0.2,-4,-5,0.09999999,-4,-5,0.2,-4,-1.3,0.09999999,-4,-1.3,0.2,-4,-1.3,0.2,4,-1.3,0.09999999,4,-1.3,0.2,5,-5,0,-5,5,0,-5,-5,0.2,-5,-1.3,0.2,-5,1.3,0.2,-5,5,0.2,-5,1.3,0.09999999,4,1.3,0.2,4,1.3,0.2,5,-1.3,0.2,-4,-1.3,0.2,-5,-1.3,0.09999999,-4,-5,0.2,5,-1.3,0.2,5,-5,0,5,1.3,0.2,5,5,0.2,5,5,0,5,5,0.2,4,5,0.2,5,1.3,0.2,4,1.3,0.2,5,5,0.09999999,-4,1.3,0.09999999,-4,5,0.2,-4,1.3,0.2,-4,5,0.2,-5,5,0.2,-4,1.3,0.2,-5,1.3,0.2,-4,5,0.09999999,3,5,0.09999999,4,-5,0.09999999,3,1.8,0.09999999,4,1.3,0.09999999,4,-1.3,0.09999999,4,-1.8,0.09999999,4,-5,0.09999999,4,1.3,0.09999999,-4,-1.3,0.09999999,-4,1.3,0.2,-5,-1.3,0.2,-5,5,0.09999999,-4,5,0.09999999,-3,1.3,0.09999999,-4,-5,0.09999999,-3,-1.3,0.09999999,-4,-5,0.09999999,-4,1.3,0.09999999,4,1.3,0.2,5,-1.3,0.09999999,4,-1.3,0.2,5,5,0.09999999,-0.09999999,-5,0.09999999,-0.09999999,-5,0.09999999,-4,-5,0.2,-5,-5,0.2,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5,5,0.09999999,0.09999999,-5,0.09999999,0.09999999 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,16,-16,18,20,-20,21,19,-21,22,24,-24,25,27,-27,28,26,-28,29,31,-31,32,34,-34,35,33,-35,35,36,-34,37,33,-37,38,40,-40,41,43,-43,44,46,-46,47,45,-47,47,46,-49,49,48,-47,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,65,-65,67,66,-65,68,67,-65,69,68,-65,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,77,-79,80,82,-82,83,81,-83,84,75,-86,77,85,-76,86,88,-88,87,89,-87,90,86,-90,91,86,-91,92,91,-91,93,92,-91,94,93,-91,95,94,-91,96,95,-91,97,96,-91,98,100,-100,100,101,-100,99,101,-103,102,101,-104,103,101,-105,104,101,-106,105,101,-107,101,107,-107,106,107,-109,109,108,-108,110,111,-63,64,62,-112,84,85,-111,111,110,-86 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9950371,0.09950371,0,0.9950371,0.09950371,0,0.9950371,0.09950371,0,0.9950371,0.09950371,0,0.9950371,0.09950371,0,0.9950371,0.09950371,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *224 { + a: -5.11811,0.3937008,-7.086614,0.3937008,-5.11811,0.7874016,-19.68504,0.3937008,-19.68504,0.7874016,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,5.11811,15.74803,5.11811,19.68504,19.68504,15.74803,19.68504,19.68504,7.086614,0.3937008,5.11811,0.3937008,19.68504,0.3937008,5.11811,0.7874016,19.68504,0.7874016,5.11811,-15.74803,19.68504,-15.74803,5.11811,-19.68504,19.68504,-19.68504,-15.74803,0.3937008,-19.68504,0.7874016,-15.74803,0.7874016,-19.68504,0.3937008,-19.68504,0.7874016,-5.11811,0.3937008,-5.11811,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,19.68504,2.010836E-10,-19.68504,2.010836E-10,19.68504,0.7874016,5.11811,0.7874016,-5.11811,0.7874016,-19.68504,0.7874016,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,15.74803,0.7874016,19.68504,0.7874016,15.74803,0.3937008,-19.68504,0.7874016,-5.11811,0.7874016,-19.68504,3.552714E-13,5.11811,0.7874016,19.68504,0.7874016,19.68504,3.552714E-13,-19.68504,15.74803,-19.68504,19.68504,-5.11811,15.74803,-5.11811,19.68504,19.68504,0.3937008,5.11811,0.3937008,19.68504,0.7874016,5.11811,0.7874016,-19.68504,-19.68504,-19.68504,-15.74803,-5.11811,-19.68504,-5.11811,-15.74803,-19.68504,11.81102,-19.68504,15.74803,19.68504,11.81102,-7.086614,15.74803,-5.11811,15.74803,5.11811,15.74803,7.086614,15.74803,19.68504,15.74803,5.11811,15.70905,-5.11811,15.70905,5.11811,19.6657,-5.11811,19.6657,-19.68504,-15.74803,-19.68504,-11.81102,-5.11811,-15.74803,19.68504,-11.81102,5.11811,-15.74803,19.68504,-15.74803,-5.11811,15.70905,-5.11811,19.6657,5.11811,15.70905,5.11811,19.6657,-19.68504,-0.3937008,19.68504,-0.3937008,-15.74803,0.3937008,-19.68504,0.7874016,-15.74803,0.7874016,-19.68504,-1.457524E-13,19.68504,-1.457524E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,1.821904E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,1.821904E-13,15.74803,0.7874016,19.68504,0.7874016,-19.68504,0.3937008,19.68504,0.3937008 + } + UVIndex: *216 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,16,15,18,20,19,21,19,20,22,24,23,25,27,26,28,26,27,29,31,30,32,34,33,35,33,34,35,36,33,37,33,36,38,40,39,41,43,42,44,46,45,47,45,46,47,46,48,49,48,46,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,65,64,67,66,64,68,67,64,69,68,64,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,77,78,80,82,81,83,81,82,84,75,85,77,85,75,86,88,87,87,89,86,90,86,89,91,86,90,92,91,90,93,92,90,94,93,90,95,94,90,96,95,90,97,96,90,98,100,99,100,101,99,99,101,102,102,101,103,103,101,104,104,101,105,105,101,106,101,107,106,106,107,108,109,108,107,110,111,62,64,62,111,84,85,110,111,110,85 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_drivewayDouble, Model::RootNode + C: "OO",4980597104784132981,0 + + ;Geometry::, Model::Mesh road_drivewayDouble + C: "OO",4723151596281419608,4980597104784132981 + + ;Material::pavement, Model::Mesh road_drivewayDouble + C: "OO",17046,4980597104784132981 + + ;Material::asphaltEdge, Model::Mesh road_drivewayDouble + C: "OO",17042,4980597104784132981 + + ;Material::asphalt, Model::Mesh road_drivewayDouble + C: "OO",9934,4980597104784132981 + + ;Material::line, Model::Mesh road_drivewayDouble + C: "OO",9174,4980597104784132981 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDouble.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDouble.fbx.import new file mode 100644 index 0000000..93693c8 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDouble.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c2gus3enlrnuh" +path="res://.godot/imported/road_drivewayDouble.fbx-909fc4f02b3a97359cc38f9d3fb80304.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDouble.fbx" +dest_files=["res://.godot/imported/road_drivewayDouble.fbx-909fc4f02b3a97359cc38f9d3fb80304.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDoubleBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDoubleBarrier.fbx new file mode 100644 index 0000000..51ce89d --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDoubleBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 19 + Millisecond: 805 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_drivewayDoubleBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_drivewayDoubleBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5290332469168830491, "Model::road_drivewayDoubleBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5636469172012748877, "Geometry::", "Mesh" { + Vertices: *288 { + a: -1.3,0.8,4.7,-1.3,0.8,5,-5,0.8,4.7,-5,0.8,5,5,5.89091E-14,-5,1.3,4.511947E-16,-5,5,5.89091E-14,-4.5,1.3,4.511947E-16,-4.5,5,0,5,1.3,5.84579E-14,5,5,0.8,5,1.3,0.8,5,5,0,4.5,1.3,5.84579E-14,4.5,5,0,5,1.3,5.84579E-14,5,5,0,4.5,5,0.8,4.7,1.3,5.84579E-14,4.5,1.3,0.8,4.7,-1.3,4.511947E-16,4.5,-1.3,4.511947E-16,5,-1.3,0.8,4.7,-1.3,0.8,5,5,0.8,-5,5,5.89091E-14,-5,5,0.8,-4.7,5,5.89091E-14,-4.5,1.3,4.511947E-16,-5,1.3,0.8,-5,1.3,4.511947E-16,-4.5,1.3,0.8,-4.7,-1.3,4.511947E-16,4.5,-5,5.89091E-14,4.5,-1.3,4.511947E-16,5,-5,5.89091E-14,5,-5,0,-4.5,-5,0.8,-4.7,-1.3,5.84579E-14,-4.5,-1.3,0.8,-4.7,-1.3,0.8,-5,-1.3,5.84579E-14,-5,-1.3,0.8,-4.7,-1.3,5.84579E-14,-4.5,-5,0,-5,-1.3,5.84579E-14,-5,-5,0.8,-5,-1.3,0.8,-5,-1.3,4.511947E-16,5,-5,5.89091E-14,5,-1.3,0.8,5,-5,0.8,5,-1.3,0.8,-5,-1.3,0.8,-4.7,-5,0.8,-5,-5,0.8,-4.7,-5,0,-5,-5,0.8,-5,-5,0,-4.5,-5,0.8,-4.7,1.3,5.84579E-14,4.5,1.3,0.8,4.7,1.3,5.84579E-14,5,1.3,0.8,5,5,0.8,4.7,5,0.8,5,1.3,0.8,4.7,1.3,0.8,5,1.3,4.511947E-16,-5,5,5.89091E-14,-5,1.3,0.8,-5,5,0.8,-5,-1.3,5.84579E-14,-5,-5,0,-5,-1.3,5.84579E-14,-4.5,-5,0,-4.5,1.3,4.511947E-16,-4.5,1.3,0.8,-4.7,5,5.89091E-14,-4.5,5,0.8,-4.7,-1.3,4.511947E-16,4.5,-1.3,0.8,4.7,-5,5.89091E-14,4.5,-5,0.8,4.7,5,0,4.5,5,0,5,5,0.8,4.7,5,0.8,5,-5,5.89091E-14,4.5,-5,0.8,4.7,-5,5.89091E-14,5,-5,0.8,5,5,0.8,-5,5,0.8,-4.7,1.3,0.8,-5,1.3,0.8,-4.7 + } + PolygonVertexIndex: *144 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *432 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: 5.11811,18.50394,5.11811,19.68504,19.68504,18.50394,19.68504,19.68504,19.68504,-19.68504,5.11811,-19.68504,19.68504,-17.71654,5.11811,-17.71654,19.68504,1.317955E-25,5.11811,2.301492E-13,19.68504,3.149606,5.11811,3.149606,19.68504,17.71654,5.11811,17.71654,19.68504,19.68504,5.11811,19.68504,-19.68504,4.296891,-19.68504,7.543431,-5.11811,4.296891,-5.11811,7.543431,-17.71654,3.134747E-15,-19.68504,3.134747E-15,-18.50394,3.149606,-19.68504,3.149606,19.68504,3.149606,19.68504,4.147859E-13,18.50394,3.149606,17.71654,4.147859E-13,-19.68504,3.134747E-15,-19.68504,3.149606,-17.71654,3.134747E-15,-18.50394,3.149606,-5.11811,17.71654,-19.68504,17.71654,-5.11811,19.68504,-19.68504,19.68504,-19.68504,4.296891,-19.68504,7.543431,-5.11811,4.296891,-5.11811,7.543431,19.68504,3.149606,19.68504,1.826056E-13,18.50394,3.149606,17.71654,1.826056E-13,19.68504,1.317955E-25,5.11811,2.301492E-13,19.68504,3.149606,5.11811,3.149606,-5.11811,1.776357E-15,-19.68504,2.319256E-13,-5.11811,3.149606,-19.68504,3.149606,5.11811,-19.68504,5.11811,-18.50394,19.68504,-19.68504,19.68504,-18.50394,-19.68504,-5.224579E-15,-19.68504,3.149606,-17.71654,-5.224579E-15,-18.50394,3.149606,17.71654,1.826056E-13,18.50394,3.149606,19.68504,1.826056E-13,19.68504,3.149606,-19.68504,18.50394,-19.68504,19.68504,-5.11811,18.50394,-5.11811,19.68504,-5.11811,1.776357E-15,-19.68504,2.319256E-13,-5.11811,3.149606,-19.68504,3.149606,-5.11811,-19.68504,-19.68504,-19.68504,-5.11811,-17.71654,-19.68504,-17.71654,5.11811,4.296891,5.11811,7.543431,19.68504,4.296891,19.68504,7.543431,5.11811,4.296891,5.11811,7.543431,19.68504,4.296891,19.68504,7.543431,-17.71654,-5.224579E-15,-19.68504,-5.224579E-15,-18.50394,3.149606,-19.68504,3.149606,17.71654,4.147859E-13,18.50394,3.149606,19.68504,4.147859E-13,19.68504,3.149606,-19.68504,-19.68504,-19.68504,-18.50394,-5.11811,-19.68504,-5.11811,-18.50394 + } + UVIndex: *144 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *48 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_drivewayDoubleBarrier, Model::RootNode + C: "OO",5290332469168830491,0 + + ;Geometry::, Model::Mesh road_drivewayDoubleBarrier + C: "OO",5636469172012748877,5290332469168830491 + + ;Material::pavement, Model::Mesh road_drivewayDoubleBarrier + C: "OO",17046,5290332469168830491 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDoubleBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDoubleBarrier.fbx.import new file mode 100644 index 0000000..090dd1f --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDoubleBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://llausfq8hxwk" +path="res://.godot/imported/road_drivewayDoubleBarrier.fbx-702e1a33fc26cd4d2c19e538b29ed544.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewayDoubleBarrier.fbx" +dest_files=["res://.godot/imported/road_drivewayDoubleBarrier.fbx-702e1a33fc26cd4d2c19e538b29ed544.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingle.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingle.fbx new file mode 100644 index 0000000..c056f2a --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingle.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 19 + Millisecond: 920 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_drivewaySingle.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_drivewaySingle.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5078731869861577185, "Model::road_drivewaySingle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4698892976541406135, "Geometry::", "Mesh" { + Vertices: *270 { + a: 1.3,0.09999999,4,1.8,0.09999999,4,1.3,0.2,4,5,0.09999999,4,5,0.2,4,1.3,0.09999999,4,1.3,0.2,4,1.3,0.2,5,-1.3,0.2,4,-1.3,0.09999999,4,-1.3,0.2,5,-1.8,0.09999999,4,-1.3,0.09999999,4,-5,0.09999999,4,-1.3,0.2,4,-5,0.2,4,-5,0.2,5,-1.3,0.2,5,-5,0,5,1.3,0.2,5,5,0.2,5,5,0,5,5,0.2,-5,5,0.2,-4,-5,0.2,-5,-5,0.2,-4,5,0,5,5,0,-5,-5,0,5,-5,0,-5,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,5,0.09999999,-4,-5,0.09999999,-4,5,0.2,-4,-5,0.2,-4,5,0.2,4,5,0.2,5,1.3,0.2,4,1.3,0.2,5,-1.3,0.2,4,-1.3,0.2,5,-5,0.2,4,-5,0.2,5,1.3,0.09999999,4,1.3,0.2,5,-1.3,0.09999999,4,-1.3,0.2,5,5,0.09999999,-4,5,0.09999999,-3,-5,0.09999999,-4,-5,0.09999999,-3,5,0.09999999,3,5,0.09999999,4,-5,0.09999999,3,1.8,0.09999999,4,1.3,0.09999999,4,-1.3,0.09999999,4,-1.8,0.09999999,4,-5,0.09999999,4,5,0.09999999,0.09999999,-5,0.09999999,0.09999999,5,0.09999999,-0.09999999,-5,0.09999999,-0.09999999,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5,-5,0.09999999,-4,-5,0.2,-5,-5,0.2,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,10,-10,11,13,-13,14,12,-14,15,14,-14,16,18,-18,19,17,-19,19,18,-21,21,20,-19,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,59,-57,61,60,-57,62,63,-55,56,54,-64,64,51,-66,53,65,-52,66,68,-68,68,69,-68,67,69,-71,70,69,-72,71,69,-73,72,69,-74,73,69,-75,69,75,-75,74,75,-77,77,76,-76,78,80,-80,79,81,-79,82,78,-82,83,78,-83,84,83,-83,85,84,-83,86,85,-83,87,86,-83,88,87,-83,89,88,-83,64,65,-63,63,62,-66 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *180 { + a: -5.11811,0.3937008,-7.086614,0.3937008,-5.11811,0.7874016,-19.68504,0.3937008,-19.68504,0.7874016,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,7.086614,0.3937008,5.11811,0.3937008,19.68504,0.3937008,5.11811,0.7874016,19.68504,0.7874016,-19.68504,0.7874016,-5.11811,0.7874016,-19.68504,3.552714E-13,5.11811,0.7874016,19.68504,0.7874016,19.68504,3.552714E-13,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,-19.68504,15.74803,-19.68504,19.68504,-5.11811,15.74803,-5.11811,19.68504,5.11811,15.74803,5.11811,19.68504,19.68504,15.74803,19.68504,19.68504,-5.11811,15.70905,-5.11811,19.6657,5.11811,15.70905,5.11811,19.6657,-19.68504,-15.74803,-19.68504,-11.81102,19.68504,-15.74803,19.68504,-11.81102,-19.68504,11.81102,-19.68504,15.74803,19.68504,11.81102,-7.086614,15.74803,-5.11811,15.74803,5.11811,15.74803,7.086614,15.74803,19.68504,15.74803,-19.68504,0.3937008,19.68504,0.3937008,-19.68504,-0.3937008,19.68504,-0.3937008,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,1.730809E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,1.730809E-13,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-15.74803,0.7874016,-19.68504,-1.457524E-13,19.68504,-1.457524E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,10,9,11,13,12,14,12,13,15,14,13,16,18,17,19,17,18,19,18,20,21,20,18,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,57,56,59,58,56,60,59,56,61,60,56,62,63,54,56,54,63,64,51,65,53,65,51,66,68,67,68,69,67,67,69,70,70,69,71,71,69,72,72,69,73,73,69,74,69,75,74,74,75,76,77,76,75,78,80,79,79,81,78,82,78,81,83,78,82,84,83,82,85,84,82,86,85,82,87,86,82,88,87,82,89,88,82,64,65,62,63,62,65 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_drivewaySingle, Model::RootNode + C: "OO",5078731869861577185,0 + + ;Geometry::, Model::Mesh road_drivewaySingle + C: "OO",4698892976541406135,5078731869861577185 + + ;Material::pavement, Model::Mesh road_drivewaySingle + C: "OO",17046,5078731869861577185 + + ;Material::asphaltEdge, Model::Mesh road_drivewaySingle + C: "OO",17042,5078731869861577185 + + ;Material::asphalt, Model::Mesh road_drivewaySingle + C: "OO",9934,5078731869861577185 + + ;Material::line, Model::Mesh road_drivewaySingle + C: "OO",9174,5078731869861577185 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingle.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingle.fbx.import new file mode 100644 index 0000000..18356e4 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingle.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cwwn1bqp68abs" +path="res://.godot/imported/road_drivewaySingle.fbx-984fabe10ef049266edb612bc1180337.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingle.fbx" +dest_files=["res://.godot/imported/road_drivewaySingle.fbx-984fabe10ef049266edb612bc1180337.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingleBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingleBarrier.fbx new file mode 100644 index 0000000..68a92c6 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingleBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 19 + Millisecond: 996 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_drivewaySingleBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_drivewaySingleBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5031400030069281960, "Model::road_drivewaySingleBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4725536699453471507, "Geometry::", "Mesh" { + Vertices: *216 { + a: 5,0,-4.5,5,0,-5,-5,0,-4.5,-5,0,-5,-5,0,-5,-5,0.8,-5,-5,0,-4.5,-5,0.8,-4.7,-1.3,4.511947E-16,4.5,-1.3,4.511947E-16,5,-1.3,0.8,4.7,-1.3,0.8,5,5,0,-4.5,-5,0,-4.5,5,0.8,-4.7,-5,0.8,-4.7,5,0.8,-4.7,-5,0.8,-4.7,5,0.8,-5,-5,0.8,-5,-1.3,4.511947E-16,5,-5,5.89091E-14,5,-1.3,0.8,5,-5,0.8,5,5,0.8,4.7,5,0.8,5,1.3,0.8,4.7,1.3,0.8,5,-1.3,4.511947E-16,4.5,-1.3,0.8,4.7,-5,5.89091E-14,4.5,-5,0.8,4.7,5,0,4.5,1.3,5.84579E-14,4.5,5,0,5,1.3,5.84579E-14,5,5,0,4.5,5,0,5,5,0.8,4.7,5,0.8,5,5,0.8,-5,5,0,-5,5,0.8,-4.7,5,0,-4.5,-1.3,4.511947E-16,4.5,-5,5.89091E-14,4.5,-1.3,4.511947E-16,5,-5,5.89091E-14,5,-1.3,0.8,4.7,-1.3,0.8,5,-5,0.8,4.7,-5,0.8,5,-5,5.89091E-14,4.5,-5,0.8,4.7,-5,5.89091E-14,5,-5,0.8,5,5,0,4.5,5,0.8,4.7,1.3,5.84579E-14,4.5,1.3,0.8,4.7,1.3,5.84579E-14,4.5,1.3,0.8,4.7,1.3,5.84579E-14,5,1.3,0.8,5,5,0,5,1.3,5.84579E-14,5,5,0.8,5,1.3,0.8,5,-5,0,-5,5,0,-5,-5,0.8,-5,5,0.8,-5 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 19.68504,-17.71654,19.68504,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,-19.68504,0,-19.68504,3.149606,-17.71654,0,-18.50394,3.149606,-17.71654,3.134747E-15,-19.68504,3.134747E-15,-18.50394,3.149606,-19.68504,3.149606,19.68504,4.296891,-19.68504,4.296891,19.68504,7.543431,-19.68504,7.543431,-19.68504,-18.50394,19.68504,-18.50394,-19.68504,-19.68504,19.68504,-19.68504,-5.11811,1.776357E-15,-19.68504,2.319256E-13,-5.11811,3.149606,-19.68504,3.149606,-19.68504,18.50394,-19.68504,19.68504,-5.11811,18.50394,-5.11811,19.68504,5.11811,4.296891,5.11811,7.543431,19.68504,4.296891,19.68504,7.543431,19.68504,17.71654,5.11811,17.71654,19.68504,19.68504,5.11811,19.68504,-17.71654,-5.224579E-15,-19.68504,-5.224579E-15,-18.50394,3.149606,-19.68504,3.149606,19.68504,3.149606,19.68504,1.776357E-13,18.50394,3.149606,17.71654,1.776357E-13,-5.11811,17.71654,-19.68504,17.71654,-5.11811,19.68504,-19.68504,19.68504,5.11811,18.50394,5.11811,19.68504,19.68504,18.50394,19.68504,19.68504,17.71654,4.147859E-13,18.50394,3.149606,19.68504,4.147859E-13,19.68504,3.149606,-19.68504,4.296891,-19.68504,7.543431,-5.11811,4.296891,-5.11811,7.543431,17.71654,1.826056E-13,18.50394,3.149606,19.68504,1.826056E-13,19.68504,3.149606,19.68504,1.317955E-25,5.11811,2.301492E-13,19.68504,3.149606,5.11811,3.149606,19.68504,0,-19.68504,0,19.68504,3.149606,-19.68504,3.149606 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_drivewaySingleBarrier, Model::RootNode + C: "OO",5031400030069281960,0 + + ;Geometry::, Model::Mesh road_drivewaySingleBarrier + C: "OO",4725536699453471507,5031400030069281960 + + ;Material::pavement, Model::Mesh road_drivewaySingleBarrier + C: "OO",17046,5031400030069281960 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingleBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingleBarrier.fbx.import new file mode 100644 index 0000000..8731b57 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingleBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b3o21gklcfwiv" +path="res://.godot/imported/road_drivewaySingleBarrier.fbx-fcd11fc1fa0363243f7ab6b8db005c86.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_drivewaySingleBarrier.fbx" +dest_files=["res://.godot/imported/road_drivewaySingleBarrier.fbx-fcd11fc1fa0363243f7ab6b8db005c86.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_end.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_end.fbx new file mode 100644 index 0000000..6cda2cd --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_end.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 20 + Millisecond: 74 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_end.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_end.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5015831460970058095, "Model::road_end", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5152767960708210466, "Geometry::", "Mesh" { + Vertices: *180 { + a: -4,0.09999999,-4,-4,0.2,-4,5,0.09999999,-4,5,0.2,-4,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,-4,0.09999999,4,5,0.09999999,4,-4,0.2,4,5,0.2,4,5,0,5,5,0,-5,-5,0,5,-5,0,-5,5,0.2,-5,5,0.2,-4,-5,0.2,-5,-4,0.2,-4,-4,0.2,4,-5,0.2,5,5,0.2,5,5,0.2,4,5,0,5,-5,0,5,5,0.2,5,-5,0.2,5,-5,0,-5,-5,0.2,-5,-5,0,5,-5,0.2,5,-4,0.2,-4,-4,0.09999999,-4,-4,0.2,4,-4,0.09999999,4,5,0.09999999,-4,5,0.09999999,-3,-4,0.09999999,-4,-3,0.09999999,-3,-3,0.09999999,3,-4,0.09999999,4,5,0.09999999,4,5,0.09999999,3,5,0.09999999,-0.09999999,5,0.09999999,0.09999999,-0.09999999,0.09999999,-0.09999999,-0.09999999,0.09999999,0.09999999,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,18,21,-21,21,22,-21,23,20,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,38,41,-41,41,42,-41,43,40,-43,44,46,-46,47,45,-47,48,50,-50,50,51,-50,49,51,-53,52,51,-54,53,51,-55,54,51,-56,55,51,-57,51,57,-57,56,57,-59,59,58,-58,37,39,-45,46,44,-40,47,46,-40,39,40,-48,47,40,-46,43,45,-41 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *120 { + a: -15.74803,0.3937008,-15.74803,0.7874016,19.68504,0.3937008,19.68504,0.7874016,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,15.74803,0.3937008,-19.68504,0.3937008,15.74803,0.7874016,-19.68504,0.7874016,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,15.74803,-15.74803,15.74803,15.74803,19.68504,19.68504,-19.68504,19.68504,-19.68504,15.74803,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,-19.68504,0,-19.68504,0.7874016,19.68504,0,19.68504,0.7874016,15.74803,0.7874016,15.74803,0.3937008,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,-15.74803,-19.68504,-11.81102,15.74803,-15.74803,11.81102,-11.81102,11.81102,11.81102,15.74803,15.74803,-19.68504,15.74803,-19.68504,11.81102,-19.68504,-0.3937008,-19.68504,0.3937008,0.3937008,-0.3937008,0.3937008,0.3937008,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,1.725924E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,1.725924E-13,15.74803,0.7874016,19.68504,0.7874016 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,18,21,20,21,22,20,23,20,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,38,41,40,41,42,40,43,40,42,44,46,45,47,45,46,48,50,49,50,51,49,49,51,52,52,51,53,53,51,54,54,51,55,55,51,56,51,57,56,56,57,58,59,58,57,37,39,44,46,44,39,47,46,39,39,40,47,47,40,45,43,45,40 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_end, Model::RootNode + C: "OO",5015831460970058095,0 + + ;Geometry::, Model::Mesh road_end + C: "OO",5152767960708210466,5015831460970058095 + + ;Material::pavement, Model::Mesh road_end + C: "OO",17046,5015831460970058095 + + ;Material::asphaltEdge, Model::Mesh road_end + C: "OO",17042,5015831460970058095 + + ;Material::line, Model::Mesh road_end + C: "OO",9174,5015831460970058095 + + ;Material::asphalt, Model::Mesh road_end + C: "OO",9934,5015831460970058095 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_end.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_end.fbx.import new file mode 100644 index 0000000..2e7ec8e --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_end.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dcex64hn1b1ns" +path="res://.godot/imported/road_end.fbx-95ed120fded5105eeb733e94b86cd8f1.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_end.fbx" +dest_files=["res://.godot/imported/road_end.fbx-95ed120fded5105eeb733e94b86cd8f1.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_endBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endBarrier.fbx new file mode 100644 index 0000000..771cda5 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 20 + Millisecond: 141 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_endBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_endBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5729163371805824010, "Model::road_endBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4781785437432787877, "Geometry::", "Mesh" { + Vertices: *144 { + a: 5,0.8,-5,5,0.8,-4.7,-5,0.8,-5,-4.7,0.8,-4.7,-5,0.8,5,-4.7,0.8,4.7,5,0.8,4.7,5,0.8,5,5,0,4.5,5,0,5,5,0.8,4.7,5,0.8,5,5,0.8,-5,5,0,-5,5,0.8,-4.7,5,0,-4.5,5,0,5,5,0,4.5,-5,0,5,-4.5,0,4.5,-4.5,0,-4.5,-5,0,-5,5,0,-4.5,5,0,-5,5,0,-4.5,-4.5,0,-4.5,5,0.8,-4.7,-4.7,0.8,-4.7,-5,0,-5,-5,0.8,-5,-5,0,5,-5,0.8,5,-5,0,-5,5,0,-5,-5,0.8,-5,5,0.8,-5,5,0,5,-5,0,5,5,0.8,5,-5,0.8,5,-4.7,0.8,-4.7,-4.5,0,-4.5,-4.7,0.8,4.7,-4.5,0,4.5,-4.5,0,4.5,5,0,4.5,-4.7,0.8,4.7,5,0.8,4.7 + } + PolygonVertexIndex: *84 { + a: 0,2,-2,3,1,-3,4,3,-3,3,4,-6,5,4,-7,7,6,-5,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,18,21,-21,20,21,-23,23,22,-22,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *252 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: -19.68504,-19.68504,-19.68504,-18.50394,19.68504,-19.68504,18.50394,-18.50394,19.68504,19.68504,18.50394,18.50394,-19.68504,18.50394,-19.68504,19.68504,-17.71654,0,-19.68504,0,-18.50394,3.149606,-19.68504,3.149606,19.68504,3.149606,19.68504,1.828603E-13,18.50394,3.149606,17.71654,1.828603E-13,19.68504,19.68504,19.68504,17.71654,-19.68504,19.68504,-17.71654,17.71654,-17.71654,-17.71654,-19.68504,-19.68504,19.68504,-17.71654,19.68504,-19.68504,19.68504,4.296891,-17.71654,4.296891,19.68504,7.543431,-18.50394,7.543431,-19.68504,-4.248254E-12,-19.68504,3.149606,19.68504,-4.248254E-12,19.68504,3.149606,19.68504,-4.730819E-12,-19.68504,-4.730819E-12,19.68504,3.149606,-19.68504,3.149606,19.68504,2.819378E-12,-19.68504,2.819378E-12,19.68504,3.149606,-19.68504,3.149606,18.50394,7.543431,17.71654,4.296891,-18.50394,7.543431,-17.71654,4.296891,17.71654,4.296891,-19.68504,4.296891,18.50394,7.543431,-19.68504,7.543431 + } + UVIndex: *84 { + a: 0,2,1,3,1,2,4,3,2,3,4,5,5,4,6,7,6,4,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,18,21,20,20,21,22,23,22,21,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *28 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_endBarrier, Model::RootNode + C: "OO",5729163371805824010,0 + + ;Geometry::, Model::Mesh road_endBarrier + C: "OO",4781785437432787877,5729163371805824010 + + ;Material::pavement, Model::Mesh road_endBarrier + C: "OO",17046,5729163371805824010 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_endBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endBarrier.fbx.import new file mode 100644 index 0000000..9138db9 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://1i1sitjmgase" +path="res://.godot/imported/road_endBarrier.fbx-da03d679e58a514dca87719a40582643.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_endBarrier.fbx" +dest_files=["res://.godot/imported/road_endBarrier.fbx-da03d679e58a514dca87719a40582643.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRound.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRound.fbx new file mode 100644 index 0000000..719abc7 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRound.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 20 + Millisecond: 251 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_endRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_endRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5300060334806227371, "Model::road_endRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5290565655426299468, "Geometry::", "Mesh" { + Vertices: *837 { + a: 0,0.09999999,-4,0,0.2,-4,5,0.09999999,-4,5,0.2,-4,7.219114E-15,0,-5,5,0,-5,7.219114E-15,0.2,-5,5,0.2,-5,5,0,5,5,0,-5,0,0,5,7.219114E-15,0,-5,-0.9754516,0,-4.903926,-0.9754516,8.4599E-17,4.903926,-1.913417,8.4599E-17,4.619398,-1.913417,0,-4.619398,-2.777851,5.639933E-17,4.157348,-2.777851,2.819967E-17,-4.157348,-2.96958,5.639933E-17,4,-2.96958,1.127987E-16,-4,-3.535534,9.869883E-17,3.535534,-3.535534,4.370948E-16,-3.535534,-4,5.639933E-17,2.96958,-4,1.409983E-16,-2.96958,-4.157348,2.819967E-17,2.777851,-4.157348,5.639933E-17,-2.777851,-4.619398,2.819967E-17,1.913417,-4.619398,5.639933E-17,-1.913417,-4.903926,0,0.9754516,-4.903926,8.4599E-17,-0.9754516,-5,-2.819967E-17,0,5,0,5,0,0,5,5,0.2,5,0,0.2,5,5,0.2,-5,5,0.2,-4,7.219114E-15,0.2,-5,0,0.2,-4,-0.9754516,0.2,-4.903926,-0.7803613,0.2,-3.923141,-1.530734,0.2,-3.695518,-1.913417,0.2,-4.619398,-2.222281,0.2,-3.325878,-2.777851,0.2,-4.157348,-2.828427,0.2,-2.828427,-2.96958,0.2,-4,-3.325878,0.2,-2.222281,-3.535534,0.2,-3.535534,-3.695518,0.2,-1.530734,-4,0.2,-2.96958,-3.923141,0.2,-0.7803613,-4,0.2,0,-4.157348,0.2,-2.777851,-4,0.2,2.96958,-4.157348,0.2,2.777851,-4.619398,0.2,-1.913417,-4.619398,0.2,1.913417,-4.903926,0.2,-0.9754516,-4.903926,0.2,0.9754516,-5,0.2,0,-3.923141,0.2,0.7803613,-3.695518,0.2,1.530734,-3.535534,0.2,3.535534,-3.325878,0.2,2.222281,-2.96958,0.2,4,-2.828427,0.2,2.828427,-2.777851,0.2,4.157348,-2.222281,0.2,3.325878,-1.913417,0.2,4.619398,-1.530734,0.2,3.695518,-0.9754516,0.2,4.903926,-0.7803613,0.2,3.923141,0,0.2,5,0,0.2,4,5,0.2,5,5,0.2,4,-4,0.2,0,-4,0.09999999,0,-3.923141,0.2,0.7803613,-3.923141,0.09999999,0.7803613,-4.157348,2.819967E-17,2.777851,-4.157348,0.2,2.777851,-4,5.639933E-17,2.96958,-4,0.2,2.96958,-3.535534,9.869883E-17,3.535534,-3.535534,0.2,3.535534,-2.777851,5.639933E-17,4.157348,-2.96958,5.639933E-17,4,-2.777851,0.2,4.157348,-3.535534,9.869883E-17,3.535534,-3.535534,0.2,3.535534,-2.96958,0.2,4,-0.7803613,0.09999999,3.923141,0,0.09999999,4,-0.7803613,0.2,3.923141,0,0.2,4,-1.530734,0.09999999,3.695518,-0.7803613,0.09999999,3.923141,-1.530734,0.2,3.695518,-0.7803613,0.2,3.923141,-2.222281,0.09999999,3.325878,-1.530734,0.09999999,3.695518,-2.222281,0.2,3.325878,-1.530734,0.2,3.695518,-2.828427,0.09999999,2.828427,-2.619365,0.09999999,3,-2.828427,0.2,2.828427,-2.222281,0.2,3.325878,-2.222281,0.09999999,3.325878,-3.325878,0.2,2.222281,-3.325878,0.09999999,2.222281,-2.828427,0.2,2.828427,-3,0.09999999,2.619365,-2.828427,0.09999999,2.828427,-3.695518,0.2,1.530734,-3.695518,0.09999999,1.530734,-3.325878,0.2,2.222281,-3.325878,0.09999999,2.222281,-3.923141,0.2,0.7803613,-3.923141,0.09999999,0.7803613,-3.695518,0.2,1.530734,-3.695518,0.09999999,1.530734,0,0.09999999,4,5,0.09999999,4,0,0.2,4,5,0.2,4,0,0.09999999,-4,-0.7803613,0.09999999,-3.923141,0,0.2,-4,-0.7803613,0.2,-3.923141,-2.777851,2.819967E-17,-4.157348,-2.777851,0.2,-4.157348,-2.96958,1.127987E-16,-4,-3.535534,4.370948E-16,-3.535534,-3.535534,0.2,-3.535534,-2.96958,0.2,-4,-3.923141,0.2,-0.7803613,-3.923141,0.09999999,-0.7803613,-4,0.2,0,-4,0.09999999,0,-3.695518,0.2,-1.530734,-3.695518,0.09999999,-1.530734,-3.923141,0.2,-0.7803613,-3.923141,0.09999999,-0.7803613,-3.325878,0.2,-2.222281,-3.325878,0.09999999,-2.222281,-3.695518,0.2,-1.530734,-3.695518,0.09999999,-1.530734,-2.828427,0.2,-2.828427,-2.828427,0.09999999,-2.828427,-3.325878,0.2,-2.222281,-3,0.09999999,-2.619365,-3.325878,0.09999999,-2.222281,-2.619365,0.09999999,-3,-2.828427,0.09999999,-2.828427,-2.222281,0.09999999,-3.325878,-2.222281,0.2,-3.325878,-2.828427,0.2,-2.828427,-1.530734,0.09999999,-3.695518,-2.222281,0.09999999,-3.325878,-1.530734,0.2,-3.695518,-2.222281,0.2,-3.325878,-0.7803613,0.09999999,-3.923141,-1.530734,0.09999999,-3.695518,-0.7803613,0.2,-3.923141,-1.530734,0.2,-3.695518,0,0,5,-0.9754516,8.4599E-17,4.903926,0,0.2,5,-0.9754516,0.2,4.903926,-0.9754516,8.4599E-17,4.903926,-1.913417,8.4599E-17,4.619398,-0.9754516,0.2,4.903926,-1.913417,0.2,4.619398,-2.777851,5.639933E-17,4.157348,-2.777851,0.2,4.157348,-1.913417,8.4599E-17,4.619398,-1.913417,0.2,4.619398,-4.619398,2.819967E-17,1.913417,-4.619398,0.2,1.913417,-4.157348,2.819967E-17,2.777851,-4.157348,0.2,2.777851,-4.903926,0,0.9754516,-4.903926,0.2,0.9754516,-4.619398,2.819967E-17,1.913417,-4.619398,0.2,1.913417,-5,-2.819967E-17,0,-5,0.2,0,-4.903926,0,0.9754516,-4.903926,0.2,0.9754516,-4.903926,8.4599E-17,-0.9754516,-4.903926,0.2,-0.9754516,-5,-2.819967E-17,0,-5,0.2,0,-4.619398,5.639933E-17,-1.913417,-4.619398,0.2,-1.913417,-4.903926,8.4599E-17,-0.9754516,-4.903926,0.2,-0.9754516,-4.157348,5.639933E-17,-2.777851,-4.157348,0.2,-2.777851,-4.619398,5.639933E-17,-1.913417,-4.619398,0.2,-1.913417,-3.535534,4.370948E-16,-3.535534,-3.535534,0.2,-3.535534,-4,1.409983E-16,-2.96958,-4,0.2,-2.96958,-4.157348,5.639933E-17,-2.777851,-4.157348,0.2,-2.777851,-1.913417,0,-4.619398,-1.913417,0.2,-4.619398,-2.777851,2.819967E-17,-4.157348,-2.777851,0.2,-4.157348,-1.913417,0,-4.619398,-0.9754516,0,-4.903926,-1.913417,0.2,-4.619398,-0.9754516,0.2,-4.903926,-0.9754516,0,-4.903926,7.219114E-15,0,-5,-0.9754516,0.2,-4.903926,7.219114E-15,0.2,-5,5,0.09999999,-0.09999999,5,0.09999999,0.09999999,-0.09999999,0.09999999,-0.09999999,-0.09999999,0.09999999,0.09999999,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5,5,0.09999999,-3,0,0.09999999,-3,-0.5852709,0.09999999,-2.942356,-0.585271,0.09999999,2.942356,0,0.09999999,3,5,0.09999999,3,-1.14805,0.09999999,-2.771639,-1.14805,0.09999999,2.771638,-1.666711,0.09999999,-2.494409,-1.666711,0.09999999,2.494409,-2.12132,0.09999999,-2.12132,-2.12132,0.09999999,2.12132,-2.494409,0.09999999,-1.666711,-2.494409,0.09999999,1.666711,-2.771638,0.09999999,-1.14805,-2.771639,0.09999999,1.14805,-2.942356,0.09999999,-0.585271,-2.942356,0.09999999,0.585271,-3,0.09999999,-2.235174E-08,5,0.09999999,-4,0,0.09999999,-4,-0.7803613,0.09999999,-3.923141,-1.530734,0.09999999,-3.695518,-2.222281,0.09999999,-3.325878,-2.619365,0.09999999,-3,-2.828427,0.09999999,-2.828427,-3,0.09999999,-2.619365,-3.325878,0.09999999,-2.222281,-3,0.09999999,2.619365,-3.325878,0.09999999,2.222281,-3.695518,0.09999999,-1.530734,-3.695518,0.09999999,1.530734,-3.923141,0.09999999,-0.7803613,-3.923141,0.09999999,0.7803613,-4,0.09999999,0,-2.828427,0.09999999,2.828427,-2.619365,0.09999999,3,-2.222281,0.09999999,3.325878,-1.530734,0.09999999,3.695518,-0.7803613,0.09999999,3.923141,0,0.09999999,4,5,0.09999999,4 + } + PolygonVertexIndex: *654 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,12,-14,15,12,-15,16,15,-15,17,15,-17,18,17,-17,19,17,-19,20,19,-19,21,19,-21,22,21,-21,23,21,-23,24,23,-23,25,23,-25,26,25,-25,27,25,-27,28,27,-27,29,27,-29,30,29,-29,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,38,-38,40,38,-40,41,40,-40,42,41,-40,43,41,-43,44,43,-43,45,43,-45,46,45,-45,47,45,-47,48,47,-47,49,47,-49,50,49,-49,51,49,-51,52,51,-51,53,52,-51,54,52,-54,55,54,-54,56,55,-54,57,55,-57,58,57,-57,59,57,-59,60,59,-59,52,54,-62,61,54,-63,54,63,-63,62,63,-65,63,65,-65,64,65,-67,65,67,-67,66,67,-69,67,69,-69,68,69,-71,69,71,-71,70,71,-73,71,73,-73,72,73,-75,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,84,-84,86,84,-86,87,89,-89,90,88,-90,91,90,-90,92,91,-90,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,107,108,-107,109,106,-109,110,112,-112,113,111,-113,114,113,-113,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,132,-135,136,132,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,152,-152,154,156,-156,157,155,-157,158,155,-158,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,169,-169,170,168,-170,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,206,-206,208,206,-208,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,219,-219,220,218,-220,221,223,-223,224,222,-224,225,227,-227,227,228,-227,226,228,-230,229,228,-231,230,228,-232,231,228,-233,232,228,-234,228,234,-234,233,234,-236,236,235,-235,237,238,-222,223,221,-239,239,223,-239,224,223,-240,239,240,-225,240,241,-225,224,241,-223,242,222,-242,243,240,-240,244,240,-244,245,244,-244,246,244,-246,247,246,-246,248,246,-248,249,248,-248,250,248,-250,251,250,-250,252,250,-252,253,252,-252,254,252,-254,255,254,-254,256,257,-238,238,237,-258,258,238,-258,239,238,-259,243,239,-259,259,243,-259,245,243,-260,260,245,-260,247,245,-261,249,247,-261,261,249,-261,251,249,-262,262,251,-262,253,251,-263,263,253,-263,255,253,-264,264,255,-264,265,255,-265,266,265,-265,267,266,-265,268,266,-268,269,268,-268,270,268,-270,271,270,-270,255,265,-255,265,272,-255,254,272,-253,272,273,-253,252,273,-251,273,274,-251,250,274,-249,248,274,-247,274,275,-247,246,275,-245,275,276,-245,244,276,-241,276,277,-241,240,277,-242,277,278,-242,242,241,-279 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1962 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9951847,0,-0.09801714,0.9807853,0,-0.1950903,0.9951847,0,-0.09801714,0.9807853,0,-0.1950903,0.9951847,0,-0.09801714,0.9807853,0,-0.1950903,-0.8314696,0,0.5555702,-0.7730104,0,0.6343933,-0.8314696,0,0.5555702,-0.7730104,0,0.6343933,-0.8314696,0,0.5555702,-0.7730104,0,0.6343933,-0.7071068,0,0.7071068,-0.7730104,0,0.6343933,-0.7730104,0,0.6343933,-0.7071068,0,0.7071068,-0.7730104,0,0.6343933,-0.7071068,0,0.7071068,-0.5555702,0,0.8314696,-0.5555702,0,0.8314696,-0.6343933,0,0.7730104,-0.7071068,0,0.7071068,-0.6343933,0,0.7730104,-0.5555702,0,0.8314696,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.5555702,0,0.8314696,-0.6343933,0,0.7730104,-0.7071068,0,0.7071068,-0.5555702,0,0.8314696,0.1950903,0,-0.9807853,0.1950903,0,-0.9807853,0.09801714,0,-0.9951847,0.09801714,0,-0.9951847,0.09801714,0,-0.9951847,0.1950903,0,-0.9807853,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.1950903,0,-0.9807853,0.1950903,0,-0.9807853,0.1950903,0,-0.9807853,0.3826834,0,-0.9238795,0.5555702,0,-0.8314696,0.5555702,0,-0.8314696,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5555702,0,-0.8314696,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6343933,0,-0.7730104,0.7071068,0,-0.7071068,0.5555702,0,-0.8314696,0.6343933,0,-0.7730104,0.5555702,0,-0.8314696,0.6343933,0,-0.7730104,0.5555702,0,-0.8314696,0.8314696,0,-0.5555702,0.7071068,0,-0.7071068,0.8314696,0,-0.5555702,0.7730104,0,-0.6343933,0.8314696,0,-0.5555702,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7730104,0,-0.6343933,0.7071068,0,-0.7071068,0.9238795,0,-0.3826834,0.8314696,0,-0.5555702,0.9238795,0,-0.3826834,0.8314696,0,-0.5555702,0.9238795,0,-0.3826834,0.8314696,0,-0.5555702,0.9807853,0,-0.1950903,0.9238795,0,-0.3826834,0.9807853,0,-0.1950903,0.9238795,0,-0.3826834,0.9807853,0,-0.1950903,0.9238795,0,-0.3826834,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.09801714,0,0.9951847,0.09801714,0,0.9951847,0.1950903,0,0.9807853,0.1950903,0,0.9807853,0.1950903,0,0.9807853,0.09801714,0,0.9951847,-0.5555702,0,-0.8314696,-0.6343933,0,-0.7730104,-0.5555702,0,-0.8314696,-0.7071068,0,-0.7071068,-0.5555702,0,-0.8314696,-0.6343933,0,-0.7730104,-0.7071068,0,-0.7071068,-0.5555702,0,-0.8314696,-0.7071068,0,-0.7071068,-0.6343933,0,-0.7730104,-0.5555702,0,-0.8314696,-0.7071068,0,-0.7071068,0.9807853,0,0.1950903,0.9951847,0,0.09801714,0.9807853,0,0.1950903,0.9951847,0,0.09801714,0.9807853,0,0.1950903,0.9951847,0,0.09801714,0.9238795,0,0.3826834,0.9807853,0,0.1950903,0.9238795,0,0.3826834,0.9807853,0,0.1950903,0.9238795,0,0.3826834,0.9807853,0,0.1950903,0.8314696,0,0.5555702,0.9238795,0,0.3826834,0.8314696,0,0.5555702,0.9238795,0,0.3826834,0.8314696,0,0.5555702,0.9238795,0,0.3826834,0.7071068,0,0.7071068,0.8314696,0,0.5555702,0.7071068,0,0.7071068,0.7730104,0,0.6343933,0.7071068,0,0.7071068,0.8314696,0,0.5555702,0.8314696,0,0.5555702,0.7730104,0,0.6343933,0.8314696,0,0.5555702,0.6343933,0,0.7730104,0.5555702,0,0.8314696,0.7071068,0,0.7071068,0.5555702,0,0.8314696,0.7071068,0,0.7071068,0.5555702,0,0.8314696,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.5555702,0,0.8314696,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.3826834,0,0.9238795,0.1950903,0,0.9807853,0.1950903,0,0.9807853,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.1950903,0,0.9807853,-0.09801714,0,0.9951847,-0.09801714,0,0.9951847,-0.1950903,0,0.9807853,-0.1950903,0,0.9807853,-0.1950903,0,0.9807853,-0.09801714,0,0.9951847,-0.1950903,0,0.9807853,-0.1950903,0,0.9807853,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.1950903,0,0.9807853,-0.5555702,0,0.8314696,-0.3826834,0,0.9238795,-0.5555702,0,0.8314696,-0.3826834,0,0.9238795,-0.5555702,0,0.8314696,-0.3826834,0,0.9238795,-0.9238795,0,0.3826834,-0.8314696,0,0.5555702,-0.9238795,0,0.3826834,-0.8314696,0,0.5555702,-0.9238795,0,0.3826834,-0.8314696,0,0.5555702,-0.9807853,0,0.1950903,-0.9238795,0,0.3826834,-0.9807853,0,0.1950903,-0.9238795,0,0.3826834,-0.9807853,0,0.1950903,-0.9238795,0,0.3826834,-0.9951847,0,0.09801714,-0.9807853,0,0.1950903,-0.9951847,0,0.09801714,-0.9807853,0,0.1950903,-0.9951847,0,0.09801714,-0.9807853,0,0.1950903,-0.9807853,0,-0.1950903,-0.9951847,0,-0.09801714,-0.9807853,0,-0.1950903,-0.9951847,0,-0.09801714,-0.9807853,0,-0.1950903,-0.9951847,0,-0.09801714,-0.9238795,0,-0.3826834,-0.9807853,0,-0.1950903,-0.9238795,0,-0.3826834,-0.9807853,0,-0.1950903,-0.9238795,0,-0.3826834,-0.9807853,0,-0.1950903,-0.8314696,0,-0.5555702,-0.9238795,0,-0.3826834,-0.8314696,0,-0.5555702,-0.9238795,0,-0.3826834,-0.8314696,0,-0.5555702,-0.9238795,0,-0.3826834,-0.7071068,0,-0.7071068,-0.7730104,0,-0.6343933,-0.7071068,0,-0.7071068,-0.7730104,0,-0.6343933,-0.7071068,0,-0.7071068,-0.7730104,0,-0.6343933,-0.8314696,0,-0.5555702,-0.7730104,0,-0.6343933,-0.7730104,0,-0.6343933,-0.8314696,0,-0.5555702,-0.7730104,0,-0.6343933,-0.8314696,0,-0.5555702,-0.3826834,0,-0.9238795,-0.5555702,0,-0.8314696,-0.3826834,0,-0.9238795,-0.5555702,0,-0.8314696,-0.3826834,0,-0.9238795,-0.5555702,0,-0.8314696,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.1950903,0,-0.9807853,-0.1950903,0,-0.9807853,-0.1950903,0,-0.9807853,-0.3826834,0,-0.9238795,-0.1950903,0,-0.9807853,-0.1950903,0,-0.9807853,-0.09801714,0,-0.9951847,-0.09801714,0,-0.9951847,-0.09801714,0,-0.9951847,-0.1950903,0,-0.9807853,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *558 { + a: 0,0.3937008,0,0.7874016,19.68504,0.3937008,19.68504,0.7874016,-2.842171E-14,0,-19.68504,0,-2.842171E-14,0.7874016,-19.68504,0.7874016,19.68504,19.68504,19.68504,-19.68504,0,19.68504,2.842171E-14,-19.68504,-3.840361,-19.3068,-3.840361,19.3068,-7.533138,18.18661,-7.533138,-18.18661,-10.93642,16.36751,-10.93642,-16.36751,-11.69126,15.74803,-11.69126,-15.74803,-13.91943,13.91943,-13.91943,-13.91943,-15.74803,11.69126,-15.74803,-11.69126,-16.36751,10.93642,-16.36751,-10.93642,-18.18661,7.533138,-18.18661,-7.533138,-19.3068,3.840361,-19.3068,-3.840361,-19.68504,8.484704E-34,19.68504,0,0,0,19.68504,0.7874016,0,0.7874016,-19.68504,-19.68504,-19.68504,-15.74803,-2.84196E-14,-19.68504,2.110474E-18,-15.74803,3.840361,-19.3068,3.072289,-15.44544,6.026511,-14.54928,7.533138,-18.18661,8.749138,-13.09401,10.93642,-16.36751,11.13554,-11.13554,11.69126,-15.74803,13.09401,-8.749138,13.91943,-13.91943,14.54928,-6.026511,15.74803,-11.69126,15.44544,-3.072289,15.74803,1.515731E-17,16.36751,-10.93642,15.74803,11.69126,16.36751,10.93642,18.18661,-7.533138,18.18661,7.533138,19.3068,-3.840361,19.3068,3.840361,19.68504,1.515731E-17,15.44544,3.072289,14.54928,6.026511,13.91943,13.91943,13.09401,8.749138,11.69126,15.74803,11.13554,11.13554,10.93642,16.36751,8.749138,13.09401,7.533138,18.18661,6.026511,14.54928,3.840361,19.3068,3.072289,15.44544,2.110474E-18,19.68504,2.110474E-18,15.74803,-19.68504,19.68504,-19.68504,15.74803,1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.7874016,-1.543577,0.3937008,-1.929471,3.589372E-15,-1.929471,0.7874016,-0.9529783,3.700394E-15,-0.9529783,0.7874016,1.929471,3.866928E-15,1.929471,0.7874016,1.929471,-4.263112E-16,0.9529783,-4.263112E-16,1.929471,0.7874016,-1.929471,-2.597778E-16,-1.929471,0.7874016,0.9529783,0.7874016,1.543577,0.3937008,-1.543577,0.3937008,1.543577,0.7874016,-1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.3937008,1.543577,0.7874016,-1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.3937008,1.543577,0.7874016,-1.543577,0.7874016,1.543577,0.3937008,0.4788057,0.3937008,1.543577,0.7874016,-1.543577,0.7874016,-1.543577,0.3937008,1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.7874016,-0.4788057,0.3937008,-1.543577,0.3937008,1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.7874016,-1.543577,0.3937008,1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.7874016,-1.543577,0.3937008,0,0.3937008,-19.68504,0.3937008,0,0.7874016,-19.68504,0.7874016,1.543577,0.3937008,-1.543577,0.3937008,1.543577,0.7874016,-1.543577,0.7874016,-1.929471,-1.138467E-16,-1.929471,0.7874016,-0.9529783,2.192202E-16,1.929471,1.495977E-15,1.929471,0.7874016,-0.9529783,0.7874016,1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.7874016,-1.543577,0.3937008,1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.7874016,-1.543577,0.3937008,1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.7874016,-1.543577,0.3937008,1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.7874016,0.4788057,0.3937008,-1.543577,0.3937008,-0.4788057,0.3937008,-1.543577,0.3937008,1.543577,0.3937008,1.543577,0.7874016,-1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.3937008,1.543577,0.7874016,-1.543577,0.7874016,1.543577,0.3937008,-1.543577,0.3937008,1.543577,0.7874016,-1.543577,0.7874016,1.929471,-1.188772E-16,-1.929471,2.141897E-16,1.929471,0.7874016,-1.929471,0.7874016,1.929471,-1.038968E-16,-1.929471,-1.038968E-16,1.929471,0.7874016,-1.929471,0.7874016,-1.929471,-1.863649E-16,-1.929471,0.7874016,1.929471,-7.53426E-17,1.929471,0.7874016,-1.929471,-1.248945E-16,-1.929471,0.7874016,1.929471,-1.248945E-16,1.929471,0.7874016,-1.929471,-1.568508E-16,-1.929471,0.7874016,1.929471,-4.582848E-17,1.929471,0.7874016,-1.929471,-4.811981E-16,-1.929471,0.7874016,1.929471,-3.701759E-16,1.929471,0.7874016,-1.929471,2.141897E-16,-1.929471,0.7874016,1.929471,-2.298995E-16,1.929471,0.7874016,-1.929471,-3.777727E-17,-1.929471,0.7874016,1.929471,7.324504E-17,1.929471,0.7874016,-1.929471,7.600765E-18,-1.929471,0.7874016,1.929471,7.600765E-18,1.929471,0.7874016,-1.929471,1.309061E-15,-1.929471,0.7874016,0.9529783,1.433263E-16,0.9529783,0.7874016,1.929471,-1.897406E-16,1.929471,0.7874016,-1.929471,-3.734371E-17,-1.929471,0.7874016,1.929471,7.367859E-17,1.929471,0.7874016,1.929471,2.777314E-17,-1.929471,2.777314E-17,1.929471,0.7874016,-1.929471,0.7874016,1.929471,0,-1.929471,0,1.929471,0.7874016,-1.929471,0.7874016,-19.68504,-0.3937008,-19.68504,0.3937008,0.3937008,-0.3937008,0.3937008,0.3937008,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,1.725924E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,1.725924E-13,15.74803,0.7874016,19.68504,0.7874016,-19.68504,-11.81102,-4.212554E-17,-11.81102,2.304216,-11.58408,2.304216,11.58408,-4.212554E-17,11.81102,-19.68504,11.81102,4.519883,-10.91196,4.519883,10.91196,6.561853,-9.820507,6.561853,9.820507,8.351655,-8.351655,8.351655,8.351655,9.820507,-6.561853,9.820507,6.561853,10.91196,-4.519883,10.91196,4.519883,11.58408,-2.304216,11.58408,2.304216,11.81102,-8.799898E-08,-19.68504,-15.74803,-4.212554E-17,-15.74803,3.072289,-15.44544,6.026511,-14.54928,8.749138,-13.09401,10.31246,-11.81102,11.13554,-11.13554,11.81102,-10.31246,13.09401,-8.749138,11.81102,10.31246,13.09401,8.749138,14.54928,-6.026511,14.54928,6.026511,15.44544,-3.072289,15.44544,3.072289,15.74803,-8.178388E-17,11.13554,11.13554,10.31246,11.81102,8.749138,13.09401,6.026511,14.54928,3.072289,15.44544,-4.212554E-17,15.74803,-19.68504,15.74803 + } + UVIndex: *654 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,12,13,15,12,14,16,15,14,17,15,16,18,17,16,19,17,18,20,19,18,21,19,20,22,21,20,23,21,22,24,23,22,25,23,24,26,25,24,27,25,26,28,27,26,29,27,28,30,29,28,31,33,32,34,32,33,35,37,36,38,36,37,39,38,37,40,38,39,41,40,39,42,41,39,43,41,42,44,43,42,45,43,44,46,45,44,47,45,46,48,47,46,49,47,48,50,49,48,51,49,50,52,51,50,53,52,50,54,52,53,55,54,53,56,55,53,57,55,56,58,57,56,59,57,58,60,59,58,52,54,61,61,54,62,54,63,62,62,63,64,63,65,64,64,65,66,65,67,66,66,67,68,67,69,68,68,69,70,69,71,70,70,71,72,71,73,72,72,73,74,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,84,83,86,84,85,87,89,88,90,88,89,91,90,89,92,91,89,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,107,108,106,109,106,108,110,112,111,113,111,112,114,113,112,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,134,132,133,135,132,134,136,132,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,152,151,154,156,155,157,155,156,158,155,157,159,161,160,162,160,161,163,165,164,166,164,165,167,169,168,170,168,169,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,180,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,201,200,202,200,201,203,205,204,206,204,205,207,206,205,208,206,207,209,211,210,212,210,211,213,215,214,216,214,215,217,219,218,220,218,219,221,223,222,224,222,223,225,227,226,227,228,226,226,228,229,229,228,230,230,228,231,231,228,232,232,228,233,228,234,233,233,234,235,236,235,234,237,238,221,223,221,238,239,223,238,224,223,239,239,240,224,240,241,224,224,241,222,242,222,241,243,240,239,244,240,243,245,244,243,246,244,245,247,246,245,248,246,247,249,248,247,250,248,249,251,250,249,252,250,251,253,252,251,254,252,253,255,254,253,256,257,237,238,237,257,258,238,257,239,238,258,243,239,258,259,243,258,245,243,259,260,245,259,247,245,260,249,247,260,261,249,260,251,249,261,262,251,261,253,251,262,263,253,262,255,253,263,264,255,263,265,255,264,266,265,264,267,266,264,268,266,267,269,268,267,270,268,269,271,270,269,255,265,254,265,272,254,254,272,252,272,273,252,252,273,250,273,274,250,250,274,248,248,274,246,274,275,246,246,275,244,275,276,244,244,276,240,276,277,240,240,277,241,277,278,241,242,241,278 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *218 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_endRound, Model::RootNode + C: "OO",5300060334806227371,0 + + ;Geometry::, Model::Mesh road_endRound + C: "OO",5290565655426299468,5300060334806227371 + + ;Material::pavement, Model::Mesh road_endRound + C: "OO",17046,5300060334806227371 + + ;Material::line, Model::Mesh road_endRound + C: "OO",9174,5300060334806227371 + + ;Material::asphalt, Model::Mesh road_endRound + C: "OO",9934,5300060334806227371 + + ;Material::asphaltEdge, Model::Mesh road_endRound + C: "OO",17042,5300060334806227371 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRound.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRound.fbx.import new file mode 100644 index 0000000..042a69b --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b2irbsqaerbkd" +path="res://.godot/imported/road_endRound.fbx-ce67ecc8bc488c2dc0543a6b953910dd.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_endRound.fbx" +dest_files=["res://.godot/imported/road_endRound.fbx-ce67ecc8bc488c2dc0543a6b953910dd.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRoundBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRoundBarrier.fbx new file mode 100644 index 0000000..1192256 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRoundBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 20 + Millisecond: 328 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_endRoundBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_endRoundBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5004148741673869550, "Model::road_endRoundBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4835241619378889395, "Geometry::", "Mesh" { + Vertices: *852 { + a: 5,0,4.5,5,0,5,5,0.8,4.7,5,0.8,5,5,0.8,4.7,5,0,5,5,0,4.5,5,0.8,5,5,0.8,-5,5,0,-5,5,0.8,-4.7,5,0,-4.5,5,0.8,-4.7,5,0,-5,5,0.8,-5,5,0,-4.5,5,0,5,3.291916E-12,0,5,5,0.8,5,3.291916E-12,0.8,5,5,0.8,5,3.291916E-12,0,5,5,0,5,3.291916E-12,0.8,5,5,0,5,5,0,4.5,3.291916E-12,0,5,3.147534E-12,0,4.5,-0.9754516,6.76792E-16,4.903926,-0.8779064,2.932765E-15,4.413534,-1.722075,4.117151E-15,4.157458,-1.913417,1.973977E-15,4.619398,-2.500066,6.034728E-15,3.741613,-2.777851,4.117151E-15,4.157348,-3.18198,8.629097E-15,3.18198,-3.535534,6.993517E-15,3.535534,-3.741613,1.178746E-14,2.500066,-4.157348,1.049028E-14,2.777851,-4.157458,1.536882E-14,1.722075,-4.619398,1.449463E-14,1.913417,-4.413534,1.923217E-14,0.8779064,-4.5,2.332112E-14,-6.554956E-12,-4.619398,3.214762E-14,-1.913417,-4.903926,2.783307E-14,-0.9754516,-4.903926,1.880918E-14,0.9754516,-5,2.332112E-14,-7.183018E-12,-4.413534,2.738187E-14,-0.8779064,-4.157458,3.124523E-14,-1.722075,-4.157348,3.615197E-14,-2.777851,-3.741613,3.485479E-14,-2.500066,-3.535534,3.964873E-14,-3.535534,-3.18198,3.801315E-14,-3.18198,-2.777851,4.252509E-14,-4.157348,-2.500066,4.060752E-14,-3.741613,-1.913417,4.466827E-14,-4.619398,-1.722075,4.252509E-14,-4.157458,-0.9754516,4.596546E-14,-4.903926,-0.8779064,4.370948E-14,-4.413534,1.526843E-11,4.641665E-14,-4.5,1.590371E-11,4.641665E-14,-5,5,0,-4.5,5,0,-5,5,0,-5,5,0.8,-5,1.590371E-11,4.641665E-14,-5,1.590371E-11,0.8,-5,1.590371E-11,4.641665E-14,-5,5,0.8,-5,5,0,-5,1.590371E-11,0.8,-5,3.291916E-12,0,5,-0.9754516,6.76792E-16,4.903926,3.291916E-12,0.8,5,-0.9754516,0.8,4.903926,-0.9754516,6.76792E-16,4.903926,-1.913417,1.973977E-15,4.619398,-0.9754516,0.8,4.903926,-1.913417,0.8,4.619398,-1.913417,1.973977E-15,4.619398,-2.777851,4.117151E-15,4.157348,-1.913417,0.8,4.619398,-2.777851,0.8,4.157348,-2.777851,4.117151E-15,4.157348,-3.535534,6.993517E-15,3.535534,-2.777851,0.8,4.157348,-3.535534,0.8,3.535534,-4.157348,1.049028E-14,2.777851,-4.157348,0.8,2.777851,-3.535534,6.993517E-15,3.535534,-3.535534,0.8,3.535534,-4.619398,1.449463E-14,1.913417,-4.619398,0.8,1.913417,-4.157348,1.049028E-14,2.777851,-4.157348,0.8,2.777851,-4.903926,1.880918E-14,0.9754516,-4.903926,0.8,0.9754516,-4.619398,1.449463E-14,1.913417,-4.619398,0.8,1.913417,-5,2.332112E-14,-7.183018E-12,-5,0.8,-7.1758E-12,-4.903926,1.880918E-14,0.9754516,-4.903926,0.8,0.9754516,-4.903926,2.783307E-14,-0.9754516,-4.903926,0.8,-0.9754516,-5,2.332112E-14,-7.183018E-12,-5,0.8,-7.1758E-12,-4.619398,3.214762E-14,-1.913417,-4.619398,0.8,-1.913417,-4.903926,2.783307E-14,-0.9754516,-4.903926,0.8,-0.9754516,-4.157348,3.615197E-14,-2.777851,-4.157348,0.8,-2.777851,-4.619398,3.214762E-14,-1.913417,-4.619398,0.8,-1.913417,-3.535534,3.964873E-14,-3.535534,-3.535534,0.8,-3.535534,-4.157348,3.615197E-14,-2.777851,-4.157348,0.8,-2.777851,-3.535534,3.964873E-14,-3.535534,-2.777851,4.252509E-14,-4.157348,-3.535534,0.8,-3.535534,-2.777851,0.8,-4.157348,-2.777851,4.252509E-14,-4.157348,-1.913417,4.466827E-14,-4.619398,-2.777851,0.8,-4.157348,-1.913417,0.8,-4.619398,-1.913417,4.466827E-14,-4.619398,-0.9754516,4.596546E-14,-4.903926,-1.913417,0.8,-4.619398,-0.9754516,0.8,-4.903926,-0.9754516,4.596546E-14,-4.903926,1.590371E-11,4.641665E-14,-5,-0.9754516,0.8,-4.903926,1.590371E-11,0.8,-5,-3.18198,8.629097E-15,3.18198,-2.500066,6.034728E-15,3.741613,-2.550067,0.8,3.907907,-3.18198,8.629097E-15,3.18198,-2.550067,0.8,3.907907,-3.24562,0.8,3.323402,-2.500066,6.034728E-15,3.741613,-1.722075,4.117151E-15,4.157458,-1.756517,0.8,4.342234,-2.500066,6.034728E-15,3.741613,-1.756517,0.8,4.342234,-2.550067,0.8,3.907907,-1.722075,4.117151E-15,4.157458,-0.8779064,2.932765E-15,4.413534,-0.8954645,0.8,4.609691,-1.722075,4.117151E-15,4.157458,-0.8954645,0.8,4.609691,-1.756517,0.8,4.342234,-2.500066,4.060752E-14,-3.741613,-3.18198,3.801315E-14,-3.18198,-3.24562,0.8,-3.323402,-2.500066,4.060752E-14,-3.741613,-3.24562,0.8,-3.323402,-2.550067,0.8,-3.907907,-4.501805,0.8,-0.9169245,-4.413534,2.738187E-14,-0.8779064,-4.5,2.332112E-14,-6.554956E-12,-4.59,0.8,-6.966445E-12,-4.501805,0.8,-0.9169245,-4.5,2.332112E-14,-6.554956E-12,-4.240607,0.8,-1.798612,-4.157458,3.124523E-14,-1.722075,-4.413534,2.738187E-14,-0.8779064,-4.501805,0.8,-0.9169245,-4.240607,0.8,-1.798612,-4.413534,2.738187E-14,-0.8779064,-3.24562,0.8,-3.323402,-3.18198,3.801315E-14,-3.18198,-3.741613,3.485479E-14,-2.500066,-3.816445,0.8,-2.61118,-3.24562,0.8,-3.323402,-3.741613,3.485479E-14,-2.500066,-1.722075,4.252509E-14,-4.157458,-2.500066,4.060752E-14,-3.741613,-2.550067,0.8,-3.907907,-1.722075,4.252509E-14,-4.157458,-2.550067,0.8,-3.907907,-1.756517,0.8,-4.342234,-3.816445,0.8,2.61118,-3.741613,1.178746E-14,2.500066,-3.18198,8.629097E-15,3.18198,-3.816445,0.8,2.61118,-3.18198,8.629097E-15,3.18198,-3.24562,0.8,3.323402,-3.816445,0.8,-2.61118,-3.741613,3.485479E-14,-2.500066,-4.157458,3.124523E-14,-1.722075,-4.240607,0.8,-1.798612,-3.816445,0.8,-2.61118,-4.157458,3.124523E-14,-1.722075,-4.59,0.8,-6.966445E-12,-4.5,2.332112E-14,-6.554956E-12,-4.413534,1.923217E-14,0.8779064,-4.59,0.8,-6.966445E-12,-4.413534,1.923217E-14,0.8779064,-4.501805,0.8,0.9169245,-0.8779064,2.932765E-15,4.413534,3.147534E-12,0,4.5,2.952618E-12,0.8,4.7,-0.8779064,2.932765E-15,4.413534,2.952618E-12,0.8,4.7,-0.8954645,0.8,4.609691,1.526843E-11,4.641665E-14,-4.5,-0.8779064,4.370948E-14,-4.413534,-0.8954645,0.8,-4.609691,-0.8779064,4.370948E-14,-4.413534,-1.722075,4.252509E-14,-4.157458,-1.756517,0.8,-4.342234,-0.8779064,4.370948E-14,-4.413534,-1.756517,0.8,-4.342234,-0.8954645,0.8,-4.609691,-4.240607,0.8,1.798612,-4.157458,1.536882E-14,1.722075,-3.741613,1.178746E-14,2.500066,-4.240607,0.8,1.798612,-3.741613,1.178746E-14,2.500066,-3.816445,0.8,2.61118,-4.501805,0.8,0.9169245,-4.413534,1.923217E-14,0.8779064,-4.157458,1.536882E-14,1.722075,-4.501805,0.8,0.9169245,-4.157458,1.536882E-14,1.722075,-4.240607,0.8,1.798612,3.147534E-12,0,4.5,5,0,4.5,2.952618E-12,0.8,4.7,5,0.8,4.7,2.952618E-12,0.8,4.7,5,0,4.5,3.147534E-12,0,4.5,5,0.8,4.7,5,0.8,-5,5,0.8,-4.7,1.590371E-11,0.8,-5,1.552831E-11,0.8,-4.7,-0.9754516,0.8,-4.903926,-0.8954645,0.8,-4.609691,-1.756517,0.8,-4.342234,-1.913417,0.8,-4.619398,-2.550067,0.8,-3.907907,-2.777851,0.8,-4.157348,-3.24562,0.8,-3.323402,-3.535534,0.8,-3.535534,-3.816445,0.8,-2.61118,-4.157348,0.8,-2.777851,-4.240607,0.8,-1.798612,-4.619398,0.8,-1.913417,-4.501805,0.8,-0.9169245,-4.59,0.8,-6.966445E-12,-4.619398,0.8,1.913417,-4.501805,0.8,0.9169245,-4.240607,0.8,1.798612,-4.157348,0.8,2.777851,-3.816445,0.8,2.61118,-3.535534,0.8,3.535534,-3.24562,0.8,3.323402,-2.777851,0.8,4.157348,-2.550067,0.8,3.907907,-1.913417,0.8,4.619398,-1.756517,0.8,4.342234,-0.9754516,0.8,4.903926,-0.8954645,0.8,4.609691,2.952618E-12,0.8,4.7,3.291916E-12,0.8,5,5,0.8,4.7,5,0.8,5,-4.903926,0.8,-0.9754516,-4.903926,0.8,0.9754516,-5,0.8,-7.1758E-12,1.526843E-11,4.641665E-14,-4.5,-0.8954645,0.8,-4.609691,1.552831E-11,0.8,-4.7,5,0,-4.5,1.526843E-11,4.641665E-14,-4.5,5,0.8,-4.7,1.552831E-11,0.8,-4.7,5,0.8,-4.7,1.526843E-11,4.641665E-14,-4.5,5,0,-4.5,1.552831E-11,0.8,-4.7 + } + PolygonVertexIndex: *480 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,27,-27,29,27,-29,30,29,-29,31,30,-29,32,30,-32,33,32,-32,34,32,-34,35,34,-34,36,34,-36,37,36,-36,38,36,-38,39,38,-38,40,38,-40,41,40,-40,42,41,-40,43,42,-40,44,43,-40,45,43,-45,41,42,-47,46,42,-48,42,48,-48,47,48,-50,48,50,-50,49,50,-52,50,52,-52,51,52,-54,52,54,-54,53,54,-56,54,56,-56,55,56,-58,57,56,-59,56,59,-59,58,59,-61,61,60,-60,62,64,-64,65,63,-65,66,68,-68,67,69,-67,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,139,-139,140,142,-142,143,145,-145,146,148,-148,149,151,-151,152,154,-154,155,157,-157,158,160,-160,161,163,-163,164,166,-166,167,169,-169,170,172,-172,173,175,-175,176,178,-178,179,181,-181,182,184,-184,185,187,-187,188,190,-190,191,193,-193,194,196,-196,197,199,-199,200,202,-202,203,205,-205,206,208,-208,209,211,-211,212,214,-214,215,217,-217,218,220,-220,221,223,-223,224,226,-226,227,229,-229,230,228,-230,231,233,-233,232,234,-232,235,237,-237,238,236,-238,239,238,-238,240,238,-240,241,240,-240,242,241,-240,243,241,-243,244,243,-243,245,243,-245,246,245,-245,247,245,-247,248,247,-247,249,247,-249,250,249,-249,251,249,-251,252,251,-251,250,253,-253,252,253,-255,254,253,-256,253,256,-256,255,256,-258,256,258,-258,257,258,-260,258,260,-260,259,260,-262,260,262,-262,261,262,-264,262,264,-264,263,264,-266,265,264,-267,264,267,-267,266,267,-269,269,268,-268,270,253,-251,271,253,-271,272,271,-271,273,275,-275,276,278,-278,279,277,-279,280,282,-282,281,283,-281 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1440 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.09801714,0,0.9951847,-0.09801714,0,0.9951847,-0.1950903,0,0.9807853,-0.1950903,0,0.9807853,-0.1950903,0,0.9807853,-0.09801714,0,0.9951847,-0.1950903,0,0.9807853,-0.1950903,0,0.9807853,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.1950903,0,0.9807853,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5555702,0,0.8314696,-0.5555702,0,0.8314696,-0.5555702,0,0.8314696,-0.3826834,0,0.9238795,-0.5555702,0,0.8314696,-0.5555702,0,0.8314696,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.5555702,0,0.8314696,-0.8314696,0,0.5555702,-0.7071068,0,0.7071068,-0.8314696,0,0.5555702,-0.7071068,0,0.7071068,-0.8314696,0,0.5555702,-0.7071068,0,0.7071068,-0.9238795,0,0.3826834,-0.8314696,0,0.5555702,-0.9238795,0,0.3826834,-0.8314696,0,0.5555702,-0.9238795,0,0.3826834,-0.8314696,0,0.5555702,-0.9807853,0,0.1950903,-0.9238795,0,0.3826834,-0.9807853,0,0.1950903,-0.9238795,0,0.3826834,-0.9807853,0,0.1950903,-0.9238795,0,0.3826834,-1,0,0,-0.9807853,0,0.1950903,-1,0,0,-0.9807853,0,0.1950903,-1,0,0,-0.9807853,0,0.1950903,-0.9807853,0,-0.1950903,-1,0,0,-0.9807853,0,-0.1950903,-1,0,0,-0.9807853,0,-0.1950903,-1,0,0,-0.9238795,0,-0.3826834,-0.9807853,0,-0.1950903,-0.9238795,0,-0.3826834,-0.9807853,0,-0.1950903,-0.9238795,0,-0.3826834,-0.9807853,0,-0.1950903,-0.8314696,0,-0.5555702,-0.9238795,0,-0.3826834,-0.8314696,0,-0.5555702,-0.9238795,0,-0.3826834,-0.8314696,0,-0.5555702,-0.9238795,0,-0.3826834,-0.7071068,0,-0.7071068,-0.8314696,0,-0.5555702,-0.7071068,0,-0.7071068,-0.8314696,0,-0.5555702,-0.7071068,0,-0.7071068,-0.8314696,0,-0.5555702,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.5555702,0,-0.8314696,-0.5555702,0,-0.8314696,-0.5555702,0,-0.8314696,-0.7071068,0,-0.7071068,-0.5555702,0,-0.8314696,-0.5555702,0,-0.8314696,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5555702,0,-0.8314696,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.1950903,0,-0.9807853,-0.1950903,0,-0.9807853,-0.1950903,0,-0.9807853,-0.3826834,0,-0.9238795,-0.1950903,0,-0.9807853,-0.1950903,0,-0.9807853,-0.09801714,0,-0.9951847,-0.09801714,0,-0.9951847,-0.09801714,0,-0.9951847,-0.1950903,0,-0.9807853,0.7032363,0.1773997,-0.688468,0.5475187,0.2002179,-0.8124875,0.5490437,0.2052104,-0.8102098,0.7032363,0.1773997,-0.688468,0.700921,0.1778588,-0.6907068,0.5475187,0.2002179,-0.8124875,0.5490437,0.2052104,-0.8102098,0.3756616,0.2215387,-0.8998883,0.3771129,0.225393,-0.8983228,0.5490437,0.2052104,-0.8102098,0.5475187,0.2002179,-0.8124875,0.3756616,0.2215387,-0.8998883,0.3771129,0.225393,-0.8983228,0.1906827,0.2361311,-0.9528285,0.1916155,0.2382553,-0.9521123,0.3771129,0.225393,-0.8983228,0.3756616,0.2215387,-0.8998883,0.1906827,0.2361311,-0.9528285,0.5502641,0.1997647,0.8107426,0.6966836,0.1785104,0.6948137,0.6987815,0.178062,0.6928189,0.5502641,0.1997647,0.8107426,0.5470874,0.2055276,0.8114517,0.6966836,0.1785104,0.6948137,0.9745548,0.1162941,0.1916209,0.9936644,0.1123872,-0.0006224813,0.9745283,0.1184972,0.1904021,0.9936652,0.1123793,-0.0005938383,0.9936644,0.1123872,-0.0006224813,0.9745548,0.1162941,0.1916209,0.9174036,0.1297068,0.376227,0.9745283,0.1184972,0.1904021,0.9177101,0.1336617,0.3740893,0.9745548,0.1162941,0.1916209,0.9745283,0.1184972,0.1904021,0.9174036,0.1297068,0.376227,0.6966836,0.1785104,0.6948137,0.8251699,0.1555272,0.5430523,0.6987815,0.178062,0.6928189,0.8243709,0.1504668,0.5456852,0.8251699,0.1555272,0.5430523,0.6966836,0.1785104,0.6948137,0.3784123,0.2212359,0.8988096,0.5470874,0.2055276,0.8114517,0.5502641,0.1997647,0.8107426,0.3784123,0.2212359,0.8988096,0.3759448,0.225539,0.8987756,0.5470874,0.2055276,0.8114517,0.8232873,0.1559346,-0.545786,0.7032363,0.1773997,-0.688468,0.8257428,0.1500926,-0.5437104,0.8232873,0.1559346,-0.545786,0.700921,0.1778588,-0.6907068,0.7032363,0.1773997,-0.688468,0.8243709,0.1504668,0.5456852,0.9177101,0.1336617,0.3740893,0.8251699,0.1555272,0.5430523,0.9174036,0.1297068,0.376227,0.9177101,0.1336617,0.3740893,0.8243709,0.1504668,0.5456852,0.9936652,0.1123793,-0.0005938383,0.974574,0.1162652,-0.1915407,0.9936644,0.1123872,-0.0006224813,0.9936652,0.1123793,-0.0005938383,0.9740684,0.1185908,-0.1926836,0.974574,0.1162652,-0.1915407,0.1916155,0.2382553,-0.9521123,0.09622622,0.2402829,-0.9659216,0.09511748,0.241436,-0.9657439,0.1916155,0.2382553,-0.9521123,0.1906827,0.2361311,-0.9528285,0.09622622,0.2402829,-0.9659216,0.09633799,0.2402738,0.9659128,0.1915902,0.2382711,0.9521134,0.1928751,0.236012,0.9524167,0.1928751,0.236012,0.9524167,0.3759448,0.225539,0.8987756,0.3784123,0.2212359,0.8988096,0.1928751,0.236012,0.9524167,0.1915902,0.2382711,0.9521134,0.3759448,0.225539,0.8987756,0.9165141,0.1339298,-0.3769147,0.8257428,0.1500926,-0.5437104,0.91794,0.1295206,-0.3749805,0.9165141,0.1339298,-0.3769147,0.8232873,0.1559346,-0.545786,0.8257428,0.1500926,-0.5437104,0.9740684,0.1185908,-0.1926836,0.91794,0.1295206,-0.3749805,0.974574,0.1162652,-0.1915407,0.9740684,0.1185908,-0.1926836,0.9165141,0.1339298,-0.3769147,0.91794,0.1295206,-0.3749805,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.09633799,0.2402738,0.9659128,0.09737562,0.241383,0.9655321,0.1915902,0.2382711,0.9521134,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,-0.2425356,-0.9701425,0,-0.2425356,-0.9701425,0,-0.2425356,-0.9701425,0,-0.2425356,-0.9701425,0,-0.2425356,-0.9701425,0,-0.2425356,-0.9701425 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *568 { + a: -17.71654,6.398161E-25,-19.68504,6.398161E-25,-18.50394,3.149606,-19.68504,3.149606,-18.50394,3.149606,-19.68504,6.398161E-25,-17.71654,6.398161E-25,-19.68504,3.149606,19.68504,3.149606,19.68504,8.359326E-14,18.50394,3.149606,17.71654,8.359326E-14,18.50394,3.149606,19.68504,8.359326E-14,19.68504,3.149606,17.71654,8.359326E-14,19.68504,0,6.991741E-12,0,19.68504,3.149606,6.991741E-12,3.149606,19.68504,3.149606,6.991741E-12,0,19.68504,0,6.991741E-12,3.149606,19.68504,19.68504,19.68504,17.71654,1.29603E-11,19.68504,1.239187E-11,17.71654,-3.840361,19.3068,-3.456325,17.37612,-6.779825,16.36794,-7.533138,18.18661,-9.84278,14.73076,-10.93642,16.36751,-12.52748,12.52748,-13.91943,13.91943,-14.73076,9.84278,-16.36751,10.93642,-16.36794,6.779825,-18.18661,7.533138,-17.37612,3.456325,-17.71654,-2.580691E-11,-18.18661,-7.533138,-19.3068,-3.840361,-19.3068,3.840361,-19.68504,-2.82796E-11,-17.37612,-3.456325,-16.36794,-6.779825,-16.36751,-10.93642,-14.73076,-9.84278,-13.91943,-13.91943,-12.52748,-12.52748,-10.93642,-16.36751,-9.84278,-14.73076,-7.533138,-18.18661,-6.779825,-16.36794,-3.840361,-19.3068,-3.456325,-17.37612,6.011192E-11,-17.71654,6.261303E-11,-19.68504,19.68504,-17.71654,19.68504,-19.68504,-19.68504,-5.247708E-27,-19.68504,3.149606,-3.777245E-11,1.827427E-13,-3.777245E-11,3.149606,-3.777245E-11,1.827427E-13,-19.68504,3.149606,-19.68504,-5.247708E-27,-3.777245E-11,3.149606,1.929471,8.793189E-14,-1.929471,9.059643E-14,1.929471,3.149606,-1.929471,3.149606,1.929471,9.023022E-14,-1.929471,9.533724E-14,1.929471,3.149606,-1.929471,3.149606,1.929471,8.841839E-14,-1.929471,9.685609E-14,1.929471,3.149606,-1.929471,3.149606,1.929471,8.683803E-14,-1.929471,9.816231E-14,1.929471,3.149606,-1.929471,3.149606,-1.929471,9.919679E-14,-1.929471,3.149606,1.929471,8.543002E-14,1.929471,3.149606,-1.929471,1.000047E-13,-1.929471,3.149606,1.929471,8.423957E-14,1.929471,3.149606,-1.929471,1.003838E-13,-1.929471,3.149606,1.929471,8.339739E-14,1.929471,3.149606,-1.929471,1.005281E-13,-1.929471,3.149606,1.929471,8.276454E-14,1.929471,3.149606,-1.929471,1.003376E-13,-1.929471,3.149606,1.929471,8.257402E-14,1.929471,3.149606,-1.929471,9.972505E-14,-1.929471,3.149606,1.929471,8.273864E-14,1.929471,3.149606,-1.929471,9.892273E-14,-1.929471,3.149606,1.929471,8.315757E-14,1.929471,3.149606,-1.929471,9.779015E-14,-1.929471,3.149606,1.929471,8.402338E-14,1.929471,3.149606,1.929471,8.513151E-14,-1.929471,9.645579E-14,1.929471,3.149606,-1.929471,3.149606,1.929471,8.652433E-14,-1.929471,9.496203E-14,1.929471,3.149606,-1.929471,3.149606,1.929471,8.813941E-14,-1.929471,9.324644E-14,1.929471,3.149606,-1.929471,3.149606,1.929471,9.290862E-14,-1.929471,9.468497E-14,1.929471,3.149606,-1.929471,3.149606,1.736524,3.463325,-1.736524,3.463325,-1.99969,6.675512,1.531192,3.236203,-2.212114,6.440125,1.364805,6.440125,1.736524,3.853757,-1.736524,3.853757,-1.959863,7.081408,1.561715,3.665732,-2.141481,6.885568,1.420068,6.885568,1.736524,4.131007,-1.736524,4.131007,-1.894553,7.370796,1.619351,4.009057,-2.016689,7.243274,1.533053,7.243274,1.736524,3.242802,-1.736524,3.242802,-1.576986,6.447072,1.941621,3.442745,-1.364805,6.654325,2.212114,6.654325,1.855336,5.177402,1.736524,2.007185,-1.736524,2.007185,-1.730184,5.131866,1.896416,5.131866,-1.696259,1.962572,1.929847,5.400327,1.736524,2.22533,-1.736524,2.22533,-1.573061,5.267958,2.047268,5.267958,-1.621636,2.095887,2.007972,6.213061,1.736524,3.016326,-1.736524,3.016326,-1.375038,5.975653,2.218442,5.975653,-1.532139,2.78606,1.736524,3.669519,-1.736524,3.669519,-1.601512,6.88964,1.911162,3.838123,-1.420068,7.065283,2.141481,7.065283,1.585267,5.982574,1.736524,2.792698,-1.736524,2.792698,1.375038,6.191856,-1.940676,2.995664,-2.218442,6.191856,1.983446,5.764669,1.736524,2.58077,-1.736524,2.58077,-1.448364,5.563965,2.160349,5.563965,-1.564001,2.38519,1.771255,5.13099,1.736524,1.961705,-1.736524,1.961705,1.730184,5.17542,-1.77678,2.005234,-1.896416,5.17542,1.736524,4.256812,-1.736524,4.256812,-1.813703,7.502435,1.695313,4.215274,-1.856736,7.458903,1.686599,7.458903,1.736524,4.214409,-1.736524,4.214409,-1.729622,7.458042,1.736524,4.009404,-1.736524,4.009404,-1.65511,7.243748,1.853621,4.12273,-1.533053,7.362269,2.016689,7.362269,1.625095,5.56798,1.736524,2.389055,-1.736524,2.389055,1.448364,5.748508,-1.908881,2.564964,-2.160349,5.748508,1.690405,5.268385,1.736524,2.096278,-1.736524,2.096278,1.573061,5.391768,-1.851338,2.216931,-2.047268,5.391768,-7.020181E-12,4.296891,-19.68504,4.296891,-6.014053E-12,7.543431,-19.68504,7.543431,-6.014053E-12,7.543431,-19.68504,4.296891,-7.020181E-12,4.296891,-19.68504,7.543431,-19.68504,-19.68504,-19.68504,-18.50394,-6.260686E-11,-19.68504,-6.112893E-11,-18.50394,3.840361,-19.3068,3.525451,-18.14839,6.915421,-17.09541,7.533138,-18.18661,10.03964,-15.38546,10.93642,-16.36751,12.77803,-13.08426,13.91943,-13.91943,15.02538,-10.28024,16.36751,-10.93642,16.6953,-7.08115,18.18661,-7.533138,17.72364,-3.609939,18.07087,-2.743875E-11,18.18661,7.533138,17.72364,3.609939,16.6953,7.08115,16.36751,10.93642,15.02538,10.28024,13.91943,13.91943,12.77803,13.08426,10.93642,16.36751,10.03964,15.38546,7.533138,18.18661,6.915421,17.09541,3.840361,19.3068,3.525451,18.14839,-1.161831E-11,18.50394,-1.295413E-11,19.68504,-19.68504,18.50394,-19.68504,19.68504,19.3068,-3.840361,19.3068,3.840361,19.68504,-2.826298E-11,1.777726,4.254887,-1.686599,7.500465,1.856736,7.500465,19.68504,4.296891,3.777094E-11,4.296891,19.68504,7.543431,3.780119E-11,7.543431,19.68504,7.543431,3.777094E-11,4.296891,19.68504,4.296891,3.780119E-11,7.543431 + } + UVIndex: *480 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,27,26,29,27,28,30,29,28,31,30,28,32,30,31,33,32,31,34,32,33,35,34,33,36,34,35,37,36,35,38,36,37,39,38,37,40,38,39,41,40,39,42,41,39,43,42,39,44,43,39,45,43,44,41,42,46,46,42,47,42,48,47,47,48,49,48,50,49,49,50,51,50,52,51,51,52,53,52,54,53,53,54,55,54,56,55,55,56,57,57,56,58,56,59,58,58,59,60,61,60,59,62,64,63,65,63,64,66,68,67,67,69,66,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,139,138,140,142,141,143,145,144,146,148,147,149,151,150,152,154,153,155,157,156,158,160,159,161,163,162,164,166,165,167,169,168,170,172,171,173,175,174,176,178,177,179,181,180,182,184,183,185,187,186,188,190,189,191,193,192,194,196,195,197,199,198,200,202,201,203,205,204,206,208,207,209,211,210,212,214,213,215,217,216,218,220,219,221,223,222,224,226,225,227,229,228,230,228,229,231,233,232,232,234,231,235,237,236,238,236,237,239,238,237,240,238,239,241,240,239,242,241,239,243,241,242,244,243,242,245,243,244,246,245,244,247,245,246,248,247,246,249,247,248,250,249,248,251,249,250,252,251,250,250,253,252,252,253,254,254,253,255,253,256,255,255,256,257,256,258,257,257,258,259,258,260,259,259,260,261,260,262,261,261,262,263,262,264,263,263,264,265,265,264,266,264,267,266,266,267,268,269,268,267,270,253,250,271,253,270,272,271,270,273,275,274,276,278,277,279,277,278,280,282,281,281,283,280 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *160 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_endRoundBarrier, Model::RootNode + C: "OO",5004148741673869550,0 + + ;Geometry::, Model::Mesh road_endRoundBarrier + C: "OO",4835241619378889395,5004148741673869550 + + ;Material::pavement, Model::Mesh road_endRoundBarrier + C: "OO",17046,5004148741673869550 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRoundBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRoundBarrier.fbx.import new file mode 100644 index 0000000..1fef54e --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_endRoundBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bidx7hul2netw" +path="res://.godot/imported/road_endRoundBarrier.fbx-5030ebbdc8380945d34fb0321e7f1299.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_endRoundBarrier.fbx" +dest_files=["res://.godot/imported/road_endRoundBarrier.fbx-5030ebbdc8380945d34fb0321e7f1299.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersection.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersection.fbx new file mode 100644 index 0000000..e6e0923 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersection.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 20 + Millisecond: 430 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_intersection.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_intersection.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4813665789648229712, "Model::road_intersection", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5069832070904093115, "Geometry::", "Mesh" { + Vertices: *312 { + a: -5,0,5,4,0.09999999,5,5,0,5,5,0.2,5,3,0.09999999,5,4,0.2,5,-3,0.09999999,5,-4,0.09999999,5,-5,0.2,5,0.1000001,0.09999999,5,-0.09999992,0.09999999,5,-4,0.2,5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999993,-5,0.09999999,0.1000001,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,0.2,-5,5,0,-5,5,0.2,-4,5,0.09999999,-4,5,0,5,5,0.09999999,-3,5,0.09999999,-0.09999993,5,0.09999999,0.1000001,5,0.09999999,3,5,0.09999999,4,5,0.2,4,5,0.2,5,5,0.09999999,3,3,0.09999999,3,5,0.09999999,0.1000001,3,0.09999999,0.1000001,-5,0.09999999,-3,3,0.09999999,-0.09999993,5,0.09999999,-0.09999993,5,0.09999999,-3,3,0.09999999,5,0.1000001,0.09999999,3,-0.09999992,0.09999999,3,-3,0.09999999,-0.09999993,-0.09999992,0.09999999,5,-5,0.09999999,-0.09999993,-3,0.09999999,3,-3,0.09999999,5,-3,0.09999999,0.1000001,-5,0.09999999,0.1000001,-5,0.09999999,3,0.1000001,0.09999999,5,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,5,0.2,-5,5,0.2,-4,-5,0.2,-5,-5,0.2,-4,5,0,-5,-5,0,-5,5,0,5,-5,0,5,-5,0.09999999,4,-4,0.09999999,4,-5,0.2,4,-4,0.2,4,5,0.09999999,-4,-5,0.09999999,-4,5,0.2,-4,-5,0.2,-4,-4,0.2,4,-4,0.09999999,4,-4,0.2,5,-4,0.09999999,5,-4,0.2,4,-4,0.2,5,-5,0.2,4,-5,0.2,5,5,0.2,4,5,0.2,5,4,0.2,4,4,0.2,5,4,0.09999999,4,5,0.09999999,4,4,0.2,4,5,0.2,4,4,0.09999999,4,4,0.2,4,4,0.09999999,5,4,0.2,5,-4,0.09999999,4,-5,0.09999999,4,-4,0.09999999,5,5,0.09999999,4,4,0.09999999,4,4,0.09999999,5,5,0.09999999,-4,-5,0.09999999,-4 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,1,-3,4,0,-2,5,1,-4,4,6,-1,6,7,-1,8,0,-8,9,6,-5,10,6,-10,11,8,-8,12,14,-14,15,13,-15,16,13,-16,17,16,-16,18,17,-16,19,18,-16,20,19,-16,21,20,-16,22,21,-16,13,23,-13,24,26,-26,27,25,-27,28,25,-28,29,28,-28,30,28,-30,31,28,-31,32,28,-32,33,28,-33,34,28,-34,35,28,-35,36,38,-38,39,37,-39,37,39,-41,39,41,-41,41,42,-41,43,40,-43,44,37,-41,45,44,-41,46,45,-41,47,46,-41,48,46,-48,49,47,-41,47,50,-49,51,48,-51,52,50,-48,52,53,-51,54,50,-54,45,55,-45,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,50,54,-52,96,51,-55,97,96,-55,96,98,-52,36,37,-100,100,99,-38,101,100,-38,44,101,-38,102,103,-44,40,43,-104,47,49,-53,53,52,-50,45,46,-56,48,55,-47,42,41,-39,39,38,-42 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *208 { + a: -19.68504,-4.173216E-07,15.74803,0.3937004,19.68504,-4.173216E-07,19.68504,0.7874011,11.81102,0.3937004,15.74803,0.7874011,-11.81102,0.3937004,-15.74803,0.3937004,-19.68504,0.7874011,0.3937014,0.3937004,-0.3937002,0.3937004,-15.74803,0.7874011,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-9.488882E-15,19.68504,-9.488882E-15,-11.81102,0.3937008,-0.3937002,0.3937008,0.3937014,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,19.68504,0.7874021,19.68504,5.089292E-07,15.74803,0.7874021,15.74803,0.3937013,-19.68504,5.089292E-07,11.81102,0.3937013,0.3937008,0.3937013,-0.3937008,0.3937013,-11.81102,0.3937013,-15.74803,0.3937013,-15.74803,0.7874021,-19.68504,0.7874021,-19.68504,11.81102,-11.81102,11.81102,-19.68504,0.3937011,-11.81102,0.3937011,19.68504,-11.81102,-11.81102,-0.3937005,-19.68504,-0.3937005,-19.68504,-11.81102,-11.81102,19.68504,-0.3937011,11.81102,0.3937005,11.81102,11.81102,-0.3937005,0.3937005,19.68504,19.68504,-0.3937005,11.81102,11.81102,11.81102,19.68504,11.81102,0.3937011,19.68504,0.3937011,19.68504,11.81102,-0.3937011,19.68504,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,0.3937008,15.74803,15.74803,15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,-15.74803,0.3937008,-19.68504,0.3937008,-15.74803,0.7874016,-19.68504,0.7874016,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.3937008,19.68504,0.7874016,15.74803,15.74803,19.68504,15.74803,15.74803,19.68504,-19.68504,15.74803,-15.74803,15.74803,-15.74803,19.68504,-19.68504,-15.74803,19.68504,-15.74803 + } + UVIndex: *252 { + a: 0,2,1,3,1,2,4,0,1,5,1,3,4,6,0,6,7,0,8,0,7,9,6,4,10,6,9,11,8,7,12,14,13,15,13,14,16,13,15,17,16,15,18,17,15,19,18,15,20,19,15,21,20,15,22,21,15,13,23,12,24,26,25,27,25,26,28,25,27,29,28,27,30,28,29,31,28,30,32,28,31,33,28,32,34,28,33,35,28,34,36,38,37,39,37,38,37,39,40,39,41,40,41,42,40,43,40,42,44,37,40,45,44,40,46,45,40,47,46,40,48,46,47,49,47,40,47,50,48,51,48,50,52,50,47,52,53,50,54,50,53,45,55,44,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,50,54,51,96,51,54,97,96,54,96,98,51,36,37,99,100,99,37,101,100,37,44,101,37,102,103,43,40,43,103,47,49,52,53,52,49,45,46,55,48,55,46,42,41,38,39,38,41 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_intersection, Model::RootNode + C: "OO",4813665789648229712,0 + + ;Geometry::, Model::Mesh road_intersection + C: "OO",5069832070904093115,4813665789648229712 + + ;Material::asphalt, Model::Mesh road_intersection + C: "OO",9934,4813665789648229712 + + ;Material::pavement, Model::Mesh road_intersection + C: "OO",17046,4813665789648229712 + + ;Material::asphaltEdge, Model::Mesh road_intersection + C: "OO",17042,4813665789648229712 + + ;Material::line, Model::Mesh road_intersection + C: "OO",9174,4813665789648229712 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersection.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersection.fbx.import new file mode 100644 index 0000000..527daf3 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersection.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://6hbpfiqarwkn" +path="res://.godot/imported/road_intersection.fbx-f10346fc9721c1d279adbf15d631a2da.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_intersection.fbx" +dest_files=["res://.godot/imported/road_intersection.fbx-f10346fc9721c1d279adbf15d631a2da.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionBarrier.fbx new file mode 100644 index 0000000..efdf98d --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 20 + Millisecond: 515 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_intersectionBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_intersectionBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4897328650300820733, "Model::road_intersectionBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4829444466429180225, "Geometry::", "Mesh" { + Vertices: *360 { + a: 4.87059,1.015188E-14,4.517037,5,1.015188E-14,4.5,5,0.8,4.7,4.922354,0.8,4.710222,5,0.8,4.7,5,0.8,5,4.922354,0.8,4.710222,4.7,0.8,5,4.85,0.8,4.740192,4.787868,0.8,4.787868,4.740192,0.8,4.85,4.710222,0.8,4.922355,4.787868,0.8,4.787868,4.646446,1.015188E-14,4.646446,4.85,0.8,4.740192,4.75,1.015188E-14,4.566987,5,1.015188E-14,4.5,5,1.015188E-14,5,5,0.8,4.7,5,0.8,5,4.517036,1.015188E-14,4.870591,4.710222,0.8,4.922355,4.7,0.8,5,4.5,1.015188E-14,5,4.85,0.8,4.740192,4.75,1.015188E-14,4.566987,4.922354,0.8,4.710222,4.87059,1.015188E-14,4.517037,4.566987,1.015188E-14,4.75,4.646446,1.015188E-14,4.646446,4.740192,0.8,4.85,4.787868,0.8,4.787868,5,1.015188E-14,4.5,4.87059,1.015188E-14,4.517037,5,1.015188E-14,5,4.5,1.015188E-14,5,4.75,1.015188E-14,4.566987,4.646446,1.015188E-14,4.646446,4.566987,1.015188E-14,4.75,4.517036,1.015188E-14,4.870591,5,1.015188E-14,5,4.5,1.015188E-14,5,5,0.8,5,4.7,0.8,5,4.566987,1.015188E-14,4.75,4.740192,0.8,4.85,4.710222,0.8,4.922355,4.517036,1.015188E-14,4.870591,-5,0,4.5,-4.870591,0,4.517036,-5,0.8,4.7,-4.922355,0.8,4.710222,-4.7,0.8,5,-5,0.8,5,-4.710222,0.8,4.922354,-4.740192,0.8,4.85,-4.787868,0.8,4.787868,-4.85,0.8,4.740192,-4.922355,0.8,4.710222,-5,0.8,4.7,-4.870591,0,4.517036,-4.75,0,4.566987,-4.922355,0.8,4.710222,-4.85,0.8,4.740192,-4.787868,0.8,4.787868,-4.646446,0,4.646446,-4.740192,0.8,4.85,-4.566987,0,4.75,-4.5,0,5,-5,0,5,-4.7,0.8,5,-5,0.8,5,-4.566987,0,4.75,-4.517037,0,4.87059,-4.710222,0.8,4.922354,-4.740192,0.8,4.85,-4.7,0.8,5,-4.517037,0,4.87059,-4.5,0,5,-4.710222,0.8,4.922354,-4.85,0.8,4.740192,-4.646446,0,4.646446,-4.787868,0.8,4.787868,-4.75,0,4.566987,-4.5,0,5,-4.517037,0,4.87059,-5,0,5,-4.566987,0,4.75,-4.646446,0,4.646446,-4.75,0,4.566987,-4.870591,0,4.517036,-5,0,4.5,-5,0,4.5,-5,0.8,4.7,-5,0,5,-5,0.8,5,-5,0,-5,-5,0.8,-5,-5,0,-4.5,-5,0.8,-4.7,5,0,-4.5,5,0,-5,-5,0,-4.5,-5,0,-5,5,0.8,-5,5,0,-5,5,0.8,-4.7,5,0,-4.5,5,0,-4.5,-5,0,-4.5,5,0.8,-4.7,-5,0.8,-4.7,-5,0,-5,5,0,-5,-5,0.8,-5,5,0.8,-5,5,0.8,-4.7,-5,0.8,-4.7,5,0.8,-5,-5,0.8,-5 + } + PolygonVertexIndex: *204 { + a: 0,2,-2,3,2,-1,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,7,-10,11,7,-11,12,14,-14,13,14,-16,16,18,-18,19,17,-19,20,22,-22,20,23,-23,24,26,-26,25,26,-28,28,30,-30,29,30,-32,32,34,-34,35,33,-35,36,33,-36,37,36,-36,38,37,-36,39,38,-36,40,42,-42,43,41,-43,44,46,-46,47,46,-45,48,50,-50,50,51,-50,52,54,-54,55,53,-55,56,53,-56,57,53,-57,58,53,-58,59,53,-59,60,62,-62,62,63,-62,64,66,-66,65,66,-68,68,70,-70,71,69,-71,72,74,-74,75,74,-73,76,78,-78,79,76,-78,80,82,-82,83,80,-82,84,86,-86,87,85,-87,88,87,-87,89,88,-87,90,89,-87,91,90,-87,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *612 { + a: -0.2510914,0.2425356,-0.9370857,-0.1266925,0.2405813,-0.9623252,-0.1266925,0.2405813,-0.9623252,-0.2510914,0.2425356,-0.9370857,-0.1266925,0.2405813,-0.9623252,-0.2510914,0.2425356,-0.9370857,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6859944,0.2425356,-0.6859944,-0.4850713,0.2425356,-0.8401681,-0.6859944,0.2425356,-0.6859944,-0.6859944,0.2425356,-0.6859944,-0.4850713,0.2425356,-0.8401681,-0.4850713,0.2425356,-0.8401681,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9370857,0.2425356,-0.2510914,-0.9623252,0.2405813,-0.1266925,-0.9370857,0.2425356,-0.2510914,-0.9370857,0.2425356,-0.2510914,-0.9623252,0.2405813,-0.1266925,-0.9623252,0.2405813,-0.1266925,-0.4850713,0.2425356,-0.8401681,-0.2510914,0.2425356,-0.9370857,-0.4850713,0.2425356,-0.8401681,-0.4850713,0.2425356,-0.8401681,-0.2510914,0.2425356,-0.9370857,-0.2510914,0.2425356,-0.9370857,-0.8401681,0.2425356,-0.4850713,-0.8401681,0.2425356,-0.4850713,-0.6859944,0.2425356,-0.6859944,-0.6859944,0.2425356,-0.6859944,-0.8401681,0.2425356,-0.4850713,-0.6859944,0.2425356,-0.6859944,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8401681,0.2425356,-0.4850713,-0.9370857,0.2425356,-0.2510914,-0.8401681,0.2425356,-0.4850713,-0.9370857,0.2425356,-0.2510914,-0.9370857,0.2425356,-0.2510914,-0.8401681,0.2425356,-0.4850713,0.1266925,0.2405813,-0.9623252,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.6859944,0.2425356,-0.6859944,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.8401681,0.2425356,-0.4850713,0.9623252,0.2405813,-0.1266925,0.9623252,0.2405813,-0.1266925,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.9623252,0.2405813,-0.1266925,0.9370857,0.2425356,-0.2510914,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.6859944,0.2425356,-0.6859944,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: -16.69028,4.843956,-17.20416,4.843956,-17.10138,8.088868,-16.79305,8.088868,-19.68504,18.50394,-19.68504,19.68504,-19.37935,18.54418,-18.50394,19.68504,-19.09449,18.66217,-18.84987,18.84987,-18.66217,19.09449,-18.54418,19.37935,-3.479534,9.415587,-3.376757,6.170674,-3.787863,9.415587,-3.89064,6.170674,-17.71654,2.176037E-13,-19.68504,2.176037E-13,-18.50394,3.149606,-19.68504,3.149606,16.69028,4.843955,16.79305,8.088868,17.10138,8.088868,17.20416,4.843955,-10.4993,8.963068,-10.39652,5.718155,-10.80763,8.963068,-10.91041,5.718155,3.890641,6.170674,3.376758,6.170674,3.787864,9.415587,3.479535,9.415587,19.68504,17.71654,19.17555,17.78361,19.68504,19.68504,17.71654,19.68504,18.70079,17.98026,18.2931,18.2931,17.98026,18.70079,17.78361,19.17555,19.68504,-3.153033E-13,17.71654,-3.153033E-13,19.68504,3.149606,18.50394,3.149606,10.39653,5.718155,10.4993,8.963068,10.80763,8.963068,10.91041,5.718155,17.20416,4.843955,16.69028,4.843955,17.10138,8.088868,16.79305,8.088868,18.50394,19.68504,19.68504,19.68504,18.54418,19.37935,18.66217,19.09449,18.84987,18.84987,19.09449,18.66217,19.37935,18.54418,19.68504,18.50394,10.91041,5.718155,10.39653,5.718155,10.80763,8.963068,10.4993,8.963068,-3.479534,9.415587,-3.376757,6.170674,-3.787863,9.415587,-3.89064,6.170674,-17.71654,1.776357E-13,-19.68504,1.776357E-13,-18.50394,3.149606,-19.68504,3.149606,-10.39652,5.718155,-10.91041,5.718155,-10.80763,8.963068,-10.4993,8.963068,-17.10138,8.088868,-16.69028,4.843956,-17.20416,4.843956,-16.79305,8.088868,3.787864,9.415587,3.376758,6.170674,3.479535,9.415587,3.890641,6.170674,-17.71654,19.68504,-17.78361,19.17555,-19.68504,19.68504,-17.98026,18.70079,-18.2931,18.2931,-18.70079,17.98026,-19.17555,17.78361,-19.68504,17.71654,17.71654,-3.552714E-13,18.50394,3.149606,19.68504,-3.552714E-13,19.68504,3.149606,-19.68504,0,-19.68504,3.149606,-17.71654,0,-18.50394,3.149606,19.68504,-17.71654,19.68504,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,19.68504,3.149606,19.68504,1.776357E-13,18.50394,3.149606,17.71654,1.776357E-13,19.68504,4.296891,-19.68504,4.296891,19.68504,7.543431,-19.68504,7.543431,19.68504,0,-19.68504,0,19.68504,3.149606,-19.68504,3.149606,-19.68504,-18.50394,19.68504,-18.50394,-19.68504,-19.68504,19.68504,-19.68504 + } + UVIndex: *204 { + a: 0,2,1,3,2,0,4,6,5,7,5,6,8,7,6,9,7,8,10,7,9,11,7,10,12,14,13,13,14,15,16,18,17,19,17,18,20,22,21,20,23,22,24,26,25,25,26,27,28,30,29,29,30,31,32,34,33,35,33,34,36,33,35,37,36,35,38,37,35,39,38,35,40,42,41,43,41,42,44,46,45,47,46,44,48,50,49,50,51,49,52,54,53,55,53,54,56,53,55,57,53,56,58,53,57,59,53,58,60,62,61,62,63,61,64,66,65,65,66,67,68,70,69,71,69,70,72,74,73,75,74,72,76,78,77,79,76,77,80,82,81,83,80,81,84,86,85,87,85,86,88,87,86,89,88,86,90,89,86,91,90,86,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *68 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_intersectionBarrier, Model::RootNode + C: "OO",4897328650300820733,0 + + ;Geometry::, Model::Mesh road_intersectionBarrier + C: "OO",4829444466429180225,4897328650300820733 + + ;Material::pavement, Model::Mesh road_intersectionBarrier + C: "OO",17046,4897328650300820733 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionBarrier.fbx.import new file mode 100644 index 0000000..5e61b63 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cfuekswk0i4dd" +path="res://.godot/imported/road_intersectionBarrier.fbx-f2f120862ca3d243c66da2a5c4dc9721.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionBarrier.fbx" +dest_files=["res://.godot/imported/road_intersectionBarrier.fbx-f2f120862ca3d243c66da2a5c4dc9721.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionLine.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionLine.fbx new file mode 100644 index 0000000..d8588de --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionLine.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 20 + Millisecond: 596 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_intersectionLine.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_intersectionLine.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5104988719976490003, "Model::road_intersectionLine", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5213487630268938338, "Geometry::", "Mesh" { + Vertices: *300 { + a: -5,0,5,4,0.09999999,5,5,0,5,5,0.2,5,3,0.09999999,5,4,0.2,5,-3,0.09999999,5,-4,0.09999999,5,-5,0.2,5,0.1000001,0.09999999,5,-0.09999992,0.09999999,5,-4,0.2,5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999993,-5,0.09999999,0.1000001,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,0.1000001,5,0.09999999,-0.09999993,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5,5,0.09999999,-3,5,0.09999999,-0.09999993,-5,0.09999999,-3,-5,0.09999999,-0.09999993,5,0.09999999,3,3,0.09999999,3,5,0.09999999,0.1000001,0.1000001,0.09999999,0.1000001,3,0.09999999,5,0.1000001,0.09999999,5,-0.09999992,0.09999999,0.1000001,-0.09999992,0.09999999,5,-5,0.09999999,0.1000001,-3,0.09999999,3,-5,0.09999999,3,-3,0.09999999,5,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,5,0.2,-5,5,0.2,-4,-5,0.2,-5,-5,0.2,-4,5,0,-5,-5,0,-5,5,0,5,-5,0,5,-5,0.09999999,4,-4,0.09999999,4,-5,0.2,4,-4,0.2,4,5,0.09999999,-4,-5,0.09999999,-4,5,0.2,-4,-5,0.2,-4,-4,0.2,4,-4,0.09999999,4,-4,0.2,5,-4,0.09999999,5,-4,0.2,4,-4,0.2,5,-5,0.2,4,-5,0.2,5,5,0.2,4,5,0.2,5,4,0.2,4,4,0.2,5,4,0.09999999,4,5,0.09999999,4,4,0.2,4,5,0.2,4,4,0.09999999,4,4,0.2,4,4,0.09999999,5,4,0.2,5,-4,0.09999999,4,-5,0.09999999,4,-4,0.09999999,5,5,0.09999999,-4,-5,0.09999999,-4,5,0.09999999,4,4,0.09999999,4,4,0.09999999,5 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,0,-2,5,1,-4,4,6,-1,6,7,-1,8,0,-8,9,6,-5,10,6,-10,11,8,-8,12,14,-14,15,13,-15,16,13,-16,17,16,-16,18,17,-16,19,18,-16,20,19,-16,21,20,-16,22,21,-16,13,23,-13,24,26,-26,27,25,-27,25,27,-29,28,27,-30,29,27,-31,30,27,-32,31,27,-33,27,33,-33,32,33,-35,35,34,-34,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,48,-48,49,47,-49,50,49,-49,49,51,-48,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,49,50,-52,92,51,-51,93,92,-51,92,94,-52,95,96,-37,38,36,-97,40,41,-98,98,97,-42,99,98,-42,44,99,-42,37,39,-43,43,42,-40,46,43,-40,45,43,-47,48,46,-40,46,47,-46 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *200 { + a: -19.68504,-4.173215E-07,15.74803,0.3937004,19.68504,-4.173215E-07,19.68504,0.7874011,11.81102,0.3937004,15.74803,0.7874011,-11.81102,0.3937004,-15.74803,0.3937004,-19.68504,0.7874011,0.3937014,0.3937004,-0.3937002,0.3937004,-15.74803,0.7874011,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-9.488882E-15,19.68504,-9.488882E-15,-11.81102,0.3937008,-0.3937002,0.3937008,0.3937014,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.7874021,-15.74803,0.3937013,-19.68504,0.7874021,-19.68504,5.089292E-07,-11.81102,0.3937013,-0.3937008,0.3937013,0.3937008,0.3937013,11.81102,0.3937013,15.74803,0.3937013,19.68504,5.089292E-07,15.74803,0.7874021,19.68504,0.7874021,-19.68504,-11.81102,-19.68504,-0.3937005,19.68504,-11.81102,19.68504,-0.3937005,-19.68504,11.81102,-11.81102,11.81102,-19.68504,0.3937011,-0.3937011,0.3937011,-11.81102,19.68504,-0.3937011,19.68504,0.3937005,0.3937011,0.3937005,19.68504,19.68504,0.3937011,11.81102,11.81102,19.68504,11.81102,11.81102,19.68504,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,0.3937008,15.74803,15.74803,15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,-15.74803,0.3937008,-19.68504,0.3937008,-15.74803,0.7874016,-19.68504,0.7874016,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.3937008,19.68504,0.7874016,15.74803,15.74803,19.68504,15.74803,15.74803,19.68504,-19.68504,-15.74803,19.68504,-15.74803,-19.68504,15.74803,-15.74803,15.74803,-15.74803,19.68504 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,0,1,5,1,3,4,6,0,6,7,0,8,0,7,9,6,4,10,6,9,11,8,7,12,14,13,15,13,14,16,13,15,17,16,15,18,17,15,19,18,15,20,19,15,21,20,15,22,21,15,13,23,12,24,26,25,27,25,26,25,27,28,28,27,29,29,27,30,30,27,31,31,27,32,27,33,32,32,33,34,35,34,33,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,46,48,47,49,47,48,50,49,48,49,51,47,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,49,50,51,92,51,50,93,92,50,92,94,51,95,96,36,38,36,96,40,41,97,98,97,41,99,98,41,44,99,41,37,39,42,43,42,39,46,43,39,45,43,46,48,46,39,46,47,45 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_intersectionLine, Model::RootNode + C: "OO",5104988719976490003,0 + + ;Geometry::, Model::Mesh road_intersectionLine + C: "OO",5213487630268938338,5104988719976490003 + + ;Material::asphalt, Model::Mesh road_intersectionLine + C: "OO",9934,5104988719976490003 + + ;Material::pavement, Model::Mesh road_intersectionLine + C: "OO",17046,5104988719976490003 + + ;Material::asphaltEdge, Model::Mesh road_intersectionLine + C: "OO",17042,5104988719976490003 + + ;Material::line, Model::Mesh road_intersectionLine + C: "OO",9174,5104988719976490003 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionLine.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionLine.fbx.import new file mode 100644 index 0000000..4aa5df2 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionLine.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cjqtbhmiaqtsu" +path="res://.godot/imported/road_intersectionLine.fbx-e4de199aeb66fb8c24873c566193d002.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionLine.fbx" +dest_files=["res://.godot/imported/road_intersectionLine.fbx-e4de199aeb66fb8c24873c566193d002.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionPath.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionPath.fbx new file mode 100644 index 0000000..554f1f6 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionPath.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 20 + Millisecond: 725 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_intersectionPath.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_intersectionPath.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5170525516980481997, "Model::road_intersectionPath", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5227940172386308902, "Geometry::", "Mesh" { + Vertices: *474 { + a: -5,0,5,4,0.09999999,5,5,0,5,5,0.2,5,3,0.09999999,5,4,0.2,5,-3,0.09999999,5,-4,0.09999999,5,-5,0.2,5,-4,0.2,5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5,3,0.09999999,3,4.5,0.09999999,2.75,5,0.09999999,3,4.5,0.09999999,-2.75,4.5,0.09999999,-2.25,4.5,0.09999999,-1.75,4.5,0.09999999,-1.25,4.5,0.09999999,-0.7499999,4.5,0.09999999,-0.2499999,4.5,0.09999999,0.2500001,4.5,0.09999999,0.75,4.5,0.09999999,1.25,4.5,0.09999999,1.75,4.5,0.09999999,2.25,3,0.09999999,2.75,3,0.09999999,5,3,0.09999999,1.75,3,0.09999999,2.25,3,0.09999999,0.75,3,0.09999999,1.25,3,0.09999999,-0.2499999,3,0.09999999,0.2500001,3,0.09999999,-1.25,3,0.09999999,-0.7499999,-3,0.09999999,-2.75,3,0.09999999,-1.75,3,0.09999999,-2.25,-5,0.09999999,-3,3,0.09999999,-2.75,5,0.09999999,-3,-4.5,0.09999999,-2.75,-4.5,0.09999999,-2.25,-4.5,0.09999999,-1.75,-4.5,0.09999999,-1.25,-4.5,0.09999999,-0.7499999,-4.5,0.09999999,-0.2499999,-4.5,0.09999999,0.2500001,-4.5,0.09999999,0.75,-4.5,0.09999999,1.25,-4.5,0.09999999,1.75,-4.5,0.09999999,2.25,-4.5,0.09999999,2.75,-5,0.09999999,3,-3,0.09999999,3,-3,0.09999999,2.75,-3,0.09999999,2.25,-3,0.09999999,1.75,-3,0.09999999,1.25,-3,0.09999999,0.75,-3,0.09999999,0.2500001,-3,0.09999999,-0.2499999,-2.75,0.09999999,3,-3,0.09999999,5,-2.75,0.09999999,4.5,-2.25,0.09999999,4.5,-1.75,0.09999999,4.5,-1.25,0.09999999,4.5,-0.75,0.09999999,4.5,-0.25,0.09999999,4.5,0.25,0.09999999,4.5,0.75,0.09999999,4.5,1.25,0.09999999,4.5,1.75,0.09999999,4.5,2.25,0.09999999,4.5,2.75,0.09999999,4.5,2.75,0.09999999,3,2.25,0.09999999,3,1.75,0.09999999,3,1.25,0.09999999,3,0.75,0.09999999,3,0.25,0.09999999,3,-0.25,0.09999999,3,-0.75,0.09999999,3,-1.25,0.09999999,3,-1.75,0.09999999,3,-2.25,0.09999999,3,-3,0.09999999,-2.25,-3,0.09999999,-1.75,-3,0.09999999,-1.25,-3,0.09999999,-0.7499999,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,5,0.2,-5,5,0.2,-4,-5,0.2,-5,-5,0.2,-4,5,0,-5,-5,0,-5,5,0,5,-5,0,5,-5,0.09999999,4,-4,0.09999999,4,-5,0.2,4,-4,0.2,4,5,0.09999999,-4,-5,0.09999999,-4,5,0.2,-4,-5,0.2,-4,-4,0.2,4,-4,0.09999999,4,-4,0.2,5,-4,0.09999999,5,-4,0.2,4,-4,0.2,5,-5,0.2,4,-5,0.2,5,5,0.2,4,5,0.2,5,4,0.2,4,4,0.2,5,4,0.09999999,4,5,0.09999999,4,4,0.2,4,5,0.2,4,4,0.09999999,4,4,0.2,4,4,0.09999999,5,4,0.2,5,-4,0.09999999,4,-5,0.09999999,4,-4,0.09999999,5,5,0.09999999,-4,-5,0.09999999,-4,5,0.09999999,4,4,0.09999999,4,4,0.09999999,5 + } + PolygonVertexIndex: *612 { + a: 0,2,-2,3,1,-3,4,0,-2,5,1,-4,4,6,-1,6,7,-1,8,0,-8,9,8,-8,10,12,-12,13,11,-13,14,11,-14,15,14,-14,16,15,-14,17,16,-14,18,17,-14,11,19,-11,20,22,-22,23,21,-23,21,23,-25,24,23,-26,25,23,-27,23,27,-27,26,27,-29,29,28,-28,30,32,-32,33,31,-33,34,31,-34,35,31,-35,36,31,-36,37,31,-37,38,31,-38,39,31,-39,40,31,-40,41,31,-41,42,31,-42,43,31,-43,44,30,-32,45,30,-45,42,46,-44,47,43,-47,40,48,-42,49,41,-49,38,50,-40,51,39,-51,36,52,-38,53,37,-53,53,52,-55,50,53,-55,51,50,-55,48,51,-55,49,48,-55,46,49,-55,47,46,-55,44,47,-55,52,55,-55,55,56,-55,55,35,-57,34,56,-36,54,56,-58,56,58,-58,58,33,-58,57,33,-60,32,59,-34,60,54,-58,61,60,-58,62,61,-58,63,62,-58,64,63,-58,65,64,-58,66,65,-58,67,66,-58,68,67,-58,69,68,-58,70,69,-58,71,70,-58,57,72,-72,72,73,-72,74,71,-74,70,75,-70,76,69,-76,75,74,-77,68,77,-68,76,74,-78,78,67,-78,77,74,-79,66,79,-66,78,74,-80,80,65,-80,79,74,-81,74,73,-82,73,82,-82,81,82,-84,83,82,-85,84,82,-86,85,82,-87,86,82,-88,87,82,-89,88,82,-90,89,82,-91,90,82,-92,91,82,-93,92,82,-94,93,82,-95,45,94,-83,94,45,-96,45,44,-96,95,44,-55,96,95,-55,96,92,-94,97,96,-55,92,96,-98,98,97,-55,98,90,-92,99,98,-55,90,98,-100,100,99,-55,100,88,-90,101,100,-55,88,100,-102,102,101,-55,103,102,-55,86,102,-104,104,103,-55,105,104,-55,84,104,-106,81,105,-55,102,86,-88,104,84,-86,54,74,-82,106,74,-55,107,74,-107,106,61,-108,62,107,-62,108,74,-108,109,74,-109,108,63,-110,64,109,-64,80,74,-110,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,73,72,-83,150,82,-73,151,150,-73,150,152,-83,153,154,-60,57,59,-155,32,30,-156,156,155,-31,157,156,-31,45,157,-31,37,53,-39,50,38,-54,90,99,-90,100,89,-100,35,55,-37,52,36,-56,79,66,-79,67,78,-67,75,70,-75,71,74,-71,43,47,-32,44,31,-48,54,60,-107,61,106,-61,41,49,-43,46,42,-50,107,62,-109,63,108,-63,88,101,-88,102,87,-102,39,51,-41,48,40,-52,77,68,-77,69,76,-69,109,64,-81,65,80,-65,84,105,-84,81,83,-106,94,95,-94,96,93,-96,86,103,-86,104,85,-104,92,97,-92,98,91,-98,33,58,-35,56,34,-59 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1836 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *316 { + a: -19.68504,4.060244E-13,15.74803,0.3937008,19.68504,4.060244E-13,19.68504,0.7874016,11.81102,0.3937008,15.74803,0.7874016,-11.81102,0.3937008,-15.74803,0.3937008,-19.68504,0.7874016,-15.74803,0.7874016,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-9.488882E-15,19.68504,-9.488882E-15,-11.81102,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.7874021,-15.74803,0.3937013,-19.68504,0.7874021,-19.68504,5.089292E-07,-11.81102,0.3937013,11.81102,0.3937013,15.74803,0.3937013,19.68504,5.089292E-07,15.74803,0.7874021,19.68504,0.7874021,-11.81102,11.81102,-17.71654,10.82677,-19.68504,11.81102,-17.71654,-10.82677,-17.71654,-8.858268,-17.71654,-6.889764,-17.71654,-4.92126,-17.71654,-2.952756,-17.71654,-0.9842517,-17.71654,0.9842523,-17.71654,2.952756,-17.71654,4.92126,-17.71654,6.889764,-17.71654,8.858269,-11.81102,10.82677,-11.81102,19.68504,-11.81102,6.889764,-11.81102,8.858269,-11.81102,2.952756,-11.81102,4.92126,-11.81102,-0.9842517,-11.81102,0.9842523,-11.81102,-4.92126,-11.81102,-2.952756,11.81102,-10.82677,-11.81102,-6.889764,-11.81102,-8.858268,19.68504,-11.81102,-11.81102,-10.82677,-19.68504,-11.81102,17.71654,-10.82677,17.71654,-8.858268,17.71654,-6.889764,17.71654,-4.92126,17.71654,-2.952756,17.71654,-0.9842517,17.71654,0.9842523,17.71654,2.952756,17.71654,4.92126,17.71654,6.889764,17.71654,8.858269,17.71654,10.82677,19.68504,11.81102,11.81102,11.81102,11.81102,10.82677,11.81102,8.858269,11.81102,6.889764,11.81102,4.92126,11.81102,2.952756,11.81102,0.9842523,11.81102,-0.9842517,10.82677,11.81102,11.81102,19.68504,10.82677,17.71654,8.858268,17.71654,6.889764,17.71654,4.92126,17.71654,2.952756,17.71654,0.9842522,17.71654,-0.9842519,17.71654,-2.952756,17.71654,-4.92126,17.71654,-6.889764,17.71654,-8.858268,17.71654,-10.82677,17.71654,-10.82677,11.81102,-8.858268,11.81102,-6.889764,11.81102,-4.92126,11.81102,-2.952756,11.81102,-0.9842519,11.81102,0.9842522,11.81102,2.952756,11.81102,4.92126,11.81102,6.889764,11.81102,8.858268,11.81102,11.81102,-8.858268,11.81102,-6.889764,11.81102,-4.92126,11.81102,-2.952756,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,0.3937008,15.74803,15.74803,15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,-15.74803,0.3937008,-19.68504,0.3937008,-15.74803,0.7874016,-19.68504,0.7874016,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.3937008,19.68504,0.7874016,15.74803,15.74803,19.68504,15.74803,15.74803,19.68504,-19.68504,-15.74803,19.68504,-15.74803,-19.68504,15.74803,-15.74803,15.74803,-15.74803,19.68504 + } + UVIndex: *612 { + a: 0,2,1,3,1,2,4,0,1,5,1,3,4,6,0,6,7,0,8,0,7,9,8,7,10,12,11,13,11,12,14,11,13,15,14,13,16,15,13,17,16,13,18,17,13,11,19,10,20,22,21,23,21,22,21,23,24,24,23,25,25,23,26,23,27,26,26,27,28,29,28,27,30,32,31,33,31,32,34,31,33,35,31,34,36,31,35,37,31,36,38,31,37,39,31,38,40,31,39,41,31,40,42,31,41,43,31,42,44,30,31,45,30,44,42,46,43,47,43,46,40,48,41,49,41,48,38,50,39,51,39,50,36,52,37,53,37,52,53,52,54,50,53,54,51,50,54,48,51,54,49,48,54,46,49,54,47,46,54,44,47,54,52,55,54,55,56,54,55,35,56,34,56,35,54,56,57,56,58,57,58,33,57,57,33,59,32,59,33,60,54,57,61,60,57,62,61,57,63,62,57,64,63,57,65,64,57,66,65,57,67,66,57,68,67,57,69,68,57,70,69,57,71,70,57,57,72,71,72,73,71,74,71,73,70,75,69,76,69,75,75,74,76,68,77,67,76,74,77,78,67,77,77,74,78,66,79,65,78,74,79,80,65,79,79,74,80,74,73,81,73,82,81,81,82,83,83,82,84,84,82,85,85,82,86,86,82,87,87,82,88,88,82,89,89,82,90,90,82,91,91,82,92,92,82,93,93,82,94,45,94,82,94,45,95,45,44,95,95,44,54,96,95,54,96,92,93,97,96,54,92,96,97,98,97,54,98,90,91,99,98,54,90,98,99,100,99,54,100,88,89,101,100,54,88,100,101,102,101,54,103,102,54,86,102,103,104,103,54,105,104,54,84,104,105,81,105,54,102,86,87,104,84,85,54,74,81,106,74,54,107,74,106,106,61,107,62,107,61,108,74,107,109,74,108,108,63,109,64,109,63,80,74,109,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,73,72,82,150,82,72,151,150,72,150,152,82,153,154,59,57,59,154,32,30,155,156,155,30,157,156,30,45,157,30,37,53,38,50,38,53,90,99,89,100,89,99,35,55,36,52,36,55,79,66,78,67,78,66,75,70,74,71,74,70,43,47,31,44,31,47,54,60,106,61,106,60,41,49,42,46,42,49,107,62,108,63,108,62,88,101,87,102,87,101,39,51,40,48,40,51,77,68,76,69,76,68,109,64,80,65,80,64,84,105,83,81,83,105,94,95,93,96,93,95,86,103,85,104,85,103,92,97,91,98,91,97,33,58,34,56,34,58 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *204 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_intersectionPath, Model::RootNode + C: "OO",5170525516980481997,0 + + ;Geometry::, Model::Mesh road_intersectionPath + C: "OO",5227940172386308902,5170525516980481997 + + ;Material::asphalt, Model::Mesh road_intersectionPath + C: "OO",9934,5170525516980481997 + + ;Material::pavement, Model::Mesh road_intersectionPath + C: "OO",17046,5170525516980481997 + + ;Material::asphaltEdge, Model::Mesh road_intersectionPath + C: "OO",17042,5170525516980481997 + + ;Material::line, Model::Mesh road_intersectionPath + C: "OO",9174,5170525516980481997 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionPath.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionPath.fbx.import new file mode 100644 index 0000000..ef2a117 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionPath.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dhm4sfwqh3dmq" +path="res://.godot/imported/road_intersectionPath.fbx-1d0b3d0f3f065b41ab3cb8aa6ae6142c.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_intersectionPath.fbx" +dest_files=["res://.godot/imported/road_intersectionPath.fbx-1d0b3d0f3f065b41ab3cb8aa6ae6142c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundabout.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundabout.fbx new file mode 100644 index 0000000..6ee7b24 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundabout.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 21 + Millisecond: 138 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_roundabout.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_roundabout.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5412251054864682022, "Model::road_roundabout", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5061003295387108769, "Geometry::", "Mesh" { + Vertices: *4722 { + a: 4,0.09999999,10.76069,4,0.2,10.76069,4,0.09999999,15,4,0.2,15,15,0.2,4,15,0.2,5,10.76069,0.2,4,11.44175,0.2,5,10.82532,0.2,6.25,9.916917,0.2,7.609518,10.62461,0.2,4.400859,10.32915,0.2,5,9.959292,0.2,5.75,9.123563,0.2,7.000756,8.838834,0.2,8.838834,8.131728,0.2,8.131728,7.609518,0.2,9.916917,7.000756,0.2,9.123563,6.25,0.2,10.82532,5.75,0.2,9.959292,5,0.2,11.44175,5,0.2,10.32915,4,0.2,15,5,0.2,15,4.400859,0.2,10.62461,4,0.2,10.76069,-0.6470476,1.127987E-16,-2.414814,-0.9567086,1.127987E-16,-2.309699,-0.6470476,0.2,-2.414814,-0.9567086,0.2,-2.309699,1.25,1.127987E-16,2.165064,1.521904,1.127987E-16,1.983383,1.25,0.2,2.165064,1.521904,0.2,1.983383,-2.776737,0.09999999,-2.130665,-2.776737,0.2,-2.130665,-3.031089,0.09999999,-1.75,-3.031089,0.2,-1.75,-1.339392,0.09999999,3.233578,-1.75,0.09999999,3.031089,-1.339392,0.2,3.233578,-1.75,0.2,3.031089,3.470057,0.2,-0.4568416,3.470057,0.09999999,-0.4568416,3.5,0.2,-1.291861E-11,3.5,0.09999999,-1.291861E-11,1.339392,0.09999999,-3.233578,1.75,0.09999999,-3.031089,1.339392,0.2,-3.233578,1.75,0.2,-3.031089,2.130665,0.09999999,2.776737,1.75,0.09999999,3.031089,2.130665,0.2,2.776737,1.75,0.2,3.031089,1.25,1.127987E-16,-2.165064,0.9567086,1.127987E-16,-2.309699,1.25,0.2,-2.165064,0.9567086,0.2,-2.309699,1.767767,1.127987E-16,-1.767767,1.521904,1.127987E-16,-1.983383,1.767767,0.2,-1.767767,1.521904,0.2,-1.983383,-2.309699,0.2,-0.9567086,-2.309699,1.127987E-16,-0.9567086,-2.414814,0.2,-0.6470476,-2.414814,1.127987E-16,-0.6470476,-2.130665,0.09999999,-2.776737,-1.75,0.09999999,-3.031089,-2.130665,0.2,-2.776737,-1.75,0.2,-3.031089,-3.233578,0.09999999,1.339392,-3.233578,0.2,1.339392,-3.031089,0.09999999,1.75,-3.031089,0.2,1.75,-1.25,1.127987E-16,2.165064,-0.9567086,1.127987E-16,2.309699,-1.25,0.2,2.165064,-0.9567086,0.2,2.309699,2.474874,0.09999999,2.474874,2.130665,0.09999999,2.776737,2.474874,0.2,2.474874,2.130665,0.2,2.776737,3.470057,0.2,0.4568416,3.470057,0.09999999,0.4568416,3.38074,0.2,0.9058666,3.38074,0.09999999,0.9058666,-2.776737,0.09999999,2.130665,-2.776737,0.2,2.130665,-2.474874,0.09999999,2.474874,-2.474874,0.2,2.474874,-0.4568416,0.09999999,-3.470057,-4.609405E-11,0.09999999,-3.5,-0.4568416,0.2,-3.470057,-4.609405E-11,0.2,-3.5,0.9058666,0.09999999,3.38074,0.4568416,0.09999999,3.470057,0.9058666,0.2,3.38074,0.4568416,0.2,3.470057,2.776737,0.2,2.130665,2.776737,0.09999999,2.130665,2.474874,0.2,2.474874,2.474874,0.09999999,2.474874,-1.75,0.09999999,-3.031089,-1.339392,0.09999999,-3.233578,-1.75,0.2,-3.031089,-1.339392,0.2,-3.233578,-0.6470476,1.127987E-16,2.414814,-0.3263155,1.127987E-16,2.478612,-0.6470476,0.2,2.414814,-0.3263155,0.2,2.478612,-0.9567086,1.127987E-16,-2.309699,-1.25,1.127987E-16,-2.165064,-0.9567086,0.2,-2.309699,-1.25,0.2,-2.165064,-3.233578,0.09999999,-1.339392,-3.233578,0.2,-1.339392,-3.38074,0.09999999,-0.9058666,-3.38074,0.2,-0.9058666,-3.031089,0.09999999,-1.75,-3.031089,0.2,-1.75,-3.233578,0.09999999,-1.339392,-3.233578,0.2,-1.339392,-3.38074,0.09999999,-0.9058666,-3.38074,0.2,-0.9058666,-3.470057,0.09999999,-0.4568416,-3.470057,0.2,-0.4568416,-2.474874,0.09999999,-2.474874,-2.130665,0.09999999,-2.776737,-2.474874,0.2,-2.474874,-2.130665,0.2,-2.776737,-1.521904,1.127987E-16,-1.983383,-1.767767,1.127987E-16,-1.767767,-1.521904,0.2,-1.983383,-1.767767,0.2,-1.767767,-3.5,0.09999999,1.292582E-11,-3.5,0.2,1.292582E-11,-3.470057,0.09999999,0.4568416,-3.470057,0.2,0.4568416,-3.38074,0.09999999,0.9058666,-3.38074,0.2,0.9058666,-3.233578,0.09999999,1.339392,-3.233578,0.2,1.339392,2.478612,1.127987E-16,0.3263155,2.478612,0.2,0.3263155,2.414814,1.127987E-16,0.6470476,2.414814,0.2,0.6470476,-2.130665,0.09999999,2.776737,-2.474874,0.09999999,2.474874,-2.130665,0.2,2.776737,-2.474874,0.2,2.474874,0.4568416,0.09999999,3.470057,1.287168E-11,0.09999999,3.5,0.4568416,0.2,3.470057,1.287168E-11,0.2,3.5,2.478612,1.127987E-16,-0.3263155,2.478612,0.2,-0.3263155,2.5,1.127987E-16,-9.222418E-12,2.5,0.2,-9.222418E-12,2.5,1.127987E-16,-9.222418E-12,2.5,0.2,-9.222418E-12,2.478612,1.127987E-16,0.3263155,2.478612,0.2,0.3263155,-0.3263155,1.127987E-16,2.478612,9.175495E-12,1.127987E-16,2.5,-0.3263155,0.2,2.478612,9.175495E-12,0.2,2.5,-3.470057,0.09999999,-0.4568416,-3.470057,0.2,-0.4568416,-3.5,0.09999999,1.292582E-11,-3.5,0.2,1.292582E-11,-1.339392,0.09999999,-3.233578,-0.9058666,0.09999999,-3.38074,-1.339392,0.2,-3.233578,-0.9058666,0.2,-3.38074,-3.470057,0.09999999,0.4568416,-3.470057,0.2,0.4568416,-3.38074,0.09999999,0.9058666,-3.38074,0.2,0.9058666,-0.9058666,0.09999999,3.38074,-1.339392,0.09999999,3.233578,-0.9058666,0.2,3.38074,-1.339392,0.2,3.233578,-2.474874,0.09999999,-2.474874,-2.474874,0.2,-2.474874,-2.776737,0.09999999,-2.130665,-2.776737,0.2,-2.130665,3.233578,0.2,1.339392,3.233578,0.09999999,1.339392,3.031089,0.2,1.75,3.031089,0.09999999,1.75,0.6470476,1.127987E-16,-2.414814,0.3263155,1.127987E-16,-2.478612,0.6470476,0.2,-2.414814,0.3263155,0.2,-2.478612,-3.031089,0.09999999,1.75,-3.031089,0.2,1.75,-2.776737,0.09999999,2.130665,-2.776737,0.2,2.130665,1.339392,0.09999999,3.233578,0.9058666,0.09999999,3.38074,1.339392,0.2,3.233578,0.9058666,0.2,3.38074,1.287168E-11,0.09999999,3.5,-0.4568416,0.09999999,3.470057,1.287168E-11,0.2,3.5,-0.4568416,0.2,3.470057,-2.414814,0.2,-0.6470476,-2.414814,1.127987E-16,-0.6470476,-2.478612,0.2,-0.3263155,-2.478612,1.127987E-16,-0.3263155,1.521904,1.127987E-16,1.983383,1.767767,1.127987E-16,1.767767,1.521904,0.2,1.983383,1.767767,0.2,1.767767,1.983383,1.127987E-16,-1.521904,1.983383,0.2,-1.521904,2.165064,1.127987E-16,-1.25,2.165064,0.2,-1.25,-0.9058666,0.09999999,-3.38074,-0.4568416,0.09999999,-3.470057,-0.9058666,0.2,-3.38074,-0.4568416,0.2,-3.470057,2.165064,1.127987E-16,1.25,2.165064,0.2,1.25,1.983383,1.127987E-16,1.521904,1.983383,0.2,1.521904,-0.4568416,0.09999999,3.470057,-0.9058666,0.09999999,3.38074,-0.4568416,0.2,3.470057,-0.9058666,0.2,3.38074,1.75,0.09999999,3.031089,1.339392,0.09999999,3.233578,1.75,0.2,3.031089,1.339392,0.2,3.233578,3.031089,0.2,1.75,3.031089,0.09999999,1.75,2.776737,0.2,2.130665,2.776737,0.09999999,2.130665,3.38074,0.2,0.9058666,3.38074,0.09999999,0.9058666,3.233578,0.2,1.339392,3.233578,0.09999999,1.339392,-1.75,0.09999999,3.031089,-2.130665,0.09999999,2.776737,-1.75,0.2,3.031089,-2.130665,0.2,2.776737,3.5,0.2,-1.291861E-11,3.5,0.09999999,-1.291861E-11,3.470057,0.2,0.4568416,3.470057,0.09999999,0.4568416,5,0.09999999,-10.32915,4.400859,0.09999999,-10.62461,5.75,0.09999999,-9.959292,5.75,0.2,-9.959292,4.400859,0.2,-10.62461,5,0.2,-10.32915,9.959292,0.09999999,-5.75,9.959292,0.2,-5.75,10.32915,0.09999999,-5,10.32915,0.2,-5,10.62461,0.09999999,-4.400859,10.62461,0.2,-4.400859,8.131728,0.09999999,-8.131728,8.131728,0.2,-8.131728,9.123563,0.09999999,-7.000756,9.123563,0.2,-7.000756,2.474874,0.2,-2.474874,2.474874,0.09999999,-2.474874,2.776737,0.2,-2.130665,2.776737,0.09999999,-2.130665,-4.609405E-11,0.09999999,-3.5,0.4568416,0.09999999,-3.470057,-4.609405E-11,0.2,-3.5,0.4568416,0.2,-3.470057,2.776737,0.2,-2.130665,2.776737,0.09999999,-2.130665,3.031089,0.2,-1.75,3.031089,0.09999999,-1.75,2.130665,0.09999999,-2.776737,2.474874,0.09999999,-2.474874,2.130665,0.2,-2.776737,2.474874,0.2,-2.474874,3.38074,0.2,-0.9058666,3.38074,0.09999999,-0.9058666,3.470057,0.2,-0.4568416,3.470057,0.09999999,-0.4568416,8.131728,0.09999999,-8.131728,7.000756,0.09999999,-9.123563,8.131728,0.2,-8.131728,7.000756,0.2,-9.123563,0.4568416,0.09999999,-3.470057,0.9058666,0.09999999,-3.38074,0.4568416,0.2,-3.470057,0.9058666,0.2,-3.38074,0.9058666,0.09999999,-3.38074,1.339392,0.09999999,-3.233578,0.9058666,0.2,-3.38074,1.339392,0.2,-3.233578,3.031089,0.2,-1.75,3.031089,0.09999999,-1.75,3.233578,0.2,-1.339392,3.233578,0.09999999,-1.339392,3.233578,0.2,-1.339392,3.233578,0.09999999,-1.339392,3.38074,0.2,-0.9058666,3.38074,0.09999999,-0.9058666,10.76069,0.09999999,4,10.76069,0.2,4,10.62461,0.09999999,4.400859,10.62461,0.2,4.400859,9.123563,0.09999999,-7.000756,9.123563,0.2,-7.000756,9.959292,0.09999999,-5.75,9.959292,0.2,-5.75,7.000756,0.09999999,-9.123563,5.75,0.09999999,-9.959292,7.000756,0.2,-9.123563,5.75,0.2,-9.959292,1.75,0.09999999,-3.031089,2.130665,0.09999999,-2.776737,1.75,0.2,-3.031089,2.130665,0.2,-2.776737,10.62461,0.09999999,4.400859,10.62461,0.2,4.400859,10.32915,0.09999999,5,10.32915,0.2,5,9.959292,0.09999999,5.75,9.959292,0.2,5.75,-4,0.2,-10.76069,-4.400859,0.2,-10.62461,-4,0.2,-15,-5,0.2,-15,-5,0.2,-11.44175,-5,0.2,-10.32915,-5.75,0.2,-9.959292,-6.25,0.2,-10.82532,-7.000756,0.2,-9.123563,-7.609518,0.2,-9.916917,-8.131728,0.2,-8.131728,-8.838834,0.2,-8.838834,-9.123563,0.2,-7.000756,-9.916917,0.2,-7.609518,-9.959292,0.2,-5.75,-10.82532,0.2,-6.25,-10.32915,0.2,-5,-10.62461,0.2,-4.400859,-10.76069,0.2,-4,-11.44175,0.2,-5,-15,0.2,-4,-15,0.2,-5,4,0.09999999,-15,4,0.2,-15,4,0.09999999,-10.76069,4,0.2,-10.76069,-4,0.2,15,-5,0.2,15,-4,0.2,10.76069,-4.400859,0.2,10.62461,-5,0.2,10.32915,-5,0.2,11.44175,-6.25,0.2,10.82532,-5.75,0.2,9.959292,-7.000756,0.2,9.123563,-7.609518,0.2,9.916917,-8.131728,0.2,8.131728,-8.838834,0.2,8.838834,-9.123563,0.2,7.000756,-9.916917,0.2,7.609518,-9.959292,0.2,5.75,-10.82532,0.2,6.25,-10.32915,0.2,5,-10.62461,0.2,4.400859,-10.76069,0.2,4,-11.44175,0.2,5,-15,0.2,4,-15,0.2,5,-4,0.2,-15,-4,0.09999999,-15,-4,0.2,-10.76069,-4,0.09999999,-10.76069,10.76069,0.09999999,-4,10.76069,0.2,-4,15,0.09999999,-4,15,0.2,-4,15,0.2,-5,15,0.2,-4,11.44175,0.2,-5,10.76069,0.2,-4,10.82532,0.2,-6.25,9.916917,0.2,-7.609518,10.62461,0.2,-4.400859,10.32915,0.2,-5,9.959292,0.2,-5.75,9.123563,0.2,-7.000756,8.838834,0.2,-8.838834,8.131728,0.2,-8.131728,7.609518,0.2,-9.916917,7.000756,0.2,-9.123563,6.25,0.2,-10.82532,5.75,0.2,-9.959292,5,0.2,-11.44175,5,0.2,-10.32915,4.400859,0.2,-10.62461,5,0.2,-15,4,0.2,-15,4,0.2,-10.76069,5,2.255973E-16,15,5,1.69198E-16,11.44175,-5,2.255973E-16,15,2.165064,1.127987E-16,1.25,2.309699,1.127987E-16,0.9567086,2.414814,1.127987E-16,0.6470476,5,5.639933E-17,-11.44175,2.478612,1.127987E-16,0.3263155,5,0,-15,2.5,1.127987E-16,-9.222418E-12,1.983383,1.127987E-16,1.521904,1.767767,1.127987E-16,1.767767,1.521904,1.127987E-16,1.983383,1.25,1.127987E-16,2.165064,0.9567086,1.127987E-16,2.309699,0.6470476,1.127987E-16,2.414814,0.3263155,1.127987E-16,2.478612,9.175495E-12,1.127987E-16,2.5,-0.3263155,1.127987E-16,2.478612,-0.6470476,1.127987E-16,2.414814,-0.9567086,1.127987E-16,2.309699,-1.25,1.127987E-16,2.165064,-1.521904,1.127987E-16,1.983383,-1.767767,1.127987E-16,1.767767,-1.983383,1.127987E-16,1.521904,-2.165064,1.127987E-16,1.25,-2.309699,1.127987E-16,0.9567086,-2.414814,1.127987E-16,0.6470476,-2.478612,1.127987E-16,0.3263155,-2.5,1.127987E-16,9.28739E-12,-5,5.639933E-17,-11.44175,-5,0,-15,-2.478612,1.127987E-16,-0.3263155,-2.414814,1.127987E-16,-0.6470476,-2.309699,1.127987E-16,-0.9567086,-2.165064,1.127987E-16,-1.25,-1.983383,1.127987E-16,-1.521904,-1.767767,1.127987E-16,-1.767767,-1.521904,1.127987E-16,-1.983383,-1.25,1.127987E-16,-2.165064,-0.9567086,1.127987E-16,-2.309699,-0.6470476,1.127987E-16,-2.414814,-0.3263155,1.127987E-16,-2.478612,-4.609405E-11,1.127987E-16,-2.5,0.3263155,1.127987E-16,-2.478612,0.6470476,1.127987E-16,-2.414814,0.9567086,1.127987E-16,-2.309699,1.25,1.127987E-16,-2.165064,1.385952,1.127987E-16,-2.074224,1.521904,1.127987E-16,-1.983383,1.767767,1.127987E-16,-1.767767,1.983383,1.127987E-16,-1.521904,2.165064,1.127987E-16,-1.25,2.309699,1.127987E-16,-0.9567086,2.414814,1.127987E-16,-0.6470476,2.478612,1.127987E-16,-0.3263155,-5,1.69198E-16,11.44175,-6.25,1.127987E-16,10.82532,-6.25,1.127987E-16,-10.82532,-7.609518,1.127987E-16,9.916917,-7.609518,1.127987E-16,-9.916917,-8.838834,1.127987E-16,8.838834,-8.838834,1.127987E-16,-8.838834,-9.916917,1.127987E-16,7.609518,-9.916917,1.127987E-16,-7.609518,-10.82532,1.127987E-16,6.25,-10.82532,1.127987E-16,-6.25,-11.44175,1.69198E-16,5,-11.44175,1.69198E-16,-5,-15,2.255973E-16,5,-15,2.255973E-16,-5,15,2.255973E-16,5,15,2.255973E-16,-5,11.44175,1.69198E-16,5,11.44175,1.69198E-16,-5,10.82532,1.127987E-16,-6.25,10.82532,1.127987E-16,6.25,9.916917,1.127987E-16,7.609518,9.916917,1.127987E-16,-7.609518,8.838834,1.127987E-16,8.838834,8.838834,1.127987E-16,-8.838834,7.609518,1.127987E-16,9.916917,7.609518,1.127987E-16,-9.916917,6.25,1.127987E-16,10.82532,6.25,1.127987E-16,-10.82532,11.44175,1.69198E-16,-5,15,2.255973E-16,-5,11.44175,0.2,-5,15,0.2,-5,15,0.09999999,4,15,0.2,4,10.76069,0.09999999,4,10.76069,0.2,4,11.44175,0.2,5,11.44175,1.69198E-16,5,10.82532,0.2,6.25,10.82532,1.127987E-16,6.25,-11.44175,1.69198E-16,-5,-11.44175,0.2,-5,-15,2.255973E-16,-5,-15,0.2,-5,-7.609518,1.127987E-16,-9.916917,-6.25,1.127987E-16,-10.82532,-7.609518,0.2,-9.916917,-6.25,0.2,-10.82532,-8.838834,1.127987E-16,-8.838834,-7.609518,1.127987E-16,-9.916917,-8.838834,0.2,-8.838834,-7.609518,0.2,-9.916917,7.609518,1.127987E-16,-9.916917,8.838834,1.127987E-16,-8.838834,7.609518,0.2,-9.916917,8.838834,0.2,-8.838834,6.25,1.127987E-16,-10.82532,7.609518,1.127987E-16,-9.916917,6.25,0.2,-10.82532,7.609518,0.2,-9.916917,-11.44175,1.69198E-16,5,-15,2.255973E-16,5,-11.44175,0.2,5,-15,0.2,5,-10.76069,0.09999999,-4,-15,0.09999999,-4,-10.76069,0.2,-4,-15,0.2,-4,-5,5.639933E-17,-11.44175,-5,0.2,-11.44175,-6.25,1.127987E-16,-10.82532,-6.25,0.2,-10.82532,5,5.639933E-17,-11.44175,6.25,1.127987E-16,-10.82532,5,0.2,-11.44175,6.25,0.2,-10.82532,9.916917,0.2,-7.609518,9.916917,1.127987E-16,-7.609518,10.82532,0.2,-6.25,10.82532,1.127987E-16,-6.25,9.916917,0.2,7.609518,9.916917,1.127987E-16,7.609518,8.838834,0.2,8.838834,8.838834,1.127987E-16,8.838834,8.838834,0.2,-8.838834,8.838834,1.127987E-16,-8.838834,9.916917,0.2,-7.609518,9.916917,1.127987E-16,-7.609518,10.82532,0.2,6.25,10.82532,1.127987E-16,6.25,9.916917,0.2,7.609518,9.916917,1.127987E-16,7.609518,8.838834,1.127987E-16,8.838834,7.609518,1.127987E-16,9.916917,8.838834,0.2,8.838834,7.609518,0.2,9.916917,-4,0.09999999,-10.76069,-4.400859,0.09999999,-10.62461,-4,0.2,-10.76069,-4.400859,0.2,-10.62461,5,0.09999999,10.32915,5.75,0.09999999,9.959292,4.400859,0.09999999,10.62461,4.400859,0.2,10.62461,5.75,0.2,9.959292,5,0.2,10.32915,7.000756,0.09999999,9.123563,8.131728,0.09999999,8.131728,7.000756,0.2,9.123563,8.131728,0.2,8.131728,-5.75,0.09999999,9.959292,-5,0.09999999,10.32915,-5.75,0.2,9.959292,-4.400859,0.09999999,10.62461,-4.400859,0.2,10.62461,-5,0.2,10.32915,-7.609518,1.127987E-16,9.916917,-8.838834,1.127987E-16,8.838834,-7.609518,0.2,9.916917,-8.838834,0.2,8.838834,-10.76069,0.2,4,-10.76069,0.09999999,4,-10.62461,0.2,4.400859,-10.62461,0.09999999,4.400859,-5.75,0.09999999,-9.959292,-7.000756,0.09999999,-9.123563,-5.75,0.2,-9.959292,-7.000756,0.2,-9.123563,9.123563,0.09999999,7.000756,9.123563,0.2,7.000756,8.131728,0.09999999,8.131728,8.131728,0.2,8.131728,-9.959292,0.2,-5.75,-9.959292,0.09999999,-5.75,-10.32915,0.2,-5,-10.32915,0.09999999,-5,-10.62461,0.2,-4.400859,-10.62461,0.09999999,-4.400859,-9.916917,1.127987E-16,7.609518,-9.916917,0.2,7.609518,-8.838834,1.127987E-16,8.838834,-8.838834,0.2,8.838834,-9.123563,0.2,-7.000756,-9.123563,0.09999999,-7.000756,-9.959292,0.2,-5.75,-9.959292,0.09999999,-5.75,-8.131728,0.09999999,8.131728,-7.000756,0.09999999,9.123563,-8.131728,0.2,8.131728,-7.000756,0.2,9.123563,-7.000756,0.09999999,-9.123563,-8.131728,0.09999999,-8.131728,-7.000756,0.2,-9.123563,-8.131728,0.2,-8.131728,-10.62461,0.2,-4.400859,-10.62461,0.09999999,-4.400859,-10.76069,0.2,-4,-10.76069,0.09999999,-4,5.75,0.09999999,9.959292,7.000756,0.09999999,9.123563,5.75,0.2,9.959292,7.000756,0.2,9.123563,4.400859,0.09999999,10.62461,4.400859,0.2,10.62461,4,0.09999999,10.76069,4,0.2,10.76069,9.959292,0.09999999,5.75,9.959292,0.2,5.75,9.123563,0.09999999,7.000756,9.123563,0.2,7.000756,7.609518,1.127987E-16,9.916917,6.25,1.127987E-16,10.82532,7.609518,0.2,9.916917,6.25,0.2,10.82532,-5,0.09999999,-10.32915,-5.75,0.09999999,-9.959292,-4.400859,0.09999999,-10.62461,-4.400859,0.2,-10.62461,-5.75,0.2,-9.959292,-5,0.2,-10.32915,-6.25,1.127987E-16,10.82532,-7.609518,1.127987E-16,9.916917,-6.25,0.2,10.82532,-7.609518,0.2,9.916917,-8.131728,0.2,-8.131728,-8.131728,0.09999999,-8.131728,-9.123563,0.2,-7.000756,-9.123563,0.09999999,-7.000756,-7.000756,0.09999999,9.123563,-5.75,0.09999999,9.959292,-7.000756,0.2,9.123563,-5.75,0.2,9.959292,-4,0.09999999,10.76069,-4,0.2,10.76069,-4.400859,0.09999999,10.62461,-4.400859,0.2,10.62461,-9.123563,0.2,7.000756,-9.123563,0.09999999,7.000756,-8.131728,0.2,8.131728,-8.131728,0.09999999,8.131728,-10.82532,1.127987E-16,6.25,-10.82532,0.2,6.25,-9.916917,1.127987E-16,7.609518,-9.916917,0.2,7.609518,-9.959292,0.2,5.75,-9.959292,0.09999999,5.75,-9.123563,0.2,7.000756,-9.123563,0.09999999,7.000756,-1.983383,0.2,1.521904,-1.983383,1.127987E-16,1.521904,-1.767767,0.2,1.767767,-1.767767,1.127987E-16,1.767767,1.767767,1.127987E-16,-1.767767,1.767767,0.2,-1.767767,1.983383,1.127987E-16,-1.521904,1.983383,0.2,-1.521904,2.309699,1.127987E-16,-0.9567086,2.309699,0.2,-0.9567086,2.414814,1.127987E-16,-0.6470476,2.414814,0.2,-0.6470476,0.9567086,1.127987E-16,2.309699,1.25,1.127987E-16,2.165064,0.9567086,0.2,2.309699,1.25,0.2,2.165064,-8.838834,1.127987E-16,-8.838834,-8.838834,0.2,-8.838834,-9.916917,1.127987E-16,-7.609518,-9.916917,0.2,-7.609518,-2.414814,0.2,0.6470476,-2.414814,1.127987E-16,0.6470476,-2.309699,0.2,0.9567086,-2.309699,1.127987E-16,0.9567086,-9.916917,1.127987E-16,-7.609518,-9.916917,0.2,-7.609518,-10.82532,1.127987E-16,-6.25,-10.82532,0.2,-6.25,-1.25,1.127987E-16,-2.165064,-1.521904,1.127987E-16,-1.983383,-1.25,0.2,-2.165064,-1.521904,0.2,-1.983383,-2.478612,0.2,-0.3263155,-2.478612,1.127987E-16,-0.3263155,-2.5,0.2,9.28739E-12,-2.5,1.127987E-16,9.28739E-12,2.165064,1.127987E-16,-1.25,2.165064,0.2,-1.25,2.309699,1.127987E-16,-0.9567086,2.309699,0.2,-0.9567086,-2.165064,0.2,-1.25,-2.165064,1.127987E-16,-1.25,-2.309699,0.2,-0.9567086,-2.309699,1.127987E-16,-0.9567086,-2.5,0.2,9.28739E-12,-2.5,1.127987E-16,9.28739E-12,-2.478612,0.2,0.3263155,-2.478612,1.127987E-16,0.3263155,0.9567086,1.127987E-16,-2.309699,0.6470476,1.127987E-16,-2.414814,0.9567086,0.2,-2.309699,0.6470476,0.2,-2.414814,0.3263155,1.127987E-16,-2.478612,-4.609405E-11,1.127987E-16,-2.5,0.3263155,0.2,-2.478612,-4.609405E-11,0.2,-2.5,1.983383,1.127987E-16,1.521904,1.983383,0.2,1.521904,1.767767,1.127987E-16,1.767767,1.767767,0.2,1.767767,-0.3263155,1.127987E-16,-2.478612,-0.6470476,1.127987E-16,-2.414814,-0.3263155,0.2,-2.478612,-0.6470476,0.2,-2.414814,2.309699,1.127987E-16,0.9567086,2.309699,0.2,0.9567086,2.165064,1.127987E-16,1.25,2.165064,0.2,1.25,-1.983383,0.2,-1.521904,-1.983383,1.127987E-16,-1.521904,-2.165064,0.2,-1.25,-2.165064,1.127987E-16,-1.25,9.175495E-12,1.127987E-16,2.5,0.3263155,1.127987E-16,2.478612,9.175495E-12,0.2,2.5,0.3263155,0.2,2.478612,-0.9567086,1.127987E-16,2.309699,-0.6470476,1.127987E-16,2.414814,-0.9567086,0.2,2.309699,-0.6470476,0.2,2.414814,1.521904,1.127987E-16,-1.983383,1.385952,1.127987E-16,-2.074224,1.521904,0.2,-1.983383,1.25,1.127987E-16,-2.165064,1.25,0.2,-2.165064,2.414814,1.127987E-16,0.6470476,2.414814,0.2,0.6470476,2.309699,1.127987E-16,0.9567086,2.309699,0.2,0.9567086,-1.767767,1.127987E-16,1.767767,-1.521904,1.127987E-16,1.983383,-1.767767,0.2,1.767767,-1.521904,0.2,1.983383,0.6470476,1.127987E-16,2.414814,0.9567086,1.127987E-16,2.309699,0.6470476,0.2,2.414814,0.9567086,0.2,2.309699,-4.609405E-11,1.127987E-16,-2.5,-0.3263155,1.127987E-16,-2.478612,-4.609405E-11,0.2,-2.5,-0.3263155,0.2,-2.478612,-1.767767,0.2,-1.767767,-1.767767,1.127987E-16,-1.767767,-1.983383,0.2,-1.521904,-1.983383,1.127987E-16,-1.521904,-2.309699,0.2,0.9567086,-2.309699,1.127987E-16,0.9567086,-2.165064,0.2,1.25,-2.165064,1.127987E-16,1.25,-2.478612,0.2,0.3263155,-2.478612,1.127987E-16,0.3263155,-2.414814,0.2,0.6470476,-2.414814,1.127987E-16,0.6470476,0.3263155,1.127987E-16,2.478612,0.6470476,1.127987E-16,2.414814,0.3263155,0.2,2.478612,0.6470476,0.2,2.414814,2.414814,1.127987E-16,-0.6470476,2.414814,0.2,-0.6470476,2.478612,1.127987E-16,-0.3263155,2.478612,0.2,-0.3263155,-2.165064,0.2,1.25,-2.165064,1.127987E-16,1.25,-1.983383,0.2,1.521904,-1.983383,1.127987E-16,1.521904,-1.521904,1.127987E-16,1.983383,-1.25,1.127987E-16,2.165064,-1.521904,0.2,1.983383,-1.25,0.2,2.165064,10.62461,0.09999999,-4.400859,10.62461,0.2,-4.400859,10.76069,0.09999999,-4,10.76069,0.2,-4,-5,0,-15,-5,0.2,-15,-5,5.639933E-17,-11.44175,-5,0.2,-11.44175,11.44175,1.69198E-16,5,11.44175,0.2,5,15,2.255973E-16,5,15,0.2,5,-10.82532,1.127987E-16,-6.25,-10.82532,0.2,-6.25,-11.44175,1.69198E-16,-5,-11.44175,0.2,-5,-4,0.2,10.76069,-4,0.09999999,10.76069,-4,0.2,15,-4,0.09999999,15,4,0.09999999,-10.76069,4,0.2,-10.76069,4.400859,0.09999999,-10.62461,4.400859,0.2,-10.62461,-10.62461,0.2,4.400859,-10.62461,0.09999999,4.400859,-10.32915,0.2,5,-10.32915,0.09999999,5,-9.959292,0.2,5.75,-9.959292,0.09999999,5.75,5,0.2,-15,5,0,-15,5,0.2,-11.44175,5,5.639933E-17,-11.44175,-11.44175,1.69198E-16,5,-11.44175,0.2,5,-10.82532,1.127987E-16,6.25,-10.82532,0.2,6.25,-15,0.09999999,4,-10.76069,0.09999999,4,-15,0.2,4,-10.76069,0.2,4,6.25,1.127987E-16,10.82532,5,1.69198E-16,11.44175,6.25,0.2,10.82532,5,0.2,11.44175,-5,1.69198E-16,11.44175,-5,0.2,11.44175,-5,2.255973E-16,15,-5,0.2,15,-6.25,1.127987E-16,10.82532,-6.25,0.2,10.82532,-5,1.69198E-16,11.44175,-5,0.2,11.44175,10.82532,0.2,-6.25,10.82532,1.127987E-16,-6.25,11.44175,0.2,-5,11.44175,1.69198E-16,-5,5,0.2,11.44175,5,1.69198E-16,11.44175,5,0.2,15,5,2.255973E-16,15,2.5,0.2,-9.222418E-12,2.478612,0.2,-0.3263155,2.598076,0.2,-1.5,2.38006,0.2,-1.826284,2.414814,0.2,-0.6470476,2.309699,0.2,-0.9567086,2.12132,0.2,-2.12132,2.165064,0.2,-1.25,1.983383,0.2,-1.521904,1.826284,0.2,-2.38006,1.767767,0.2,-1.767767,1.5,0.2,-2.598076,1.521904,0.2,-1.983383,1.25,0.2,-2.165064,1.14805,0.2,-2.771638,0.9567086,0.2,-2.309699,0.7764571,0.2,-2.897778,0.6470476,0.2,-2.414814,0.3915786,0.2,-2.974335,0.3263155,0.2,-2.478612,-4.198637E-11,0.2,-3,-4.609405E-11,0.2,-2.5,-0.3915786,0.2,-2.974335,-0.3263155,0.2,-2.478612,-0.6470476,0.2,-2.414814,-0.7764571,0.2,-2.897778,-0.9567086,0.2,-2.309699,-1.14805,0.2,-2.771638,-1.25,0.2,-2.165064,-1.5,0.2,-2.598076,-1.521904,0.2,-1.983383,-1.826284,0.2,-2.38006,-1.767767,0.2,-1.767767,-1.983383,0.2,-1.521904,-2.12132,0.2,-2.12132,-2.165064,0.2,-1.25,-2.38006,0.2,-1.826284,-2.309699,0.2,-0.9567086,-2.414814,0.2,-0.6470476,-2.598076,0.2,-1.5,-2.478612,0.2,-0.3263155,-2.5,0.2,9.28739E-12,-2.598076,0.2,1.5,-2.771638,0.2,1.14805,-2.771638,0.2,-1.14805,-2.897778,0.2,0.7764571,-2.897778,0.2,-0.7764571,-2.974335,0.2,0.3915786,-2.974335,0.2,-0.3915786,-3,0.2,1.105461E-11,-2.478612,0.2,0.3263155,-2.414814,0.2,0.6470476,-2.38006,0.2,1.826284,-2.309699,0.2,0.9567086,-2.165064,0.2,1.25,-2.12132,0.2,2.12132,-1.983383,0.2,1.521904,-1.826284,0.2,2.38006,-1.767767,0.2,1.767767,-1.521904,0.2,1.983383,-1.5,0.2,2.598076,-1.25,0.2,2.165064,-1.14805,0.2,2.771638,-0.9567086,0.2,2.309699,-0.7764571,0.2,2.897778,-0.6470476,0.2,2.414814,-0.3915786,0.2,2.974335,-0.3263155,0.2,2.478612,9.175495E-12,0.2,2.5,1.102359E-11,0.2,3,0.3263155,0.2,2.478612,0.3915786,0.2,2.974335,0.6470476,0.2,2.414814,0.7764571,0.2,2.897778,0.9567086,0.2,2.309699,1.14805,0.2,2.771638,1.25,0.2,2.165064,1.5,0.2,2.598076,1.521904,0.2,1.983383,1.767767,0.2,1.767767,1.826284,0.2,2.38006,1.983383,0.2,1.521904,2.12132,0.2,2.12132,2.165064,0.2,1.25,2.309699,0.2,0.9567086,2.38006,0.2,1.826284,2.414814,0.2,0.6470476,2.478612,0.2,0.3263155,2.598076,0.2,1.5,2.771638,0.2,-1.14805,2.771638,0.2,1.14805,2.897778,0.2,-0.7764571,2.897778,0.2,0.7764571,2.974335,0.2,-0.3915786,2.974335,0.2,0.3915786,3,0.2,-1.104937E-11,3.031089,0.2,-1.75,2.776737,0.2,-2.130665,2.474874,0.2,-2.474874,2.130665,0.2,-2.776737,1.75,0.2,-3.031089,1.339392,0.2,-3.233578,0.9058666,0.2,-3.38074,0.4568416,0.2,-3.470057,-4.609405E-11,0.2,-3.5,-0.4568416,0.2,-3.470057,-0.9058666,0.2,-3.38074,-1.339392,0.2,-3.233578,-1.75,0.2,-3.031089,-2.130665,0.2,-2.776737,-2.474874,0.2,-2.474874,-2.776737,0.2,-2.130665,-3.031089,0.2,-1.75,-3.031089,0.2,1.75,-3.233578,0.2,1.339392,-3.233578,0.2,-1.339392,-3.38074,0.2,0.9058666,-3.38074,0.2,-0.9058666,-3.470057,0.2,0.4568416,-3.470057,0.2,-0.4568416,-3.5,0.2,1.292582E-11,-2.776737,0.2,2.130665,-2.474874,0.2,2.474874,-2.130665,0.2,2.776737,-1.75,0.2,3.031089,-1.339392,0.2,3.233578,-0.9058666,0.2,3.38074,-0.4568416,0.2,3.470057,1.287168E-11,0.2,3.5,0.4568416,0.2,3.470057,0.9058666,0.2,3.38074,1.339392,0.2,3.233578,1.75,0.2,3.031089,2.130665,0.2,2.776737,2.474874,0.2,2.474874,2.776737,0.2,2.130665,3.031089,0.2,1.75,3.233578,0.2,-1.339392,3.233578,0.2,1.339392,3.38074,0.2,-0.9058666,3.38074,0.2,0.9058666,3.470057,0.2,-0.4568416,3.470057,0.2,0.4568416,3.5,0.2,-1.291861E-11,-0.09999999,0.09999999,15,3,0.09999999,15,-3,0.09999999,15,4,0.09999999,15,0.09999999,0.09999999,15,-5,2.255973E-16,15,5,2.255973E-16,15,5,0.2,15,4,0.2,15,-4,0.09999999,15,-5,0.2,15,-4,0.2,15,5,0,-15,-4,0.09999999,-15,-5,0,-15,-5,0.2,-15,-4,0.2,-15,-3,0.09999999,-15,4,0.09999999,-15,5,0.2,-15,3,0.09999999,-15,-0.09999999,0.09999999,-15,0.09999999,0.09999999,-15,4,0.2,-15,15,0.2,4,15,0.09999999,4,15,0.2,5,15,2.255973E-16,5,15,0.09999999,3,15,0.09999999,0.09999999,15,0.09999999,-0.09999999,15,0.09999999,-3,15,0.09999999,-4,15,2.255973E-16,-5,15,0.2,-4,15,0.2,-5,-15,0.2,-5,-15,0.09999999,-4,-15,2.255973E-16,-5,-15,2.255973E-16,5,-15,0.09999999,-3,-15,0.09999999,-0.09999999,-15,0.09999999,0.09999999,-15,0.09999999,3,-15,0.09999999,4,-15,0.2,4,-15,0.2,5,-15,0.2,-4,4.5,0.09999999,-1.661479E-11,4.461502,0.09999999,-0.5873679,4.504834,0.09999999,-5.870814,3.7,0.09999999,-6.408587,4.346666,0.09999999,-1.164686,4.157458,0.09999999,-1.722075,3.897114,0.09999999,-2.25,3.57009,0.09999999,-2.739427,2.831857,0.09999999,-6.836709,3.18198,0.09999999,-3.18198,2.739427,0.09999999,-3.57009,1.915261,0.09999999,-7.147851,2.25,0.09999999,-3.897114,1.722075,0.09999999,-4.157458,1.891252,0.09999999,-7.152627,0.9658938,0.09999999,-7.336692,1.164686,0.09999999,-4.346666,0.5873679,0.09999999,-4.461502,-4.609405E-11,0.09999999,-7.4,-4.609405E-11,0.09999999,-4.5,-0.9658938,0.09999999,-7.336692,-0.5873679,0.09999999,-4.461502,-1.164686,0.09999999,-4.346666,-1.891252,0.09999999,-7.152627,-1.722075,0.09999999,-4.157458,-2.25,0.09999999,-3.897114,-1.915261,0.09999999,-7.147851,-2.831857,0.09999999,-6.836709,-2.739427,0.09999999,-3.57009,-3.18198,0.09999999,-3.18198,-3.7,0.09999999,-6.408587,-3.57009,0.09999999,-2.739427,-3.897114,0.09999999,-2.25,-4.504834,0.09999999,-5.870814,-4.157458,0.09999999,-1.722075,-4.346666,0.09999999,-1.164686,-4.461502,0.09999999,-0.5873679,-4.5,0.09999999,1.662201E-11,-4.504834,0.09999999,5.870814,-5.23259,0.09999999,5.23259,-5.23259,0.09999999,-5.23259,-5.870814,0.09999999,4.504834,-5.870814,0.09999999,-4.504834,-6.408587,0.09999999,3.7,-6.408587,0.09999999,-3.7,-6.836709,0.09999999,2.831857,-6.836709,0.09999999,-2.831857,-7.147851,0.09999999,1.915261,-7.147851,0.09999999,-1.915261,-7.152627,0.09999999,1.891252,-7.152627,0.09999999,-1.891252,-7.336692,0.09999999,0.9658938,-7.336692,0.09999999,-0.9658938,-7.4,0.09999999,2.73063E-11,-3.897114,0.09999999,2.25,-3.7,0.09999999,6.408587,-3.57009,0.09999999,2.739427,-3.18198,0.09999999,3.18198,-2.831857,0.09999999,6.836709,-2.739427,0.09999999,3.57009,-2.25,0.09999999,3.897114,-1.915261,0.09999999,7.147851,-1.891252,0.09999999,7.152627,-1.722075,0.09999999,4.157458,-1.164686,0.09999999,4.346666,-0.9658938,0.09999999,7.336692,-0.5873679,0.09999999,4.461502,-0.09999999,0.09999999,7.393445,1.659674E-11,0.09999999,4.5,2.71944E-11,0.09999999,7.4,0.09999999,0.09999999,7.393445,0.5873679,0.09999999,4.461502,0.9658938,0.09999999,7.336692,1.164686,0.09999999,4.346666,1.722075,0.09999999,4.157458,1.891252,0.09999999,7.152627,1.915261,0.09999999,7.147851,2.25,0.09999999,3.897114,2.739427,0.09999999,3.57009,2.831857,0.09999999,6.836709,3.18198,0.09999999,3.18198,3.57009,0.09999999,2.739427,3.7,0.09999999,6.408587,3.897114,0.09999999,2.25,4.157458,0.09999999,1.722075,4.346666,0.09999999,1.164686,4.461502,0.09999999,0.5873679,4.504834,0.09999999,5.870814,5.23259,0.09999999,-5.23259,5.23259,0.09999999,5.23259,5.870814,0.09999999,-4.504834,5.870814,0.09999999,4.504834,6.408587,0.09999999,-3.7,6.408587,0.09999999,3.7,6.836709,0.09999999,-2.831857,6.836709,0.09999999,2.831857,7.147851,0.09999999,-1.915261,7.147851,0.09999999,1.915261,7.152627,0.09999999,-1.891252,7.152627,0.09999999,1.891252,7.336692,0.09999999,-0.9658938,7.336692,0.09999999,0.9658938,7.393445,0.09999999,0.09999999,7.393445,0.09999999,-0.09999999,7.4,0.09999999,-2.732796E-11,-4.157458,0.09999999,1.722075,-4.346666,0.09999999,1.164686,-4.461502,0.09999999,0.5873679,1.266951,0.09999999,-7.480289,0.991999,0.09999999,-7.534981,1.096211,0.09999999,-7.599814,0.8591021,0.09999999,-7.804361,0.09999999,0.09999999,-7.593445,0.6438394,0.09999999,-8.031786,0.4526188,0.09999999,-8.279767,0.2873915,0.09999999,-8.545774,0.1498436,0.09999999,-8.827094,0.04137855,0.09999999,-9.120854,-0.09999999,0.09999999,-7.593445,-4.527106E-11,0.09999999,-9.281137,-0.04137855,0.09999999,-9.120854,-0.1498436,0.09999999,-8.827094,-0.2873915,0.09999999,-8.545774,-0.4526188,0.09999999,-8.279767,-0.991999,0.09999999,-7.534981,-0.6438394,0.09999999,-8.031786,-0.8591021,0.09999999,-7.804361,-1.096211,0.09999999,-7.599814,-1.266951,0.09999999,-7.480289,-0.09999999,0.09999999,-10.04636,-0.1146343,0.09999999,-9.755386,-0.09999999,0.09999999,-15,-3,0.09999999,-15,-0.1583894,0.09999999,-9.467352,-0.2308237,0.09999999,-9.185161,-0.3312062,0.09999999,-8.911661,-0.4585238,0.09999999,-8.649613,-0.6114915,0.09999999,-8.401663,-0.7885654,0.09999999,-8.170311,-0.9879584,0.09999999,-7.957893,-1.207658,0.09999999,-7.766554,-1.445447,0.09999999,-7.598224,-1.698926,0.09999999,-7.454601,-1.948177,0.09999999,-7.344785,-1.967025,0.09999999,-7.341036,-2.908394,0.09999999,-7.021484,-3,0.09999999,-10.04636,-3.8,0.09999999,-6.581793,-3.13657,0.09999999,-10,-4.018176,0.09999999,-9.700735,-4.626587,0.09999999,-6.029485,-5.25,0.09999999,-9.093266,-5.374012,0.09999999,-5.374012,-6.391995,0.09999999,-8.330211,-6.029485,0.09999999,-4.626587,-6.581793,0.09999999,-3.8,-7.424622,0.09999999,-7.424622,-7.021484,0.09999999,-2.908394,-7.341036,0.09999999,-1.967025,-7.344785,0.09999999,-1.948177,-7.454601,0.09999999,-1.698926,-8.330211,0.09999999,-6.391995,-7.598224,0.09999999,-1.445447,-7.766554,0.09999999,-1.207658,-7.957893,0.09999999,-0.9879584,-8.170311,0.09999999,-0.7885654,-8.401663,0.09999999,-0.6114915,-9.093266,0.09999999,-5.25,-8.649613,0.09999999,-0.4585238,-8.911661,0.09999999,-0.3312062,-9.185161,0.09999999,-0.2308237,-9.700735,0.09999999,-4.018176,-9.467352,0.09999999,-0.1583894,-9.755386,0.09999999,-0.1146343,-10,0.09999999,-3.13657,-10.04636,0.09999999,-0.09999999,-10.04636,0.09999999,-3,-15,0.09999999,-0.09999999,-15,0.09999999,-3,15,0.09999999,-3,15,0.09999999,-0.09999999,10.04636,0.09999999,-3,10.04636,0.09999999,-0.09999999,10,0.09999999,-3.13657,9.755386,0.09999999,-0.1146343,9.700735,0.09999999,-4.018176,9.467352,0.09999999,-0.1583894,9.093266,0.09999999,-5.25,9.185161,0.09999999,-0.2308237,8.911661,0.09999999,-0.3312062,8.330211,0.09999999,-6.391995,8.649613,0.09999999,-0.4585238,8.401663,0.09999999,-0.6114915,8.170311,0.09999999,-0.7885654,7.424622,0.09999999,-7.424622,7.957893,0.09999999,-0.9879584,7.766554,0.09999999,-1.207658,7.598224,0.09999999,-1.445447,7.454601,0.09999999,-1.698926,7.344785,0.09999999,-1.948177,6.391995,0.09999999,-8.330211,7.341036,0.09999999,-1.967025,7.021484,0.09999999,-2.908394,6.581793,0.09999999,-3.8,6.029485,0.09999999,-4.626587,5.25,0.09999999,-9.093266,5.374012,0.09999999,-5.374012,4.626587,0.09999999,-6.029485,4.018176,0.09999999,-9.700735,3.8,0.09999999,-6.581793,3.13657,0.09999999,-10,2.908394,0.09999999,-7.021484,3,0.09999999,-10.04636,3,0.09999999,-15,0.09999999,0.09999999,-15,1.967025,0.09999999,-7.341036,1.948177,0.09999999,-7.344785,1.698926,0.09999999,-7.454601,1.445447,0.09999999,-7.598224,1.207658,0.09999999,-7.766554,0.9879584,0.09999999,-7.957893,0.7885654,0.09999999,-8.170311,0.6114915,0.09999999,-8.401663,0.4585238,0.09999999,-8.649613,0.3312062,0.09999999,-8.911661,0.2308237,0.09999999,-9.185161,0.1583894,0.09999999,-9.467352,0.1146343,0.09999999,-9.755386,0.09999999,0.09999999,-10.04636,7.593445,0.09999999,-0.09999999,7.534981,0.09999999,-0.991999,7.599814,0.09999999,-1.096211,7.480289,0.09999999,-1.266951,7.593445,0.09999999,0.09999999,7.599814,0.09999999,1.096211,7.804361,0.09999999,-0.8591021,7.804361,0.09999999,0.8591021,8.031786,0.09999999,-0.6438394,8.031786,0.09999999,0.6438394,8.279767,0.09999999,-0.4526188,8.279767,0.09999999,0.4526188,8.545774,0.09999999,-0.2873915,8.545774,0.09999999,0.2873915,8.827094,0.09999999,-0.1498436,8.827094,0.09999999,0.1498436,9.120854,0.09999999,-0.04137855,9.120854,0.09999999,0.04137855,9.281137,0.09999999,2.76456E-11,7.534981,0.09999999,0.991999,7.480289,0.09999999,1.266951,-0.09999999,0.09999999,15,-3,0.09999999,15,-0.09999999,0.09999999,10.04636,-0.1146343,0.09999999,9.755386,-0.1583894,0.09999999,9.467352,-0.2308237,0.09999999,9.185161,-0.3312062,0.09999999,8.911661,-0.4585238,0.09999999,8.649613,-0.6114915,0.09999999,8.401663,-0.7885654,0.09999999,8.170311,-0.9879584,0.09999999,7.957893,-1.207658,0.09999999,7.766554,-1.445447,0.09999999,7.598224,-1.698926,0.09999999,7.454601,-1.948177,0.09999999,7.344785,-1.967025,0.09999999,7.341036,-2.908394,0.09999999,7.021484,-3,0.09999999,10.04636,-3.8,0.09999999,6.581793,-3.13657,0.09999999,10,-4.018176,0.09999999,9.700735,-4.626587,0.09999999,6.029485,-5.25,0.09999999,9.093266,-5.374012,0.09999999,5.374012,-6.391995,0.09999999,8.330211,-6.029485,0.09999999,4.626587,-6.581793,0.09999999,3.8,-7.424622,0.09999999,7.424622,-7.021484,0.09999999,2.908394,-7.341036,0.09999999,1.967025,-7.344785,0.09999999,1.948177,-7.454601,0.09999999,1.698926,-8.330211,0.09999999,6.391995,-7.598224,0.09999999,1.445447,-7.766554,0.09999999,1.207658,-7.957893,0.09999999,0.9879584,-8.170311,0.09999999,0.7885654,-8.401663,0.09999999,0.6114915,-9.093266,0.09999999,5.25,-8.649613,0.09999999,0.4585238,-8.911661,0.09999999,0.3312062,-9.185161,0.09999999,0.2308237,-9.700735,0.09999999,4.018176,-9.467352,0.09999999,0.1583894,-9.755386,0.09999999,0.1146343,-10,0.09999999,3.13657,-10.04636,0.09999999,0.09999999,-10.04636,0.09999999,3,-15,0.09999999,3,-15,0.09999999,0.09999999,-7.480289,0.09999999,-1.266951,-7.534981,0.09999999,-0.991999,-7.599814,0.09999999,-1.096211,-7.593445,0.09999999,-0.09999999,-7.599814,0.09999999,1.096211,-7.804361,0.09999999,0.8591021,-7.804361,0.09999999,-0.8591021,-8.031786,0.09999999,0.6438394,-8.031786,0.09999999,-0.6438394,-8.279767,0.09999999,0.4526188,-8.279767,0.09999999,-0.4526188,-8.545774,0.09999999,0.2873915,-8.545774,0.09999999,-0.2873915,-8.827094,0.09999999,0.1498436,-8.827094,0.09999999,-0.1498436,-9.120854,0.09999999,0.04137855,-9.120854,0.09999999,-0.04137855,-9.281137,0.09999999,2.850467E-11,-7.593445,0.09999999,0.09999999,-7.534981,0.09999999,0.991999,-7.480289,0.09999999,1.266951,15,0.09999999,3,10.04636,0.09999999,3,15,0.09999999,0.09999999,10.04636,0.09999999,0.09999999,9.755386,0.09999999,0.1146343,10,0.09999999,3.13657,9.700735,0.09999999,4.018176,9.467352,0.09999999,0.1583894,9.093266,0.09999999,5.25,9.185161,0.09999999,0.2308237,8.911661,0.09999999,0.3312062,8.330211,0.09999999,6.391995,8.649613,0.09999999,0.4585238,8.401663,0.09999999,0.6114915,8.170311,0.09999999,0.7885654,7.424622,0.09999999,7.424622,7.957893,0.09999999,0.9879584,7.766554,0.09999999,1.207658,7.598224,0.09999999,1.445447,7.454601,0.09999999,1.698926,7.344785,0.09999999,1.948177,6.391995,0.09999999,8.330211,7.341036,0.09999999,1.967025,7.021484,0.09999999,2.908394,6.581793,0.09999999,3.8,6.029485,0.09999999,4.626587,5.25,0.09999999,9.093266,5.374012,0.09999999,5.374012,4.626587,0.09999999,6.029485,4.018176,0.09999999,9.700735,3.8,0.09999999,6.581793,3.13657,0.09999999,10,2.908394,0.09999999,7.021484,3,0.09999999,10.04636,0.09999999,0.09999999,15,3,0.09999999,15,1.967025,0.09999999,7.341036,1.948177,0.09999999,7.344785,1.698926,0.09999999,7.454601,1.445447,0.09999999,7.598224,1.207658,0.09999999,7.766554,0.9879584,0.09999999,7.957893,0.7885654,0.09999999,8.170311,0.6114915,0.09999999,8.401663,0.4585238,0.09999999,8.649613,0.3312062,0.09999999,8.911661,0.2308237,0.09999999,9.185161,0.1583894,0.09999999,9.467352,0.1146343,0.09999999,9.755386,0.09999999,0.09999999,10.04636,1.266951,0.09999999,7.480289,1.096211,0.09999999,7.599814,0.991999,0.09999999,7.534981,0.8591021,0.09999999,7.804361,0.09999999,0.09999999,7.593445,0.6438394,0.09999999,8.031786,0.4526188,0.09999999,8.279767,0.2873915,0.09999999,8.545774,0.1498436,0.09999999,8.827094,0.04137855,0.09999999,9.120854,-0.09999999,0.09999999,7.593445,3.896156E-11,0.09999999,9.281137,-0.04137855,0.09999999,9.120854,-0.1498436,0.09999999,8.827094,-0.2873915,0.09999999,8.545774,-0.4526188,0.09999999,8.279767,-0.991999,0.09999999,7.534981,-0.6438394,0.09999999,8.031786,-0.8591021,0.09999999,7.804361,-1.096211,0.09999999,7.599814,-1.266951,0.09999999,7.480289,15,0.09999999,4,10.76069,0.09999999,4,10.62461,0.09999999,4.400859,10.32915,0.09999999,5,9.959292,0.09999999,5.75,9.123563,0.09999999,7.000756,8.131728,0.09999999,8.131728,7.000756,0.09999999,9.123563,5.75,0.09999999,9.959292,5,0.09999999,10.32915,4.400859,0.09999999,10.62461,4,0.09999999,10.76069,4,0.09999999,15,3.5,0.09999999,-1.291861E-11,3.470057,0.09999999,-0.4568416,3.38074,0.09999999,-0.9058666,3.233578,0.09999999,-1.339392,3.031089,0.09999999,-1.75,2.776737,0.09999999,-2.130665,2.474874,0.09999999,-2.474874,2.130665,0.09999999,-2.776737,1.75,0.09999999,-3.031089,1.339392,0.09999999,-3.233578,0.9058666,0.09999999,-3.38074,0.4568416,0.09999999,-3.470057,-4.609405E-11,0.09999999,-3.5,-0.4568416,0.09999999,-3.470057,-0.9058666,0.09999999,-3.38074,-1.339392,0.09999999,-3.233578,-1.75,0.09999999,-3.031089,-2.130665,0.09999999,-2.776737,-2.474874,0.09999999,-2.474874,-2.776737,0.09999999,-2.130665,-3.031089,0.09999999,-1.75,-3.233578,0.09999999,-1.339392,-3.38074,0.09999999,-0.9058666,-3.470057,0.09999999,-0.4568416,-3.5,0.09999999,1.292582E-11,-3.470057,0.09999999,0.4568416,-3.38074,0.09999999,0.9058666,-3.233578,0.09999999,1.339392,-3.031089,0.09999999,1.75,-2.776737,0.09999999,2.130665,-2.474874,0.09999999,2.474874,-2.130665,0.09999999,2.776737,-1.75,0.09999999,3.031089,-1.339392,0.09999999,3.233578,-0.9058666,0.09999999,3.38074,-0.4568416,0.09999999,3.470057,1.287168E-11,0.09999999,3.5,0.4568416,0.09999999,3.470057,0.9058666,0.09999999,3.38074,1.339392,0.09999999,3.233578,1.75,0.09999999,3.031089,2.130665,0.09999999,2.776737,2.474874,0.09999999,2.474874,2.776737,0.09999999,2.130665,3.031089,0.09999999,1.75,3.233578,0.09999999,1.339392,3.38074,0.09999999,0.9058666,3.470057,0.09999999,0.4568416,-4,0.09999999,-15,-4,0.09999999,-10.76069,-4.400859,0.09999999,-10.62461,-5,0.09999999,-10.32915,-5.75,0.09999999,-9.959292,-7.000756,0.09999999,-9.123563,-8.131728,0.09999999,-8.131728,-9.123563,0.09999999,-7.000756,-9.959292,0.09999999,-5.75,-10.32915,0.09999999,-5,-10.76069,0.09999999,-4,-10.62461,0.09999999,-4.400859,-15,0.09999999,-4,4,0.09999999,-10.76069,4,0.2,-15,4,0.09999999,-15,4,0.2,-10.76069,-4,0.09999999,15,-4,0.09999999,10.76069,-4.400859,0.09999999,10.62461,-5,0.09999999,10.32915,-5.75,0.09999999,9.959292,-7.000756,0.09999999,9.123563,-8.131728,0.09999999,8.131728,-9.123563,0.09999999,7.000756,-9.959292,0.09999999,5.75,-10.32915,0.09999999,5,-10.76069,0.09999999,4,-10.62461,0.09999999,4.400859,-15,0.09999999,4,-5,0,-15,-4,0.09999999,-15,5,0,-15,-5,0.2,-15,-4,0.2,-15,-3,0.09999999,-15,4,0.09999999,-15,5,0.2,-15,3,0.09999999,-15,-0.09999999,0.09999999,-15,0.09999999,0.09999999,-15,4,0.2,-15,-4,0.2,-10.76069,-4,0.09999999,-15,-4,0.2,-15,-4,0.09999999,-10.76069,15,0.09999999,-4,10.76069,0.09999999,-4,10.62461,0.09999999,-4.400859,10.32915,0.09999999,-5,9.959292,0.09999999,-5.75,9.123563,0.09999999,-7.000756,8.131728,0.09999999,-8.131728,7.000756,0.09999999,-9.123563,5.75,0.09999999,-9.959292,5,0.09999999,-10.32915,4.400859,0.09999999,-10.62461,4,0.09999999,-10.76069,4,0.09999999,-15,-5,5.639933E-17,-11.44175,-5,0.2,-15,-5,0,-15,-5,0.2,-11.44175,5,0.2,-11.44175,5,0,-15,5,0.2,-15,5,5.639933E-17,-11.44175 + } + PolygonVertexIndex: *4908 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,9,-7,11,9,-11,12,9,-12,13,9,-13,14,9,-14,15,14,-14,16,14,-16,17,16,-16,18,16,-18,19,18,-18,20,18,-20,21,20,-20,21,22,-21,23,20,-23,24,22,-22,25,22,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,251,-254,255,254,-254,256,258,-258,259,257,-259,260,259,-259,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,325,-325,327,325,-327,328,330,-330,331,329,-331,332,329,-332,333,329,-333,333,332,-335,335,334,-333,336,334,-336,337,336,-336,338,336,-338,339,338,-338,340,338,-340,341,340,-340,342,340,-342,343,342,-342,344,342,-344,345,344,-344,346,345,-344,347,346,-344,348,346,-348,349,348,-348,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,355,-358,359,355,-359,360,359,-359,361,360,-359,362,360,-362,363,360,-363,364,363,-363,365,363,-365,366,365,-365,367,365,-367,368,367,-367,369,367,-369,370,369,-369,371,369,-371,372,369,-372,373,369,-373,374,373,-373,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,387,-387,389,387,-389,390,387,-390,391,390,-390,392,391,-390,393,392,-390,394,393,-390,395,393,-395,396,395,-395,397,395,-397,398,397,-397,399,397,-399,400,399,-399,401,399,-401,402,401,-401,403,402,-401,404,402,-404,405,402,-405,406,408,-408,409,407,-409,410,407,-410,411,407,-411,412,407,-412,413,412,-412,414,412,-414,415,414,-414,416,409,-409,417,416,-409,418,417,-409,419,418,-409,420,419,-409,421,420,-409,422,421,-409,423,422,-409,424,423,-409,425,424,-409,426,425,-409,427,426,-409,428,427,-409,429,428,-409,430,429,-409,431,430,-409,432,431,-409,433,432,-409,434,433,-409,435,434,-409,408,436,-436,436,437,-436,435,437,-439,438,437,-440,439,437,-441,440,437,-442,441,437,-443,442,437,-444,443,437,-445,444,437,-446,445,437,-447,446,437,-448,447,437,-449,448,437,-450,449,437,-451,450,437,-452,451,437,-453,452,437,-454,453,437,-455,454,437,-456,455,437,-457,456,437,-458,457,437,-459,437,414,-459,459,458,-415,460,459,-415,461,460,-415,415,461,-415,462,463,-437,464,436,-464,465,464,-464,466,464,-466,467,466,-466,468,466,-468,469,468,-468,470,468,-470,471,470,-470,472,470,-472,473,472,-472,474,472,-474,475,474,-474,476,474,-476,462,436,-409,477,479,-479,480,478,-480,481,480,-480,482,481,-480,483,481,-483,484,481,-484,485,484,-484,486,484,-486,487,486,-486,488,486,-488,489,488,-488,490,488,-490,407,490,-490,412,490,-408,491,493,-493,494,492,-494,495,497,-497,498,496,-498,499,501,-501,502,500,-502,503,505,-505,506,504,-506,507,509,-509,510,508,-510,511,513,-513,514,512,-514,515,517,-517,518,516,-518,519,521,-521,522,520,-522,523,525,-525,526,524,-526,527,529,-529,530,528,-530,531,533,-533,534,532,-534,535,537,-537,538,536,-538,539,541,-541,542,540,-542,543,545,-545,546,544,-546,547,549,-549,550,548,-550,551,553,-553,554,552,-554,555,557,-557,558,556,-558,559,561,-561,562,560,-562,563,565,-565,566,564,-566,567,564,-567,568,567,-567,569,571,-571,572,570,-572,573,575,-575,576,574,-576,577,576,-576,578,577,-576,579,581,-581,582,580,-582,583,585,-585,586,584,-586,587,589,-589,590,588,-590,591,593,-593,594,592,-594,595,597,-597,598,596,-598,599,598,-598,600,598,-600,601,603,-603,604,602,-604,605,607,-607,608,606,-608,609,611,-611,612,610,-612,613,615,-615,616,614,-616,617,619,-619,620,618,-620,621,623,-623,624,622,-624,625,627,-627,628,626,-628,629,631,-631,632,630,-632,633,635,-635,636,634,-636,637,639,-639,640,638,-640,641,638,-641,642,641,-641,643,645,-645,646,644,-646,647,649,-649,650,648,-650,651,653,-653,654,652,-654,655,657,-657,658,656,-658,659,661,-661,662,660,-662,663,665,-665,666,664,-666,667,669,-669,670,668,-670,671,673,-673,674,672,-674,675,677,-677,678,676,-678,679,681,-681,682,680,-682,683,685,-685,686,684,-686,687,689,-689,690,688,-690,691,693,-693,694,692,-694,695,697,-697,698,696,-698,699,701,-701,702,700,-702,703,705,-705,706,704,-706,707,709,-709,710,708,-710,711,713,-713,714,712,-714,715,717,-717,718,716,-718,719,721,-721,722,720,-722,723,725,-725,726,724,-726,727,729,-729,730,728,-730,731,733,-733,734,732,-734,735,737,-737,738,736,-738,739,741,-741,742,740,-742,743,745,-745,746,744,-746,747,749,-749,750,748,-750,751,753,-753,754,752,-754,755,754,-754,756,758,-758,759,757,-759,760,762,-762,763,761,-763,764,766,-766,767,765,-767,768,770,-770,771,769,-771,772,774,-774,775,773,-775,776,778,-778,779,777,-779,780,782,-782,783,781,-783,784,786,-786,787,785,-787,788,790,-790,791,789,-791,792,794,-794,795,793,-795,796,798,-798,799,797,-799,800,802,-802,803,801,-803,804,806,-806,807,805,-807,808,810,-810,811,809,-811,812,814,-814,815,813,-815,816,818,-818,819,817,-819,820,822,-822,823,821,-823,824,826,-826,827,825,-827,828,827,-827,829,827,-829,830,832,-832,833,831,-833,834,836,-836,837,835,-837,838,840,-840,841,839,-841,842,844,-844,845,843,-845,846,848,-848,849,847,-849,850,852,-852,853,851,-853,854,856,-856,857,855,-857,858,860,-860,861,859,-861,862,864,-864,865,863,-865,866,863,-866,867,866,-866,868,867,-866,869,867,-869,870,869,-869,871,870,-869,872,870,-872,873,872,-872,874,872,-874,875,874,-874,876,875,-874,877,875,-877,878,877,-877,879,877,-879,880,879,-879,881,879,-881,882,881,-881,883,881,-883,884,883,-883,885,883,-885,886,885,-885,887,886,-885,888,886,-888,889,888,-888,890,888,-890,891,890,-890,892,890,-892,893,892,-892,894,892,-894,895,894,-894,896,895,-894,897,895,-897,898,897,-897,899,897,-899,900,899,-899,901,900,-899,902,900,-902,903,902,-902,904,903,-902,905,904,-902,906,905,-902,907,905,-907,908,907,-907,909,907,-909,910,909,-909,911,909,-911,903,904,-913,912,904,-914,904,914,-914,913,914,-916,915,914,-917,914,917,-917,916,917,-919,917,919,-919,918,919,-921,920,919,-922,919,922,-922,921,922,-924,922,924,-924,923,924,-926,924,926,-926,925,926,-928,926,928,-928,927,928,-930,929,928,-931,928,931,-931,930,931,-933,931,933,-933,932,933,-935,933,935,-935,934,935,-937,935,937,-937,936,937,-939,937,939,-939,938,939,-941,940,939,-942,939,942,-942,941,942,-944,942,944,-944,943,944,-946,945,944,-947,944,947,-947,946,947,-949,948,947,-950,947,950,-950,949,950,-863,862,950,-865,864,950,-952,950,952,-952,951,952,-954,952,954,-954,953,954,-956,954,956,-956,957,955,-957,957,958,-956,959,955,-959,953,955,-960,951,953,-960,960,951,-960,864,951,-961,865,864,-961,961,865,-961,868,865,-962,962,868,-962,871,868,-963,873,871,-963,963,873,-963,876,873,-964,964,876,-964,878,876,-965,965,878,-965,880,878,-966,966,880,-966,882,880,-967,884,882,-967,967,884,-967,887,884,-968,968,887,-968,889,887,-969,969,889,-969,891,889,-970,970,891,-970,893,891,-971,971,893,-971,896,893,-972,898,896,-972,972,898,-972,901,898,-973,973,901,-973,906,901,-974,908,906,-974,974,908,-974,910,908,-975,911,910,-975,975,911,-975,976,975,-975,977,976,-975,978,976,-978,979,978,-978,980,978,-980,981,980,-980,982,980,-982,911,975,-910,909,975,-908,975,983,-908,907,983,-906,905,983,-905,983,984,-905,904,984,-915,984,985,-915,914,985,-918,917,985,-920,985,986,-920,919,986,-923,986,987,-923,922,987,-925,987,988,-925,924,988,-927,988,989,-927,926,989,-929,928,989,-932,989,990,-932,931,990,-934,990,991,-934,933,991,-936,991,992,-936,935,992,-938,992,993,-938,937,993,-940,993,994,-940,939,994,-943,942,994,-945,994,995,-945,944,995,-948,995,996,-948,947,996,-951,950,996,-953,996,997,-953,952,997,-955,954,997,-957,997,998,-957,956,998,-958,957,998,-959,958,998,-1000,998,1000,-1000,999,1000,-1002,1000,1002,-1002,1001,1002,-1004,1002,1004,-1004,1005,1003,-1005,1006,1008,-1008,1009,1007,-1009,1010,1006,-1008,1008,1011,-1010,1011,1012,-1010,1013,1009,-1013,1014,1009,-1014,1008,1015,-1012,1016,1011,-1016,1017,1016,-1016,1018,1020,-1020,1021,1019,-1021,1022,1019,-1022,1019,1023,-1019,1023,1024,-1019,1025,1018,-1025,1026,1024,-1024,1023,1027,-1027,1028,1026,-1028,1029,1025,-1025,1030,1032,-1032,1032,1033,-1032,1031,1033,-1035,1034,1033,-1036,1035,1033,-1037,1036,1033,-1038,1037,1033,-1039,1033,1039,-1039,1038,1039,-1041,1041,1040,-1040,1042,1044,-1044,1045,1043,-1045,1046,1043,-1046,1047,1046,-1046,1048,1047,-1046,1049,1048,-1046,1050,1049,-1046,1051,1050,-1046,1052,1051,-1046,1043,1053,-1043,1054,1056,-1056,1057,1055,-1057,1058,1055,-1058,1059,1058,-1058,1060,1059,-1058,1061,1060,-1058,1062,1061,-1058,1063,1061,-1063,1064,1063,-1063,1065,1064,-1063,1066,1064,-1066,1067,1066,-1066,1068,1067,-1066,1069,1067,-1069,1070,1067,-1070,1071,1070,-1070,1072,1071,-1070,1073,1071,-1073,1074,1073,-1073,1075,1073,-1075,1076,1075,-1075,1077,1076,-1075,1078,1076,-1078,1079,1078,-1078,1080,1079,-1078,1081,1079,-1081,1082,1079,-1082,1083,1082,-1082,1084,1083,-1082,1085,1083,-1085,1086,1085,-1085,1087,1086,-1085,1088,1086,-1088,1089,1088,-1088,1090,1089,-1088,1091,1090,-1088,1092,1091,-1088,1093,1092,-1088,1094,1093,-1088,1095,1093,-1095,1096,1095,-1095,1097,1095,-1097,1098,1097,-1097,1099,1097,-1099,1100,1099,-1099,1101,1099,-1101,1102,1101,-1101,1103,1101,-1103,1104,1103,-1103,1105,1103,-1105,1106,1105,-1105,1107,1105,-1107,1092,1109,-1109,1108,1109,-1111,1110,1109,-1112,1109,1112,-1112,1111,1112,-1114,1113,1112,-1115,1112,1115,-1115,1115,1116,-1115,1114,1116,-1118,1117,1116,-1119,1116,1119,-1119,1118,1119,-1121,1119,1121,-1121,1120,1121,-1123,1121,1123,-1123,1123,1124,-1123,1122,1124,-1126,1124,1126,-1126,1125,1126,-1128,1127,1126,-1129,1126,1129,-1129,1129,1130,-1129,1128,1130,-1132,1131,1130,-1133,1130,1133,-1133,1132,1133,-1135,1134,1133,-1136,1133,1136,-1136,1135,1136,-1138,1137,1136,-1139,1138,1136,-1140,1139,1136,-1141,1136,1141,-1141,1140,1141,-1055,1054,1141,-1057,1056,1141,-1143,1141,1143,-1143,1142,1143,-1145,1143,1145,-1145,1144,1145,-1147,1145,1147,-1147,1146,1147,-1149,1147,1149,-1149,1148,1149,-1151,1149,1151,-1151,1150,1151,-1153,1151,1153,-1153,1152,1153,-1155,1153,1155,-1155,1155,1156,-1155,1154,1156,-1158,1158,1157,-1157,1159,1092,-1109,1160,1092,-1160,1161,1092,-1161,1091,1092,-1162,1162,1164,-1164,1165,1163,-1165,1166,1163,-1166,1167,1166,-1166,1168,1166,-1168,1169,1166,-1169,1170,1166,-1170,1171,1166,-1171,1172,1166,-1172,1173,1172,-1172,1174,1172,-1174,1175,1172,-1175,1176,1172,-1176,1177,1172,-1177,1178,1172,-1178,1179,1178,-1178,1180,1178,-1180,1181,1178,-1181,1182,1178,-1182,1183,1185,-1185,1186,1184,-1186,1187,1184,-1187,1188,1187,-1187,1189,1188,-1187,1190,1189,-1187,1191,1190,-1187,1192,1191,-1187,1193,1192,-1187,1194,1193,-1187,1195,1194,-1187,1196,1195,-1187,1197,1196,-1187,1198,1197,-1187,1199,1198,-1187,1200,1199,-1187,1199,1200,-1202,1202,1201,-1201,1203,1201,-1203,1204,1201,-1204,1205,1204,-1204,1206,1204,-1206,1207,1206,-1206,1208,1206,-1208,1209,1208,-1208,1210,1209,-1208,1211,1209,-1211,1212,1211,-1211,1213,1212,-1211,1214,1213,-1211,1215,1214,-1211,1216,1214,-1216,1217,1216,-1216,1218,1217,-1216,1219,1218,-1216,1220,1219,-1216,1221,1220,-1216,1222,1220,-1222,1223,1222,-1222,1224,1223,-1222,1225,1224,-1222,1226,1224,-1226,1227,1226,-1226,1228,1227,-1226,1229,1227,-1229,1230,1229,-1229,1231,1229,-1231,1232,1231,-1231,1233,1235,-1235,1236,1234,-1236,1237,1236,-1236,1238,1236,-1238,1239,1238,-1238,1240,1238,-1240,1241,1240,-1240,1242,1240,-1242,1243,1242,-1242,1244,1243,-1242,1245,1243,-1245,1246,1245,-1245,1247,1246,-1245,1248,1247,-1245,1249,1247,-1249,1250,1249,-1249,1251,1250,-1249,1252,1251,-1249,1253,1252,-1249,1254,1253,-1249,1255,1253,-1255,1256,1255,-1255,1257,1256,-1255,1258,1257,-1255,1259,1258,-1255,1260,1258,-1260,1261,1260,-1260,1262,1261,-1260,1263,1261,-1263,1264,1263,-1263,1265,1263,-1265,1266,1265,-1265,1267,1265,-1267,1268,1265,-1268,1269,1265,-1269,1270,1269,-1269,1271,1270,-1269,1272,1271,-1269,1273,1272,-1269,1274,1273,-1269,1275,1274,-1269,1276,1275,-1269,1277,1276,-1269,1278,1277,-1269,1279,1278,-1269,1280,1279,-1269,1281,1280,-1269,1282,1281,-1269,1283,1285,-1285,1286,1284,-1286,1283,1287,-1286,1287,1288,-1286,1285,1288,-1290,1288,1290,-1290,1289,1290,-1292,1290,1292,-1292,1291,1292,-1294,1292,1294,-1294,1293,1294,-1296,1294,1296,-1296,1295,1296,-1298,1296,1298,-1298,1297,1298,-1300,1298,1300,-1300,1301,1299,-1301,1302,1288,-1288,1303,1288,-1303,1304,1306,-1306,1307,1305,-1307,1308,1305,-1308,1309,1305,-1309,1310,1305,-1310,1311,1305,-1311,1312,1305,-1312,1313,1305,-1313,1314,1305,-1314,1315,1305,-1315,1316,1305,-1316,1317,1305,-1317,1318,1305,-1318,1319,1305,-1319,1320,1305,-1320,1321,1305,-1321,1322,1321,-1321,1323,1321,-1323,1324,1323,-1323,1325,1324,-1323,1326,1324,-1326,1327,1326,-1326,1328,1326,-1328,1329,1328,-1328,1330,1328,-1330,1331,1328,-1331,1332,1331,-1331,1333,1331,-1333,1334,1331,-1334,1335,1331,-1335,1336,1331,-1336,1337,1336,-1336,1338,1336,-1338,1339,1336,-1339,1340,1336,-1340,1341,1336,-1341,1342,1336,-1342,1343,1342,-1342,1344,1342,-1344,1345,1342,-1345,1346,1342,-1346,1347,1346,-1346,1348,1346,-1348,1349,1346,-1349,1350,1349,-1349,1351,1349,-1351,1352,1351,-1351,1353,1352,-1351,1354,1356,-1356,1357,1355,-1357,1358,1357,-1357,1359,1358,-1357,1360,1359,-1357,1361,1359,-1361,1362,1361,-1361,1363,1361,-1363,1364,1363,-1363,1365,1363,-1365,1366,1365,-1365,1367,1365,-1367,1368,1367,-1367,1369,1367,-1369,1370,1369,-1369,1371,1369,-1371,1357,1358,-1373,1372,1358,-1374,1374,1373,-1359,1375,1377,-1377,1378,1376,-1378,1379,1376,-1379,1380,1376,-1380,1381,1380,-1380,1382,1381,-1380,1383,1381,-1383,1384,1383,-1383,1385,1383,-1385,1386,1383,-1386,1387,1386,-1386,1388,1386,-1388,1389,1386,-1389,1390,1386,-1390,1391,1390,-1390,1392,1390,-1392,1393,1390,-1393,1394,1390,-1394,1395,1390,-1395,1396,1390,-1396,1397,1396,-1396,1398,1396,-1398,1399,1396,-1399,1400,1396,-1400,1401,1396,-1401,1402,1401,-1401,1403,1401,-1403,1404,1401,-1404,1405,1404,-1404,1406,1404,-1406,1407,1406,-1406,1408,1406,-1408,1407,1409,-1409,1410,1408,-1410,1411,1409,-1408,1412,1409,-1412,1413,1409,-1413,1414,1409,-1414,1415,1409,-1415,1416,1409,-1416,1417,1409,-1417,1418,1409,-1418,1419,1409,-1419,1420,1409,-1420,1421,1409,-1421,1422,1409,-1422,1423,1409,-1423,1424,1409,-1424,1425,1427,-1427,1428,1426,-1428,1429,1428,-1428,1430,1428,-1430,1431,1430,-1430,1432,1431,-1430,1433,1432,-1430,1434,1433,-1430,1435,1434,-1430,1436,1434,-1436,1437,1436,-1436,1438,1437,-1436,1439,1438,-1436,1440,1439,-1436,1441,1440,-1436,1442,1440,-1442,1443,1442,-1442,1444,1443,-1442,1445,1444,-1442,1374,1214,-1355,1216,1354,-1215,1356,1354,-1217,1217,1356,-1217,1360,1356,-1218,1218,1360,-1218,1362,1360,-1219,1219,1362,-1219,1364,1362,-1220,1220,1364,-1220,1366,1364,-1221,1222,1366,-1221,1368,1366,-1223,1223,1368,-1223,1370,1368,-1224,1224,1370,-1224,1371,1370,-1225,1226,1371,-1225,1347,1371,-1227,1348,1347,-1227,1227,1348,-1227,1350,1348,-1228,1229,1350,-1228,1353,1350,-1230,1231,1353,-1230,1347,1345,-1372,1371,1345,-1370,1345,1344,-1370,1369,1344,-1368,1344,1343,-1368,1367,1343,-1366,1343,1341,-1366,1365,1341,-1364,1341,1340,-1364,1363,1340,-1362,1340,1339,-1362,1361,1339,-1360,1339,1338,-1360,1359,1338,-1359,1338,1337,-1359,1358,1337,-1375,1337,1335,-1375,1374,1335,-1215,1335,1107,-1215,1214,1107,-1214,1213,1107,-1213,1107,1106,-1213,1106,1104,-1213,1104,1102,-1213,1212,1102,-1212,1102,1100,-1212,1211,1100,-1210,1100,1098,-1210,1209,1098,-1209,1098,1096,-1209,1208,1096,-1207,1096,1094,-1207,1206,1094,-1205,1094,1087,-1205,1204,1087,-1202,1087,1084,-1202,1201,1084,-1200,1084,1081,-1200,1199,1081,-1199,1198,1081,-1198,1081,1080,-1198,1080,1077,-1198,1197,1077,-1197,1196,1077,-1196,1195,1077,-1183,1182,1077,-1179,1077,1074,-1179,1178,1074,-1173,1074,1072,-1173,1172,1072,-1167,1072,1069,-1167,1166,1069,-1164,1163,1069,-1163,1162,1069,-1272,1069,1068,-1272,1068,1065,-1272,1271,1065,-1271,1270,1065,-1270,1065,1062,-1270,1269,1062,-1266,1062,1057,-1266,1265,1057,-1264,1057,1056,-1264,1263,1056,-1262,1056,1142,-1262,1261,1142,-1261,1142,1144,-1261,1260,1144,-1259,1144,1146,-1259,1258,1146,-1258,1146,1148,-1258,1257,1148,-1257,1148,1150,-1257,1150,1152,-1257,1152,1154,-1257,1256,1154,-1256,1255,1154,-1254,1154,1157,-1254,1157,1158,-1254,1252,1253,-1159,1158,1395,-1253,1395,1394,-1253,1394,1303,-1253,1394,1393,-1304,1303,1393,-1289,1393,1392,-1289,1288,1392,-1291,1392,1391,-1291,1290,1391,-1293,1391,1389,-1293,1292,1389,-1295,1389,1388,-1295,1294,1388,-1297,1388,1387,-1297,1296,1387,-1299,1387,1385,-1299,1298,1385,-1301,1385,1384,-1301,1300,1384,-1302,1301,1384,-1241,1384,1382,-1241,1240,1382,-1239,1382,1379,-1239,1379,1378,-1239,1238,1378,-1237,1378,1377,-1237,1234,1236,-1378,1240,1242,-1302,1299,1301,-1243,1243,1299,-1243,1297,1299,-1244,1245,1297,-1244,1295,1297,-1246,1246,1295,-1246,1293,1295,-1247,1247,1293,-1247,1291,1293,-1248,1249,1291,-1248,1289,1291,-1250,1250,1289,-1250,1285,1289,-1251,1251,1285,-1251,1286,1285,-1252,1252,1286,-1252,1303,1286,-1253,1286,1303,-1285,1303,1302,-1285,1302,1287,-1285,1283,1284,-1288,1272,1162,-1272,1272,1273,-1163,1164,1162,-1274,1274,1164,-1274,1165,1164,-1275,1275,1165,-1275,1167,1165,-1276,1276,1167,-1276,1168,1167,-1277,1277,1168,-1277,1278,1168,-1278,1169,1168,-1279,1279,1169,-1279,1170,1169,-1280,1280,1170,-1280,1281,1170,-1281,1171,1170,-1282,1282,1171,-1282,1268,1171,-1283,1185,1171,-1269,1173,1171,-1186,1174,1173,-1186,1183,1174,-1186,1174,1183,-1176,1184,1175,-1184,1187,1175,-1185,1176,1175,-1188,1188,1176,-1188,1189,1176,-1189,1177,1176,-1190,1190,1177,-1190,1179,1177,-1191,1191,1179,-1191,1192,1179,-1192,1180,1179,-1193,1193,1180,-1193,1181,1180,-1194,1194,1181,-1194,1182,1181,-1195,1195,1182,-1195,1374,1354,-1374,1355,1373,-1355,1372,1373,-1356,1357,1372,-1356,1414,1425,-1416,1426,1415,-1426,1416,1415,-1427,1428,1416,-1427,1417,1416,-1429,1430,1417,-1429,1418,1417,-1431,1431,1418,-1431,1419,1418,-1432,1420,1419,-1432,1432,1420,-1432,1421,1420,-1433,1433,1421,-1433,1422,1421,-1434,1423,1422,-1434,1434,1423,-1434,1424,1423,-1435,1434,1304,-1425,1409,1424,-1305,1436,1304,-1435,1437,1304,-1437,1306,1304,-1438,1438,1306,-1438,1307,1306,-1439,1308,1307,-1439,1439,1308,-1439,1309,1308,-1440,1310,1309,-1440,1440,1310,-1440,1311,1310,-1441,1442,1311,-1441,1312,1311,-1443,1313,1312,-1443,1443,1313,-1443,1314,1313,-1444,1444,1314,-1444,1315,1314,-1445,1445,1315,-1445,1316,1315,-1446,1316,1445,-1117,1445,1441,-1117,1116,1441,-1120,1441,1435,-1120,1119,1435,-1122,1121,1435,-1124,1435,1429,-1124,1123,1429,-1125,1124,1429,-1127,1429,1427,-1127,1427,1425,-1127,1425,1413,-1127,1126,1413,-1130,1129,1413,-1131,1413,1412,-1131,1412,1411,-1131,1130,1411,-1134,1411,1407,-1134,1133,1407,-1137,1407,1405,-1137,1136,1405,-1142,1405,1403,-1142,1141,1403,-1144,1403,1402,-1144,1143,1402,-1146,1402,1400,-1146,1145,1400,-1148,1400,1399,-1148,1147,1399,-1150,1399,1398,-1150,1149,1398,-1152,1151,1398,-1154,1153,1398,-1156,1398,1397,-1156,1397,1395,-1156,1155,1395,-1157,1156,1395,-1159,1414,1413,-1426,1317,1316,-1117,1318,1317,-1117,1115,1318,-1117,1112,1318,-1116,1319,1318,-1113,1320,1319,-1113,1109,1320,-1113,1322,1320,-1110,1092,1322,-1110,1325,1322,-1093,1093,1325,-1093,1327,1325,-1094,1095,1327,-1094,1329,1327,-1096,1097,1329,-1096,1330,1329,-1098,1099,1330,-1098,1332,1330,-1100,1101,1332,-1100,1333,1332,-1102,1103,1333,-1102,1105,1333,-1104,1107,1333,-1106,1334,1333,-1108,1335,1334,-1108,1375,1376,-1447,1447,1446,-1377,1448,1447,-1377,1449,1448,-1377,1450,1449,-1377,1380,1450,-1377,1381,1450,-1381,1451,1450,-1382,1383,1451,-1382,1452,1451,-1384,1386,1452,-1384,1390,1452,-1387,1453,1452,-1391,1396,1453,-1391,1454,1453,-1397,1401,1454,-1397,1455,1454,-1402,1404,1455,-1402,1456,1455,-1405,1457,1456,-1405,1406,1457,-1405,1406,1410,-1458,1458,1457,-1411,1408,1410,-1407,1459,1061,-1461,1063,1460,-1062,1461,1460,-1064,1462,1461,-1064,1463,1462,-1064,1064,1463,-1064,1464,1463,-1065,1465,1464,-1065,1066,1465,-1065,1466,1465,-1067,1067,1466,-1067,1467,1466,-1068,1468,1467,-1068,1070,1468,-1068,1469,1468,-1071,1071,1469,-1071,1470,1469,-1072,1073,1470,-1072,1471,1470,-1074,1075,1471,-1074,1472,1471,-1076,1473,1472,-1076,1076,1473,-1076,1474,1473,-1077,1078,1474,-1077,1475,1474,-1079,1079,1475,-1079,1476,1475,-1080,1477,1476,-1080,1082,1477,-1080,1478,1477,-1083,1083,1478,-1083,1479,1478,-1084,1480,1479,-1084,1085,1480,-1084,1481,1480,-1086,1482,1481,-1086,1483,1482,-1086,1110,1483,-1086,1108,1110,-1086,1086,1108,-1086,1159,1108,-1087,1088,1159,-1087,1160,1159,-1089,1089,1160,-1089,1161,1160,-1090,1090,1161,-1090,1091,1161,-1091,1483,1110,-1485,1484,1110,-1486,1485,1110,-1487,1110,1111,-1487,1486,1111,-1488,1487,1111,-1489,1111,1113,-1489,1488,1113,-1490,1113,1114,-1490,1489,1114,-1491,1490,1114,-1492,1114,1117,-1492,1491,1117,-1493,1117,1118,-1493,1492,1118,-1494,1118,1120,-1494,1493,1120,-1495,1494,1120,-1496,1120,1122,-1496,1495,1122,-1497,1122,1125,-1497,1496,1125,-1498,1125,1127,-1498,1497,1127,-1499,1127,1128,-1499,1498,1128,-1500,1499,1128,-1501,1128,1131,-1501,1500,1131,-1502,1131,1132,-1502,1501,1132,-1503,1502,1132,-1504,1132,1134,-1504,1503,1134,-1505,1504,1134,-1506,1505,1134,-1507,1134,1135,-1507,1506,1135,-1460,1459,1135,-1062,1061,1135,-1061,1135,1137,-1061,1060,1137,-1060,1137,1138,-1060,1059,1138,-1059,1138,1139,-1059,1058,1139,-1056,1139,1140,-1056,1054,1055,-1141,1200,1186,-1203,1507,1202,-1187,1508,1202,-1508,1202,1508,-1204,1509,1203,-1509,1205,1203,-1510,1510,1205,-1510,1511,1205,-1511,1207,1205,-1512,1512,1207,-1512,1210,1207,-1513,1513,1210,-1513,1215,1210,-1514,1514,1215,-1514,1221,1215,-1515,1225,1221,-1515,1515,1225,-1515,1228,1225,-1516,1516,1228,-1516,1230,1228,-1517,1517,1230,-1517,1232,1230,-1518,1518,1517,-1517,1519,1232,-1518,1520,1522,-1522,1521,1523,-1521,1305,1321,-1525,1323,1524,-1322,1525,1524,-1324,1324,1525,-1324,1526,1525,-1325,1326,1526,-1325,1527,1526,-1327,1528,1527,-1327,1328,1528,-1327,1529,1528,-1329,1331,1529,-1329,1530,1529,-1332,1336,1530,-1332,1531,1530,-1337,1342,1531,-1337,1346,1531,-1343,1532,1531,-1347,1349,1532,-1347,1533,1532,-1350,1351,1533,-1350,1534,1533,-1352,1352,1534,-1352,1535,1533,-1535,1536,1534,-1353,1537,1539,-1539,1538,1540,-1538,1538,1541,-1541,1542,1538,-1540,1543,1542,-1540,1539,1544,-1544,1543,1545,-1543,1546,1542,-1546,1545,1547,-1547,1544,1548,-1544,1549,1551,-1551,1550,1552,-1550,1553,1554,-1234,1235,1233,-1555,1555,1235,-1555,1556,1235,-1556,1557,1235,-1557,1237,1235,-1558,1239,1237,-1558,1558,1239,-1558,1241,1239,-1559,1559,1241,-1559,1244,1241,-1560,1248,1244,-1560,1560,1248,-1560,1254,1248,-1561,1561,1254,-1561,1259,1254,-1562,1562,1259,-1562,1262,1259,-1563,1563,1262,-1563,1564,1262,-1564,1264,1262,-1565,1565,1264,-1565,1267,1264,-1566,1266,1264,-1268,1566,1568,-1568,1567,1569,-1567,1570,1572,-1572,1571,1573,-1571 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *14724 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,0.1305262,0,-0.9914449,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,-0.4422887,0,0.8968728,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.4422887,0,0.8968728,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.8660254,0,0.5,-0.8968728,0,0.4422887,-0.8660254,0,0.5,-0.8968728,0,0.4422887,-0.8660254,0,0.5,-0.8968728,0,0.4422887,-0.9238795,0,0.3826834,-0.8968728,0,0.4422887,-0.8968728,0,0.4422887,-0.9238795,0,0.3826834,-0.8968728,0,0.4422887,-0.9238795,0,0.3826834,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0,0,-1,0,0,-1,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0,0,-1,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,-0.9469302,0,-0.3214395,-0.9238795,0,-0.3826834,-0.9469302,0,-0.3214395,-0.9238795,0,-0.3826834,-0.9469302,0,-0.3214395,-0.9238795,0,-0.3826834,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,-0.9238795,0,-0.3826834,-0.8968728,0,-0.4422887,-0.9238795,0,-0.3826834,-0.8968728,0,-0.4422887,-0.9238795,0,-0.3826834,-0.8968728,0,-0.4422887,-0.8660254,0,-0.5,-0.8968728,0,-0.4422887,-0.8968728,0,-0.4422887,-0.8660254,0,-0.5,-0.8968728,0,-0.4422887,-0.8660254,0,-0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8968728,0,0.4422887,0.8660254,0,0.5,0.8968728,0,0.4422887,0.8660254,0,0.5,0.8968728,0,0.4422887,0.8660254,0,0.5,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.4422887,0,-0.8968728,-0.5,0,-0.8660254,-0.4422887,0,-0.8968728,-0.5,0,-0.8660254,-0.4422887,0,-0.8968728,-0.5,0,-0.8660254,0.4422887,0,-0.8968728,0.4422887,0,-0.8968728,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.4422887,0,-0.8968728,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.3214395,0,0.9469302,0.3214395,0,0.9469302,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3214395,0,0.9469302,-0.4422887,0,-0.8968728,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.4422887,0,-0.8968728,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.4422887,0,-0.8968728,0.3826834,0,-0.9238795,0.4422887,0,-0.8968728,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.4422887,0,-0.8968728,0.3826834,0,-0.9238795,0.5,0,-0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,0.9469302,0,-0.3214395,0.9238795,0,-0.3826834,0.9469302,0,-0.3214395,0.9238795,0,-0.3826834,0.9469302,0,-0.3214395,0.9238795,0,-0.3826834,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,0.8660254,0,0.5,0.8968728,0,0.4422887,0.8660254,0,0.5,0.8968728,0,0.4422887,0.8660254,0,0.5,0.8968728,0,0.4422887,0.9238795,0,0.3826834,0.8968728,0,0.4422887,0.8968728,0,0.4422887,0.9238795,0,0.3826834,0.8968728,0,0.4422887,0.9238795,0,0.3826834,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.9238795,0,0.3826834,0.9469302,0,0.3214395,0.9238795,0,0.3826834,0.9469302,0,0.3214395,0.9238795,0,0.3826834,0.9469302,0,0.3214395,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3214395,0,-0.9469302,-0.3826834,0,-0.9238795,-0.3214395,0,-0.9469302,-0.3826834,0,-0.9238795,-0.3214395,0,-0.9469302,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.4422887,0,0.8968728,0.3826834,0,0.9238795,0.5,0,0.8660254,0.3826834,0,0.9238795,0.5,0,0.8660254,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.4422887,0,0.8968728,0.5,0,0.8660254,0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.3214395,0,-0.9469302,0.3826834,0,-0.9238795,0.3214395,0,-0.9469302,0.3826834,0,-0.9238795,0.3214395,0,-0.9469302,0.3826834,0,-0.9238795,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5555702,0,0.8314696,-0.5,0,0.8660254,-0.5555702,0,0.8314696,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,0,0,1,0,0,1,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,-0.9238795,0,0.3826834,-0.9469302,0,0.3214395,-0.9238795,0,0.3826834,-0.9469302,0,0.3214395,-0.9238795,0,0.3826834,-0.9469302,0,0.3214395,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8660254,0,-0.5,-0.8968728,0,-0.4422887,-0.8660254,0,-0.5,-0.8968728,0,-0.4422887,-0.8660254,0,-0.5,-0.8968728,0,-0.4422887,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.3214395,0,0.9469302,-0.3826834,0,0.9238795,-0.3214395,0,0.9469302,-0.3826834,0,0.9238795,-0.3214395,0,0.9469302,-0.3826834,0,0.9238795,0.9238795,0,-0.3826834,0.8968728,0,-0.4422887,0.9238795,0,-0.3826834,0.8968728,0,-0.4422887,0.9238795,0,-0.3826834,0.8968728,0,-0.4422887,0.8660254,0,-0.5,0.8968728,0,-0.4422887,0.8968728,0,-0.4422887,0.8660254,0,-0.5,0.8968728,0,-0.4422887,0.8660254,0,-0.5,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8968728,0,0.4422887,-0.8660254,0,0.5,-0.8968728,0,0.4422887,-0.8660254,0,0.5,-0.8968728,0,0.4422887,-0.8660254,0,0.5,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.5,0,0.8660254,0.5,0,0.8660254,0.4422887,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.8968728,0.5,0,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,0.8660254,-0.4422887,0,0.8968728,-0.5,0,0.8660254,-0.4422887,0,0.8968728,-0.5,0,0.8660254,-0.4422887,0,0.8968728,0.8660254,0,-0.5,0.8968728,0,-0.4422887,0.8660254,0,-0.5,0.8968728,0,-0.4422887,0.8660254,0,-0.5,0.8968728,0,-0.4422887,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *3148 { + a: 42.36491,0.3937008,42.36491,0.7874016,59.05512,0.3937008,59.05512,0.7874016,-59.05512,15.74803,-59.05512,19.68504,-42.36491,15.74803,-45.04626,19.68504,-42.61936,24.6063,-39.04298,29.95873,-41.82919,17.32622,-40.66595,19.68504,-39.20981,22.63779,-35.91954,27.56203,-34.79856,34.79856,-32.01468,32.01468,-29.95873,39.04298,-27.56203,35.91954,-24.6063,42.61936,-22.63779,39.20981,-19.68504,45.04626,-19.68504,40.66595,-15.74803,59.05512,-19.68504,59.05512,-17.32622,41.82919,-15.74803,42.36491,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-0.9012242,0.3937008,-0.9012242,0.7874016,0.9012242,0.3937008,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,-0.3311144,0.3937008,-2.961165,0.3937008,2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,-0.3311144,0.7874016,-2.961165,0.3937008,-2.961165,0.7874016,0.3311144,0.3937008,0.3311144,0.7874016,2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.3937008,-2.961165,0.7874016,2.961165,0.3937008,2.961165,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,2.961165,0.3937008,-2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,0.9012242,0.7874016,0.9012242,0.3937008,-0.9012242,0.7874016,-0.9012242,0.3937008,1.29453,0.3937008,1.29453,0.7874016,2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.3937008,-2.961165,0.7874016,2.961165,0.3937008,2.961165,0.7874016,2.961165,0.3937008,-2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,0.9012242,0.3937008,-0.9012242,0.3937008,0.9012242,0.7874016,-0.9012242,0.7874016,-2.961165,0.3937008,-2.961165,0.7874016,-0.3311144,0.3937008,-0.3311144,0.7874016,2.961165,0.3937008,2.961165,0.7874016,15.74803,-42.36491,17.32622,-41.82919,15.74803,-59.05512,19.68504,-59.05512,19.68504,-45.04626,19.68504,-40.66595,22.63779,-39.20981,24.6063,-42.61936,27.56203,-35.91954,29.95873,-39.04298,32.01468,-32.01468,34.79856,-34.79856,35.91954,-27.56203,39.04298,-29.95873,39.20981,-22.63779,42.61936,-24.6063,40.66595,-19.68504,41.82919,-17.32622,42.36491,-15.74803,45.04626,-19.68504,59.05512,-15.74803,59.05512,-19.68504,-59.05512,0.3937008,-59.05512,0.7874016,-42.36491,0.3937008,-42.36491,0.7874016,15.74803,59.05512,19.68504,59.05512,15.74803,42.36491,17.32622,41.82919,19.68504,40.66595,19.68504,45.04626,24.6063,42.61936,22.63779,39.20981,27.56203,35.91954,29.95873,39.04298,32.01468,32.01468,34.79856,34.79856,35.91954,27.56203,39.04298,29.95873,39.20981,22.63779,42.61936,24.6063,40.66595,19.68504,41.82919,17.32622,42.36491,15.74803,45.04626,19.68504,59.05512,15.74803,59.05512,19.68504,59.05512,0.7874016,59.05512,0.3937008,42.36491,0.7874016,42.36491,0.3937008,42.36491,0.3937008,42.36491,0.7874016,59.05512,0.3937008,59.05512,0.7874016,-59.05512,-19.68504,-59.05512,-15.74803,-45.04626,-19.68504,-42.36491,-15.74803,-42.61936,-24.6063,-39.04298,-29.95873,-41.82919,-17.32622,-40.66595,-19.68504,-39.20981,-22.63779,-35.91954,-27.56203,-34.79856,-34.79856,-32.01468,-32.01468,-29.95873,-39.04298,-27.56203,-35.91954,-24.6063,-42.61936,-22.63779,-39.20981,-19.68504,-45.04626,-19.68504,-40.66595,-17.32622,-41.82919,-19.68504,-59.05512,-15.74803,-59.05512,-15.74803,-42.36491,19.68504,59.05512,19.68504,45.04626,-19.68504,59.05512,8.523872,4.92126,9.093303,3.766569,9.507144,2.547431,19.68504,-45.04626,9.758316,1.284707,19.68504,-59.05512,9.84252,-3.630873E-11,7.808596,5.991746,6.959713,6.959713,5.991746,7.808596,4.92126,8.523872,3.766569,9.093303,2.547431,9.507144,1.284707,9.758316,3.612399E-11,9.84252,-1.284707,9.758316,-2.547431,9.507144,-3.766569,9.093303,-4.92126,8.523872,-5.991746,7.808596,-6.959713,6.959713,-7.808596,5.991746,-8.523872,4.92126,-9.093303,3.766569,-9.507144,2.547431,-9.758316,1.284707,-9.84252,3.656453E-11,-19.68504,-45.04626,-19.68504,-59.05512,-9.758316,-1.284707,-9.507144,-2.547431,-9.093303,-3.766569,-8.523872,-4.92126,-7.808596,-5.991746,-6.959713,-6.959713,-5.991746,-7.808596,-4.92126,-8.523872,-3.766569,-9.093303,-2.547431,-9.507144,-1.284707,-9.758316,-1.814726E-10,-9.84252,1.284707,-9.758316,2.547431,-9.507144,3.766569,-9.093303,4.92126,-8.523872,5.456503,-8.166234,5.991746,-7.808596,6.959713,-6.959713,7.808596,-5.991746,8.523872,-4.92126,9.093303,-3.766569,9.507144,-2.547431,9.758316,-1.284707,-19.68504,45.04626,-24.6063,42.61936,-24.6063,-42.61936,-29.95873,39.04298,-29.95873,-39.04298,-34.79856,34.79856,-34.79856,-34.79856,-39.04298,29.95873,-39.04298,-29.95873,-42.61936,24.6063,-42.61936,-24.6063,-45.04626,19.68504,-45.04626,-19.68504,-59.05512,19.68504,-59.05512,-19.68504,59.05512,19.68504,59.05512,-19.68504,45.04626,19.68504,45.04626,-19.68504,42.61936,-24.6063,42.61936,24.6063,39.04298,29.95873,39.04298,-29.95873,34.79856,34.79856,34.79856,-34.79856,29.95873,39.04298,29.95873,-39.04298,24.6063,42.61936,24.6063,-42.61936,-45.04626,6.661338E-16,-59.05512,8.881784E-16,-45.04626,0.7874016,-59.05512,0.7874016,-59.05512,0.3937008,-59.05512,0.7874016,-42.36491,0.3937008,-42.36491,0.7874016,2.268475,0.7874016,2.268475,-1.65541E-15,-3.218658,0.7874016,-3.218658,-1.877454E-15,45.04626,6.661338E-16,45.04626,0.7874016,59.05512,8.881784E-16,59.05512,0.7874016,3.218658,4.440892E-16,-3.218658,4.440892E-16,3.218658,0.7874016,-3.218658,0.7874016,3.218658,4.440892E-16,-3.218658,4.440892E-16,3.218658,0.7874016,-3.218658,0.7874016,3.218658,4.440892E-16,-3.218658,4.440892E-16,3.218658,0.7874016,-3.218658,0.7874016,3.218658,4.440892E-16,-3.218658,4.440892E-16,3.218658,0.7874016,-3.218658,0.7874016,-45.04626,6.661338E-16,-59.05512,8.881784E-16,-45.04626,0.7874016,-59.05512,0.7874016,-42.36491,0.3937008,-59.05512,0.3937008,-42.36491,0.7874016,-59.05512,0.7874016,-2.268475,7.626426E-16,-2.268475,0.7874016,3.218658,9.846871E-16,3.218658,0.7874016,2.268475,2.220446E-16,-3.218658,4.440892E-16,2.268475,0.7874016,-3.218658,0.7874016,3.218658,0.7874016,3.218658,4.440892E-16,-3.218658,0.7874016,-3.218658,4.440892E-16,3.218658,0.7874016,3.218658,4.440892E-16,-3.218658,0.7874016,-3.218658,4.440892E-16,3.218658,0.7874016,3.218658,4.440892E-16,-3.218658,0.7874016,-3.218658,4.440892E-16,3.218658,0.7874016,3.218658,4.440892E-16,-3.218658,0.7874016,-3.218658,4.440892E-16,3.218658,4.440892E-16,-3.218658,4.440892E-16,3.218658,0.7874016,-3.218658,0.7874016,-1.29453,0.3937008,-2.961165,0.3937008,-1.29453,0.7874016,-2.961165,0.7874016,0.3311144,0.3937008,-2.961165,0.3937008,2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,0.3311144,0.7874016,2.961165,0.3937008,-2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,2.961165,0.3937008,-0.3311144,0.3937008,2.961165,0.7874016,-2.961165,0.3937008,-2.961165,0.7874016,-0.3311144,0.7874016,3.218658,4.440892E-16,-3.218658,4.440892E-16,3.218658,0.7874016,-3.218658,0.7874016,-1.29453,0.7874016,-1.29453,0.3937008,-2.961165,0.7874016,-2.961165,0.3937008,2.961165,0.3937008,-2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,-2.961165,0.3937008,-2.961165,0.7874016,2.961165,0.3937008,2.961165,0.7874016,2.961165,0.7874016,2.961165,0.3937008,-0.3311144,0.7874016,-0.3311144,0.3937008,-2.961165,0.7874016,-2.961165,0.3937008,-3.218658,4.440892E-16,-3.218658,0.7874016,3.218658,4.440892E-16,3.218658,0.7874016,2.961165,0.7874016,2.961165,0.3937008,-2.961165,0.7874016,-2.961165,0.3937008,2.961165,0.3937008,-2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,2.961165,0.3937008,-2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,2.961165,0.7874016,2.961165,0.3937008,1.29453,0.7874016,1.29453,0.3937008,2.961165,0.3937008,-2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,-2.961165,0.3937008,-2.961165,0.7874016,-1.29453,0.3937008,-1.29453,0.7874016,-2.961165,0.3937008,-2.961165,0.7874016,2.961165,0.3937008,2.961165,0.7874016,3.218658,4.440892E-16,-3.218658,4.440892E-16,3.218658,0.7874016,-3.218658,0.7874016,0.3311144,0.3937008,-2.961165,0.3937008,2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,0.3311144,0.7874016,3.218658,4.440892E-16,-3.218658,4.440892E-16,3.218658,0.7874016,-3.218658,0.7874016,2.961165,0.7874016,2.961165,0.3937008,-2.961165,0.7874016,-2.961165,0.3937008,2.961165,0.3937008,-2.961165,0.3937008,2.961165,0.7874016,-2.961165,0.7874016,1.29453,0.3937008,1.29453,0.7874016,2.961165,0.3937008,2.961165,0.7874016,2.961165,0.7874016,2.961165,0.3937008,-2.961165,0.7874016,-2.961165,0.3937008,-3.218658,4.440892E-16,-3.218658,0.7874016,3.218658,4.440892E-16,3.218658,0.7874016,2.961165,0.7874016,2.961165,0.3937008,-2.961165,0.7874016,-2.961165,0.3937008,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-3.218658,4.440892E-16,-3.218658,0.7874016,3.218658,4.440892E-16,3.218658,0.7874016,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,-3.218658,4.440892E-16,-3.218658,0.7874016,3.218658,4.440892E-16,3.218658,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,4.440892E-16,7.780443E-13,4.440892E-16,0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-0.6437316,4.440892E-16,-0.6437316,0.7874016,0.6437316,4.440892E-16,0.6437316,0.7874016,0.6437316,0.7874016,0.6437316,4.440892E-16,-0.6437316,0.7874016,-0.6437316,4.440892E-16,0.6437316,4.440892E-16,-0.6437316,4.440892E-16,0.6437316,0.7874016,-0.6437316,0.7874016,-2.961165,0.3937008,-2.961165,0.7874016,-1.29453,0.3937008,-1.29453,0.7874016,-59.05512,9.513333E-26,-59.05512,0.7874016,-45.04626,2.220446E-16,-45.04626,0.7874016,45.04626,6.661338E-16,45.04626,0.7874016,59.05512,8.881784E-16,59.05512,0.7874016,-3.218658,-2.418052E-15,-3.218658,0.7874016,2.268475,-2.196008E-15,2.268475,0.7874016,-42.36491,0.7874016,-42.36491,0.3937008,-59.05512,0.7874016,-59.05512,0.3937008,1.29453,0.3937008,1.29453,0.7874016,2.961165,0.3937008,2.961165,0.7874016,2.961165,0.7874016,2.961165,0.3937008,0.3311144,0.7874016,0.3311144,0.3937008,-2.961165,0.7874016,-2.961165,0.3937008,59.05512,0.7874016,59.05512,0,45.04626,0.7874016,45.04626,2.220446E-16,-2.268475,2.287928E-15,-2.268475,0.7874016,3.218658,2.065883E-15,3.218658,0.7874016,59.05512,0.3937008,42.36491,0.3937008,59.05512,0.7874016,42.36491,0.7874016,3.218658,1.525285E-15,-2.268475,1.74733E-15,3.218658,0.7874016,-2.268475,0.7874016,45.04626,6.661338E-16,45.04626,0.7874016,59.05512,8.881784E-16,59.05512,0.7874016,-3.218658,2.011823E-15,-3.218658,0.7874016,2.268475,2.233868E-15,2.268475,0.7874016,3.218658,0.7874016,3.218658,1.525285E-15,-2.268475,0.7874016,-2.268475,1.74733E-15,-45.04626,0.7874016,-45.04626,6.661338E-16,-59.05512,0.7874016,-59.05512,8.881784E-16,-9.84252,-3.630873E-11,-9.758316,-1.284707,-10.22865,-5.905512,-9.370315,-7.190095,-9.507144,-2.547431,-9.093303,-3.766569,-8.351655,-8.351655,-8.523872,-4.92126,-7.808596,-5.991746,-7.190095,-9.370315,-6.959713,-6.959713,-5.905512,-10.22865,-5.991746,-7.808596,-4.92126,-8.523872,-4.519883,-10.91196,-3.766569,-9.093303,-3.056918,-11.40857,-2.547431,-9.507144,-1.541648,-11.70998,-1.284707,-9.758316,1.653007E-10,-11.81102,1.814726E-10,-9.84252,1.541648,-11.70998,1.284707,-9.758316,2.547431,-9.507144,3.056918,-11.40857,3.766569,-9.093303,4.519883,-10.91196,4.92126,-8.523872,5.905512,-10.22865,5.991746,-7.808596,7.190095,-9.370315,6.959713,-6.959713,7.808596,-5.991746,8.351655,-8.351655,8.523872,-4.92126,9.370315,-7.190095,9.093303,-3.766569,9.507144,-2.547431,10.22865,-5.905512,9.758316,-1.284707,9.84252,3.656453E-11,10.22865,5.905512,10.91196,4.519883,10.91196,-4.519883,11.40857,3.056918,11.40857,-3.056918,11.70998,1.541648,11.70998,-1.541648,11.81102,4.352207E-11,9.758316,1.284707,9.507144,2.547431,9.370315,7.190095,9.093303,3.766569,8.523872,4.92126,8.351655,8.351655,7.808596,5.991746,7.190095,9.370315,6.959713,6.959713,5.991746,7.808596,5.905512,10.22865,4.92126,8.523872,4.519883,10.91196,3.766569,9.093303,3.056918,11.40857,2.547431,9.507144,1.541648,11.70998,1.284707,9.758316,-3.612399E-11,9.84252,-4.339995E-11,11.81102,-1.284707,9.758316,-1.541648,11.70998,-2.547431,9.507144,-3.056918,11.40857,-3.766569,9.093303,-4.519883,10.91196,-4.92126,8.523872,-5.905512,10.22865,-5.991746,7.808596,-6.959713,6.959713,-7.190095,9.370315,-7.808596,5.991746,-8.351655,8.351655,-8.523872,4.92126,-9.093303,3.766569,-9.370315,7.190095,-9.507144,2.547431,-9.758316,1.284707,-10.22865,5.905512,-10.91196,-4.519883,-10.91196,4.519883,-11.40857,-3.056918,-11.40857,3.056918,-11.70998,-1.541648,-11.70998,1.541648,-11.81102,-4.350148E-11,-11.93342,-6.889764,-10.93203,-8.388445,-9.743597,-9.743597,-8.388445,-10.93203,-6.889764,-11.93342,-5.273197,-12.73062,-3.566404,-13.31,-1.798589,-13.66164,1.814726E-10,-13.77953,1.798589,-13.66164,3.566404,-13.31,5.273197,-12.73062,6.889764,-11.93342,8.388445,-10.93203,9.743597,-9.743597,10.93203,-8.388445,11.93342,-6.889764,11.93342,6.889764,12.73062,5.273197,12.73062,-5.273197,13.31,3.566404,13.31,-3.566404,13.66164,1.798589,13.66164,-1.798589,13.77953,5.088907E-11,10.93203,8.388445,9.743597,9.743597,8.388445,10.93203,6.889764,11.93342,5.273197,12.73062,3.566404,13.31,1.798589,13.66164,-5.067591E-11,13.77953,-1.798589,13.66164,-3.566404,13.31,-5.273197,12.73062,-6.889764,11.93342,-8.388445,10.93203,-9.743597,9.743597,-10.93203,8.388445,-11.93342,6.889764,-12.73062,-5.273197,-12.73062,5.273197,-13.31,-3.566404,-13.31,3.566404,-13.66164,-1.798589,-13.66164,1.798589,-13.77953,-5.086065E-11,-0.3937008,0.3937008,11.81102,0.3937008,-11.81102,0.3937008,15.74803,0.3937008,0.3937008,0.3937008,-19.68504,2.597768E-13,19.68504,2.597768E-13,19.68504,0.7874016,15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-15.74803,0.7874016,-19.68504,-3.698408E-13,15.74803,0.3937008,19.68504,-3.698408E-13,19.68504,0.7874016,15.74803,0.7874016,11.81102,0.3937008,-15.74803,0.3937008,-19.68504,0.7874016,-11.81102,0.3937008,0.3937008,0.3937008,-0.3937008,0.3937008,-15.74803,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,2.597768E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,2.597768E-13,15.74803,0.7874016,19.68504,0.7874016,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-3.689527E-13,19.68504,-3.689527E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-17.71654,-6.541256E-11,-17.56497,-2.312472,-17.73557,-23.11344,-14.56693,-25.23066,-17.11286,-4.585377,-16.36794,-6.779825,-15.34297,-8.858268,-14.05547,-10.78514,-11.14904,-26.91618,-12.52748,-12.52748,-10.78514,-14.05547,-7.540397,-28.14115,-8.858268,-15.34297,-6.779825,-16.36794,-7.445874,-28.15995,-3.802732,-28.88461,-4.585377,-17.11286,-2.312472,-17.56497,1.814726E-10,-29.13386,1.814726E-10,-17.71654,3.802732,-28.88461,2.312472,-17.56497,4.585377,-17.11286,7.445874,-28.15995,6.779825,-16.36794,8.858268,-15.34297,7.540397,-28.14115,11.14904,-26.91618,10.78514,-14.05547,12.52748,-12.52748,14.56693,-25.23066,14.05547,-10.78514,15.34297,-8.858268,17.73557,-23.11344,16.36794,-6.779825,17.11286,-4.585377,17.56497,-2.312472,17.71654,6.544099E-11,17.73557,23.11344,20.60075,20.60075,20.60075,-20.60075,23.11344,17.73557,23.11344,-17.73557,25.23066,14.56693,25.23066,-14.56693,26.91618,11.14904,26.91618,-11.14904,28.14115,7.540397,28.14115,-7.540397,28.15995,7.445874,28.15995,-7.445874,28.88461,3.802732,28.88461,-3.802732,29.13386,1.075051E-10,15.34297,8.858268,14.56693,25.23066,14.05547,10.78514,12.52748,12.52748,11.14904,26.91618,10.78514,14.05547,8.858268,15.34297,7.540397,28.14115,7.445874,28.15995,6.779825,16.36794,4.585377,17.11286,3.802732,28.88461,2.312472,17.56497,0.3937008,29.10805,-6.534151E-11,17.71654,-1.070646E-10,29.13386,-0.3937008,29.10805,-2.312472,17.56497,-3.802732,28.88461,-4.585377,17.11286,-6.779825,16.36794,-7.445874,28.15995,-7.540397,28.14115,-8.858268,15.34297,-10.78514,14.05547,-11.14904,26.91618,-12.52748,12.52748,-14.05547,10.78514,-14.56693,25.23066,-15.34297,8.858268,-16.36794,6.779825,-17.11286,4.585377,-17.56497,2.312472,-17.73557,23.11344,-20.60075,-20.60075,-20.60075,20.60075,-23.11344,-17.73557,-23.11344,17.73557,-25.23066,-14.56693,-25.23066,14.56693,-26.91618,-11.14904,-26.91618,11.14904,-28.14115,-7.540397,-28.14115,7.540397,-28.15995,-7.445874,-28.15995,7.445874,-28.88461,-3.802732,-28.88461,3.802732,-29.10805,0.3937008,-29.10805,-0.3937008,-29.13386,-1.075904E-10,16.36794,6.779825,17.11286,4.585377,17.56497,2.312472,-4.987995,-29.44996,-3.905508,-29.66528,-4.31579,-29.92053,-3.382292,-30.72583,-0.3937008,-29.89545,-2.534801,-31.6212,-1.781964,-32.59751,-1.131463,-33.64478,-0.5899354,-34.75234,-0.1629077,-35.90887,0.3937008,-29.89545,1.782325E-10,-36.53991,0.1629077,-35.90887,0.5899354,-34.75234,1.131463,-33.64478,1.781964,-32.59751,3.905508,-29.66528,2.534801,-31.6212,3.382292,-30.72583,4.31579,-29.92053,4.987995,-29.44996,0.3937008,-39.5526,0.451316,-38.40704,0.3937008,-59.05512,11.81102,-59.05512,0.6235802,-37.27304,0.9087548,-36.16205,1.303962,-35.08528,1.805212,-34.0536,2.407447,-33.07741,3.104588,-32.16658,3.8896,-31.33029,4.75456,-30.57698,5.690738,-29.91427,6.688685,-29.34883,7.669989,-28.91648,7.744192,-28.90172,11.45037,-27.64364,11.81102,-39.5526,14.96063,-25.91257,12.3487,-39.37008,15.81959,-38.19187,18.21491,-23.73813,20.66929,-35.80026,21.15753,-21.15753,25.16533,-32.7961,23.73813,-18.21491,25.91257,-14.96063,29.23079,-29.23079,27.64364,-11.45037,28.90172,-7.744192,28.91648,-7.669989,29.34883,-6.688685,32.7961,-25.16533,29.91427,-5.690738,30.57698,-4.75456,31.33029,-3.8896,32.16658,-3.104588,33.07741,-2.407447,35.80026,-20.66929,34.0536,-1.805212,35.08528,-1.303962,36.16205,-0.9087548,38.19187,-15.81959,37.27304,-0.6235802,38.40704,-0.451316,39.37008,-12.3487,39.5526,-0.3937008,39.5526,-11.81102,59.05512,-0.3937008,59.05512,-11.81102,-59.05512,-11.81102,-59.05512,-0.3937008,-39.5526,-11.81102,-39.5526,-0.3937008,-39.37008,-12.3487,-38.40704,-0.451316,-38.19187,-15.81959,-37.27304,-0.6235802,-35.80026,-20.66929,-36.16205,-0.9087548,-35.08528,-1.303962,-32.7961,-25.16533,-34.0536,-1.805212,-33.07741,-2.407447,-32.16658,-3.104588,-29.23079,-29.23079,-31.33029,-3.8896,-30.57698,-4.75456,-29.91427,-5.690738,-29.34883,-6.688685,-28.91648,-7.669989,-25.16533,-32.7961,-28.90172,-7.744192,-27.64364,-11.45037,-25.91257,-14.96063,-23.73813,-18.21491,-20.66929,-35.80026,-21.15753,-21.15753,-18.21491,-23.73813,-15.81959,-38.19187,-14.96063,-25.91257,-12.3487,-39.37008,-11.45037,-27.64364,-11.81102,-39.5526,-11.81102,-59.05512,-0.3937008,-59.05512,-7.744192,-28.90172,-7.669989,-28.91648,-6.688685,-29.34883,-5.690738,-29.91427,-4.75456,-30.57698,-3.8896,-31.33029,-3.104588,-32.16658,-2.407447,-33.07741,-1.805212,-34.0536,-1.303962,-35.08528,-0.9087548,-36.16205,-0.6235802,-37.27304,-0.451316,-38.40704,-0.3937008,-39.5526,-29.89545,-0.3937008,-29.66528,-3.905508,-29.92053,-4.31579,-29.44996,-4.987995,-29.89545,0.3937008,-29.92053,4.31579,-30.72583,-3.382292,-30.72583,3.382292,-31.6212,-2.534801,-31.6212,2.534801,-32.59751,-1.781964,-32.59751,1.781964,-33.64478,-1.131463,-33.64478,1.131463,-34.75234,-0.5899354,-34.75234,0.5899354,-35.90887,-0.1629077,-35.90887,0.1629077,-36.53991,1.088409E-10,-29.66528,3.905508,-29.44996,4.987995,0.3937008,59.05512,11.81102,59.05512,0.3937008,39.5526,0.451316,38.40704,0.6235802,37.27304,0.9087548,36.16205,1.303962,35.08528,1.805212,34.0536,2.407447,33.07741,3.104588,32.16658,3.8896,31.33029,4.75456,30.57698,5.690738,29.91427,6.688685,29.34883,7.669989,28.91648,7.744192,28.90172,11.45037,27.64364,11.81102,39.5526,14.96063,25.91257,12.3487,39.37008,15.81959,38.19187,18.21491,23.73813,20.66929,35.80026,21.15753,21.15753,25.16533,32.7961,23.73813,18.21491,25.91257,14.96063,29.23079,29.23079,27.64364,11.45037,28.90172,7.744192,28.91648,7.669989,29.34883,6.688685,32.7961,25.16533,29.91427,5.690738,30.57698,4.75456,31.33029,3.8896,32.16658,3.104588,33.07741,2.407447,35.80026,20.66929,34.0536,1.805212,35.08528,1.303962,36.16205,0.9087548,38.19187,15.81959,37.27304,0.6235802,38.40704,0.451316,39.37008,12.3487,39.5526,0.3937008,39.5526,11.81102,59.05512,11.81102,59.05512,0.3937008,29.44996,-4.987995,29.66528,-3.905508,29.92053,-4.31579,29.89545,-0.3937008,29.92053,4.31579,30.72583,3.382292,30.72583,-3.382292,31.6212,2.534801,31.6212,-2.534801,32.59751,1.781964,32.59751,-1.781964,33.64478,1.131463,33.64478,-1.131463,34.75234,0.5899354,34.75234,-0.5899354,35.90887,0.1629077,35.90887,-0.1629077,36.53991,1.122231E-10,29.89545,0.3937008,29.66528,3.905508,29.44996,4.987995,-59.05512,11.81102,-39.5526,11.81102,-59.05512,0.3937008,-39.5526,0.3937008,-38.40704,0.451316,-39.37008,12.3487,-38.19187,15.81959,-37.27304,0.6235802,-35.80026,20.66929,-36.16205,0.9087548,-35.08528,1.303962,-32.7961,25.16533,-34.0536,1.805212,-33.07741,2.407447,-32.16658,3.104588,-29.23079,29.23079,-31.33029,3.8896,-30.57698,4.75456,-29.91427,5.690738,-29.34883,6.688685,-28.91648,7.669989,-25.16533,32.7961,-28.90172,7.744192,-27.64364,11.45037,-25.91257,14.96063,-23.73813,18.21491,-20.66929,35.80026,-21.15753,21.15753,-18.21491,23.73813,-15.81959,38.19187,-14.96063,25.91257,-12.3487,39.37008,-11.45037,27.64364,-11.81102,39.5526,-0.3937008,59.05512,-11.81102,59.05512,-7.744192,28.90172,-7.669989,28.91648,-6.688685,29.34883,-5.690738,29.91427,-4.75456,30.57698,-3.8896,31.33029,-3.104588,32.16658,-2.407447,33.07741,-1.805212,34.0536,-1.303962,35.08528,-0.9087548,36.16205,-0.6235802,37.27304,-0.451316,38.40704,-0.3937008,39.5526,-4.987995,29.44996,-4.31579,29.92053,-3.905508,29.66528,-3.382292,30.72583,-0.3937008,29.89545,-2.534801,31.6212,-1.781964,32.59751,-1.131463,33.64478,-0.5899354,34.75234,-0.1629077,35.90887,0.3937008,29.89545,-1.53392E-10,36.53991,0.1629077,35.90887,0.5899354,34.75234,1.131463,33.64478,1.781964,32.59751,3.905508,29.66528,2.534801,31.6212,3.382292,30.72583,4.31579,29.92053,4.987995,29.44996,-59.05512,15.74803,-42.36491,15.74803,-41.82919,17.32622,-40.66595,19.68504,-39.20981,22.63779,-35.91954,27.56203,-32.01468,32.01468,-27.56203,35.91954,-22.63779,39.20981,-19.68504,40.66595,-17.32622,41.82919,-15.74803,42.36491,-15.74803,59.05512,-13.77953,-5.086065E-11,-13.66164,-1.798589,-13.31,-3.566404,-12.73062,-5.273197,-11.93342,-6.889764,-10.93203,-8.388445,-9.743597,-9.743597,-8.388445,-10.93203,-6.889764,-11.93342,-5.273197,-12.73062,-3.566404,-13.31,-1.798589,-13.66164,1.814726E-10,-13.77953,1.798589,-13.66164,3.566404,-13.31,5.273197,-12.73062,6.889764,-11.93342,8.388445,-10.93203,9.743597,-9.743597,10.93203,-8.388445,11.93342,-6.889764,12.73062,-5.273197,13.31,-3.566404,13.66164,-1.798589,13.77953,5.088907E-11,13.66164,1.798589,13.31,3.566404,12.73062,5.273197,11.93342,6.889764,10.93203,8.388445,9.743597,9.743597,8.388445,10.93203,6.889764,11.93342,5.273197,12.73062,3.566404,13.31,1.798589,13.66164,-5.067591E-11,13.77953,-1.798589,13.66164,-3.566404,13.31,-5.273197,12.73062,-6.889764,11.93342,-8.388445,10.93203,-9.743597,9.743597,-10.93203,8.388445,-11.93342,6.889764,-12.73062,5.273197,-13.31,3.566404,-13.66164,1.798589,15.74803,-59.05512,15.74803,-42.36491,17.32622,-41.82919,19.68504,-40.66595,22.63779,-39.20981,27.56203,-35.91954,32.01468,-32.01468,35.91954,-27.56203,39.20981,-22.63779,40.66595,-19.68504,42.36491,-15.74803,41.82919,-17.32622,59.05512,-15.74803,-42.36491,0.3937008,-59.05512,0.7874016,-59.05512,0.3937008,-42.36491,0.7874016,15.74803,59.05512,15.74803,42.36491,17.32622,41.82919,19.68504,40.66595,22.63779,39.20981,27.56203,35.91954,32.01468,32.01468,35.91954,27.56203,39.20981,22.63779,40.66595,19.68504,42.36491,15.74803,41.82919,17.32622,59.05512,15.74803,19.68504,-3.698408E-13,15.74803,0.3937008,-19.68504,-3.698408E-13,19.68504,0.7874016,15.74803,0.7874016,11.81102,0.3937008,-15.74803,0.3937008,-19.68504,0.7874016,-11.81102,0.3937008,0.3937008,0.3937008,-0.3937008,0.3937008,-15.74803,0.7874016,42.36491,0.7874016,59.05512,0.3937008,59.05512,0.7874016,42.36491,0.3937008,-59.05512,-15.74803,-42.36491,-15.74803,-41.82919,-17.32622,-40.66595,-19.68504,-39.20981,-22.63779,-35.91954,-27.56203,-32.01468,-32.01468,-27.56203,-35.91954,-22.63779,-39.20981,-19.68504,-40.66595,-17.32622,-41.82919,-15.74803,-42.36491,-15.74803,-59.05512,-45.04626,2.220446E-16,-59.05512,0.7874016,-59.05512,9.513333E-26,-45.04626,0.7874016,45.04626,0.7874016,59.05512,0,59.05512,0.7874016,45.04626,2.220446E-16 + } + UVIndex: *4908 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,9,6,11,9,10,12,9,11,13,9,12,14,9,13,15,14,13,16,14,15,17,16,15,18,16,17,19,18,17,20,18,19,21,20,19,21,22,20,23,20,22,24,22,21,25,22,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,251,253,255,254,253,256,258,257,259,257,258,260,259,258,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,325,324,327,325,326,328,330,329,331,329,330,332,329,331,333,329,332,333,332,334,335,334,332,336,334,335,337,336,335,338,336,337,339,338,337,340,338,339,341,340,339,342,340,341,343,342,341,344,342,343,345,344,343,346,345,343,347,346,343,348,346,347,349,348,347,350,352,351,353,351,352,354,356,355,357,355,356,358,355,357,359,355,358,360,359,358,361,360,358,362,360,361,363,360,362,364,363,362,365,363,364,366,365,364,367,365,366,368,367,366,369,367,368,370,369,368,371,369,370,372,369,371,373,369,372,374,373,372,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,387,386,389,387,388,390,387,389,391,390,389,392,391,389,393,392,389,394,393,389,395,393,394,396,395,394,397,395,396,398,397,396,399,397,398,400,399,398,401,399,400,402,401,400,403,402,400,404,402,403,405,402,404,406,408,407,409,407,408,410,407,409,411,407,410,412,407,411,413,412,411,414,412,413,415,414,413,416,409,408,417,416,408,418,417,408,419,418,408,420,419,408,421,420,408,422,421,408,423,422,408,424,423,408,425,424,408,426,425,408,427,426,408,428,427,408,429,428,408,430,429,408,431,430,408,432,431,408,433,432,408,434,433,408,435,434,408,408,436,435,436,437,435,435,437,438,438,437,439,439,437,440,440,437,441,441,437,442,442,437,443,443,437,444,444,437,445,445,437,446,446,437,447,447,437,448,448,437,449,449,437,450,450,437,451,451,437,452,452,437,453,453,437,454,454,437,455,455,437,456,456,437,457,457,437,458,437,414,458,459,458,414,460,459,414,461,460,414,415,461,414,462,463,436,464,436,463,465,464,463,466,464,465,467,466,465,468,466,467,469,468,467,470,468,469,471,470,469,472,470,471,473,472,471,474,472,473,475,474,473,476,474,475,462,436,408,477,479,478,480,478,479,481,480,479,482,481,479,483,481,482,484,481,483,485,484,483,486,484,485,487,486,485,488,486,487,489,488,487,490,488,489,407,490,489,412,490,407,491,493,492,494,492,493,495,497,496,498,496,497,499,501,500,502,500,501,503,505,504,506,504,505,507,509,508,510,508,509,511,513,512,514,512,513,515,517,516,518,516,517,519,521,520,522,520,521,523,525,524,526,524,525,527,529,528,530,528,529,531,533,532,534,532,533,535,537,536,538,536,537,539,541,540,542,540,541,543,545,544,546,544,545,547,549,548,550,548,549,551,553,552,554,552,553,555,557,556,558,556,557,559,561,560,562,560,561,563,565,564,566,564,565,567,564,566,568,567,566,569,571,570,572,570,571,573,575,574,576,574,575,577,576,575,578,577,575,579,581,580,582,580,581,583,585,584,586,584,585,587,589,588,590,588,589,591,593,592,594,592,593,595,597,596,598,596,597,599,598,597,600,598,599,601,603,602,604,602,603,605,607,606,608,606,607,609,611,610,612,610,611,613,615,614,616,614,615,617,619,618,620,618,619,621,623,622,624,622,623,625,627,626,628,626,627,629,631,630,632,630,631,633,635,634,636,634,635,637,639,638,640,638,639,641,638,640,642,641,640,643,645,644,646,644,645,647,649,648,650,648,649,651,653,652,654,652,653,655,657,656,658,656,657,659,661,660,662,660,661,663,665,664,666,664,665,667,669,668,670,668,669,671,673,672,674,672,673,675,677,676,678,676,677,679,681,680,682,680,681,683,685,684,686,684,685,687,689,688,690,688,689,691,693,692,694,692,693,695,697,696,698,696,697,699,701,700,702,700,701,703,705,704,706,704,705,707,709,708,710,708,709,711,713,712,714,712,713,715,717,716,718,716,717,719,721,720,722,720,721,723,725,724,726,724,725,727,729,728,730,728,729,731,733,732,734,732,733,735,737,736,738,736,737,739,741,740,742,740,741,743,745,744,746,744,745,747,749,748,750,748,749,751,753,752,754,752,753,755,754,753,756,758,757,759,757,758,760,762,761,763,761,762,764,766,765,767,765,766,768,770,769,771,769,770,772,774,773,775,773,774,776,778,777,779,777,778,780,782,781,783,781,782,784,786,785,787,785,786,788,790,789,791,789,790,792,794,793,795,793,794,796,798,797,799,797,798,800,802,801,803,801,802,804,806,805,807,805,806,808,810,809,811,809,810,812,814,813,815,813,814,816,818,817,819,817,818,820,822,821,823,821,822,824,826,825,827,825,826,828,827,826,829,827,828,830,832,831,833,831,832,834,836,835,837,835,836,838,840,839,841,839,840,842,844,843,845,843,844,846,848,847,849,847,848,850,852,851,853,851,852,854,856,855,857,855,856,858,860,859,861,859,860,862,864,863,865,863,864,866,863,865,867,866,865,868,867,865,869,867,868,870,869,868,871,870,868,872,870,871,873,872,871,874,872,873,875,874,873,876,875,873,877,875,876,878,877,876,879,877,878,880,879,878,881,879,880,882,881,880,883,881,882,884,883,882,885,883,884,886,885,884,887,886,884,888,886,887,889,888,887,890,888,889,891,890,889,892,890,891,893,892,891,894,892,893,895,894,893,896,895,893,897,895,896,898,897,896,899,897,898,900,899,898,901,900,898,902,900,901,903,902,901,904,903,901,905,904,901,906,905,901,907,905,906,908,907,906,909,907,908,910,909,908,911,909,910,903,904,912,912,904,913,904,914,913,913,914,915,915,914,916,914,917,916,916,917,918,917,919,918,918,919,920,920,919,921,919,922,921,921,922,923,922,924,923,923,924,925,924,926,925,925,926,927,926,928,927,927,928,929,929,928,930,928,931,930,930,931,932,931,933,932,932,933,934,933,935,934,934,935,936,935,937,936,936,937,938,937,939,938,938,939,940,940,939,941,939,942,941,941,942,943,942,944,943,943,944,945,945,944,946,944,947,946,946,947,948,948,947,949,947,950,949,949,950,862,862,950,864,864,950,951,950,952,951,951,952,953,952,954,953,953,954,955,954,956,955,957,955,956,957,958,955,959,955,958,953,955,959,951,953,959,960,951,959,864,951,960,865,864,960,961,865,960,868,865,961,962,868,961,871,868,962,873,871,962,963,873,962,876,873,963,964,876,963,878,876,964,965,878,964,880,878,965,966,880,965,882,880,966,884,882,966,967,884,966,887,884,967,968,887,967,889,887,968,969,889,968,891,889,969,970,891,969,893,891,970,971,893,970,896,893,971,898,896,971,972,898,971,901,898,972,973,901,972,906,901,973,908,906,973,974,908,973,910,908,974,911,910,974,975,911,974,976,975,974,977,976,974,978,976,977,979,978,977,980,978,979,981,980,979,982,980,981,911,975,909,909,975,907,975,983,907,907,983,905,905,983,904,983,984,904,904,984,914,984,985,914,914,985,917,917,985,919,985,986,919,919,986,922,986,987,922,922,987,924,987,988,924,924,988,926,988,989,926,926,989,928,928,989,931,989,990,931,931,990,933,990,991,933,933,991,935,991,992,935,935,992,937,992,993,937,937,993,939,993,994,939,939,994,942,942,994,944,994,995,944,944,995,947,995,996,947,947,996,950,950,996,952,996,997,952,952,997,954,954,997,956,997,998,956,956,998,957,957,998,958,958,998,999,998,1000,999,999,1000,1001,1000,1002,1001,1001,1002,1003,1002,1004,1003,1005,1003,1004,1006,1008,1007,1009,1007,1008,1010,1006,1007,1008,1011,1009,1011,1012,1009,1013,1009,1012,1014,1009,1013,1008,1015,1011,1016,1011,1015,1017,1016,1015,1018,1020,1019,1021,1019,1020,1022,1019,1021,1019,1023,1018,1023,1024,1018,1025,1018,1024,1026,1024,1023,1023,1027,1026,1028,1026,1027,1029,1025,1024,1030,1032,1031,1032,1033,1031,1031,1033,1034,1034,1033,1035,1035,1033,1036,1036,1033,1037,1037,1033,1038,1033,1039,1038,1038,1039,1040,1041,1040,1039,1042,1044,1043,1045,1043,1044,1046,1043,1045,1047,1046,1045,1048,1047,1045,1049,1048,1045,1050,1049,1045,1051,1050,1045,1052,1051,1045,1043,1053,1042,1054,1056,1055,1057,1055,1056,1058,1055,1057,1059,1058,1057,1060,1059,1057,1061,1060,1057,1062,1061,1057,1063,1061,1062,1064,1063,1062,1065,1064,1062,1066,1064,1065,1067,1066,1065,1068,1067,1065,1069,1067,1068,1070,1067,1069,1071,1070,1069,1072,1071,1069,1073,1071,1072,1074,1073,1072,1075,1073,1074,1076,1075,1074,1077,1076,1074,1078,1076,1077,1079,1078,1077,1080,1079,1077,1081,1079,1080,1082,1079,1081,1083,1082,1081,1084,1083,1081,1085,1083,1084,1086,1085,1084,1087,1086,1084,1088,1086,1087,1089,1088,1087,1090,1089,1087,1091,1090,1087,1092,1091,1087,1093,1092,1087,1094,1093,1087,1095,1093,1094,1096,1095,1094,1097,1095,1096,1098,1097,1096,1099,1097,1098,1100,1099,1098,1101,1099,1100,1102,1101,1100,1103,1101,1102,1104,1103,1102,1105,1103,1104,1106,1105,1104,1107,1105,1106,1092,1109,1108,1108,1109,1110,1110,1109,1111,1109,1112,1111,1111,1112,1113,1113,1112,1114,1112,1115,1114,1115,1116,1114,1114,1116,1117,1117,1116,1118,1116,1119,1118,1118,1119,1120,1119,1121,1120,1120,1121,1122,1121,1123,1122,1123,1124,1122,1122,1124,1125,1124,1126,1125,1125,1126,1127,1127,1126,1128,1126,1129,1128,1129,1130,1128,1128,1130,1131,1131,1130,1132,1130,1133,1132,1132,1133,1134,1134,1133,1135,1133,1136,1135,1135,1136,1137,1137,1136,1138,1138,1136,1139,1139,1136,1140,1136,1141,1140,1140,1141,1054,1054,1141,1056,1056,1141,1142,1141,1143,1142,1142,1143,1144,1143,1145,1144,1144,1145,1146,1145,1147,1146,1146,1147,1148,1147,1149,1148,1148,1149,1150,1149,1151,1150,1150,1151,1152,1151,1153,1152,1152,1153,1154,1153,1155,1154,1155,1156,1154,1154,1156,1157,1158,1157,1156,1159,1092,1108,1160,1092,1159,1161,1092,1160,1091,1092,1161,1162,1164,1163,1165,1163,1164,1166,1163,1165,1167,1166,1165,1168,1166,1167,1169,1166,1168,1170,1166,1169,1171,1166,1170,1172,1166,1171,1173,1172,1171,1174,1172,1173,1175,1172,1174,1176,1172,1175,1177,1172,1176,1178,1172,1177,1179,1178,1177,1180,1178,1179,1181,1178,1180,1182,1178,1181,1183,1185,1184,1186,1184,1185,1187,1184,1186,1188,1187,1186,1189,1188,1186,1190,1189,1186,1191,1190,1186,1192,1191,1186,1193,1192,1186,1194,1193,1186,1195,1194,1186,1196,1195,1186,1197,1196,1186,1198,1197,1186,1199,1198,1186,1200,1199,1186,1199,1200,1201,1202,1201,1200,1203,1201,1202,1204,1201,1203,1205,1204,1203,1206,1204,1205,1207,1206,1205,1208,1206,1207,1209,1208,1207,1210,1209,1207,1211,1209,1210,1212,1211,1210,1213,1212,1210,1214,1213,1210,1215,1214,1210,1216,1214,1215,1217,1216,1215,1218,1217,1215,1219,1218,1215,1220,1219,1215,1221,1220,1215,1222,1220,1221,1223,1222,1221,1224,1223,1221,1225,1224,1221,1226,1224,1225,1227,1226,1225,1228,1227,1225,1229,1227,1228,1230,1229,1228,1231,1229,1230,1232,1231,1230,1233,1235,1234,1236,1234,1235,1237,1236,1235,1238,1236,1237,1239,1238,1237,1240,1238,1239,1241,1240,1239,1242,1240,1241,1243,1242,1241,1244,1243,1241,1245,1243,1244,1246,1245,1244,1247,1246,1244,1248,1247,1244,1249,1247,1248,1250,1249,1248,1251,1250,1248,1252,1251,1248,1253,1252,1248,1254,1253,1248,1255,1253,1254,1256,1255,1254,1257,1256,1254,1258,1257,1254,1259,1258,1254,1260,1258,1259,1261,1260,1259,1262,1261,1259,1263,1261,1262,1264,1263,1262,1265,1263,1264,1266,1265,1264,1267,1265,1266,1268,1265,1267,1269,1265,1268,1270,1269,1268,1271,1270,1268,1272,1271,1268,1273,1272,1268,1274,1273,1268,1275,1274,1268,1276,1275,1268,1277,1276,1268,1278,1277,1268,1279,1278,1268,1280,1279,1268,1281,1280,1268,1282,1281,1268,1283,1285,1284,1286,1284,1285,1283,1287,1285,1287,1288,1285,1285,1288,1289,1288,1290,1289,1289,1290,1291,1290,1292,1291,1291,1292,1293,1292,1294,1293,1293,1294,1295,1294,1296,1295,1295,1296,1297,1296,1298,1297,1297,1298,1299,1298,1300,1299,1301,1299,1300,1302,1288,1287,1303,1288,1302,1304,1306,1305,1307,1305,1306,1308,1305,1307,1309,1305,1308,1310,1305,1309,1311,1305,1310,1312,1305,1311,1313,1305,1312,1314,1305,1313,1315,1305,1314,1316,1305,1315,1317,1305,1316,1318,1305,1317,1319,1305,1318,1320,1305,1319,1321,1305,1320,1322,1321,1320,1323,1321,1322,1324,1323,1322,1325,1324,1322,1326,1324,1325,1327,1326,1325,1328,1326,1327,1329,1328,1327,1330,1328,1329,1331,1328,1330,1332,1331,1330,1333,1331,1332,1334,1331,1333,1335,1331,1334,1336,1331,1335,1337,1336,1335,1338,1336,1337,1339,1336,1338,1340,1336,1339,1341,1336,1340,1342,1336,1341,1343,1342,1341,1344,1342,1343,1345,1342,1344,1346,1342,1345,1347,1346,1345,1348,1346,1347,1349,1346,1348,1350,1349,1348,1351,1349,1350,1352,1351,1350,1353,1352,1350,1354,1356,1355,1357,1355,1356,1358,1357,1356,1359,1358,1356,1360,1359,1356,1361,1359,1360,1362,1361,1360,1363,1361,1362,1364,1363,1362,1365,1363,1364,1366,1365,1364,1367,1365,1366,1368,1367,1366,1369,1367,1368,1370,1369,1368,1371,1369,1370,1357,1358,1372,1372,1358,1373,1374,1373,1358,1375,1377,1376,1378,1376,1377,1379,1376,1378,1380,1376,1379,1381,1380,1379,1382,1381,1379,1383,1381,1382,1384,1383,1382,1385,1383,1384,1386,1383,1385,1387,1386,1385,1388,1386,1387,1389,1386,1388,1390,1386,1389,1391,1390,1389,1392,1390,1391,1393,1390,1392,1394,1390,1393,1395,1390,1394,1396,1390,1395,1397,1396,1395,1398,1396,1397,1399,1396,1398,1400,1396,1399,1401,1396,1400,1402,1401,1400,1403,1401,1402,1404,1401,1403,1405,1404,1403,1406,1404,1405,1407,1406,1405,1408,1406,1407,1407,1409,1408,1410,1408,1409,1411,1409,1407,1412,1409,1411,1413,1409,1412,1414,1409,1413,1415,1409,1414,1416,1409,1415,1417,1409,1416,1418,1409,1417,1419,1409,1418,1420,1409,1419,1421,1409,1420,1422,1409,1421,1423,1409,1422,1424,1409,1423,1425,1427,1426,1428,1426,1427,1429,1428,1427,1430,1428,1429,1431,1430,1429,1432,1431,1429,1433,1432,1429,1434,1433,1429,1435,1434,1429,1436,1434,1435,1437,1436,1435,1438,1437,1435,1439,1438,1435,1440,1439,1435,1441,1440,1435,1442,1440,1441,1443,1442,1441,1444,1443,1441,1445,1444,1441,1374,1214,1354,1216,1354,1214,1356,1354,1216,1217,1356,1216,1360,1356,1217,1218,1360,1217,1362,1360,1218,1219,1362,1218,1364,1362,1219,1220,1364,1219,1366,1364,1220,1222,1366,1220,1368,1366,1222,1223,1368,1222,1370,1368,1223,1224,1370,1223,1371,1370,1224,1226,1371,1224,1347,1371,1226,1348,1347,1226,1227,1348,1226,1350,1348,1227,1229,1350,1227,1353,1350,1229,1231,1353,1229,1347,1345,1371,1371,1345,1369,1345,1344,1369,1369,1344,1367,1344,1343,1367,1367,1343,1365,1343,1341,1365,1365,1341,1363,1341,1340,1363,1363,1340,1361,1340,1339,1361,1361,1339,1359,1339,1338,1359,1359,1338,1358,1338,1337,1358,1358,1337,1374,1337,1335,1374,1374,1335,1214,1335,1107,1214,1214,1107,1213,1213,1107,1212,1107,1106,1212,1106,1104,1212,1104,1102,1212,1212,1102,1211,1102,1100,1211,1211,1100,1209,1100,1098,1209,1209,1098,1208,1098,1096,1208,1208,1096,1206,1096,1094,1206,1206,1094,1204,1094,1087,1204,1204,1087,1201,1087,1084,1201,1201,1084,1199,1084,1081,1199,1199,1081,1198,1198,1081,1197,1081,1080,1197,1080,1077,1197,1197,1077,1196,1196,1077,1195,1195,1077,1182,1182,1077,1178,1077,1074,1178,1178,1074,1172,1074,1072,1172,1172,1072,1166,1072,1069,1166,1166,1069,1163,1163,1069,1162,1162,1069,1271,1069,1068,1271,1068,1065,1271,1271,1065,1270,1270,1065,1269,1065,1062,1269,1269,1062,1265,1062,1057,1265,1265,1057,1263,1057,1056,1263,1263,1056,1261,1056,1142,1261,1261,1142,1260,1142,1144,1260,1260,1144,1258,1144,1146,1258,1258,1146,1257,1146,1148,1257,1257,1148,1256,1148,1150,1256,1150,1152,1256,1152,1154,1256,1256,1154,1255,1255,1154,1253,1154,1157,1253,1157,1158,1253,1252,1253,1158,1158,1395,1252,1395,1394,1252,1394,1303,1252,1394,1393,1303,1303,1393,1288,1393,1392,1288,1288,1392,1290,1392,1391,1290,1290,1391,1292,1391,1389,1292,1292,1389,1294,1389,1388,1294,1294,1388,1296,1388,1387,1296,1296,1387,1298,1387,1385,1298,1298,1385,1300,1385,1384,1300,1300,1384,1301,1301,1384,1240,1384,1382,1240,1240,1382,1238,1382,1379,1238,1379,1378,1238,1238,1378,1236,1378,1377,1236,1234,1236,1377,1240,1242,1301,1299,1301,1242,1243,1299,1242,1297,1299,1243,1245,1297,1243,1295,1297,1245,1246,1295,1245,1293,1295,1246,1247,1293,1246,1291,1293,1247,1249,1291,1247,1289,1291,1249,1250,1289,1249,1285,1289,1250,1251,1285,1250,1286,1285,1251,1252,1286,1251,1303,1286,1252,1286,1303,1284,1303,1302,1284,1302,1287,1284,1283,1284,1287,1272,1162,1271,1272,1273,1162,1164,1162,1273,1274,1164,1273,1165,1164,1274,1275,1165,1274,1167,1165,1275,1276,1167,1275,1168,1167,1276,1277,1168,1276,1278,1168,1277,1169,1168,1278,1279,1169,1278,1170,1169,1279,1280,1170,1279,1281,1170,1280,1171,1170,1281,1282,1171,1281,1268,1171,1282,1185,1171,1268,1173,1171,1185,1174,1173,1185,1183,1174,1185,1174,1183,1175,1184,1175,1183,1187,1175,1184,1176,1175,1187,1188,1176,1187,1189,1176,1188,1177,1176,1189,1190,1177,1189,1179,1177,1190,1191,1179,1190,1192,1179,1191,1180,1179,1192,1193,1180,1192,1181,1180,1193,1194,1181,1193,1182,1181,1194,1195,1182,1194,1374,1354,1373,1355,1373,1354,1372,1373,1355,1357,1372,1355,1414,1425,1415,1426,1415,1425,1416,1415,1426,1428,1416,1426,1417,1416,1428,1430,1417,1428,1418,1417,1430,1431,1418,1430,1419,1418,1431,1420,1419,1431,1432,1420,1431,1421,1420,1432,1433,1421,1432,1422,1421,1433,1423,1422,1433,1434,1423,1433,1424,1423,1434,1434,1304,1424,1409,1424,1304,1436,1304,1434,1437,1304,1436,1306,1304,1437,1438,1306,1437,1307,1306,1438,1308,1307,1438,1439,1308,1438,1309,1308,1439,1310,1309,1439,1440,1310,1439,1311,1310,1440,1442,1311,1440,1312,1311,1442,1313,1312,1442,1443,1313,1442,1314,1313,1443,1444,1314,1443,1315,1314,1444,1445,1315,1444,1316,1315,1445,1316,1445,1116,1445,1441,1116,1116,1441,1119,1441,1435,1119,1119,1435,1121,1121,1435,1123,1435,1429,1123,1123,1429,1124,1124,1429,1126,1429,1427,1126,1427,1425,1126,1425,1413,1126,1126,1413,1129,1129,1413,1130,1413,1412,1130,1412,1411,1130,1130,1411,1133,1411,1407,1133,1133,1407,1136,1407,1405,1136,1136,1405,1141,1405,1403,1141,1141,1403,1143,1403,1402,1143,1143,1402,1145,1402,1400,1145,1145,1400,1147,1400,1399,1147,1147,1399,1149,1399,1398,1149,1149,1398,1151,1151,1398,1153,1153,1398,1155,1398,1397,1155,1397,1395,1155,1155,1395,1156,1156,1395,1158,1414,1413,1425,1317,1316,1116,1318,1317,1116,1115,1318,1116,1112,1318,1115,1319,1318,1112,1320,1319,1112,1109,1320,1112,1322,1320,1109,1092,1322,1109,1325,1322,1092,1093,1325,1092,1327,1325,1093,1095,1327,1093,1329,1327,1095,1097,1329,1095,1330,1329,1097,1099,1330,1097,1332,1330,1099,1101,1332,1099,1333,1332,1101,1103,1333,1101,1105,1333,1103,1107,1333,1105,1334,1333,1107,1335,1334,1107,1375,1376,1446,1447,1446,1376,1448,1447,1376,1449,1448,1376,1450,1449,1376,1380,1450,1376,1381,1450,1380,1451,1450,1381,1383,1451,1381,1452,1451,1383,1386,1452,1383,1390,1452,1386,1453,1452,1390,1396,1453,1390,1454,1453,1396,1401,1454,1396,1455,1454,1401,1404,1455,1401,1456,1455,1404,1457,1456,1404,1406,1457,1404,1406,1410,1457,1458,1457,1410,1408,1410,1406,1459,1061,1460,1063,1460,1061,1461,1460,1063,1462,1461,1063,1463,1462,1063,1064,1463,1063,1464,1463,1064,1465,1464,1064,1066,1465,1064,1466,1465,1066,1067,1466,1066,1467,1466,1067,1468,1467,1067,1070,1468,1067,1469,1468,1070,1071,1469,1070,1470,1469,1071,1073,1470,1071,1471,1470,1073,1075,1471,1073,1472,1471,1075,1473,1472,1075,1076,1473,1075,1474,1473,1076,1078,1474,1076,1475,1474,1078,1079,1475,1078,1476,1475,1079,1477,1476,1079,1082,1477,1079,1478,1477,1082,1083,1478,1082,1479,1478,1083,1480,1479,1083,1085,1480,1083,1481,1480,1085,1482,1481,1085,1483,1482,1085,1110,1483,1085,1108,1110,1085,1086,1108,1085,1159,1108,1086,1088,1159,1086,1160,1159,1088,1089,1160,1088,1161,1160,1089,1090,1161,1089,1091,1161,1090,1483,1110,1484,1484,1110,1485,1485,1110,1486,1110,1111,1486,1486,1111,1487,1487,1111,1488,1111,1113,1488,1488,1113,1489,1113,1114,1489,1489,1114,1490,1490,1114,1491,1114,1117,1491,1491,1117,1492,1117,1118,1492,1492,1118,1493,1118,1120,1493,1493,1120,1494,1494,1120,1495,1120,1122,1495,1495,1122,1496,1122,1125,1496,1496,1125,1497,1125,1127,1497,1497,1127,1498,1127,1128,1498,1498,1128,1499,1499,1128,1500,1128,1131,1500,1500,1131,1501,1131,1132,1501,1501,1132,1502,1502,1132,1503,1132,1134,1503,1503,1134,1504,1504,1134,1505,1505,1134,1506,1134,1135,1506,1506,1135,1459,1459,1135,1061,1061,1135,1060,1135,1137,1060,1060,1137,1059,1137,1138,1059,1059,1138,1058,1138,1139,1058,1058,1139,1055,1139,1140,1055,1054,1055,1140,1200,1186,1202,1507,1202,1186,1508,1202,1507,1202,1508,1203,1509,1203,1508,1205,1203,1509,1510,1205,1509,1511,1205,1510,1207,1205,1511,1512,1207,1511,1210,1207,1512,1513,1210,1512,1215,1210,1513,1514,1215,1513,1221,1215,1514,1225,1221,1514,1515,1225,1514,1228,1225,1515,1516,1228,1515,1230,1228,1516,1517,1230,1516,1232,1230,1517,1518,1517,1516,1519,1232,1517,1520,1522,1521,1521,1523,1520,1305,1321,1524,1323,1524,1321,1525,1524,1323,1324,1525,1323,1526,1525,1324,1326,1526,1324,1527,1526,1326,1528,1527,1326,1328,1528,1326,1529,1528,1328,1331,1529,1328,1530,1529,1331,1336,1530,1331,1531,1530,1336,1342,1531,1336,1346,1531,1342,1532,1531,1346,1349,1532,1346,1533,1532,1349,1351,1533,1349,1534,1533,1351,1352,1534,1351,1535,1533,1534,1536,1534,1352,1537,1539,1538,1538,1540,1537,1538,1541,1540,1542,1538,1539,1543,1542,1539,1539,1544,1543,1543,1545,1542,1546,1542,1545,1545,1547,1546,1544,1548,1543,1549,1551,1550,1550,1552,1549,1553,1554,1233,1235,1233,1554,1555,1235,1554,1556,1235,1555,1557,1235,1556,1237,1235,1557,1239,1237,1557,1558,1239,1557,1241,1239,1558,1559,1241,1558,1244,1241,1559,1248,1244,1559,1560,1248,1559,1254,1248,1560,1561,1254,1560,1259,1254,1561,1562,1259,1561,1262,1259,1562,1563,1262,1562,1564,1262,1563,1264,1262,1564,1565,1264,1564,1267,1264,1565,1266,1264,1267,1566,1568,1567,1567,1569,1566,1570,1572,1571,1571,1573,1570 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *1636 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_roundabout, Model::RootNode + C: "OO",5412251054864682022,0 + + ;Geometry::, Model::Mesh road_roundabout + C: "OO",5061003295387108769,5412251054864682022 + + ;Material::pavement, Model::Mesh road_roundabout + C: "OO",17046,5412251054864682022 + + ;Material::asphalt, Model::Mesh road_roundabout + C: "OO",9934,5412251054864682022 + + ;Material::line, Model::Mesh road_roundabout + C: "OO",9174,5412251054864682022 + + ;Material::asphaltEdge, Model::Mesh road_roundabout + C: "OO",17042,5412251054864682022 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundabout.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundabout.fbx.import new file mode 100644 index 0000000..99d4340 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundabout.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bw5ml76eruovo" +path="res://.godot/imported/road_roundabout.fbx-7985b4afcb505561cc98fa6ced235e54.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_roundabout.fbx" +dest_files=["res://.godot/imported/road_roundabout.fbx-7985b4afcb505561cc98fa6ced235e54.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundaboutBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundaboutBarrier.fbx new file mode 100644 index 0000000..ce39f2d --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundaboutBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 21 + Millisecond: 307 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_roundaboutBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_roundaboutBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4614758305484236636, "Model::road_roundaboutBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5755905804937011107, "Geometry::", "Mesh" { + Vertices: *3462 { + a: 6.012279,8.177902E-16,-10.71042,5.268393,9.587886E-16,-11.10142,6.168708,0.8,-10.73149,5.446254,0.8,-11.11123,6.25,1.015188E-15,-10.82532,6.25,0.8,-10.82532,5,1.071587E-15,-11.44175,5,0.8,-11.44175,9.916917,0.8,-7.609518,9.916917,1.015188E-15,-7.609518,10.82532,0.8,-6.25,10.82532,1.015188E-15,-6.25,8.838834,0.8,-8.838834,8.838834,1.015188E-15,-8.838834,9.916917,0.8,-7.609518,9.916917,1.015188E-15,-7.609518,6.25,1.015188E-15,-10.82532,7.609518,1.015188E-15,-9.916917,6.25,0.8,-10.82532,7.609518,0.8,-9.916917,5.268393,9.587886E-16,-11.10142,4.5,1.127987E-15,-11.44175,5.446254,0.8,-11.11123,4.575,0.3000006,-11.44175,4.7,0.8,-11.44175,10.82532,0.8,-6.25,10.82532,1.015188E-15,-6.25,11.44175,0.8,-5,11.44175,1.184386E-15,-5,7.609518,1.015188E-15,-9.916917,8.838834,1.015188E-15,-8.838834,7.609518,0.8,-9.916917,8.838834,0.8,-8.838834,6.728323,7.049916E-16,-10.27049,6.012279,8.177902E-16,-10.71042,6.864121,0.8,-10.30424,6.168708,0.8,-10.73149,9.315081,0.8,-8.161482,9.831395,0.8,-7.529374,9.25199,6.485922E-16,-8.06417,9.783623,7.331912E-16,-7.413311,10.30424,0.8,-6.864121,10.73149,0.8,-6.168708,10.27049,8.459899E-16,-6.728323,10.71042,9.869883E-16,-6.012279,8.67798,6.203926E-16,-8.677982,8.06417,6.203926E-16,-9.25199,8.757608,0.8,-8.757608,8.161482,0.8,-9.315081,11.11123,0.8,-5.446254,11.44175,0.8,-4.7,11.10142,1.156186E-15,-5.268393,11.44175,1.353584E-15,-4.5,8.757608,0.8,-8.757608,9.315081,0.8,-8.161482,8.67798,6.203926E-16,-8.677982,9.25199,6.485922E-16,-8.06417,10.73149,0.8,-6.168708,11.11123,0.8,-5.446254,10.71042,9.869883E-16,-6.012279,11.10142,1.156186E-15,-5.268393,8.06417,6.203926E-16,-9.25199,7.413311,6.485922E-16,-9.783623,8.161482,0.8,-9.315081,7.529374,0.8,-9.831395,7.413311,6.485922E-16,-9.783623,6.728323,7.049916E-16,-10.27049,7.529374,0.8,-9.831395,6.864121,0.8,-10.30424,9.831395,0.8,-7.529374,10.30424,0.8,-6.864121,9.783623,7.331912E-16,-7.413311,10.27049,8.459899E-16,-6.728323,15,1.353584E-15,-4.5,11.44175,1.353584E-15,-4.5,15,0.8,-4.7,11.44175,0.8,-4.7,15,0.8,-5,15,1.353584E-15,-5,15,0.8,-4.7,15,1.353584E-15,-4.5,11.44175,1.579181E-15,4.5,15,1.579181E-15,4.5,11.44175,0.8,4.7,15,0.8,4.7,15,1.353584E-15,-4.5,15,1.353584E-15,-5,11.44175,1.353584E-15,-4.5,11.44175,1.184386E-15,-5,11.10142,1.156186E-15,-5.268393,10.82532,1.015188E-15,-6.25,10.71042,9.869883E-16,-6.012279,9.916917,1.015188E-15,-7.609518,10.27049,8.459899E-16,-6.728323,9.783623,7.331912E-16,-7.413311,8.838834,1.015188E-15,-8.838834,9.25199,6.485922E-16,-8.06417,8.67798,6.203926E-16,-8.677982,7.609518,1.015188E-15,-9.916917,8.06417,6.203926E-16,-9.25199,7.413311,6.485922E-16,-9.783623,6.25,1.015188E-15,-10.82532,6.728323,7.049916E-16,-10.27049,6.012279,8.177902E-16,-10.71042,5,1.071587E-15,-11.44175,5.268393,9.587886E-16,-11.10142,4.5,1.127987E-15,-11.44175,5,1.127987E-15,-15,4.5,1.127987E-15,-15,15,1.579181E-15,5,11.44175,1.579181E-15,5,15,0.8,5,11.44175,0.8,5,15,1.579181E-15,4.5,15,1.579181E-15,5,15,0.8,4.7,15,0.8,5,11.44175,1.184386E-15,-5,15,1.353584E-15,-5,11.44175,0.8,-5,15,0.8,-5,4.5,1.127987E-15,-15,5,1.127987E-15,-15,4.7,0.8,-15,5,0.8,-15,15,0.8,-4.7,11.44175,0.8,-4.7,15,0.8,-5,11.44175,0.8,-5,11.11123,0.8,-5.446254,10.82532,0.8,-6.25,10.73149,0.8,-6.168708,9.916917,0.8,-7.609518,10.30424,0.8,-6.864121,9.831395,0.8,-7.529374,8.838834,0.8,-8.838834,9.315081,0.8,-8.161482,8.757608,0.8,-8.757608,7.609518,0.8,-9.916917,8.161482,0.8,-9.315081,7.529374,0.8,-9.831395,6.25,0.8,-10.82532,6.864121,0.8,-10.30424,6.168708,0.8,-10.73149,5,0.8,-11.44175,5.446254,0.8,-11.11123,4.7,0.8,-11.44175,5,0.8,-15,4.7,0.8,-15,-5,1.353584E-15,-15,-4.5,1.353584E-15,-15,-5,0.8,-15,-4.7,0.8,-15,-4.7,0.8,-15,-4.5,1.353584E-15,-15,-4.7,0.8,-11.44175,-4.5,1.353584E-15,-11.44175,4.5,1.127987E-15,-15,4.7,0.8,-15,4.5,1.127987E-15,-11.44175,4.575,0.3000006,-11.44175,4.7,0.8,-11.44175,5,0.8,-15,5,1.127987E-15,-15,5,0.8,-11.44175,5,1.071587E-15,-11.44175,-5,1.353584E-15,-15,-5,0.8,-15,-5,1.353584E-15,-11.44175,-5,0.8,-11.44175,-2.7,0.8,-7.452476E-08,-2.676901,0.8,0.3524207,-3,1.127987E-15,-7.452356E-08,-2.974335,1.127987E-15,0.3915785,-0.7764571,1.127987E-15,2.897777,-1.14805,1.127987E-15,2.771638,-0.6988114,0.8,2.608,-1.033245,0.8,2.494475,-1.5,1.127987E-15,2.598076,-1.826284,1.127987E-15,2.38006,-1.35,0.8,2.338269,-1.643656,0.8,2.142054,-2.771638,1.127987E-15,-1.14805,-2.494475,0.8,-1.033245,-2.897778,1.127987E-15,-0.7764572,-2.608,0.8,-0.6988115,-2.494475,0.8,1.033245,-2.338269,0.8,1.35,-2.771638,1.127987E-15,1.14805,-2.598076,1.127987E-15,1.5,-2.676901,0.8,0.3524207,-2.608,0.8,0.6988114,-2.974335,1.127987E-15,0.3915785,-2.897778,1.127987E-15,0.7764571,-2.12132,1.127987E-15,-2.12132,-1.826284,1.127987E-15,-2.38006,-1.909188,0.8,-1.909188,-1.643656,0.8,-2.142054,2.608,0.8,-0.6988115,2.5,0.8,-7.454383E-08,2.494475,0.8,-1.033245,2.478612,0.8,-0.3263156,2.338269,0.8,-1.35,2.414814,0.8,-0.6470477,2.309699,0.8,-0.9567087,2.142054,0.8,-1.643656,2.165064,0.8,-1.25,1.983383,0.8,-1.521904,1.909188,0.8,-1.909188,1.767767,0.8,-1.767767,1.643656,0.8,-2.142054,1.521904,0.8,-1.983383,1.35,0.8,-2.338269,1.25,0.8,-2.165064,1.033245,0.8,-2.494475,0.9567086,0.8,-2.309699,0.6988114,0.8,-2.608,0.6470476,0.8,-2.414814,0.3524207,0.8,-2.676901,0.3263155,0.8,-2.478612,-4.018159E-11,0.8,-2.7,-4.849801E-11,0.8,-2.5,-0.3524207,0.8,-2.676901,-0.3263155,0.8,-2.478612,-0.6470476,0.8,-2.414814,-0.6988114,0.8,-2.608,-0.9567086,0.8,-2.309699,-1.033245,0.8,-2.494475,-1.25,0.8,-2.165064,-1.35,0.8,-2.338269,-1.521904,0.8,-1.983383,-1.643656,0.8,-2.142054,-1.767767,0.8,-1.767767,-1.909188,0.8,-1.909188,-1.983383,0.8,-1.521904,-2.142054,0.8,-1.643656,-2.165064,0.8,-1.25,-2.338269,0.8,-1.35,-2.309699,0.8,-0.9567087,-2.414814,0.8,-0.6470477,-2.494475,0.8,-1.033245,-2.478612,0.8,-0.3263156,-2.5,0.8,-7.452533E-08,-2.608,0.8,-0.6988115,-2.608,0.8,0.6988114,-2.676901,0.8,0.3524207,-2.676901,0.8,-0.3524208,-2.7,0.8,-7.452476E-08,-2.494475,0.8,1.033245,-2.478612,0.8,0.3263154,-2.414814,0.8,0.6470475,-2.338269,0.8,1.35,-2.309699,0.8,0.9567085,-2.165064,0.8,1.25,-2.142054,0.8,1.643656,-1.983383,0.8,1.521903,-1.909188,0.8,1.909188,-1.767767,0.8,1.767767,-1.643656,0.8,2.142054,-1.521904,0.8,1.983383,-1.35,0.8,2.338269,-1.25,0.8,2.165063,-1.033245,0.8,2.494475,-0.9567086,0.8,2.309699,-0.6988114,0.8,2.608,-0.6470476,0.8,2.414814,-0.3524207,0.8,2.676901,-0.3263155,0.8,2.478612,6.771529E-12,0.8,2.5,7.522317E-12,0.8,2.7,0.3263155,0.8,2.478612,0.3524207,0.8,2.676901,0.6470476,0.8,2.414814,0.6988114,0.8,2.608,0.9567086,0.8,2.309699,1.033245,0.8,2.494475,1.25,0.8,2.165063,1.35,0.8,2.338269,1.521904,0.8,1.983383,1.643656,0.8,2.142054,1.767767,0.8,1.767767,1.909188,0.8,1.909188,1.983383,0.8,1.521903,2.142054,0.8,1.643656,2.165064,0.8,1.25,2.309699,0.8,0.9567085,2.338269,0.8,1.35,2.414814,0.8,0.6470475,2.478612,0.8,0.3263154,2.494475,0.8,1.033245,2.608,0.8,0.6988114,2.676901,0.8,-0.3524208,2.676901,0.8,0.3524207,2.7,0.8,-7.454466E-08,-1.14805,1.127987E-15,2.771638,-1.5,1.127987E-15,2.598076,-1.033245,0.8,2.494475,-1.35,0.8,2.338269,-2.38006,1.127987E-15,-1.826284,-2.142054,0.8,-1.643656,-2.598076,1.127987E-15,-1.5,-2.338269,0.8,-1.35,-1.826284,1.127987E-15,2.38006,-2.12132,1.127987E-15,2.12132,-1.643656,0.8,2.142054,-1.909188,0.8,1.909188,-2.974335,1.127987E-15,-0.3915786,-2.676901,0.8,-0.3524208,-3,1.127987E-15,-7.452356E-08,-2.7,0.8,-7.452476E-08,-2.608,0.8,0.6988114,-2.494475,0.8,1.033245,-2.897778,1.127987E-15,0.7764571,-2.771638,1.127987E-15,1.14805,-2.338269,0.8,1.35,-2.142054,0.8,1.643656,-2.598076,1.127987E-15,1.5,-2.38006,1.127987E-15,1.826284,-2.142054,0.8,1.643656,-1.909188,0.8,1.909188,-2.38006,1.127987E-15,1.826284,-2.12132,1.127987E-15,2.12132,1.5,1.127987E-15,2.598076,1.14805,1.127987E-15,2.771638,1.35,0.8,2.338269,1.033245,0.8,2.494475,1.5,1.127987E-15,-2.598076,1.826284,1.127987E-15,-2.38006,1.35,0.8,-2.338269,1.643656,0.8,-2.142054,8.619622E-12,1.127987E-15,3,-0.3915786,1.127987E-15,2.974334,7.522317E-12,0.8,2.7,-0.3524207,0.8,2.676901,0.3915786,1.127987E-15,-2.974335,0.7764571,1.127987E-15,-2.897778,0.3524207,0.8,-2.676901,0.6988114,0.8,-2.608,-0.3915786,1.127987E-15,-2.974335,-4.439755E-11,1.127987E-15,-3,-0.3524207,0.8,-2.676901,-4.018159E-11,0.8,-2.7,2.771638,1.127987E-15,-1.14805,2.897778,1.127987E-15,-0.7764572,2.494475,0.8,-1.033245,2.608,0.8,-0.6988115,-2.598076,1.127987E-15,-1.5,-2.338269,0.8,-1.35,-2.771638,1.127987E-15,-1.14805,-2.494475,0.8,-1.033245,-1.5,1.127987E-15,-2.598076,-1.14805,1.127987E-15,-2.771639,-1.35,0.8,-2.338269,-1.033245,0.8,-2.494475,2.598076,1.127987E-15,-1.5,2.771638,1.127987E-15,-1.14805,2.338269,0.8,-1.35,2.494475,0.8,-1.033245,2.494475,0.8,1.033245,2.771638,1.127987E-15,1.14805,2.338269,0.8,1.35,2.598076,1.127987E-15,1.5,2.142054,0.8,1.643656,2.38006,1.127987E-15,1.826284,1.909188,0.8,1.909188,2.12132,1.127987E-15,2.12132,2.608,0.8,0.6988114,2.897778,1.127987E-15,0.7764571,2.494475,0.8,1.033245,2.771638,1.127987E-15,1.14805,-0.3915786,1.127987E-15,2.974334,-0.7764571,1.127987E-15,2.897777,-0.3524207,0.8,2.676901,-0.6988114,0.8,2.608,2.12132,1.127987E-15,2.12132,1.826284,1.127987E-15,2.38006,1.909188,0.8,1.909188,1.643656,0.8,2.142054,2.897778,1.127987E-15,-0.7764572,2.974335,1.127987E-15,-0.3915786,2.608,0.8,-0.6988115,2.676901,0.8,-0.3524208,0.3915786,1.127987E-15,2.974334,8.619622E-12,1.127987E-15,3,0.3524207,0.8,2.676901,7.522317E-12,0.8,2.7,1.826284,1.127987E-15,-2.38006,2.12132,1.127987E-15,-2.12132,1.643656,0.8,-2.142054,1.909188,0.8,-1.909188,-0.7764571,1.127987E-15,-2.897778,-0.3915786,1.127987E-15,-2.974335,-0.6988114,0.8,-2.608,-0.3524207,0.8,-2.676901,-1.826284,1.127987E-15,-2.38006,-1.5,1.127987E-15,-2.598076,-1.643656,0.8,-2.142054,-1.35,0.8,-2.338269,0.7764571,1.127987E-15,-2.897778,1.14805,1.127987E-15,-2.771639,0.6988114,0.8,-2.608,1.033245,0.8,-2.494475,-4.439755E-11,1.127987E-15,-3,0.3915786,1.127987E-15,-2.974335,-4.018159E-11,0.8,-2.7,0.3524207,0.8,-2.676901,-2.12132,1.127987E-15,-2.12132,-1.909188,0.8,-1.909188,-2.38006,1.127987E-15,-1.826284,-2.142054,0.8,-1.643656,-2.897778,1.127987E-15,-0.7764572,-2.608,0.8,-0.6988115,-2.974335,1.127987E-15,-0.3915786,-2.676901,0.8,-0.3524208,-2.309699,0.8,0.9567085,-2.309699,1.127987E-15,0.9567085,-2.165064,0.8,1.25,-2.165064,1.127987E-15,1.25,2.338269,0.8,1.35,2.598076,1.127987E-15,1.5,2.142054,0.8,1.643656,2.38006,1.127987E-15,1.826284,2.974335,1.127987E-15,-0.3915786,3,1.127987E-15,-7.454566E-08,2.676901,0.8,-0.3524208,2.7,0.8,-7.454466E-08,1.14805,1.127987E-15,-2.771639,1.5,1.127987E-15,-2.598076,1.033245,0.8,-2.494475,1.35,0.8,-2.338269,2.12132,1.127987E-15,-2.12132,2.38006,1.127987E-15,-1.826284,1.909188,0.8,-1.909188,2.142054,0.8,-1.643656,-1.14805,1.127987E-15,-2.771639,-0.7764571,1.127987E-15,-2.897778,-1.033245,0.8,-2.494475,-0.6988114,0.8,-2.608,3,1.127987E-15,-7.454566E-08,2.974335,1.127987E-15,0.3915785,2.7,0.8,-7.454466E-08,2.676901,0.8,0.3524207,-2.478612,0.8,0.3263154,-2.478612,1.127987E-15,0.3263154,-2.414814,0.8,0.6470475,-2.414814,1.127987E-15,0.6470475,2.38006,1.127987E-15,-1.826284,2.598076,1.127987E-15,-1.5,2.142054,0.8,-1.643656,2.338269,0.8,-1.35,-2.414814,0.8,0.6470475,-2.414814,1.127987E-15,0.6470475,-2.309699,0.8,0.9567085,-2.309699,1.127987E-15,0.9567085,0.7764571,1.127987E-15,2.897777,0.3915786,1.127987E-15,2.974334,0.6988114,0.8,2.608,0.3524207,0.8,2.676901,1.14805,1.127987E-15,2.771638,0.7764571,1.127987E-15,2.897777,1.033245,0.8,2.494475,0.6988114,0.8,2.608,2.676901,0.8,0.3524207,2.974335,1.127987E-15,0.3915785,2.608,0.8,0.6988114,2.897778,1.127987E-15,0.7764571,1.826284,1.127987E-15,2.38006,1.5,1.127987E-15,2.598076,1.643656,0.8,2.142054,1.35,0.8,2.338269,3,1.127987E-15,-7.454566E-08,2.974335,1.127987E-15,-0.3915786,2.974335,1.127987E-15,0.3915785,2.897778,1.127987E-15,0.7764571,2.897778,1.127987E-15,-0.7764572,2.771638,1.127987E-15,1.14805,2.771638,1.127987E-15,-1.14805,2.598076,1.127987E-15,1.5,2.598076,1.127987E-15,-1.5,2.5,1.127987E-15,-7.454383E-08,2.478612,1.127987E-15,0.3263154,2.38006,1.127987E-15,1.826284,2.414814,1.127987E-15,0.6470475,2.309699,1.127987E-15,0.9567085,2.12132,1.127987E-15,2.12132,2.165064,1.127987E-15,1.25,1.983383,1.127987E-15,1.521903,1.826284,1.127987E-15,2.38006,1.767767,1.127987E-15,1.767767,1.5,1.127987E-15,2.598076,1.521904,1.127987E-15,1.983383,1.25,1.127987E-15,2.165063,1.14805,1.127987E-15,2.771638,0.9567086,1.127987E-15,2.309699,0.7764571,1.127987E-15,2.897777,0.6470476,1.127987E-15,2.414814,0.3915786,1.127987E-15,2.974334,0.3263155,1.127987E-15,2.478612,8.619622E-12,1.127987E-15,3,6.771529E-12,1.127987E-15,2.5,-0.3915786,1.127987E-15,2.974334,-0.3263155,1.127987E-15,2.478612,-0.6470476,1.127987E-15,2.414814,-0.7764571,1.127987E-15,2.897777,-0.9567086,1.127987E-15,2.309699,-1.14805,1.127987E-15,2.771638,-1.25,1.127987E-15,2.165063,-1.5,1.127987E-15,2.598076,-1.521904,1.127987E-15,1.983383,-1.826284,1.127987E-15,2.38006,-1.767767,1.127987E-15,1.767767,-1.983383,1.127987E-15,1.521903,-2.12132,1.127987E-15,2.12132,-2.165064,1.127987E-15,1.25,-2.38006,1.127987E-15,1.826284,-2.309699,1.127987E-15,0.9567085,-2.414814,1.127987E-15,0.6470475,-2.598076,1.127987E-15,1.5,-2.478612,1.127987E-15,0.3263154,-2.5,1.127987E-15,-7.452533E-08,-2.598076,1.127987E-15,-1.5,-2.478612,1.127987E-15,-0.3263156,-2.414814,1.127987E-15,-0.6470477,-2.38006,1.127987E-15,-1.826284,-2.309699,1.127987E-15,-0.9567087,-2.165064,1.127987E-15,-1.25,-2.12132,1.127987E-15,-2.12132,-1.983383,1.127987E-15,-1.521904,-1.826284,1.127987E-15,-2.38006,-1.767767,1.127987E-15,-1.767767,-1.521904,1.127987E-15,-1.983383,-1.5,1.127987E-15,-2.598076,-1.25,1.127987E-15,-2.165064,-1.14805,1.127987E-15,-2.771639,-0.9567086,1.127987E-15,-2.309699,-0.7764571,1.127987E-15,-2.897778,-0.6470476,1.127987E-15,-2.414814,-0.3915786,1.127987E-15,-2.974335,-0.3263155,1.127987E-15,-2.478612,-4.849801E-11,1.127987E-15,-2.5,-4.439755E-11,1.127987E-15,-3,0.3263155,1.127987E-15,-2.478612,0.3915786,1.127987E-15,-2.974335,0.6470476,1.127987E-15,-2.414814,0.7764571,1.127987E-15,-2.897778,0.9567086,1.127987E-15,-2.309699,1.14805,1.127987E-15,-2.771639,1.25,1.127987E-15,-2.165064,1.5,1.127987E-15,-2.598076,1.521904,1.127987E-15,-1.983383,1.767767,1.127987E-15,-1.767767,1.826284,1.127987E-15,-2.38006,1.983383,1.127987E-15,-1.521904,2.12132,1.127987E-15,-2.12132,2.165064,1.127987E-15,-1.25,2.309699,1.127987E-15,-0.9567087,2.38006,1.127987E-15,-1.826284,2.414814,1.127987E-15,-0.6470477,2.478612,1.127987E-15,-0.3263156,-2.771638,1.127987E-15,1.14805,-2.771638,1.127987E-15,-1.14805,-2.897778,1.127987E-15,0.7764571,-2.897778,1.127987E-15,-0.7764572,-2.974335,1.127987E-15,0.3915785,-2.974335,1.127987E-15,-0.3915786,-3,1.127987E-15,-7.452356E-08,-2.5,0.8,-7.452533E-08,-2.5,1.127987E-15,-7.452533E-08,-2.478612,0.8,0.3263154,-2.478612,1.127987E-15,0.3263154,-2.478612,0.8,-0.3263156,-2.478612,1.127987E-15,-0.3263156,-2.5,0.8,-7.452533E-08,-2.5,1.127987E-15,-7.452533E-08,-2.309699,0.8,-0.9567087,-2.309699,1.127987E-15,-0.9567087,-2.414814,0.8,-0.6470477,-2.414814,1.127987E-15,-0.6470477,-1.767767,0.8,-1.767767,-1.767767,1.127987E-15,-1.767767,-1.983383,0.8,-1.521904,-1.983383,1.127987E-15,-1.521904,-1.25,1.127987E-15,-2.165064,-1.521904,1.127987E-15,-1.983383,-1.25,0.8,-2.165064,-1.521904,0.8,-1.983383,-0.9567086,1.127987E-15,-2.309699,-1.25,1.127987E-15,-2.165064,-0.9567086,0.8,-2.309699,-1.25,0.8,-2.165064,-0.6470476,1.127987E-15,-2.414814,-0.9567086,1.127987E-15,-2.309699,-0.6470476,0.8,-2.414814,-0.9567086,0.8,-2.309699,-0.3263155,1.127987E-15,-2.478612,-0.6470476,1.127987E-15,-2.414814,-0.3263155,0.8,-2.478612,-0.6470476,0.8,-2.414814,-4.849801E-11,1.127987E-15,-2.5,-0.3263155,1.127987E-15,-2.478612,-4.849801E-11,0.8,-2.5,-0.3263155,0.8,-2.478612,-1.521904,1.127987E-15,-1.983383,-1.767767,1.127987E-15,-1.767767,-1.521904,0.8,-1.983383,-1.767767,0.8,-1.767767,-2.414814,0.8,-0.6470477,-2.414814,1.127987E-15,-0.6470477,-2.478612,0.8,-0.3263156,-2.478612,1.127987E-15,-0.3263156,-2.165064,0.8,-1.25,-2.165064,1.127987E-15,-1.25,-2.309699,0.8,-0.9567087,-2.309699,1.127987E-15,-0.9567087,-1.983383,0.8,-1.521904,-1.983383,1.127987E-15,-1.521904,-2.165064,0.8,-1.25,-2.165064,1.127987E-15,-1.25,1.767767,1.127987E-15,-1.767767,1.767767,0.8,-1.767767,1.983383,1.127987E-15,-1.521904,1.983383,0.8,-1.521904,2.5,1.127987E-15,-7.454383E-08,2.5,0.8,-7.454383E-08,2.478612,1.127987E-15,0.3263154,2.478612,0.8,0.3263154,0.3263155,1.127987E-15,-2.478612,-4.849801E-11,1.127987E-15,-2.5,0.3263155,0.8,-2.478612,-4.849801E-11,0.8,-2.5,2.478612,1.127987E-15,0.3263154,2.478612,0.8,0.3263154,2.414814,1.127987E-15,0.6470475,2.414814,0.8,0.6470475,1.521904,1.127987E-15,1.983383,1.767767,1.127987E-15,1.767767,1.521904,0.8,1.983383,1.767767,0.8,1.767767,1.25,1.127987E-15,-2.165064,0.9567086,1.127987E-15,-2.309699,1.25,0.8,-2.165064,0.9567086,0.8,-2.309699,1.521904,1.127987E-15,-1.983383,1.25,1.127987E-15,-2.165064,1.521904,0.8,-1.983383,1.25,0.8,-2.165064,2.165064,1.127987E-15,-1.25,2.165064,0.8,-1.25,2.309699,1.127987E-15,-0.9567087,2.309699,0.8,-0.9567087,0.9567086,1.127987E-15,2.309699,1.25,1.127987E-15,2.165063,0.9567086,0.8,2.309699,1.25,0.8,2.165063,1.767767,1.127987E-15,-1.767767,1.521904,1.127987E-15,-1.983383,1.767767,0.8,-1.767767,1.521904,0.8,-1.983383,2.309699,1.127987E-15,0.9567085,2.309699,0.8,0.9567085,2.165064,1.127987E-15,1.25,2.165064,0.8,1.25,2.309699,1.127987E-15,-0.9567087,2.309699,0.8,-0.9567087,2.414814,1.127987E-15,-0.6470477,2.414814,0.8,-0.6470477,0.6470476,1.127987E-15,2.414814,0.9567086,1.127987E-15,2.309699,0.6470476,0.8,2.414814,0.9567086,0.8,2.309699,2.414814,1.127987E-15,-0.6470477,2.414814,0.8,-0.6470477,2.478612,1.127987E-15,-0.3263156,2.478612,0.8,-0.3263156,0.3263155,1.127987E-15,2.478612,0.6470476,1.127987E-15,2.414814,0.3263155,0.8,2.478612,0.6470476,0.8,2.414814,6.771529E-12,1.127987E-15,2.5,0.3263155,1.127987E-15,2.478612,6.771529E-12,0.8,2.5,0.3263155,0.8,2.478612,-0.3263155,1.127987E-15,2.478612,6.771529E-12,1.127987E-15,2.5,-0.3263155,0.8,2.478612,6.771529E-12,0.8,2.5,0.9567086,1.127987E-15,-2.309699,0.6470476,1.127987E-15,-2.414814,0.9567086,0.8,-2.309699,0.6470476,0.8,-2.414814,1.983383,1.127987E-15,1.521903,1.983383,0.8,1.521903,1.767767,1.127987E-15,1.767767,1.767767,0.8,1.767767,2.165064,1.127987E-15,1.25,2.165064,0.8,1.25,1.983383,1.127987E-15,1.521903,1.983383,0.8,1.521903,-0.6470476,1.127987E-15,2.414814,-0.3263155,1.127987E-15,2.478612,-0.6470476,0.8,2.414814,-0.3263155,0.8,2.478612,2.478612,1.127987E-15,-0.3263156,2.478612,0.8,-0.3263156,2.5,1.127987E-15,-7.454383E-08,2.5,0.8,-7.454383E-08,1.25,1.127987E-15,2.165063,1.521904,1.127987E-15,1.983383,1.25,0.8,2.165063,1.521904,0.8,1.983383,1.983383,1.127987E-15,-1.521904,1.983383,0.8,-1.521904,2.165064,1.127987E-15,-1.25,2.165064,0.8,-1.25,-0.9567086,1.127987E-15,2.309699,-0.6470476,1.127987E-15,2.414814,-0.9567086,0.8,2.309699,-0.6470476,0.8,2.414814,2.414814,1.127987E-15,0.6470475,2.414814,0.8,0.6470475,2.309699,1.127987E-15,0.9567085,2.309699,0.8,0.9567085,0.6470476,1.127987E-15,-2.414814,0.3263155,1.127987E-15,-2.478612,0.6470476,0.8,-2.414814,0.3263155,0.8,-2.478612,-1.25,1.127987E-15,2.165063,-0.9567086,1.127987E-15,2.309699,-1.25,0.8,2.165063,-0.9567086,0.8,2.309699,-1.521904,1.127987E-15,1.983383,-1.25,1.127987E-15,2.165063,-1.521904,0.8,1.983383,-1.25,0.8,2.165063,-1.983383,0.8,1.521903,-1.983383,1.127987E-15,1.521903,-1.767767,0.8,1.767767,-1.767767,1.127987E-15,1.767767,-1.767767,1.127987E-15,1.767767,-1.521904,1.127987E-15,1.983383,-1.767767,0.8,1.767767,-1.521904,0.8,1.983383,-2.165064,0.8,1.25,-2.165064,1.127987E-15,1.25,-1.983383,0.8,1.521903,-1.983383,1.127987E-15,1.521903,-7.609518,3.947953E-16,-9.916917,-6.25,3.947953E-16,-10.82532,-7.609518,0.8,-9.916917,-6.25,0.8,-10.82532,-5.268393,5.357937E-16,-11.10142,-5.446254,0.8,-11.11123,-4.5,1.353584E-15,-11.44175,-4.7,0.8,-11.44175,-10.73149,0.8,-6.168708,-10.71042,1.973977E-16,-6.012279,-11.11123,0.8,-5.446254,-11.10142,3.38396E-16,-5.268392,-10.30424,0.8,-6.864121,-10.27049,8.4599E-17,-6.728323,-10.73149,0.8,-6.168708,-10.71042,1.973977E-16,-6.012279,-7.413311,1.127987E-16,-9.783623,-7.529374,0.8,-9.831395,-6.728323,2.255973E-16,-10.27049,-6.864121,0.8,-10.30424,-8.838834,3.947953E-16,-8.838834,-8.838834,0.8,-8.838834,-9.916917,3.947953E-16,-7.609518,-9.916917,0.8,-7.609518,-10.82532,3.947953E-16,-6.25,-10.82532,0.8,-6.25,-11.44175,4.511947E-16,-5,-11.44175,0.8,-5,-9.315081,0.8,-8.161482,-9.25199,0,-8.06417,-9.831395,0.8,-7.529374,-9.783623,2.819967E-17,-7.413311,-8.67798,0,-8.67798,-8.757608,0.8,-8.757608,-8.06417,2.819967E-17,-9.25199,-8.161482,0.8,-9.315081,-8.06417,2.819967E-17,-9.25199,-8.161482,0.8,-9.315081,-7.413311,1.127987E-16,-9.783623,-7.529374,0.8,-9.831395,-8.757608,0.8,-8.757608,-8.67798,0,-8.67798,-9.315081,0.8,-8.161482,-9.25199,0,-8.06417,-8.838834,3.947953E-16,-8.838834,-7.609518,3.947953E-16,-9.916917,-8.838834,0.8,-8.838834,-7.609518,0.8,-9.916917,-6.012279,3.665956E-16,-10.71042,-6.168708,0.8,-10.73149,-5.268393,5.357937E-16,-11.10142,-5.446254,0.8,-11.11123,-6.25,3.947953E-16,-10.82532,-5,1.353584E-15,-11.44175,-6.25,0.8,-10.82532,-5,0.8,-11.44175,-9.916917,3.947953E-16,-7.609518,-9.916917,0.8,-7.609518,-10.82532,3.947953E-16,-6.25,-10.82532,0.8,-6.25,-6.728323,2.255973E-16,-10.27049,-6.864121,0.8,-10.30424,-6.012279,3.665956E-16,-10.71042,-6.168708,0.8,-10.73149,-9.831395,0.8,-7.529374,-9.783623,2.819967E-17,-7.413311,-10.30424,0.8,-6.864121,-10.27049,8.4599E-17,-6.728323,-11.11123,0.8,-5.446254,-11.10142,3.38396E-16,-5.268392,-11.44175,0.8,-4.7,-11.44175,5.07594E-16,-4.5,9.783623,9.305889E-16,7.413311,9.831395,0.8,7.529374,9.25199,9.023893E-16,8.06417,9.315081,0.8,8.161482,10.27049,9.869883E-16,6.728323,10.30424,0.8,6.864121,9.783623,9.305889E-16,7.413311,9.831395,0.8,7.529374,8.677982,9.023893E-16,8.677982,8.757608,0.8,8.757608,8.06417,9.305889E-16,9.25199,8.161482,0.8,9.315081,5.268393,1.438183E-15,11.10142,5.446254,0.8,11.11123,4.5,1.63558E-15,11.44175,4.7,0.8,11.44175,8.06417,9.305889E-16,9.25199,8.161482,0.8,9.315081,7.413311,1.015188E-15,9.783623,7.529374,0.8,9.831395,11.44175,0.8,5,11.44175,1.579181E-15,5,10.82532,0.8,6.25,10.82532,1.297184E-15,6.25,6.25,1.297184E-15,10.82532,5,1.466382E-15,11.44175,6.25,0.8,10.82532,5,0.8,11.44175,7.609518,1.297184E-15,9.916917,6.25,1.297184E-15,10.82532,7.609518,0.8,9.916917,6.25,0.8,10.82532,8.838834,1.297184E-15,8.838834,7.609518,1.297184E-15,9.916917,8.838834,0.8,8.838834,7.609518,0.8,9.916917,9.916917,0.8,7.609518,9.916917,1.297184E-15,7.609518,8.838834,0.8,8.838834,8.838834,1.297184E-15,8.838834,10.82532,0.8,6.25,10.82532,1.297184E-15,6.25,9.916917,0.8,7.609518,9.916917,1.297184E-15,7.609518,11.44175,1.579181E-15,4.5,11.44175,0.8,4.7,11.10142,1.240785E-15,5.268393,11.11123,0.8,5.446254,11.10142,1.240785E-15,5.268393,11.11123,0.8,5.446254,10.71042,1.099787E-15,6.012279,10.73149,0.8,6.168709,10.71042,1.099787E-15,6.012279,10.73149,0.8,6.168709,10.27049,9.869883E-16,6.728323,10.30424,0.8,6.864121,7.413311,1.015188E-15,9.783623,7.529374,0.8,9.831395,6.728323,1.127987E-15,10.27049,6.864121,0.8,10.30424,6.012279,1.268985E-15,10.71042,6.168708,0.8,10.73149,5.268393,1.438183E-15,11.10142,5.446254,0.8,11.11123,6.728323,1.127987E-15,10.27049,6.864121,0.8,10.30424,6.012279,1.268985E-15,10.71042,6.168708,0.8,10.73149,9.25199,9.023893E-16,8.06417,9.315081,0.8,8.161482,8.677982,9.023893E-16,8.677982,8.757608,0.8,8.757608,-11.10142,9.305889E-16,5.268392,-10.71042,7.61391E-16,6.012279,-11.11123,0.8,5.446254,-10.73149,0.8,6.168708,-9.25199,4.22995E-16,8.06417,-8.677982,3.947953E-16,8.67798,-9.315081,0.8,8.161482,-8.757608,0.8,8.757608,-10.71042,7.61391E-16,6.012279,-10.27049,6.203926E-16,6.728323,-10.73149,0.8,6.168708,-10.30424,0.8,6.864121,-10.27049,6.203926E-16,6.728323,-9.783623,5.07594E-16,7.413311,-10.30424,0.8,6.864121,-9.831395,0.8,7.529374,-11.44175,1.127987E-15,4.5,-11.10142,9.305889E-16,5.268392,-11.44175,0.8,4.7,-11.11123,0.8,5.446254,-7.413311,4.22995E-16,9.783623,-6.728323,4.793943E-16,10.27049,-7.529374,0.8,9.831395,-6.864121,0.8,10.30424,-8.677982,3.947953E-16,8.67798,-8.06417,3.947953E-16,9.25199,-8.757608,0.8,8.757608,-8.161482,0.8,9.315081,-8.06417,3.947953E-16,9.25199,-7.413311,4.22995E-16,9.783623,-8.161482,0.8,9.315081,-7.529374,0.8,9.831395,-9.783623,5.07594E-16,7.413311,-9.25199,4.22995E-16,8.06417,-9.831395,0.8,7.529374,-9.315081,0.8,8.161482,-6.25,7.895906E-16,10.82532,-7.609518,7.895906E-16,9.916917,-6.25,0.8,10.82532,-7.609518,0.8,9.916917,-6.012279,5.92193E-16,10.71042,-5.268393,7.331912E-16,11.10142,-6.168709,0.8,10.73149,-5.446254,0.8,11.11123,-6.25,7.895906E-16,10.82532,-6.25,0.8,10.82532,-5,8.459899E-16,11.44175,-5,0.8,11.44175,-11.44175,9.587886E-16,5,-11.44175,0.8,5,-10.82532,7.895906E-16,6.25,-10.82532,0.8,6.25,-9.916917,7.895906E-16,7.609518,-9.916917,0.8,7.609518,-8.838834,7.895906E-16,8.838834,-8.838834,0.8,8.838834,-10.82532,7.895906E-16,6.25,-10.82532,0.8,6.25,-9.916917,7.895906E-16,7.609518,-9.916917,0.8,7.609518,-6.728323,4.793943E-16,10.27049,-6.012279,5.92193E-16,10.71042,-6.864121,0.8,10.30424,-6.168709,0.8,10.73149,-5.268393,7.331912E-16,11.10142,-4.5,9.023893E-16,11.44175,-5.446254,0.8,11.11123,-4.7,0.8,11.44175,-7.609518,7.895906E-16,9.916917,-8.838834,7.895906E-16,8.838834,-7.609518,0.8,9.916917,-8.838834,0.8,8.838834,15,1.579181E-15,5,15,1.579181E-15,4.5,11.44175,1.579181E-15,5,11.44175,1.579181E-15,4.5,10.82532,1.297184E-15,6.25,11.10142,1.240785E-15,5.268393,10.71042,1.099787E-15,6.012279,9.916917,1.297184E-15,7.609518,10.27049,9.869883E-16,6.728323,9.783623,9.305889E-16,7.413311,8.838834,1.297184E-15,8.838834,9.25199,9.023893E-16,8.06417,8.677982,9.023893E-16,8.677982,7.609518,1.297184E-15,9.916917,8.06417,9.305889E-16,9.25199,7.413311,1.015188E-15,9.783623,6.25,1.297184E-15,10.82532,6.728323,1.127987E-15,10.27049,6.012279,1.268985E-15,10.71042,5,1.466382E-15,11.44175,5.268393,1.438183E-15,11.10142,4.5,1.63558E-15,11.44175,5,1.353584E-15,15,4.5,1.353584E-15,15,5,1.353584E-15,15,4.5,1.353584E-15,15,5,0.8,15,4.7,0.8,15,5,0.8,11.44175,5,1.466382E-15,11.44175,5,0.8,15,5,1.353584E-15,15,-4.7,0.8,11.44175,-4.5,9.023893E-16,11.44175,-4.7,0.8,15,-4.5,1.579181E-15,15,4.5,1.63558E-15,11.44175,4.7,0.8,11.44175,4.5,1.353584E-15,15,4.7,0.8,15,-5,8.459899E-16,11.44175,-5,0.8,11.44175,-5,1.579181E-15,15,-5,0.8,15,15,0.8,5,11.44175,0.8,5,15,0.8,4.7,11.44175,0.8,4.7,10.82532,0.8,6.25,11.11123,0.8,5.446254,10.73149,0.8,6.168709,9.916917,0.8,7.609518,10.30424,0.8,6.864121,9.831395,0.8,7.529374,8.838834,0.8,8.838834,9.315081,0.8,8.161482,8.757608,0.8,8.757608,7.609518,0.8,9.916917,8.161482,0.8,9.315081,7.529374,0.8,9.831395,6.25,0.8,10.82532,6.864121,0.8,10.30424,6.168708,0.8,10.73149,5,0.8,11.44175,5.446254,0.8,11.11123,4.7,0.8,11.44175,5,0.8,15,4.7,0.8,15,-4.5,1.579181E-15,15,-5,1.579181E-15,15,-4.7,0.8,15,-5,0.8,15,-11.44175,5.07594E-16,-4.5,-15,1.184386E-15,-4.5,-11.44175,0.8,-4.7,-15,0.8,-4.7,-11.44175,4.511947E-16,-5,-11.44175,0.8,-5,-15,1.184386E-15,-5,-15,0.8,-5,-4.7,0.8,15,-5,0.8,15,-4.7,0.8,11.44175,-5,0.8,11.44175,-5.446254,0.8,11.11123,-6.25,0.8,10.82532,-6.168709,0.8,10.73149,-6.864121,0.8,10.30424,-7.609518,0.8,9.916917,-7.529374,0.8,9.831395,-8.161482,0.8,9.315081,-8.838834,0.8,8.838834,-8.757608,0.8,8.757608,-9.315081,0.8,8.161482,-9.916917,0.8,7.609518,-9.831395,0.8,7.529374,-10.30424,0.8,6.864121,-10.82532,0.8,6.25,-10.73149,0.8,6.168708,-11.11123,0.8,5.446254,-11.44175,0.8,5,-11.44175,0.8,4.7,-15,0.8,4.7,-15,0.8,5,-15,1.409983E-15,4.5,-15,0.8,4.7,-15,1.409983E-15,5,-15,0.8,5,-11.44175,9.587886E-16,5,-15,1.409983E-15,5,-11.44175,0.8,5,-15,0.8,5,-15,1.184386E-15,-5,-15,0.8,-5,-15,1.184386E-15,-4.5,-15,0.8,-4.7,-4.5,1.353584E-15,-15,-5,1.353584E-15,-15,-4.5,1.353584E-15,-11.44175,-5,1.353584E-15,-11.44175,-5.268393,5.357937E-16,-11.10142,-6.25,3.947953E-16,-10.82532,-6.012279,3.665956E-16,-10.71042,-6.728323,2.255973E-16,-10.27049,-7.609518,3.947953E-16,-9.916917,-7.413311,1.127987E-16,-9.783623,-8.06417,2.819967E-17,-9.25199,-8.838834,3.947953E-16,-8.838834,-8.67798,0,-8.67798,-9.25199,0,-8.06417,-9.916917,3.947953E-16,-7.609518,-9.783623,2.819967E-17,-7.413311,-10.27049,8.4599E-17,-6.728323,-10.82532,3.947953E-16,-6.25,-10.71042,1.973977E-16,-6.012279,-11.10142,3.38396E-16,-5.268392,-11.44175,4.511947E-16,-5,-11.44175,5.07594E-16,-4.5,-15,1.184386E-15,-4.5,-15,1.184386E-15,-5,-4.5,1.579181E-15,15,-4.5,9.023893E-16,11.44175,-5,1.579181E-15,15,-5,8.459899E-16,11.44175,-5.268393,7.331912E-16,11.10142,-6.25,7.895906E-16,10.82532,-6.012279,5.92193E-16,10.71042,-6.728323,4.793943E-16,10.27049,-7.609518,7.895906E-16,9.916917,-7.413311,4.22995E-16,9.783623,-8.06417,3.947953E-16,9.25199,-8.838834,7.895906E-16,8.838834,-8.677982,3.947953E-16,8.67798,-9.25199,4.22995E-16,8.06417,-9.916917,7.895906E-16,7.609518,-9.783623,5.07594E-16,7.413311,-10.27049,6.203926E-16,6.728323,-10.82532,7.895906E-16,6.25,-10.71042,7.61391E-16,6.012279,-11.10142,9.305889E-16,5.268392,-11.44175,9.587886E-16,5,-11.44175,1.127987E-15,4.5,-15,1.409983E-15,4.5,-15,1.409983E-15,5,-11.44175,1.127987E-15,4.5,-11.44175,0.8,4.7,-15,1.409983E-15,4.5,-15,0.8,4.7,-4.7,0.8,-15,-4.7,0.8,-11.44175,-5,0.8,-15,-5,0.8,-11.44175,-5.446254,0.8,-11.11123,-6.25,0.8,-10.82532,-6.168708,0.8,-10.73149,-6.864121,0.8,-10.30424,-7.609518,0.8,-9.916917,-7.529374,0.8,-9.831395,-8.161482,0.8,-9.315081,-8.838834,0.8,-8.838834,-8.757608,0.8,-8.757608,-9.315081,0.8,-8.161482,-9.916917,0.8,-7.609518,-9.831395,0.8,-7.529374,-10.30424,0.8,-6.864121,-10.82532,0.8,-6.25,-10.73149,0.8,-6.168708,-11.11123,0.8,-5.446254,-11.44175,0.8,-5,-11.44175,0.8,-4.7,-15,0.8,-4.7,-15,0.8,-5 + } + PolygonVertexIndex: *2262 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,88,-88,90,88,-90,91,90,-90,92,90,-92,93,92,-92,94,92,-94,95,92,-95,96,95,-95,97,95,-97,98,95,-98,99,98,-98,100,98,-100,101,98,-101,102,101,-101,103,101,-103,104,101,-104,105,104,-104,106,104,-106,107,104,-107,108,107,-107,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,126,-129,130,129,-129,131,129,-131,132,131,-131,133,131,-133,134,133,-133,135,134,-133,136,134,-136,137,136,-136,138,137,-136,139,137,-139,140,139,-139,141,140,-139,142,140,-142,143,142,-142,144,143,-142,145,143,-145,146,145,-145,147,146,-145,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,158,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,201,-201,203,201,-203,204,203,-203,205,204,-203,206,204,-206,207,206,-206,208,207,-206,209,207,-209,210,209,-209,211,209,-211,212,211,-211,213,211,-213,214,213,-213,215,213,-215,216,215,-215,217,215,-217,218,217,-217,219,217,-219,220,219,-219,221,219,-221,222,221,-221,223,221,-223,224,223,-223,225,224,-223,226,224,-226,227,226,-226,228,226,-228,229,228,-228,230,228,-230,231,230,-230,232,230,-232,233,232,-232,234,232,-234,235,234,-234,236,234,-236,237,236,-236,238,236,-238,239,238,-238,240,239,-238,241,239,-241,242,241,-241,243,242,-241,244,242,-244,245,244,-244,246,245,-244,247,245,-247,244,248,-243,242,248,-250,249,248,-251,248,251,-251,250,251,-253,252,251,-254,251,254,-254,253,254,-256,254,256,-256,255,256,-258,256,258,-258,257,258,-260,258,260,-260,259,260,-262,260,262,-262,261,262,-264,262,264,-264,263,264,-266,264,266,-266,265,266,-268,267,266,-269,266,269,-269,268,269,-271,269,271,-271,270,271,-273,271,273,-273,272,273,-275,273,275,-275,274,275,-277,275,277,-277,276,277,-279,277,279,-279,278,279,-281,279,281,-281,280,281,-283,281,283,-283,282,283,-285,284,283,-286,283,286,-286,285,286,-288,287,286,-289,286,289,-289,288,289,-200,199,289,-199,289,290,-199,198,290,-292,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,360,-360,361,359,-361,362,364,-364,365,363,-365,366,368,-368,369,367,-369,370,372,-372,373,371,-373,374,376,-376,377,375,-377,378,380,-380,381,379,-381,382,384,-384,385,383,-385,386,388,-388,389,387,-389,390,392,-392,393,391,-393,394,396,-396,397,395,-397,398,400,-400,401,399,-401,402,404,-404,405,403,-405,406,408,-408,409,407,-409,410,412,-412,413,411,-413,414,416,-416,417,415,-417,418,420,-420,421,419,-421,422,424,-424,425,423,-425,426,428,-428,429,427,-429,430,432,-432,433,431,-433,434,436,-436,437,435,-437,438,440,-440,441,439,-441,442,444,-444,445,443,-445,446,448,-448,449,447,-449,450,452,-452,453,451,-453,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,465,463,-465,466,468,-468,469,467,-469,470,472,-472,473,471,-473,474,471,-474,475,474,-474,476,474,-476,477,476,-476,478,476,-478,479,478,-478,480,479,-478,481,480,-478,482,480,-482,483,482,-482,484,483,-482,485,483,-485,486,485,-485,487,486,-485,488,486,-488,489,488,-488,490,488,-490,491,490,-490,492,491,-490,493,491,-493,494,493,-493,495,493,-495,496,495,-495,497,495,-497,498,497,-497,499,497,-499,500,499,-499,501,499,-501,502,501,-501,503,502,-501,504,502,-504,505,504,-504,506,504,-506,507,506,-506,508,506,-508,509,508,-508,510,508,-510,511,510,-510,512,511,-510,513,511,-513,514,513,-513,515,513,-515,516,515,-515,517,516,-515,518,516,-518,519,518,-518,517,520,-520,519,520,-522,521,520,-523,520,523,-523,522,523,-525,524,523,-526,523,526,-526,525,526,-528,526,528,-528,527,528,-530,529,528,-531,528,531,-531,530,531,-533,531,533,-533,532,533,-535,533,535,-535,534,535,-537,535,537,-537,536,537,-539,538,537,-540,537,540,-540,539,540,-542,540,542,-542,541,542,-544,542,544,-544,543,544,-546,544,546,-546,545,546,-548,546,548,-548,547,548,-550,549,548,-551,548,551,-551,550,551,-553,551,553,-553,552,553,-555,554,553,-556,553,556,-556,555,556,-558,557,556,-559,556,478,-559,479,558,-479,559,520,-518,560,520,-560,561,560,-560,562,560,-562,563,562,-562,564,562,-564,565,564,-564,566,568,-568,569,567,-569,570,572,-572,573,571,-573,574,576,-576,577,575,-577,578,580,-580,581,579,-581,582,584,-584,585,583,-585,586,588,-588,589,587,-589,590,592,-592,593,591,-593,594,596,-596,597,595,-597,598,600,-600,601,599,-601,602,604,-604,605,603,-605,606,608,-608,609,607,-609,610,612,-612,613,611,-613,614,616,-616,617,615,-617,618,620,-620,621,619,-621,622,624,-624,625,623,-625,626,628,-628,629,627,-629,630,632,-632,633,631,-633,634,636,-636,637,635,-637,638,640,-640,641,639,-641,642,644,-644,645,643,-645,646,648,-648,649,647,-649,650,652,-652,653,651,-653,654,656,-656,657,655,-657,658,660,-660,661,659,-661,662,664,-664,665,663,-665,666,668,-668,669,667,-669,670,672,-672,673,671,-673,674,676,-676,677,675,-677,678,680,-680,681,679,-681,682,684,-684,685,683,-685,686,688,-688,689,687,-689,690,692,-692,693,691,-693,694,696,-696,697,695,-697,698,700,-700,701,699,-701,702,704,-704,705,703,-705,706,708,-708,709,707,-709,710,712,-712,713,711,-713,714,716,-716,717,715,-717,718,720,-720,721,719,-721,722,724,-724,725,723,-725,726,728,-728,729,727,-729,730,732,-732,733,731,-733,734,736,-736,737,735,-737,738,740,-740,741,739,-741,742,744,-744,745,743,-745,746,748,-748,749,747,-749,750,752,-752,753,751,-753,754,756,-756,757,755,-757,758,760,-760,761,759,-761,762,764,-764,765,763,-765,766,768,-768,769,767,-769,770,772,-772,773,771,-773,774,776,-776,777,775,-777,778,780,-780,781,779,-781,782,784,-784,785,783,-785,786,788,-788,789,787,-789,790,792,-792,793,791,-793,794,796,-796,797,795,-797,798,800,-800,801,799,-801,802,804,-804,805,803,-805,806,808,-808,809,807,-809,810,812,-812,813,811,-813,814,816,-816,817,815,-817,818,820,-820,821,819,-821,822,824,-824,825,823,-825,826,828,-828,829,827,-829,830,832,-832,833,831,-833,834,836,-836,837,835,-837,838,840,-840,841,839,-841,842,844,-844,845,843,-845,846,848,-848,849,847,-849,850,852,-852,853,851,-853,854,856,-856,857,855,-857,858,860,-860,861,859,-861,862,864,-864,865,863,-865,866,868,-868,869,867,-869,870,872,-872,873,871,-873,874,876,-876,877,875,-877,878,880,-880,881,879,-881,882,884,-884,885,883,-885,886,888,-888,889,887,-889,890,892,-892,893,891,-893,894,896,-896,897,895,-897,898,900,-900,901,899,-901,902,904,-904,905,903,-905,906,908,-908,909,907,-909,910,912,-912,913,911,-913,914,916,-916,917,915,-917,918,920,-920,921,919,-921,922,924,-924,925,923,-925,926,928,-928,929,927,-929,930,932,-932,933,931,-933,934,936,-936,937,935,-937,938,940,-940,941,939,-941,942,944,-944,945,943,-945,946,948,-948,949,947,-949,950,952,-952,953,951,-953,954,956,-956,957,955,-957,958,960,-960,961,959,-961,962,964,-964,965,963,-965,966,965,-965,967,965,-967,968,967,-967,969,968,-967,970,968,-970,971,970,-970,972,971,-970,973,971,-973,974,973,-973,975,974,-973,976,974,-976,977,976,-976,978,977,-976,979,977,-979,980,979,-979,981,980,-979,982,980,-982,983,982,-982,984,983,-982,985,983,-985,986,988,-988,989,987,-989,990,992,-992,993,991,-993,994,996,-996,997,995,-997,998,1000,-1000,1001,999,-1001,1002,1004,-1004,1005,1003,-1005,1006,1008,-1008,1009,1007,-1009,1010,1007,-1010,1011,1010,-1010,1012,1010,-1012,1013,1010,-1013,1014,1013,-1013,1015,1013,-1015,1016,1013,-1016,1017,1016,-1016,1018,1016,-1018,1019,1016,-1019,1020,1019,-1019,1021,1019,-1021,1022,1019,-1022,1023,1022,-1022,1024,1022,-1024,1025,1022,-1025,1026,1025,-1025,1027,1025,-1027,1028,1025,-1028,1029,1028,-1028,1030,1032,-1032,1033,1031,-1033,1034,1036,-1036,1037,1035,-1037,1038,1040,-1040,1041,1039,-1041,1042,1044,-1044,1045,1043,-1045,1046,1045,-1045,1047,1045,-1047,1048,1047,-1047,1049,1047,-1049,1050,1047,-1050,1051,1050,-1050,1052,1050,-1052,1053,1050,-1053,1054,1053,-1053,1055,1053,-1055,1056,1053,-1056,1057,1056,-1056,1058,1056,-1058,1059,1056,-1059,1060,1059,-1059,1061,1059,-1061,1062,1059,-1062,1063,1062,-1062,1064,1062,-1064,1065,1062,-1065,1066,1068,-1068,1069,1067,-1069,1070,1072,-1072,1073,1071,-1073,1074,1076,-1076,1077,1075,-1077,1078,1080,-1080,1081,1079,-1081,1082,1081,-1081,1083,1081,-1083,1084,1083,-1083,1085,1083,-1085,1086,1083,-1086,1087,1086,-1086,1088,1086,-1088,1089,1086,-1089,1090,1089,-1089,1091,1089,-1091,1092,1089,-1092,1093,1092,-1092,1094,1092,-1094,1095,1092,-1095,1096,1095,-1095,1097,1095,-1097,1098,1095,-1098,1099,1098,-1098,1100,1098,-1100,1101,1098,-1101,1102,1104,-1104,1105,1103,-1105,1106,1103,-1106,1107,1106,-1106,1108,1106,-1108,1109,1108,-1108,1110,1109,-1108,1111,1109,-1111,1112,1111,-1111,1113,1112,-1111,1114,1112,-1114,1115,1114,-1114,1116,1115,-1114,1117,1115,-1117,1118,1117,-1117,1119,1118,-1117,1120,1118,-1120,1121,1120,-1120,1122,1121,-1120,1123,1121,-1123,1124,1123,-1123,1125,1124,-1123,1126,1128,-1128,1129,1127,-1129,1130,1132,-1132,1133,1131,-1133,1134,1131,-1134,1135,1134,-1134,1136,1134,-1136,1137,1136,-1136,1138,1137,-1136,1139,1137,-1139,1140,1139,-1139,1141,1140,-1139,1142,1140,-1142,1143,1142,-1142,1144,1143,-1142,1145,1143,-1145,1146,1145,-1145,1147,1146,-1145,1148,1146,-1148,1149,1148,-1148,1150,1149,-1148,1151,1149,-1151,1152,1151,-1151,1153,1152,-1151 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *6786 { + a: -0.488321,0.1182571,0.8646143,-0.4939483,0.1192694,0.8612722,-0.4292213,0.1064206,0.8969079,-0.43645,0.1079826,0.8932251,-0.4292213,0.1064206,0.8969079,-0.4939483,0.1192694,0.8612722,0.5,0,-0.8660254,0.4422887,0,-0.8968728,0.5,0,-0.8660254,0.4422887,0,-0.8968728,0.5,0,-0.8660254,0.4422887,0,-0.8968728,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,-0.4292213,0.1064206,0.8969079,-0.43645,0.1079826,0.8932251,-0.4029077,0.1007269,0.909681,-0.4029077,0.1007269,0.909681,-0.4029077,0.1007269,0.909681,-0.43645,0.1079826,0.8932251,-0.4029077,0.1007269,0.909681,-0.4029077,0.1007269,0.909681,-0.43645,0.1079826,0.8932251,0.8660254,0,-0.5,0.8968728,0,-0.4422887,0.8660254,0,-0.5,0.8968728,0,-0.4422887,0.8660254,0,-0.5,0.8968728,0,-0.4422887,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,-0.545146,0.1274894,0.8285906,-0.5492249,0.1280642,0.8258035,-0.488321,0.1182571,0.8646143,-0.4939483,0.1192694,0.8612722,-0.488321,0.1182571,0.8646143,-0.5492249,0.1280642,0.8258035,-0.7450952,0.1381295,0.6524979,-0.7461935,0.138065,0.6512551,-0.7870173,0.1343535,0.6021237,-0.7890507,0.1340963,0.5995141,-0.7870173,0.1343535,0.6021237,-0.7461935,0.138065,0.6512551,-0.8258035,0.1280642,0.5492249,-0.8285906,0.1274894,0.545146,-0.8612722,0.1192694,0.4939483,-0.8646143,0.1182571,0.488321,-0.8612722,0.1192694,0.4939483,-0.8285906,0.1274894,0.545146,-0.7002038,0.1393886,0.7002038,-0.7002038,0.1393886,0.7002038,-0.6512551,0.138065,0.7461936,-0.6524978,0.1381295,0.7450952,-0.6512551,0.138065,0.7461936,-0.7002038,0.1393886,0.7002038,-0.8932251,0.1079826,0.4364501,-0.8969079,0.1064206,0.4292213,-0.909681,0.1007269,0.4029077,-0.909681,0.1007269,0.4029077,-0.909681,0.1007269,0.4029077,-0.8969079,0.1064206,0.4292213,-0.7002038,0.1393886,0.7002038,-0.7002038,0.1393886,0.7002038,-0.7450952,0.1381295,0.6524979,-0.7461935,0.138065,0.6512551,-0.7450952,0.1381295,0.6524979,-0.7002038,0.1393886,0.7002038,-0.8612722,0.1192694,0.4939483,-0.8646143,0.1182571,0.488321,-0.8932251,0.1079826,0.4364501,-0.8969079,0.1064206,0.4292213,-0.8932251,0.1079826,0.4364501,-0.8646143,0.1182571,0.488321,-0.6512551,0.138065,0.7461936,-0.6524978,0.1381295,0.7450952,-0.5995141,0.1340963,0.7890507,-0.6021237,0.1343535,0.7870173,-0.5995141,0.1340963,0.7890507,-0.6524978,0.1381295,0.7450952,-0.5995141,0.1340963,0.7890507,-0.6021237,0.1343535,0.7870173,-0.545146,0.1274894,0.8285906,-0.5492249,0.1280642,0.8258035,-0.545146,0.1274894,0.8285906,-0.6021237,0.1343535,0.7870173,-0.7870173,0.1343535,0.6021237,-0.7890507,0.1340963,0.5995141,-0.8258035,0.1280642,0.5492249,-0.8285906,0.1274894,0.545146,-0.8258035,0.1280642,0.5492249,-0.7890507,0.1340963,0.5995141,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9363292,0.3511235,0,-0.9363292,0.3511235,0,-0.9283187,0.3511234,0.1222155,-0.9283187,0.3511234,0.1222155,-0.9283187,0.3511234,0.1222155,-0.9363292,0.3511235,0,-0.2423398,0.3511235,0.9044245,-0.2423398,0.3511235,0.9044245,-0.3583177,0.3511234,0.8650554,-0.3583177,0.3511234,0.8650554,-0.3583177,0.3511234,0.8650554,-0.2423398,0.3511235,0.9044245,-0.4681646,0.3511235,0.8108849,-0.4681646,0.3511235,0.8108849,-0.5700011,0.3511235,0.7428399,-0.5700011,0.3511235,0.7428399,-0.5700011,0.3511235,0.7428399,-0.4681646,0.3511235,0.8108849,-0.8650554,0.3511234,-0.3583177,-0.9044245,0.3511235,-0.2423398,-0.8650554,0.3511234,-0.3583177,-0.9044245,0.3511235,-0.2423398,-0.8650554,0.3511234,-0.3583177,-0.9044245,0.3511235,-0.2423398,-0.8650554,0.3511234,0.3583177,-0.8650554,0.3511234,0.3583177,-0.8108849,0.3511235,0.4681646,-0.8108849,0.3511235,0.4681646,-0.8108849,0.3511235,0.4681646,-0.8650554,0.3511234,0.3583177,-0.9283187,0.3511234,0.1222155,-0.9283187,0.3511234,0.1222155,-0.9044245,0.3511235,0.2423398,-0.9044245,0.3511235,0.2423398,-0.9044245,0.3511235,0.2423398,-0.9283187,0.3511234,0.1222155,-0.6620847,0.3511235,-0.6620847,-0.6620847,0.3511235,-0.6620847,-0.5700011,0.3511235,-0.7428399,-0.5700011,0.3511235,-0.7428399,-0.5700011,0.3511235,-0.7428399,-0.6620847,0.3511235,-0.6620847,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3583177,0.3511234,0.8650554,-0.3583177,0.3511234,0.8650554,-0.4681646,0.3511235,0.8108849,-0.4681646,0.3511235,0.8108849,-0.4681646,0.3511235,0.8108849,-0.3583177,0.3511234,0.8650554,-0.7428399,0.3511235,-0.5700011,-0.8108849,0.3511235,-0.4681646,-0.7428399,0.3511235,-0.5700011,-0.8108849,0.3511235,-0.4681646,-0.7428399,0.3511235,-0.5700011,-0.8108849,0.3511235,-0.4681646,-0.5700011,0.3511235,0.7428399,-0.5700011,0.3511235,0.7428399,-0.6620847,0.3511235,0.6620847,-0.6620847,0.3511235,0.6620847,-0.6620847,0.3511235,0.6620847,-0.5700011,0.3511235,0.7428399,-0.9283187,0.3511234,-0.1222155,-0.9363292,0.3511235,0,-0.9283187,0.3511234,-0.1222155,-0.9363292,0.3511235,0,-0.9283187,0.3511234,-0.1222155,-0.9363292,0.3511235,0,-0.9044245,0.3511235,0.2423398,-0.9044245,0.3511235,0.2423398,-0.8650554,0.3511234,0.3583177,-0.8650554,0.3511234,0.3583177,-0.8650554,0.3511234,0.3583177,-0.9044245,0.3511235,0.2423398,-0.8108849,0.3511235,0.4681646,-0.8108849,0.3511235,0.4681646,-0.7428399,0.3511235,0.5700011,-0.7428399,0.3511235,0.5700011,-0.7428399,0.3511235,0.5700011,-0.8108849,0.3511235,0.4681646,-0.7428399,0.3511235,0.5700011,-0.7428399,0.3511235,0.5700011,-0.6620847,0.3511235,0.6620847,-0.6620847,0.3511235,0.6620847,-0.6620847,0.3511235,0.6620847,-0.7428399,0.3511235,0.5700011,0.4681646,0.3511235,0.8108849,0.4681646,0.3511235,0.8108849,0.3583177,0.3511234,0.8650554,0.3583177,0.3511234,0.8650554,0.3583177,0.3511234,0.8650554,0.4681646,0.3511235,0.8108849,0.4681646,0.3511235,-0.8108849,0.4681646,0.3511235,-0.8108849,0.5700011,0.3511235,-0.7428399,0.5700011,0.3511235,-0.7428399,0.5700011,0.3511235,-0.7428399,0.4681646,0.3511235,-0.8108849,0,0.3511235,0.9363292,0,0.3511235,0.9363292,-0.1222155,0.3511234,0.9283187,-0.1222155,0.3511234,0.9283187,-0.1222155,0.3511234,0.9283187,0,0.3511235,0.9363292,0.1222155,0.3511234,-0.9283187,0.1222155,0.3511234,-0.9283187,0.2423398,0.3511235,-0.9044245,0.2423398,0.3511235,-0.9044245,0.2423398,0.3511235,-0.9044245,0.1222155,0.3511234,-0.9283187,-0.1222155,0.3511234,-0.9283187,-0.1222155,0.3511234,-0.9283187,0,0.3511235,-0.9363292,0,0.3511235,-0.9363292,0,0.3511235,-0.9363292,-0.1222155,0.3511234,-0.9283187,0.8650554,0.3511234,-0.3583177,0.8650554,0.3511234,-0.3583177,0.9044245,0.3511235,-0.2423398,0.9044245,0.3511235,-0.2423398,0.9044245,0.3511235,-0.2423398,0.8650554,0.3511234,-0.3583177,-0.8108849,0.3511235,-0.4681646,-0.8650554,0.3511234,-0.3583177,-0.8108849,0.3511235,-0.4681646,-0.8650554,0.3511234,-0.3583177,-0.8108849,0.3511235,-0.4681646,-0.8650554,0.3511234,-0.3583177,-0.4681646,0.3511235,-0.8108849,-0.4681646,0.3511235,-0.8108849,-0.3583177,0.3511234,-0.8650554,-0.3583177,0.3511234,-0.8650554,-0.3583177,0.3511234,-0.8650554,-0.4681646,0.3511235,-0.8108849,0.8108849,0.3511235,-0.4681646,0.8108849,0.3511235,-0.4681646,0.8650554,0.3511234,-0.3583177,0.8650554,0.3511234,-0.3583177,0.8650554,0.3511234,-0.3583177,0.8108849,0.3511235,-0.4681646,0.8650554,0.3511234,0.3583177,0.8108849,0.3511235,0.4681646,0.8650554,0.3511234,0.3583177,0.8108849,0.3511235,0.4681646,0.8650554,0.3511234,0.3583177,0.8108849,0.3511235,0.4681646,0.7428399,0.3511235,0.5700011,0.6620847,0.3511235,0.6620847,0.7428399,0.3511235,0.5700011,0.6620847,0.3511235,0.6620847,0.7428399,0.3511235,0.5700011,0.6620847,0.3511235,0.6620847,0.9044245,0.3511235,0.2423398,0.8650554,0.3511234,0.3583177,0.9044245,0.3511235,0.2423398,0.8650554,0.3511234,0.3583177,0.9044245,0.3511235,0.2423398,0.8650554,0.3511234,0.3583177,-0.1222155,0.3511234,0.9283187,-0.1222155,0.3511234,0.9283187,-0.2423398,0.3511235,0.9044245,-0.2423398,0.3511235,0.9044245,-0.2423398,0.3511235,0.9044245,-0.1222155,0.3511234,0.9283187,0.6620847,0.3511235,0.6620847,0.6620847,0.3511235,0.6620847,0.5700011,0.3511235,0.7428399,0.5700011,0.3511235,0.7428399,0.5700011,0.3511235,0.7428399,0.6620847,0.3511235,0.6620847,0.9044245,0.3511235,-0.2423398,0.9044245,0.3511235,-0.2423398,0.9283187,0.3511234,-0.1222155,0.9283187,0.3511234,-0.1222155,0.9283187,0.3511234,-0.1222155,0.9044245,0.3511235,-0.2423398,0.1222155,0.3511234,0.9283187,0.1222155,0.3511234,0.9283187,0,0.3511235,0.9363292,0,0.3511235,0.9363292,0,0.3511235,0.9363292,0.1222155,0.3511234,0.9283187,0.5700011,0.3511235,-0.7428399,0.5700011,0.3511235,-0.7428399,0.6620847,0.3511235,-0.6620847,0.6620847,0.3511235,-0.6620847,0.6620847,0.3511235,-0.6620847,0.5700011,0.3511235,-0.7428399,-0.2423398,0.3511235,-0.9044245,-0.2423398,0.3511235,-0.9044245,-0.1222155,0.3511234,-0.9283187,-0.1222155,0.3511234,-0.9283187,-0.1222155,0.3511234,-0.9283187,-0.2423398,0.3511235,-0.9044245,-0.5700011,0.3511235,-0.7428399,-0.5700011,0.3511235,-0.7428399,-0.4681646,0.3511235,-0.8108849,-0.4681646,0.3511235,-0.8108849,-0.4681646,0.3511235,-0.8108849,-0.5700011,0.3511235,-0.7428399,0.2423398,0.3511235,-0.9044245,0.2423398,0.3511235,-0.9044245,0.3583177,0.3511234,-0.8650554,0.3583177,0.3511234,-0.8650554,0.3583177,0.3511234,-0.8650554,0.2423398,0.3511235,-0.9044245,0,0.3511235,-0.9363292,0,0.3511235,-0.9363292,0.1222155,0.3511234,-0.9283187,0.1222155,0.3511234,-0.9283187,0.1222155,0.3511234,-0.9283187,0,0.3511235,-0.9363292,-0.6620847,0.3511235,-0.6620847,-0.7428399,0.3511235,-0.5700011,-0.6620847,0.3511235,-0.6620847,-0.7428399,0.3511235,-0.5700011,-0.6620847,0.3511235,-0.6620847,-0.7428399,0.3511235,-0.5700011,-0.9044245,0.3511235,-0.2423398,-0.9283187,0.3511234,-0.1222155,-0.9044245,0.3511235,-0.2423398,-0.9283187,0.3511234,-0.1222155,-0.9044245,0.3511235,-0.2423398,-0.9283187,0.3511234,-0.1222155,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.8108849,0.3511235,0.4681646,0.7428399,0.3511235,0.5700011,0.8108849,0.3511235,0.4681646,0.7428399,0.3511235,0.5700011,0.8108849,0.3511235,0.4681646,0.7428399,0.3511235,0.5700011,0.9283187,0.3511234,-0.1222155,0.9283187,0.3511234,-0.1222155,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.9283187,0.3511234,-0.1222155,0.3583177,0.3511234,-0.8650554,0.3583177,0.3511234,-0.8650554,0.4681646,0.3511235,-0.8108849,0.4681646,0.3511235,-0.8108849,0.4681646,0.3511235,-0.8108849,0.3583177,0.3511234,-0.8650554,0.6620847,0.3511235,-0.6620847,0.6620847,0.3511235,-0.6620847,0.7428399,0.3511235,-0.5700011,0.7428399,0.3511235,-0.5700011,0.7428399,0.3511235,-0.5700011,0.6620847,0.3511235,-0.6620847,-0.3583177,0.3511234,-0.8650554,-0.3583177,0.3511234,-0.8650554,-0.2423398,0.3511235,-0.9044245,-0.2423398,0.3511235,-0.9044245,-0.2423398,0.3511235,-0.9044245,-0.3583177,0.3511234,-0.8650554,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.9283187,0.3511234,0.1222155,0.9283187,0.3511234,0.1222155,0.9283187,0.3511234,0.1222155,0.9363292,0.3511235,0,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.7428399,0.3511235,-0.5700011,0.7428399,0.3511235,-0.5700011,0.8108849,0.3511235,-0.4681646,0.8108849,0.3511235,-0.4681646,0.8108849,0.3511235,-0.4681646,0.7428399,0.3511235,-0.5700011,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.2423398,0.3511235,0.9044245,0.2423398,0.3511235,0.9044245,0.1222155,0.3511234,0.9283187,0.1222155,0.3511234,0.9283187,0.1222155,0.3511234,0.9283187,0.2423398,0.3511235,0.9044245,0.3583177,0.3511234,0.8650554,0.3583177,0.3511234,0.8650554,0.2423398,0.3511235,0.9044245,0.2423398,0.3511235,0.9044245,0.2423398,0.3511235,0.9044245,0.3583177,0.3511234,0.8650554,0.9283187,0.3511234,0.1222155,0.9044245,0.3511235,0.2423398,0.9283187,0.3511234,0.1222155,0.9044245,0.3511235,0.2423398,0.9283187,0.3511234,0.1222155,0.9044245,0.3511235,0.2423398,0.5700011,0.3511235,0.7428399,0.5700011,0.3511235,0.7428399,0.4681646,0.3511235,0.8108849,0.4681646,0.3511235,0.8108849,0.4681646,0.3511235,0.8108849,0.5700011,0.3511235,0.7428399,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0,0,1,0,0,1,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,0.1305262,0,-0.9914449,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,0.4292214,0.1064206,0.8969079,0.4029077,0.1007269,0.909681,0.4364501,0.1079826,0.8932251,0.4029077,0.1007269,0.909681,0.4364501,0.1079826,0.8932251,0.4029077,0.1007269,0.909681,0.8612722,0.1192694,0.4939483,0.8932251,0.1079826,0.43645,0.8646143,0.1182571,0.488321,0.8969079,0.1064206,0.4292213,0.8646143,0.1182571,0.488321,0.8932251,0.1079826,0.43645,0.8258035,0.1280642,0.5492249,0.8612722,0.1192694,0.4939483,0.8285906,0.1274894,0.545146,0.8646143,0.1182571,0.488321,0.8285906,0.1274894,0.545146,0.8612722,0.1192694,0.4939483,0.5995141,0.1340963,0.7890507,0.545146,0.1274894,0.8285905,0.6021237,0.1343535,0.7870173,0.5492249,0.1280642,0.8258035,0.6021237,0.1343535,0.7870173,0.545146,0.1274894,0.8285905,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.8968728,0,-0.4422887,-0.8660254,0,-0.5,-0.8968728,0,-0.4422887,-0.8660254,0,-0.5,-0.8968728,0,-0.4422887,0.7450952,0.1381295,0.6524978,0.7870173,0.1343535,0.6021237,0.7461936,0.138065,0.6512551,0.7890507,0.1340963,0.5995141,0.7461936,0.138065,0.6512551,0.7870173,0.1343535,0.6021237,0.7002038,0.1393886,0.7002038,0.6512551,0.138065,0.7461935,0.7002038,0.1393886,0.7002038,0.6524979,0.1381295,0.7450951,0.7002038,0.1393886,0.7002038,0.6512551,0.138065,0.7461935,0.6512551,0.138065,0.7461935,0.5995141,0.1340963,0.7890507,0.6524979,0.1381295,0.7450951,0.6021237,0.1343535,0.7870173,0.6524979,0.1381295,0.7450951,0.5995141,0.1340963,0.7890507,0.7002038,0.1393886,0.7002038,0.7450952,0.1381295,0.6524978,0.7002038,0.1393886,0.7002038,0.7461936,0.138065,0.6512551,0.7002038,0.1393886,0.7002038,0.7450952,0.1381295,0.6524978,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,0.488321,0.1182571,0.8646143,0.4292214,0.1064206,0.8969079,0.4939483,0.1192694,0.8612722,0.4364501,0.1079826,0.8932251,0.4939483,0.1192694,0.8612722,0.4292214,0.1064206,0.8969079,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.4422887,0,-0.8968728,-0.4422887,0,-0.8968728,-0.4422887,0,-0.8968728,-0.5,0,-0.8660254,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,0.545146,0.1274894,0.8285905,0.488321,0.1182571,0.8646143,0.5492249,0.1280642,0.8258035,0.4939483,0.1192694,0.8612722,0.5492249,0.1280642,0.8258035,0.488321,0.1182571,0.8646143,0.7870173,0.1343535,0.6021237,0.8258035,0.1280642,0.5492249,0.7890507,0.1340963,0.5995141,0.8285906,0.1274894,0.545146,0.7890507,0.1340963,0.5995141,0.8258035,0.1280642,0.5492249,0.8932251,0.1079826,0.43645,0.909681,0.1007269,0.4029077,0.8969079,0.1064206,0.4292213,0.909681,0.1007269,0.4029077,0.8969079,0.1064206,0.4292213,0.909681,0.1007269,0.4029077,-0.7890507,0.1340963,-0.5995141,-0.7461935,0.138065,-0.6512551,-0.7870173,0.1343535,-0.6021237,-0.7450952,0.1381295,-0.6524978,-0.7870173,0.1343535,-0.6021237,-0.7461935,0.138065,-0.6512551,-0.8285906,0.1274894,-0.545146,-0.7890507,0.1340963,-0.5995141,-0.8258035,0.1280642,-0.5492249,-0.7870173,0.1343535,-0.6021237,-0.8258035,0.1280642,-0.5492249,-0.7890507,0.1340963,-0.5995141,-0.7002038,0.1393886,-0.7002038,-0.6512551,0.138065,-0.7461935,-0.7002038,0.1393886,-0.7002038,-0.6524978,0.1381295,-0.7450952,-0.7002038,0.1393886,-0.7002038,-0.6512551,0.138065,-0.7461935,-0.4292213,0.1064206,-0.8969079,-0.4029077,0.1007269,-0.909681,-0.43645,0.1079826,-0.8932251,-0.4029077,0.1007269,-0.909681,-0.43645,0.1079826,-0.8932251,-0.4029077,0.1007269,-0.909681,-0.6512551,0.138065,-0.7461935,-0.5995141,0.1340963,-0.7890507,-0.6524978,0.1381295,-0.7450952,-0.6021237,0.1343535,-0.7870173,-0.6524978,0.1381295,-0.7450952,-0.5995141,0.1340963,-0.7890507,0.8968728,0,0.4422885,0.8660254,0,0.5,0.8968728,0,0.4422885,0.8660254,0,0.5,0.8968728,0,0.4422885,0.8660254,0,0.5,0.5,0,0.8660254,0.5,0,0.8660254,0.4422887,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.8968728,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,-0.909681,0.1007269,-0.4029076,-0.8969079,0.1064206,-0.4292213,-0.909681,0.1007269,-0.4029076,-0.8932251,0.1079826,-0.43645,-0.909681,0.1007269,-0.4029076,-0.8969079,0.1064206,-0.4292213,-0.8969079,0.1064206,-0.4292213,-0.8646143,0.1182571,-0.488321,-0.8932251,0.1079826,-0.43645,-0.8612722,0.1192694,-0.4939483,-0.8932251,0.1079826,-0.43645,-0.8646143,0.1182571,-0.488321,-0.8646143,0.1182571,-0.488321,-0.8285906,0.1274894,-0.545146,-0.8612722,0.1192694,-0.4939483,-0.8258035,0.1280642,-0.5492249,-0.8612722,0.1192694,-0.4939483,-0.8285906,0.1274894,-0.545146,-0.5995141,0.1340963,-0.7890507,-0.545146,0.1274894,-0.8285906,-0.6021237,0.1343535,-0.7870173,-0.5492249,0.1280642,-0.8258035,-0.6021237,0.1343535,-0.7870173,-0.545146,0.1274894,-0.8285906,-0.488321,0.1182571,-0.8646143,-0.4292213,0.1064206,-0.8969079,-0.4939483,0.1192694,-0.8612722,-0.43645,0.1079826,-0.8932251,-0.4939483,0.1192694,-0.8612722,-0.4292213,0.1064206,-0.8969079,-0.545146,0.1274894,-0.8285906,-0.488321,0.1182571,-0.8646143,-0.5492249,0.1280642,-0.8258035,-0.4939483,0.1192694,-0.8612722,-0.5492249,0.1280642,-0.8258035,-0.488321,0.1182571,-0.8646143,-0.7461935,0.138065,-0.6512551,-0.7002038,0.1393886,-0.7002038,-0.7450952,0.1381295,-0.6524978,-0.7002038,0.1393886,-0.7002038,-0.7450952,0.1381295,-0.6524978,-0.7002038,0.1393886,-0.7002038,0.8969079,0.1064206,-0.4292213,0.8932251,0.1079826,-0.43645,0.8646143,0.1182571,-0.488321,0.8612722,0.1192695,-0.4939483,0.8646143,0.1182571,-0.488321,0.8932251,0.1079826,-0.43645,0.7461936,0.138065,-0.6512551,0.7450952,0.1381295,-0.6524978,0.7002038,0.1393886,-0.7002038,0.7002038,0.1393886,-0.7002038,0.7002038,0.1393886,-0.7002038,0.7450952,0.1381295,-0.6524978,0.8646143,0.1182571,-0.488321,0.8612722,0.1192695,-0.4939483,0.8285906,0.1274894,-0.545146,0.8258035,0.1280642,-0.5492249,0.8285906,0.1274894,-0.545146,0.8612722,0.1192695,-0.4939483,0.8285906,0.1274894,-0.545146,0.8258035,0.1280642,-0.5492249,0.7890507,0.1340963,-0.5995141,0.7870173,0.1343535,-0.6021237,0.7890507,0.1340963,-0.5995141,0.8258035,0.1280642,-0.5492249,0.909681,0.1007269,-0.4029077,0.909681,0.1007269,-0.4029077,0.8969079,0.1064206,-0.4292213,0.8932251,0.1079826,-0.43645,0.8969079,0.1064206,-0.4292213,0.909681,0.1007269,-0.4029077,0.5995141,0.1340963,-0.7890507,0.6021237,0.1343535,-0.7870173,0.545146,0.1274894,-0.8285906,0.5492249,0.1280642,-0.8258035,0.545146,0.1274894,-0.8285906,0.6021237,0.1343535,-0.7870173,0.7002038,0.1393886,-0.7002038,0.7002038,0.1393886,-0.7002038,0.6512551,0.138065,-0.7461935,0.6524979,0.1381295,-0.7450952,0.6512551,0.138065,-0.7461935,0.7002038,0.1393886,-0.7002038,0.6512551,0.138065,-0.7461935,0.6524979,0.1381295,-0.7450952,0.5995141,0.1340963,-0.7890507,0.6021237,0.1343535,-0.7870173,0.5995141,0.1340963,-0.7890507,0.6524979,0.1381295,-0.7450952,0.7890507,0.1340963,-0.5995141,0.7870173,0.1343535,-0.6021237,0.7461936,0.138065,-0.6512551,0.7450952,0.1381295,-0.6524978,0.7461936,0.138065,-0.6512551,0.7870173,0.1343535,-0.6021237,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,0.488321,0.1182571,-0.8646143,0.4939483,0.1192694,-0.8612722,0.4292213,0.1064206,-0.8969079,0.4364501,0.1079826,-0.8932251,0.4292213,0.1064206,-0.8969079,0.4939483,0.1192694,-0.8612722,-0.5,0,0.8660254,-0.4422888,0,0.8968727,-0.5,0,0.8660254,-0.4422888,0,0.8968727,-0.5,0,0.8660254,-0.4422888,0,0.8968727,-0.8968728,0,0.4422887,-0.8660254,0,0.5,-0.8968728,0,0.4422887,-0.8660254,0,0.5,-0.8968728,0,0.4422887,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.7071068,0,0.7071067,-0.7933533,0,0.6087614,-0.7071068,0,0.7071067,-0.7933533,0,0.6087614,-0.7071068,0,0.7071067,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,0.545146,0.1274894,-0.8285906,0.5492249,0.1280642,-0.8258035,0.488321,0.1182571,-0.8646143,0.4939483,0.1192694,-0.8612722,0.488321,0.1182571,-0.8646143,0.5492249,0.1280642,-0.8258035,0.4292213,0.1064206,-0.8969079,0.4364501,0.1079826,-0.8932251,0.4029077,0.1007269,-0.909681,0.4029077,0.1007269,-0.909681,0.4029077,0.1007269,-0.909681,0.4364501,0.1079826,-0.8932251,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.6087614,0,0.7933533,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *2308 { + a: 1.333481,5.488841,-1.975131,5.488841,1.84003,8.658951,-1.373257,8.658951,-3.218658,4.010318E-15,-3.218658,3.149606,2.268475,4.232362E-15,2.268475,3.149606,3.218658,3.149606,3.218658,2.069765E-14,-3.218658,3.149606,-3.218658,2.069765E-14,3.218658,3.149606,3.218658,2.11083E-14,-3.218658,3.149606,-3.218658,2.11083E-14,3.218658,2.104924E-14,-3.218658,2.104924E-14,3.218658,3.149606,-3.218658,3.149606,1.265131,4.871336,-2.043481,4.871336,1.889752,8.037044,-1.773501,6.058479,-1.323535,8.037044,3.218658,3.149606,3.218658,3.065028E-15,-2.268475,3.149606,-2.268475,3.731162E-15,3.218658,2.122617E-14,-3.218658,2.122617E-14,3.218658,3.149606,-3.218658,3.149606,1.403271,5.983787,-1.905341,5.983787,1.789261,9.157825,-1.424026,9.157825,-1.685496,9.782821,1.527791,9.782821,-1.545909,6.603354,1.762703,6.603354,-1.78926,9.157826,1.424027,9.157826,-1.40327,5.983787,1.905342,5.983787,1.61812,6.727357,-1.690492,6.727357,1.632968,9.907979,-1.580319,9.907979,-1.889751,8.037044,1.323536,8.037044,-1.26513,4.871337,2.043482,4.871337,-1.632967,9.907979,1.58032,9.907979,-1.618119,6.727357,1.690493,6.727357,-1.840029,8.658951,1.373258,8.658951,-1.33348,5.488841,1.975132,5.488841,1.54591,6.603354,-1.762702,6.603354,1.685497,9.782821,-1.527789,9.782821,1.474186,6.355429,-1.834425,6.355429,1.737673,9.532655,-1.475613,9.532655,-1.737672,9.532656,1.475615,9.532656,-1.474185,6.355429,1.834426,6.355429,59.05512,4.296891,45.04626,4.296891,59.05512,7.543431,45.04626,7.543431,19.68504,3.149606,19.68504,1.949508E-13,18.50394,3.149606,17.71654,1.949508E-13,-45.04626,4.296891,-59.05512,4.296891,-45.04626,7.543431,-59.05512,7.543431,59.05512,-17.71654,59.05512,-19.68504,45.04626,-17.71654,45.04626,-19.68504,43.70638,-20.7417,42.61936,-24.6063,42.16699,-23.67039,39.04298,-29.95873,40.43501,-26.48946,38.5182,-29.18626,34.79856,-34.79856,36.42516,-31.7487,34.16528,-34.16528,29.95873,-39.04298,31.7487,-36.42516,29.18626,-38.5182,24.6063,-42.61936,26.48946,-40.43501,23.67039,-42.16699,19.68504,-45.04626,20.7417,-43.70638,17.71654,-45.04626,19.68504,-59.05512,17.71654,-59.05512,59.05512,6.217249E-15,45.04626,6.217249E-15,59.05512,3.149606,45.04626,3.149606,-17.71654,6.217249E-15,-19.68504,6.217249E-15,-18.50394,3.149606,-19.68504,3.149606,-45.04626,4.662937E-15,-59.05512,5.329071E-15,-45.04626,3.149606,-59.05512,3.149606,-17.71653,4.440892E-15,-19.68504,4.440892E-15,-18.50394,3.149606,-19.68504,3.149606,-59.05512,-18.50394,-45.04626,-18.50394,-59.05512,-19.68504,-45.04626,-19.68504,-43.74498,-21.44195,-42.61936,-24.6063,-42.24995,-24.28625,-39.04298,-29.95873,-40.56787,-27.0241,-38.70628,-29.64321,-34.79856,-34.79856,-36.67355,-32.13182,-34.47878,-34.47878,-29.95873,-39.04298,-32.13182,-36.67355,-29.64321,-38.70628,-24.6063,-42.61936,-27.0241,-40.56787,-24.28625,-42.24995,-19.68504,-45.04626,-21.44194,-43.74498,-18.50394,-45.04626,-19.68504,-59.05512,-18.50394,-59.05512,19.68504,1.949508E-13,17.71654,1.949508E-13,19.68504,3.149606,18.50394,3.149606,59.05512,7.543431,59.05512,4.296891,45.04626,7.543431,45.04626,4.296891,-59.05512,4.296891,-59.05512,7.543431,-45.04626,4.296891,-45.04626,5.514346,-45.04626,7.543431,59.05512,3.149606,59.05512,4.440892E-15,45.04626,3.149606,45.04626,4.218847E-15,-59.05512,5.329071E-15,-59.05512,3.149606,-45.04626,5.329071E-15,-45.04626,3.149606,-0.6952304,-0.767583,0.6952298,-0.767583,-0.7724782,-4.130477,0.7724776,-4.130477,0.7724778,-4.130477,-0.772478,-4.130477,0.69523,-0.767583,-0.6952302,-0.767583,0.7724777,-4.130477,-0.772478,-4.130477,0.6952299,-0.767583,-0.6952303,-0.767583,-0.7724782,-4.130477,-0.6952304,-0.7675831,0.7724776,-4.130477,0.6952298,-0.7675831,-0.6952304,-0.767583,0.6952298,-0.767583,-0.7724782,-4.130477,0.7724776,-4.130477,-0.6952304,-0.767583,0.6952298,-0.767583,-0.7724782,-4.130477,0.7724776,-4.130477,0.7724777,-4.130477,-0.7724781,-4.130477,0.6952299,-0.7675831,-0.6952303,-0.7675831,-10.26772,-2.751226,-9.84252,-2.934797E-07,-9.820766,-4.067895,-9.758316,-1.284707,-9.205782,-5.314961,-9.507144,-2.547432,-9.093303,-3.76657,-8.433284,-6.471087,-8.523872,-4.92126,-7.808596,-5.991746,-7.51649,-7.51649,-6.959713,-6.959713,-6.471086,-8.433284,-5.991746,-7.808596,-5.31496,-9.205782,-4.92126,-8.523872,-4.067895,-9.820767,-3.766569,-9.093303,-2.751226,-10.26772,-2.547431,-9.507144,-1.387483,-10.53898,-1.284707,-9.758316,1.581952E-10,-10.62992,1.90937E-10,-9.84252,1.387483,-10.53898,1.284707,-9.758316,2.547431,-9.507144,2.751226,-10.26772,3.766569,-9.093303,4.067895,-9.820767,4.92126,-8.523872,5.31496,-9.205782,5.991746,-7.808596,6.471086,-8.433284,6.959713,-6.959713,7.51649,-7.51649,7.808596,-5.991746,8.433284,-6.471087,8.523872,-4.92126,9.205782,-5.314961,9.093303,-3.76657,9.507144,-2.547432,9.820766,-4.067895,9.758316,-1.284707,9.84252,-2.934068E-07,10.26772,-2.751226,10.26772,2.751226,10.53898,1.387483,10.53898,-1.387483,10.62992,-2.934046E-07,9.820766,4.067894,9.758316,1.284706,9.507144,2.547431,9.205782,5.31496,9.093303,3.766569,8.523872,4.921259,8.433284,6.471086,7.808596,5.991746,7.51649,7.516489,6.959713,6.959712,6.471086,8.433283,5.991746,7.808596,5.31496,9.205782,4.92126,8.523871,4.067895,9.820766,3.766569,9.093302,2.751226,10.26772,2.547431,9.507144,1.387483,10.53898,1.284707,9.758315,-2.665956E-11,9.84252,-2.961542E-11,10.62992,-1.284707,9.758315,-1.387483,10.53898,-2.547431,9.507144,-2.751226,10.26772,-3.766569,9.093302,-4.067895,9.820766,-4.92126,8.523871,-5.31496,9.205782,-5.991746,7.808596,-6.471086,8.433283,-6.959713,6.959712,-7.51649,7.516489,-7.808596,5.991746,-8.433284,6.471086,-8.523872,4.921259,-9.093303,3.766569,-9.205782,5.31496,-9.507144,2.547431,-9.758316,1.284706,-9.820766,4.067894,-10.26772,2.751226,-10.53898,-1.387483,-10.53898,1.387483,-10.62992,-2.934829E-07,0.7724777,-4.130477,-0.772478,-4.130477,0.69523,-0.767583,-0.6952302,-0.767583,-0.7724782,-4.130477,-0.6952304,-0.7675831,0.7724777,-4.130477,0.6952299,-0.7675831,0.7724777,-4.130477,-0.7724781,-4.130477,0.6952299,-0.767583,-0.6952303,-0.767583,-0.7724782,-4.130477,-0.6952304,-0.767583,0.7724776,-4.130477,0.6952298,-0.767583,-0.6952304,-0.767583,0.6952298,-0.767583,-0.7724782,-4.130477,0.7724776,-4.130477,-0.6952304,-0.767583,0.6952299,-0.767583,-0.7724782,-4.130477,0.7724777,-4.130477,-0.6952303,-0.767583,0.6952299,-0.767583,-0.7724781,-4.130477,0.7724777,-4.130477,0.772478,-4.130477,-0.7724777,-4.130477,0.6952302,-0.767583,-0.69523,-0.767583,0.772478,-4.130477,-0.7724777,-4.130477,0.6952303,-0.7675831,-0.6952299,-0.7675831,0.7724779,-4.130477,-0.7724779,-4.130477,0.6952301,-0.767583,-0.6952301,-0.767583,0.772478,-4.130477,-0.7724779,-4.130477,0.6952302,-0.7675831,-0.6952301,-0.7675831,0.7724779,-4.130477,-0.7724779,-4.130477,0.6952301,-0.7675831,-0.6952301,-0.7675831,0.7724782,-4.130477,-0.7724776,-4.130477,0.6952304,-0.7675831,-0.6952298,-0.7675831,-0.7724782,-4.130477,-0.6952304,-0.7675831,0.7724776,-4.130477,0.6952298,-0.7675831,0.7724777,-4.130477,-0.772478,-4.130477,0.69523,-0.7675831,-0.6952302,-0.7675831,0.7724782,-4.130477,-0.7724776,-4.130477,0.6952304,-0.7675831,-0.6952298,-0.7675831,0.6952304,-0.767583,0.7724782,-4.130477,-0.6952298,-0.767583,-0.7724776,-4.130477,0.6952303,-0.767583,0.7724781,-4.130477,-0.6952299,-0.767583,-0.7724777,-4.130477,0.6952304,-0.767583,0.7724782,-4.130477,-0.6952298,-0.767583,-0.7724776,-4.130477,0.7724779,-4.130477,-0.772478,-4.130477,0.6952301,-0.767583,-0.6952302,-0.767583,0.7724781,-4.130477,-0.7724777,-4.130477,0.6952303,-0.767583,-0.6952299,-0.767583,0.7724782,-4.130477,-0.7724776,-4.130477,0.6952304,-0.7675831,-0.6952298,-0.7675831,0.7724779,-4.130477,-0.7724779,-4.130477,0.6952301,-0.767583,-0.6952301,-0.767583,0.7724781,-4.130477,-0.7724777,-4.130477,0.6952303,-0.7675831,-0.6952299,-0.7675831,0.7724779,-4.130477,-0.772478,-4.130477,0.6952301,-0.7675831,-0.6952302,-0.7675831,0.7724777,-4.130477,-0.772478,-4.130477,0.6952299,-0.7675831,-0.6952303,-0.7675831,0.772478,-4.130477,-0.7724778,-4.130477,0.6952302,-0.7675831,-0.69523,-0.7675831,0.7724779,-4.130477,-0.7724779,-4.130477,0.6952301,-0.7675831,-0.6952301,-0.7675831,-0.7724781,-4.130477,-0.6952303,-0.7675831,0.7724777,-4.130477,0.6952299,-0.7675831,-0.7724782,-4.130477,-0.6952304,-0.7675831,0.7724776,-4.130477,0.6952298,-0.7675831,0.6437318,3.149606,0.6437318,4.440892E-15,-0.6437313,3.149606,-0.6437313,4.440892E-15,0.6952304,-0.767583,0.7724782,-4.130477,-0.6952299,-0.767583,-0.7724777,-4.130477,0.7724782,-4.130477,-0.7724776,-4.130477,0.6952304,-0.767583,-0.6952298,-0.767583,0.772478,-4.130477,-0.7724777,-4.130477,0.6952302,-0.7675831,-0.69523,-0.7675831,0.7724781,-4.130477,-0.7724777,-4.130477,0.6952303,-0.7675831,-0.6952299,-0.7675831,0.7724778,-4.130477,-0.772478,-4.130477,0.69523,-0.7675831,-0.6952302,-0.7675831,0.7724782,-4.130477,-0.7724776,-4.130477,0.6952304,-0.767583,-0.6952298,-0.767583,0.6437319,3.149606,0.6437319,4.440892E-15,-0.6437313,3.149606,-0.6437313,4.440892E-15,0.7724782,-4.130477,-0.7724777,-4.130477,0.6952304,-0.7675831,-0.6952299,-0.7675831,0.6437319,3.149606,0.6437319,4.440892E-15,-0.6437313,3.149606,-0.6437313,4.440892E-15,0.772478,-4.130477,-0.7724779,-4.130477,0.6952302,-0.767583,-0.6952301,-0.767583,0.772478,-4.130477,-0.7724778,-4.130477,0.6952302,-0.767583,-0.69523,-0.767583,0.6952304,-0.767583,0.7724782,-4.130477,-0.6952298,-0.767583,-0.7724776,-4.130477,0.772478,-4.130477,-0.7724777,-4.130477,0.6952303,-0.767583,-0.6952299,-0.767583,11.81102,-2.934869E-07,11.70998,-1.541648,11.70998,1.541648,11.40857,3.056918,11.40857,-3.056918,10.91196,4.519883,10.91196,-4.519883,10.22865,5.905511,10.22865,-5.905512,9.84252,-2.934797E-07,9.758316,1.284706,9.370315,7.190095,9.507144,2.547431,9.093303,3.766569,8.351655,8.351655,8.523872,4.921259,7.808596,5.991746,7.190095,9.370315,6.959713,6.959712,5.905512,10.22865,5.991746,7.808596,4.92126,8.523871,4.519883,10.91196,3.766569,9.093302,3.056918,11.40857,2.547431,9.507144,1.541648,11.70998,1.284707,9.758315,3.393552E-11,11.81102,2.665956E-11,9.84252,-1.541648,11.70998,-1.284707,9.758315,-2.547431,9.507144,-3.056918,11.40857,-3.766569,9.093302,-4.519883,10.91196,-4.92126,8.523871,-5.905512,10.22865,-5.991746,7.808596,-7.190095,9.370315,-6.959713,6.959712,-7.808596,5.991746,-8.351655,8.351655,-8.523872,4.921259,-9.370315,7.190095,-9.093303,3.766569,-9.507144,2.547431,-10.22865,5.905511,-9.758316,1.284706,-9.84252,-2.934068E-07,-10.22865,-5.905512,-9.758316,-1.284707,-9.507144,-2.547432,-9.370315,-7.190096,-9.093303,-3.76657,-8.523872,-4.92126,-8.351655,-8.351655,-7.808596,-5.991746,-7.190095,-9.370316,-6.959713,-6.959713,-5.991746,-7.808596,-5.905512,-10.22865,-4.92126,-8.523872,-4.519883,-10.91196,-3.766569,-9.093303,-3.056918,-11.40857,-2.547431,-9.507144,-1.541648,-11.70998,-1.284707,-9.758316,-1.90937E-10,-9.84252,-1.747935E-10,-11.81102,1.284707,-9.758316,1.541648,-11.70998,2.547431,-9.507144,3.056918,-11.40857,3.766569,-9.093303,4.519883,-10.91196,4.92126,-8.523872,5.905512,-10.22865,5.991746,-7.808596,6.959713,-6.959713,7.190095,-9.370316,7.808596,-5.991746,8.351655,-8.351655,8.523872,-4.92126,9.093303,-3.76657,9.370315,-7.190096,9.507144,-2.547432,9.758316,-1.284707,-10.91196,4.519883,-10.91196,-4.519883,-11.40857,3.056918,-11.40857,-3.056918,-11.70998,1.541648,-11.70998,-1.541648,-11.81102,-2.933998E-07,0.6437319,3.149606,0.6437319,4.440892E-15,-0.6437313,3.149606,-0.6437313,4.440892E-15,0.6437319,3.149606,0.6437319,4.440892E-15,-0.6437313,3.149606,-0.6437313,4.440892E-15,0.6437319,3.149606,0.6437319,4.440892E-15,-0.6437313,3.149606,-0.6437313,4.440892E-15,0.6437318,3.149606,0.6437318,4.440892E-15,-0.6437314,3.149606,-0.6437314,4.440892E-15,0.6437318,4.440892E-15,-0.6437314,4.440892E-15,0.6437318,3.149606,-0.6437314,3.149606,0.6437317,4.440892E-15,-0.6437315,4.440892E-15,0.6437317,3.149606,-0.6437315,3.149606,0.6437317,4.440892E-15,-0.6437315,4.440892E-15,0.6437317,3.149606,-0.6437315,3.149606,0.6437317,4.440892E-15,-0.6437315,4.440892E-15,0.6437317,3.149606,-0.6437315,3.149606,0.6437316,4.440892E-15,-0.6437316,4.440892E-15,0.6437316,3.149606,-0.6437316,3.149606,0.6437318,4.440892E-15,-0.6437314,4.440892E-15,0.6437318,3.149606,-0.6437314,3.149606,0.6437319,3.149606,0.6437319,4.440892E-15,-0.6437313,3.149606,-0.6437313,4.440892E-15,0.6437318,3.149606,0.6437318,4.440892E-15,-0.6437313,3.149606,-0.6437313,4.440892E-15,0.6437318,3.149606,0.6437318,4.440892E-15,-0.6437314,3.149606,-0.6437314,4.440892E-15,-0.6437318,4.440892E-15,-0.6437318,3.149606,0.6437314,4.440892E-15,0.6437314,3.149606,-0.6437319,4.440892E-15,-0.6437319,3.149606,0.6437313,4.440892E-15,0.6437313,3.149606,0.6437316,4.440892E-15,-0.6437316,4.440892E-15,0.6437316,3.149606,-0.6437316,3.149606,-0.6437319,4.440892E-15,-0.6437319,3.149606,0.6437313,4.440892E-15,0.6437313,3.149606,0.6437314,4.440892E-15,-0.6437318,4.440892E-15,0.6437314,3.149606,-0.6437318,3.149606,0.6437315,4.440892E-15,-0.6437317,4.440892E-15,0.6437315,3.149606,-0.6437317,3.149606,0.6437314,4.440892E-15,-0.6437318,4.440892E-15,0.6437314,3.149606,-0.6437318,3.149606,-0.6437318,4.440892E-15,-0.6437318,3.149606,0.6437313,4.440892E-15,0.6437313,3.149606,0.6437315,4.440892E-15,-0.6437317,4.440892E-15,0.6437315,3.149606,-0.6437317,3.149606,0.6437314,4.440892E-15,-0.6437318,4.440892E-15,0.6437314,3.149606,-0.6437318,3.149606,-0.6437318,4.440892E-15,-0.6437318,3.149606,0.6437313,4.440892E-15,0.6437313,3.149606,-0.6437319,4.440892E-15,-0.6437319,3.149606,0.6437313,4.440892E-15,0.6437313,3.149606,0.6437315,4.440892E-15,-0.6437317,4.440892E-15,0.6437315,3.149606,-0.6437317,3.149606,-0.6437319,4.440892E-15,-0.6437319,3.149606,0.6437313,4.440892E-15,0.6437313,3.149606,0.6437315,4.440892E-15,-0.6437317,4.440892E-15,0.6437315,3.149606,-0.6437317,3.149606,0.6437316,4.440892E-15,-0.6437316,4.440892E-15,0.6437316,3.149606,-0.6437316,3.149606,0.6437316,4.440892E-15,-0.6437316,4.440892E-15,0.6437316,3.149606,-0.6437316,3.149606,0.6437315,4.440892E-15,-0.6437317,4.440892E-15,0.6437315,3.149606,-0.6437317,3.149606,-0.6437318,4.440892E-15,-0.6437318,3.149606,0.6437314,4.440892E-15,0.6437314,3.149606,-0.6437318,4.440892E-15,-0.6437318,3.149606,0.6437314,4.440892E-15,0.6437314,3.149606,0.6437317,4.440892E-15,-0.6437315,4.440892E-15,0.6437317,3.149606,-0.6437315,3.149606,-0.6437319,4.440892E-15,-0.6437319,3.149606,0.6437313,4.440892E-15,0.6437313,3.149606,0.6437314,4.440892E-15,-0.6437318,4.440892E-15,0.6437314,3.149606,-0.6437318,3.149606,-0.6437318,4.440892E-15,-0.6437318,3.149606,0.6437314,4.440892E-15,0.6437314,3.149606,0.6437317,4.440892E-15,-0.6437315,4.440892E-15,0.6437317,3.149606,-0.6437315,3.149606,-0.6437319,4.440892E-15,-0.6437319,3.149606,0.6437313,4.440892E-15,0.6437313,3.149606,0.6437315,4.440892E-15,-0.6437317,4.440892E-15,0.6437315,3.149606,-0.6437317,3.149606,0.6437317,4.440892E-15,-0.6437315,4.440892E-15,0.6437317,3.149606,-0.6437315,3.149606,0.6437318,4.440892E-15,-0.6437314,4.440892E-15,0.6437318,3.149606,-0.6437314,3.149606,0.6437318,3.149606,0.6437318,4.440892E-15,-0.6437314,3.149606,-0.6437314,4.440892E-15,0.6437318,4.440892E-15,-0.6437314,4.440892E-15,0.6437318,3.149606,-0.6437314,3.149606,0.6437318,3.149606,0.6437318,4.440892E-15,-0.6437314,3.149606,-0.6437314,4.440892E-15,3.218657,1.825516E-14,-3.218659,1.825516E-14,3.218657,3.149606,-3.218659,3.149606,-1.265129,4.871337,-1.88975,8.037044,2.043483,4.871337,1.323537,8.037044,1.840031,8.658951,1.333482,5.488841,-1.373256,8.658951,-1.97513,5.488841,1.789262,9.157825,1.403272,5.983787,-1.424025,9.157825,-1.90534,5.983787,-1.474184,6.355429,-1.737671,9.532656,1.834427,6.355429,1.475616,9.532656,-3.218659,1.878368E-14,-3.218659,3.149606,3.218657,1.878368E-14,3.218657,3.149606,-3.218659,1.567827E-15,-3.218659,3.149606,2.268474,1.789872E-15,2.268474,3.149606,1.685498,9.782821,1.545911,6.603354,-1.527789,9.782821,-1.762701,6.603354,-1.618118,6.727357,-1.632966,9.907979,1.690494,6.727357,1.580321,9.907979,-1.545908,6.603354,-1.685495,9.782821,1.762704,6.603354,1.527791,9.782821,1.632969,9.907979,1.618121,6.727357,-1.580318,9.907979,-1.690491,6.727357,3.218657,1.866581E-14,-3.218659,1.866581E-14,3.218657,3.149606,-3.218659,3.149606,-1.333479,5.488841,-1.840028,8.658951,1.975133,5.488841,1.373259,8.658951,3.218657,1.36754E-16,-2.268476,3.911512E-15,3.218657,3.149606,-2.268476,3.149606,-3.218659,1.860675E-14,-3.218659,3.149606,3.218657,1.860675E-14,3.218657,3.149606,-1.403269,5.983787,-1.789259,9.157826,1.905343,5.983787,1.424028,9.157826,1.737674,9.532655,1.474187,6.355429,-1.475613,9.532655,-1.834424,6.355429,1.889753,8.037044,1.265132,4.871336,-1.323534,8.037044,-2.04348,4.871336,-1.762702,6.603354,-1.52779,9.782821,1.54591,6.603354,1.685497,9.782821,-1.834426,6.355429,-1.475614,9.532655,1.474186,6.355429,1.737673,9.532655,-1.61812,6.727357,-1.632967,9.907979,1.690492,6.727357,1.58032,9.907979,-1.265131,4.871337,-1.889751,8.037044,2.043481,4.871337,1.323536,8.037044,-1.54591,6.603354,-1.685497,9.782821,1.762702,6.603354,1.52779,9.782821,2.268467,3.149606,2.268467,6.365918E-15,-3.218666,3.149606,-3.218666,5.255695E-15,3.218659,2.015696E-13,-2.268474,2.022357E-13,3.218659,3.149606,-2.268474,3.149606,3.218659,2.180787E-14,-3.218657,2.180787E-14,3.218659,3.149606,-3.218657,3.149606,3.218659,2.221852E-14,-3.218657,2.221852E-14,3.218659,3.149606,-3.218657,3.149606,3.218658,3.149606,3.218658,2.233639E-14,-3.218657,3.149606,-3.218657,2.233639E-14,3.218658,3.149606,3.218658,2.215946E-14,-3.218657,3.149606,-3.218657,2.215946E-14,-2.043477,4.871336,-1.323531,8.037043,1.265136,4.871336,1.889757,8.037043,-1.975131,5.488841,-1.373257,8.658951,1.333481,5.488841,1.84003,8.658951,-1.905341,5.983787,-1.424026,9.157825,1.40327,5.983787,1.789261,9.157825,-1.474186,6.355429,-1.737673,9.532656,1.834426,6.355429,1.475614,9.532656,-1.333481,5.488841,-1.840029,8.658951,1.975131,5.488841,1.373257,8.658951,-1.40327,5.983787,-1.789261,9.157826,1.905342,5.983787,1.424026,9.157826,-1.690492,6.727357,-1.580319,9.907979,1.61812,6.727357,1.632967,9.907979,1.975131,5.488841,-1.333481,5.488841,1.373257,8.658951,-1.84003,8.658951,1.690492,6.727357,-1.61812,6.727357,1.580319,9.907979,-1.632968,9.907979,1.905341,5.983787,-1.403271,5.983787,1.424026,9.157826,-1.789261,9.157826,1.834426,6.355429,-1.474186,6.355429,1.475614,9.532656,-1.737673,9.532656,2.043481,4.871337,-1.265131,4.871337,1.323535,8.037044,-1.889752,8.037044,1.474186,6.355429,-1.834426,6.355429,1.737672,9.532655,-1.475614,9.532655,1.618119,6.727357,-1.690492,6.727357,1.632967,9.907979,-1.58032,9.907979,1.545909,6.603354,-1.762702,6.603354,1.685497,9.782821,-1.52779,9.782821,1.762702,6.603354,-1.54591,6.603354,1.52779,9.782821,-1.685497,9.782821,3.218659,2.016106E-14,-3.218657,2.016106E-14,3.218659,3.149606,-3.218657,3.149606,1.33348,5.488841,-1.975131,5.488841,1.840029,8.658951,-1.373258,8.658951,-3.218657,3.122139E-15,-3.218657,3.149606,2.268476,3.344184E-15,2.268476,3.149606,-2.268474,5.244479E-14,-2.268474,3.149606,3.218659,5.177865E-14,3.218659,3.149606,-3.218657,2.022012E-14,-3.218657,3.149606,3.218659,2.022012E-14,3.218659,3.149606,-3.218657,1.980947E-14,-3.218657,3.149606,3.218659,1.980947E-14,3.218659,3.149606,1.40327,5.983787,-1.905342,5.983787,1.789261,9.157825,-1.424026,9.157825,1.26513,4.871336,-2.043482,4.871336,1.889751,8.037044,-1.323536,8.037044,3.218659,2.033799E-14,-3.218657,2.033799E-14,3.218659,3.149606,-3.218657,3.149606,59.05512,19.68504,59.05512,17.71654,45.04626,19.68504,45.04626,17.71654,42.61936,24.6063,43.70638,20.7417,42.16699,23.67039,39.04298,29.95873,40.43501,26.48946,38.5182,29.18626,34.79856,34.79856,36.42516,31.7487,34.16528,34.16528,29.95873,39.04298,31.7487,36.42516,29.18626,38.5182,24.6063,42.61936,26.48946,40.43501,23.67039,42.16699,19.68504,45.04626,20.7417,43.70638,17.71654,45.04626,19.68504,59.05512,17.71654,59.05512,19.68504,1.949508E-13,17.71654,1.949508E-13,19.68504,3.149606,18.50394,3.149606,-45.04626,3.149606,-45.04626,1.834089E-13,-59.05512,3.149606,-59.05512,1.829648E-13,-45.04626,7.543431,-45.04626,4.296892,-59.05512,7.543431,-59.05512,4.296892,45.04626,4.296891,45.04626,7.543431,59.05512,4.296891,59.05512,7.543431,45.04626,3.330669E-15,45.04626,3.149606,59.05512,6.217249E-15,59.05512,3.149606,-59.05512,19.68504,-45.04626,19.68504,-59.05512,18.50394,-45.04626,18.50394,-42.61936,24.6063,-43.74498,21.44195,-42.24995,24.28625,-39.04298,29.95873,-40.56787,27.0241,-38.70628,29.64321,-34.79856,34.79856,-36.67355,32.13182,-34.47878,34.47878,-29.95873,39.04298,-32.13182,36.67355,-29.64321,38.70628,-24.6063,42.61936,-27.0241,40.56787,-24.28625,42.24995,-19.68504,45.04626,-21.44195,43.74498,-18.50394,45.04626,-19.68504,59.05512,-18.50394,59.05512,-17.71653,6.217249E-15,-19.68504,6.217249E-15,-18.50394,3.149606,-19.68504,3.149606,-45.04626,4.29689,-59.05512,4.29689,-45.04626,7.54343,-59.05512,7.54343,45.04626,1.776357E-15,45.04626,3.149606,59.05512,4.662937E-15,59.05512,3.149606,18.50394,59.05512,19.68504,59.05512,18.50394,45.04626,19.68504,45.04626,21.44195,43.74498,24.6063,42.61936,24.28625,42.24995,27.0241,40.56787,29.95873,39.04298,29.64321,38.70628,32.13182,36.67355,34.79856,34.79856,34.47878,34.47878,36.67355,32.13182,39.04298,29.95873,38.70628,29.64321,40.56787,27.0241,42.61936,24.6063,42.24995,24.28625,43.74498,21.44194,45.04626,19.68504,45.04626,18.50394,59.05512,18.50394,59.05512,19.68504,17.71654,1.951728E-13,18.50394,3.149606,19.68504,1.951728E-13,19.68504,3.149606,-45.04626,3.774758E-15,-59.05512,5.551115E-15,-45.04626,3.149606,-59.05512,3.149606,-19.68504,4.662937E-15,-19.68504,3.149606,-17.71654,4.662937E-15,-18.50394,3.149606,-17.71654,-59.05512,-19.68504,-59.05512,-17.71654,-45.04626,-19.68504,-45.04626,-20.7417,-43.70638,-24.6063,-42.61936,-23.67039,-42.16699,-26.48946,-40.43501,-29.95873,-39.04298,-29.18626,-38.5182,-31.7487,-36.42516,-34.79856,-34.79856,-34.16528,-34.16528,-36.42516,-31.7487,-39.04298,-29.95873,-38.5182,-29.18626,-40.43501,-26.48946,-42.61936,-24.6063,-42.16699,-23.67039,-43.70638,-20.7417,-45.04626,-19.68504,-45.04626,-17.71654,-59.05512,-17.71654,-59.05512,-19.68504,-17.71654,59.05512,-17.71654,45.04626,-19.68504,59.05512,-19.68504,45.04626,-20.7417,43.70638,-24.6063,42.61936,-23.67039,42.16699,-26.48946,40.43501,-29.95873,39.04298,-29.18626,38.5182,-31.7487,36.42516,-34.79856,34.79856,-34.16528,34.16528,-36.42516,31.7487,-39.04298,29.95873,-38.5182,29.18626,-40.43501,26.48946,-42.61936,24.6063,-42.16699,23.67039,-43.70638,20.7417,-45.04626,19.68504,-45.04626,17.71654,-59.05512,17.71654,-59.05512,19.68504,45.04626,4.296891,45.04626,7.543431,59.05512,4.296891,59.05512,7.543431,18.50394,-59.05512,18.50394,-45.04626,19.68504,-59.05512,19.68504,-45.04626,21.44195,-43.74498,24.6063,-42.61936,24.28625,-42.24995,27.0241,-40.56787,29.95873,-39.04298,29.64321,-38.70628,32.13182,-36.67355,34.79856,-34.79856,34.47878,-34.47878,36.67355,-32.13182,39.04298,-29.95873,38.70628,-29.64321,40.56787,-27.0241,42.61936,-24.6063,42.24995,-24.28625,43.74498,-21.44194,45.04626,-19.68504,45.04626,-18.50394,59.05512,-18.50394,59.05512,-19.68504 + } + UVIndex: *2262 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,88,87,90,88,89,91,90,89,92,90,91,93,92,91,94,92,93,95,92,94,96,95,94,97,95,96,98,95,97,99,98,97,100,98,99,101,98,100,102,101,100,103,101,102,104,101,103,105,104,103,106,104,105,107,104,106,108,107,106,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,127,126,128,126,127,129,126,128,130,129,128,131,129,130,132,131,130,133,131,132,134,133,132,135,134,132,136,134,135,137,136,135,138,137,135,139,137,138,140,139,138,141,140,138,142,140,141,143,142,141,144,143,141,145,143,144,146,145,144,147,146,144,148,146,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,158,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,201,200,203,201,202,204,203,202,205,204,202,206,204,205,207,206,205,208,207,205,209,207,208,210,209,208,211,209,210,212,211,210,213,211,212,214,213,212,215,213,214,216,215,214,217,215,216,218,217,216,219,217,218,220,219,218,221,219,220,222,221,220,223,221,222,224,223,222,225,224,222,226,224,225,227,226,225,228,226,227,229,228,227,230,228,229,231,230,229,232,230,231,233,232,231,234,232,233,235,234,233,236,234,235,237,236,235,238,236,237,239,238,237,240,239,237,241,239,240,242,241,240,243,242,240,244,242,243,245,244,243,246,245,243,247,245,246,244,248,242,242,248,249,249,248,250,248,251,250,250,251,252,252,251,253,251,254,253,253,254,255,254,256,255,255,256,257,256,258,257,257,258,259,258,260,259,259,260,261,260,262,261,261,262,263,262,264,263,263,264,265,264,266,265,265,266,267,267,266,268,266,269,268,268,269,270,269,271,270,270,271,272,271,273,272,272,273,274,273,275,274,274,275,276,275,277,276,276,277,278,277,279,278,278,279,280,279,281,280,280,281,282,281,283,282,282,283,284,284,283,285,283,286,285,285,286,287,287,286,288,286,289,288,288,289,199,199,289,198,289,290,198,198,290,291,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,354,356,355,357,355,356,358,360,359,361,359,360,362,364,363,365,363,364,366,368,367,369,367,368,370,372,371,373,371,372,374,376,375,377,375,376,378,380,379,381,379,380,382,384,383,385,383,384,386,388,387,389,387,388,390,392,391,393,391,392,394,396,395,397,395,396,398,400,399,401,399,400,402,404,403,405,403,404,406,408,407,409,407,408,410,412,411,413,411,412,414,416,415,417,415,416,418,420,419,421,419,420,422,424,423,425,423,424,426,428,427,429,427,428,430,432,431,433,431,432,434,436,435,437,435,436,438,440,439,441,439,440,442,444,443,445,443,444,446,448,447,449,447,448,450,452,451,453,451,452,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,465,463,464,466,468,467,469,467,468,470,472,471,473,471,472,474,471,473,475,474,473,476,474,475,477,476,475,478,476,477,479,478,477,480,479,477,481,480,477,482,480,481,483,482,481,484,483,481,485,483,484,486,485,484,487,486,484,488,486,487,489,488,487,490,488,489,491,490,489,492,491,489,493,491,492,494,493,492,495,493,494,496,495,494,497,495,496,498,497,496,499,497,498,500,499,498,501,499,500,502,501,500,503,502,500,504,502,503,505,504,503,506,504,505,507,506,505,508,506,507,509,508,507,510,508,509,511,510,509,512,511,509,513,511,512,514,513,512,515,513,514,516,515,514,517,516,514,518,516,517,519,518,517,517,520,519,519,520,521,521,520,522,520,523,522,522,523,524,524,523,525,523,526,525,525,526,527,526,528,527,527,528,529,529,528,530,528,531,530,530,531,532,531,533,532,532,533,534,533,535,534,534,535,536,535,537,536,536,537,538,538,537,539,537,540,539,539,540,541,540,542,541,541,542,543,542,544,543,543,544,545,544,546,545,545,546,547,546,548,547,547,548,549,549,548,550,548,551,550,550,551,552,551,553,552,552,553,554,554,553,555,553,556,555,555,556,557,557,556,558,556,478,558,479,558,478,559,520,517,560,520,559,561,560,559,562,560,561,563,562,561,564,562,563,565,564,563,566,568,567,569,567,568,570,572,571,573,571,572,574,576,575,577,575,576,578,580,579,581,579,580,582,584,583,585,583,584,586,588,587,589,587,588,590,592,591,593,591,592,594,596,595,597,595,596,598,600,599,601,599,600,602,604,603,605,603,604,606,608,607,609,607,608,610,612,611,613,611,612,614,616,615,617,615,616,618,620,619,621,619,620,622,624,623,625,623,624,626,628,627,629,627,628,630,632,631,633,631,632,634,636,635,637,635,636,638,640,639,641,639,640,642,644,643,645,643,644,646,648,647,649,647,648,650,652,651,653,651,652,654,656,655,657,655,656,658,660,659,661,659,660,662,664,663,665,663,664,666,668,667,669,667,668,670,672,671,673,671,672,674,676,675,677,675,676,678,680,679,681,679,680,682,684,683,685,683,684,686,688,687,689,687,688,690,692,691,693,691,692,694,696,695,697,695,696,698,700,699,701,699,700,702,704,703,705,703,704,706,708,707,709,707,708,710,712,711,713,711,712,714,716,715,717,715,716,718,720,719,721,719,720,722,724,723,725,723,724,726,728,727,729,727,728,730,732,731,733,731,732,734,736,735,737,735,736,738,740,739,741,739,740,742,744,743,745,743,744,746,748,747,749,747,748,750,752,751,753,751,752,754,756,755,757,755,756,758,760,759,761,759,760,762,764,763,765,763,764,766,768,767,769,767,768,770,772,771,773,771,772,774,776,775,777,775,776,778,780,779,781,779,780,782,784,783,785,783,784,786,788,787,789,787,788,790,792,791,793,791,792,794,796,795,797,795,796,798,800,799,801,799,800,802,804,803,805,803,804,806,808,807,809,807,808,810,812,811,813,811,812,814,816,815,817,815,816,818,820,819,821,819,820,822,824,823,825,823,824,826,828,827,829,827,828,830,832,831,833,831,832,834,836,835,837,835,836,838,840,839,841,839,840,842,844,843,845,843,844,846,848,847,849,847,848,850,852,851,853,851,852,854,856,855,857,855,856,858,860,859,861,859,860,862,864,863,865,863,864,866,868,867,869,867,868,870,872,871,873,871,872,874,876,875,877,875,876,878,880,879,881,879,880,882,884,883,885,883,884,886,888,887,889,887,888,890,892,891,893,891,892,894,896,895,897,895,896,898,900,899,901,899,900,902,904,903,905,903,904,906,908,907,909,907,908,910,912,911,913,911,912,914,916,915,917,915,916,918,920,919,921,919,920,922,924,923,925,923,924,926,928,927,929,927,928,930,932,931,933,931,932,934,936,935,937,935,936,938,940,939,941,939,940,942,944,943,945,943,944,946,948,947,949,947,948,950,952,951,953,951,952,954,956,955,957,955,956,958,960,959,961,959,960,962,964,963,965,963,964,966,965,964,967,965,966,968,967,966,969,968,966,970,968,969,971,970,969,972,971,969,973,971,972,974,973,972,975,974,972,976,974,975,977,976,975,978,977,975,979,977,978,980,979,978,981,980,978,982,980,981,983,982,981,984,983,981,985,983,984,986,988,987,989,987,988,990,992,991,993,991,992,994,996,995,997,995,996,998,1000,999,1001,999,1000,1002,1004,1003,1005,1003,1004,1006,1008,1007,1009,1007,1008,1010,1007,1009,1011,1010,1009,1012,1010,1011,1013,1010,1012,1014,1013,1012,1015,1013,1014,1016,1013,1015,1017,1016,1015,1018,1016,1017,1019,1016,1018,1020,1019,1018,1021,1019,1020,1022,1019,1021,1023,1022,1021,1024,1022,1023,1025,1022,1024,1026,1025,1024,1027,1025,1026,1028,1025,1027,1029,1028,1027,1030,1032,1031,1033,1031,1032,1034,1036,1035,1037,1035,1036,1038,1040,1039,1041,1039,1040,1042,1044,1043,1045,1043,1044,1046,1045,1044,1047,1045,1046,1048,1047,1046,1049,1047,1048,1050,1047,1049,1051,1050,1049,1052,1050,1051,1053,1050,1052,1054,1053,1052,1055,1053,1054,1056,1053,1055,1057,1056,1055,1058,1056,1057,1059,1056,1058,1060,1059,1058,1061,1059,1060,1062,1059,1061,1063,1062,1061,1064,1062,1063,1065,1062,1064,1066,1068,1067,1069,1067,1068,1070,1072,1071,1073,1071,1072,1074,1076,1075,1077,1075,1076,1078,1080,1079,1081,1079,1080,1082,1081,1080,1083,1081,1082,1084,1083,1082,1085,1083,1084,1086,1083,1085,1087,1086,1085,1088,1086,1087,1089,1086,1088,1090,1089,1088,1091,1089,1090,1092,1089,1091,1093,1092,1091,1094,1092,1093,1095,1092,1094,1096,1095,1094,1097,1095,1096,1098,1095,1097,1099,1098,1097,1100,1098,1099,1101,1098,1100,1102,1104,1103,1105,1103,1104,1106,1103,1105,1107,1106,1105,1108,1106,1107,1109,1108,1107,1110,1109,1107,1111,1109,1110,1112,1111,1110,1113,1112,1110,1114,1112,1113,1115,1114,1113,1116,1115,1113,1117,1115,1116,1118,1117,1116,1119,1118,1116,1120,1118,1119,1121,1120,1119,1122,1121,1119,1123,1121,1122,1124,1123,1122,1125,1124,1122,1126,1128,1127,1129,1127,1128,1130,1132,1131,1133,1131,1132,1134,1131,1133,1135,1134,1133,1136,1134,1135,1137,1136,1135,1138,1137,1135,1139,1137,1138,1140,1139,1138,1141,1140,1138,1142,1140,1141,1143,1142,1141,1144,1143,1141,1145,1143,1144,1146,1145,1144,1147,1146,1144,1148,1146,1147,1149,1148,1147,1150,1149,1147,1151,1149,1150,1152,1151,1150,1153,1152,1150 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *754 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_roundaboutBarrier, Model::RootNode + C: "OO",4614758305484236636,0 + + ;Geometry::, Model::Mesh road_roundaboutBarrier + C: "OO",5755905804937011107,4614758305484236636 + + ;Material::pavement, Model::Mesh road_roundaboutBarrier + C: "OO",17046,4614758305484236636 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundaboutBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundaboutBarrier.fbx.import new file mode 100644 index 0000000..36e27ae --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_roundaboutBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cyb2ut6y6qa04" +path="res://.godot/imported/road_roundaboutBarrier.fbx-a023d98ec3827c6abe5679f3d280f50c.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_roundaboutBarrier.fbx" +dest_files=["res://.godot/imported/road_roundaboutBarrier.fbx-a023d98ec3827c6abe5679f3d280f50c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_side.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_side.fbx new file mode 100644 index 0000000..ba660fd --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_side.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 21 + Millisecond: 387 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_side.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_side.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5742767303224024718, "Model::road_side", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4873747791609773952, "Geometry::", "Mesh" { + Vertices: *192 { + a: 5,0.09999999,-7.1,-5,0.09999999,-7.1,5,0.2,-7.1,-5,0.2,-7.1,-5,-2.650768E-15,-8.099999,5,-2.650768E-15,-8.099999,-5,0.2,-8.099999,5,0.2,-8.099999,5,1.409983E-17,5,-5,1.409983E-17,5,5,0.2,5,-5,0.2,5,-5,0.09999999,4,5,0.09999999,4,-5,0.2,4,5,0.2,4,5,-2.650768E-15,-8.099999,-5,-2.650768E-15,-8.099999,5,1.409983E-17,5,-5,1.409983E-17,5,5,0.2,-8.099999,5,0.2,-7.1,-5,0.2,-8.099999,-5,0.2,-7.1,5,0.2,4,5,0.2,5,-5,0.2,4,-5,0.2,5,5,0.2,4,5,0.09999999,4,5,0.2,5,5,1.409983E-17,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-6.1,5,0.09999999,-7.1,5,-2.650768E-15,-8.099999,5,0.2,-7.1,5,0.2,-8.099999,-5,0.2,-8.099999,-5,0.09999999,-7.1,-5,-2.650768E-15,-8.099999,-5,1.409983E-17,5,-5,0.09999999,-6.1,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-7.1,5,0.09999999,-6.1,5,0.09999999,-0.09999999,-5,0.09999999,-6.1,-5,0.09999999,-0.09999999,5,0.09999999,3,-5,0.09999999,3,5,0.09999999,0.09999999,-5,0.09999999,0.09999999,5,0.09999999,-7.1,-5,0.09999999,-7.1,5,0.09999999,4,-5,0.09999999,4 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,30,31,-30,29,31,-33,32,31,-34,33,31,-35,34,31,-36,35,31,-37,31,37,-37,36,37,-39,39,38,-38,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,45,-44,47,46,-44,48,47,-44,49,48,-44,50,49,-44,41,51,-41,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,61,-53,54,52,-62,56,57,-63,63,62,-58,53,55,-59,59,58,-56 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *128 { + a: 19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,19.68504,-1.04361E-14,-19.68504,-1.04361E-14,19.68504,0.7874016,-19.68504,0.7874016,19.68504,5.551115E-17,-19.68504,5.551115E-17,19.68504,0.7874016,-19.68504,0.7874016,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,19.68504,-31.88976,-19.68504,-31.88976,19.68504,19.68504,-19.68504,19.68504,-19.68504,-31.88976,-19.68504,-27.95275,19.68504,-31.88976,19.68504,-27.95275,-19.68504,15.74803,-19.68504,19.68504,19.68504,15.74803,19.68504,19.68504,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,4.519822E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,24.01575,0.3937008,27.95275,0.3937008,31.88976,4.414906E-13,27.95275,0.7874016,31.88976,0.7874016,-31.88976,0.7874016,-27.95275,0.3937008,-31.88976,-6.276047E-13,19.68504,-6.171131E-13,-24.01575,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-27.95275,0.7874016,-19.68504,-24.01575,-19.68504,-0.3937008,19.68504,-24.01575,19.68504,-0.3937008,-19.68504,11.81102,19.68504,11.81102,-19.68504,0.3937008,19.68504,0.3937008,-19.68504,-27.95275,19.68504,-27.95275,-19.68504,15.74803,19.68504,15.74803 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,30,31,29,29,31,32,32,31,33,33,31,34,34,31,35,35,31,36,31,37,36,36,37,38,39,38,37,40,42,41,43,41,42,44,41,43,45,44,43,46,45,43,47,46,43,48,47,43,49,48,43,50,49,43,41,51,40,52,54,53,55,53,54,56,58,57,59,57,58,60,61,52,54,52,61,56,57,62,63,62,57,53,55,58,59,58,55 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_side, Model::RootNode + C: "OO",5742767303224024718,0 + + ;Geometry::, Model::Mesh road_side + C: "OO",4873747791609773952,5742767303224024718 + + ;Material::pavement, Model::Mesh road_side + C: "OO",17046,5742767303224024718 + + ;Material::asphalt, Model::Mesh road_side + C: "OO",9934,5742767303224024718 + + ;Material::asphaltEdge, Model::Mesh road_side + C: "OO",17042,5742767303224024718 + + ;Material::line, Model::Mesh road_side + C: "OO",9174,5742767303224024718 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_side.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_side.fbx.import new file mode 100644 index 0000000..852e8f9 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_side.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://hiu3dny23mt5" +path="res://.godot/imported/road_side.fbx-925f61d89e48aeb0eda84390c6a58420.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_side.fbx" +dest_files=["res://.godot/imported/road_side.fbx-925f61d89e48aeb0eda84390c6a58420.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideBarrier.fbx new file mode 100644 index 0000000..8ddab4c --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 21 + Millisecond: 461 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_sideBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_sideBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4804155221998925652, "Model::road_sideBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5239298330107058152, "Geometry::", "Mesh" { + Vertices: *144 { + a: -8.099999,0.8,-5,-8.099999,0.8,5,-8.099999,1.353584E-15,-5,-8.099999,1.353584E-15,5,5,0.8,-5,5,0.8,5,4.7,0.8,-5,4.7,0.8,5,4.5,0,-5,4.7,0.8,-5,4.5,0,5,4.7,0.8,5,5,0,-5,4.5,0,-5,5,0,5,4.5,0,5,-8.099999,1.353584E-15,-5,-7.6,1.353584E-15,-5,-8.099999,0.8,-5,-7.8,0.8,-5,4.5,0,-5,5,0,-5,4.7,0.8,-5,5,0.8,-5,5,0,5,4.5,0,5,5,0.8,5,4.7,0.8,5,-7.6,1.353584E-15,-5,-8.099999,1.353584E-15,-5,-7.6,1.353584E-15,5,-8.099999,1.353584E-15,5,-7.8,0.8,-5,-7.8,0.8,5,-8.099999,0.8,-5,-8.099999,0.8,5,-7.6,1.353584E-15,5,-8.099999,1.353584E-15,5,-7.8,0.8,5,-8.099999,0.8,5,5,0.8,-5,5,0,-5,5,0.8,5,5,0,5,-7.8,0.8,-5,-7.6,1.353584E-15,-5,-7.8,0.8,5,-7.6,1.353584E-15,5 + } + PolygonVertexIndex: *72 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *216 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: -19.68504,3.149606,19.68504,3.149606,-19.68504,5.329071E-15,19.68504,5.329071E-15,-19.68504,-19.68504,-19.68504,19.68504,-18.50394,-19.68504,-18.50394,19.68504,-19.68504,4.296891,-19.68504,7.543431,19.68504,4.296891,19.68504,7.543431,19.68504,-19.68504,17.71654,-19.68504,19.68504,19.68504,17.71654,19.68504,31.88976,4.023971E-13,29.92126,4.023971E-13,31.88976,3.149606,30.70866,3.149606,-17.71654,0,-19.68504,0,-18.50394,3.149606,-19.68504,3.149606,19.68504,1.776357E-13,17.71654,1.776357E-13,19.68504,3.149606,18.50394,3.149606,-29.92126,-19.68504,-31.88976,-19.68504,-29.92126,19.68504,-31.88976,19.68504,30.70866,-19.68504,30.70866,19.68504,31.88976,-19.68504,31.88976,19.68504,-29.92126,4.71257E-14,-31.88976,4.71257E-14,-30.70866,3.149606,-31.88976,3.149606,19.68504,3.149606,19.68504,0,-19.68504,3.149606,-19.68504,0,19.68504,10.50351,19.68504,7.256971,-19.68504,10.50351,-19.68504,7.256971 + } + UVIndex: *72 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *24 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_sideBarrier, Model::RootNode + C: "OO",4804155221998925652,0 + + ;Geometry::, Model::Mesh road_sideBarrier + C: "OO",5239298330107058152,4804155221998925652 + + ;Material::pavement, Model::Mesh road_sideBarrier + C: "OO",17046,4804155221998925652 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideBarrier.fbx.import new file mode 100644 index 0000000..f813eaa --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bfpwlp778nuvb" +path="res://.godot/imported/road_sideBarrier.fbx-b8c718cc141d2d1fc276205e6296efd7.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_sideBarrier.fbx" +dest_files=["res://.godot/imported/road_sideBarrier.fbx-b8c718cc141d2d1fc276205e6296efd7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntry.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntry.fbx new file mode 100644 index 0000000..45c6bd6 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntry.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 21 + Millisecond: 626 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_sideEntry.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_sideEntry.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4787616815909899365, "Model::road_sideEntry", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5421407098985757538, "Geometry::", "Mesh" { + Vertices: *1191 { + a: 5,0.09999999,-4,4.900097,0.09999999,-4.007041,5,0.2,-4,4.900097,0.2,-4.007041,4.225956,0.09999999,-4.25033,4.075912,0.09999999,-4.347082,4.225956,0.2,-4.25033,4.075912,0.2,-4.347082,2.098616,0.09999999,-6.323131,1.829927,0.09999999,-6.510825,2.098616,0.2,-6.323131,1.829927,0.2,-6.510825,4.644981,7.830201E-13,-5.167062,4.644981,0.2,-5.167062,4.542833,8.179595E-13,-5.243219,4.542833,0.2,-5.243219,-1.443823E-14,0.09999999,-7.1,2.454499E-13,0.2,-7.1,0.07948086,0.09999999,-7.094354,0.07948086,0.2,-7.094354,4.881401,-9.327886E-13,-5.035448,4.936028,6.474361E-13,-5.016164,4.881401,0.2,-5.035448,4.936028,0.2,-5.016164,4.735952,7.445275E-13,-5.108401,4.735952,0.2,-5.108401,4.644981,7.830201E-13,-5.167062,4.644981,0.2,-5.167062,0.0005505264,-4.089234E-13,-8.099999,0.1545647,2.118641E-12,-8.089059,0.0005505264,0.2,-8.099999,0.1545647,0.2,-8.089059,5,2.894695E-13,-5.001514,5,0.2,-5.001514,4.980154,6.083796E-13,-5.004771,4.980154,0.2,-5.004771,0.3458502,0.09999999,-7.073063,0.07948086,0.09999999,-7.094354,0.3458502,0.2,-7.073063,0.07948086,0.2,-7.094354,-1.443823E-14,0.09999999,-7.1,-5,0.09999999,-7.1,2.454499E-13,0.2,-7.1,-5,0.2,-7.1,4.370921,0.09999999,-4.171176,4.225956,0.09999999,-4.25033,4.370921,0.2,-4.171176,4.225956,0.2,-4.25033,0.0005505264,-4.089234E-13,-8.099999,0.0005505264,0.2,-8.099999,-5,-1.66378E-15,-8.099999,-5,0.2,-8.099999,4.881401,-9.327886E-13,-5.035448,4.881401,0.2,-5.035448,4.814864,6.87818E-13,-5.065313,4.814864,0.2,-5.065313,4.814864,6.87818E-13,-5.065313,4.814864,0.2,-5.065313,4.735952,7.445275E-13,-5.108401,4.735952,0.2,-5.108401,3.009249,1.270028E-12,-6.8698,3.009249,0.2,-6.8698,2.698431,1.36774E-12,-7.120934,2.698431,0.2,-7.120934,4.644768,0.09999999,-4.061127,4.510497,0.09999999,-4.108526,4.644768,0.2,-4.061127,4.510497,0.2,-4.108526,0.8824086,1.838787E-12,-7.989898,0.8824086,0.2,-7.989898,0.4744465,1.932664E-12,-8.06349,0.4744465,0.2,-8.06349,0.4744465,1.932664E-12,-8.06349,0.4744465,0.2,-8.06349,0.1545647,2.118641E-12,-8.089059,0.1545647,0.2,-8.089059,4.980154,6.083796E-13,-5.004771,4.980154,0.2,-5.004771,4.936028,6.474361E-13,-5.016164,4.936028,0.2,-5.016164,5,0.2,4,5,0.2,5,-5,0.2,4,-5,0.2,5,5,-6.485922E-16,5,-5,-6.485922E-16,5,5,0.2,5,-5,0.2,5,3.583035,0.2,-6.309401,3.583035,1.098969E-12,-6.309401,3.848297,0.2,-6.002805,3.848297,1.006023E-12,-6.002805,1.262417,0.09999999,-6.816274,0.9643739,0.09999999,-6.930551,1.262417,0.2,-6.816274,0.9643739,0.2,-6.930551,-5,0.09999999,4,5,0.09999999,4,-5,0.2,4,5,0.2,4,2.698431,1.36774E-12,-7.120934,2.698431,0.2,-7.120934,2.370279,1.445543E-12,-7.350168,2.370279,0.2,-7.350168,2.370279,1.445543E-12,-7.350168,2.370279,0.2,-7.350168,2.265822,1.482626E-12,-7.411965,2.024142,1.546639E-12,-7.554944,2.024142,0.2,-7.554944,2.265822,0.2,-7.411965,3.303735,0.2,-6.598778,3.303735,1.172739E-12,-6.598778,3.583035,0.2,-6.309401,3.583035,1.098969E-12,-6.309401,0.9643739,0.09999999,-6.930551,0.6582282,0.09999999,-7.016712,0.9643739,0.2,-6.930551,0.6582282,0.2,-7.016712,1.27872,1.742655E-12,-7.87836,1.27872,0.2,-7.87836,0.8824086,1.838787E-12,-7.989898,0.8824086,0.2,-7.989898,4.542833,8.179595E-13,-5.243219,4.542833,0.2,-5.243219,4.430759,8.445518E-13,-5.338328,4.430759,0.2,-5.338328,3.009249,1.270028E-12,-6.8698,3.048157,1.272876E-12,-6.833992,3.009249,0.2,-6.8698,3.303735,0.2,-6.598778,3.048157,0.2,-6.833992,3.303735,1.172739E-12,-6.598778,3.848297,0.2,-6.002805,3.848297,1.006023E-12,-6.002805,4.046616,0.2,-5.748928,4.046616,9.484112E-13,-5.748928,4.430759,8.445518E-13,-5.338328,4.430759,0.2,-5.338328,4.310194,8.803935E-13,-5.453391,4.310194,0.2,-5.453391,4.182634,0.2,-5.589016,4.182634,9.083112E-13,-5.589016,4.310194,0.2,-5.453391,4.310194,8.803935E-13,-5.453391,4.046616,0.2,-5.748928,4.046616,9.484112E-13,-5.748928,4.182634,0.2,-5.589016,4.182634,9.083112E-13,-5.589016,5,-6.485922E-16,5,5,2.894695E-13,-5.001514,-5,-6.485922E-16,5,4.980154,6.083796E-13,-5.004771,4.936028,6.474361E-13,-5.016164,4.881401,-9.327886E-13,-5.035448,4.814864,6.87818E-13,-5.065313,4.735952,7.445275E-13,-5.108401,4.644981,7.830201E-13,-5.167062,4.542833,8.179595E-13,-5.243219,4.430759,8.445518E-13,-5.338328,4.310194,8.803935E-13,-5.453391,4.182634,9.083112E-13,-5.589016,4.046616,9.484112E-13,-5.748928,3.848297,1.006023E-12,-6.002805,3.583035,1.098969E-12,-6.309401,3.303735,1.172739E-12,-6.598778,3.048157,1.272876E-12,-6.833992,3.009249,1.270028E-12,-6.8698,2.698431,1.36774E-12,-7.120934,2.370279,1.445543E-12,-7.350168,2.265822,1.482626E-12,-7.411965,2.024142,1.546639E-12,-7.554944,1.659991,1.645056E-12,-7.732172,1.27872,1.742655E-12,-7.87836,0.8824086,1.838787E-12,-7.989898,0.4744465,1.932664E-12,-8.06349,0.1545647,2.118641E-12,-8.089059,0.0005505264,-4.089234E-13,-8.099999,-5,-1.66378E-15,-8.099999,0.6582282,0.09999999,-7.016712,0.3458502,0.09999999,-7.073063,0.6582282,0.2,-7.016712,0.3458502,0.2,-7.073063,1.551142,0.09999999,-6.675756,1.262417,0.09999999,-6.816274,1.551142,0.2,-6.675756,1.262417,0.2,-6.816274,2.098616,0.09999999,-6.323131,2.098616,0.2,-6.323131,2.357362,0.09999999,-6.114069,2.357362,0.2,-6.114069,2.606498,0.2,-5.884783,2.846432,0.2,-5.636192,2.606498,0.09999999,-5.884783,2.846432,0.09999999,-5.636192,2.024142,1.546639E-12,-7.554944,2.024142,0.2,-7.554944,1.659991,1.645056E-12,-7.732172,1.659991,0.2,-7.732172,2.606498,0.09999999,-5.884783,2.372648,0.09999999,-6.1,2.606498,0.2,-5.884783,2.357362,0.2,-6.114069,2.357362,0.09999999,-6.114069,2.372648,0.2,-6.1,3.273308,0.2,-5.118464,3.438938,0.2,-4.923738,3.273308,0.09999999,-5.118464,3.438938,0.09999999,-4.923738,5,0.2,-5.001514,5,0.2,-4,4.980154,0.2,-5.004771,4.900097,0.2,-4.007041,4.936028,0.2,-5.016164,4.881401,0.2,-5.035448,4.774285,0.2,-4.027687,4.814864,0.2,-5.065313,4.735952,0.2,-5.108401,4.644768,0.2,-4.061127,4.644981,0.2,-5.167062,4.542833,0.2,-5.243219,4.510497,0.2,-4.108526,4.430759,0.2,-5.338328,4.370921,0.2,-4.171176,4.310194,0.2,-5.453391,4.225956,0.2,-4.25033,4.182634,0.2,-5.589016,4.075912,0.2,-4.347082,4.046616,0.2,-5.748928,3.921377,0.2,-4.462298,3.848297,0.2,-6.002805,3.763123,0.2,-4.596595,3.583035,0.2,-6.309401,3.602013,0.2,-4.750353,3.438938,0.2,-4.923738,3.303735,0.2,-6.598778,3.273308,0.2,-5.118464,3.048157,0.2,-6.833992,3.077573,0.2,-5.369034,2.846432,0.2,-5.636192,3.009249,0.2,-6.8698,2.698431,0.2,-7.120934,2.606498,0.2,-5.884783,2.370279,0.2,-7.350168,2.372648,0.2,-6.1,2.357362,0.2,-6.114069,2.265822,0.2,-7.411965,2.098616,0.2,-6.323131,2.024142,0.2,-7.554944,1.829927,0.2,-6.510825,1.659991,0.2,-7.732172,1.551142,0.2,-6.675756,1.27872,0.2,-7.87836,1.262417,0.2,-6.816274,0.8824086,0.2,-7.989898,0.9643739,0.2,-6.930551,0.6582282,0.2,-7.016712,0.4744465,0.2,-8.06349,0.3458502,0.2,-7.073063,0.1545647,0.2,-8.089059,0.07948086,0.2,-7.094354,0.0005505264,0.2,-8.099999,2.454499E-13,0.2,-7.1,-5,0.2,-8.099999,-5,0.2,-7.1,3.438938,0.2,-4.923738,3.602013,0.2,-4.750353,3.438938,0.09999999,-4.923738,3.602013,0.09999999,-4.750353,3.763123,0.09999999,-4.596595,3.602013,0.09999999,-4.750353,3.763123,0.2,-4.596595,3.602013,0.2,-4.750353,1.829927,0.09999999,-6.510825,1.551142,0.09999999,-6.675756,1.829927,0.2,-6.510825,1.551142,0.2,-6.675756,4.510497,0.09999999,-4.108526,4.370921,0.09999999,-4.171176,4.510497,0.2,-4.108526,4.370921,0.2,-4.171176,3.077573,0.2,-5.369034,3.273308,0.2,-5.118464,3.077573,0.09999999,-5.369034,3.273308,0.09999999,-5.118464,1.659991,1.645056E-12,-7.732172,1.659991,0.2,-7.732172,1.27872,1.742655E-12,-7.87836,1.27872,0.2,-7.87836,4.774285,0.09999999,-4.027687,4.644768,0.09999999,-4.061127,4.774285,0.2,-4.027687,4.644768,0.2,-4.061127,2.846432,0.2,-5.636192,3.077573,0.2,-5.369034,2.846432,0.09999999,-5.636192,3.077573,0.09999999,-5.369034,3.921377,0.09999999,-4.462298,3.763123,0.09999999,-4.596595,3.921377,0.2,-4.462298,3.763123,0.2,-4.596595,4.900097,0.09999999,-4.007041,4.774285,0.09999999,-4.027687,4.900097,0.2,-4.007041,4.774285,0.2,-4.027687,4.075912,0.09999999,-4.347082,3.921377,0.09999999,-4.462298,4.075912,0.2,-4.347082,3.921377,0.2,-4.462298,5,0.09999999,-3,5,0.09999999,-0.09999999,4.784017,0.09999999,-3.015223,-5,0.09999999,-0.09999999,4.568418,0.09999999,-3.050603,4.353508,0.09999999,-3.10609,4.139594,0.09999999,-3.181604,4.09861,0.09999999,-3.2,3.926977,0.09999999,-3.277039,3.75,0.09999999,-3.373673,3.715961,0.09999999,-3.39226,3.506843,0.09999999,-3.527103,3.299921,0.09999999,-3.681377,3.095487,0.09999999,-3.854863,2.893833,0.09999999,-4.047316,2.695243,0.09999999,-4.258461,2.5,0.09999999,-4.488,2.306848,0.09999999,-4.735264,2.109828,0.09999999,-4.962984,1.909261,0.09999999,-5.170788,1.705474,0.09999999,-5.358337,1.4988,0.09999999,-5.525326,1.289575,0.09999999,-5.671482,1.25,0.09999999,-5.694895,1.078141,0.09999999,-5.796567,0.8648425,0.09999999,-5.900376,0.650028,0.09999999,-5.982741,0.4340478,0.09999999,-6.043527,0.2172538,0.09999999,-6.082634,-1.443823E-14,0.09999999,-6.1,-5,0.09999999,-6.1,5,0.09999999,3,-5,0.09999999,3,5,0.09999999,0.09999999,-5,0.09999999,0.09999999,-5,0.2,-8.099999,-5,0.2,-7.1,-5,-1.66378E-15,-8.099999,-5,0.09999999,-7.1,-5,-6.485922E-16,5,-5,0.09999999,-6.1,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,5,0.2,4,5,0.09999999,4,5,0.2,5,5,-6.485922E-16,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-3,5,0.09999999,-4,5,2.894695E-13,-5.001514,5,0.2,-4,5,0.2,-5.001514,5,0.09999999,-4,4.900097,0.09999999,-4.007041,4.774285,0.09999999,-4.027687,4.644768,0.09999999,-4.061127,4.510497,0.09999999,-4.108526,4.370921,0.09999999,-4.171176,4.225956,0.09999999,-4.25033,4.075912,0.09999999,-4.347082,3.921377,0.09999999,-4.462298,3.763123,0.09999999,-4.596595,3.602013,0.09999999,-4.750353,3.438938,0.09999999,-4.923738,3.273308,0.09999999,-5.118464,3.077573,0.09999999,-5.369034,2.846432,0.09999999,-5.636192,2.606498,0.09999999,-5.884783,2.372648,0.09999999,-6.1,2.357362,0.09999999,-6.114069,2.098616,0.09999999,-6.323131,1.829927,0.09999999,-6.510825,1.551142,0.09999999,-6.675756,1.262417,0.09999999,-6.816274,0.9643739,0.09999999,-6.930551,0.6582282,0.09999999,-7.016712,0.3458502,0.09999999,-7.073063,0.07948086,0.09999999,-7.094354,-1.443823E-14,0.09999999,-7.1,-5,0.09999999,-7.1,5,0.09999999,4,-5,0.09999999,4 + } + PolygonVertexIndex: *918 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,105,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,129,-129,127,129,-132,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,151,-151,153,152,-151,154,153,-151,155,154,-151,156,155,-151,157,156,-151,158,157,-151,159,158,-151,160,159,-151,161,160,-151,162,161,-151,163,162,-151,164,163,-151,165,164,-151,166,165,-151,167,166,-151,168,167,-151,169,168,-151,170,169,-151,171,170,-151,172,171,-151,173,172,-151,174,173,-151,175,174,-151,176,175,-151,177,176,-151,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,200,201,-200,202,199,-202,203,201,-201,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,211,-211,213,211,-213,214,211,-214,215,214,-214,216,214,-216,217,214,-217,218,217,-217,219,217,-219,220,217,-220,221,220,-220,222,220,-222,223,222,-222,224,222,-224,225,224,-224,226,224,-226,227,226,-226,228,226,-228,229,228,-228,230,228,-230,231,230,-230,232,230,-232,233,232,-232,234,233,-232,235,233,-235,236,235,-235,237,235,-237,238,237,-237,239,238,-237,240,238,-240,241,238,-241,242,241,-241,243,241,-243,244,243,-243,245,244,-243,246,244,-246,247,246,-246,248,246,-248,249,248,-248,250,248,-250,251,250,-250,252,250,-252,253,252,-252,254,252,-254,255,254,-254,256,255,-254,257,255,-257,258,257,-257,259,257,-259,260,259,-259,261,259,-261,262,261,-261,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,311,-311,313,311,-313,314,311,-314,315,311,-315,316,311,-316,317,311,-317,318,311,-318,319,311,-319,320,311,-320,321,311,-321,322,311,-322,323,311,-323,324,311,-324,325,311,-325,326,311,-326,327,311,-327,328,311,-328,329,311,-329,330,311,-330,331,311,-331,332,311,-332,333,311,-333,334,311,-334,335,311,-335,336,311,-336,337,311,-337,338,311,-338,339,341,-341,342,340,-342,343,345,-345,346,344,-346,347,346,-346,348,346,-348,349,348,-348,350,349,-348,351,350,-348,352,351,-348,353,352,-348,354,353,-348,355,357,-357,357,358,-357,356,358,-360,359,358,-361,360,358,-362,361,358,-363,362,358,-364,358,364,-364,363,364,-366,366,365,-365,367,368,-309,310,308,-369,369,310,-369,312,310,-370,370,312,-370,371,312,-371,313,312,-372,372,313,-372,373,313,-373,314,313,-374,374,314,-374,315,314,-375,316,315,-375,375,316,-375,317,316,-376,376,317,-376,377,317,-377,318,317,-378,319,318,-378,378,319,-378,320,319,-379,379,320,-379,321,320,-380,380,321,-380,322,321,-381,381,322,-381,323,322,-382,382,323,-382,324,323,-383,383,324,-383,325,324,-384,384,325,-384,385,325,-385,326,325,-386,327,326,-386,386,327,-386,328,327,-387,387,328,-387,329,328,-388,388,329,-388,330,329,-389,331,330,-389,389,331,-389,332,331,-390,333,332,-390,390,333,-390,334,333,-391,391,334,-391,335,334,-392,336,335,-392,392,336,-392,337,336,-393,393,337,-393,394,337,-394,338,337,-395,339,340,-396,396,395,-341,309,311,-342,342,341,-312 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2754 { + a: -0.070308,0,0.9975253,-0.070308,0,0.9975253,-0.1162449,0,0.9932206,-0.1162449,0,0.9932206,-0.1162449,0,0.9932206,-0.070308,0,0.9975253,-0.5109214,0,0.8596274,-0.5109214,0,0.8596274,-0.5701517,0,0.8215395,-0.5701517,0,0.8215395,-0.5701517,0,0.8215395,-0.5109214,0,0.8596274,-0.6009374,0,0.799296,-0.6009374,0,0.799296,-0.5413064,0,0.8408254,-0.5413064,0,0.8408254,-0.5413064,0,0.8408254,-0.6009374,0,0.799296,0.5701517,0,-0.8215395,0.6226888,0,-0.7824696,0.5701517,0,-0.8215395,0.6226888,0,-0.7824696,0.5701517,0,-0.8215395,0.6226888,0,-0.7824696,-0.03545193,0,0.9993715,-0.0752694,0,0.9971632,-0.03545193,0,0.9993715,-0.0752694,0,0.9971632,-0.03545193,0,0.9993715,-0.0752694,0,0.9971632,0.371507,0,-0.9284302,0.371507,0,-0.9284302,0.2917081,0,-0.9565074,0.2917081,0,-0.9565074,0.2917081,0,-0.9565074,0.371507,0,-0.9284302,0.5109214,0,-0.8596274,0.5701517,0,-0.8215395,0.5109214,0,-0.8596274,0.5701517,0,-0.8215395,0.5109214,0,-0.8596274,0.5701517,0,-0.8215395,0.03545193,0,-0.9993715,0.03545193,0,-0.9993715,0.0752694,0,-0.9971632,0.0752694,0,-0.9971632,0.0752694,0,-0.9971632,0.03545193,0,-0.9993715,0.1619343,0,-0.9868015,0.20617,0,-0.9785162,0.1619343,0,-0.9868015,0.20617,0,-0.9785162,0.1619343,0,-0.9868015,0.20617,0,-0.9785162,-0.1287584,0,0.991676,-0.1287584,0,0.991676,-0.0752694,0,0.9971632,-0.0752694,0,0.9971632,-0.0752694,0,0.9971632,-0.1287584,0,0.991676,-0.03545193,0,0.9993715,-0.03545193,0,0.9993715,0,0,1,0,0,1,0,0,1,-0.03545193,0,0.9993715,-0.4447075,0,0.8956758,-0.4447075,0,0.8956758,-0.5109214,0,0.8596274,-0.5109214,0,0.8596274,-0.5109214,0,0.8596274,-0.4447075,0,0.8956758,0.03545193,0,-0.9993715,0,0,-1,0.03545193,0,-0.9993715,0,0,-1,0.03545193,0,-0.9993715,0,0,-1,0.371507,0,-0.9284302,0.4447075,0,-0.8956758,0.371507,0,-0.9284302,0.4447075,0,-0.8956758,0.371507,0,-0.9284302,0.4447075,0,-0.8956758,0.4447075,0,-0.8956758,0.5109214,0,-0.8596274,0.4447075,0,-0.8956758,0.5109214,0,-0.8596274,0.4447075,0,-0.8956758,0.5109214,0,-0.8596274,0.6531666,0,-0.7572142,0.6009374,0,-0.799296,0.6531666,0,-0.7572142,0.6009374,0,-0.799296,0.6531666,0,-0.7572142,0.6009374,0,-0.799296,-0.2917081,0,0.9565074,-0.2917081,0,0.9565074,-0.371507,0,0.9284302,-0.371507,0,0.9284302,-0.371507,0,0.9284302,-0.2917081,0,0.9565074,0.2244784,0,-0.974479,0.1287584,0,-0.991676,0.2244784,0,-0.974479,0.1287584,0,-0.991676,0.2244784,0,-0.974479,0.1287584,0,-0.991676,0.1287584,0,-0.991676,0.0752694,0,-0.9971632,0.1287584,0,-0.991676,0.0752694,0,-0.9971632,0.1287584,0,-0.991676,0.0752694,0,-0.9971632,0.20617,0,-0.9785162,0.2917081,0,-0.9565074,0.20617,0,-0.9785162,0.2917081,0,-0.9565074,0.20617,0,-0.9785162,0.2917081,0,-0.9565074,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7381572,0,-0.6746288,0.7723939,0,-0.6351438,0.7381572,0,-0.6746288,0.7723939,0,-0.6351438,0.7381572,0,-0.6746288,0.7723939,0,-0.6351438,-0.3981851,0,0.9173051,-0.3981851,0,0.9173051,-0.3147939,0,0.94916,-0.3147939,0,0.94916,-0.3147939,0,0.94916,-0.3981851,0,0.9173051,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.6009374,0,-0.799296,0.5413064,0,-0.8408254,0.6009374,0,-0.799296,0.5413064,0,-0.8408254,0.6009374,0,-0.799296,0.5413064,0,-0.8408254,0.5413064,0,-0.8408254,0.5091712,0,-0.8606653,0.5413064,0,-0.8408254,0.4737825,0,-0.8806419,0.5413064,0,-0.8408254,0.5091712,0,-0.8606653,0.4737825,0,-0.8806419,0.5413064,0,-0.8408254,0.4737825,0,-0.8806419,0.5091712,0,-0.8606653,0.5413064,0,-0.8408254,0.4737825,0,-0.8806419,0.6986606,0,-0.7154533,0.7381572,0,-0.6746288,0.6986606,0,-0.7154533,0.7381572,0,-0.6746288,0.6986606,0,-0.7154533,0.7381572,0,-0.6746288,-0.3147939,0,0.94916,-0.3147939,0,0.94916,-0.2244784,0,0.974479,-0.2244784,0,0.974479,-0.2244784,0,0.974479,-0.3147939,0,0.94916,0.3147939,0,-0.94916,0.2244784,0,-0.974479,0.3147939,0,-0.94916,0.2244784,0,-0.974479,0.3147939,0,-0.94916,0.2244784,0,-0.974479,0.6226888,0,-0.7824696,0.6690073,0,-0.7432558,0.6226888,0,-0.7824696,0.6690073,0,-0.7432558,0.6226888,0,-0.7824696,0.6690073,0,-0.7432558,0.6531666,0,-0.7572142,0.6531666,0,-0.7572142,0.6771845,0,-0.7358133,0.6986606,0,-0.7154533,0.6771845,0,-0.7358133,0.6531666,0,-0.7572142,0.6771845,0,-0.7358133,0.6986606,0,-0.7154533,0.6531666,0,-0.7572142,0.6771845,0,-0.7358133,0.6986606,0,-0.7154533,0.6986606,0,-0.7154533,0.7723939,0,-0.6351438,0.7750577,0,-0.6318905,0.7723939,0,-0.6351438,0.7750577,0,-0.6318905,0.7723939,0,-0.6351438,0.7750577,0,-0.6318905,0.6690073,0,-0.7432558,0.7096789,0,-0.7045254,0.6690073,0,-0.7432558,0.7096789,0,-0.7045254,0.6690073,0,-0.7432558,0.7096789,0,-0.7045254,0.7453079,0,-0.6667204,0.7096789,0,-0.7045254,0.7453079,0,-0.6667204,0.7096789,0,-0.7045254,0.7453079,0,-0.6667204,0.7096789,0,-0.7045254,0.7750577,0,-0.6318905,0.7453079,0,-0.6667204,0.7750577,0,-0.6318905,0.7453079,0,-0.6667204,0.7750577,0,-0.6318905,0.7453079,0,-0.6667204,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2244784,0,0.974479,-0.2244784,0,0.974479,-0.1287584,0,0.991676,-0.1287584,0,0.991676,-0.1287584,0,0.991676,-0.2244784,0,0.974479,-0.4737825,0,0.8806419,-0.4737825,0,0.8806419,-0.3981851,0,0.9173051,-0.3981851,0,0.9173051,-0.3981851,0,0.9173051,-0.4737825,0,0.8806419,-0.6009374,0,0.799296,-0.6531666,0,0.7572142,-0.6009374,0,0.799296,-0.6531666,0,0.7572142,-0.6009374,0,0.799296,-0.6531666,0,0.7572142,-0.6986606,0,0.7154533,-0.6986606,0,0.7154533,-0.7381572,0,0.6746288,-0.7381572,0,0.6746288,-0.7381572,0,0.6746288,-0.6986606,0,0.7154533,0.4737825,0,-0.8806419,0.3981851,0,-0.9173051,0.4737825,0,-0.8806419,0.3981851,0,-0.9173051,0.4737825,0,-0.8806419,0.3981851,0,-0.9173051,-0.6986606,0,0.7154533,-0.6986606,0,0.7154533,-0.6771845,0,0.7358133,-0.6986606,0,0.7154533,-0.6531666,0,0.7572142,-0.6771845,0,0.7358133,-0.6531666,0,0.7572142,-0.6771845,0,0.7358133,-0.6531666,0,0.7572142,-0.6771845,0,0.7358133,-0.6531666,0,0.7572142,-0.6986606,0,0.7154533,-0.7750577,0,0.6318905,-0.7750577,0,0.6318905,-0.7453079,0,0.6667204,-0.7453079,0,0.6667204,-0.7453079,0,0.6667204,-0.7750577,0,0.6318905,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7453079,0,0.6667204,-0.7453079,0,0.6667204,-0.7096789,0,0.7045254,-0.7096789,0,0.7045254,-0.7096789,0,0.7045254,-0.7453079,0,0.6667204,-0.6690073,0,0.7432558,-0.6690073,0,0.7432558,-0.7096789,0,0.7045254,-0.7096789,0,0.7045254,-0.7096789,0,0.7045254,-0.6690073,0,0.7432558,-0.5413064,0,0.8408254,-0.5413064,0,0.8408254,-0.4737825,0,0.8806419,-0.4737825,0,0.8806419,-0.4737825,0,0.8806419,-0.5413064,0,0.8408254,-0.371507,0,0.9284302,-0.371507,0,0.9284302,-0.4447075,0,0.8956758,-0.4447075,0,0.8956758,-0.4447075,0,0.8956758,-0.371507,0,0.9284302,-0.7723939,0,0.6351438,-0.7723939,0,0.6351438,-0.7750577,0,0.6318905,-0.7750577,0,0.6318905,-0.7750577,0,0.6318905,-0.7723939,0,0.6351438,0.3981851,0,-0.9173051,0.3147939,0,-0.94916,0.3981851,0,-0.9173051,0.3147939,0,-0.94916,0.3981851,0,-0.9173051,0.3147939,0,-0.94916,-0.20617,0,0.9785162,-0.20617,0,0.9785162,-0.2917081,0,0.9565074,-0.2917081,0,0.9565074,-0.2917081,0,0.9565074,-0.20617,0,0.9785162,-0.7381572,0,0.6746288,-0.7381572,0,0.6746288,-0.7723939,0,0.6351438,-0.7723939,0,0.6351438,-0.7723939,0,0.6351438,-0.7381572,0,0.6746288,-0.6226888,0,0.7824696,-0.6226888,0,0.7824696,-0.6690073,0,0.7432558,-0.6690073,0,0.7432558,-0.6690073,0,0.7432558,-0.6226888,0,0.7824696,-0.1162449,0,0.9932206,-0.1162449,0,0.9932206,-0.20617,0,0.9785162,-0.20617,0,0.9785162,-0.20617,0,0.9785162,-0.1162449,0,0.9932206,-0.5701517,0,0.8215395,-0.5701517,0,0.8215395,-0.6226888,0,0.7824696,-0.6226888,0,0.7824696,-0.6226888,0,0.7824696,-0.5701517,0,0.8215395,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *794 { + a: 18.52911,0.3937008,18.13482,0.3937008,18.52911,0.7874016,18.13482,0.7874016,4.914395,0.3937008,4.211505,0.3937008,4.914395,0.7874016,4.211505,0.7874016,-7.482868,0.3937008,-8.77324,0.3937008,-7.482868,0.7874016,-8.77324,0.7874016,-2.501696,-1.146197E-11,-2.501696,0.7874016,-2.000071,-1.132441E-11,-2.000071,0.7874016,-1.980713,0.3937008,-1.980713,0.7874016,-1.667007,0.3937008,-1.667007,0.7874016,-11.52288,-1.770246E-11,-11.75095,-1.148111E-11,-11.52288,0.7874016,-11.75095,0.7874016,-4.771112,-1.176033E-11,-4.771112,0.7874016,-4.344951,-1.160878E-11,-4.344951,0.7874016,2.257524,6.287739E-11,1.649641,7.282843E-11,2.257524,0.7874016,1.649641,0.7874016,-16.23658,-1.131116E-11,-16.23658,0.7874016,-16.1574,-1.00556E-11,-16.1574,0.7874016,-0.8614848,0.3937008,-1.913528,0.3937008,-0.8614848,0.7874016,-1.913528,0.7874016,-1.779199E-13,0.3937008,-19.68504,0.3937008,8.452616E-13,0.7874016,-19.68504,0.7874016,7.233441,0.3937008,6.583179,0.3937008,7.233441,0.7874016,6.583179,0.7874016,-0.002167427,-1.842504E-11,-0.002167427,0.7874016,19.68504,-1.682166E-11,19.68504,0.7874016,-9.414674,-1.813643E-11,-9.414674,0.7874016,-9.127542,-1.175609E-11,-9.127542,0.7874016,-7.080433,-1.196758E-11,-7.080433,0.7874016,-6.726462,-1.174432E-11,-6.726462,0.7874016,7.78265,-1.00132E-11,7.78265,0.7874016,9.355859,-9.628504E-12,9.355859,0.7874016,11.92128,0.3937008,11.36068,0.3937008,11.92128,0.7874016,11.36068,0.7874016,2.165414,-1.018754E-11,2.165414,0.7874016,3.797487,-9.817943E-12,3.797487,0.7874016,0.6675001,-9.573762E-12,0.6675001,0.7874016,1.930894,-8.84157E-12,1.930894,0.7874016,-14.05864,-1.096306E-11,-14.05864,0.7874016,-13.87922,-1.08093E-11,-13.87922,0.7874016,-19.68504,15.74803,-19.68504,19.68504,19.68504,15.74803,19.68504,19.68504,19.68504,-2.553513E-15,-19.68504,-2.553513E-15,19.68504,0.7874016,-19.68504,0.7874016,9.555474,0.7874016,9.555474,-8.749337E-12,7.959337,0.7874016,7.959337,-9.115267E-12,-4.966711,0.3937008,-6.223403,0.3937008,-4.966711,0.7874016,-6.223403,0.7874016,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,7.345693,-1.027718E-11,7.345693,0.7874016,8.921638,-9.97087E-12,8.921638,0.7874016,6.702668,7.308953E-11,6.702668,0.7874016,7.180493,7.323552E-11,8.286031,7.348754E-11,8.286031,0.7874016,7.180493,0.7874016,9.660042,0.7874016,9.660042,-9.085296E-12,8.076661,0.7874016,8.076661,-9.37573E-12,-3.737352,0.3937008,-4.989476,0.3937008,-3.737352,0.7874016,-4.989476,0.7874016,3.556984,-1.055998E-11,3.556984,0.7874016,5.177881,-1.018151E-11,5.177881,0.7874016,-0.2801757,-1.104826E-11,-0.2801757,0.7874016,0.2985286,-1.094357E-11,0.2985286,0.7874016,9.597938,6.71468E-11,9.38976,6.715802E-11,9.597938,0.7874016,8.022276,0.7874016,9.38976,0.7874016,8.022276,6.676378E-11,9.297518,0.7874016,9.297518,-8.521655E-12,8.029188,0.7874016,8.029188,-8.748473E-12,1.891031,-1.056921E-11,1.891031,0.7874016,2.547173,-1.04281E-11,2.547173,0.7874016,4.746579,0.7874016,4.746579,-9.872679E-12,4.013556,0.7874016,4.013556,-9.982591E-12,6.918215,0.7874016,6.918215,-9.220546E-12,6.091701,0.7874016,6.091701,-9.37842E-12,19.68504,19.68504,19.68504,-19.691,-19.68504,19.68504,19.6069,-19.70382,19.43318,-19.74868,19.21811,-19.8246,18.95616,-19.94218,18.64548,-20.11182,18.28733,-20.34276,17.88517,-20.6426,17.44393,-21.01704,16.96927,-21.47004,16.46706,-22.004,15.93156,-22.63357,15.15077,-23.63309,14.10644,-24.84016,13.00683,-25.97944,12.00062,-26.90548,11.84744,-27.04646,10.62375,-28.03518,9.331808,-28.93767,8.920561,-29.18097,7.969063,-29.74387,6.535397,-30.44162,5.03433,-31.01716,3.47405,-31.45629,1.8679,-31.74603,0.6085226,-31.84669,0.002167427,-31.88976,-19.68504,-31.88976,-2.353818,0.3937008,-3.603503,0.3937008,-2.353818,0.7874016,-3.603503,0.7874016,-6.010457,0.3937008,-7.274643,0.3937008,-6.010457,0.7874016,-7.274643,0.7874016,-9.218683,0.3937008,-9.218683,0.7874016,-7.909036,0.3937008,-7.909036,0.7874016,-9.543784,0.7874016,-8.183575,0.7874016,-9.543784,0.3937008,-8.183575,0.3937008,5.850762,-1.070628E-11,5.850762,0.7874016,7.445205,-1.031882E-11,7.445205,0.7874016,-8.138535,0.3937008,-9.38976,0.3937008,-8.138535,0.7874016,-9.471552,0.7874016,-9.471552,0.3937008,-9.38976,0.7874016,-7.000092,0.7874016,-5.993639,0.7874016,-7.000092,0.3937008,-5.993639,0.3937008,-19.68504,-19.691,-19.68504,-15.74803,-19.6069,-19.70382,-19.29172,-15.77575,-19.43318,-19.74868,-19.21811,-19.8246,-18.7964,-15.85704,-18.95616,-19.94218,-18.64548,-20.11182,-18.28649,-15.98869,-18.28733,-20.34276,-17.88517,-20.6426,-17.75786,-16.1753,-17.44393,-21.01704,-17.20835,-16.42196,-16.96927,-21.47004,-16.63762,-16.73359,-16.46706,-22.004,-16.0469,-17.1145,-15.93156,-22.63357,-15.43849,-17.5681,-15.15077,-23.63309,-14.81545,-18.09683,-14.10644,-24.84016,-14.18116,-18.70218,-13.53913,-19.3848,-13.00683,-25.97944,-12.88704,-20.15143,-12.00062,-26.90548,-12.11643,-21.13793,-11.20642,-22.18973,-11.84744,-27.04646,-10.62375,-28.03518,-10.2618,-23.16844,-9.331808,-28.93767,-9.341135,-24.01575,-9.280951,-24.07114,-8.920561,-29.18097,-8.262266,-24.89421,-7.969063,-29.74387,-7.204437,-25.63317,-6.535397,-30.44162,-6.106856,-26.2825,-5.03433,-31.01716,-4.970144,-26.83572,-3.47405,-31.45629,-3.796748,-27.28563,-2.591449,-27.62485,-1.8679,-31.74603,-1.361615,-27.8467,-0.6085226,-31.84669,-0.3129168,-27.93053,-0.002167427,-31.88976,1.021593E-12,-27.95275,19.68504,-31.88976,19.68504,-27.95275,-4.844641,0.7874016,-3.907534,0.7874016,-4.844641,0.3937008,-3.907534,0.3937008,-1.7764,0.3937008,-2.653194,0.3937008,-1.7764,0.7874016,-2.653194,0.7874016,-6.851066,0.3937008,-8.126336,0.3937008,-6.851066,0.7874016,-8.126336,0.7874016,9.576866,0.3937008,8.974535,0.3937008,9.576866,0.7874016,8.974535,0.7874016,-9.199119,0.7874016,-7.947311,0.7874016,-9.199119,0.3937008,-7.947311,0.3937008,4.796149,-1.071899E-11,4.796149,0.7874016,6.403772,-1.033474E-11,6.403772,0.7874016,14.23552,0.3937008,13.70889,0.3937008,14.23552,0.7874016,13.70889,0.7874016,-9.448561,0.7874016,-8.057736,0.7874016,-9.448561,0.3937008,-8.057736,0.3937008,0.4039951,0.3937008,-0.4131599,0.3937008,0.4039951,0.7874016,-0.4131599,0.7874016,16.48247,0.3937008,15.98052,0.3937008,16.48247,0.7874016,15.98052,0.7874016,2.635141,0.3937008,1.876252,0.3937008,2.635141,0.7874016,1.876252,0.7874016,-19.68504,-11.81102,-19.68504,-0.3937008,-18.83471,-11.87096,19.68504,-0.3937008,-17.9859,-12.01025,-17.1398,-12.2287,-16.29761,-12.526,-16.13626,-12.59842,-15.46054,-12.90173,-14.76378,-13.28218,-14.62977,-13.35536,-13.80647,-13.88623,-12.99181,-14.49361,-12.18696,-15.17663,-11.39304,-15.93431,-10.61119,-16.76559,-9.84252,-17.66929,-9.08208,-18.64277,-8.306411,-19.5393,-7.516777,-20.35743,-6.714465,-21.09582,-5.900786,-21.75325,-5.077066,-22.32867,-4.92126,-22.42085,-4.244648,-22.82113,-3.404892,-23.22983,-2.559166,-23.5541,-1.708849,-23.79341,-0.8553301,-23.94738,3.21163E-13,-24.01575,19.68504,-24.01575,-19.68504,11.81102,19.68504,11.81102,-19.68504,0.3937008,19.68504,0.3937008,-31.88976,0.7874016,-27.95275,0.7874016,-31.88976,-1.047862E-11,-27.95275,0.3937008,19.68504,-1.047462E-11,-24.01575,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,1.381133E-11,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.691,1.495352E-11,15.74803,0.7874016,19.691,0.7874016,-19.68504,-15.74803,-19.29172,-15.77575,-18.7964,-15.85704,-18.28649,-15.98869,-17.75786,-16.1753,-17.20835,-16.42196,-16.63762,-16.73359,-16.0469,-17.1145,-15.43849,-17.5681,-14.81545,-18.09683,-14.18116,-18.70218,-13.53913,-19.3848,-12.88704,-20.15143,-12.11643,-21.13793,-11.20642,-22.18973,-10.2618,-23.16844,-9.341135,-24.01575,-9.280951,-24.07114,-8.262266,-24.89421,-7.204437,-25.63317,-6.106856,-26.2825,-4.970144,-26.83572,-3.796748,-27.28563,-2.591449,-27.62485,-1.361615,-27.8467,-0.3129168,-27.93053,3.105886E-12,-27.95275,19.68504,-27.95275,-19.68504,15.74803,19.68504,15.74803 + } + UVIndex: *918 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,105,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,129,128,127,129,131,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,151,150,153,152,150,154,153,150,155,154,150,156,155,150,157,156,150,158,157,150,159,158,150,160,159,150,161,160,150,162,161,150,163,162,150,164,163,150,165,164,150,166,165,150,167,166,150,168,167,150,169,168,150,170,169,150,171,170,150,172,171,150,173,172,150,174,173,150,175,174,150,176,175,150,177,176,150,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,200,201,199,202,199,201,203,201,200,204,206,205,207,205,206,208,210,209,211,209,210,212,211,210,213,211,212,214,211,213,215,214,213,216,214,215,217,214,216,218,217,216,219,217,218,220,217,219,221,220,219,222,220,221,223,222,221,224,222,223,225,224,223,226,224,225,227,226,225,228,226,227,229,228,227,230,228,229,231,230,229,232,230,231,233,232,231,234,233,231,235,233,234,236,235,234,237,235,236,238,237,236,239,238,236,240,238,239,241,238,240,242,241,240,243,241,242,244,243,242,245,244,242,246,244,245,247,246,245,248,246,247,249,248,247,250,248,249,251,250,249,252,250,251,253,252,251,254,252,253,255,254,253,256,255,253,257,255,256,258,257,256,259,257,258,260,259,258,261,259,260,262,261,260,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,311,310,313,311,312,314,311,313,315,311,314,316,311,315,317,311,316,318,311,317,319,311,318,320,311,319,321,311,320,322,311,321,323,311,322,324,311,323,325,311,324,326,311,325,327,311,326,328,311,327,329,311,328,330,311,329,331,311,330,332,311,331,333,311,332,334,311,333,335,311,334,336,311,335,337,311,336,338,311,337,339,341,340,342,340,341,343,345,344,346,344,345,347,346,345,348,346,347,349,348,347,350,349,347,351,350,347,352,351,347,353,352,347,354,353,347,355,357,356,357,358,356,356,358,359,359,358,360,360,358,361,361,358,362,362,358,363,358,364,363,363,364,365,366,365,364,367,368,308,310,308,368,369,310,368,312,310,369,370,312,369,371,312,370,313,312,371,372,313,371,373,313,372,314,313,373,374,314,373,315,314,374,316,315,374,375,316,374,317,316,375,376,317,375,377,317,376,318,317,377,319,318,377,378,319,377,320,319,378,379,320,378,321,320,379,380,321,379,322,321,380,381,322,380,323,322,381,382,323,381,324,323,382,383,324,382,325,324,383,384,325,383,385,325,384,326,325,385,327,326,385,386,327,385,328,327,386,387,328,386,329,328,387,388,329,387,330,329,388,331,330,388,389,331,388,332,331,389,333,332,389,390,333,389,334,333,390,391,334,390,335,334,391,336,335,391,392,336,391,337,336,392,393,337,392,394,337,393,338,337,394,339,340,395,396,395,340,309,311,341,342,341,311 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *306 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_sideEntry, Model::RootNode + C: "OO",4787616815909899365,0 + + ;Geometry::, Model::Mesh road_sideEntry + C: "OO",5421407098985757538,4787616815909899365 + + ;Material::pavement, Model::Mesh road_sideEntry + C: "OO",17046,4787616815909899365 + + ;Material::asphalt, Model::Mesh road_sideEntry + C: "OO",9934,4787616815909899365 + + ;Material::asphaltEdge, Model::Mesh road_sideEntry + C: "OO",17042,4787616815909899365 + + ;Material::line, Model::Mesh road_sideEntry + C: "OO",9174,4787616815909899365 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntry.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntry.fbx.import new file mode 100644 index 0000000..de4a201 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntry.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ciavr16mdo08m" +path="res://.godot/imported/road_sideEntry.fbx-0fe0696951300e406bb7d727246eaefd.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntry.fbx" +dest_files=["res://.godot/imported/road_sideEntry.fbx-0fe0696951300e406bb7d727246eaefd.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntryBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntryBarrier.fbx new file mode 100644 index 0000000..7bdc817 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntryBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 21 + Millisecond: 724 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_sideEntryBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_sideEntryBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4819685508995530907, "Model::road_sideEntryBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5648069602112496377, "Geometry::", "Mesh" { + Vertices: *1062 { + a: -7.131538,0.8,-2.100773,-6.931538,-6.51088E-12,-2.100773,-7.316441,0.8,-1.788229,-7.11644,-6.409953E-12,-1.788229,-6.692872,0.8,-2.684114,-6.492872,2.1224E-11,-2.684114,-6.923022,0.8,-2.399268,-6.723022,-6.575626E-12,-2.399268,-5.434477,1.97894E-11,-3.660921,-5.686707,1.980087E-11,-3.463891,-5.634478,0.8,-3.660921,-5.886707,0.8,-3.463891,-6.667907,0.8,-2.71124,-6.467906,1.997388E-11,-2.71124,-6.692872,0.8,-2.684114,-6.492872,2.1224E-11,-2.684114,-6.242666,1.9878E-11,-2.955981,-6.442666,0.8,-2.955981,-5.016164,0.8,-4.936028,-5.035448,0.8,-4.881401,-5.016164,-4.654749E-12,-4.936028,-5.035448,-6.235002E-12,-4.881401,-7.605631,0.8,-1.121937,-7.405631,-6.150742E-12,-1.121937,-7.704513,0.8,-0.7705965,-7.504512,-5.986479E-12,-0.7705965,4.5,-2.819967E-17,-5,4.7,0.8,-5,4.5,-2.819967E-17,5,4.7,0.8,5,-4.880431,0.8,-4.481587,-4.68043,-7.217366E-12,-4.481587,-4.958089,0.8,-4.361152,-4.75809,-4.814782E-12,-4.361152,-8.06349,0.8,-0.4744465,-8.089059,0.8,-0.1545647,-8.06349,-3.36955E-12,-0.4744465,-8.089059,-3.183573E-12,-0.1545647,5,-2.819967E-17,-5,4.5,-2.819967E-17,-5,5,-2.819967E-17,5,4.5,-2.819967E-17,5,-7.411965,0.8,-2.265822,-7.554944,0.8,-2.024142,-7.411965,-3.819588E-12,-2.265822,-7.554944,-3.755575E-12,-2.024142,-7.350168,-3.856642E-12,-2.370279,-7.350168,0.8,-2.370279,-4.73983,0.8,-4.790759,-4.53983,-7.291221E-12,-4.790759,-4.773137,0.8,-4.696409,-4.573136,-7.287216E-12,-4.696409,-5.338328,0.8,-4.430759,-5.453391,0.8,-4.310194,-5.338328,-4.457634E-12,-4.430759,-5.453391,-4.42182E-12,-4.310194,-8.089059,0.8,-0.1545647,-8.099999,0.8,-0.0005505264,-8.089059,-3.183573E-12,-0.1545647,-8.099999,-5.711137E-12,-0.0005505264,-5.102744,1.963309E-11,-3.956982,-5.257203,1.970584E-11,-3.811708,-5.302744,0.8,-3.956982,-5.457203,0.8,-3.811708,-5.453391,-4.42182E-12,-4.310194,-5.453391,0.8,-4.310194,-5.589016,-4.393902E-12,-4.182634,-5.589016,0.8,-4.182634,-7.316441,0.8,-1.788229,-7.11644,-6.409953E-12,-1.788229,-7.475359,0.8,-1.461697,-7.275358,-6.29126E-12,-1.461697,-5.589016,-4.393902E-12,-4.182634,-5.589016,0.8,-4.182634,-5.748928,-4.353802E-12,-4.046616,-5.748928,0.8,-4.046616,-5.243219,0.8,-4.542833,-5.338328,0.8,-4.430759,-5.243219,-4.484226E-12,-4.542833,-5.338328,-4.457634E-12,-4.430759,-5.004771,0.8,-4.980154,-5.016164,0.8,-4.936028,-5.004771,-4.693834E-12,-4.980154,-5.016164,-4.654749E-12,-4.936028,-7.8,0.8,-0.01773712,-7.6,-7.228363E-12,-0.01773712,-7.8,0.8,5,-7.6,1.944922E-11,5,-5.167062,0.8,-4.644981,-5.243219,0.8,-4.542833,-5.167062,-4.519194E-12,-4.644981,-5.243219,-4.484226E-12,-4.542833,-4.70124,0.8,-5,-4.704181,0.8,-4.958282,-5.001514,0.8,-5,-4.717441,0.8,-4.877475,-4.73983,0.8,-4.790759,-4.773137,0.8,-4.696409,-4.819354,0.8,-4.593443,-4.880431,0.8,-4.481587,-4.958089,0.8,-4.361152,-5.053727,0.8,-4.232876,-5.004771,0.8,-4.980154,-5.016164,0.8,-4.936028,-5.035448,0.8,-4.881401,-5.065313,0.8,-4.814864,-5.168382,0.8,-4.097769,-5.108401,0.8,-4.735952,-5.167062,0.8,-4.644981,-5.243219,0.8,-4.542833,-5.302744,0.8,-3.956982,-5.338328,0.8,-4.430759,-5.457203,0.8,-3.811708,-5.453391,0.8,-4.310194,-5.589016,0.8,-4.182634,-5.634478,0.8,-3.660921,-5.748928,0.8,-4.046616,-5.886707,0.8,-3.463891,-6.002805,0.8,-3.848297,-6.173632,0.8,-3.215647,-6.309401,0.8,-3.583035,-6.442666,0.8,-2.955981,-6.598778,0.8,-3.303735,-6.667907,0.8,-2.71124,-6.833992,0.8,-3.048157,-6.692872,0.8,-2.684114,-6.923022,0.8,-2.399268,-6.8698,0.8,-3.009249,-7.120934,0.8,-2.698431,-7.131538,0.8,-2.100773,-7.350168,0.8,-2.370279,-7.316441,0.8,-1.788229,-7.475359,0.8,-1.461697,-7.411965,0.8,-2.265822,-7.554944,0.8,-2.024142,-7.605631,0.8,-1.121937,-7.732172,0.8,-1.659991,-7.704513,0.8,-0.7705965,-7.769505,0.8,-0.4103079,-7.87836,0.8,-1.27872,-7.79294,0.8,-0.1171159,-7.8,0.8,-0.01773712,-7.8,0.8,5,-8.099999,0.8,5,-7.989898,0.8,-0.8824086,-8.06349,0.8,-0.4744465,-8.089059,0.8,-0.1545647,-8.099999,0.8,-0.0005505264,-6.002805,-4.296162E-12,-3.848297,-6.002805,0.8,-3.848297,-6.309401,-4.203216E-12,-3.583035,-6.309401,0.8,-3.583035,-5.065313,0.8,-4.814864,-5.108401,0.8,-4.735952,-5.065313,-4.614368E-12,-4.814864,-5.108401,-4.557686E-12,-4.735952,-7.769505,0.8,-0.4103079,-7.569505,-5.798415E-12,-0.4103079,-7.79294,0.8,-0.1171159,-7.59294,-5.652679E-12,-0.1171159,4.5,-2.819967E-17,-5,5,-2.819967E-17,-5,4.7,0.8,-5,5,0.8,-5,-6.309401,-4.203216E-12,-3.583035,-6.309401,0.8,-3.583035,-6.598778,-4.129446E-12,-3.303735,-6.598778,0.8,-3.303735,-4.819354,0.8,-4.593443,-4.619354,-7.285609E-12,-4.593443,-4.880431,0.8,-4.481587,-4.68043,-7.217366E-12,-4.481587,-6.8698,0.8,-3.009249,-7.120934,0.8,-2.698431,-6.8698,-4.032157E-12,-3.009249,-7.120934,-3.934473E-12,-2.698431,-7.554944,0.8,-2.024142,-7.732172,0.8,-1.659991,-7.554944,-3.755575E-12,-2.024142,-7.732172,-3.657158E-12,-1.659991,-5.108401,0.8,-4.735952,-5.167062,0.8,-4.644981,-5.108401,-4.557686E-12,-4.735952,-5.167062,-4.519194E-12,-4.644981,-6.598778,0.8,-3.303735,-6.833992,0.8,-3.048157,-6.598778,-4.129446E-12,-3.303735,-6.833992,-4.029309E-12,-3.048157,-6.8698,0.8,-3.009249,-6.8698,-4.032157E-12,-3.009249,-5.973631,1.98458E-11,-3.215647,-6.242666,1.9878E-11,-2.955981,-6.173632,0.8,-3.215647,-6.442666,0.8,-2.955981,-7.989898,0.8,-0.8824086,-8.06349,0.8,-0.4744465,-7.989898,-3.463426E-12,-0.8824086,-8.06349,-3.36955E-12,-0.4744465,-5.035448,0.8,-4.881401,-5.065313,0.8,-4.814864,-5.035448,-6.235002E-12,-4.881401,-5.065313,-4.614368E-12,-4.814864,-4.958089,0.8,-4.361152,-4.75809,-4.814782E-12,-4.361152,-5.053727,0.8,-4.232876,-4.853727,1.949158E-11,-4.232876,5,0.8,-5,5,-2.819967E-17,-5,5,0.8,5,5,-2.819967E-17,5,-4.717441,0.8,-4.877475,-4.517441,-7.286201E-12,-4.877475,-4.73983,0.8,-4.790759,-4.53983,-7.291221E-12,-4.790759,-5.748928,-4.353802E-12,-4.046616,-5.748928,0.8,-4.046616,-6.002805,-4.296162E-12,-3.848297,-6.002805,0.8,-3.848297,-7.704513,0.8,-0.7705965,-7.504512,-5.986479E-12,-0.7705965,-7.769505,0.8,-0.4103079,-7.569505,-5.798415E-12,-0.4103079,-7.87836,0.8,-1.27872,-7.989898,0.8,-0.8824086,-7.87836,-3.559531E-12,-1.27872,-7.989898,-3.463426E-12,-0.8824086,-6.923022,0.8,-2.399268,-6.723022,-6.575626E-12,-2.399268,-7.131538,0.8,-2.100773,-6.931538,-6.51088E-12,-2.100773,-5.168382,0.8,-4.097769,-4.968382,1.955449E-11,-4.097769,-5.302744,0.8,-3.956982,-5.102744,1.963309E-11,-3.956982,-7.732172,0.8,-1.659991,-7.87836,0.8,-1.27872,-7.732172,-3.657158E-12,-1.659991,-7.87836,-3.559531E-12,-1.27872,-8.099999,0.8,-0.0005505264,-8.099999,0.8,5,-8.099999,-5.711137E-12,-0.0005505264,-8.099999,-5.303878E-12,5,-4.50124,-6.198202E-12,-5,-5.001514,-5.012716E-12,-5,-4.504181,-7.263162E-12,-4.958282,-4.517441,-7.286201E-12,-4.877475,-4.53983,-7.291221E-12,-4.790759,-4.573136,-7.287216E-12,-4.696409,-4.619354,-7.285609E-12,-4.593443,-4.68043,-7.217366E-12,-4.481587,-4.75809,-4.814782E-12,-4.361152,-4.853727,1.949158E-11,-4.232876,-4.968382,1.955449E-11,-4.097769,-5.102744,1.963309E-11,-3.956982,-5.004771,-4.693834E-12,-4.980154,-5.016164,-4.654749E-12,-4.936028,-5.035448,-6.235002E-12,-4.881401,-5.065313,-4.614368E-12,-4.814864,-5.108401,-4.557686E-12,-4.735952,-5.257203,1.970584E-11,-3.811708,-5.167062,-4.519194E-12,-4.644981,-5.243219,-4.484226E-12,-4.542833,-5.338328,-4.457634E-12,-4.430759,-5.434477,1.97894E-11,-3.660921,-5.453391,-4.42182E-12,-4.310194,-5.686707,1.980087E-11,-3.463891,-5.589016,-4.393902E-12,-4.182634,-5.748928,-4.353802E-12,-4.046616,-5.973631,1.98458E-11,-3.215647,-6.002805,-4.296162E-12,-3.848297,-6.242666,1.9878E-11,-2.955981,-6.309401,-4.203216E-12,-3.583035,-6.467906,1.997388E-11,-2.71124,-6.598778,-4.129446E-12,-3.303735,-6.492872,2.1224E-11,-2.684114,-6.723022,-6.575626E-12,-2.399268,-6.833992,-4.029309E-12,-3.048157,-6.931538,-6.51088E-12,-2.100773,-6.8698,-4.032157E-12,-3.009249,-7.120934,-3.934473E-12,-2.698431,-7.11644,-6.409953E-12,-1.788229,-7.275358,-6.29126E-12,-1.461697,-7.350168,-3.856642E-12,-2.370279,-7.405631,-6.150742E-12,-1.121937,-7.411965,-3.819588E-12,-2.265822,-7.504512,-5.986479E-12,-0.7705965,-7.554944,-3.755575E-12,-2.024142,-7.569505,-5.798415E-12,-0.4103079,-7.732172,-3.657158E-12,-1.659991,-7.59294,-5.652679E-12,-0.1171159,-7.6,-7.228363E-12,-0.01773712,-7.6,1.944922E-11,5,-8.099999,-5.303878E-12,5,-7.87836,-3.559531E-12,-1.27872,-7.989898,-3.463426E-12,-0.8824086,-8.06349,-3.36955E-12,-0.4744465,-8.089059,-3.183573E-12,-0.1545647,-8.099999,-5.711137E-12,-0.0005505264,-5.001514,0.8,-5,-5.004771,0.8,-4.980154,-5.001514,-5.012716E-12,-5,-5.004771,-4.693834E-12,-4.980154,-8.099999,-5.303878E-12,5,-8.099999,0.8,5,-7.6,1.944922E-11,5,-7.8,0.8,5,-7.475359,0.8,-1.461697,-7.275358,-6.29126E-12,-1.461697,-7.605631,0.8,-1.121937,-7.405631,-6.150742E-12,-1.121937,-7.120934,0.8,-2.698431,-7.350168,0.8,-2.370279,-7.120934,-3.934473E-12,-2.698431,-7.350168,-3.856642E-12,-2.370279,-4.50124,-6.198202E-12,-5,-4.70124,0.8,-5,-5.001514,-5.012716E-12,-5,-5.001514,0.8,-5,-7.79294,0.8,-0.1171159,-7.59294,-5.652679E-12,-0.1171159,-7.8,0.8,-0.01773712,-7.6,-7.228363E-12,-0.01773712,-4.773137,0.8,-4.696409,-4.573136,-7.287216E-12,-4.696409,-4.819354,0.8,-4.593443,-4.619354,-7.285609E-12,-4.593443,-5.053727,0.8,-4.232876,-4.853727,1.949158E-11,-4.232876,-5.168382,0.8,-4.097769,-4.968382,1.955449E-11,-4.097769,-5.257203,1.970584E-11,-3.811708,-5.434477,1.97894E-11,-3.660921,-5.457203,0.8,-3.811708,-5.634478,0.8,-3.660921,-4.70124,0.8,-5,-4.50124,-6.198202E-12,-5,-4.704181,0.8,-4.958282,-4.504181,-7.263162E-12,-4.958282,-4.704181,0.8,-4.958282,-4.504181,-7.263162E-12,-4.958282,-4.717441,0.8,-4.877475,-4.517441,-7.286201E-12,-4.877475,5,-2.819967E-17,5,4.5,-2.819967E-17,5,5,0.8,5,4.7,0.8,5,-5.686707,1.980087E-11,-3.463891,-5.973631,1.98458E-11,-3.215647,-5.886707,0.8,-3.463891,-6.173632,0.8,-3.215647,5,0.8,-5,5,0.8,5,4.7,0.8,-5,4.7,0.8,5 + } + PolygonVertexIndex: *696 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,13,16,-13,17,12,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,44,42,-47,47,46,-43,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,95,-95,97,96,-95,98,97,-95,99,98,-95,100,99,-95,101,100,-95,102,101,-95,103,101,-103,104,101,-104,105,101,-105,106,101,-106,107,106,-106,108,106,-108,109,106,-109,110,106,-110,111,110,-110,112,110,-112,113,112,-112,114,112,-114,115,112,-115,116,115,-115,117,115,-117,118,117,-117,119,117,-119,120,119,-119,121,119,-121,122,121,-121,123,121,-123,124,123,-123,125,123,-125,126,125,-125,127,126,-125,128,126,-128,129,126,-129,130,129,-129,131,129,-131,132,131,-131,133,132,-131,134,132,-134,135,132,-135,136,135,-135,137,135,-137,138,137,-137,139,138,-137,140,138,-140,141,140,-140,142,141,-140,143,142,-140,144,143,-140,145,143,-145,146,143,-146,147,143,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,185,187,-189,189,188,-188,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,243,-246,247,243,-247,248,243,-248,249,243,-249,250,243,-250,251,243,-251,252,243,-252,253,243,-253,254,243,-254,255,254,-254,256,255,-254,257,256,-254,258,257,-254,259,258,-254,260,258,-260,261,260,-260,262,261,-260,263,262,-260,264,262,-264,265,264,-264,266,264,-266,267,266,-266,268,267,-266,269,267,-269,270,269,-269,271,269,-271,272,271,-271,273,271,-273,274,273,-273,275,273,-275,276,273,-276,277,276,-276,278,276,-278,279,278,-278,280,279,-278,281,279,-281,282,279,-282,283,282,-282,284,282,-284,285,284,-284,286,284,-286,287,286,-286,288,286,-288,289,288,-288,290,288,-290,291,288,-291,292,288,-292,293,288,-293,294,293,-293,295,294,-293,296,295,-293,297,296,-293,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2088 { + a: 0.8244325,0.2061081,0.5270962,0.8613452,0.2153363,0.4601246,0.8212209,0.2053052,0.5323964,0.8587158,0.214679,0.4653172,0.8212209,0.2053052,0.5323964,0.8613452,0.2153363,0.4601246,0.7460037,0.1865009,0.6392933,0.7856269,0.1964067,0.5866982,0.7419669,0.1854917,0.6442654,0.7819427,0.1954857,0.5919045,0.7419669,0.1854917,0.6442654,0.7856269,0.1964067,0.5866982,0.626017,0.1565042,0.7639431,0.6222684,0.1555671,0.7671903,0.625038,0.1562595,0.7647943,0.6295099,0.1573775,0.7608873,0.625038,0.1562595,0.7647943,0.6222684,0.1555671,0.7671903,0.723671,0.1809178,0.6660097,0.7460037,0.1865009,0.6392933,0.723671,0.1809178,0.6660097,0.7419669,0.1854917,0.6442654,0.723671,0.1809178,0.6660097,0.7460037,0.1865009,0.6392933,0.723671,0.1809178,0.6660097,0.7021245,0.1755311,0.6900797,0.723671,0.1809178,0.6660097,0.7063997,0.1765999,0.6854281,0.723671,0.1809178,0.6660097,0.7021245,0.1755311,0.6900797,-0.9565074,0,-0.2917081,-0.9565074,0,-0.2917081,-0.9284302,0,-0.371507,-0.9284302,0,-0.371507,-0.9284302,0,-0.371507,-0.9565074,0,-0.2917081,0.9241548,0.2310387,0.3042351,0.9471251,0.2367813,0.2165379,0.9228602,0.2307151,0.3083825,0.9464408,0.2366102,0.2196941,0.9228602,0.2307151,0.3083825,0.9471251,0.2367813,0.2165379,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,0.8390483,0.2097621,0.5019937,0.8031203,0.2007801,0.560968,0.8418023,0.2104506,0.4970708,0.8063349,0.2015837,0.5560466,0.8418023,0.2104506,0.4970708,0.8031203,0.2007801,0.560968,-0.991676,0,-0.1287584,-0.991676,0,-0.1287584,-0.9971632,0,-0.0752694,-0.9971632,0,-0.0752694,-0.9971632,0,-0.0752694,-0.991676,0,-0.1287584,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8606653,0,-0.5091712,-0.8606653,0,-0.5091712,-0.8806419,0,-0.4737825,-0.8806419,0,-0.4737825,-0.8806419,0,-0.4737825,-0.8606653,0,-0.5091712,-0.8606653,0,-0.5091712,-0.8606653,0,-0.5091712,-0.8408254,0,-0.5413064,-0.8408254,0,-0.5413064,-0.8408254,0,-0.5413064,-0.8606653,0,-0.5091712,0.9297488,0.2324372,0.2855524,0.9035647,0.2258912,0.3640659,0.9307972,0.2326993,0.2818997,0.9051927,0.2262982,0.3597434,0.9307972,0.2326993,0.2818997,0.9035647,0.2258912,0.3640659,-0.7432558,0,-0.6690073,-0.7432558,0,-0.6690073,-0.7045254,0,-0.7096789,-0.7045254,0,-0.7096789,-0.7045254,0,-0.7096789,-0.7432558,0,-0.6690073,-0.9971632,0,-0.0752694,-0.9971632,0,-0.0752694,-0.9993715,0,-0.03545193,-0.9993715,0,-0.03545193,-0.9993715,0,-0.03545193,-0.9971632,0,-0.0752694,0.6958478,0.173962,0.6968021,0.6918185,0.1729546,0.701052,0.6597028,0.1649257,0.7332064,0.6555707,0.1638927,0.7371339,0.6597028,0.1649257,0.7332064,0.6918185,0.1729546,0.701052,-0.7045254,0,-0.7096789,-0.6667204,0,-0.7453079,-0.7045254,0,-0.7096789,-0.6667204,0,-0.7453079,-0.7045254,0,-0.7096789,-0.6667204,0,-0.7453079,0.8613452,0.2153363,0.4601246,0.8950691,0.2237673,0.3857195,0.8587158,0.214679,0.4653172,0.8930986,0.2232746,0.3905425,0.8587158,0.214679,0.4653172,0.8950691,0.2237673,0.3857195,-0.6667204,0,-0.7453079,-0.6318905,0,-0.7750577,-0.6667204,0,-0.7453079,-0.6318905,0,-0.7750577,-0.6667204,0,-0.7453079,-0.6318905,0,-0.7750577,-0.7824696,0,-0.6226888,-0.7824696,0,-0.6226888,-0.7432558,0,-0.6690073,-0.7432558,0,-0.6690073,-0.7432558,0,-0.6690073,-0.7824696,0,-0.6226888,-0.9785162,0,-0.20617,-0.9785162,0,-0.20617,-0.9565074,0,-0.2917081,-0.9565074,0,-0.2917081,-0.9565074,0,-0.2917081,-0.9785162,0,-0.20617,0.9695747,0.2423937,0.03420803,0.9701425,0.2425356,0,0.9695621,0.2423905,0.03458439,0.9701425,0.2425356,0,0.9695621,0.2423905,0.03458439,0.9701425,0.2425356,0,-0.8215395,0,-0.5701517,-0.8215395,0,-0.5701517,-0.7824696,0,-0.6226888,-0.7824696,0,-0.6226888,-0.7824696,0,-0.6226888,-0.8215395,0,-0.5701517,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6351438,0,-0.7723939,-0.6746288,0,-0.7381572,-0.6351438,0,-0.7723939,-0.6746288,0,-0.7381572,-0.6351438,0,-0.7723939,-0.6746288,0,-0.7381572,-0.8956758,0,-0.4447075,-0.8956758,0,-0.4447075,-0.8596274,0,-0.5109214,-0.8596274,0,-0.5109214,-0.8596274,0,-0.5109214,-0.8956758,0,-0.4447075,0.9626503,0.2406626,0.1240401,0.9675552,0.2418888,0.07298452,0.9624193,0.2406048,0.1259306,0.9675481,0.241887,0.07308401,0.9624193,0.2406048,0.1259306,0.9675552,0.2418888,0.07298452,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.6746288,0,-0.7381572,-0.7154533,0,-0.6986606,-0.6746288,0,-0.7381572,-0.7154533,0,-0.6986606,-0.6746288,0,-0.7381572,-0.7154533,0,-0.6986606,0.8729131,0.2182283,0.4363473,0.8390483,0.2097621,0.5019937,0.875127,0.2187818,0.4316101,0.8418023,0.2104506,0.4970708,0.875127,0.2187818,0.4316101,0.8390483,0.2097621,0.5019937,-0.7572142,0,-0.6531666,-0.7572142,0,-0.6531666,-0.799296,0,-0.6009374,-0.799296,0,-0.6009374,-0.799296,0,-0.6009374,-0.7572142,0,-0.6531666,-0.8806419,0,-0.4737825,-0.8806419,0,-0.4737825,-0.9173051,0,-0.3981851,-0.9173051,0,-0.3981851,-0.9173051,0,-0.3981851,-0.8806419,0,-0.4737825,-0.8596274,0,-0.5109214,-0.8596274,0,-0.5109214,-0.8215395,0,-0.5701517,-0.8215395,0,-0.5701517,-0.8215395,0,-0.5701517,-0.8596274,0,-0.5109214,-0.7154533,0,-0.6986606,-0.7154533,0,-0.6986606,-0.7358133,0,-0.6771845,-0.7358133,0,-0.6771845,-0.7358133,0,-0.6771845,-0.7154533,0,-0.6986606,-0.7358133,0,-0.6771845,-0.7358133,0,-0.6771845,-0.7572142,0,-0.6531666,-0.7572142,0,-0.6531666,-0.7572142,0,-0.6531666,-0.7358133,0,-0.6771845,0.6630139,0.1657535,0.7300262,0.6674282,0.166857,0.72574,0.7021245,0.1755311,0.6900797,0.7063997,0.1765999,0.6854281,0.7021245,0.1755311,0.6900797,0.6674282,0.166857,0.72574,-0.974479,0,-0.2244784,-0.974479,0,-0.2244784,-0.991676,0,-0.1287584,-0.991676,0,-0.1287584,-0.991676,0,-0.1287584,-0.974479,0,-0.2244784,-0.9284302,0,-0.371507,-0.9284302,0,-0.371507,-0.8956758,0,-0.4447075,-0.8956758,0,-0.4447075,-0.8956758,0,-0.4447075,-0.9284302,0,-0.371507,0.8031203,0.2007801,0.560968,0.766111,0.1915277,0.6135072,0.8063349,0.2015837,0.5560466,0.7696914,0.1924229,0.608727,0.8063349,0.2015837,0.5560466,0.766111,0.1915277,0.6135072,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9502147,0.2375537,0.2016438,0.9297488,0.2324372,0.2855524,0.9507564,0.2376891,0.1989128,0.9307972,0.2326993,0.2818997,0.9507564,0.2376891,0.1989128,0.9297488,0.2324372,0.2855524,-0.6318905,0,-0.7750577,-0.6351438,0,-0.7723939,-0.6318905,0,-0.7750577,-0.6351438,0,-0.7723939,-0.6318905,0,-0.7750577,-0.6351438,0,-0.7723939,0.9471251,0.2367813,0.2165379,0.9626503,0.2406626,0.1240401,0.9464408,0.2366102,0.2196941,0.9624193,0.2406048,0.1259306,0.9464408,0.2366102,0.2196941,0.9626503,0.2406626,0.1240401,-0.94916,0,-0.3147939,-0.94916,0,-0.3147939,-0.974479,0,-0.2244784,-0.974479,0,-0.2244784,-0.974479,0,-0.2244784,-0.94916,0,-0.3147939,0.7856269,0.1964067,0.5866982,0.8244325,0.2061081,0.5270962,0.7819427,0.1954857,0.5919045,0.8212209,0.2053052,0.5323964,0.7819427,0.1954857,0.5919045,0.8244325,0.2061081,0.5270962,0.7288099,0.1822025,0.6600291,0.6918185,0.1729546,0.701052,0.7326594,0.1831648,0.6554853,0.6958478,0.173962,0.6968021,0.7326594,0.1831648,0.6554853,0.6918185,0.1729546,0.701052,-0.9173051,0,-0.3981851,-0.9173051,0,-0.3981851,-0.94916,0,-0.3147939,-0.94916,0,-0.3147939,-0.94916,0,-0.3147939,-0.9173051,0,-0.3981851,-0.9993715,0,-0.03545193,-0.9993715,0,-0.03545193,-1,0,0,-1,0,0,-1,0,0,-0.9993715,0,-0.03545193,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9868015,0,-0.1619343,-0.9868015,0,-0.1619343,-0.9785162,0,-0.20617,-0.9785162,0,-0.20617,-0.9785162,0,-0.20617,-0.9868015,0,-0.1619343,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8950691,0.2237673,0.3857195,0.9241548,0.2310387,0.3042351,0.8930986,0.2232746,0.3905425,0.9228602,0.2307151,0.3083825,0.8930986,0.2232746,0.3905425,0.9241548,0.2310387,0.3042351,-0.799296,0,-0.6009374,-0.799296,0,-0.6009374,-0.8408254,0,-0.5413064,-0.8408254,0,-0.5413064,-0.8408254,0,-0.5413064,-0.799296,0,-0.6009374,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9675552,0.2418888,0.07298452,0.9695747,0.2423937,0.03420803,0.9675481,0.241887,0.07308401,0.9695621,0.2423905,0.03458439,0.9675481,0.241887,0.07308401,0.9695747,0.2423937,0.03420803,0.9035647,0.2258912,0.3640659,0.8729131,0.2182283,0.4363473,0.9051927,0.2262982,0.3597434,0.875127,0.2187818,0.4316101,0.9051927,0.2262982,0.3597434,0.8729131,0.2182283,0.4363473,0.766111,0.1915277,0.6135072,0.7288099,0.1822025,0.6600291,0.7696914,0.1924229,0.608727,0.7326594,0.1831648,0.6554853,0.7696914,0.1924229,0.608727,0.7288099,0.1822025,0.6600291,0.6597028,0.1649257,0.7332064,0.6555707,0.1638927,0.7371339,0.626017,0.1565042,0.7639431,0.6222684,0.1555671,0.7671903,0.626017,0.1565042,0.7639431,0.6555707,0.1638927,0.7371339,0.9678825,0.2419706,0.06821869,0.9638595,0.2409649,0.1136261,0.9678825,0.2419706,0.06821869,0.9640354,0.2410088,0.1120283,0.9678825,0.2419706,0.06821869,0.9638595,0.2409649,0.1136261,0.9638595,0.2409649,0.1136261,0.9502147,0.2375537,0.2016438,0.9640354,0.2410088,0.1120283,0.9507564,0.2376891,0.1989128,0.9640354,0.2410088,0.1120283,0.9502147,0.2375537,0.2016438,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.625038,0.1562595,0.7647943,0.6295099,0.1573775,0.7608873,0.6630139,0.1657535,0.7300262,0.6674282,0.166857,0.72574,0.6630139,0.1657535,0.7300262,0.6295099,0.1573775,0.7608873,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *708 { + a: -7.177605,9.0481,-6.776683,5.826412,-8.607304,9.0481,-8.206382,5.826412,-8.340546,8.271686,-7.845685,5.063083,-9.782302,8.271686,-9.287441,5.063083,-7.988351,3.731142,-9.248441,3.731142,-8.608871,6.91783,-9.86896,6.91783,-9.922976,7.900033,-9.38976,4.697581,-10.06812,7.900033,-9.534902,4.697581,-8.080261,4.697581,-8.613477,7.900033,-11.75095,3.149606,-11.52288,3.149606,-11.75095,9.098155E-11,-11.52288,8.476008E-11,-3.860264,10.08607,-3.646944,6.846542,-5.297232,10.08607,-5.083912,6.846542,-19.68504,4.296891,-19.68504,7.543431,19.68504,4.296891,19.68504,7.543431,4.415864,8.368722,4.842576,5.150346,3.851682,8.368722,4.278394,5.150346,0.6675001,3.149606,1.930894,3.149606,0.6675001,1.157054E-10,1.930894,1.164376E-10,19.68504,-19.68504,17.71654,-19.68504,19.68504,19.68504,17.71654,19.68504,7.180493,3.149606,8.286031,3.149606,7.180493,1.151588E-10,8.286031,1.154108E-10,6.702668,1.150129E-10,6.702668,3.149606,11.57379,8.543767,11.8359,5.307825,11.17987,8.543767,11.44198,5.307825,1.891031,3.149606,2.547173,3.149606,1.891031,9.740716E-11,2.547173,9.754816E-11,1.649641,3.149606,2.257524,3.149606,1.649641,1.160192E-10,2.257524,1.060681E-10,-3.960676,4.239379,-4.795488,4.239379,-4.534246,7.434851,-5.369058,7.434851,4.013556,9.482328E-11,4.013556,3.149606,4.746579,9.493319E-11,4.746579,3.149606,-6.274987,9.429032,-5.930411,6.20083,-7.704712,9.429032,-7.360136,6.20083,6.091701,9.171195E-11,6.091701,3.149606,6.918215,9.186982E-11,6.918215,3.149606,-0.2801757,3.149606,0.2985286,3.149606,-0.2801757,9.935149E-11,0.2985286,9.945619E-11,-14.05864,3.149606,-13.87922,3.149606,-14.05864,8.43477E-11,-13.87922,8.450157E-11,0.06983117,10.50351,0.06983117,7.256971,-19.68504,10.50351,-19.68504,7.256971,-2.501696,3.149606,-2.000071,3.149606,-2.501696,1.003762E-10,-2.000071,1.005138E-10,18.50882,-19.68504,18.5204,-19.52079,19.691,-19.68504,18.5726,-19.20266,18.66075,-18.86126,18.79188,-18.4898,18.97383,-18.08442,19.21429,-17.64404,19.52004,-17.16989,19.89656,-16.66487,19.70382,-19.6069,19.74868,-19.43318,19.8246,-19.21811,19.94218,-18.95616,20.34796,-16.13295,20.11182,-18.64548,20.34276,-18.28733,20.6426,-17.88517,20.87695,-15.57867,21.01704,-17.44393,21.48505,-15.00673,21.47004,-16.96927,22.004,-16.46706,22.18298,-14.41307,22.63357,-15.93156,23.17601,-13.63737,23.63309,-15.15077,24.30564,-12.66003,24.84016,-14.10644,25.36483,-11.63772,25.97944,-13.00683,26.2516,-10.67418,26.90548,-12.00062,26.34989,-10.56738,27.25599,-9.445935,27.04646,-11.84744,28.03518,-10.62375,28.07692,-8.270761,28.93767,-9.331808,28.80488,-7.040269,29.43055,-5.754712,29.18097,-8.920561,29.74387,-7.969063,29.94343,-4.417074,30.44162,-6.535397,30.33273,-3.033844,30.5886,-1.615385,31.01716,-5.03433,30.68087,-0.4610863,30.70866,-0.06983117,30.70866,19.68504,31.88976,19.68504,31.45629,-3.47405,31.74603,-1.8679,31.84669,-0.6085226,31.88976,-0.002167427,7.959337,9.296234E-11,7.959337,3.149606,9.555474,9.332827E-11,9.555474,3.149606,-7.080433,3.149606,-6.726462,3.149606,-7.080433,9.871814E-11,-6.726462,9.894129E-11,-0.8269904,10.46036,-0.7642518,7.214431,-1.984971,10.46036,-1.922232,7.214431,-17.71654,-2.100934E-14,-19.68504,-2.100934E-14,-18.50394,3.149606,-19.68504,3.149606,8.076661,9.756187E-11,8.076661,3.149606,9.660042,9.78523E-11,9.660042,3.149606,6.779393,8.503018,7.156747,5.278484,6.277644,8.503018,6.654998,5.278484,7.78265,3.149606,9.355859,3.149606,7.78265,1.067973E-10,9.355859,1.071819E-10,5.850762,3.149606,7.445205,3.149606,5.850762,1.181226E-10,7.445205,1.185101E-10,-4.771112,3.149606,-4.344951,3.149606,-4.771112,1.002653E-10,-4.344951,1.004168E-10,8.022276,3.149606,9.38976,3.149606,8.022276,1.021614E-10,9.38976,1.025557E-10,9.597938,3.149606,9.597938,1.025445E-10,-8.129986,4.352023,-9.602057,4.352023,-8.69654,7.548746,-10.16861,7.548746,2.165414,3.149606,3.797487,3.149606,2.165414,1.191006E-10,3.797487,1.194702E-10,-9.414674,3.149606,-9.127542,3.149606,-9.414674,8.942553E-11,-9.127542,9.580598E-11,2.097606,8.180374,2.568253,4.968131,1.467668,8.180374,1.938315,4.968131,19.68504,3.149606,19.68504,-1.110223E-16,-19.68504,3.149606,-19.68504,-1.110223E-16,13.95002,8.421382,14.14686,5.180815,13.59742,8.421382,13.79426,5.180815,8.029188,8.866378E-11,8.029188,3.149606,9.297518,8.889071E-11,9.297518,3.149606,-2.399166,10.3186,-2.259382,7.075074,-3.840519,10.3186,-3.700736,7.075074,3.556984,3.149606,5.177881,3.149606,3.556984,1.204934E-10,5.177881,1.208717E-10,-7.865032,8.657635,-7.414111,5.442562,-9.298544,8.657635,-8.847623,5.442562,-2.377486,7.701302,-1.833858,4.5006,-3.14368,7.701302,-2.600052,4.5006,4.796149,3.149606,6.403772,3.149606,4.796149,1.200658E-10,6.403772,1.204501E-10,-0.002167427,3.149606,19.68504,3.149606,-0.002167427,1.0215E-10,19.68504,1.037534E-10,-17.72142,-19.68504,-19.691,-19.68504,-17.733,-19.52079,-17.7852,-19.20266,-17.87335,-18.86126,-18.00447,-18.4898,-18.18643,-18.08442,-18.42689,-17.64404,-18.73264,-17.16989,-19.10916,-16.66487,-19.56056,-16.13295,-20.08954,-15.57867,-19.70382,-19.6069,-19.74868,-19.43318,-19.8246,-19.21811,-19.94218,-18.95616,-20.11182,-18.64548,-20.69765,-15.00673,-20.34276,-18.28733,-20.6426,-17.88517,-21.01704,-17.44393,-21.39558,-14.41307,-21.47004,-16.96927,-22.38861,-13.63737,-22.004,-16.46706,-22.63357,-15.93156,-23.51823,-12.66003,-23.63309,-15.15077,-24.57743,-11.63772,-24.84016,-14.10644,-25.4642,-10.67418,-25.97944,-13.00683,-25.56249,-10.56738,-26.46859,-9.445935,-26.90548,-12.00062,-27.28952,-8.270761,-27.04646,-11.84744,-28.03518,-10.62375,-28.01748,-7.040269,-28.64314,-5.754712,-28.93767,-9.331808,-29.15603,-4.417074,-29.18097,-8.920561,-29.54532,-3.033844,-29.74387,-7.969063,-29.8012,-1.615385,-30.44162,-6.535397,-29.89347,-0.4610863,-29.92126,-0.06983117,-29.92126,19.68504,-31.88976,19.68504,-31.01716,-5.03433,-31.45629,-3.47405,-31.74603,-1.8679,-31.84669,-0.6085226,-31.88976,-0.002167427,-16.23658,3.149606,-16.1574,3.149606,-16.23658,7.488208E-11,-16.1574,7.613752E-11,-31.88976,-4.159947E-11,-31.88976,3.149606,-29.92126,5.585368E-11,-30.70866,3.149606,-5.163115,9.782156,-4.881218,6.547878,-6.595708,9.782156,-6.313812,6.547878,7.345693,3.149606,8.921638,3.149606,7.345693,1.11191E-10,8.921638,1.114975E-10,17.72142,-3.781178E-12,18.50882,3.149606,19.691,8.860887E-13,19.691,3.149606,-1.714097,10.46886,-1.658303,7.222798,-2.106339,10.46886,-2.050544,7.222798,9.173127,8.566685,9.495568,5.336197,8.728786,8.566685,9.051228,5.336197,-0.1675463,7.953444,0.3419318,4.74713,-0.8651801,7.953444,-0.355702,4.74713,-6.042792,3.971919,-6.959052,3.971919,-6.64257,7.162575,-7.55883,7.162575,18.33501,7.85841,18.39037,4.612342,18.17035,7.85841,18.22572,4.612342,16.26406,8.192513,16.39157,4.948477,15.94167,8.192513,16.06918,4.948477,19.68504,2.193213E-13,17.71654,2.193213E-13,19.68504,3.149606,18.50394,3.149606,-8.008414,4.029524,-9.502151,4.029524,-8.603881,7.220988,-10.09762,7.220988,-19.68504,-19.68504,-19.68504,19.68504,-18.50394,-19.68504,-18.50394,19.68504 + } + UVIndex: *696 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,13,16,12,17,12,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,44,42,46,47,46,42,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,95,94,97,96,94,98,97,94,99,98,94,100,99,94,101,100,94,102,101,94,103,101,102,104,101,103,105,101,104,106,101,105,107,106,105,108,106,107,109,106,108,110,106,109,111,110,109,112,110,111,113,112,111,114,112,113,115,112,114,116,115,114,117,115,116,118,117,116,119,117,118,120,119,118,121,119,120,122,121,120,123,121,122,124,123,122,125,123,124,126,125,124,127,126,124,128,126,127,129,126,128,130,129,128,131,129,130,132,131,130,133,132,130,134,132,133,135,132,134,136,135,134,137,135,136,138,137,136,139,138,136,140,138,139,141,140,139,142,141,139,143,142,139,144,143,139,145,143,144,146,143,145,147,143,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,185,187,188,189,188,187,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,243,245,247,243,246,248,243,247,249,243,248,250,243,249,251,243,250,252,243,251,253,243,252,254,243,253,255,254,253,256,255,253,257,256,253,258,257,253,259,258,253,260,258,259,261,260,259,262,261,259,263,262,259,264,262,263,265,264,263,266,264,265,267,266,265,268,267,265,269,267,268,270,269,268,271,269,270,272,271,270,273,271,272,274,273,272,275,273,274,276,273,275,277,276,275,278,276,277,279,278,277,280,279,277,281,279,280,282,279,281,283,282,281,284,282,283,285,284,283,286,284,285,287,286,285,288,286,287,289,288,287,290,288,289,291,288,290,292,288,291,293,288,292,294,293,292,295,294,292,296,295,292,297,296,292,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *232 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_sideEntryBarrier, Model::RootNode + C: "OO",4819685508995530907,0 + + ;Geometry::, Model::Mesh road_sideEntryBarrier + C: "OO",5648069602112496377,4819685508995530907 + + ;Material::pavement, Model::Mesh road_sideEntryBarrier + C: "OO",17046,4819685508995530907 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntryBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntryBarrier.fbx.import new file mode 100644 index 0000000..bb454fc --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntryBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bxa14pol42dxk" +path="res://.godot/imported/road_sideEntryBarrier.fbx-91176283a26881e36208848e2605fe6b.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_sideEntryBarrier.fbx" +dest_files=["res://.godot/imported/road_sideEntryBarrier.fbx-91176283a26881e36208848e2605fe6b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExit.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExit.fbx new file mode 100644 index 0000000..83b22b9 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExit.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 21 + Millisecond: 853 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_sideExit.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_sideExit.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5480273402733327822, "Model::road_sideExit", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4684175392580853533, "Geometry::", "Mesh" { + Vertices: *1191 { + a: -4.075912,0.09999999,-4.347082,-4.075912,0.2,-4.347082,-3.921377,0.09999999,-4.462298,-3.921377,0.2,-4.462298,-4.980154,6.083514E-13,-5.004771,-4.936028,6.474079E-13,-5.016164,-4.980154,0.2,-5.004771,-4.936028,0.2,-5.016164,-0.8824086,1.838759E-12,-7.989898,-0.4744465,1.932636E-12,-8.06349,-0.8824086,0.2,-7.989898,-0.4744465,0.2,-8.06349,-4.225956,0.09999999,-4.25033,-4.225956,0.2,-4.25033,-4.075912,0.09999999,-4.347082,-4.075912,0.2,-4.347082,-3.077573,0.2,-5.369034,-3.077573,0.09999999,-5.369034,-3.273308,0.2,-5.118464,-3.273308,0.09999999,-5.118464,-1.829927,0.09999999,-6.510825,-1.829927,0.2,-6.510825,-1.551142,0.09999999,-6.675756,-1.551142,0.2,-6.675756,-0.0005505264,-4.089515E-13,-8.099999,5,-1.69198E-15,-8.099999,-0.0005505264,0.2,-8.099999,5,0.2,-8.099999,-4.510497,0.09999999,-4.108526,-4.510497,0.2,-4.108526,-4.370921,0.09999999,-4.171176,-4.370921,0.2,-4.171176,-2.846432,0.2,-5.636192,-2.846432,0.09999999,-5.636192,-3.077573,0.2,-5.369034,-3.077573,0.09999999,-5.369034,-1.659991,1.645027E-12,-7.732172,-1.27872,1.742626E-12,-7.87836,-1.659991,0.2,-7.732172,-1.27872,0.2,-7.87836,-5,0.09999999,-4,-5,0.2,-4,-4.900097,0.09999999,-4.007041,-4.900097,0.2,-4.007041,-0.3458502,0.09999999,-7.073063,-0.3458502,0.2,-7.073063,-0.07948086,0.09999999,-7.094354,-0.07948086,0.2,-7.094354,0,0.09999999,-7.1,-2.454499E-13,0.2,-7.1,5,0.09999999,-7.1,5,0.2,-7.1,5,0.2,4,5,0.2,5,-5,0.2,4,-5,0.2,5,-4.182634,0.2,-5.589016,-4.310194,0.2,-5.453391,-4.182634,9.08283E-13,-5.589016,-4.310194,8.803653E-13,-5.453391,-4.046616,0.2,-5.748928,-4.182634,0.2,-5.589016,-4.046616,9.48383E-13,-5.748928,-4.182634,9.08283E-13,-5.589016,5,-6.76792E-16,5,5,-1.69198E-15,-8.099999,-5,-6.76792E-16,5,-0.0005505264,-4.089515E-13,-8.099999,-0.1545647,2.118613E-12,-8.089059,-0.4744465,1.932636E-12,-8.06349,-0.8824086,1.838759E-12,-7.989898,-1.27872,1.742626E-12,-7.87836,-1.659991,1.645027E-12,-7.732172,-2.024142,1.546611E-12,-7.554944,-2.265822,1.482597E-12,-7.411965,-2.370279,1.445515E-12,-7.350168,-2.698431,1.367712E-12,-7.120934,-3.009249,1.27E-12,-6.8698,-3.048157,1.272848E-12,-6.833992,-3.303735,1.172711E-12,-6.598778,-3.583035,1.098941E-12,-6.309401,-3.848297,1.005995E-12,-6.002805,-4.046616,9.48383E-13,-5.748928,-4.182634,9.08283E-13,-5.589016,-4.310194,8.803653E-13,-5.453391,-4.430759,8.445236E-13,-5.338328,-4.542833,8.179313E-13,-5.243219,-4.644981,7.829919E-13,-5.167062,-4.735952,7.444994E-13,-5.108401,-4.814864,6.877898E-13,-5.065313,-4.881401,-9.328168E-13,-5.035448,-4.936028,6.474079E-13,-5.016164,-4.980154,6.083514E-13,-5.004771,-5,2.894413E-13,-5.001514,-4.814864,6.877898E-13,-5.065313,-4.735952,7.444994E-13,-5.108401,-4.814864,0.2,-5.065313,-4.735952,0.2,-5.108401,-2.606498,0.2,-5.884783,-2.606498,0.09999999,-5.884783,-2.846432,0.2,-5.636192,-2.846432,0.09999999,-5.636192,-4.774285,0.09999999,-4.027687,-4.774285,0.2,-4.027687,-4.644768,0.09999999,-4.061127,-4.644768,0.2,-4.061127,-4.644768,0.09999999,-4.061127,-4.644768,0.2,-4.061127,-4.510497,0.09999999,-4.108526,-4.510497,0.2,-4.108526,-3.921377,0.09999999,-4.462298,-3.921377,0.2,-4.462298,-3.763123,0.09999999,-4.596595,-3.763123,0.2,-4.596595,-2.098616,0.09999999,-6.323131,-2.098616,0.2,-6.323131,-1.829927,0.09999999,-6.510825,-1.829927,0.2,-6.510825,-2.024142,1.546611E-12,-7.554944,-1.659991,1.645027E-12,-7.732172,-2.024142,0.2,-7.554944,-1.659991,0.2,-7.732172,-4.542833,8.179313E-13,-5.243219,-4.430759,8.445236E-13,-5.338328,-4.542833,0.2,-5.243219,-4.430759,0.2,-5.338328,-4.430759,8.445236E-13,-5.338328,-4.310194,8.803653E-13,-5.453391,-4.430759,0.2,-5.338328,-4.310194,0.2,-5.453391,-2.098616,0.09999999,-6.323131,-2.357362,0.09999999,-6.114069,-2.098616,0.2,-6.323131,-2.357362,0.2,-6.114069,-4.900097,0.09999999,-4.007041,-4.900097,0.2,-4.007041,-4.774285,0.09999999,-4.027687,-4.774285,0.2,-4.027687,-4.370921,0.09999999,-4.171176,-4.370921,0.2,-4.171176,-4.225956,0.09999999,-4.25033,-4.225956,0.2,-4.25033,-0.4744465,1.932636E-12,-8.06349,-0.1545647,2.118613E-12,-8.089059,-0.4744465,0.2,-8.06349,-0.1545647,0.2,-8.089059,-3.438938,0.2,-4.923738,-3.438938,0.09999999,-4.923738,-3.602013,0.2,-4.750353,-3.602013,0.09999999,-4.750353,-4.735952,7.444994E-13,-5.108401,-4.644981,7.829919E-13,-5.167062,-4.735952,0.2,-5.108401,-4.644981,0.2,-5.167062,-1.262417,0.09999999,-6.816274,-1.262417,0.2,-6.816274,-0.9643739,0.09999999,-6.930551,-0.9643739,0.2,-6.930551,-1.551142,0.09999999,-6.675756,-1.551142,0.2,-6.675756,-1.262417,0.09999999,-6.816274,-1.262417,0.2,-6.816274,0,0.09999999,-7.1,-0.07948086,0.09999999,-7.094354,-2.454499E-13,0.2,-7.1,-0.07948086,0.2,-7.094354,-0.6582282,0.09999999,-7.016712,-0.6582282,0.2,-7.016712,-0.3458502,0.09999999,-7.073063,-0.3458502,0.2,-7.073063,-3.273308,0.2,-5.118464,-3.273308,0.09999999,-5.118464,-3.438938,0.2,-4.923738,-3.438938,0.09999999,-4.923738,-1.27872,1.742626E-12,-7.87836,-0.8824086,1.838759E-12,-7.989898,-1.27872,0.2,-7.87836,-0.8824086,0.2,-7.989898,-3.009249,1.27E-12,-6.8698,-2.698431,1.367712E-12,-7.120934,-3.009249,0.2,-6.8698,-2.698431,0.2,-7.120934,-4.881401,-9.328168E-13,-5.035448,-4.814864,6.877898E-13,-5.065313,-4.881401,0.2,-5.035448,-4.814864,0.2,-5.065313,-0.0005505264,-4.089515E-13,-8.099999,-0.0005505264,0.2,-8.099999,-0.1545647,2.118613E-12,-8.089059,-0.1545647,0.2,-8.089059,-5,2.894413E-13,-5.001514,-4.980154,6.083514E-13,-5.004771,-5,0.2,-5.001514,-4.980154,0.2,-5.004771,-0.9643739,0.09999999,-6.930551,-0.9643739,0.2,-6.930551,-0.6582282,0.09999999,-7.016712,-0.6582282,0.2,-7.016712,-4.644981,7.829919E-13,-5.167062,-4.542833,8.179313E-13,-5.243219,-4.644981,0.2,-5.167062,-4.542833,0.2,-5.243219,-3.763123,0.09999999,-4.596595,-3.763123,0.2,-4.596595,-3.602013,0.09999999,-4.750353,-3.602013,0.2,-4.750353,-4.881401,-9.328168E-13,-5.035448,-4.881401,0.2,-5.035448,-4.936028,6.474079E-13,-5.016164,-4.936028,0.2,-5.016164,-2.357362,0.09999999,-6.114069,-2.372648,0.09999999,-6.1,-2.357362,0.2,-6.114069,-2.606498,0.2,-5.884783,-2.372648,0.2,-6.1,-2.606498,0.09999999,-5.884783,-3.583035,0.2,-6.309401,-3.848297,0.2,-6.002805,-3.583035,1.098941E-12,-6.309401,-3.848297,1.005995E-12,-6.002805,-2.698431,1.367712E-12,-7.120934,-2.370279,1.445515E-12,-7.350168,-2.698431,0.2,-7.120934,-2.370279,0.2,-7.350168,-3.303735,0.2,-6.598778,-3.583035,0.2,-6.309401,-3.303735,1.172711E-12,-6.598778,-3.583035,1.098941E-12,-6.309401,5,-6.76792E-16,5,-5,-6.76792E-16,5,5,0.2,5,-5,0.2,5,5,0.2,-8.099999,5,0.2,-7.1,-0.0005505264,0.2,-8.099999,-2.454499E-13,0.2,-7.1,-0.07948086,0.2,-7.094354,-0.1545647,0.2,-8.089059,-0.3458502,0.2,-7.073063,-0.4744465,0.2,-8.06349,-0.6582282,0.2,-7.016712,-0.8824086,0.2,-7.989898,-0.9643739,0.2,-6.930551,-1.27872,0.2,-7.87836,-1.262417,0.2,-6.816274,-1.551142,0.2,-6.675756,-1.659991,0.2,-7.732172,-1.829927,0.2,-6.510825,-2.024142,0.2,-7.554944,-2.098616,0.2,-6.323131,-2.265822,0.2,-7.411965,-2.357362,0.2,-6.114069,-2.370279,0.2,-7.350168,-2.372648,0.2,-6.1,-2.698431,0.2,-7.120934,-2.606498,0.2,-5.884783,-2.846432,0.2,-5.636192,-3.009249,0.2,-6.8698,-3.077573,0.2,-5.369034,-3.048157,0.2,-6.833992,-3.303735,0.2,-6.598778,-3.273308,0.2,-5.118464,-3.438938,0.2,-4.923738,-3.583035,0.2,-6.309401,-3.602013,0.2,-4.750353,-3.848297,0.2,-6.002805,-3.763123,0.2,-4.596595,-3.921377,0.2,-4.462298,-4.046616,0.2,-5.748928,-4.075912,0.2,-4.347082,-4.182634,0.2,-5.589016,-4.225956,0.2,-4.25033,-4.310194,0.2,-5.453391,-4.370921,0.2,-4.171176,-4.430759,0.2,-5.338328,-4.510497,0.2,-4.108526,-4.542833,0.2,-5.243219,-4.644768,0.2,-4.061127,-4.644981,0.2,-5.167062,-4.774285,0.2,-4.027687,-4.735952,0.2,-5.108401,-4.814864,0.2,-5.065313,-4.900097,0.2,-4.007041,-4.881401,0.2,-5.035448,-4.936028,0.2,-5.016164,-5,0.2,-4,-4.980154,0.2,-5.004771,-5,0.2,-5.001514,-2.370279,1.445515E-12,-7.350168,-2.265822,1.482597E-12,-7.411965,-2.370279,0.2,-7.350168,-2.024142,1.546611E-12,-7.554944,-2.024142,0.2,-7.554944,-2.265822,0.2,-7.411965,-3.303735,1.172711E-12,-6.598778,-3.048157,1.272848E-12,-6.833992,-3.303735,0.2,-6.598778,-3.009249,0.2,-6.8698,-3.009249,1.27E-12,-6.8698,-3.048157,0.2,-6.833992,-3.848297,0.2,-6.002805,-4.046616,0.2,-5.748928,-3.848297,1.005995E-12,-6.002805,-4.046616,9.48383E-13,-5.748928,-5,0.09999999,4,5,0.09999999,4,-5,0.2,4,5,0.2,4,5,0.2,4,5,0.09999999,4,5,0.2,5,5,-6.76792E-16,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-6.1,5,0.09999999,-7.1,5,-1.69198E-15,-8.099999,5,0.2,-7.1,5,0.2,-8.099999,-5,0.2,-5.001514,-5,0.2,-4,-5,2.894413E-13,-5.001514,-5,0.09999999,-4,-5,-6.76792E-16,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,5,0.09999999,-0.09999999,-5,0.09999999,-0.09999999,5,0.09999999,-6.1,0,0.09999999,-6.1,-0.2172538,0.09999999,-6.082634,-0.4340478,0.09999999,-6.043527,-0.650028,0.09999999,-5.982741,-0.8648425,0.09999999,-5.900376,-1.078141,0.09999999,-5.796567,-1.25,0.09999999,-5.694895,-1.289575,0.09999999,-5.671482,-1.4988,0.09999999,-5.525326,-1.705474,0.09999999,-5.358337,-1.909261,0.09999999,-5.170788,-2.109828,0.09999999,-4.962984,-2.306848,0.09999999,-4.735264,-2.5,0.09999999,-4.488,-2.695243,0.09999999,-4.258461,-2.893833,0.09999999,-4.047316,-3.095487,0.09999999,-3.854863,-3.299921,0.09999999,-3.681377,-3.506843,0.09999999,-3.527103,-3.715961,0.09999999,-3.39226,-3.75,0.09999999,-3.373673,-3.926977,0.09999999,-3.277039,-4.09861,0.09999999,-3.2,-4.139594,0.09999999,-3.181604,-4.353508,0.09999999,-3.10609,-4.568418,0.09999999,-3.050603,-4.784017,0.09999999,-3.015223,-5,0.09999999,-3,5,0.09999999,0.09999999,5,0.09999999,3,-5,0.09999999,0.09999999,-5,0.09999999,3,5,0.09999999,-7.1,0,0.09999999,-7.1,-0.07948086,0.09999999,-7.094354,-0.3458502,0.09999999,-7.073063,-0.6582282,0.09999999,-7.016712,-0.9643739,0.09999999,-6.930551,-1.262417,0.09999999,-6.816274,-1.551142,0.09999999,-6.675756,-1.829927,0.09999999,-6.510825,-2.098616,0.09999999,-6.323131,-2.357362,0.09999999,-6.114069,-2.372648,0.09999999,-6.1,-2.606498,0.09999999,-5.884783,-2.846432,0.09999999,-5.636192,-3.077573,0.09999999,-5.369034,-3.273308,0.09999999,-5.118464,-3.438938,0.09999999,-4.923738,-3.602013,0.09999999,-4.750353,-3.763123,0.09999999,-4.596595,-3.921377,0.09999999,-4.462298,-4.075912,0.09999999,-4.347082,-4.225956,0.09999999,-4.25033,-4.370921,0.09999999,-4.171176,-4.510497,0.09999999,-4.108526,-4.644768,0.09999999,-4.061127,-4.774285,0.09999999,-4.027687,-4.900097,0.09999999,-4.007041,-5,0.09999999,-4,5,0.09999999,4,-5,0.09999999,4 + } + PolygonVertexIndex: *918 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,68,-67,70,69,-67,71,70,-67,72,71,-67,73,72,-67,74,73,-67,75,74,-67,76,75,-67,77,76,-67,78,77,-67,79,78,-67,80,79,-67,81,80,-67,82,81,-67,83,82,-67,84,83,-67,85,84,-67,86,85,-67,87,86,-67,88,87,-67,89,88,-67,90,89,-67,91,90,-67,92,91,-67,93,92,-67,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,213,-213,211,213,-216,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,235,-235,237,236,-235,238,236,-238,239,238,-238,240,238,-240,241,240,-240,242,240,-242,243,242,-242,244,242,-244,245,244,-244,246,245,-244,247,245,-247,248,247,-247,249,247,-249,250,249,-249,251,249,-251,252,251,-251,253,251,-253,254,253,-253,255,253,-255,256,255,-255,257,256,-255,258,256,-258,259,258,-258,260,258,-260,261,258,-261,262,261,-261,263,262,-261,264,262,-264,265,264,-264,266,264,-266,267,266,-266,268,267,-266,269,267,-269,270,269,-269,271,269,-271,272,271,-271,273,271,-273,274,273,-273,275,273,-275,276,275,-275,277,275,-277,278,277,-277,279,277,-279,280,279,-279,281,279,-281,282,279,-282,283,282,-282,284,282,-284,285,282,-285,286,285,-285,287,285,-287,288,290,-290,291,289,-291,292,291,-291,293,292,-291,294,296,-296,296,297,-296,298,295,-298,299,297,-297,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,310,311,-310,309,311,-313,312,311,-314,313,311,-315,314,311,-316,315,311,-317,311,317,-317,316,317,-319,319,318,-318,320,322,-322,323,321,-323,324,323,-323,325,323,-325,326,325,-325,327,326,-325,328,327,-325,329,328,-325,330,329,-325,331,330,-325,332,334,-334,335,333,-335,336,333,-336,337,333,-337,338,333,-338,339,333,-339,340,333,-340,341,333,-341,342,333,-342,343,333,-343,344,333,-344,345,333,-345,346,333,-346,347,333,-347,348,333,-348,349,333,-349,350,333,-350,351,333,-351,352,333,-352,353,333,-353,354,333,-354,355,333,-355,356,333,-356,357,333,-357,358,333,-358,359,333,-359,360,333,-360,361,333,-361,362,333,-362,363,365,-365,366,364,-366,367,368,-335,335,334,-369,369,335,-369,336,335,-370,370,336,-370,337,336,-371,371,337,-371,338,337,-372,339,338,-372,372,339,-372,340,339,-373,373,340,-373,341,340,-374,342,341,-374,374,342,-374,343,342,-375,344,343,-375,375,344,-375,345,344,-376,376,345,-376,346,345,-377,377,346,-377,347,346,-378,348,347,-378,378,348,-378,379,348,-379,349,348,-380,380,349,-380,350,349,-381,381,350,-381,351,350,-382,382,351,-382,352,351,-383,383,352,-383,353,352,-384,384,353,-384,354,353,-385,385,354,-385,355,354,-386,356,355,-386,386,356,-386,387,356,-387,357,356,-388,388,357,-388,358,357,-389,359,358,-389,389,359,-389,360,359,-390,390,360,-390,391,360,-391,361,360,-392,392,361,-392,393,361,-393,362,361,-394,394,362,-394,364,366,-396,396,395,-367,332,333,-364,365,363,-334 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2754 { + a: 0.5701517,0,0.8215395,0.6226888,0,0.7824696,0.5701517,0,0.8215395,0.6226888,0,0.7824696,0.5701517,0,0.8215395,0.6226888,0,0.7824696,-0.20617,0,-0.9785162,-0.20617,0,-0.9785162,-0.2917081,0,-0.9565074,-0.2917081,0,-0.9565074,-0.2917081,0,-0.9565074,-0.20617,0,-0.9785162,-0.2244784,0,-0.974479,-0.2244784,0,-0.974479,-0.1287584,0,-0.991676,-0.1287584,0,-0.991676,-0.1287584,0,-0.991676,-0.2244784,0,-0.974479,0.5109214,0,0.8596274,0.5701517,0,0.8215395,0.5109214,0,0.8596274,0.5701517,0,0.8215395,0.5109214,0,0.8596274,0.5701517,0,0.8215395,0.7723939,0,0.6351438,0.7750577,0,0.6318905,0.7723939,0,0.6351438,0.7750577,0,0.6318905,0.7723939,0,0.6351438,0.7750577,0,0.6318905,0.5413064,0,0.8408254,0.4737825,0,0.8806419,0.5413064,0,0.8408254,0.4737825,0,0.8806419,0.5413064,0,0.8408254,0.4737825,0,0.8806419,-0.03545193,0,-0.9993715,-0.03545193,0,-0.9993715,0,0,-1,0,0,-1,0,0,-1,-0.03545193,0,-0.9993715,0.371507,0,0.9284302,0.4447075,0,0.8956758,0.371507,0,0.9284302,0.4447075,0,0.8956758,0.371507,0,0.9284302,0.4447075,0,0.8956758,0.7381572,0,0.6746288,0.7723939,0,0.6351438,0.7381572,0,0.6746288,0.7723939,0,0.6351438,0.7381572,0,0.6746288,0.7723939,0,0.6351438,-0.3981851,0,-0.9173051,-0.3981851,0,-0.9173051,-0.3147939,0,-0.94916,-0.3147939,0,-0.94916,-0.3147939,0,-0.94916,-0.3981851,0,-0.9173051,0.070308,0,0.9975253,0.1162449,0,0.9932206,0.070308,0,0.9975253,0.1162449,0,0.9932206,0.070308,0,0.9975253,0.1162449,0,0.9932206,0.1287584,0,0.991676,0.0752694,0,0.9971632,0.1287584,0,0.991676,0.0752694,0,0.9971632,0.1287584,0,0.991676,0.0752694,0,0.9971632,0.03545193,0,0.9993715,0,0,1,0.03545193,0,0.9993715,0,0,1,0.03545193,0,0.9993715,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7453079,0,-0.6667204,-0.7453079,0,-0.6667204,-0.7096789,0,-0.7045254,-0.7096789,0,-0.7045254,-0.7096789,0,-0.7045254,-0.7453079,0,-0.6667204,-0.7750577,0,-0.6318905,-0.7750577,0,-0.6318905,-0.7453079,0,-0.6667204,-0.7453079,0,-0.6667204,-0.7453079,0,-0.6667204,-0.7750577,0,-0.6318905,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4447075,0,-0.8956758,-0.4447075,0,-0.8956758,-0.5109214,0,-0.8596274,-0.5109214,0,-0.8596274,-0.5109214,0,-0.8596274,-0.4447075,0,-0.8956758,0.6986606,0,0.7154533,0.7381572,0,0.6746288,0.6986606,0,0.7154533,0.7381572,0,0.6746288,0.6986606,0,0.7154533,0.7381572,0,0.6746288,0.20617,0,0.9785162,0.2917081,0,0.9565074,0.20617,0,0.9785162,0.2917081,0,0.9565074,0.20617,0,0.9785162,0.2917081,0,0.9565074,0.2917081,0,0.9565074,0.371507,0,0.9284302,0.2917081,0,0.9565074,0.371507,0,0.9284302,0.2917081,0,0.9565074,0.371507,0,0.9284302,0.6226888,0,0.7824696,0.6690073,0,0.7432558,0.6226888,0,0.7824696,0.6690073,0,0.7432558,0.6226888,0,0.7824696,0.6690073,0,0.7432558,0.6009374,0,0.799296,0.5413064,0,0.8408254,0.6009374,0,0.799296,0.5413064,0,0.8408254,0.6009374,0,0.799296,0.5413064,0,0.8408254,-0.4737825,0,-0.8806419,-0.4737825,0,-0.8806419,-0.3981851,0,-0.9173051,-0.3981851,0,-0.9173051,-0.3981851,0,-0.9173051,-0.4737825,0,-0.8806419,-0.6226888,0,-0.7824696,-0.6226888,0,-0.7824696,-0.6690073,0,-0.7432558,-0.6690073,0,-0.7432558,-0.6690073,0,-0.7432558,-0.6226888,0,-0.7824696,-0.6690073,0,-0.7432558,-0.6690073,0,-0.7432558,-0.7096789,0,-0.7045254,-0.7096789,0,-0.7045254,-0.7096789,0,-0.7045254,-0.6690073,0,-0.7432558,0.6009374,0,0.799296,0.6009374,0,0.799296,0.6531666,0,0.7572142,0.6531666,0,0.7572142,0.6531666,0,0.7572142,0.6009374,0,0.799296,0.1162449,0,0.9932206,0.20617,0,0.9785162,0.1162449,0,0.9932206,0.20617,0,0.9785162,0.1162449,0,0.9932206,0.20617,0,0.9785162,0.4447075,0,0.8956758,0.5109214,0,0.8596274,0.4447075,0,0.8956758,0.5109214,0,0.8596274,0.4447075,0,0.8956758,0.5109214,0,0.8596274,-0.1287584,0,-0.991676,-0.1287584,0,-0.991676,-0.0752694,0,-0.9971632,-0.0752694,0,-0.9971632,-0.0752694,0,-0.9971632,-0.1287584,0,-0.991676,0.7453079,0,0.6667204,0.7096789,0,0.7045254,0.7453079,0,0.6667204,0.7096789,0,0.7045254,0.7453079,0,0.6667204,0.7096789,0,0.7045254,-0.5109214,0,-0.8596274,-0.5109214,0,-0.8596274,-0.5701517,0,-0.8215395,-0.5701517,0,-0.8215395,-0.5701517,0,-0.8215395,-0.5109214,0,-0.8596274,0.3981851,0,0.9173051,0.3147939,0,0.94916,0.3981851,0,0.9173051,0.3147939,0,0.94916,0.3981851,0,0.9173051,0.3147939,0,0.94916,0.4737825,0,0.8806419,0.3981851,0,0.9173051,0.4737825,0,0.8806419,0.3981851,0,0.9173051,0.4737825,0,0.8806419,0.3981851,0,0.9173051,0.03545193,0,0.9993715,0.03545193,0,0.9993715,0.0752694,0,0.9971632,0.0752694,0,0.9971632,0.0752694,0,0.9971632,0.03545193,0,0.9993715,0.2244784,0,0.974479,0.1287584,0,0.991676,0.2244784,0,0.974479,0.1287584,0,0.991676,0.2244784,0,0.974479,0.1287584,0,0.991676,0.7750577,0,0.6318905,0.7453079,0,0.6667204,0.7750577,0,0.6318905,0.7453079,0,0.6667204,0.7750577,0,0.6318905,0.7453079,0,0.6667204,-0.3147939,0,-0.94916,-0.3147939,0,-0.94916,-0.2244784,0,-0.974479,-0.2244784,0,-0.974479,-0.2244784,0,-0.974479,-0.3147939,0,-0.94916,-0.6531666,0,-0.7572142,-0.6531666,0,-0.7572142,-0.6009374,0,-0.799296,-0.6009374,0,-0.799296,-0.6009374,0,-0.799296,-0.6531666,0,-0.7572142,-0.371507,0,-0.9284302,-0.371507,0,-0.9284302,-0.4447075,0,-0.8956758,-0.4447075,0,-0.8956758,-0.4447075,0,-0.8956758,-0.371507,0,-0.9284302,-0.03545193,0,-0.9993715,-0.0752694,0,-0.9971632,-0.03545193,0,-0.9993715,-0.0752694,0,-0.9971632,-0.03545193,0,-0.9993715,-0.0752694,0,-0.9971632,-0.1619343,0,-0.9868015,-0.1619343,0,-0.9868015,-0.20617,0,-0.9785162,-0.20617,0,-0.9785162,-0.20617,0,-0.9785162,-0.1619343,0,-0.9868015,0.3147939,0,0.94916,0.2244784,0,0.974479,0.3147939,0,0.94916,0.2244784,0,0.974479,0.3147939,0,0.94916,0.2244784,0,0.974479,-0.5701517,0,-0.8215395,-0.5701517,0,-0.8215395,-0.6226888,0,-0.7824696,-0.6226888,0,-0.7824696,-0.6226888,0,-0.7824696,-0.5701517,0,-0.8215395,0.6690073,0,0.7432558,0.7096789,0,0.7045254,0.6690073,0,0.7432558,0.7096789,0,0.7045254,0.6690073,0,0.7432558,0.7096789,0,0.7045254,-0.371507,0,-0.9284302,-0.2917081,0,-0.9565074,-0.371507,0,-0.9284302,-0.2917081,0,-0.9565074,-0.371507,0,-0.9284302,-0.2917081,0,-0.9565074,0.6531666,0,0.7572142,0.6531666,0,0.7572142,0.6771845,0,0.7358133,0.6986606,0,0.7154533,0.6771845,0,0.7358133,0.6531666,0,0.7572142,0.6771845,0,0.7358133,0.6986606,0,0.7154533,0.6531666,0,0.7572142,0.6771845,0,0.7358133,0.6986606,0,0.7154533,0.6986606,0,0.7154533,-0.7381572,0,-0.6746288,-0.7381572,0,-0.6746288,-0.7723939,0,-0.6351438,-0.7723939,0,-0.6351438,-0.7723939,0,-0.6351438,-0.7381572,0,-0.6746288,-0.6009374,0,-0.799296,-0.6009374,0,-0.799296,-0.5413064,0,-0.8408254,-0.5413064,0,-0.8408254,-0.5413064,0,-0.8408254,-0.6009374,0,-0.799296,-0.6986606,0,-0.7154533,-0.6986606,0,-0.7154533,-0.7381572,0,-0.6746288,-0.7381572,0,-0.6746288,-0.7381572,0,-0.6746288,-0.6986606,0,-0.7154533,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.5413064,0,-0.8408254,-0.5413064,0,-0.8408254,-0.5091712,0,-0.8606653,-0.4737825,0,-0.8806419,-0.5091712,0,-0.8606653,-0.5413064,0,-0.8408254,-0.4737825,0,-0.8806419,-0.4737825,0,-0.8806419,-0.5413064,0,-0.8408254,-0.5091712,0,-0.8606653,-0.4737825,0,-0.8806419,-0.5413064,0,-0.8408254,-0.6986606,0,-0.7154533,-0.6986606,0,-0.7154533,-0.6771845,0,-0.7358133,-0.6986606,0,-0.7154533,-0.6531666,0,-0.7572142,-0.6771845,0,-0.7358133,-0.6531666,0,-0.7572142,-0.6771845,0,-0.7358133,-0.6531666,0,-0.7572142,-0.6771845,0,-0.7358133,-0.6531666,0,-0.7572142,-0.6986606,0,-0.7154533,-0.7723939,0,-0.6351438,-0.7723939,0,-0.6351438,-0.7750577,0,-0.6318905,-0.7750577,0,-0.6318905,-0.7750577,0,-0.6318905,-0.7723939,0,-0.6351438,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *794 { + a: -2.635141,0.3937008,-2.635141,0.7874016,-1.876252,0.3937008,-1.876252,0.7874016,14.05864,-1.096317E-11,13.87922,-1.080941E-11,14.05864,0.7874016,13.87922,0.7874016,-2.165414,-1.018765E-11,-3.797487,-9.818054E-12,-2.165414,0.7874016,-3.797487,0.7874016,-4.914395,0.3937008,-4.914395,0.7874016,-4.211505,0.3937008,-4.211505,0.7874016,9.199119,0.7874016,9.199119,0.3937008,7.947311,0.7874016,7.947311,0.3937008,6.851066,0.3937008,6.851066,0.7874016,8.126336,0.3937008,8.126336,0.7874016,0.002167427,-1.842516E-11,-19.68504,-1.682177E-11,0.002167427,0.7874016,-19.68504,0.7874016,-9.576866,0.3937008,-9.576866,0.7874016,-8.974535,0.3937008,-8.974535,0.7874016,9.448561,0.7874016,9.448561,0.3937008,8.057736,0.7874016,8.057736,0.3937008,-4.796149,-1.07191E-11,-6.403772,-1.033486E-11,-4.796149,0.7874016,-6.403772,0.7874016,-18.52911,0.3937008,-18.52911,0.7874016,-18.13482,0.3937008,-18.13482,0.7874016,0.8614848,0.3937008,0.8614848,0.7874016,1.913528,0.3937008,1.913528,0.7874016,1.210765E-13,0.3937008,-8.452616E-13,0.7874016,19.68504,0.3937008,19.68504,0.7874016,-19.68504,15.74803,-19.68504,19.68504,19.68504,15.74803,19.68504,19.68504,-4.746579,0.7874016,-4.013556,0.7874016,-4.746579,-9.87279E-12,-4.013556,-9.982702E-12,-6.918215,0.7874016,-6.091701,0.7874016,-6.918215,-9.220657E-12,-6.091701,-9.378531E-12,19.68504,19.68504,19.68504,-31.88976,-19.68504,19.68504,-0.002167427,-31.88976,-0.6085226,-31.84669,-1.8679,-31.74603,-3.47405,-31.45629,-5.03433,-31.01716,-6.535397,-30.44162,-7.969063,-29.74387,-8.920561,-29.18097,-9.331808,-28.93767,-10.62375,-28.03518,-11.84744,-27.04646,-12.00062,-26.90548,-13.00683,-25.97944,-14.10644,-24.84016,-15.15077,-23.63309,-15.93156,-22.63357,-16.46706,-22.004,-16.96927,-21.47004,-17.44393,-21.01704,-17.88517,-20.6426,-18.28733,-20.34276,-18.64548,-20.11182,-18.95616,-19.94218,-19.21811,-19.8246,-19.43318,-19.74868,-19.6069,-19.70382,-19.68504,-19.691,7.080433,-1.196769E-11,6.726462,-1.174443E-11,7.080433,0.7874016,6.726462,0.7874016,9.543784,0.7874016,9.543784,0.3937008,8.183575,0.7874016,8.183575,0.3937008,-14.23552,0.3937008,-14.23552,0.7874016,-13.70889,0.3937008,-13.70889,0.7874016,-11.92128,0.3937008,-11.92128,0.7874016,-11.36068,0.3937008,-11.36068,0.7874016,-0.4039951,0.3937008,-0.4039951,0.7874016,0.4131599,0.3937008,0.4131599,0.7874016,7.482868,0.3937008,7.482868,0.7874016,8.77324,0.3937008,8.77324,0.7874016,-5.850762,-1.07064E-11,-7.445205,-1.031893E-11,-5.850762,0.7874016,-7.445205,0.7874016,0.2801757,-1.104837E-11,-0.2985286,-1.094368E-11,0.2801757,0.7874016,-0.2985286,0.7874016,-1.891031,-1.056932E-11,-2.547173,-1.042821E-11,-1.891031,0.7874016,-2.547173,0.7874016,9.218683,0.3937008,7.909036,0.3937008,9.218683,0.7874016,7.909036,0.7874016,-16.48247,0.3937008,-16.48247,0.7874016,-15.98052,0.3937008,-15.98052,0.7874016,-7.233441,0.3937008,-7.233441,0.7874016,-6.583179,0.3937008,-6.583179,0.7874016,-0.6675001,-9.573873E-12,-1.930894,-8.841681E-12,-0.6675001,0.7874016,-1.930894,0.7874016,4.844641,0.7874016,4.844641,0.3937008,3.907534,0.7874016,3.907534,0.3937008,4.771112,-1.176044E-11,4.344951,-1.16089E-11,4.771112,0.7874016,4.344951,0.7874016,4.966711,0.3937008,4.966711,0.7874016,6.223403,0.3937008,6.223403,0.7874016,6.010457,0.3937008,6.010457,0.7874016,7.274643,0.3937008,7.274643,0.7874016,1.980713,0.3937008,1.667007,0.3937008,1.980713,0.7874016,1.667007,0.7874016,2.353818,0.3937008,2.353818,0.7874016,3.603503,0.3937008,3.603503,0.7874016,7.000092,0.7874016,7.000092,0.3937008,5.993639,0.7874016,5.993639,0.3937008,-3.556984,-1.056009E-11,-5.177881,-1.018162E-11,-3.556984,0.7874016,-5.177881,0.7874016,-7.78265,-1.001331E-11,-9.355859,-9.628615E-12,-7.78265,0.7874016,-9.355859,0.7874016,9.414674,-1.813654E-11,9.127542,-1.17562E-11,9.414674,0.7874016,9.127542,0.7874016,-2.257524,6.287728E-11,-2.257524,0.7874016,-1.649641,7.282832E-11,-1.649641,0.7874016,16.23658,-1.131127E-11,16.1574,-1.005571E-11,16.23658,0.7874016,16.1574,0.7874016,3.737352,0.3937008,3.737352,0.7874016,4.989476,0.3937008,4.989476,0.7874016,2.501696,-1.146208E-11,2.000071,-1.132453E-11,2.501696,0.7874016,2.000071,0.7874016,1.7764,0.3937008,1.7764,0.7874016,2.653194,0.3937008,2.653194,0.7874016,11.52288,-1.770257E-11,11.52288,0.7874016,11.75095,-1.148122E-11,11.75095,0.7874016,9.471552,0.3937008,9.38976,0.3937008,9.471552,0.7874016,8.138535,0.7874016,9.38976,0.7874016,8.138535,0.3937008,-9.555474,0.7874016,-7.959337,0.7874016,-9.555474,-8.749448E-12,-7.959337,-9.115378E-12,-7.345693,-1.027729E-11,-8.921638,-9.970982E-12,-7.345693,0.7874016,-8.921638,0.7874016,-9.660042,0.7874016,-8.076661,0.7874016,-9.660042,-9.085407E-12,-8.076661,-9.375841E-12,19.68504,-2.664535E-15,-19.68504,-2.664535E-15,19.68504,0.7874016,-19.68504,0.7874016,-19.68504,-31.88976,-19.68504,-27.95275,0.002167427,-31.88976,-1.021593E-12,-27.95275,0.3129168,-27.93053,0.6085226,-31.84669,1.361615,-27.8467,1.8679,-31.74603,2.591449,-27.62485,3.47405,-31.45629,3.796748,-27.28563,5.03433,-31.01716,4.970144,-26.83572,6.106856,-26.2825,6.535397,-30.44162,7.204437,-25.63317,7.969063,-29.74387,8.262266,-24.89421,8.920561,-29.18097,9.280951,-24.07114,9.331808,-28.93767,9.341135,-24.01575,10.62375,-28.03518,10.2618,-23.16844,11.20642,-22.18973,11.84744,-27.04646,12.11643,-21.13793,12.00062,-26.90548,13.00683,-25.97944,12.88704,-20.15143,13.53913,-19.3848,14.10644,-24.84016,14.18116,-18.70218,15.15077,-23.63309,14.81545,-18.09683,15.43849,-17.5681,15.93156,-22.63357,16.0469,-17.1145,16.46706,-22.004,16.63762,-16.73359,16.96927,-21.47004,17.20835,-16.42196,17.44393,-21.01704,17.75786,-16.1753,17.88517,-20.6426,18.28649,-15.98869,18.28733,-20.34276,18.7964,-15.85704,18.64548,-20.11182,18.95616,-19.94218,19.29172,-15.77575,19.21811,-19.8246,19.43318,-19.74868,19.68504,-15.74803,19.6069,-19.70382,19.68504,-19.691,-6.702668,7.308942E-11,-7.180493,7.323541E-11,-6.702668,0.7874016,-8.286031,7.348743E-11,-8.286031,0.7874016,-7.180493,0.7874016,-8.022276,6.676366E-11,-9.38976,6.71579E-11,-8.022276,0.7874016,-9.597938,0.7874016,-9.597938,6.714669E-11,-9.38976,0.7874016,-9.297518,0.7874016,-8.029188,0.7874016,-9.297518,-8.521766E-12,-8.029188,-8.748584E-12,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,-1.047473E-11,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,24.01575,0.3937008,27.95275,0.3937008,31.88976,-1.047873E-11,27.95275,0.7874016,31.88976,0.7874016,-19.691,0.7874016,-15.74803,0.7874016,-19.691,1.495341E-11,-15.74803,0.3937008,19.68504,1.381122E-11,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-19.68504,-0.3937008,19.68504,-0.3937008,-19.68504,-24.01575,-3.049042E-12,-24.01575,0.8553301,-23.94738,1.708849,-23.79341,2.559166,-23.5541,3.404892,-23.22983,4.244648,-22.82113,4.92126,-22.42085,5.077066,-22.32867,5.900786,-21.75325,6.714465,-21.09582,7.516777,-20.35743,8.306411,-19.5393,9.08208,-18.64277,9.84252,-17.66929,10.61119,-16.76559,11.39304,-15.93431,12.18696,-15.17663,12.99181,-14.49361,13.80647,-13.88623,14.62977,-13.35536,14.76378,-13.28218,15.46054,-12.90173,16.13626,-12.59842,16.29761,-12.526,17.1398,-12.2287,17.9859,-12.01025,18.83471,-11.87096,19.68504,-11.81102,-19.68504,0.3937008,-19.68504,11.81102,19.68504,0.3937008,19.68504,11.81102,-19.68504,-27.95275,-3.049042E-12,-27.95275,0.3129168,-27.93053,1.361615,-27.8467,2.591449,-27.62485,3.796748,-27.28563,4.970144,-26.83572,6.106856,-26.2825,7.204437,-25.63317,8.262266,-24.89421,9.280951,-24.07114,9.341135,-24.01575,10.2618,-23.16844,11.20642,-22.18973,12.11643,-21.13793,12.88704,-20.15143,13.53913,-19.3848,14.18116,-18.70218,14.81545,-18.09683,15.43849,-17.5681,16.0469,-17.1145,16.63762,-16.73359,17.20835,-16.42196,17.75786,-16.1753,18.28649,-15.98869,18.7964,-15.85704,19.29172,-15.77575,19.68504,-15.74803,-19.68504,15.74803,19.68504,15.74803 + } + UVIndex: *918 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,68,66,70,69,66,71,70,66,72,71,66,73,72,66,74,73,66,75,74,66,76,75,66,77,76,66,78,77,66,79,78,66,80,79,66,81,80,66,82,81,66,83,82,66,84,83,66,85,84,66,86,85,66,87,86,66,88,87,66,89,88,66,90,89,66,91,90,66,92,91,66,93,92,66,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,213,212,211,213,215,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,235,234,237,236,234,238,236,237,239,238,237,240,238,239,241,240,239,242,240,241,243,242,241,244,242,243,245,244,243,246,245,243,247,245,246,248,247,246,249,247,248,250,249,248,251,249,250,252,251,250,253,251,252,254,253,252,255,253,254,256,255,254,257,256,254,258,256,257,259,258,257,260,258,259,261,258,260,262,261,260,263,262,260,264,262,263,265,264,263,266,264,265,267,266,265,268,267,265,269,267,268,270,269,268,271,269,270,272,271,270,273,271,272,274,273,272,275,273,274,276,275,274,277,275,276,278,277,276,279,277,278,280,279,278,281,279,280,282,279,281,283,282,281,284,282,283,285,282,284,286,285,284,287,285,286,288,290,289,291,289,290,292,291,290,293,292,290,294,296,295,296,297,295,298,295,297,299,297,296,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,310,311,309,309,311,312,312,311,313,313,311,314,314,311,315,315,311,316,311,317,316,316,317,318,319,318,317,320,322,321,323,321,322,324,323,322,325,323,324,326,325,324,327,326,324,328,327,324,329,328,324,330,329,324,331,330,324,332,334,333,335,333,334,336,333,335,337,333,336,338,333,337,339,333,338,340,333,339,341,333,340,342,333,341,343,333,342,344,333,343,345,333,344,346,333,345,347,333,346,348,333,347,349,333,348,350,333,349,351,333,350,352,333,351,353,333,352,354,333,353,355,333,354,356,333,355,357,333,356,358,333,357,359,333,358,360,333,359,361,333,360,362,333,361,363,365,364,366,364,365,367,368,334,335,334,368,369,335,368,336,335,369,370,336,369,337,336,370,371,337,370,338,337,371,339,338,371,372,339,371,340,339,372,373,340,372,341,340,373,342,341,373,374,342,373,343,342,374,344,343,374,375,344,374,345,344,375,376,345,375,346,345,376,377,346,376,347,346,377,348,347,377,378,348,377,379,348,378,349,348,379,380,349,379,350,349,380,381,350,380,351,350,381,382,351,381,352,351,382,383,352,382,353,352,383,384,353,383,354,353,384,385,354,384,355,354,385,356,355,385,386,356,385,387,356,386,357,356,387,388,357,387,358,357,388,359,358,388,389,359,388,360,359,389,390,360,389,391,360,390,361,360,391,392,361,391,393,361,392,362,361,393,394,362,393,364,366,395,396,395,366,332,333,363,365,363,333 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *306 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_sideExit, Model::RootNode + C: "OO",5480273402733327822,0 + + ;Geometry::, Model::Mesh road_sideExit + C: "OO",4684175392580853533,5480273402733327822 + + ;Material::pavement, Model::Mesh road_sideExit + C: "OO",17046,5480273402733327822 + + ;Material::asphalt, Model::Mesh road_sideExit + C: "OO",9934,5480273402733327822 + + ;Material::asphaltEdge, Model::Mesh road_sideExit + C: "OO",17042,5480273402733327822 + + ;Material::line, Model::Mesh road_sideExit + C: "OO",9174,5480273402733327822 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExit.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExit.fbx.import new file mode 100644 index 0000000..3d890dc --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExit.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bh1ga3agf2awa" +path="res://.godot/imported/road_sideExit.fbx-15b234f93d3bec7442b996af3cf9098c.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExit.fbx" +dest_files=["res://.godot/imported/road_sideExit.fbx-15b234f93d3bec7442b996af3cf9098c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExitBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExitBarrier.fbx new file mode 100644 index 0000000..d464d5c --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExitBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 22 + Millisecond: 0 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_sideExitBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_sideExitBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5199870725234638242, "Model::road_sideExitBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5301626800186022566, "Geometry::", "Mesh" { + Vertices: *1062 { + a: -8.089059,-3.183629E-12,0.1545647,-8.089059,0.8,0.1545647,-8.06349,-3.369634E-12,0.4744465,-8.06349,0.8,0.4744465,-8.06349,-3.369634E-12,0.4744465,-8.06349,0.8,0.4744465,-7.989898,-3.463483E-12,0.8824086,-7.989898,0.8,0.8824086,-7.350168,-3.856699E-12,2.370279,-7.350168,0.8,2.370279,-7.120934,-3.93453E-12,2.698431,-7.120934,0.8,2.698431,-7.120934,-3.93453E-12,2.698431,-7.120934,0.8,2.698431,-6.8698,-4.032214E-12,3.009249,-6.8698,0.8,3.009249,-6.492872,2.122391E-11,2.684114,-6.467906,1.997382E-11,2.71124,-6.692872,0.8,2.684114,-6.667907,0.8,2.71124,-6.242666,1.987794E-11,2.955981,-6.442666,0.8,2.955981,-6.931538,-6.510964E-12,2.100773,-6.723022,-6.57571E-12,2.399268,-7.131538,0.8,2.100773,-6.923022,0.8,2.399268,-5.108401,-4.557743E-12,4.735952,-5.108401,0.8,4.735952,-5.065313,-4.614481E-12,4.814864,-5.065313,0.8,4.814864,-5.257203,1.970576E-11,3.811708,-5.457203,0.8,3.811708,-5.434477,1.978928E-11,3.660921,-5.634478,0.8,3.660921,-7.6,1.944914E-11,-5,-7.6,-7.228476E-12,0.01773712,-7.8,0.8,-5,-7.8,0.8,0.01773712,-6.833992,-4.029394E-12,3.048157,-6.833992,0.8,3.048157,-6.598778,-4.129559E-12,3.303735,-6.598778,0.8,3.303735,-6.8698,0.8,3.009249,-6.8698,-4.032214E-12,3.009249,-4.53983,-7.291305E-12,4.790759,-4.517441,-7.286286E-12,4.877475,-4.73983,0.8,4.790759,-4.717441,0.8,4.877475,-4.968382,1.955444E-11,4.097769,-4.853727,1.94915E-11,4.232876,-5.168382,0.8,4.097769,-5.053727,0.8,4.232876,-5.243219,-4.48431E-12,4.542833,-5.243219,0.8,4.542833,-5.167062,-4.519278E-12,4.644981,-5.167062,0.8,4.644981,-4.50124,-6.198286E-12,5,-5.001514,-5.012772E-12,5,-4.70124,0.8,5,-5.001514,0.8,5,-5.434477,1.978928E-11,3.660921,-5.634478,0.8,3.660921,-5.686707,1.980079E-11,3.463891,-5.886707,0.8,3.463891,-5.973631,1.984568E-11,3.215647,-6.173632,0.8,3.215647,-6.242666,1.987794E-11,2.955981,-6.442666,0.8,2.955981,-4.504181,-7.263218E-12,4.958282,-4.50124,-6.198286E-12,5,-4.704181,0.8,4.958282,-4.70124,0.8,5,-5.102744,1.9633E-11,3.956982,-4.968382,1.955444E-11,4.097769,-5.302744,0.8,3.956982,-5.168382,0.8,4.097769,-4.75809,-4.814867E-12,4.361152,-4.68043,-7.217422E-12,4.481587,-4.958089,0.8,4.361152,-4.880431,0.8,4.481587,-4.50124,-6.198286E-12,5,-4.504181,-7.263218E-12,4.958282,-5.001514,-5.012772E-12,5,-4.517441,-7.286286E-12,4.877475,-4.53983,-7.291305E-12,4.790759,-4.573136,-7.287301E-12,4.696409,-4.619354,-7.285665E-12,4.593443,-4.68043,-7.217422E-12,4.481587,-4.75809,-4.814867E-12,4.361152,-4.853727,1.94915E-11,4.232876,-4.968382,1.955444E-11,4.097769,-5.102744,1.9633E-11,3.956982,-5.004771,-4.693891E-12,4.980154,-5.016164,-4.654862E-12,4.936028,-5.035448,-6.235058E-12,4.881401,-5.065313,-4.614481E-12,4.814864,-5.108401,-4.557743E-12,4.735952,-5.257203,1.970576E-11,3.811708,-5.167062,-4.519278E-12,4.644981,-5.243219,-4.48431E-12,4.542833,-5.338328,-4.45769E-12,4.430759,-5.434477,1.978928E-11,3.660921,-5.453391,-4.421933E-12,4.310194,-5.686707,1.980079E-11,3.463891,-5.589016,-4.393959E-12,4.182634,-5.748928,-4.353916E-12,4.046616,-5.973631,1.984568E-11,3.215647,-6.002805,-4.296275E-12,3.848297,-6.242666,1.987794E-11,2.955981,-6.309401,-4.20333E-12,3.583035,-6.467906,1.997382E-11,2.71124,-6.598778,-4.129559E-12,3.303735,-6.492872,2.122391E-11,2.684114,-6.723022,-6.57571E-12,2.399268,-6.833992,-4.029394E-12,3.048157,-6.931538,-6.510964E-12,2.100773,-6.8698,-4.032214E-12,3.009249,-7.120934,-3.93453E-12,2.698431,-7.11644,-6.410009E-12,1.788229,-7.275358,-6.291345E-12,1.461697,-7.350168,-3.856699E-12,2.370279,-7.405631,-6.150798E-12,1.121937,-7.411965,-3.819701E-12,2.265822,-7.504512,-5.986563E-12,0.7705965,-7.554944,-3.755631E-12,2.024142,-7.569505,-5.798528E-12,0.4103079,-7.732172,-3.657271E-12,1.659991,-7.59294,-5.652792E-12,0.1171159,-7.6,-7.228476E-12,0.01773712,-8.099999,-5.303962E-12,-5,-7.6,1.944914E-11,-5,-7.87836,-3.559587E-12,1.27872,-7.989898,-3.463483E-12,0.8824086,-8.06349,-3.369634E-12,0.4744465,-8.089059,-3.183629E-12,0.1545647,-8.099999,-5.711221E-12,0.0005505263,-4.619354,-7.285665E-12,4.593443,-4.573136,-7.287301E-12,4.696409,-4.819354,0.8,4.593443,-4.773137,0.8,4.696409,-7.87836,-3.559587E-12,1.27872,-7.87836,0.8,1.27872,-7.732172,-3.657271E-12,1.659991,-7.732172,0.8,1.659991,-6.002805,-4.296275E-12,3.848297,-6.309401,-4.20333E-12,3.583035,-6.002805,0.8,3.848297,-6.309401,0.8,3.583035,-7.732172,-3.657271E-12,1.659991,-7.732172,0.8,1.659991,-7.554944,-3.755631E-12,2.024142,-7.554944,0.8,2.024142,-7.405631,-6.150798E-12,1.121937,-7.275358,-6.291345E-12,1.461697,-7.605631,0.8,1.121937,-7.475359,0.8,1.461697,-5.686707,1.980079E-11,3.463891,-5.886707,0.8,3.463891,-5.973631,1.984568E-11,3.215647,-6.173632,0.8,3.215647,-7.504512,-5.986563E-12,0.7705965,-7.405631,-6.150798E-12,1.121937,-7.704513,0.8,0.7705965,-7.605631,0.8,1.121937,-7.8,0.8,-5,-7.8,0.8,0.01773712,-8.099999,0.8,-5,-7.87836,0.8,1.27872,-7.989898,0.8,0.8824086,-8.06349,0.8,0.4744465,-8.089059,0.8,0.1545647,-8.099999,0.8,0.0005505263,-7.79294,0.8,0.1171159,-7.769505,0.8,0.4103079,-7.732172,0.8,1.659991,-7.704513,0.8,0.7705965,-7.605631,0.8,1.121937,-7.554944,0.8,2.024142,-7.475359,0.8,1.461697,-7.411965,0.8,2.265822,-7.350168,0.8,2.370279,-7.316441,0.8,1.788229,-7.131538,0.8,2.100773,-7.120934,0.8,2.698431,-6.923022,0.8,2.399268,-6.8698,0.8,3.009249,-6.833992,0.8,3.048157,-6.692872,0.8,2.684114,-6.667907,0.8,2.71124,-6.598778,0.8,3.303735,-6.442666,0.8,2.955981,-6.309401,0.8,3.583035,-6.173632,0.8,3.215647,-6.002805,0.8,3.848297,-5.886707,0.8,3.463891,-5.748928,0.8,4.046616,-5.634478,0.8,3.660921,-5.589016,0.8,4.182634,-5.457203,0.8,3.811708,-5.453391,0.8,4.310194,-5.338328,0.8,4.430759,-5.302744,0.8,3.956982,-5.243219,0.8,4.542833,-5.168382,0.8,4.097769,-5.167062,0.8,4.644981,-5.108401,0.8,4.735952,-5.065313,0.8,4.814864,-5.053727,0.8,4.232876,-5.035448,0.8,4.881401,-5.016164,0.8,4.936028,-5.004771,0.8,4.980154,-5.001514,0.8,5,-4.958089,0.8,4.361152,-4.880431,0.8,4.481587,-4.819354,0.8,4.593443,-4.773137,0.8,4.696409,-4.73983,0.8,4.790759,-4.717441,0.8,4.877475,-4.704181,0.8,4.958282,-4.70124,0.8,5,-5.016164,-4.654862E-12,4.936028,-5.016164,0.8,4.936028,-5.004771,-4.693891E-12,4.980154,-5.004771,0.8,4.980154,-5.338328,-4.45769E-12,4.430759,-5.338328,0.8,4.430759,-5.243219,-4.48431E-12,4.542833,-5.243219,0.8,4.542833,-7.59294,-5.652792E-12,0.1171159,-7.569505,-5.798528E-12,0.4103079,-7.79294,0.8,0.1171159,-7.769505,0.8,0.4103079,-7.6,-7.228476E-12,0.01773712,-7.59294,-5.652792E-12,0.1171159,-7.8,0.8,0.01773712,-7.79294,0.8,0.1171159,-4.68043,-7.217422E-12,4.481587,-4.619354,-7.285665E-12,4.593443,-4.880431,0.8,4.481587,-4.819354,0.8,4.593443,-5.102744,1.9633E-11,3.956982,-5.302744,0.8,3.956982,-5.257203,1.970576E-11,3.811708,-5.457203,0.8,3.811708,-5.453391,-4.421933E-12,4.310194,-5.589016,-4.393959E-12,4.182634,-5.453391,0.8,4.310194,-5.589016,0.8,4.182634,-8.099999,-5.303962E-12,-5,-8.099999,0.8,-5,-8.099999,-5.711221E-12,0.0005505263,-8.099999,0.8,0.0005505263,-7.11644,-6.410009E-12,1.788229,-6.931538,-6.510964E-12,2.100773,-7.316441,0.8,1.788229,-7.131538,0.8,2.100773,-4.517441,-7.286286E-12,4.877475,-4.504181,-7.263218E-12,4.958282,-4.717441,0.8,4.877475,-4.704181,0.8,4.958282,-7.569505,-5.798528E-12,0.4103079,-7.504512,-5.986563E-12,0.7705965,-7.769505,0.8,0.4103079,-7.704513,0.8,0.7705965,-6.723022,-6.57571E-12,2.399268,-6.492872,2.122391E-11,2.684114,-6.923022,0.8,2.399268,-6.692872,0.8,2.684114,-5.589016,-4.393959E-12,4.182634,-5.748928,-4.353916E-12,4.046616,-5.589016,0.8,4.182634,-5.748928,0.8,4.046616,-5.065313,-4.614481E-12,4.814864,-5.065313,0.8,4.814864,-5.035448,-6.235058E-12,4.881401,-5.035448,0.8,4.881401,-8.099999,-5.711221E-12,0.0005505263,-8.099999,0.8,0.0005505263,-8.089059,-3.183629E-12,0.1545647,-8.089059,0.8,0.1545647,-5.167062,-4.519278E-12,4.644981,-5.167062,0.8,4.644981,-5.108401,-4.557743E-12,4.735952,-5.108401,0.8,4.735952,-5.748928,-4.353916E-12,4.046616,-6.002805,-4.296275E-12,3.848297,-5.748928,0.8,4.046616,-6.002805,0.8,3.848297,-8.099999,-5.303962E-12,-5,-7.6,1.944914E-11,-5,-8.099999,0.8,-5,-7.8,0.8,-5,-4.853727,1.94915E-11,4.232876,-4.75809,-4.814867E-12,4.361152,-5.053727,0.8,4.232876,-4.958089,0.8,4.361152,-4.573136,-7.287301E-12,4.696409,-4.53983,-7.291305E-12,4.790759,-4.773137,0.8,4.696409,-4.73983,0.8,4.790759,4.5,-1.127987E-16,-5,5,-1.127987E-16,-5,4.7,0.8,-5,5,0.8,-5,-5.453391,-4.421933E-12,4.310194,-5.453391,0.8,4.310194,-5.338328,-4.45769E-12,4.430759,-5.338328,0.8,4.430759,5,-1.127987E-16,5,4.5,-1.127987E-16,5,5,0.8,5,4.7,0.8,5,-7.554944,-3.755631E-12,2.024142,-7.554944,0.8,2.024142,-7.411965,-3.819701E-12,2.265822,-7.411965,0.8,2.265822,-7.350168,-3.856699E-12,2.370279,-7.350168,0.8,2.370279,-5.035448,-6.235058E-12,4.881401,-5.035448,0.8,4.881401,-5.016164,-4.654862E-12,4.936028,-5.016164,0.8,4.936028,5,-1.127987E-16,5,5,-1.127987E-16,-5,4.5,-1.127987E-16,5,4.5,-1.127987E-16,-5,-7.989898,-3.463483E-12,0.8824086,-7.989898,0.8,0.8824086,-7.87836,-3.559587E-12,1.27872,-7.87836,0.8,1.27872,-7.275358,-6.291345E-12,1.461697,-7.11644,-6.410009E-12,1.788229,-7.475359,0.8,1.461697,-7.316441,0.8,1.788229,5,0.8,-5,5,-1.127987E-16,-5,5,0.8,5,5,-1.127987E-16,5,5,0.8,5,4.7,0.8,5,5,0.8,-5,4.7,0.8,-5,4.7,0.8,-5,4.7,0.8,5,4.5,-1.127987E-16,-5,4.5,-1.127987E-16,5,-6.309401,-4.20333E-12,3.583035,-6.598778,-4.129559E-12,3.303735,-6.309401,0.8,3.583035,-6.598778,0.8,3.303735,-5.004771,-4.693891E-12,4.980154,-5.004771,0.8,4.980154,-5.001514,-5.012772E-12,5,-5.001514,0.8,5 + } + PolygonVertexIndex: *696 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,17,19,-21,21,20,-20,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,39,42,-39,43,38,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,83,-83,85,84,-83,86,85,-83,87,86,-83,88,87,-83,89,88,-83,90,89,-83,91,90,-83,92,91,-83,93,91,-93,94,91,-94,95,91,-95,96,91,-96,97,91,-97,98,97,-97,99,97,-99,100,97,-100,101,97,-101,102,101,-101,103,101,-103,104,103,-103,105,103,-105,106,103,-106,107,106,-106,108,106,-108,109,108,-108,110,108,-110,111,110,-110,112,110,-112,113,112,-112,114,113,-112,115,113,-115,116,115,-115,117,115,-117,118,115,-118,119,118,-118,120,119,-118,121,119,-121,122,121,-121,123,121,-123,124,123,-123,125,123,-125,126,125,-125,127,125,-127,128,127,-127,126,129,-129,130,128,-130,131,129,-127,132,129,-132,133,129,-133,134,129,-134,135,129,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,167,-167,169,168,-167,170,169,-167,171,170,-167,165,167,-173,172,167,-174,167,174,-174,173,174,-176,175,174,-177,174,177,-177,176,177,-179,177,179,-179,179,180,-179,178,180,-182,181,180,-183,180,183,-183,182,183,-185,183,185,-185,185,186,-185,184,186,-188,187,186,-189,186,189,-189,188,189,-191,189,191,-191,190,191,-193,191,193,-193,192,193,-195,193,195,-195,194,195,-197,195,197,-197,196,197,-199,197,199,-199,199,200,-199,198,200,-202,200,202,-202,201,202,-204,202,204,-204,204,205,-204,205,206,-204,203,206,-208,206,208,-208,208,209,-208,209,210,-208,210,211,-208,207,211,-213,212,211,-214,213,211,-215,214,211,-216,215,211,-217,216,211,-218,217,211,-219,219,218,-212,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2088 { + a: -0.9971632,0,0.0752694,-0.991676,0,0.1287584,-0.9971632,0,0.0752694,-0.991676,0,0.1287584,-0.9971632,0,0.0752694,-0.991676,0,0.1287584,-0.991676,0,0.1287584,-0.974479,0,0.2244784,-0.991676,0,0.1287584,-0.974479,0,0.2244784,-0.991676,0,0.1287584,-0.974479,0,0.2244784,-0.8408254,0,0.5413064,-0.799296,0,0.6009374,-0.8408254,0,0.5413064,-0.799296,0,0.6009374,-0.8408254,0,0.5413064,-0.799296,0,0.6009374,-0.799296,0,0.6009374,-0.7572142,0,0.6531666,-0.799296,0,0.6009374,-0.7572142,0,0.6531666,-0.799296,0,0.6009374,-0.7572142,0,0.6531666,0.7419669,0.1854917,-0.6442654,0.7460037,0.1865009,-0.6392933,0.723671,0.1809178,-0.6660097,0.723671,0.1809178,-0.6660097,0.723671,0.1809178,-0.6660097,0.7460037,0.1865009,-0.6392933,0.723671,0.1809178,-0.6660097,0.723671,0.1809178,-0.6660097,0.7021245,0.1755311,-0.6900797,0.7063997,0.1765999,-0.6854281,0.7021245,0.1755311,-0.6900797,0.723671,0.1809178,-0.6660097,0.8212209,0.2053052,-0.5323964,0.8244325,0.2061081,-0.5270962,0.7819427,0.1954857,-0.5919045,0.7856269,0.1964067,-0.5866982,0.7819427,0.1954857,-0.5919045,0.8244325,0.2061081,-0.5270962,-0.8596274,0,0.5109214,-0.8956758,0,0.4447075,-0.8596274,0,0.5109214,-0.8956758,0,0.4447075,-0.8596274,0,0.5109214,-0.8956758,0,0.4447075,0.6597028,0.1649257,-0.7332064,0.626017,0.1565042,-0.7639431,0.6555707,0.1638927,-0.7371339,0.6222684,0.1555671,-0.7671903,0.6555707,0.1638927,-0.7371339,0.626017,0.1565042,-0.7639431,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9695621,0.2423905,-0.03458439,0.9695747,0.2423937,-0.03420803,0.9695621,0.2423905,-0.03458439,0.9701425,0.2425356,0,-0.7358133,0,0.6771845,-0.7154533,0,0.6986606,-0.7358133,0,0.6771845,-0.7154533,0,0.6986606,-0.7358133,0,0.6771845,-0.7154533,0,0.6986606,-0.7358133,0,0.6771845,-0.7572142,0,0.6531666,-0.7358133,0,0.6771845,-0.7572142,0,0.6531666,-0.7358133,0,0.6771845,-0.7572142,0,0.6531666,0.9307972,0.2326993,-0.2818997,0.9297488,0.2324372,-0.2855524,0.9507564,0.2376891,-0.1989128,0.9502147,0.2375537,-0.2016438,0.9507564,0.2376891,-0.1989128,0.9297488,0.2324372,-0.2855524,0.7326594,0.1831648,-0.6554853,0.7288099,0.1822025,-0.6600291,0.7696914,0.1924229,-0.608727,0.766111,0.1915277,-0.6135072,0.7696914,0.1924229,-0.608727,0.7288099,0.1822025,-0.6600291,-0.7824696,0,0.6226888,-0.8215395,0,0.5701517,-0.7824696,0,0.6226888,-0.8215395,0,0.5701517,-0.7824696,0,0.6226888,-0.8215395,0,0.5701517,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.626017,0.1565042,-0.7639431,0.625038,0.1562595,-0.7647943,0.6222684,0.1555671,-0.7671903,0.6295099,0.1573775,-0.7608873,0.6222684,0.1555671,-0.7671903,0.625038,0.1562595,-0.7647943,0.6630139,0.1657535,-0.7300262,0.7021245,0.1755311,-0.6900797,0.6674282,0.166857,-0.72574,0.7063997,0.1765999,-0.6854281,0.6674282,0.166857,-0.72574,0.7021245,0.1755311,-0.6900797,0.9640354,0.2410088,-0.1120283,0.9638595,0.2409649,-0.1136261,0.9678825,0.2419706,-0.06821869,0.9678825,0.2419706,-0.06821869,0.9678825,0.2419706,-0.06821869,0.9638595,0.2409649,-0.1136261,0.6958478,0.173962,-0.6968021,0.6918185,0.1729546,-0.701052,0.7326594,0.1831648,-0.6554853,0.7288099,0.1822025,-0.6600291,0.7326594,0.1831648,-0.6554853,0.6918185,0.1729546,-0.701052,0.8063349,0.2015837,-0.5560466,0.8031203,0.2007801,-0.560968,0.8418023,0.2104506,-0.4970708,0.8390483,0.2097621,-0.5019937,0.8418023,0.2104506,-0.4970708,0.8031203,0.2007801,-0.560968,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.875127,0.2187818,-0.4316101,0.8729131,0.2182283,-0.4363473,0.9051927,0.2262982,-0.3597434,0.9035647,0.2258912,-0.3640659,0.9051927,0.2262982,-0.3597434,0.8729131,0.2182283,-0.4363473,-0.94916,0,0.3147939,-0.9173051,0,0.3981851,-0.94916,0,0.3147939,-0.9173051,0,0.3981851,-0.94916,0,0.3147939,-0.9173051,0,0.3981851,-0.6351438,0,0.7723939,-0.6351438,0,0.7723939,-0.6746288,0,0.7381572,-0.6746288,0,0.7381572,-0.6746288,0,0.7381572,-0.6351438,0,0.7723939,-0.9173051,0,0.3981851,-0.8806419,0,0.4737825,-0.9173051,0,0.3981851,-0.8806419,0,0.4737825,-0.9173051,0,0.3981851,-0.8806419,0,0.4737825,0.9228602,0.2307151,-0.3083825,0.9241548,0.2310387,-0.3042351,0.8930986,0.2232746,-0.3905425,0.8950691,0.2237673,-0.3857195,0.8930986,0.2232746,-0.3905425,0.9241548,0.2310387,-0.3042351,0.625038,0.1562595,-0.7647943,0.6630139,0.1657535,-0.7300262,0.6295099,0.1573775,-0.7608873,0.6674282,0.166857,-0.72574,0.6295099,0.1573775,-0.7608873,0.6630139,0.1657535,-0.7300262,0.9464408,0.2366102,-0.2196941,0.9471251,0.2367813,-0.2165379,0.9228602,0.2307151,-0.3083825,0.9241548,0.2310387,-0.3042351,0.9228602,0.2307151,-0.3083825,0.9471251,0.2367813,-0.2165379,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9565074,0,0.2917081,-0.9785162,0,0.20617,-0.9565074,0,0.2917081,-0.9785162,0,0.20617,-0.9565074,0,0.2917081,-0.9785162,0,0.20617,-0.7432558,0,0.6690073,-0.7824696,0,0.6226888,-0.7432558,0,0.6690073,-0.7824696,0,0.6226888,-0.7432558,0,0.6690073,-0.7824696,0,0.6226888,0.9675481,0.241887,-0.07308401,0.9675552,0.2418888,-0.07298452,0.9624193,0.2406048,-0.1259306,0.9626503,0.2406626,-0.1240401,0.9624193,0.2406048,-0.1259306,0.9675552,0.2418888,-0.07298452,0.9695621,0.2423905,-0.03458439,0.9695747,0.2423937,-0.03420803,0.9675481,0.241887,-0.07308401,0.9675552,0.2418888,-0.07298452,0.9675481,0.241887,-0.07308401,0.9695747,0.2423937,-0.03420803,0.8418023,0.2104506,-0.4970708,0.8390483,0.2097621,-0.5019937,0.875127,0.2187818,-0.4316101,0.8729131,0.2182283,-0.4363473,0.875127,0.2187818,-0.4316101,0.8390483,0.2097621,-0.5019937,0.6958478,0.173962,-0.6968021,0.6597028,0.1649257,-0.7332064,0.6918185,0.1729546,-0.701052,0.6555707,0.1638927,-0.7371339,0.6918185,0.1729546,-0.701052,0.6597028,0.1649257,-0.7332064,-0.7045254,0,0.7096789,-0.7045254,0,0.7096789,-0.6667204,0,0.7453079,-0.6667204,0,0.7453079,-0.6667204,0,0.7453079,-0.7045254,0,0.7096789,-1,0,0,-0.9993715,0,0.03545193,-1,0,0,-0.9993715,0,0.03545193,-1,0,0,-0.9993715,0,0.03545193,0.8587158,0.214679,-0.4653172,0.8613452,0.2153363,-0.4601246,0.8212209,0.2053052,-0.5323964,0.8244325,0.2061081,-0.5270962,0.8212209,0.2053052,-0.5323964,0.8613452,0.2153363,-0.4601246,0.9507564,0.2376891,-0.1989128,0.9502147,0.2375537,-0.2016438,0.9640354,0.2410088,-0.1120283,0.9638595,0.2409649,-0.1136261,0.9640354,0.2410088,-0.1120283,0.9502147,0.2375537,-0.2016438,0.9624193,0.2406048,-0.1259306,0.9626503,0.2406626,-0.1240401,0.9464408,0.2366102,-0.2196941,0.9471251,0.2367813,-0.2165379,0.9464408,0.2366102,-0.2196941,0.9626503,0.2406626,-0.1240401,0.7819427,0.1954857,-0.5919045,0.7856269,0.1964067,-0.5866982,0.7419669,0.1854917,-0.6442654,0.7460037,0.1865009,-0.6392933,0.7419669,0.1854917,-0.6442654,0.7856269,0.1964067,-0.5866982,-0.6667204,0,0.7453079,-0.6667204,0,0.7453079,-0.6318905,0,0.7750577,-0.6318905,0,0.7750577,-0.6318905,0,0.7750577,-0.6667204,0,0.7453079,-0.8956758,0,0.4447075,-0.9284302,0,0.371507,-0.8956758,0,0.4447075,-0.9284302,0,0.371507,-0.8956758,0,0.4447075,-0.9284302,0,0.371507,-0.9993715,0,0.03545193,-0.9971632,0,0.0752694,-0.9993715,0,0.03545193,-0.9971632,0,0.0752694,-0.9993715,0,0.03545193,-0.9971632,0,0.0752694,-0.8215395,0,0.5701517,-0.8596274,0,0.5109214,-0.8215395,0,0.5701517,-0.8596274,0,0.5109214,-0.8215395,0,0.5701517,-0.8596274,0,0.5109214,-0.6318905,0,0.7750577,-0.6318905,0,0.7750577,-0.6351438,0,0.7723939,-0.6351438,0,0.7723939,-0.6351438,0,0.7723939,-0.6318905,0,0.7750577,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7696914,0.1924229,-0.608727,0.766111,0.1915277,-0.6135072,0.8063349,0.2015837,-0.5560466,0.8031203,0.2007801,-0.560968,0.8063349,0.2015837,-0.5560466,0.766111,0.1915277,-0.6135072,0.9051927,0.2262982,-0.3597434,0.9035647,0.2258912,-0.3640659,0.9307972,0.2326993,-0.2818997,0.9297488,0.2324372,-0.2855524,0.9307972,0.2326993,-0.2818997,0.9035647,0.2258912,-0.3640659,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7045254,0,0.7096789,-0.7432558,0,0.6690073,-0.7045254,0,0.7096789,-0.7432558,0,0.6690073,-0.7045254,0,0.7096789,-0.7432558,0,0.6690073,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8806419,0,0.4737825,-0.8606653,0,0.5091712,-0.8806419,0,0.4737825,-0.8606653,0,0.5091712,-0.8806419,0,0.4737825,-0.8606653,0,0.5091712,-0.8606653,0,0.5091712,-0.8408254,0,0.5413064,-0.8606653,0,0.5091712,-0.8408254,0,0.5413064,-0.8606653,0,0.5091712,-0.8408254,0,0.5413064,-0.9284302,0,0.371507,-0.9565074,0,0.2917081,-0.9284302,0,0.371507,-0.9565074,0,0.2917081,-0.9284302,0,0.371507,-0.9565074,0,0.2917081,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.974479,0,0.2244784,-0.94916,0,0.3147939,-0.974479,0,0.2244784,-0.94916,0,0.3147939,-0.974479,0,0.2244784,-0.94916,0,0.3147939,0.8930986,0.2232746,-0.3905425,0.8950691,0.2237673,-0.3857195,0.8587158,0.214679,-0.4653172,0.8613452,0.2153363,-0.4601246,0.8587158,0.214679,-0.4653172,0.8950691,0.2237673,-0.3857195,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.6746288,0,0.7381572,-0.6746288,0,0.7381572,-0.7154533,0,0.6986606,-0.7154533,0,0.6986606,-0.7154533,0,0.6986606,-0.6746288,0,0.7381572,-0.9785162,0,0.20617,-0.9868015,0,0.1619343,-0.9785162,0,0.20617,-0.9868015,0,0.1619343,-0.9785162,0,0.20617,-0.9868015,0,0.1619343 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *708 { + a: -1.930894,1.164374E-10,-1.930894,3.149606,-0.6675001,1.157051E-10,-0.6675001,3.149606,-3.797487,1.194699E-10,-3.797487,3.149606,-2.165414,1.191004E-10,-2.165414,3.149606,-8.921638,1.114972E-10,-8.921638,3.149606,-7.345693,1.111908E-10,-7.345693,3.149606,-9.355859,1.071817E-10,-9.355859,3.149606,-7.78265,1.067971E-10,-7.78265,3.149606,9.534902,4.697581,9.38976,4.697581,10.06812,7.900033,9.922976,7.900033,8.080261,4.697581,8.613477,7.900033,8.847623,5.442562,7.414111,5.442562,9.298544,8.657635,7.865032,8.657635,6.726462,9.894107E-11,6.726462,3.149606,7.080433,9.871769E-11,7.080433,3.149606,6.042792,3.971919,6.64257,7.162575,6.959052,3.971919,7.55883,7.162575,19.68504,7.256971,-0.06983117,7.256971,19.68504,10.50351,-0.06983117,10.50351,-9.38976,1.025553E-10,-9.38976,3.149606,-8.022276,1.02161E-10,-8.022276,3.149606,-9.597938,3.149606,-9.597938,1.025442E-10,-13.79426,5.180815,-14.14686,5.180815,-13.59742,8.421382,-13.95002,8.421382,0.355702,4.74713,-0.3419318,4.74713,0.8651801,7.953444,0.1675463,7.953444,2.000071,1.005135E-10,2.000071,3.149606,2.501696,1.003758E-10,2.501696,3.149606,-17.72142,-3.781511E-12,-19.691,8.858666E-13,-18.50882,3.149606,-19.691,3.149606,7.988351,3.731142,8.608871,6.91783,9.248441,3.731142,9.86896,6.91783,8.129986,4.352023,8.69654,7.548746,9.602057,4.352023,10.16861,7.548746,-18.22572,4.612342,-18.39037,4.612342,-18.17035,7.85841,-18.33501,7.85841,2.600052,4.5006,1.833858,4.5006,3.14368,7.701302,2.377486,7.701302,-4.278394,5.150346,-4.842576,5.150346,-3.851682,8.368722,-4.415864,8.368722,-17.72142,19.68504,-17.733,19.52079,-19.691,19.68504,-17.7852,19.20266,-17.87335,18.86126,-18.00447,18.4898,-18.18643,18.08442,-18.42689,17.64404,-18.73264,17.16989,-19.10916,16.66487,-19.56056,16.13295,-20.08954,15.57867,-19.70382,19.6069,-19.74868,19.43318,-19.8246,19.21811,-19.94218,18.95616,-20.11182,18.64548,-20.69765,15.00673,-20.34276,18.28733,-20.6426,17.88517,-21.01704,17.44393,-21.39558,14.41307,-21.47004,16.96927,-22.38861,13.63737,-22.004,16.46706,-22.63357,15.93156,-23.51823,12.66003,-23.63309,15.15077,-24.57743,11.63772,-24.84016,14.10644,-25.4642,10.67418,-25.97944,13.00683,-25.56249,10.56738,-26.46859,9.445935,-26.90548,12.00062,-27.28952,8.270761,-27.04646,11.84744,-28.03518,10.62375,-28.01748,7.040269,-28.64314,5.754712,-28.93767,9.331808,-29.15603,4.417074,-29.18097,8.920561,-29.54532,3.033844,-29.74387,7.969063,-29.8012,1.615385,-30.44162,6.535397,-29.89347,0.4610863,-29.92126,0.06983117,-31.88976,-19.68504,-29.92126,-19.68504,-31.01716,5.03433,-31.45629,3.47405,-31.74603,1.8679,-31.84669,0.6085226,-31.88976,0.002167427,-9.051228,5.336197,-9.495568,5.336197,-8.728786,8.566685,-9.173127,8.566685,-6.403772,1.204499E-10,-6.403772,3.149606,-4.796149,1.200653E-10,-4.796149,3.149606,-7.959337,9.29619E-11,-9.555474,9.332782E-11,-7.959337,3.149606,-9.555474,3.149606,-7.445205,1.185096E-10,-7.445205,3.149606,-5.850762,1.181224E-10,-5.850762,3.149606,6.313812,6.547878,4.881218,6.547878,6.595708,9.782156,5.163115,9.782156,8.008414,4.029524,8.603881,7.220988,9.502151,4.029524,10.09762,7.220988,5.083912,6.846542,3.646944,6.846542,5.297232,10.08607,3.860264,10.08607,30.70866,-19.68504,30.70866,0.06983117,31.88976,-19.68504,31.01716,5.03433,31.45629,3.47405,31.74603,1.8679,31.84669,0.6085226,31.88976,0.002167427,30.68087,0.4610863,30.5886,1.615385,30.44162,6.535397,30.33273,3.033844,29.94343,4.417074,29.74387,7.969063,29.43055,5.754712,29.18097,8.920561,28.93767,9.331808,28.80488,7.040269,28.07692,8.270761,28.03518,10.62375,27.25599,9.445935,27.04646,11.84744,26.90548,12.00062,26.34989,10.56738,26.2516,10.67418,25.97944,13.00683,25.36483,11.63772,24.84016,14.10644,24.30564,12.66003,23.63309,15.15077,23.17601,13.63737,22.63357,15.93156,22.18298,14.41307,22.004,16.46706,21.48505,15.00673,21.47004,16.96927,21.01704,17.44393,20.87695,15.57867,20.6426,17.88517,20.34796,16.13295,20.34276,18.28733,20.11182,18.64548,19.94218,18.95616,19.89656,16.66487,19.8246,19.21811,19.74868,19.43318,19.70382,19.6069,19.691,19.68504,19.52004,17.16989,19.21429,17.64404,18.97383,18.08442,18.79188,18.4898,18.66075,18.86126,18.5726,19.20266,18.5204,19.52079,18.50882,19.68504,13.87922,8.450113E-11,13.87922,3.149606,14.05864,8.434747E-11,14.05864,3.149606,-0.2985286,9.945596E-11,-0.2985286,3.149606,0.2801757,9.935116E-11,0.2801757,3.149606,1.922232,7.214431,0.7642518,7.214431,1.984971,10.46036,0.8269904,10.46036,2.050544,7.222798,1.658303,7.222798,2.106339,10.46886,1.714097,10.46886,-6.654998,5.278484,-7.156747,5.278484,-6.277644,8.503018,-6.779393,8.503018,3.960676,4.239379,4.534246,7.434851,4.795488,4.239379,5.369058,7.434851,-4.013556,9.482284E-11,-4.746579,9.493297E-11,-4.013556,3.149606,-4.746579,3.149606,-19.68504,1.03753E-10,-19.68504,3.149606,0.002167427,1.021496E-10,0.002167427,3.149606,8.206382,5.826412,6.776683,5.826412,8.607304,9.0481,7.177605,9.0481,-16.06918,4.948477,-16.39157,4.948477,-15.94167,8.192513,-16.26406,8.192513,3.700736,7.075074,2.259382,7.075074,3.840519,10.3186,2.399166,10.3186,9.287441,5.063083,7.845685,5.063083,9.782302,8.271686,8.340546,8.271686,-6.091701,9.171173E-11,-6.918215,9.186938E-11,-6.091701,3.149606,-6.918215,3.149606,9.127542,9.580554E-11,9.127542,3.149606,9.414674,8.942531E-11,9.414674,3.149606,-2.257524,1.060678E-10,-2.257524,3.149606,-1.649641,1.16019E-10,-1.649641,3.149606,4.344951,1.004165E-10,4.344951,3.149606,4.771112,1.002651E-10,4.771112,3.149606,-8.029188,8.866333E-11,-9.297518,8.889026E-11,-8.029188,3.149606,-9.297518,3.149606,31.88976,-4.159981E-11,29.92126,5.585335E-11,31.88976,3.149606,30.70866,3.149606,-1.938315,4.968131,-2.568253,4.968131,-1.467668,8.180374,-2.097606,8.180374,-11.44198,5.307825,-11.8359,5.307825,-11.17987,8.543767,-11.57379,8.543767,-17.71654,2.189882E-13,-19.68504,2.189882E-13,-18.50394,3.149606,-19.68504,3.149606,-2.547173,9.754771E-11,-2.547173,3.149606,-1.891031,9.740694E-11,-1.891031,3.149606,19.68504,-2.13424E-14,17.71654,-2.13424E-14,19.68504,3.149606,18.50394,3.149606,-8.286031,1.154106E-10,-8.286031,3.149606,-7.180493,1.151583E-10,-7.180493,3.149606,-6.702668,1.150127E-10,-6.702668,3.149606,11.52288,8.475986E-11,11.52288,3.149606,11.75095,9.09811E-11,11.75095,3.149606,19.68504,19.68504,19.68504,-19.68504,17.71654,19.68504,17.71654,-19.68504,-5.177881,1.208715E-10,-5.177881,3.149606,-3.556984,1.204932E-10,-3.556984,3.149606,7.360136,6.20083,5.930411,6.20083,7.704712,9.429032,6.274987,9.429032,19.68504,3.149606,19.68504,-4.440892E-16,-19.68504,3.149606,-19.68504,-4.440892E-16,-19.68504,19.68504,-18.50394,19.68504,-19.68504,-19.68504,-18.50394,-19.68504,-19.68504,7.543431,19.68504,7.543431,-19.68504,4.296891,19.68504,4.296891,-8.076661,9.756142E-11,-9.660042,9.785186E-11,-8.076661,3.149606,-9.660042,3.149606,16.1574,7.61373E-11,16.1574,3.149606,16.23658,7.488186E-11,16.23658,3.149606 + } + UVIndex: *696 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,17,19,20,21,20,19,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,39,42,38,43,38,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,83,82,85,84,82,86,85,82,87,86,82,88,87,82,89,88,82,90,89,82,91,90,82,92,91,82,93,91,92,94,91,93,95,91,94,96,91,95,97,91,96,98,97,96,99,97,98,100,97,99,101,97,100,102,101,100,103,101,102,104,103,102,105,103,104,106,103,105,107,106,105,108,106,107,109,108,107,110,108,109,111,110,109,112,110,111,113,112,111,114,113,111,115,113,114,116,115,114,117,115,116,118,115,117,119,118,117,120,119,117,121,119,120,122,121,120,123,121,122,124,123,122,125,123,124,126,125,124,127,125,126,128,127,126,126,129,128,130,128,129,131,129,126,132,129,131,133,129,132,134,129,133,135,129,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,167,166,169,168,166,170,169,166,171,170,166,165,167,172,172,167,173,167,174,173,173,174,175,175,174,176,174,177,176,176,177,178,177,179,178,179,180,178,178,180,181,181,180,182,180,183,182,182,183,184,183,185,184,185,186,184,184,186,187,187,186,188,186,189,188,188,189,190,189,191,190,190,191,192,191,193,192,192,193,194,193,195,194,194,195,196,195,197,196,196,197,198,197,199,198,199,200,198,198,200,201,200,202,201,201,202,203,202,204,203,204,205,203,205,206,203,203,206,207,206,208,207,208,209,207,209,210,207,210,211,207,207,211,212,212,211,213,213,211,214,214,211,215,215,211,216,216,211,217,217,211,218,219,218,211,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *232 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_sideExitBarrier, Model::RootNode + C: "OO",5199870725234638242,0 + + ;Geometry::, Model::Mesh road_sideExitBarrier + C: "OO",5301626800186022566,5199870725234638242 + + ;Material::pavement, Model::Mesh road_sideExitBarrier + C: "OO",17046,5199870725234638242 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExitBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExitBarrier.fbx.import new file mode 100644 index 0000000..a37676e --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExitBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://doseu113j3ay1" +path="res://.godot/imported/road_sideExitBarrier.fbx-ff77d1fed68f3eafcba6a9afaa72c3cc.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_sideExitBarrier.fbx" +dest_files=["res://.godot/imported/road_sideExitBarrier.fbx-ff77d1fed68f3eafcba6a9afaa72c3cc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slant.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slant.fbx new file mode 100644 index 0000000..ce3f53a --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slant.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 22 + Millisecond: 127 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_slant.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_slant.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5009599550779673317, "Model::road_slant", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5336467487981942775, "Geometry::", "Mesh" { + Vertices: *192 { + a: -5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,2.7,4,5,2.7,5,-5,0.2,4,-5,0.2,5,5,0,5,-5,0,5,5,2.7,5,-5,0.2,5,-5,0,-5,5,0,-5,-5,0.2,-5,5,2.7,-5,-5,0.09999999,4,5,2.6,4,-5,0.2,4,5,2.7,4,5,0,5,5,0,-5,-5,0,5,-5,0,-5,5,2.7,-5,5,2.7,-4,-5,0.2,-5,-5,0.2,-4,-5,0.09999999,-4,-5,0.2,-4,5,2.6,-4,5,2.7,-4,5,2.7,4,5,2.6,4,5,2.7,5,5,0,5,5,2.6,3,5,2.6,0.09999999,5,2.6,-0.09999999,5,2.6,-3,5,2.6,-4,5,0,-5,5,2.7,-4,5,2.7,-5,5,2.6,-4,5,2.6,-3,-5,0.09999999,-4,-5,0.09999999,-3,5,2.6,3,5,2.6,4,-5,0.09999999,3,-5,0.09999999,4,5,2.6,-0.09999999,5,2.6,0.09999999,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,5,-4,7,6,-4,8,7,-4,9,8,-4,10,9,-4,1,11,-1,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,42,43,-42,41,43,-45,44,43,-46,45,43,-47,46,43,-48,47,43,-49,43,49,-49,48,49,-51,51,50,-50,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,53,55,-61,62,60,-56,56,61,-59,63,58,-62 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *128 { + a: -19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-4.179663E-13,19.68504,-4.179663E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,15.74803,21.67543,19.68504,21.67543,15.74803,-18.90632,19.68504,-18.90632,19.68504,0,-19.68504,0,19.68504,10.62992,-19.68504,0.7874016,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,10.62992,19.68504,0.3937008,-19.68504,10.23622,19.68504,0.7874016,-19.68504,10.62992,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,21.67543,-15.74803,21.67543,-19.68504,-18.90632,-15.74803,-18.90632,-19.68504,0.3937008,-19.68504,0.7874016,19.68504,10.23622,19.68504,10.62992,-15.74803,10.62992,-15.74803,10.23622,-19.68504,10.62992,-19.68504,-2.930073E-14,-11.81102,10.23622,-0.3937008,10.23622,0.3937008,10.23622,11.81102,10.23622,15.74803,10.23622,19.68504,-2.930073E-14,15.74803,10.62992,19.68504,10.62992,-15.74803,21.57994,-11.81102,21.57994,-15.74803,-19.00181,-11.81102,-19.00181,11.81102,21.57994,15.74803,21.57994,11.81102,-19.00181,15.74803,-19.00181,-0.3937008,21.57994,0.3937008,21.57994,-0.3937008,-19.00181,0.3937008,-19.00181 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,5,3,7,6,3,8,7,3,9,8,3,10,9,3,1,11,0,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,42,43,41,41,43,44,44,43,45,45,43,46,46,43,47,47,43,48,43,49,48,48,49,50,51,50,49,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,53,55,60,62,60,55,56,61,58,63,58,61 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_slant, Model::RootNode + C: "OO",5009599550779673317,0 + + ;Geometry::, Model::Mesh road_slant + C: "OO",5336467487981942775,5009599550779673317 + + ;Material::pavement, Model::Mesh road_slant + C: "OO",17046,5009599550779673317 + + ;Material::asphaltEdge, Model::Mesh road_slant + C: "OO",17042,5009599550779673317 + + ;Material::line, Model::Mesh road_slant + C: "OO",9174,5009599550779673317 + + ;Material::asphalt, Model::Mesh road_slant + C: "OO",9934,5009599550779673317 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slant.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slant.fbx.import new file mode 100644 index 0000000..9fe7aff --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slant.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://chfl00qdxmj3" +path="res://.godot/imported/road_slant.fbx-9f4f98da6f194b67c852b9a38851b5ec.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_slant.fbx" +dest_files=["res://.godot/imported/road_slant.fbx-9f4f98da6f194b67c852b9a38851b5ec.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantBarrier.fbx new file mode 100644 index 0000000..43d9136 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 22 + Millisecond: 252 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_slantBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_slantBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4718298893787679978, "Model::road_slantBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4649866623764352453, "Geometry::", "Mesh" { + Vertices: *144 { + a: 5,2.5,5,5,2.5,4.5,-5,0,5,-5,0,4.5,5,3.3,5,-5,0.8,5,5,3.3,4.7,-5,0.8,4.7,-5,0,5,-5,0.8,5,5,2.5,5,5,3.3,5,5,2.5,4.5,5,2.5,5,5,3.3,4.7,5,3.3,5,-5,0,-5,-5,0.8,-5,-5,0,-4.5,-5,0.8,-4.7,5,3.3,-5,5,2.5,-5,5,3.3,-4.7,5,2.5,-4.5,5,2.5,-5,-5,0,-5,5,2.5,-4.5,-5,0,-4.5,5,3.3,-5,5,3.3,-4.7,-5,0.8,-5,-5,0.8,-4.7,-5,0,-4.5,-5,0.8,-4.7,5,2.5,-4.5,5,3.3,-4.7,-5,0,-5,5,2.5,-5,-5,0.8,-5,5,3.3,-5,-5,0,4.5,-5,0.8,4.7,-5,0,5,-5,0.8,5,-5,0,4.5,5,2.5,4.5,-5,0.8,4.7,5,3.3,4.7 + } + PolygonVertexIndex: *72 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *216 { + a: 0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.06052276,0.242091,0.9683641,-0.06052276,0.242091,0.9683641,-0.06052276,0.242091,0.9683641,-0.06052276,0.242091,0.9683641,-0.06052276,0.242091,0.9683641,-0.06052276,0.242091,0.9683641,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.06052276,0.242091,-0.9683641,-0.06052276,0.242091,-0.9683641,-0.06052276,0.242091,-0.9683641,-0.06052276,0.242091,-0.9683641,-0.06052276,0.242091,-0.9683641,-0.06052276,0.242091,-0.9683641 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: -19.68504,21.48446,-17.71654,21.48446,-19.68504,-19.09729,-17.71654,-19.09729,19.68504,22.24835,19.68504,-18.3334,18.50394,22.24835,18.50394,-18.3334,-19.68504,-1.355506E-25,-19.68504,3.149606,19.68504,9.84252,19.68504,12.99213,-17.71654,9.84252,-19.68504,9.84252,-18.50394,12.99213,-19.68504,12.99213,-19.68504,-5.224579E-15,-19.68504,3.149606,-17.71654,-5.224579E-15,-18.50394,3.149606,19.68504,12.99213,19.68504,9.84252,18.50394,12.99213,17.71654,9.84252,19.68504,21.48446,19.68504,-19.09729,17.71654,21.48446,17.71654,-19.09729,-19.68504,22.24835,-18.50394,22.24835,-19.68504,-18.3334,-18.50394,-18.3334,-20.75183,3.983393,-20.80095,7.229562,18.54158,14.12767,18.49246,17.37384,19.68504,1.323736E-28,-19.68504,9.84252,19.68504,3.149606,-19.68504,12.99213,17.71654,1.776357E-13,18.50394,3.149606,19.68504,1.776357E-13,19.68504,3.149606,20.75183,3.983393,-18.54158,14.12767,20.80095,7.229562,-18.49246,17.37384 + } + UVIndex: *72 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *24 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_slantBarrier, Model::RootNode + C: "OO",4718298893787679978,0 + + ;Geometry::, Model::Mesh road_slantBarrier + C: "OO",4649866623764352453,4718298893787679978 + + ;Material::pavement, Model::Mesh road_slantBarrier + C: "OO",17046,4718298893787679978 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantBarrier.fbx.import new file mode 100644 index 0000000..49b44b2 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dt5rsiec0e752" +path="res://.godot/imported/road_slantBarrier.fbx-b152ac19bb00b093672c803fb75edd1b.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_slantBarrier.fbx" +dest_files=["res://.godot/imported/road_slantBarrier.fbx-b152ac19bb00b093672c803fb75edd1b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurve.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurve.fbx new file mode 100644 index 0000000..ed69404 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurve.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 22 + Millisecond: 452 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_slantCurve.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_slantCurve.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4929804188657349333, "Model::road_slantCurve", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5274230155881254970, "Geometry::", "Mesh" { + Vertices: *2082 { + a: -6.54063,0.5219735,-5,-6.54063,0.5219735,-4,-7.399888,0.3891272,-5,-7.399888,0.3891272,-4,7.414032,5.028888,-5,7.414032,5.028888,-4,6.558374,4.90709,-5,6.558374,4.90709,-4,-7.399888,0.3891272,-5,-7.399888,0.3891272,-4,-8.263808,0.2910857,-5,-8.263808,0.2910857,-4,-1.560687,2.033897,-5,-1.560687,2.033897,-4,-2.362955,1.69873,-5,-2.362955,1.69873,-4,-4.004801,1.126893,-5,-4.004801,1.126893,-4,-4.841701,0.8911577,-5,-4.841701,0.8911577,-4,0.780973,3.170224,-5,0.780973,3.170224,-4,1.696492E-13,2.8,-5,8.301981E-14,2.8,-4,-3.178103,1.39623,-5,-3.178103,1.39623,-4,-4.004801,1.126893,-5,-4.004801,1.126893,-4,10,0,-5,-10,0,-5,10,0,5,-10,0,5,1.696492E-13,2.8,-5,8.301981E-14,2.8,-4,-0.7726064,2.401187,-5,-0.7726064,2.401187,-4,-10,0.09999999,-4,-10,0.2,-4,-9.130984,0.128009,-4,-8.263808,0.1910857,-4,-9.130984,0.228009,-4,-7.399888,0.2891272,-4,-8.263808,0.2910857,-4,-6.54063,0.4219735,-4,-7.399888,0.3891272,-4,-6.54063,0.5219735,-4,-5.687437,0.5894082,-4,-5.687437,0.6894081,-4,-5,0.7533956,-4,-5,0.8533956,-4,-4.841701,0.7911577,-4,-4.004801,1.026893,-4,-4.841701,0.8911577,-4,-4.004801,1.126893,-4,-3.178103,1.29623,-4,-3.178103,1.39623,-4,-2.362955,1.598729,-4,-2.362955,1.69873,-4,-1.560687,1.933897,-4,-1.560687,2.033897,-4,-0.7726064,2.301187,-4,-0.7726064,2.401187,-4,8.301981E-14,2.7,-4,8.301981E-14,2.8,-4,0.780973,3.070225,-4,0.780973,3.170224,-4,1.575332,3.410781,-4,1.575332,3.510781,-4,2.38195,3.721188,-4,2.38195,3.821188,-4,3.199683,4.001004,-4,3.199683,4.101005,-4,4.027372,4.249834,-4,4.027372,4.349833,-4,4.863843,4.467322,-4,4.863843,4.567322,-4,5,4.4973,-4,5.70791,4.653162,-4,5,4.597301,-4,5.70791,4.753162,-4,6.558374,4.80709,-4,6.558374,4.90709,-4,7.414032,4.928888,-4,7.414032,5.028888,-4,8.273669,5.018383,-4,9.136066,5.075446,-4,8.273669,5.118382,-4,10,5.1,-4,10,5.2,-4,9.136066,5.175447,-4,4.027372,4.349833,-5,4.027372,4.349833,-4,3.199683,4.101005,-5,3.199683,4.101005,-4,-4.841701,0.8911577,-5,-4.841701,0.8911577,-4,-5,0.8533956,-5,-5,0.8533956,-4,-5.687437,0.6894081,-5,-5.687437,0.6894081,-4,3.199683,4.101005,-5,3.199683,4.101005,-4,2.38195,3.821188,-5,2.38195,3.821188,-4,-10,0,-5,10,0,-5,-10,0.2,-5,-9.130984,0.228009,-5,-8.263808,0.2910857,-5,-7.399888,0.3891272,-5,-6.54063,0.5219735,-5,-5.687437,0.6894081,-5,-4.841701,0.8911577,-5,-4.004801,1.126893,-5,10,5.2,-5,-5,0.8533956,-5,-3.178103,1.39623,-5,-2.362955,1.69873,-5,-1.560687,2.033897,-5,-0.7726064,2.401187,-5,1.696492E-13,2.8,-5,0.780973,3.170224,-5,1.575332,3.510781,-5,2.38195,3.821188,-5,3.199683,4.101005,-5,4.027372,4.349833,-5,4.863843,4.567322,-5,5,4.597301,-5,5.70791,4.753162,-5,6.558374,4.90709,-5,7.414032,5.028888,-5,8.273669,5.118382,-5,9.136066,5.175447,-5,6.558374,4.90709,-5,6.558374,4.90709,-4,5.70791,4.753162,-5,5.70791,4.753162,-4,-5.687437,0.6894081,-5,-5.687437,0.6894081,-4,-6.54063,0.5219735,-5,-6.54063,0.5219735,-4,-9.130984,0.228009,-5,-9.130984,0.228009,-4,-10,0.2,-5,-10,0.2,-4,-8.263808,0.2910857,-5,-8.263808,0.2910857,-4,-9.130984,0.228009,-5,-9.130984,0.228009,-4,5.70791,4.753162,-5,5.70791,4.753162,-4,5,4.597301,-5,5,4.597301,-4,4.863843,4.567322,-5,4.863843,4.567322,-4,10,5.2,-5,10,5.2,-4,9.136066,5.175447,-5,9.136066,5.175447,-4,1.575332,3.510781,-5,1.575332,3.510781,-4,0.780973,3.170224,-5,0.780973,3.170224,-4,-2.362955,1.69873,-5,-2.362955,1.69873,-4,-3.178103,1.39623,-5,-3.178103,1.39623,-4,-0.7726064,2.401187,-5,-0.7726064,2.401187,-4,-1.560687,2.033897,-5,-1.560687,2.033897,-4,8.273669,5.118382,-5,8.273669,5.118382,-4,7.414032,5.028888,-5,7.414032,5.028888,-4,-5.687437,0.6894081,4,-5.687437,0.6894081,5,-6.54063,0.5219735,4,-6.54063,0.5219735,5,4.863843,4.567322,-5,4.863843,4.567322,-4,4.027372,4.349833,-5,4.027372,4.349833,-4,3.199683,4.101005,4,3.199683,4.101005,5,2.38195,3.821188,4,2.38195,3.821188,5,6.558374,4.90709,4,6.558374,4.90709,5,5.70791,4.753162,4,5.70791,4.753162,5,2.38195,3.821188,4,2.38195,3.821188,5,1.575332,3.510781,4,1.575332,3.510781,5,-2.362955,1.69873,4,-2.362955,1.69873,5,-3.178103,1.39623,4,-3.178103,1.39623,5,-7.399888,0.3891272,4,-7.399888,0.3891272,5,-8.263808,0.2910857,4,-8.263808,0.2910857,5,0.780973,3.170224,4,0.780973,3.170224,5,-5.667004E-13,2.8,4,-6.533298E-13,2.8,5,2.38195,3.821188,-5,2.38195,3.821188,-4,1.575332,3.510781,-5,1.575332,3.510781,-4,4.027372,4.349833,4,4.027372,4.349833,5,3.199683,4.101005,4,3.199683,4.101005,5,-9.130984,0.228009,4,-9.130984,0.228009,5,-10,0.2,4,-10,0.2,5,7.414032,5.028888,4,7.414032,5.028888,5,6.558374,4.90709,4,6.558374,4.90709,5,9.136066,5.175447,4,9.136066,5.175447,5,8.273669,5.118382,4,8.273669,5.118382,5,-1.560687,2.033897,4,-1.560687,2.033897,5,-2.362955,1.69873,4,-2.362955,1.69873,5,-8.263808,0.2910857,4,-8.263808,0.2910857,5,-9.130984,0.228009,4,-9.130984,0.228009,5,-10,0.09999999,4,-9.130984,0.128009,4,-10,0.2,4,-8.263808,0.1910857,4,-9.130984,0.228009,4,-7.399888,0.2891272,4,-8.263808,0.2910857,4,-6.54063,0.4219735,4,-7.399888,0.3891272,4,-6.54063,0.5219735,4,-5.687437,0.5894082,4,-5.687437,0.6894081,4,-5,0.7533956,4,-5,0.8533956,4,-4.841701,0.7911577,4,-4.004801,1.026893,4,-4.841701,0.8911577,4,-4.004801,1.126893,4,-3.178103,1.29623,4,-3.178103,1.39623,4,-2.362955,1.598729,4,-2.362955,1.69873,4,-1.560687,1.933897,4,-1.560687,2.033897,4,-0.7726064,2.301187,4,-0.7726064,2.401187,4,-5.667004E-13,2.7,4,-5.667004E-13,2.8,4,0.780973,3.070225,4,0.780973,3.170224,4,1.575332,3.410781,4,1.575332,3.510781,4,2.38195,3.721188,4,2.38195,3.821188,4,3.199683,4.001004,4,3.199683,4.101005,4,4.027372,4.249834,4,4.027372,4.349833,4,4.863843,4.467322,4,4.863843,4.567322,4,5,4.4973,4,5.70791,4.653162,4,5,4.597301,4,5.70791,4.753162,4,6.558374,4.80709,4,6.558374,4.90709,4,7.414032,4.928888,4,7.414032,5.028888,4,8.273669,5.018383,4,9.136066,5.075446,4,8.273669,5.118382,4,10,5.1,4,10,5.2,4,9.136066,5.175447,4,8.273669,5.118382,4,8.273669,5.118382,5,7.414032,5.028888,4,7.414032,5.028888,5,10,5.2,4,10,5.1,4,10,5.2,5,10,0,5,10,5.1,3,10,5.1,0.09999999,10,5.1,-0.09999999,10,5.1,-3,10,5.1,-4,10,0,-5,10,5.2,-4,10,5.2,-5,-3.178103,1.39623,4,-3.178103,1.39623,5,-4.004801,1.126893,4,-4.004801,1.126893,5,9.136066,5.175447,-5,9.136066,5.175447,-4,8.273669,5.118382,-5,8.273669,5.118382,-4,-4.004801,1.126893,4,-4.004801,1.126893,5,-4.841701,0.8911577,4,-4.841701,0.8911577,5,10,5.2,4,10,5.2,5,9.136066,5.175447,4,9.136066,5.175447,5,5.70791,4.753162,4,5.70791,4.753162,5,5,4.597301,4,5,4.597301,5,4.863843,4.567322,4,4.863843,4.567322,5,4.863843,4.567322,4,4.863843,4.567322,5,4.027372,4.349833,4,4.027372,4.349833,5,-4.841701,0.8911577,4,-4.841701,0.8911577,5,-5,0.8533956,4,-5,0.8533956,5,-5.687437,0.6894081,4,-5.687437,0.6894081,5,-6.54063,0.5219735,4,-6.54063,0.5219735,5,-7.399888,0.3891272,4,-7.399888,0.3891272,5,-0.7726064,2.401187,4,-0.7726064,2.401187,5,-1.560687,2.033897,4,-1.560687,2.033897,5,-5.667004E-13,2.8,4,-6.533298E-13,2.8,5,-0.7726064,2.401187,4,-0.7726064,2.401187,5,1.575332,3.510781,4,1.575332,3.510781,5,0.780973,3.170224,4,0.780973,3.170224,5,-10,0,5,-7.399888,0.3891272,5,10,0,5,-6.54063,0.5219735,5,-5.687437,0.6894081,5,-4.841701,0.8911577,5,-4.004801,1.126893,5,10,5.2,5,-8.263808,0.2910857,5,-9.130984,0.228009,5,-10,0.2,5,-5,0.8533956,5,-3.178103,1.39623,5,-2.362955,1.69873,5,-1.560687,2.033897,5,-0.7726064,2.401187,5,-6.533298E-13,2.8,5,0.780973,3.170224,5,1.575332,3.510781,5,2.38195,3.821188,5,3.199683,4.101005,5,4.027372,4.349833,5,4.863843,4.567322,5,5,4.597301,5,5.70791,4.753162,5,6.558374,4.90709,5,7.414032,5.028888,5,8.273669,5.118382,5,9.136066,5.175447,5,-4.004801,1.026893,-3,-4.841701,0.7911577,-3,-4.004801,1.026893,-4,-4.841701,0.7911577,-4,-2.362955,1.598729,-3,-3.178103,1.29623,-3,-2.362955,1.598729,-4,-3.178103,1.29623,-4,-3.178103,1.29623,-3,-4.004801,1.026893,-3,-3.178103,1.29623,-4,-4.004801,1.026893,-4,-4.841701,0.7911577,-3,-5,0.7533956,-3,-4.841701,0.7911577,-4,-5,0.7533956,-4,-5.687437,0.5894082,-3,-5.687437,0.5894082,-4,-7.399888,0.2891272,-3,-8.263808,0.1910857,-3,-7.399888,0.2891272,-4,-8.263808,0.1910857,-4,-8.263808,0.1910857,-3,-9.130984,0.128009,-3,-8.263808,0.1910857,-4,-9.130984,0.128009,-4,-6.54063,0.4219735,-3,-7.399888,0.2891272,-3,-6.54063,0.4219735,-4,-7.399888,0.2891272,-4,8.273669,5.018383,-3,7.414032,4.928888,-3,8.273669,5.018383,-4,7.414032,4.928888,-4,-5.687437,0.5894082,-3,-6.54063,0.4219735,-3,-5.687437,0.5894082,-4,-6.54063,0.4219735,-4,3.199683,4.001004,-3,2.38195,3.721188,-3,3.199683,4.001004,-4,2.38195,3.721188,-4,1.696492E-13,2.7,-3,-0.7726064,2.301187,-3,8.301981E-14,2.7,-4,-0.7726064,2.301187,-4,-1.560687,1.933897,-3,-2.362955,1.598729,-3,-1.560687,1.933897,-4,-2.362955,1.598729,-4,1.575332,3.410781,-3,0.780973,3.070225,-3,1.575332,3.410781,-4,0.780973,3.070225,-4,-9.130984,0.128009,-3,-10,0.09999999,-3,-9.130984,0.128009,-4,-10,0.09999999,-4,7.414032,4.928888,-3,6.558374,4.80709,-3,7.414032,4.928888,-4,6.558374,4.80709,-4,4.863843,4.467322,-3,4.027372,4.249834,-3,4.863843,4.467322,-4,4.027372,4.249834,-4,4.027372,4.249834,-3,3.199683,4.001004,-3,4.027372,4.249834,-4,3.199683,4.001004,-4,5.70791,4.653162,-3,5,4.4973,-3,5.70791,4.653162,-4,5,4.4973,-4,4.863843,4.467322,-3,4.863843,4.467322,-4,2.38195,3.721188,-3,1.575332,3.410781,-3,2.38195,3.721188,-4,1.575332,3.410781,-4,0.780973,3.070225,-3,1.696492E-13,2.7,-3,0.780973,3.070225,-4,8.301981E-14,2.7,-4,9.136066,5.075446,-3,8.273669,5.018383,-3,9.136066,5.075446,-4,8.273669,5.018383,-4,6.558374,4.80709,-3,5.70791,4.653162,-3,6.558374,4.80709,-4,5.70791,4.653162,-4,10,5.1,-3,9.136066,5.075446,-3,10,5.1,-4,9.136066,5.075446,-4,-0.7726064,2.301187,-3,-1.560687,1.933897,-3,-0.7726064,2.301187,-4,-1.560687,1.933897,-4,4.027372,4.249834,3,4.027372,4.249834,4,3.199683,4.001004,3,3.199683,4.001004,4,3.199683,4.001004,3,3.199683,4.001004,4,2.38195,3.721188,3,2.38195,3.721188,4,7.414032,4.928888,3,7.414032,4.928888,4,6.558374,4.80709,3,6.558374,4.80709,4,5.70791,4.653162,3,5.70791,4.653162,4,5,4.4973,3,5,4.4973,4,4.863843,4.467322,3,4.863843,4.467322,4,-1.560687,1.933897,3,-1.560687,1.933897,4,-2.362955,1.598729,3,-2.362955,1.598729,4,2.38195,3.721188,3,2.38195,3.721188,4,1.575332,3.410781,3,1.575332,3.410781,4,-4.841701,0.7911577,3,-4.841701,0.7911577,4,-5,0.7533956,3,-5,0.7533956,4,-5.687437,0.5894082,3,-5.687437,0.5894082,4,-2.362955,1.598729,3,-2.362955,1.598729,4,-3.178103,1.29623,3,-3.178103,1.29623,4,4.863843,4.467322,3,4.863843,4.467322,4,4.027372,4.249834,3,4.027372,4.249834,4,6.533298E-13,2.7,3,-5.667004E-13,2.7,4,-0.7726064,2.301187,3,-0.7726064,2.301187,4,9.136066,5.075446,3,9.136066,5.075446,4,8.273669,5.018383,3,8.273669,5.018383,4,-9.130984,0.128009,3,-9.130984,0.128009,4,-10,0.09999999,3,-10,0.09999999,4,-3.178103,1.29623,3,-3.178103,1.29623,4,-4.004801,1.026893,3,-4.004801,1.026893,4,-7.399888,0.2891272,3,-7.399888,0.2891272,4,-8.263808,0.1910857,3,-8.263808,0.1910857,4,8.273669,5.018383,3,8.273669,5.018383,4,7.414032,4.928888,3,7.414032,4.928888,4,6.558374,4.80709,3,6.558374,4.80709,4,5.70791,4.653162,3,5.70791,4.653162,4,-0.7726064,2.301187,3,-0.7726064,2.301187,4,-1.560687,1.933897,3,-1.560687,1.933897,4,-8.263808,0.1910857,3,-8.263808,0.1910857,4,-9.130984,0.128009,3,-9.130984,0.128009,4,0.780973,3.070225,3,0.780973,3.070225,4,6.533298E-13,2.7,3,-5.667004E-13,2.7,4,-6.54063,0.4219735,3,-6.54063,0.4219735,4,-7.399888,0.2891272,3,-7.399888,0.2891272,4,1.575332,3.410781,3,1.575332,3.410781,4,0.780973,3.070225,3,0.780973,3.070225,4,-4.004801,1.026893,3,-4.004801,1.026893,4,-4.841701,0.7911577,3,-4.841701,0.7911577,4,10,5.1,3,10,5.1,4,9.136066,5.075446,3,9.136066,5.075446,4,-5.687437,0.5894082,3,-5.687437,0.5894082,4,-6.54063,0.4219735,3,-6.54063,0.4219735,4,6.558374,4.80709,-0.09999999,5.70791,4.653162,-0.09999999,-4.841701,0.7911577,-0.09999999,-5,0.7533956,-0.09999999,-5.687437,0.5894082,-0.09999999,10,5.1,-0.09999999,9.136066,5.075446,-0.09999999,-4.004801,1.026893,-0.09999999,-4.841701,0.7911577,-0.09999999,8.273669,5.018383,-0.09999999,7.414032,4.928888,-0.09999999,9.136066,5.075446,-0.09999999,8.273669,5.018383,-0.09999999,4.295373E-13,2.7,-0.09999999,-0.7726064,2.301187,-0.09999999,-6.54063,0.4219735,-0.09999999,-7.399888,0.2891272,-0.09999999,4.027372,4.249834,-0.09999999,3.199683,4.001004,-0.09999999,-5.687437,0.5894082,-0.09999999,-6.54063,0.4219735,-0.09999999,-9.130984,0.128009,-0.09999999,-10,0.09999999,-0.09999999,1.575332,3.410781,-0.09999999,0.780973,3.070225,-0.09999999,-10,0.2,-5,-10,0.09999999,-4,-10,0,-5,-10,0,5,-10,0.09999999,-3,-10,0.09999999,-0.09999999,-10,0.09999999,0.09999999,-10,0.09999999,3,-10,0.09999999,4,-10,0.2,5,-10,0.2,4,-10,0.2,-4,3.199683,4.001004,-0.09999999,2.38195,3.721188,-0.09999999,2.38195,3.721188,-0.09999999,1.575332,3.410781,-0.09999999,4.863843,4.467322,-0.09999999,4.027372,4.249834,-0.09999999,5.70791,4.653162,-0.09999999,5,4.4973,-0.09999999,4.863843,4.467322,-0.09999999,0.780973,3.070225,-0.09999999,4.295373E-13,2.7,-0.09999999,-5.687437,0.5894082,0.09999999,-6.54063,0.4219735,0.09999999,1.575332,3.410781,0.09999999,0.780973,3.070225,0.09999999,-7.399888,0.2891272,0.09999999,-8.263808,0.1910857,0.09999999,10,5.1,0.09999999,9.136066,5.075446,0.09999999,4.863843,4.467322,0.09999999,4.027372,4.249834,0.09999999,6.558374,4.80709,0.09999999,5.70791,4.653162,0.09999999,7.414032,4.928888,0.09999999,6.558374,4.80709,0.09999999,-8.263808,0.1910857,0.09999999,-9.130984,0.128009,0.09999999,-2.362955,1.598729,0.09999999,-3.178103,1.29623,0.09999999,7.414032,4.928888,-0.09999999,6.558374,4.80709,-0.09999999,-9.130984,0.128009,0.09999999,-10,0.09999999,0.09999999,-8.263808,0.1910857,-0.09999999,-9.130984,0.128009,-0.09999999,-0.7726064,2.301187,-0.09999999,-1.560687,1.933897,-0.09999999,9.136066,5.075446,0.09999999,8.273669,5.018383,0.09999999,8.273669,5.018383,0.09999999,7.414032,4.928888,0.09999999,4.439755E-13,2.7,0.09999999,-0.7726064,2.301187,0.09999999,-1.560687,1.933897,-0.09999999,-2.362955,1.598729,-0.09999999,-1.560687,1.933897,0.09999999,-2.362955,1.598729,0.09999999,4.027372,4.249834,0.09999999,3.199683,4.001004,0.09999999,0.780973,3.070225,0.09999999,4.439755E-13,2.7,0.09999999,-0.7726064,2.301187,0.09999999,-1.560687,1.933897,0.09999999,-3.178103,1.29623,0.09999999,-4.004801,1.026893,0.09999999,2.38195,3.721188,0.09999999,1.575332,3.410781,0.09999999,-2.362955,1.598729,-0.09999999,-3.178103,1.29623,-0.09999999,-7.399888,0.2891272,-0.09999999,-8.263808,0.1910857,-0.09999999,-3.178103,1.29623,-0.09999999,-4.004801,1.026893,-0.09999999,3.199683,4.001004,0.09999999,2.38195,3.721188,0.09999999,-6.54063,0.4219735,0.09999999,-7.399888,0.2891272,0.09999999,-4.004801,1.026893,0.09999999,-4.841701,0.7911577,0.09999999,-4.841701,0.7911577,0.09999999,-5,0.7533956,0.09999999,-5.687437,0.5894082,0.09999999,5.70791,4.653162,0.09999999,5,4.4973,0.09999999,4.863843,4.467322,0.09999999 + } + PolygonVertexIndex: *1632 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,37,-40,41,40,-40,42,40,-42,43,42,-42,44,42,-44,45,44,-44,46,45,-44,47,45,-47,48,47,-47,49,47,-49,50,49,-49,51,49,-51,52,49,-52,53,52,-52,54,53,-52,55,53,-55,56,55,-55,57,55,-57,58,57,-57,59,57,-59,60,59,-59,61,59,-61,62,61,-61,63,61,-63,64,63,-63,65,63,-65,66,65,-65,67,65,-67,68,67,-67,69,67,-69,70,69,-69,71,69,-71,72,71,-71,73,71,-73,74,73,-73,75,73,-75,76,75,-75,77,75,-77,78,75,-78,79,78,-78,80,79,-78,81,79,-81,82,81,-81,83,81,-83,84,83,-83,85,83,-85,86,83,-86,87,86,-86,88,86,-88,89,86,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,97,-97,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,105,-109,110,105,-110,111,105,-111,112,105,-112,113,105,-113,114,105,-114,115,112,-112,116,114,-114,117,114,-117,118,114,-118,119,114,-119,120,114,-120,121,114,-121,122,114,-122,123,114,-123,124,114,-124,125,114,-125,126,114,-126,127,114,-127,128,114,-128,129,114,-129,130,114,-130,131,114,-131,132,114,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,152,-152,154,152,-154,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,169,-169,170,168,-170,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,233,-233,234,232,-234,235,237,-237,238,236,-238,239,238,-238,240,238,-240,241,240,-240,242,240,-242,243,242,-242,244,242,-244,245,242,-245,246,245,-245,247,245,-247,248,247,-247,249,247,-249,250,249,-249,251,250,-249,252,250,-252,253,250,-253,254,253,-253,255,253,-255,256,255,-255,257,255,-257,258,257,-257,259,257,-259,260,259,-259,261,259,-261,262,261,-261,263,261,-263,264,263,-263,265,263,-265,266,265,-265,267,265,-267,268,267,-267,269,267,-269,270,269,-269,271,269,-271,272,271,-271,273,271,-273,274,273,-273,275,273,-275,276,275,-275,277,276,-275,278,276,-278,279,276,-279,280,279,-279,281,279,-281,282,281,-281,283,281,-283,284,283,-283,285,284,-283,286,284,-286,287,286,-286,288,287,-286,289,291,-291,292,290,-292,293,295,-295,295,296,-295,294,296,-298,297,296,-299,298,296,-300,299,296,-301,300,296,-302,296,302,-302,301,302,-304,304,303,-303,305,307,-307,308,306,-308,309,311,-311,312,310,-312,313,315,-315,316,314,-316,317,319,-319,320,318,-320,321,323,-323,324,322,-324,325,324,-324,326,324,-326,327,329,-329,330,328,-330,331,333,-333,334,332,-334,335,334,-334,336,334,-336,337,339,-339,340,338,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348,349,351,-351,352,350,-352,353,355,-355,356,354,-356,357,356,-356,358,357,-356,359,358,-356,360,359,-356,361,353,-355,362,353,-362,363,353,-363,364,357,-359,365,359,-361,366,365,-361,367,366,-361,368,367,-361,369,368,-361,370,369,-361,371,370,-361,372,371,-361,373,372,-361,374,373,-361,375,374,-361,376,375,-361,377,376,-361,378,377,-361,379,378,-361,380,379,-361,381,380,-361,382,384,-384,385,383,-385,386,388,-388,389,387,-389,390,392,-392,393,391,-393,394,396,-396,397,395,-397,398,395,-398,399,398,-398,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,432,434,-434,435,433,-435,436,438,-438,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,454,-454,455,453,-455,456,453,-456,457,456,-456,458,460,-460,461,459,-461,462,464,-464,465,463,-465,466,468,-468,469,467,-469,470,472,-472,473,471,-473,474,476,-476,477,475,-477,478,480,-480,481,479,-481,482,484,-484,485,483,-485,486,488,-488,489,487,-489,490,492,-492,493,491,-493,494,496,-496,497,495,-497,498,497,-497,499,497,-499,500,502,-502,503,501,-503,504,506,-506,507,505,-507,508,510,-510,511,509,-511,512,511,-511,513,511,-513,514,516,-516,517,515,-517,518,520,-520,521,519,-521,522,524,-524,525,523,-525,526,528,-528,529,527,-529,530,532,-532,533,531,-533,534,536,-536,537,535,-537,538,540,-540,541,539,-541,542,544,-544,545,543,-545,546,548,-548,549,547,-549,550,552,-552,553,551,-553,554,556,-556,557,555,-557,558,560,-560,561,559,-561,562,564,-564,565,563,-565,566,568,-568,569,567,-569,570,572,-572,573,571,-573,574,576,-576,577,575,-577,578,580,-580,581,579,-581,582,470,-584,471,583,-471,584,394,-586,395,585,-395,586,585,-396,398,586,-396,587,474,-589,475,588,-475,589,382,-591,383,590,-383,591,412,-593,413,592,-413,593,466,-595,467,594,-467,595,424,-597,425,596,-425,597,408,-599,409,598,-409,599,448,-601,449,600,-449,601,416,-603,417,602,-417,603,436,-605,437,604,-437,605,432,-607,433,606,-433,607,609,-609,610,608,-610,611,608,-611,612,611,-611,613,612,-611,614,613,-611,615,614,-611,610,616,-616,617,615,-617,608,618,-608,619,420,-621,421,620,-421,621,458,-623,459,622,-459,623,444,-625,445,624,-445,625,452,-627,453,626,-453,627,626,-454,456,627,-454,628,462,-630,463,629,-463,578,630,-581,631,580,-631,566,632,-569,633,568,-633,538,634,-541,635,540,-635,574,636,-577,637,576,-637,518,638,-521,639,520,-639,546,640,-549,641,548,-641,490,642,-493,643,492,-643,554,644,-557,645,556,-645,514,646,-517,647,516,-647,648,440,-650,441,649,-441,530,650,-533,651,532,-651,652,404,-654,405,653,-405,654,478,-656,479,655,-479,526,656,-529,657,528,-657,542,658,-545,659,544,-659,522,660,-525,661,524,-661,662,428,-664,429,663,-429,500,664,-503,665,502,-665,482,666,-485,667,484,-667,558,668,-561,669,560,-669,550,670,-553,671,552,-671,534,672,-537,673,536,-673,504,674,-507,675,506,-675,676,386,-678,387,677,-387,678,400,-680,401,679,-401,680,390,-682,391,681,-391,486,682,-489,683,488,-683,562,684,-565,685,564,-685,570,686,-573,687,572,-687,508,688,-511,689,510,-689,512,510,-690,690,512,-690,494,691,-497,692,496,-692,498,496,-693,693,498,-693,664,662,-666,663,665,-663,691,625,-693,626,692,-626,693,692,-627,627,693,-627,672,680,-674,681,673,-681,644,652,-646,653,645,-653,638,623,-640,624,639,-624,656,593,-658,594,657,-594,660,595,-662,596,661,-596,666,599,-668,600,667,-600,686,589,-688,590,687,-590,630,601,-632,602,631,-602,640,582,-642,583,641,-583,634,678,-636,679,635,-679,646,676,-648,677,647,-677,682,619,-684,620,683,-620,642,648,-644,649,643,-649,688,584,-690,585,689,-585,690,689,-586,586,690,-586,670,654,-672,655,671,-655,650,603,-652,604,651,-604,674,621,-676,622,675,-622,658,591,-660,592,659,-592,668,628,-670,629,669,-629,684,597,-686,598,685,-598,632,605,-634,606,633,-606,636,587,-638,588,637,-588 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *4896 { + a: -0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.02840886,0.9995964,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.02840886,0.9995964,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.02840886,0.9995964,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.02840886,0.9995964,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1388 { + a: -19.68504,-25.13418,-15.74803,-25.13418,-19.68504,-28.55727,-15.74803,-28.55727,-19.68504,31.68792,-15.74803,31.68792,-19.68504,28.28523,-15.74803,28.28523,-19.68504,-28.77486,-15.74803,-28.77486,-19.68504,-32.19796,-15.74803,-32.19796,-19.68504,-2.582779,-15.74803,-2.582779,-19.68504,-6.005876,-15.74803,-6.005876,-19.68504,-13.97349,-15.74803,-13.97349,-19.68504,-17.39658,-15.74803,-17.39658,-19.68504,8.124769,-15.74803,8.124769,-19.68504,4.722081,-15.74803,4.722081,-19.68504,-10.19394,-15.74803,-10.19394,-19.68504,-13.61703,-15.74803,-13.61703,39.37008,-19.68504,-39.37008,-19.68504,39.37008,19.68504,-39.37008,19.68504,-19.68504,5.056387,-15.74803,5.056387,-19.68504,1.633291,-15.74803,1.633291,-39.37008,0.3937008,-39.37008,0.7874016,-35.94876,0.5039724,-32.53468,0.7523058,-35.94876,0.8976732,-29.13342,1.138296,-32.53468,1.146007,-25.75051,1.661313,-29.13342,1.531997,-25.75051,2.055014,-22.39148,2.320504,-22.39148,2.714205,-19.68504,2.966125,-19.68504,3.359825,-19.06182,3.114794,-15.76693,4.042887,-19.06182,3.508495,-15.76693,4.436588,-12.51222,5.10327,-12.51222,5.49697,-9.302973,6.294211,-9.302973,6.687912,-6.144435,7.61377,-6.144435,8.00747,-3.041758,9.059793,-3.041758,9.453493,-9.673907E-13,10.62992,-9.673907E-13,11.02362,3.074697,12.0875,3.074697,12.4812,6.202093,13.42827,6.202093,13.82197,9.377754,14.65035,9.377754,15.04405,12.59718,15.75199,12.59718,16.14569,15.85579,16.73163,15.85579,17.12533,19.14899,17.58788,19.14899,17.98158,19.68504,17.70591,22.47208,18.31954,19.68504,18.09961,22.47208,18.71324,25.82037,18.92555,25.82037,19.31925,29.1891,19.40507,29.1891,19.79877,32.5735,19.75741,35.96877,19.98207,32.5735,20.15111,39.37008,20.07874,39.37008,20.47244,35.96877,20.37577,-19.68504,20.11488,-15.74803,20.11488,-19.68504,16.71219,-15.74803,16.71219,-19.68504,-17.72745,-15.74803,-17.72745,-19.68504,-18.36816,-15.74803,-18.36816,-19.68504,-21.15055,-15.74803,-21.15055,-19.68504,17.14596,-15.74803,17.14596,-19.68504,13.74327,-15.74803,13.74327,39.37008,0,-39.37008,0,39.37008,0.7874016,35.94876,0.8976732,32.53468,1.146007,29.13342,1.531997,25.75051,2.055014,22.39148,2.714205,19.06182,3.508495,15.76693,4.436588,-39.37008,20.47244,19.68504,3.359825,12.51222,5.49697,9.302973,6.687912,6.144435,8.00747,3.041758,9.453493,9.498902E-13,11.02362,-3.074697,12.4812,-6.202093,13.82197,-9.377754,15.04405,-12.59718,16.14569,-15.85579,17.12533,-19.14899,17.98158,-19.68504,18.09961,-22.47208,18.71324,-25.82037,19.31925,-29.1891,19.79877,-32.5735,20.15111,-35.96877,20.37577,-19.68504,28.84831,-15.74803,28.84831,-19.68504,25.44562,-15.74803,25.44562,-19.68504,-21.4497,-15.74803,-21.4497,-19.68504,-24.8728,-15.74803,-24.8728,-19.68504,-35.90118,-15.74803,-35.90118,-19.68504,-39.32428,-15.74803,-39.32428,-19.68504,-32.36581,-15.74803,-32.36581,-19.68504,-35.78891,-15.74803,-35.78891,-19.68504,25.97021,-15.74803,25.97021,-19.68504,23.11641,-15.74803,23.11641,-19.68504,22.56752,-15.74803,22.56752,-19.68504,39.93579,-15.74803,39.93579,-19.68504,36.5331,-15.74803,36.5331,-19.68504,11.14665,-15.74803,11.14665,-19.68504,7.74396,-15.74803,7.74396,-19.68504,-6.39497,-15.74803,-6.39497,-19.68504,-9.818068,-15.74803,-9.818068,-19.68504,1.236417,-15.74803,1.236417,-19.68504,-2.18668,-15.74803,-2.18668,-19.68504,34.485,-15.74803,34.485,-19.68504,31.08231,-15.74803,31.08231,15.74803,-21.4497,19.68504,-21.4497,15.74803,-24.8728,19.68504,-24.8728,-19.68504,23.05769,-15.74803,23.05769,-19.68504,19.655,-15.74803,19.655,15.74803,17.14596,19.68504,17.14596,15.74803,13.74327,19.68504,13.74327,15.74803,28.84831,19.68504,28.84831,15.74803,25.44562,19.68504,25.44562,15.74803,14.15513,19.68504,14.15513,15.74803,10.75245,19.68504,10.75245,15.74803,-6.39497,19.68504,-6.39497,15.74803,-9.818068,19.68504,-9.818068,15.74803,-28.77486,19.68504,-28.77486,15.74803,-32.19796,19.68504,-32.19796,15.74803,8.124769,19.68504,8.124769,15.74803,4.722081,19.68504,4.722081,-19.68504,14.15513,-15.74803,14.15513,-19.68504,10.75245,-15.74803,10.75245,15.74803,20.11488,19.68504,20.11488,15.74803,16.71219,19.68504,16.71219,15.74803,-35.90118,19.68504,-35.90118,15.74803,-39.32428,19.68504,-39.32428,15.74803,31.68792,19.68504,31.68792,15.74803,28.28523,19.68504,28.28523,15.74803,37.23559,19.68504,37.23559,15.74803,33.8329,19.68504,33.8329,15.74803,-2.582779,19.68504,-2.582779,15.74803,-6.005876,19.68504,-6.005876,15.74803,-32.36581,19.68504,-32.36581,15.74803,-35.78891,19.68504,-35.78891,39.37008,0.3937008,35.94876,0.5039724,39.37008,0.7874016,32.53468,0.7523058,35.94876,0.8976732,29.13342,1.138296,32.53468,1.146007,25.75051,1.661313,29.13342,1.531997,25.75051,2.055014,22.39148,2.320504,22.39148,2.714205,19.68504,2.966125,19.68504,3.359825,19.06182,3.114794,15.76693,4.042887,19.06182,3.508495,15.76693,4.436588,12.51222,5.10327,12.51222,5.49697,9.302973,6.294211,9.302973,6.687912,6.144435,7.61377,6.144435,8.00747,3.041758,9.059793,3.041758,9.453493,9.57434E-13,10.62992,9.57434E-13,11.02362,-3.074697,12.0875,-3.074697,12.4812,-6.202093,13.42827,-6.202093,13.82197,-9.377754,14.65035,-9.377754,15.04405,-12.59718,15.75199,-12.59718,16.14569,-15.85579,16.73163,-15.85579,17.12533,-19.14899,17.58788,-19.14899,17.98158,-19.68504,17.70591,-22.47208,18.31954,-19.68504,18.09961,-22.47208,18.71324,-25.82037,18.92555,-25.82037,19.31925,-29.1891,19.40507,-29.1891,19.79877,-32.5735,19.75741,-35.96877,19.98207,-32.5735,20.15111,-39.37008,20.07874,-39.37008,20.47244,-35.96877,20.37577,15.74803,34.485,19.68504,34.485,15.74803,31.08231,19.68504,31.08231,-15.74803,20.47244,-15.74803,20.07874,-19.68504,20.47244,-19.68504,1.94406E-12,-11.81102,20.07874,-0.3937008,20.07874,0.3937008,20.07874,11.81102,20.07874,15.74803,20.07874,19.68504,1.94406E-12,15.74803,20.47244,19.68504,20.47244,15.74803,-10.19394,19.68504,-10.19394,15.74803,-13.61703,19.68504,-13.61703,-19.68504,37.23559,-15.74803,37.23559,-19.68504,33.8329,-15.74803,33.8329,15.74803,-13.97349,19.68504,-13.97349,15.74803,-17.39658,19.68504,-17.39658,15.74803,39.93579,19.68504,39.93579,15.74803,36.5331,19.68504,36.5331,15.74803,25.97021,19.68504,25.97021,15.74803,23.11641,19.68504,23.11641,15.74803,22.56752,19.68504,22.56752,15.74803,23.05769,19.68504,23.05769,15.74803,19.655,19.68504,19.655,15.74803,-17.72745,19.68504,-17.72745,15.74803,-18.36816,19.68504,-18.36816,15.74803,-21.15055,19.68504,-21.15055,15.74803,-25.13418,19.68504,-25.13418,15.74803,-28.55727,19.68504,-28.55727,15.74803,1.236417,19.68504,1.236417,15.74803,-2.18668,19.68504,-2.18668,15.74803,5.056387,19.68504,5.056387,15.74803,1.633291,19.68504,1.633291,15.74803,11.14665,19.68504,11.14665,15.74803,7.74396,19.68504,7.74396,-39.37008,3.031517E-29,-29.13342,1.531997,39.37008,3.031517E-29,-25.75051,2.055014,-22.39148,2.714205,-19.06182,3.508495,-15.76693,4.436588,39.37008,20.47244,-32.53468,1.146007,-35.94876,0.8976732,-39.37008,0.7874016,-19.68504,3.359825,-12.51222,5.49697,-9.302973,6.687912,-6.144435,8.00747,-3.041758,9.453493,-9.543643E-13,11.02362,3.074697,12.4812,6.202093,13.82197,9.377754,15.04405,12.59718,16.14569,15.85579,17.12533,19.14899,17.98158,19.68504,18.09961,22.47208,18.71324,25.82037,19.31925,29.1891,19.79877,32.5735,20.15111,35.96877,20.37577,-11.81102,-14.08023,-11.81102,-17.50333,-15.74803,-14.08023,-15.74803,-17.50333,-11.81102,-6.531944,-11.81102,-9.955041,-15.74803,-6.531944,-15.74803,-9.955041,-11.81102,-10.3159,-11.81102,-13.73899,-15.74803,-10.3159,-15.74803,-13.73899,-11.81102,-17.8188,-11.81102,-18.45951,-15.74803,-17.8188,-15.74803,-18.45951,-11.81102,-21.2419,-15.74803,-21.2419,-11.81102,-28.81925,-11.81102,-32.24235,-15.74803,-28.81925,-15.74803,-32.24235,-11.81102,-32.39437,-11.81102,-35.81747,-15.74803,-32.39437,-15.74803,-35.81747,-11.81102,-25.19433,-11.81102,-28.61743,-15.74803,-25.19433,-15.74803,-28.61743,-11.81102,34.44423,-11.81102,31.04155,-15.74803,34.44423,-15.74803,31.04155,-11.81102,-21.52552,-11.81102,-24.94861,-15.74803,-21.52552,-15.74803,-24.94861,-11.81102,17.01849,-11.81102,13.61581,-15.74803,17.01849,-15.74803,13.61581,-11.81102,4.875802,-11.81102,1.452705,-15.74803,4.875802,-15.74803,1.452705,-11.81102,-2.734545,-11.81102,-6.157642,-15.74803,-2.734545,-15.74803,-6.157642,-11.81102,10.99152,-11.81102,7.588829,-15.74803,10.99152,-15.74803,7.588829,-11.81102,-35.91386,-11.81102,-39.33696,-15.74803,-35.91386,-15.74803,-39.33696,-11.81102,31.63244,-11.81102,28.22975,-15.74803,31.63244,-15.74803,28.22975,-11.81102,22.95861,-11.81102,19.55593,-15.74803,22.95861,-15.74803,19.55593,-11.81102,20.00153,-11.81102,16.59884,-15.74803,20.00153,-15.74803,16.59884,-11.81102,25.88555,-11.81102,23.03176,-15.74803,25.88555,-15.74803,23.03176,-11.81102,22.48286,-15.74803,22.48286,-11.81102,14.01374,-11.81102,10.61105,-15.74803,14.01374,-15.74803,10.61105,-11.81102,7.956124,-11.81102,4.553435,-15.74803,7.956124,-15.74803,4.553435,-11.81102,37.20959,-11.81102,33.80691,-15.74803,37.20959,-15.74803,33.80691,-11.81102,28.77819,-11.81102,25.37551,-15.74803,28.77819,-15.74803,25.37551,-11.81102,39.9246,-11.81102,36.52192,-15.74803,39.9246,-15.74803,36.52192,-11.81102,1.070105,-11.81102,-2.352992,-15.74803,1.070105,-15.74803,-2.352992,11.81102,20.00153,15.74803,20.00153,11.81102,16.59884,15.74803,16.59884,11.81102,17.01849,15.74803,17.01849,11.81102,13.61581,15.74803,13.61581,11.81102,31.63244,15.74803,31.63244,11.81102,28.22975,15.74803,28.22975,11.81102,25.88555,15.74803,25.88555,11.81102,23.03176,15.74803,23.03176,11.81102,22.48286,15.74803,22.48286,11.81102,-2.734545,15.74803,-2.734545,11.81102,-6.157642,15.74803,-6.157642,11.81102,14.01374,15.74803,14.01374,11.81102,10.61105,15.74803,10.61105,11.81102,-17.8188,15.74803,-17.8188,11.81102,-18.45951,15.74803,-18.45951,11.81102,-21.2419,15.74803,-21.2419,11.81102,-6.531944,15.74803,-6.531944,11.81102,-9.955041,15.74803,-9.955041,11.81102,22.95861,15.74803,22.95861,11.81102,19.55593,15.74803,19.55593,11.81102,4.875802,15.74803,4.875802,11.81102,1.452705,15.74803,1.452705,11.81102,37.20959,15.74803,37.20959,11.81102,33.80691,15.74803,33.80691,11.81102,-35.91386,15.74803,-35.91386,11.81102,-39.33696,15.74803,-39.33696,11.81102,-10.3159,15.74803,-10.3159,11.81102,-13.73899,15.74803,-13.73899,11.81102,-28.81925,15.74803,-28.81925,11.81102,-32.24235,15.74803,-32.24235,11.81102,34.44423,15.74803,34.44423,11.81102,31.04155,15.74803,31.04155,11.81102,28.77819,15.74803,28.77819,11.81102,25.37551,15.74803,25.37551,11.81102,1.070105,15.74803,1.070105,11.81102,-2.352992,15.74803,-2.352992,11.81102,-32.39437,15.74803,-32.39437,11.81102,-35.81747,15.74803,-35.81747,11.81102,7.956124,15.74803,7.956124,11.81102,4.553435,15.74803,4.553435,11.81102,-25.19433,15.74803,-25.19433,11.81102,-28.61743,15.74803,-28.61743,11.81102,10.99152,15.74803,10.99152,11.81102,7.588829,15.74803,7.588829,11.81102,-14.08023,15.74803,-14.08023,11.81102,-17.50333,15.74803,-17.50333,11.81102,39.9246,15.74803,39.9246,11.81102,36.52192,15.74803,36.52192,11.81102,-21.52552,15.74803,-21.52552,11.81102,-24.94861,15.74803,-24.94861,-0.3937008,28.77819,-0.3937008,25.37551,-0.3937008,-17.8188,-0.3937008,-18.45951,-0.3937008,-21.2419,-0.3937008,39.9246,-0.3937008,36.52192,-0.3937008,-14.08023,-0.3937008,-17.50333,-0.3937008,34.44423,-0.3937008,31.04155,-0.3937008,37.20959,-0.3937008,33.80691,-0.3937008,4.875802,-0.3937008,1.452705,-0.3937008,-25.19433,-0.3937008,-28.61743,-0.3937008,20.00153,-0.3937008,16.59884,-0.3937008,-21.52552,-0.3937008,-24.94861,-0.3937008,-35.91386,-0.3937008,-39.33696,-0.3937008,10.99152,-0.3937008,7.588829,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,3.084591E-11,19.68504,3.084591E-11,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,-15.74803,0.7874016,-0.3937008,17.01849,-0.3937008,13.61581,-0.3937008,14.01374,-0.3937008,10.61105,-0.3937008,22.95861,-0.3937008,19.55593,-0.3937008,25.88555,-0.3937008,23.03176,-0.3937008,22.48286,-0.3937008,7.956124,-0.3937008,4.553435,0.3937008,-21.52552,0.3937008,-24.94861,0.3937008,10.99152,0.3937008,7.588829,0.3937008,-28.81925,0.3937008,-32.24235,0.3937008,39.9246,0.3937008,36.52192,0.3937008,22.95861,0.3937008,19.55593,0.3937008,28.77819,0.3937008,25.37551,0.3937008,31.63244,0.3937008,28.22975,0.3937008,-32.39437,0.3937008,-35.81747,0.3937008,-6.531944,0.3937008,-9.955041,-0.3937008,31.63244,-0.3937008,28.22975,0.3937008,-35.91386,0.3937008,-39.33696,-0.3937008,-32.39437,-0.3937008,-35.81747,-0.3937008,1.070105,-0.3937008,-2.352992,0.3937008,37.20959,0.3937008,33.80691,0.3937008,34.44423,0.3937008,31.04155,0.3937008,4.875802,0.3937008,1.452705,-0.3937008,-2.734545,-0.3937008,-6.157642,0.3937008,-2.734545,0.3937008,-6.157642,0.3937008,20.00153,0.3937008,16.59884,0.3937008,7.956124,0.3937008,4.553435,0.3937008,1.070105,0.3937008,-2.352992,0.3937008,-10.3159,0.3937008,-13.73899,0.3937008,14.01374,0.3937008,10.61105,-0.3937008,-6.531944,-0.3937008,-9.955041,-0.3937008,-28.81925,-0.3937008,-32.24235,-0.3937008,-10.3159,-0.3937008,-13.73899,0.3937008,17.01849,0.3937008,13.61581,0.3937008,-25.19433,0.3937008,-28.61743,0.3937008,-14.08023,0.3937008,-17.50333,0.3937008,-17.8188,0.3937008,-18.45951,0.3937008,-21.2419,0.3937008,25.88555,0.3937008,23.03176,0.3937008,22.48286 + } + UVIndex: *1632 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,37,39,41,40,39,42,40,41,43,42,41,44,42,43,45,44,43,46,45,43,47,45,46,48,47,46,49,47,48,50,49,48,51,49,50,52,49,51,53,52,51,54,53,51,55,53,54,56,55,54,57,55,56,58,57,56,59,57,58,60,59,58,61,59,60,62,61,60,63,61,62,64,63,62,65,63,64,66,65,64,67,65,66,68,67,66,69,67,68,70,69,68,71,69,70,72,71,70,73,71,72,74,73,72,75,73,74,76,75,74,77,75,76,78,75,77,79,78,77,80,79,77,81,79,80,82,81,80,83,81,82,84,83,82,85,83,84,86,83,85,87,86,85,88,86,87,89,86,88,90,92,91,93,91,92,94,96,95,97,95,96,98,97,96,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,105,108,110,105,109,111,105,110,112,105,111,113,105,112,114,105,113,115,112,111,116,114,113,117,114,116,118,114,117,119,114,118,120,114,119,121,114,120,122,114,121,123,114,122,124,114,123,125,114,124,126,114,125,127,114,126,128,114,127,129,114,128,130,114,129,131,114,130,132,114,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,152,151,154,152,153,155,157,156,158,156,157,159,161,160,162,160,161,163,165,164,166,164,165,167,169,168,170,168,169,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,180,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,201,200,202,200,201,203,205,204,206,204,205,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,218,216,217,219,221,220,222,220,221,223,225,224,226,224,225,227,229,228,230,228,229,231,233,232,234,232,233,235,237,236,238,236,237,239,238,237,240,238,239,241,240,239,242,240,241,243,242,241,244,242,243,245,242,244,246,245,244,247,245,246,248,247,246,249,247,248,250,249,248,251,250,248,252,250,251,253,250,252,254,253,252,255,253,254,256,255,254,257,255,256,258,257,256,259,257,258,260,259,258,261,259,260,262,261,260,263,261,262,264,263,262,265,263,264,266,265,264,267,265,266,268,267,266,269,267,268,270,269,268,271,269,270,272,271,270,273,271,272,274,273,272,275,273,274,276,275,274,277,276,274,278,276,277,279,276,278,280,279,278,281,279,280,282,281,280,283,281,282,284,283,282,285,284,282,286,284,285,287,286,285,288,287,285,289,291,290,292,290,291,293,295,294,295,296,294,294,296,297,297,296,298,298,296,299,299,296,300,300,296,301,296,302,301,301,302,303,304,303,302,305,307,306,308,306,307,309,311,310,312,310,311,313,315,314,316,314,315,317,319,318,320,318,319,321,323,322,324,322,323,325,324,323,326,324,325,327,329,328,330,328,329,331,333,332,334,332,333,335,334,333,336,334,335,337,339,338,340,338,339,341,343,342,344,342,343,345,347,346,348,346,347,349,351,350,352,350,351,353,355,354,356,354,355,357,356,355,358,357,355,359,358,355,360,359,355,361,353,354,362,353,361,363,353,362,364,357,358,365,359,360,366,365,360,367,366,360,368,367,360,369,368,360,370,369,360,371,370,360,372,371,360,373,372,360,374,373,360,375,374,360,376,375,360,377,376,360,378,377,360,379,378,360,380,379,360,381,380,360,382,384,383,385,383,384,386,388,387,389,387,388,390,392,391,393,391,392,394,396,395,397,395,396,398,395,397,399,398,397,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,432,434,433,435,433,434,436,438,437,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,448,450,449,451,449,450,452,454,453,455,453,454,456,453,455,457,456,455,458,460,459,461,459,460,462,464,463,465,463,464,466,468,467,469,467,468,470,472,471,473,471,472,474,476,475,477,475,476,478,480,479,481,479,480,482,484,483,485,483,484,486,488,487,489,487,488,490,492,491,493,491,492,494,496,495,497,495,496,498,497,496,499,497,498,500,502,501,503,501,502,504,506,505,507,505,506,508,510,509,511,509,510,512,511,510,513,511,512,514,516,515,517,515,516,518,520,519,521,519,520,522,524,523,525,523,524,526,528,527,529,527,528,530,532,531,533,531,532,534,536,535,537,535,536,538,540,539,541,539,540,542,544,543,545,543,544,546,548,547,549,547,548,550,552,551,553,551,552,554,556,555,557,555,556,558,560,559,561,559,560,562,564,563,565,563,564,566,568,567,569,567,568,570,572,571,573,571,572,574,576,575,577,575,576,578,580,579,581,579,580,582,470,583,471,583,470,584,394,585,395,585,394,586,585,395,398,586,395,587,474,588,475,588,474,589,382,590,383,590,382,591,412,592,413,592,412,593,466,594,467,594,466,595,424,596,425,596,424,597,408,598,409,598,408,599,448,600,449,600,448,601,416,602,417,602,416,603,436,604,437,604,436,605,432,606,433,606,432,607,609,608,610,608,609,611,608,610,612,611,610,613,612,610,614,613,610,615,614,610,610,616,615,617,615,616,608,618,607,619,420,620,421,620,420,621,458,622,459,622,458,623,444,624,445,624,444,625,452,626,453,626,452,627,626,453,456,627,453,628,462,629,463,629,462,578,630,580,631,580,630,566,632,568,633,568,632,538,634,540,635,540,634,574,636,576,637,576,636,518,638,520,639,520,638,546,640,548,641,548,640,490,642,492,643,492,642,554,644,556,645,556,644,514,646,516,647,516,646,648,440,649,441,649,440,530,650,532,651,532,650,652,404,653,405,653,404,654,478,655,479,655,478,526,656,528,657,528,656,542,658,544,659,544,658,522,660,524,661,524,660,662,428,663,429,663,428,500,664,502,665,502,664,482,666,484,667,484,666,558,668,560,669,560,668,550,670,552,671,552,670,534,672,536,673,536,672,504,674,506,675,506,674,676,386,677,387,677,386,678,400,679,401,679,400,680,390,681,391,681,390,486,682,488,683,488,682,562,684,564,685,564,684,570,686,572,687,572,686,508,688,510,689,510,688,512,510,689,690,512,689,494,691,496,692,496,691,498,496,692,693,498,692,664,662,665,663,665,662,691,625,692,626,692,625,693,692,626,627,693,626,672,680,673,681,673,680,644,652,645,653,645,652,638,623,639,624,639,623,656,593,657,594,657,593,660,595,661,596,661,595,666,599,667,600,667,599,686,589,687,590,687,589,630,601,631,602,631,601,640,582,641,583,641,582,634,678,635,679,635,678,646,676,647,677,647,676,682,619,683,620,683,619,642,648,643,649,643,648,688,584,689,585,689,584,690,689,585,586,690,585,670,654,671,655,671,654,650,603,651,604,651,603,674,621,675,622,675,621,658,591,659,592,659,591,668,628,669,629,669,628,684,597,685,598,685,597,632,605,633,606,633,605,636,587,637,588,637,587 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *544 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_slantCurve, Model::RootNode + C: "OO",4929804188657349333,0 + + ;Geometry::, Model::Mesh road_slantCurve + C: "OO",5274230155881254970,4929804188657349333 + + ;Material::pavement, Model::Mesh road_slantCurve + C: "OO",17046,4929804188657349333 + + ;Material::asphaltEdge, Model::Mesh road_slantCurve + C: "OO",17042,4929804188657349333 + + ;Material::asphalt, Model::Mesh road_slantCurve + C: "OO",9934,4929804188657349333 + + ;Material::line, Model::Mesh road_slantCurve + C: "OO",9174,4929804188657349333 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurve.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurve.fbx.import new file mode 100644 index 0000000..8c837c7 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurve.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cmaa6ddii7ro7" +path="res://.godot/imported/road_slantCurve.fbx-a5348e32c9a320e574497cf85e351617.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurve.fbx" +dest_files=["res://.godot/imported/road_slantCurve.fbx-a5348e32c9a320e574497cf85e351617.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurveBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurveBarrier.fbx new file mode 100644 index 0000000..8e441f9 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurveBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 22 + Millisecond: 589 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_slantCurveBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_slantCurveBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5159808181603209148, "Model::road_slantCurveBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5297584103320837272, "Geometry::", "Mesh" { + Vertices: *2160 { + a: -3.6258E-12,2.6,-4.5,-2.986908E-12,3.4,-4.7,0.780973,2.970224,-4.5,0.780973,3.770224,-4.7,0.780973,2.970224,-4.5,0.780973,3.770224,-4.7,1.575332,3.310781,-4.5,1.575332,4.110782,-4.7,-6.54063,0.3219735,-4.5,-6.54063,1.121974,-4.7,-5.687437,0.4894081,-4.5,-5.687437,1.289408,-4.7,-5.687437,0.4894081,-4.5,-5.687437,1.289408,-4.7,-5,0.6533956,-4.5,-4.841701,0.6911577,-4.5,-4.841701,1.491158,-4.7,-7.399888,0.1891272,-4.5,-7.399888,0.9891272,-4.7,-6.54063,0.3219735,-4.5,-6.54063,1.121974,-4.7,-4.841701,0.6911577,-4.5,-4.841701,1.491158,-4.7,-4.004801,0.9268934,-4.5,-4.004801,1.726893,-4.7,-4.004801,0.9268934,-4.5,-4.004801,1.726893,-4.7,-3.178103,1.19623,-4.5,-3.178103,1.99623,-4.7,-9.130984,0.02800899,-4.5,-9.130984,0.8280089,-4.7,-8.263808,0.09108566,-4.5,-8.263808,0.8910857,-4.7,4.027372,4.149833,-4.5,4.027372,4.949833,-4.7,4.863843,4.367322,-4.5,4.863843,5.167322,-4.7,5.70791,4.553163,-4.5,5.70791,5.353162,-4.7,6.558374,4.70709,-4.5,6.558374,5.50709,-4.7,1.575332,3.310781,-4.5,1.575332,4.110782,-4.7,2.38195,3.621188,-4.5,2.38195,4.421188,-4.7,4.863843,4.367322,-4.5,4.863843,5.167322,-4.7,5,4.397301,-4.5,5.70791,4.553163,-4.5,5.70791,5.353162,-4.7,5,5.1973,-4.7,-0.7726064,2.201187,-4.5,-0.7726064,3.001187,-4.7,-3.6258E-12,2.6,-4.5,-2.986908E-12,3.4,-4.7,-3.178103,1.19623,-5,-4.004801,0.9268934,-5,-3.178103,1.19623,-4.5,-4.004801,0.9268934,-4.5,-1.560687,1.833898,-5,-2.362955,1.49873,-5,-1.560687,1.833898,-4.5,-2.362955,1.49873,-4.5,-4.841701,0.6911577,-5,-5,0.6533956,-5,-4.841701,0.6911577,-4.5,-5,0.6533956,-4.5,-5.687437,0.4894081,-5,-5.687437,0.4894081,-4.5,-4.004801,0.9268934,-5,-4.841701,0.6911577,-5,-4.004801,0.9268934,-4.5,-4.841701,0.6911577,-4.5,-5.687437,0.4894081,-5,-6.54063,0.3219735,-5,-5.687437,0.4894081,-4.5,-6.54063,0.3219735,-4.5,-2.362955,1.49873,-5,-3.178103,1.19623,-5,-2.362955,1.49873,-4.5,-3.178103,1.19623,-4.5,-0.7726064,2.201187,-5,-1.560687,1.833898,-5,-0.7726064,2.201187,-4.5,-1.560687,1.833898,-4.5,-7.399888,0.1891272,-5,-8.263808,0.09108566,-5,-7.399888,0.1891272,-4.5,-8.263808,0.09108566,-4.5,-4.004801,1.726893,-4.7,-4.841701,1.491158,-4.7,-4.004801,1.726893,-5,-4.841701,1.491158,-5,-3.178103,1.99623,-4.7,-4.004801,1.726893,-4.7,-3.178103,1.99623,-5,-4.004801,1.726893,-5,-7.399888,0.9891272,-5,-7.399888,0.9891272,-4.7,-8.263808,0.8910857,-5,-8.263808,0.8910857,-4.7,-10,0,-5,-9.130984,0.02800899,-5,-10,0.8,-5,-8.263808,0.09108566,-5,-7.399888,0.1891272,-5,-6.54063,0.3219735,-5,-5.687437,0.4894081,-5,-5,0.6533956,-5,-4.841701,0.6911577,-5,-4.004801,0.9268934,-5,-9.130984,0.8280089,-5,-8.263808,0.8910857,-5,-7.399888,0.9891272,-5,-3.178103,1.19623,-5,-6.54063,1.121974,-5,-5.687437,1.289408,-5,-2.362955,1.49873,-5,-5,1.453396,-5,-4.841701,1.491158,-5,-4.004801,1.726893,-5,-1.560687,1.833898,-5,-3.178103,1.99623,-5,-0.7726064,2.201187,-5,-2.362955,2.29873,-5,-2.999542E-12,2.6,-5,-1.560687,2.633897,-5,0.780973,2.970224,-5,-0.7726064,3.001187,-5,1.575332,3.310781,-5,-2.990518E-12,3.4,-5,2.38195,3.621188,-5,0.780973,3.770224,-5,3.199683,3.901004,-5,1.575332,4.110782,-5,4.027372,4.149833,-5,2.38195,4.421188,-5,4.863843,4.367322,-5,5,4.397301,-5,5.70791,4.553163,-5,3.199683,4.701005,-5,6.558374,4.70709,-5,4.027372,4.949833,-5,7.414032,4.828888,-5,8.273669,4.918383,-5,9.136066,4.975447,-5,4.863843,5.167322,-5,10,5,-5,10,5.8,-5,5,5.1973,-5,5.70791,5.353162,-5,6.558374,5.50709,-5,7.414032,5.628888,-5,8.273669,5.718383,-5,9.136066,5.775447,-5,-8.263808,0.8910857,-5,-8.263808,0.8910857,-4.7,-9.130984,0.8280089,-5,-9.130984,0.8280089,-4.7,-6.54063,1.121974,-5,-6.54063,1.121974,-4.7,-7.399888,0.9891272,-5,-7.399888,0.9891272,-4.7,-4.841701,1.491158,-4.7,-5.687437,1.289408,-4.7,-4.841701,1.491158,-5,-5,1.453396,-5,-5.687437,1.289408,-5,-5.687437,1.289408,-4.7,-6.54063,1.121974,-4.7,-5.687437,1.289408,-5,-6.54063,1.121974,-5,-9.130984,0.8280089,-5,-9.130984,0.8280089,-4.7,-10,0.8,-5,-10,0.8,-4.7,6.558374,4.70709,-4.5,6.558374,5.50709,-4.7,7.414032,4.828888,-4.5,7.414032,5.628888,-4.7,7.414032,4.828888,-4.5,7.414032,5.628888,-4.7,8.273669,4.918383,-4.5,8.273669,5.718383,-4.7,8.273669,4.918383,-4.5,8.273669,5.718383,-4.7,9.136066,4.975447,-4.5,9.136066,5.775447,-4.7,9.136066,4.975447,-4.5,9.136066,5.775447,-4.7,10,5,-4.5,10,5.8,-4.7,8.273669,4.918383,-5,7.414032,4.828888,-5,8.273669,4.918383,-4.5,7.414032,4.828888,-4.5,2.38195,3.621188,-5,1.575332,3.310781,-5,2.38195,3.621188,-4.5,1.575332,3.310781,-4.5,6.558374,4.70709,-5,5.70791,4.553163,-5,6.558374,4.70709,-4.5,5.70791,4.553163,-4.5,5.70791,4.553163,-5,5,4.397301,-5,5.70791,4.553163,-4.5,5,4.397301,-4.5,4.863843,4.367322,-5,4.863843,4.367322,-4.5,4.863843,4.367322,-5,4.027372,4.149833,-5,4.863843,4.367322,-4.5,4.027372,4.149833,-4.5,7.414032,4.828888,-5,6.558374,4.70709,-5,7.414032,4.828888,-4.5,6.558374,4.70709,-4.5,9.136066,4.975447,-5,8.273669,4.918383,-5,9.136066,4.975447,-4.5,8.273669,4.918383,-4.5,3.199683,3.901004,-5,2.38195,3.621188,-5,3.199683,3.901004,-4.5,2.38195,3.621188,-4.5,4.027372,4.149833,-5,3.199683,3.901004,-5,4.027372,4.149833,-4.5,3.199683,3.901004,-4.5,10,5,-5,9.136066,4.975447,-5,10,5,-4.5,9.136066,4.975447,-4.5,-2.999542E-12,2.6,-5,-0.7726064,2.201187,-5,-3.6258E-12,2.6,-4.5,-0.7726064,2.201187,-4.5,-1.560687,2.633897,-4.7,-2.362955,2.29873,-4.7,-1.560687,2.633897,-5,-2.362955,2.29873,-5,-0.7726064,3.001187,-4.7,-1.560687,2.633897,-4.7,-0.7726064,3.001187,-5,-1.560687,2.633897,-5,-2.362955,2.29873,-4.7,-3.178103,1.99623,-4.7,-2.362955,2.29873,-5,-3.178103,1.99623,-5,-2.986908E-12,3.4,-4.7,-0.7726064,3.001187,-4.7,-2.990518E-12,3.4,-5,-0.7726064,3.001187,-5,0.780973,3.770224,-4.7,-2.986908E-12,3.4,-4.7,0.780973,3.770224,-5,-2.990518E-12,3.4,-5,3.199683,4.701005,-4.7,2.38195,4.421188,-4.7,3.199683,4.701005,-5,2.38195,4.421188,-5,4.027372,4.949833,-4.7,3.199683,4.701005,-4.7,4.027372,4.949833,-5,3.199683,4.701005,-5,2.38195,4.421188,-4.7,1.575332,4.110782,-4.7,2.38195,4.421188,-5,1.575332,4.110782,-5,9.136066,5.775447,-4.7,8.273669,5.718383,-4.7,9.136066,5.775447,-5,8.273669,5.718383,-5,5.70791,5.353162,-4.7,5,5.1973,-4.7,5.70791,5.353162,-5,5,5.1973,-5,4.863843,5.167322,-4.7,4.863843,5.167322,-5,1.575332,4.110782,-4.7,0.780973,3.770224,-4.7,1.575332,4.110782,-5,0.780973,3.770224,-5,6.558374,5.50709,-4.7,5.70791,5.353162,-4.7,6.558374,5.50709,-5,5.70791,5.353162,-5,8.273669,5.718383,-4.7,7.414032,5.628888,-4.7,8.273669,5.718383,-5,7.414032,5.628888,-5,4.863843,5.167322,-4.7,4.027372,4.949833,-4.7,4.863843,5.167322,-5,4.027372,4.949833,-5,7.414032,5.628888,-4.7,6.558374,5.50709,-4.7,7.414032,5.628888,-5,6.558374,5.50709,-5,10,5.8,-4.7,9.136066,5.775447,-4.7,10,5.8,-5,9.136066,5.775447,-5,10,5.8,-5,10,5,-5,10,5.8,-4.7,10,5,-4.5,-10,0,-5,-10,0.8,-5,-10,0,-4.5,-10,0.8,-4.7,-6.54063,0.3219735,-5,-7.399888,0.1891272,-5,-6.54063,0.3219735,-4.5,-7.399888,0.1891272,-4.5,-8.263808,0.09108566,-5,-9.130984,0.02800899,-5,-8.263808,0.09108566,-4.5,-9.130984,0.02800899,-4.5,3.199683,3.901004,-4.5,3.199683,4.701005,-4.7,4.027372,4.149833,-4.5,4.027372,4.949833,-4.7,-3.178103,1.19623,-4.5,-3.178103,1.99623,-4.7,-2.362955,1.49873,-4.5,-2.362955,2.29873,-4.7,-2.362955,1.49873,-4.5,-2.362955,2.29873,-4.7,-1.560687,1.833898,-4.5,-1.560687,2.633897,-4.7,-1.560687,1.833898,-4.5,-1.560687,2.633897,-4.7,-0.7726064,2.201187,-4.5,-0.7726064,3.001187,-4.7,-8.263808,0.09108566,-4.5,-8.263808,0.8910857,-4.7,-7.399888,0.1891272,-4.5,-7.399888,0.9891272,-4.7,2.38195,3.621188,-4.5,2.38195,4.421188,-4.7,3.199683,3.901004,-4.5,3.199683,4.701005,-4.7,1.575332,3.310781,-5,0.780973,2.970224,-5,1.575332,3.310781,-4.5,0.780973,2.970224,-4.5,0.780973,2.970224,-5,-2.999542E-12,2.6,-5,0.780973,2.970224,-4.5,-3.6258E-12,2.6,-4.5,7.414032,4.828888,4.5,8.273669,4.918383,4.5,7.414032,5.628888,4.7,8.273669,5.718383,4.7,5.70791,4.553163,4.5,6.558374,4.70709,4.5,5.70791,5.353162,4.7,6.558374,5.50709,4.7,-3.178103,1.19623,4.5,-2.362955,1.49873,4.5,-3.178103,1.99623,4.7,-2.362955,2.29873,4.7,8.273669,4.918383,4.5,9.136066,4.975447,4.5,8.273669,5.718383,4.7,9.136066,5.775447,4.7,-4.004801,0.9268934,4.5,-3.178103,1.19623,4.5,-4.004801,1.726893,4.7,-3.178103,1.99623,4.7,4.863843,4.367322,4.5,5,4.397301,4.5,4.863843,5.167322,4.7,5.70791,4.553163,4.5,5.70791,5.353162,4.7,5,5.1973,4.7,-6.54063,0.3219735,5,-6.54063,0.3219735,4.5,-7.399888,0.1891272,5,-7.399888,0.1891272,4.5,-8.263808,0.09108566,5,-8.263808,0.09108566,4.5,-9.130984,0.02800899,5,-9.130984,0.02800899,4.5,3.62219E-12,2.6,5,2.994128E-12,2.6,4.5,-0.7726064,2.201187,5,-0.7726064,2.201187,4.5,-4.841701,0.6911577,4.5,-4.004801,0.9268934,4.5,-4.841701,1.491158,4.7,-4.004801,1.726893,4.7,-7.399888,0.1891272,5,-7.399888,0.1891272,4.5,-8.263808,0.09108566,5,-8.263808,0.09108566,4.5,-5,0.6533956,5,-5,0.6533956,4.5,-5.687437,0.4894081,5,-5.687437,0.4894081,4.5,-4.841701,0.6911577,4.5,-4.841701,0.6911577,5,-3.178103,1.19623,5,-3.178103,1.19623,4.5,-4.004801,0.9268934,5,-4.004801,0.9268934,4.5,-4.004801,0.9268934,5,-4.004801,0.9268934,4.5,-4.841701,0.6911577,5,-4.841701,0.6911577,4.5,-1.560687,1.833898,5,-1.560687,1.833898,4.5,-2.362955,1.49873,5,-2.362955,1.49873,4.5,6.558374,4.70709,4.5,7.414032,4.828888,4.5,6.558374,5.50709,4.7,7.414032,5.628888,4.7,-5.687437,0.4894081,5,-5.687437,0.4894081,4.5,-6.54063,0.3219735,5,-6.54063,0.3219735,4.5,-2.362955,1.49873,5,-2.362955,1.49873,4.5,-3.178103,1.19623,5,-3.178103,1.19623,4.5,-0.7726064,2.201187,5,-0.7726064,2.201187,4.5,-1.560687,1.833898,5,-1.560687,1.833898,4.5,-9.130984,0.02800899,5,-9.130984,0.02800899,4.5,-10,0,5,-10,0,4.5,-7.399888,0.1891272,4.5,-6.54063,0.3219735,4.5,-7.399888,0.9891272,4.7,-6.54063,1.121974,4.7,-8.263808,0.09108566,4.5,-7.399888,0.1891272,4.5,-8.263808,0.8910857,4.7,-7.399888,0.9891272,4.7,-9.130984,0.02800899,4.5,-8.263808,0.09108566,4.5,-9.130984,0.8280089,4.7,-8.263808,0.8910857,4.7,-6.54063,0.3219735,4.5,-5.687437,0.4894081,4.5,-6.54063,1.121974,4.7,-5.687437,1.289408,4.7,-5.687437,0.4894081,4.5,-5,0.6533956,4.5,-5.687437,1.289408,4.7,-4.841701,0.6911577,4.5,-4.841701,1.491158,4.7,0.780973,2.970224,5,0.780973,2.970224,4.5,3.62219E-12,2.6,5,2.994128E-12,2.6,4.5,1.575332,3.310781,5,1.575332,3.310781,4.5,0.780973,2.970224,5,0.780973,2.970224,4.5,8.273669,4.918383,5,8.273669,4.918383,4.5,7.414032,4.828888,5,7.414032,4.828888,4.5,2.38195,3.621188,5,2.38195,3.621188,4.5,1.575332,3.310781,5,1.575332,3.310781,4.5,9.136066,4.975447,4.5,10,5,4.5,9.136066,5.775447,4.7,10,5.8,4.7,10,5,5,10,5,4.5,9.136066,4.975447,5,9.136066,4.975447,4.5,3.199683,3.901004,5,3.199683,3.901004,4.5,2.38195,3.621188,5,2.38195,3.621188,4.5,4.863843,4.367322,5,4.863843,4.367322,4.5,4.027372,4.149833,5,4.027372,4.149833,4.5,5.70791,4.553163,5,5.70791,4.553163,4.5,5,4.397301,5,5,4.397301,4.5,4.863843,4.367322,5,4.863843,4.367322,4.5,4.027372,4.149833,5,4.027372,4.149833,4.5,3.199683,3.901004,5,3.199683,3.901004,4.5,6.558374,4.70709,5,6.558374,4.70709,4.5,5.70791,4.553163,5,5.70791,4.553163,4.5,7.414032,4.828888,5,7.414032,4.828888,4.5,6.558374,4.70709,5,6.558374,4.70709,4.5,9.136066,4.975447,5,9.136066,4.975447,4.5,8.273669,4.918383,5,8.273669,4.918383,4.5,-6.54063,1.121974,4.7,-6.54063,1.121974,5,-7.399888,0.9891272,4.7,-7.399888,0.9891272,5,-5.687437,1.289408,4.7,-5.687437,1.289408,5,-6.54063,1.121974,4.7,-6.54063,1.121974,5,-8.263808,0.8910857,4.7,-8.263808,0.8910857,5,-9.130984,0.8280089,4.7,-9.130984,0.8280089,5,3.633019E-12,3.4,4.7,3.62941E-12,3.4,5,-0.7726064,3.001187,4.7,-0.7726064,3.001187,5,0.780973,3.770224,4.7,0.780973,3.770224,5,3.633019E-12,3.4,4.7,3.62941E-12,3.4,5,1.575332,4.110782,4.7,1.575332,4.110782,5,0.780973,3.770224,4.7,0.780973,3.770224,5,-2.362955,1.49873,4.5,-1.560687,1.833898,4.5,-2.362955,2.29873,4.7,-1.560687,2.633897,4.7,-7.399888,0.9891272,4.7,-7.399888,0.9891272,5,-8.263808,0.8910857,4.7,-8.263808,0.8910857,5,-4.841701,1.491158,4.7,-4.841701,1.491158,5,-5.687437,1.289408,4.7,-5,1.453396,5,-5.687437,1.289408,5,-4.004801,1.726893,4.7,-4.004801,1.726893,5,-4.841701,1.491158,4.7,-4.841701,1.491158,5,-3.178103,1.99623,4.7,-3.178103,1.99623,5,-4.004801,1.726893,4.7,-4.004801,1.726893,5,-1.560687,2.633897,4.7,-1.560687,2.633897,5,-2.362955,2.29873,4.7,-2.362955,2.29873,5,-2.362955,2.29873,4.7,-2.362955,2.29873,5,-3.178103,1.99623,4.7,-3.178103,1.99623,5,-0.7726064,3.001187,4.7,-0.7726064,3.001187,5,-1.560687,2.633897,4.7,-1.560687,2.633897,5,2.38195,3.621188,4.5,3.199683,3.901004,4.5,2.38195,4.421188,4.7,3.199683,4.701005,4.7,2.38195,4.421188,4.7,2.38195,4.421188,5,1.575332,4.110782,4.7,1.575332,4.110782,5,7.414032,5.628888,4.7,7.414032,5.628888,5,6.558374,5.50709,4.7,6.558374,5.50709,5,4.027372,4.949833,4.7,4.027372,4.949833,5,3.199683,4.701005,4.7,3.199683,4.701005,5,5.70791,5.353162,4.7,5.70791,5.353162,5,5,5.1973,4.7,5,5.1973,5,4.863843,5.167322,4.7,4.863843,5.167322,5,4.863843,5.167322,4.7,4.863843,5.167322,5,4.027372,4.949833,4.7,4.027372,4.949833,5,10,5,4.5,10,5,5,10,5.8,4.7,10,5.8,5,6.558374,5.50709,4.7,6.558374,5.50709,5,5.70791,5.353162,4.7,5.70791,5.353162,5,9.136066,5.775447,4.7,9.136066,5.775447,5,8.273669,5.718383,4.7,8.273669,5.718383,5,10,5.8,4.7,10,5.8,5,9.136066,5.775447,4.7,9.136066,5.775447,5,3.199683,4.701005,4.7,3.199683,4.701005,5,2.38195,4.421188,4.7,2.38195,4.421188,5,8.273669,5.718383,4.7,8.273669,5.718383,5,7.414032,5.628888,4.7,7.414032,5.628888,5,-10,0,5,-10,0.8,5,-9.130984,0.02800899,5,-8.263808,0.09108566,5,-7.399888,0.1891272,5,-6.54063,0.3219735,5,-5.687437,0.4894081,5,-5,0.6533956,5,-4.841701,0.6911577,5,-4.004801,0.9268934,5,-9.130984,0.8280089,5,-8.263808,0.8910857,5,-7.399888,0.9891272,5,-3.178103,1.19623,5,-6.54063,1.121974,5,-5.687437,1.289408,5,-2.362955,1.49873,5,-5,1.453396,5,-4.841701,1.491158,5,-4.004801,1.726893,5,-1.560687,1.833898,5,-3.178103,1.99623,5,-0.7726064,2.201187,5,-2.362955,2.29873,5,3.62219E-12,2.6,5,-1.560687,2.633897,5,0.780973,2.970224,5,-0.7726064,3.001187,5,1.575332,3.310781,5,3.62941E-12,3.4,5,2.38195,3.621188,5,0.780973,3.770224,5,3.199683,3.901004,5,1.575332,4.110782,5,4.027372,4.149833,5,2.38195,4.421188,5,4.863843,4.367322,5,5,4.397301,5,5.70791,4.553163,5,3.199683,4.701005,5,6.558374,4.70709,5,4.027372,4.949833,5,7.414032,4.828888,5,8.273669,4.918383,5,9.136066,4.975447,5,4.863843,5.167322,5,10,5,5,10,5.8,5,5,5.1973,5,5.70791,5.353162,5,6.558374,5.50709,5,7.414032,5.628888,5,8.273669,5.718383,5,9.136066,5.775447,5,3.199683,3.901004,4.5,4.027372,4.149833,4.5,3.199683,4.701005,4.7,4.027372,4.949833,4.7,4.027372,4.149833,4.5,4.863843,4.367322,4.5,4.027372,4.949833,4.7,4.863843,5.167322,4.7,-9.130984,0.8280089,4.7,-9.130984,0.8280089,5,-10,0.8,4.7,-10,0.8,5,-1.560687,1.833898,4.5,-0.7726064,2.201187,4.5,-1.560687,2.633897,4.7,-0.7726064,3.001187,4.7,2.994128E-12,2.6,4.5,0.780973,2.970224,4.5,3.633019E-12,3.4,4.7,0.780973,3.770224,4.7,0.780973,2.970224,4.5,1.575332,3.310781,4.5,0.780973,3.770224,4.7,1.575332,4.110782,4.7,1.575332,3.310781,4.5,2.38195,3.621188,4.5,1.575332,4.110782,4.7,2.38195,4.421188,4.7,-0.7726064,2.201187,4.5,2.994128E-12,2.6,4.5,-0.7726064,3.001187,4.7,3.633019E-12,3.4,4.7,-10,0,-4.5,-10,0.8,-4.7,-9.130984,0.02800899,-4.5,-9.130984,0.8280089,-4.7,-9.130984,0.02800899,-5,-10,0,-5,-9.130984,0.02800899,-4.5,-10,0,-4.5,-10,0,4.5,-9.130984,0.02800899,4.5,-10,0.8,4.7,-9.130984,0.8280089,4.7,-10,0,4.5,-10,0.8,4.7,-10,0,5,-10,0.8,5 + } + PolygonVertexIndex: *1260 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,13,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,46,-49,50,46,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,64,66,-68,68,67,-67,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,104,-104,106,105,-104,107,106,-104,108,107,-104,109,108,-104,110,109,-104,111,110,-104,112,110,-112,113,110,-113,114,110,-114,115,114,-114,116,114,-116,117,114,-117,118,117,-117,119,117,-119,120,117,-120,121,117,-121,122,121,-121,123,121,-123,124,123,-123,125,123,-125,126,125,-125,127,125,-127,128,127,-127,129,127,-129,130,129,-129,131,129,-131,132,131,-131,133,131,-133,134,133,-133,135,133,-135,136,135,-135,137,135,-137,138,137,-137,139,138,-137,140,139,-137,141,139,-141,142,141,-141,143,141,-143,144,143,-143,145,144,-143,146,145,-143,147,145,-147,148,147,-147,149,148,-147,150,148,-150,151,148,-151,152,148,-152,153,148,-153,154,148,-154,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,164,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,205,-208,209,208,-208,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,275,-278,279,278,-278,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,375,-375,377,376,-375,378,380,-380,381,379,-381,382,384,-384,385,383,-385,386,388,-388,389,387,-389,390,392,-392,393,391,-393,394,396,-396,397,395,-397,398,400,-400,401,399,-401,399,402,-399,403,398,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,432,434,-434,435,433,-435,436,438,-438,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,454,-454,455,453,-455,456,455,-455,457,459,-459,460,458,-460,461,463,-463,464,462,-464,465,467,-467,468,466,-468,469,471,-471,472,470,-472,473,475,-475,476,474,-476,477,479,-479,480,478,-480,481,483,-483,484,482,-484,485,487,-487,488,486,-488,489,491,-491,492,490,-492,493,492,-492,494,492,-494,495,497,-497,498,496,-498,499,501,-501,502,500,-502,503,505,-505,506,504,-506,507,509,-509,510,508,-510,511,513,-513,514,512,-514,515,517,-517,518,516,-518,519,521,-521,522,520,-522,523,525,-525,526,524,-526,527,529,-529,530,528,-530,531,533,-533,534,532,-534,535,537,-537,538,536,-538,539,541,-541,542,540,-542,543,545,-545,546,544,-546,547,546,-546,548,550,-550,551,549,-551,552,554,-554,555,553,-555,556,558,-558,559,557,-559,560,562,-562,563,561,-563,564,566,-566,567,565,-567,568,570,-570,571,569,-571,572,574,-574,575,573,-575,576,578,-578,579,577,-579,580,582,-582,583,581,-583,584,586,-586,587,585,-587,588,587,-587,589,587,-589,590,592,-592,593,591,-593,594,596,-596,597,595,-597,598,600,-600,601,599,-601,602,604,-604,605,603,-605,606,608,-608,609,607,-609,610,612,-612,613,611,-613,614,616,-616,617,615,-617,618,620,-620,621,619,-621,622,619,-622,623,619,-623,624,619,-624,625,619,-625,626,619,-626,627,619,-627,628,619,-628,629,628,-628,630,629,-628,631,630,-628,632,630,-632,633,632,-632,634,633,-632,635,633,-635,636,635,-635,637,636,-635,638,637,-635,639,637,-639,640,639,-639,641,639,-641,642,641,-641,643,641,-643,644,643,-643,645,643,-645,646,645,-645,647,645,-647,648,647,-647,649,647,-649,650,649,-649,651,649,-651,652,651,-651,653,651,-653,654,653,-653,655,653,-655,656,653,-656,657,653,-657,658,657,-657,659,657,-659,660,659,-659,661,659,-661,662,659,-662,663,659,-663,664,663,-663,665,663,-665,666,663,-666,667,666,-666,668,667,-666,669,668,-666,670,669,-666,671,670,-666,672,674,-674,675,673,-675,676,678,-678,679,677,-679,680,682,-682,683,681,-683,684,686,-686,687,685,-687,688,690,-690,691,689,-691,692,694,-694,695,693,-695,696,698,-698,699,697,-699,700,702,-702,703,701,-703,704,706,-706,707,705,-707,708,710,-710,711,709,-711,712,714,-714,715,713,-715,716,718,-718,719,717,-719 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3780 { + a: -0.1206271,0.2407646,0.9630584,-0.1102189,0.2410579,0.9642317,-0.1177941,0.2408471,0.9633885,-0.1073965,0.2411329,0.9645314,-0.1177941,0.2408471,0.9633885,-0.1102189,0.2410579,0.9642317,-0.1102189,0.2410579,0.9642317,-0.09941236,0.2413342,0.9653367,-0.1073965,0.2411329,0.9645314,-0.09691335,0.241394,0.9655759,-0.1073965,0.2411329,0.9645314,-0.09941236,0.2413342,0.9653367,-0.04196082,0.242322,0.969288,-0.05196862,0.2422079,0.9688316,-0.04304041,0.2423109,0.9692434,-0.05331852,0.2421906,0.9687626,-0.04304041,0.2423109,0.9692434,-0.05196862,0.2422079,0.9688316,-0.05196862,0.2422079,0.9688316,-0.05776009,0.2421307,0.9685228,-0.05331852,0.2421906,0.9687626,-0.06213333,0.242067,0.9682681,-0.05331852,0.2421906,0.9687626,-0.05776009,0.2421307,0.9685228,-0.06376603,0.242042,0.9681682,-0.05331852,0.2421906,0.9687626,-0.06213333,0.242067,0.9682681,-0.03207806,0.2424108,0.9696432,-0.04196082,0.242322,0.969288,-0.03289719,0.2424043,0.9696174,-0.04304041,0.2423109,0.9692434,-0.03289719,0.2424043,0.9696174,-0.04196082,0.242322,0.969288,-0.06213333,0.242067,0.9682681,-0.07248862,0.2418976,0.9675903,-0.06376603,0.242042,0.9681682,-0.07441951,0.2418631,0.9674523,-0.06376603,0.242042,0.9681682,-0.07248862,0.2418976,0.9675903,-0.07248862,0.2418976,0.9675903,-0.08307046,0.2416973,0.9667894,-0.07441951,0.2418631,0.9674523,-0.08531816,0.2416513,0.9666051,-0.07441951,0.2418631,0.9674523,-0.08307046,0.2416973,0.9667894,-0.01256701,0.2425165,0.9700659,-0.02228992,0.2424754,0.9699014,-0.01288501,0.2425155,0.970062,-0.02285596,0.2424723,0.9698892,-0.01288501,0.2425155,0.970062,-0.02228992,0.2424754,0.9699014,-0.0686446,0.2419635,0.9678541,-0.05882133,0.2421157,0.9684627,-0.06699462,0.2419907,0.967963,-0.05742354,0.2421354,0.9685416,-0.06699462,0.2419907,0.967963,-0.05882133,0.2421157,0.9684627,-0.04916161,0.2422424,0.9689695,-0.03963663,0.242345,0.9693801,-0.04800467,0.242256,0.969024,-0.0387113,0.2423538,0.9694152,-0.04800467,0.242256,0.969024,-0.03963663,0.242345,0.9693801,-0.09941236,0.2413342,0.9653367,-0.08890615,0.2415752,0.9663007,-0.09691335,0.241394,0.9655759,-0.08670825,0.2416222,0.9664887,-0.09691335,0.241394,0.9655759,-0.08890615,0.2415752,0.9663007,-0.05882133,0.2421157,0.9684627,-0.05332368,0.2421906,0.9687622,-0.05742354,0.2421354,0.9685416,-0.04916161,0.2422424,0.9689695,-0.05742354,0.2421354,0.9685416,-0.05332368,0.2421906,0.9687622,-0.04800467,0.242256,0.969024,-0.05742354,0.2421354,0.9685416,-0.04916161,0.2422424,0.9689695,-0.05332368,0.2421906,0.9687622,-0.05742354,0.2421354,0.9685416,-0.04800467,0.242256,0.969024,-0.1165796,0.2408819,0.9635275,-0.1206271,0.2407646,0.9630584,-0.1199279,0.2407852,0.9631406,-0.1177941,0.2408471,0.9633885,-0.1199279,0.2407852,0.9631406,-0.1206271,0.2407646,0.9630584,0.3289102,-0.9443613,0,0.3289102,-0.9443613,0,0.2905089,-0.9568722,0,0.2905089,-0.9568722,0,0.2905089,-0.9568722,0,0.3289102,-0.9443613,0,0.4040413,-0.9147407,0,0.4040413,-0.9147407,0,0.3667749,-0.9303097,0,0.3667749,-0.9303097,0,0.3667749,-0.9303097,0,0.4040413,-0.9147407,0,0.2516339,-0.9678225,0,0.2516339,-0.9678225,0,0.2320384,-0.9727066,0,0.2320384,-0.9727066,0,0.2320384,-0.9727066,0,0.2516339,-0.9678225,0,0.2320384,-0.9727066,0,0.2320384,-0.9727066,0,0.2123483,-0.9771941,0,0.2123483,-0.9771941,0,0.2123483,-0.9771941,0,0.2320384,-0.9727066,0,0.2905089,-0.9568722,0,0.2905089,-0.9568722,0,0.2516339,-0.9678225,0,0.2516339,-0.9678225,0,0.2516339,-0.9678225,0,0.2905089,-0.9568722,0,0.2123483,-0.9771941,0,0.2123483,-0.9771941,0,0.1727163,-0.9849716,0,0.1727163,-0.9849716,0,0.1727163,-0.9849716,0,0.2123483,-0.9771941,0,0.3667749,-0.9303097,0,0.3667749,-0.9303097,0,0.3289102,-0.9443613,0,0.3289102,-0.9443613,0,0.3289102,-0.9443613,0,0.3667749,-0.9303097,0,0.4406487,-0.8976796,0,0.4406487,-0.8976796,0,0.4040413,-0.9147407,0,0.4040413,-0.9147407,0,0.4040413,-0.9147407,0,0.4406487,-0.8976796,0,0.1328027,-0.9911425,0,0.1328027,-0.9911425,0,0.09267235,-0.9956967,0,0.09267235,-0.9956967,0,0.09267235,-0.9956967,0,0.1328027,-0.9911425,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.03963663,0.242345,0.9693801,-0.03021903,0.2424249,0.9696994,-0.0387113,0.2423538,0.9694152,-0.029518,0.2424299,0.9697197,-0.0387113,0.2423538,0.9694152,-0.03021903,0.2424249,0.9696994,-0.03021903,0.2424249,0.9696994,-0.02088254,0.2424827,0.9699309,-0.029518,0.2424299,0.9697197,-0.02040033,0.2424852,0.9699406,-0.029518,0.2424299,0.9697197,-0.02088254,0.2424827,0.9699309,-0.02088254,0.2424827,0.9699309,-0.0116017,0.2425193,0.9700772,-0.02040033,0.2424852,0.9699406,-0.01133459,0.24252,0.9700801,-0.02040033,0.2424852,0.9699406,-0.0116017,0.2425193,0.9700772,-0.0116017,0.2425193,0.9700772,-0.006892778,0.2425299,0.9701194,-0.01133459,0.24252,0.9700801,-0.006892778,0.2425299,0.9701194,-0.01133459,0.24252,0.9700801,-0.006892778,0.2425299,0.9701194,0.08480135,-0.9963979,0,0.08480135,-0.9963979,0,0.1222571,-0.9924985,0,0.1222571,-0.9924985,0,0.1222571,-0.9924985,0,0.08480135,-0.9963979,0,0.341513,-0.939877,0,0.341513,-0.939877,0,0.3766586,-0.9263521,0,0.3766586,-0.9263521,0,0.3766586,-0.9263521,0,0.341513,-0.939877,0,0.1595395,-0.9871916,0,0.1595395,-0.9871916,0,0.1965956,-0.9804847,0,0.1965956,-0.9804847,0,0.1965956,-0.9804847,0,0.1595395,-0.9871916,0,0.1965956,-0.9804847,0,0.1965956,-0.9804847,0,0.2150224,-0.9766092,0,0.2150224,-0.9766092,0,0.2150224,-0.9766092,0,0.1965956,-0.9804847,0,0.2333729,-0.9723873,0,0.2150224,-0.9766092,0,0.2150224,-0.9766092,0,0.2333729,-0.9723873,0,0.2333729,-0.9723873,0,0.2150224,-0.9766092,0,0.2333729,-0.9723873,0,0.2333729,-0.9723873,0,0.2698193,-0.962911,0,0.2698193,-0.962911,0,0.2698193,-0.962911,0,0.2333729,-0.9723873,0,0.1222571,-0.9924985,0,0.1222571,-0.9924985,0,0.1595395,-0.9871916,0,0.1595395,-0.9871916,0,0.1595395,-0.9871916,0,0.1222571,-0.9924985,0,0.04722532,-0.9988843,0,0.04722532,-0.9988843,0,0.08480135,-0.9963979,0,0.08480135,-0.9963979,0,0.08480135,-0.9963979,0,0.04722532,-0.9988843,0,0.3058831,-0.9520692,0,0.3058831,-0.9520692,0,0.341513,-0.939877,0,0.341513,-0.939877,0,0.341513,-0.939877,0,0.3058831,-0.9520692,0,0.2698193,-0.962911,0,0.2698193,-0.962911,0,0.3058831,-0.9520692,0,0.3058831,-0.9520692,0,0.3058831,-0.9520692,0,0.2698193,-0.962911,0,0.02840886,-0.9995964,0,0.02840886,-0.9995964,0,0.04722532,-0.9988843,0,0.04722532,-0.9988843,0,0.04722532,-0.9988843,0,0.02840886,-0.9995964,0,0.4435869,-0.8962314,0,0.4435869,-0.8962314,0,0.4406487,-0.8976796,0,0.4406487,-0.8976796,0,0.4406487,-0.8976796,0,0.4435869,-0.8962314,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.02840886,0.9995964,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.1727163,-0.9849716,0,0.1727163,-0.9849716,0,0.1328027,-0.9911425,0,0.1328027,-0.9911425,0,0.1328027,-0.9911425,0,0.1727163,-0.9849716,0,0.09267235,-0.9956967,0,0.09267235,-0.9956967,0,0.05239088,-0.9986267,0,0.05239088,-0.9986267,0,0.05239088,-0.9986267,0,0.09267235,-0.9956967,0,-0.07866198,0.2417841,0.9671363,-0.0686446,0.2419635,0.9678541,-0.07674614,0.2418203,0.9672812,-0.06699462,0.2419907,0.967963,-0.07674614,0.2418203,0.9672812,-0.0686446,0.2419635,0.9678541,-0.08307046,0.2416973,0.9667894,-0.09391755,0.2414636,0.9658544,-0.08531816,0.2416513,0.9666051,-0.09650429,0.2414036,0.9656144,-0.08531816,0.2416513,0.9666051,-0.09391755,0.2414636,0.9658544,-0.09391755,0.2414636,0.9658544,-0.1050719,0.2411931,0.9647724,-0.09650429,0.2414036,0.9656144,-0.108024,0.2411164,0.9644656,-0.09650429,0.2414036,0.9656144,-0.1050719,0.2411931,0.9647724,-0.1050719,0.2411931,0.9647724,-0.1165796,0.2408819,0.9635275,-0.108024,0.2411164,0.9644656,-0.1199279,0.2407852,0.9631406,-0.108024,0.2411164,0.9644656,-0.1165796,0.2408819,0.9635275,-0.02228992,0.2424754,0.9699014,-0.03207806,0.2424108,0.9696432,-0.02285596,0.2424723,0.9698892,-0.03289719,0.2424043,0.9696174,-0.02285596,0.2424723,0.9698892,-0.03207806,0.2424108,0.9696432,-0.08890615,0.2415752,0.9663007,-0.07866198,0.2417841,0.9671363,-0.08670825,0.2416222,0.9664887,-0.07674614,0.2418203,0.9672812,-0.08670825,0.2416222,0.9664887,-0.07866198,0.2417841,0.9671363,0.3766586,-0.9263521,0,0.3766586,-0.9263521,0,0.4112701,-0.9115135,0,0.4112701,-0.9115135,0,0.4112701,-0.9115135,0,0.3766586,-0.9263521,0,0.4112701,-0.9115135,0,0.4112701,-0.9115135,0,0.4435869,-0.8962314,0,0.4435869,-0.8962314,0,0.4435869,-0.8962314,0,0.4112701,-0.9115135,0,-0.03021903,0.2424249,-0.9696994,-0.029518,0.2424299,-0.9697197,-0.02088254,0.2424827,-0.9699309,-0.02040033,0.2424852,-0.9699406,-0.02088254,0.2424827,-0.9699309,-0.029518,0.2424299,-0.9697197,-0.04916161,0.2422424,-0.9689695,-0.04800467,0.242256,-0.969024,-0.03963663,0.242345,-0.9693801,-0.0387113,0.2423538,-0.9694152,-0.03963663,0.242345,-0.9693801,-0.04800467,0.242256,-0.969024,-0.08307046,0.2416973,-0.9667894,-0.08531816,0.2416513,-0.9666051,-0.09391755,0.2414636,-0.9658544,-0.09650429,0.2414036,-0.9656144,-0.09391755,0.2414636,-0.9658544,-0.08531816,0.2416513,-0.9666051,-0.02088254,0.2424827,-0.9699309,-0.02040033,0.2424852,-0.9699406,-0.0116017,0.2425193,-0.9700772,-0.01133459,0.24252,-0.9700801,-0.0116017,0.2425193,-0.9700772,-0.02040033,0.2424852,-0.9699406,-0.07248862,0.2418976,-0.9675903,-0.07441951,0.2418631,-0.9674523,-0.08307046,0.2416973,-0.9667894,-0.08531816,0.2416513,-0.9666051,-0.08307046,0.2416973,-0.9667894,-0.07441951,0.2418631,-0.9674523,-0.05882133,0.2421157,-0.9684627,-0.05742354,0.2421354,-0.9685416,-0.05332368,0.2421906,-0.9687622,-0.04916161,0.2422424,-0.9689695,-0.05332368,0.2421906,-0.9687622,-0.05742354,0.2421354,-0.9685416,-0.04800467,0.242256,-0.969024,-0.04916161,0.2422424,-0.9689695,-0.05742354,0.2421354,-0.9685416,-0.05332368,0.2421906,-0.9687622,-0.04800467,0.242256,-0.969024,-0.05742354,0.2421354,-0.9685416,0.1727163,-0.9849716,0,0.1328027,-0.9911425,0,0.1727163,-0.9849716,0,0.1328027,-0.9911425,0,0.1727163,-0.9849716,0,0.1328027,-0.9911425,0,0.09267235,-0.9956967,0,0.05239088,-0.9986267,0,0.09267235,-0.9956967,0,0.05239088,-0.9986267,0,0.09267235,-0.9956967,0,0.05239088,-0.9986267,0,0.4435869,-0.8962314,0,0.4406487,-0.8976796,0,0.4435869,-0.8962314,0,0.4406487,-0.8976796,0,0.4435869,-0.8962314,0,0.4406487,-0.8976796,0,-0.06213333,0.242067,-0.9682681,-0.06376603,0.242042,-0.9681682,-0.07248862,0.2418976,-0.9675903,-0.07441951,0.2418631,-0.9674523,-0.07248862,0.2418976,-0.9675903,-0.06376603,0.242042,-0.9681682,0.1328027,-0.9911425,0,0.09267235,-0.9956967,0,0.1328027,-0.9911425,0,0.09267235,-0.9956967,0,0.1328027,-0.9911425,0,0.09267235,-0.9956967,0,0.2320384,-0.9727066,0,0.2123483,-0.9771941,0,0.2320384,-0.9727066,0,0.2123483,-0.9771941,0,0.2320384,-0.9727066,0,0.2123483,-0.9771941,0,0.2320384,-0.9727066,0,0.2516339,-0.9678225,0,0.2320384,-0.9727066,0,0.2516339,-0.9678225,0,0.2320384,-0.9727066,0,0.2516339,-0.9678225,0,0.3289102,-0.9443613,0,0.2905089,-0.9568722,0,0.3289102,-0.9443613,0,0.2905089,-0.9568722,0,0.3289102,-0.9443613,0,0.2905089,-0.9568722,0,0.2905089,-0.9568722,0,0.2516339,-0.9678225,0,0.2905089,-0.9568722,0,0.2516339,-0.9678225,0,0.2905089,-0.9568722,0,0.2516339,-0.9678225,0,0.4040413,-0.9147407,0,0.3667749,-0.9303097,0,0.4040413,-0.9147407,0,0.3667749,-0.9303097,0,0.4040413,-0.9147407,0,0.3667749,-0.9303097,0,-0.03963663,0.242345,-0.9693801,-0.0387113,0.2423538,-0.9694152,-0.03021903,0.2424249,-0.9696994,-0.029518,0.2424299,-0.9697197,-0.03021903,0.2424249,-0.9696994,-0.0387113,0.2423538,-0.9694152,0.2123483,-0.9771941,0,0.1727163,-0.9849716,0,0.2123483,-0.9771941,0,0.1727163,-0.9849716,0,0.2123483,-0.9771941,0,0.1727163,-0.9849716,0,0.3667749,-0.9303097,0,0.3289102,-0.9443613,0,0.3667749,-0.9303097,0,0.3289102,-0.9443613,0,0.3667749,-0.9303097,0,0.3289102,-0.9443613,0,0.4406487,-0.8976796,0,0.4040413,-0.9147407,0,0.4406487,-0.8976796,0,0.4040413,-0.9147407,0,0.4406487,-0.8976796,0,0.4040413,-0.9147407,0,0.05239088,-0.9986267,0,0.03221399,-0.999481,0,0.05239088,-0.9986267,0,0.03221399,-0.999481,0,0.05239088,-0.9986267,0,0.03221399,-0.999481,0,-0.03207806,0.2424108,-0.9696432,-0.03289719,0.2424043,-0.9696174,-0.04196082,0.242322,-0.969288,-0.04304041,0.2423109,-0.9692434,-0.04196082,0.242322,-0.969288,-0.03289719,0.2424043,-0.9696174,-0.02228992,0.2424754,-0.9699014,-0.02285596,0.2424723,-0.9698892,-0.03207806,0.2424108,-0.9696432,-0.03289719,0.2424043,-0.9696174,-0.03207806,0.2424108,-0.9696432,-0.02285596,0.2424723,-0.9698892,-0.01256701,0.2425165,-0.9700659,-0.01288501,0.2425155,-0.970062,-0.02228992,0.2424754,-0.9699014,-0.02285596,0.2424723,-0.9698892,-0.02228992,0.2424754,-0.9699014,-0.01288501,0.2425155,-0.970062,-0.04196082,0.242322,-0.969288,-0.04304041,0.2423109,-0.9692434,-0.05196862,0.2422079,-0.9688316,-0.05331852,0.2421906,-0.9687626,-0.05196862,0.2422079,-0.9688316,-0.04304041,0.2423109,-0.9692434,-0.05196862,0.2422079,-0.9688316,-0.05331852,0.2421906,-0.9687626,-0.05776009,0.2421307,-0.9685228,-0.06213333,0.242067,-0.9682681,-0.05776009,0.2421307,-0.9685228,-0.05331852,0.2421906,-0.9687626,-0.06376603,0.242042,-0.9681682,-0.06213333,0.242067,-0.9682681,-0.05331852,0.2421906,-0.9687626,0.4112701,-0.9115135,0,0.4435869,-0.8962314,0,0.4112701,-0.9115135,0,0.4435869,-0.8962314,0,0.4112701,-0.9115135,0,0.4435869,-0.8962314,0,0.3766586,-0.9263521,0,0.4112701,-0.9115135,0,0.3766586,-0.9263521,0,0.4112701,-0.9115135,0,0.3766586,-0.9263521,0,0.4112701,-0.9115135,0,0.08480135,-0.9963979,0,0.1222571,-0.9924985,0,0.08480135,-0.9963979,0,0.1222571,-0.9924985,0,0.08480135,-0.9963979,0,0.1222571,-0.9924985,0,0.341513,-0.939877,0,0.3766586,-0.9263521,0,0.341513,-0.939877,0,0.3766586,-0.9263521,0,0.341513,-0.939877,0,0.3766586,-0.9263521,0,-0.0116017,0.2425193,-0.9700772,-0.01133459,0.24252,-0.9700801,-0.006892778,0.2425299,-0.9701194,-0.006892778,0.2425299,-0.9701194,-0.006892778,0.2425299,-0.9701194,-0.01133459,0.24252,-0.9700801,0.02840886,-0.9995964,0,0.04722532,-0.9988843,0,0.02840886,-0.9995964,0,0.04722532,-0.9988843,0,0.02840886,-0.9995964,0,0.04722532,-0.9988843,0,0.3058831,-0.9520692,0,0.341513,-0.939877,0,0.3058831,-0.9520692,0,0.341513,-0.939877,0,0.3058831,-0.9520692,0,0.341513,-0.939877,0,0.2333729,-0.9723873,0,0.2698193,-0.962911,0,0.2333729,-0.9723873,0,0.2698193,-0.962911,0,0.2333729,-0.9723873,0,0.2698193,-0.962911,0,0.1965956,-0.9804847,0,0.2150224,-0.9766092,0,0.1965956,-0.9804847,0,0.2150224,-0.9766092,0,0.1965956,-0.9804847,0,0.2150224,-0.9766092,0,0.2333729,-0.9723873,0,0.2150224,-0.9766092,0,0.2150224,-0.9766092,0,0.2333729,-0.9723873,0,0.2150224,-0.9766092,0,0.2333729,-0.9723873,0,0.2698193,-0.962911,0,0.3058831,-0.9520692,0,0.2698193,-0.962911,0,0.3058831,-0.9520692,0,0.2698193,-0.962911,0,0.3058831,-0.9520692,0,0.1595395,-0.9871916,0,0.1965956,-0.9804847,0,0.1595395,-0.9871916,0,0.1965956,-0.9804847,0,0.1595395,-0.9871916,0,0.1965956,-0.9804847,0,0.1222571,-0.9924985,0,0.1595395,-0.9871916,0,0.1222571,-0.9924985,0,0.1595395,-0.9871916,0,0.1222571,-0.9924985,0,0.1595395,-0.9871916,0,0.04722532,-0.9988843,0,0.08480135,-0.9963979,0,0.04722532,-0.9988843,0,0.08480135,-0.9963979,0,0.04722532,-0.9988843,0,0.08480135,-0.9963979,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.09391755,0.2414636,-0.9658544,-0.09650429,0.2414036,-0.9656144,-0.1050719,0.2411931,-0.9647724,-0.108024,0.2411164,-0.9644656,-0.1050719,0.2411931,-0.9647724,-0.09650429,0.2414036,-0.9656144,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.08890615,0.2415752,-0.9663007,-0.08670825,0.2416222,-0.9664887,-0.07866198,0.2417841,-0.9671363,-0.07674614,0.2418203,-0.9672812,-0.07866198,0.2417841,-0.9671363,-0.08670825,0.2416222,-0.9664887,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.07866198,0.2417841,-0.9671363,-0.07674614,0.2418203,-0.9672812,-0.0686446,0.2419635,-0.9678541,-0.06699462,0.2419907,-0.967963,-0.0686446,0.2419635,-0.9678541,-0.07674614,0.2418203,-0.9672812,-0.0686446,0.2419635,-0.9678541,-0.06699462,0.2419907,-0.967963,-0.05882133,0.2421157,-0.9684627,-0.05742354,0.2421354,-0.9685416,-0.05882133,0.2421157,-0.9684627,-0.06699462,0.2419907,-0.967963,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.1050719,0.2411931,-0.9647724,-0.108024,0.2411164,-0.9644656,-0.1165796,0.2408819,-0.9635275,-0.1199279,0.2407852,-0.9631406,-0.1165796,0.2408819,-0.9635275,-0.108024,0.2411164,-0.9644656,-0.1206271,0.2407646,-0.9630584,-0.1177941,0.2408471,-0.9633885,-0.1102189,0.2410579,-0.9642317,-0.1073965,0.2411329,-0.9645314,-0.1102189,0.2410579,-0.9642317,-0.1177941,0.2408471,-0.9633885,-0.1102189,0.2410579,-0.9642317,-0.1073965,0.2411329,-0.9645314,-0.09941236,0.2413342,-0.9653367,-0.09691335,0.241394,-0.9655759,-0.09941236,0.2413342,-0.9653367,-0.1073965,0.2411329,-0.9645314,-0.09941236,0.2413342,-0.9653367,-0.09691335,0.241394,-0.9655759,-0.08890615,0.2415752,-0.9663007,-0.08670825,0.2416222,-0.9664887,-0.08890615,0.2415752,-0.9663007,-0.09691335,0.241394,-0.9655759,-0.1165796,0.2408819,-0.9635275,-0.1199279,0.2407852,-0.9631406,-0.1206271,0.2407646,-0.9630584,-0.1177941,0.2408471,-0.9633885,-0.1206271,0.2407646,-0.9630584,-0.1199279,0.2407852,-0.9631406,-0.007816858,0.2425282,0.9701128,-0.01256701,0.2425165,0.9700659,-0.007816858,0.2425282,0.9701128,-0.01288501,0.2425155,0.970062,-0.007816858,0.2425282,0.9701128,-0.01256701,0.2425165,0.9700659,0.05239088,-0.9986267,0,0.05239088,-0.9986267,0,0.03221399,-0.999481,0,0.03221399,-0.999481,0,0.03221399,-0.999481,0,0.05239088,-0.9986267,0,-0.007816858,0.2425282,-0.9701128,-0.007816858,0.2425282,-0.9701128,-0.01256701,0.2425165,-0.9700659,-0.01288501,0.2425155,-0.970062,-0.01256701,0.2425165,-0.9700659,-0.007816858,0.2425282,-0.9701128,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1440 { + a: -2.085063,14.17374,-2.177732,17.41896,0.968266,15.67557,0.8755966,18.92078,1.169145,15.677,1.085232,18.92245,4.278731,17.05857,4.194818,20.30403,-26.58773,5.211034,-26.62631,8.457345,-23.23273,5.890465,-23.27132,9.136775,-23.40646,5.828818,-23.45334,9.07502,-20.70482,6.494239,-20.0827,6.647468,-20.12958,9.893669,-29.79594,4.740353,-29.82635,7.98675,-26.41556,5.279443,-26.44597,8.525841,-20.25923,6.59254,-20.31454,9.838609,-16.97249,7.549057,-17.0278,10.79513,-17.15314,7.500844,-17.21706,10.74675,-13.90916,8.593649,-13.97308,11.83956,-36.26493,4.243995,-36.27925,7.490504,-32.85142,4.499969,-32.86573,7.746477,14.67322,20.38037,14.62214,23.62651,17.95948,21.26287,17.9084,24.50901,21.64829,21.92616,21.6127,25.1725,24.99316,22.55079,24.95757,25.79713,4.476981,17.05087,4.401576,20.29653,7.638047,18.31021,7.562642,21.55588,18.14635,21.22147,18.10307,24.46772,18.68159,21.34311,21.46442,21.97557,21.42114,25.22182,18.63831,24.58937,-5.284219,12.54625,-5.384996,15.79123,-2.267478,14.16392,-2.368254,17.4089,19.68504,-10.43785,19.68504,-13.86095,17.71654,-10.43785,17.71654,-13.86095,19.68504,-2.886312,19.68504,-6.309409,17.71654,-2.886312,17.71654,-6.309409,19.68504,-17.91016,19.68504,-18.55087,17.71654,-17.91016,17.71654,-18.55087,19.68504,-21.33325,17.71654,-21.33325,19.68504,-14.18697,19.68504,-17.61007,17.71654,-14.18697,17.71654,-17.61007,19.68504,-21.60133,19.68504,-25.02443,17.71654,-21.60133,17.71654,-25.02443,19.68504,-6.668918,19.68504,-10.09201,17.71654,-6.668918,17.71654,-10.09201,19.68504,0.9037937,19.68504,-2.519303,17.71654,0.9037937,17.71654,-2.519303,19.68504,-28.86365,19.68504,-32.28674,17.71654,-28.86365,17.71654,-32.28674,-18.50394,-13.33303,-18.50394,-16.75613,-19.68504,-13.33303,-19.68504,-16.75613,-18.50394,-9.462192,-18.50394,-12.88529,-19.68504,-9.462192,-19.68504,-12.88529,-19.68504,-28.5085,-18.50394,-28.5085,-19.68504,-31.93159,-18.50394,-31.93159,39.37008,1.034033E-14,35.94876,0.1102716,39.37008,3.149606,32.53468,0.358605,29.13342,0.7445951,25.75051,1.267612,22.39148,1.926804,19.68504,2.572424,19.06182,2.721093,15.76693,3.649186,35.94876,3.259878,32.53468,3.508211,29.13342,3.894202,12.51222,4.709569,25.75051,4.417219,22.39148,5.07641,9.302973,5.90051,19.68504,5.72203,19.06182,5.8707,15.76693,6.798793,6.144435,7.220069,12.51222,7.859175,3.041758,8.666092,9.302973,9.050117,1.156723E-11,10.23622,6.144435,10.36967,-3.074697,11.6938,3.041758,11.8157,-6.202093,13.03457,1.15317E-11,13.38583,-9.377754,14.25665,-3.074697,14.8434,-12.59718,15.35828,-6.202093,16.18418,-15.85579,16.33793,-9.377754,17.40625,-19.14899,17.19418,-19.68504,17.31221,-22.47208,17.92584,-12.59718,18.50789,-25.82037,18.53185,-15.85579,19.48753,-29.1891,19.01137,-32.5735,19.36371,-35.96877,19.58837,-19.14899,20.34379,-39.37008,19.68504,-39.37008,22.83465,-19.68504,20.46181,-22.47208,21.07544,-25.82037,21.68146,-29.1891,22.16098,-32.5735,22.51332,-35.96877,22.73798,-19.68504,-32.19445,-18.50394,-32.19445,-19.68504,-35.61754,-18.50394,-35.61754,-19.68504,-24.77325,-18.50394,-24.77325,-19.68504,-28.19635,-18.50394,-28.19635,-18.50394,-17.17933,-18.50394,-20.60242,-19.68504,-17.17933,-19.68504,-17.82004,-19.68504,-20.60242,-18.50394,-20.99481,-18.50394,-24.41791,-19.68504,-20.99481,-19.68504,-24.41791,-19.68504,-35.82509,-18.50394,-35.82509,-19.68504,-39.24818,-18.50394,-39.24818,25.17398,22.4934,25.14598,25.73982,28.54058,22.98766,28.51258,26.23408,28.71827,22.92231,28.69779,26.16878,32.10152,23.28548,32.08104,26.53196,32.27601,23.21211,32.26299,26.45863,35.67081,23.44369,35.65779,26.6902,35.84198,23.3622,35.83639,26.60874,39.24321,23.46184,39.23762,26.70838,19.68504,34.40347,19.68504,31.00078,17.71654,34.40347,17.71654,31.00078,19.68504,13.87234,19.68504,10.46965,17.71654,13.87234,17.71654,10.46965,19.68504,28.70808,19.68504,25.30539,17.71654,28.70808,17.71654,25.30539,19.68504,25.8009,19.68504,22.9471,17.71654,25.8009,17.71654,22.9471,19.68504,22.39821,17.71654,22.39821,19.68504,22.85954,19.68504,19.45685,17.71654,22.85954,17.71654,19.45685,19.68504,31.57696,19.68504,28.17427,17.71654,31.57696,17.71654,28.17427,19.68504,37.1836,19.68504,33.78091,17.71654,37.1836,17.71654,33.78091,19.68504,16.89103,19.68504,13.48834,17.71654,16.89103,17.71654,13.48834,19.68504,19.88818,19.68504,16.48549,17.71654,19.88818,17.71654,16.48549,19.68504,39.91342,19.68504,36.51073,17.71654,39.91342,17.71654,36.51073,19.68504,4.695217,19.68504,1.27212,17.71654,4.695217,17.71654,1.27212,-18.50394,-1.672181,-18.50394,-5.095277,-19.68504,-1.672181,-19.68504,-5.095277,-18.50394,2.234286,-18.50394,-1.188811,-19.68504,2.234286,-19.68504,-1.188811,-18.50394,-5.573127,-18.50394,-8.996224,-19.68504,-5.573127,-19.68504,-8.996224,-18.50394,6.139899,-18.50394,2.716802,-19.68504,6.139899,-19.68504,2.716802,-18.50394,9.136644,-18.50394,5.733955,-19.68504,9.136644,-19.68504,5.733955,-18.50394,17.91073,-18.50394,14.50805,-19.68504,17.91073,-19.68504,14.50805,-18.50394,20.79496,-18.50394,17.39227,-19.68504,20.79496,-19.68504,17.39227,-18.50394,15.00352,-18.50394,11.60083,-19.68504,15.00352,-19.68504,11.60083,-18.50394,37.39156,-18.50394,33.98886,-19.68504,37.39156,-19.68504,33.98886,-18.50394,26.47813,-18.50394,23.62434,-19.68504,26.47813,-19.68504,23.62434,-18.50394,23.07545,-19.68504,23.07545,-18.50394,12.07744,-18.50394,8.67475,-19.68504,12.07744,-19.68504,8.67475,-18.50394,29.26902,-18.50394,25.86633,-19.68504,29.26902,-19.68504,25.86633,-18.50394,34.7296,-18.50394,31.32691,-19.68504,34.7296,-19.68504,31.32691,-18.50394,23.65211,-18.50394,20.24942,-19.68504,23.65211,-19.68504,20.24942,-18.50394,32.02081,-18.50394,28.61812,-19.68504,32.02081,-19.68504,28.61812,-18.50394,40.0029,-18.50394,36.6002,-19.68504,40.0029,-19.68504,36.6002,19.68504,22.83465,19.68504,19.68504,18.50394,22.83465,17.71654,19.68504,-19.68504,-5.756776E-12,-19.68504,3.149606,-17.71654,-5.756776E-12,-18.50394,3.149606,19.68504,-25.25448,19.68504,-28.67758,17.71654,-25.25448,17.71654,-28.67758,19.68504,-32.42294,19.68504,-35.84604,17.71654,-32.42294,17.71654,-35.84604,11.23396,19.40402,11.17494,22.65003,14.48341,20.41365,14.4244,23.65965,-14.09533,8.552187,-14.16807,11.79791,-10.89981,9.779473,-10.97254,13.0252,-11.09301,9.74484,-11.17481,12.99035,-7.951566,11.10458,-8.03336,14.35009,-8.153504,11.07689,-8.244631,14.32215,-5.071674,12.56683,-5.162801,15.81209,-33.02403,4.417747,-33.04636,7.66421,-29.62413,4.815607,-29.64646,8.06207,7.833559,18.29372,7.766444,21.53956,11.04126,19.42902,10.97415,22.67487,19.68504,10.83639,19.68504,7.433697,17.71654,10.83639,17.71654,7.433697,19.68504,7.787478,19.68504,4.384789,17.71654,7.787478,17.71654,4.384789,-28.71827,22.92231,-32.10152,23.28548,-28.69779,26.16878,-32.08104,26.53196,-21.64829,21.92616,-24.99316,22.55079,-21.6127,25.1725,-24.95757,25.79713,14.09533,8.552187,10.89981,9.779473,14.16807,11.79791,10.97254,13.0252,-32.27601,23.21211,-35.67081,23.44369,-32.26299,26.45863,-35.65779,26.6902,17.15314,7.500844,13.90916,8.593649,17.21706,10.74675,13.97308,11.83956,-18.14635,21.22147,-18.68159,21.34311,-18.10307,24.46772,-21.46442,21.97557,-21.42114,25.22182,-18.63831,24.58937,-19.68504,-25.25448,-17.71654,-25.25448,-19.68504,-28.67758,-17.71654,-28.67758,-19.68504,-32.42294,-17.71654,-32.42294,-19.68504,-35.84604,-17.71654,-35.84604,-19.68504,4.695217,-17.71654,4.695217,-19.68504,1.27212,-17.71654,1.27212,20.25923,6.59254,16.97249,7.549057,20.31454,9.838609,17.0278,10.79513,-19.68504,-28.86365,-17.71654,-28.86365,-19.68504,-32.28674,-17.71654,-32.28674,-19.68504,-18.55087,-17.71654,-18.55087,-19.68504,-21.33325,-17.71654,-21.33325,-17.71654,-17.91016,-19.68504,-17.91016,-19.68504,-10.43785,-17.71654,-10.43785,-19.68504,-13.86095,-17.71654,-13.86095,-19.68504,-14.18697,-17.71654,-14.18697,-19.68504,-17.61007,-17.71654,-17.61007,-19.68504,-2.886312,-17.71654,-2.886312,-19.68504,-6.309409,-17.71654,-6.309409,-25.17398,22.4934,-28.54058,22.98766,-25.14598,25.73982,-28.51258,26.23408,-19.68504,-21.60133,-17.71654,-21.60133,-19.68504,-25.02443,-17.71654,-25.02443,-19.68504,-6.668918,-17.71654,-6.668918,-19.68504,-10.09201,-17.71654,-10.09201,-19.68504,0.9037937,-17.71654,0.9037937,-19.68504,-2.519303,-17.71654,-2.519303,-19.68504,-35.92655,-17.71654,-35.92655,-19.68504,-39.34964,-17.71654,-39.34964,29.79594,4.740353,26.41556,5.279443,29.82635,7.98675,26.44597,8.525841,33.02403,4.417747,29.62413,4.815607,33.04636,7.66421,29.64646,8.06207,36.26493,4.243995,32.85142,4.499969,36.27925,7.490504,32.86573,7.746477,26.58773,5.211034,23.23273,5.890465,26.62631,8.457345,23.27132,9.136775,23.40646,5.828818,20.70482,6.494239,23.45334,9.07502,20.0827,6.647468,20.12958,9.893669,-19.68504,7.787478,-17.71654,7.787478,-19.68504,4.384789,-17.71654,4.384789,-19.68504,10.83639,-17.71654,10.83639,-19.68504,7.433697,-17.71654,7.433697,-19.68504,34.40347,-17.71654,34.40347,-19.68504,31.00078,-17.71654,31.00078,-19.68504,13.87234,-17.71654,13.87234,-19.68504,10.46965,-17.71654,10.46965,-35.84198,23.3622,-39.24321,23.46184,-35.83639,26.60874,-39.23762,26.70838,-19.68504,39.91342,-17.71654,39.91342,-19.68504,36.51073,-17.71654,36.51073,-19.68504,16.89103,-17.71654,16.89103,-19.68504,13.48834,-17.71654,13.48834,-19.68504,22.85954,-17.71654,22.85954,-19.68504,19.45685,-17.71654,19.45685,-19.68504,25.8009,-17.71654,25.8009,-19.68504,22.9471,-17.71654,22.9471,-19.68504,22.39821,-17.71654,22.39821,-19.68504,19.88818,-17.71654,19.88818,-19.68504,16.48549,-17.71654,16.48549,-19.68504,28.70808,-17.71654,28.70808,-19.68504,25.30539,-17.71654,25.30539,-19.68504,31.57696,-17.71654,31.57696,-19.68504,28.17427,-17.71654,28.17427,-19.68504,37.1836,-17.71654,37.1836,-19.68504,33.78091,-17.71654,33.78091,18.50394,-24.77325,19.68504,-24.77325,18.50394,-28.19635,19.68504,-28.19635,18.50394,-20.99481,19.68504,-20.99481,18.50394,-24.41791,19.68504,-24.41791,18.50394,-32.19445,19.68504,-32.19445,18.50394,-35.61754,19.68504,-35.61754,18.50394,6.139899,19.68504,6.139899,18.50394,2.716802,19.68504,2.716802,18.50394,9.136644,19.68504,9.136644,18.50394,5.733955,19.68504,5.733955,18.50394,12.07744,19.68504,12.07744,18.50394,8.67475,19.68504,8.67475,11.09301,9.74484,7.951566,11.10458,11.17481,12.99035,8.03336,14.35009,18.50394,-28.5085,19.68504,-28.5085,18.50394,-31.93159,19.68504,-31.93159,18.50394,-17.17933,19.68504,-17.17933,18.50394,-20.60242,19.68504,-17.82004,19.68504,-20.60242,18.50394,-13.33303,19.68504,-13.33303,18.50394,-16.75613,19.68504,-16.75613,18.50394,-9.462192,19.68504,-9.462192,18.50394,-12.88529,19.68504,-12.88529,18.50394,-1.672181,19.68504,-1.672181,18.50394,-5.095277,19.68504,-5.095277,18.50394,-5.573127,19.68504,-5.573127,18.50394,-8.996224,19.68504,-8.996224,18.50394,2.234286,19.68504,2.234286,18.50394,-1.188811,19.68504,-1.188811,-7.833559,18.29372,-11.04126,19.42902,-7.766444,21.53956,-10.97415,22.67487,18.50394,15.00352,19.68504,15.00352,18.50394,11.60083,19.68504,11.60083,18.50394,32.02081,19.68504,32.02081,18.50394,28.61812,19.68504,28.61812,18.50394,20.79496,19.68504,20.79496,18.50394,17.39227,19.68504,17.39227,18.50394,26.47813,19.68504,26.47813,18.50394,23.62434,19.68504,23.62434,18.50394,23.07545,19.68504,23.07545,18.50394,23.65211,19.68504,23.65211,18.50394,20.24942,19.68504,20.24942,-17.71654,19.68504,-19.68504,19.68504,-18.50394,22.83465,-19.68504,22.83465,18.50394,29.26902,19.68504,29.26902,18.50394,25.86633,19.68504,25.86633,18.50394,37.39156,19.68504,37.39156,18.50394,33.98886,19.68504,33.98886,18.50394,40.0029,19.68504,40.0029,18.50394,36.6002,19.68504,36.6002,18.50394,17.91073,19.68504,17.91073,18.50394,14.50805,19.68504,14.50805,18.50394,34.7296,19.68504,34.7296,18.50394,31.32691,19.68504,31.32691,-39.37008,1.034033E-14,-39.37008,3.149606,-35.94876,0.1102716,-32.53468,0.358605,-29.13342,0.7445951,-25.75051,1.267612,-22.39148,1.926804,-19.68504,2.572424,-19.06182,2.721093,-15.76693,3.649186,-35.94876,3.259878,-32.53468,3.508211,-29.13342,3.894202,-12.51222,4.709569,-25.75051,4.417219,-22.39148,5.07641,-9.302973,5.90051,-19.68504,5.72203,-19.06182,5.8707,-15.76693,6.798793,-6.144435,7.220069,-12.51222,7.859175,-3.041758,8.666092,-9.302973,9.050117,1.450259E-11,10.23622,-6.144435,10.36967,3.074697,11.6938,-3.041758,11.8157,6.202093,13.03457,1.453101E-11,13.38583,9.377754,14.25665,3.074697,14.8434,12.59718,15.35828,6.202093,16.18418,15.85579,16.33793,9.377754,17.40625,19.14899,17.19418,19.68504,17.31221,22.47208,17.92584,12.59718,18.50789,25.82037,18.53185,15.85579,19.48753,29.1891,19.01137,32.5735,19.36371,35.96877,19.58837,19.14899,20.34379,39.37008,19.68504,39.37008,22.83465,19.68504,20.46181,22.47208,21.07544,25.82037,21.68146,29.1891,22.16098,32.5735,22.51332,35.96877,22.73798,-11.23396,19.40402,-14.48341,20.41365,-11.17494,22.65003,-14.4244,23.65965,-14.67322,20.38037,-17.95948,21.26287,-14.62214,23.62651,-17.9084,24.50901,18.50394,-35.82509,19.68504,-35.82509,18.50394,-39.24818,19.68504,-39.24818,8.153504,11.07689,5.071674,12.56683,8.244631,14.32215,5.162801,15.81209,2.085063,14.17374,-0.968266,15.67557,2.177732,17.41896,-0.8755966,18.92078,-1.169145,15.677,-4.278731,17.05857,-1.085232,18.92245,-4.194818,20.30403,-4.476981,17.05087,-7.638047,18.31021,-4.401576,20.29653,-7.562642,21.55588,5.284219,12.54625,2.267478,14.16392,5.384996,15.79123,2.368254,17.4089,-39.51155,4.219685,-39.51789,7.466219,-36.09034,4.33335,-36.09668,7.579884,19.68504,-35.92655,19.68504,-39.34964,17.71654,-35.92655,17.71654,-39.34964,39.51155,4.219685,36.09034,4.33335,39.51789,7.466219,36.09668,7.579884,17.71654,-5.756776E-12,18.50394,3.149606,19.68504,-5.756776E-12,19.68504,3.149606 + } + UVIndex: *1260 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,13,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,46,48,50,46,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,64,66,67,68,67,66,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,104,103,106,105,103,107,106,103,108,107,103,109,108,103,110,109,103,111,110,103,112,110,111,113,110,112,114,110,113,115,114,113,116,114,115,117,114,116,118,117,116,119,117,118,120,117,119,121,117,120,122,121,120,123,121,122,124,123,122,125,123,124,126,125,124,127,125,126,128,127,126,129,127,128,130,129,128,131,129,130,132,131,130,133,131,132,134,133,132,135,133,134,136,135,134,137,135,136,138,137,136,139,138,136,140,139,136,141,139,140,142,141,140,143,141,142,144,143,142,145,144,142,146,145,142,147,145,146,148,147,146,149,148,146,150,148,149,151,148,150,152,148,151,153,148,152,154,148,153,155,157,156,158,156,157,159,161,160,162,160,161,163,165,164,166,164,165,167,164,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,205,207,209,208,207,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,275,277,279,278,277,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,375,374,377,376,374,378,380,379,381,379,380,382,384,383,385,383,384,386,388,387,389,387,388,390,392,391,393,391,392,394,396,395,397,395,396,398,400,399,401,399,400,399,402,398,403,398,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,432,434,433,435,433,434,436,438,437,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,448,450,449,451,449,450,452,454,453,455,453,454,456,455,454,457,459,458,460,458,459,461,463,462,464,462,463,465,467,466,468,466,467,469,471,470,472,470,471,473,475,474,476,474,475,477,479,478,480,478,479,481,483,482,484,482,483,485,487,486,488,486,487,489,491,490,492,490,491,493,492,491,494,492,493,495,497,496,498,496,497,499,501,500,502,500,501,503,505,504,506,504,505,507,509,508,510,508,509,511,513,512,514,512,513,515,517,516,518,516,517,519,521,520,522,520,521,523,525,524,526,524,525,527,529,528,530,528,529,531,533,532,534,532,533,535,537,536,538,536,537,539,541,540,542,540,541,543,545,544,546,544,545,547,546,545,548,550,549,551,549,550,552,554,553,555,553,554,556,558,557,559,557,558,560,562,561,563,561,562,564,566,565,567,565,566,568,570,569,571,569,570,572,574,573,575,573,574,576,578,577,579,577,578,580,582,581,583,581,582,584,586,585,587,585,586,588,587,586,589,587,588,590,592,591,593,591,592,594,596,595,597,595,596,598,600,599,601,599,600,602,604,603,605,603,604,606,608,607,609,607,608,610,612,611,613,611,612,614,616,615,617,615,616,618,620,619,621,619,620,622,619,621,623,619,622,624,619,623,625,619,624,626,619,625,627,619,626,628,619,627,629,628,627,630,629,627,631,630,627,632,630,631,633,632,631,634,633,631,635,633,634,636,635,634,637,636,634,638,637,634,639,637,638,640,639,638,641,639,640,642,641,640,643,641,642,644,643,642,645,643,644,646,645,644,647,645,646,648,647,646,649,647,648,650,649,648,651,649,650,652,651,650,653,651,652,654,653,652,655,653,654,656,653,655,657,653,656,658,657,656,659,657,658,660,659,658,661,659,660,662,659,661,663,659,662,664,663,662,665,663,664,666,663,665,667,666,665,668,667,665,669,668,665,670,669,665,671,670,665,672,674,673,675,673,674,676,678,677,679,677,678,680,682,681,683,681,682,684,686,685,687,685,686,688,690,689,691,689,690,692,694,693,695,693,694,696,698,697,699,697,698,700,702,701,703,701,702,704,706,705,707,705,706,708,710,709,711,709,710,712,714,713,715,713,714,716,718,717,719,717,718 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *420 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_slantCurveBarrier, Model::RootNode + C: "OO",5159808181603209148,0 + + ;Geometry::, Model::Mesh road_slantCurveBarrier + C: "OO",5297584103320837272,5159808181603209148 + + ;Material::pavement, Model::Mesh road_slantCurveBarrier + C: "OO",17046,5159808181603209148 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurveBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurveBarrier.fbx.import new file mode 100644 index 0000000..ed36828 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurveBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bgdxta5vj7na5" +path="res://.godot/imported/road_slantCurveBarrier.fbx-582bdd8bb583539a5d05f851232ce21c.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_slantCurveBarrier.fbx" +dest_files=["res://.godot/imported/road_slantCurveBarrier.fbx-582bdd8bb583539a5d05f851232ce21c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlat.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlat.fbx new file mode 100644 index 0000000..2473025 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlat.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 22 + Millisecond: 691 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_slantFlat.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_slantFlat.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5428218787371307741, "Model::road_slantFlat", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5092684276918246116, "Geometry::", "Mesh" { + Vertices: *192 { + a: -5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,2.6,-3,5,2.6,-0.09999999,-5,0.09999999,-3,-5,0.09999999,-0.09999999,5,2.6,3,-5,0.09999999,3,5,2.6,0.09999999,-5,0.09999999,0.09999999,5,2.7,4,5,2.6,4,5,2.7,5,5,2.5,5,5,2.6,3,5,2.6,0.09999999,5,2.6,-0.09999999,5,2.6,-3,5,2.6,-4,5,2.5,-5,5,2.7,-4,5,2.7,-5,5,2.7,4,5,2.7,5,-5,0.2,4,-5,0.2,5,-5,0,5,-5,0.2,5,5,2.5,5,5,2.7,5,-5,0,-5,5,2.5,-5,-5,0.2,-5,5,2.7,-5,-5,0.09999999,4,5,2.6,4,-5,0.2,4,5,2.7,4,5,2.7,-5,5,2.7,-4,-5,0.2,-5,-5,0.2,-4,-5,0.09999999,-4,-5,0.2,-4,5,2.6,-4,5,2.7,-4,5,2.5,5,5,2.5,-5,-5,0,5,-5,0,-5,5,2.6,-4,-5,0.09999999,-4,5,2.6,4,-5,0.09999999,4 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,5,-4,7,6,-4,8,7,-4,9,8,-4,10,9,-4,1,11,-1,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,21,23,-25,24,23,-26,25,23,-27,26,23,-28,27,23,-29,23,29,-29,28,29,-31,31,30,-30,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,61,-13,14,12,-62,16,17,-63,63,62,-18,13,15,-19,19,18,-16 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *128 { + a: -19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-4.179663E-13,19.68504,-4.179663E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-11.81102,21.57994,-0.3937008,21.57994,-11.81102,-19.00181,-0.3937008,-19.00181,11.81102,21.57994,11.81102,-19.00181,0.3937008,21.57994,0.3937008,-19.00181,-15.74803,10.62992,-15.74803,10.23622,-19.68504,10.62992,-19.68504,9.84252,-11.81102,10.23622,-0.3937008,10.23622,0.3937008,10.23622,11.81102,10.23622,15.74803,10.23622,19.68504,9.84252,15.74803,10.62992,19.68504,10.62992,15.74803,21.67543,19.68504,21.67543,15.74803,-18.90632,19.68504,-18.90632,-19.68504,3.552714E-13,-19.68504,0.7874016,19.68504,9.84252,19.68504,10.62992,19.68504,3.552714E-13,-19.68504,9.84252,19.68504,0.7874016,-19.68504,10.62992,19.68504,0.3937008,-19.68504,10.23622,19.68504,0.7874016,-19.68504,10.62992,-19.68504,21.67543,-15.74803,21.67543,-19.68504,-18.90632,-15.74803,-18.90632,-19.68504,0.3937008,-19.68504,0.7874016,19.68504,10.23622,19.68504,10.62992,-19.68504,21.48446,19.68504,21.48446,-19.68504,-19.09729,19.68504,-19.09729,-15.74803,21.57994,-15.74803,-19.00181,15.74803,21.57994,15.74803,-19.00181 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,5,3,7,6,3,8,7,3,9,8,3,10,9,3,1,11,0,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,21,23,24,24,23,25,25,23,26,26,23,27,27,23,28,23,29,28,28,29,30,31,30,29,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,61,12,14,12,61,16,17,62,63,62,17,13,15,18,19,18,15 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_slantFlat, Model::RootNode + C: "OO",5428218787371307741,0 + + ;Geometry::, Model::Mesh road_slantFlat + C: "OO",5092684276918246116,5428218787371307741 + + ;Material::asphalt, Model::Mesh road_slantFlat + C: "OO",9934,5428218787371307741 + + ;Material::pavement, Model::Mesh road_slantFlat + C: "OO",17046,5428218787371307741 + + ;Material::asphaltEdge, Model::Mesh road_slantFlat + C: "OO",17042,5428218787371307741 + + ;Material::line, Model::Mesh road_slantFlat + C: "OO",9174,5428218787371307741 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlat.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlat.fbx.import new file mode 100644 index 0000000..c8346a6 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlat.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cuw2y2ix8x5k0" +path="res://.godot/imported/road_slantFlat.fbx-e7491a694af2819cefe517835a5aaae8.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlat.fbx" +dest_files=["res://.godot/imported/road_slantFlat.fbx-e7491a694af2819cefe517835a5aaae8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatCurve.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatCurve.fbx new file mode 100644 index 0000000..d4f2ef6 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatCurve.fbx @@ -0,0 +1,381 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 22 + Millisecond: 873 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_slantFlatCurve.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_slantFlatCurve.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5370983451078718180, "Model::road_slantFlatCurve", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5458244861369093721, "Geometry::", "Mesh" { + Vertices: *2544 { + a: 6.555534,4.90709,4,6.555534,4.90709,5,5.70507,4.753162,4,5.70507,4.753162,5,7.411193,5.028888,4,7.411193,5.028888,5,6.555534,4.90709,4,6.555534,4.90709,5,8.270829,5.118382,4,8.270829,5.118382,5,7.411193,5.028888,4,7.411193,5.028888,5,-6.543469,0.5219735,4,-6.543469,0.5219735,5,-7.402728,0.3891272,4,-7.402728,0.3891272,5,9.133226,5.175447,4,9.133226,5.175447,5,8.270829,5.118382,4,8.270829,5.118382,5,-1.563526,2.033897,4,-1.563526,2.033897,5,-2.365795,1.69873,4,-2.365795,1.69873,5,-8.266648,0.2910857,4,-8.266648,0.2910857,5,-9.133824,0.228009,4,-9.133824,0.228009,5,-2.365795,1.69873,4,-2.365795,1.69873,5,-3.180943,1.39623,4,-3.180943,1.39623,5,4.861002,4.567322,-5,4.861002,4.567322,-4,4.024532,4.349833,-5,4.024532,4.349833,-4,-0.7754462,2.401187,4,-0.7754462,2.401187,5,-1.563526,2.033897,4,-1.563526,2.033897,5,8.270829,5.118382,-5,8.270829,5.118382,-4,7.411193,5.028888,-5,7.411193,5.028888,-4,2.37911,3.821188,-5,2.37911,3.821188,-4,1.572492,3.510781,-5,1.572492,3.510781,-4,9.133226,5.175447,-5,9.133226,5.175447,-4,8.270829,5.118382,-5,8.270829,5.118382,-4,-4.007641,1.126893,4,-4.007641,1.126893,5,-4.844541,0.8911577,4,-4.844541,0.8911577,5,0.7781332,3.170224,4,0.7781332,3.170224,5,-0.002839739,2.8,4,-0.002839739,2.8,5,2.37911,3.821188,4,2.37911,3.821188,5,1.572492,3.510781,4,1.572492,3.510781,5,4.024532,4.349833,4,4.024532,4.349833,5,3.196843,4.101005,4,3.196843,4.101005,5,5.70507,4.753162,4,5.70507,4.753162,5,4.99716,4.597301,4,4.99716,4.597301,5,4.861002,4.567322,4,4.861002,4.567322,5,-0.002839739,2.8,4,-0.002839739,2.8,5,-0.7754462,2.401187,4,-0.7754462,2.401187,5,-7.402728,0.3891272,4,-7.402728,0.3891272,5,-8.266648,0.2910857,4,-8.266648,0.2910857,5,-5.690277,0.6894081,4,-5.690277,0.6894081,5,-6.543469,0.5219735,4,-6.543469,0.5219735,5,9.99716,5.2,4,9.99716,5.1,4,9.99716,5.2,5,9.99716,5,5,9.99716,5.1,3,9.99716,5.1,0.09999999,9.99716,5.1,-0.09999999,9.99716,5.1,-3,9.99716,5.1,-4,9.99716,5,-5,9.99716,5.2,-4,9.99716,5.2,-5,-4.844541,0.8911577,4,-4.844541,0.8911577,5,-5.00284,0.8533956,4,-5.00284,0.8533956,5,-5.690277,0.6894081,4,-5.690277,0.6894081,5,9.99716,5.2,4,9.99716,5.2,5,9.133226,5.175447,4,9.133226,5.175447,5,-9.133824,0.228009,4,-9.133824,0.228009,5,-10.00284,0.2,4,-10.00284,0.2,5,1.572492,3.510781,4,1.572492,3.510781,5,0.7781332,3.170224,4,0.7781332,3.170224,5,4.861002,4.567322,4,4.861002,4.567322,5,4.024532,4.349833,4,4.024532,4.349833,5,3.196843,4.101005,4,3.196843,4.101005,5,2.37911,3.821188,4,2.37911,3.821188,5,-3.180943,1.39623,4,-3.180943,1.39623,5,-4.007641,1.126893,4,-4.007641,1.126893,5,-8.266648,0.2910857,-5,-8.266648,0.2910857,-4,-9.133824,0.228009,-5,-9.133824,0.228009,-4,-7.402728,0.3891272,-5,-7.402728,0.3891272,-4,-8.266648,0.2910857,-5,-8.266648,0.2910857,-4,-4.007641,1.126893,-5,-4.007641,1.126893,-4,-4.844541,0.8911577,-5,-4.844541,0.8911577,-4,-5.690277,0.6894081,-5,-5.690277,0.6894081,-4,-6.543469,0.5219735,-5,-6.543469,0.5219735,-4,0.7781332,3.170224,-5,0.7781332,3.170224,-4,-0.002839739,2.8,-5,-0.002839739,2.8,-4,-10.00284,0.09999999,-4,-10.00284,0.2,-4,-9.133824,0.128009,-4,-8.266648,0.1910857,-4,-9.133824,0.228009,-4,-7.402728,0.2891272,-4,-8.266648,0.2910857,-4,-6.543469,0.4219735,-4,-7.402728,0.3891272,-4,-6.543469,0.5219735,-4,-5.690277,0.5894082,-4,-5.690277,0.6894081,-4,-5.00284,0.7533956,-4,-5.00284,0.8533956,-4,-4.844541,0.7911577,-4,-4.007641,1.026893,-4,-4.844541,0.8911577,-4,-4.007641,1.126893,-4,-3.180943,1.29623,-4,-3.180943,1.39623,-4,-2.365795,1.598729,-4,-2.365795,1.69873,-4,-1.563526,1.933897,-4,-1.563526,2.033897,-4,-0.7754462,2.301187,-4,-0.7754462,2.401187,-4,-0.002839739,2.7,-4,-0.002839739,2.8,-4,0.7781332,3.070225,-4,0.7781332,3.170224,-4,1.572492,3.410781,-4,1.572492,3.510781,-4,2.37911,3.721188,-4,2.37911,3.821188,-4,3.196843,4.001004,-4,3.196843,4.101005,-4,4.024532,4.249834,-4,4.024532,4.349833,-4,4.861002,4.467322,-4,4.861002,4.567322,-4,4.99716,4.4973,-4,5.70507,4.653162,-4,4.99716,4.597301,-4,5.70507,4.753162,-4,6.555534,4.80709,-4,6.555534,4.90709,-4,7.411193,4.928888,-4,7.411193,5.028888,-4,8.270829,5.018383,-4,9.133226,5.075446,-4,8.270829,5.118382,-4,9.99716,5.1,-4,9.99716,5.2,-4,9.133226,5.175447,-4,1.647807,3.325553,-5,0.8603686,2.987963,-5,1.647807,3.325553,5,0.8603686,2.987963,5,2.447397,3.633255,-5,1.647807,3.325553,-5,2.447397,3.633255,5,1.647807,3.325553,5,4.907667,4.372889,-5,4.078484,4.157295,-5,4.907667,4.372889,5,4.078484,4.157295,5,5.040147,4.402057,-5,4.907667,4.372889,-5,5.040147,4.402057,5,4.907667,4.372889,5,5.744379,4.55711,5,5.744379,4.55711,-5,9.142669,4.975715,-5,8.287786,4.919148,-5,9.142669,4.975715,5,8.287786,4.919148,5,9.99716,5,-5,9.142669,4.975715,-5,9.99716,5,5,9.142669,4.975715,5,7.435638,4.830433,-5,6.587435,4.709697,-5,7.435638,4.830433,5,6.587435,4.709697,5,1.572492,3.510781,-5,1.572492,3.510781,-4,0.7781332,3.170224,-5,0.7781332,3.170224,-4,8.287786,4.919148,-5,7.435638,4.830433,-5,8.287786,4.919148,5,7.435638,4.830433,5,4.078484,4.157295,-5,3.258006,3.910634,-5,4.078484,4.157295,5,3.258006,3.910634,5,3.258006,3.910634,-5,2.447397,3.633255,-5,3.258006,3.910634,5,2.447397,3.633255,5,-10.00284,0,-5,-9.996399,0.0001844817,-5,-10.00284,0.2,-5,-9.123348,0.02832355,-5,-8.248117,0.0919861,-5,-7.376173,0.1909383,-5,-9.133824,0.228009,-5,-6.508933,0.3250185,-5,-8.266648,0.2910857,-5,-7.402728,0.3891272,-5,-5.647816,0.4940083,-5,-6.543469,0.5219735,-5,-4.956451,0.6589329,-5,-5.690277,0.6894081,-5,-4.794224,0.6976319,-5,-5.00284,0.8533956,-5,-3.949551,0.9355571,-5,-4.844541,0.8911577,-5,-4.007641,1.126893,-5,-3.115174,1.207396,-5,-3.180943,1.39623,-5,-2.292454,1.512705,-5,-2.365795,1.69873,-5,-1.482734,1.850986,-5,-1.563526,2.033897,-5,-0.687334,2.221687,-5,-0.7754462,2.401187,-5,0.08585453,2.6208,-5,-0.002839739,2.8,-5,0.8603686,2.987963,-5,0.7781332,3.170224,-5,1.647807,3.325553,-5,1.572492,3.510781,-5,2.447397,3.633255,-5,2.37911,3.821188,-5,3.258006,3.910634,-5,3.196843,4.101005,-5,4.078484,4.157295,-5,4.024532,4.349833,-5,4.907667,4.372889,-5,4.861002,4.567322,-5,5.040147,4.402057,-5,5.744379,4.55711,-5,6.587435,4.709697,-5,4.99716,4.597301,-5,5.70507,4.753162,-5,7.435638,4.830433,-5,6.555534,4.90709,-5,8.287786,4.919148,-5,7.411193,5.028888,-5,9.142669,4.975715,-5,9.99716,5,-5,9.99716,5.2,-5,8.270829,5.118382,-5,9.133226,5.175447,-5,6.587435,4.709697,-5,5.744379,4.55711,-5,6.587435,4.709697,5,5.744379,4.55711,5,-10.00284,0,5,-10.00284,0.2,5,-9.996399,0.0001844817,5,-9.123348,0.02832355,5,-8.248117,0.0919861,5,-7.376173,0.1909383,5,-9.133824,0.228009,5,-6.508933,0.3250185,5,-8.266648,0.2910857,5,-7.402728,0.3891272,5,-5.647816,0.4940083,5,-6.543469,0.5219735,5,-4.956451,0.6589329,5,-5.690277,0.6894081,5,-4.794224,0.6976319,5,-5.00284,0.8533956,5,-3.949551,0.9355571,5,-4.844541,0.8911577,5,-4.007641,1.126893,5,-3.115174,1.207396,5,-3.180943,1.39623,5,-2.292454,1.512705,5,-2.365795,1.69873,5,-1.482734,1.850986,5,-1.563526,2.033897,5,-0.687334,2.221687,5,-0.7754462,2.401187,5,0.08585453,2.6208,5,-0.002839739,2.8,5,0.8603686,2.987963,5,0.7781332,3.170224,5,1.647807,3.325553,5,1.572492,3.510781,5,2.447397,3.633255,5,2.37911,3.821188,5,3.258006,3.910634,5,3.196843,4.101005,5,4.078484,4.157295,5,4.024532,4.349833,5,4.907667,4.372889,5,4.861002,4.567322,5,5.040147,4.402057,5,5.744379,4.55711,5,6.587435,4.709697,5,4.99716,4.597301,5,5.70507,4.753162,5,7.435638,4.830433,5,6.555534,4.90709,5,8.287786,4.919148,5,7.411193,5.028888,5,9.142669,4.975715,5,9.99716,5,5,9.99716,5.2,5,8.270829,5.118382,5,9.133226,5.175447,5,0.8603686,2.987963,-5,0.08585453,2.6208,-5,0.8603686,2.987963,5,0.08585453,2.6208,5,-4.956451,0.6589329,-5,-5.647816,0.4940083,-5,-4.956451,0.6589329,5,-5.647816,0.4940083,5,-4.794224,0.6976319,5,-4.794224,0.6976319,-5,-3.949551,0.9355571,-5,-4.794224,0.6976319,-5,-3.949551,0.9355571,5,-4.794224,0.6976319,5,-3.115174,1.207396,-5,-3.949551,0.9355571,-5,-3.115174,1.207396,5,-3.949551,0.9355571,5,-2.292454,1.512705,-5,-3.115174,1.207396,-5,-2.292454,1.512705,5,-3.115174,1.207396,5,-9.123348,0.02832355,-5,-9.996399,0.0001844817,-5,-9.123348,0.02832355,5,-9.996399,0.0001844817,5,-8.248117,0.0919861,-5,-9.123348,0.02832355,-5,-8.248117,0.0919861,5,-9.123348,0.02832355,5,-6.508933,0.3250185,-5,-7.376173,0.1909383,-5,-6.508933,0.3250185,5,-7.376173,0.1909383,5,-1.482734,1.850986,-5,-2.292454,1.512705,-5,-1.482734,1.850986,5,-2.292454,1.512705,5,-0.687334,2.221687,-5,-1.482734,1.850986,-5,-0.687334,2.221687,5,-1.482734,1.850986,5,0.08585453,2.6208,-5,-0.687334,2.221687,-5,0.08585453,2.6208,5,-0.687334,2.221687,5,-7.376173,0.1909383,-5,-8.248117,0.0919861,-5,-7.376173,0.1909383,5,-8.248117,0.0919861,5,-5.647816,0.4940083,-5,-6.508933,0.3250185,-5,-5.647816,0.4940083,5,-6.508933,0.3250185,5,9.99716,5.2,-5,9.99716,5.2,-4,9.133226,5.175447,-5,9.133226,5.175447,-4,-3.180943,1.39623,-5,-3.180943,1.39623,-4,-4.007641,1.126893,-5,-4.007641,1.126893,-4,-6.543469,0.5219735,-5,-6.543469,0.5219735,-4,-7.402728,0.3891272,-5,-7.402728,0.3891272,-4,5.70507,4.753162,-5,5.70507,4.753162,-4,4.99716,4.597301,-5,4.99716,4.597301,-4,4.861002,4.567322,-5,4.861002,4.567322,-4,-4.844541,0.8911577,-5,-4.844541,0.8911577,-4,-5.00284,0.8533956,-5,-5.00284,0.8533956,-4,-5.690277,0.6894081,-5,-5.690277,0.6894081,-4,-9.133824,0.228009,-5,-9.133824,0.228009,-4,-10.00284,0.2,-5,-10.00284,0.2,-4,-0.7754462,2.401187,-5,-0.7754462,2.401187,-4,-1.563526,2.033897,-5,-1.563526,2.033897,-4,7.411193,5.028888,-5,7.411193,5.028888,-4,6.555534,4.90709,-5,6.555534,4.90709,-4,6.555534,4.90709,-5,6.555534,4.90709,-4,5.70507,4.753162,-5,5.70507,4.753162,-4,3.196843,4.101005,-5,3.196843,4.101005,-4,2.37911,3.821188,-5,2.37911,3.821188,-4,4.024532,4.349833,-5,4.024532,4.349833,-4,3.196843,4.101005,-5,3.196843,4.101005,-4,-0.002839739,2.8,-5,-0.002839739,2.8,-4,-0.7754462,2.401187,-5,-0.7754462,2.401187,-4,-1.563526,2.033897,-5,-1.563526,2.033897,-4,-2.365795,1.69873,-5,-2.365795,1.69873,-4,-2.365795,1.69873,-5,-2.365795,1.69873,-4,-3.180943,1.39623,-5,-3.180943,1.39623,-4,-10.00284,0.09999999,4,-9.133824,0.128009,4,-10.00284,0.2,4,-8.266648,0.1910857,4,-9.133824,0.228009,4,-7.402728,0.2891272,4,-8.266648,0.2910857,4,-6.543469,0.4219735,4,-7.402728,0.3891272,4,-6.543469,0.5219735,4,-5.690277,0.5894082,4,-5.690277,0.6894081,4,-5.00284,0.7533956,4,-5.00284,0.8533956,4,-4.844541,0.7911577,4,-4.007641,1.026893,4,-4.844541,0.8911577,4,-4.007641,1.126893,4,-3.180943,1.29623,4,-3.180943,1.39623,4,-2.365795,1.598729,4,-2.365795,1.69873,4,-1.563526,1.933897,4,-1.563526,2.033897,4,-0.7754462,2.301187,4,-0.7754462,2.401187,4,-0.002839739,2.7,4,-0.002839739,2.8,4,0.7781332,3.070225,4,0.7781332,3.170224,4,1.572492,3.410781,4,1.572492,3.510781,4,2.37911,3.721188,4,2.37911,3.821188,4,3.196843,4.001004,4,3.196843,4.101005,4,4.024532,4.249834,4,4.024532,4.349833,4,4.861002,4.467322,4,4.861002,4.567322,4,4.99716,4.4973,4,5.70507,4.653162,4,4.99716,4.597301,4,5.70507,4.753162,4,6.555534,4.80709,4,6.555534,4.90709,4,7.411193,4.928888,4,7.411193,5.028888,4,8.270829,5.018383,4,9.133226,5.075446,4,8.270829,5.118382,4,9.99716,5.1,4,9.99716,5.2,4,9.133226,5.175447,4,-10.00284,0.2,-5,-10.00284,0.09999999,-4,-10.00284,0,-5,-10.00284,0,5,-10.00284,0.09999999,-3,-10.00284,0.09999999,-0.09999999,-10.00284,0.09999999,0.09999999,-10.00284,0.09999999,3,-10.00284,0.09999999,4,-10.00284,0.2,5,-10.00284,0.2,4,-10.00284,0.2,-4,-4.007641,1.026893,-0.09999999,-4.844541,0.7911577,-0.09999999,-4.007641,1.026893,-3,-4.844541,0.7911577,-3,6.555534,4.80709,-0.09999999,5.70507,4.653162,-0.09999999,6.555534,4.80709,-3,5.70507,4.653162,-3,4.024532,4.249834,-0.09999999,3.196843,4.001004,-0.09999999,4.024532,4.249834,-3,3.196843,4.001004,-3,9.99716,5.1,3,9.133226,5.075446,3,9.99716,5.1,0.09999999,9.133226,5.075446,0.09999999,3.196843,4.001004,-0.09999999,2.37911,3.721188,-0.09999999,3.196843,4.001004,-3,2.37911,3.721188,-3,-0.002839739,2.7,3,-0.7754462,2.301187,3,-0.002839739,2.7,0.09999999,-0.7754462,2.301187,0.09999999,-2.365795,1.598729,-0.09999999,-3.180943,1.29623,-0.09999999,-2.365795,1.598729,-3,-3.180943,1.29623,-3,4.861002,4.467322,-0.09999999,4.024532,4.249834,-0.09999999,4.861002,4.467322,-3,4.024532,4.249834,-3,-0.7754462,2.301187,3,-1.563526,1.933897,3,-0.7754462,2.301187,0.09999999,-1.563526,1.933897,0.09999999,2.37911,3.721188,3,1.572492,3.410781,3,2.37911,3.721188,0.09999999,1.572492,3.410781,0.09999999,4.861002,4.467322,3,4.024532,4.249834,3,4.861002,4.467322,0.09999999,4.024532,4.249834,0.09999999,-3.180943,1.29623,3,-4.007641,1.026893,3,-3.180943,1.29623,0.09999999,-4.007641,1.026893,0.09999999,-0.7754462,2.301187,-0.09999999,-1.563526,1.933897,-0.09999999,-0.7754462,2.301187,-3,-1.563526,1.933897,-3,8.270829,5.018383,-0.09999999,7.411193,4.928888,-0.09999999,8.270829,5.018383,-3,7.411193,4.928888,-3,7.411193,4.928888,-0.09999999,6.555534,4.80709,-0.09999999,7.411193,4.928888,-3,6.555534,4.80709,-3,-8.266648,0.1910857,-0.09999999,-9.133824,0.128009,-0.09999999,-8.266648,0.1910857,-3,-9.133824,0.128009,-3,-5.690277,0.5894082,3,-6.543469,0.4219735,3,-5.690277,0.5894082,0.09999999,-6.543469,0.4219735,0.09999999,1.572492,3.410781,3,0.7781332,3.070225,3,1.572492,3.410781,0.09999999,0.7781332,3.070225,0.09999999,1.572492,3.410781,-0.09999999,0.7781332,3.070225,-0.09999999,1.572492,3.410781,-3,0.7781332,3.070225,-3,0.7781332,3.070225,-0.09999999,-0.002839739,2.7,-0.09999999,0.7781332,3.070225,-3,-0.002839739,2.7,-3,0.7781332,3.070225,3,-0.002839739,2.7,3,0.7781332,3.070225,0.09999999,-0.002839739,2.7,0.09999999,9.133226,5.075446,3,8.270829,5.018383,3,9.133226,5.075446,0.09999999,8.270829,5.018383,0.09999999,5.70507,4.653162,-0.09999999,4.99716,4.4973,-0.09999999,5.70507,4.653162,-3,4.99716,4.4973,-3,4.861002,4.467322,-0.09999999,4.861002,4.467322,-3,-1.563526,1.933897,3,-2.365795,1.598729,3,-1.563526,1.933897,0.09999999,-2.365795,1.598729,0.09999999,-9.133824,0.128009,-0.09999999,-10.00284,0.09999999,-0.09999999,-9.133824,0.128009,-3,-10.00284,0.09999999,-3,-1.563526,1.933897,-0.09999999,-2.365795,1.598729,-0.09999999,-1.563526,1.933897,-3,-2.365795,1.598729,-3,4.024532,4.249834,3,3.196843,4.001004,3,4.024532,4.249834,0.09999999,3.196843,4.001004,0.09999999,-5.690277,0.5894082,-0.09999999,-6.543469,0.4219735,-0.09999999,-5.690277,0.5894082,-3,-6.543469,0.4219735,-3,9.99716,5.1,-0.09999999,9.133226,5.075446,-0.09999999,9.99716,5.1,-3,9.133226,5.075446,-3,9.133226,5.075446,-0.09999999,8.270829,5.018383,-0.09999999,9.133226,5.075446,-3,8.270829,5.018383,-3,-6.543469,0.4219735,-0.09999999,-7.402728,0.2891272,-0.09999999,-6.543469,0.4219735,-3,-7.402728,0.2891272,-3,-0.002839739,2.7,-0.09999999,-0.7754462,2.301187,-0.09999999,-0.002839739,2.7,-3,-0.7754462,2.301187,-3,2.37911,3.721188,-0.09999999,1.572492,3.410781,-0.09999999,2.37911,3.721188,-3,1.572492,3.410781,-3,-4.844541,0.7911577,-0.09999999,-5.00284,0.7533956,-0.09999999,-4.844541,0.7911577,-3,-5.00284,0.7533956,-3,-5.690277,0.5894082,-0.09999999,-5.690277,0.5894082,-3,-3.180943,1.29623,-0.09999999,-4.007641,1.026893,-0.09999999,-3.180943,1.29623,-3,-4.007641,1.026893,-3,8.270829,5.018383,3,7.411193,4.928888,3,8.270829,5.018383,0.09999999,7.411193,4.928888,0.09999999,-7.402728,0.2891272,-0.09999999,-8.266648,0.1910857,-0.09999999,-7.402728,0.2891272,-3,-8.266648,0.1910857,-3,-7.402728,0.2891272,3,-8.266648,0.1910857,3,-7.402728,0.2891272,0.09999999,-8.266648,0.1910857,0.09999999,-6.543469,0.4219735,3,-7.402728,0.2891272,3,-6.543469,0.4219735,0.09999999,-7.402728,0.2891272,0.09999999,6.555534,4.80709,3,5.70507,4.653162,3,6.555534,4.80709,0.09999999,5.70507,4.653162,0.09999999,-4.007641,1.026893,3,-4.844541,0.7911577,3,-4.007641,1.026893,0.09999999,-4.844541,0.7911577,0.09999999,5.70507,4.653162,3,4.99716,4.4973,3,5.70507,4.653162,0.09999999,4.99716,4.4973,0.09999999,4.861002,4.467322,3,4.861002,4.467322,0.09999999,-8.266648,0.1910857,3,-9.133824,0.128009,3,-8.266648,0.1910857,0.09999999,-9.133824,0.128009,0.09999999,7.411193,4.928888,3,6.555534,4.80709,3,7.411193,4.928888,0.09999999,6.555534,4.80709,0.09999999,-2.365795,1.598729,3,-3.180943,1.29623,3,-2.365795,1.598729,0.09999999,-3.180943,1.29623,0.09999999,-9.133824,0.128009,3,-10.00284,0.09999999,3,-9.133824,0.128009,0.09999999,-10.00284,0.09999999,0.09999999,-4.844541,0.7911577,3,-5.00284,0.7533956,3,-4.844541,0.7911577,0.09999999,-5.00284,0.7533956,0.09999999,-5.690277,0.5894082,3,-5.690277,0.5894082,0.09999999,3.196843,4.001004,3,2.37911,3.721188,3,3.196843,4.001004,0.09999999,2.37911,3.721188,0.09999999,1.572492,3.410781,-4,0.7781332,3.070225,-4,7.411193,4.928888,-4,6.555534,4.80709,-4,2.37911,3.721188,-4,1.572492,3.410781,-4,-9.133824,0.128009,-4,-10.00284,0.09999999,-4,6.555534,4.80709,-4,5.70507,4.653162,-4,-0.002839739,2.7,-4,-0.7754462,2.301187,-4,5.70507,4.653162,-4,4.99716,4.4973,-4,4.861002,4.467322,-4,0.7781332,3.070225,-4,-0.002839739,2.7,-4,-0.7754462,2.301187,-4,-1.563526,1.933897,-4,9.133226,5.075446,-4,8.270829,5.018383,-4,9.99716,5.1,-4,9.133226,5.075446,-4,4.861002,4.467322,-4,4.024532,4.249834,-4,4.024532,4.249834,-4,3.196843,4.001004,-4,-2.365795,1.598729,-4,-3.180943,1.29623,-4,-3.180943,1.29623,-4,-4.007641,1.026893,-4,-1.563526,1.933897,-4,-2.365795,1.598729,-4,-4.007641,1.026893,-4,-4.844541,0.7911577,-4,-5.690277,0.5894082,-4,-6.543469,0.4219735,-4,-8.266648,0.1910857,-4,-9.133824,0.128009,-4,-4.844541,0.7911577,-4,-5.00284,0.7533956,-4,-5.690277,0.5894082,-4,-7.402728,0.2891272,-4,-8.266648,0.1910857,-4,3.196843,4.001004,-4,2.37911,3.721188,-4,-6.543469,0.4219735,-4,-7.402728,0.2891272,-4,8.270829,5.018383,-4,7.411193,4.928888,-4,5.70507,4.653162,4,4.99716,4.4973,4,4.861002,4.467322,4,-3.180943,1.29623,4,-4.007641,1.026893,4,9.99716,5.1,4,9.133226,5.075446,4,0.7781332,3.070225,4,-0.002839739,2.7,4,-2.365795,1.598729,4,-3.180943,1.29623,4,3.196843,4.001004,4,2.37911,3.721188,4,-1.563526,1.933897,4,-2.365795,1.598729,4,4.861002,4.467322,4,4.024532,4.249834,4,-4.844541,0.7911577,4,-5.00284,0.7533956,4,-5.690277,0.5894082,4,7.411193,4.928888,4,6.555534,4.80709,4,-6.543469,0.4219735,4,-7.402728,0.2891272,4,-7.402728,0.2891272,4,-8.266648,0.1910857,4,8.270829,5.018383,4,7.411193,4.928888,4,1.572492,3.410781,4,0.7781332,3.070225,4,-8.266648,0.1910857,4,-9.133824,0.128009,4,6.555534,4.80709,4,5.70507,4.653162,4,-0.002839739,2.7,4,-0.7754462,2.301187,4,-5.690277,0.5894082,4,-6.543469,0.4219735,4,-9.133824,0.128009,4,-10.00284,0.09999999,4,2.37911,3.721188,4,1.572492,3.410781,4,-4.007641,1.026893,4,-4.844541,0.7911577,4,-0.7754462,2.301187,4,-1.563526,1.933897,4,4.024532,4.249834,4,3.196843,4.001004,4,9.133226,5.075446,4,8.270829,5.018383,4,-9.996399,0.0001844817,-5,-10.00284,0,-5,-9.996399,0.0001844817,5,-10.00284,0,5,-9.996399,0.0001844817,5,-10.00284,0,-5 + } + PolygonVertexIndex: *1944 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,71,-71,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,87,89,-91,90,89,-92,91,89,-93,92,89,-94,93,89,-95,89,95,-95,94,95,-97,97,96,-96,98,100,-100,101,99,-101,102,101,-101,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,149,-152,153,152,-152,154,152,-154,155,154,-154,156,154,-156,157,156,-156,158,157,-156,159,157,-159,160,159,-159,161,159,-161,162,161,-161,163,161,-163,164,161,-164,165,164,-164,166,165,-164,167,165,-167,168,167,-167,169,167,-169,170,169,-169,171,169,-171,172,171,-171,173,171,-173,174,173,-173,175,173,-175,176,175,-175,177,175,-177,178,177,-177,179,177,-179,180,179,-179,181,179,-181,182,181,-181,183,181,-183,184,183,-183,185,183,-185,186,185,-185,187,185,-187,188,187,-187,189,187,-189,190,187,-190,191,190,-190,192,191,-190,193,191,-193,194,193,-193,195,193,-195,196,195,-195,197,195,-197,198,195,-198,199,198,-198,200,198,-200,201,198,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,216,214,-219,219,218,-215,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,251,-251,253,252,-251,254,253,-251,255,253,-255,256,255,-255,257,255,-257,258,255,-258,259,258,-258,260,258,-260,261,260,-260,262,260,-262,263,262,-262,264,262,-264,265,264,-264,266,264,-266,267,264,-267,268,267,-267,269,267,-269,270,269,-269,271,269,-271,272,271,-271,273,271,-273,274,273,-273,275,273,-275,276,275,-275,277,275,-277,278,277,-277,279,277,-279,280,279,-279,281,279,-281,282,281,-281,283,281,-283,284,283,-283,285,283,-285,286,285,-285,287,285,-287,288,287,-287,289,287,-289,290,289,-289,291,290,-289,292,291,-289,293,291,-293,294,291,-294,295,294,-294,296,294,-296,297,296,-296,298,296,-298,299,298,-298,300,299,-298,301,300,-298,302,300,-302,303,305,-305,306,304,-306,307,309,-309,310,308,-310,311,308,-311,312,308,-312,313,308,-313,314,313,-313,315,313,-315,316,315,-315,317,316,-315,318,316,-318,319,318,-318,320,318,-320,321,320,-320,322,320,-322,323,322,-322,324,322,-324,325,324,-324,326,325,-324,327,325,-327,328,327,-327,329,327,-329,330,329,-329,331,329,-331,332,331,-331,333,331,-333,334,333,-333,335,333,-335,336,335,-335,337,335,-337,338,337,-337,339,337,-339,340,339,-339,341,339,-341,342,341,-341,343,341,-343,344,343,-343,345,343,-345,346,345,-345,347,345,-347,348,347,-347,349,347,-349,350,347,-350,351,347,-351,352,351,-351,353,352,-351,354,352,-354,355,354,-354,356,354,-356,357,356,-356,358,356,-358,359,356,-359,360,356,-360,361,360,-360,362,364,-364,365,363,-365,366,368,-368,369,367,-369,368,366,-371,371,370,-367,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,432,431,-431,433,431,-433,434,436,-436,437,435,-437,438,437,-437,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,454,-454,455,453,-455,456,458,-458,459,457,-459,460,462,-462,463,461,-463,464,466,-466,467,465,-467,468,470,-470,471,469,-471,472,474,-474,475,473,-475,476,478,-478,479,477,-479,480,479,-479,481,479,-481,482,481,-481,483,481,-483,484,483,-483,485,483,-485,486,483,-486,487,486,-486,488,486,-488,489,488,-488,490,488,-490,491,490,-490,492,491,-490,493,491,-493,494,491,-494,495,494,-494,496,494,-496,497,496,-496,498,496,-498,499,498,-498,500,498,-500,501,500,-500,502,500,-502,503,502,-502,504,502,-504,505,504,-504,506,504,-506,507,506,-506,508,506,-508,509,508,-508,510,508,-510,511,510,-510,512,510,-512,513,512,-512,514,512,-514,515,514,-514,516,514,-516,517,516,-516,518,517,-516,519,517,-519,520,517,-520,521,520,-520,522,520,-522,523,522,-522,524,522,-524,525,524,-524,526,525,-524,527,525,-527,528,527,-527,529,528,-527,530,532,-532,533,531,-533,534,531,-534,535,534,-534,536,535,-534,537,536,-534,538,537,-534,533,539,-539,540,538,-540,531,541,-531,542,544,-544,545,543,-545,546,548,-548,549,547,-549,550,552,-552,553,551,-553,554,556,-556,557,555,-557,558,560,-560,561,559,-561,562,564,-564,565,563,-565,566,568,-568,569,567,-569,570,572,-572,573,571,-573,574,576,-576,577,575,-577,578,580,-580,581,579,-581,582,584,-584,585,583,-585,586,588,-588,589,587,-589,590,592,-592,593,591,-593,594,596,-596,597,595,-597,598,600,-600,601,599,-601,602,604,-604,605,603,-605,606,608,-608,609,607,-609,610,612,-612,613,611,-613,614,616,-616,617,615,-617,618,620,-620,621,619,-621,622,624,-624,625,623,-625,626,628,-628,629,627,-629,630,632,-632,633,631,-633,634,631,-634,635,634,-634,636,638,-638,639,637,-639,640,642,-642,643,641,-643,644,646,-646,647,645,-647,648,650,-650,651,649,-651,652,654,-654,655,653,-655,656,658,-658,659,657,-659,660,662,-662,663,661,-663,664,666,-666,667,665,-667,668,670,-670,671,669,-671,672,674,-674,675,673,-675,676,678,-678,679,677,-679,680,677,-680,681,680,-680,682,684,-684,685,683,-685,686,688,-688,689,687,-689,690,692,-692,693,691,-693,694,696,-696,697,695,-697,698,700,-700,701,699,-701,702,704,-704,705,703,-705,706,708,-708,709,707,-709,710,712,-712,713,711,-713,714,711,-714,715,714,-714,716,718,-718,719,717,-719,720,722,-722,723,721,-723,724,726,-726,727,725,-727,728,730,-730,731,729,-731,732,734,-734,735,733,-735,736,733,-736,737,736,-736,738,740,-740,741,739,-741,616,742,-618,743,617,-743,600,744,-602,745,601,-745,674,746,-676,747,675,-747,642,748,-644,749,643,-749,548,750,-550,751,549,-751,670,752,-672,753,671,-753,632,754,-634,755,633,-755,635,633,-756,756,635,-756,620,757,-622,758,621,-758,592,759,-594,760,593,-760,662,761,-664,762,663,-762,658,763,-660,764,659,-764,572,765,-574,766,573,-766,552,767,-554,768,553,-768,568,769,-570,770,569,-770,684,771,-686,772,685,-772,646,773,-648,774,647,-774,544,775,-546,776,545,-776,654,777,-656,778,655,-778,604,779,-606,780,605,-780,678,781,-680,782,679,-782,681,679,-783,783,681,-783,692,784,-694,785,693,-785,560,786,-562,787,561,-787,666,788,-668,789,667,-789,596,790,-598,791,597,-791,710,711,-793,793,792,-712,714,793,-712,794,793,-715,586,587,-796,796,795,-588,554,555,-798,798,797,-556,622,623,-800,800,799,-624,724,725,-802,802,801,-726,738,739,-804,804,803,-740,636,637,-806,806,805,-638,582,583,-808,808,807,-584,732,733,-810,810,809,-734,736,810,-734,811,810,-737,720,721,-813,813,812,-722,698,699,-815,815,814,-700,694,695,-817,817,816,-696,686,687,-819,819,818,-688,610,611,-821,821,820,-612,716,717,-823,823,822,-718,702,703,-825,825,824,-704,562,563,-827,827,826,-564,606,607,-829,829,828,-608,728,729,-831,831,830,-730,578,579,-833,833,832,-580,706,707,-835,835,834,-708,574,575,-837,837,836,-576,648,649,-839,839,838,-650,626,627,-841,841,840,-628,842,844,-844,845,847,-847,556,656,-558,657,557,-657,708,542,-710,543,709,-543,700,664,-702,665,701,-665,608,652,-610,653,609,-653,628,660,-630,661,629,-661,722,598,-724,599,723,-599,730,640,-732,641,731,-641,712,630,-714,631,713,-631,715,713,-632,634,715,-632,580,672,-582,673,581,-673,696,690,-698,691,697,-691,704,546,-706,547,705,-547,650,550,-652,551,651,-551,740,558,-742,559,741,-559,576,590,-578,591,577,-591,564,668,-566,669,565,-669,688,594,-690,595,689,-595,588,682,-590,683,589,-683,638,644,-640,645,639,-645,718,602,-720,603,719,-603,624,618,-626,619,625,-619,612,614,-614,615,613,-615,584,570,-586,571,585,-571,734,676,-736,677,735,-677,737,735,-678,680,737,-678,726,566,-728,567,727,-567 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *5832 { + a: -0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.3766586,-0.9263521,0,0.3766586,-0.9263521,0,0.4112701,-0.9115135,0,0.4112701,-0.9115135,0,0.4112701,-0.9115135,0,0.3766586,-0.9263521,0,0.341513,-0.939877,0,0.341513,-0.939877,0,0.3766586,-0.9263521,0,0.3766586,-0.9263521,0,0.3766586,-0.9263521,0,0.341513,-0.939877,0,0.2333729,-0.9723873,0,0.2333729,-0.9723873,0,0.2698193,-0.962911,0,0.2698193,-0.962911,0,0.2698193,-0.962911,0,0.2333729,-0.9723873,0,0.2150224,-0.9766092,0,0.2150224,-0.9766092,0,0.2333729,-0.9723873,0,0.2333729,-0.9723873,0,0.2333729,-0.9723873,0,0.2150224,-0.9766092,0,0.2150224,-0.9766092,0,0.2150224,-0.9766092,0,0.1965956,-0.9804847,0,0.1965956,-0.9804847,0,0.1965956,-0.9804847,0,0.2150224,-0.9766092,0,0.04722532,-0.9988843,0,0.04722532,-0.9988843,0,0.08480135,-0.9963979,0,0.08480135,-0.9963979,0,0.08480135,-0.9963979,0,0.04722532,-0.9988843,0,0.02840886,-0.9995964,0,0.02840886,-0.9995964,0,0.04722532,-0.9988843,0,0.04722532,-0.9988843,0,0.04722532,-0.9988843,0,0.02840886,-0.9995964,0,0.1222571,-0.9924985,0,0.1222571,-0.9924985,0,0.1595395,-0.9871916,0,0.1595395,-0.9871916,0,0.1595395,-0.9871916,0,0.1222571,-0.9924985,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,0.08480135,-0.9963979,0,0.08480135,-0.9963979,0,0.1222571,-0.9924985,0,0.1222571,-0.9924985,0,0.1222571,-0.9924985,0,0.08480135,-0.9963979,0,0.2698193,-0.962911,0,0.2698193,-0.962911,0,0.3058831,-0.9520692,0,0.3058831,-0.9520692,0,0.3058831,-0.9520692,0,0.2698193,-0.962911,0,0.3058831,-0.9520692,0,0.3058831,-0.9520692,0,0.341513,-0.939877,0,0.341513,-0.939877,0,0.341513,-0.939877,0,0.3058831,-0.9520692,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.1595395,-0.9871916,0,0.1595395,-0.9871916,0,0.1965956,-0.9804847,0,0.1965956,-0.9804847,0,0.1965956,-0.9804847,0,0.1595395,-0.9871916,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.4112701,-0.9115135,0,0.4112701,-0.9115135,0,0.4435869,-0.8962314,0,0.4435869,-0.8962314,0,0.4435869,-0.8962314,0,0.4112701,-0.9115135,0,0.2320384,-0.9727066,0,0.2320384,-0.9727066,0,0.2123483,-0.9771941,0,0.2123483,-0.9771941,0,0.2123483,-0.9771941,0,0.2320384,-0.9727066,0,0.2320384,-0.9727066,0,0.2320384,-0.9727066,0,0.2516339,-0.9678225,0,0.2516339,-0.9678225,0,0.2516339,-0.9678225,0,0.2320384,-0.9727066,0,0.2905089,-0.9568722,0,0.2905089,-0.9568722,0,0.2516339,-0.9678225,0,0.2516339,-0.9678225,0,0.2516339,-0.9678225,0,0.2905089,-0.9568722,0,0.3289102,-0.9443613,0,0.3289102,-0.9443613,0,0.2905089,-0.9568722,0,0.2905089,-0.9568722,0,0.2905089,-0.9568722,0,0.3289102,-0.9443613,0,0.3667749,-0.9303097,0,0.3667749,-0.9303097,0,0.3289102,-0.9443613,0,0.3289102,-0.9443613,0,0.3289102,-0.9443613,0,0.3667749,-0.9303097,0,0.05239088,-0.9986267,0,0.05239088,-0.9986267,0,0.03221399,-0.999481,0,0.03221399,-0.999481,0,0.03221399,-0.999481,0,0.05239088,-0.9986267,0,0.09267235,-0.9956967,0,0.09267235,-0.9956967,0,0.05239088,-0.9986267,0,0.05239088,-0.9986267,0,0.05239088,-0.9986267,0,0.09267235,-0.9956967,0,0.1727163,-0.9849716,0,0.1727163,-0.9849716,0,0.1328027,-0.9911425,0,0.1328027,-0.9911425,0,0.1328027,-0.9911425,0,0.1727163,-0.9849716,0,0.4040413,-0.9147407,0,0.4040413,-0.9147407,0,0.3667749,-0.9303097,0,0.3667749,-0.9303097,0,0.3667749,-0.9303097,0,0.4040413,-0.9147407,0,0.4406487,-0.8976796,0,0.4406487,-0.8976796,0,0.4040413,-0.9147407,0,0.4040413,-0.9147407,0,0.4040413,-0.9147407,0,0.4406487,-0.8976796,0,0.4435869,-0.8962314,0,0.4435869,-0.8962314,0,0.4406487,-0.8976796,0,0.4406487,-0.8976796,0,0.4406487,-0.8976796,0,0.4435869,-0.8962314,0,0.1328027,-0.9911425,0,0.1328027,-0.9911425,0,0.09267235,-0.9956967,0,0.09267235,-0.9956967,0,0.09267235,-0.9956967,0,0.1328027,-0.9911425,0,0.2123483,-0.9771941,0,0.2123483,-0.9771941,0,0.1727163,-0.9849716,0,0.1727163,-0.9849716,0,0.1727163,-0.9849716,0,0.2123483,-0.9771941,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.02840886,0.9995964,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.02840886,0.9995964,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,0.02863362,-0.99959,0,0.02863362,-0.99959,0,0.02863362,-0.99959,0,0.02863362,-0.99959,0,0.02863362,-0.99959,0,0.02863362,-0.99959,0,-0.02840886,0.9995964,0,-0.02840886,0.9995964,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.02840886,0.9995964,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2905089,0.9568722,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.1727163,0.9849716,0,-0.2123483,0.9771941,0,-0.04722532,0.9988843,0,-0.04722532,0.9988843,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.04722532,0.9988843,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1222571,0.9924985,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.03221399,0.999481,0,-0.05239088,0.9986267,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.1965956,0.9804847,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.2150224,0.9766092,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2150224,0.9766092,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.341513,0.939877,0,-0.1328027,0.9911425,0,-0.1328027,0.9911425,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.1328027,0.9911425,0,-0.1595395,0.9871916,0,-0.1595395,0.9871916,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1965956,0.9804847,0,-0.1595395,0.9871916,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.2698193,0.962911,0,-0.3058831,0.9520692,0,-0.3058831,0.9520692,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.341513,0.939877,0,-0.3058831,0.9520692,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4406487,0.8976796,0,-0.4435869,0.8962314,0,-0.08480135,0.9963979,0,-0.08480135,0.9963979,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.1222571,0.9924985,0,-0.08480135,0.9963979,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.2905089,0.9568722,0,-0.3289102,0.9443613,0,-0.4040413,0.9147407,0,-0.4040413,0.9147407,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.4040413,0.9147407,0,-0.09267235,0.9956967,0,-0.09267235,0.9956967,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.05239088,0.9986267,0,-0.09267235,0.9956967,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4435869,0.8962314,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.3766586,0.9263521,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.4112701,0.9115135,0,-0.3766586,0.9263521,0,-0.2333729,0.9723873,0,-0.2333729,0.9723873,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2698193,0.962911,0,-0.2333729,0.9723873,0,-0.2516339,0.9678225,0,-0.2516339,0.9678225,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2516339,0.9678225,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.2320384,0.9727066,0,-0.2123483,0.9771941,0,-0.2123483,0.9771941,0,-0.2320384,0.9727066,0,-0.3667749,0.9303097,0,-0.3667749,0.9303097,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3289102,0.9443613,0,-0.3667749,0.9303097,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1696 { + a: 15.74803,28.83731,19.68504,28.83731,15.74803,25.43462,19.68504,25.43462,15.74803,31.67685,19.68504,31.67685,15.74803,28.27416,19.68504,28.27416,15.74803,34.47388,19.68504,34.47388,15.74803,31.07119,19.68504,31.07119,15.74803,-25.14523,19.68504,-25.14523,15.74803,-28.56832,19.68504,-28.56832,15.74803,37.22443,19.68504,37.22443,15.74803,33.82175,19.68504,33.82175,15.74803,-2.593095,19.68504,-2.593095,15.74803,-6.016192,19.68504,-6.016192,15.74803,-32.37696,19.68504,-32.37696,15.74803,-35.80006,19.68504,-35.80006,15.74803,-6.405452,19.68504,-6.405452,15.74803,-9.828548,19.68504,-9.828548,-19.68504,23.04687,-15.74803,23.04687,-19.68504,19.64418,-15.74803,19.64418,15.74803,1.226283,19.68504,1.226283,15.74803,-2.196814,19.68504,-2.196814,-19.68504,34.47388,-15.74803,34.47388,-19.68504,31.07119,-15.74803,31.07119,-19.68504,14.1447,-15.74803,14.1447,-19.68504,10.74201,-15.74803,10.74201,-19.68504,37.22443,-15.74803,37.22443,-19.68504,33.82175,-15.74803,33.82175,15.74803,-13.98425,19.68504,-13.98425,15.74803,-17.40734,19.68504,-17.40734,15.74803,8.114667,19.68504,8.114667,15.74803,4.711978,19.68504,4.711978,15.74803,14.1447,19.68504,14.1447,15.74803,10.74201,19.68504,10.74201,15.74803,20.10417,19.68504,20.10417,15.74803,16.70148,19.68504,16.70148,15.74803,25.95929,19.68504,25.95929,15.74803,23.10549,19.68504,23.10549,15.74803,22.5566,19.68504,22.5566,15.74803,5.046453,19.68504,5.046453,15.74803,1.623356,19.68504,1.623356,15.74803,-28.78597,19.68504,-28.78597,15.74803,-32.20906,19.68504,-32.20906,15.74803,-21.46067,19.68504,-21.46067,15.74803,-24.88377,19.68504,-24.88377,-15.74803,20.47244,-15.74803,20.07874,-19.68504,20.47244,-19.68504,19.68504,-11.81102,20.07874,-0.3937008,20.07874,0.3937008,20.07874,11.81102,20.07874,15.74803,20.07874,19.68504,19.68504,15.74803,20.47244,19.68504,20.47244,15.74803,-17.73832,19.68504,-17.73832,15.74803,-18.37903,19.68504,-18.37903,15.74803,-21.16142,19.68504,-21.16142,15.74803,39.92461,19.68504,39.92461,15.74803,36.52192,19.68504,36.52192,15.74803,-35.91236,19.68504,-35.91236,15.74803,-39.33545,19.68504,-39.33545,15.74803,11.13637,19.68504,11.13637,15.74803,7.733685,19.68504,7.733685,15.74803,23.04687,19.68504,23.04687,15.74803,19.64418,19.68504,19.64418,15.74803,17.13538,19.68504,17.13538,15.74803,13.73269,19.68504,13.73269,15.74803,-10.20457,19.68504,-10.20457,15.74803,-13.62767,19.68504,-13.62767,-19.68504,-32.37696,-15.74803,-32.37696,-19.68504,-35.80006,-15.74803,-35.80006,-19.68504,-28.78597,-15.74803,-28.78597,-19.68504,-32.20906,-15.74803,-32.20906,-19.68504,-13.98425,-15.74803,-13.98425,-19.68504,-17.40734,-15.74803,-17.40734,-19.68504,-21.46067,-15.74803,-21.46067,-19.68504,-24.88377,-15.74803,-24.88377,-19.68504,8.114667,-15.74803,8.114667,-19.68504,4.711978,-15.74803,4.711978,-39.38126,0.3937008,-39.38126,0.7874016,-35.95994,0.5039724,-32.54586,0.7523058,-35.95994,0.8976732,-29.1446,1.138296,-32.54586,1.146007,-25.76169,1.661313,-29.1446,1.531997,-25.76169,2.055014,-22.40266,2.320504,-22.40266,2.714205,-19.69622,2.966125,-19.69622,3.359825,-19.07299,3.114794,-15.77811,4.042887,-19.07299,3.508495,-15.77811,4.436588,-12.5234,5.10327,-12.5234,5.49697,-9.314153,6.294211,-9.314153,6.687912,-6.155616,7.61377,-6.155616,8.00747,-3.052938,9.059793,-3.052938,9.453493,-0.01118008,10.62992,-0.01118008,11.02362,3.063517,12.0875,3.063517,12.4812,6.190913,13.42827,6.190913,13.82197,9.366574,14.65035,9.366574,15.04405,12.586,15.75199,12.586,16.14569,15.84461,16.73163,15.84461,17.12533,19.13781,17.58788,19.13781,17.98158,19.67386,17.70591,22.4609,18.31954,19.67386,18.09961,22.4609,18.71324,25.80919,18.92555,25.80919,19.31925,29.17792,19.40507,29.17792,19.79877,32.56232,19.75741,35.95758,19.98207,32.56232,20.15111,39.3589,20.07874,39.3589,20.47244,35.95758,20.37577,19.68504,11.12155,19.68504,7.748507,-19.68504,11.12155,-19.68504,7.748507,19.68504,14.12988,19.68504,10.75683,-19.68504,14.12988,-19.68504,10.75683,19.68504,23.03204,19.68504,19.659,-19.68504,23.03204,-19.68504,19.659,19.68504,23.10549,19.68504,22.57142,-19.68504,23.10549,-19.68504,22.57142,-19.68504,25.94447,19.68504,25.94447,19.68504,37.20961,19.68504,33.83657,-19.68504,37.20961,-19.68504,33.83657,19.68504,39.90224,19.68504,36.53675,-19.68504,39.90224,-19.68504,36.53675,19.68504,31.66203,19.68504,28.28898,-19.68504,31.66203,-19.68504,28.28898,-19.68504,11.13637,-15.74803,11.13637,-19.68504,7.733685,-15.74803,7.733685,19.68504,34.45906,19.68504,31.08601,-19.68504,34.45906,-19.68504,31.08601,19.68504,20.08935,19.68504,16.7163,-19.68504,20.08935,-19.68504,16.7163,19.68504,17.12056,19.68504,13.74751,-19.68504,17.12056,-19.68504,13.74751,39.38126,4.143062E-14,39.3559,0.0007263061,39.38126,0.7874016,35.91869,0.11151,32.4729,0.36215,29.04005,0.7517254,35.95994,0.8976732,25.62572,1.279601,32.54586,1.146007,29.1446,1.531997,22.23549,1.944915,25.76169,2.055014,19.51359,2.594224,22.40266,2.714205,18.8749,2.746582,19.69622,3.359825,15.54941,3.683296,19.07299,3.508495,15.77811,4.436588,12.26447,4.753527,12.5234,5.49697,9.025412,5.955531,9.314153,6.687912,5.837536,7.287346,6.155616,8.00747,2.706039,8.7468,3.052938,9.453493,-0.33801,10.31811,0.01118008,11.02362,-3.387278,11.76363,-3.063517,12.4812,-6.487428,13.09273,-6.190913,13.82197,-9.635421,14.30416,-9.366574,15.04405,-12.82679,15.3962,-12.586,16.14569,-16.05702,16.3673,-15.84461,17.12533,-19.32152,17.2161,-19.13781,17.98158,-19.8431,17.33093,-22.61567,17.94138,-25.93478,18.54211,-19.67386,18.09961,-22.4609,18.71324,-29.27417,19.01745,-25.80919,19.31925,-32.62908,19.36672,-29.17792,19.79877,-35.99476,19.58943,-39.3589,19.68504,-39.3589,20.47244,-32.56232,20.15111,-35.95758,20.37577,19.68504,28.82249,19.68504,25.44944,-19.68504,28.82249,-19.68504,25.44944,-39.38126,8.686488E-15,-39.38126,0.7874016,-39.3559,0.0007263061,-35.91869,0.11151,-32.4729,0.36215,-29.04005,0.7517254,-35.95994,0.8976732,-25.62572,1.279601,-32.54586,1.146007,-29.1446,1.531997,-22.23549,1.944915,-25.76169,2.055014,-19.51359,2.594224,-22.40266,2.714205,-18.8749,2.746582,-19.69622,3.359825,-15.54941,3.683296,-19.07299,3.508495,-15.77811,4.436588,-12.26447,4.753527,-12.5234,5.49697,-9.025412,5.955531,-9.314153,6.687912,-5.837536,7.287346,-6.155616,8.00747,-2.706039,8.7468,-3.052938,9.453493,0.33801,10.31811,-0.01118008,11.02362,3.387278,11.76363,3.063517,12.4812,6.487428,13.09273,6.190913,13.82197,9.635421,14.30416,9.366574,15.04405,12.82679,15.3962,12.586,16.14569,16.05702,16.3673,15.84461,17.12533,19.32152,17.2161,19.13781,17.98158,19.8431,17.33093,22.61567,17.94138,25.93478,18.54211,19.67386,18.09961,22.4609,18.71324,29.27417,19.01745,25.80919,19.31925,32.62908,19.36672,29.17792,19.79877,35.99476,19.58943,39.3589,19.68504,39.3589,20.47244,32.56232,20.15111,35.95758,20.37577,19.68504,8.099844,19.68504,4.725297,-19.68504,8.099844,-19.68504,4.725297,19.68504,-18.37903,19.68504,-21.17732,-19.68504,-18.37903,-19.68504,-21.17732,-19.68504,-17.72243,19.68504,-17.72243,19.68504,-13.96835,19.68504,-17.42324,-19.68504,-13.96835,-19.68504,-17.42324,19.68504,-10.18867,19.68504,-13.64356,-19.68504,-10.18867,-19.68504,-13.64356,19.68504,-6.389554,19.68504,-9.844446,-19.68504,-6.389554,-19.68504,-9.844446,19.68504,-35.89646,19.68504,-39.33545,-19.68504,-35.89646,-19.68504,-39.33545,19.68504,-32.36107,19.68504,-35.81596,-19.68504,-32.36107,-19.68504,-35.81596,19.68504,-25.12933,19.68504,-28.58422,-19.68504,-25.12933,-19.68504,-28.58422,19.68504,-2.577198,19.68504,-6.03209,-19.68504,-2.577198,-19.68504,-6.03209,19.68504,1.242181,19.68504,-2.212712,-19.68504,1.242181,-19.68504,-2.212712,19.68504,5.033134,19.68504,1.607458,-19.68504,5.033134,-19.68504,1.607458,19.68504,-28.77007,19.68504,-32.22496,-19.68504,-28.77007,-19.68504,-32.22496,19.68504,-21.44478,19.68504,-24.89967,-19.68504,-21.44478,-19.68504,-24.89967,-19.68504,39.92461,-15.74803,39.92461,-19.68504,36.52192,-15.74803,36.52192,-19.68504,-10.20457,-15.74803,-10.20457,-19.68504,-13.62767,-15.74803,-13.62767,-19.68504,-25.14523,-15.74803,-25.14523,-19.68504,-28.56832,-15.74803,-28.56832,-19.68504,25.95929,-15.74803,25.95929,-19.68504,23.10549,-15.74803,23.10549,-19.68504,22.5566,-15.74803,22.5566,-19.68504,-17.73832,-15.74803,-17.73832,-19.68504,-18.37903,-15.74803,-18.37903,-19.68504,-21.16142,-15.74803,-21.16142,-19.68504,-35.91236,-15.74803,-35.91236,-19.68504,-39.33545,-15.74803,-39.33545,-19.68504,1.226283,-15.74803,1.226283,-19.68504,-2.196814,-15.74803,-2.196814,-19.68504,31.67685,-15.74803,31.67685,-19.68504,28.27416,-15.74803,28.27416,-19.68504,28.83731,-15.74803,28.83731,-19.68504,25.43462,-15.74803,25.43462,-19.68504,17.13538,-15.74803,17.13538,-19.68504,13.73269,-15.74803,13.73269,-19.68504,20.10417,-15.74803,20.10417,-19.68504,16.70148,-15.74803,16.70148,-19.68504,5.046453,-15.74803,5.046453,-19.68504,1.623356,-15.74803,1.623356,-19.68504,-2.593095,-15.74803,-2.593095,-19.68504,-6.016192,-15.74803,-6.016192,-19.68504,-6.405452,-15.74803,-6.405452,-19.68504,-9.828548,-15.74803,-9.828548,39.38126,0.3937008,35.95994,0.5039724,39.38126,0.7874016,32.54586,0.7523058,35.95994,0.8976732,29.1446,1.138296,32.54586,1.146007,25.76169,1.661313,29.1446,1.531997,25.76169,2.055014,22.40266,2.320504,22.40266,2.714205,19.69622,2.966125,19.69622,3.359825,19.07299,3.114794,15.77811,4.042887,19.07299,3.508495,15.77811,4.436588,12.5234,5.10327,12.5234,5.49697,9.314153,6.294211,9.314153,6.687912,6.155616,7.61377,6.155616,8.00747,3.052938,9.059793,3.052938,9.453493,0.01118008,10.62992,0.01118008,11.02362,-3.063517,12.0875,-3.063517,12.4812,-6.190913,13.42827,-6.190913,13.82197,-9.366574,14.65035,-9.366574,15.04405,-12.586,15.75199,-12.586,16.14569,-15.84461,16.73163,-15.84461,17.12533,-19.13781,17.58788,-19.13781,17.98158,-19.67386,17.70591,-22.4609,18.31954,-19.67386,18.09961,-22.4609,18.71324,-25.80919,18.92555,-25.80919,19.31925,-29.17792,19.40507,-29.17792,19.79877,-32.56232,19.75741,-35.95758,19.98207,-32.56232,20.15111,-39.3589,20.07874,-39.3589,20.47244,-35.95758,20.37577,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,3.085467E-11,19.68504,3.085467E-11,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,0.7874016,15.74803,0.7874016,-15.74803,0.7874016,-0.3937008,-14.09099,-0.3937008,-17.51409,-11.81102,-14.09099,-11.81102,-17.51409,-0.3937008,28.76719,-0.3937008,25.3645,-11.81102,28.76719,-11.81102,25.3645,-0.3937008,19.99082,-0.3937008,16.58813,-11.81102,19.99082,-11.81102,16.58813,11.81102,39.91343,11.81102,36.51074,0.3937008,39.91343,0.3937008,36.51074,-0.3937008,17.00792,-0.3937008,13.60523,-11.81102,17.00792,-11.81102,13.60523,11.81102,4.865868,11.81102,1.442771,0.3937008,4.865868,0.3937008,1.442771,-0.3937008,-6.542426,-0.3937008,-9.965523,-11.81102,-6.542426,-11.81102,-9.965523,-0.3937008,22.94779,-0.3937008,19.5451,-11.81102,22.94779,-11.81102,19.5451,11.81102,1.059972,11.81102,-2.363125,0.3937008,1.059972,0.3937008,-2.363125,11.81102,14.0033,11.81102,10.60061,0.3937008,14.0033,0.3937008,10.60061,11.81102,22.94779,11.81102,19.5451,0.3937008,22.94779,0.3937008,19.5451,11.81102,-10.32653,11.81102,-13.74962,0.3937008,-10.32653,0.3937008,-13.74962,-0.3937008,1.059972,-0.3937008,-2.363125,-11.81102,1.059972,-11.81102,-2.363125,-0.3937008,34.43311,-0.3937008,31.03042,-11.81102,34.43311,-11.81102,31.03042,-0.3937008,31.62137,-0.3937008,28.21868,-11.81102,31.62137,-11.81102,28.21868,-0.3937008,-32.40553,-0.3937008,-35.82862,-11.81102,-32.40553,-11.81102,-35.82862,11.81102,-21.53649,11.81102,-24.95959,0.3937008,-21.53649,0.3937008,-24.95959,11.81102,10.98124,11.81102,7.578553,0.3937008,10.98124,0.3937008,7.578553,-0.3937008,10.98124,-0.3937008,7.578553,-11.81102,10.98124,-11.81102,7.578553,-0.3937008,7.946021,-0.3937008,4.543333,-11.81102,7.946021,-11.81102,4.543333,11.81102,7.946021,11.81102,4.543333,0.3937008,7.946021,0.3937008,4.543333,11.81102,37.19844,11.81102,33.79575,0.3937008,37.19844,0.3937008,33.79575,-0.3937008,25.87463,-0.3937008,23.02084,-11.81102,25.87463,-11.81102,23.02084,-0.3937008,22.47194,-11.81102,22.47194,11.81102,-2.744862,11.81102,-6.167959,0.3937008,-2.744862,0.3937008,-6.167959,-0.3937008,-35.92504,-0.3937008,-39.34814,-11.81102,-35.92504,-11.81102,-39.34814,-0.3937008,-2.744862,-0.3937008,-6.167959,-11.81102,-2.744862,-11.81102,-6.167959,11.81102,19.99082,11.81102,16.58813,0.3937008,19.99082,0.3937008,16.58813,-0.3937008,-21.53649,-0.3937008,-24.95959,-11.81102,-21.53649,-11.81102,-24.95959,-0.3937008,39.91343,-0.3937008,36.51074,-11.81102,39.91343,-11.81102,36.51074,-0.3937008,37.19844,-0.3937008,33.79575,-11.81102,37.19844,-11.81102,33.79575,-0.3937008,-25.20538,-0.3937008,-28.62848,-11.81102,-25.20538,-11.81102,-28.62848,-0.3937008,4.865868,-0.3937008,1.442771,-11.81102,4.865868,-11.81102,1.442771,-0.3937008,14.0033,-0.3937008,10.60061,-11.81102,14.0033,-11.81102,10.60061,-0.3937008,-17.82968,-0.3937008,-18.47039,-11.81102,-17.82968,-11.81102,-18.47039,-0.3937008,-21.25277,-11.81102,-21.25277,-0.3937008,-10.32653,-0.3937008,-13.74962,-11.81102,-10.32653,-11.81102,-13.74962,11.81102,34.43311,11.81102,31.03042,0.3937008,34.43311,0.3937008,31.03042,-0.3937008,-28.83036,-0.3937008,-32.25346,-11.81102,-28.83036,-11.81102,-32.25346,11.81102,-28.83036,11.81102,-32.25346,0.3937008,-28.83036,0.3937008,-32.25346,11.81102,-25.20538,11.81102,-28.62848,0.3937008,-25.20538,0.3937008,-28.62848,11.81102,28.76719,11.81102,25.3645,0.3937008,28.76719,0.3937008,25.3645,11.81102,-14.09099,11.81102,-17.51409,0.3937008,-14.09099,0.3937008,-17.51409,11.81102,25.87463,11.81102,23.02084,0.3937008,25.87463,0.3937008,23.02084,11.81102,22.47194,0.3937008,22.47194,11.81102,-32.40553,11.81102,-35.82862,0.3937008,-32.40553,0.3937008,-35.82862,11.81102,31.62137,11.81102,28.21868,0.3937008,31.62137,0.3937008,28.21868,11.81102,-6.542426,11.81102,-9.965523,0.3937008,-6.542426,0.3937008,-9.965523,11.81102,-35.92504,11.81102,-39.34814,0.3937008,-35.92504,0.3937008,-39.34814,11.81102,-17.82968,11.81102,-18.47039,0.3937008,-17.82968,0.3937008,-18.47039,11.81102,-21.25277,0.3937008,-21.25277,11.81102,17.00792,11.81102,13.60523,0.3937008,17.00792,0.3937008,13.60523,-15.74803,10.98124,-15.74803,7.578553,-15.74803,31.62137,-15.74803,28.21868,-15.74803,14.0033,-15.74803,10.60061,-15.74803,-35.92504,-15.74803,-39.34814,-15.74803,28.76719,-15.74803,25.3645,-15.74803,4.865868,-15.74803,1.442771,-15.74803,25.87463,-15.74803,23.02084,-15.74803,22.47194,-15.74803,7.946021,-15.74803,4.543333,-15.74803,1.059972,-15.74803,-2.363125,-15.74803,37.19844,-15.74803,33.79575,-15.74803,39.91343,-15.74803,36.51074,-15.74803,22.94779,-15.74803,19.5451,-15.74803,19.99082,-15.74803,16.58813,-15.74803,-6.542426,-15.74803,-9.965523,-15.74803,-10.32653,-15.74803,-13.74962,-15.74803,-2.744862,-15.74803,-6.167959,-15.74803,-14.09099,-15.74803,-17.51409,-15.74803,-21.53649,-15.74803,-24.95959,-15.74803,-32.40553,-15.74803,-35.82862,-15.74803,-17.82968,-15.74803,-18.47039,-15.74803,-21.25277,-15.74803,-28.83036,-15.74803,-32.25346,-15.74803,17.00792,-15.74803,13.60523,-15.74803,-25.20538,-15.74803,-28.62848,-15.74803,34.43311,-15.74803,31.03042,15.74803,25.87463,15.74803,23.02084,15.74803,22.47194,15.74803,-10.32653,15.74803,-13.74962,15.74803,39.91343,15.74803,36.51074,15.74803,7.946021,15.74803,4.543333,15.74803,-6.542426,15.74803,-9.965523,15.74803,17.00792,15.74803,13.60523,15.74803,-2.744862,15.74803,-6.167959,15.74803,22.94779,15.74803,19.5451,15.74803,-17.82968,15.74803,-18.47039,15.74803,-21.25277,15.74803,31.62137,15.74803,28.21868,15.74803,-25.20538,15.74803,-28.62848,15.74803,-28.83036,15.74803,-32.25346,15.74803,34.43311,15.74803,31.03042,15.74803,10.98124,15.74803,7.578553,15.74803,-32.40553,15.74803,-35.82862,15.74803,28.76719,15.74803,25.3645,15.74803,4.865868,15.74803,1.442771,15.74803,-21.53649,15.74803,-24.95959,15.74803,-35.92504,15.74803,-39.34814,15.74803,14.0033,15.74803,10.60061,15.74803,-14.09099,15.74803,-17.51409,15.74803,1.059972,15.74803,-2.363125,15.74803,19.99082,15.74803,16.58813,15.74803,37.19844,15.74803,33.79575,-15.74803,22.5566,-19.68504,22.5566,-15.74803,23.10549,-15.74803,22.5566,-19.68504,22.5566,-15.74803,23.10549 + } + UVIndex: *1944 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,71,70,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,87,89,90,90,89,91,91,89,92,92,89,93,93,89,94,89,95,94,94,95,96,97,96,95,98,100,99,101,99,100,102,101,100,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,149,151,153,152,151,154,152,153,155,154,153,156,154,155,157,156,155,158,157,155,159,157,158,160,159,158,161,159,160,162,161,160,163,161,162,164,161,163,165,164,163,166,165,163,167,165,166,168,167,166,169,167,168,170,169,168,171,169,170,172,171,170,173,171,172,174,173,172,175,173,174,176,175,174,177,175,176,178,177,176,179,177,178,180,179,178,181,179,180,182,181,180,183,181,182,184,183,182,185,183,184,186,185,184,187,185,186,188,187,186,189,187,188,190,187,189,191,190,189,192,191,189,193,191,192,194,193,192,195,193,194,196,195,194,197,195,196,198,195,197,199,198,197,200,198,199,201,198,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,216,214,218,219,218,214,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,251,250,253,252,250,254,253,250,255,253,254,256,255,254,257,255,256,258,255,257,259,258,257,260,258,259,261,260,259,262,260,261,263,262,261,264,262,263,265,264,263,266,264,265,267,264,266,268,267,266,269,267,268,270,269,268,271,269,270,272,271,270,273,271,272,274,273,272,275,273,274,276,275,274,277,275,276,278,277,276,279,277,278,280,279,278,281,279,280,282,281,280,283,281,282,284,283,282,285,283,284,286,285,284,287,285,286,288,287,286,289,287,288,290,289,288,291,290,288,292,291,288,293,291,292,294,291,293,295,294,293,296,294,295,297,296,295,298,296,297,299,298,297,300,299,297,301,300,297,302,300,301,303,305,304,306,304,305,307,309,308,310,308,309,311,308,310,312,308,311,313,308,312,314,313,312,315,313,314,316,315,314,317,316,314,318,316,317,319,318,317,320,318,319,321,320,319,322,320,321,323,322,321,324,322,323,325,324,323,326,325,323,327,325,326,328,327,326,329,327,328,330,329,328,331,329,330,332,331,330,333,331,332,334,333,332,335,333,334,336,335,334,337,335,336,338,337,336,339,337,338,340,339,338,341,339,340,342,341,340,343,341,342,344,343,342,345,343,344,346,345,344,347,345,346,348,347,346,349,347,348,350,347,349,351,347,350,352,351,350,353,352,350,354,352,353,355,354,353,356,354,355,357,356,355,358,356,357,359,356,358,360,356,359,361,360,359,362,364,363,365,363,364,366,368,367,369,367,368,368,366,370,371,370,366,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,432,431,430,433,431,432,434,436,435,437,435,436,438,437,436,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,448,450,449,451,449,450,452,454,453,455,453,454,456,458,457,459,457,458,460,462,461,463,461,462,464,466,465,467,465,466,468,470,469,471,469,470,472,474,473,475,473,474,476,478,477,479,477,478,480,479,478,481,479,480,482,481,480,483,481,482,484,483,482,485,483,484,486,483,485,487,486,485,488,486,487,489,488,487,490,488,489,491,490,489,492,491,489,493,491,492,494,491,493,495,494,493,496,494,495,497,496,495,498,496,497,499,498,497,500,498,499,501,500,499,502,500,501,503,502,501,504,502,503,505,504,503,506,504,505,507,506,505,508,506,507,509,508,507,510,508,509,511,510,509,512,510,511,513,512,511,514,512,513,515,514,513,516,514,515,517,516,515,518,517,515,519,517,518,520,517,519,521,520,519,522,520,521,523,522,521,524,522,523,525,524,523,526,525,523,527,525,526,528,527,526,529,528,526,530,532,531,533,531,532,534,531,533,535,534,533,536,535,533,537,536,533,538,537,533,533,539,538,540,538,539,531,541,530,542,544,543,545,543,544,546,548,547,549,547,548,550,552,551,553,551,552,554,556,555,557,555,556,558,560,559,561,559,560,562,564,563,565,563,564,566,568,567,569,567,568,570,572,571,573,571,572,574,576,575,577,575,576,578,580,579,581,579,580,582,584,583,585,583,584,586,588,587,589,587,588,590,592,591,593,591,592,594,596,595,597,595,596,598,600,599,601,599,600,602,604,603,605,603,604,606,608,607,609,607,608,610,612,611,613,611,612,614,616,615,617,615,616,618,620,619,621,619,620,622,624,623,625,623,624,626,628,627,629,627,628,630,632,631,633,631,632,634,631,633,635,634,633,636,638,637,639,637,638,640,642,641,643,641,642,644,646,645,647,645,646,648,650,649,651,649,650,652,654,653,655,653,654,656,658,657,659,657,658,660,662,661,663,661,662,664,666,665,667,665,666,668,670,669,671,669,670,672,674,673,675,673,674,676,678,677,679,677,678,680,677,679,681,680,679,682,684,683,685,683,684,686,688,687,689,687,688,690,692,691,693,691,692,694,696,695,697,695,696,698,700,699,701,699,700,702,704,703,705,703,704,706,708,707,709,707,708,710,712,711,713,711,712,714,711,713,715,714,713,716,718,717,719,717,718,720,722,721,723,721,722,724,726,725,727,725,726,728,730,729,731,729,730,732,734,733,735,733,734,736,733,735,737,736,735,738,740,739,741,739,740,616,742,617,743,617,742,600,744,601,745,601,744,674,746,675,747,675,746,642,748,643,749,643,748,548,750,549,751,549,750,670,752,671,753,671,752,632,754,633,755,633,754,635,633,755,756,635,755,620,757,621,758,621,757,592,759,593,760,593,759,662,761,663,762,663,761,658,763,659,764,659,763,572,765,573,766,573,765,552,767,553,768,553,767,568,769,569,770,569,769,684,771,685,772,685,771,646,773,647,774,647,773,544,775,545,776,545,775,654,777,655,778,655,777,604,779,605,780,605,779,678,781,679,782,679,781,681,679,782,783,681,782,692,784,693,785,693,784,560,786,561,787,561,786,666,788,667,789,667,788,596,790,597,791,597,790,710,711,792,793,792,711,714,793,711,794,793,714,586,587,795,796,795,587,554,555,797,798,797,555,622,623,799,800,799,623,724,725,801,802,801,725,738,739,803,804,803,739,636,637,805,806,805,637,582,583,807,808,807,583,732,733,809,810,809,733,736,810,733,811,810,736,720,721,812,813,812,721,698,699,814,815,814,699,694,695,816,817,816,695,686,687,818,819,818,687,610,611,820,821,820,611,716,717,822,823,822,717,702,703,824,825,824,703,562,563,826,827,826,563,606,607,828,829,828,607,728,729,830,831,830,729,578,579,832,833,832,579,706,707,834,835,834,707,574,575,836,837,836,575,648,649,838,839,838,649,626,627,840,841,840,627,842,844,843,845,847,846,556,656,557,657,557,656,708,542,709,543,709,542,700,664,701,665,701,664,608,652,609,653,609,652,628,660,629,661,629,660,722,598,723,599,723,598,730,640,731,641,731,640,712,630,713,631,713,630,715,713,631,634,715,631,580,672,581,673,581,672,696,690,697,691,697,690,704,546,705,547,705,546,650,550,651,551,651,550,740,558,741,559,741,558,576,590,577,591,577,590,564,668,565,669,565,668,688,594,689,595,689,594,588,682,589,683,589,682,638,644,639,645,639,644,718,602,719,603,719,602,624,618,625,619,625,618,612,614,613,615,613,614,584,570,585,571,585,570,734,676,735,677,735,676,737,735,677,680,737,677,726,566,727,567,727,566 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *648 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9918, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "EmissiveFactor", "Number", "", "A",0 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_slantFlatCurve, Model::RootNode + C: "OO",5370983451078718180,0 + + ;Geometry::, Model::Mesh road_slantFlatCurve + C: "OO",5458244861369093721,5370983451078718180 + + ;Material::pavement, Model::Mesh road_slantFlatCurve + C: "OO",17046,5370983451078718180 + + ;Material::asphalt, Model::Mesh road_slantFlatCurve + C: "OO",9934,5370983451078718180 + + ;Material::asphaltEdge, Model::Mesh road_slantFlatCurve + C: "OO",17042,5370983451078718180 + + ;Material::_defaultMat, Model::Mesh road_slantFlatCurve + C: "OO",9918,5370983451078718180 + + ;Material::line, Model::Mesh road_slantFlatCurve + C: "OO",9174,5370983451078718180 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatCurve.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatCurve.fbx.import new file mode 100644 index 0000000..f6117b3 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatCurve.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c7wopja1orgs3" +path="res://.godot/imported/road_slantFlatCurve.fbx-988f44631803d58de52a64b5e3771983.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatCurve.fbx" +dest_files=["res://.godot/imported/road_slantFlatCurve.fbx-988f44631803d58de52a64b5e3771983.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatHigh.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatHigh.fbx new file mode 100644 index 0000000..6ca9a62 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatHigh.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 22 + Millisecond: 972 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_slantFlatHigh.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_slantFlatHigh.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4803174271179433664, "Model::road_slantFlatHigh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4828792027685579565, "Geometry::", "Mesh" { + Vertices: *192 { + a: 5,5.2,4,5,5.1,4,5,5.2,5,5,5,5,5,5.1,3,5,5.1,0.09999999,5,5.1,-0.09999999,5,5.1,-3,5,5.1,-4,5,5,-5,5,5.2,-4,5,5.2,-5,5,5.1,-3,5,5.1,-0.09999999,-5,0.09999999,-3,-5,0.09999999,-0.09999999,5,5.1,3,-5,0.09999999,3,5,5.1,0.09999999,-5,0.09999999,0.09999999,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,-5,0,-5,5,5,-5,-5,0.2,-5,5,5.2,-5,-5,0,5,-5,0.2,5,5,5,5,5,5.2,5,-5,0.09999999,-4,-5,0.2,-4,5,5.1,-4,5,5.2,-4,5,5.2,4,5,5.2,5,-5,0.2,4,-5,0.2,5,-5,0.09999999,4,5,5.1,4,-5,0.2,4,5,5.2,4,5,5.2,-5,5,5.2,-4,-5,0.2,-5,-5,0.2,-4,5,5,5,5,5,-5,-5,0,5,-5,0,-5,5,5.1,-4,-5,0.09999999,-4,5,5.1,4,-5,0.09999999,4 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,2,3,-2,1,3,-5,4,3,-6,5,3,-7,6,3,-8,7,3,-9,3,9,-9,8,9,-11,11,10,-10,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,21,-24,25,24,-24,26,25,-24,27,26,-24,28,27,-24,29,28,-24,30,29,-24,21,31,-21,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,61,-13,14,12,-62,16,17,-63,63,62,-18,13,15,-19,19,18,-16 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *128 { + a: -15.74803,20.47244,-15.74803,20.07874,-19.68504,20.47244,-19.68504,19.68504,-11.81102,20.07874,-0.3937008,20.07874,0.3937008,20.07874,11.81102,20.07874,15.74803,20.07874,19.68504,19.68504,15.74803,20.47244,19.68504,20.47244,-11.81102,26.58632,-0.3937008,26.58632,-11.81102,-17.43077,-0.3937008,-17.43077,11.81102,26.58632,11.81102,-17.43077,0.3937008,26.58632,0.3937008,-17.43077,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-4.179663E-13,19.68504,-4.179663E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,19.68504,0,-19.68504,19.68504,19.68504,0.7874016,-19.68504,20.47244,-19.68504,0,-19.68504,0.7874016,19.68504,19.68504,19.68504,20.47244,-19.68504,0.3937008,-19.68504,0.7874016,19.68504,20.07874,19.68504,20.47244,15.74803,26.76239,19.68504,26.76239,15.74803,-17.2547,19.68504,-17.2547,19.68504,0.3937008,-19.68504,20.07874,19.68504,0.7874016,-19.68504,20.47244,-19.68504,26.76239,-15.74803,26.76239,-19.68504,-17.2547,-15.74803,-17.2547,-19.68504,26.41025,19.68504,26.41025,-19.68504,-17.60683,19.68504,-17.60683,-15.74803,26.58632,-15.74803,-17.43077,15.74803,26.58632,15.74803,-17.43077 + } + UVIndex: *132 { + a: 0,2,1,2,3,1,1,3,4,4,3,5,5,3,6,6,3,7,7,3,8,3,9,8,8,9,10,11,10,9,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,21,23,25,24,23,26,25,23,27,26,23,28,27,23,29,28,23,30,29,23,21,31,20,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,61,12,14,12,61,16,17,62,63,62,17,13,15,18,19,18,15 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_slantFlatHigh, Model::RootNode + C: "OO",4803174271179433664,0 + + ;Geometry::, Model::Mesh road_slantFlatHigh + C: "OO",4828792027685579565,4803174271179433664 + + ;Material::asphalt, Model::Mesh road_slantFlatHigh + C: "OO",9934,4803174271179433664 + + ;Material::pavement, Model::Mesh road_slantFlatHigh + C: "OO",17046,4803174271179433664 + + ;Material::asphaltEdge, Model::Mesh road_slantFlatHigh + C: "OO",17042,4803174271179433664 + + ;Material::line, Model::Mesh road_slantFlatHigh + C: "OO",9174,4803174271179433664 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatHigh.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatHigh.fbx.import new file mode 100644 index 0000000..1b2b059 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatHigh.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bp1mfmnal8c4u" +path="res://.godot/imported/road_slantFlatHigh.fbx-970d2172e520391a5b932f2a36f10b7e.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_slantFlatHigh.fbx" +dest_files=["res://.godot/imported/road_slantFlatHigh.fbx-970d2172e520391a5b932f2a36f10b7e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHigh.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHigh.fbx new file mode 100644 index 0000000..aec0d16 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHigh.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 67 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_slantHigh.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_slantHigh.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5638902810535982146, "Model::road_slantHigh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5729984509823446186, "Geometry::", "Mesh" { + Vertices: *192 { + a: 5,5.2,4,5,5.1,4,5,5.2,5,5,0,5,5,5.1,3,5,5.1,0.09999999,5,5.1,-0.09999999,5,5.1,-3,5,5.1,-4,5,0,-5,5,5.2,-4,5,5.2,-5,5,0,5,5,0,-5,-5,0,5,-5,0,-5,-5,0,-5,5,0,-5,-5,0.2,-5,5,5.2,-5,5,0,5,-5,0,5,5,5.2,5,-5,0.2,5,-5,0.09999999,-4,-5,0.2,-4,5,5.1,-4,5,5.2,-4,5,5.2,4,5,5.2,5,-5,0.2,4,-5,0.2,5,-5,0.09999999,4,5,5.1,4,-5,0.2,4,5,5.2,4,5,5.2,-5,5,5.2,-4,-5,0.2,-5,-5,0.2,-4,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,5.1,-3,5,5.1,-0.09999999,-5,0.09999999,-3,-5,0.09999999,-0.09999999,5,5.1,3,-5,0.09999999,3,5,5.1,0.09999999,-5,0.09999999,0.09999999,5,5.1,-4,-5,0.09999999,-4,5,5.1,4,-5,0.09999999,4 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,2,3,-2,1,3,-5,4,3,-6,5,3,-7,6,3,-8,7,3,-9,3,9,-9,8,9,-11,11,10,-10,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,45,-44,47,46,-44,48,47,-44,49,48,-44,50,49,-44,41,51,-41,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,61,-53,54,52,-62,56,57,-63,63,62,-58,53,55,-59,59,58,-56 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *128 { + a: -15.74803,20.47244,-15.74803,20.07874,-19.68504,20.47244,-19.68504,-2.107383E-14,-11.81102,20.07874,-0.3937008,20.07874,0.3937008,20.07874,11.81102,20.07874,15.74803,20.07874,19.68504,-2.107383E-14,15.74803,20.47244,19.68504,20.47244,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,20.47244,19.68504,0,-19.68504,0,19.68504,20.47244,-19.68504,0.7874016,-19.68504,0.3937008,-19.68504,0.7874016,19.68504,20.07874,19.68504,20.47244,15.74803,26.76239,19.68504,26.76239,15.74803,-17.2547,19.68504,-17.2547,19.68504,0.3937008,-19.68504,20.07874,19.68504,0.7874016,-19.68504,20.47244,-19.68504,26.76239,-15.74803,26.76239,-19.68504,-17.2547,-15.74803,-17.2547,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-4.179663E-13,19.68504,-4.179663E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-11.81102,26.58632,-0.3937008,26.58632,-11.81102,-17.43077,-0.3937008,-17.43077,11.81102,26.58632,11.81102,-17.43077,0.3937008,26.58632,0.3937008,-17.43077,-15.74803,26.58632,-15.74803,-17.43077,15.74803,26.58632,15.74803,-17.43077 + } + UVIndex: *132 { + a: 0,2,1,2,3,1,1,3,4,4,3,5,5,3,6,6,3,7,7,3,8,3,9,8,8,9,10,11,10,9,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,46,45,43,47,46,43,48,47,43,49,48,43,50,49,43,41,51,40,52,54,53,55,53,54,56,58,57,59,57,58,60,61,52,54,52,61,56,57,62,63,62,57,53,55,58,59,58,55 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_slantHigh, Model::RootNode + C: "OO",5638902810535982146,0 + + ;Geometry::, Model::Mesh road_slantHigh + C: "OO",5729984509823446186,5638902810535982146 + + ;Material::pavement, Model::Mesh road_slantHigh + C: "OO",17046,5638902810535982146 + + ;Material::asphalt, Model::Mesh road_slantHigh + C: "OO",9934,5638902810535982146 + + ;Material::asphaltEdge, Model::Mesh road_slantHigh + C: "OO",17042,5638902810535982146 + + ;Material::line, Model::Mesh road_slantHigh + C: "OO",9174,5638902810535982146 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHigh.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHigh.fbx.import new file mode 100644 index 0000000..c8f3180 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHigh.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b5bs82uavk4ap" +path="res://.godot/imported/road_slantHigh.fbx-5889b720191b6a0da6943587cfdcac73.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHigh.fbx" +dest_files=["res://.godot/imported/road_slantHigh.fbx-5889b720191b6a0da6943587cfdcac73.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHighBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHighBarrier.fbx new file mode 100644 index 0000000..9ea35e6 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHighBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 140 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_slantHighBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_slantHighBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4956664059621855264, "Model::road_slantHighBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5439688318205671122, "Geometry::", "Mesh" { + Vertices: *144 { + a: 5,5,5,5,5,4.5,-5,0,5,-5,0,4.5,5,5.8,5,-5,0.8,5,5,5.8,4.7,-5,0.8,4.7,-5,0,5,-5,0.8,5,5,5,5,5,5.8,5,5,5,4.5,5,5,5,5,5.8,4.7,5,5.8,5,-5,0,-5,-5,0.8,-5,-5,0,-4.5,-5,0.8,-4.7,5,5.8,-5,5,5,-5,5,5.8,-4.7,5,5,-4.5,5,5,-5,-5,0,-5,5,5,-4.5,-5,0,-4.5,5,5.8,-5,5,5.8,-4.7,-5,0.8,-5,-5,0.8,-4.7,-5,0,-4.5,-5,0.8,-4.7,5,5,-4.5,5,5.8,-4.7,-5,0,-5,5,5,-5,-5,0.8,-5,5,5.8,-5,-5,0,4.5,-5,0.8,4.7,-5,0,5,-5,0.8,5,-5,0,4.5,5,5,4.5,-5,0.8,4.7,5,5.8,4.7 + } + PolygonVertexIndex: *72 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *216 { + a: 0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.1203859,0.2407717,0.9630868,-0.1203859,0.2407717,0.9630868,-0.1203859,0.2407717,0.9630868,-0.1203859,0.2407717,0.9630868,-0.1203859,0.2407717,0.9630868,-0.1203859,0.2407717,0.9630868,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1203859,0.2407717,-0.9630868,-0.1203859,0.2407717,-0.9630868,-0.1203859,0.2407717,-0.9630868,-0.1203859,0.2407717,-0.9630868,-0.1203859,0.2407717,-0.9630868,-0.1203859,0.2407717,-0.9630868 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: -19.68504,26.41025,-17.71654,26.41025,-19.68504,-17.60683,-17.71654,-17.60683,19.68504,27.8188,19.68504,-16.19829,18.50394,27.8188,18.50394,-16.19829,-19.68504,0,-19.68504,3.149606,19.68504,19.68504,19.68504,22.83465,-17.71654,19.68504,-19.68504,19.68504,-18.50394,22.83465,-19.68504,22.83465,-19.68504,-5.224579E-15,-19.68504,3.149606,-17.71654,-5.224579E-15,-18.50394,3.149606,19.68504,22.83465,19.68504,19.68504,18.50394,22.83465,17.71654,19.68504,19.68504,26.41025,19.68504,-17.60683,17.71654,26.41025,17.71654,-17.60683,-19.68504,27.8188,-18.50394,27.8188,-19.68504,-16.19829,-18.50394,-16.19829,-21.7305,3.644825,-21.82816,6.889896,17.33556,23.92652,17.2379,27.17159,19.68504,1.323736E-28,-19.68504,19.68504,19.68504,3.149606,-19.68504,22.83465,17.71654,1.776357E-13,18.50394,3.149606,19.68504,1.776357E-13,19.68504,3.149606,21.7305,3.644825,-17.33556,23.92652,21.82816,6.889896,-17.2379,27.17159 + } + UVIndex: *72 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *24 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_slantHighBarrier, Model::RootNode + C: "OO",4956664059621855264,0 + + ;Geometry::, Model::Mesh road_slantHighBarrier + C: "OO",5439688318205671122,4956664059621855264 + + ;Material::pavement, Model::Mesh road_slantHighBarrier + C: "OO",17046,4956664059621855264 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHighBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHighBarrier.fbx.import new file mode 100644 index 0000000..dd7040e --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHighBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://do5bvpxm03piv" +path="res://.godot/imported/road_slantHighBarrier.fbx-894b6096eac9c3f3288f211271c5e0c4.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_slantHighBarrier.fbx" +dest_files=["res://.godot/imported/road_slantHighBarrier.fbx-894b6096eac9c3f3288f211271c5e0c4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_split.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_split.fbx new file mode 100644 index 0000000..91015c1 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_split.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 337 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_split.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_split.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4793432583949380004, "Model::road_split", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4654931548929634759, "Geometry::", "Mesh" { + Vertices: *2799 { + a: 5,3.491118E-14,-5,4.565492,1.517875E-12,-5.028009,5,1.865408E-13,5.0053,4.756434,6.874514E-13,5.019144,4.472675,7.937078E-13,5.056696,4.131904,1.446812E-12,-5.091085,4.185782,8.749792E-13,5.116431,3.894755,8.920964E-13,5.199284,3.699944,1.376482E-12,-5.189127,3.878667,8.174237E-13,5.205107,3.598946,9.933331E-13,5.306362,3.270315,1.306773E-12,-5.321974,3.306839,1.06465E-12,5.434989,3.298089,1.067865E-12,5.438843,2.992284,1.134783E-12,5.597866,2.843718,1.237683E-12,-5.489408,2.681958,1.191436E-12,5.784453,2.5,1.182976E-12,-5.653396,2.367799,1.232805E-12,5.999454,2.420851,1.169271E-12,-5.691158,2.002401,1.115917E-12,-5.926893,2.050691,1.282634E-12,6.243516,1.731657,1.318729E-12,6.517068,1.589052,1.048746E-12,-6.19623,1.408402,1.365512E-12,6.82355,1.181478,9.821944E-13,-6.49873,1.016181,1.414777E-12,7.228472,0.7803433,9.307582E-13,-6.833897,0.5450277,1.50135E-12,7.667641,0.3863032,8.653913E-13,-7.201187,0.05799679,1.569593E-12,8.074579,-2.887646E-14,8.150831E-13,-7.6,-0.4448977,1.653318E-12,8.447824,-0.3904865,7.498291E-13,-7.970224,-0.7876658,6.983929E-13,-8.310781,-0.9634945,1.735351E-12,8.785741,-1.190975,6.320108E-13,-8.621188,-1.497406,1.797052E-12,9.086523,-1.599841,5.795031E-13,-8.901004,-1.637907,1.81541E-12,9.153555,-2.013686,5.119367E-13,-9.149833,-2.045929,1.87336E-12,9.348222,-2.431921,4.438063E-13,-9.367322,-2.607955,1.944875E-12,9.568811,-2.5,4.299321E-13,-9.397301,-2.853955,3.751119E-13,-9.553162,-3.181897,2.011539E-12,9.746281,-3.19722,1.807598E-13,-9.677419,-3.76566,2.073098E-12,9.878777,-3.279187,3.130163E-13,-9.70709,-3.707016,2.503002E-13,-9.828888,-4.136835,1.797447E-13,-9.918383,-4.356654,2.28327E-12,9.964752,-4.568033,1.086815E-13,-9.975447,-4.90346,5.225398E-13,10,-5,0,-10,-5,0,10,-3.537043,0.09999999,-8.738644,-3.586158,0.09999999,-8.756423,-3.537043,0.2,-8.738644,-3.586158,0.2,-8.756423,-3.225466,0.09999999,-8.625857,-3.225466,0.2,-8.625857,-3.225466,0.09999999,-8.625857,-3.225466,0.2,-8.625857,-2.902354,0.09999999,-8.483576,-2.902354,0.2,-8.483576,-2.86386,0.09999999,-8.466626,-2.86386,0.2,-8.466626,-3.945766,0.09999999,-8.858798,-3.945766,0.2,-8.858798,-3.586158,0.09999999,-8.756423,-3.586158,0.2,-8.756423,-4.304311,0.09999999,-8.933453,-4.304311,0.2,-8.933453,-3.945766,0.09999999,-8.858798,-3.945766,0.2,-8.858798,5,0.2,-4.003679,4.935776,0.2,-4.003679,5,0.2,-5,4.565492,0.2,-5.028009,4.461349,0.2,-4.034261,4.131904,0.2,-5.091085,3.949266,0.2,-4.108757,3.699944,0.2,-5.189127,3.441605,0.2,-4.22398,3.270315,0.2,-5.321974,2.94001,0.2,-4.37908,2.843718,0.2,-5.489408,2.445878,0.2,-4.573021,2.5,0.2,-5.653396,2.420851,0.2,-5.691158,2.070092,0.2,-4.752308,2.002401,0.2,-5.926893,1.960349,0.2,-4.804667,1.589052,0.2,-6.19623,1.48432,0.2,-5.072839,1.181478,0.2,-6.49873,1.018486,0.2,-5.376375,0.7803433,0.2,-6.833897,0.5633782,0.2,-5.714154,0.3863032,0.2,-7.201187,0.1194091,0.2,-6.085113,-1.443823E-14,0.2,-7.6,-0.3130858,0.2,-6.488247,-0.3904865,0.2,-7.970224,-0.7023401,0.2,-6.890106,-0.7876658,0.2,-8.310781,-1.0593,0.2,-7.228543,-1.190975,0.2,-8.621188,-1.41751,0.2,-7.535686,-1.599841,0.2,-8.901004,-1.777832,0.2,-7.813008,-2.013686,0.2,-9.149833,-2.13947,0.2,-8.060502,-2.431921,0.2,-9.367322,-2.501692,0.2,-8.278293,-2.5,0.2,-9.397301,-2.853955,0.2,-9.553162,-2.86386,0.2,-8.466626,-3.19722,0.2,-9.677419,-2.902354,0.2,-8.483576,-3.225466,0.2,-8.625857,-3.279187,0.2,-9.70709,-3.537043,0.2,-8.738644,-3.707016,0.2,-9.828888,-3.586158,0.2,-8.756423,-3.945766,0.2,-8.858798,-4.136835,0.2,-9.918383,-4.304311,0.2,-8.933453,-4.568033,0.2,-9.975447,-4.661985,0.2,-8.980787,-5,0.2,-10,-5,0.2,-9,-5,0.09999999,-9,-5,0.2,-9,-4.661985,0.09999999,-8.980787,-4.661985,0.2,-8.980787,-4.661985,0.09999999,-8.980787,-4.661985,0.2,-8.980787,-4.304311,0.09999999,-8.933453,-4.304311,0.2,-8.933453,-2.86386,0.09999999,-8.466626,-2.86386,0.2,-8.466626,-2.501692,0.09999999,-8.278293,-2.501692,0.2,-8.278293,0.1194091,0.09999999,-6.085113,0.1194091,0.2,-6.085113,0.5633782,0.09999999,-5.714154,0.5633782,0.2,-5.714154,4.935776,0.09999999,-4.003679,4.461349,0.09999999,-4.034261,4.935776,0.2,-4.003679,4.461349,0.2,-4.034261,-1.777832,0.09999999,-7.813008,-1.777832,0.2,-7.813008,-1.41751,0.09999999,-7.535686,-1.41751,0.2,-7.535686,-1.41751,0.09999999,-7.535686,-1.41751,0.2,-7.535686,-1.0593,0.09999999,-7.228543,-1.0593,0.2,-7.228543,1.018486,0.09999999,-5.376375,1.018486,0.2,-5.376375,1.48432,0.09999999,-5.072839,1.48432,0.2,-5.072839,2.070092,0.09999999,-4.752308,2.070092,0.2,-4.752308,2.445878,0.09999999,-4.573021,2.445878,0.2,-4.573021,1.960349,0.2,-4.804667,1.960349,0.09999999,-4.804667,-2.13947,0.09999999,-8.060502,-2.13947,0.2,-8.060502,-1.777832,0.09999999,-7.813008,-1.777832,0.2,-7.813008,0.5633782,0.09999999,-5.714154,0.5633782,0.2,-5.714154,1.018486,0.09999999,-5.376375,1.018486,0.2,-5.376375,-2.501692,0.09999999,-8.278293,-2.501692,0.2,-8.278293,-2.13947,0.09999999,-8.060502,-2.13947,0.2,-8.060502,-5,0,10,-5,0.2,10,-4.90346,5.225398E-13,10,-4.90346,0.2,10,2.94001,0.09999999,-4.37908,2.94001,0.2,-4.37908,3.441605,0.09999999,-4.22398,3.441605,0.2,-4.22398,3.441605,0.09999999,-4.22398,3.441605,0.2,-4.22398,3.949266,0.09999999,-4.108757,3.949266,0.2,-4.108757,3.949266,0.09999999,-4.108757,3.949266,0.2,-4.108757,4.461349,0.09999999,-4.034261,4.461349,0.2,-4.034261,5,0.09999999,-4.003679,4.935776,0.09999999,-4.003679,5,0.2,-4.003679,4.935776,0.2,-4.003679,-1.0593,0.09999999,-7.228543,-1.0593,0.2,-7.228543,-0.7023401,0.09999999,-6.890106,-0.7023401,0.2,-6.890106,-0.7023401,0.2,-6.890106,-0.3130858,0.2,-6.488247,-0.7023401,0.09999999,-6.890106,-0.3130858,0.09999999,-6.488247,-0.3130858,0.09999999,-6.488247,-0.3130858,0.2,-6.488247,0.1194091,0.09999999,-6.085113,0.1194091,0.2,-6.085113,1.48432,0.09999999,-5.072839,1.48432,0.2,-5.072839,1.960349,0.09999999,-4.804667,1.960349,0.2,-4.804667,2.445878,0.09999999,-4.573021,2.445878,0.2,-4.573021,2.94001,0.09999999,-4.37908,2.94001,0.2,-4.37908,4.472675,7.937078E-13,5.056696,4.185782,8.749792E-13,5.116431,4.472675,0.2,5.056696,4.185782,0.2,5.116431,5,1.865408E-13,5.0053,4.756434,6.874514E-13,5.019144,5,0.2,5.0053,4.756434,0.2,5.019144,4.756434,6.874514E-13,5.019144,4.472675,7.937078E-13,5.056696,4.756434,0.2,5.019144,4.472675,0.2,5.056696,4.185782,8.749792E-13,5.116431,3.894755,8.920964E-13,5.199284,4.185782,0.2,5.116431,3.894755,0.2,5.199284,3.878667,8.174237E-13,5.205107,3.878667,0.2,5.205107,3.894755,8.920964E-13,5.199284,3.894755,0.2,5.199284,3.598946,9.933331E-13,5.306362,3.598946,0.2,5.306362,0.05799679,1.569593E-12,8.074579,-0.4448977,1.653318E-12,8.447824,0.05799679,0.2,8.074579,-0.4448977,0.2,8.447824,-4.90346,5.225398E-13,10,-4.90346,0.2,10,-4.356654,2.28327E-12,9.964752,-4.356654,0.2,9.964752,3.598946,9.933331E-13,5.306362,3.306839,1.06465E-12,5.434989,3.598946,0.2,5.306362,3.306839,0.2,5.434989,3.298089,1.067865E-12,5.438843,3.298089,0.2,5.438843,2.681958,1.191436E-12,5.784453,2.367799,1.232805E-12,5.999454,2.681958,0.2,5.784453,2.367799,0.2,5.999454,1.016181,1.414777E-12,7.228472,0.5450277,1.50135E-12,7.667641,1.016181,0.2,7.228472,0.5450277,0.2,7.667641,0.5450277,1.50135E-12,7.667641,0.05799679,1.569593E-12,8.074579,0.5450277,0.2,7.667641,0.05799679,0.2,8.074579,-0.9634945,1.735351E-12,8.785741,-1.497406,1.797052E-12,9.086523,-0.9634945,0.2,8.785741,-1.497406,0.2,9.086523,2.050691,1.282634E-12,6.243516,1.731657,1.318729E-12,6.517068,2.050691,0.2,6.243516,1.731657,0.2,6.517068,-1.497406,1.797052E-12,9.086523,-1.637907,1.81541E-12,9.153555,-1.497406,0.2,9.086523,-1.637907,0.2,9.153555,-2.045929,1.87336E-12,9.348222,-2.045929,0.2,9.348222,-3.181897,2.011539E-12,9.746281,-3.76566,2.073098E-12,9.878777,-3.181897,0.2,9.746281,-3.76566,0.2,9.878777,-3.76566,2.073098E-12,9.878777,-4.356654,2.28327E-12,9.964752,-3.76566,0.2,9.878777,-4.356654,0.2,9.964752,3.298089,1.067865E-12,5.438843,2.992284,1.134783E-12,5.597866,3.298089,0.2,5.438843,2.992284,0.2,5.597866,2.367799,1.232805E-12,5.999454,2.050691,1.282634E-12,6.243516,2.367799,0.2,5.999454,2.050691,0.2,6.243516,1.408402,0.2,6.82355,1.408402,1.365512E-12,6.82355,1.016181,0.2,7.228472,1.016181,1.414777E-12,7.228472,-2.607955,1.944875E-12,9.568811,-3.181897,2.011539E-12,9.746281,-2.607955,0.2,9.568811,-3.181897,0.2,9.746281,-2.045929,1.87336E-12,9.348222,-2.607955,1.944875E-12,9.568811,-2.045929,0.2,9.348222,-2.607955,0.2,9.568811,-0.4448977,1.653318E-12,8.447824,-0.9634945,1.735351E-12,8.785741,-0.4448977,0.2,8.447824,-0.9634945,0.2,8.785741,1.731657,1.318729E-12,6.517068,1.408402,1.365512E-12,6.82355,1.731657,0.2,6.517068,1.408402,0.2,6.82355,2.992284,1.134783E-12,5.597866,2.681958,1.191436E-12,5.784453,2.992284,0.2,5.597866,2.681958,0.2,5.784453,0.7023401,0.2,6.109894,0.3130858,0.2,6.511753,0.7023401,0.09999999,6.109894,0.3130858,0.09999999,6.511753,-4.935776,0.09999999,8.996321,-4.461349,0.09999999,8.965738,-4.935776,0.2,8.996321,-4.461349,0.2,8.965738,5,0.2,4,5,0.2,5.0053,4.661985,0.2,4.019213,4.756434,0.2,5.019144,4.472675,0.2,5.056696,4.304311,0.2,4.066547,4.185782,0.2,5.116431,3.945766,0.2,4.141201,3.894755,0.2,5.199284,3.586158,0.2,4.243577,3.878667,0.2,5.205107,3.598946,0.2,5.306362,3.306839,0.2,5.434989,3.537043,0.2,4.261356,3.225466,0.2,4.374143,3.298089,0.2,5.438843,2.992284,0.2,5.597866,2.902354,0.2,4.516423,2.681958,0.2,5.784453,2.86386,0.2,4.533373,2.501692,0.2,4.721707,2.367799,0.2,5.999454,2.13947,0.2,4.939497,2.050691,0.2,6.243516,1.777832,0.2,5.186992,1.731657,0.2,6.517068,1.41751,0.2,5.464314,1.408402,0.2,6.82355,1.0593,0.2,5.771457,1.016181,0.2,7.228472,0.7023401,0.2,6.109894,0.5450277,0.2,7.667641,0.3130858,0.2,6.511753,0.05799679,0.2,8.074579,-0.1194091,0.2,6.914887,-0.4448977,0.2,8.447824,-0.5633782,0.2,7.285846,-0.9634945,0.2,8.785741,-1.018486,0.2,7.623625,-1.497406,0.2,9.086523,-1.48432,0.2,7.927161,-1.960349,0.2,8.195333,-1.637907,0.2,9.153555,-2.045929,0.2,9.348222,-2.070092,0.2,8.247692,-2.607955,0.2,9.568811,-2.445878,0.2,8.426979,-2.94001,0.2,8.62092,-3.181897,0.2,9.746281,-3.441605,0.2,8.776019,-3.76566,0.2,9.878777,-3.949266,0.2,8.891242,-4.356654,0.2,9.964752,-4.461349,0.2,8.965738,-4.90346,0.2,10,-4.935776,0.2,8.996321,-5,0.2,10,-5,0.2,8.996321,5,0.09999999,4,5,0.2,4,4.661985,0.09999999,4.019213,4.661985,0.2,4.019213,4.304311,0.09999999,4.066547,4.304311,0.2,4.066547,3.945766,0.09999999,4.141201,3.945766,0.2,4.141201,3.945766,0.09999999,4.141201,3.945766,0.2,4.141201,3.586158,0.09999999,4.243577,3.586158,0.2,4.243577,4.661985,0.09999999,4.019213,4.661985,0.2,4.019213,4.304311,0.09999999,4.066547,4.304311,0.2,4.066547,3.537043,0.09999999,4.261356,3.537043,0.2,4.261356,3.225466,0.09999999,4.374143,3.225466,0.2,4.374143,3.586158,0.09999999,4.243577,3.586158,0.2,4.243577,3.225466,0.09999999,4.374143,3.225466,0.2,4.374143,2.902354,0.09999999,4.516423,2.902354,0.2,4.516423,2.86386,0.09999999,4.533373,2.86386,0.2,4.533373,2.86386,0.09999999,4.533373,2.86386,0.2,4.533373,2.501692,0.09999999,4.721707,2.501692,0.2,4.721707,2.501692,0.09999999,4.721707,2.501692,0.2,4.721707,2.13947,0.09999999,4.939497,2.13947,0.2,4.939497,2.13947,0.09999999,4.939497,2.13947,0.2,4.939497,1.777832,0.09999999,5.186992,1.777832,0.2,5.186992,1.41751,0.09999999,5.464314,1.41751,0.2,5.464314,1.0593,0.09999999,5.771457,1.0593,0.2,5.771457,-0.5633782,0.09999999,7.285846,-0.5633782,0.2,7.285846,-1.018486,0.09999999,7.623625,-1.018486,0.2,7.623625,-1.018486,0.09999999,7.623625,-1.018486,0.2,7.623625,-1.48432,0.09999999,7.927161,-1.48432,0.2,7.927161,-0.1194091,0.09999999,6.914887,-0.1194091,0.2,6.914887,-0.5633782,0.09999999,7.285846,-0.5633782,0.2,7.285846,-1.48432,0.09999999,7.927161,-1.48432,0.2,7.927161,-1.960349,0.09999999,8.195333,-1.960349,0.2,8.195333,0.3130858,0.09999999,6.511753,0.3130858,0.2,6.511753,-0.1194091,0.09999999,6.914887,-0.1194091,0.2,6.914887,1.777832,0.09999999,5.186992,1.777832,0.2,5.186992,1.41751,0.09999999,5.464314,1.41751,0.2,5.464314,-1.960349,0.09999999,8.195333,-1.960349,0.2,8.195333,-2.070092,0.09999999,8.247692,-2.070092,0.2,8.247692,-2.445878,0.09999999,8.426979,-2.445878,0.2,8.426979,-2.445878,0.09999999,8.426979,-2.445878,0.2,8.426979,-2.94001,0.09999999,8.62092,-2.94001,0.2,8.62092,-2.94001,0.09999999,8.62092,-2.94001,0.2,8.62092,-3.441605,0.09999999,8.776019,-3.441605,0.2,8.776019,-3.949266,0.09999999,8.891242,-3.949266,0.2,8.891242,-4.461349,0.09999999,8.965738,-4.461349,0.2,8.965738,-5,0.09999999,8.996321,-4.935776,0.09999999,8.996321,-5,0.2,8.996321,-4.935776,0.2,8.996321,-3.441605,0.09999999,8.776019,-3.441605,0.2,8.776019,-3.949266,0.09999999,8.891242,-3.949266,0.2,8.891242,1.0593,0.09999999,5.771457,1.0593,0.2,5.771457,0.7023401,0.09999999,6.109894,0.7023401,0.2,6.109894,-4.136835,1.797447E-13,-9.918383,-3.707016,2.503002E-13,-9.828888,-4.136835,0.2,-9.918383,-3.707016,0.2,-9.828888,-5,0,-10,-4.568033,1.086815E-13,-9.975447,-5,0.2,-10,-4.568033,0.2,-9.975447,2.843718,1.237683E-12,-5.489408,3.270315,1.306773E-12,-5.321974,2.843718,0.2,-5.489408,3.270315,0.2,-5.321974,-1.190975,6.320108E-13,-8.621188,-0.7876658,6.983929E-13,-8.310781,-1.190975,0.2,-8.621188,-0.7876658,0.2,-8.310781,-0.7876658,6.983929E-13,-8.310781,-0.3904865,7.498291E-13,-7.970224,-0.7876658,0.2,-8.310781,-0.3904865,0.2,-7.970224,3.270315,1.306773E-12,-5.321974,3.699944,1.376482E-12,-5.189127,3.270315,0.2,-5.321974,3.699944,0.2,-5.189127,-4.568033,1.086815E-13,-9.975447,-4.136835,1.797447E-13,-9.918383,-4.568033,0.2,-9.975447,-4.136835,0.2,-9.918383,2.420851,1.169271E-12,-5.691158,2.5,1.182976E-12,-5.653396,2.420851,0.2,-5.691158,2.5,0.2,-5.653396,2.843718,1.237683E-12,-5.489408,2.843718,0.2,-5.489408,4.131904,1.446812E-12,-5.091085,4.565492,1.517875E-12,-5.028009,4.131904,0.2,-5.091085,4.565492,0.2,-5.028009,-2.013686,5.119367E-13,-9.149833,-1.599841,5.795031E-13,-8.901004,-2.013686,0.2,-9.149833,-1.599841,0.2,-8.901004,-3.19722,1.807598E-13,-9.677419,-3.19722,0.2,-9.677419,-3.279187,3.130163E-13,-9.70709,-3.279187,0.2,-9.70709,-2.853955,3.751119E-13,-9.553162,-2.853955,0.2,-9.553162,-2.853955,3.751119E-13,-9.553162,-2.5,4.299321E-13,-9.397301,-2.853955,0.2,-9.553162,-2.5,0.2,-9.397301,-2.431921,4.438063E-13,-9.367322,-2.431921,0.2,-9.367322,-2.431921,4.438063E-13,-9.367322,-2.013686,5.119367E-13,-9.149833,-2.431921,0.2,-9.367322,-2.013686,0.2,-9.149833,-1.599841,5.795031E-13,-8.901004,-1.190975,6.320108E-13,-8.621188,-1.599841,0.2,-8.901004,-1.190975,0.2,-8.621188,0.3863032,8.653913E-13,-7.201187,0.7803433,9.307582E-13,-6.833897,0.3863032,0.2,-7.201187,0.7803433,0.2,-6.833897,0.7803433,9.307582E-13,-6.833897,1.181478,9.821944E-13,-6.49873,0.7803433,0.2,-6.833897,1.181478,0.2,-6.49873,-3.707016,2.503002E-13,-9.828888,-3.279187,3.130163E-13,-9.70709,-3.707016,0.2,-9.828888,-3.279187,0.2,-9.70709,1.181478,9.821944E-13,-6.49873,1.589052,1.048746E-12,-6.19623,1.181478,0.2,-6.49873,1.589052,0.2,-6.19623,2.002401,1.115917E-12,-5.926893,2.420851,1.169271E-12,-5.691158,2.002401,0.2,-5.926893,2.420851,0.2,-5.691158,-0.3904865,7.498291E-13,-7.970224,-2.887646E-14,8.150831E-13,-7.6,-0.3904865,0.2,-7.970224,-1.443823E-14,0.2,-7.6,3.699944,1.376482E-12,-5.189127,4.131904,1.446812E-12,-5.091085,3.699944,0.2,-5.189127,4.131904,0.2,-5.091085,5,3.491118E-14,-5,5,0.2,-5,4.565492,1.517875E-12,-5.028009,4.565492,0.2,-5.028009,-1.443823E-14,0.2,-7.6,-2.887646E-14,8.150831E-13,-7.6,0.3863032,0.2,-7.201187,0.3863032,8.653913E-13,-7.201187,1.589052,1.048746E-12,-6.19623,2.002401,1.115917E-12,-5.926893,1.589052,0.2,-6.19623,2.002401,0.2,-5.926893,-4.034074,0.2,0.258819,-4.034074,0.09999999,0.258819,-4.133974,0.2,0.5,-4.133974,0.09999999,0.5,-4.5,0.09999999,0.8660254,-4.741181,0.09999999,0.9659258,-4.5,0.2,0.8660254,-4.741181,0.2,0.9659258,-4.292893,0.2,-0.7071068,-4.292893,0.09999999,-0.7071068,-4.133974,0.2,-0.5,-4.133974,0.09999999,-0.5,-4.292893,0.09999999,0.7071068,-4.5,0.09999999,0.8660254,-4.292893,0.2,0.7071068,-4.5,0.2,0.8660254,-4.133974,0.2,-0.5,-4.133974,0.09999999,-0.5,-4.034074,0.2,-0.258819,-4.034074,0.09999999,-0.258819,-4.741181,0.09999999,-0.9659258,-4.5,0.09999999,-0.8660254,-4.741181,0.2,-0.9659258,-4.5,0.2,-0.8660254,-5,0.09999999,-1,-4.741181,0.09999999,-0.9659258,-5,0.2,-1,-4.741181,0.2,-0.9659258,-4.741181,0.09999999,0.9659258,-5,0.09999999,1,-4.741181,0.2,0.9659258,-5,0.2,1,-4.034074,0.2,-0.258819,-4.034074,0.09999999,-0.258819,-4,0.2,0,-4,0.09999999,0,-4,0.2,0,-4,0.09999999,0,-4.034074,0.2,0.258819,-4.034074,0.09999999,0.258819,-4,0.2,0,-4.034074,0.2,0.258819,-4.034074,0.2,-0.258819,-4.133974,0.2,-0.5,-4.133974,0.2,0.5,-4.292893,0.2,-0.7071068,-4.292893,0.2,0.7071068,-4.5,0.2,-0.8660254,-4.5,0.2,0.8660254,-4.741181,0.2,-0.9659258,-4.741181,0.2,0.9659258,-5,0.2,-1,-5,0.2,1,-4.133974,0.2,0.5,-4.133974,0.09999999,0.5,-4.292893,0.2,0.7071068,-4.292893,0.09999999,0.7071068,-4.5,0.09999999,-0.8660254,-4.292893,0.09999999,-0.7071068,-4.5,0.2,-0.8660254,-4.292893,0.2,-0.7071068,-5,0.2,-10,-5,0.2,-9,-5,0,-10,-5,0.09999999,-9,-5,0,10,-5,0.09999999,-7.9947,-5,0.09999999,-5.1,-5,0.09999999,-4.899768,-5,0.09999999,-2,-5,0.09999999,-1,-5,0.09999999,1,-5,0.2,-1,-5,0.09999999,2,-5,0.09999999,4.899768,-5,0.09999999,5.1,-5,0.09999999,8,-5,0.09999999,8.996321,-5,0.2,10,-5,0.2,8.996321,-5,0.2,1,5,0.2,4,5,0.09999999,4,5,0.2,5.0053,5,1.865408E-13,5.0053,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-3,5,0.09999999,-4.003679,5,3.491118E-14,-5,5,0.2,-4.003679,5,0.2,-5,5,0.09999999,3,4.568033,0.09999999,3.024553,5,0.09999999,0.09999999,4.835692,0.09999999,0.1093393,4.295573,0.09999999,0.1400401,4.136835,0.09999999,3.081618,3.651154,0.09999999,0.2253218,3.707016,0.09999999,3.171112,3.279187,0.09999999,3.29291,3.01464,0.09999999,0.3578531,3.19722,0.09999999,3.32258,2.853955,0.09999999,3.446838,2.388973,0.09999999,0.5359727,2.5,0.09999999,3.6027,2.431921,0.09999999,3.632678,2.013686,0.09999999,3.850167,2.211732,0.09999999,0.6001312,1.776572,0.09999999,0.7576529,1.599841,0.09999999,4.098995,1.333175,0.09999999,0.9529007,1.190975,0.09999999,4.378812,1.179298,0.09999999,1.020659,0.7876658,0.09999999,4.689219,0.5984679,0.09999999,1.3227,0.3904865,0.09999999,5.029776,0.03491864,0.09999999,1.661541,4.331469E-14,0.09999999,5.4,-0.51091,0.09999999,2.03509,-0.3863032,0.09999999,5.798812,-0.7803433,0.09999999,6.166102,-1.038881,0.09999999,2.441443,-1.181478,0.09999999,6.50127,-1.549072,0.09999999,2.8789,-1.589052,0.09999999,6.80377,-2.036787,0.09999999,3.341308,-2.002401,0.09999999,7.073106,-2.420851,0.09999999,7.308842,-2.414531,0.09999999,3.731285,-2.697053,0.09999999,3.994627,-2.5,0.09999999,7.346604,-2.843718,0.09999999,7.510592,-2.973966,0.09999999,4.226001,-3.270315,0.09999999,7.678027,-3.24369,0.09999999,4.426189,-3.504834,0.09999999,4.59635,-3.699944,0.09999999,7.810873,-3.756306,0.09999999,4.738018,-4.131904,0.09999999,7.908915,-3.997456,0.09999999,4.85307,-4.228199,0.09999999,4.943634,-4.565492,0.09999999,7.971992,-4.449126,0.09999999,5.011947,-4.661556,0.09999999,5.060163,-5,0.09999999,8,-4.867508,0.09999999,5.090123,-5,0.09999999,5.1,3.831774,0.09999999,7.219114E-15,3.617658,0.09999999,0.02833587,3.617658,0.09999999,-0.02833587,2.96689,0.09999999,-0.1638352,2.96689,0.09999999,0.1638352,2.327579,0.09999999,-0.3458392,2.327579,0.09999999,0.3458392,2.143768,0.09999999,-0.412376,2.143768,0.09999999,0.412376,1.70227,0.09999999,-0.5721919,1.70227,0.09999999,0.5721919,1.252704,0.09999999,-0.7701559,1.252704,0.09999999,0.7701559,1.09291,0.09999999,-0.8405203,1.09291,0.09999999,0.8405203,0.5008667,0.09999999,-1.148392,0.5008667,0.09999999,1.148392,-0.07300707,0.09999999,-1.49344,-0.07300707,0.09999999,1.49344,-0.6282814,0.09999999,-1.873454,-0.6282814,0.09999999,1.873454,-1.16485,0.09999999,-2.286424,-1.16485,0.09999999,2.286424,-1.682835,0.09999999,-2.730564,-1.682835,0.09999999,2.730564,-2.177254,0.09999999,-3.199329,-2.177254,0.09999999,3.199329,-2.554409,0.09999999,-3.588697,-2.554409,0.09999999,3.588697,-2.829239,0.09999999,-3.844869,-2.829239,0.09999999,3.844869,-3.097586,0.09999999,-4.069086,-3,0.09999999,0,-3.068148,0.09999999,-0.5176381,-3.267949,0.09999999,-1,-3.357804,0.09999999,-4.262218,-3.585787,0.09999999,-1.414214,-3.608449,0.09999999,-4.425539,-4,0.09999999,-1.732051,-3.848406,0.09999999,-4.560719,-4.077024,0.09999999,-4.669792,-4.482362,0.09999999,-1.931852,-4.29426,0.09999999,-4.755055,-4.500794,0.09999999,-4.818918,-5,0.09999999,-2,-4.698083,0.09999999,-4.863697,-4.889329,0.09999999,-4.891519,-5,0.09999999,-4.899768,-3.097586,0.09999999,4.069086,-3.068148,0.09999999,0.5176381,-3.267949,0.09999999,1,-3.357804,0.09999999,4.262218,-3.585787,0.09999999,1.414214,-3.608449,0.09999999,4.425539,-4,0.09999999,1.732051,-3.848406,0.09999999,4.560719,-4.077024,0.09999999,4.669792,-4.482362,0.09999999,1.931852,-4.29426,0.09999999,4.755055,-4.500794,0.09999999,4.818918,-5,0.09999999,2,-4.698083,0.09999999,4.863697,-4.889329,0.09999999,4.891519,-5,0.09999999,4.899768,5,0.09999999,-3,5,0.09999999,-0.09999999,4.90346,0.09999999,-3,4.835692,0.09999999,-0.1093393,4.356654,0.09999999,-3.035248,4.295573,0.09999999,-0.1400401,3.76566,0.09999999,-3.121223,3.651154,0.09999999,-0.2253218,3.181897,0.09999999,-3.253719,3.01464,0.09999999,-0.3578531,2.607955,0.09999999,-3.431189,2.388973,0.09999999,-0.5359727,2.045929,0.09999999,-3.651778,2.211732,0.09999999,-0.6001312,1.776572,0.09999999,-0.7576529,1.637907,0.09999999,-3.846445,1.333175,0.09999999,-0.9529007,1.497406,0.09999999,-3.913477,0.9634945,0.09999999,-4.214259,1.179298,0.09999999,-1.020659,0.5984679,0.09999999,-1.3227,0.4448977,0.09999999,-4.552175,0.03491864,0.09999999,-1.661541,-0.05799679,0.09999999,-4.925421,-0.51091,0.09999999,-2.03509,-0.5450277,0.09999999,-5.33236,-1.038881,0.09999999,-2.441443,-1.016181,0.09999999,-5.771528,-1.408402,0.09999999,-6.17645,-1.549072,0.09999999,-2.8789,-1.731657,0.09999999,-6.482932,-2.036787,0.09999999,-3.341308,-2.050691,0.09999999,-6.756484,-2.414531,0.09999999,-3.731285,-2.367799,0.09999999,-7.000546,-2.681958,0.09999999,-7.215547,-2.697053,0.09999999,-3.994627,-2.992284,0.09999999,-7.402134,-2.973966,0.09999999,-4.226001,-3.24369,0.09999999,-4.426189,-3.298089,0.09999999,-7.561157,-3.504834,0.09999999,-4.59635,-3.306839,0.09999999,-7.565011,-3.598946,0.09999999,-7.693638,-3.756306,0.09999999,-4.738018,-3.878667,0.09999999,-7.794893,-3.997456,0.09999999,-4.85307,-3.894755,0.09999999,-7.800717,-4.185782,0.09999999,-7.883568,-4.228199,0.09999999,-4.943634,-4.472675,0.09999999,-7.943304,-4.449126,0.09999999,-5.011947,-4.661556,0.09999999,-5.060163,-4.756434,0.09999999,-7.980856,-4.867508,0.09999999,-5.090123,-5,0.09999999,-7.9947,-5,0.09999999,-5.1,5,0.09999999,4,4.661985,0.09999999,4.019213,4.304311,0.09999999,4.066547,3.945766,0.09999999,4.141201,3.586158,0.09999999,4.243577,3.537043,0.09999999,4.261356,3.225466,0.09999999,4.374143,2.902354,0.09999999,4.516423,2.86386,0.09999999,4.533373,2.501692,0.09999999,4.721707,2.13947,0.09999999,4.939497,1.777832,0.09999999,5.186992,1.41751,0.09999999,5.464314,1.0593,0.09999999,5.771457,0.7023401,0.09999999,6.109894,0.3130858,0.09999999,6.511753,-0.1194091,0.09999999,6.914887,-0.5633782,0.09999999,7.285846,-1.018486,0.09999999,7.623625,-1.48432,0.09999999,7.927161,-1.960349,0.09999999,8.195333,-2.070092,0.09999999,8.247692,-2.445878,0.09999999,8.426979,-2.94001,0.09999999,8.62092,-3.441605,0.09999999,8.776019,-3.949266,0.09999999,8.891242,-4.461349,0.09999999,8.965738,-4.935776,0.09999999,8.996321,-5,0.09999999,8.996321,5,0.09999999,-4.003679,4.935776,0.09999999,-4.003679,4.461349,0.09999999,-4.034261,3.949266,0.09999999,-4.108757,3.441605,0.09999999,-4.22398,2.94001,0.09999999,-4.37908,2.445878,0.09999999,-4.573021,2.070092,0.09999999,-4.752308,1.960349,0.09999999,-4.804667,1.48432,0.09999999,-5.072839,1.018486,0.09999999,-5.376375,0.5633782,0.09999999,-5.714154,0.1194091,0.09999999,-6.085113,-0.3130858,0.09999999,-6.488247,-0.7023401,0.09999999,-6.890106,-1.0593,0.09999999,-7.228543,-1.41751,0.09999999,-7.535686,-1.777832,0.09999999,-7.813008,-2.13947,0.09999999,-8.060502,-2.501692,0.09999999,-8.278293,-2.86386,0.09999999,-8.466626,-2.902354,0.09999999,-8.483576,-3.225466,0.09999999,-8.625857,-3.537043,0.09999999,-8.738644,-3.586158,0.09999999,-8.756423,-3.945766,0.09999999,-8.858798,-4.304311,0.09999999,-8.933453,-4.661985,0.09999999,-8.980787,-5,0.09999999,-9,-4,0.09999999,0,-4.034074,0.09999999,-0.258819,-4.133974,0.09999999,-0.5,-4.292893,0.09999999,-0.7071068,-4.5,0.09999999,-0.8660254,-4.741181,0.09999999,-0.9659258,-5,0.09999999,-1,-4.034074,0.09999999,0.258819,-4.133974,0.09999999,0.5,-4.292893,0.09999999,0.7071068,-4.5,0.09999999,0.8660254,-4.741181,0.09999999,0.9659258,-5,0.09999999,1 + } + PolygonVertexIndex: *2586 { + a: 0,2,-2,3,1,-3,4,1,-4,5,1,-5,6,5,-5,7,5,-7,8,5,-8,9,8,-8,10,8,-10,11,8,-11,12,11,-11,13,11,-13,14,11,-14,15,11,-15,16,15,-15,17,15,-17,18,17,-17,19,17,-19,20,19,-19,21,20,-19,22,20,-22,23,20,-23,24,23,-23,25,23,-25,26,25,-25,27,25,-27,28,27,-27,29,27,-29,30,29,-29,31,29,-31,32,31,-31,33,31,-33,34,33,-33,35,34,-33,36,34,-36,37,36,-36,38,36,-38,39,38,-38,40,38,-40,41,40,-40,42,40,-42,43,42,-42,44,42,-44,45,44,-44,46,45,-44,47,45,-47,48,47,-47,49,47,-49,50,49,-49,51,50,-49,52,51,-49,53,51,-53,54,53,-53,55,53,-55,56,55,-55,57,59,-59,60,58,-60,57,61,-60,62,59,-62,63,65,-65,66,64,-66,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,78,-81,82,81,-81,83,81,-83,84,83,-83,85,83,-85,86,85,-85,87,85,-87,88,87,-87,89,87,-89,90,89,-89,91,89,-91,92,89,-92,93,92,-92,94,92,-94,95,94,-94,96,94,-96,97,96,-96,98,96,-98,99,98,-98,100,98,-100,101,100,-100,102,100,-102,103,102,-102,104,102,-104,105,104,-104,106,104,-106,107,106,-106,108,106,-108,109,108,-108,110,108,-110,111,110,-110,112,110,-112,113,112,-112,114,112,-114,115,114,-114,116,114,-116,117,116,-116,118,116,-118,119,116,-119,120,119,-119,121,119,-121,122,121,-121,123,122,-121,124,122,-124,125,124,-124,126,124,-126,127,126,-126,128,127,-126,129,127,-129,130,129,-129,131,129,-131,132,131,-131,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,167,170,-167,171,166,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,240,241,-245,245,244,-242,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,255,257,-259,259,258,-258,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,281,283,-285,285,284,-284,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,337,-337,339,338,-337,340,338,-340,341,340,-340,342,340,-342,343,342,-342,344,342,-344,345,344,-344,346,345,-344,347,346,-344,348,346,-348,349,346,-349,350,349,-349,351,350,-349,352,350,-352,353,352,-352,354,352,-354,355,352,-355,356,355,-355,357,355,-357,358,357,-357,359,357,-359,360,359,-359,361,359,-361,362,361,-361,363,361,-363,364,363,-363,365,363,-365,366,365,-365,367,365,-367,368,367,-367,369,367,-369,370,369,-369,371,369,-371,372,371,-371,373,371,-373,374,373,-373,375,373,-375,376,373,-376,377,376,-376,378,377,-376,379,377,-379,380,379,-379,381,379,-381,382,379,-382,383,382,-382,384,382,-384,385,384,-384,386,384,-386,387,386,-386,388,386,-388,389,388,-388,390,388,-390,391,390,-390,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,408,409,-413,413,412,-410,414,416,-416,417,415,-417,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,432,434,-434,435,433,-435,436,438,-438,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,454,-454,455,453,-455,456,458,-458,459,457,-459,460,462,-462,463,461,-463,462,464,-464,465,463,-465,466,468,-468,469,467,-469,470,472,-472,473,471,-473,474,476,-476,477,475,-477,478,480,-480,481,479,-481,482,484,-484,485,483,-485,486,488,-488,489,487,-489,490,492,-492,493,491,-493,494,496,-496,497,495,-497,498,500,-500,501,499,-501,502,504,-504,505,503,-505,506,508,-508,509,507,-509,510,512,-512,513,511,-513,514,516,-516,517,515,-517,518,520,-520,521,519,-521,519,521,-523,523,522,-522,524,526,-526,527,525,-527,528,530,-530,531,529,-531,532,534,-534,535,533,-535,532,533,-537,537,536,-534,538,540,-540,541,539,-541,539,541,-543,543,542,-542,544,546,-546,547,545,-547,548,550,-550,551,549,-551,552,554,-554,555,553,-555,556,558,-558,559,557,-559,560,562,-562,563,561,-563,564,566,-566,567,565,-567,568,570,-570,571,569,-571,572,574,-574,575,573,-575,576,578,-578,579,577,-579,580,582,-582,583,581,-583,584,586,-586,587,585,-587,588,590,-590,591,589,-591,592,594,-594,595,593,-595,596,598,-598,599,597,-599,600,602,-602,603,601,-603,604,606,-606,607,605,-607,608,610,-610,611,609,-611,612,614,-614,615,613,-615,616,618,-618,619,617,-619,620,622,-622,623,621,-623,624,626,-626,627,625,-627,628,630,-630,631,629,-631,632,634,-634,635,633,-635,636,633,-636,637,636,-636,638,636,-638,639,638,-638,640,638,-640,641,640,-640,642,640,-642,643,642,-642,644,642,-644,645,647,-647,648,646,-648,649,651,-651,652,650,-652,653,655,-655,656,654,-656,657,656,-656,658,656,-658,659,658,-658,660,659,-658,661,660,-658,662,661,-658,663,662,-658,664,662,-664,665,663,-658,666,665,-658,667,666,-658,668,667,-658,669,668,-658,670,669,-658,669,670,-672,663,672,-665,673,675,-675,675,676,-675,674,676,-678,677,676,-679,678,676,-680,679,676,-681,680,676,-682,676,682,-682,681,682,-684,684,683,-683,685,687,-687,688,686,-688,689,686,-689,690,686,-690,691,690,-690,692,690,-692,693,692,-692,694,693,-692,695,693,-695,696,695,-695,697,696,-695,698,696,-698,699,698,-698,700,699,-698,701,700,-698,702,700,-702,703,700,-703,704,703,-703,705,703,-705,706,705,-705,707,705,-707,708,707,-707,709,707,-709,710,709,-709,711,709,-711,712,711,-711,713,711,-713,714,713,-713,715,714,-713,716,714,-716,717,716,-716,718,716,-718,719,718,-718,720,718,-720,721,720,-720,722,721,-720,723,721,-723,724,721,-724,725,724,-724,726,725,-724,727,725,-727,728,727,-727,729,727,-729,730,727,-730,731,730,-730,732,730,-732,733,732,-732,734,732,-734,735,732,-735,736,735,-735,737,735,-737,738,735,-738,739,738,-738,740,738,-740,741,743,-743,744,742,-744,745,742,-745,746,745,-745,747,745,-747,748,747,-747,749,747,-749,750,749,-749,751,749,-751,752,751,-751,753,751,-753,754,753,-753,755,753,-755,756,755,-755,757,755,-757,758,757,-757,759,757,-759,760,759,-759,761,759,-761,762,761,-761,763,761,-763,764,763,-763,765,763,-765,766,765,-765,767,765,-767,768,767,-767,769,767,-769,770,769,-769,771,769,-771,772,771,-771,773,771,-773,774,773,-773,775,774,-773,776,775,-773,777,775,-777,778,777,-777,779,777,-779,780,779,-779,781,779,-781,782,779,-782,783,782,-782,784,782,-784,785,782,-785,786,785,-785,787,785,-787,788,785,-788,771,773,-790,790,789,-774,791,789,-791,792,789,-792,793,792,-792,794,792,-794,795,794,-794,796,794,-796,797,796,-796,798,797,-796,799,797,-799,800,799,-799,801,800,-799,802,800,-802,803,802,-802,804,803,-802,805,807,-807,808,806,-808,809,808,-808,810,808,-810,811,810,-810,812,810,-812,813,812,-812,814,812,-814,815,814,-814,816,814,-816,817,816,-816,818,816,-818,819,818,-818,820,819,-818,821,819,-821,822,821,-821,823,821,-823,824,821,-824,825,824,-824,826,825,-824,827,825,-827,828,827,-827,829,827,-829,830,829,-829,831,829,-831,832,831,-831,833,831,-833,834,831,-834,835,834,-834,836,834,-836,837,836,-836,838,836,-838,839,838,-838,840,838,-840,841,838,-841,842,841,-841,843,841,-843,844,843,-843,845,844,-843,846,844,-846,847,846,-846,848,846,-848,849,846,-849,850,849,-849,851,849,-851,852,851,-851,853,851,-853,854,851,-854,855,854,-854,856,854,-856,857,856,-856,858,857,-856,859,857,-859,860,859,-859,861,859,-861,685,686,-863,863,862,-687,864,863,-687,690,864,-687,865,864,-691,692,865,-691,866,865,-693,693,866,-693,867,866,-694,868,867,-694,695,868,-694,869,868,-696,696,869,-696,870,869,-697,871,870,-697,698,871,-697,872,871,-699,699,872,-699,700,872,-700,873,872,-701,703,873,-701,874,873,-704,705,874,-704,875,874,-706,707,875,-706,876,875,-708,709,876,-708,877,876,-710,711,877,-710,878,877,-712,713,878,-712,879,878,-714,714,879,-714,880,879,-715,716,880,-715,881,880,-717,718,881,-717,882,881,-719,720,882,-719,883,882,-721,721,883,-721,884,883,-722,724,884,-722,885,884,-725,725,885,-725,727,885,-726,886,885,-728,730,886,-728,887,886,-731,732,887,-731,888,887,-733,735,888,-733,889,888,-736,738,889,-736,890,889,-739,891,892,-806,807,805,-893,893,807,-893,809,807,-894,894,809,-894,811,809,-895,895,811,-895,813,811,-896,896,813,-896,815,813,-897,897,815,-897,817,815,-898,898,817,-898,899,817,-899,820,817,-900,900,820,-900,822,820,-901,823,822,-901,901,823,-901,902,823,-902,826,823,-903,903,826,-903,828,826,-904,904,828,-904,830,828,-905,905,830,-905,832,830,-906,906,832,-906,833,832,-907,907,833,-907,835,833,-908,908,835,-908,837,835,-909,909,837,-909,839,837,-910,910,839,-910,840,839,-911,911,840,-911,842,840,-912,912,842,-912,913,842,-913,845,842,-914,914,845,-914,847,845,-915,848,847,-915,915,848,-915,916,848,-916,850,848,-917,852,850,-917,853,852,-917,917,853,-917,855,853,-918,918,855,-918,858,855,-919,919,858,-919,860,858,-920,920,779,-922,782,921,-780,922,921,-783,923,922,-783,924,923,-783,785,924,-783,925,924,-786,926,925,-786,920,795,-780,795,793,-780,779,793,-778,793,791,-778,777,791,-776,791,790,-776,775,790,-775,773,774,-791,927,795,-921,798,795,-928,928,798,-928,929,798,-929,930,798,-930,801,798,-931,931,801,-931,932,801,-932,806,808,-688,688,687,-809,810,688,-809,689,688,-811,812,689,-811,741,689,-813,743,741,-813,814,743,-813,744,743,-815,816,744,-815,746,744,-817,818,746,-817,748,746,-819,819,748,-819,750,748,-820,821,750,-820,752,750,-822,824,752,-822,754,752,-825,825,754,-825,756,754,-826,827,756,-826,758,756,-828,829,758,-828,760,758,-830,831,760,-830,762,760,-832,834,762,-832,764,762,-835,836,764,-835,766,764,-837,838,766,-837,768,766,-839,841,768,-839,770,768,-842,843,770,-842,772,770,-844,844,772,-844,776,772,-845,846,776,-845,778,776,-847,849,778,-847,780,778,-850,851,780,-850,781,780,-852,854,781,-852,783,781,-855,856,783,-855,784,783,-857,857,784,-857,786,784,-858,859,786,-858,787,786,-860,861,787,-860,788,787,-862,689,741,-692,742,691,-742,694,691,-743,745,694,-743,697,694,-746,747,697,-746,701,697,-748,749,701,-748,702,701,-750,751,702,-750,704,702,-752,753,704,-752,706,704,-754,755,706,-754,708,706,-756,757,708,-756,710,708,-758,759,710,-758,712,710,-760,761,712,-760,715,712,-762,763,715,-762,717,715,-764,765,717,-764,719,717,-766,767,719,-766,722,719,-768,769,722,-768,723,722,-770,771,723,-770,726,723,-772,789,726,-772,728,726,-790,792,728,-790,729,728,-793,794,729,-793,731,729,-795,796,731,-795,733,731,-797,797,733,-797,734,733,-798,799,734,-798,736,734,-800,800,736,-800,737,736,-801,802,737,-801,739,737,-803,803,739,-803,740,739,-804,804,740,-804 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *7758 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3403717,0,0.940291,-0.3403717,0,0.940291,-0.3072778,0,0.9516199,-0.3072778,0,0.9516199,-0.3072778,0,0.9516199,-0.3403717,0,0.940291,-0.3403717,0,0.940291,-0.371899,0,0.9282732,-0.3403717,0,0.940291,-0.371899,0,0.9282732,-0.3403717,0,0.940291,-0.371899,0,0.9282732,-0.371899,0,0.9282732,-0.403003,0,0.9151986,-0.371899,0,0.9282732,-0.403003,0,0.9151986,-0.371899,0,0.9282732,-0.403003,0,0.9151986,-0.403003,0,0.9151986,-0.4324097,0,0.9016773,-0.403003,0,0.9151986,-0.4324097,0,0.9016773,-0.403003,0,0.9151986,-0.4324097,0,0.9016773,-0.2389805,0,0.9710244,-0.3072778,0,0.9516199,-0.2389805,0,0.9710244,-0.3072778,0,0.9516199,-0.2389805,0,0.9710244,-0.3072778,0,0.9516199,-0.1676327,0,0.9858496,-0.2389805,0,0.9710244,-0.1676327,0,0.9858496,-0.2389805,0,0.9710244,-0.1676327,0,0.9858496,-0.2389805,0,0.9710244,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.05674906,0,0.9983885,-0.09403777,0,0.9955687,-0.05674906,0,0.9983885,-0.09403777,0,0.9955687,-0.05674906,0,0.9983885,-0.09403777,0,0.9955687,-0.09403777,0,0.9955687,-0.1676327,0,0.9858496,-0.09403777,0,0.9955687,-0.1676327,0,0.9858496,-0.09403777,0,0.9955687,-0.1676327,0,0.9858496,-0.4324097,0,0.9016773,-0.4885604,0,0.8725301,-0.4324097,0,0.9016773,-0.4885604,0,0.8725301,-0.4324097,0,0.9016773,-0.4885604,0,0.8725301,-0.6617577,0,0.7497177,-0.6188408,0,0.7855165,-0.6617577,0,0.7497177,-0.6188408,0,0.7855165,-0.6617577,0,0.7497177,-0.6188408,0,0.7855165,-0.03218063,0,0.9994821,-0.03218063,0,0.9994821,-0.1042279,0,0.9945534,-0.1042279,0,0.9945534,-0.1042279,0,0.9945534,-0.03218063,0,0.9994821,-0.5875754,0,0.8091695,-0.6306403,0,0.7760753,-0.5875754,0,0.8091695,-0.6306403,0,0.7760753,-0.5875754,0,0.8091695,-0.6306403,0,0.7760753,-0.6306403,0,0.7760753,-0.6696838,0,0.7426464,-0.6306403,0,0.7760753,-0.6696838,0,0.7426464,-0.6306403,0,0.7760753,-0.6696838,0,0.7426464,-0.5712205,0,0.8207967,-0.518647,0,0.8549885,-0.5712205,0,0.8207967,-0.518647,0,0.8549885,-0.5712205,0,0.8207967,-0.518647,0,0.8549885,-0.4306014,0,0.9025422,-0.3982306,0,0.9172854,-0.4306014,0,0.9025422,-0.3982306,0,0.9172854,-0.4306014,0,0.9025422,-0.3982306,0,0.9172854,-0.4306014,0,0.9025422,-0.4609796,0,0.8874108,-0.4306014,0,0.9025422,-0.4609796,0,0.8874108,-0.4306014,0,0.9025422,-0.4609796,0,0.8874108,-0.5402659,0,0.8414943,-0.5875754,0,0.8091695,-0.5402659,0,0.8414943,-0.5875754,0,0.8091695,-0.5402659,0,0.8414943,-0.5875754,0,0.8091695,-0.6188408,0,0.7855165,-0.5712205,0,0.8207967,-0.6188408,0,0.7855165,-0.5712205,0,0.8207967,-0.6188408,0,0.7855165,-0.5712205,0,0.8207967,-0.4885604,0,0.8725301,-0.5402659,0,0.8414943,-0.4885604,0,0.8725301,-0.5402659,0,0.8414943,-0.4885604,0,0.8725301,-0.5402659,0,0.8414943,0,0,1,0.03218063,0,0.9994821,0,0,1,0.03218063,0,0.9994821,0,0,1,0.03218063,0,0.9994821,-0.3306109,0,0.9437672,-0.2585655,0,0.9659937,-0.3306109,0,0.9437672,-0.2585655,0,0.9659937,-0.3306109,0,0.9437672,-0.2585655,0,0.9659937,-0.2585655,0,0.9659937,-0.1827915,0,0.9831517,-0.2585655,0,0.9659937,-0.1827915,0,0.9831517,-0.2585655,0,0.9659937,-0.1827915,0,0.9831517,-0.1827915,0,0.9831517,-0.1042279,0,0.9945534,-0.1827915,0,0.9831517,-0.1042279,0,0.9945534,-0.1827915,0,0.9831517,-0.1042279,0,0.9945534,0,0,1,0,0,1,-0.03218063,0,0.9994821,-0.03218063,0,0.9994821,-0.03218063,0,0.9994821,0,0,1,-0.6696838,0,0.7426464,-0.7033145,0,0.7108788,-0.6696838,0,0.7426464,-0.7033145,0,0.7108788,-0.6696838,0,0.7426464,-0.7033145,0,0.7108788,-0.7033145,0,0.7108788,-0.7033145,0,0.7108788,-0.7002897,0,0.7138588,-0.7002897,0,0.7138588,-0.7002897,0,0.7138588,-0.7033145,0,0.7108788,-0.7002897,0,0.7138588,-0.6617577,0,0.7497177,-0.7002897,0,0.7138588,-0.6617577,0,0.7497177,-0.7002897,0,0.7138588,-0.6617577,0,0.7497177,-0.518647,0,0.8549885,-0.4609796,0,0.8874108,-0.518647,0,0.8549885,-0.4609796,0,0.8874108,-0.518647,0,0.8549885,-0.4609796,0,0.8874108,-0.3982306,0,0.9172854,-0.3306109,0,0.9437672,-0.3982306,0,0.9172854,-0.3306109,0,0.9437672,-0.3982306,0,0.9172854,-0.3306109,0,0.9437672,0.1676327,0,0.9858496,0.1676327,0,0.9858496,0.2389805,0,0.9710244,0.2389805,0,0.9710244,0.2389805,0,0.9710244,0.1676327,0,0.9858496,0.05674906,0,0.9983885,0.05674906,0,0.9983885,0.09403777,0,0.9955687,0.09403777,0,0.9955687,0.09403777,0,0.9955687,0.05674906,0,0.9983885,0.09403777,0,0.9955687,0.09403777,0,0.9955687,0.1676327,0,0.9858496,0.1676327,0,0.9858496,0.1676327,0,0.9858496,0.09403777,0,0.9955687,0.2389805,0,0.9710244,0.2389805,0,0.9710244,0.3072778,0,0.9516199,0.3072778,0,0.9516199,0.3072778,0,0.9516199,0.2389805,0,0.9710244,0.3403717,0,0.940291,0.3072778,0,0.9516199,0.3403717,0,0.940291,0.3072778,0,0.9516199,0.3403717,0,0.940291,0.3072778,0,0.9516199,0.3403717,0,0.940291,0.3403717,0,0.940291,0.371899,0,0.9282732,0.371899,0,0.9282732,0.371899,0,0.9282732,0.3403717,0,0.940291,0.6188408,0,0.7855165,0.6188408,0,0.7855165,0.5712205,0,0.8207967,0.5712205,0,0.8207967,0.5712205,0,0.8207967,0.6188408,0,0.7855165,0.03218063,0,0.9994821,0.1042279,0,0.9945534,0.03218063,0,0.9994821,0.1042279,0,0.9945534,0.03218063,0,0.9994821,0.1042279,0,0.9945534,0.371899,0,0.9282732,0.371899,0,0.9282732,0.403003,0,0.9151986,0.403003,0,0.9151986,0.403003,0,0.9151986,0.371899,0,0.9282732,0.403003,0,0.9151986,0.403003,0,0.9151986,0.4324097,0,0.9016773,0.4324097,0,0.9016773,0.4324097,0,0.9016773,0.403003,0,0.9151986,0.5402659,0,0.8414943,0.5402659,0,0.8414943,0.5875754,0,0.8091695,0.5875754,0,0.8091695,0.5875754,0,0.8091695,0.5402659,0,0.8414943,0.7002897,0,0.7138588,0.7002897,0,0.7138588,0.6617577,0,0.7497177,0.6617577,0,0.7497177,0.6617577,0,0.7497177,0.7002897,0,0.7138588,0.6617577,0,0.7497177,0.6617577,0,0.7497177,0.6188408,0,0.7855165,0.6188408,0,0.7855165,0.6188408,0,0.7855165,0.6617577,0,0.7497177,0.518647,0,0.8549885,0.518647,0,0.8549885,0.4609796,0,0.8874108,0.4609796,0,0.8874108,0.4609796,0,0.8874108,0.518647,0,0.8549885,0.6306403,0,0.7760753,0.6306403,0,0.7760753,0.6696838,0,0.7426464,0.6696838,0,0.7426464,0.6696838,0,0.7426464,0.6306403,0,0.7760753,0.4609796,0,0.8874108,0.4609796,0,0.8874108,0.4306014,0,0.9025422,0.4306014,0,0.9025422,0.4306014,0,0.9025422,0.4609796,0,0.8874108,0.4306014,0,0.9025422,0.4306014,0,0.9025422,0.3982306,0,0.9172854,0.3982306,0,0.9172854,0.3982306,0,0.9172854,0.4306014,0,0.9025422,0.2585655,0,0.9659937,0.2585655,0,0.9659937,0.1827915,0,0.9831517,0.1827915,0,0.9831517,0.1827915,0,0.9831517,0.2585655,0,0.9659937,0.1827915,0,0.9831517,0.1827915,0,0.9831517,0.1042279,0,0.9945534,0.1042279,0,0.9945534,0.1042279,0,0.9945534,0.1827915,0,0.9831517,0.4324097,0,0.9016773,0.4324097,0,0.9016773,0.4885604,0,0.8725301,0.4885604,0,0.8725301,0.4885604,0,0.8725301,0.4324097,0,0.9016773,0.5875754,0,0.8091695,0.5875754,0,0.8091695,0.6306403,0,0.7760753,0.6306403,0,0.7760753,0.6306403,0,0.7760753,0.5875754,0,0.8091695,0.7033145,0,0.7108788,0.7002897,0,0.7138588,0.7033145,0,0.7108788,0.7002897,0,0.7138588,0.7033145,0,0.7108788,0.7002897,0,0.7138588,0.3306109,0,0.9437672,0.3306109,0,0.9437672,0.2585655,0,0.9659937,0.2585655,0,0.9659937,0.2585655,0,0.9659937,0.3306109,0,0.9437672,0.3982306,0,0.9172854,0.3982306,0,0.9172854,0.3306109,0,0.9437672,0.3306109,0,0.9437672,0.3306109,0,0.9437672,0.3982306,0,0.9172854,0.5712205,0,0.8207967,0.5712205,0,0.8207967,0.518647,0,0.8549885,0.518647,0,0.8549885,0.518647,0,0.8549885,0.5712205,0,0.8207967,0.6696838,0,0.7426464,0.6696838,0,0.7426464,0.7033145,0,0.7108788,0.7033145,0,0.7108788,0.7033145,0,0.7108788,0.6696838,0,0.7426464,0.4885604,0,0.8725301,0.4885604,0,0.8725301,0.5402659,0,0.8414943,0.5402659,0,0.8414943,0.5402659,0,0.8414943,0.4885604,0,0.8725301,-0.7033145,0,-0.7108788,-0.7033145,0,-0.7108788,-0.7002897,0,-0.7138588,-0.7002897,0,-0.7138588,-0.7002897,0,-0.7138588,-0.7033145,0,-0.7108788,-0.03218063,0,-0.9994821,-0.03218063,0,-0.9994821,-0.1042279,0,-0.9945534,-0.1042279,0,-0.9945534,-0.1042279,0,-0.9945534,-0.03218063,0,-0.9994821,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.05674906,0,-0.9983885,-0.09403777,0,-0.9955687,-0.05674906,0,-0.9983885,-0.09403777,0,-0.9955687,-0.05674906,0,-0.9983885,-0.09403777,0,-0.9955687,-0.1676327,0,-0.9858496,-0.2389805,0,-0.9710244,-0.1676327,0,-0.9858496,-0.2389805,0,-0.9710244,-0.1676327,0,-0.9858496,-0.2389805,0,-0.9710244,-0.2389805,0,-0.9710244,-0.3072778,0,-0.9516199,-0.2389805,0,-0.9710244,-0.3072778,0,-0.9516199,-0.2389805,0,-0.9710244,-0.3072778,0,-0.9516199,-0.09403777,0,-0.9955687,-0.1676327,0,-0.9858496,-0.09403777,0,-0.9955687,-0.1676327,0,-0.9858496,-0.09403777,0,-0.9955687,-0.1676327,0,-0.9858496,-0.3403717,0,-0.940291,-0.371899,0,-0.9282732,-0.3403717,0,-0.940291,-0.371899,0,-0.9282732,-0.3403717,0,-0.940291,-0.371899,0,-0.9282732,-0.3403717,0,-0.940291,-0.3403717,0,-0.940291,-0.3072778,0,-0.9516199,-0.3072778,0,-0.9516199,-0.3072778,0,-0.9516199,-0.3403717,0,-0.940291,-0.371899,0,-0.9282732,-0.403003,0,-0.9151986,-0.371899,0,-0.9282732,-0.403003,0,-0.9151986,-0.371899,0,-0.9282732,-0.403003,0,-0.9151986,-0.403003,0,-0.9151986,-0.4324097,0,-0.9016773,-0.403003,0,-0.9151986,-0.4324097,0,-0.9016773,-0.403003,0,-0.9151986,-0.4324097,0,-0.9016773,-0.4324097,0,-0.9016773,-0.4885604,0,-0.8725301,-0.4324097,0,-0.9016773,-0.4885604,0,-0.8725301,-0.4324097,0,-0.9016773,-0.4885604,0,-0.8725301,-0.4885604,0,-0.8725301,-0.5402659,0,-0.8414943,-0.4885604,0,-0.8725301,-0.5402659,0,-0.8414943,-0.4885604,0,-0.8725301,-0.5402659,0,-0.8414943,-0.5402659,0,-0.8414943,-0.5875754,0,-0.8091695,-0.5402659,0,-0.8414943,-0.5875754,0,-0.8091695,-0.5402659,0,-0.8414943,-0.5875754,0,-0.8091695,-0.6306403,0,-0.7760753,-0.6696838,0,-0.7426464,-0.6306403,0,-0.7760753,-0.6696838,0,-0.7426464,-0.6306403,0,-0.7760753,-0.6696838,0,-0.7426464,-0.6188408,0,-0.7855165,-0.5712205,0,-0.8207967,-0.6188408,0,-0.7855165,-0.5712205,0,-0.8207967,-0.6188408,0,-0.7855165,-0.5712205,0,-0.8207967,-0.5712205,0,-0.8207967,-0.518647,0,-0.8549885,-0.5712205,0,-0.8207967,-0.518647,0,-0.8549885,-0.5712205,0,-0.8207967,-0.518647,0,-0.8549885,-0.6617577,0,-0.7497177,-0.6188408,0,-0.7855165,-0.6617577,0,-0.7497177,-0.6188408,0,-0.7855165,-0.6617577,0,-0.7497177,-0.6188408,0,-0.7855165,-0.518647,0,-0.8549885,-0.4609796,0,-0.8874108,-0.518647,0,-0.8549885,-0.4609796,0,-0.8874108,-0.518647,0,-0.8549885,-0.4609796,0,-0.8874108,-0.7002897,0,-0.7138588,-0.6617577,0,-0.7497177,-0.7002897,0,-0.7138588,-0.6617577,0,-0.7497177,-0.7002897,0,-0.7138588,-0.6617577,0,-0.7497177,-0.5875754,0,-0.8091695,-0.6306403,0,-0.7760753,-0.5875754,0,-0.8091695,-0.6306403,0,-0.7760753,-0.5875754,0,-0.8091695,-0.6306403,0,-0.7760753,-0.4609796,0,-0.8874108,-0.4306014,0,-0.9025422,-0.4609796,0,-0.8874108,-0.4306014,0,-0.9025422,-0.4609796,0,-0.8874108,-0.4306014,0,-0.9025422,-0.4306014,0,-0.9025422,-0.3982306,0,-0.9172854,-0.4306014,0,-0.9025422,-0.3982306,0,-0.9172854,-0.4306014,0,-0.9025422,-0.3982306,0,-0.9172854,-0.3982306,0,-0.9172854,-0.3306109,0,-0.9437672,-0.3982306,0,-0.9172854,-0.3306109,0,-0.9437672,-0.3982306,0,-0.9172854,-0.3306109,0,-0.9437672,-0.3306109,0,-0.9437672,-0.2585655,0,-0.9659937,-0.3306109,0,-0.9437672,-0.2585655,0,-0.9659937,-0.3306109,0,-0.9437672,-0.2585655,0,-0.9659937,-0.1827915,0,-0.9831517,-0.1042279,0,-0.9945534,-0.1827915,0,-0.9831517,-0.1042279,0,-0.9945534,-0.1827915,0,-0.9831517,-0.1042279,0,-0.9945534,0,0,-1,0,0,-1,-0.03218063,0,-0.9994821,-0.03218063,0,-0.9994821,-0.03218063,0,-0.9994821,0,0,-1,-0.2585655,0,-0.9659937,-0.1827915,0,-0.9831517,-0.2585655,0,-0.9659937,-0.1827915,0,-0.9831517,-0.2585655,0,-0.9659937,-0.1827915,0,-0.9831517,-0.6696838,0,-0.7426464,-0.7033145,0,-0.7108788,-0.6696838,0,-0.7426464,-0.7033145,0,-0.7108788,-0.6696838,0,-0.7426464,-0.7033145,0,-0.7108788,0.1676327,0,-0.9858496,0.1676327,0,-0.9858496,0.2389805,0,-0.9710244,0.2389805,0,-0.9710244,0.2389805,0,-0.9710244,0.1676327,0,-0.9858496,0.05674906,0,-0.9983885,0.05674906,0,-0.9983885,0.09403777,0,-0.9955687,0.09403777,0,-0.9955687,0.09403777,0,-0.9955687,0.05674906,0,-0.9983885,0.3982306,0,-0.9172854,0.3982306,0,-0.9172854,0.3306109,0,-0.9437672,0.3306109,0,-0.9437672,0.3306109,0,-0.9437672,0.3982306,0,-0.9172854,0.5875754,0,-0.8091695,0.5875754,0,-0.8091695,0.6306403,0,-0.7760753,0.6306403,0,-0.7760753,0.6306403,0,-0.7760753,0.5875754,0,-0.8091695,0.6306403,0,-0.7760753,0.6306403,0,-0.7760753,0.6696838,0,-0.7426464,0.6696838,0,-0.7426464,0.6696838,0,-0.7426464,0.6306403,0,-0.7760753,0.3306109,0,-0.9437672,0.3306109,0,-0.9437672,0.2585655,0,-0.9659937,0.2585655,0,-0.9659937,0.2585655,0,-0.9659937,0.3306109,0,-0.9437672,0.09403777,0,-0.9955687,0.09403777,0,-0.9955687,0.1676327,0,-0.9858496,0.1676327,0,-0.9858496,0.1676327,0,-0.9858496,0.09403777,0,-0.9955687,0.4609796,0,-0.8874108,0.4609796,0,-0.8874108,0.4306014,0,-0.9025422,0.4306014,0,-0.9025422,0.4306014,0,-0.9025422,0.4609796,0,-0.8874108,0.4306014,0,-0.9025422,0.4306014,0,-0.9025422,0.3982306,0,-0.9172854,0.3982306,0,-0.9172854,0.3982306,0,-0.9172854,0.4306014,0,-0.9025422,0.1827915,0,-0.9831517,0.1827915,0,-0.9831517,0.1042279,0,-0.9945534,0.1042279,0,-0.9945534,0.1042279,0,-0.9945534,0.1827915,0,-0.9831517,0.4885604,0,-0.8725301,0.4885604,0,-0.8725301,0.5402659,0,-0.8414943,0.5402659,0,-0.8414943,0.5402659,0,-0.8414943,0.4885604,0,-0.8725301,0.3403717,0,-0.940291,0.3072778,0,-0.9516199,0.3403717,0,-0.940291,0.3072778,0,-0.9516199,0.3403717,0,-0.940291,0.3072778,0,-0.9516199,0.3403717,0,-0.940291,0.3403717,0,-0.940291,0.371899,0,-0.9282732,0.371899,0,-0.9282732,0.371899,0,-0.9282732,0.3403717,0,-0.940291,0.371899,0,-0.9282732,0.371899,0,-0.9282732,0.403003,0,-0.9151986,0.403003,0,-0.9151986,0.403003,0,-0.9151986,0.371899,0,-0.9282732,0.403003,0,-0.9151986,0.403003,0,-0.9151986,0.4324097,0,-0.9016773,0.4324097,0,-0.9016773,0.4324097,0,-0.9016773,0.403003,0,-0.9151986,0.4324097,0,-0.9016773,0.4324097,0,-0.9016773,0.4885604,0,-0.8725301,0.4885604,0,-0.8725301,0.4885604,0,-0.8725301,0.4324097,0,-0.9016773,0.5402659,0,-0.8414943,0.5402659,0,-0.8414943,0.5875754,0,-0.8091695,0.5875754,0,-0.8091695,0.5875754,0,-0.8091695,0.5402659,0,-0.8414943,0.7002897,0,-0.7138588,0.7002897,0,-0.7138588,0.6617577,0,-0.7497177,0.6617577,0,-0.7497177,0.6617577,0,-0.7497177,0.7002897,0,-0.7138588,0.6617577,0,-0.7497177,0.6617577,0,-0.7497177,0.6188408,0,-0.7855165,0.6188408,0,-0.7855165,0.6188408,0,-0.7855165,0.6617577,0,-0.7497177,0.2389805,0,-0.9710244,0.2389805,0,-0.9710244,0.3072778,0,-0.9516199,0.3072778,0,-0.9516199,0.3072778,0,-0.9516199,0.2389805,0,-0.9710244,0.6188408,0,-0.7855165,0.6188408,0,-0.7855165,0.5712205,0,-0.8207967,0.5712205,0,-0.8207967,0.5712205,0,-0.8207967,0.6188408,0,-0.7855165,0.518647,0,-0.8549885,0.518647,0,-0.8549885,0.4609796,0,-0.8874108,0.4609796,0,-0.8874108,0.4609796,0,-0.8874108,0.518647,0,-0.8549885,0.6696838,0,-0.7426464,0.6696838,0,-0.7426464,0.7033145,0,-0.7108788,0.7033145,0,-0.7108788,0.7033145,0,-0.7108788,0.6696838,0,-0.7426464,0.2585655,0,-0.9659937,0.2585655,0,-0.9659937,0.1827915,0,-0.9831517,0.1827915,0,-0.9831517,0.1827915,0,-0.9831517,0.2585655,0,-0.9659937,0.06432792,0,-0.9979289,0.1042279,0,-0.9945534,0.06432792,0,-0.9979289,0.1042279,0,-0.9945534,0.06432792,0,-0.9979289,0.1042279,0,-0.9945534,0.7033145,0,-0.7108788,0.7002897,0,-0.7138588,0.7033145,0,-0.7108788,0.7002897,0,-0.7138588,0.7033145,0,-0.7108788,0.7002897,0,-0.7138588,0.5712205,0,-0.8207967,0.5712205,0,-0.8207967,0.518647,0,-0.8549885,0.518647,0,-0.8549885,0.518647,0,-0.8549885,0.5712205,0,-0.8207967,0.9659258,0,0.258819,0.8660254,0,0.5,0.9659258,0,0.258819,0.8660254,0,0.5,0.9659258,0,0.258819,0.8660254,0,0.5,0.5,0,0.8660254,0.5,0,0.8660254,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.5,0,0.8660254,0.7071068,0,-0.7071068,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.8660254,0,-0.5,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.7071068,0,0.7071068,0.8660254,0,-0.5,0.9659258,0,-0.258819,0.8660254,0,-0.5,0.9659258,0,-0.258819,0.8660254,0,-0.5,0.9659258,0,-0.258819,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.9659258,0,-0.258819,1,0,0,0.9659258,0,-0.258819,1,0,0,0.9659258,0,-0.258819,1,0,0,1,0,0,0.9659258,0,0.258819,1,0,0,0.9659258,0,0.258819,1,0,0,0.9659258,0,0.258819,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8660254,0,0.5,0.7071068,0,0.7071068,0.8660254,0,0.5,0.7071068,0,0.7071068,0.8660254,0,0.5,0.7071068,0,0.7071068,0.5,0,-0.8660254,0.5,0,-0.8660254,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1866 { + a: 19.68504,-19.68504,17.97438,-19.79531,19.68504,19.7059,18.72612,19.76041,17.60896,19.90825,16.26734,-20.04364,16.47946,20.14343,15.33368,20.46962,14.56671,-20.42963,15.27034,20.49255,14.16908,20.89119,12.87526,-20.95265,13.01905,21.3976,12.9846,21.41277,11.78065,22.03884,11.19574,-21.61184,10.55889,22.77344,9.84252,-22.25746,9.322042,23.6199,9.530908,-22.40613,7.883467,-23.33423,8.073587,24.58077,6.817549,25.65775,6.256109,-24.39461,5.544891,26.86437,4.651486,-25.58555,4.000713,28.45855,3.072218,-26.90511,2.145778,30.18756,1.520879,-28.35113,0.2283338,31.78968,-1.136868E-13,-29.92126,-1.751565,33.25915,-1.537348,-31.37884,-3.101047,-32.71961,-3.793286,34.58953,-4.688877,-33.94168,-5.8953,35.77371,-6.298588,-35.04332,-6.448452,36.03762,-7.927897,-36.02296,-8.054839,36.80402,-9.574493,-36.87922,-10.26754,37.67249,-9.84252,-36.99725,-11.23604,-37.61087,-12.52715,38.37119,-12.58748,-38.10007,-14.82543,38.89282,-12.91019,-38.21689,-14.59455,-38.69641,-16.28675,-39.04875,-17.15218,39.23131,-17.98438,-39.27341,-19.30496,39.37008,-19.68504,-39.37008,-19.68504,39.37008,-24.80408,0.3937008,-25.00972,0.3937008,-24.80408,0.7874016,-25.00972,0.7874016,-23.4995,0.3937008,-23.4995,0.7874016,-25.30783,0.3937008,-25.30783,0.7874016,-23.91786,0.3937008,-23.91786,0.7874016,-23.75227,0.3937008,-23.75227,0.7874016,-24.4905,0.3937008,-24.4905,0.7874016,-23.01846,0.3937008,-23.01846,0.7874016,-23.75966,0.3937008,-23.75966,0.7874016,-22.3178,0.3937008,-22.3178,0.7874016,-19.68504,-15.76252,-19.43219,-15.76252,-19.68504,-19.68504,-17.97438,-19.79531,-17.56437,-15.88292,-16.26734,-20.04364,-15.54829,-16.17621,-14.56671,-20.42963,-13.54963,-16.62984,-12.87526,-20.95265,-11.57484,-17.24047,-11.19574,-21.61184,-9.629441,-18.00402,-9.84252,-22.25746,-9.530908,-22.40613,-8.14997,-18.70987,-7.883467,-23.33423,-7.717908,-18.91601,-6.256109,-24.39461,-5.843781,-19.97181,-4.651486,-25.58555,-4.009789,-21.16683,-3.072218,-26.90511,-2.218024,-22.49667,-1.520879,-28.35113,-0.4701146,-23.95714,1.284332E-13,-29.92126,1.232621,-25.54428,1.537348,-31.37884,2.765119,-27.1264,3.101047,-32.71961,4.170472,-28.45883,4.688877,-33.94168,5.580747,-29.66806,6.298588,-35.04332,6.999337,-30.75987,7.927897,-36.02296,8.42311,-31.73426,9.574493,-36.87922,9.849181,-32.59171,9.84252,-36.99725,11.23604,-37.61087,11.27504,-33.33318,12.58748,-38.10007,11.42659,-33.39991,12.69868,-33.96007,12.91019,-38.21689,13.92537,-34.40411,14.59455,-38.69641,14.11873,-34.47411,15.53451,-34.87716,16.28675,-39.04875,16.94611,-35.17107,17.98438,-39.27341,18.35427,-35.35743,19.68504,-39.37008,19.68504,-35.43307,-21.66411,0.3937008,-21.66411,0.7874016,-20.33119,0.3937008,-20.33119,0.7874016,-22.83434,0.3937008,-22.83434,0.7874016,-21.4139,0.3937008,-21.4139,0.7874016,-25.38205,0.3937008,-25.38205,0.7874016,-23.77492,0.3937008,-23.77492,0.7874016,-15.00027,0.3937008,-15.00027,0.7874016,-12.72252,0.3937008,-12.72252,0.7874016,18.37797,0.3937008,16.50627,0.3937008,18.37797,0.7874016,16.50627,0.7874016,-24.30777,0.3937008,-24.30777,0.7874016,-22.51766,0.3937008,-22.51766,0.7874016,-23.54816,0.3937008,-23.54816,0.7874016,-21.69044,0.3937008,-21.69044,0.7874016,-8.196053,0.3937008,-8.196053,0.7874016,-6.007079,0.3937008,-6.007079,0.7874016,-0.7008061,0.3937008,-0.7008061,0.7874016,0.9384198,0.3937008,0.9384198,0.7874016,-1.179523,0.7874016,-1.179523,0.3937008,-24.87382,0.3937008,-24.87382,0.7874016,-23.14855,0.3937008,-23.14855,0.7874016,-11.62652,0.3937008,-11.62652,0.7874016,-9.395175,0.3937008,-9.395175,0.7874016,-25.23511,0.3937008,-25.23511,0.7874016,-23.57111,0.3937008,-23.57111,0.7874016,-19.68504,2.842171E-12,-19.68504,0.7874016,-19.30496,4.899414E-12,-19.30496,0.7874016,5.965219,0.3937008,5.965219,0.7874016,8.032255,0.3937008,8.032255,0.7874016,9.53272,0.3937008,9.53272,0.7874016,11.58222,0.3937008,11.58222,0.7874016,13.05759,0.3937008,13.05759,0.7874016,15.09489,0.3937008,15.09489,0.7874016,19.68504,0.3937008,19.43219,0.3937008,19.68504,0.7874016,19.43219,0.7874016,-22.60693,0.3937008,-22.60693,0.7874016,-20.67034,0.3937008,-20.67034,0.7874016,-21.40825,0.7874016,-19.2056,0.7874016,-21.40825,0.3937008,-19.2056,0.3937008,-18.3188,0.3937008,-18.3188,0.7874016,-15.99107,0.3937008,-15.99107,0.7874016,-4.711261,0.3937008,-4.711261,0.7874016,-2.5602,0.3937008,-2.5602,0.7874016,2.385864,0.3937008,2.385864,0.7874016,4.475743,0.3937008,4.475743,0.7874016,13.18108,7.46683E-12,12.02736,7.786796E-12,13.18108,0.7874016,12.02736,0.7874016,18.53502,4.072253E-12,17.57456,6.044343E-12,18.53502,0.7874016,17.57456,0.7874016,15.9718,6.540014E-12,14.84489,6.958346E-12,15.9718,0.7874016,14.84489,0.7874016,10.33425,8.247598E-12,9.142947,8.314988E-12,10.33425,0.7874016,9.142947,0.7874016,7.383482,8.420751E-12,7.383482,0.7874016,7.450843,8.714738E-12,7.450843,0.7874016,6.212287,9.113308E-12,6.212287,0.7874016,-18.7627,1.257094E-11,-21.22833,1.290057E-11,-18.7627,0.7874016,-21.22833,0.7874016,-21.79757,8.245859E-12,-21.79757,0.7874016,-19.64032,1.517787E-11,-19.64032,0.7874016,4.548308,9.443095E-12,3.291723,9.72387E-12,4.548308,0.7874016,3.291723,0.7874016,3.254079,9.736527E-12,3.254079,0.7874016,-4.148162,1.076626E-11,-5.646927,1.092913E-11,-4.148162,0.7874016,-5.646927,0.7874016,-16.47768,1.163461E-11,-19.01348,1.197545E-11,-16.47768,0.7874016,-19.01348,0.7874016,-17.70926,1.214026E-11,-20.20794,1.240893E-11,-17.70926,0.7874016,-20.20794,0.7874016,-20.28239,1.349904E-11,-22.69502,1.374195E-11,-20.28239,0.7874016,-22.69502,0.7874016,-9.871112,1.114299E-11,-11.52565,1.12851E-11,-9.871112,0.7874016,-11.52565,0.7874016,-20.72497,1.382972E-11,-21.33785,1.3902E-11,-20.72497,0.7874016,-21.33785,0.7874016,-23.1177,1.413015E-11,-23.1177,0.7874016,-20.70948,1.455221E-11,-23.06622,1.479457E-11,-20.70948,0.7874016,-23.06622,0.7874016,-20.27004,1.45762E-11,-22.62128,1.540365E-11,-20.27004,0.7874016,-22.62128,0.7874016,1.641018,9.99185E-12,0.2840091,1.025531E-11,1.641018,0.7874016,0.2840091,0.7874016,-7.018861,1.096889E-11,-8.59427,1.116507E-11,-7.018861,0.7874016,-8.59427,0.7874016,-15.43833,0.7874016,-15.43833,1.128026E-11,-17.65777,0.7874016,-17.65777,1.147422E-11,-20.93819,1.441038E-11,-23.30337,1.467283E-11,-20.93819,0.7874016,-23.30337,0.7874016,-20.94456,1.416436E-11,-23.32158,1.444592E-11,-20.94456,0.7874016,-23.32158,0.7874016,-19.62464,1.305033E-11,-22.06155,1.337329E-11,-19.62464,0.7874016,-22.06155,0.7874016,-12.70588,1.120793E-11,-14.45961,1.139212E-11,-12.70588,0.7874016,-14.45961,0.7874016,-1.260216,1.043556E-11,-2.685811,1.06586E-11,-1.260216,0.7874016,-2.685811,0.7874016,15.35423,0.7874016,17.55688,0.7874016,15.35423,0.3937008,17.55688,0.3937008,21.67034,0.3937008,19.79865,0.3937008,21.67034,0.7874016,19.79865,0.7874016,-19.68504,15.74803,-19.68504,19.7059,-18.35427,15.82367,-18.72612,19.76041,-17.60896,19.90825,-16.94611,16.01003,-16.47946,20.14343,-15.53451,16.30394,-15.33368,20.46962,-14.11873,16.707,-15.27034,20.49255,-14.16908,20.89119,-13.01905,21.3976,-13.92537,16.77699,-12.69868,17.22104,-12.9846,21.41277,-11.78065,22.03884,-11.42659,17.78119,-10.55889,22.77344,-11.27504,17.84793,-9.849181,18.5894,-9.322042,23.6199,-8.42311,19.44684,-8.073587,24.58077,-6.999337,20.42123,-6.817549,25.65775,-5.580747,21.51305,-5.544891,26.86437,-4.170472,22.72227,-4.000713,28.45855,-2.765119,24.0547,-2.145778,30.18756,-1.232621,25.63682,-0.2283338,31.78968,0.4701146,27.22397,1.751565,33.25915,2.218024,28.68443,3.793286,34.58953,4.009789,30.01427,5.8953,35.77371,5.843781,31.2093,7.717908,32.26509,6.448452,36.03762,8.054839,36.80402,8.14997,32.47123,10.26754,37.67249,9.629441,33.17708,11.57484,33.94063,12.52715,38.37119,13.54963,34.55126,14.82543,38.89282,15.54829,35.00489,17.15218,39.23131,17.56437,35.29818,19.30496,39.37008,19.43219,35.41859,19.68504,39.37008,19.68504,35.41859,-18.75963,0.3937008,-18.75963,0.7874016,-17.42671,0.3937008,-17.42671,0.7874016,-13.32677,0.3937008,-13.32677,0.7874016,-11.88491,0.3937008,-11.88491,0.7874016,-10.4767,0.3937008,-10.4767,0.7874016,-9.004663,0.3937008,-9.004663,0.7874016,-16.11964,0.3937008,-16.11964,0.7874016,-14.6992,0.3937008,-14.6992,0.7874016,-7.383482,0.3937008,-7.383482,0.7874016,-6.078906,0.3937008,-6.078906,0.7874016,-7.589127,0.3937008,-7.589127,0.7874016,-4.68169,0.3937008,-4.68169,0.7874016,-3.291723,0.3937008,-3.291723,0.7874016,-3.126133,0.3937008,-3.126133,0.7874016,-1.768963,0.3937008,-1.768963,0.7874016,-0.1618381,0.3937008,-0.1618381,0.7874016,1.138045,0.3937008,1.138045,0.7874016,2.802042,0.3937008,2.802042,0.7874016,4.03193,0.3937008,4.03193,0.7874016,5.757202,0.3937008,5.757202,0.7874016,9.766693,0.3937008,9.766693,0.7874016,11.62441,0.3937008,11.62441,0.7874016,18.87645,0.3937008,18.87645,0.7874016,21.10779,0.3937008,21.10779,0.7874016,19.74518,0.3937008,19.74518,0.7874016,21.93415,0.3937008,21.93415,0.7874016,17.81644,0.3937008,17.81644,0.7874016,20.09419,0.3937008,20.09419,0.7874016,20.40979,0.3937008,20.40979,0.7874016,22.56085,0.3937008,22.56085,0.7874016,16.57857,0.3937008,16.57857,0.7874016,18.9063,0.3937008,18.9063,0.7874016,6.908586,0.3937008,6.908586,0.7874016,8.698689,0.3937008,8.698689,0.7874016,20.85913,0.3937008,20.85913,0.7874016,21.33785,0.3937008,21.33785,0.7874016,22.97708,0.3937008,22.97708,0.7874016,21.08518,0.3937008,21.08518,0.7874016,23.17506,0.3937008,23.17506,0.7874016,21.08472,0.3937008,21.08472,0.7874016,23.15175,0.3937008,23.15175,0.7874016,20.42566,0.3937008,20.42566,0.7874016,22.46296,0.3937008,22.46296,0.7874016,19.68504,0.3937008,19.43219,0.3937008,19.68504,0.7874016,19.43219,0.7874016,20.8611,0.3937008,20.8611,0.7874016,22.91059,0.3937008,22.91059,0.7874016,12.60713,0.3937008,12.60713,0.7874016,14.54372,0.3937008,14.54372,0.7874016,23.90459,9.284127E-12,22.1761,9.561905E-12,23.90459,0.7874016,22.1761,0.7874016,21.88753,4.816958E-12,20.18413,5.244838E-12,21.88753,0.7874016,20.18413,0.7874016,-2.525745,1.064883E-11,-4.329989,1.092084E-11,-2.525745,0.7874016,-4.329989,0.7874016,24.41746,7.580188E-12,22.4138,7.841535E-12,24.41746,0.7874016,22.4138,0.7874016,23.65203,7.424742E-12,21.59221,7.627247E-12,23.65203,0.7874016,21.59221,0.7874016,-6.110973,1.092285E-11,-7.881442,1.119729E-11,-6.110973,0.7874016,-7.881442,0.7874016,22.98141,9.446771E-12,21.26898,9.726548E-12,22.98141,0.7874016,21.26898,0.7874016,1.046067,1.028522E-11,0.7008061,1.033918E-11,1.046067,0.7874016,0.7008061,0.7874016,-0.7985392,1.055456E-11,-0.7985392,0.7874016,-13.21239,1.116328E-11,-14.9374,1.144305E-11,-13.21239,0.7874016,-14.9374,0.7874016,25.35663,8.039446E-12,23.45549,8.305455E-12,25.35663,0.7874016,23.45549,0.7874016,24.80408,8.287078E-12,24.80408,0.7874016,25.14728,8.807772E-12,25.14728,0.7874016,23.36683,9.052243E-12,23.36683,0.7874016,25.44051,8.52742E-12,23.91786,8.743247E-12,25.44051,0.7874016,23.91786,0.7874016,23.625,8.79787E-12,23.625,0.7874016,25.50932,8.276786E-12,23.6534,8.545016E-12,25.50932,0.7874016,23.6534,0.7874016,24.98944,7.824252E-12,23.03885,8.030975E-12,24.98944,0.7874016,23.03885,0.7874016,18.21844,7.740421E-12,16.09768,7.997771E-12,18.21844,0.7874016,16.09768,0.7874016,14.89366,8.336988E-12,12.83567,8.539493E-12,14.89366,0.7874016,12.83567,0.7874016,24.6322,9.074969E-12,22.88091,9.321883E-12,24.6322,0.7874016,22.88091,0.7874016,11.51336,8.856957E-12,9.515077,9.118969E-12,11.51336,0.7874016,9.515077,0.7874016,4.584534,9.902579E-12,2.693657,1.011263E-11,4.584534,0.7874016,2.693657,0.7874016,22.70516,7.246002E-12,20.58668,7.502907E-12,22.70516,0.7874016,20.58668,0.7874016,-9.683533,1.109625E-11,-11.42742,1.137314E-11,-9.683533,0.7874016,-11.42742,0.7874016,-18.37797,5.410145E-12,-18.37797,0.7874016,-16.66376,1.124859E-11,-16.66376,0.7874016,21.49191,0.7874016,21.49191,7.191559E-12,19.30596,0.7874016,19.30596,7.389623E-12,8.076151,9.402495E-12,6.133805,9.66695E-12,8.076151,0.7874016,6.133805,0.7874016,-7.019256,0.7874016,-7.019256,0.3937008,-8.047021,0.7874016,-8.047021,0.3937008,-17.67272,0.3937008,-18.70049,0.3937008,-17.67272,0.7874016,-18.70049,0.7874016,12.49738,0.7874016,12.49738,0.3937008,11.46961,0.7874016,11.46961,0.3937008,-15.10331,0.3937008,-16.13107,0.3937008,-15.10331,0.7874016,-16.13107,0.7874016,8.047021,0.7874016,8.047021,0.3937008,7.019256,0.7874016,7.019256,0.3937008,18.70049,0.3937008,17.67272,0.3937008,18.70049,0.7874016,17.67272,0.7874016,20.03051,0.3937008,19.00275,0.3937008,20.03051,0.7874016,19.00275,0.7874016,-19.00275,0.3937008,-20.03051,0.3937008,-19.00275,0.7874016,-20.03051,0.7874016,3.083296,0.7874016,3.083296,0.3937008,2.055531,0.7874016,2.055531,0.3937008,-2.055531,0.7874016,-2.055531,0.3937008,-3.083296,0.7874016,-3.083296,0.3937008,15.74803,3.569412E-16,15.88218,1.018973,15.88218,-1.018973,16.27549,-1.968504,16.27549,1.968504,16.90115,-2.783885,16.90115,2.783885,17.71654,-3.409549,17.71654,3.409549,18.66607,-3.802858,18.66607,3.802858,19.68504,-3.937008,19.68504,3.937008,-11.46961,0.7874016,-11.46961,0.3937008,-12.49738,0.7874016,-12.49738,0.3937008,16.13107,0.3937008,15.10331,0.3937008,16.13107,0.7874016,15.10331,0.7874016,-39.37008,0.7874016,-35.43307,0.7874016,-39.37008,4.920006E-13,-35.43307,0.3937008,39.37008,4.920006E-13,-31.4752,0.3937008,-20.07874,0.3937008,-19.29043,0.3937008,-7.874016,0.3937008,-3.937008,0.3937008,3.937008,0.3937008,-3.937008,0.7874016,7.874016,0.3937008,19.29043,0.3937008,20.07874,0.3937008,31.49606,0.3937008,35.41859,0.3937008,39.37008,0.7874016,35.41859,0.7874016,3.937008,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-19.7059,0.7874016,-19.7059,1.904404E-12,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.76252,0.3937008,19.68504,1.307437E-12,15.76252,0.7874016,19.68504,0.7874016,-19.68504,11.81102,-17.98438,11.90769,-19.68504,0.3937008,-19.03816,0.4304698,-16.9117,0.5513391,-16.28675,12.13235,-14.37462,0.8870937,-14.59455,12.48469,-12.91019,12.96421,-11.86866,1.40887,-12.58748,13.08103,-11.23604,13.57023,-9.405405,2.110129,-9.84252,14.18386,-9.574493,14.30188,-7.927897,15.15814,-8.707608,2.362721,-6.994379,2.982885,-6.298588,16.13778,-5.248719,3.751578,-4.688877,17.23942,-4.642905,4.018344,-3.101047,18.46149,-2.356173,5.20748,-1.537348,19.80227,-0.137475,6.541499,-2.063252E-13,21.25984,2.011457,8.012165,1.520879,22.82997,3.072218,24.27599,4.090083,9.611979,4.651486,25.59555,6.098709,11.33425,6.256109,26.7865,8.018845,13.15475,7.883467,27.84688,9.530908,28.77497,9.506029,14.6901,10.61832,15.72688,9.84252,28.92364,11.19574,29.56926,11.70853,16.6378,12.87526,30.22845,12.77044,17.42594,13.79856,18.09587,14.56671,30.75147,14.78861,18.65361,16.26734,31.13746,15.73802,19.10658,16.64645,19.46313,17.97438,31.38579,17.51624,19.73208,18.35258,19.9219,19.68504,31.49606,19.16342,20.03986,19.68504,20.07874,-15.08573,2.842171E-14,-14.24275,0.1115585,-14.24275,-0.1115585,-11.68067,-0.6450205,-11.68067,0.6450205,-9.163696,-1.361572,-9.163696,1.361572,-8.440031,-1.623528,-8.440031,1.623528,-6.70185,-2.252724,-6.70185,2.252724,-4.931905,-3.03211,-4.931905,3.03211,-4.302796,-3.309135,-4.302796,3.309135,-1.971916,-4.521228,-1.971916,4.521228,0.2874294,-5.879687,0.2874294,5.879687,2.473549,-7.375803,2.473549,7.375803,4.586023,-9.001669,4.586023,9.001669,6.625333,-10.75025,6.625333,10.75025,8.571868,-12.59578,8.571868,12.59578,10.05673,-14.12873,10.05673,14.12873,11.13874,-15.13728,11.13874,15.13728,12.19522,-16.02003,11.81102,4.338976E-18,12.07932,-2.037945,12.86594,-3.937008,13.2197,-16.78039,14.11727,-5.56777,14.20649,-17.42338,15.74803,-6.819098,15.15121,-17.95559,16.05128,-18.38501,17.64709,-7.605715,16.90654,-18.72069,17.71966,-18.97212,19.68504,-7.874016,18.49639,-19.14841,19.24933,-19.25795,19.68504,-19.29043,12.19522,16.02003,12.07932,2.037945,12.86594,3.937008,13.2197,16.78039,14.11727,5.56777,14.20649,17.42338,15.74803,6.819098,15.15121,17.95559,16.05128,18.38501,17.64709,7.605715,16.90654,18.72069,17.71966,18.97212,19.68504,7.874016,18.49639,19.14841,19.24933,19.25795,19.68504,19.29043,-19.68504,-11.81102,-19.68504,-0.3937008,-19.30496,-11.81102,-19.03816,-0.4304698,-17.15218,-11.94979,-16.9117,-0.5513391,-14.82543,-12.28828,-14.37462,-0.8870937,-12.52715,-12.80992,-11.86866,-1.40887,-10.26754,-13.50862,-9.405405,-2.110129,-8.054839,-14.37708,-8.707608,-2.362721,-6.994379,-2.982885,-6.448452,-15.14348,-5.248719,-3.751578,-5.8953,-15.40739,-3.793286,-16.59157,-4.642905,-4.018344,-2.356173,-5.20748,-1.751565,-17.92195,-0.137475,-6.541499,0.2283338,-19.39142,2.011457,-8.012165,2.145778,-20.99354,4.090083,-9.611979,4.000713,-22.72255,5.544891,-24.31673,6.098709,-11.33425,6.817549,-25.52335,8.018845,-13.15475,8.073587,-26.60033,9.506029,-14.6901,9.322042,-27.5612,10.55889,-28.40767,10.61832,-15.72688,11.78065,-29.14226,11.70853,-16.6378,12.77044,-17.42594,12.9846,-29.76834,13.79856,-18.09587,13.01905,-29.78351,14.16908,-30.28991,14.78861,-18.65361,15.27034,-30.68855,15.73802,-19.10658,15.33368,-30.71148,16.47946,-31.03767,16.64645,-19.46313,17.60896,-31.27285,17.51624,-19.73208,18.35258,-19.9219,18.72612,-31.42069,19.16342,-20.03986,19.68504,-31.4752,19.68504,-20.07874,-19.68504,15.74803,-18.35427,15.82367,-16.94611,16.01003,-15.53451,16.30394,-14.11873,16.707,-13.92537,16.77699,-12.69868,17.22104,-11.42659,17.78119,-11.27504,17.84793,-9.849181,18.5894,-8.42311,19.44684,-6.999337,20.42123,-5.580747,21.51305,-4.170472,22.72227,-2.765119,24.0547,-1.232621,25.63682,0.4701146,27.22397,2.218024,28.68443,4.009789,30.01427,5.843781,31.2093,7.717908,32.26509,8.14997,32.47123,9.629441,33.17708,11.57484,33.94063,13.54963,34.55126,15.54829,35.00489,17.56437,35.29818,19.43219,35.41859,19.68504,35.41859,-19.68504,-15.76252,-19.43219,-15.76252,-17.56437,-15.88292,-15.54829,-16.17621,-13.54963,-16.62984,-11.57484,-17.24047,-9.629441,-18.00402,-8.14997,-18.70987,-7.717908,-18.91601,-5.843781,-19.97181,-4.009789,-21.16683,-2.218024,-22.49667,-0.4701146,-23.95714,1.232621,-25.54428,2.765119,-27.1264,4.170472,-28.45883,5.580747,-29.66806,6.999337,-30.75987,8.42311,-31.73426,9.849181,-32.59171,11.27504,-33.33318,11.42659,-33.39991,12.69868,-33.96007,13.92537,-34.40411,14.11873,-34.47411,15.53451,-34.87716,16.94611,-35.17107,18.35427,-35.35743,19.68504,-35.43307,15.74803,1.070824E-16,15.88218,-1.018973,16.27549,-1.968504,16.90115,-2.783885,17.71654,-3.409549,18.66607,-3.802858,19.68504,-3.937008,15.88218,1.018973,16.27549,1.968504,16.90115,2.783885,17.71654,3.409549,18.66607,3.802858,19.68504,3.937008 + } + UVIndex: *2586 { + a: 0,2,1,3,1,2,4,1,3,5,1,4,6,5,4,7,5,6,8,5,7,9,8,7,10,8,9,11,8,10,12,11,10,13,11,12,14,11,13,15,11,14,16,15,14,17,15,16,18,17,16,19,17,18,20,19,18,21,20,18,22,20,21,23,20,22,24,23,22,25,23,24,26,25,24,27,25,26,28,27,26,29,27,28,30,29,28,31,29,30,32,31,30,33,31,32,34,33,32,35,34,32,36,34,35,37,36,35,38,36,37,39,38,37,40,38,39,41,40,39,42,40,41,43,42,41,44,42,43,45,44,43,46,45,43,47,45,46,48,47,46,49,47,48,50,49,48,51,50,48,52,51,48,53,51,52,54,53,52,55,53,54,56,55,54,57,59,58,60,58,59,57,61,59,62,59,61,63,65,64,66,64,65,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,78,80,82,81,80,83,81,82,84,83,82,85,83,84,86,85,84,87,85,86,88,87,86,89,87,88,90,89,88,91,89,90,92,89,91,93,92,91,94,92,93,95,94,93,96,94,95,97,96,95,98,96,97,99,98,97,100,98,99,101,100,99,102,100,101,103,102,101,104,102,103,105,104,103,106,104,105,107,106,105,108,106,107,109,108,107,110,108,109,111,110,109,112,110,111,113,112,111,114,112,113,115,114,113,116,114,115,117,116,115,118,116,117,119,116,118,120,119,118,121,119,120,122,121,120,123,122,120,124,122,123,125,124,123,126,124,125,127,126,125,128,127,125,129,127,128,130,129,128,131,129,130,132,131,130,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,167,170,166,171,166,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,240,241,244,245,244,241,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,255,257,258,259,258,257,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,281,283,284,285,284,283,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,337,336,339,338,336,340,338,339,341,340,339,342,340,341,343,342,341,344,342,343,345,344,343,346,345,343,347,346,343,348,346,347,349,346,348,350,349,348,351,350,348,352,350,351,353,352,351,354,352,353,355,352,354,356,355,354,357,355,356,358,357,356,359,357,358,360,359,358,361,359,360,362,361,360,363,361,362,364,363,362,365,363,364,366,365,364,367,365,366,368,367,366,369,367,368,370,369,368,371,369,370,372,371,370,373,371,372,374,373,372,375,373,374,376,373,375,377,376,375,378,377,375,379,377,378,380,379,378,381,379,380,382,379,381,383,382,381,384,382,383,385,384,383,386,384,385,387,386,385,388,386,387,389,388,387,390,388,389,391,390,389,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,408,409,412,413,412,409,414,416,415,417,415,416,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,432,434,433,435,433,434,436,438,437,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,448,450,449,451,449,450,452,454,453,455,453,454,456,458,457,459,457,458,460,462,461,463,461,462,462,464,463,465,463,464,466,468,467,469,467,468,470,472,471,473,471,472,474,476,475,477,475,476,478,480,479,481,479,480,482,484,483,485,483,484,486,488,487,489,487,488,490,492,491,493,491,492,494,496,495,497,495,496,498,500,499,501,499,500,502,504,503,505,503,504,506,508,507,509,507,508,510,512,511,513,511,512,514,516,515,517,515,516,518,520,519,521,519,520,519,521,522,523,522,521,524,526,525,527,525,526,528,530,529,531,529,530,532,534,533,535,533,534,532,533,536,537,536,533,538,540,539,541,539,540,539,541,542,543,542,541,544,546,545,547,545,546,548,550,549,551,549,550,552,554,553,555,553,554,556,558,557,559,557,558,560,562,561,563,561,562,564,566,565,567,565,566,568,570,569,571,569,570,572,574,573,575,573,574,576,578,577,579,577,578,580,582,581,583,581,582,584,586,585,587,585,586,588,590,589,591,589,590,592,594,593,595,593,594,596,598,597,599,597,598,600,602,601,603,601,602,604,606,605,607,605,606,608,610,609,611,609,610,612,614,613,615,613,614,616,618,617,619,617,618,620,622,621,623,621,622,624,626,625,627,625,626,628,630,629,631,629,630,632,634,633,635,633,634,636,633,635,637,636,635,638,636,637,639,638,637,640,638,639,641,640,639,642,640,641,643,642,641,644,642,643,645,647,646,648,646,647,649,651,650,652,650,651,653,655,654,656,654,655,657,656,655,658,656,657,659,658,657,660,659,657,661,660,657,662,661,657,663,662,657,664,662,663,665,663,657,666,665,657,667,666,657,668,667,657,669,668,657,670,669,657,669,670,671,663,672,664,673,675,674,675,676,674,674,676,677,677,676,678,678,676,679,679,676,680,680,676,681,676,682,681,681,682,683,684,683,682,685,687,686,688,686,687,689,686,688,690,686,689,691,690,689,692,690,691,693,692,691,694,693,691,695,693,694,696,695,694,697,696,694,698,696,697,699,698,697,700,699,697,701,700,697,702,700,701,703,700,702,704,703,702,705,703,704,706,705,704,707,705,706,708,707,706,709,707,708,710,709,708,711,709,710,712,711,710,713,711,712,714,713,712,715,714,712,716,714,715,717,716,715,718,716,717,719,718,717,720,718,719,721,720,719,722,721,719,723,721,722,724,721,723,725,724,723,726,725,723,727,725,726,728,727,726,729,727,728,730,727,729,731,730,729,732,730,731,733,732,731,734,732,733,735,732,734,736,735,734,737,735,736,738,735,737,739,738,737,740,738,739,741,743,742,744,742,743,745,742,744,746,745,744,747,745,746,748,747,746,749,747,748,750,749,748,751,749,750,752,751,750,753,751,752,754,753,752,755,753,754,756,755,754,757,755,756,758,757,756,759,757,758,760,759,758,761,759,760,762,761,760,763,761,762,764,763,762,765,763,764,766,765,764,767,765,766,768,767,766,769,767,768,770,769,768,771,769,770,772,771,770,773,771,772,774,773,772,775,774,772,776,775,772,777,775,776,778,777,776,779,777,778,780,779,778,781,779,780,782,779,781,783,782,781,784,782,783,785,782,784,786,785,784,787,785,786,788,785,787,771,773,789,790,789,773,791,789,790,792,789,791,793,792,791,794,792,793,795,794,793,796,794,795,797,796,795,798,797,795,799,797,798,800,799,798,801,800,798,802,800,801,803,802,801,804,803,801,805,807,806,808,806,807,809,808,807,810,808,809,811,810,809,812,810,811,813,812,811,814,812,813,815,814,813,816,814,815,817,816,815,818,816,817,819,818,817,820,819,817,821,819,820,822,821,820,823,821,822,824,821,823,825,824,823,826,825,823,827,825,826,828,827,826,829,827,828,830,829,828,831,829,830,832,831,830,833,831,832,834,831,833,835,834,833,836,834,835,837,836,835,838,836,837,839,838,837,840,838,839,841,838,840,842,841,840,843,841,842,844,843,842,845,844,842,846,844,845,847,846,845,848,846,847,849,846,848,850,849,848,851,849,850,852,851,850,853,851,852,854,851,853,855,854,853,856,854,855,857,856,855,858,857,855,859,857,858,860,859,858,861,859,860,685,686,862,863,862,686,864,863,686,690,864,686,865,864,690,692,865,690,866,865,692,693,866,692,867,866,693,868,867,693,695,868,693,869,868,695,696,869,695,870,869,696,871,870,696,698,871,696,872,871,698,699,872,698,700,872,699,873,872,700,703,873,700,874,873,703,705,874,703,875,874,705,707,875,705,876,875,707,709,876,707,877,876,709,711,877,709,878,877,711,713,878,711,879,878,713,714,879,713,880,879,714,716,880,714,881,880,716,718,881,716,882,881,718,720,882,718,883,882,720,721,883,720,884,883,721,724,884,721,885,884,724,725,885,724,727,885,725,886,885,727,730,886,727,887,886,730,732,887,730,888,887,732,735,888,732,889,888,735,738,889,735,890,889,738,891,892,805,807,805,892,893,807,892,809,807,893,894,809,893,811,809,894,895,811,894,813,811,895,896,813,895,815,813,896,897,815,896,817,815,897,898,817,897,899,817,898,820,817,899,900,820,899,822,820,900,823,822,900,901,823,900,902,823,901,826,823,902,903,826,902,828,826,903,904,828,903,830,828,904,905,830,904,832,830,905,906,832,905,833,832,906,907,833,906,835,833,907,908,835,907,837,835,908,909,837,908,839,837,909,910,839,909,840,839,910,911,840,910,842,840,911,912,842,911,913,842,912,845,842,913,914,845,913,847,845,914,848,847,914,915,848,914,916,848,915,850,848,916,852,850,916,853,852,916,917,853,916,855,853,917,918,855,917,858,855,918,919,858,918,860,858,919,920,779,921,782,921,779,922,921,782,923,922,782,924,923,782,785,924,782,925,924,785,926,925,785,920,795,779,795,793,779,779,793,777,793,791,777,777,791,775,791,790,775,775,790,774,773,774,790,927,795,920,798,795,927,928,798,927,929,798,928,930,798,929,801,798,930,931,801,930,932,801,931,806,808,687,688,687,808,810,688,808,689,688,810,812,689,810,741,689,812,743,741,812,814,743,812,744,743,814,816,744,814,746,744,816,818,746,816,748,746,818,819,748,818,750,748,819,821,750,819,752,750,821,824,752,821,754,752,824,825,754,824,756,754,825,827,756,825,758,756,827,829,758,827,760,758,829,831,760,829,762,760,831,834,762,831,764,762,834,836,764,834,766,764,836,838,766,836,768,766,838,841,768,838,770,768,841,843,770,841,772,770,843,844,772,843,776,772,844,846,776,844,778,776,846,849,778,846,780,778,849,851,780,849,781,780,851,854,781,851,783,781,854,856,783,854,784,783,856,857,784,856,786,784,857,859,786,857,787,786,859,861,787,859,788,787,861,689,741,691,742,691,741,694,691,742,745,694,742,697,694,745,747,697,745,701,697,747,749,701,747,702,701,749,751,702,749,704,702,751,753,704,751,706,704,753,755,706,753,708,706,755,757,708,755,710,708,757,759,710,757,712,710,759,761,712,759,715,712,761,763,715,761,717,715,763,765,717,763,719,717,765,767,719,765,722,719,767,769,722,767,723,722,769,771,723,769,726,723,771,789,726,771,728,726,789,792,728,789,729,728,792,794,729,792,731,729,794,796,731,794,733,731,796,797,733,796,734,733,797,799,734,797,736,734,799,800,736,799,737,736,800,802,737,800,739,737,802,803,739,802,740,739,803,804,740,803 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *862 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_split, Model::RootNode + C: "OO",4793432583949380004,0 + + ;Geometry::, Model::Mesh road_split + C: "OO",4654931548929634759,4793432583949380004 + + ;Material::pavement, Model::Mesh road_split + C: "OO",17046,4793432583949380004 + + ;Material::asphalt, Model::Mesh road_split + C: "OO",9934,4793432583949380004 + + ;Material::asphaltEdge, Model::Mesh road_split + C: "OO",17042,4793432583949380004 + + ;Material::line, Model::Mesh road_split + C: "OO",9174,4793432583949380004 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_split.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_split.fbx.import new file mode 100644 index 0000000..eb23577 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_split.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c7xugujb5eisy" +path="res://.godot/imported/road_split.fbx-465134edeac8fa7397be7a1f59f5a92b.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_split.fbx" +dest_files=["res://.godot/imported/road_split.fbx-465134edeac8fa7397be7a1f59f5a92b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_splitBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_splitBarrier.fbx new file mode 100644 index 0000000..d9f5fb4 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_splitBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 473 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_splitBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_splitBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5309622018771453961, "Model::road_splitBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4938677175388680037, "Geometry::", "Mesh" { + Vertices: *2286 { + a: 5,8.976517E-13,5.0053,5,6.038112E-13,4.504269,4.756434,1.398591E-12,5.019144,4.971521,4.593726E-13,4.504269,4.709209,9.988886E-13,4.519178,4.472675,1.504847E-12,5.056696,4.388493,1.060251E-12,4.561622,4.185782,1.586118E-12,5.116431,4.065774,1.129115E-12,4.628816,3.894755,1.603207E-12,5.199284,3.740456,1.134247E-12,4.72143,3.878667,1.528535E-12,5.205107,3.598946,1.704444E-12,5.306362,3.707855,1.053258E-12,4.733232,3.412206,1.239206E-12,4.840252,3.306839,1.775789E-12,5.434989,3.104596,1.297579E-12,4.975706,3.298089,1.778948E-12,5.438843,2.992284,1.845894E-12,5.597866,3.080975,1.306096E-12,4.986108,2.746988,1.36994E-12,5.159786,2.681958,1.902575E-12,5.784453,2.410714,1.427072E-12,5.361975,2.367799,1.943916E-12,5.999454,2.072815,1.470387E-12,5.593223,2.050691,1.993716E-12,6.243516,1.7341,1.524474E-12,5.853915,1.731657,2.029868E-12,6.517068,1.395478,1.565307E-12,6.144262,1.408402,2.076623E-12,6.82355,1.016181,2.125916E-12,7.228472,1.055371,1.618322E-12,6.466722,0.6646335,1.671563E-12,6.870112,0.5450277,2.212489E-12,7.667641,0.2128093,1.750071E-12,7.291264,0.05799679,2.280732E-12,8.074579,-0.2526907,1.812167E-12,7.680212,-0.4448977,2.364429E-12,8.447824,-0.7316921,1.889998E-12,8.035725,-0.9634945,2.44649E-12,8.785741,-1.223907,1.967998E-12,8.356451,-1.497406,2.508191E-12,9.086523,-1.728877,2.027894E-12,8.640927,-1.637907,2.526521E-12,9.153555,-2.045929,2.584499E-12,9.348222,-1.854,2.047691E-12,8.700624,-2.245903,2.103413E-12,8.8876,-2.607955,2.655957E-12,9.568811,-2.773982,2.177071E-12,9.094866,-3.181897,2.722678E-12,9.746281,-3.311751,2.248641E-12,9.261149,-3.76566,2.784209E-12,9.878777,-3.857463,2.317956E-12,9.38501,-4.356654,2.994353E-12,9.964752,-4.409001,2.53374E-12,9.465245,-4.90346,1.233679E-12,10,-4.919618,8.458771E-13,9.49816,-5,4.266045E-13,10,-5,0,9.49816,4.065774,1.129115E-12,4.628816,4.065774,0.8,4.829847,3.740456,1.134247E-12,4.72143,3.740456,0.8,4.922461,3.707855,1.053258E-12,4.733232,3.740456,1.134247E-12,4.72143,3.707855,0.8,4.934263,3.740456,0.8,4.922461,3.412206,1.239206E-12,4.840252,3.412206,0.8,5.041284,5,0.8,5.0053,4.756434,0.8,5.019144,5,0.8,4.705299,4.971521,0.8,4.705299,4.709209,0.8,4.72021,4.472675,0.8,5.056696,4.388493,0.8,4.762652,4.185782,0.8,5.116431,4.065774,0.8,4.829847,3.894755,0.8,5.199284,3.740456,0.8,4.922461,3.878667,0.8,5.205107,3.598946,0.8,5.306362,3.707855,0.8,4.934263,3.412206,0.8,5.041284,3.306839,0.8,5.434989,3.104596,0.8,5.176737,3.298089,0.8,5.438843,2.992284,0.8,5.597866,3.080975,0.8,5.18714,2.746988,0.8,5.360817,2.681958,0.8,5.784453,2.410714,0.8,5.563006,2.367799,0.8,5.999454,2.072815,0.8,5.794254,2.050691,0.8,6.243516,1.7341,0.8,6.054945,1.731657,0.8,6.517068,1.395478,0.8,6.345294,1.408402,0.8,6.82355,1.016181,0.8,7.228472,1.055371,0.8,6.667753,0.6646335,0.8,7.071143,0.5450277,0.8,7.667641,0.2128093,0.8,7.492294,0.05799679,0.8,8.074579,-0.2526907,0.8,7.881244,-0.4448977,0.8,8.447824,-0.7316921,0.8,8.236755,-0.9634945,0.8,8.785741,-1.223907,0.8,8.557481,-1.497406,0.8,9.086523,-1.728877,0.8,8.841959,-1.637907,0.8,9.153555,-2.045929,0.8,9.348222,-1.854,0.8,8.901654,-2.245903,0.8,9.088632,-2.607955,0.8,9.568811,-2.773982,0.8,9.295897,-3.181897,0.8,9.746281,-3.311751,0.8,9.462181,-3.76566,0.8,9.878777,-3.857463,0.8,9.58604,-4.356654,0.8,9.964752,-4.409001,0.8,9.666276,-4.90346,0.8,10,-4.919618,0.8,9.699191,-5,0.8,10,-5,0.8,9.699191,5,6.038112E-13,4.504269,5,8.976517E-13,5.0053,5,0.8,4.705299,5,0.8,5.0053,4.971521,4.593726E-13,4.504269,5,6.038112E-13,4.504269,4.971521,0.8,4.705299,5,0.8,4.705299,4.971521,4.593726E-13,4.504269,4.971521,0.8,4.705299,4.709209,9.988886E-13,4.519178,4.709209,0.8,4.72021,1.395478,1.565307E-12,6.144262,1.395478,0.8,6.345294,1.055371,1.618322E-12,6.466722,1.055371,0.8,6.667753,2.072815,1.470387E-12,5.593223,2.072815,0.8,5.794254,1.7341,1.524474E-12,5.853915,1.7341,0.8,6.054945,2.746988,1.36994E-12,5.159786,2.746988,0.8,5.360817,2.410714,1.427072E-12,5.361975,2.410714,0.8,5.563006,0.2128093,1.750071E-12,7.291264,0.2128093,0.8,7.492294,-0.2526907,1.812167E-12,7.680212,-0.2526907,0.8,7.881244,-0.2526907,1.812167E-12,7.680212,-0.2526907,0.8,7.881244,-0.7316921,1.889998E-12,8.035725,-0.7316921,0.8,8.236755,-2.245903,2.103413E-12,8.8876,-2.245903,0.8,9.088632,-2.773982,2.177071E-12,9.094866,-2.773982,0.8,9.295897,3.412206,1.239206E-12,4.840252,3.412206,0.8,5.041284,3.104596,1.297579E-12,4.975706,3.104596,0.8,5.176737,3.080975,1.306096E-12,4.986108,3.080975,0.8,5.18714,-0.7316921,1.889998E-12,8.035725,-0.7316921,0.8,8.236755,-1.223907,1.967998E-12,8.356451,-1.223907,0.8,8.557481,1.7341,1.524474E-12,5.853915,1.7341,0.8,6.054945,1.395478,1.565307E-12,6.144262,1.395478,0.8,6.345294,-1.854,2.047691E-12,8.700624,-1.854,0.8,8.901654,-2.245903,2.103413E-12,8.8876,-2.245903,0.8,9.088632,-1.728877,0.8,8.841959,-1.728877,2.027894E-12,8.640927,-5,0,9.49816,-5,0.8,9.699191,-5,4.266045E-13,10,-5,0.8,10,-3.857463,2.317956E-12,9.38501,-3.857463,0.8,9.58604,-4.409001,2.53374E-12,9.465245,-4.409001,0.8,9.666276,-2.773982,2.177071E-12,9.094866,-2.773982,0.8,9.295897,-3.311751,2.248641E-12,9.261149,-3.311751,0.8,9.462181,2.410714,1.427072E-12,5.361975,2.410714,0.8,5.563006,2.072815,1.470387E-12,5.593223,2.072815,0.8,5.794254,1.055371,1.618322E-12,6.466722,1.055371,0.8,6.667753,0.6646335,1.671563E-12,6.870112,0.6646335,0.8,7.071143,0.6646335,1.671563E-12,6.870112,0.6646335,0.8,7.071143,0.2128093,1.750071E-12,7.291264,0.2128093,0.8,7.492294,-1.223907,1.967998E-12,8.356451,-1.223907,0.8,8.557481,-1.728877,2.027894E-12,8.640927,-1.728877,0.8,8.841959,-3.311751,2.248641E-12,9.261149,-3.311751,0.8,9.462181,-3.857463,2.317956E-12,9.38501,-3.857463,0.8,9.58604,-4.919618,8.458771E-13,9.49816,-4.409001,2.53374E-12,9.465245,-4.919618,0.8,9.699191,-4.409001,0.8,9.666276,-5,0,9.49816,-4.919618,8.458771E-13,9.49816,-5,0.8,9.699191,-4.919618,0.8,9.699191,3.080975,1.306096E-12,4.986108,3.080975,0.8,5.18714,2.746988,1.36994E-12,5.159786,2.746988,0.8,5.360817,1.731657,2.029868E-12,6.517068,1.408402,2.076623E-12,6.82355,1.731657,0.8,6.517068,1.408402,0.8,6.82355,-1.497406,2.508191E-12,9.086523,-1.637907,2.526521E-12,9.153555,-1.497406,0.8,9.086523,-1.637907,0.8,9.153555,-2.045929,2.584499E-12,9.348222,-2.045929,0.8,9.348222,4.185782,1.586118E-12,5.116431,3.894755,1.603207E-12,5.199284,4.185782,0.8,5.116431,3.894755,0.8,5.199284,3.598946,1.704444E-12,5.306362,3.306839,1.775789E-12,5.434989,3.598946,0.8,5.306362,3.306839,0.8,5.434989,3.298089,1.778948E-12,5.438843,3.298089,0.8,5.438843,-2.045929,2.584499E-12,9.348222,-2.607955,2.655957E-12,9.568811,-2.045929,0.8,9.348222,-2.607955,0.8,9.568811,-4.90346,1.233679E-12,10,-4.90346,0.8,10,-4.356654,2.994353E-12,9.964752,-4.356654,0.8,9.964752,1.016181,2.125916E-12,7.228472,0.5450277,2.212489E-12,7.667641,1.016181,0.8,7.228472,0.5450277,0.8,7.667641,1.408402,0.8,6.82355,1.408402,2.076623E-12,6.82355,1.016181,0.8,7.228472,1.016181,2.125916E-12,7.228472,2.050691,1.993716E-12,6.243516,1.731657,2.029868E-12,6.517068,2.050691,0.8,6.243516,1.731657,0.8,6.517068,0.05799679,2.280732E-12,8.074579,-0.4448977,2.364429E-12,8.447824,0.05799679,0.8,8.074579,-0.4448977,0.8,8.447824,-2.607955,2.655957E-12,9.568811,-3.181897,2.722678E-12,9.746281,-2.607955,0.8,9.568811,-3.181897,0.8,9.746281,0.5450277,2.212489E-12,7.667641,0.05799679,2.280732E-12,8.074579,0.5450277,0.8,7.667641,0.05799679,0.8,8.074579,2.681958,1.902575E-12,5.784453,2.367799,1.943916E-12,5.999454,2.681958,0.8,5.784453,2.367799,0.8,5.999454,-0.9634945,2.44649E-12,8.785741,-1.497406,2.508191E-12,9.086523,-0.9634945,0.8,8.785741,-1.497406,0.8,9.086523,-3.181897,2.722678E-12,9.746281,-3.76566,2.784209E-12,9.878777,-3.181897,0.8,9.746281,-3.76566,0.8,9.878777,-5,4.266045E-13,10,-5,0.8,10,-4.90346,1.233679E-12,10,-4.90346,0.8,10,-0.4448977,2.364429E-12,8.447824,-0.9634945,2.44649E-12,8.785741,-0.4448977,0.8,8.447824,-0.9634945,0.8,8.785741,2.992284,1.845894E-12,5.597866,2.681958,1.902575E-12,5.784453,2.992284,0.8,5.597866,2.681958,0.8,5.784453,3.298089,1.778948E-12,5.438843,2.992284,1.845894E-12,5.597866,3.298089,0.8,5.438843,2.992284,0.8,5.597866,3.878667,1.528535E-12,5.205107,3.878667,0.8,5.205107,3.894755,1.603207E-12,5.199284,3.894755,0.8,5.199284,3.598946,1.704444E-12,5.306362,3.598946,0.8,5.306362,4.756434,1.398591E-12,5.019144,4.472675,1.504847E-12,5.056696,4.756434,0.8,5.019144,4.472675,0.8,5.056696,5,8.976517E-13,5.0053,4.756434,1.398591E-12,5.019144,5,0.8,5.0053,4.756434,0.8,5.019144,4.709209,9.988886E-13,4.519178,4.709209,0.8,4.72021,4.388493,1.060251E-12,4.561622,4.388493,0.8,4.762652,-3.76566,2.784209E-12,9.878777,-4.356654,2.994353E-12,9.964752,-3.76566,0.8,9.878777,-4.356654,0.8,9.964752,4.388493,1.060251E-12,4.561622,4.388493,0.8,4.762652,4.065774,1.129115E-12,4.628816,4.065774,0.8,4.829847,4.472675,1.504847E-12,5.056696,4.185782,1.586118E-12,5.116431,4.472675,0.8,5.056696,4.185782,0.8,5.116431,2.367799,1.943916E-12,5.999454,2.050691,1.993716E-12,6.243516,2.367799,0.8,5.999454,2.050691,0.8,6.243516,4.971521,8.939857E-13,-4.504269,4.709209,1.433502E-12,-4.519178,4.971521,0.8,-4.705299,4.709209,0.8,-4.72021,1.016181,2.56053E-12,-7.228472,1.016181,0.8,-7.228472,0.5450277,2.647102E-12,-7.667641,0.5450277,0.8,-7.667641,-2.245903,2.538026E-12,-8.8876,-2.773982,2.611684E-12,-9.094866,-2.245903,0.8,-9.088632,-2.773982,0.8,-9.295897,2.992284,2.280507E-12,-5.597866,2.992284,0.8,-5.597866,2.681958,2.337188E-12,-5.784453,2.681958,0.8,-5.784453,3.080975,1.740709E-12,-4.986108,2.746988,1.804553E-12,-5.159786,3.080975,0.8,-5.18714,2.746988,0.8,-5.360817,-1.223907,2.402612E-12,-8.356451,-1.728877,2.462507E-12,-8.640927,-1.223907,0.8,-8.557481,-1.728877,0.8,-8.841959,0.05799679,2.715346E-12,-8.074579,0.05799679,0.8,-8.074579,-0.4448977,2.799042E-12,-8.447824,-0.4448977,0.8,-8.447824,-1.637907,2.961134E-12,-9.153555,-1.637907,0.8,-9.153555,-2.045929,3.019113E-12,-9.348222,-2.045929,0.8,-9.348222,-1.497406,0.8,-9.086523,-1.497406,2.942804E-12,-9.086523,0.6646335,0.8,-7.071143,1.055371,0.8,-6.667753,0.6646335,2.106177E-12,-6.870112,1.055371,2.052936E-12,-6.466722,-5,4.346132E-13,-9.49816,-5,0.8,-9.699191,-4.919618,1.28049E-12,-9.49816,-4.919618,0.8,-9.699191,0.5450277,2.647102E-12,-7.667641,0.5450277,0.8,-7.667641,0.05799679,2.715346E-12,-8.074579,0.05799679,0.8,-8.074579,2.681958,2.337188E-12,-5.784453,2.681958,0.8,-5.784453,2.367799,2.378529E-12,-5.999454,2.367799,0.8,-5.999454,2.367799,2.378529E-12,-5.999454,2.367799,0.8,-5.999454,2.050691,2.42833E-12,-6.243516,2.050691,0.8,-6.243516,-0.9634945,2.881103E-12,-8.785741,-0.9634945,0.8,-8.785741,-1.497406,2.942804E-12,-9.086523,-1.497406,0.8,-9.086523,-5,8.612178E-13,-10,-4.90346,1.668292E-12,-10,-5,0.8,-10,-4.90346,0.8,-10,5,1.332265E-12,-5.0053,5,0.8,-5.0053,4.756434,1.833204E-12,-5.019144,4.756434,0.8,-5.019144,2.410714,1.861686E-12,-5.361975,2.072815,1.905E-12,-5.593223,2.410714,0.8,-5.563006,2.072815,0.8,-5.794254,-4.90346,1.668292E-12,-10,-4.356654,3.428966E-12,-9.964752,-4.90346,0.8,-10,-4.356654,0.8,-9.964752,3.298089,2.213561E-12,-5.438843,3.298089,0.8,-5.438843,2.992284,2.280507E-12,-5.597866,2.992284,0.8,-5.597866,-2.773982,2.611684E-12,-9.094866,-3.311751,2.683255E-12,-9.261149,-2.773982,0.8,-9.295897,-3.311751,0.8,-9.462181,1.731657,2.464482E-12,-6.517068,1.731657,0.8,-6.517068,1.408402,2.511236E-12,-6.82355,1.408402,0.8,-6.82355,3.598946,2.139057E-12,-5.306362,3.598946,0.8,-5.306362,3.306839,2.210402E-12,-5.434989,3.306839,0.8,-5.434989,3.298089,2.213561E-12,-5.438843,3.298089,0.8,-5.438843,0.6646335,2.106177E-12,-6.870112,0.2128093,2.184685E-12,-7.291264,0.6646335,0.8,-7.071143,0.2128093,0.8,-7.492294,3.104596,1.732193E-12,-4.975706,3.080975,1.740709E-12,-4.986108,3.104596,0.8,-5.176737,3.080975,0.8,-5.18714,3.412206,0.8,-5.041284,3.412206,1.673819E-12,-4.840252,3.878667,1.963148E-12,-5.205107,3.894755,2.037821E-12,-5.199284,3.878667,0.8,-5.205107,3.894755,0.8,-5.199284,3.598946,2.139057E-12,-5.306362,3.598946,0.8,-5.306362,0.2128093,2.184685E-12,-7.291264,-0.2526907,2.24678E-12,-7.680212,0.2128093,0.8,-7.492294,-0.2526907,0.8,-7.881244,4.185782,2.020731E-12,-5.116431,4.185782,0.8,-5.116431,3.894755,2.037821E-12,-5.199284,3.894755,0.8,-5.199284,-0.4448977,2.799042E-12,-8.447824,-0.4448977,0.8,-8.447824,-0.9634945,2.881103E-12,-8.785741,-0.9634945,0.8,-8.785741,-1.728877,2.462507E-12,-8.640927,-1.854,2.482304E-12,-8.700624,-1.728877,0.8,-8.841959,-1.854,0.8,-8.901654,-2.245903,2.538026E-12,-8.8876,-2.245903,0.8,-9.088632,4.472675,1.93946E-12,-5.056696,4.472675,0.8,-5.056696,4.185782,2.020731E-12,-5.116431,4.185782,0.8,-5.116431,2.072815,1.905E-12,-5.593223,1.7341,1.959087E-12,-5.853915,2.072815,0.8,-5.794254,1.7341,0.8,-6.054945,-3.311751,2.683255E-12,-9.261149,-3.857463,2.752569E-12,-9.38501,-3.311751,0.8,-9.462181,-3.857463,0.8,-9.58604,4.388493,1.494864E-12,-4.561622,4.065774,1.563728E-12,-4.628816,4.388493,0.8,-4.762652,4.065774,0.8,-4.829847,-3.181897,3.157291E-12,-9.746281,-3.181897,0.8,-9.746281,-3.76566,3.218823E-12,-9.878777,-3.76566,0.8,-9.878777,4.709209,1.433502E-12,-4.519178,4.388493,1.494864E-12,-4.561622,4.709209,0.8,-4.72021,4.388493,0.8,-4.762652,4.756434,1.833204E-12,-5.019144,4.756434,0.8,-5.019144,4.472675,1.93946E-12,-5.056696,4.472675,0.8,-5.056696,-3.76566,3.218823E-12,-9.878777,-3.76566,0.8,-9.878777,-4.356654,3.428966E-12,-9.964752,-4.356654,0.8,-9.964752,-2.045929,3.019113E-12,-9.348222,-2.045929,0.8,-9.348222,-2.607955,3.09057E-12,-9.568811,-2.607955,0.8,-9.568811,5,0.8,-5.0053,5,0.8,-4.705299,4.756434,0.8,-5.019144,4.971521,0.8,-4.705299,4.709209,0.8,-4.72021,4.472675,0.8,-5.056696,4.388493,0.8,-4.762652,4.185782,0.8,-5.116431,4.065774,0.8,-4.829847,3.894755,0.8,-5.199284,3.740456,0.8,-4.922461,3.878667,0.8,-5.205107,3.598946,0.8,-5.306362,3.707855,0.8,-4.934263,3.412206,0.8,-5.041284,3.306839,0.8,-5.434989,3.104596,0.8,-5.176737,3.298089,0.8,-5.438843,2.992284,0.8,-5.597866,3.080975,0.8,-5.18714,2.746988,0.8,-5.360817,2.681958,0.8,-5.784453,2.410714,0.8,-5.563006,2.367799,0.8,-5.999454,2.072815,0.8,-5.794254,2.050691,0.8,-6.243516,1.7341,0.8,-6.054945,1.731657,0.8,-6.517068,1.395478,0.8,-6.345294,1.408402,0.8,-6.82355,1.016181,0.8,-7.228472,1.055371,0.8,-6.667753,0.6646335,0.8,-7.071143,0.5450277,0.8,-7.667641,0.2128093,0.8,-7.492294,0.05799679,0.8,-8.074579,-0.2526907,0.8,-7.881244,-0.4448977,0.8,-8.447824,-0.7316921,0.8,-8.236755,-0.9634945,0.8,-8.785741,-1.223907,0.8,-8.557481,-1.497406,0.8,-9.086523,-1.728877,0.8,-8.841959,-1.637907,0.8,-9.153555,-2.045929,0.8,-9.348222,-1.854,0.8,-8.901654,-2.245903,0.8,-9.088632,-2.607955,0.8,-9.568811,-2.773982,0.8,-9.295897,-3.181897,0.8,-9.746281,-3.311751,0.8,-9.462181,-3.76566,0.8,-9.878777,-3.857463,0.8,-9.58604,-4.356654,0.8,-9.964752,-4.409001,0.8,-9.666276,-4.90346,0.8,-10,-4.919618,0.8,-9.699191,-5,0.8,-10,-5,0.8,-9.699191,1.016181,2.56053E-12,-7.228472,1.408402,2.511236E-12,-6.82355,1.016181,0.8,-7.228472,1.408402,0.8,-6.82355,-4.919618,1.28049E-12,-9.49816,-4.919618,0.8,-9.699191,-4.409001,2.968353E-12,-9.465245,-4.409001,0.8,-9.666276,-0.7316921,2.324611E-12,-8.035725,-1.223907,2.402612E-12,-8.356451,-0.7316921,0.8,-8.236755,-1.223907,0.8,-8.557481,1.395478,1.99992E-12,-6.144262,1.055371,2.052936E-12,-6.466722,1.395478,0.8,-6.345294,1.055371,0.8,-6.667753,-3.857463,2.752569E-12,-9.38501,-4.409001,2.968353E-12,-9.465245,-3.857463,0.8,-9.58604,-4.409001,0.8,-9.666276,2.050691,2.42833E-12,-6.243516,2.050691,0.8,-6.243516,1.731657,2.464482E-12,-6.517068,1.731657,0.8,-6.517068,-2.607955,3.09057E-12,-9.568811,-2.607955,0.8,-9.568811,-3.181897,3.157291E-12,-9.746281,-3.181897,0.8,-9.746281,1.7341,1.959087E-12,-5.853915,1.395478,1.99992E-12,-6.144262,1.7341,0.8,-6.054945,1.395478,0.8,-6.345294,-0.2526907,2.24678E-12,-7.680212,-0.7316921,2.324611E-12,-8.035725,-0.2526907,0.8,-7.881244,-0.7316921,0.8,-8.236755,-5,8.612178E-13,-10,-5,0.8,-10,-5,4.346132E-13,-9.49816,-5,0.8,-9.699191,3.707855,1.487871E-12,-4.733232,3.412206,1.673819E-12,-4.840252,3.707855,0.8,-4.934263,3.412206,0.8,-5.041284,3.740456,1.56886E-12,-4.72143,3.740456,0.8,-4.922461,2.746988,1.804553E-12,-5.159786,2.410714,1.861686E-12,-5.361975,2.746988,0.8,-5.360817,2.410714,0.8,-5.563006,5,1.038424E-12,-4.504269,5,1.332265E-12,-5.0053,4.971521,8.939857E-13,-4.504269,4.756434,1.833204E-12,-5.019144,4.709209,1.433502E-12,-4.519178,4.472675,1.93946E-12,-5.056696,4.388493,1.494864E-12,-4.561622,4.185782,2.020731E-12,-5.116431,4.065774,1.563728E-12,-4.628816,3.894755,2.037821E-12,-5.199284,3.740456,1.56886E-12,-4.72143,3.878667,1.963148E-12,-5.205107,3.598946,2.139057E-12,-5.306362,3.707855,1.487871E-12,-4.733232,3.412206,1.673819E-12,-4.840252,3.306839,2.210402E-12,-5.434989,3.104596,1.732193E-12,-4.975706,3.298089,2.213561E-12,-5.438843,2.992284,2.280507E-12,-5.597866,3.080975,1.740709E-12,-4.986108,2.746988,1.804553E-12,-5.159786,2.681958,2.337188E-12,-5.784453,2.410714,1.861686E-12,-5.361975,2.367799,2.378529E-12,-5.999454,2.072815,1.905E-12,-5.593223,2.050691,2.42833E-12,-6.243516,1.7341,1.959087E-12,-5.853915,1.731657,2.464482E-12,-6.517068,1.395478,1.99992E-12,-6.144262,1.408402,2.511236E-12,-6.82355,1.016181,2.56053E-12,-7.228472,1.055371,2.052936E-12,-6.466722,0.6646335,2.106177E-12,-6.870112,0.5450277,2.647102E-12,-7.667641,0.2128093,2.184685E-12,-7.291264,0.05799679,2.715346E-12,-8.074579,-0.2526907,2.24678E-12,-7.680212,-0.4448977,2.799042E-12,-8.447824,-0.7316921,2.324611E-12,-8.035725,-0.9634945,2.881103E-12,-8.785741,-1.223907,2.402612E-12,-8.356451,-1.497406,2.942804E-12,-9.086523,-1.728877,2.462507E-12,-8.640927,-1.637907,2.961134E-12,-9.153555,-2.045929,3.019113E-12,-9.348222,-1.854,2.482304E-12,-8.700624,-2.245903,2.538026E-12,-8.8876,-2.607955,3.09057E-12,-9.568811,-2.773982,2.611684E-12,-9.094866,-3.181897,3.157291E-12,-9.746281,-3.311751,2.683255E-12,-9.261149,-3.76566,3.218823E-12,-9.878777,-3.857463,2.752569E-12,-9.38501,-4.356654,3.428966E-12,-9.964752,-4.409001,2.968353E-12,-9.465245,-4.90346,1.668292E-12,-10,-4.919618,1.28049E-12,-9.49816,-5,8.612178E-13,-10,-5,4.346132E-13,-9.49816,5,1.332265E-12,-5.0053,5,1.038424E-12,-4.504269,5,0.8,-5.0053,5,0.8,-4.705299,4.065774,1.563728E-12,-4.628816,3.740456,1.56886E-12,-4.72143,4.065774,0.8,-4.829847,3.740456,0.8,-4.922461,4.971521,8.939857E-13,-4.504269,4.971521,0.8,-4.705299,5,1.038424E-12,-4.504269,5,0.8,-4.705299,-4.7,0.8,5.414336E-14,-4.710222,0.8,0.07764571,-4.710222,0.8,-0.07764571,-4.740192,0.8,-0.15,-4.740192,0.8,0.15,-4.787868,0.8,-0.212132,-4.787868,0.8,0.212132,-4.85,0.8,-0.2598076,-4.85,0.8,0.2598076,-4.922354,0.8,-0.2897777,-4.922354,0.8,0.2897777,-5,0.8,-0.3,-5,0.8,0.3,-4.787868,0.8,0.212132,-4.740192,0.8,0.15,-4.646446,1.413311E-12,0.3535534,-4.566987,1.413311E-12,0.25,-4.710222,0.8,0.07764571,-4.517037,1.413311E-12,0.1294095,-4.566987,1.413311E-12,0.25,-4.740192,0.8,0.15,-4.87059,1.413762E-12,-0.4829629,-4.75,1.413762E-12,-0.4330127,-4.922354,0.8,-0.2897777,-4.85,0.8,-0.2598076,-4.85,0.8,-0.2598076,-4.646446,1.413762E-12,-0.3535534,-4.787868,0.8,-0.212132,-4.75,1.413762E-12,-0.4330127,-5,1.413762E-12,-0.5,-4.87059,1.413762E-12,-0.4829629,-5,0.8,-0.3,-4.922354,0.8,-0.2897777,-4.740192,0.8,-0.15,-4.566987,1.413762E-12,-0.25,-4.710222,0.8,-0.07764571,-4.517037,1.413762E-12,-0.1294095,-4.7,0.8,5.414336E-14,-4.517037,1.413762E-12,-0.1294095,-4.5,1.413311E-12,5.414336E-14,-4.710222,0.8,-0.07764571,-4.646446,1.413762E-12,-0.3535534,-4.566987,1.413762E-12,-0.25,-4.740192,0.8,-0.15,-4.787868,0.8,-0.212132,-4.75,1.413311E-12,0.4330127,-4.87059,1.413311E-12,0.4829629,-4.922354,0.8,0.2897777,-4.85,0.8,0.2598076,-4.710222,0.8,0.07764571,-4.7,0.8,5.414336E-14,-4.517037,1.413311E-12,0.1294095,-4.5,1.413311E-12,5.414336E-14,-4.646446,1.413311E-12,0.3535534,-4.75,1.413311E-12,0.4330127,-4.85,0.8,0.2598076,-4.787868,0.8,0.212132,-5,1.413762E-12,-0.5,-5,0.8,-0.3,-5,1.413311E-12,0.5,-5,0.8,0.3,-4.87059,1.413311E-12,0.4829629,-5,1.413311E-12,0.5,-5,0.8,0.3,-4.922354,0.8,0.2897777,-4.5,1.413311E-12,5.414336E-14,-4.517037,1.413762E-12,-0.1294095,-4.517037,1.413311E-12,0.1294095,-4.566987,1.413762E-12,-0.25,-4.566987,1.413311E-12,0.25,-4.646446,1.413762E-12,-0.3535534,-4.646446,1.413311E-12,0.3535534,-4.75,1.413762E-12,-0.4330127,-4.75,1.413311E-12,0.4330127,-4.87059,1.413762E-12,-0.4829629,-4.87059,1.413311E-12,0.4829629,-5,1.413762E-12,-0.5,-5,1.413311E-12,0.5 + } + PolygonVertexIndex: *1536 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,4,-6,7,6,-6,8,6,-8,9,8,-8,10,8,-10,11,10,-10,12,10,-12,13,10,-13,14,13,-13,15,14,-13,16,14,-16,17,16,-16,18,16,-18,19,16,-19,20,19,-19,21,20,-19,22,20,-22,23,22,-22,24,22,-24,25,24,-24,26,24,-26,27,26,-26,28,26,-28,29,28,-28,30,28,-30,31,28,-31,32,31,-31,33,32,-31,34,32,-34,35,34,-34,36,34,-36,37,36,-36,38,36,-38,39,38,-38,40,38,-40,41,40,-40,42,40,-42,43,42,-42,44,42,-44,45,42,-45,46,45,-45,47,46,-45,48,46,-48,49,48,-48,50,48,-50,51,50,-50,52,50,-52,53,52,-52,54,52,-54,55,54,-54,56,54,-56,57,56,-56,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,63,67,-66,68,65,-68,69,71,-71,72,70,-72,73,70,-73,74,70,-74,75,74,-74,76,74,-76,77,76,-76,78,76,-78,79,78,-78,80,78,-80,81,80,-80,82,81,-80,83,81,-83,84,81,-84,85,84,-84,86,84,-86,87,86,-86,88,87,-86,89,87,-89,90,87,-90,91,90,-90,92,90,-92,93,92,-92,94,92,-94,95,94,-94,96,94,-96,97,96,-96,98,96,-98,99,98,-98,100,99,-98,101,99,-101,102,99,-102,103,102,-102,104,102,-104,105,104,-104,106,104,-106,107,106,-106,108,106,-108,109,108,-108,110,108,-110,111,110,-110,112,110,-112,113,112,-112,114,113,-112,115,113,-115,116,113,-116,117,116,-116,118,116,-118,119,118,-118,120,118,-120,121,120,-120,122,120,-122,123,122,-122,124,122,-124,125,124,-124,126,124,-126,127,126,-126,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,179,182,-179,183,178,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,233,235,-237,237,236,-236,238,240,-240,241,239,-241,242,244,-244,245,243,-245,243,245,-247,247,246,-246,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,308,309,-313,313,312,-310,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,360,-360,361,359,-361,362,364,-364,365,363,-365,366,368,-368,369,367,-369,370,372,-372,373,371,-373,371,374,-371,375,370,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,430,432,-432,433,431,-433,434,436,-436,437,435,-437,438,440,-440,441,439,-441,440,438,-443,443,442,-439,444,446,-446,447,445,-447,444,448,-447,449,446,-449,450,452,-452,453,451,-453,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,465,463,-465,463,465,-467,467,466,-466,468,470,-470,471,469,-471,472,474,-474,475,473,-475,476,478,-478,479,477,-479,480,482,-482,483,481,-483,484,486,-486,487,485,-487,488,490,-490,491,489,-491,492,494,-494,495,493,-495,496,498,-498,499,497,-499,500,502,-502,503,501,-503,504,506,-506,507,505,-507,508,507,-507,509,508,-507,510,508,-510,511,510,-510,512,510,-512,513,512,-512,514,512,-514,515,514,-514,516,514,-516,517,514,-517,518,517,-517,519,518,-517,520,518,-520,521,520,-520,522,520,-522,523,520,-523,524,523,-523,525,524,-523,526,524,-526,527,526,-526,528,526,-528,529,528,-528,530,528,-530,531,530,-530,532,530,-532,533,532,-532,534,532,-534,535,532,-535,536,535,-535,537,536,-535,538,536,-538,539,538,-538,540,538,-540,541,540,-540,542,540,-542,543,542,-542,544,542,-544,545,544,-544,546,544,-546,547,546,-546,548,546,-548,549,546,-549,550,549,-549,551,550,-549,552,550,-552,553,552,-552,554,552,-554,555,554,-554,556,554,-556,557,556,-556,558,556,-558,559,558,-558,560,558,-560,561,560,-560,562,560,-562,563,565,-565,566,564,-566,567,569,-569,570,568,-570,571,573,-573,574,572,-574,575,577,-577,578,576,-578,579,581,-581,582,580,-582,583,585,-585,586,584,-586,587,589,-589,590,588,-590,591,593,-593,594,592,-594,595,597,-597,598,596,-598,599,601,-601,602,600,-602,603,605,-605,606,604,-606,603,607,-606,608,605,-608,609,611,-611,612,610,-612,613,615,-615,616,614,-616,617,616,-616,618,616,-618,619,618,-618,620,618,-620,621,620,-620,622,620,-622,623,622,-622,624,622,-624,625,624,-624,626,625,-624,627,625,-627,628,625,-628,629,628,-628,630,628,-630,631,630,-630,632,631,-630,633,631,-633,634,631,-634,635,634,-634,636,634,-636,637,636,-636,638,636,-638,639,638,-638,640,638,-640,641,640,-640,642,640,-642,643,642,-642,644,643,-642,645,643,-645,646,643,-646,647,646,-646,648,646,-648,649,648,-648,650,648,-650,651,650,-650,652,650,-652,653,652,-652,654,652,-654,655,654,-654,656,654,-656,657,656,-656,658,657,-656,659,657,-659,660,657,-660,661,660,-660,662,660,-662,663,662,-662,664,662,-664,665,664,-664,666,664,-666,667,666,-666,668,666,-668,669,668,-668,670,668,-670,671,670,-670,672,674,-674,675,673,-675,676,678,-678,679,677,-679,680,682,-682,683,681,-683,684,686,-686,687,685,-687,688,685,-688,689,688,-688,690,688,-690,691,690,-690,692,690,-692,693,692,-692,694,692,-694,695,694,-694,696,694,-696,697,699,-699,698,699,-701,701,703,-703,704,703,-702,705,707,-707,707,708,-707,709,711,-711,712,709,-711,713,715,-715,715,716,-715,717,719,-719,718,719,-721,721,723,-723,724,721,-723,725,727,-727,728,727,-726,729,731,-731,732,731,-730,733,735,-735,734,735,-737,737,739,-739,740,739,-738,741,743,-743,744,742,-744,745,747,-747,748,747,-746,749,751,-751,752,750,-752,753,752,-752,754,752,-754,755,754,-754,756,754,-756,757,756,-756,758,756,-758,759,758,-758,760,758,-760,761,760,-760 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *4608 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2309135,0.2371253,-0.9436368,-0.2973099,0.2326914,-0.9259923,-0.2334439,0.2369781,-0.943051,-0.3004167,0.2324542,-0.9250485,-0.2334439,0.2369781,-0.943051,-0.2973099,0.2326914,-0.9259923,-0.3312503,0.2299525,-0.9150929,-0.3312503,0.2299525,-0.9150929,-0.2973099,0.2326914,-0.9259923,-0.3004167,0.2324542,-0.9250485,-0.2973099,0.2326914,-0.9259923,-0.3312503,0.2299525,-0.9150929,-0.3312503,0.2299525,-0.9150929,-0.3604114,0.2273328,-0.9046676,-0.3312503,0.2299525,-0.9150929,-0.3639651,0.2269962,-0.9033284,-0.3312503,0.2299525,-0.9150929,-0.3604114,0.2273328,-0.9046676,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.02741029,0.2436202,-0.9694833,-0.02765272,0.2436186,-0.9694769,0,0.2437118,-0.9698477,0,0.2437118,-0.9698477,0,0.2437118,-0.9698477,-0.02765272,0.2436186,-0.9694769,-0.02741029,0.2436202,-0.9694833,-0.09070352,0.2427072,-0.96585,-0.02765272,0.2436186,-0.9694769,-0.09175795,0.2426836,-0.9657562,-0.02765272,0.2436186,-0.9694769,-0.09070352,0.2427072,-0.96585,-0.656369,0.1838659,-0.731692,-0.6906762,0.1762436,-0.7013591,-0.6602803,0.1830322,-0.7283743,-0.694041,0.1754567,-0.6982278,-0.6602803,0.1830322,-0.7283743,-0.6906762,0.1762436,-0.7013591,-0.5737358,0.1996097,-0.7943444,-0.6169627,0.1917993,-0.7632628,-0.5778676,0.1989006,-0.7915222,-0.6210116,0.1910216,-0.760168,-0.5778676,0.1989006,-0.7915222,-0.6169627,0.1917993,-0.7632628,-0.4752055,0.2144359,-0.8533446,-0.526517,0.2071951,-0.8245301,-0.4792656,0.2138985,-0.8512062,-0.5306588,0.2065666,-0.8220289,-0.4792656,0.2138985,-0.8512062,-0.526517,0.2071951,-0.8245301,-0.65244,0.1846946,-0.7349898,-0.6093222,0.1932446,-0.7690143,-0.6482101,0.1855772,-0.7385017,-0.604948,0.1940591,-0.7722557,-0.6482101,0.1855772,-0.7385017,-0.6093222,0.1932446,-0.7690143,-0.6093222,0.1932446,-0.7690143,-0.5616778,0.2016364,-0.8024094,-0.604948,0.1940591,-0.7722557,-0.557233,0.2023676,-0.8053191,-0.604948,0.1940591,-0.7722557,-0.5616778,0.2016364,-0.8024094,-0.3900549,0.2244077,-0.8930275,-0.3234605,0.2306102,-0.9177103,-0.3860829,0.2248154,-0.8946496,-0.3199427,0.2309015,-0.9188694,-0.3860829,0.2248154,-0.8946496,-0.3234605,0.2306102,-0.9177103,-0.3604114,0.2273328,-0.9046676,-0.3927505,0.2241283,-0.8919157,-0.3639651,0.2269962,-0.9033284,-0.3927505,0.2241283,-0.8919157,-0.3639651,0.2269962,-0.9033284,-0.3927505,0.2241283,-0.8919157,-0.3927505,0.2241283,-0.8919157,-0.4197975,0.2211971,-0.880251,-0.3927505,0.2241283,-0.8919157,-0.4236662,0.2207586,-0.8785058,-0.3927505,0.2241283,-0.8919157,-0.4197975,0.2211971,-0.880251,-0.5616778,0.2016364,-0.8024094,-0.5092969,0.2097361,-0.8346421,-0.557233,0.2023676,-0.8053191,-0.5048795,0.2103695,-0.8371627,-0.557233,0.2023676,-0.8053191,-0.5092969,0.2097361,-0.8346421,-0.6169627,0.1917993,-0.7632628,-0.656369,0.1838659,-0.731692,-0.6210116,0.1910216,-0.760168,-0.6602803,0.1830322,-0.7283743,-0.6210116,0.1910216,-0.760168,-0.656369,0.1838659,-0.731692,-0.4199366,0.2211815,-0.8801886,-0.3900549,0.2244077,-0.8930275,-0.4199366,0.2211815,-0.8801886,-0.3860829,0.2248154,-0.8946496,-0.4199366,0.2211815,-0.8801886,-0.3900549,0.2244077,-0.8930275,-0.4199366,0.2211815,-0.8801886,-0.4478084,0.2179099,-0.8671694,-0.4199366,0.2211815,-0.8801886,-0.4520755,0.2173859,-0.8650845,-0.4199366,0.2211815,-0.8801886,-0.4478084,0.2179099,-0.8671694,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1785332,0.2397963,-0.954266,-0.1017487,0.242447,-0.9648143,-0.1763976,0.2398901,-0.9546395,-0.1004983,0.2424779,-0.9649376,-0.1763976,0.2398901,-0.9546395,-0.1017487,0.242447,-0.9648143,-0.3234605,0.2306102,-0.9177103,-0.2527312,0.2358,-0.938363,-0.3199427,0.2309015,-0.9188694,-0.2498299,0.2359836,-0.9390935,-0.3199427,0.2309015,-0.9188694,-0.2527312,0.2358,-0.938363,-0.526517,0.2071951,-0.8245301,-0.5737358,0.1996097,-0.7943444,-0.5306588,0.2065666,-0.8220289,-0.5778676,0.1989006,-0.7915222,-0.5306588,0.2065666,-0.8220289,-0.5737358,0.1996097,-0.7943444,-0.6906762,0.1762436,-0.7013591,-0.6913102,0.1760959,-0.7007713,-0.694041,0.1754567,-0.6982278,-0.6872763,0.1770313,-0.7044936,-0.694041,0.1754567,-0.6982278,-0.6913102,0.1760959,-0.7007713,-0.6913102,0.1760959,-0.7007713,-0.65244,0.1846946,-0.7349898,-0.6872763,0.1770313,-0.7044936,-0.6482101,0.1855772,-0.7385017,-0.6872763,0.1770313,-0.7044936,-0.65244,0.1846946,-0.7349898,-0.5092969,0.2097361,-0.8346421,-0.4520755,0.2173859,-0.8650845,-0.5048795,0.2103695,-0.8371627,-0.4478084,0.2179099,-0.8671694,-0.5048795,0.2103695,-0.8371627,-0.4520755,0.2173859,-0.8650845,-0.2527312,0.2358,-0.938363,-0.1785332,0.2397963,-0.954266,-0.2498299,0.2359836,-0.9390935,-0.1763976,0.2398901,-0.9546395,-0.2498299,0.2359836,-0.9390935,-0.1785332,0.2397963,-0.954266,-0.03136818,0.2435918,-0.9693704,-0.03105663,0.2435942,-0.9693798,-0.1017487,0.242447,-0.9648143,-0.1004983,0.2424779,-0.9649376,-0.1017487,0.242447,-0.9648143,-0.03105663,0.2435942,-0.9693798,0,0.2437118,-0.9698477,0,0.2437118,-0.9698477,-0.03136818,0.2435918,-0.9693704,-0.03105663,0.2435942,-0.9693798,-0.03136818,0.2435918,-0.9693704,0,0.2437118,-0.9698477,-0.4197975,0.2211971,-0.880251,-0.4752055,0.2144359,-0.8533446,-0.4236662,0.2207586,-0.8785058,-0.4792656,0.2138985,-0.8512062,-0.4236662,0.2207586,-0.8785058,-0.4752055,0.2144359,-0.8533446,0.6696838,0,0.7426464,0.6696838,0,0.7426464,0.7033145,0,0.7108788,0.7033145,0,0.7108788,0.7033145,0,0.7108788,0.6696838,0,0.7426464,0.4609796,0,0.8874108,0.4609796,0,0.8874108,0.4306014,0,0.9025422,0.4306014,0,0.9025422,0.4306014,0,0.9025422,0.4609796,0,0.8874108,0.4306014,0,0.9025422,0.4306014,0,0.9025422,0.3982306,0,0.9172854,0.3982306,0,0.9172854,0.3982306,0,0.9172854,0.4306014,0,0.9025422,0.2389805,0,0.9710244,0.2389805,0,0.9710244,0.3072778,0,0.9516199,0.3072778,0,0.9516199,0.3072778,0,0.9516199,0.2389805,0,0.9710244,0.371899,0,0.9282732,0.371899,0,0.9282732,0.403003,0,0.9151986,0.403003,0,0.9151986,0.403003,0,0.9151986,0.371899,0,0.9282732,0.403003,0,0.9151986,0.403003,0,0.9151986,0.4324097,0,0.9016773,0.4324097,0,0.9016773,0.4324097,0,0.9016773,0.403003,0,0.9151986,0.3982306,0,0.9172854,0.3982306,0,0.9172854,0.3306109,0,0.9437672,0.3306109,0,0.9437672,0.3306109,0,0.9437672,0.3982306,0,0.9172854,0.03218063,0,0.9994821,0.1042279,0,0.9945534,0.03218063,0,0.9994821,0.1042279,0,0.9945534,0.03218063,0,0.9994821,0.1042279,0,0.9945534,0.7002897,0,0.7138588,0.7002897,0,0.7138588,0.6617577,0,0.7497177,0.6617577,0,0.7497177,0.6617577,0,0.7497177,0.7002897,0,0.7138588,0.7033145,0,0.7108788,0.7002897,0,0.7138588,0.7033145,0,0.7108788,0.7002897,0,0.7138588,0.7033145,0,0.7108788,0.7002897,0,0.7138588,0.6306403,0,0.7760753,0.6306403,0,0.7760753,0.6696838,0,0.7426464,0.6696838,0,0.7426464,0.6696838,0,0.7426464,0.6306403,0,0.7760753,0.6188408,0,0.7855165,0.6188408,0,0.7855165,0.5712205,0,0.8207967,0.5712205,0,0.8207967,0.5712205,0,0.8207967,0.6188408,0,0.7855165,0.3306109,0,0.9437672,0.3306109,0,0.9437672,0.2585655,0,0.9659937,0.2585655,0,0.9659937,0.2585655,0,0.9659937,0.3306109,0,0.9437672,0.6617577,0,0.7497177,0.6617577,0,0.7497177,0.6188408,0,0.7855165,0.6188408,0,0.7855165,0.6188408,0,0.7855165,0.6617577,0,0.7497177,0.5402659,0,0.8414943,0.5402659,0,0.8414943,0.5875754,0,0.8091695,0.5875754,0,0.8091695,0.5875754,0,0.8091695,0.5402659,0,0.8414943,0.518647,0,0.8549885,0.518647,0,0.8549885,0.4609796,0,0.8874108,0.4609796,0,0.8874108,0.4609796,0,0.8874108,0.518647,0,0.8549885,0.2585655,0,0.9659937,0.2585655,0,0.9659937,0.1827915,0,0.9831517,0.1827915,0,0.9831517,0.1827915,0,0.9831517,0.2585655,0,0.9659937,0,0,1,0.03218063,0,0.9994821,0,0,1,0.03218063,0,0.9994821,0,0,1,0.03218063,0,0.9994821,0.5712205,0,0.8207967,0.5712205,0,0.8207967,0.518647,0,0.8549885,0.518647,0,0.8549885,0.518647,0,0.8549885,0.5712205,0,0.8207967,0.4885604,0,0.8725301,0.4885604,0,0.8725301,0.5402659,0,0.8414943,0.5402659,0,0.8414943,0.5402659,0,0.8414943,0.4885604,0,0.8725301,0.4324097,0,0.9016773,0.4324097,0,0.9016773,0.4885604,0,0.8725301,0.4885604,0,0.8725301,0.4885604,0,0.8725301,0.4324097,0,0.9016773,0.3403717,0,0.940291,0.3072778,0,0.9516199,0.3403717,0,0.940291,0.3072778,0,0.9516199,0.3403717,0,0.940291,0.3072778,0,0.9516199,0.3403717,0,0.940291,0.3403717,0,0.940291,0.371899,0,0.9282732,0.371899,0,0.9282732,0.371899,0,0.9282732,0.3403717,0,0.940291,0.09403777,0,0.9955687,0.09403777,0,0.9955687,0.1676327,0,0.9858496,0.1676327,0,0.9858496,0.1676327,0,0.9858496,0.09403777,0,0.9955687,0.05674906,0,0.9983885,0.05674906,0,0.9983885,0.09403777,0,0.9955687,0.09403777,0,0.9955687,0.09403777,0,0.9955687,0.05674906,0,0.9983885,-0.09070352,0.2427072,-0.96585,-0.1618027,0.2405004,-0.9570682,-0.09175795,0.2426836,-0.9657562,-0.1636404,0.2404265,-0.9567742,-0.09175795,0.2426836,-0.9657562,-0.1618027,0.2405004,-0.9570682,0.1827915,0,0.9831517,0.1827915,0,0.9831517,0.1042279,0,0.9945534,0.1042279,0,0.9945534,0.1042279,0,0.9945534,0.1827915,0,0.9831517,-0.1618027,0.2405004,-0.9570682,-0.2309135,0.2371253,-0.9436368,-0.1636404,0.2404265,-0.9567742,-0.2334439,0.2369781,-0.943051,-0.1636404,0.2404265,-0.9567742,-0.2309135,0.2371253,-0.9436368,0.1676327,0,0.9858496,0.1676327,0,0.9858496,0.2389805,0,0.9710244,0.2389805,0,0.9710244,0.2389805,0,0.9710244,0.1676327,0,0.9858496,0.5875754,0,0.8091695,0.5875754,0,0.8091695,0.6306403,0,0.7760753,0.6306403,0,0.7760753,0.6306403,0,0.7760753,0.5875754,0,0.8091695,-0.02741029,0.2436202,0.9694833,-0.02765272,0.2436186,0.9694769,-0.09070352,0.2427072,0.96585,-0.09175795,0.2426836,0.9657562,-0.09070352,0.2427072,0.96585,-0.02765272,0.2436186,0.9694769,0.7002897,0,-0.7138588,0.6617577,0,-0.7497177,0.7002897,0,-0.7138588,0.6617577,0,-0.7497177,0.7002897,0,-0.7138588,0.6617577,0,-0.7497177,-0.3900549,0.2244077,0.8930275,-0.3860829,0.2248154,0.8946496,-0.3234605,0.2306102,0.9177103,-0.3199427,0.2309015,0.9188694,-0.3234605,0.2306102,0.9177103,-0.3860829,0.2248154,0.8946496,0.4885604,0,-0.8725301,0.5402659,0,-0.8414943,0.4885604,0,-0.8725301,0.5402659,0,-0.8414943,0.4885604,0,-0.8725301,0.5402659,0,-0.8414943,-0.4197975,0.2211971,0.880251,-0.4236662,0.2207586,0.8785058,-0.4752055,0.2144359,0.8533446,-0.4792656,0.2138985,0.8512062,-0.4752055,0.2144359,0.8533446,-0.4236662,0.2207586,0.8785058,-0.5092969,0.2097361,0.8346421,-0.5048795,0.2103695,0.8371627,-0.4520755,0.2173859,0.8650845,-0.4478084,0.2179099,0.8671694,-0.4520755,0.2173859,0.8650845,-0.5048795,0.2103695,0.8371627,0.6188408,0,-0.7855165,0.5712205,0,-0.8207967,0.6188408,0,-0.7855165,0.5712205,0,-0.8207967,0.6188408,0,-0.7855165,0.5712205,0,-0.8207967,0.4306014,0,-0.9025422,0.3982306,0,-0.9172854,0.4306014,0,-0.9025422,0.3982306,0,-0.9172854,0.4306014,0,-0.9025422,0.3982306,0,-0.9172854,0.4306014,0,-0.9025422,0.4609796,0,-0.8874108,0.4306014,0,-0.9025422,0.4609796,0,-0.8874108,0.4306014,0,-0.9025422,0.4609796,0,-0.8874108,-0.6872763,0.1770313,0.7044936,-0.6913102,0.1760959,0.7007713,-0.694041,0.1754567,0.6982278,-0.6906762,0.1762436,0.7013591,-0.694041,0.1754567,0.6982278,-0.6913102,0.1760959,0.7007713,0,0.2437118,0.9698477,-0.03136818,0.2435918,0.9693704,0,0.2437118,0.9698477,-0.03105663,0.2435942,0.9693798,0,0.2437118,0.9698477,-0.03136818,0.2435918,0.9693704,0.6617577,0,-0.7497177,0.6188408,0,-0.7855165,0.6617577,0,-0.7497177,0.6188408,0,-0.7855165,0.6617577,0,-0.7497177,0.6188408,0,-0.7855165,0.5402659,0,-0.8414943,0.5875754,0,-0.8091695,0.5402659,0,-0.8414943,0.5875754,0,-0.8091695,0.5402659,0,-0.8414943,0.5875754,0,-0.8091695,0.5875754,0,-0.8091695,0.6306403,0,-0.7760753,0.5875754,0,-0.8091695,0.6306403,0,-0.7760753,0.5875754,0,-0.8091695,0.6306403,0,-0.7760753,0.518647,0,-0.8549885,0.4609796,0,-0.8874108,0.518647,0,-0.8549885,0.4609796,0,-0.8874108,0.518647,0,-0.8549885,0.4609796,0,-0.8874108,0,0,-1,0,0,-1,0.03218063,0,-0.9994821,0.03218063,0,-0.9994821,0.03218063,0,-0.9994821,0,0,-1,0.05674906,0,-0.9983885,0.09403777,0,-0.9955687,0.05674906,0,-0.9983885,0.09403777,0,-0.9955687,0.05674906,0,-0.9983885,0.09403777,0,-0.9955687,-0.526517,0.2071951,0.8245301,-0.5306588,0.2065666,0.8220289,-0.5737358,0.1996097,0.7943444,-0.5778676,0.1989006,0.7915222,-0.5737358,0.1996097,0.7943444,-0.5306588,0.2065666,0.8220289,0.03218063,0,-0.9994821,0.03218063,0,-0.9994821,0.1042279,0,-0.9945534,0.1042279,0,-0.9945534,0.1042279,0,-0.9945534,0.03218063,0,-0.9994821,0.4324097,0,-0.9016773,0.4885604,0,-0.8725301,0.4324097,0,-0.9016773,0.4885604,0,-0.8725301,0.4324097,0,-0.9016773,0.4885604,0,-0.8725301,-0.3234605,0.2306102,0.9177103,-0.3199427,0.2309015,0.9188694,-0.2527312,0.2358,0.938363,-0.2498299,0.2359836,0.9390935,-0.2527312,0.2358,0.938363,-0.3199427,0.2309015,0.9188694,0.6696838,0,-0.7426464,0.7033145,0,-0.7108788,0.6696838,0,-0.7426464,0.7033145,0,-0.7108788,0.6696838,0,-0.7426464,0.7033145,0,-0.7108788,0.371899,0,-0.9282732,0.403003,0,-0.9151986,0.371899,0,-0.9282732,0.403003,0,-0.9151986,0.371899,0,-0.9282732,0.403003,0,-0.9151986,0.403003,0,-0.9151986,0.4324097,0,-0.9016773,0.403003,0,-0.9151986,0.4324097,0,-0.9016773,0.403003,0,-0.9151986,0.4324097,0,-0.9016773,-0.6913102,0.1760959,0.7007713,-0.6872763,0.1770313,0.7044936,-0.65244,0.1846946,0.7349898,-0.6482101,0.1855772,0.7385017,-0.65244,0.1846946,0.7349898,-0.6872763,0.1770313,0.7044936,-0.3927505,0.2241283,0.8919157,-0.3927505,0.2241283,0.8919157,-0.4197975,0.2211971,0.880251,-0.4236662,0.2207586,0.8785058,-0.4197975,0.2211971,0.880251,-0.3927505,0.2241283,0.8919157,-0.3927505,0.2241283,0.8919157,-0.3927505,0.2241283,0.8919157,-0.3639651,0.2269962,0.9033284,-0.3604114,0.2273328,0.9046676,-0.3639651,0.2269962,0.9033284,-0.3927505,0.2241283,0.8919157,0.3403717,0,-0.940291,0.3403717,0,-0.940291,0.3072778,0,-0.9516199,0.3072778,0,-0.9516199,0.3072778,0,-0.9516199,0.3403717,0,-0.940291,0.3403717,0,-0.940291,0.371899,0,-0.9282732,0.3403717,0,-0.940291,0.371899,0,-0.9282732,0.3403717,0,-0.940291,0.371899,0,-0.9282732,-0.65244,0.1846946,0.7349898,-0.6482101,0.1855772,0.7385017,-0.6093222,0.1932446,0.7690143,-0.604948,0.1940591,0.7722557,-0.6093222,0.1932446,0.7690143,-0.6482101,0.1855772,0.7385017,0.2389805,0,-0.9710244,0.3072778,0,-0.9516199,0.2389805,0,-0.9710244,0.3072778,0,-0.9516199,0.2389805,0,-0.9710244,0.3072778,0,-0.9516199,0.5712205,0,-0.8207967,0.518647,0,-0.8549885,0.5712205,0,-0.8207967,0.518647,0,-0.8549885,0.5712205,0,-0.8207967,0.518647,0,-0.8549885,-0.4520755,0.2173859,0.8650845,-0.4478084,0.2179099,0.8671694,-0.4199366,0.2211815,0.8801886,-0.4199366,0.2211815,0.8801886,-0.4199366,0.2211815,0.8801886,-0.4478084,0.2179099,0.8671694,-0.4199366,0.2211815,0.8801886,-0.4199366,0.2211815,0.8801886,-0.3900549,0.2244077,0.8930275,-0.3860829,0.2248154,0.8946496,-0.3900549,0.2244077,0.8930275,-0.4199366,0.2211815,0.8801886,0.1676327,0,-0.9858496,0.2389805,0,-0.9710244,0.1676327,0,-0.9858496,0.2389805,0,-0.9710244,0.1676327,0,-0.9858496,0.2389805,0,-0.9710244,-0.5737358,0.1996097,0.7943444,-0.5778676,0.1989006,0.7915222,-0.6169627,0.1917993,0.7632628,-0.6210116,0.1910216,0.760168,-0.6169627,0.1917993,0.7632628,-0.5778676,0.1989006,0.7915222,-0.2527312,0.2358,0.938363,-0.2498299,0.2359836,0.9390935,-0.1785332,0.2397963,0.954266,-0.1763976,0.2398901,0.9546395,-0.1785332,0.2397963,0.954266,-0.2498299,0.2359836,0.9390935,-0.1618027,0.2405004,0.9570682,-0.1636404,0.2404265,0.9567742,-0.2309135,0.2371253,0.9436368,-0.2334439,0.2369781,0.943051,-0.2309135,0.2371253,0.9436368,-0.1636404,0.2404265,0.9567742,0.2585655,0,-0.9659937,0.1827915,0,-0.9831517,0.2585655,0,-0.9659937,0.1827915,0,-0.9831517,0.2585655,0,-0.9659937,0.1827915,0,-0.9831517,-0.09070352,0.2427072,0.96585,-0.09175795,0.2426836,0.9657562,-0.1618027,0.2405004,0.9570682,-0.1636404,0.2404265,0.9567742,-0.1618027,0.2405004,0.9570682,-0.09175795,0.2426836,0.9657562,0.09403777,0,-0.9955687,0.1676327,0,-0.9858496,0.09403777,0,-0.9955687,0.1676327,0,-0.9858496,0.09403777,0,-0.9955687,0.1676327,0,-0.9858496,0.1827915,0,-0.9831517,0.1042279,0,-0.9945534,0.1827915,0,-0.9831517,0.1042279,0,-0.9945534,0.1827915,0,-0.9831517,0.1042279,0,-0.9945534,0.3982306,0,-0.9172854,0.3306109,0,-0.9437672,0.3982306,0,-0.9172854,0.3306109,0,-0.9437672,0.3982306,0,-0.9172854,0.3306109,0,-0.9437672,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7002897,0,-0.7138588,0.7002897,0,-0.7138588,0.7033145,0,-0.7108788,0.7033145,0,-0.7108788,0.7033145,0,-0.7108788,0.7002897,0,-0.7138588,-0.03136818,0.2435918,0.9693704,-0.1017487,0.242447,0.9648143,-0.03105663,0.2435942,0.9693798,-0.1004983,0.2424779,0.9649376,-0.03105663,0.2435942,0.9693798,-0.1017487,0.242447,0.9648143,-0.5616778,0.2016364,0.8024094,-0.557233,0.2023676,0.8053191,-0.5092969,0.2097361,0.8346421,-0.5048795,0.2103695,0.8371627,-0.5092969,0.2097361,0.8346421,-0.557233,0.2023676,0.8053191,-0.656369,0.1838659,0.731692,-0.6602803,0.1830322,0.7283743,-0.6906762,0.1762436,0.7013591,-0.694041,0.1754567,0.6982278,-0.6906762,0.1762436,0.7013591,-0.6602803,0.1830322,0.7283743,-0.1785332,0.2397963,0.954266,-0.1763976,0.2398901,0.9546395,-0.1017487,0.242447,0.9648143,-0.1004983,0.2424779,0.9649376,-0.1017487,0.242447,0.9648143,-0.1763976,0.2398901,0.9546395,0.6306403,0,-0.7760753,0.6696838,0,-0.7426464,0.6306403,0,-0.7760753,0.6696838,0,-0.7426464,0.6306403,0,-0.7760753,0.6696838,0,-0.7426464,0.3306109,0,-0.9437672,0.2585655,0,-0.9659937,0.3306109,0,-0.9437672,0.2585655,0,-0.9659937,0.3306109,0,-0.9437672,0.2585655,0,-0.9659937,-0.6169627,0.1917993,0.7632628,-0.6210116,0.1910216,0.760168,-0.656369,0.1838659,0.731692,-0.6602803,0.1830322,0.7283743,-0.656369,0.1838659,0.731692,-0.6210116,0.1910216,0.760168,-0.6093222,0.1932446,0.7690143,-0.604948,0.1940591,0.7722557,-0.5616778,0.2016364,0.8024094,-0.557233,0.2023676,0.8053191,-0.5616778,0.2016364,0.8024094,-0.604948,0.1940591,0.7722557,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3312503,0.2299525,0.9150929,-0.3312503,0.2299525,0.9150929,-0.3604114,0.2273328,0.9046676,-0.3639651,0.2269962,0.9033284,-0.3604114,0.2273328,0.9046676,-0.3312503,0.2299525,0.9150929,-0.3312503,0.2299525,0.9150929,-0.2973099,0.2326914,0.9259923,-0.3312503,0.2299525,0.9150929,-0.3004167,0.2324542,0.9250485,-0.3312503,0.2299525,0.9150929,-0.2973099,0.2326914,0.9259923,-0.4752055,0.2144359,0.8533446,-0.4792656,0.2138985,0.8512062,-0.526517,0.2071951,0.8245301,-0.5306588,0.2065666,0.8220289,-0.526517,0.2071951,0.8245301,-0.4792656,0.2138985,0.8512062,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.2309135,0.2371253,0.9436368,-0.2334439,0.2369781,0.943051,-0.2973099,0.2326914,0.9259923,-0.3004167,0.2324542,0.9250485,-0.2973099,0.2326914,0.9259923,-0.2334439,0.2369781,0.943051,-0.02741029,0.2436202,0.9694833,0,0.2437118,0.9698477,-0.02765272,0.2436186,0.9694769,0,0.2437118,0.9698477,-0.02765272,0.2436186,0.9694769,0,0.2437118,0.9698477,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6859944,0.2425356,0.6859944,0.6859944,0.2425356,0.6859944,0.8401681,0.2425356,0.4850713,0.8401681,0.2425356,0.4850713,0.6859944,0.2425356,0.6859944,0.8401681,0.2425356,0.4850713,0.9370857,0.2425356,0.2510914,0.8401681,0.2425356,0.4850713,0.9370857,0.2425356,0.2510914,0.8401681,0.2425356,0.4850713,0.8401681,0.2425356,0.4850713,0.9370857,0.2425356,0.2510914,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.2510914,0.2425356,-0.9370857,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.6859944,0.2425356,-0.6859944,0.4850713,0.2425356,-0.8401681,0.4850713,0.2425356,-0.8401681,0.6859944,0.2425356,-0.6859944,0.1266925,0.2405813,-0.9623252,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.1266925,0.2405813,-0.9623252,0.2510914,0.2425356,-0.9370857,0.2510914,0.2425356,-0.9370857,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9370857,0.2425356,-0.2510914,0.9370857,0.2425356,-0.2510914,0.9701425,0.2425356,0,0.9370857,0.2425356,-0.2510914,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.8401681,0.2425356,-0.4850713,0.6859944,0.2425356,-0.6859944,0.8401681,0.2425356,-0.4850713,0.6859944,0.2425356,-0.6859944,0.4850713,0.2425356,0.8401681,0.2510914,0.2425356,0.9370857,0.2510914,0.2425356,0.9370857,0.4850713,0.2425356,0.8401681,0.2510914,0.2425356,0.9370857,0.4850713,0.2425356,0.8401681,0.9370857,0.2425356,0.2510914,0.9370857,0.2425356,0.2510914,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9370857,0.2425356,0.2510914,0.9701425,0.2425356,0,0.6859944,0.2425356,0.6859944,0.4850713,0.2425356,0.8401681,0.4850713,0.2425356,0.8401681,0.6859944,0.2425356,0.6859944,0.4850713,0.2425356,0.8401681,0.6859944,0.2425356,0.6859944,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2510914,0.2425356,0.9370857,0.1266925,0.2405813,0.9623252,0.1266925,0.2405813,0.9623252,0.2510914,0.2425356,0.9370857,0.1266925,0.2405813,0.9623252,0.2510914,0.2425356,0.9370857,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1524 { + a: 19.68504,19.7059,19.68504,17.73334,18.72612,19.76041,19.57292,17.73334,18.5402,17.79204,17.60896,19.90825,17.27753,17.95914,16.47946,20.14343,16.00698,18.22369,15.33368,20.46962,14.72621,18.58831,15.27034,20.49255,14.16908,20.89119,14.59785,18.63477,13.43388,19.05611,13.01905,21.3976,12.22282,19.5894,12.9846,21.41277,11.78065,22.03884,12.12982,19.63035,10.81491,20.31412,10.55889,22.77344,9.491,21.11014,9.322042,23.6199,8.160689,22.02056,8.073587,24.58077,6.827167,23.04691,6.817549,25.65775,5.49401,24.19001,5.544891,26.86437,4.000713,28.45855,4.155005,25.45954,2.616667,27.04769,2.145778,30.18756,0.8378319,28.70576,0.2283338,31.78968,-0.9948453,30.23706,-1.751565,33.25915,-2.880677,31.63671,-3.793286,34.58953,-4.818533,32.89941,-5.8953,35.77371,-6.806604,34.0194,-6.448452,36.03762,-8.054839,36.80402,-7.299211,34.25443,-8.84214,34.99055,-10.26754,37.67249,-10.92119,35.80656,-12.52715,38.37119,-13.03839,36.46122,-14.82543,38.89282,-15.18686,36.94886,-17.15218,39.23131,-17.35827,37.26474,-19.30496,39.37008,-19.36857,37.39433,-19.68504,39.37008,-19.68504,37.39433,-10.40548,5.14716,-10.18877,8.387447,-9.073806,5.14716,-8.857098,8.387447,-7.383482,5.171816,-7.519985,5.171816,-7.114091,8.408151,-7.250594,8.408151,-6.145597,5.171816,-5.876206,8.408151,-19.68504,19.7059,-18.72612,19.76041,-19.68504,18.5248,-19.57292,18.5248,-18.5402,18.5835,-17.60896,19.90825,-17.27753,18.7506,-16.47946,20.14343,-16.00698,19.01515,-15.33368,20.46962,-14.72621,19.37977,-15.27034,20.49255,-14.16908,20.89119,-14.59785,19.42623,-13.43388,19.84757,-13.01905,21.3976,-12.22282,20.38086,-12.9846,21.41277,-11.78065,22.03884,-12.12982,20.42181,-10.81491,21.10558,-10.55889,22.77344,-9.491,21.9016,-9.322042,23.6199,-8.160689,22.81203,-8.073587,24.58077,-6.827167,23.83837,-6.817549,25.65775,-5.49401,24.98147,-5.544891,26.86437,-4.000713,28.45855,-4.155005,26.251,-2.616667,27.83915,-2.145778,30.18756,-0.8378319,29.49722,-0.2283338,31.78968,0.9948453,31.02852,1.751565,33.25915,2.880677,32.42817,3.793286,34.58953,4.818533,33.69087,5.8953,35.77371,6.806604,34.81086,6.448452,36.03762,8.054839,36.80402,7.299211,35.04588,8.84214,35.78201,10.26754,37.67249,10.92119,36.59802,12.52715,38.37119,13.03839,37.25268,14.82543,38.89282,15.18686,37.74032,17.15218,39.23131,17.35827,38.05621,19.30496,39.37008,19.36857,38.18579,19.68504,39.37008,19.68504,38.18579,-17.73334,-6.212131E-12,-19.7059,-5.055278E-12,-18.5248,3.149606,-19.7059,3.149606,-19.57292,4.321824,-19.68504,4.321824,-19.57292,7.56935,-19.68504,7.56935,-18.53502,4.578609,-18.49011,7.825825,-17.50064,4.578609,-17.45572,7.825825,12.6565,3.82733,13.20105,7.028876,14.50167,3.82733,15.04621,7.028876,6.963724,4.380212,7.446451,7.591661,8.64648,4.380212,9.129207,7.591661,1.199131,4.838506,1.606963,8.060322,2.743927,4.838506,3.151759,8.060322,17.76285,4.272709,18.27032,7.480341,20.15106,4.272709,20.65854,7.480341,18.81957,4.685316,19.29127,7.898404,21.16806,4.685316,21.63975,7.898404,21.01487,6.682959,21.30403,9.917586,23.24832,6.682959,23.53749,9.917586,-4.614999,5.122234,-4.296038,8.354059,-3.291723,5.122234,-2.972762,8.354059,-3.190106,5.122234,-2.871145,8.354059,19.68491,5.136846,20.11699,8.3555,21.99785,5.136846,22.42993,8.3555,9.818903,4.111221,10.33408,7.317625,11.57503,4.111221,12.09021,7.317625,21.33785,6.142875,21.67865,9.37247,23.04739,6.142875,23.38819,9.37247,21.13285,9.37247,20.79205,6.142875,37.39433,8.589271E-12,38.18579,3.149606,39.37008,1.026882E-11,39.37008,3.149606,20.34785,8.296076,20.46179,11.5416,22.54212,8.296076,22.65606,11.5416,21.01146,7.232522,21.24526,10.47162,23.22756,7.232522,23.46137,10.47162,4.090046,4.625855,4.537043,7.842473,5.702065,4.625855,6.149061,7.842473,15.39628,3.564654,15.96477,6.762035,17.60732,3.564654,18.17581,6.762035,16.52813,3.899533,17.06778,7.101909,18.95989,3.899533,19.49954,7.101909,20.34609,5.624555,20.73456,8.848763,22.62794,5.624555,23.01641,8.848763,20.78529,7.776131,20.96047,11.01893,22.98841,7.776131,23.16359,11.01893,21.73396,8.773784,19.71948,8.773784,21.78487,12.02091,19.7704,12.02091,19.68504,9.113439,19.36857,9.113439,19.68504,12.36097,19.36857,12.36097,-1.704991,5.007611,-1.33984,8.234544,-0.2229236,5.007611,0.1422273,8.234544,-12.70588,-1.249649E-11,-14.45961,-1.231242E-11,-12.70588,3.149606,-14.45961,3.149606,-20.72497,-1.745943E-11,-21.33785,-1.738727E-11,-20.72497,3.149606,-21.33785,3.149606,-23.1177,-1.715901E-11,-23.1177,3.149606,10.33425,-1.533071E-11,9.142947,-1.526343E-11,10.33425,3.149606,9.142947,3.149606,4.548308,-1.608152E-11,3.291723,-1.580063E-11,4.548308,3.149606,3.291723,3.149606,3.254079,-1.57882E-11,3.254079,3.149606,-20.94456,-1.84915E-11,-23.32158,-1.821017E-11,-20.94456,3.149606,-23.32158,3.149606,-21.79757,-2.737222E-11,-21.79757,3.149606,-19.64032,-2.044044E-11,-19.64032,3.149606,-16.47768,-1.237799E-11,-19.01348,-1.203715E-11,-16.47768,3.149606,-19.01348,3.149606,-15.43833,3.149606,-15.43833,-1.147623E-11,-17.65777,3.149606,-17.65777,-1.128217E-11,-9.871112,-1.346535E-11,-11.52565,-1.332302E-11,-9.871112,3.149606,-11.52565,3.149606,-18.7627,-1.424024E-11,-21.22833,-1.391073E-11,-18.7627,3.149606,-21.22833,3.149606,-20.93819,-1.943141E-11,-23.30337,-1.916873E-11,-20.93819,3.149606,-23.30337,3.149606,-17.70926,-1.322997E-11,-20.20794,-1.29613E-11,-17.70926,3.149606,-20.20794,3.149606,-4.148162,-1.504542E-11,-5.646927,-1.488266E-11,-4.148162,3.149606,-5.646927,3.149606,-20.28239,-1.631852E-11,-22.69502,-1.60756E-11,-20.28239,3.149606,-22.69502,3.149606,-20.70948,-2.021277E-11,-23.06622,-1.997051E-11,-20.70948,3.149606,-23.06622,3.149606,-19.68504,-3.069933E-11,-19.68504,3.149606,-19.30496,-2.752186E-11,-19.30496,3.149606,-19.62464,-1.525687E-11,-22.06155,-1.49338E-11,-19.62464,3.149606,-22.06155,3.149606,-1.260216,-1.559727E-11,-2.685811,-1.537411E-11,-1.260216,3.149606,-2.685811,3.149606,1.641018,-1.595649E-11,0.2840091,-1.569292E-11,1.641018,3.149606,0.2840091,3.149606,7.383482,-1.631724E-11,7.383482,3.149606,7.450843,-1.602325E-11,7.450843,3.149606,6.212287,-1.562468E-11,6.212287,3.149606,15.9718,-1.365447E-11,14.84489,-1.323613E-11,15.9718,3.149606,14.84489,3.149606,18.53502,-1.402139E-11,17.57456,-1.204919E-11,18.53502,3.149606,17.57456,3.149606,-16.04572,4.851652,-15.94188,8.097519,-14.77204,4.851652,-14.66821,8.097519,-20.27004,-2.077092E-11,-22.62128,-1.994359E-11,-20.27004,3.149606,-22.62128,3.149606,-13.25393,5.041519,-13.09259,8.285036,-11.95613,5.041519,-11.7948,8.285036,13.18108,-1.458724E-11,12.02736,-1.426727E-11,13.18108,3.149606,12.02736,3.149606,-7.018861,-1.435471E-11,-8.59427,-1.415864E-11,-7.018861,3.149606,-8.59427,3.149606,18.53502,4.578609,17.50064,4.578609,18.49011,7.825825,17.45572,7.825825,16.47768,-1.072709E-11,16.47768,3.149606,19.01348,-1.038625E-11,19.01348,3.149606,-21.01487,6.682959,-23.24832,6.682959,-21.30403,9.917586,-23.53749,9.917586,1.260216,-1.392465E-11,1.260216,3.149606,2.685811,-1.37015E-11,2.685811,3.149606,1.704991,5.007611,0.2229236,5.007611,1.33984,8.234544,-0.1422273,8.234544,-20.34609,5.624555,-22.62794,5.624555,-20.73456,8.848763,-23.01641,8.848763,18.7627,-1.258049E-11,18.7627,3.149606,21.22833,-1.225097E-11,21.22833,3.149606,21.33785,-1.54653E-11,21.33785,3.149606,23.1177,-1.523704E-11,23.1177,3.149606,20.72497,3.149606,20.72497,-1.553736E-11,-18.17581,6.762035,-15.96477,6.762035,-17.60732,3.564654,-15.39628,3.564654,-19.68504,9.113439,-19.68504,12.36097,-19.36857,9.113439,-19.36857,12.36097,17.70926,-1.157548E-11,17.70926,3.149606,20.20794,-1.13068E-11,20.20794,3.149606,4.148162,-1.337945E-11,4.148162,3.149606,5.646927,-1.321669E-11,5.646927,3.149606,7.018861,-1.269496E-11,7.018861,3.149606,8.59427,-1.249889E-11,8.59427,3.149606,20.28239,-1.453565E-11,20.28239,3.149606,22.69502,-1.429273E-11,22.69502,3.149606,19.68504,-2.85838E-11,19.30496,-2.540634E-11,19.68504,3.149606,19.30496,3.149606,-18.53502,-1.229036E-11,-18.53502,3.149606,-17.57456,-1.031816E-11,-17.57456,3.149606,-4.090046,4.625855,-5.702065,4.625855,-4.537043,7.842473,-6.149061,7.842473,21.79757,-2.528347E-11,19.64032,-1.835169E-11,21.79757,3.149606,19.64032,3.149606,-1.641018,-1.427599E-11,-1.641018,3.149606,-0.2840091,-1.401243E-11,-0.2840091,3.149606,-21.01146,7.232522,-23.22756,7.232522,-21.24526,10.47162,-23.46137,10.47162,12.70588,-1.084569E-11,12.70588,3.149606,14.45961,-1.066162E-11,14.45961,3.149606,-4.548308,-1.439278E-11,-4.548308,3.149606,-3.291723,-1.411189E-11,-3.291723,3.149606,-3.254079,-1.409938E-11,-3.254079,3.149606,-16.52813,3.899533,-18.95989,3.899533,-17.06778,7.101909,-19.49954,7.101909,3.291723,5.122234,3.190106,5.122234,2.972762,8.354059,2.871145,8.354059,4.296038,8.354059,4.614999,5.122234,-7.383482,-1.461958E-11,-7.450843,-1.432559E-11,-7.383482,3.149606,-7.450843,3.149606,-6.212287,-1.392703E-11,-6.212287,3.149606,-17.76285,4.272709,-20.15106,4.272709,-18.27032,7.480341,-20.65854,7.480341,-10.33425,-1.362408E-11,-10.33425,3.149606,-9.142947,-1.35568E-11,-9.142947,3.149606,19.62464,-1.359198E-11,19.62464,3.149606,22.06155,-1.326891E-11,22.06155,3.149606,-20.79205,6.142875,-21.33785,6.142875,-21.13285,9.37247,-21.67865,9.37247,-23.04739,6.142875,-23.38819,9.37247,-13.18108,-1.287183E-11,-13.18108,3.149606,-12.02736,-1.255186E-11,-12.02736,3.149606,-6.963724,4.380212,-8.64648,4.380212,-7.446451,7.591661,-9.129207,7.591661,-20.78529,7.776131,-22.98841,7.776131,-20.96047,11.01893,-23.16359,11.01893,13.25393,5.041519,11.95613,5.041519,13.09259,8.285036,11.7948,8.285036,20.70948,-1.819351E-11,20.70948,3.149606,23.06622,-1.795126E-11,23.06622,3.149606,16.04572,4.851652,14.77204,4.851652,15.94188,8.097519,14.66821,8.097519,-15.9718,-1.193072E-11,-15.9718,3.149606,-14.84489,-1.151239E-11,-14.84489,3.149606,20.27004,-1.871678E-11,20.27004,3.149606,22.62128,-1.788944E-11,22.62128,3.149606,20.94456,-1.653889E-11,20.94456,3.149606,23.32158,-1.625756E-11,23.32158,3.149606,-19.68504,-19.7059,-19.68504,-18.5248,-18.72612,-19.76041,-19.57292,-18.5248,-18.5402,-18.5835,-17.60896,-19.90825,-17.27753,-18.7506,-16.47946,-20.14343,-16.00698,-19.01515,-15.33368,-20.46962,-14.72621,-19.37977,-15.27034,-20.49255,-14.16908,-20.89119,-14.59785,-19.42623,-13.43388,-19.84757,-13.01905,-21.3976,-12.22282,-20.38086,-12.9846,-21.41277,-11.78065,-22.03884,-12.12982,-20.42181,-10.81491,-21.10558,-10.55889,-22.77344,-9.491,-21.9016,-9.322042,-23.6199,-8.160689,-22.81203,-8.073587,-24.58077,-6.827167,-23.83837,-6.817549,-25.65775,-5.49401,-24.98147,-5.544891,-26.86437,-4.000713,-28.45855,-4.155005,-26.251,-2.616667,-27.83915,-2.145778,-30.18756,-0.8378319,-29.49722,-0.2283338,-31.78968,0.9948453,-31.02852,1.751565,-33.25915,2.880677,-32.42817,3.793286,-34.58953,4.818533,-33.69087,5.8953,-35.77371,6.806604,-34.81086,6.448452,-36.03762,8.054839,-36.80402,7.299211,-35.04588,8.84214,-35.78201,10.26754,-37.67249,10.92119,-36.59802,12.52715,-38.37119,13.03839,-37.25268,14.82543,-38.89282,15.18686,-37.74032,17.15218,-39.23131,17.35827,-38.05621,19.30496,-39.37008,19.36857,-38.18579,19.68504,-39.37008,19.68504,-38.18579,17.65777,-9.633857E-12,15.43833,-9.827924E-12,17.65777,3.149606,15.43833,3.149606,-21.73396,8.773784,-21.78487,12.02091,-19.71948,8.773784,-19.7704,12.02091,-19.68491,5.136846,-21.99785,5.136846,-20.11699,8.3555,-22.42993,8.3555,-12.6565,3.82733,-14.50167,3.82733,-13.20105,7.028876,-15.04621,7.028876,-20.34785,8.296076,-22.54212,8.296076,-20.46179,11.5416,-22.65606,11.5416,9.871112,-1.18107E-11,9.871112,3.149606,11.52565,-1.166837E-11,11.52565,3.149606,20.93819,-1.744607E-11,20.93819,3.149606,23.30337,-1.718339E-11,23.30337,3.149606,-9.818903,4.111221,-11.57503,4.111221,-10.33408,7.317625,-12.09021,7.317625,-18.81957,4.685316,-21.16806,4.685316,-19.29127,7.898404,-21.63975,7.898404,-39.37008,1.197989E-11,-39.37008,3.149606,-37.39433,1.030035E-11,-38.18579,3.149606,7.383482,5.171816,6.145597,5.171816,7.114091,8.408151,5.876206,8.408151,7.519985,5.171816,7.250594,8.408151,-1.199131,4.838506,-2.743927,4.838506,-1.606963,8.060322,-3.151759,8.060322,19.68504,-17.73334,19.68504,-19.7059,19.57292,-17.73334,18.72612,-19.76041,18.5402,-17.79204,17.60896,-19.90825,17.27753,-17.95914,16.47946,-20.14343,16.00698,-18.22369,15.33368,-20.46962,14.72621,-18.58831,15.27034,-20.49255,14.16908,-20.89119,14.59785,-18.63477,13.43388,-19.05611,13.01905,-21.3976,12.22282,-19.5894,12.9846,-21.41277,11.78065,-22.03884,12.12982,-19.63035,10.81491,-20.31412,10.55889,-22.77344,9.491,-21.11014,9.322042,-23.6199,8.160689,-22.02056,8.073587,-24.58077,6.827167,-23.04691,6.817549,-25.65775,5.49401,-24.19001,5.544891,-26.86437,4.000713,-28.45855,4.155005,-25.45954,2.616667,-27.04769,2.145778,-30.18756,0.8378319,-28.70576,0.2283338,-31.78968,-0.9948453,-30.23706,-1.751565,-33.25915,-2.880677,-31.63671,-3.793286,-34.58953,-4.818533,-32.89941,-5.8953,-35.77371,-6.806604,-34.0194,-6.448452,-36.03762,-8.054839,-36.80402,-7.299211,-34.25443,-8.84214,-34.99055,-10.26754,-37.67249,-10.92119,-35.80656,-12.52715,-38.37119,-13.03839,-36.46122,-14.82543,-38.89282,-15.18686,-36.94886,-17.15218,-39.23131,-17.35827,-37.26474,-19.30496,-39.37008,-19.36857,-37.39433,-19.68504,-39.37008,-19.68504,-37.39433,19.7059,-3.344203E-12,17.73334,-4.501055E-12,19.7059,3.149606,18.5248,3.149606,10.40548,5.14716,9.073806,5.14716,10.18877,8.387447,8.857098,8.387447,19.57292,4.321824,19.57292,7.56935,19.68504,4.321824,19.68504,7.56935,18.50394,2.102544E-13,18.54418,0.3056918,18.54418,-0.3056918,18.66217,-0.5905512,18.66217,0.5905512,18.84987,-0.8351655,18.84987,0.8351655,19.09449,-1.022865,19.09449,1.022865,19.37935,-1.140857,19.37935,1.140857,19.68504,-1.181102,19.68504,1.181102,-12.13766,6.532583,-11.82933,6.532583,-12.24043,3.28767,-11.72655,3.28767,-7.378973,7.150736,-7.276197,3.905823,-7.79008,3.905823,-7.687303,7.150736,18.44355,1.342798,17.92966,1.342798,18.34077,4.587711,18.03244,4.587711,15.77136,5.658383,15.36025,2.413471,15.46303,5.658383,15.87413,2.413471,19.77357,0.1486191,19.25969,0.1486191,19.6708,3.393532,19.36247,3.393532,7.687303,7.150736,7.79008,3.905823,7.378973,7.150736,7.276197,3.905823,2.415248,7.470715,2.826355,4.225802,2.312472,4.225802,2.723578,7.470715,12.24043,3.28767,11.72655,3.28767,11.82933,6.532583,12.13766,6.532583,-17.92966,1.342798,-18.44355,1.342798,-18.34077,4.587711,-18.03244,4.587711,-2.723578,7.470715,-2.415248,7.470715,-2.826355,4.225802,-2.312472,4.225802,-15.36025,2.413471,-15.87413,2.413471,-15.77136,5.658383,-15.46303,5.658383,-1.968504,5.210721E-12,-1.181102,3.149606,1.968504,5.208944E-12,1.181102,3.149606,-19.25969,0.1486191,-19.77357,0.1486191,-19.6708,3.393532,-19.36247,3.393532,-17.71654,2.131628E-13,-17.78361,-0.5094863,-17.78361,0.5094863,-17.98026,-0.984252,-17.98026,0.984252,-18.2931,-1.391943,-18.2931,1.391943,-18.70079,-1.704774,-18.70079,1.704774,-19.17555,-1.901429,-19.17555,1.901429,-19.68504,-1.968504,-19.68504,1.968504 + } + UVIndex: *1536 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,4,5,7,6,5,8,6,7,9,8,7,10,8,9,11,10,9,12,10,11,13,10,12,14,13,12,15,14,12,16,14,15,17,16,15,18,16,17,19,16,18,20,19,18,21,20,18,22,20,21,23,22,21,24,22,23,25,24,23,26,24,25,27,26,25,28,26,27,29,28,27,30,28,29,31,28,30,32,31,30,33,32,30,34,32,33,35,34,33,36,34,35,37,36,35,38,36,37,39,38,37,40,38,39,41,40,39,42,40,41,43,42,41,44,42,43,45,42,44,46,45,44,47,46,44,48,46,47,49,48,47,50,48,49,51,50,49,52,50,51,53,52,51,54,52,53,55,54,53,56,54,55,57,56,55,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,63,67,65,68,65,67,69,71,70,72,70,71,73,70,72,74,70,73,75,74,73,76,74,75,77,76,75,78,76,77,79,78,77,80,78,79,81,80,79,82,81,79,83,81,82,84,81,83,85,84,83,86,84,85,87,86,85,88,87,85,89,87,88,90,87,89,91,90,89,92,90,91,93,92,91,94,92,93,95,94,93,96,94,95,97,96,95,98,96,97,99,98,97,100,99,97,101,99,100,102,99,101,103,102,101,104,102,103,105,104,103,106,104,105,107,106,105,108,106,107,109,108,107,110,108,109,111,110,109,112,110,111,113,112,111,114,113,111,115,113,114,116,113,115,117,116,115,118,116,117,119,118,117,120,118,119,121,120,119,122,120,121,123,122,121,124,122,123,125,124,123,126,124,125,127,126,125,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,179,182,178,183,178,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,233,235,236,237,236,235,238,240,239,241,239,240,242,244,243,245,243,244,243,245,246,247,246,245,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,308,309,312,313,312,309,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,354,356,355,357,355,356,358,360,359,361,359,360,362,364,363,365,363,364,366,368,367,369,367,368,370,372,371,373,371,372,371,374,370,375,370,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,430,432,431,433,431,432,434,436,435,437,435,436,438,440,439,441,439,440,440,438,442,443,442,438,444,446,445,447,445,446,444,448,446,449,446,448,450,452,451,453,451,452,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,465,463,464,463,465,466,467,466,465,468,470,469,471,469,470,472,474,473,475,473,474,476,478,477,479,477,478,480,482,481,483,481,482,484,486,485,487,485,486,488,490,489,491,489,490,492,494,493,495,493,494,496,498,497,499,497,498,500,502,501,503,501,502,504,506,505,507,505,506,508,507,506,509,508,506,510,508,509,511,510,509,512,510,511,513,512,511,514,512,513,515,514,513,516,514,515,517,514,516,518,517,516,519,518,516,520,518,519,521,520,519,522,520,521,523,520,522,524,523,522,525,524,522,526,524,525,527,526,525,528,526,527,529,528,527,530,528,529,531,530,529,532,530,531,533,532,531,534,532,533,535,532,534,536,535,534,537,536,534,538,536,537,539,538,537,540,538,539,541,540,539,542,540,541,543,542,541,544,542,543,545,544,543,546,544,545,547,546,545,548,546,547,549,546,548,550,549,548,551,550,548,552,550,551,553,552,551,554,552,553,555,554,553,556,554,555,557,556,555,558,556,557,559,558,557,560,558,559,561,560,559,562,560,561,563,565,564,566,564,565,567,569,568,570,568,569,571,573,572,574,572,573,575,577,576,578,576,577,579,581,580,582,580,581,583,585,584,586,584,585,587,589,588,590,588,589,591,593,592,594,592,593,595,597,596,598,596,597,599,601,600,602,600,601,603,605,604,606,604,605,603,607,605,608,605,607,609,611,610,612,610,611,613,615,614,616,614,615,617,616,615,618,616,617,619,618,617,620,618,619,621,620,619,622,620,621,623,622,621,624,622,623,625,624,623,626,625,623,627,625,626,628,625,627,629,628,627,630,628,629,631,630,629,632,631,629,633,631,632,634,631,633,635,634,633,636,634,635,637,636,635,638,636,637,639,638,637,640,638,639,641,640,639,642,640,641,643,642,641,644,643,641,645,643,644,646,643,645,647,646,645,648,646,647,649,648,647,650,648,649,651,650,649,652,650,651,653,652,651,654,652,653,655,654,653,656,654,655,657,656,655,658,657,655,659,657,658,660,657,659,661,660,659,662,660,661,663,662,661,664,662,663,665,664,663,666,664,665,667,666,665,668,666,667,669,668,667,670,668,669,671,670,669,672,674,673,675,673,674,676,678,677,679,677,678,680,682,681,683,681,682,684,686,685,687,685,686,688,685,687,689,688,687,690,688,689,691,690,689,692,690,691,693,692,691,694,692,693,695,694,693,696,694,695,697,699,698,698,699,700,701,703,702,704,703,701,705,707,706,707,708,706,709,711,710,712,709,710,713,715,714,715,716,714,717,719,718,718,719,720,721,723,722,724,721,722,725,727,726,728,727,725,729,731,730,732,731,729,733,735,734,734,735,736,737,739,738,740,739,737,741,743,742,744,742,743,745,747,746,748,747,745,749,751,750,752,750,751,753,752,751,754,752,753,755,754,753,756,754,755,757,756,755,758,756,757,759,758,757,760,758,759,761,760,759 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *512 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_splitBarrier, Model::RootNode + C: "OO",5309622018771453961,0 + + ;Geometry::, Model::Mesh road_splitBarrier + C: "OO",4938677175388680037,5309622018771453961 + + ;Material::pavement, Model::Mesh road_splitBarrier + C: "OO",17046,5309622018771453961 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_splitBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_splitBarrier.fbx.import new file mode 100644 index 0000000..cb0a133 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_splitBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://hkx6phk12pld" +path="res://.godot/imported/road_splitBarrier.fbx-4cd26e9b38d6aa8be08c044d3bea1e87.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_splitBarrier.fbx" +dest_files=["res://.godot/imported/road_splitBarrier.fbx-4cd26e9b38d6aa8be08c044d3bea1e87.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_square.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_square.fbx new file mode 100644 index 0000000..36d85c6 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_square.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 543 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_square.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_square.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5397283922086323153, "Model::road_square", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5354142009034667575, "Geometry::", "Mesh" { + Vertices: *156 { + a: -4,0.09999999,-4,-4,0.2,-4,4,0.09999999,-4,4,0.2,-4,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,5,0,5,5,0,-5,-5,0,5,-5,0,-5,5,0.2,5,4,0.2,-4,5,0.2,-5,-5,0.2,-5,-4,0.2,-4,-4,0.2,4,4,0.2,4,-5,0.2,5,5,0,5,-5,0,5,5,0.2,5,-5,0.2,5,-5,0,-5,-5,0.2,-5,-5,0,5,-5,0.2,5,-4,0.2,-4,-4,0.09999999,-4,-4,0.2,4,-4,0.09999999,4,5,0.2,-5,5,0,-5,5,0.2,5,5,0,5,-4,0.09999999,4,4,0.09999999,4,-4,0.2,4,4,0.2,4,4,0.09999999,-4,4,0.2,-4,4,0.09999999,4,4,0.2,4,3,0.09999999,-3,3,0.09999999,3,-3,0.09999999,-3,-3,0.09999999,3,4,0.09999999,4,4,0.09999999,-4,-4,0.09999999,-4,-4,0.09999999,4 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,13,-16,17,16,-16,13,18,-13,19,12,-19,17,19,-19,15,19,-18,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,49,-45,50,44,-50,46,44,-51,47,46,-51,44,45,-49,51,48,-46,47,51,-46,50,51,-48 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *104 { + a: -15.74803,0.3937008,-15.74803,0.7874016,15.74803,0.3937008,15.74803,0.7874016,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,19.68504,-15.74803,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,15.74803,-15.74803,15.74803,15.74803,-15.74803,15.74803,19.68504,19.68504,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,-19.68504,0,-19.68504,0.7874016,19.68504,0,19.68504,0.7874016,15.74803,0.7874016,15.74803,0.3937008,-15.74803,0.7874016,-15.74803,0.3937008,19.68504,0.7874016,19.68504,0,-19.68504,0.7874016,-19.68504,0,15.74803,0.3937008,-15.74803,0.3937008,15.74803,0.7874016,-15.74803,0.7874016,-15.74803,0.3937008,-15.74803,0.7874016,15.74803,0.3937008,15.74803,0.7874016,-11.81102,-11.81102,-11.81102,11.81102,11.81102,-11.81102,11.81102,11.81102,-15.74803,15.74803,-15.74803,-15.74803,15.74803,-15.74803,15.74803,15.74803 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,13,15,17,16,15,13,18,12,19,12,18,17,19,18,15,19,17,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,49,44,50,44,49,46,44,50,47,46,50,44,45,48,51,48,45,47,51,45,50,51,47 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_square, Model::RootNode + C: "OO",5397283922086323153,0 + + ;Geometry::, Model::Mesh road_square + C: "OO",5354142009034667575,5397283922086323153 + + ;Material::pavement, Model::Mesh road_square + C: "OO",17046,5397283922086323153 + + ;Material::asphalt, Model::Mesh road_square + C: "OO",9934,5397283922086323153 + + ;Material::asphaltEdge, Model::Mesh road_square + C: "OO",17042,5397283922086323153 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_square.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_square.fbx.import new file mode 100644 index 0000000..f74bd5f --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_square.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://lp0wlscaegih" +path="res://.godot/imported/road_square.fbx-4ebae2a586338029b2fc8cc4a4c9137c.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_square.fbx" +dest_files=["res://.godot/imported/road_square.fbx-4ebae2a586338029b2fc8cc4a4c9137c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_squareBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_squareBarrier.fbx new file mode 100644 index 0000000..61d1bd5 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_squareBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 613 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_squareBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_squareBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4623711223280494792, "Model::road_squareBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4671539161699772586, "Geometry::", "Mesh" { + Vertices: *144 { + a: -4.7,0.8,-4.7,-4.5,0,-4.5,-4.7,0.8,4.7,-4.5,0,4.5,4.7,0.8,-4.7,4.7,0.8,4.7,4.5,0,-4.5,4.5,0,4.5,4.5,0,-4.5,-4.5,0,-4.5,4.7,0.8,-4.7,-4.7,0.8,-4.7,5,0.8,-5,5,0,-5,5,0.8,5,5,0,5,-4.5,0,4.5,4.5,0,4.5,-4.7,0.8,4.7,4.7,0.8,4.7,-5,0,-5,-5,0.8,-5,-5,0,5,-5,0.8,5,5,0.8,5,4.7,0.8,-4.7,5,0.8,-5,-5,0.8,-5,-4.7,0.8,-4.7,-5,0.8,5,4.7,0.8,4.7,-4.7,0.8,4.7,5,0,5,-5,0,5,5,0.8,5,-5,0.8,5,-5,0,-5,5,0,-5,-5,0.8,-5,5,0.8,-5,4.5,0,-4.5,4.5,0,4.5,5,0,5,-5,0,5,-4.5,0,4.5,-4.5,0,-4.5,5,0,-5,-5,0,-5 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,25,-28,29,28,-28,29,24,-31,25,30,-25,31,29,-31,28,29,-32,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,42,40,-47,47,46,-41,45,47,-41,43,47,-46 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: 18.50394,7.543431,17.71654,4.296891,-18.50394,7.543431,-17.71654,4.296891,-18.50394,7.543431,18.50394,7.543431,-17.71654,4.296891,17.71654,4.296891,17.71654,4.296891,-17.71654,4.296891,18.50394,7.543431,-18.50394,7.543431,19.68504,3.149606,19.68504,2.51623E-11,-19.68504,3.149606,-19.68504,2.51623E-11,17.71654,4.296891,-17.71654,4.296891,18.50394,7.543431,-18.50394,7.543431,-19.68504,1.507844E-11,-19.68504,3.149606,19.68504,1.507844E-11,19.68504,3.149606,-19.68504,19.68504,-18.50394,-18.50394,-19.68504,-19.68504,19.68504,-19.68504,18.50394,-18.50394,19.68504,19.68504,-18.50394,18.50394,18.50394,18.50394,19.68504,4.42973E-12,-19.68504,4.42973E-12,19.68504,3.149606,-19.68504,3.149606,19.68504,-1.770021E-12,-19.68504,-1.770021E-12,19.68504,3.149606,-19.68504,3.149606,17.71654,-17.71654,17.71654,17.71654,19.68504,19.68504,-19.68504,19.68504,-17.71654,17.71654,-17.71654,-17.71654,19.68504,-19.68504,-19.68504,-19.68504 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,25,27,29,28,27,29,24,30,25,30,24,31,29,30,28,29,31,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,42,40,46,47,46,40,45,47,40,43,47,45 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_squareBarrier, Model::RootNode + C: "OO",4623711223280494792,0 + + ;Geometry::, Model::Mesh road_squareBarrier + C: "OO",4671539161699772586,4623711223280494792 + + ;Material::pavement, Model::Mesh road_squareBarrier + C: "OO",17046,4623711223280494792 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_squareBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_squareBarrier.fbx.import new file mode 100644 index 0000000..c83c1eb --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_squareBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ih5vitk6lp7w" +path="res://.godot/imported/road_squareBarrier.fbx-63b630c7606d7528a83c975cfd70b548.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_squareBarrier.fbx" +dest_files=["res://.godot/imported/road_squareBarrier.fbx-63b630c7606d7528a83c975cfd70b548.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_straight.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straight.fbx new file mode 100644 index 0000000..579f0d2 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straight.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 713 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_straight.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_straight.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5172009985490919047, "Model::road_straight", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5622034085509675057, "Geometry::", "Mesh" { + Vertices: *192 { + a: 5,0.09999999,-4,-5,0.09999999,-4,5,0.2,-4,-5,0.2,-4,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,-5,0.09999999,4,5,0.09999999,4,-5,0.2,4,5,0.2,4,5,0,5,5,0,-5,-5,0,5,-5,0,-5,5,0.2,-5,5,0.2,-4,-5,0.2,-5,-5,0.2,-4,5,0,5,-5,0,5,5,0.2,5,-5,0.2,5,5,0.2,4,5,0.2,5,-5,0.2,4,-5,0.2,5,5,0.2,4,5,0.09999999,4,5,0.2,5,5,0,5,5,0.09999999,3,5,0.09999999,0.09999999,5,0.09999999,-0.09999999,5,0.09999999,-3,5,0.09999999,-4,5,0,-5,5,0.2,-4,5,0.2,-5,-5,0.2,-5,-5,0.09999999,-4,-5,0,-5,-5,0,5,-5,0.09999999,-3,-5,0.09999999,-0.09999999,-5,0.09999999,0.09999999,-5,0.09999999,3,-5,0.09999999,4,-5,0.2,4,-5,0.2,5,-5,0.2,-4,5,0.09999999,3,-5,0.09999999,3,5,0.09999999,0.09999999,-5,0.09999999,0.09999999,5,0.09999999,-3,5,0.09999999,-0.09999999,-5,0.09999999,-3,-5,0.09999999,-0.09999999,5,0.09999999,-4,-5,0.09999999,-4,5,0.09999999,4,-5,0.09999999,4 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,30,31,-30,29,31,-33,32,31,-34,33,31,-35,34,31,-36,35,31,-37,31,37,-37,36,37,-39,39,38,-38,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,45,-44,47,46,-44,48,47,-44,49,48,-44,50,49,-44,41,51,-41,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,61,-57,58,56,-62,52,53,-63,63,62,-54,57,59,-55,55,54,-60 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *128 { + a: 19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,19.68504,0.3937008,-19.68504,0.3937008,19.68504,0.7874016,-19.68504,0.7874016,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,-19.68504,15.74803,-19.68504,19.68504,19.68504,15.74803,19.68504,19.68504,-15.74803,0.7874016,-15.74803,0.3937008,-19.68504,0.7874016,-19.68504,1.725924E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,19.68504,1.725924E-13,15.74803,0.7874016,19.68504,0.7874016,-19.68504,0.7874016,-15.74803,0.3937008,-19.68504,-2.465606E-13,19.68504,-2.465606E-13,-11.81102,0.3937008,-0.3937008,0.3937008,0.3937008,0.3937008,11.81102,0.3937008,15.74803,0.3937008,15.74803,0.7874016,19.68504,0.7874016,-15.74803,0.7874016,-19.68504,11.81102,19.68504,11.81102,-19.68504,0.3937008,19.68504,0.3937008,-19.68504,-11.81102,-19.68504,-0.3937008,19.68504,-11.81102,19.68504,-0.3937008,-19.68504,-15.74803,19.68504,-15.74803,-19.68504,15.74803,19.68504,15.74803 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,30,31,29,29,31,32,32,31,33,33,31,34,34,31,35,35,31,36,31,37,36,36,37,38,39,38,37,40,42,41,43,41,42,44,41,43,45,44,43,46,45,43,47,46,43,48,47,43,49,48,43,50,49,43,41,51,40,52,54,53,55,53,54,56,58,57,59,57,58,60,61,56,58,56,61,52,53,62,63,62,53,57,59,54,55,54,59 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } + + Material: 9934, "Material::asphalt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4313726,0.454902,0.5294118 + P: "DiffuseColor", "Color", "", "A",0.4313726,0.454902,0.5294118 + } + } + + Material: 17042, "Material::asphaltEdge", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.3215686,0.3372549,0.3960784 + P: "DiffuseColor", "Color", "", "A",0.3215686,0.3372549,0.3960784 + } + } + + Material: 9174, "Material::line", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5490196,0.5764706,0.6784314 + P: "DiffuseColor", "Color", "", "A",0.5490196,0.5764706,0.6784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_straight, Model::RootNode + C: "OO",5172009985490919047,0 + + ;Geometry::, Model::Mesh road_straight + C: "OO",5622034085509675057,5172009985490919047 + + ;Material::pavement, Model::Mesh road_straight + C: "OO",17046,5172009985490919047 + + ;Material::asphalt, Model::Mesh road_straight + C: "OO",9934,5172009985490919047 + + ;Material::asphaltEdge, Model::Mesh road_straight + C: "OO",17042,5172009985490919047 + + ;Material::line, Model::Mesh road_straight + C: "OO",9174,5172009985490919047 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_straight.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straight.fbx.import new file mode 100644 index 0000000..19abadb --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straight.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c1evrcw3fm5gi" +path="res://.godot/imported/road_straight.fbx-fa15a1df680ac599b85df4dadb1279ab.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_straight.fbx" +dest_files=["res://.godot/imported/road_straight.fbx-fa15a1df680ac599b85df4dadb1279ab.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrier.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrier.fbx new file mode 100644 index 0000000..0ba3bc5 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrier.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 788 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_straightBarrier.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_straightBarrier.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5672511142987261204, "Model::road_straightBarrier", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4917629476589735394, "Geometry::", "Mesh" { + Vertices: *144 { + a: -4.7,0.8,5,-5,0.8,5,-4.7,0.8,-5,-5,0.8,-5,5,0,-5,4.5,0,-5,5,0,5,4.5,0,5,4.5,0,-5,4.7,0.8,-5,4.5,0,5,4.7,0.8,5,-4.5,0,5,-4.5,0,-5,-5,0,5,-5,0,-5,5,0,5,4.5,0,5,5,0.8,5,4.7,0.8,5,5,0.8,-5,5,0,-5,5,0.8,5,5,0,5,4.5,0,-5,5,0,-5,4.7,0.8,-5,5,0.8,-5,-4.5,0,-5,-4.5,0,5,-4.7,0.8,-5,-4.7,0.8,5,-5,0,-5,-4.5,0,-5,-5,0.8,-5,-4.7,0.8,-5,5,0.8,-5,5,0.8,5,4.7,0.8,-5,4.7,0.8,5,-5,0,-5,-5,0.8,-5,-5,0,5,-5,0.8,5,-4.5,0,5,-5,0,5,-4.7,0.8,5,-5,0.8,5 + } + PolygonVertexIndex: *72 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *216 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: 18.50394,19.68504,19.68504,19.68504,18.50394,-19.68504,19.68504,-19.68504,19.68504,-19.68504,17.71654,-19.68504,19.68504,19.68504,17.71654,19.68504,-19.68504,4.296891,-19.68504,7.543431,19.68504,4.296891,19.68504,7.543431,-17.71654,19.68504,-17.71654,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,19.68504,1.828603E-13,17.71654,1.828603E-13,19.68504,3.149606,18.50394,3.149606,19.68504,3.149606,19.68504,1.317955E-25,-19.68504,3.149606,-19.68504,1.317955E-25,-17.71654,-5.224579E-15,-19.68504,-5.224579E-15,-18.50394,3.149606,-19.68504,3.149606,19.68504,4.296891,-19.68504,4.296891,19.68504,7.543431,-19.68504,7.543431,19.68504,1.776357E-13,17.71654,1.776357E-13,19.68504,3.149606,18.50394,3.149606,-19.68504,-19.68504,-19.68504,19.68504,-18.50394,-19.68504,-18.50394,19.68504,-19.68504,0,-19.68504,3.149606,19.68504,0,19.68504,3.149606,-17.71654,0,-19.68504,0,-18.50394,3.149606,-19.68504,3.149606 + } + UVIndex: *72 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *24 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_straightBarrier, Model::RootNode + C: "OO",5672511142987261204,0 + + ;Geometry::, Model::Mesh road_straightBarrier + C: "OO",4917629476589735394,5672511142987261204 + + ;Material::pavement, Model::Mesh road_straightBarrier + C: "OO",17046,5672511142987261204 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrier.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrier.fbx.import new file mode 100644 index 0000000..1b28258 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrier.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bdi462xse4vlx" +path="res://.godot/imported/road_straightBarrier.fbx-278172b8cd385115778f1d9c0346dc03.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrier.fbx" +dest_files=["res://.godot/imported/road_straightBarrier.fbx-278172b8cd385115778f1d9c0346dc03.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrierEnd.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrierEnd.fbx new file mode 100644 index 0000000..081ffe1 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrierEnd.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 850 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road_straightBarrierEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road_straightBarrierEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4999927826775393542, "Model::road_straightBarrierEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5255237945310637961, "Geometry::", "Mesh" { + Vertices: *108 { + a: 5,1.071587E-15,5,5,0,-5,4.7,1.071587E-15,5,4.5,0,-5,4.5,0,-5,5,0,-5,4.7,0.8,-5,5,0.8,-5,-5,0,-5,-4.5,0,-5,-5,0.8,-5,-4.7,0.8,-5,-4.7,1.071587E-15,5,-5,1.071587E-15,5,-4.7,0.8,-5,-5,0.8,-5,4.5,0,-5,4.7,0.8,-5,4.7,1.071587E-15,5,5,1.071587E-15,5,4.7,1.071587E-15,5,5,0.8,-5,4.7,0.8,-5,-5,0,-5,-5,0.8,-5,-5,1.071587E-15,5,5,0.8,-5,5,0,-5,5,1.071587E-15,5,-4.5,0,-5,-5,0,-5,-4.7,1.071587E-15,5,-5,1.071587E-15,5,-4.7,0.8,-5,-4.5,0,-5,-4.7,1.071587E-15,5 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,21,-21,22,20,-22,23,25,-25,26,28,-28,29,31,-31,32,30,-32,33,35,-35 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9968153,0.07974523,-0.96996,0.24249,0.01939921,-0.96996,0.24249,0.01939921,-0.96996,0.24249,0.01939921,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9968153,0.07974523,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.96996,0.24249,0.01939919,0.96996,0.24249,0.01939919,0.96996,0.24249,0.01939919 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *72 { + a: 19.68504,19.68504,19.68504,-19.68504,18.50394,19.68504,17.71654,-19.68504,-17.71654,-5.224579E-15,-19.68504,-5.224579E-15,-18.50394,3.149606,-19.68504,3.149606,19.68504,1.776357E-13,17.71654,1.776357E-13,19.68504,3.149606,18.50394,3.149606,-18.50394,-19.62235,-19.68504,-19.62235,-18.50394,19.87351,-19.68504,19.87351,-19.32684,4.390673,-19.3111,7.637175,20.05111,4.390673,19.68504,-19.62235,18.50394,-19.62235,19.68504,19.87351,18.50394,19.87351,-19.68504,4.164115E-22,-19.68504,3.149606,19.68504,4.218848E-15,19.68504,3.149606,19.68504,-4.164115E-22,-19.68504,4.218847E-15,-17.71654,-19.68504,-19.68504,-19.68504,-18.50394,19.68504,-19.68504,19.68504,19.3111,7.637175,19.32684,4.390673,-20.05111,4.390673 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,21,20,22,20,21,23,25,24,26,28,27,29,31,30,32,30,31,33,35,34 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road_straightBarrierEnd, Model::RootNode + C: "OO",4999927826775393542,0 + + ;Geometry::, Model::Mesh road_straightBarrierEnd + C: "OO",5255237945310637961,4999927826775393542 + + ;Material::pavement, Model::Mesh road_straightBarrierEnd + C: "OO",17046,4999927826775393542 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrierEnd.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrierEnd.fbx.import new file mode 100644 index 0000000..cf3cd38 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrierEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dfdpdwb3rmgqn" +path="res://.godot/imported/road_straightBarrierEnd.fbx-08845819b5b56a7f35fbed15d86bdc4b.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_straightBarrierEnd.fbx" +dest_files=["res://.godot/imported/road_straightBarrierEnd.fbx-08845819b5b56a7f35fbed15d86bdc4b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/tile_high.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_high.fbx new file mode 100644 index 0000000..f766467 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_high.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 914 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tile_high.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tile_high.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5180704064867611505, "Model::tile_high", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5132127790120049171, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,2.5,-5,5,0,-5,5,2.5,5,5,0,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5,-5,0,-5,-5,2.5,-5,-5,0,5,-5,2.5,5,5,0,5,-5,0,5,5,2.5,5,-5,2.5,5,-5,0,-5,5,0,-5,-5,2.5,-5,5,2.5,-5,5,2.5,-5,5,2.5,5,-5,2.5,-5,-5,2.5,5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 19.68504,9.84252,19.68504,0,-19.68504,9.84252,-19.68504,0,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,0,-19.68504,9.84252,19.68504,0,19.68504,9.84252,19.68504,0,-19.68504,0,19.68504,9.84252,-19.68504,9.84252,19.68504,0,-19.68504,0,19.68504,9.84252,-19.68504,9.84252,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tile_high, Model::RootNode + C: "OO",5180704064867611505,0 + + ;Geometry::, Model::Mesh tile_high + C: "OO",5132127790120049171,5180704064867611505 + + ;Material::pavement, Model::Mesh tile_high + C: "OO",17046,5180704064867611505 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/tile_high.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_high.fbx.import new file mode 100644 index 0000000..2fb472b --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_high.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ce3guvs7kki3k" +path="res://.godot/imported/tile_high.fbx-3cfad8be785aab9534500088ec0e1ac4.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/tile_high.fbx" +dest_files=["res://.godot/imported/tile_high.fbx-3cfad8be785aab9534500088ec0e1ac4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/tile_low.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_low.fbx new file mode 100644 index 0000000..9f083c4 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_low.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 23 + Millisecond: 966 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tile_low.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tile_low.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5150047615193819349, "Model::tile_low", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5634482151842108528, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,0,5,5,0,-5,-5,0,5,-5,0,-5,-5,0,-5,-5,0.2,-5,-5,0,5,-5,0.2,5,-5,0,-5,5,0,-5,-5,0.2,-5,5,0.2,-5,5,0,5,-5,0,5,5,0.2,5,-5,0.2,5,5,0.2,-5,5,0,-5,5,0.2,5,5,0,5,5,0.2,-5,5,0.2,5,-5,0.2,-5,-5,0.2,5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,0,-19.68504,0.7874016,19.68504,0,19.68504,0.7874016,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,19.68504,0,-19.68504,0,19.68504,0.7874016,-19.68504,0.7874016,19.68504,0.7874016,19.68504,0,-19.68504,0.7874016,-19.68504,0,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tile_low, Model::RootNode + C: "OO",5150047615193819349,0 + + ;Geometry::, Model::Mesh tile_low + C: "OO",5634482151842108528,5150047615193819349 + + ;Material::pavement, Model::Mesh tile_low + C: "OO",17046,5150047615193819349 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/tile_low.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_low.fbx.import new file mode 100644 index 0000000..b8dc617 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_low.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bdxmqgfdkq04m" +path="res://.godot/imported/tile_low.fbx-51c38c70d80541c270460992523a7cf3.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/tile_low.fbx" +dest_files=["res://.godot/imported/tile_low.fbx-51c38c70d80541c270460992523a7cf3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slant.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slant.fbx new file mode 100644 index 0000000..2749923 --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slant.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 24 + Millisecond: 19 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tile_slant.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tile_slant.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4868890703034179881, "Model::tile_slant", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4783585913850314021, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,2.7,-5,5,0,-5,5,2.7,5,5,0,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5,-5,0.2,-5,-5,0.2,5,-5,0,-5,-5,0,5,5,0,5,-5,0,5,5,2.7,5,-5,0.2,5,-5,0,-5,5,0,-5,-5,0.2,-5,5,2.7,-5,5,2.7,-5,5,2.7,5,-5,0.2,-5,-5,0.2,5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 19.68504,10.62992,19.68504,0,-19.68504,10.62992,-19.68504,0,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,0.7874016,19.68504,0.7874016,-19.68504,7.105427E-13,19.68504,7.105427E-13,19.68504,-5.622303E-14,-19.68504,-5.622303E-14,19.68504,10.62992,-19.68504,0.7874016,19.68504,5.622303E-14,-19.68504,5.622303E-14,19.68504,0.7874016,-19.68504,10.62992,-19.68504,21.67543,19.68504,21.67543,-19.68504,-18.90632,19.68504,-18.90632 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tile_slant, Model::RootNode + C: "OO",4868890703034179881,0 + + ;Geometry::, Model::Mesh tile_slant + C: "OO",4783585913850314021,4868890703034179881 + + ;Material::pavement, Model::Mesh tile_slant + C: "OO",17046,4868890703034179881 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slant.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slant.fbx.import new file mode 100644 index 0000000..f90261d --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slant.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dofyt1urafi7r" +path="res://.godot/imported/tile_slant.fbx-5809088c8753c3ba437c8cc0acfb2ffb.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/tile_slant.fbx" +dest_files=["res://.godot/imported/tile_slant.fbx-5809088c8753c3ba437c8cc0acfb2ffb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slantHigh.fbx b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slantHigh.fbx new file mode 100644 index 0000000..9a0478a --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slantHigh.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2021 + Month: 10 + Day: 15 + Hour: 0 + Minute: 16 + Second: 24 + Millisecond: 76 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tile_slantHigh.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tile_slantHigh.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4709960806418031816, "Model::tile_slantHigh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,-7.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4710561577948696574, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,5.2,-5,5,0,-5,5,5.2,5,5,0,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5,-5,0,-5,-5,0.2,-5,-5,0,5,-5,0.2,5,5,0,5,-5,0,5,5,5.2,5,-5,0.2,5,-5,0,-5,5,0,-5,-5,0.2,-5,5,5.2,-5,5,5.2,-5,5,5.2,5,-5,0.2,-5,-5,0.2,5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 19.68504,20.47244,19.68504,0,-19.68504,20.47244,-19.68504,0,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,0,-19.68504,0.7874016,19.68504,0,19.68504,0.7874016,19.68504,-2.72882E-14,-19.68504,-2.72882E-14,19.68504,20.47244,-19.68504,0.7874016,19.68504,2.72882E-14,-19.68504,2.72882E-14,19.68504,0.7874016,-19.68504,20.47244,-19.68504,26.76239,19.68504,26.76239,-19.68504,-17.2547,19.68504,-17.2547 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 17046, "Material::pavement", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.7568628,0.8 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.7568628,0.8 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tile_slantHigh, Model::RootNode + C: "OO",4709960806418031816,0 + + ;Geometry::, Model::Mesh tile_slantHigh + C: "OO",4710561577948696574,4709960806418031816 + + ;Material::pavement, Model::Mesh tile_slantHigh + C: "OO",17046,4709960806418031816 + +} diff --git a/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slantHigh.fbx.import b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slantHigh.fbx.import new file mode 100644 index 0000000..fb06f0f --- /dev/null +++ b/assets/models/kenney_city-kit-roads/Models/FBX format/tile_slantHigh.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://g5krav6dxkrl" +path="res://.godot/imported/tile_slantHigh.fbx-63850f38e3180dd10e325a47382942fb.scn" + +[deps] + +source_file="res://assets/models/kenney_city-kit-roads/Models/FBX format/tile_slantHigh.fbx" +dest_files=["res://.godot/imported/tile_slantHigh.fbx-63850f38e3180dd10e325a47382942fb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/License.txt b/assets/models/kenney_fantasy-town-kit/License.txt new file mode 100644 index 0000000..48ebdaf --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/License.txt @@ -0,0 +1,23 @@ + + + Fantasy Town Kit 1.1 + + Created/distributed by Kenney (www.kenney.nl) + Creation date: 03-06-2022 15:55 + + ------------------------------ + + License: (Creative Commons Zero, CC0) + http://creativecommons.org/publicdomain/zero/1.0/ + + This content is free to use in personal, educational and commercial projects. + + Support us by crediting Kenney or www.kenney.nl (this is not mandatory) + + ------------------------------ + + Donate: http://support.kenney.nl + Patreon: http://patreon.com/kenney/ + + Follow on Twitter for updates: + http://twitter.com/KenneyNL diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWall.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWall.fbx new file mode 100644 index 0000000..a93ee81 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWall.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 41 + Millisecond: 614 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "balconyWall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "balconyWall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5307991140024856647, "Model::balconyWall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5492737829305085974, "Geometry::", "Mesh" { + Vertices: *372 { + a: 4,0,4,4.125,0,4,4,10,4,4.25,7,4,5,0,4,4.25,8.054092,4,4.75,7,4,4.75,8.054092,4,5,10,4,5,10,4,5,0,4,5,10,5,5,0,5,5,0,-4,5,0,-5,4.125,0,-4,4,0,-5,4,0,-4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,5,0,5,5,0,4,4,0,5,4.125,0,4,4,0,4,5,10,4,5,10,5,4,10,4,4,10,5,4,0,4,4,10,4,4,0,5,4,10,5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,5,4,0,5,5,10,5,4,10,5,4.25,10,1,4.25,10,2.054093,4.25,7.75,1.75,4.25,8.540569,2.54057,4.25,7,4,4.25,8.054092,4,4.75,7,4,4.75,7.75,1.75,4.25,7,4,4.25,7.75,1.75,4.75,10,1,4.75,10,2.054093,4.25,10,1,4.25,10,2.054093,4.75,10,1,4.75,7.75,1.75,4.75,10,2.054093,4.75,8.540569,2.54057,4.75,7,4,4.75,8.054092,4,4.25,7.75,1.75,4.75,7.75,1.75,4.25,10,1,4.75,10,1,4.75,8.540569,2.54057,4.75,8.054092,4,4.25,8.540569,2.54057,4.25,8.054092,4,4.75,8.540569,2.54057,4.25,8.540569,2.54057,4.75,10,2.054093,4.25,10,2.054093,4.25,8.540569,-2.54057,4.75,8.540569,-2.54057,4.25,10,-2.054093,4.75,10,-2.054093,4.75,10,-2.054093,4.75,10,-1,4.25,10,-2.054093,4.25,10,-1,4.25,7,-4,4.25,8.054092,-4,4.25,7.75,-1.75,4.25,8.540569,-2.54057,4.25,10,-2.054093,4.25,10,-1,4.75,7.75,-1.75,4.75,7,-4,4.25,7.75,-1.75,4.25,7,-4,4.75,8.054092,-4,4.75,8.540569,-2.54057,4.25,8.054092,-4,4.25,8.540569,-2.54057,4.75,8.054092,-4,4.75,7,-4,4.75,8.540569,-2.54057,4.75,7.75,-1.75,4.75,10,-2.054093,4.75,10,-1,4.75,7.75,-1.75,4.25,7.75,-1.75,4.75,10,-1,4.25,10,-1,4.125,0,-4,4.75,7,-4,5,0,-4,4,0,-4,5,10,-4,4.25,7,-4,4.75,8.054092,-4,4,10,-4,4.25,8.054092,-4 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,1,-4,5,3,-3,3,6,-5,7,5,-3,8,4,-7,7,8,-7,2,8,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,16,-16,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,54,-54,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,66,-69,70,69,-69,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,94,-94,96,95,-94,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,108,-108,110,108,-110,111,113,-113,114,112,-114,115,117,-117,118,115,-117,119,116,-118,116,120,-119,121,116,-120,122,118,-121,123,121,-120,123,122,-121,119,122,-124 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.9486833,-0.3162278,0,-0.9486833,-0.3162278,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.9486833,-0.3162278,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,-0.7071068,0,-0.3162278,-0.9486833,0,-0.7071068,-0.7071068,0,-0.3162278,-0.9486833,0,-0.7071068,-0.7071068,0,-0.3162278,-0.9486833,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.3162278,0.9486833,0,0.7071068,0.7071068,0,0.3162278,0.9486833,0,0.7071068,0.7071068,0,0.3162278,0.9486833,0,0.7071068,-0.7071068,0,0.3162278,-0.9486833,0,0.7071068,-0.7071068,0,0.3162278,-0.9486833,0,0.7071068,-0.7071068,0,0.3162278,-0.9486833,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.7071068,0.7071068,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.9486833,-0.3162278,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,0.7071068,0,-0.3162278,0.9486833,0,-0.7071068,0.7071068,0,-0.3162278,0.9486833,0,-0.7071068,0.7071068,0,-0.3162278,0.9486833,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *248 { + a: -15.74803,6.929483E-15,-16.24016,6.929483E-15,-15.74803,39.37008,-16.73228,27.55906,-19.68504,6.929483E-15,-16.73228,31.70903,-18.70079,27.55906,-18.70079,31.70903,-19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,-15.74803,19.68504,-19.68504,16.24016,-15.74803,15.74803,-19.68504,15.74803,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,16.24016,15.74803,15.74803,15.74803,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,3.937008,39.37008,8.086979,39.37008,6.889764,30.51181,10.00224,33.62429,15.74803,27.55906,15.74803,31.70903,-18.70079,-6.224956,-18.70079,3.112478,-16.73228,-6.224956,-16.73228,3.112478,-18.70079,3.937008,-18.70079,8.086979,-16.73228,3.937008,-16.73228,8.086979,-3.937008,39.37008,-6.889764,30.51181,-8.086979,39.37008,-10.00224,33.62429,-15.74803,27.55906,-15.74803,31.70903,-16.73228,26.76731,-18.70079,26.76731,-16.73228,36.10474,-18.70079,36.10474,18.70079,1.143974,18.70079,-4.91262,16.73228,1.143974,16.73228,-4.91262,18.70079,28.73582,16.73228,28.73582,18.70079,34.79241,16.73228,34.79241,-16.73228,28.73582,-18.70079,28.73582,-16.73228,34.79241,-18.70079,34.79241,-18.70079,-8.086979,-18.70079,-3.937008,-16.73228,-8.086979,-16.73228,-3.937008,-15.74803,27.55906,-15.74803,31.70903,-6.889764,30.51181,-10.00224,33.62429,-8.086979,39.37008,-3.937008,39.37008,18.70079,3.112478,18.70079,-6.224956,16.73228,3.112478,16.73228,-6.224956,-18.70079,-4.91262,-18.70079,1.143974,-16.73228,-4.91262,-16.73228,1.143974,15.74803,31.70903,15.74803,27.55906,10.00224,33.62429,6.889764,30.51181,8.086979,39.37008,3.937008,39.37008,18.70079,26.76731,16.73228,26.76731,18.70079,36.10474,16.73228,36.10474,16.24016,-6.929483E-15,18.70079,27.55906,19.68504,-6.929483E-15,15.74803,-6.929483E-15,19.68504,39.37008,16.73228,27.55906,18.70079,31.70903,15.74803,39.37008,16.73228,31.70903 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,1,3,5,3,2,3,6,4,7,5,2,8,4,6,7,8,6,2,8,7,9,11,10,12,10,11,13,15,14,16,14,15,17,16,15,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,54,53,56,54,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,66,68,70,69,68,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,94,93,96,95,93,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,108,107,110,108,109,111,113,112,114,112,113,115,117,116,118,115,116,119,116,117,116,120,118,121,116,119,122,118,120,123,121,119,123,122,120,119,122,123 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh balconyWall, Model::RootNode + C: "OO",5307991140024856647,0 + + ;Geometry::, Model::Mesh balconyWall + C: "OO",5492737829305085974,5307991140024856647 + + ;Material::wood, Model::Mesh balconyWall + C: "OO",7178,5307991140024856647 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWall.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWall.fbx.import new file mode 100644 index 0000000..b922b14 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bpjxjh6gbubra" +path="res://.godot/imported/balconyWall.fbx-80c6f78640d9a4bd596b9ff56755f6d0.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWall.fbx" +dest_files=["res://.godot/imported/balconyWall.fbx-80c6f78640d9a4bd596b9ff56755f6d0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWallFence.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWallFence.fbx new file mode 100644 index 0000000..4482f77 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWallFence.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 279 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "balconyWallFence.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "balconyWallFence.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4699022576582869042, "Model::balconyWallFence", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4802158714933696408, "Geometry::", "Mesh" { + Vertices: *660 { + a: 4,0,4,4.125,0,4,4,10,4,4.25,3,4,5,0,4,4.75,3,4,5,10,4,4.25,4,4,4.75,4,4,4.25,7,4,4.75,7,4,4.25,8.054092,4,4.75,8.054092,4,5,10,4,5,0,4,5,10,5,5,0,5,5,0,-4,5,0,-5,4.125,0,-4,4,0,-5,4,0,-4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,5,0,5,5,0,4,4,0,5,4.125,0,4,4,0,4,5,10,4,5,10,5,4,10,4,4,10,5,4,0,4,4,10,4,4,0,5,4,10,5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,5,4,0,5,5,10,5,4,10,5,4.25,10,1,4.25,10,2.054093,4.25,7.75,1.75,4.25,8.540569,2.54057,4.25,7,4,4.25,8.054092,4,4.75,7,4,4.75,7.75,1.75,4.25,7,4,4.25,7.75,1.75,4.75,10,1,4.75,10,2.054093,4.25,10,1,4.25,10,2.054093,4.75,10,1,4.75,7.75,1.75,4.75,10,2.054093,4.75,8.540569,2.54057,4.75,7,4,4.75,8.054092,4,4.25,7.75,1.75,4.75,7.75,1.75,4.25,10,1,4.75,10,1,4.75,8.540569,2.54057,4.75,8.054092,4,4.25,8.540569,2.54057,4.25,8.054092,4,4.75,8.540569,2.54057,4.25,8.540569,2.54057,4.75,10,2.054093,4.25,10,2.054093,4.25,8.540569,-2.54057,4.75,8.540569,-2.54057,4.25,10,-2.054093,4.75,10,-2.054093,4.75,10,-2.054093,4.75,10,-1,4.25,10,-2.054093,4.25,10,-1,4.25,7,-4,4.25,8.054092,-4,4.25,7.75,-1.75,4.25,8.540569,-2.54057,4.25,10,-2.054093,4.25,10,-1,4.75,7.75,-1.75,4.75,7,-4,4.25,7.75,-1.75,4.25,7,-4,4.75,8.054092,-4,4.75,8.540569,-2.54057,4.25,8.054092,-4,4.25,8.540569,-2.54057,4.75,8.054092,-4,4.75,7,-4,4.75,8.540569,-2.54057,4.75,7.75,-1.75,4.75,10,-2.054093,4.75,10,-1,4.75,7.75,-1.75,4.25,7.75,-1.75,4.75,10,-1,4.25,10,-1,4.375,8.177902E-15,-2.857143,4.375,3,-2.857143,4.375,8.177902E-15,-1.714286,4.375,3,-1.714286,4.625,8.177902E-15,-1.714286,4.375,8.177902E-15,-1.714286,4.625,3,-1.714286,4.375,3,-1.714286,4.375,8.177902E-15,-2.857143,4.625,8.177902E-15,-2.857143,4.375,3,-2.857143,4.625,3,-2.857143,4.625,8.177902E-15,0.5714285,4.375,8.177902E-15,0.5714285,4.625,3,0.5714285,4.375,3,0.5714285,4.625,8.177902E-15,2.857143,4.375,8.177902E-15,2.857143,4.625,3,2.857143,4.375,3,2.857143,4.625,8.177902E-15,-1.714286,4.625,8.177902E-15,-2.857143,4.375,8.177902E-15,-1.714286,4.375,8.177902E-15,-2.857143,4.625,8.177902E-15,2.857143,4.625,8.177902E-15,1.714286,4.375,8.177902E-15,2.857143,4.375,8.177902E-15,1.714286,4.375,8.177902E-15,-0.5714285,4.625,8.177902E-15,-0.5714285,4.375,3,-0.5714285,4.625,3,-0.5714285,4.625,8.177902E-15,0.5714285,4.625,8.177902E-15,-0.5714285,4.375,8.177902E-15,0.5714285,4.375,8.177902E-15,-0.5714285,4.375,8.177902E-15,1.714286,4.375,3,1.714286,4.375,8.177902E-15,2.857143,4.375,3,2.857143,4.625,3,1.714286,4.625,8.177902E-15,1.714286,4.625,3,2.857143,4.625,8.177902E-15,2.857143,4.375,8.177902E-15,1.714286,4.625,8.177902E-15,1.714286,4.375,3,1.714286,4.625,3,1.714286,4.625,3,-2.857143,4.625,8.177902E-15,-2.857143,4.625,3,-1.714286,4.625,8.177902E-15,-1.714286,4.625,3,-0.5714285,4.625,8.177902E-15,-0.5714285,4.625,3,0.5714285,4.625,8.177902E-15,0.5714285,4.375,8.177902E-15,-0.5714285,4.375,3,-0.5714285,4.375,8.177902E-15,0.5714285,4.375,3,0.5714285,4.125,0,-4,4.75,3,-4,5,0,-4,4,0,-4,5,10,-4,4.25,3,-4,4,10,-4,4.75,4,-4,4.25,4,-4,4.75,7,-4,4.25,7,-4,4.75,8.054092,-4,4.25,8.054092,-4,4.75,4,-4,4.75,3,-4,4.75,4,4,4.75,3,4,4.25,3,-4,4.25,4,-4,4.25,3,4,4.25,4,4,4.75,4,-4,4.75,4,4,4.25,4,-4,4.25,4,4,4.375,3,2.857143,4.25,3,4,4.625,3,2.857143,4.375,3,1.714286,4.75,3,4,4.75,3,-4,4.625,3,-2.857143,4.625,3,1.714286,4.25,3,-4,4.625,3,0.5714285,4.375,3,0.5714285,4.625,3,-0.5714285,4.375,3,-0.5714285,4.375,3,-2.857143,4.625,3,-1.714286,4.375,3,-1.714286 + } + PolygonVertexIndex: *432 { + a: 0,2,-2,3,1,-3,4,1,-4,3,5,-5,6,4,-6,7,3,-3,8,6,-6,8,7,-10,9,7,-3,9,10,-9,10,6,-9,11,9,-3,12,6,-11,12,11,-3,2,6,-13,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,20,-20,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,29,-29,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,58,-58,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,70,-73,74,73,-73,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,98,-98,100,99,-98,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,112,-112,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,145,-145,146,144,-146,147,149,-149,150,148,-150,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,169,-169,170,168,-170,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,179,-181,183,180,-182,180,184,-183,185,182,-185,186,180,-184,187,185,-185,187,186,-189,188,186,-184,188,189,-188,189,185,-188,190,188,-184,191,185,-190,191,190,-184,183,185,-192,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,204,-206,205,206,-209,209,208,-207,206,210,-210,211,210,-207,212,209,-211,211,207,-214,213,210,-212,214,213,-208,214,207,-206,215,210,-214,216,214,-206,217,212,-211,205,212,-218,218,210,-216,215,216,-219,217,219,-206,219,218,-217,219,216,-206 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1296 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.9486833,-0.3162278,0,-0.9486833,-0.3162278,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.9486833,-0.3162278,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,-0.7071068,0,-0.3162278,-0.9486833,0,-0.7071068,-0.7071068,0,-0.3162278,-0.9486833,0,-0.7071068,-0.7071068,0,-0.3162278,-0.9486833,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.3162278,0.9486833,0,0.7071068,0.7071068,0,0.3162278,0.9486833,0,0.7071068,0.7071068,0,0.3162278,0.9486833,0,0.7071068,-0.7071068,0,0.3162278,-0.9486833,0,0.7071068,-0.7071068,0,0.3162278,-0.9486833,0,0.7071068,-0.7071068,0,0.3162278,-0.9486833,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.7071068,0.7071068,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.9486833,-0.3162278,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,0.7071068,0,-0.3162278,0.9486833,0,-0.7071068,0.7071068,0,-0.3162278,0.9486833,0,-0.7071068,0.7071068,0,-0.3162278,0.9486833,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *440 { + a: -15.74803,6.929483E-15,-16.24016,6.929483E-15,-15.74803,39.37008,-16.73228,11.81102,-19.68504,6.929483E-15,-18.70079,11.81102,-19.68504,39.37008,-16.73228,15.74803,-18.70079,15.74803,-16.73228,27.55906,-18.70079,27.55906,-16.73228,31.70903,-18.70079,31.70903,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,-15.74803,19.68504,-19.68504,16.24016,-15.74803,15.74803,-19.68504,15.74803,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,16.24016,15.74803,15.74803,15.74803,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,3.937008,39.37008,8.086979,39.37008,6.889764,30.51181,10.00224,33.62429,15.74803,27.55906,15.74803,31.70903,-18.70079,-6.224956,-18.70079,3.112478,-16.73228,-6.224956,-16.73228,3.112478,-18.70079,3.937008,-18.70079,8.086979,-16.73228,3.937008,-16.73228,8.086979,-3.937008,39.37008,-6.889764,30.51181,-8.086979,39.37008,-10.00224,33.62429,-15.74803,27.55906,-15.74803,31.70903,-16.73228,26.76731,-18.70079,26.76731,-16.73228,36.10474,-18.70079,36.10474,18.70079,1.143974,18.70079,-4.91262,16.73228,1.143974,16.73228,-4.91262,18.70079,28.73582,16.73228,28.73582,18.70079,34.79241,16.73228,34.79241,-16.73228,28.73582,-18.70079,28.73582,-16.73228,34.79241,-18.70079,34.79241,-18.70079,-8.086979,-18.70079,-3.937008,-16.73228,-8.086979,-16.73228,-3.937008,-15.74803,27.55906,-15.74803,31.70903,-6.889764,30.51181,-10.00224,33.62429,-8.086979,39.37008,-3.937008,39.37008,18.70079,3.112478,18.70079,-6.224956,16.73228,3.112478,16.73228,-6.224956,-18.70079,-4.91262,-18.70079,1.143974,-16.73228,-4.91262,-16.73228,1.143974,15.74803,31.70903,15.74803,27.55906,10.00224,33.62429,6.889764,30.51181,8.086979,39.37008,3.937008,39.37008,18.70079,26.76731,16.73228,26.76731,18.70079,36.10474,16.73228,36.10474,-11.24859,3.219647E-14,-11.24859,11.81102,-6.749156,3.219647E-14,-6.749156,11.81102,18.20866,3.219647E-14,17.22441,3.219647E-14,18.20866,11.81102,17.22441,11.81102,-17.22441,3.219647E-14,-18.20866,3.219647E-14,-17.22441,11.81102,-18.20866,11.81102,18.20866,3.219647E-14,17.22441,3.219647E-14,18.20866,11.81102,17.22441,11.81102,18.20866,3.219647E-14,17.22441,3.219647E-14,18.20866,11.81102,17.22441,11.81102,18.20866,-6.749156,18.20866,-11.24859,17.22441,-6.749156,17.22441,-11.24859,18.20866,11.24859,18.20866,6.749156,17.22441,11.24859,17.22441,6.749156,-17.22441,3.219647E-14,-18.20866,3.219647E-14,-17.22441,11.81102,-18.20866,11.81102,18.20866,2.249719,18.20866,-2.249719,17.22441,2.249719,17.22441,-2.249719,6.749156,3.219647E-14,6.749156,11.81102,11.24859,3.219647E-14,11.24859,11.81102,-6.749156,11.81102,-6.749156,3.219647E-14,-11.24859,11.81102,-11.24859,3.219647E-14,-17.22441,3.219647E-14,-18.20866,3.219647E-14,-17.22441,11.81102,-18.20866,11.81102,11.24859,11.81102,11.24859,3.219647E-14,6.749156,11.81102,6.749156,3.219647E-14,2.249719,11.81102,2.249719,3.219647E-14,-2.249719,11.81102,-2.249719,3.219647E-14,-2.249719,3.219647E-14,-2.249719,11.81102,2.249719,3.219647E-14,2.249719,11.81102,16.24016,-6.929483E-15,18.70079,11.81102,19.68504,-6.929483E-15,15.74803,-6.929483E-15,19.68504,39.37008,16.73228,11.81102,15.74803,39.37008,18.70079,15.74803,16.73228,15.74803,18.70079,27.55906,16.73228,27.55906,18.70079,31.70903,16.73228,31.70903,15.74803,15.74803,15.74803,11.81102,-15.74803,15.74803,-15.74803,11.81102,-15.74803,11.81102,-15.74803,15.74803,15.74803,11.81102,15.74803,15.74803,-18.70079,-15.74803,-18.70079,15.74803,-16.73228,-15.74803,-16.73228,15.74803,17.22441,11.24859,16.73228,15.74803,18.20866,11.24859,17.22441,6.749156,18.70079,15.74803,18.70079,-15.74803,18.20866,-11.24859,18.20866,6.749156,16.73228,-15.74803,18.20866,2.249719,17.22441,2.249719,18.20866,-2.249719,17.22441,-2.249719,17.22441,-11.24859,18.20866,-6.749156,17.22441,-6.749156 + } + UVIndex: *432 { + a: 0,2,1,3,1,2,4,1,3,3,5,4,6,4,5,7,3,2,8,6,5,8,7,9,9,7,2,9,10,8,10,6,8,11,9,2,12,6,10,12,11,2,2,6,12,13,15,14,16,14,15,17,19,18,20,18,19,21,20,19,22,24,23,25,23,24,26,28,27,29,27,28,30,29,28,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,58,57,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,70,72,74,73,72,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,98,97,100,99,97,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,112,111,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,142,140,141,143,145,144,146,144,145,147,149,148,150,148,149,151,153,152,154,152,153,155,157,156,158,156,157,159,161,160,162,160,161,163,165,164,166,164,165,167,169,168,170,168,169,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,179,180,183,180,181,180,184,182,185,182,184,186,180,183,187,185,184,187,186,188,188,186,183,188,189,187,189,185,187,190,188,183,191,185,189,191,190,183,183,185,191,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,204,205,205,206,208,209,208,206,206,210,209,211,210,206,212,209,210,211,207,213,213,210,211,214,213,207,214,207,205,215,210,213,216,214,205,217,212,210,205,212,217,218,210,215,215,216,218,217,219,205,219,218,216,219,216,205 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *144 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh balconyWallFence, Model::RootNode + C: "OO",4699022576582869042,0 + + ;Geometry::, Model::Mesh balconyWallFence + C: "OO",4802158714933696408,4699022576582869042 + + ;Material::wood, Model::Mesh balconyWallFence + C: "OO",7178,4699022576582869042 + + ;Material::woodDark, Model::Mesh balconyWallFence + C: "OO",7186,4699022576582869042 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWallFence.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWallFence.fbx.import new file mode 100644 index 0000000..74c83ee --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWallFence.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cp5m6y1vo27rk" +path="res://.godot/imported/balconyWallFence.fbx-a68f1ba3fa09b29b5f7dd6eaa9134e4f.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/balconyWallFence.fbx" +dest_files=["res://.godot/imported/balconyWallFence.fbx-a68f1ba3fa09b29b5f7dd6eaa9134e4f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerGreen.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerGreen.fbx new file mode 100644 index 0000000..31df369 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerGreen.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 376 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bannerGreen.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bannerGreen.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4629769787138331668, "Model::bannerGreen", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5133887149910495776, "Geometry::", "Mesh" { + Vertices: *360 { + a: 3.75,9.499999,1.2,3.75,10,1.2,3.75,9.499999,2,3.75,10,2,3.75,9.499999,-0.4,3.75,10,-0.4,3.75,9.499999,0.4,3.75,10,0.4,4.25,10,1.2,4.25,10,2,3.75,10,1.2,3.75,10,2,4.25,10,-2,4.25,10,-1.2,3.75,10,-2,3.75,10,-1.2,3.75,10,-2,3.75,10,-1.2,3.75,9.499999,-2,3.75,9.499999,-1.2,4.25,10,-0.4,4.25,10,0.4,3.75,10,-0.4,3.75,10,0.4,4,9.499999,2,4,8.903893,2,4,9.499999,1.2,4,1.60649,2,4,8.903893,1.2,4,2.863111,1.2,4,3.4236,-2.165734E-14,4,2.540638,-2.165734E-14,4,2.863111,-1.2,4,1.60649,-2,4,8.903893,-1.2,4,9.499999,-1.2,4,9.499999,-2,4,8.903893,-2,4,9.499999,1.2,4,8.903893,2,4,9.499999,2,4,1.60649,2,4,8.903893,1.2,4,2.863111,1.2,4,3.4236,-2.165734E-14,4,2.540638,-2.165734E-14,4,2.863111,-1.2,4,1.60649,-2,4,8.903893,-1.2,4,9.499999,-1.2,4,9.499999,-2,4,8.903893,-2,3.875,9.625,-2.5,4.125,9.625,-2.5,3.875,9.875,-2.5,4.125,9.875,-2.5,4.25,9.499999,-2,4.25,9.499999,2,4.25,10,-2,4.25,10,-1.2,4.25,10,-0.4,4.25,10,0.4,4.25,10,1.2,4.25,10,2,4.25,9.499999,2,4.25,9.499999,-2,4,9.499999,2,4,9.499999,-2,3.75,9.499999,2,3.75,9.499999,-2,3.75,9.499999,1.2,3.75,9.499999,0.4,3.75,9.499999,-0.4,3.75,9.499999,-1.2,4.125,9.625,2.5,3.875,9.625,2.5,4.125,9.875,2.5,3.875,9.875,2.5,3.875,9.875,-2.5,3.75,10,-2,3.875,9.625,-2.5,3.75,9.499999,-2,4.125,9.625,-2.5,4.25,9.499999,-2,4.125,9.875,-2.5,4.25,10,-2,4.25,10,-2,3.75,10,-2,4.125,9.875,-2.5,3.875,9.875,-2.5,4.25,9.499999,-2,4.125,9.625,-2.5,4,9.499999,-2,3.875,9.625,-2.5,3.75,9.499999,-2,4.25,9.499999,2,4,9.499999,2,4.125,9.625,2.5,3.875,9.625,2.5,3.75,9.499999,2,4.25,10,2,4.125,9.875,2.5,3.75,10,2,3.875,9.875,2.5,3.75,9.499999,2,3.75,10,2,3.875,9.625,2.5,3.875,9.875,2.5,4.25,9.499999,2,4.125,9.625,2.5,4.25,10,2,4.125,9.875,2.5,4,8.903893,0.4,4,9.499999,0.4,4,9.499999,-0.4,4,8.903893,-0.4,4,8.903893,0.4,4,9.499999,0.4,4,9.499999,-0.4,4,8.903893,-0.4 + } + PolygonVertexIndex: *282 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,25,26,-28,26,28,-28,28,29,-28,29,30,-28,27,30,-32,30,32,-32,31,32,-34,34,33,-33,34,35,-34,35,36,-34,37,33,-37,38,40,-40,38,39,-42,42,38,-42,43,42,-42,44,43,-42,44,41,-46,46,44,-46,46,45,-48,47,48,-47,49,48,-48,50,49,-48,47,51,-51,21,23,-9,10,8,-24,6,0,-8,1,7,-1,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,57,-61,62,57,-62,63,57,-63,64,66,-66,67,65,-67,68,67,-67,69,67,-69,70,69,-69,71,69,-71,72,69,-72,73,69,-73,74,76,-76,77,75,-77,19,4,-18,5,17,-5,13,15,-21,22,20,-16,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,93,-93,95,97,-97,98,96,-98,99,96,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,28,112,-30,30,29,-113,112,113,-31,113,114,-31,114,115,-31,30,115,-33,34,32,-116,116,42,-44,43,44,-117,117,116,-45,118,117,-45,119,118,-45,119,44,-47,46,48,-120 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *846 { + a: -1,0,0,-0.9936895,0,0.1121652,-1,0,0,-0.9936895,0,0.1121652,-1,0,0,-0.9936895,0,0.1121652,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,0.9936895,0.1121652,0,0.9936895,0.1121652,0,0.9936895,0.1121652,0,1,0,0,0.9936895,-0.1121652,0,0.9936895,-0.1121652,0,1,0,0,1,0,0,1,0,0,0.9936895,-0.1121652,-0.9936895,0,-0.1121652,-0.9936895,0,-0.1121652,-1,0,0,-1,0,0,-1,0,0,-0.9936895,0,-0.1121652,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9936895,0,-0.1121652,0.9936895,0,-0.1121652,0.9936895,0,0.1121652,1,0,0,0.9936895,0,0.1121652,0.9936895,0,-0.1121652,1,0,0,0.9936895,0,0.1121652,1,0,0,1,0,0,0.9936895,0,0.1121652,1,0,0,1,0,0,0.9936895,0,0.1121652,1,0,0,0.9936895,0,0.1121652,0.9936895,0,0.1121652,1,0,0,0,-0.9936895,0.1121652,0,-0.9925076,0.1221832,0,-0.9936895,-0.1121652,0,-0.9925076,-0.1221833,0,-0.9936895,-0.1121652,0,-0.9925076,0.1221832,0,-0.9936895,0.1121652,0,-0.9925076,-0.1221833,0,-0.9925076,0.1221832,0,-0.9936895,-0.1121652,0,-0.9925076,-0.1221833,0,-0.9936895,0.1121652,0,-1,0,0,-0.9936895,-0.1121652,0,-0.9936895,0.1121652,0,-1,0,0,-0.9936895,-0.1121652,0,-1,0,0,-1,0,0,-0.9936895,-0.1121652,0,-1,0,0,-1,0,0,-0.9936895,-0.1121652,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9701425,0,-0.2425357,-0.9701425,0,-0.2425357,-0.9936895,0,-0.1121652,-0.9936895,0,-0.1121652,-0.9936895,0,-0.1121652,-0.9701425,0,-0.2425357,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9936895,0,-0.1121652,0.9936895,0,-0.1121652,0.9936895,0,-0.1121652,0.9701425,0,-0.2425356,0,0.9936895,-0.1121652,0,0.9701425,-0.2425356,0,0.9936895,-0.1121652,0,0.9701425,-0.2425356,0,0.9936895,-0.1121652,0,0.9701425,-0.2425356,0,-0.9936895,-0.1121652,0,-0.9925076,-0.1221833,0,-0.9701425,-0.2425356,0,-0.9701425,-0.2425356,0,-0.9701425,-0.2425356,0,-0.9925076,-0.1221833,0,-0.9936895,-0.1121652,0,-0.9701425,-0.2425356,0,-0.9925076,-0.1221833,0,-0.9936895,0.1121652,0,-0.9701425,0.2425356,0,-0.9925076,0.1221832,0,-0.9701425,0.2425356,0,-0.9925076,0.1221832,0,-0.9701425,0.2425356,0,-0.9936895,0.1121652,0,-0.9925076,0.1221832,0,-0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9936895,0.1121652,0,0.9701425,0.2425357,0,0.9701425,0.2425357,0,0.9701425,0.2425357,0,0.9936895,0.1121652,-0.9936895,0,0.1121652,-0.9701425,0,0.2425356,-0.9936895,0,0.1121652,-0.9701425,0,0.2425356,-0.9936895,0,0.1121652,-0.9701425,0,0.2425356,0.9936895,0,0.1121652,0.9936895,0,0.1121652,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9936895,0,0.1121652,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: 4.72441,37.40157,4.72441,39.37008,7.874016,37.40157,7.874016,39.37008,-1.574803,37.40157,-1.574803,39.37008,1.574803,37.40157,1.574803,39.37008,-16.73228,4.724409,-16.73228,7.874015,-14.76378,4.724409,-14.76378,7.874015,-16.73228,-7.874016,-16.73228,-4.72441,-14.76378,-7.874016,-14.76378,-4.72441,-7.874016,39.37008,-4.72441,39.37008,-7.874016,37.40157,-4.72441,37.40157,-16.73228,-1.574804,-16.73228,1.574803,-14.76378,-1.574804,-14.76378,1.574803,7.874016,37.40157,7.874016,35.0547,4.72441,37.40157,7.874016,6.324762,4.72441,35.0547,4.72441,11.27209,-8.327358E-14,13.47874,-8.327358E-14,10.00251,-4.72441,11.27209,-7.874016,6.324762,-4.72441,35.0547,-4.72441,37.40157,-7.874016,37.40157,-7.874016,35.0547,4.72441,37.40157,7.874016,35.0547,7.874016,37.40157,7.874016,6.324762,4.72441,35.0547,4.72441,11.27209,-8.327358E-14,13.47874,-8.327358E-14,10.00251,-4.72441,11.27209,-7.874016,6.324762,-4.72441,35.0547,-4.72441,37.40157,-7.874016,37.40157,-7.874016,35.0547,-15.25591,37.8937,-16.24016,37.8937,-15.25591,38.87795,-16.24016,38.87795,7.874016,37.40157,-7.874016,37.40157,7.874016,39.37008,4.72441,39.37008,1.574803,39.37008,-1.574803,39.37008,-4.72441,39.37008,-7.874016,39.37008,16.73228,7.874015,16.73228,-7.874016,15.74803,7.874015,15.74803,-7.874016,14.76378,7.874015,14.76378,-7.874016,14.76378,4.724409,14.76378,1.574803,14.76378,-1.574803,14.76378,-4.72441,16.24016,37.8937,15.25591,37.8937,16.24016,38.87795,15.25591,38.87795,-13.24875,38.87795,-11.21966,39.37008,-13.24875,37.8937,-11.21966,37.40157,5.60983,37.8937,3.580743,37.40157,5.60983,38.87795,3.580743,39.37008,-16.73228,1.909729,-14.76378,1.909729,-16.24016,-0.1193586,-15.25591,-0.1193586,-16.73228,16.71013,-16.24016,18.73922,-15.74803,16.71013,-15.25591,18.73922,-14.76378,16.71013,16.73228,16.71013,15.74803,16.71013,16.24016,18.73922,15.25591,18.73922,14.76378,16.71013,16.73228,1.90973,16.24016,-0.1193576,14.76378,1.90973,15.25591,-0.1193576,11.21966,37.40157,11.21966,39.37008,13.24875,37.8937,13.24875,38.87795,-3.580743,37.40157,-5.60983,37.8937,-3.580743,39.37008,-5.60983,38.87795,1.574803,35.0547,1.574803,37.40157,-1.574803,37.40157,-1.574803,35.0547,1.574803,35.0547,1.574803,37.40157,-1.574803,37.40157,-1.574803,35.0547 + } + UVIndex: *282 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,25,26,27,26,28,27,28,29,27,29,30,27,27,30,31,30,32,31,31,32,33,34,33,32,34,35,33,35,36,33,37,33,36,38,40,39,38,39,41,42,38,41,43,42,41,44,43,41,44,41,45,46,44,45,46,45,47,47,48,46,49,48,47,50,49,47,47,51,50,21,23,8,10,8,23,6,0,7,1,7,0,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,57,60,62,57,61,63,57,62,64,66,65,67,65,66,68,67,66,69,67,68,70,69,68,71,69,70,72,69,71,73,69,72,74,76,75,77,75,76,19,4,17,5,17,4,13,15,20,22,20,15,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,93,92,95,97,96,98,96,97,99,96,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,28,112,29,30,29,112,112,113,30,113,114,30,114,115,30,30,115,32,34,32,115,116,42,43,43,44,116,117,116,44,118,117,44,119,118,44,119,44,46,46,48,119 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *94 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bannerGreen, Model::RootNode + C: "OO",4629769787138331668,0 + + ;Geometry::, Model::Mesh bannerGreen + C: "OO",5133887149910495776,4629769787138331668 + + ;Material::roof, Model::Mesh bannerGreen + C: "OO",7172,4629769787138331668 + + ;Material::wood, Model::Mesh bannerGreen + C: "OO",7178,4629769787138331668 + + ;Material::roofLight, Model::Mesh bannerGreen + C: "OO",7182,4629769787138331668 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerGreen.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerGreen.fbx.import new file mode 100644 index 0000000..b7a0f7b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerGreen.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bky4s0e18ap11" +path="res://.godot/imported/bannerGreen.fbx-af98aba154f80c18b7faa98a558ca7d0.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerGreen.fbx" +dest_files=["res://.godot/imported/bannerGreen.fbx-af98aba154f80c18b7faa98a558ca7d0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerRed.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerRed.fbx new file mode 100644 index 0000000..8a0c036 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerRed.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 420 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bannerRed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bannerRed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5432053407052030225, "Model::bannerRed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5471630036326971581, "Geometry::", "Mesh" { + Vertices: *348 { + a: 3.75,9.499999,1.2,3.75,10,1.2,3.75,9.499999,2,3.75,10,2,3.75,9.499999,-0.4,3.75,10,-0.4,3.75,9.499999,0.4,3.75,10,0.4,4.25,10,1.2,4.25,10,2,3.75,10,1.2,3.75,10,2,4.25,10,-2,4.25,10,-1.2,3.75,10,-2,3.75,10,-1.2,3.75,10,-2,3.75,10,-1.2,3.75,9.499999,-2,3.75,9.499999,-1.2,4.25,10,-0.4,4.25,10,0.4,3.75,10,-0.4,3.75,10,0.4,4,9.499999,2,4,2.906489,2,4,9.499999,1.2,4,8.903893,1.2,4,3.340638,1.2,4,2.560638,-1.443823E-14,4,1.60649,-1.443823E-14,4,3.340638,-1.2,4,2.906489,-2,4,8.903893,-1.2,4,9.499999,-1.2,4,9.499999,-2,4,9.499999,1.2,4,2.906489,2,4,9.499999,2,4,8.903893,1.2,4,3.340638,1.2,4,2.560638,-1.443823E-14,4,1.60649,-1.443823E-14,4,3.340638,-1.2,4,2.906489,-2,4,8.903893,-1.2,4,9.499999,-1.2,4,9.499999,-2,3.875,9.625,-2.5,4.125,9.625,-2.5,3.875,9.875,-2.5,4.125,9.875,-2.5,4.25,9.499999,-2,4.25,9.499999,2,4.25,10,-2,4.25,10,-1.2,4.25,10,-0.4,4.25,10,0.4,4.25,10,1.2,4.25,10,2,4.25,9.499999,2,4.25,9.499999,-2,4,9.499999,2,4,9.499999,-2,3.75,9.499999,2,3.75,9.499999,-2,3.75,9.499999,1.2,3.75,9.499999,0.4,3.75,9.499999,-0.4,3.75,9.499999,-1.2,4.125,9.625,2.5,3.875,9.625,2.5,4.125,9.875,2.5,3.875,9.875,2.5,3.875,9.875,-2.5,3.75,10,-2,3.875,9.625,-2.5,3.75,9.499999,-2,4.125,9.625,-2.5,4.25,9.499999,-2,4.125,9.875,-2.5,4.25,10,-2,4.25,10,-2,3.75,10,-2,4.125,9.875,-2.5,3.875,9.875,-2.5,4.25,9.499999,-2,4.125,9.625,-2.5,4,9.499999,-2,3.875,9.625,-2.5,3.75,9.499999,-2,4.25,9.499999,2,4,9.499999,2,4.125,9.625,2.5,3.875,9.625,2.5,3.75,9.499999,2,4.25,10,2,4.125,9.875,2.5,3.75,10,2,3.875,9.875,2.5,3.75,9.499999,2,3.75,10,2,3.875,9.625,2.5,3.875,9.875,2.5,4.25,9.499999,2,4.125,9.625,2.5,4.25,10,2,4.125,9.875,2.5,4,8.903893,0.4,4,9.499999,0.4,4,9.499999,-0.4,4,8.903893,-0.4,4,8.903893,0.4,4,9.499999,0.4,4,9.499999,-0.4,4,8.903893,-0.4 + } + PolygonVertexIndex: *270 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,26,27,-26,27,28,-26,28,29,-26,25,29,-31,29,31,-31,30,31,-33,33,32,-32,33,34,-33,35,32,-35,36,38,-38,39,36,-38,40,39,-38,41,40,-38,41,37,-43,43,41,-43,43,42,-45,44,45,-44,46,45,-45,44,47,-47,21,23,-9,10,8,-24,6,0,-8,1,7,-1,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,53,-56,57,53,-57,58,53,-58,59,53,-59,60,62,-62,63,61,-63,64,63,-63,65,63,-65,66,65,-65,67,65,-67,68,65,-68,69,65,-69,70,72,-72,73,71,-73,19,4,-18,5,17,-5,13,15,-21,22,20,-16,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,89,-89,91,93,-93,94,92,-94,95,92,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,27,108,-29,29,28,-109,108,109,-30,109,110,-30,110,111,-30,29,111,-32,33,31,-112,112,39,-41,40,41,-113,113,112,-42,114,113,-42,115,114,-42,115,41,-44,43,45,-116 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *810 { + a: -1,0,0,-0.9936895,0,0.1121652,-1,0,0,-0.9936895,0,0.1121652,-1,0,0,-0.9936895,0,0.1121652,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,0.9936895,0.1121652,0,0.9936895,0.1121652,0,0.9936895,0.1121652,0,1,0,0,0.9936895,-0.1121652,0,0.9936895,-0.1121652,0,1,0,0,1,0,0,1,0,0,0.9936895,-0.1121652,-0.9936895,0,-0.1121652,-0.9936895,0,-0.1121652,-1,0,0,-1,0,0,-1,0,0,-0.9936895,0,-0.1121652,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9936895,0,-0.1121652,0.9936895,0,-0.1121652,0.9936895,0,0.1121652,1,0,0,0.9936895,0,0.1121652,0.9936895,0,-0.1121652,1,0,0,0.9936895,0,0.1121652,1,0,0,1,0,0,0.9936895,0,0.1121652,1,0,0,1,0,0,0.9936895,0,0.1121652,1,0,0,0.9936895,0,0.1121652,0.9936895,0,0.1121652,1,0,0,0,-0.9936895,0.1121652,0,-0.9925076,0.1221832,0,-0.9936895,-0.1121652,0,-0.9925076,-0.1221833,0,-0.9936895,-0.1121652,0,-0.9925076,0.1221832,0,-0.9936895,0.1121652,0,-0.9925076,-0.1221833,0,-0.9925076,0.1221832,0,-0.9936895,-0.1121652,0,-0.9925076,-0.1221833,0,-0.9936895,0.1121652,0,-1,0,0,-0.9936895,-0.1121652,0,-0.9936895,0.1121652,0,-1,0,0,-0.9936895,-0.1121652,0,-1,0,0,-1,0,0,-0.9936895,-0.1121652,0,-1,0,0,-1,0,0,-0.9936895,-0.1121652,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9701425,0,-0.2425357,-0.9701425,0,-0.2425357,-0.9936895,0,-0.1121652,-0.9936895,0,-0.1121652,-0.9936895,0,-0.1121652,-0.9701425,0,-0.2425357,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9936895,0,-0.1121652,0.9936895,0,-0.1121652,0.9936895,0,-0.1121652,0.9701425,0,-0.2425356,0,0.9936895,-0.1121652,0,0.9701425,-0.2425356,0,0.9936895,-0.1121652,0,0.9701425,-0.2425356,0,0.9936895,-0.1121652,0,0.9701425,-0.2425356,0,-0.9936895,-0.1121652,0,-0.9925076,-0.1221833,0,-0.9701425,-0.2425356,0,-0.9701425,-0.2425356,0,-0.9701425,-0.2425356,0,-0.9925076,-0.1221833,0,-0.9936895,-0.1121652,0,-0.9701425,-0.2425356,0,-0.9925076,-0.1221833,0,-0.9936895,0.1121652,0,-0.9701425,0.2425356,0,-0.9925076,0.1221832,0,-0.9701425,0.2425356,0,-0.9925076,0.1221832,0,-0.9701425,0.2425356,0,-0.9936895,0.1121652,0,-0.9925076,0.1221832,0,-0.9701425,0.2425356,0,0.9936895,0.1121652,0,0.9936895,0.1121652,0,0.9701425,0.2425357,0,0.9701425,0.2425357,0,0.9701425,0.2425357,0,0.9936895,0.1121652,-0.9936895,0,0.1121652,-0.9701425,0,0.2425356,-0.9936895,0,0.1121652,-0.9701425,0,0.2425356,-0.9936895,0,0.1121652,-0.9701425,0,0.2425356,0.9936895,0,0.1121652,0.9936895,0,0.1121652,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9936895,0,0.1121652,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *232 { + a: 4.72441,37.40157,4.72441,39.37008,7.874016,37.40157,7.874016,39.37008,-1.574803,37.40157,-1.574803,39.37008,1.574803,37.40157,1.574803,39.37008,-16.73228,4.724409,-16.73228,7.874015,-14.76378,4.724409,-14.76378,7.874015,-16.73228,-7.874016,-16.73228,-4.72441,-14.76378,-7.874016,-14.76378,-4.72441,-7.874016,39.37008,-4.72441,39.37008,-7.874016,37.40157,-4.72441,37.40157,-16.73228,-1.574804,-16.73228,1.574803,-14.76378,-1.574804,-14.76378,1.574803,7.874016,37.40157,7.874016,11.44287,4.72441,37.40157,4.72441,35.0547,4.72441,13.15212,-5.684342E-14,10.08125,-5.684342E-14,6.324762,-4.72441,13.15212,-7.874016,11.44287,-4.72441,35.0547,-4.72441,37.40157,-7.874016,37.40157,4.72441,37.40157,7.874016,11.44287,7.874016,37.40157,4.72441,35.0547,4.72441,13.15212,-5.684342E-14,10.08125,-5.684342E-14,6.324762,-4.72441,13.15212,-7.874016,11.44287,-4.72441,35.0547,-4.72441,37.40157,-7.874016,37.40157,-15.25591,37.8937,-16.24016,37.8937,-15.25591,38.87795,-16.24016,38.87795,7.874016,37.40157,-7.874016,37.40157,7.874016,39.37008,4.72441,39.37008,1.574803,39.37008,-1.574803,39.37008,-4.72441,39.37008,-7.874016,39.37008,16.73228,7.874015,16.73228,-7.874016,15.74803,7.874015,15.74803,-7.874016,14.76378,7.874015,14.76378,-7.874016,14.76378,4.724409,14.76378,1.574803,14.76378,-1.574803,14.76378,-4.72441,16.24016,37.8937,15.25591,37.8937,16.24016,38.87795,15.25591,38.87795,-13.24875,38.87795,-11.21966,39.37008,-13.24875,37.8937,-11.21966,37.40157,5.60983,37.8937,3.580743,37.40157,5.60983,38.87795,3.580743,39.37008,-16.73228,1.909729,-14.76378,1.909729,-16.24016,-0.1193586,-15.25591,-0.1193586,-16.73228,16.71013,-16.24016,18.73922,-15.74803,16.71013,-15.25591,18.73922,-14.76378,16.71013,16.73228,16.71013,15.74803,16.71013,16.24016,18.73922,15.25591,18.73922,14.76378,16.71013,16.73228,1.90973,16.24016,-0.1193576,14.76378,1.90973,15.25591,-0.1193576,11.21966,37.40157,11.21966,39.37008,13.24875,37.8937,13.24875,38.87795,-3.580743,37.40157,-5.60983,37.8937,-3.580743,39.37008,-5.60983,38.87795,1.574803,35.0547,1.574803,37.40157,-1.574803,37.40157,-1.574803,35.0547,1.574803,35.0547,1.574803,37.40157,-1.574803,37.40157,-1.574803,35.0547 + } + UVIndex: *270 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,26,27,25,27,28,25,28,29,25,25,29,30,29,31,30,30,31,32,33,32,31,33,34,32,35,32,34,36,38,37,39,36,37,40,39,37,41,40,37,41,37,42,43,41,42,43,42,44,44,45,43,46,45,44,44,47,46,21,23,8,10,8,23,6,0,7,1,7,0,48,50,49,51,49,50,52,54,53,55,53,54,56,53,55,57,53,56,58,53,57,59,53,58,60,62,61,63,61,62,64,63,62,65,63,64,66,65,64,67,65,66,68,65,67,69,65,68,70,72,71,73,71,72,19,4,17,5,17,4,13,15,20,22,20,15,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,89,88,91,93,92,94,92,93,95,92,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,27,108,28,29,28,108,108,109,29,109,110,29,110,111,29,29,111,31,33,31,111,112,39,40,40,41,112,113,112,41,114,113,41,115,114,41,115,41,43,43,45,115 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *90 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bannerRed, Model::RootNode + C: "OO",5432053407052030225,0 + + ;Geometry::, Model::Mesh bannerRed + C: "OO",5471630036326971581,5432053407052030225 + + ;Material::roofRed, Model::Mesh bannerRed + C: "OO",7188,5432053407052030225 + + ;Material::wood, Model::Mesh bannerRed + C: "OO",7178,5432053407052030225 + + ;Material::roofRedLight, Model::Mesh bannerRed + C: "OO",7190,5432053407052030225 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerRed.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerRed.fbx.import new file mode 100644 index 0000000..5b22c4e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerRed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://2mdrd811tog" +path="res://.godot/imported/bannerRed.fbx-5d1b2642661f96cb66dae13962aeb57d.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/bannerRed.fbx" +dest_files=["res://.godot/imported/bannerRed.fbx-5d1b2642661f96cb66dae13962aeb57d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/blade.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/blade.fbx new file mode 100644 index 0000000..d4d13bf --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/blade.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 489 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "blade.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "blade.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5431592435806337150, "Model::blade", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4702630087275602721, "Geometry::", "Mesh" { + Vertices: *1086 { + a: -0.5549999,4.927,-0.5549999,0.5549999,4.927,-0.5549999,-0.5549999,5.477,-0.5549999,0.5549999,5.477,-0.5549999,0.5549999,5.477,-0.5549999,0.5549999,4.927,-0.5549999,0.5549999,5.477,0.5549999,0.5549999,4.927,0.5549999,-0.5549999,4.927,-0.5549999,-0.5549999,5.477,-0.5549999,-0.5549999,4.927,0.5549999,-0.5549999,5.477,0.5549999,-0.5549999,5.477,0.5549999,-1.54489E-12,5.477,0.5549999,-0.5549999,4.927,0.5549999,-1.573767E-12,4.927,0.5549999,0.5549999,5.477,0.5549999,0.5549999,4.927,0.5549999,-1.313879E-12,9.072028,0.5549999,-1.54489E-12,5.477,0.5549999,-1.313879E-12,9.072028,3.545763,-1.573767E-12,4.927,0.5549999,-1.617082E-12,4.247,0.5549999,-1.617082E-12,4.247,3.545763,-1.313879E-12,9.072028,3.545763,-1.54489E-12,5.477,0.5549999,-1.313879E-12,9.072028,0.5549999,-1.573767E-12,4.927,0.5549999,-1.617082E-12,4.247,0.5549999,-1.617082E-12,4.247,3.545763,-6.93035E-13,19.305,0.5549999,-7.363497E-13,18.625,0.5549999,-6.93035E-13,19.305,3.545763,-7.652261E-13,18.075,0.5549999,-9.817995E-13,14.47703,3.545763,-9.817995E-13,14.47703,0.5549999,-6.93035E-13,19.305,3.545763,-7.363497E-13,18.625,0.5549999,-6.93035E-13,19.305,0.5549999,-7.652261E-13,18.075,0.5549999,-9.817995E-13,14.47703,3.545763,-9.817995E-13,14.47703,0.5549999,-1.010676E-12,14.07203,0.5549999,-1.14062E-12,12.051,0.5549999,-1.010676E-12,14.07203,3.545763,-1.169496E-12,11.501,0.5549999,-1.299441E-12,9.477028,3.545763,-1.299441E-12,9.477028,0.5549999,-1.010676E-12,14.07203,3.545763,-1.14062E-12,12.051,0.5549999,-1.010676E-12,14.07203,0.5549999,-1.169496E-12,11.501,0.5549999,-1.299441E-12,9.477028,3.545763,-1.299441E-12,9.477028,0.5549999,-0.5549999,18.075,-0.5549999,-0.5549999,18.625,-0.5549999,-0.5549999,18.075,0.5549999,-0.5549999,18.625,0.5549999,0.5549999,11.501,0.5549999,-1.169496E-12,11.501,0.5549999,0.5549999,12.051,0.5549999,-1.14062E-12,12.051,0.5549999,-0.5549999,11.501,0.5549999,-0.5549999,12.051,0.5549999,-0.5549999,18.625,0.5549999,-7.363497E-13,18.625,0.5549999,-0.5549999,18.075,0.5549999,-7.652261E-13,18.075,0.5549999,0.5549999,18.625,0.5549999,0.5549999,18.075,0.5549999,-0.5549999,11.501,-0.5549999,0.5549999,11.501,-0.5549999,-0.5549999,12.051,-0.5549999,0.5549999,12.051,-0.5549999,0.5549999,18.625,-0.5549999,0.5549999,18.075,-0.5549999,0.5549999,18.625,0.5549999,0.5549999,18.075,0.5549999,-0.5549999,18.075,-0.5549999,0.5549999,18.075,-0.5549999,-0.5549999,18.625,-0.5549999,0.5549999,18.625,-0.5549999,0.5549999,12.051,-0.5549999,0.5549999,11.501,-0.5549999,0.5549999,12.051,0.5549999,0.5549999,11.501,0.5549999,-0.5549999,11.501,-0.5549999,-0.5549999,12.051,-0.5549999,-0.5549999,11.501,0.5549999,-0.5549999,12.051,0.5549999,0.5549999,4.927,-0.5549999,0.355,4.927,0.355,0.5549999,4.927,0.5549999,-1.573767E-12,4.927,0.5549999,0.355,4.927,-0.355,-0.355,4.927,0.355,-0.5549999,4.927,-0.5549999,-0.5549999,4.927,0.5549999,-0.355,4.927,-0.355,-0.355,5.477,-0.355,-0.5549999,5.477,-0.5549999,0.355,5.477,-0.355,-0.355,5.477,0.355,0.5549999,5.477,-0.5549999,-0.5549999,5.477,0.5549999,0.5549999,5.477,0.5549999,-1.54489E-12,5.477,0.5549999,0.355,5.477,0.355,0.5549999,12.051,0.5549999,0.355,12.051,-0.355,0.5549999,12.051,-0.5549999,-0.5549999,12.051,-0.5549999,0.355,12.051,0.355,-0.355,12.051,-0.355,-1.14062E-12,12.051,0.5549999,-0.355,12.051,0.355,-0.5549999,12.051,0.5549999,0.5549999,11.501,-0.5549999,0.355,11.501,0.355,0.5549999,11.501,0.5549999,-1.169496E-12,11.501,0.5549999,0.355,11.501,-0.355,-0.355,11.501,0.355,-0.5549999,11.501,-0.5549999,-0.5549999,11.501,0.5549999,-0.355,11.501,-0.355,0.5549999,18.625,0.5549999,0.355,18.625,-0.355,0.5549999,18.625,-0.5549999,-0.5549999,18.625,-0.5549999,0.355,18.625,0.355,-0.355,18.625,-0.355,-7.363497E-13,18.625,0.5549999,-0.355,18.625,0.355,-0.5549999,18.625,0.5549999,0.5549999,18.075,-0.5549999,0.355,18.075,0.355,0.5549999,18.075,0.5549999,-7.652261E-13,18.075,0.5549999,0.355,18.075,-0.355,-0.355,18.075,0.355,-0.5549999,18.075,-0.5549999,-0.5549999,18.075,0.5549999,-0.355,18.075,-0.355,0.355,2.5,-0.355,0.355,4.511947E-16,-0.5549999,0.5549999,4.511947E-16,-0.355,0.355,2.5,0.355,0.5549999,-4.511947E-16,0.355,0.355,-4.511947E-16,0.5549999,-0.5549999,4.511947E-16,-0.355,-0.355,4.511947E-16,-0.5549999,-0.355,2.5,-0.355,-0.355,4.511947E-16,0.5549999,-0.5549999,4.511947E-16,0.355,-0.355,2.5,0.355,0.2025,9.072028,3.74875,0.2025,9.072028,0.355,-0.2025,9.072028,3.74875,-0.151875,9.072028,0.355,-0.2025,9.072028,0.355,-0.2025,9.072028,0.355,-0.2025,9.477028,0.355,-0.2025,9.072028,3.74875,-0.2025,9.477028,3.74875,0.2025,9.072028,0.355,0.2025,9.072028,3.74875,0.2025,9.477028,0.355,0.2025,9.477028,3.74875,0.2025,9.072028,3.74875,-0.2025,9.072028,3.74875,0.2025,9.477028,3.74875,-0.2025,9.477028,3.74875,0.2025,9.477028,0.355,0.2025,9.477028,3.74875,-0.2025,9.477028,0.355,-0.2025,9.477028,3.74875,0.355,20,-0.355,0.355,18.625,-0.355,0.355,20,0.355,0.355,18.625,0.355,-0.355,5.477,-0.355,-0.355,11.501,-0.355,-0.355,5.477,0.355,-0.355,11.501,0.355,-0.355,12.051,-0.355,-0.355,18.075,-0.355,-0.355,12.051,0.355,-0.355,18.075,0.355,-0.355,2.5,-0.355,0.355,2.5,-0.355,-0.355,4.927,-0.355,0.355,4.927,-0.355,-0.355,2.5,-0.355,-0.355,4.927,-0.355,-0.355,2.5,0.355,-0.355,4.927,0.355,0.355,18.075,-0.355,0.355,12.051,-0.355,0.355,18.075,0.355,0.355,12.051,0.355,-0.355,18.625,-0.355,-0.355,20,-0.355,-0.355,18.625,0.355,-0.355,20,0.355,0.2025,3.842,0.355,-0.2025,3.842,0.355,-0.151875,3.842,0.355,-0.355,2.5,0.355,0.355,2.5,0.355,-0.355,4.927,0.355,-0.2025,4.247,0.355,0.355,4.927,0.355,0.2025,4.247,0.355,0.2025,14.07203,0.355,-0.2025,14.07203,0.355,-0.151875,14.07203,0.355,-0.355,12.051,0.355,0.355,12.051,0.355,-0.355,18.075,0.355,-0.2025,14.47703,0.355,0.355,18.075,0.355,0.2025,14.47703,0.355,-0.355,18.625,-0.355,0.355,18.625,-0.355,-0.355,20,-0.355,0.355,20,-0.355,-0.355,12.051,-0.355,0.355,12.051,-0.355,-0.355,18.075,-0.355,0.355,18.075,-0.355,0.355,11.501,-0.355,0.355,5.477,-0.355,0.355,11.501,0.355,0.355,5.477,0.355,-0.355,5.477,-0.355,0.355,5.477,-0.355,-0.355,11.501,-0.355,0.355,11.501,-0.355,0.2025,19.305,0.355,-0.2025,19.305,0.355,-0.151875,19.305,0.355,-0.355,18.625,0.355,0.355,18.625,0.355,-0.355,20,0.355,-0.2025,19.71,0.355,0.355,20,0.355,0.2025,19.71,0.355,-0.2025,14.07203,0.355,-0.2025,14.47703,0.355,-0.2025,14.07203,3.74875,-0.2025,14.47703,3.74875,0.2025,14.07203,3.74875,0.2025,14.07203,0.355,-0.2025,14.07203,3.74875,-0.151875,14.07203,0.355,-0.2025,14.07203,0.355,0.2025,3.842,0.355,0.2025,3.842,3.74875,0.2025,4.247,0.355,0.2025,4.247,3.74875,0.2025,19.71,0.355,0.2025,19.71,3.74875,-0.2025,19.71,0.355,-0.2025,19.71,3.74875,-0.2025,3.842,0.355,-0.2025,4.247,0.355,-0.2025,3.842,3.74875,-0.2025,4.247,3.74875,0.355,2.5,-0.355,0.5549999,4.511947E-16,-0.355,0.355,2.5,0.355,0.5549999,-4.511947E-16,0.355,0.2025,14.07203,3.74875,-0.2025,14.07203,3.74875,0.2025,14.47703,3.74875,-0.2025,14.47703,3.74875,-0.2025,19.305,0.355,-0.2025,19.71,0.355,-0.2025,19.305,3.74875,-0.2025,19.71,3.74875,0.2025,19.305,3.74875,-0.2025,19.305,3.74875,0.2025,19.71,3.74875,-0.2025,19.71,3.74875,0.2025,14.07203,0.355,0.2025,14.07203,3.74875,0.2025,14.47703,0.355,0.2025,14.47703,3.74875,0.2025,3.842,3.74875,0.2025,3.842,0.355,-0.2025,3.842,3.74875,-0.151875,3.842,0.355,-0.2025,3.842,0.355,0.2025,14.47703,0.355,0.2025,14.47703,3.74875,-0.2025,14.47703,0.355,-0.2025,14.47703,3.74875,0.2025,19.305,3.74875,0.2025,19.305,0.355,-0.2025,19.305,3.74875,-0.151875,19.305,0.355,-0.2025,19.305,0.355,0.2025,4.247,0.355,0.2025,4.247,3.74875,-0.2025,4.247,0.355,-0.2025,4.247,3.74875,0.2025,19.305,0.355,0.2025,19.305,3.74875,0.2025,19.71,0.355,0.2025,19.71,3.74875,0.2025,3.842,3.74875,-0.2025,3.842,3.74875,0.2025,4.247,3.74875,-0.2025,4.247,3.74875,0.355,-4.511947E-16,0.5549999,-0.355,4.511947E-16,0.5549999,0.355,2.5,0.355,-0.355,2.5,0.355,-0.5549999,4.511947E-16,-0.355,-0.355,2.5,-0.355,-0.5549999,4.511947E-16,0.355,-0.355,2.5,0.355,-0.355,4.511947E-16,-0.5549999,0.355,4.511947E-16,-0.5549999,-0.355,2.5,-0.355,0.355,2.5,-0.355,0.2025,9.072028,0.355,-0.2025,9.072028,0.355,-0.151875,9.072028,0.355,-0.355,5.477,0.355,0.355,5.477,0.355,-0.355,11.501,0.355,-0.2025,9.477028,0.355,0.355,11.501,0.355,0.2025,9.477028,0.355,0.355,4.927,-0.355,0.355,2.5,-0.355,0.355,4.927,0.355,0.355,2.5,0.355,0.355,20,-0.355,0.355,20,0.355,-0.355,20,-0.355,-0.355,20,0.355,0.5549999,-4.511947E-16,0.355,0.5549999,4.511947E-16,-0.355,0.355,-4.511947E-16,0.5549999,0.355,4.511947E-16,-0.5549999,0.355,-4.511947E-16,0.5549999,0.5549999,4.511947E-16,-0.355,-0.355,4.511947E-16,0.5549999,0.355,-4.511947E-16,0.5549999,0.355,4.511947E-16,-0.5549999,-0.355,4.511947E-16,-0.5549999,-0.355,4.511947E-16,0.5549999,0.355,4.511947E-16,-0.5549999,-0.5549999,4.511947E-16,0.355,-0.355,4.511947E-16,0.5549999,-0.355,4.511947E-16,-0.5549999,-0.5549999,4.511947E-16,-0.355,-0.5549999,4.511947E-16,0.355,-0.355,4.511947E-16,-0.5549999 + } + PolygonVertexIndex: *696 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,13,15,-17,17,16,-16,18,20,-20,21,19,-21,22,21,-21,23,22,-21,24,26,-26,25,27,-25,27,28,-25,28,29,-25,30,32,-32,33,31,-33,34,33,-33,33,34,-36,36,38,-38,37,39,-37,39,40,-37,40,39,-42,42,44,-44,45,43,-45,44,46,-46,47,45,-47,48,50,-50,49,51,-49,52,48,-52,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,59,61,-63,63,62,-62,64,66,-66,67,65,-67,65,67,-69,69,68,-68,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,91,94,-91,95,91,-94,96,90,-95,97,95,-94,98,96,-95,98,95,-98,97,96,-99,99,101,-101,102,99,-101,100,101,-104,100,104,-103,105,103,-102,104,106,-103,101,107,-106,102,106,-108,106,105,-108,108,110,-110,111,109,-111,109,112,-109,113,109,-112,114,108,-113,115,113,-112,115,114,-113,111,116,-116,116,114,-116,117,119,-119,120,118,-120,118,121,-118,122,118,-121,123,117,-122,124,122,-121,125,123,-122,125,122,-125,124,123,-126,126,128,-128,129,127,-129,127,130,-127,131,127,-130,132,126,-131,133,131,-130,133,132,-131,129,134,-134,134,132,-134,135,137,-137,138,136,-138,136,139,-136,140,136,-139,141,135,-140,142,140,-139,143,141,-140,143,140,-143,142,141,-144,144,146,-146,147,149,-149,150,152,-152,153,155,-155,156,158,-158,159,157,-159,160,159,-159,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,179,-179,180,178,-180,181,183,-183,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,195,-195,196,194,-196,197,199,-199,200,198,-200,201,203,-203,204,202,-204,205,207,-207,205,206,-209,208,209,-206,210,208,-207,211,210,-207,212,205,-210,212,210,-212,213,205,-213,211,213,-213,214,216,-216,214,215,-218,217,218,-215,219,217,-216,220,219,-216,221,214,-219,221,219,-221,222,214,-222,220,222,-222,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,233,-233,234,232,-234,235,237,-237,238,236,-238,239,241,-241,239,240,-243,242,243,-240,244,242,-241,245,244,-241,246,239,-244,246,244,-246,247,239,-247,245,247,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,255,-255,257,259,-259,260,258,-260,261,263,-263,264,262,-264,265,267,-267,268,266,-268,269,271,-271,272,270,-272,273,275,-275,276,274,-276,277,279,-279,280,278,-280,281,283,-283,284,282,-284,285,287,-287,288,286,-288,289,291,-291,292,290,-292,293,292,-292,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,301,-301,303,305,-305,306,304,-306,307,309,-309,310,308,-310,311,313,-313,314,312,-314,315,317,-317,318,316,-318,319,321,-321,322,320,-322,323,325,-325,326,324,-326,327,329,-329,327,328,-331,330,331,-328,332,330,-329,333,332,-329,334,327,-332,334,332,-334,335,327,-335,333,335,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,349,-349,350,352,-352,353,355,-355,356,358,-358,359,361,-361 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2088 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7059781,0.05647825,-0.7059781,0.7059781,0.05647825,-0.7059781,0.7059781,0.05647825,-0.7059781,0.7059781,0.05647825,0.7059781,0.7059781,0.05647825,0.7059781,0.7059781,0.05647825,0.7059781,-0.7059781,0.05647825,-0.7059781,-0.7059781,0.05647825,-0.7059781,-0.7059781,0.05647825,-0.7059781,-0.7059781,0.05647825,0.7059781,-0.7059781,0.05647825,0.7059781,-0.7059781,0.05647825,0.7059781,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.03990439,-0.9992035,0,0,-1,0,0.03990439,-0.9992035,0,0,-1,0,0.03990439,-0.9992035,0,0,-1,-0.9992035,0.03990439,0,-0.9992035,0.03990439,0,-1,0,0,-1,0,0,-1,0,0,-0.9992035,0.03990439,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.03990439,0.9992035,0,0.03990439,0.9992035,0,0.03990439,0.9992035,0,0,1,0,0,1,0,0.03990439,0.9992035,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.03990439,0.9992035,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9992035,0.03990439,0,0.9992035,0.03990439,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9968153,0.07974523,0,0.9992035,0.03990439,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.07974523,0.9968153,0,0.03990439,0.9992035,0,0.07974523,0.9968153,0,0.03990439,0.9992035,0,0.07974523,0.9968153,0,0.03990439,0.9992035,-0.9968153,0.07974523,0,-0.9968153,0.07974523,0,-0.9992035,0.03990439,0,-0.9992035,0.03990439,0,-0.9992035,0.03990439,0,-0.9968153,0.07974523,0,0,0.07974523,-0.9968153,0,0.03990439,-0.9992035,0,0.07974523,-0.9968153,0,0.03990439,-0.9992035,0,0.07974523,-0.9968153,0,0.03990439,-0.9992035,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,0.9992035,0.03990439,0,0.9992035,0.03990439,0,0.9992035,0.03990439,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *724 { + a: 2.185039,19.39764,-2.185039,19.39764,2.185039,21.56299,-2.185039,21.56299,2.185039,21.56299,2.185039,19.39764,-2.185039,21.56299,-2.185039,19.39764,-2.185039,19.39764,-2.185039,21.56299,2.185039,19.39764,2.185039,21.56299,-2.185039,21.56299,-6.082246E-12,21.56299,-2.185039,19.39764,-6.195933E-12,19.39764,2.185039,21.56299,2.185039,19.39764,-2.185039,35.71665,-2.185039,21.56299,-13.9597,35.71665,-2.185039,19.39764,-2.185039,16.72047,-13.9597,16.72047,-13.9597,35.71665,-2.185039,21.56299,-2.185039,35.71665,-2.185039,19.39764,-2.185039,16.72047,-13.9597,16.72047,-2.185039,76.00394,-2.185039,73.32677,-13.9597,76.00394,-2.185039,71.16142,-13.9597,56.99617,-2.185039,56.99617,-13.9597,76.00394,-2.185039,73.32677,-2.185039,76.00394,-2.185039,71.16142,-13.9597,56.99617,-2.185039,56.99617,-2.185039,55.40169,-2.185039,47.44488,-13.9597,55.40169,-2.185039,45.27953,-13.9597,37.31113,-2.185039,37.31113,-13.9597,55.40169,-2.185039,47.44488,-2.185039,55.40169,-2.185039,45.27953,-13.9597,37.31113,-2.185039,37.31113,-2.185039,71.16142,-2.185039,73.32677,2.185039,71.16142,2.185039,73.32677,2.185039,45.27953,-4.604317E-12,45.27953,2.185039,47.44488,-4.49063E-12,47.44488,-2.185039,45.27953,-2.185039,47.44488,-2.185039,73.32677,-2.899014E-12,73.32677,-2.185039,71.16142,-3.012701E-12,71.16142,2.185039,73.32677,2.185039,71.16142,2.185039,45.27953,-2.185039,45.27953,2.185039,47.44488,-2.185039,47.44488,2.185039,73.32677,2.185039,71.16142,-2.185039,73.32677,-2.185039,71.16142,2.185039,71.16142,-2.185039,71.16142,2.185039,73.32677,-2.185039,73.32677,2.185039,47.44488,2.185039,45.27953,-2.185039,47.44488,-2.185039,45.27953,-2.185039,45.27953,-2.185039,47.44488,2.185039,45.27953,2.185039,47.44488,2.185039,-2.185039,1.397638,1.397638,2.185039,2.185039,-6.195933E-12,2.185039,1.397638,-1.397638,-1.397638,1.397638,-2.185039,-2.185039,-2.185039,2.185039,-1.397638,-1.397638,1.397638,-1.397638,2.185039,-2.185039,-1.397638,-1.397638,1.397638,1.397638,-2.185039,-2.185039,2.185039,2.185039,-2.185039,2.185039,6.082246E-12,2.185039,-1.397638,1.397638,-2.185039,2.185039,-1.397638,-1.397638,-2.185039,-2.185039,2.185039,-2.185039,-1.397638,1.397638,1.397638,-1.397638,4.49063E-12,2.185039,1.397638,1.397638,2.185039,2.185039,2.185039,-2.185039,1.397638,1.397638,2.185039,2.185039,-4.604317E-12,2.185039,1.397638,-1.397638,-1.397638,1.397638,-2.185039,-2.185039,-2.185039,2.185039,-1.397638,-1.397638,-2.185039,2.185039,-1.397638,-1.397638,-2.185039,-2.185039,2.185039,-2.185039,-1.397638,1.397638,1.397638,-1.397638,2.899014E-12,2.185039,1.397638,1.397638,2.185039,2.185039,2.185039,-2.185039,1.397638,1.397638,2.185039,2.185039,-3.012701E-12,2.185039,1.397638,-1.397638,-1.397638,1.397638,-2.185039,-2.185039,-2.185039,2.185039,-1.397638,-1.397638,-4.92939E-14,9.715177,0.556777,-0.1430783,-0.556777,-0.1430783,1.202372E-13,9.715177,0.556777,-0.1430783,-0.556777,-0.1430783,0.556777,-0.1430783,-0.556777,-0.1430783,1.607603E-13,9.715177,0.556777,-0.1430783,-0.556777,-0.1430783,-2.321476E-13,9.715177,0.7972441,14.75886,0.7972441,1.397637,-0.7972441,14.75886,-0.5979331,1.397637,-0.7972441,1.397637,1.397638,35.71665,1.397638,37.31113,14.75886,35.71665,14.75886,37.31113,-1.397638,35.71665,-14.75886,35.71665,-1.397638,37.31113,-14.75886,37.31113,0.7972441,35.71665,-0.7972441,35.71665,0.7972441,37.31113,-0.7972441,37.31113,-0.7972441,1.397637,-0.7972441,14.75886,0.7972441,1.397637,0.7972441,14.75886,1.397638,78.74016,1.397638,73.32677,-1.397638,78.74016,-1.397638,73.32677,-1.397638,21.56299,-1.397638,45.27953,1.397638,21.56299,1.397638,45.27953,-1.397638,47.44488,-1.397638,71.16142,1.397638,47.44488,1.397638,71.16142,1.397638,9.84252,-1.397638,9.84252,1.397638,19.39764,-1.397638,19.39764,-1.397638,9.84252,-1.397638,19.39764,1.397638,9.84252,1.397638,19.39764,1.397638,71.16142,1.397638,47.44488,-1.397638,71.16142,-1.397638,47.44488,-1.397638,73.32677,-1.397638,78.74016,1.397638,73.32677,1.397638,78.74016,0.7972441,15.12598,-0.7972441,15.12598,-0.5979331,15.12598,-1.397638,9.84252,1.397638,9.84252,-1.397638,19.39764,-0.7972441,16.72047,1.397638,19.39764,0.7972441,16.72047,0.7972441,55.40169,-0.7972441,55.40169,-0.5979331,55.40169,-1.397638,47.44488,1.397638,47.44488,-1.397638,71.16142,-0.7972441,56.99617,1.397638,71.16142,0.7972441,56.99617,1.397638,73.32677,-1.397638,73.32677,1.397638,78.74016,-1.397638,78.74016,1.397638,47.44488,-1.397638,47.44488,1.397638,71.16142,-1.397638,71.16142,1.397638,45.27953,1.397638,21.56299,-1.397638,45.27953,-1.397638,21.56299,1.397638,21.56299,-1.397638,21.56299,1.397638,45.27953,-1.397638,45.27953,0.7972441,76.00394,-0.7972441,76.00394,-0.5979331,76.00394,-1.397638,73.32677,1.397638,73.32677,-1.397638,78.74016,-0.7972441,77.59843,1.397638,78.74016,0.7972441,77.59843,1.397638,55.40169,1.397638,56.99617,14.75886,55.40169,14.75886,56.99617,0.7972441,14.75886,0.7972441,1.397637,-0.7972441,14.75886,-0.5979331,1.397637,-0.7972441,1.397637,-1.397638,15.12598,-14.75886,15.12598,-1.397638,16.72047,-14.75886,16.72047,-0.7972441,1.397637,-0.7972441,14.75886,0.7972441,1.397637,0.7972441,14.75886,1.397638,15.12598,1.397638,16.72047,14.75886,15.12598,14.75886,16.72047,1.397638,9.699719,1.397638,-0.1742464,-1.397638,9.699719,-1.397638,-0.1742464,0.7972441,55.40169,-0.7972441,55.40169,0.7972441,56.99617,-0.7972441,56.99617,1.397638,76.00394,1.397638,77.59843,14.75886,76.00394,14.75886,77.59843,0.7972441,76.00394,-0.7972441,76.00394,0.7972441,77.59843,-0.7972441,77.59843,-1.397638,55.40169,-14.75886,55.40169,-1.397638,56.99617,-14.75886,56.99617,0.7972441,14.75886,0.7972441,1.397637,-0.7972441,14.75886,-0.5979331,1.397637,-0.7972441,1.397637,-0.7972441,1.397637,-0.7972441,14.75886,0.7972441,1.397637,0.7972441,14.75886,0.7972441,14.75886,0.7972441,1.397637,-0.7972441,14.75886,-0.5979331,1.397637,-0.7972441,1.397637,-0.7972441,1.397637,-0.7972441,14.75886,0.7972441,1.397637,0.7972441,14.75886,-1.397638,76.00394,-14.75886,76.00394,-1.397638,77.59843,-14.75886,77.59843,0.7972441,15.12598,-0.7972441,15.12598,0.7972441,16.72047,-0.7972441,16.72047,1.397638,-0.1742464,-1.397638,-0.1742464,1.397638,9.699719,-1.397638,9.699719,-1.397638,-0.1742464,-1.397638,9.699719,1.397638,-0.1742464,1.397638,9.699719,1.397638,-0.1742464,-1.397638,-0.1742464,1.397638,9.699719,-1.397638,9.699719,0.7972441,35.71665,-0.7972441,35.71665,-0.5979331,35.71665,-1.397638,21.56299,1.397638,21.56299,-1.397638,45.27953,-0.7972441,37.31113,1.397638,45.27953,0.7972441,37.31113,1.397638,19.39764,1.397638,9.84252,-1.397638,19.39764,-1.397638,9.84252,-1.397638,-1.397638,-1.397638,1.397638,1.397638,-1.397638,1.397638,1.397638,1.397638,45.27953,-0.7972441,37.31113,-1.397638,45.27953,1.397638,45.27953,-0.7972441,37.31113,-1.397638,45.27953,1.397638,45.27953,-0.7972441,37.31113,-1.397638,45.27953,1.397638,45.27953,-0.7972441,37.31113,-1.397638,45.27953,1.397638,45.27953,-0.7972441,37.31113,-1.397638,45.27953,1.397638,45.27953,-0.7972441,37.31113,-1.397638,45.27953 + } + UVIndex: *696 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,13,15,16,17,16,15,18,20,19,21,19,20,22,21,20,23,22,20,24,26,25,25,27,24,27,28,24,28,29,24,30,32,31,33,31,32,34,33,32,33,34,35,36,38,37,37,39,36,39,40,36,40,39,41,42,44,43,45,43,44,44,46,45,47,45,46,48,50,49,49,51,48,52,48,51,51,53,52,54,56,55,57,55,56,58,60,59,61,59,60,59,61,62,63,62,61,64,66,65,67,65,66,65,67,68,69,68,67,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,91,94,90,95,91,93,96,90,94,97,95,93,98,96,94,98,95,97,97,96,98,99,101,100,102,99,100,100,101,103,100,104,102,105,103,101,104,106,102,101,107,105,102,106,107,106,105,107,108,110,109,111,109,110,109,112,108,113,109,111,114,108,112,115,113,111,115,114,112,111,116,115,116,114,115,117,119,118,120,118,119,118,121,117,122,118,120,123,117,121,124,122,120,125,123,121,125,122,124,124,123,125,126,128,127,129,127,128,127,130,126,131,127,129,132,126,130,133,131,129,133,132,130,129,134,133,134,132,133,135,137,136,138,136,137,136,139,135,140,136,138,141,135,139,142,140,138,143,141,139,143,140,142,142,141,143,144,146,145,147,149,148,150,152,151,153,155,154,156,158,157,159,157,158,160,159,158,161,163,162,164,162,163,165,167,166,168,166,167,169,171,170,172,170,171,173,175,174,176,174,175,177,179,178,180,178,179,181,183,182,184,182,183,185,187,186,188,186,187,189,191,190,192,190,191,193,195,194,196,194,195,197,199,198,200,198,199,201,203,202,204,202,203,205,207,206,205,206,208,208,209,205,210,208,206,211,210,206,212,205,209,212,210,211,213,205,212,211,213,212,214,216,215,214,215,217,217,218,214,219,217,215,220,219,215,221,214,218,221,219,220,222,214,221,220,222,221,223,225,224,226,224,225,227,229,228,230,228,229,231,233,232,234,232,233,235,237,236,238,236,237,239,241,240,239,240,242,242,243,239,244,242,240,245,244,240,246,239,243,246,244,245,247,239,246,245,247,246,248,250,249,251,249,250,252,254,253,255,253,254,256,255,254,257,259,258,260,258,259,261,263,262,264,262,263,265,267,266,268,266,267,269,271,270,272,270,271,273,275,274,276,274,275,277,279,278,280,278,279,281,283,282,284,282,283,285,287,286,288,286,287,289,291,290,292,290,291,293,292,291,294,296,295,297,295,296,298,300,299,301,299,300,302,301,300,303,305,304,306,304,305,307,309,308,310,308,309,311,313,312,314,312,313,315,317,316,318,316,317,319,321,320,322,320,321,323,325,324,326,324,325,327,329,328,327,328,330,330,331,327,332,330,328,333,332,328,334,327,331,334,332,333,335,327,334,333,335,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,349,348,350,352,351,353,355,354,356,358,357,359,361,360 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *232 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7180, "Material::hay", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9490196,0.854902,0.6313726 + P: "DiffuseColor", "Color", "", "A",0.9490196,0.854902,0.6313726 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh blade, Model::RootNode + C: "OO",5431592435806337150,0 + + ;Geometry::, Model::Mesh blade + C: "OO",4702630087275602721,5431592435806337150 + + ;Material::hay, Model::Mesh blade + C: "OO",7180,5431592435806337150 + + ;Material::wood, Model::Mesh blade + C: "OO",7178,5431592435806337150 + + ;Material::_defaultMat, Model::Mesh blade + C: "OO",7176,5431592435806337150 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/blade.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/blade.fbx.import new file mode 100644 index 0000000..0d1fcbe --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/blade.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cr66xq14m6kcg" +path="res://.godot/imported/blade.fbx-9e32139bfe943cbac50c0607953db8e7.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/blade.fbx" +dest_files=["res://.godot/imported/blade.fbx-9e32139bfe943cbac50c0607953db8e7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/cart.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/cart.fbx new file mode 100644 index 0000000..a665037 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/cart.fbx @@ -0,0 +1,509 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 556 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cart.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cart.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5483217503404134413, "Model::cart", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5155706155865839401, "Geometry::", "Mesh" { + Vertices: *1104 { + a: 2.75,2.6,-5.45,2.575,2.775,-6.95,2.05,2.6,-5.45,2.225,2.775,-6.95,-2.575,3.125,-6.95,-2.75,3.3,-5.45,-2.575,2.775,-6.95,-2.75,2.6,-5.45,2.05,3.075,-5.225,2.05,3.075,-4.724999,-2.05,3.075,-5.225,-2.05,3.075,-4.724999,2.575,3.125,-6.95,2.575,2.775,-6.95,2.75,3.3,-5.45,2.75,2.6,-5.45,-2.575,2.775,-6.95,-2.225,2.775,-6.95,-2.575,3.125,-6.95,-2.225,3.125,-6.95,-2.05,2.6,-5.45,-2.225,2.775,-6.95,-2.75,2.6,-5.45,-2.575,2.775,-6.95,2.05,2.825,-4.724999,2.05,2.825,-5.225,-2.05,2.825,-4.724999,-2.05,2.825,-5.225,2.75,3.3,-5.45,2.05,3.3,-5.45,2.575,3.125,-6.95,2.225,3.125,-6.95,-2.05,2.825,-4.724999,-2.05,3.075,-4.724999,2.05,2.825,-4.724999,2.05,3.075,-4.724999,2.75,3.3,-5.45,2.75,2.6,-5.45,2.75,3.3,-3.05,2.75,2.6,-3.05,-2.05,2.825,-5.225,2.05,2.825,-5.225,-2.05,3.075,-5.225,2.05,3.075,-5.225,2.525,2.925095E-12,-4.724999,2.275,2.925095E-12,-4.724999,2.525,2.6,-4.724999,2.275,2.6,-4.724999,-2.75,3.3,-5.45,-2.75,3.3,-3.05,-2.75,2.6,-5.45,-2.75,2.6,-3.05,-2.75,4.227507,-2.925,2.75,4.227507,-2.925,-2.75,4.727507,-2.925,2.75,4.727507,-2.925,-2.75,2.2,6.45,-2.75,2.6,6.45,2.75,2.2,6.45,2.75,2.6,6.45,-2.875,4.227507,-2.55,-2.875,4.227507,6.45,-2.875,4.727507,-2.55,-2.875,4.727507,6.45,3.25,5.355014,-3.05,3.25,5.355014,-2.55,2.75,5.355014,-3.05,2.75,5.355014,-2.55,2.75,5.355014,-2.65,-2.875,4.727507,-2.55,-2.875,4.727507,6.45,-3.125,4.727507,-2.55,-3.125,4.727507,6.45,-2.75,2.2,-2.55,-2.75,2.6,-2.55,-2.75,2.2,6.45,-2.75,2.6,6.45,2.75,5.355014,-2.55,2.75,3.3,-2.55,2.75,5.355014,-2.65,2.75,4.727507,-2.675,2.75,4.727507,-2.925,2.75,4.227507,-2.675,2.75,5.355014,-3.05,2.75,4.227507,-2.925,2.75,3.3,-3.05,-2.05,3.3,-5.45,-2.05,3.3,-3.05,-2.75,3.3,-5.45,-2.75,3.3,-3.05,-2.75,3.3,7.45,-2.75,3.3,-2.65,2.05,3.3,-3.05,-2.75,3.3,-2.55,2.75,3.3,7.45,2.05,3.3,-5.45,2.75,3.3,6.95,2.75,3.3,6.45,-2.75,3.3,6.45,-3.25,3.3,-2.55,-3.25,3.3,6.45,-2.75,3.3,6.55,-2.75,3.3,6.95,2.75,3.3,-2.55,3.25,3.3,6.45,3.25,3.3,-2.55,2.75,3.3,-3.05,2.75,3.3,-5.45,2.225,3.125,-6.95,2.05,3.3,-5.45,2.225,2.775,-6.95,2.05,2.6,-5.45,-2.525,0,-5.225,-2.275,7.331912E-16,-5.225,-2.525,2.6,-5.225,-2.275,2.6,-5.225,-2.75,3.3,-2.55,-2.75,5.355014,-2.55,-2.75,3.3,-2.65,-2.75,4.227507,-2.675,-2.75,4.227507,-2.925,-2.75,4.727507,-2.675,-2.75,3.3,-3.05,-2.75,4.727507,-2.925,-2.75,5.355014,-3.05,-2.875,4.227507,6.45,-2.875,4.227507,-2.55,-3.125,4.227507,6.45,-3.125,4.227507,-2.55,-2.275,0,-4.724999,-2.525,0,-4.724999,-2.275,2.6,-4.724999,-2.525,2.6,-4.724999,2.75,2.2,6.45,2.75,2.2,-2.55,-2.75,2.2,6.45,-2.75,2.2,-2.55,-2.05,3.3,-5.45,-2.75,3.3,-5.45,-2.225,3.125,-6.95,-2.575,3.125,-6.95,2.75,4.727507,-2.675,-2.75,4.727507,-2.675,2.75,4.727507,-2.925,-2.75,4.727507,-2.925,2.875,4.227507,-2.55,2.875,4.727507,-2.55,2.875,4.227507,6.45,2.875,4.727507,6.45,3.125,4.227507,6.45,3.125,4.227507,-2.55,2.875,4.227507,6.45,2.875,4.227507,-2.55,2.225,2.775,-6.95,2.575,2.775,-6.95,2.225,3.125,-6.95,2.575,3.125,-6.95,3.125,4.727507,-2.55,3.125,4.727507,6.45,2.875,4.727507,-2.55,2.875,4.727507,6.45,2.75,3.3,6.45,2.75,5.355014,6.45,2.75,3.3,6.95,2.75,5.355014,6.55,2.75,5.355014,6.95,-2.75,5.355014,6.45,-2.75,3.3,6.45,-2.75,5.355014,6.95,-2.75,3.3,6.55,-2.75,3.3,6.95,2.525,2.925095E-12,-4.724999,2.525,2.925828E-12,-5.225,2.275,2.925095E-12,-4.724999,2.275,2.925095E-12,-5.225,3.125,4.227507,-2.55,3.125,4.227507,6.45,3.125,4.727507,-2.55,3.125,4.727507,6.45,-2.75,2.2,-2.55,2.75,2.2,-2.55,-2.75,2.6,-2.55,2.75,2.6,-2.55,2.275,2.925095E-12,-5.225,2.525,2.925828E-12,-5.225,2.275,2.6,-5.225,2.525,2.6,-5.225,-2.75,5.355014,-3.05,-2.75,5.355014,-2.55,-3.25,5.355014,-3.05,-3.25,5.355014,-2.55,-3.125,4.227507,-2.55,-3.125,4.727507,-2.55,-3.125,4.227507,6.45,-3.125,4.727507,6.45,3.25,5.355014,6.45,3.25,3.3,6.45,3.25,5.355014,6.95,3.25,2.6,6.95,3.25,3.3,-2.55,3.25,2.6,-3.05,3.25,5.355014,-3.05,3.25,5.355014,-2.55,-2.05,2.6,-3.05,2.05,2.6,-3.05,-2.05,3.3,-3.05,2.05,3.3,-3.05,2.75,2.6,-2.55,2.75,2.2,-2.55,2.75,2.6,6.45,2.75,2.2,6.45,-2.525,0,-5.225,-2.525,2.6,-5.225,-2.525,0,-4.724999,-2.525,2.6,-4.724999,-2.275,2.6,-5.225,-2.275,7.331912E-16,-5.225,-2.275,2.6,-4.724999,-2.275,0,-4.724999,2.525,2.6,-5.225,2.525,2.925828E-12,-5.225,2.525,2.6,-4.724999,2.525,2.925095E-12,-4.724999,-2.225,3.125,-6.95,-2.225,2.775,-6.95,-2.05,3.3,-5.45,-2.05,2.6,-5.45,-2.275,0,-4.724999,-2.275,7.331912E-16,-5.225,-2.525,0,-4.724999,-2.525,0,-5.225,2.75,4.227507,-2.675,2.75,4.227507,-2.925,-2.75,4.227507,-2.675,-2.75,4.227507,-2.925,3.25,5.355014,6.45,3.25,5.355014,6.95,2.75,5.355014,6.45,2.75,5.355014,6.95,2.75,5.355014,6.55,-2.75,5.355014,6.45,-2.75,5.355014,6.95,-3.25,5.355014,6.45,-3.25,5.355014,6.95,-2.75,2.6,-3.05,-2.75,3.3,-3.05,-3.25,2.6,-3.05,-3.25,5.355014,-3.05,-2.75,5.355014,-3.05,-2.75,4.227507,-2.675,-2.75,4.727507,-2.675,2.75,4.227507,-2.675,2.75,4.727507,-2.675,2.275,2.925095E-12,-5.225,2.275,2.6,-5.225,2.275,2.925095E-12,-4.724999,2.275,2.6,-4.724999,-3.25,5.355014,6.95,-3.25,2.6,6.95,-3.25,5.355014,6.45,-3.25,3.3,6.45,-3.25,3.3,-2.55,-3.25,2.6,-3.05,-3.25,5.355014,-2.55,-3.25,5.355014,-3.05,2.75,2.95,7.45,-2.75,2.95,7.45,2.75,3.3,7.45,-2.75,3.3,7.45,-2.75,3.3,6.95,-2.75,3.3,7.45,-2.75,2.95,6.95,-2.75,2.95,7.45,2.75,2.95,7.45,2.75,2.95,6.95,-2.75,2.95,7.45,-2.75,2.95,6.95,3.25,2.6,-3.05,3.25,5.355014,-3.05,2.75,2.6,-3.05,2.75,3.3,-3.05,2.75,5.355014,-3.05,2.75,5.355014,6.95,3.25,5.355014,6.95,2.75,3.3,6.95,2.75,2.95,6.95,3.25,2.6,6.95,-2.75,2.95,6.95,-3.25,2.6,6.95,-3.25,5.355014,6.95,-2.75,3.3,6.95,-2.75,5.355014,6.95,2.75,2.95,6.95,2.75,2.95,7.45,2.75,3.3,6.95,2.75,3.3,7.45,2.75,3.3,-2.55,3.125,4.227507,-2.55,3.25,3.3,-2.55,3.25,5.355014,-2.55,2.875,4.227507,-2.55,3.125,4.727507,-2.55,2.75,5.355014,-2.55,2.875,4.727507,-2.55,2.05,2.825,-4.724999,2.05,2.6,-3.05,2.05,2.825,-5.225,2.05,3.075,-4.724999,2.05,2.6,-5.45,2.05,3.3,-3.05,2.05,3.075,-5.225,2.05,3.3,-5.45,-2.75,3.3,6.45,-3.125,4.227507,6.45,-3.25,3.3,6.45,-3.25,5.355014,6.45,-2.875,4.227507,6.45,-3.125,4.727507,6.45,-2.75,5.355014,6.45,-2.875,4.727507,6.45,-3.25,3.3,-2.55,-2.875,4.227507,-2.55,-2.75,3.3,-2.55,-2.75,5.355014,-2.55,-3.125,4.227507,-2.55,-2.875,4.727507,-2.55,-3.25,5.355014,-2.55,-3.125,4.727507,-2.55,-2.05,2.6,-5.45,-2.05,3.075,-5.225,-2.05,3.3,-5.45,-2.05,3.3,-3.05,-2.05,2.825,-5.225,-2.05,3.075,-4.724999,-2.05,2.6,-3.05,-2.05,2.825,-4.724999,3.25,3.3,6.45,2.875,4.227507,6.45,2.75,3.3,6.45,2.75,5.355014,6.45,3.125,4.227507,6.45,2.875,4.727507,6.45,3.25,5.355014,6.45,3.125,4.727507,6.45,3.25,2.6,-3.05,2.75,2.6,6.45,3.25,2.6,6.95,-3.25,2.6,6.95,2.75,2.6,-2.55,-2.75,2.6,6.45,-2.75,2.6,-2.55,-3.25,2.6,-3.05,-2.75,2.6,-3.05,2.75,2.6,-3.05,-2.525,2.6,-5.225,-2.75,2.6,-5.45,-2.275,2.6,-5.225,-2.525,2.6,-4.724999,-2.05,2.6,-5.45,-2.275,2.6,-4.724999,-2.05,2.6,-3.05,2.05,2.6,-3.05,2.75,2.6,-5.45,2.525,2.6,-4.724999,2.525,2.6,-5.225,2.275,2.6,-4.724999,2.05,2.6,-5.45,2.275,2.6,-5.225 + } + PolygonVertexIndex: *756 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,79,80,-79,80,79,-82,80,82,-79,79,83,-82,82,84,-79,84,81,-84,78,84,-86,83,85,-85,86,88,-88,88,89,-88,89,90,-88,91,90,-90,87,90,-93,93,90,-92,90,94,-93,92,94,-96,94,96,-96,96,97,-96,98,90,-94,93,99,-99,100,98,-100,101,90,-99,102,90,-102,97,103,-96,97,104,-104,105,103,-105,103,106,-96,107,95,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,118,119,-118,119,118,-121,119,121,-118,118,122,-121,121,123,-118,123,120,-123,117,123,-125,122,124,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,164,-164,166,168,-168,169,167,-169,170,169,-169,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,196,198,-200,198,200,-200,201,199,-201,202,199,-202,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,233,-233,234,232,-234,235,237,-237,238,236,-238,239,238,-238,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,245,-248,249,251,-251,252,250,-252,253,255,-255,256,254,-256,257,259,-259,259,260,-259,260,261,-259,262,258,-262,261,263,-263,264,262,-264,265,267,-267,268,266,-268,269,271,-271,272,270,-272,273,275,-275,276,274,-276,277,279,-279,280,278,-280,281,278,-281,282,284,-284,284,285,-284,286,283,-286,285,287,-287,286,287,-289,289,288,-288,290,289,-288,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,297,300,-297,301,297,-300,302,296,-301,303,301,-300,303,302,-301,299,302,-304,304,306,-306,307,304,-306,308,305,-307,309,307,-306,306,310,-309,307,309,-311,308,310,-312,309,311,-311,312,314,-314,315,313,-315,313,316,-313,317,313,-316,318,312,-317,319,317,-316,319,318,-317,315,318,-320,320,322,-322,323,321,-323,321,324,-321,325,321,-324,326,320,-325,327,325,-324,327,326,-325,323,326,-328,328,330,-330,331,329,-331,329,332,-329,333,329,-332,334,328,-333,335,333,-332,335,334,-333,331,334,-336,336,338,-338,339,337,-339,337,340,-337,341,337,-340,342,336,-341,343,341,-340,343,342,-341,339,342,-344,344,346,-346,347,345,-347,345,348,-345,349,345,-348,350,349,-348,347,351,-351,351,352,-351,350,353,-349,353,344,-349,352,354,-351,352,355,-355,354,355,-357,354,357,-351,355,358,-357,359,356,-359,357,359,-351,359,358,-351,358,360,-351,360,361,-351,361,353,-351,362,353,-362,363,362,-362,363,364,-363,365,363,-362,366,362,-365,367,365,-362,367,366,-365,361,366,-368 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2268 { + a: 0,-0.9984406,-0.0558255,0,-0.9984406,-0.0558255,0,-0.9932632,-0.1158807,0,-0.9932632,-0.1158807,0,-0.9932632,-0.1158807,0,-0.9984406,-0.0558255,-0.9932632,0,-0.1158807,-0.9932632,0,-0.1158807,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-0.9932632,0,-0.1158807,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9984406,-0.0558255,0,-0.9984406,-0.0558255,0,-0.9932632,-0.1158807,0,-0.9932632,-0.1158807,0,-0.9932632,-0.1158807,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9984406,0,-0.0558255,1,0,0,0.9984406,0,-0.0558255,1,0,0,0.9984406,0,-0.0558255,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-1,0,0,-1,0,0,-1,0,0,-0.9984406,0,-0.0558255,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9984406,-0.05582551,0,0.9984406,-0.05582551,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,0.9984406,-0.05582551,0,0.9984406,-0.05582551,0,1,0,-0.9932632,0,-0.1158807,-0.9932632,0,-0.1158807,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-0.9932632,0,-0.1158807,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,-1,0,0,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9984406,0,-0.0558255,0.9984406,0,-0.0558255,1,0,0,1,0,0,1,0,0,0.9984406,0,-0.0558255,1,0,0,1,0,0,0.9984406,0,-0.0558255,1,0,0,1,0,0,1,0,0,1,0,0,0.9984406,0,-0.0558255,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *736 { + a: -10.82677,22.49832,-10.1378,28.44389,-8.070867,22.49832,-8.759843,28.44389,-26.00309,12.30315,-20.05753,12.99213,-26.00309,10.9252,-20.05753,10.23622,-8.070867,-20.57087,-8.070867,-18.60236,8.070867,-20.57087,8.070867,-18.60236,26.00309,12.30315,26.00309,10.9252,20.05753,12.99213,20.05753,10.23622,10.1378,10.9252,8.759843,10.9252,10.1378,12.30315,8.759843,12.30315,8.070867,22.49832,8.759843,28.44389,10.82677,22.49832,10.1378,28.44389,8.070867,-18.60236,8.070867,-20.57087,-8.070867,-18.60236,-8.070867,-20.57087,-10.82677,-19.8066,-8.070867,-19.8066,-10.1378,-25.75217,-8.759843,-25.75217,-8.070867,11.12205,-8.070867,12.1063,8.070867,11.12205,8.070867,12.1063,21.45669,12.99213,21.45669,10.23622,12.00787,12.99213,12.00787,10.23622,8.070867,11.12205,-8.070867,11.12205,8.070867,12.1063,-8.070867,12.1063,9.940945,1.151612E-11,8.956693,1.151612E-11,9.940945,10.23622,8.956693,10.23622,-21.45669,12.99213,-12.00787,12.99213,-21.45669,10.23622,-12.00787,10.23622,10.82677,16.64373,-10.82677,16.64373,10.82677,18.61223,-10.82677,18.61223,-10.82677,8.661417,-10.82677,10.23622,10.82677,8.661417,10.82677,10.23622,10.03937,16.64373,-25.3937,16.64373,10.03937,18.61223,-25.3937,18.61223,-12.79528,-12.00787,-12.79528,-10.03937,-10.82677,-12.00787,-10.82677,-10.03937,-10.82677,-10.43307,11.3189,-10.03937,11.3189,25.3937,12.30315,-10.03937,12.30315,25.3937,-10.03937,8.661417,-10.03937,10.23622,25.3937,8.661417,25.3937,10.23622,-10.03937,21.08273,-10.03937,12.99213,-10.43307,21.08273,-10.5315,18.61223,-11.51575,18.61223,-10.5315,16.64373,-12.00787,21.08273,-11.51575,16.64373,-12.00787,12.99213,8.070867,-21.45669,8.070867,-12.00787,10.82677,-21.45669,10.82677,-12.00787,10.82677,29.33071,10.82677,-10.43307,-8.070867,-12.00787,10.82677,-10.03937,-10.82677,29.33071,-8.070867,-21.45669,-10.82677,27.36221,-10.82677,25.3937,10.82677,25.3937,12.79528,-10.03937,12.79528,25.3937,10.82677,25.7874,10.82677,27.36221,-10.82677,-10.03937,-12.79528,25.3937,-12.79528,-10.03937,-10.82677,-12.00787,-10.82677,-21.45669,-28.19297,12.30315,-22.2474,12.99213,-28.19297,10.9252,-22.2474,10.23622,9.940945,0,8.956693,2.88658E-15,9.940945,10.23622,8.956693,10.23622,10.03937,12.99213,10.03937,21.08273,10.43307,12.99213,10.5315,16.64373,11.51575,16.64373,10.5315,18.61223,12.00787,12.99213,11.51575,18.61223,12.00787,21.08273,-11.3189,25.3937,-11.3189,-10.03937,-12.30315,25.3937,-12.30315,-10.03937,-8.956693,0,-9.940945,0,-8.956693,10.23622,-9.940945,10.23622,10.82677,25.3937,10.82677,-10.03937,-10.82677,25.3937,-10.82677,-10.03937,8.070867,-19.8066,10.82677,-19.8066,8.759843,-25.75217,10.1378,-25.75217,-10.82677,-10.5315,10.82677,-10.5315,-10.82677,-11.51575,10.82677,-11.51575,-10.03937,16.64373,-10.03937,18.61223,25.3937,16.64373,25.3937,18.61223,12.30315,25.3937,12.30315,-10.03937,11.3189,25.3937,11.3189,-10.03937,-8.759843,10.9252,-10.1378,10.9252,-8.759843,12.30315,-10.1378,12.30315,-12.30315,-10.03937,-12.30315,25.3937,-11.3189,-10.03937,-11.3189,25.3937,25.3937,12.99213,25.3937,21.08273,27.36221,12.99213,25.7874,21.08273,27.36221,21.08273,-25.3937,21.08273,-25.3937,12.99213,-27.36221,21.08273,-25.7874,12.99213,-27.36221,12.99213,9.940945,-18.60236,9.940945,-20.57087,8.956693,-18.60236,8.956693,-20.57087,10.03937,16.64373,-25.3937,16.64373,10.03937,18.61223,-25.3937,18.61223,10.82677,8.661417,-10.82677,8.661417,10.82677,10.23622,-10.82677,10.23622,-8.956693,1.151612E-11,-9.940945,1.151901E-11,-8.956693,10.23622,-9.940945,10.23622,10.82677,-12.00787,10.82677,-10.03937,12.79528,-12.00787,12.79528,-10.03937,-10.03937,16.64373,-10.03937,18.61223,25.3937,16.64373,25.3937,18.61223,-25.3937,21.08273,-25.3937,12.99213,-27.36221,21.08273,-27.36221,10.23622,10.03937,12.99213,12.00787,10.23622,12.00787,21.08273,10.03937,21.08273,8.070867,10.23622,-8.070867,10.23622,8.070867,12.99213,-8.070867,12.99213,10.03937,10.23622,10.03937,8.661417,-25.3937,10.23622,-25.3937,8.661417,-20.57087,0,-20.57087,10.23622,-18.60236,0,-18.60236,10.23622,20.57087,10.23622,20.57087,2.88658E-15,18.60236,10.23622,18.60236,0,20.57087,10.23622,20.57087,1.151901E-11,18.60236,10.23622,18.60236,1.151612E-11,28.19297,12.30315,28.19297,10.9252,22.2474,12.99213,22.2474,10.23622,-8.956693,-18.60236,-8.956693,-20.57087,-9.940945,-18.60236,-9.940945,-20.57087,10.82677,-10.5315,10.82677,-11.51575,-10.82677,-10.5315,-10.82677,-11.51575,-12.79528,25.3937,-12.79528,27.36221,-10.82677,25.3937,-10.82677,27.36221,-10.82677,25.7874,10.82677,25.3937,10.82677,27.36221,12.79528,25.3937,12.79528,27.36221,10.82677,10.23622,10.82677,12.99213,12.79528,10.23622,12.79528,21.08273,10.82677,21.08273,-10.82677,16.64373,-10.82677,18.61223,10.82677,16.64373,10.82677,18.61223,-20.57087,1.151612E-11,-20.57087,10.23622,-18.60236,1.151612E-11,-18.60236,10.23622,27.36221,21.08273,27.36221,10.23622,25.3937,21.08273,25.3937,12.99213,-10.03937,12.99213,-12.00787,10.23622,-10.03937,21.08273,-12.00787,21.08273,10.82677,11.61417,-10.82677,11.61417,10.82677,12.99213,-10.82677,12.99213,27.36221,12.99213,29.33071,12.99213,27.36221,11.61417,29.33071,11.61417,10.82677,29.33071,10.82677,27.36221,-10.82677,29.33071,-10.82677,27.36221,-12.79528,10.23622,-12.79528,21.08273,-10.82677,10.23622,-10.82677,12.99213,-10.82677,21.08273,10.82677,21.08273,12.79528,21.08273,10.82677,12.99213,10.82677,11.61417,12.79528,10.23622,-10.82677,11.61417,-12.79528,10.23622,-12.79528,21.08273,-10.82677,12.99213,-10.82677,21.08273,-27.36221,11.61417,-29.33071,11.61417,-27.36221,12.99213,-29.33071,12.99213,10.82677,12.99213,12.30315,16.64373,12.79528,12.99213,12.79528,21.08273,11.3189,16.64373,12.30315,18.61223,10.82677,21.08273,11.3189,18.61223,-18.60236,11.12205,-12.00787,10.23622,-20.57087,11.12205,-18.60236,12.1063,-21.45669,10.23622,-12.00787,12.99213,-20.57087,12.1063,-21.45669,12.99213,10.82677,12.99213,12.30315,16.64373,12.79528,12.99213,12.79528,21.08273,11.3189,16.64373,12.30315,18.61223,10.82677,21.08273,11.3189,18.61223,-12.79528,12.99213,-11.3189,16.64373,-10.82677,12.99213,-10.82677,21.08273,-12.30315,16.64373,-11.3189,18.61223,-12.79528,21.08273,-12.30315,18.61223,21.45669,10.23622,20.57087,12.1063,21.45669,12.99213,12.00787,12.99213,20.57087,11.12205,18.60236,12.1063,12.00787,10.23622,18.60236,11.12205,-12.79528,12.99213,-11.3189,16.64373,-10.82677,12.99213,-10.82677,21.08273,-12.30315,16.64373,-11.3189,18.61223,-12.79528,21.08273,-12.30315,18.61223,12.79528,-12.00787,10.82677,25.3937,12.79528,27.36221,-12.79528,27.36221,10.82677,-10.03937,-10.82677,25.3937,-10.82677,-10.03937,-12.79528,-12.00787,-10.82677,-12.00787,10.82677,-12.00787,-9.940945,-20.57087,-10.82677,-21.45669,-8.956693,-20.57087,-9.940945,-18.60236,-8.070867,-21.45669,-8.956693,-18.60236,-8.070867,-12.00787,8.070867,-12.00787,10.82677,-21.45669,9.940945,-18.60236,9.940945,-20.57087,8.956693,-18.60236,8.070867,-21.45669,8.956693,-20.57087 + } + UVIndex: *756 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,79,80,78,80,79,81,80,82,78,79,83,81,82,84,78,84,81,83,78,84,85,83,85,84,86,88,87,88,89,87,89,90,87,91,90,89,87,90,92,93,90,91,90,94,92,92,94,95,94,96,95,96,97,95,98,90,93,93,99,98,100,98,99,101,90,98,102,90,101,97,103,95,97,104,103,105,103,104,103,106,95,107,95,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,118,119,117,119,118,120,119,121,117,118,122,120,121,123,117,123,120,122,117,123,124,122,124,123,125,127,126,128,126,127,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,163,162,164,162,163,165,164,163,166,168,167,169,167,168,170,169,168,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,180,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,196,198,199,198,200,199,201,199,200,202,199,201,203,205,204,206,204,205,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,218,216,217,219,221,220,222,220,221,223,225,224,226,224,225,227,229,228,230,228,229,231,233,232,234,232,233,235,237,236,238,236,237,239,238,237,240,242,241,243,241,242,244,246,245,247,245,246,248,245,247,249,251,250,252,250,251,253,255,254,256,254,255,257,259,258,259,260,258,260,261,258,262,258,261,261,263,262,264,262,263,265,267,266,268,266,267,269,271,270,272,270,271,273,275,274,276,274,275,277,279,278,280,278,279,281,278,280,282,284,283,284,285,283,286,283,285,285,287,286,286,287,288,289,288,287,290,289,287,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,297,300,296,301,297,299,302,296,300,303,301,299,303,302,300,299,302,303,304,306,305,307,304,305,308,305,306,309,307,305,306,310,308,307,309,310,308,310,311,309,311,310,312,314,313,315,313,314,313,316,312,317,313,315,318,312,316,319,317,315,319,318,316,315,318,319,320,322,321,323,321,322,321,324,320,325,321,323,326,320,324,327,325,323,327,326,324,323,326,327,328,330,329,331,329,330,329,332,328,333,329,331,334,328,332,335,333,331,335,334,332,331,334,335,336,338,337,339,337,338,337,340,336,341,337,339,342,336,340,343,341,339,343,342,340,339,342,343,344,346,345,347,345,346,345,348,344,349,345,347,350,349,347,347,351,350,351,352,350,350,353,348,353,344,348,352,354,350,352,355,354,354,355,356,354,357,350,355,358,356,359,356,358,357,359,350,359,358,350,358,360,350,360,361,350,361,353,350,362,353,361,363,362,361,363,364,362,365,363,361,366,362,364,367,365,361,367,366,364,361,366,367 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *252 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4919708648187149341, "Model::wheel", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-3.4513,2.5315,1.95 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5207780553055669710, "Geometry::", "Mesh" { + Vertices: *1056 { + a: -0.8113,1.534062E-14,-0.30378,-0.8113,0.2148049,-0.2148049,-0.8113,-0.2148049,-0.2148049,-0.8113,-0.30378,7.219114E-15,-0.8113,0.30378,7.219114E-15,-0.8113,-0.2148049,0.2148049,-0.8113,0.2148049,0.2148049,-0.8113,1.534062E-14,0.30378,-0.431575,0.4982541,-1.506672,-0.431575,0.7130589,-1.417697,-0.431575,7.670309E-15,-0.30378,-0.431575,0.2148049,-0.2148049,-0.431575,-0.2148049,0.2148049,-0.8113,-0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.8113,1.534062E-14,0.30378,0.2013,-1.353584E-15,-0.30378,0.2013,-0.2148049,-0.2148049,0.2013,0.2148049,-0.2148049,0.2013,0.30378,7.219114E-15,0.2013,-0.30378,7.219114E-15,0.2013,0.2148049,0.2148049,0.2013,-0.2148049,0.2148049,0.2013,-1.353584E-15,0.30378,-0.178425,0.4982541,-1.506672,-0.178425,4.060752E-15,-0.30378,-0.178425,0.7130589,-1.417697,-0.178425,0.2148049,-0.2148049,-0.178425,-1.417697,-0.7130589,-0.178425,-0.2148049,-0.2148049,-0.431575,-1.417697,-0.7130589,-0.431575,-0.2148049,-0.2148049,-0.431575,-0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.431575,-0.7130589,1.417697,-0.431575,-0.4982541,1.506672,-0.178425,-1.506672,-0.4982541,-0.431575,-1.506672,-0.4982541,-0.178425,-0.30378,7.219114E-15,-0.431575,-0.30378,7.219114E-15,-0.431575,7.670309E-15,-0.30378,-0.431575,0.2148049,-0.2148049,-0.8113,1.534062E-14,-0.30378,-0.8113,0.2148049,-0.2148049,-0.431575,-1.417697,-0.7130589,-0.431575,-0.2148049,-0.2148049,-0.431575,-1.506672,-0.4982541,-0.431575,-0.30378,7.219114E-15,-0.178425,-0.2148049,0.2148049,-0.178425,-0.7130589,1.417697,-0.178425,4.060752E-15,0.30378,-0.178425,-0.4982541,1.506672,0.2013,0.30378,7.219114E-15,0.2013,0.2148049,0.2148049,-0.178425,0.30378,7.219114E-15,-0.178425,0.2148049,0.2148049,0.2013,0.2148049,-0.2148049,0.2013,0.30378,7.219114E-15,-0.178425,0.2148049,-0.2148049,-0.178425,0.30378,7.219114E-15,-0.431575,0.2148049,-0.2148049,-0.431575,0.30378,7.219114E-15,-0.8113,0.2148049,-0.2148049,-0.8113,0.30378,7.219114E-15,0.2013,-0.2148049,0.2148049,-0.178425,-0.2148049,0.2148049,0.2013,-1.353584E-15,0.30378,-0.178425,4.060752E-15,0.30378,0.2013,-1.353584E-15,-0.30378,0.2013,0.2148049,-0.2148049,-0.178425,4.060752E-15,-0.30378,-0.178425,0.2148049,-0.2148049,-0.178425,-1.417697,-0.7130589,-0.178425,-1.506672,-0.4982541,-0.178425,-0.2148049,-0.2148049,-0.178425,-0.30378,7.219114E-15,-0.178425,-0.7130589,1.417697,-0.178425,-0.2148049,0.2148049,-0.431575,-0.7130589,1.417697,-0.431575,-0.2148049,0.2148049,-0.178425,0.7130589,-1.417697,-0.178425,0.2148049,-0.2148049,-0.431575,0.7130589,-1.417697,-0.431575,0.2148049,-0.2148049,-0.178425,4.060752E-15,-0.30378,-0.178425,0.4982541,-1.506672,-0.431575,7.670309E-15,-0.30378,-0.431575,0.4982541,-1.506672,-0.178425,0.2148049,0.2148049,-0.431575,0.2148049,0.2148049,-0.178425,1.417697,0.7130589,-0.431575,1.417697,0.7130589,0.2013,-0.2148049,-0.2148049,0.2013,-1.353584E-15,-0.30378,-0.178425,-0.2148049,-0.2148049,-0.431575,-0.2148049,-0.2148049,-0.8113,-0.2148049,-0.2148049,-0.431575,7.670309E-15,-0.30378,-0.8113,1.534062E-14,-0.30378,-0.178425,4.060752E-15,-0.30378,0.2013,-0.2148049,0.2148049,0.2013,-0.30378,7.219114E-15,-0.178425,-0.2148049,0.2148049,-0.178425,-0.30378,7.219114E-15,-0.431575,-0.2148049,0.2148049,-0.431575,-0.30378,7.219114E-15,-0.8113,-0.2148049,0.2148049,-0.8113,-0.30378,7.219114E-15,-0.178425,4.060752E-15,0.30378,-0.178425,-0.4982541,1.506672,-0.431575,7.670309E-15,0.30378,-0.431575,-0.4982541,1.506672,-0.05185,1.353584E-15,1.713055,-0.05185,1.211313,1.211313,-0.5581499,1.037748E-14,1.713055,-0.5581499,1.211313,1.211313,0.2013,-0.30378,7.219114E-15,0.2013,-0.2148049,-0.2148049,-0.178425,-0.30378,7.219114E-15,-0.178425,-0.2148049,-0.2148049,-0.178425,0.30378,7.219114E-15,-0.178425,0.2148049,0.2148049,-0.178425,1.506672,0.4982541,-0.178425,1.417697,0.7130589,-0.178425,0.30378,7.219114E-15,-0.178425,1.506672,0.4982541,-0.431575,0.30378,7.219114E-15,-0.431575,1.506672,0.4982541,0.2013,-1.353584E-15,0.30378,-0.178425,4.060752E-15,0.30378,0.2013,0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.8113,1.534062E-14,0.30378,-0.178425,0.2148049,0.2148049,-0.431575,0.2148049,0.2148049,-0.8113,0.2148049,0.2148049,-0.431575,0.30378,7.219114E-15,-0.431575,1.506672,0.4982541,-0.431575,0.2148049,0.2148049,-0.431575,1.417697,0.7130589,-0.431575,0.30378,7.219114E-15,-0.431575,0.2148049,0.2148049,-0.8113,0.30378,7.219114E-15,-0.8113,0.2148049,0.2148049,-0.05185,-1.211313,1.211313,-0.5581499,-1.211313,1.211313,-0.05185,-1.713055,7.219114E-15,-0.5581499,-1.713055,7.219114E-15,-0.431575,-0.30378,7.219114E-15,-0.431575,-0.2148049,-0.2148049,-0.8113,-0.30378,7.219114E-15,-0.8113,-0.2148049,-0.2148049,-0.05185,-1.211313,-1.211313,-0.5581499,-1.211313,-1.211313,-0.05185,1.353584E-15,-1.713055,-0.5581499,1.037748E-14,-1.713055,-0.05185,1.713055,7.219114E-15,-0.05185,1.211313,-1.211313,-0.5581499,1.713055,7.219114E-15,-0.5581499,1.211313,-1.211313,-0.05185,1.211313,1.211313,-0.05185,1.596144,1.596144,-0.05185,1.713055,7.219114E-15,-0.05185,1.353584E-15,1.713055,-0.05185,2.257288,7.219114E-15,-0.05185,1.353584E-15,2.257288,-0.05185,1.211313,-1.211313,-0.05185,-1.596144,1.596144,-0.05185,1.596144,-1.596144,-0.05185,-1.211313,1.211313,-0.05185,1.353584E-15,-1.713055,-0.05185,1.353584E-15,-2.257288,-0.05185,-1.596144,-1.596144,-0.05185,-1.211313,-1.211313,-0.05185,-2.257288,7.219114E-15,-0.05185,-1.713055,7.219114E-15,-0.5581499,-1.211313,1.211313,-0.5581499,-1.596144,1.596144,-0.5581499,-1.713055,7.219114E-15,-0.5581499,1.037748E-14,1.713055,-0.5581499,-2.257288,7.219114E-15,-0.5581499,1.037748E-14,2.257288,-0.5581499,-1.211313,-1.211313,-0.5581499,1.596144,1.596144,-0.5581499,-1.596144,-1.596144,-0.5581499,1.211313,1.211313,-0.5581499,1.037748E-14,-1.713055,-0.5581499,1.037748E-14,-2.257288,-0.5581499,1.596144,-1.596144,-0.5581499,1.211313,-1.211313,-0.5581499,2.257288,7.219114E-15,-0.5581499,1.713055,7.219114E-15,-0.431575,1.417697,0.7130589,-0.5581499,1.211313,1.211313,-0.178425,1.417697,0.7130589,-0.431575,1.506672,0.4982541,-0.05185,1.211313,1.211313,-0.5581499,1.713055,7.219114E-15,-0.178425,1.506672,0.4982541,-0.05185,1.713055,7.219114E-15,-0.05185,-1.713055,7.219114E-15,-0.178425,-1.417697,-0.7130589,-0.05185,-1.211313,-1.211313,-0.5581499,-1.211313,-1.211313,-0.178425,-1.506672,-0.4982541,-0.431575,-1.417697,-0.7130589,-0.5581499,-1.713055,7.219114E-15,-0.431575,-1.506672,-0.4982541,-0.05185,1.353584E-15,1.713055,-0.178425,-0.7130589,1.417697,-0.05185,-1.211313,1.211313,-0.5581499,-1.211313,1.211313,-0.178425,-0.4982541,1.506672,-0.431575,-0.7130589,1.417697,-0.431575,-0.4982541,1.506672,-0.5581499,1.037748E-14,1.713055,-0.5581499,1.037748E-14,-1.713055,-0.178425,0.4982541,-1.506672,-0.05185,1.353584E-15,-1.713055,-0.05185,1.211313,-1.211313,-0.431575,0.4982541,-1.506672,-0.178425,0.7130589,-1.417697,-0.5581499,1.211313,-1.211313,-0.431575,0.7130589,-1.417697,0.2013,-1.596144,1.596144,0.2013,-4.060752E-15,2.257288,-0.05185,-1.596144,1.596144,-0.05185,1.353584E-15,2.257288,-0.5581499,-1.596144,-1.596144,-0.8113,-1.596144,-1.596144,-0.5581499,1.037748E-14,-2.257288,-0.8113,1.488942E-14,-2.257288,0.2013,-4.060752E-15,-2.257288,-0.05185,1.353584E-15,-2.257288,0.2013,1.596144,-1.596144,-0.05185,1.596144,-1.596144,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,2.5315,0.2013,1.790041,1.790041,-0.8113,1.790041,1.790041,-0.5581499,2.257288,7.219114E-15,-0.8113,2.257288,7.219114E-15,-0.5581499,1.596144,1.596144,-0.8113,1.596144,1.596144,0.2013,-1.596144,1.596144,-0.05185,-1.596144,1.596144,0.2013,-2.257288,7.219114E-15,-0.05185,-2.257288,7.219114E-15,0.2013,-1.596144,-1.596144,0.2013,-2.257288,7.219114E-15,-0.05185,-1.596144,-1.596144,-0.05185,-2.257288,7.219114E-15,0.2013,2.5315,7.219114E-15,0.2013,1.790041,1.790041,-0.8113,2.5315,7.219114E-15,-0.8113,1.790041,1.790041,0.2013,-1.790041,-1.790041,0.2013,-4.060752E-15,-2.5315,-0.8113,-1.790041,-1.790041,-0.8113,1.488942E-14,-2.5315,-0.5581499,-1.596144,1.596144,-0.5581499,1.037748E-14,2.257288,-0.8113,-1.596144,1.596144,-0.8113,1.488942E-14,2.257288,0.2013,-4.060752E-15,2.257288,0.2013,1.596144,1.596144,-0.05185,1.353584E-15,2.257288,-0.05185,1.596144,1.596144,-0.5581499,1.037748E-14,2.257288,-0.5581499,1.596144,1.596144,-0.8113,1.488942E-14,2.257288,-0.8113,1.596144,1.596144,0.2013,-1.596144,-1.596144,-0.05185,-1.596144,-1.596144,0.2013,-4.060752E-15,-2.257288,-0.05185,1.353584E-15,-2.257288,0.2013,-4.060752E-15,-2.5315,0.2013,1.790041,-1.790041,-0.8113,1.488942E-14,-2.5315,-0.8113,1.790041,-1.790041,-0.5581499,1.037748E-14,-2.257288,-0.8113,1.488942E-14,-2.257288,-0.5581499,1.596144,-1.596144,-0.8113,1.596144,-1.596144,-0.5581499,-1.596144,-1.596144,-0.5581499,-2.257288,7.219114E-15,-0.8113,-1.596144,-1.596144,-0.8113,-2.257288,7.219114E-15,0.2013,2.257288,7.219114E-15,-0.05185,2.257288,7.219114E-15,0.2013,1.596144,1.596144,-0.05185,1.596144,1.596144,-0.5581499,2.257288,7.219114E-15,-0.5581499,1.596144,-1.596144,-0.8113,2.257288,7.219114E-15,-0.8113,1.596144,-1.596144,0.2013,-1.790041,-1.790041,-0.8113,-1.790041,-1.790041,0.2013,-2.5315,7.219114E-15,-0.8113,-2.5315,7.219114E-15,-0.5581499,-2.257288,7.219114E-15,-0.5581499,-1.596144,1.596144,-0.8113,-2.257288,7.219114E-15,-0.8113,-1.596144,1.596144,0.2013,-1.790041,1.790041,0.2013,-2.5315,7.219114E-15,-0.8113,-1.790041,1.790041,-0.8113,-2.5315,7.219114E-15,0.2013,2.257288,7.219114E-15,0.2013,1.596144,-1.596144,-0.05185,2.257288,7.219114E-15,-0.05185,1.596144,-1.596144,0.2013,-1.790041,1.790041,-0.8113,-1.790041,1.790041,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,2.5315,0.2013,2.5315,7.219114E-15,-0.8113,2.5315,7.219114E-15,0.2013,1.790041,-1.790041,-0.8113,1.790041,-1.790041,0.2013,-4.060752E-15,-2.5315,0.2013,-4.060752E-15,-2.257288,0.2013,1.790041,-1.790041,0.2013,-1.790041,-1.790041,0.2013,1.596144,-1.596144,0.2013,-1.596144,-1.596144,0.2013,2.5315,7.219114E-15,0.2013,2.257288,7.219114E-15,0.2013,-2.5315,7.219114E-15,0.2013,-2.257288,7.219114E-15,0.2013,-1.596144,1.596144,0.2013,-1.790041,1.790041,0.2013,1.790041,1.790041,0.2013,1.596144,1.596144,0.2013,-4.060752E-15,2.257288,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,-2.5315,-0.8113,1.488942E-14,-2.257288,-0.8113,-1.790041,-1.790041,-0.8113,1.790041,-1.790041,-0.8113,-1.596144,-1.596144,-0.8113,1.596144,-1.596144,-0.8113,-2.5315,7.219114E-15,-0.8113,-2.257288,7.219114E-15,-0.8113,2.5315,7.219114E-15,-0.8113,2.257288,7.219114E-15,-0.8113,1.596144,1.596144,-0.8113,1.790041,1.790041,-0.8113,-1.790041,1.790041,-0.8113,-1.596144,1.596144,-0.8113,1.488942E-14,2.257288,-0.8113,1.488942E-14,2.5315 + } + PolygonVertexIndex: *708 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,7,6,-6,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,20,-20,22,20,-22,23,22,-22,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,59,-61,62,61,-61,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,93,-97,98,97,-97,99,93,-98,100,102,-102,103,101,-103,104,103,-103,105,103,-105,106,105,-105,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,131,-131,133,132,-131,134,132,-134,135,132,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,160,-162,161,162,-165,165,163,-162,162,166,-165,165,167,-164,164,166,-169,163,167,-170,166,170,-169,171,168,-171,171,170,-173,173,172,-171,167,174,-170,174,172,-174,169,174,-176,175,174,-174,176,178,-178,179,176,-178,177,178,-181,181,179,-178,178,182,-181,181,183,-180,180,182,-185,179,183,-186,182,186,-185,187,184,-187,187,186,-189,189,188,-187,183,190,-186,190,188,-190,185,190,-192,191,190,-190,192,194,-194,195,192,-194,193,194,-197,193,197,-196,198,196,-195,195,197,-199,196,198,-200,197,199,-199,200,202,-202,203,201,-203,201,204,-201,205,201,-204,206,200,-205,207,205,-204,207,206,-205,203,206,-208,208,210,-210,211,209,-211,212,208,-210,209,211,-214,214,208,-213,215,213,-212,214,213,-216,208,214,-216,216,218,-218,219,217,-219,217,220,-217,221,217,-220,222,216,-221,223,221,-220,223,222,-221,219,222,-224,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,320,321,-324,324,321,-323,325,323,-322,326,324,-323,327,324,-327,328,323,-326,329,328,-326,330,328,-330,331,328,-331,332,327,-327,333,327,-333,334,331,-331,334,333,-333,335,331,-335,335,334,-333,336,338,-338,336,337,-340,340,337,-339,341,339,-338,342,340,-339,343,340,-343,344,339,-342,345,344,-342,346,344,-346,347,344,-347,348,343,-343,349,343,-349,350,347,-347,350,349,-349,351,347,-351,351,350,-349 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2124 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7971752,0.6037481,0,0.1367736,0.9906023,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0.1367736,0.9906023,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.1367736,-0.9906023,0,0,-1,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0.9906023,-0.1367736,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0.9906023,-0.1367736,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,1,0,0,0.9906023,-0.1367736,0,1,0,0,0.7971752,-0.6037481,0,0.7971752,-0.6037481,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,0.9906023,-0.1367736,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,1,0,0,0.9906023,-0.1367736,0,0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0,1,0,-0.7971752,0.6037481,0,0.1367736,0.9906023,0,-0.7971752,0.6037481,0,0,1,0,0,-1,0,-0.1367736,-0.9906023,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,-0.1367736,-0.9906023,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,0,-1,0,-0.6037481,-0.7971752,0,0,-1,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,0,-1,0,-0.6037481,-0.7971752,0,-0.1367736,-0.9906023,0,0,-1,0,-0.7071068,-0.7071068,0,0,-1,0,-0.1367736,-0.9906023,0,-0.7071068,-0.7071068,0,-0.1367736,-0.9906023,0,0,-1,0,-0.1367736,-0.9906023,0,-0.7071068,0.7071068,0,-0.7971752,0.6037481,0,-1,0,0,-0.9906023,0.1367736,0,-1,0,0,-0.7971752,0.6037481,0,-0.7971752,0.6037481,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-0.9906023,0.1367736,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-0.7071068,0.7071068,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-1,0,0,-0.9906023,0.1367736,0,-0.7071068,0.7071068,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-1,0,0,-0.9906023,0.1367736,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,-0.9906023,0.1367736,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0,1,0,0.7071068,0.7071068,0,0.1367736,0.9906023,0,0.1367736,0.9906023,0,0.1367736,0.9906023,0,0.7071068,0.7071068,0,0,1,0,0.1367736,0.9906023,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0,1,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0,1,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0,1,0,0.6037481,0.7971752,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9906023,-0.1367736,0,1,0,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,1,0,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,-0.9906023,0.1367736,0,-1,0,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,-1,0,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,1,0,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,1,0,0,1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *704 { + a: -1.195984,1.114594E-16,-0.8456886,0.8456886,-0.8456886,-0.8456886,2.842171E-14,-1.195984,2.842171E-14,1.195984,0.8456886,-0.8456886,0.8456886,0.8456886,1.195984,1.114594E-16,-5.931778,1.96163,-5.581483,2.807319,-1.195984,-1.87066E-15,-0.8456886,0.8456886,-1.699114,-0.4576834,-3.194094,-0.4576834,-1.699114,0.4576834,-3.194094,0.4576834,1.195984,2.4869E-15,0.8456886,-0.8456886,0.8456886,0.8456886,-2.842171E-14,1.195984,-2.842171E-14,-1.195984,-0.8456886,0.8456886,-0.8456886,-0.8456886,-1.195984,2.4869E-15,5.931778,1.96163,1.195984,2.729116E-15,5.581483,2.807319,0.8456886,0.8456886,0.7024606,-6.230932,0.7024606,-1.104945,1.699114,-6.230932,1.699114,-1.104945,0.8456886,-0.8456886,1.195984,-1.87066E-15,5.581483,-2.807319,5.931778,-1.96163,-0.7024606,-6.230932,-1.699114,-6.230932,-0.7024606,-1.104945,-1.699114,-1.104945,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,-2.807319,-5.581483,-0.8456886,-0.8456886,-1.96163,-5.931778,2.842171E-14,-1.195984,-0.8456886,-0.8456886,-5.581483,-2.807319,-1.195984,2.729116E-15,-5.931778,-1.96163,0.7925197,0.4576834,0.7925197,-0.4576834,-0.7024606,0.4576834,-0.7024606,-0.4576834,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,0.7925197,-0.4576834,-0.7024606,-0.4576834,0.7925197,0.4576834,-0.7024606,0.4576834,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,2.807319,-5.581483,1.96163,-5.931778,0.8456886,-0.8456886,-2.842171E-14,-1.195984,0.7024606,-6.230932,0.7024606,-1.104945,1.699114,-6.230932,1.699114,-1.104945,-0.7024606,6.230932,-0.7024606,1.104945,-1.699114,6.230932,-1.699114,1.104945,0.7024606,1.104945,0.7024606,6.230932,1.699114,1.104945,1.699114,6.230932,-0.7024606,1.104945,-1.699114,1.104945,-0.7024606,6.230932,-1.699114,6.230932,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,1.699114,-0.4576834,3.194094,-0.4576834,1.699114,0.4576834,3.194094,0.4576834,0.7024606,0.4576834,0.7925197,0.4576834,0.7925197,-0.4576834,-0.7024606,0.4576834,-0.7024606,-0.4576834,-1.699114,0.4576834,-1.699114,-0.4576834,-3.194094,0.4576834,-3.194094,-0.4576834,-0.7024606,-1.104945,-0.7024606,-6.230932,-1.699114,-1.104945,-1.699114,-6.230932,0.2041339,-2.580937,0.2041339,2.580937,2.197441,-2.580937,2.197441,2.580937,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,-2.842171E-14,1.195984,-0.8456886,0.8456886,-1.96163,5.931778,-2.807319,5.581483,0.7024606,1.104945,0.7024606,6.230932,1.699114,1.104945,1.699114,6.230932,0.7925197,-0.4576834,-0.7024606,-0.4576834,0.7925197,0.4576834,-1.699114,-0.4576834,-3.194094,-0.4576834,-0.7024606,0.4576834,-1.699114,0.4576834,-3.194094,0.4576834,2.842171E-14,1.195984,1.96163,5.931778,0.8456886,0.8456886,2.807319,5.581483,-1.699114,0.4576834,-1.699114,-0.4576834,-3.194094,0.4576834,-3.194094,-0.4576834,0.2041339,2.580937,2.197441,2.580937,0.2041339,-2.580937,2.197441,-2.580937,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,-0.2041339,-2.580937,-2.197441,-2.580937,-0.2041339,2.580937,-2.197441,2.580937,-0.2041339,2.580937,-0.2041339,-2.580937,-2.197441,2.580937,-2.197441,-2.580937,-4.768949,4.768949,-6.284031,6.284031,-2.842171E-14,6.744312,-6.744312,1.476291E-15,-2.842171E-14,8.886962,-8.886962,1.476291E-15,4.768949,4.768949,-6.284031,-6.284031,6.284031,6.284031,-4.768949,-4.768949,6.744312,1.476291E-15,8.886962,1.476291E-15,6.284031,-6.284031,4.768949,-4.768949,-2.842171E-14,-8.886962,-2.842171E-14,-6.744312,4.768949,-4.768949,6.284031,-6.284031,2.842171E-14,-6.744312,6.744312,-6.178347E-16,2.842171E-14,-8.886962,8.886962,-6.178347E-16,-4.768949,-4.768949,6.284031,6.284031,-6.284031,-6.284031,4.768949,4.768949,-6.744312,-6.178347E-16,-8.886962,-6.178347E-16,-6.284031,6.284031,-4.768949,4.768949,2.842171E-14,8.886962,2.842171E-14,6.744312,1.699114,-0.4576834,2.197441,-2.580937,0.7024606,-0.4576834,1.699114,0.4576834,0.2041339,-2.580937,2.197441,2.580937,0.7024606,0.4576834,0.2041339,2.580937,-0.2041339,-2.580937,-0.7024606,0.4576834,-0.2041339,2.580937,-2.197441,2.580937,-0.7024606,-0.4576834,-1.699114,0.4576834,-2.197441,-2.580937,-1.699114,-0.4576834,0.2041339,2.580937,0.7024606,-0.4576834,0.2041339,-2.580937,2.197441,-2.580937,0.7024606,0.4576834,1.699114,-0.4576834,1.699114,0.4576834,2.197441,2.580937,-2.197441,-2.580937,-0.7024606,-0.4576834,-0.2041339,-2.580937,-0.2041339,2.580937,-1.699114,-0.4576834,-0.7024606,0.4576834,-2.197441,2.580937,-1.699114,0.4576834,-0.7925197,-3.400893,-0.7925197,3.400893,0.2041339,-3.400893,0.2041339,3.400893,-2.197441,-3.400893,-3.194094,-3.400893,-2.197441,3.400893,-3.194094,3.400893,0.7925197,-3.400893,-0.2041339,-3.400893,0.7925197,3.400893,-0.2041339,3.400893,0.7925197,-3.814028,-3.194094,-3.814028,0.7925197,3.814028,-3.194094,3.814028,2.197441,3.400893,3.194094,3.400893,2.197441,-3.400893,3.194094,-3.400893,-0.7925197,3.400893,0.2041339,3.400893,-0.7925197,-3.400893,0.2041339,-3.400893,0.7925197,3.400893,0.7925197,-3.400893,-0.2041339,3.400893,-0.2041339,-3.400893,0.7925197,3.814028,0.7925197,-3.814028,-3.194094,3.814028,-3.194094,-3.814028,-0.7925197,-3.814028,-0.7925197,3.814028,3.194094,-3.814028,3.194094,3.814028,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,-0.7925197,-3.400893,-0.7925197,3.400893,0.2041339,-3.400893,0.2041339,3.400893,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,0.7925197,-3.400893,-0.2041339,-3.400893,0.7925197,3.400893,-0.2041339,3.400893,-0.7925197,-3.814028,-0.7925197,3.814028,3.194094,-3.814028,3.194094,3.814028,-2.197441,-3.400893,-3.194094,-3.400893,-2.197441,3.400893,-3.194094,3.400893,-2.197441,3.400893,-2.197441,-3.400893,-3.194094,3.400893,-3.194094,-3.400893,-0.7925197,3.400893,0.2041339,3.400893,-0.7925197,-3.400893,0.2041339,-3.400893,-2.197441,3.400893,-2.197441,-3.400893,-3.194094,3.400893,-3.194094,-3.400893,-0.7925197,3.814028,3.194094,3.814028,-0.7925197,-3.814028,3.194094,-3.814028,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,0.7925197,3.814028,0.7925197,-3.814028,-3.194094,3.814028,-3.194094,-3.814028,0.7925197,3.400893,0.7925197,-3.400893,-0.2041339,3.400893,-0.2041339,-3.400893,0.7925197,-3.814028,-3.194094,-3.814028,0.7925197,3.814028,-3.194094,3.814028,-0.7925197,3.814028,3.194094,3.814028,-0.7925197,-3.814028,3.194094,-3.814028,9.966536,-1.02936E-15,8.886962,-1.02936E-15,7.047405,7.047405,7.047405,-7.047405,6.284031,6.284031,6.284031,-6.284031,-2.842171E-14,9.966536,-2.842171E-14,8.886962,-2.842171E-14,-9.966536,-2.842171E-14,-8.886962,-6.284031,-6.284031,-7.047405,-7.047405,-7.047405,7.047405,-6.284031,6.284031,-8.886962,-1.02936E-15,-9.966536,-1.02936E-15,-9.966536,-1.664897E-15,-8.886962,-1.664897E-15,-7.047405,-7.047405,-7.047405,7.047405,-6.284031,-6.284031,-6.284031,6.284031,2.842171E-14,-9.966536,2.842171E-14,-8.886962,2.842171E-14,9.966536,2.842171E-14,8.886962,6.284031,6.284031,7.047405,7.047405,7.047405,-7.047405,6.284031,-6.284031,8.886962,-1.664897E-15,9.966536,-1.664897E-15 + } + UVIndex: *708 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,7,6,5,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,20,19,22,20,21,23,22,21,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,59,60,62,61,60,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,93,96,98,97,96,99,93,97,100,102,101,103,101,102,104,103,102,105,103,104,106,105,104,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,131,130,133,132,130,134,132,133,135,132,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,160,161,161,162,164,165,163,161,162,166,164,165,167,163,164,166,168,163,167,169,166,170,168,171,168,170,171,170,172,173,172,170,167,174,169,174,172,173,169,174,175,175,174,173,176,178,177,179,176,177,177,178,180,181,179,177,178,182,180,181,183,179,180,182,184,179,183,185,182,186,184,187,184,186,187,186,188,189,188,186,183,190,185,190,188,189,185,190,191,191,190,189,192,194,193,195,192,193,193,194,196,193,197,195,198,196,194,195,197,198,196,198,199,197,199,198,200,202,201,203,201,202,201,204,200,205,201,203,206,200,204,207,205,203,207,206,204,203,206,207,208,210,209,211,209,210,212,208,209,209,211,213,214,208,212,215,213,211,214,213,215,208,214,215,216,218,217,219,217,218,217,220,216,221,217,219,222,216,220,223,221,219,223,222,220,219,222,223,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,320,321,323,324,321,322,325,323,321,326,324,322,327,324,326,328,323,325,329,328,325,330,328,329,331,328,330,332,327,326,333,327,332,334,331,330,334,333,332,335,331,334,335,334,332,336,338,337,336,337,339,340,337,338,341,339,337,342,340,338,343,340,342,344,339,341,345,344,341,346,344,345,347,344,346,348,343,342,349,343,348,350,347,346,350,349,348,351,347,350,351,350,348 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *236 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5066468040655090161, "Model::wheel", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",4.0613,2.5315,1.95 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4748558711308719977, "Geometry::", "Mesh" { + Vertices: *1056 { + a: -0.8113,1.534062E-14,-0.30378,-0.8113,0.2148049,-0.2148049,-0.8113,-0.2148049,-0.2148049,-0.8113,-0.30378,7.219114E-15,-0.8113,0.30378,7.219114E-15,-0.8113,-0.2148049,0.2148049,-0.8113,0.2148049,0.2148049,-0.8113,1.534062E-14,0.30378,-0.431575,0.4982541,-1.506672,-0.431575,0.7130589,-1.417697,-0.431575,7.670309E-15,-0.30378,-0.431575,0.2148049,-0.2148049,-0.431575,-0.2148049,0.2148049,-0.8113,-0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.8113,1.534062E-14,0.30378,0.2013,-1.353584E-15,-0.30378,0.2013,-0.2148049,-0.2148049,0.2013,0.2148049,-0.2148049,0.2013,0.30378,7.219114E-15,0.2013,-0.30378,7.219114E-15,0.2013,0.2148049,0.2148049,0.2013,-0.2148049,0.2148049,0.2013,-1.353584E-15,0.30378,-0.178425,0.4982541,-1.506672,-0.178425,4.060752E-15,-0.30378,-0.178425,0.7130589,-1.417697,-0.178425,0.2148049,-0.2148049,-0.178425,-1.417697,-0.7130589,-0.178425,-0.2148049,-0.2148049,-0.431575,-1.417697,-0.7130589,-0.431575,-0.2148049,-0.2148049,-0.431575,-0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.431575,-0.7130589,1.417697,-0.431575,-0.4982541,1.506672,-0.178425,-1.506672,-0.4982541,-0.431575,-1.506672,-0.4982541,-0.178425,-0.30378,7.219114E-15,-0.431575,-0.30378,7.219114E-15,-0.431575,7.670309E-15,-0.30378,-0.431575,0.2148049,-0.2148049,-0.8113,1.534062E-14,-0.30378,-0.8113,0.2148049,-0.2148049,-0.431575,-1.417697,-0.7130589,-0.431575,-0.2148049,-0.2148049,-0.431575,-1.506672,-0.4982541,-0.431575,-0.30378,7.219114E-15,-0.178425,-0.2148049,0.2148049,-0.178425,-0.7130589,1.417697,-0.178425,4.060752E-15,0.30378,-0.178425,-0.4982541,1.506672,0.2013,0.30378,7.219114E-15,0.2013,0.2148049,0.2148049,-0.178425,0.30378,7.219114E-15,-0.178425,0.2148049,0.2148049,0.2013,0.2148049,-0.2148049,0.2013,0.30378,7.219114E-15,-0.178425,0.2148049,-0.2148049,-0.178425,0.30378,7.219114E-15,-0.431575,0.2148049,-0.2148049,-0.431575,0.30378,7.219114E-15,-0.8113,0.2148049,-0.2148049,-0.8113,0.30378,7.219114E-15,0.2013,-0.2148049,0.2148049,-0.178425,-0.2148049,0.2148049,0.2013,-1.353584E-15,0.30378,-0.178425,4.060752E-15,0.30378,0.2013,-1.353584E-15,-0.30378,0.2013,0.2148049,-0.2148049,-0.178425,4.060752E-15,-0.30378,-0.178425,0.2148049,-0.2148049,-0.178425,-1.417697,-0.7130589,-0.178425,-1.506672,-0.4982541,-0.178425,-0.2148049,-0.2148049,-0.178425,-0.30378,7.219114E-15,-0.178425,-0.7130589,1.417697,-0.178425,-0.2148049,0.2148049,-0.431575,-0.7130589,1.417697,-0.431575,-0.2148049,0.2148049,-0.178425,0.7130589,-1.417697,-0.178425,0.2148049,-0.2148049,-0.431575,0.7130589,-1.417697,-0.431575,0.2148049,-0.2148049,-0.178425,4.060752E-15,-0.30378,-0.178425,0.4982541,-1.506672,-0.431575,7.670309E-15,-0.30378,-0.431575,0.4982541,-1.506672,-0.178425,0.2148049,0.2148049,-0.431575,0.2148049,0.2148049,-0.178425,1.417697,0.7130589,-0.431575,1.417697,0.7130589,0.2013,-0.2148049,-0.2148049,0.2013,-1.353584E-15,-0.30378,-0.178425,-0.2148049,-0.2148049,-0.431575,-0.2148049,-0.2148049,-0.8113,-0.2148049,-0.2148049,-0.431575,7.670309E-15,-0.30378,-0.8113,1.534062E-14,-0.30378,-0.178425,4.060752E-15,-0.30378,0.2013,-0.2148049,0.2148049,0.2013,-0.30378,7.219114E-15,-0.178425,-0.2148049,0.2148049,-0.178425,-0.30378,7.219114E-15,-0.431575,-0.2148049,0.2148049,-0.431575,-0.30378,7.219114E-15,-0.8113,-0.2148049,0.2148049,-0.8113,-0.30378,7.219114E-15,-0.178425,4.060752E-15,0.30378,-0.178425,-0.4982541,1.506672,-0.431575,7.670309E-15,0.30378,-0.431575,-0.4982541,1.506672,-0.05185,1.353584E-15,1.713055,-0.05185,1.211313,1.211313,-0.5581499,1.037748E-14,1.713055,-0.5581499,1.211313,1.211313,0.2013,-0.30378,7.219114E-15,0.2013,-0.2148049,-0.2148049,-0.178425,-0.30378,7.219114E-15,-0.178425,-0.2148049,-0.2148049,-0.178425,0.30378,7.219114E-15,-0.178425,0.2148049,0.2148049,-0.178425,1.506672,0.4982541,-0.178425,1.417697,0.7130589,-0.178425,0.30378,7.219114E-15,-0.178425,1.506672,0.4982541,-0.431575,0.30378,7.219114E-15,-0.431575,1.506672,0.4982541,0.2013,-1.353584E-15,0.30378,-0.178425,4.060752E-15,0.30378,0.2013,0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.8113,1.534062E-14,0.30378,-0.178425,0.2148049,0.2148049,-0.431575,0.2148049,0.2148049,-0.8113,0.2148049,0.2148049,-0.431575,0.30378,7.219114E-15,-0.431575,1.506672,0.4982541,-0.431575,0.2148049,0.2148049,-0.431575,1.417697,0.7130589,-0.431575,0.30378,7.219114E-15,-0.431575,0.2148049,0.2148049,-0.8113,0.30378,7.219114E-15,-0.8113,0.2148049,0.2148049,-0.05185,-1.211313,1.211313,-0.5581499,-1.211313,1.211313,-0.05185,-1.713055,7.219114E-15,-0.5581499,-1.713055,7.219114E-15,-0.431575,-0.30378,7.219114E-15,-0.431575,-0.2148049,-0.2148049,-0.8113,-0.30378,7.219114E-15,-0.8113,-0.2148049,-0.2148049,-0.05185,-1.211313,-1.211313,-0.5581499,-1.211313,-1.211313,-0.05185,1.353584E-15,-1.713055,-0.5581499,1.037748E-14,-1.713055,-0.05185,1.713055,7.219114E-15,-0.05185,1.211313,-1.211313,-0.5581499,1.713055,7.219114E-15,-0.5581499,1.211313,-1.211313,-0.05185,1.211313,1.211313,-0.05185,1.596144,1.596144,-0.05185,1.713055,7.219114E-15,-0.05185,1.353584E-15,1.713055,-0.05185,2.257288,7.219114E-15,-0.05185,1.353584E-15,2.257288,-0.05185,1.211313,-1.211313,-0.05185,-1.596144,1.596144,-0.05185,1.596144,-1.596144,-0.05185,-1.211313,1.211313,-0.05185,1.353584E-15,-1.713055,-0.05185,1.353584E-15,-2.257288,-0.05185,-1.596144,-1.596144,-0.05185,-1.211313,-1.211313,-0.05185,-2.257288,7.219114E-15,-0.05185,-1.713055,7.219114E-15,-0.5581499,-1.211313,1.211313,-0.5581499,-1.596144,1.596144,-0.5581499,-1.713055,7.219114E-15,-0.5581499,1.037748E-14,1.713055,-0.5581499,-2.257288,7.219114E-15,-0.5581499,1.037748E-14,2.257288,-0.5581499,-1.211313,-1.211313,-0.5581499,1.596144,1.596144,-0.5581499,-1.596144,-1.596144,-0.5581499,1.211313,1.211313,-0.5581499,1.037748E-14,-1.713055,-0.5581499,1.037748E-14,-2.257288,-0.5581499,1.596144,-1.596144,-0.5581499,1.211313,-1.211313,-0.5581499,2.257288,7.219114E-15,-0.5581499,1.713055,7.219114E-15,-0.431575,1.417697,0.7130589,-0.5581499,1.211313,1.211313,-0.178425,1.417697,0.7130589,-0.431575,1.506672,0.4982541,-0.05185,1.211313,1.211313,-0.5581499,1.713055,7.219114E-15,-0.178425,1.506672,0.4982541,-0.05185,1.713055,7.219114E-15,-0.05185,-1.713055,7.219114E-15,-0.178425,-1.417697,-0.7130589,-0.05185,-1.211313,-1.211313,-0.5581499,-1.211313,-1.211313,-0.178425,-1.506672,-0.4982541,-0.431575,-1.417697,-0.7130589,-0.5581499,-1.713055,7.219114E-15,-0.431575,-1.506672,-0.4982541,-0.05185,1.353584E-15,1.713055,-0.178425,-0.7130589,1.417697,-0.05185,-1.211313,1.211313,-0.5581499,-1.211313,1.211313,-0.178425,-0.4982541,1.506672,-0.431575,-0.7130589,1.417697,-0.431575,-0.4982541,1.506672,-0.5581499,1.037748E-14,1.713055,-0.5581499,1.037748E-14,-1.713055,-0.178425,0.4982541,-1.506672,-0.05185,1.353584E-15,-1.713055,-0.05185,1.211313,-1.211313,-0.431575,0.4982541,-1.506672,-0.178425,0.7130589,-1.417697,-0.5581499,1.211313,-1.211313,-0.431575,0.7130589,-1.417697,0.2013,-1.596144,1.596144,0.2013,-4.060752E-15,2.257288,-0.05185,-1.596144,1.596144,-0.05185,1.353584E-15,2.257288,-0.5581499,-1.596144,-1.596144,-0.8113,-1.596144,-1.596144,-0.5581499,1.037748E-14,-2.257288,-0.8113,1.488942E-14,-2.257288,0.2013,-4.060752E-15,-2.257288,-0.05185,1.353584E-15,-2.257288,0.2013,1.596144,-1.596144,-0.05185,1.596144,-1.596144,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,2.5315,0.2013,1.790041,1.790041,-0.8113,1.790041,1.790041,-0.5581499,2.257288,7.219114E-15,-0.8113,2.257288,7.219114E-15,-0.5581499,1.596144,1.596144,-0.8113,1.596144,1.596144,0.2013,-1.596144,1.596144,-0.05185,-1.596144,1.596144,0.2013,-2.257288,7.219114E-15,-0.05185,-2.257288,7.219114E-15,0.2013,-1.596144,-1.596144,0.2013,-2.257288,7.219114E-15,-0.05185,-1.596144,-1.596144,-0.05185,-2.257288,7.219114E-15,0.2013,2.5315,7.219114E-15,0.2013,1.790041,1.790041,-0.8113,2.5315,7.219114E-15,-0.8113,1.790041,1.790041,0.2013,-1.790041,-1.790041,0.2013,-4.060752E-15,-2.5315,-0.8113,-1.790041,-1.790041,-0.8113,1.488942E-14,-2.5315,-0.5581499,-1.596144,1.596144,-0.5581499,1.037748E-14,2.257288,-0.8113,-1.596144,1.596144,-0.8113,1.488942E-14,2.257288,0.2013,-4.060752E-15,2.257288,0.2013,1.596144,1.596144,-0.05185,1.353584E-15,2.257288,-0.05185,1.596144,1.596144,-0.5581499,1.037748E-14,2.257288,-0.5581499,1.596144,1.596144,-0.8113,1.488942E-14,2.257288,-0.8113,1.596144,1.596144,0.2013,-1.596144,-1.596144,-0.05185,-1.596144,-1.596144,0.2013,-4.060752E-15,-2.257288,-0.05185,1.353584E-15,-2.257288,0.2013,-4.060752E-15,-2.5315,0.2013,1.790041,-1.790041,-0.8113,1.488942E-14,-2.5315,-0.8113,1.790041,-1.790041,-0.5581499,1.037748E-14,-2.257288,-0.8113,1.488942E-14,-2.257288,-0.5581499,1.596144,-1.596144,-0.8113,1.596144,-1.596144,-0.5581499,-1.596144,-1.596144,-0.5581499,-2.257288,7.219114E-15,-0.8113,-1.596144,-1.596144,-0.8113,-2.257288,7.219114E-15,0.2013,2.257288,7.219114E-15,-0.05185,2.257288,7.219114E-15,0.2013,1.596144,1.596144,-0.05185,1.596144,1.596144,-0.5581499,2.257288,7.219114E-15,-0.5581499,1.596144,-1.596144,-0.8113,2.257288,7.219114E-15,-0.8113,1.596144,-1.596144,0.2013,-1.790041,-1.790041,-0.8113,-1.790041,-1.790041,0.2013,-2.5315,7.219114E-15,-0.8113,-2.5315,7.219114E-15,-0.5581499,-2.257288,7.219114E-15,-0.5581499,-1.596144,1.596144,-0.8113,-2.257288,7.219114E-15,-0.8113,-1.596144,1.596144,0.2013,-1.790041,1.790041,0.2013,-2.5315,7.219114E-15,-0.8113,-1.790041,1.790041,-0.8113,-2.5315,7.219114E-15,0.2013,2.257288,7.219114E-15,0.2013,1.596144,-1.596144,-0.05185,2.257288,7.219114E-15,-0.05185,1.596144,-1.596144,0.2013,-1.790041,1.790041,-0.8113,-1.790041,1.790041,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,2.5315,0.2013,2.5315,7.219114E-15,-0.8113,2.5315,7.219114E-15,0.2013,1.790041,-1.790041,-0.8113,1.790041,-1.790041,0.2013,-4.060752E-15,-2.5315,0.2013,-4.060752E-15,-2.257288,0.2013,1.790041,-1.790041,0.2013,-1.790041,-1.790041,0.2013,1.596144,-1.596144,0.2013,-1.596144,-1.596144,0.2013,2.5315,7.219114E-15,0.2013,2.257288,7.219114E-15,0.2013,-2.5315,7.219114E-15,0.2013,-2.257288,7.219114E-15,0.2013,-1.596144,1.596144,0.2013,-1.790041,1.790041,0.2013,1.790041,1.790041,0.2013,1.596144,1.596144,0.2013,-4.060752E-15,2.257288,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,-2.5315,-0.8113,1.488942E-14,-2.257288,-0.8113,-1.790041,-1.790041,-0.8113,1.790041,-1.790041,-0.8113,-1.596144,-1.596144,-0.8113,1.596144,-1.596144,-0.8113,-2.5315,7.219114E-15,-0.8113,-2.257288,7.219114E-15,-0.8113,2.5315,7.219114E-15,-0.8113,2.257288,7.219114E-15,-0.8113,1.596144,1.596144,-0.8113,1.790041,1.790041,-0.8113,-1.790041,1.790041,-0.8113,-1.596144,1.596144,-0.8113,1.488942E-14,2.257288,-0.8113,1.488942E-14,2.5315 + } + PolygonVertexIndex: *708 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,7,6,-6,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,20,-20,22,20,-22,23,22,-22,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,59,-61,62,61,-61,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,93,-97,98,97,-97,99,93,-98,100,102,-102,103,101,-103,104,103,-103,105,103,-105,106,105,-105,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,131,-131,133,132,-131,134,132,-134,135,132,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,160,-162,161,162,-165,165,163,-162,162,166,-165,165,167,-164,164,166,-169,163,167,-170,166,170,-169,171,168,-171,171,170,-173,173,172,-171,167,174,-170,174,172,-174,169,174,-176,175,174,-174,176,178,-178,179,176,-178,177,178,-181,181,179,-178,178,182,-181,181,183,-180,180,182,-185,179,183,-186,182,186,-185,187,184,-187,187,186,-189,189,188,-187,183,190,-186,190,188,-190,185,190,-192,191,190,-190,192,194,-194,195,192,-194,193,194,-197,193,197,-196,198,196,-195,195,197,-199,196,198,-200,197,199,-199,200,202,-202,203,201,-203,201,204,-201,205,201,-204,206,200,-205,207,205,-204,207,206,-205,203,206,-208,208,210,-210,211,209,-211,212,208,-210,209,211,-214,214,208,-213,215,213,-212,214,213,-216,208,214,-216,216,218,-218,219,217,-219,217,220,-217,221,217,-220,222,216,-221,223,221,-220,223,222,-221,219,222,-224,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,320,321,-324,324,321,-323,325,323,-322,326,324,-323,327,324,-327,328,323,-326,329,328,-326,330,328,-330,331,328,-331,332,327,-327,333,327,-333,334,331,-331,334,333,-333,335,331,-335,335,334,-333,336,338,-338,336,337,-340,340,337,-339,341,339,-338,342,340,-339,343,340,-343,344,339,-342,345,344,-342,346,344,-346,347,344,-347,348,343,-343,349,343,-349,350,347,-347,350,349,-349,351,347,-351,351,350,-349 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2124 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7971752,0.6037481,0,0.1367736,0.9906023,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0.1367736,0.9906023,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.1367736,-0.9906023,0,0,-1,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0.9906023,-0.1367736,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0.9906023,-0.1367736,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,1,0,0,0.9906023,-0.1367736,0,1,0,0,0.7971752,-0.6037481,0,0.7971752,-0.6037481,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,0.9906023,-0.1367736,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,1,0,0,0.9906023,-0.1367736,0,0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0,1,0,-0.7971752,0.6037481,0,0.1367736,0.9906023,0,-0.7971752,0.6037481,0,0,1,0,0,-1,0,-0.1367736,-0.9906023,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,-0.1367736,-0.9906023,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,0,-1,0,-0.6037481,-0.7971752,0,0,-1,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,0,-1,0,-0.6037481,-0.7971752,0,-0.1367736,-0.9906023,0,0,-1,0,-0.7071068,-0.7071068,0,0,-1,0,-0.1367736,-0.9906023,0,-0.7071068,-0.7071068,0,-0.1367736,-0.9906023,0,0,-1,0,-0.1367736,-0.9906023,0,-0.7071068,0.7071068,0,-0.7971752,0.6037481,0,-1,0,0,-0.9906023,0.1367736,0,-1,0,0,-0.7971752,0.6037481,0,-0.7971752,0.6037481,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-0.9906023,0.1367736,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-0.7071068,0.7071068,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-1,0,0,-0.9906023,0.1367736,0,-0.7071068,0.7071068,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-1,0,0,-0.9906023,0.1367736,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,-0.9906023,0.1367736,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0,1,0,0.7071068,0.7071068,0,0.1367736,0.9906023,0,0.1367736,0.9906023,0,0.1367736,0.9906023,0,0.7071068,0.7071068,0,0,1,0,0.1367736,0.9906023,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0,1,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0,1,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0,1,0,0.6037481,0.7971752,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9906023,-0.1367736,0,1,0,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,1,0,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,-0.9906023,0.1367736,0,-1,0,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,-1,0,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,1,0,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,1,0,0,1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *704 { + a: -1.195984,1.114594E-16,-0.8456886,0.8456886,-0.8456886,-0.8456886,2.842171E-14,-1.195984,2.842171E-14,1.195984,0.8456886,-0.8456886,0.8456886,0.8456886,1.195984,1.114594E-16,-5.931778,1.96163,-5.581483,2.807319,-1.195984,-1.87066E-15,-0.8456886,0.8456886,-1.699114,-0.4576834,-3.194094,-0.4576834,-1.699114,0.4576834,-3.194094,0.4576834,1.195984,2.4869E-15,0.8456886,-0.8456886,0.8456886,0.8456886,-2.842171E-14,1.195984,-2.842171E-14,-1.195984,-0.8456886,0.8456886,-0.8456886,-0.8456886,-1.195984,2.4869E-15,5.931778,1.96163,1.195984,2.729116E-15,5.581483,2.807319,0.8456886,0.8456886,0.7024606,-6.230932,0.7024606,-1.104945,1.699114,-6.230932,1.699114,-1.104945,0.8456886,-0.8456886,1.195984,-1.87066E-15,5.581483,-2.807319,5.931778,-1.96163,-0.7024606,-6.230932,-1.699114,-6.230932,-0.7024606,-1.104945,-1.699114,-1.104945,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,-2.807319,-5.581483,-0.8456886,-0.8456886,-1.96163,-5.931778,2.842171E-14,-1.195984,-0.8456886,-0.8456886,-5.581483,-2.807319,-1.195984,2.729116E-15,-5.931778,-1.96163,0.7925197,0.4576834,0.7925197,-0.4576834,-0.7024606,0.4576834,-0.7024606,-0.4576834,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,0.7925197,-0.4576834,-0.7024606,-0.4576834,0.7925197,0.4576834,-0.7024606,0.4576834,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,2.807319,-5.581483,1.96163,-5.931778,0.8456886,-0.8456886,-2.842171E-14,-1.195984,0.7024606,-6.230932,0.7024606,-1.104945,1.699114,-6.230932,1.699114,-1.104945,-0.7024606,6.230932,-0.7024606,1.104945,-1.699114,6.230932,-1.699114,1.104945,0.7024606,1.104945,0.7024606,6.230932,1.699114,1.104945,1.699114,6.230932,-0.7024606,1.104945,-1.699114,1.104945,-0.7024606,6.230932,-1.699114,6.230932,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,1.699114,-0.4576834,3.194094,-0.4576834,1.699114,0.4576834,3.194094,0.4576834,0.7024606,0.4576834,0.7925197,0.4576834,0.7925197,-0.4576834,-0.7024606,0.4576834,-0.7024606,-0.4576834,-1.699114,0.4576834,-1.699114,-0.4576834,-3.194094,0.4576834,-3.194094,-0.4576834,-0.7024606,-1.104945,-0.7024606,-6.230932,-1.699114,-1.104945,-1.699114,-6.230932,0.2041339,-2.580937,0.2041339,2.580937,2.197441,-2.580937,2.197441,2.580937,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,-2.842171E-14,1.195984,-0.8456886,0.8456886,-1.96163,5.931778,-2.807319,5.581483,0.7024606,1.104945,0.7024606,6.230932,1.699114,1.104945,1.699114,6.230932,0.7925197,-0.4576834,-0.7024606,-0.4576834,0.7925197,0.4576834,-1.699114,-0.4576834,-3.194094,-0.4576834,-0.7024606,0.4576834,-1.699114,0.4576834,-3.194094,0.4576834,2.842171E-14,1.195984,1.96163,5.931778,0.8456886,0.8456886,2.807319,5.581483,-1.699114,0.4576834,-1.699114,-0.4576834,-3.194094,0.4576834,-3.194094,-0.4576834,0.2041339,2.580937,2.197441,2.580937,0.2041339,-2.580937,2.197441,-2.580937,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,-0.2041339,-2.580937,-2.197441,-2.580937,-0.2041339,2.580937,-2.197441,2.580937,-0.2041339,2.580937,-0.2041339,-2.580937,-2.197441,2.580937,-2.197441,-2.580937,-4.768949,4.768949,-6.284031,6.284031,-2.842171E-14,6.744312,-6.744312,1.476291E-15,-2.842171E-14,8.886962,-8.886962,1.476291E-15,4.768949,4.768949,-6.284031,-6.284031,6.284031,6.284031,-4.768949,-4.768949,6.744312,1.476291E-15,8.886962,1.476291E-15,6.284031,-6.284031,4.768949,-4.768949,-2.842171E-14,-8.886962,-2.842171E-14,-6.744312,4.768949,-4.768949,6.284031,-6.284031,2.842171E-14,-6.744312,6.744312,-6.178347E-16,2.842171E-14,-8.886962,8.886962,-6.178347E-16,-4.768949,-4.768949,6.284031,6.284031,-6.284031,-6.284031,4.768949,4.768949,-6.744312,-6.178347E-16,-8.886962,-6.178347E-16,-6.284031,6.284031,-4.768949,4.768949,2.842171E-14,8.886962,2.842171E-14,6.744312,1.699114,-0.4576834,2.197441,-2.580937,0.7024606,-0.4576834,1.699114,0.4576834,0.2041339,-2.580937,2.197441,2.580937,0.7024606,0.4576834,0.2041339,2.580937,-0.2041339,-2.580937,-0.7024606,0.4576834,-0.2041339,2.580937,-2.197441,2.580937,-0.7024606,-0.4576834,-1.699114,0.4576834,-2.197441,-2.580937,-1.699114,-0.4576834,0.2041339,2.580937,0.7024606,-0.4576834,0.2041339,-2.580937,2.197441,-2.580937,0.7024606,0.4576834,1.699114,-0.4576834,1.699114,0.4576834,2.197441,2.580937,-2.197441,-2.580937,-0.7024606,-0.4576834,-0.2041339,-2.580937,-0.2041339,2.580937,-1.699114,-0.4576834,-0.7024606,0.4576834,-2.197441,2.580937,-1.699114,0.4576834,-0.7925197,-3.400893,-0.7925197,3.400893,0.2041339,-3.400893,0.2041339,3.400893,-2.197441,-3.400893,-3.194094,-3.400893,-2.197441,3.400893,-3.194094,3.400893,0.7925197,-3.400893,-0.2041339,-3.400893,0.7925197,3.400893,-0.2041339,3.400893,0.7925197,-3.814028,-3.194094,-3.814028,0.7925197,3.814028,-3.194094,3.814028,2.197441,3.400893,3.194094,3.400893,2.197441,-3.400893,3.194094,-3.400893,-0.7925197,3.400893,0.2041339,3.400893,-0.7925197,-3.400893,0.2041339,-3.400893,0.7925197,3.400893,0.7925197,-3.400893,-0.2041339,3.400893,-0.2041339,-3.400893,0.7925197,3.814028,0.7925197,-3.814028,-3.194094,3.814028,-3.194094,-3.814028,-0.7925197,-3.814028,-0.7925197,3.814028,3.194094,-3.814028,3.194094,3.814028,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,-0.7925197,-3.400893,-0.7925197,3.400893,0.2041339,-3.400893,0.2041339,3.400893,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,0.7925197,-3.400893,-0.2041339,-3.400893,0.7925197,3.400893,-0.2041339,3.400893,-0.7925197,-3.814028,-0.7925197,3.814028,3.194094,-3.814028,3.194094,3.814028,-2.197441,-3.400893,-3.194094,-3.400893,-2.197441,3.400893,-3.194094,3.400893,-2.197441,3.400893,-2.197441,-3.400893,-3.194094,3.400893,-3.194094,-3.400893,-0.7925197,3.400893,0.2041339,3.400893,-0.7925197,-3.400893,0.2041339,-3.400893,-2.197441,3.400893,-2.197441,-3.400893,-3.194094,3.400893,-3.194094,-3.400893,-0.7925197,3.814028,3.194094,3.814028,-0.7925197,-3.814028,3.194094,-3.814028,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,0.7925197,3.814028,0.7925197,-3.814028,-3.194094,3.814028,-3.194094,-3.814028,0.7925197,3.400893,0.7925197,-3.400893,-0.2041339,3.400893,-0.2041339,-3.400893,0.7925197,-3.814028,-3.194094,-3.814028,0.7925197,3.814028,-3.194094,3.814028,-0.7925197,3.814028,3.194094,3.814028,-0.7925197,-3.814028,3.194094,-3.814028,9.966536,-1.02936E-15,8.886962,-1.02936E-15,7.047405,7.047405,7.047405,-7.047405,6.284031,6.284031,6.284031,-6.284031,-2.842171E-14,9.966536,-2.842171E-14,8.886962,-2.842171E-14,-9.966536,-2.842171E-14,-8.886962,-6.284031,-6.284031,-7.047405,-7.047405,-7.047405,7.047405,-6.284031,6.284031,-8.886962,-1.02936E-15,-9.966536,-1.02936E-15,-9.966536,-1.664897E-15,-8.886962,-1.664897E-15,-7.047405,-7.047405,-7.047405,7.047405,-6.284031,-6.284031,-6.284031,6.284031,2.842171E-14,-9.966536,2.842171E-14,-8.886962,2.842171E-14,9.966536,2.842171E-14,8.886962,6.284031,6.284031,7.047405,7.047405,7.047405,-7.047405,6.284031,-6.284031,8.886962,-1.664897E-15,9.966536,-1.664897E-15 + } + UVIndex: *708 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,7,6,5,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,20,19,22,20,21,23,22,21,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,59,60,62,61,60,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,93,96,98,97,96,99,93,97,100,102,101,103,101,102,104,103,102,105,103,104,106,105,104,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,131,130,133,132,130,134,132,133,135,132,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,160,161,161,162,164,165,163,161,162,166,164,165,167,163,164,166,168,163,167,169,166,170,168,171,168,170,171,170,172,173,172,170,167,174,169,174,172,173,169,174,175,175,174,173,176,178,177,179,176,177,177,178,180,181,179,177,178,182,180,181,183,179,180,182,184,179,183,185,182,186,184,187,184,186,187,186,188,189,188,186,183,190,185,190,188,189,185,190,191,191,190,189,192,194,193,195,192,193,193,194,196,193,197,195,198,196,194,195,197,198,196,198,199,197,199,198,200,202,201,203,201,202,201,204,200,205,201,203,206,200,204,207,205,203,207,206,204,203,206,207,208,210,209,211,209,210,212,208,209,209,211,213,214,208,212,215,213,211,214,213,215,208,214,215,216,218,217,219,217,218,217,220,216,221,217,219,222,216,220,223,221,219,223,222,220,219,222,223,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,320,321,323,324,321,322,325,323,321,326,324,322,327,324,326,328,323,325,329,328,325,330,328,329,331,328,330,332,327,326,333,327,332,334,331,330,334,333,332,335,331,334,335,334,332,336,338,337,336,337,339,340,337,338,341,339,337,342,340,338,343,340,342,344,339,341,345,344,341,346,344,345,347,344,346,348,343,342,349,343,348,350,347,346,350,349,348,351,347,350,351,350,348 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *236 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cart, Model::RootNode + C: "OO",5483217503404134413,0 + + ;Geometry::, Model::Mesh cart + C: "OO",5155706155865839401,5483217503404134413 + + ;Material::wood, Model::Mesh cart + C: "OO",7178,5483217503404134413 + + ;Model::Mesh wheel, Model::USING PARENT + C: "OO",4919708648187149341,5483217503404134413 + + ;Geometry::, Model::Mesh wheel + C: "OO",5207780553055669710,4919708648187149341 + + ;Material::wood, Model::Mesh wheel + C: "OO",7178,4919708648187149341 + + ;Material::stone, Model::Mesh wheel + C: "OO",7184,4919708648187149341 + + ;Model::Mesh wheel, Model::USING PARENT + C: "OO",5066468040655090161,5483217503404134413 + + ;Geometry::, Model::Mesh wheel + C: "OO",4748558711308719977,5066468040655090161 + + ;Material::wood, Model::Mesh wheel + C: "OO",7178,5066468040655090161 + + ;Material::stone, Model::Mesh wheel + C: "OO",7184,5066468040655090161 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/cart.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/cart.fbx.import new file mode 100644 index 0000000..2d45184 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/cart.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cw13faja2k8va" +path="res://.godot/imported/cart.fbx-17e7f3f8d04aa1d376a09a64e16e1ec0.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/cart.fbx" +dest_files=["res://.godot/imported/cart.fbx-17e7f3f8d04aa1d376a09a64e16e1ec0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/cartHigh.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/cartHigh.fbx new file mode 100644 index 0000000..973fde4 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/cartHigh.fbx @@ -0,0 +1,615 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 685 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cartHigh.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cartHigh.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4821645529597847422, "Model::cartHigh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4972135573833344451, "Geometry::", "Mesh" { + Vertices: *2160 { + a: 2.75,3.3,-5.45,2.75,2.6,-5.45,2.75,3.3,-3.05,2.75,2.6,-3.05,2.05,2.825,-4.724999,2.05,2.825,-5.225,-2.05,2.825,-4.724999,-2.05,2.825,-5.225,-2.05,2.825,-5.225,2.05,2.825,-5.225,-2.05,3.075,-5.225,2.05,3.075,-5.225,-2.05,2.825,-4.724999,-2.05,3.075,-4.724999,2.05,2.825,-4.724999,2.05,3.075,-4.724999,2.05,3.075,-5.225,2.05,3.075,-4.724999,-2.05,3.075,-5.225,-2.05,3.075,-4.724999,2.275,2.925095E-12,-5.225,2.275,2.6,-5.225,2.275,2.925095E-12,-4.724999,2.275,2.6,-4.724999,2.575,3.125,-6.95,2.575,2.775,-6.95,2.75,3.3,-5.45,2.75,2.6,-5.45,-2.75,3.3,-2.55,-2.75,5.355014,-2.55,-2.75,3.3,-2.65,-2.75,4.227507,-2.675,-2.75,4.227507,-2.925,-2.75,4.727507,-2.675,-2.75,3.3,-3.05,-2.75,4.727507,-2.925,-2.75,5.355014,-3.05,2.75,5.355014,-2.55,2.75,3.3,-2.55,2.75,5.355014,-2.65,2.75,4.727507,-2.675,2.75,4.727507,-2.925,2.75,4.227507,-2.675,2.75,5.355014,-3.05,2.75,4.227507,-2.925,2.75,3.3,-3.05,2.225,3.125,-6.95,2.05,3.3,-5.45,2.225,2.775,-6.95,2.05,2.6,-5.45,-2.575,2.775,-6.95,-2.225,2.775,-6.95,-2.575,3.125,-6.95,-2.225,3.125,-6.95,-2.575,3.125,-6.95,-2.75,3.3,-5.45,-2.575,2.775,-6.95,-2.75,2.6,-5.45,-3.125,4.227507,-2.55,-3.125,4.727507,-2.55,-3.125,4.227507,6.45,-3.125,4.727507,6.45,-2.875,4.227507,6.45,-2.875,4.227507,-2.55,-3.125,4.227507,6.45,-3.125,4.227507,-2.55,-2.05,2.6,-5.45,-2.225,2.775,-6.95,-2.75,2.6,-5.45,-2.575,2.775,-6.95,-2.875,4.727507,-2.55,-2.875,4.727507,6.45,-3.125,4.727507,-2.55,-3.125,4.727507,6.45,2.75,4.727507,-2.675,-2.75,4.727507,-2.675,2.75,4.727507,-2.925,-2.75,4.727507,-2.925,2.75,4.227507,-2.675,2.75,4.227507,-2.925,-2.75,4.227507,-2.675,-2.75,4.227507,-2.925,2.875,4.227507,-2.55,2.875,4.727507,-2.55,2.875,4.227507,6.45,2.875,4.727507,6.45,-2.05,3.3,-5.45,-2.05,3.3,-3.05,-2.75,3.3,-5.45,-2.75,3.3,-3.05,-2.75,3.3,7.45,-2.75,3.3,-2.65,2.05,3.3,-3.05,-2.75,3.3,-2.55,2.75,3.3,7.45,2.05,3.3,-5.45,2.75,3.3,6.95,2.75,3.3,6.45,-2.75,3.3,6.45,-3.25,3.3,-2.55,-3.25,3.3,6.45,-2.75,3.3,6.55,-2.75,3.3,6.95,2.75,3.3,-2.55,3.25,3.3,6.45,3.25,3.3,-2.55,2.75,3.3,-3.05,2.75,3.3,-5.45,-2.75,3.3,-5.45,-2.75,3.3,-3.05,-2.75,2.6,-5.45,-2.75,2.6,-3.05,2.225,2.775,-6.95,2.575,2.775,-6.95,2.225,3.125,-6.95,2.575,3.125,-6.95,-2.225,3.125,-6.95,-2.225,2.775,-6.95,-2.05,3.3,-5.45,-2.05,2.6,-5.45,-2.05,3.3,-5.45,-2.75,3.3,-5.45,-2.225,3.125,-6.95,-2.575,3.125,-6.95,-2.525,0,-5.225,-2.525,2.6,-5.225,-2.525,0,-4.724999,-2.525,2.6,-4.724999,-2.275,0,-4.724999,-2.525,0,-4.724999,-2.275,2.6,-4.724999,-2.525,2.6,-4.724999,-2.275,2.6,-5.225,-2.275,7.331912E-16,-5.225,-2.275,2.6,-4.724999,-2.275,0,-4.724999,2.275,2.925095E-12,-5.225,2.525,2.925828E-12,-5.225,2.275,2.6,-5.225,2.525,2.6,-5.225,2.525,2.925095E-12,-4.724999,2.525,2.925828E-12,-5.225,2.275,2.925095E-12,-4.724999,2.275,2.925095E-12,-5.225,-2.525,0,-5.225,-2.275,7.331912E-16,-5.225,-2.525,2.6,-5.225,-2.275,2.6,-5.225,2.525,2.6,-5.225,2.525,2.925828E-12,-5.225,2.525,2.6,-4.724999,2.525,2.925095E-12,-4.724999,-2.275,0,-4.724999,-2.275,7.331912E-16,-5.225,-2.525,0,-4.724999,-2.525,0,-5.225,-2.875,4.227507,-2.55,-2.875,4.227507,6.45,-2.875,4.727507,-2.55,-2.875,4.727507,6.45,-2.75,4.227507,-2.925,2.75,4.227507,-2.925,-2.75,4.727507,-2.925,2.75,4.727507,-2.925,2.75,3.3,-5.45,2.05,3.3,-5.45,2.575,3.125,-6.95,2.225,3.125,-6.95,2.75,2.6,-5.45,2.575,2.775,-6.95,2.05,2.6,-5.45,2.225,2.775,-6.95,-3.25,5.355014,6.95,-3.25,2.6,6.95,-3.25,5.355014,6.45,-3.25,3.3,6.45,-3.25,3.3,-2.55,-3.25,2.6,-3.05,-3.25,5.355014,-2.55,-3.25,5.355014,-3.05,2.525,2.925095E-12,-4.724999,2.275,2.925095E-12,-4.724999,2.525,2.6,-4.724999,2.275,2.6,-4.724999,3.125,4.727507,-2.55,3.125,4.727507,6.45,2.875,4.727507,-2.55,2.875,4.727507,6.45,2.75,2.6,-2.55,2.75,2.2,-2.55,2.75,2.6,6.45,2.75,2.2,6.45,2.75,2.2,6.45,2.75,2.2,-2.55,-2.75,2.2,6.45,-2.75,2.2,-2.55,2.60578,7.252131,-3.55,2.76445,7.373884,-3.55,2.298097,7.653111,-3.55,2.456768,7.774863,-3.55,-2.05,2.6,-3.05,2.05,2.6,-3.05,-2.05,3.3,-3.05,2.05,3.3,-3.05,3.25,5.355014,6.45,3.25,3.3,6.45,3.25,5.355014,6.95,3.25,2.6,6.95,3.25,3.3,-2.55,3.25,2.6,-3.05,3.25,5.355014,-3.05,3.25,5.355014,-2.55,2.298097,7.653111,6.95,2.298097,7.653111,7.45,2.60578,7.252131,6.95,2.60578,7.252131,7.45,-2.38157,6.730014,-3.05,-2.38157,6.730014,-2.55,-1.944544,7.299558,-3.05,-1.944544,7.299558,-2.55,-1.625,8.169596,6.45,-1.625,8.169596,6.95,-2.298097,7.653111,6.45,-2.298097,7.653111,6.95,-3.25,5.355014,6.45,-3.139259,6.196176,6.45,-3.25,5.355014,6.95,-3.139259,6.196176,6.95,2.75,2.95,6.95,2.75,2.95,7.45,2.75,3.3,6.95,2.75,3.3,7.45,2.60578,7.252131,-3.55,2.298097,7.653111,-3.55,2.60578,7.252131,-3.05,2.298097,7.653111,-3.05,1.944544,7.299558,-3.05,1.944544,7.299558,-2.55,2.38157,6.730014,-3.05,2.38157,6.730014,-2.55,-3.364107E-12,8.605015,6.45,-0.8411619,8.494273,6.45,0.8411619,8.494273,6.45,1.625,8.169596,6.45,-1.625,8.169596,6.45,-3.364107E-12,8.105014,6.45,-0.7117524,8.011311,6.45,0.7117524,8.011311,6.45,-1.375,7.736584,6.45,1.375,7.736584,6.45,-2.298097,7.653111,6.45,2.298097,7.653111,6.45,-1.944544,7.299558,6.45,-2.60578,7.252131,6.45,-2.814583,6.980014,6.45,-2.38157,6.730014,6.45,1.944544,7.299558,6.45,2.60578,7.252131,6.45,2.814583,6.980014,6.45,2.38157,6.730014,6.45,3.139259,6.196176,6.45,2.656296,6.066766,6.45,-3.139259,6.196176,6.45,-2.656296,6.066766,6.45,3.25,5.355014,6.45,-2.75,5.355014,6.45,2.75,5.355014,6.45,-3.25,5.355014,6.45,3.125,4.727507,6.45,2.875,4.727507,6.45,3.125,4.227507,6.45,3.25,3.3,6.45,2.875,4.227507,6.45,2.75,3.3,6.45,-2.875,4.727507,6.45,-3.125,4.727507,6.45,-2.875,4.227507,6.45,-2.75,3.3,6.45,-3.125,4.227507,6.45,-3.25,3.3,6.45,1.625,8.169596,6.45,1.625,8.169596,6.95,0.8411619,8.494273,6.45,0.8411619,8.494273,6.95,0.7117524,8.011311,6.45,-3.364107E-12,8.105014,6.45,0.7117524,8.011311,6.95,-3.42186E-12,8.105014,6.95,-2.75,2.2,-2.55,2.75,2.2,-2.55,-2.75,2.6,-2.55,2.75,2.6,-2.55,0.7117524,8.011311,-3.05,-3.364107E-12,8.105014,-3.05,0.7117524,8.011311,-2.55,-3.42186E-12,8.105014,-2.55,-2.75,5.355014,6.45,-2.75,3.3,6.45,-2.75,5.355014,6.95,-2.75,3.3,6.55,-2.75,3.3,6.95,-2.75,2.2,-2.55,-2.75,2.6,-2.55,-2.75,2.2,6.45,-2.75,2.6,6.45,-2.75,3.3,6.95,-2.75,3.3,7.45,-2.75,2.95,6.95,-2.75,2.95,7.45,2.75,2.95,7.45,2.75,2.95,6.95,-2.75,2.95,7.45,-2.75,2.95,6.95,2.60578,7.252131,-3.05,2.814583,6.980014,-3.05,2.60578,7.252131,-2.55,2.814583,6.980014,-2.55,3.139259,6.196176,-3.05,3.25,5.355014,-3.05,3.139259,6.196176,-2.55,3.25,5.355014,-2.55,1.375,7.736584,-3.05,0.7117524,8.011311,-3.05,1.375,7.736584,-2.55,0.7117524,8.011311,-2.55,1.944544,7.299558,6.45,1.375,7.736584,6.45,1.944544,7.299558,6.95,1.375,7.736584,6.95,0.8411619,8.494273,-3.05,0.8411619,8.494273,-2.55,-3.364107E-12,8.605015,-3.05,-3.42186E-12,8.605015,-2.55,-3.42186E-12,8.605015,-2.55,0.8411619,8.494273,-2.55,-0.8411619,8.494273,-2.55,1.625,8.169596,-2.55,-1.625,8.169596,-2.55,-3.42186E-12,8.105014,-2.55,-0.7117524,8.011311,-2.55,0.7117524,8.011311,-2.55,-1.375,7.736584,-2.55,1.375,7.736584,-2.55,-2.298097,7.653111,-2.55,2.298097,7.653111,-2.55,-1.944544,7.299558,-2.55,-2.60578,7.252131,-2.55,-2.814583,6.980014,-2.55,-2.38157,6.730014,-2.55,-3.139259,6.196176,-2.55,-2.656296,6.066766,-2.55,1.944544,7.299558,-2.55,2.60578,7.252131,-2.55,2.814583,6.980014,-2.55,2.38157,6.730014,-2.55,-3.25,5.355014,-2.55,3.139259,6.196176,-2.55,2.656296,6.066766,-2.55,2.75,5.355014,-2.55,-2.75,5.355014,-2.55,3.25,5.355014,-2.55,-3.125,4.727507,-2.55,-2.875,4.727507,-2.55,-3.125,4.227507,-2.55,-3.25,3.3,-2.55,-2.875,4.227507,-2.55,-2.75,3.3,-2.55,2.875,4.727507,-2.55,3.125,4.727507,-2.55,2.875,4.227507,-2.55,2.75,3.3,-2.55,3.125,4.227507,-2.55,3.25,3.3,-2.55,1.944544,7.299558,6.45,1.944544,7.299558,6.95,2.38157,6.730014,6.45,2.38157,6.730014,6.95,-3.25,5.355014,-3.05,-3.139259,6.196176,-3.05,-3.25,5.355014,-2.55,-3.139259,6.196176,-2.55,2.60578,7.252131,6.45,2.814583,6.980014,6.45,2.60578,7.252131,6.95,2.814583,6.980014,6.95,1.375,7.736584,6.45,0.7117524,8.011311,6.45,1.375,7.736584,6.95,0.7117524,8.011311,6.95,-2.75,4.227507,-2.675,-2.75,4.727507,-2.675,2.75,4.227507,-2.675,2.75,4.727507,-2.675,-3.364107E-12,8.105014,6.45,-0.7117524,8.011311,6.45,-3.42186E-12,8.105014,6.95,-0.7117524,8.011311,6.95,-2.75,5.355014,6.45,-2.75,5.355014,6.95,-2.656296,6.066766,6.45,-2.656296,6.066766,6.95,-2.60578,7.252131,-3.55,-2.298097,7.653111,-3.55,-2.76445,7.373884,-3.55,-2.456768,7.774863,-3.55,2.76445,7.373884,-3.55,2.76445,7.373884,7.45,2.456768,7.774863,-3.55,2.456768,7.774863,7.45,3.25,5.355014,6.45,3.25,5.355014,6.95,3.139259,6.196176,6.45,3.139259,6.196176,6.95,-3.139259,6.196176,6.45,-2.814583,6.980014,6.45,-3.139259,6.196176,6.95,-2.814583,6.980014,6.95,2.814583,6.980014,6.45,3.139259,6.196176,6.45,2.814583,6.980014,6.95,3.139259,6.196176,6.95,-2.656296,6.066766,6.45,-2.656296,6.066766,6.95,-2.38157,6.730014,6.45,-2.38157,6.730014,6.95,-2.38157,6.730014,6.45,-2.38157,6.730014,6.95,-1.944544,7.299558,6.45,-1.944544,7.299558,6.95,-1.375,7.736584,6.45,-1.944544,7.299558,6.45,-1.375,7.736584,6.95,-1.944544,7.299558,6.95,2.60578,7.252131,7.45,2.298097,7.653111,7.45,2.76445,7.373884,7.45,2.456768,7.774863,7.45,-0.8411619,8.494273,6.45,-0.8411619,8.494273,6.95,-1.625,8.169596,6.45,-1.625,8.169596,6.95,0.8411619,8.494273,6.45,0.8411619,8.494273,6.95,-3.364107E-12,8.605015,6.45,-3.42186E-12,8.605015,6.95,2.814583,6.980014,-3.05,3.139259,6.196176,-3.05,2.814583,6.980014,-2.55,3.139259,6.196176,-2.55,-2.76445,7.373884,-3.55,-2.456768,7.774863,-3.55,-2.76445,7.373884,7.45,-2.456768,7.774863,7.45,2.75,2.95,7.45,-2.75,2.95,7.45,2.75,3.3,7.45,-2.75,3.3,7.45,2.298097,7.653111,-3.05,2.298097,7.653111,6.45,2.298097,7.653111,-2.55,2.298097,7.653111,-3.55,2.298097,7.653111,7.45,2.298097,7.653111,6.95,2.456768,7.774863,-3.55,2.456768,7.774863,7.45,1.944544,7.299558,-3.05,1.375,7.736584,-3.05,1.944544,7.299558,-2.55,1.375,7.736584,-2.55,2.38157,6.730014,6.45,2.38157,6.730014,6.95,2.656296,6.066766,6.45,2.656296,6.066766,6.95,3.125,4.227507,6.45,3.125,4.227507,-2.55,2.875,4.227507,6.45,2.875,4.227507,-2.55,-2.75,2.2,6.45,-2.75,2.6,6.45,2.75,2.2,6.45,2.75,2.6,6.45,2.75,3.3,6.45,2.75,5.355014,6.45,2.75,3.3,6.95,2.75,5.355014,6.55,2.75,5.355014,6.95,3.125,4.227507,-2.55,3.125,4.227507,6.45,3.125,4.727507,-2.55,3.125,4.727507,6.45,2.75,5.355014,6.45,2.656296,6.066766,6.45,2.75,5.355014,6.55,2.656296,6.066766,6.95,2.75,5.355014,6.95,-2.656296,6.066766,-3.05,-2.656296,6.066766,-2.55,-2.38157,6.730014,-3.05,-2.38157,6.730014,-2.55,-3.364107E-12,8.605015,6.45,-3.42186E-12,8.605015,6.95,-0.8411619,8.494273,6.45,-0.8411619,8.494273,6.95,2.76445,7.373884,7.45,2.76445,7.373884,-3.55,2.60578,7.252131,7.45,2.60578,7.252131,6.95,2.60578,7.252131,6.45,2.60578,7.252131,-3.05,2.60578,7.252131,-2.55,2.60578,7.252131,-3.55,-1.375,7.736584,-3.05,-1.944544,7.299558,-3.05,-1.375,7.736584,-2.55,-1.944544,7.299558,-2.55,-0.7117524,8.011311,6.45,-1.375,7.736584,6.45,-0.7117524,8.011311,6.95,-1.375,7.736584,6.95,-2.60578,7.252131,7.45,-2.76445,7.373884,7.45,-2.298097,7.653111,7.45,-2.456768,7.774863,7.45,-0.7117524,8.011311,-3.05,-1.375,7.736584,-3.05,-0.7117524,8.011311,-2.55,-1.375,7.736584,-2.55,-2.60578,7.252131,-2.55,-2.60578,7.252131,6.45,-2.298097,7.653111,-2.55,-2.298097,7.653111,6.45,-3.364107E-12,8.105014,-3.05,-0.7117524,8.011311,-3.05,-3.42186E-12,8.105014,-2.55,-0.7117524,8.011311,-2.55,2.38157,6.730014,-3.05,2.38157,6.730014,-2.55,2.656296,6.066766,-3.05,2.656296,6.066766,-2.55,-2.298097,7.653111,-3.55,-2.298097,7.653111,-3.05,-2.456768,7.774863,-3.55,-2.298097,7.653111,-2.55,-2.298097,7.653111,6.95,-2.298097,7.653111,6.45,-2.298097,7.653111,7.45,-2.456768,7.774863,7.45,-2.60578,7.252131,6.95,-2.60578,7.252131,7.45,-2.298097,7.653111,6.95,-2.298097,7.653111,7.45,-1.625,8.169596,-3.05,-1.625,8.169596,-2.55,-2.298097,7.653111,-3.05,-2.298097,7.653111,-2.55,-2.60578,7.252131,-3.55,-2.60578,7.252131,-3.05,-2.298097,7.653111,-3.55,-2.298097,7.653111,-3.05,2.298097,7.653111,-2.55,2.298097,7.653111,6.45,2.60578,7.252131,-2.55,2.60578,7.252131,6.45,1.625,8.169596,-3.05,1.625,8.169596,-2.55,0.8411619,8.494273,-3.05,0.8411619,8.494273,-2.55,-2.814583,6.980014,-3.05,-2.60578,7.252131,-3.05,-2.814583,6.980014,-2.55,-2.60578,7.252131,-2.55,-2.75,5.355014,-3.05,-2.75,5.355014,-2.55,-2.656296,6.066766,-3.05,-2.656296,6.066766,-2.55,-2.814583,6.980014,6.45,-2.60578,7.252131,6.45,-2.814583,6.980014,6.95,-2.60578,7.252131,6.95,-3.42186E-12,8.605015,6.95,0.8411619,8.494273,6.95,-0.8411619,8.494273,6.95,1.625,8.169596,6.95,-1.625,8.169596,6.95,-3.42186E-12,8.105014,6.95,-0.7117524,8.011311,6.95,0.7117524,8.011311,6.95,-1.375,7.736584,6.95,1.375,7.736584,6.95,-2.298097,7.653111,6.95,2.298097,7.653111,6.95,-1.944544,7.299558,6.95,-2.60578,7.252131,6.95,-2.814583,6.980014,6.95,-2.38157,6.730014,6.95,-3.139259,6.196176,6.95,-2.656296,6.066766,6.95,1.944544,7.299558,6.95,2.60578,7.252131,6.95,2.814583,6.980014,6.95,2.38157,6.730014,6.95,-3.25,5.355014,6.95,3.139259,6.196176,6.95,2.656296,6.066766,6.95,2.75,5.355014,6.95,-2.75,5.355014,6.95,-2.75,3.3,6.95,3.25,5.355014,6.95,2.75,3.3,6.95,2.75,2.95,6.95,3.25,2.6,6.95,-2.75,2.95,6.95,-3.25,2.6,6.95,-2.60578,7.252131,7.45,-2.60578,7.252131,6.95,-2.76445,7.373884,7.45,-2.76445,7.373884,-3.55,-2.60578,7.252131,6.45,-2.60578,7.252131,-2.55,-2.60578,7.252131,-3.05,-2.60578,7.252131,-3.55,-0.8411619,8.494273,-3.05,-0.8411619,8.494273,-2.55,-1.625,8.169596,-3.05,-1.625,8.169596,-2.55,-2.75,2.6,-3.05,-2.75,3.3,-3.05,-3.25,2.6,-3.05,-3.25,5.355014,-3.05,-2.75,5.355014,-3.05,-3.139259,6.196176,-3.05,-2.656296,6.066766,-3.05,-2.38157,6.730014,-3.05,-2.814583,6.980014,-3.05,-1.944544,7.299558,-3.05,-2.60578,7.252131,-3.05,-2.298097,7.653111,-3.05,-1.375,7.736584,-3.05,-1.625,8.169596,-3.05,-0.7117524,8.011311,-3.05,-3.364107E-12,8.105014,-3.05,1.625,8.169596,-3.05,0.7117524,8.011311,-3.05,-0.8411619,8.494273,-3.05,1.375,7.736584,-3.05,0.8411619,8.494273,-3.05,-3.364107E-12,8.605015,-3.05,2.298097,7.653111,-3.05,1.944544,7.299558,-3.05,2.60578,7.252131,-3.05,2.814583,6.980014,-3.05,2.38157,6.730014,-3.05,3.139259,6.196176,-3.05,2.656296,6.066766,-3.05,3.25,5.355014,-3.05,2.75,5.355014,-3.05,2.75,3.3,-3.05,2.75,2.6,-3.05,3.25,2.6,-3.05,2.298097,7.653111,-3.05,2.298097,7.653111,-2.55,1.625,8.169596,-3.05,1.625,8.169596,-2.55,-3.139259,6.196176,-3.05,-2.814583,6.980014,-3.05,-3.139259,6.196176,-2.55,-2.814583,6.980014,-2.55,2.656296,6.066766,-3.05,2.656296,6.066766,-2.55,2.75,5.355014,-3.05,2.75,5.355014,-2.65,2.75,5.355014,-2.55,-3.364107E-12,8.605015,-3.05,-3.42186E-12,8.605015,-2.55,-0.8411619,8.494273,-3.05,-0.8411619,8.494273,-2.55,2.298097,7.653111,6.45,2.298097,7.653111,6.95,1.625,8.169596,6.45,1.625,8.169596,6.95,2.05,2.825,-4.724999,2.05,2.6,-3.05,2.05,2.825,-5.225,2.05,3.075,-4.724999,2.05,2.6,-5.45,2.05,3.3,-3.05,2.05,3.075,-5.225,2.05,3.3,-5.45,3.25,2.6,-3.05,2.75,2.6,6.45,3.25,2.6,6.95,-3.25,2.6,6.95,2.75,2.6,-2.55,-2.75,2.6,6.45,-2.75,2.6,-2.55,-3.25,2.6,-3.05,-2.75,2.6,-3.05,2.75,2.6,-3.05,-2.525,2.6,-5.225,-2.75,2.6,-5.45,-2.275,2.6,-5.225,-2.525,2.6,-4.724999,-2.05,2.6,-5.45,-2.275,2.6,-4.724999,-2.05,2.6,-3.05,2.05,2.6,-3.05,2.75,2.6,-5.45,2.525,2.6,-4.724999,2.525,2.6,-5.225,2.275,2.6,-4.724999,2.05,2.6,-5.45,2.275,2.6,-5.225,-2.05,2.6,-5.45,-2.05,3.075,-5.225,-2.05,3.3,-5.45,-2.05,3.3,-3.05,-2.05,2.825,-5.225,-2.05,3.075,-4.724999,-2.05,2.6,-3.05,-2.05,2.825,-4.724999 + } + PolygonVertexIndex: *1476 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,30,31,-30,31,30,-33,31,33,-30,30,34,-33,33,35,-30,35,32,-35,29,35,-37,34,36,-36,37,39,-39,39,40,-39,40,39,-42,40,42,-39,39,43,-42,42,44,-39,44,41,-44,38,44,-46,43,45,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,88,89,-88,89,90,-88,91,90,-90,87,90,-93,93,90,-92,90,94,-93,92,94,-96,94,96,-96,96,97,-96,98,90,-94,93,99,-99,100,98,-100,101,90,-99,102,90,-102,97,103,-96,97,104,-104,105,103,-105,103,106,-96,107,95,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,174,175,-174,175,176,-174,177,173,-177,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,205,207,-209,207,209,-209,210,208,-210,211,208,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,242,243,-242,241,243,-245,244,243,-246,245,246,-245,245,243,-248,246,248,-245,247,243,-250,244,248,-251,243,251,-250,248,252,-251,250,252,-254,253,252,-255,252,255,-255,249,251,-257,251,257,-257,257,258,-257,256,258,-260,258,260,-260,259,260,-262,254,255,-263,255,263,-263,260,264,-262,263,265,-263,266,261,-265,262,265,-268,266,264,-269,268,269,-267,268,264,-271,264,271,-271,269,272,-267,272,270,-272,266,272,-274,271,273,-273,267,265,-275,274,275,-268,274,265,-277,265,277,-277,275,278,-268,278,276,-278,267,278,-280,277,279,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,299,-299,301,303,-303,304,302,-304,305,307,-307,308,306,-308,309,311,-311,312,310,-312,313,315,-315,316,314,-316,317,319,-319,320,318,-320,321,323,-323,324,322,-324,325,327,-327,328,326,-328,329,331,-331,332,330,-332,333,335,-335,334,335,-337,335,337,-337,337,338,-337,338,337,-340,338,340,-337,339,337,-342,340,342,-337,337,343,-342,336,342,-345,341,343,-346,343,346,-346,346,347,-346,345,347,-349,347,349,-349,348,349,-351,342,351,-345,344,351,-353,352,351,-354,351,354,-354,349,355,-351,353,354,-357,354,357,-357,357,358,-357,350,355,-360,356,358,-361,359,355,-362,361,362,-360,361,355,-364,355,364,-364,362,365,-360,365,363,-365,359,365,-367,364,366,-366,360,358,-368,367,368,-361,367,358,-370,358,370,-370,368,371,-361,371,369,-371,360,371,-373,370,372,-372,373,375,-375,376,374,-376,377,379,-379,380,378,-380,381,383,-383,384,382,-384,385,387,-387,388,386,-388,389,391,-391,392,390,-392,393,395,-395,396,394,-396,397,399,-399,400,398,-400,401,403,-403,404,402,-404,405,407,-407,408,406,-408,409,411,-411,412,410,-412,413,415,-415,416,414,-416,417,419,-419,420,418,-420,421,423,-423,424,422,-424,425,427,-427,428,426,-428,429,431,-431,432,430,-432,433,435,-435,436,434,-436,437,439,-439,440,438,-440,441,443,-443,444,442,-444,445,447,-447,448,446,-448,449,451,-451,452,450,-452,453,455,-455,456,454,-456,457,459,-459,457,458,-461,458,461,-461,462,461,-459,460,461,-464,464,463,-462,465,467,-467,468,466,-468,469,471,-471,472,470,-472,473,475,-475,476,474,-476,477,479,-479,480,478,-480,481,483,-483,484,482,-484,485,484,-484,486,488,-488,489,487,-489,490,492,-492,493,491,-493,494,493,-493,495,497,-497,498,496,-498,499,501,-501,502,500,-502,503,505,-505,506,504,-506,506,507,-505,507,508,-505,509,508,-508,510,504,-509,511,513,-513,514,512,-514,515,517,-517,518,516,-518,519,521,-521,522,520,-522,523,525,-525,526,524,-526,527,529,-529,530,528,-530,531,533,-533,534,532,-534,535,537,-537,538,536,-538,539,541,-541,542,540,-542,543,542,-542,542,543,-545,545,543,-542,546,545,-542,547,549,-549,550,548,-550,551,553,-553,554,552,-554,555,557,-557,558,556,-558,559,561,-561,562,560,-562,563,565,-565,566,564,-566,567,569,-569,570,568,-570,571,573,-573,574,572,-574,575,577,-577,578,576,-578,579,581,-581,580,581,-583,581,583,-583,583,584,-583,584,583,-586,584,586,-583,585,583,-588,586,588,-583,583,589,-588,582,588,-591,587,589,-592,589,592,-592,592,593,-592,591,593,-595,593,595,-595,594,595,-597,588,597,-591,590,597,-599,598,597,-600,597,600,-600,595,601,-597,599,600,-603,600,603,-603,603,604,-603,596,601,-606,605,601,-607,602,604,-608,604,608,-608,608,609,-608,610,607,-610,606,601,-612,609,611,-611,601,612,-612,610,611,-613,613,615,-615,616,614,-616,614,616,-618,617,616,-619,618,616,-620,620,619,-617,621,623,-623,624,622,-624,625,627,-627,628,626,-628,629,626,-629,630,629,-629,631,629,-631,632,631,-631,633,632,-631,634,632,-634,635,634,-634,636,634,-636,637,634,-637,638,637,-637,639,637,-639,640,639,-639,638,641,-641,640,641,-643,643,641,-639,642,641,-645,645,641,-644,646,645,-644,641,647,-645,644,647,-649,647,649,-649,649,650,-649,648,650,-652,650,652,-652,651,652,-654,652,654,-654,653,654,-656,655,654,-657,656,654,-658,658,657,-655,659,661,-661,662,660,-662,663,665,-665,666,664,-666,667,669,-669,670,668,-670,671,668,-671,672,674,-674,675,673,-675,676,678,-678,679,677,-679,680,682,-682,683,680,-682,684,681,-683,685,683,-682,682,686,-685,683,685,-687,684,686,-688,685,687,-687,688,690,-690,691,689,-691,689,692,-689,693,689,-692,694,693,-692,691,695,-695,695,696,-695,694,697,-693,697,688,-693,696,698,-695,696,699,-699,698,699,-701,698,701,-695,699,702,-701,703,700,-703,701,703,-695,703,702,-695,702,704,-695,704,705,-695,705,697,-695,706,697,-706,707,706,-706,707,708,-707,709,707,-706,710,706,-709,711,709,-706,711,710,-709,705,710,-712,712,714,-714,715,713,-715,713,716,-713,717,713,-716,718,712,-717,719,717,-716,719,718,-717,715,718,-720 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *4428 { + a: 0.9984406,0,-0.0558255,1,0,0,0.9984406,0,-0.0558255,1,0,0,0.9984406,0,-0.0558255,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,1,0,0,1,0,0,0.9978589,-0.06540313,0,1,0,0,1,0,0,0.9978589,-0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9978589,-0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9978589,-0.06540313,0,1,0,0,1,0,0,1,0,0,0.9978589,-0.06540313,0,1,0,0,0.9978589,-0.06540313,0,1,0,0,0.9978589,-0.06540313,0,1,0,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-1,0,0,-0.9978589,-0.06540313,0,-1,0,0,-1,0,0,-1,0,0,-0.9978589,-0.06540313,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9978589,-0.06540313,0,-1,0,0,-1,0,0,-1,0,0,-0.9978589,-0.06540313,0,-1,0,0,-1,0,0,-0.9932632,0,-0.1158807,-0.9932632,0,-0.1158807,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-0.9932632,0,-0.1158807,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9932632,0,-0.1158807,-0.9932632,0,-0.1158807,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-0.9932632,0,-0.1158807,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-0.9984406,-0.0558255,0,-0.9932632,-0.1158807,0,-0.9932632,-0.1158807,0,-0.9932632,-0.1158807,0,-0.9984406,-0.0558255,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9984406,-0.05582551,0,0.9984406,-0.05582551,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9984406,-0.05582551,0,0.9984406,-0.05582551,0,0.9984406,-0.05582551,0,1,0,-0.9984406,0,-0.0558255,-0.9984406,0,-0.0558255,-1,0,0,-1,0,0,-1,0,0,-0.9984406,0,-0.0558255,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0.9932632,0,-0.1158807,0.9984406,0,-0.0558255,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,0.9984406,-0.05582551,0,0.9932632,-0.1158807,0,-0.9984406,-0.0558255,0,-0.9984406,-0.0558255,0,-0.9932632,-0.1158807,0,-0.9932632,-0.1158807,0,-0.9932632,-0.1158807,0,-0.9984406,-0.0558255,-0.9978589,0.06540313,0,-0.9978589,0.06540313,0,-1,0,0,-0.9978589,0.06540313,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9978589,0.06540313,0,-1,0,0,-0.9978589,0.06540313,0,-1,0,0,-0.9978589,0.06540313,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9978589,0.06540313,0,0.9978589,0.06540313,0,1,0,0,1,0,0,1,0,0,0.9978589,0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9978589,0.06540313,0,1,0,0,1,0,0,0.9978589,0.06540313,0,1,0,0,0.9978589,0.06540313,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.9978589,0.06540313,0,-0.9978589,0.06540313,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9978589,0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,0,-1,0,0,-1,0,0,-1,0,-0.258819,-0.9659258,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,0,-1,0,0,-1,0,0,-1,0,-0.258819,-0.9659258,0,0.9978589,-0.06540313,0,0.9978589,-0.06540313,0,1,0,0,1,0,0,1,0,0,0.9978589,-0.06540313,0,1,0,0,1,0,0,0.9978589,-0.06540313,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9659258,0.258819,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,0.258819,0.9659258,0,0,1,0,0.258819,0.9659258,0,0,1,0,0.258819,0.9659258,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.9978589,0.06540313,0,-0.9978589,0.06540313,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9978589,0.06540313,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0,-1,0,0.9978589,-0.06540313,0,0.9659258,-0.258819,0,0.9978589,-0.06540313,0,0.9659258,-0.258819,0,0.9978589,-0.06540313,0,0.9659258,-0.258819,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.9978589,0.06540313,0,0.9659258,0.258819,0,0.9978589,0.06540313,0,0.9659258,0.258819,0,0.9978589,0.06540313,0,0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.9659258,0.258819,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.8660254,0.5,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,0.258819,0.9659258,0,0,1,0,0.258819,0.9659258,0,0,1,0,0.258819,0.9659258,0,0,1,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.8660254,0.5,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-1,0,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9659258,-0.258819,0,-0.9978589,-0.06540313,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0,1,0,-0.258819,0.9659258,0,0,1,0,-0.258819,0.9659258,0,0,1,0,-0.258819,0.9659258,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0,-1,0,0,-1,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0,-1,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.8660254,0.5,0,0.9978589,-0.06540313,0,0.9659258,-0.258819,0,0.9978589,-0.06540313,0,0.9659258,-0.258819,0,0.9978589,-0.06540313,0,0.9659258,-0.258819,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.8660254,0.5,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.9659258,0.258819,0,-0.9659258,-0.258819,0,-0.9978589,-0.06540313,0,-0.9659258,-0.258819,0,-0.9978589,-0.06540313,0,-0.9659258,-0.258819,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9659258,-0.258819,0,-0.9978589,-0.06540313,0,0,1,0,-0.258819,0.9659258,0,0,1,0,-0.258819,0.9659258,0,0,1,0,-0.258819,0.9659258,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,-1,0,0,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,-0.9984406,0,-0.0558255,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0,-1,0,0,-0.9984406,-0.0558255,0,-1,0,0.9984406,0,-0.0558255,0.9984406,0,-0.0558255,1,0,0,1,0,0,1,0,0,0.9984406,0,-0.0558255,1,0,0,1,0,0,0.9984406,0,-0.0558255,1,0,0,1,0,0,1,0,0,1,0,0,0.9984406,0,-0.0558255,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1440 { + a: 21.45669,12.99213,21.45669,10.23622,12.00787,12.99213,12.00787,10.23622,8.070867,-18.60236,8.070867,-20.57087,-8.070867,-18.60236,-8.070867,-20.57087,8.070867,11.12205,-8.070867,11.12205,8.070867,12.1063,-8.070867,12.1063,-8.070867,11.12205,-8.070867,12.1063,8.070867,11.12205,8.070867,12.1063,-8.070867,-20.57087,-8.070867,-18.60236,8.070867,-20.57087,8.070867,-18.60236,-20.57087,1.151612E-11,-20.57087,10.23622,-18.60236,1.151612E-11,-18.60236,10.23622,26.00309,12.30315,26.00309,10.9252,20.05753,12.99213,20.05753,10.23622,10.03937,12.99213,10.03937,21.08273,10.43307,12.99213,10.5315,16.64373,11.51575,16.64373,10.5315,18.61223,12.00787,12.99213,11.51575,18.61223,12.00787,21.08273,-10.03937,21.08273,-10.03937,12.99213,-10.43307,21.08273,-10.5315,18.61223,-11.51575,18.61223,-10.5315,16.64373,-12.00787,21.08273,-11.51575,16.64373,-12.00787,12.99213,-28.19297,12.30315,-22.2474,12.99213,-28.19297,10.9252,-22.2474,10.23622,10.1378,10.9252,8.759843,10.9252,10.1378,12.30315,8.759843,12.30315,-26.00309,12.30315,-20.05753,12.99213,-26.00309,10.9252,-20.05753,10.23622,-10.03937,16.64373,-10.03937,18.61223,25.3937,16.64373,25.3937,18.61223,-11.3189,25.3937,-11.3189,-10.03937,-12.30315,25.3937,-12.30315,-10.03937,8.070867,22.49832,8.759843,28.44389,10.82677,22.49832,10.1378,28.44389,11.3189,-10.03937,11.3189,25.3937,12.30315,-10.03937,12.30315,25.3937,-10.82677,-10.5315,10.82677,-10.5315,-10.82677,-11.51575,10.82677,-11.51575,10.82677,-10.5315,10.82677,-11.51575,-10.82677,-10.5315,-10.82677,-11.51575,-10.03937,16.64373,-10.03937,18.61223,25.3937,16.64373,25.3937,18.61223,8.070867,-21.45669,8.070867,-12.00787,10.82677,-21.45669,10.82677,-12.00787,10.82677,29.33071,10.82677,-10.43307,-8.070867,-12.00787,10.82677,-10.03937,-10.82677,29.33071,-8.070867,-21.45669,-10.82677,27.36221,-10.82677,25.3937,10.82677,25.3937,12.79528,-10.03937,12.79528,25.3937,10.82677,25.7874,10.82677,27.36221,-10.82677,-10.03937,-12.79528,25.3937,-12.79528,-10.03937,-10.82677,-12.00787,-10.82677,-21.45669,-21.45669,12.99213,-12.00787,12.99213,-21.45669,10.23622,-12.00787,10.23622,-8.759843,10.9252,-10.1378,10.9252,-8.759843,12.30315,-10.1378,12.30315,28.19297,12.30315,28.19297,10.9252,22.2474,12.99213,22.2474,10.23622,8.070867,-19.8066,10.82677,-19.8066,8.759843,-25.75217,10.1378,-25.75217,-20.57087,0,-20.57087,10.23622,-18.60236,0,-18.60236,10.23622,-8.956693,0,-9.940945,0,-8.956693,10.23622,-9.940945,10.23622,20.57087,10.23622,20.57087,2.88658E-15,18.60236,10.23622,18.60236,0,-8.956693,1.151612E-11,-9.940945,1.151901E-11,-8.956693,10.23622,-9.940945,10.23622,9.940945,-18.60236,9.940945,-20.57087,8.956693,-18.60236,8.956693,-20.57087,9.940945,0,8.956693,2.88658E-15,9.940945,10.23622,8.956693,10.23622,20.57087,10.23622,20.57087,1.151901E-11,18.60236,10.23622,18.60236,1.151612E-11,-8.956693,-18.60236,-8.956693,-20.57087,-9.940945,-18.60236,-9.940945,-20.57087,10.03937,16.64373,-25.3937,16.64373,10.03937,18.61223,-25.3937,18.61223,10.82677,16.64373,-10.82677,16.64373,10.82677,18.61223,-10.82677,18.61223,-10.82677,-19.8066,-8.070867,-19.8066,-10.1378,-25.75217,-8.759843,-25.75217,-10.82677,22.49832,-10.1378,28.44389,-8.070867,22.49832,-8.759843,28.44389,27.36221,21.08273,27.36221,10.23622,25.3937,21.08273,25.3937,12.99213,-10.03937,12.99213,-12.00787,10.23622,-10.03937,21.08273,-12.00787,21.08273,9.940945,1.151612E-11,8.956693,1.151612E-11,9.940945,10.23622,8.956693,10.23622,-12.30315,-10.03937,-12.30315,25.3937,-11.3189,-10.03937,-11.3189,25.3937,10.03937,10.23622,10.03937,8.661417,-25.3937,10.23622,-25.3937,8.661417,10.82677,25.3937,10.82677,-10.03937,-10.82677,25.3937,-10.82677,-10.03937,-10.25898,28.5517,-10.88366,29.03104,-9.047626,30.13036,-9.672314,30.6097,8.070867,10.23622,-8.070867,10.23622,8.070867,12.99213,-8.070867,12.99213,-25.3937,21.08273,-25.3937,12.99213,-27.36221,21.08273,-27.36221,10.23622,10.03937,12.99213,12.00787,10.23622,12.00787,21.08273,10.03937,21.08273,27.36221,18.39618,29.33071,18.39618,27.36221,16.40632,29.33071,16.40632,12.00787,15.31288,10.03937,15.31288,12.00787,18.13923,10.03937,18.13923,25.3937,14.50447,27.36221,14.50447,25.3937,11.16424,27.36221,11.16424,25.3937,19.23225,25.3937,22.57248,27.36221,19.23225,27.36221,22.57248,-27.36221,11.61417,-29.33071,11.61417,-27.36221,12.99213,-29.33071,12.99213,-13.97638,16.40632,-13.97638,18.39618,-12.00787,16.40632,-12.00787,18.39618,-12.00787,18.13923,-10.03937,18.13923,-12.00787,15.31288,-10.03937,15.31288,1.060817E-11,33.87801,3.311661,33.44202,-3.311661,33.44202,-6.397638,32.16376,6.397638,32.16376,1.060817E-11,31.9095,2.802175,31.54059,-2.802175,31.54059,5.413386,30.45899,-5.413386,30.45899,9.047626,30.13036,-9.047626,30.13036,7.655684,28.73842,10.25898,28.5517,11.08103,27.48037,9.376259,26.49612,-7.655684,28.73842,-10.25898,28.5517,-11.08103,27.48037,-9.376259,26.49612,-12.35929,24.39439,-10.45786,23.88491,12.35929,24.39439,10.45786,23.88491,-12.79528,21.08273,10.82677,21.08273,-10.82677,21.08273,12.79528,21.08273,-12.30315,18.61223,-11.3189,18.61223,-12.30315,16.64373,-12.79528,12.99213,-11.3189,16.64373,-10.82677,12.99213,11.3189,18.61223,12.30315,18.61223,11.3189,16.64373,10.82677,12.99213,12.30315,16.64373,12.79528,12.99213,-25.3937,6.397894,-27.36221,6.397894,-25.3937,9.738132,-27.36221,9.738132,25.3937,1.338672,25.3937,4.165026,27.36221,1.338672,27.36221,4.165026,10.82677,8.661417,-10.82677,8.661417,10.82677,10.23622,-10.82677,10.23622,-12.00787,1.338672,-12.00787,4.165026,-10.03937,1.338672,-10.03937,4.165026,-25.3937,21.08273,-25.3937,12.99213,-27.36221,21.08273,-25.7874,12.99213,-27.36221,12.99213,-10.03937,8.661417,-10.03937,10.23622,25.3937,8.661417,25.3937,10.23622,27.36221,12.99213,29.33071,12.99213,27.36221,11.61417,29.33071,11.61417,10.82677,29.33071,10.82677,27.36221,-10.82677,29.33071,-10.82677,27.36221,12.00787,16.40632,12.00787,15.05594,10.03937,16.40632,10.03937,15.05594,12.00787,22.57248,12.00787,19.23225,10.03937,22.57248,10.03937,19.23225,-12.00787,6.654835,-12.00787,9.48119,-10.03937,6.654835,-10.03937,9.48119,25.3937,11.42118,25.3937,14.24753,27.36221,11.42118,27.36221,14.24753,12.00787,1.08173,10.03937,1.08173,12.00787,4.421968,10.03937,4.421968,-1.451455E-11,33.87801,3.311661,33.44202,-3.311661,33.44202,6.397638,32.16376,-6.397638,32.16376,-1.451455E-11,31.9095,-2.802175,31.54059,2.802175,31.54059,-5.413386,30.45899,5.413386,30.45899,-9.047626,30.13036,9.047626,30.13036,-7.655684,28.73842,-10.25898,28.5517,-11.08103,27.48037,-9.376259,26.49612,-12.35929,24.39439,-10.45786,23.88491,7.655684,28.73842,10.25898,28.5517,11.08103,27.48037,9.376259,26.49612,-12.79528,21.08273,12.35929,24.39439,10.45786,23.88491,10.82677,21.08273,-10.82677,21.08273,12.79528,21.08273,-12.30315,18.61223,-11.3189,18.61223,-12.30315,16.64373,-12.79528,12.99213,-11.3189,16.64373,-10.82677,12.99213,11.3189,18.61223,12.30315,18.61223,11.3189,16.64373,10.82677,12.99213,12.30315,16.64373,12.79528,12.99213,25.3937,18.13923,27.36221,18.13923,25.3937,15.31288,27.36221,15.31288,-12.00787,19.23225,-12.00787,22.57248,-10.03937,19.23225,-10.03937,22.57248,-25.3937,16.40632,-25.3937,15.05594,-27.36221,16.40632,-27.36221,15.05594,25.3937,6.654835,25.3937,9.48119,27.36221,6.654835,27.36221,9.48119,-10.82677,16.64373,-10.82677,18.61223,10.82677,16.64373,10.82677,18.61223,-25.3937,4.165026,-25.3937,1.338672,-27.36221,4.165026,-27.36221,1.338672,-25.3937,19.48919,-27.36221,19.48919,-25.3937,22.31554,-27.36221,22.31554,10.25898,28.5517,9.047626,30.13036,10.88366,29.03104,9.672314,30.6097,13.97638,16.40632,-29.33071,16.40632,13.97638,18.39618,-29.33071,18.39618,-25.3937,19.23225,-27.36221,19.23225,-25.3937,22.57248,-27.36221,22.57248,25.3937,17.80779,25.3937,21.14802,27.36221,17.80779,27.36221,21.14802,-25.3937,21.14802,-25.3937,17.80779,-27.36221,21.14802,-27.36221,17.80779,-25.3937,18.06473,-27.36221,18.06473,-25.3937,20.89108,-27.36221,20.89108,-25.3937,15.31288,-27.36221,15.31288,-25.3937,18.13923,-27.36221,18.13923,-25.3937,14.24753,-25.3937,11.42118,-27.36221,14.24753,-27.36221,11.42118,10.25898,28.5517,9.047626,30.13036,10.88366,29.03104,9.672314,30.6097,25.3937,9.738132,27.36221,9.738132,25.3937,6.397894,27.36221,6.397894,-25.3937,1.08173,-27.36221,1.08173,-25.3937,4.421968,-27.36221,4.421968,12.00787,21.14802,12.00787,17.80779,10.03937,21.14802,10.03937,17.80779,-13.97638,16.40632,-13.97638,18.39618,29.33071,16.40632,29.33071,18.39618,10.82677,11.61417,-10.82677,11.61417,10.82677,12.99213,-10.82677,12.99213,-12.00787,25.52016,25.3937,25.52016,-10.03937,25.52016,-13.97638,25.52016,29.33071,25.52016,27.36221,25.52016,-13.97638,26.30757,29.33071,26.30757,-12.00787,11.42118,-12.00787,14.24753,-10.03937,11.42118,-10.03937,14.24753,25.3937,20.89108,27.36221,20.89108,25.3937,18.06473,27.36221,18.06473,12.30315,25.3937,12.30315,-10.03937,11.3189,25.3937,11.3189,-10.03937,-10.82677,8.661417,-10.82677,10.23622,10.82677,8.661417,10.82677,10.23622,25.3937,12.99213,25.3937,21.08273,27.36221,12.99213,25.7874,21.08273,27.36221,21.08273,10.03937,16.64373,-25.3937,16.64373,10.03937,18.61223,-25.3937,18.61223,25.3937,19.48919,25.3937,22.31554,25.7874,19.48919,27.36221,22.31554,27.36221,19.48919,12.00787,18.06473,10.03937,18.06473,12.00787,20.89108,10.03937,20.89108,25.3937,4.421968,27.36221,4.421968,25.3937,1.08173,27.36221,1.08173,-29.33071,26.30757,13.97638,26.30757,-29.33071,25.52016,-27.36221,25.52016,-25.3937,25.52016,12.00787,25.52016,10.03937,25.52016,13.97638,25.52016,12.00787,14.24753,12.00787,11.42118,10.03937,14.24753,10.03937,11.42118,-25.3937,9.48119,-25.3937,6.654835,-27.36221,9.48119,-27.36221,6.654835,-10.25898,28.5517,-10.88366,29.03104,-9.047626,30.13036,-9.672314,30.6097,12.00787,9.48119,12.00787,6.654835,10.03937,9.48119,10.03937,6.654835,10.03937,16.40632,-25.3937,16.40632,10.03937,18.39618,-25.3937,18.39618,12.00787,4.165026,12.00787,1.338672,10.03937,4.165026,10.03937,1.338672,-12.00787,20.89108,-10.03937,20.89108,-12.00787,18.06473,-10.03937,18.06473,13.97638,25.52016,12.00787,25.52016,13.97638,26.30757,10.03937,25.52016,-27.36221,25.52016,-25.3937,25.52016,-29.33071,25.52016,-29.33071,26.30757,-27.36221,16.40632,-29.33071,16.40632,-27.36221,18.39618,-29.33071,18.39618,-12.00787,14.50447,-10.03937,14.50447,-12.00787,11.16424,-10.03937,11.16424,13.97638,16.40632,12.00787,16.40632,13.97638,18.39618,12.00787,18.39618,-10.03937,18.39618,25.3937,18.39618,-10.03937,16.40632,25.3937,16.40632,12.00787,6.397894,10.03937,6.397894,12.00787,9.738132,10.03937,9.738132,-12.00787,15.05594,-12.00787,16.40632,-10.03937,15.05594,-10.03937,16.40632,12.00787,19.48919,10.03937,19.48919,12.00787,22.31554,10.03937,22.31554,25.3937,15.05594,25.3937,16.40632,27.36221,15.05594,27.36221,16.40632,-1.164943E-11,33.87801,3.311661,33.44202,-3.311661,33.44202,6.397638,32.16376,-6.397638,32.16376,-1.164943E-11,31.9095,-2.802175,31.54059,2.802175,31.54059,-5.413386,30.45899,5.413386,30.45899,-9.047626,30.13036,9.047626,30.13036,-7.655684,28.73842,-10.25898,28.5517,-11.08103,27.48037,-9.376259,26.49612,-12.35929,24.39439,-10.45786,23.88491,7.655684,28.73842,10.25898,28.5517,11.08103,27.48037,9.376259,26.49612,-12.79528,21.08273,12.35929,24.39439,10.45786,23.88491,10.82677,21.08273,-10.82677,21.08273,-10.82677,12.99213,12.79528,21.08273,10.82677,12.99213,10.82677,11.61417,12.79528,10.23622,-10.82677,11.61417,-12.79528,10.23622,29.33071,25.52016,27.36221,25.52016,29.33071,26.30757,-13.97638,26.30757,25.3937,25.52016,-10.03937,25.52016,-12.00787,25.52016,-13.97638,25.52016,-12.00787,9.738132,-10.03937,9.738132,-12.00787,6.397894,-10.03937,6.397894,10.82677,10.23622,10.82677,12.99213,12.79528,10.23622,12.79528,21.08273,10.82677,21.08273,12.35929,24.39439,10.45786,23.88491,9.376259,26.49612,11.08103,27.48037,7.655684,28.73842,10.25898,28.5517,9.047626,30.13036,5.413386,30.45899,6.397638,32.16376,2.802175,31.54059,1.427489E-11,31.9095,-6.397638,32.16376,-2.802175,31.54059,3.311661,33.44202,-5.413386,30.45899,-3.311661,33.44202,1.427489E-11,33.87801,-9.047626,30.13036,-7.655684,28.73842,-10.25898,28.5517,-11.08103,27.48037,-9.376259,26.49612,-12.35929,24.39439,-10.45786,23.88491,-12.79528,21.08273,-10.82677,21.08273,-10.82677,12.99213,-10.82677,10.23622,-12.79528,10.23622,12.00787,11.16424,10.03937,11.16424,12.00787,14.50447,10.03937,14.50447,-12.00787,17.80779,-12.00787,21.14802,-10.03937,17.80779,-10.03937,21.14802,-12.00787,22.31554,-10.03937,22.31554,-12.00787,19.48919,-10.43307,19.48919,-10.03937,19.48919,-12.00787,4.421968,-10.03937,4.421968,-12.00787,1.08173,-10.03937,1.08173,-25.3937,11.16424,-27.36221,11.16424,-25.3937,14.50447,-27.36221,14.50447,-18.60236,11.12205,-12.00787,10.23622,-20.57087,11.12205,-18.60236,12.1063,-21.45669,10.23622,-12.00787,12.99213,-20.57087,12.1063,-21.45669,12.99213,12.79528,-12.00787,10.82677,25.3937,12.79528,27.36221,-12.79528,27.36221,10.82677,-10.03937,-10.82677,25.3937,-10.82677,-10.03937,-12.79528,-12.00787,-10.82677,-12.00787,10.82677,-12.00787,-9.940945,-20.57087,-10.82677,-21.45669,-8.956693,-20.57087,-9.940945,-18.60236,-8.070867,-21.45669,-8.956693,-18.60236,-8.070867,-12.00787,8.070867,-12.00787,10.82677,-21.45669,9.940945,-18.60236,9.940945,-20.57087,8.956693,-18.60236,8.070867,-21.45669,8.956693,-20.57087,21.45669,10.23622,20.57087,12.1063,21.45669,12.99213,12.00787,12.99213,20.57087,11.12205,18.60236,12.1063,12.00787,10.23622,18.60236,11.12205 + } + UVIndex: *1476 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,30,31,29,31,30,32,31,33,29,30,34,32,33,35,29,35,32,34,29,35,36,34,36,35,37,39,38,39,40,38,40,39,41,40,42,38,39,43,41,42,44,38,44,41,43,38,44,45,43,45,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,88,89,87,89,90,87,91,90,89,87,90,92,93,90,91,90,94,92,92,94,95,94,96,95,96,97,95,98,90,93,93,99,98,100,98,99,101,90,98,102,90,101,97,103,95,97,104,103,105,103,104,103,106,95,107,95,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,174,175,173,175,176,173,177,173,176,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,205,207,208,207,209,208,210,208,209,211,208,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,242,243,241,241,243,244,244,243,245,245,246,244,245,243,247,246,248,244,247,243,249,244,248,250,243,251,249,248,252,250,250,252,253,253,252,254,252,255,254,249,251,256,251,257,256,257,258,256,256,258,259,258,260,259,259,260,261,254,255,262,255,263,262,260,264,261,263,265,262,266,261,264,262,265,267,266,264,268,268,269,266,268,264,270,264,271,270,269,272,266,272,270,271,266,272,273,271,273,272,267,265,274,274,275,267,274,265,276,265,277,276,275,278,267,278,276,277,267,278,279,277,279,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,299,298,301,303,302,304,302,303,305,307,306,308,306,307,309,311,310,312,310,311,313,315,314,316,314,315,317,319,318,320,318,319,321,323,322,324,322,323,325,327,326,328,326,327,329,331,330,332,330,331,333,335,334,334,335,336,335,337,336,337,338,336,338,337,339,338,340,336,339,337,341,340,342,336,337,343,341,336,342,344,341,343,345,343,346,345,346,347,345,345,347,348,347,349,348,348,349,350,342,351,344,344,351,352,352,351,353,351,354,353,349,355,350,353,354,356,354,357,356,357,358,356,350,355,359,356,358,360,359,355,361,361,362,359,361,355,363,355,364,363,362,365,359,365,363,364,359,365,366,364,366,365,360,358,367,367,368,360,367,358,369,358,370,369,368,371,360,371,369,370,360,371,372,370,372,371,373,375,374,376,374,375,377,379,378,380,378,379,381,383,382,384,382,383,385,387,386,388,386,387,389,391,390,392,390,391,393,395,394,396,394,395,397,399,398,400,398,399,401,403,402,404,402,403,405,407,406,408,406,407,409,411,410,412,410,411,413,415,414,416,414,415,417,419,418,420,418,419,421,423,422,424,422,423,425,427,426,428,426,427,429,431,430,432,430,431,433,435,434,436,434,435,437,439,438,440,438,439,441,443,442,444,442,443,445,447,446,448,446,447,449,451,450,452,450,451,453,455,454,456,454,455,457,459,458,457,458,460,458,461,460,462,461,458,460,461,463,464,463,461,465,467,466,468,466,467,469,471,470,472,470,471,473,475,474,476,474,475,477,479,478,480,478,479,481,483,482,484,482,483,485,484,483,486,488,487,489,487,488,490,492,491,493,491,492,494,493,492,495,497,496,498,496,497,499,501,500,502,500,501,503,505,504,506,504,505,506,507,504,507,508,504,509,508,507,510,504,508,511,513,512,514,512,513,515,517,516,518,516,517,519,521,520,522,520,521,523,525,524,526,524,525,527,529,528,530,528,529,531,533,532,534,532,533,535,537,536,538,536,537,539,541,540,542,540,541,543,542,541,542,543,544,545,543,541,546,545,541,547,549,548,550,548,549,551,553,552,554,552,553,555,557,556,558,556,557,559,561,560,562,560,561,563,565,564,566,564,565,567,569,568,570,568,569,571,573,572,574,572,573,575,577,576,578,576,577,579,581,580,580,581,582,581,583,582,583,584,582,584,583,585,584,586,582,585,583,587,586,588,582,583,589,587,582,588,590,587,589,591,589,592,591,592,593,591,591,593,594,593,595,594,594,595,596,588,597,590,590,597,598,598,597,599,597,600,599,595,601,596,599,600,602,600,603,602,603,604,602,596,601,605,605,601,606,602,604,607,604,608,607,608,609,607,610,607,609,606,601,611,609,611,610,601,612,611,610,611,612,613,615,614,616,614,615,614,616,617,617,616,618,618,616,619,620,619,616,621,623,622,624,622,623,625,627,626,628,626,627,629,626,628,630,629,628,631,629,630,632,631,630,633,632,630,634,632,633,635,634,633,636,634,635,637,634,636,638,637,636,639,637,638,640,639,638,638,641,640,640,641,642,643,641,638,642,641,644,645,641,643,646,645,643,641,647,644,644,647,648,647,649,648,649,650,648,648,650,651,650,652,651,651,652,653,652,654,653,653,654,655,655,654,656,656,654,657,658,657,654,659,661,660,662,660,661,663,665,664,666,664,665,667,669,668,670,668,669,671,668,670,672,674,673,675,673,674,676,678,677,679,677,678,680,682,681,683,680,681,684,681,682,685,683,681,682,686,684,683,685,686,684,686,687,685,687,686,688,690,689,691,689,690,689,692,688,693,689,691,694,693,691,691,695,694,695,696,694,694,697,692,697,688,692,696,698,694,696,699,698,698,699,700,698,701,694,699,702,700,703,700,702,701,703,694,703,702,694,702,704,694,704,705,694,705,697,694,706,697,705,707,706,705,707,708,706,709,707,705,710,706,708,711,709,705,711,710,708,705,710,711,712,714,713,715,713,714,713,716,712,717,713,715,718,712,716,719,717,715,719,718,716,715,718,719 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *492 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5558791436270493980, "Model::hay", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0.01341687,3.3,2.061369 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1.12,1.12,1.12 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4727609306271410538, "Geometry::", "Mesh" { + Vertices: *747 { + a: 0.6377534,1.8886,-1.97908,1.129237,1.8886,-1.554842,0.5905012,2.6,-1.836202,1.72029,2.6,-0.8609944,1.675395,1.40296,-1.208791,2.211644,3.609557E-15,-1.10812,2.12766,4.511947E-16,-1.180613,2.107015,1.40296,-1.708828,2.477765,0,-1.586214,1.675395,1.40296,-1.208791,2.12766,4.511947E-16,-1.180613,-0.6813216,1.8886,2.009435,-1.162853,1.8886,1.593788,-0.6340694,2.6,1.866557,-1.763858,2.6,0.8913497,-1.709011,1.40296,1.247737,-2.255213,3.609557E-15,1.138475,-2.161277,3.609557E-15,1.219558,0.1658802,1.8886,-1.944427,-0.478909,1.40296,-1.992244,0.1352954,1.8886,-2.360912,-0.5219443,1.40296,-2.578273,-0.8587962,4.511947E-16,-2.239275,-0.478909,1.40296,-1.992244,-1.145082,3.609557E-15,-2.218251,-0.8979561,2.6,-1.726897,0.1658802,1.8886,-1.944427,0.6377534,1.8886,-1.97908,0.5905012,2.6,-1.836202,-0.005006001,0,-3.729285,1.349872,0,-3.828781,0.1704531,1.40296,-3.380424,1.227258,1.40296,-3.45803,2.107015,1.40296,-1.708828,1.675395,1.40296,-1.208791,1.449775,1.8886,-1.92619,1.129237,1.8886,-1.554842,0.005006001,3.609557E-15,3.729285,-1.349872,3.609557E-15,3.828781,-0.1704531,1.40296,3.380424,-1.227258,1.40296,3.45803,0.9039057,3.5,0.3213203,0.4163019,3.5,0.8862147,0.8492529,3.5,-0.4229084,0.2843585,3.5,-0.9105122,-0.3279268,3.5,0.9408674,-0.4598701,3.5,-0.8558595,-0.8928213,3.5,0.4532637,-0.9474739,3.5,-0.290965,2.378269,0,-2.941092,2.477765,0,-1.586214,2.029408,1.40296,-2.765633,2.107015,1.40296,-1.708828,-0.8926951,0,-2.700887,-0.5219443,1.40296,-2.578273,-0.8587962,4.511947E-16,-2.239275,-0.478909,1.40296,-1.992244,-0.4598701,3.5,-0.8558595,-0.9474739,3.5,-0.290965,-0.8979561,2.6,-1.726897,-1.873164,2.6,-0.5971076,0.4814941,1.8886,-2.761987,0.1352954,1.8886,-2.360912,0.1704531,1.40296,-3.380424,-0.5219443,1.40296,-2.578273,-0.3279268,3.5,0.9408674,-0.6340694,2.6,1.866557,-0.8928213,3.5,0.4532637,-1.763858,2.6,0.8913497,-1.349872,3.609557E-15,3.828781,-2.378269,3.609557E-15,2.941092,-1.227258,1.40296,3.45803,-2.029408,1.40296,2.765633,-2.161277,3.609557E-15,1.219558,-1.709011,1.40296,1.247737,-2.477765,3.609557E-15,1.586214,-2.107015,1.40296,1.708828,-0.8928213,3.5,0.4532637,-1.763858,2.6,0.8913497,-0.9474739,3.5,-0.290965,-1.873164,2.6,-0.5971076,-0.1352954,1.8886,2.360912,-0.4814941,1.8886,2.761987,-0.1638967,1.8886,1.971437,-0.6813216,1.8886,2.009435,-1.009897,1.8886,2.80079,-1.162853,1.8886,1.593788,-1.410972,1.8886,2.454592,-1.449775,1.8886,1.92619,1.227258,1.40296,-3.45803,1.009897,1.8886,-2.80079,0.1704531,1.40296,-3.380424,0.4814941,1.8886,-2.761987,-2.395348,3.609557E-15,-0.7698035,-1.873164,2.6,-0.5971076,-2.255213,3.609557E-15,1.138475,-1.763858,2.6,0.8913497,-0.1704531,1.40296,3.380424,-1.227258,1.40296,3.45803,-0.4814941,1.8886,2.761987,-1.009897,1.8886,2.80079,1.829596,2.6,0.6274629,2.35178,3.609557E-15,0.8001589,0.8543879,2.6,1.757252,1.101513,3.609557E-15,2.248606,0.5219443,1.40296,2.578273,-0.1352954,1.8886,2.360912,0.4808925,1.40296,2.019254,-0.1638967,1.8886,1.971437,0.4808925,1.40296,2.019254,0.8607798,3.609557E-15,2.266284,0.5219443,1.40296,2.578273,0.8926951,3.609557E-15,2.700887,1.101513,3.609557E-15,2.248606,0.8607798,3.609557E-15,2.266284,0.8543879,2.6,1.757252,0.4808925,1.40296,2.019254,-0.1638967,1.8886,1.971437,-0.6813216,1.8886,2.009435,-0.6340694,2.6,1.866557,1.72029,2.6,-0.8609944,0.8492529,3.5,-0.4229084,0.5905012,2.6,-1.836202,0.2843585,3.5,-0.9105122,2.107015,1.40296,-1.708828,1.449775,1.8886,-1.92619,2.029408,1.40296,-2.765633,1.410972,1.8886,-2.454592,1.449775,1.8886,-1.92619,1.129237,1.8886,-1.554842,1.410972,1.8886,-2.454592,1.009897,1.8886,-2.80079,0.6377534,1.8886,-1.97908,0.4814941,1.8886,-2.761987,0.1658802,1.8886,-1.944427,0.1352954,1.8886,-2.360912,-1.162853,1.8886,1.593788,-1.449775,1.8886,1.92619,-1.709011,1.40296,1.247737,-2.107015,1.40296,1.708828,1.829596,2.6,0.6274629,0.9039057,3.5,0.3213203,1.72029,2.6,-0.8609944,0.8492529,3.5,-0.4229084,2.211644,3.609557E-15,-1.10812,2.35178,3.609557E-15,0.8001589,1.72029,2.6,-0.8609944,1.829596,2.6,0.6274629,-1.009897,1.8886,2.80079,-1.227258,1.40296,3.45803,-1.410972,1.8886,2.454592,-2.029408,1.40296,2.765633,1.349872,0,-3.828781,2.378269,0,-2.941092,1.227258,1.40296,-3.45803,2.029408,1.40296,-2.765633,0.5219443,1.40296,2.578273,0.8926951,3.609557E-15,2.700887,-0.1704531,1.40296,3.380424,0.005006001,3.609557E-15,3.729285,0.5219443,1.40296,2.578273,-0.1704531,1.40296,3.380424,-0.1352954,1.8886,2.360912,-0.4814941,1.8886,2.761987,-2.477765,3.609557E-15,1.586214,-2.107015,1.40296,1.708828,-2.378269,3.609557E-15,2.941092,-2.029408,1.40296,2.765633,-1.410972,1.8886,2.454592,-2.029408,1.40296,2.765633,-1.449775,1.8886,1.92619,-2.107015,1.40296,1.708828,-0.005006001,0,-3.729285,0.1704531,1.40296,-3.380424,-0.8926951,0,-2.700887,-0.5219443,1.40296,-2.578273,0.5905012,2.6,-1.836202,0.2843585,3.5,-0.9105122,-0.8979561,2.6,-1.726897,-0.4598701,3.5,-0.8558595,-1.145082,3.609557E-15,-2.218251,-0.8979561,2.6,-1.726897,-2.395348,3.609557E-15,-0.7698035,-1.873164,2.6,-0.5971076,0.8543879,2.6,1.757252,-0.6340694,2.6,1.866557,0.4163019,3.5,0.8862147,-0.3279268,3.5,0.9408674,1.829596,2.6,0.6274629,0.8543879,2.6,1.757252,0.9039057,3.5,0.3213203,0.4163019,3.5,0.8862147,2.029408,1.40296,-2.765633,1.410972,1.8886,-2.454592,1.227258,1.40296,-3.45803,1.009897,1.8886,-2.80079,0.8926951,3.609557E-15,2.700887,0.8607798,3.609557E-15,2.266284,0.005006001,3.609557E-15,3.729285,2.477765,0,-1.586214,2.378269,0,-2.941092,2.12766,4.511947E-16,-1.180613,1.349872,0,-3.828781,2.12766,4.511947E-16,-1.180613,2.378269,0,-2.941092,-1.349872,3.609557E-15,3.828781,-2.161277,3.609557E-15,1.219558,-2.378269,3.609557E-15,2.941092,-2.477765,3.609557E-15,1.586214,-2.378269,3.609557E-15,2.941092,-2.161277,3.609557E-15,1.219558,2.35178,3.609557E-15,0.8001589,2.211644,3.609557E-15,-1.10812,1.101513,3.609557E-15,2.248606,2.12766,4.511947E-16,-1.180613,1.101513,3.609557E-15,2.248606,2.211644,3.609557E-15,-1.10812,1.349872,0,-3.828781,1.101513,3.609557E-15,2.248606,2.12766,4.511947E-16,-1.180613,-0.005006001,0,-3.729285,1.101513,3.609557E-15,2.248606,1.349872,0,-3.828781,0.8607798,3.609557E-15,2.266284,1.101513,3.609557E-15,2.248606,-0.005006001,0,-3.729285,0.005006001,3.609557E-15,3.729285,0.8607798,3.609557E-15,2.266284,-0.005006001,0,-3.729285,-1.349872,3.609557E-15,3.828781,0.005006001,3.609557E-15,3.729285,-0.005006001,0,-3.729285,-0.8587962,4.511947E-16,-2.239275,-1.349872,3.609557E-15,3.828781,-0.005006001,0,-3.729285,-1.145082,3.609557E-15,-2.218251,-1.349872,3.609557E-15,3.828781,-0.8587962,4.511947E-16,-2.239275,-2.395348,3.609557E-15,-0.7698035,-1.349872,3.609557E-15,3.828781,-1.145082,3.609557E-15,-2.218251,-2.161277,3.609557E-15,1.219558,-1.349872,3.609557E-15,3.828781,-2.395348,3.609557E-15,-0.7698035,-2.255213,3.609557E-15,1.138475,-2.161277,3.609557E-15,1.219558,-0.8587962,4.511947E-16,-2.239275,-0.005006001,0,-3.729285,-0.8926951,0,-2.700887 + } + PolygonVertexIndex: *384 { + a: 0,2,-2,2,3,-2,1,3,-5,3,5,-5,6,4,-6,7,9,-9,10,8,-10,11,13,-13,13,14,-13,12,14,-16,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,23,-26,27,26,-26,28,27,-26,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,42,-45,46,45,-45,47,45,-47,48,47,-47,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,82,-85,86,85,-85,87,85,-87,88,87,-87,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,116,-116,118,117,-116,119,118,-116,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,129,-132,133,132,-132,134,132,-134,135,134,-134,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,201,-201,202,204,-204,205,207,-207,208,210,-210,211,213,-213,214,216,-216,217,219,-219,220,222,-222,223,225,-225,226,228,-228,229,231,-231,232,234,-234,235,237,-237,238,240,-240,241,243,-243,244,243,-246,246,248,-248 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1152 { + a: 0.3071944,0.2069586,-0.9288701,0.3071944,0.2069586,-0.9288701,0.6412882,0.1918073,-0.7429397,0.3071944,0.2069586,-0.9288701,0.8740296,0.2069586,-0.4395911,0.6412882,0.1918073,-0.7429397,0.6412882,0.1918073,-0.7429397,0.8740296,0.2069586,-0.4395911,0.6412882,0.1918073,-0.7429397,0.8740296,0.2069586,-0.4395911,0.8740296,0.2069586,-0.4395911,0.6412882,0.1918073,-0.7429397,0.6412882,0.1918073,-0.7429397,0.6412882,0.1918073,-0.7429397,0.8740296,0.2069586,-0.4395911,0.9146557,0.2681467,0.3024934,0.7331426,0.24905,0.6328318,0.9146557,0.2681467,0.3024934,0.7331426,0.24905,0.6328318,0.9146557,0.2681467,0.3024934,0.7331426,0.24905,0.6328318,-0.3071944,0.2069586,0.9288701,-0.3071944,0.2069586,0.9288701,-0.6412882,0.1918073,0.7429397,-0.3071944,0.2069586,0.9288701,-0.8740296,0.2069586,0.4395911,-0.6412882,0.1918073,0.7429397,-0.6412882,0.1918073,0.7429397,-0.8740296,0.2069586,0.4395911,-0.6412882,0.1918073,0.7429397,-0.8740296,0.2069586,0.4395911,-0.8740296,0.2069586,0.4395911,-0.6412882,0.1918073,0.7429397,-0.6412882,0.1918073,0.7429397,-0.6412882,0.1918073,0.7429397,-0.8740296,0.2069586,0.4395911,-0.6031258,0.7964154,0.04429079,-0.5452619,0.8186398,-0.1803282,-0.6031258,0.7964154,0.04429079,-0.5452619,0.8186398,-0.1803282,-0.6031258,0.7964154,0.04429079,-0.5452619,0.8186398,-0.1803282,-0.07187836,0.1918073,-0.978797,-0.4395911,0.2069586,-0.8740296,-0.07187836,0.1918073,-0.978797,-0.4395911,0.2069586,-0.8740296,-0.07187836,0.1918073,-0.978797,-0.4395911,0.2069586,-0.8740296,-0.07187836,0.1918073,-0.978797,-0.07187836,0.1918073,-0.978797,-0.4395911,0.2069586,-0.8740296,0.3071944,0.2069586,-0.9288701,-0.07187836,0.1918073,-0.978797,-0.4395911,0.2069586,-0.8740296,0.3071944,0.2069586,-0.9288701,0.3071944,0.2069586,-0.9288701,-0.4395911,0.2069586,-0.8740296,-0.432864,0.2681467,-0.8606544,-0.432864,0.2681467,-0.8606544,0.3024934,0.2681467,-0.9146557,0.3024934,0.2681467,-0.9146557,0.3024934,0.2681467,-0.9146557,-0.432864,0.2681467,-0.8606544,0.5452619,0.8186398,0.1803282,0.5452619,0.8186398,0.1803282,0.4577927,0.7964154,0.3951561,0.4577927,0.7964154,0.3951561,0.4577927,0.7964154,0.3951561,0.5452619,0.8186398,0.1803282,0.432864,0.2681467,0.8606544,0.432864,0.2681467,0.8606544,-0.3024934,0.2681467,0.9146557,-0.3024934,0.2681467,0.9146557,-0.3024934,0.2681467,0.9146557,0.432864,0.2681467,0.8606544,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8606544,0.2681467,-0.432864,0.8606544,0.2681467,-0.432864,0.9146557,0.2681467,0.3024934,0.9146557,0.2681467,0.3024934,0.9146557,0.2681467,0.3024934,0.8606544,0.2681467,-0.432864,-0.9146557,0.2681467,-0.3024934,-0.9658897,0.24905,0.0709305,-0.9146557,0.2681467,-0.3024934,-0.9658897,0.24905,0.0709305,-0.9146557,0.2681467,-0.3024934,-0.9658897,0.24905,0.0709305,-0.3047641,0.7348034,-0.605956,-0.3047641,0.7348034,-0.605956,-0.6439764,0.7348034,-0.2129748,-0.6439764,0.7348034,-0.2129748,-0.6439764,0.7348034,-0.2129748,-0.3047641,0.7348034,-0.605956,-0.2580472,0.8186398,-0.5130697,-0.2580472,0.8186398,-0.5130697,-0.5452619,0.8186398,-0.1803282,-0.5452619,0.8186398,-0.1803282,-0.5452619,0.8186398,-0.1803282,-0.2580472,0.8186398,-0.5130697,-0.2129748,0.7348034,0.6439764,-0.605956,0.7348034,0.3047641,-0.2129748,0.7348034,0.6439764,-0.605956,0.7348034,0.3047641,-0.2129748,0.7348034,0.6439764,-0.605956,0.7348034,0.3047641,-0.3024934,0.2681467,0.9146557,-0.3024934,0.2681467,0.9146557,-0.8606544,0.2681467,0.432864,-0.8606544,0.2681467,0.432864,-0.8606544,0.2681467,0.432864,-0.3024934,0.2681467,0.9146557,-0.7331426,0.24905,-0.6328318,-0.9146557,0.2681467,-0.3024934,-0.7331426,0.24905,-0.6328318,-0.9146557,0.2681467,-0.3024934,-0.7331426,0.24905,-0.6328318,-0.9146557,0.2681467,-0.3024934,-0.605956,0.7348034,0.3047641,-0.6439764,0.7348034,-0.2129748,-0.605956,0.7348034,0.3047641,-0.6439764,0.7348034,-0.2129748,-0.605956,0.7348034,0.3047641,-0.6439764,0.7348034,-0.2129748,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.1803282,0.8186398,-0.5452619,-0.2580472,0.8186398,-0.5130697,0.1803282,0.8186398,-0.5452619,-0.2580472,0.8186398,-0.5130697,0.1803282,0.8186398,-0.5452619,-0.2580472,0.8186398,-0.5130697,-0.9288701,0.2069586,-0.3071944,-0.8740296,0.2069586,0.4395911,-0.9288701,0.2069586,-0.3071944,-0.8740296,0.2069586,0.4395911,-0.9288701,0.2069586,-0.3071944,-0.8740296,0.2069586,0.4395911,0.2580472,0.8186398,0.5130697,0.2580472,0.8186398,0.5130697,-0.1803282,0.8186398,0.5452619,-0.1803282,0.8186398,0.5452619,-0.1803282,0.8186398,0.5452619,0.2580472,0.8186398,0.5130697,0.9288701,0.2069586,0.3071944,0.4395911,0.2069586,0.8740296,0.9288701,0.2069586,0.3071944,0.4395911,0.2069586,0.8740296,0.9288701,0.2069586,0.3071944,0.4395911,0.2069586,0.8740296,0.5452619,0.8186398,0.1803282,0.6031258,0.7964154,-0.04429079,0.5452619,0.8186398,0.1803282,0.6031258,0.7964154,-0.04429079,0.5452619,0.8186398,0.1803282,0.6031258,0.7964154,-0.04429079,0.9658897,0.24905,-0.0709305,0.9146557,0.2681467,0.3024934,0.9658897,0.24905,-0.0709305,0.9146557,0.2681467,0.3024934,0.9658897,0.24905,-0.0709305,0.9146557,0.2681467,0.3024934,0.4395911,0.2069586,0.8740296,0.4395911,0.2069586,0.8740296,0.07187836,0.1918073,0.978797,0.07187836,0.1918073,0.978797,0.07187836,0.1918073,0.978797,0.4395911,0.2069586,0.8740296,0.07187836,0.1918073,0.978797,0.07187836,0.1918073,0.978797,0.4395911,0.2069586,0.8740296,-0.3071944,0.2069586,0.9288701,0.07187836,0.1918073,0.978797,0.4395911,0.2069586,0.8740296,-0.3071944,0.2069586,0.9288701,-0.3071944,0.2069586,0.9288701,0.4395911,0.2069586,0.8740296,0.605956,0.7348034,-0.3047641,0.2129748,0.7348034,-0.6439764,0.605956,0.7348034,-0.3047641,0.2129748,0.7348034,-0.6439764,0.605956,0.7348034,-0.3047641,0.2129748,0.7348034,-0.6439764,0.5452619,0.8186398,0.1803282,0.5130697,0.8186398,-0.2580472,0.5452619,0.8186398,0.1803282,0.5130697,0.8186398,-0.2580472,0.5452619,0.8186398,0.1803282,0.5130697,0.8186398,-0.2580472,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4577927,0.7964154,-0.3951561,-0.4577927,0.7964154,-0.3951561,-0.5452619,0.8186398,-0.1803282,-0.5452619,0.8186398,-0.1803282,-0.5452619,0.8186398,-0.1803282,-0.4577927,0.7964154,-0.3951561,0.6439764,0.7348034,0.2129748,0.605956,0.7348034,-0.3047641,0.6439764,0.7348034,0.2129748,0.605956,0.7348034,-0.3047641,0.6439764,0.7348034,0.2129748,0.605956,0.7348034,-0.3047641,0.8740296,0.2069586,-0.4395911,0.8740296,0.2069586,-0.4395911,0.9288701,0.2069586,0.3071944,0.9288701,0.2069586,0.3071944,0.9288701,0.2069586,0.3071944,0.8740296,0.2069586,-0.4395911,-0.1803282,0.8186398,0.5452619,-0.5130697,0.8186398,0.2580472,-0.1803282,0.8186398,0.5452619,-0.5130697,0.8186398,0.2580472,-0.1803282,0.8186398,0.5452619,-0.5130697,0.8186398,0.2580472,0.3024934,0.2681467,-0.9146557,0.3024934,0.2681467,-0.9146557,0.8606544,0.2681467,-0.432864,0.8606544,0.2681467,-0.432864,0.8606544,0.2681467,-0.432864,0.3024934,0.2681467,-0.9146557,0.9146557,0.2681467,0.3024934,0.432864,0.2681467,0.8606544,0.9146557,0.2681467,0.3024934,0.432864,0.2681467,0.8606544,0.9146557,0.2681467,0.3024934,0.432864,0.2681467,0.8606544,0.5452619,0.8186398,0.1803282,0.5452619,0.8186398,0.1803282,0.2580472,0.8186398,0.5130697,0.2580472,0.8186398,0.5130697,0.2580472,0.8186398,0.5130697,0.5452619,0.8186398,0.1803282,-0.9146557,0.2681467,-0.3024934,-0.8606544,0.2681467,0.432864,-0.9146557,0.2681467,-0.3024934,-0.8606544,0.2681467,0.432864,-0.9146557,0.2681467,-0.3024934,-0.8606544,0.2681467,0.432864,-0.5130697,0.8186398,0.2580472,-0.5452619,0.8186398,-0.1803282,-0.5130697,0.8186398,0.2580472,-0.5452619,0.8186398,-0.1803282,-0.5130697,0.8186398,0.2580472,-0.5452619,0.8186398,-0.1803282,-0.432864,0.2681467,-0.8606544,-0.9146557,0.2681467,-0.3024934,-0.432864,0.2681467,-0.8606544,-0.9146557,0.2681467,-0.3024934,-0.432864,0.2681467,-0.8606544,-0.9146557,0.2681467,-0.3024934,0.2129748,0.7348034,-0.6439764,-0.3047641,0.7348034,-0.605956,0.2129748,0.7348034,-0.6439764,-0.3047641,0.7348034,-0.605956,0.2129748,0.7348034,-0.6439764,-0.3047641,0.7348034,-0.605956,-0.4395911,0.2069586,-0.8740296,-0.9288701,0.2069586,-0.3071944,-0.4395911,0.2069586,-0.8740296,-0.9288701,0.2069586,-0.3071944,-0.4395911,0.2069586,-0.8740296,-0.9288701,0.2069586,-0.3071944,0.3047641,0.7348034,0.605956,0.3047641,0.7348034,0.605956,-0.2129748,0.7348034,0.6439764,-0.2129748,0.7348034,0.6439764,-0.2129748,0.7348034,0.6439764,0.3047641,0.7348034,0.605956,0.6439764,0.7348034,0.2129748,0.6439764,0.7348034,0.2129748,0.3047641,0.7348034,0.605956,0.3047641,0.7348034,0.605956,0.3047641,0.7348034,0.605956,0.6439764,0.7348034,0.2129748,0.5130697,0.8186398,-0.2580472,0.1803282,0.8186398,-0.5452619,0.5130697,0.8186398,-0.2580472,0.1803282,0.8186398,-0.5452619,0.5130697,0.8186398,-0.2580472,0.1803282,0.8186398,-0.5452619,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *498 { + a: 3.190532,5.851365,0.634407,5.851365,2.963802,8.705139,-2.912046,8.705139,-1.883528,3.903224,-3.740691,-1.724737,-3.303902,-1.724737,10.51315,4.880331,11.10149,-0.8228368,7.912544,4.880331,8.992028,-0.8228368,3.138776,5.812514,0.634407,5.812514,2.912046,8.666289,-2.963802,8.666289,-1.883528,3.864374,-3.792448,-1.763587,-3.303902,-1.763587,-7.586838,5.461811,-7.960505,2.300226,-9.230957,5.461811,-10.27392,2.300226,2.726337,-1.733936,1.305963,3.894025,3.856479,-1.733936,3.027834,8.69594,-1.211973,5.842165,-3.074744,5.842165,-2.848014,8.69594,-1.055644,-3.647147,-6.404172,-3.647147,-1.643982,2.05602,-5.815834,2.05602,10.51315,1.840244,7.912544,1.840244,9.470192,5.001829,7.538877,5.001829,-1.055644,-3.647147,-6.404172,-3.647147,-1.643982,2.05602,-5.815834,2.05602,-3.558684,1.265041,-1.638984,3.489034,-3.343516,-1.664994,-1.119522,-3.584694,1.29105,3.704203,1.810512,-3.369525,3.515044,1.784503,3.730212,-1.145531,10.86226,-2.536861,5.51373,-2.536861,10.27392,3.166306,6.102067,3.166306,-10.86226,-0.6789941,-10.27392,5.024174,-9.039989,-0.6789941,-7.960505,5.024174,-1.367688,7.212291,1.570236,7.212291,-2.83665,2.199119,3.039198,2.199119,-9.470192,-0.01931947,-7.384266,-0.01931947,-10.51315,-3.180905,-6.341303,-3.180905,1.443084,7.158955,2.912046,2.145783,-1.49484,7.158955,-2.963802,2.145783,5.826607,-3.706729,0.4780784,-3.706729,5.238268,1.996439,1.066417,1.996439,9.194576,-0.8228368,8.115092,4.880331,11.10149,-0.8228368,10.51315,4.880331,1.522275,7.166994,2.991237,2.153822,-1.415649,7.166994,-2.884611,2.153822,0.5326592,9.29493,1.895646,10.87397,0.6452624,7.761565,2.682369,7.911161,3.975971,11.02673,4.578164,6.274755,5.555006,9.663748,5.707776,7.583423,-5.815834,-7.191375,-4.772871,-4.02979,-1.643982,-7.191375,-2.686945,-4.02979,-3.713256,-1.761407,-2.884611,8.668468,3.819882,-1.761407,2.991237,8.668468,-1.643982,-7.191375,-5.815834,-7.191375,-2.686945,-4.02979,-4.772871,-4.02979,2.83665,8.690678,3.665295,-1.739198,-3.039198,8.690678,-3.867843,-1.739198,-10.27392,2.300226,-9.230957,5.461811,-8.067131,2.300226,-7.693464,5.461811,-8.067131,5.024174,-9.146615,-0.6789941,-10.27392,5.024174,-10.86226,-0.6789941,3.676659,-1.754388,2.726337,-1.754388,2.848014,8.675488,1.305963,3.873573,-1.211973,5.821714,-3.254564,5.821714,-3.027834,8.675488,-2.912046,2.289068,-1.443084,7.30224,2.963802,2.289068,1.49484,7.30224,6.102067,-3.640887,7.14503,-0.4793016,10.27392,-3.640887,9.230957,-0.4793016,-5.707776,-7.583423,-4.445815,-6.121427,-5.555006,-9.663748,-3.975971,-11.02673,-2.51084,-7.791652,-1.895646,-10.87397,-0.6530715,-7.655226,-0.5326592,-9.29493,7.741425,5.001829,9.470192,5.001829,8.115092,1.840244,10.51315,1.840244,-2.991237,2.28103,-1.522275,7.294201,2.884611,2.28103,1.415649,7.294201,3.713256,-1.726917,-3.819882,-1.726917,2.884611,8.70296,-2.991237,8.70296,4.195305,-4.220321,5.238268,-7.381906,2.10938,-4.220321,1.066417,-7.381906,5.826607,-3.706729,0.4780784,-3.706729,5.238268,1.996439,1.066417,1.996439,-6.341303,3.310149,-5.752965,-2.393018,-10.51315,3.310149,-11.10149,-2.393018,-6.341303,-3.180905,-10.51315,-3.180905,-7.384266,-0.01931947,-9.470192,-0.01931947,5.51373,-2.536861,6.102067,3.166306,10.86226,-2.536861,10.27392,3.166306,9.230957,-0.4793016,10.27392,-3.640887,7.14503,-0.4793016,6.102067,-3.640887,-11.10149,-2.393018,-10.51315,3.310149,-5.752965,-2.393018,-6.341303,3.310149,-2.848014,2.25514,-1.379052,7.268312,3.027834,2.25514,1.558872,7.268312,-3.665295,-1.749126,-2.83665,8.680751,3.867843,-1.749126,3.039198,8.680751,2.848014,2.179712,-3.027834,2.179712,1.379052,7.192883,-1.558872,7.192883,2.83665,2.235733,-3.039198,2.235733,1.367688,7.248904,-1.570236,7.248904,1.066417,-7.381906,2.10938,-4.220321,5.238268,-7.381906,4.195305,-4.220321,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198,-3.867843,-1.739198,-3.039198,8.690678,-3.867843,-1.739198,-3.039198,8.690678,3.665295,-1.739198 + } + UVIndex: *384 { + a: 0,2,1,2,3,1,1,3,4,3,5,4,6,4,5,7,9,8,10,8,9,11,13,12,13,14,12,12,14,15,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,23,25,27,26,25,28,27,25,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,42,44,46,45,44,47,45,46,48,47,46,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,82,84,86,85,84,87,85,86,88,87,86,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,116,115,118,117,115,119,118,115,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,129,131,133,132,131,134,132,133,135,134,133,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,201,200,202,204,203,205,207,206,208,210,209,211,213,212,214,216,215,217,219,218,220,222,221,223,225,224,226,228,227,229,231,230,232,234,233,235,237,236,238,240,239,241,243,242,244,243,245,246,248,247 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *128 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4984798714881377806, "Model::wheel", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-3.4513,2.5315,1.95 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5272575673122205711, "Geometry::", "Mesh" { + Vertices: *1056 { + a: -0.8113,1.534062E-14,-0.30378,-0.8113,0.2148049,-0.2148049,-0.8113,-0.2148049,-0.2148049,-0.8113,-0.30378,7.219114E-15,-0.8113,0.30378,7.219114E-15,-0.8113,-0.2148049,0.2148049,-0.8113,0.2148049,0.2148049,-0.8113,1.534062E-14,0.30378,-0.431575,0.4982541,-1.506672,-0.431575,0.7130589,-1.417697,-0.431575,7.670309E-15,-0.30378,-0.431575,0.2148049,-0.2148049,-0.431575,-0.2148049,0.2148049,-0.8113,-0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.8113,1.534062E-14,0.30378,0.2013,-1.353584E-15,-0.30378,0.2013,-0.2148049,-0.2148049,0.2013,0.2148049,-0.2148049,0.2013,0.30378,7.219114E-15,0.2013,-0.30378,7.219114E-15,0.2013,0.2148049,0.2148049,0.2013,-0.2148049,0.2148049,0.2013,-1.353584E-15,0.30378,-0.178425,0.4982541,-1.506672,-0.178425,4.060752E-15,-0.30378,-0.178425,0.7130589,-1.417697,-0.178425,0.2148049,-0.2148049,-0.178425,-1.417697,-0.7130589,-0.178425,-0.2148049,-0.2148049,-0.431575,-1.417697,-0.7130589,-0.431575,-0.2148049,-0.2148049,-0.431575,-0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.431575,-0.7130589,1.417697,-0.431575,-0.4982541,1.506672,-0.178425,-1.506672,-0.4982541,-0.431575,-1.506672,-0.4982541,-0.178425,-0.30378,7.219114E-15,-0.431575,-0.30378,7.219114E-15,-0.431575,7.670309E-15,-0.30378,-0.431575,0.2148049,-0.2148049,-0.8113,1.534062E-14,-0.30378,-0.8113,0.2148049,-0.2148049,-0.431575,-1.417697,-0.7130589,-0.431575,-0.2148049,-0.2148049,-0.431575,-1.506672,-0.4982541,-0.431575,-0.30378,7.219114E-15,-0.178425,-0.2148049,0.2148049,-0.178425,-0.7130589,1.417697,-0.178425,4.060752E-15,0.30378,-0.178425,-0.4982541,1.506672,0.2013,0.30378,7.219114E-15,0.2013,0.2148049,0.2148049,-0.178425,0.30378,7.219114E-15,-0.178425,0.2148049,0.2148049,0.2013,0.2148049,-0.2148049,0.2013,0.30378,7.219114E-15,-0.178425,0.2148049,-0.2148049,-0.178425,0.30378,7.219114E-15,-0.431575,0.2148049,-0.2148049,-0.431575,0.30378,7.219114E-15,-0.8113,0.2148049,-0.2148049,-0.8113,0.30378,7.219114E-15,0.2013,-0.2148049,0.2148049,-0.178425,-0.2148049,0.2148049,0.2013,-1.353584E-15,0.30378,-0.178425,4.060752E-15,0.30378,0.2013,-1.353584E-15,-0.30378,0.2013,0.2148049,-0.2148049,-0.178425,4.060752E-15,-0.30378,-0.178425,0.2148049,-0.2148049,-0.178425,-1.417697,-0.7130589,-0.178425,-1.506672,-0.4982541,-0.178425,-0.2148049,-0.2148049,-0.178425,-0.30378,7.219114E-15,-0.178425,-0.7130589,1.417697,-0.178425,-0.2148049,0.2148049,-0.431575,-0.7130589,1.417697,-0.431575,-0.2148049,0.2148049,-0.178425,0.7130589,-1.417697,-0.178425,0.2148049,-0.2148049,-0.431575,0.7130589,-1.417697,-0.431575,0.2148049,-0.2148049,-0.178425,4.060752E-15,-0.30378,-0.178425,0.4982541,-1.506672,-0.431575,7.670309E-15,-0.30378,-0.431575,0.4982541,-1.506672,-0.178425,0.2148049,0.2148049,-0.431575,0.2148049,0.2148049,-0.178425,1.417697,0.7130589,-0.431575,1.417697,0.7130589,0.2013,-0.2148049,-0.2148049,0.2013,-1.353584E-15,-0.30378,-0.178425,-0.2148049,-0.2148049,-0.431575,-0.2148049,-0.2148049,-0.8113,-0.2148049,-0.2148049,-0.431575,7.670309E-15,-0.30378,-0.8113,1.534062E-14,-0.30378,-0.178425,4.060752E-15,-0.30378,0.2013,-0.2148049,0.2148049,0.2013,-0.30378,7.219114E-15,-0.178425,-0.2148049,0.2148049,-0.178425,-0.30378,7.219114E-15,-0.431575,-0.2148049,0.2148049,-0.431575,-0.30378,7.219114E-15,-0.8113,-0.2148049,0.2148049,-0.8113,-0.30378,7.219114E-15,-0.178425,4.060752E-15,0.30378,-0.178425,-0.4982541,1.506672,-0.431575,7.670309E-15,0.30378,-0.431575,-0.4982541,1.506672,-0.05185,1.353584E-15,1.713055,-0.05185,1.211313,1.211313,-0.5581499,1.037748E-14,1.713055,-0.5581499,1.211313,1.211313,0.2013,-0.30378,7.219114E-15,0.2013,-0.2148049,-0.2148049,-0.178425,-0.30378,7.219114E-15,-0.178425,-0.2148049,-0.2148049,-0.178425,0.30378,7.219114E-15,-0.178425,0.2148049,0.2148049,-0.178425,1.506672,0.4982541,-0.178425,1.417697,0.7130589,-0.178425,0.30378,7.219114E-15,-0.178425,1.506672,0.4982541,-0.431575,0.30378,7.219114E-15,-0.431575,1.506672,0.4982541,0.2013,-1.353584E-15,0.30378,-0.178425,4.060752E-15,0.30378,0.2013,0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.8113,1.534062E-14,0.30378,-0.178425,0.2148049,0.2148049,-0.431575,0.2148049,0.2148049,-0.8113,0.2148049,0.2148049,-0.431575,0.30378,7.219114E-15,-0.431575,1.506672,0.4982541,-0.431575,0.2148049,0.2148049,-0.431575,1.417697,0.7130589,-0.431575,0.30378,7.219114E-15,-0.431575,0.2148049,0.2148049,-0.8113,0.30378,7.219114E-15,-0.8113,0.2148049,0.2148049,-0.05185,-1.211313,1.211313,-0.5581499,-1.211313,1.211313,-0.05185,-1.713055,7.219114E-15,-0.5581499,-1.713055,7.219114E-15,-0.431575,-0.30378,7.219114E-15,-0.431575,-0.2148049,-0.2148049,-0.8113,-0.30378,7.219114E-15,-0.8113,-0.2148049,-0.2148049,-0.05185,-1.211313,-1.211313,-0.5581499,-1.211313,-1.211313,-0.05185,1.353584E-15,-1.713055,-0.5581499,1.037748E-14,-1.713055,-0.05185,1.713055,7.219114E-15,-0.05185,1.211313,-1.211313,-0.5581499,1.713055,7.219114E-15,-0.5581499,1.211313,-1.211313,-0.05185,1.211313,1.211313,-0.05185,1.596144,1.596144,-0.05185,1.713055,7.219114E-15,-0.05185,1.353584E-15,1.713055,-0.05185,2.257288,7.219114E-15,-0.05185,1.353584E-15,2.257288,-0.05185,1.211313,-1.211313,-0.05185,-1.596144,1.596144,-0.05185,1.596144,-1.596144,-0.05185,-1.211313,1.211313,-0.05185,1.353584E-15,-1.713055,-0.05185,1.353584E-15,-2.257288,-0.05185,-1.596144,-1.596144,-0.05185,-1.211313,-1.211313,-0.05185,-2.257288,7.219114E-15,-0.05185,-1.713055,7.219114E-15,-0.5581499,-1.211313,1.211313,-0.5581499,-1.596144,1.596144,-0.5581499,-1.713055,7.219114E-15,-0.5581499,1.037748E-14,1.713055,-0.5581499,-2.257288,7.219114E-15,-0.5581499,1.037748E-14,2.257288,-0.5581499,-1.211313,-1.211313,-0.5581499,1.596144,1.596144,-0.5581499,-1.596144,-1.596144,-0.5581499,1.211313,1.211313,-0.5581499,1.037748E-14,-1.713055,-0.5581499,1.037748E-14,-2.257288,-0.5581499,1.596144,-1.596144,-0.5581499,1.211313,-1.211313,-0.5581499,2.257288,7.219114E-15,-0.5581499,1.713055,7.219114E-15,-0.431575,1.417697,0.7130589,-0.5581499,1.211313,1.211313,-0.178425,1.417697,0.7130589,-0.431575,1.506672,0.4982541,-0.05185,1.211313,1.211313,-0.5581499,1.713055,7.219114E-15,-0.178425,1.506672,0.4982541,-0.05185,1.713055,7.219114E-15,-0.05185,-1.713055,7.219114E-15,-0.178425,-1.417697,-0.7130589,-0.05185,-1.211313,-1.211313,-0.5581499,-1.211313,-1.211313,-0.178425,-1.506672,-0.4982541,-0.431575,-1.417697,-0.7130589,-0.5581499,-1.713055,7.219114E-15,-0.431575,-1.506672,-0.4982541,-0.05185,1.353584E-15,1.713055,-0.178425,-0.7130589,1.417697,-0.05185,-1.211313,1.211313,-0.5581499,-1.211313,1.211313,-0.178425,-0.4982541,1.506672,-0.431575,-0.7130589,1.417697,-0.431575,-0.4982541,1.506672,-0.5581499,1.037748E-14,1.713055,-0.5581499,1.037748E-14,-1.713055,-0.178425,0.4982541,-1.506672,-0.05185,1.353584E-15,-1.713055,-0.05185,1.211313,-1.211313,-0.431575,0.4982541,-1.506672,-0.178425,0.7130589,-1.417697,-0.5581499,1.211313,-1.211313,-0.431575,0.7130589,-1.417697,0.2013,-1.596144,1.596144,0.2013,-4.060752E-15,2.257288,-0.05185,-1.596144,1.596144,-0.05185,1.353584E-15,2.257288,-0.5581499,-1.596144,-1.596144,-0.8113,-1.596144,-1.596144,-0.5581499,1.037748E-14,-2.257288,-0.8113,1.488942E-14,-2.257288,0.2013,-4.060752E-15,-2.257288,-0.05185,1.353584E-15,-2.257288,0.2013,1.596144,-1.596144,-0.05185,1.596144,-1.596144,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,2.5315,0.2013,1.790041,1.790041,-0.8113,1.790041,1.790041,-0.5581499,2.257288,7.219114E-15,-0.8113,2.257288,7.219114E-15,-0.5581499,1.596144,1.596144,-0.8113,1.596144,1.596144,0.2013,-1.596144,1.596144,-0.05185,-1.596144,1.596144,0.2013,-2.257288,7.219114E-15,-0.05185,-2.257288,7.219114E-15,0.2013,-1.596144,-1.596144,0.2013,-2.257288,7.219114E-15,-0.05185,-1.596144,-1.596144,-0.05185,-2.257288,7.219114E-15,0.2013,2.5315,7.219114E-15,0.2013,1.790041,1.790041,-0.8113,2.5315,7.219114E-15,-0.8113,1.790041,1.790041,0.2013,-1.790041,-1.790041,0.2013,-4.060752E-15,-2.5315,-0.8113,-1.790041,-1.790041,-0.8113,1.488942E-14,-2.5315,-0.5581499,-1.596144,1.596144,-0.5581499,1.037748E-14,2.257288,-0.8113,-1.596144,1.596144,-0.8113,1.488942E-14,2.257288,0.2013,-4.060752E-15,2.257288,0.2013,1.596144,1.596144,-0.05185,1.353584E-15,2.257288,-0.05185,1.596144,1.596144,-0.5581499,1.037748E-14,2.257288,-0.5581499,1.596144,1.596144,-0.8113,1.488942E-14,2.257288,-0.8113,1.596144,1.596144,0.2013,-1.596144,-1.596144,-0.05185,-1.596144,-1.596144,0.2013,-4.060752E-15,-2.257288,-0.05185,1.353584E-15,-2.257288,0.2013,-4.060752E-15,-2.5315,0.2013,1.790041,-1.790041,-0.8113,1.488942E-14,-2.5315,-0.8113,1.790041,-1.790041,-0.5581499,1.037748E-14,-2.257288,-0.8113,1.488942E-14,-2.257288,-0.5581499,1.596144,-1.596144,-0.8113,1.596144,-1.596144,-0.5581499,-1.596144,-1.596144,-0.5581499,-2.257288,7.219114E-15,-0.8113,-1.596144,-1.596144,-0.8113,-2.257288,7.219114E-15,0.2013,2.257288,7.219114E-15,-0.05185,2.257288,7.219114E-15,0.2013,1.596144,1.596144,-0.05185,1.596144,1.596144,-0.5581499,2.257288,7.219114E-15,-0.5581499,1.596144,-1.596144,-0.8113,2.257288,7.219114E-15,-0.8113,1.596144,-1.596144,0.2013,-1.790041,-1.790041,-0.8113,-1.790041,-1.790041,0.2013,-2.5315,7.219114E-15,-0.8113,-2.5315,7.219114E-15,-0.5581499,-2.257288,7.219114E-15,-0.5581499,-1.596144,1.596144,-0.8113,-2.257288,7.219114E-15,-0.8113,-1.596144,1.596144,0.2013,-1.790041,1.790041,0.2013,-2.5315,7.219114E-15,-0.8113,-1.790041,1.790041,-0.8113,-2.5315,7.219114E-15,0.2013,2.257288,7.219114E-15,0.2013,1.596144,-1.596144,-0.05185,2.257288,7.219114E-15,-0.05185,1.596144,-1.596144,0.2013,-1.790041,1.790041,-0.8113,-1.790041,1.790041,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,2.5315,0.2013,2.5315,7.219114E-15,-0.8113,2.5315,7.219114E-15,0.2013,1.790041,-1.790041,-0.8113,1.790041,-1.790041,0.2013,-4.060752E-15,-2.5315,0.2013,-4.060752E-15,-2.257288,0.2013,1.790041,-1.790041,0.2013,-1.790041,-1.790041,0.2013,1.596144,-1.596144,0.2013,-1.596144,-1.596144,0.2013,2.5315,7.219114E-15,0.2013,2.257288,7.219114E-15,0.2013,-2.5315,7.219114E-15,0.2013,-2.257288,7.219114E-15,0.2013,-1.596144,1.596144,0.2013,-1.790041,1.790041,0.2013,1.790041,1.790041,0.2013,1.596144,1.596144,0.2013,-4.060752E-15,2.257288,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,-2.5315,-0.8113,1.488942E-14,-2.257288,-0.8113,-1.790041,-1.790041,-0.8113,1.790041,-1.790041,-0.8113,-1.596144,-1.596144,-0.8113,1.596144,-1.596144,-0.8113,-2.5315,7.219114E-15,-0.8113,-2.257288,7.219114E-15,-0.8113,2.5315,7.219114E-15,-0.8113,2.257288,7.219114E-15,-0.8113,1.596144,1.596144,-0.8113,1.790041,1.790041,-0.8113,-1.790041,1.790041,-0.8113,-1.596144,1.596144,-0.8113,1.488942E-14,2.257288,-0.8113,1.488942E-14,2.5315 + } + PolygonVertexIndex: *708 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,7,6,-6,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,20,-20,22,20,-22,23,22,-22,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,59,-61,62,61,-61,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,93,-97,98,97,-97,99,93,-98,100,102,-102,103,101,-103,104,103,-103,105,103,-105,106,105,-105,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,131,-131,133,132,-131,134,132,-134,135,132,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,160,-162,161,162,-165,165,163,-162,162,166,-165,165,167,-164,164,166,-169,163,167,-170,166,170,-169,171,168,-171,171,170,-173,173,172,-171,167,174,-170,174,172,-174,169,174,-176,175,174,-174,176,178,-178,179,176,-178,177,178,-181,181,179,-178,178,182,-181,181,183,-180,180,182,-185,179,183,-186,182,186,-185,187,184,-187,187,186,-189,189,188,-187,183,190,-186,190,188,-190,185,190,-192,191,190,-190,192,194,-194,195,192,-194,193,194,-197,193,197,-196,198,196,-195,195,197,-199,196,198,-200,197,199,-199,200,202,-202,203,201,-203,201,204,-201,205,201,-204,206,200,-205,207,205,-204,207,206,-205,203,206,-208,208,210,-210,211,209,-211,212,208,-210,209,211,-214,214,208,-213,215,213,-212,214,213,-216,208,214,-216,216,218,-218,219,217,-219,217,220,-217,221,217,-220,222,216,-221,223,221,-220,223,222,-221,219,222,-224,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,320,321,-324,324,321,-323,325,323,-322,326,324,-323,327,324,-327,328,323,-326,329,328,-326,330,328,-330,331,328,-331,332,327,-327,333,327,-333,334,331,-331,334,333,-333,335,331,-335,335,334,-333,336,338,-338,336,337,-340,340,337,-339,341,339,-338,342,340,-339,343,340,-343,344,339,-342,345,344,-342,346,344,-346,347,344,-347,348,343,-343,349,343,-349,350,347,-347,350,349,-349,351,347,-351,351,350,-349 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2124 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7971752,0.6037481,0,0.1367736,0.9906023,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0.1367736,0.9906023,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.1367736,-0.9906023,0,0,-1,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0.9906023,-0.1367736,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0.9906023,-0.1367736,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,1,0,0,0.9906023,-0.1367736,0,1,0,0,0.7971752,-0.6037481,0,0.7971752,-0.6037481,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,0.9906023,-0.1367736,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,1,0,0,0.9906023,-0.1367736,0,0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0,1,0,-0.7971752,0.6037481,0,0.1367736,0.9906023,0,-0.7971752,0.6037481,0,0,1,0,0,-1,0,-0.1367736,-0.9906023,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,-0.1367736,-0.9906023,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,0,-1,0,-0.6037481,-0.7971752,0,0,-1,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,0,-1,0,-0.6037481,-0.7971752,0,-0.1367736,-0.9906023,0,0,-1,0,-0.7071068,-0.7071068,0,0,-1,0,-0.1367736,-0.9906023,0,-0.7071068,-0.7071068,0,-0.1367736,-0.9906023,0,0,-1,0,-0.1367736,-0.9906023,0,-0.7071068,0.7071068,0,-0.7971752,0.6037481,0,-1,0,0,-0.9906023,0.1367736,0,-1,0,0,-0.7971752,0.6037481,0,-0.7971752,0.6037481,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-0.9906023,0.1367736,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-0.7071068,0.7071068,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-1,0,0,-0.9906023,0.1367736,0,-0.7071068,0.7071068,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-1,0,0,-0.9906023,0.1367736,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,-0.9906023,0.1367736,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0,1,0,0.7071068,0.7071068,0,0.1367736,0.9906023,0,0.1367736,0.9906023,0,0.1367736,0.9906023,0,0.7071068,0.7071068,0,0,1,0,0.1367736,0.9906023,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0,1,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0,1,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0,1,0,0.6037481,0.7971752,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9906023,-0.1367736,0,1,0,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,1,0,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,-0.9906023,0.1367736,0,-1,0,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,-1,0,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,1,0,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,1,0,0,1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *704 { + a: -1.195984,1.114594E-16,-0.8456886,0.8456886,-0.8456886,-0.8456886,2.842171E-14,-1.195984,2.842171E-14,1.195984,0.8456886,-0.8456886,0.8456886,0.8456886,1.195984,1.114594E-16,-5.931778,1.96163,-5.581483,2.807319,-1.195984,-1.87066E-15,-0.8456886,0.8456886,-1.699114,-0.4576834,-3.194094,-0.4576834,-1.699114,0.4576834,-3.194094,0.4576834,1.195984,2.4869E-15,0.8456886,-0.8456886,0.8456886,0.8456886,-2.842171E-14,1.195984,-2.842171E-14,-1.195984,-0.8456886,0.8456886,-0.8456886,-0.8456886,-1.195984,2.4869E-15,5.931778,1.96163,1.195984,2.729116E-15,5.581483,2.807319,0.8456886,0.8456886,0.7024606,-6.230932,0.7024606,-1.104945,1.699114,-6.230932,1.699114,-1.104945,0.8456886,-0.8456886,1.195984,-1.87066E-15,5.581483,-2.807319,5.931778,-1.96163,-0.7024606,-6.230932,-1.699114,-6.230932,-0.7024606,-1.104945,-1.699114,-1.104945,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,-2.807319,-5.581483,-0.8456886,-0.8456886,-1.96163,-5.931778,2.842171E-14,-1.195984,-0.8456886,-0.8456886,-5.581483,-2.807319,-1.195984,2.729116E-15,-5.931778,-1.96163,0.7925197,0.4576834,0.7925197,-0.4576834,-0.7024606,0.4576834,-0.7024606,-0.4576834,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,0.7925197,-0.4576834,-0.7024606,-0.4576834,0.7925197,0.4576834,-0.7024606,0.4576834,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,2.807319,-5.581483,1.96163,-5.931778,0.8456886,-0.8456886,-2.842171E-14,-1.195984,0.7024606,-6.230932,0.7024606,-1.104945,1.699114,-6.230932,1.699114,-1.104945,-0.7024606,6.230932,-0.7024606,1.104945,-1.699114,6.230932,-1.699114,1.104945,0.7024606,1.104945,0.7024606,6.230932,1.699114,1.104945,1.699114,6.230932,-0.7024606,1.104945,-1.699114,1.104945,-0.7024606,6.230932,-1.699114,6.230932,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,1.699114,-0.4576834,3.194094,-0.4576834,1.699114,0.4576834,3.194094,0.4576834,0.7024606,0.4576834,0.7925197,0.4576834,0.7925197,-0.4576834,-0.7024606,0.4576834,-0.7024606,-0.4576834,-1.699114,0.4576834,-1.699114,-0.4576834,-3.194094,0.4576834,-3.194094,-0.4576834,-0.7024606,-1.104945,-0.7024606,-6.230932,-1.699114,-1.104945,-1.699114,-6.230932,0.2041339,-2.580937,0.2041339,2.580937,2.197441,-2.580937,2.197441,2.580937,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,-2.842171E-14,1.195984,-0.8456886,0.8456886,-1.96163,5.931778,-2.807319,5.581483,0.7024606,1.104945,0.7024606,6.230932,1.699114,1.104945,1.699114,6.230932,0.7925197,-0.4576834,-0.7024606,-0.4576834,0.7925197,0.4576834,-1.699114,-0.4576834,-3.194094,-0.4576834,-0.7024606,0.4576834,-1.699114,0.4576834,-3.194094,0.4576834,2.842171E-14,1.195984,1.96163,5.931778,0.8456886,0.8456886,2.807319,5.581483,-1.699114,0.4576834,-1.699114,-0.4576834,-3.194094,0.4576834,-3.194094,-0.4576834,0.2041339,2.580937,2.197441,2.580937,0.2041339,-2.580937,2.197441,-2.580937,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,-0.2041339,-2.580937,-2.197441,-2.580937,-0.2041339,2.580937,-2.197441,2.580937,-0.2041339,2.580937,-0.2041339,-2.580937,-2.197441,2.580937,-2.197441,-2.580937,-4.768949,4.768949,-6.284031,6.284031,-2.842171E-14,6.744312,-6.744312,1.476291E-15,-2.842171E-14,8.886962,-8.886962,1.476291E-15,4.768949,4.768949,-6.284031,-6.284031,6.284031,6.284031,-4.768949,-4.768949,6.744312,1.476291E-15,8.886962,1.476291E-15,6.284031,-6.284031,4.768949,-4.768949,-2.842171E-14,-8.886962,-2.842171E-14,-6.744312,4.768949,-4.768949,6.284031,-6.284031,2.842171E-14,-6.744312,6.744312,-6.178347E-16,2.842171E-14,-8.886962,8.886962,-6.178347E-16,-4.768949,-4.768949,6.284031,6.284031,-6.284031,-6.284031,4.768949,4.768949,-6.744312,-6.178347E-16,-8.886962,-6.178347E-16,-6.284031,6.284031,-4.768949,4.768949,2.842171E-14,8.886962,2.842171E-14,6.744312,1.699114,-0.4576834,2.197441,-2.580937,0.7024606,-0.4576834,1.699114,0.4576834,0.2041339,-2.580937,2.197441,2.580937,0.7024606,0.4576834,0.2041339,2.580937,-0.2041339,-2.580937,-0.7024606,0.4576834,-0.2041339,2.580937,-2.197441,2.580937,-0.7024606,-0.4576834,-1.699114,0.4576834,-2.197441,-2.580937,-1.699114,-0.4576834,0.2041339,2.580937,0.7024606,-0.4576834,0.2041339,-2.580937,2.197441,-2.580937,0.7024606,0.4576834,1.699114,-0.4576834,1.699114,0.4576834,2.197441,2.580937,-2.197441,-2.580937,-0.7024606,-0.4576834,-0.2041339,-2.580937,-0.2041339,2.580937,-1.699114,-0.4576834,-0.7024606,0.4576834,-2.197441,2.580937,-1.699114,0.4576834,-0.7925197,-3.400893,-0.7925197,3.400893,0.2041339,-3.400893,0.2041339,3.400893,-2.197441,-3.400893,-3.194094,-3.400893,-2.197441,3.400893,-3.194094,3.400893,0.7925197,-3.400893,-0.2041339,-3.400893,0.7925197,3.400893,-0.2041339,3.400893,0.7925197,-3.814028,-3.194094,-3.814028,0.7925197,3.814028,-3.194094,3.814028,2.197441,3.400893,3.194094,3.400893,2.197441,-3.400893,3.194094,-3.400893,-0.7925197,3.400893,0.2041339,3.400893,-0.7925197,-3.400893,0.2041339,-3.400893,0.7925197,3.400893,0.7925197,-3.400893,-0.2041339,3.400893,-0.2041339,-3.400893,0.7925197,3.814028,0.7925197,-3.814028,-3.194094,3.814028,-3.194094,-3.814028,-0.7925197,-3.814028,-0.7925197,3.814028,3.194094,-3.814028,3.194094,3.814028,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,-0.7925197,-3.400893,-0.7925197,3.400893,0.2041339,-3.400893,0.2041339,3.400893,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,0.7925197,-3.400893,-0.2041339,-3.400893,0.7925197,3.400893,-0.2041339,3.400893,-0.7925197,-3.814028,-0.7925197,3.814028,3.194094,-3.814028,3.194094,3.814028,-2.197441,-3.400893,-3.194094,-3.400893,-2.197441,3.400893,-3.194094,3.400893,-2.197441,3.400893,-2.197441,-3.400893,-3.194094,3.400893,-3.194094,-3.400893,-0.7925197,3.400893,0.2041339,3.400893,-0.7925197,-3.400893,0.2041339,-3.400893,-2.197441,3.400893,-2.197441,-3.400893,-3.194094,3.400893,-3.194094,-3.400893,-0.7925197,3.814028,3.194094,3.814028,-0.7925197,-3.814028,3.194094,-3.814028,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,0.7925197,3.814028,0.7925197,-3.814028,-3.194094,3.814028,-3.194094,-3.814028,0.7925197,3.400893,0.7925197,-3.400893,-0.2041339,3.400893,-0.2041339,-3.400893,0.7925197,-3.814028,-3.194094,-3.814028,0.7925197,3.814028,-3.194094,3.814028,-0.7925197,3.814028,3.194094,3.814028,-0.7925197,-3.814028,3.194094,-3.814028,9.966536,-1.02936E-15,8.886962,-1.02936E-15,7.047405,7.047405,7.047405,-7.047405,6.284031,6.284031,6.284031,-6.284031,-2.842171E-14,9.966536,-2.842171E-14,8.886962,-2.842171E-14,-9.966536,-2.842171E-14,-8.886962,-6.284031,-6.284031,-7.047405,-7.047405,-7.047405,7.047405,-6.284031,6.284031,-8.886962,-1.02936E-15,-9.966536,-1.02936E-15,-9.966536,-1.664897E-15,-8.886962,-1.664897E-15,-7.047405,-7.047405,-7.047405,7.047405,-6.284031,-6.284031,-6.284031,6.284031,2.842171E-14,-9.966536,2.842171E-14,-8.886962,2.842171E-14,9.966536,2.842171E-14,8.886962,6.284031,6.284031,7.047405,7.047405,7.047405,-7.047405,6.284031,-6.284031,8.886962,-1.664897E-15,9.966536,-1.664897E-15 + } + UVIndex: *708 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,7,6,5,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,20,19,22,20,21,23,22,21,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,59,60,62,61,60,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,93,96,98,97,96,99,93,97,100,102,101,103,101,102,104,103,102,105,103,104,106,105,104,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,131,130,133,132,130,134,132,133,135,132,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,160,161,161,162,164,165,163,161,162,166,164,165,167,163,164,166,168,163,167,169,166,170,168,171,168,170,171,170,172,173,172,170,167,174,169,174,172,173,169,174,175,175,174,173,176,178,177,179,176,177,177,178,180,181,179,177,178,182,180,181,183,179,180,182,184,179,183,185,182,186,184,187,184,186,187,186,188,189,188,186,183,190,185,190,188,189,185,190,191,191,190,189,192,194,193,195,192,193,193,194,196,193,197,195,198,196,194,195,197,198,196,198,199,197,199,198,200,202,201,203,201,202,201,204,200,205,201,203,206,200,204,207,205,203,207,206,204,203,206,207,208,210,209,211,209,210,212,208,209,209,211,213,214,208,212,215,213,211,214,213,215,208,214,215,216,218,217,219,217,218,217,220,216,221,217,219,222,216,220,223,221,219,223,222,220,219,222,223,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,320,321,323,324,321,322,325,323,321,326,324,322,327,324,326,328,323,325,329,328,325,330,328,329,331,328,330,332,327,326,333,327,332,334,331,330,334,333,332,335,331,334,335,334,332,336,338,337,336,337,339,340,337,338,341,339,337,342,340,338,343,340,342,344,339,341,345,344,341,346,344,345,347,344,346,348,343,342,349,343,348,350,347,346,350,349,348,351,347,350,351,350,348 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *236 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4700128361741211811, "Model::wheel", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",4.0613,2.5315,1.95 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5695208684060922365, "Geometry::", "Mesh" { + Vertices: *1056 { + a: -0.8113,1.534062E-14,-0.30378,-0.8113,0.2148049,-0.2148049,-0.8113,-0.2148049,-0.2148049,-0.8113,-0.30378,7.219114E-15,-0.8113,0.30378,7.219114E-15,-0.8113,-0.2148049,0.2148049,-0.8113,0.2148049,0.2148049,-0.8113,1.534062E-14,0.30378,-0.431575,0.4982541,-1.506672,-0.431575,0.7130589,-1.417697,-0.431575,7.670309E-15,-0.30378,-0.431575,0.2148049,-0.2148049,-0.431575,-0.2148049,0.2148049,-0.8113,-0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.8113,1.534062E-14,0.30378,0.2013,-1.353584E-15,-0.30378,0.2013,-0.2148049,-0.2148049,0.2013,0.2148049,-0.2148049,0.2013,0.30378,7.219114E-15,0.2013,-0.30378,7.219114E-15,0.2013,0.2148049,0.2148049,0.2013,-0.2148049,0.2148049,0.2013,-1.353584E-15,0.30378,-0.178425,0.4982541,-1.506672,-0.178425,4.060752E-15,-0.30378,-0.178425,0.7130589,-1.417697,-0.178425,0.2148049,-0.2148049,-0.178425,-1.417697,-0.7130589,-0.178425,-0.2148049,-0.2148049,-0.431575,-1.417697,-0.7130589,-0.431575,-0.2148049,-0.2148049,-0.431575,-0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.431575,-0.7130589,1.417697,-0.431575,-0.4982541,1.506672,-0.178425,-1.506672,-0.4982541,-0.431575,-1.506672,-0.4982541,-0.178425,-0.30378,7.219114E-15,-0.431575,-0.30378,7.219114E-15,-0.431575,7.670309E-15,-0.30378,-0.431575,0.2148049,-0.2148049,-0.8113,1.534062E-14,-0.30378,-0.8113,0.2148049,-0.2148049,-0.431575,-1.417697,-0.7130589,-0.431575,-0.2148049,-0.2148049,-0.431575,-1.506672,-0.4982541,-0.431575,-0.30378,7.219114E-15,-0.178425,-0.2148049,0.2148049,-0.178425,-0.7130589,1.417697,-0.178425,4.060752E-15,0.30378,-0.178425,-0.4982541,1.506672,0.2013,0.30378,7.219114E-15,0.2013,0.2148049,0.2148049,-0.178425,0.30378,7.219114E-15,-0.178425,0.2148049,0.2148049,0.2013,0.2148049,-0.2148049,0.2013,0.30378,7.219114E-15,-0.178425,0.2148049,-0.2148049,-0.178425,0.30378,7.219114E-15,-0.431575,0.2148049,-0.2148049,-0.431575,0.30378,7.219114E-15,-0.8113,0.2148049,-0.2148049,-0.8113,0.30378,7.219114E-15,0.2013,-0.2148049,0.2148049,-0.178425,-0.2148049,0.2148049,0.2013,-1.353584E-15,0.30378,-0.178425,4.060752E-15,0.30378,0.2013,-1.353584E-15,-0.30378,0.2013,0.2148049,-0.2148049,-0.178425,4.060752E-15,-0.30378,-0.178425,0.2148049,-0.2148049,-0.178425,-1.417697,-0.7130589,-0.178425,-1.506672,-0.4982541,-0.178425,-0.2148049,-0.2148049,-0.178425,-0.30378,7.219114E-15,-0.178425,-0.7130589,1.417697,-0.178425,-0.2148049,0.2148049,-0.431575,-0.7130589,1.417697,-0.431575,-0.2148049,0.2148049,-0.178425,0.7130589,-1.417697,-0.178425,0.2148049,-0.2148049,-0.431575,0.7130589,-1.417697,-0.431575,0.2148049,-0.2148049,-0.178425,4.060752E-15,-0.30378,-0.178425,0.4982541,-1.506672,-0.431575,7.670309E-15,-0.30378,-0.431575,0.4982541,-1.506672,-0.178425,0.2148049,0.2148049,-0.431575,0.2148049,0.2148049,-0.178425,1.417697,0.7130589,-0.431575,1.417697,0.7130589,0.2013,-0.2148049,-0.2148049,0.2013,-1.353584E-15,-0.30378,-0.178425,-0.2148049,-0.2148049,-0.431575,-0.2148049,-0.2148049,-0.8113,-0.2148049,-0.2148049,-0.431575,7.670309E-15,-0.30378,-0.8113,1.534062E-14,-0.30378,-0.178425,4.060752E-15,-0.30378,0.2013,-0.2148049,0.2148049,0.2013,-0.30378,7.219114E-15,-0.178425,-0.2148049,0.2148049,-0.178425,-0.30378,7.219114E-15,-0.431575,-0.2148049,0.2148049,-0.431575,-0.30378,7.219114E-15,-0.8113,-0.2148049,0.2148049,-0.8113,-0.30378,7.219114E-15,-0.178425,4.060752E-15,0.30378,-0.178425,-0.4982541,1.506672,-0.431575,7.670309E-15,0.30378,-0.431575,-0.4982541,1.506672,-0.05185,1.353584E-15,1.713055,-0.05185,1.211313,1.211313,-0.5581499,1.037748E-14,1.713055,-0.5581499,1.211313,1.211313,0.2013,-0.30378,7.219114E-15,0.2013,-0.2148049,-0.2148049,-0.178425,-0.30378,7.219114E-15,-0.178425,-0.2148049,-0.2148049,-0.178425,0.30378,7.219114E-15,-0.178425,0.2148049,0.2148049,-0.178425,1.506672,0.4982541,-0.178425,1.417697,0.7130589,-0.178425,0.30378,7.219114E-15,-0.178425,1.506672,0.4982541,-0.431575,0.30378,7.219114E-15,-0.431575,1.506672,0.4982541,0.2013,-1.353584E-15,0.30378,-0.178425,4.060752E-15,0.30378,0.2013,0.2148049,0.2148049,-0.431575,7.670309E-15,0.30378,-0.8113,1.534062E-14,0.30378,-0.178425,0.2148049,0.2148049,-0.431575,0.2148049,0.2148049,-0.8113,0.2148049,0.2148049,-0.431575,0.30378,7.219114E-15,-0.431575,1.506672,0.4982541,-0.431575,0.2148049,0.2148049,-0.431575,1.417697,0.7130589,-0.431575,0.30378,7.219114E-15,-0.431575,0.2148049,0.2148049,-0.8113,0.30378,7.219114E-15,-0.8113,0.2148049,0.2148049,-0.05185,-1.211313,1.211313,-0.5581499,-1.211313,1.211313,-0.05185,-1.713055,7.219114E-15,-0.5581499,-1.713055,7.219114E-15,-0.431575,-0.30378,7.219114E-15,-0.431575,-0.2148049,-0.2148049,-0.8113,-0.30378,7.219114E-15,-0.8113,-0.2148049,-0.2148049,-0.05185,-1.211313,-1.211313,-0.5581499,-1.211313,-1.211313,-0.05185,1.353584E-15,-1.713055,-0.5581499,1.037748E-14,-1.713055,-0.05185,1.713055,7.219114E-15,-0.05185,1.211313,-1.211313,-0.5581499,1.713055,7.219114E-15,-0.5581499,1.211313,-1.211313,-0.05185,1.211313,1.211313,-0.05185,1.596144,1.596144,-0.05185,1.713055,7.219114E-15,-0.05185,1.353584E-15,1.713055,-0.05185,2.257288,7.219114E-15,-0.05185,1.353584E-15,2.257288,-0.05185,1.211313,-1.211313,-0.05185,-1.596144,1.596144,-0.05185,1.596144,-1.596144,-0.05185,-1.211313,1.211313,-0.05185,1.353584E-15,-1.713055,-0.05185,1.353584E-15,-2.257288,-0.05185,-1.596144,-1.596144,-0.05185,-1.211313,-1.211313,-0.05185,-2.257288,7.219114E-15,-0.05185,-1.713055,7.219114E-15,-0.5581499,-1.211313,1.211313,-0.5581499,-1.596144,1.596144,-0.5581499,-1.713055,7.219114E-15,-0.5581499,1.037748E-14,1.713055,-0.5581499,-2.257288,7.219114E-15,-0.5581499,1.037748E-14,2.257288,-0.5581499,-1.211313,-1.211313,-0.5581499,1.596144,1.596144,-0.5581499,-1.596144,-1.596144,-0.5581499,1.211313,1.211313,-0.5581499,1.037748E-14,-1.713055,-0.5581499,1.037748E-14,-2.257288,-0.5581499,1.596144,-1.596144,-0.5581499,1.211313,-1.211313,-0.5581499,2.257288,7.219114E-15,-0.5581499,1.713055,7.219114E-15,-0.431575,1.417697,0.7130589,-0.5581499,1.211313,1.211313,-0.178425,1.417697,0.7130589,-0.431575,1.506672,0.4982541,-0.05185,1.211313,1.211313,-0.5581499,1.713055,7.219114E-15,-0.178425,1.506672,0.4982541,-0.05185,1.713055,7.219114E-15,-0.05185,-1.713055,7.219114E-15,-0.178425,-1.417697,-0.7130589,-0.05185,-1.211313,-1.211313,-0.5581499,-1.211313,-1.211313,-0.178425,-1.506672,-0.4982541,-0.431575,-1.417697,-0.7130589,-0.5581499,-1.713055,7.219114E-15,-0.431575,-1.506672,-0.4982541,-0.05185,1.353584E-15,1.713055,-0.178425,-0.7130589,1.417697,-0.05185,-1.211313,1.211313,-0.5581499,-1.211313,1.211313,-0.178425,-0.4982541,1.506672,-0.431575,-0.7130589,1.417697,-0.431575,-0.4982541,1.506672,-0.5581499,1.037748E-14,1.713055,-0.5581499,1.037748E-14,-1.713055,-0.178425,0.4982541,-1.506672,-0.05185,1.353584E-15,-1.713055,-0.05185,1.211313,-1.211313,-0.431575,0.4982541,-1.506672,-0.178425,0.7130589,-1.417697,-0.5581499,1.211313,-1.211313,-0.431575,0.7130589,-1.417697,0.2013,-1.596144,1.596144,0.2013,-4.060752E-15,2.257288,-0.05185,-1.596144,1.596144,-0.05185,1.353584E-15,2.257288,-0.5581499,-1.596144,-1.596144,-0.8113,-1.596144,-1.596144,-0.5581499,1.037748E-14,-2.257288,-0.8113,1.488942E-14,-2.257288,0.2013,-4.060752E-15,-2.257288,-0.05185,1.353584E-15,-2.257288,0.2013,1.596144,-1.596144,-0.05185,1.596144,-1.596144,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,2.5315,0.2013,1.790041,1.790041,-0.8113,1.790041,1.790041,-0.5581499,2.257288,7.219114E-15,-0.8113,2.257288,7.219114E-15,-0.5581499,1.596144,1.596144,-0.8113,1.596144,1.596144,0.2013,-1.596144,1.596144,-0.05185,-1.596144,1.596144,0.2013,-2.257288,7.219114E-15,-0.05185,-2.257288,7.219114E-15,0.2013,-1.596144,-1.596144,0.2013,-2.257288,7.219114E-15,-0.05185,-1.596144,-1.596144,-0.05185,-2.257288,7.219114E-15,0.2013,2.5315,7.219114E-15,0.2013,1.790041,1.790041,-0.8113,2.5315,7.219114E-15,-0.8113,1.790041,1.790041,0.2013,-1.790041,-1.790041,0.2013,-4.060752E-15,-2.5315,-0.8113,-1.790041,-1.790041,-0.8113,1.488942E-14,-2.5315,-0.5581499,-1.596144,1.596144,-0.5581499,1.037748E-14,2.257288,-0.8113,-1.596144,1.596144,-0.8113,1.488942E-14,2.257288,0.2013,-4.060752E-15,2.257288,0.2013,1.596144,1.596144,-0.05185,1.353584E-15,2.257288,-0.05185,1.596144,1.596144,-0.5581499,1.037748E-14,2.257288,-0.5581499,1.596144,1.596144,-0.8113,1.488942E-14,2.257288,-0.8113,1.596144,1.596144,0.2013,-1.596144,-1.596144,-0.05185,-1.596144,-1.596144,0.2013,-4.060752E-15,-2.257288,-0.05185,1.353584E-15,-2.257288,0.2013,-4.060752E-15,-2.5315,0.2013,1.790041,-1.790041,-0.8113,1.488942E-14,-2.5315,-0.8113,1.790041,-1.790041,-0.5581499,1.037748E-14,-2.257288,-0.8113,1.488942E-14,-2.257288,-0.5581499,1.596144,-1.596144,-0.8113,1.596144,-1.596144,-0.5581499,-1.596144,-1.596144,-0.5581499,-2.257288,7.219114E-15,-0.8113,-1.596144,-1.596144,-0.8113,-2.257288,7.219114E-15,0.2013,2.257288,7.219114E-15,-0.05185,2.257288,7.219114E-15,0.2013,1.596144,1.596144,-0.05185,1.596144,1.596144,-0.5581499,2.257288,7.219114E-15,-0.5581499,1.596144,-1.596144,-0.8113,2.257288,7.219114E-15,-0.8113,1.596144,-1.596144,0.2013,-1.790041,-1.790041,-0.8113,-1.790041,-1.790041,0.2013,-2.5315,7.219114E-15,-0.8113,-2.5315,7.219114E-15,-0.5581499,-2.257288,7.219114E-15,-0.5581499,-1.596144,1.596144,-0.8113,-2.257288,7.219114E-15,-0.8113,-1.596144,1.596144,0.2013,-1.790041,1.790041,0.2013,-2.5315,7.219114E-15,-0.8113,-1.790041,1.790041,-0.8113,-2.5315,7.219114E-15,0.2013,2.257288,7.219114E-15,0.2013,1.596144,-1.596144,-0.05185,2.257288,7.219114E-15,-0.05185,1.596144,-1.596144,0.2013,-1.790041,1.790041,-0.8113,-1.790041,1.790041,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,2.5315,0.2013,2.5315,7.219114E-15,-0.8113,2.5315,7.219114E-15,0.2013,1.790041,-1.790041,-0.8113,1.790041,-1.790041,0.2013,-4.060752E-15,-2.5315,0.2013,-4.060752E-15,-2.257288,0.2013,1.790041,-1.790041,0.2013,-1.790041,-1.790041,0.2013,1.596144,-1.596144,0.2013,-1.596144,-1.596144,0.2013,2.5315,7.219114E-15,0.2013,2.257288,7.219114E-15,0.2013,-2.5315,7.219114E-15,0.2013,-2.257288,7.219114E-15,0.2013,-1.596144,1.596144,0.2013,-1.790041,1.790041,0.2013,1.790041,1.790041,0.2013,1.596144,1.596144,0.2013,-4.060752E-15,2.257288,0.2013,-4.060752E-15,2.5315,-0.8113,1.488942E-14,-2.5315,-0.8113,1.488942E-14,-2.257288,-0.8113,-1.790041,-1.790041,-0.8113,1.790041,-1.790041,-0.8113,-1.596144,-1.596144,-0.8113,1.596144,-1.596144,-0.8113,-2.5315,7.219114E-15,-0.8113,-2.257288,7.219114E-15,-0.8113,2.5315,7.219114E-15,-0.8113,2.257288,7.219114E-15,-0.8113,1.596144,1.596144,-0.8113,1.790041,1.790041,-0.8113,-1.790041,1.790041,-0.8113,-1.596144,1.596144,-0.8113,1.488942E-14,2.257288,-0.8113,1.488942E-14,2.5315 + } + PolygonVertexIndex: *708 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,7,6,-6,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,20,-20,22,20,-22,23,22,-22,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,59,-61,62,61,-61,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,93,-97,98,97,-97,99,93,-98,100,102,-102,103,101,-103,104,103,-103,105,103,-105,106,105,-105,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,131,-131,133,132,-131,134,132,-134,135,132,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,160,-162,161,162,-165,165,163,-162,162,166,-165,165,167,-164,164,166,-169,163,167,-170,166,170,-169,171,168,-171,171,170,-173,173,172,-171,167,174,-170,174,172,-174,169,174,-176,175,174,-174,176,178,-178,179,176,-178,177,178,-181,181,179,-178,178,182,-181,181,183,-180,180,182,-185,179,183,-186,182,186,-185,187,184,-187,187,186,-189,189,188,-187,183,190,-186,190,188,-190,185,190,-192,191,190,-190,192,194,-194,195,192,-194,193,194,-197,193,197,-196,198,196,-195,195,197,-199,196,198,-200,197,199,-199,200,202,-202,203,201,-203,201,204,-201,205,201,-204,206,200,-205,207,205,-204,207,206,-205,203,206,-208,208,210,-210,211,209,-211,212,208,-210,209,211,-214,214,208,-213,215,213,-212,214,213,-216,208,214,-216,216,218,-218,219,217,-219,217,220,-217,221,217,-220,222,216,-221,223,221,-220,223,222,-221,219,222,-224,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,320,321,-324,324,321,-323,325,323,-322,326,324,-323,327,324,-327,328,323,-326,329,328,-326,330,328,-330,331,328,-331,332,327,-327,333,327,-333,334,331,-331,334,333,-333,335,331,-335,335,334,-333,336,338,-338,336,337,-340,340,337,-339,341,339,-338,342,340,-339,343,340,-343,344,339,-342,345,344,-342,346,344,-346,347,344,-347,348,343,-343,349,343,-349,350,347,-347,350,349,-349,351,347,-351,351,350,-349 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2124 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7971752,0.6037481,0,0.1367736,0.9906023,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0.1367736,0.9906023,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.1367736,-0.9906023,0,0,-1,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,0.9906023,-0.1367736,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0.9906023,-0.1367736,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,1,0,0,0.9906023,-0.1367736,0,1,0,0,0.7971752,-0.6037481,0,0.7971752,-0.6037481,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,0.9906023,-0.1367736,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,0.9906023,-0.1367736,0,0.7971752,-0.6037481,0,1,0,0,0.9906023,-0.1367736,0,0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0,1,0,-0.7971752,0.6037481,0,0.1367736,0.9906023,0,-0.7971752,0.6037481,0,0,1,0,0,-1,0,-0.1367736,-0.9906023,0,0.7071068,-0.7071068,0,0.7971752,-0.6037481,0,0.7071068,-0.7071068,0,-0.1367736,-0.9906023,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,0,-1,0,-0.6037481,-0.7971752,0,0,-1,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,0,-1,0,-0.6037481,-0.7971752,0,-0.1367736,-0.9906023,0,0,-1,0,-0.7071068,-0.7071068,0,0,-1,0,-0.1367736,-0.9906023,0,-0.7071068,-0.7071068,0,-0.1367736,-0.9906023,0,0,-1,0,-0.1367736,-0.9906023,0,-0.7071068,0.7071068,0,-0.7971752,0.6037481,0,-1,0,0,-0.9906023,0.1367736,0,-1,0,0,-0.7971752,0.6037481,0,-0.7971752,0.6037481,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-0.9906023,0.1367736,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-0.7071068,0.7071068,0,-0.9906023,0.1367736,0,-0.7971752,0.6037481,0,-1,0,0,-0.9906023,0.1367736,0,-0.7071068,0.7071068,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-1,0,0,-0.9906023,0.1367736,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,-0.9906023,0.1367736,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0,1,0,0.7071068,0.7071068,0,0.1367736,0.9906023,0,0.1367736,0.9906023,0,0.1367736,0.9906023,0,0.7071068,0.7071068,0,0,1,0,0.1367736,0.9906023,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0,1,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,0,1,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0,1,0,0.6037481,0.7971752,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9906023,-0.1367736,0,1,0,0,0.6037481,0.7971752,0,0.7071068,0.7071068,0,0.6037481,0.7971752,0,1,0,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,-0.9906023,0.1367736,0,-1,0,0,-0.6037481,-0.7971752,0,-0.7071068,-0.7071068,0,-0.6037481,-0.7971752,0,-1,0,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,1,0,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0.7071068,0.7071068,0,0,1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,-0.7071068,-0.7071068,0,-1,0,0,1,0,0,1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,-0.7071068,0.7071068,0,0,1,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,0,1,0,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *704 { + a: -1.195984,1.114594E-16,-0.8456886,0.8456886,-0.8456886,-0.8456886,2.842171E-14,-1.195984,2.842171E-14,1.195984,0.8456886,-0.8456886,0.8456886,0.8456886,1.195984,1.114594E-16,-5.931778,1.96163,-5.581483,2.807319,-1.195984,-1.87066E-15,-0.8456886,0.8456886,-1.699114,-0.4576834,-3.194094,-0.4576834,-1.699114,0.4576834,-3.194094,0.4576834,1.195984,2.4869E-15,0.8456886,-0.8456886,0.8456886,0.8456886,-2.842171E-14,1.195984,-2.842171E-14,-1.195984,-0.8456886,0.8456886,-0.8456886,-0.8456886,-1.195984,2.4869E-15,5.931778,1.96163,1.195984,2.729116E-15,5.581483,2.807319,0.8456886,0.8456886,0.7024606,-6.230932,0.7024606,-1.104945,1.699114,-6.230932,1.699114,-1.104945,0.8456886,-0.8456886,1.195984,-1.87066E-15,5.581483,-2.807319,5.931778,-1.96163,-0.7024606,-6.230932,-1.699114,-6.230932,-0.7024606,-1.104945,-1.699114,-1.104945,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,-2.807319,-5.581483,-0.8456886,-0.8456886,-1.96163,-5.931778,2.842171E-14,-1.195984,-0.8456886,-0.8456886,-5.581483,-2.807319,-1.195984,2.729116E-15,-5.931778,-1.96163,0.7925197,0.4576834,0.7925197,-0.4576834,-0.7024606,0.4576834,-0.7024606,-0.4576834,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,0.7925197,-0.4576834,-0.7024606,-0.4576834,0.7925197,0.4576834,-0.7024606,0.4576834,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,2.807319,-5.581483,1.96163,-5.931778,0.8456886,-0.8456886,-2.842171E-14,-1.195984,0.7024606,-6.230932,0.7024606,-1.104945,1.699114,-6.230932,1.699114,-1.104945,-0.7024606,6.230932,-0.7024606,1.104945,-1.699114,6.230932,-1.699114,1.104945,0.7024606,1.104945,0.7024606,6.230932,1.699114,1.104945,1.699114,6.230932,-0.7024606,1.104945,-1.699114,1.104945,-0.7024606,6.230932,-1.699114,6.230932,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,1.699114,-0.4576834,3.194094,-0.4576834,1.699114,0.4576834,3.194094,0.4576834,0.7024606,0.4576834,0.7925197,0.4576834,0.7925197,-0.4576834,-0.7024606,0.4576834,-0.7024606,-0.4576834,-1.699114,0.4576834,-1.699114,-0.4576834,-3.194094,0.4576834,-3.194094,-0.4576834,-0.7024606,-1.104945,-0.7024606,-6.230932,-1.699114,-1.104945,-1.699114,-6.230932,0.2041339,-2.580937,0.2041339,2.580937,2.197441,-2.580937,2.197441,2.580937,-0.7925197,-0.4576834,-0.7925197,0.4576834,0.7024606,-0.4576834,0.7024606,0.4576834,-2.842171E-14,1.195984,-0.8456886,0.8456886,-1.96163,5.931778,-2.807319,5.581483,0.7024606,1.104945,0.7024606,6.230932,1.699114,1.104945,1.699114,6.230932,0.7925197,-0.4576834,-0.7024606,-0.4576834,0.7925197,0.4576834,-1.699114,-0.4576834,-3.194094,-0.4576834,-0.7024606,0.4576834,-1.699114,0.4576834,-3.194094,0.4576834,2.842171E-14,1.195984,1.96163,5.931778,0.8456886,0.8456886,2.807319,5.581483,-1.699114,0.4576834,-1.699114,-0.4576834,-3.194094,0.4576834,-3.194094,-0.4576834,0.2041339,2.580937,2.197441,2.580937,0.2041339,-2.580937,2.197441,-2.580937,1.699114,-0.4576834,1.699114,0.4576834,3.194094,-0.4576834,3.194094,0.4576834,-0.2041339,-2.580937,-2.197441,-2.580937,-0.2041339,2.580937,-2.197441,2.580937,-0.2041339,2.580937,-0.2041339,-2.580937,-2.197441,2.580937,-2.197441,-2.580937,-4.768949,4.768949,-6.284031,6.284031,-2.842171E-14,6.744312,-6.744312,1.476291E-15,-2.842171E-14,8.886962,-8.886962,1.476291E-15,4.768949,4.768949,-6.284031,-6.284031,6.284031,6.284031,-4.768949,-4.768949,6.744312,1.476291E-15,8.886962,1.476291E-15,6.284031,-6.284031,4.768949,-4.768949,-2.842171E-14,-8.886962,-2.842171E-14,-6.744312,4.768949,-4.768949,6.284031,-6.284031,2.842171E-14,-6.744312,6.744312,-6.178347E-16,2.842171E-14,-8.886962,8.886962,-6.178347E-16,-4.768949,-4.768949,6.284031,6.284031,-6.284031,-6.284031,4.768949,4.768949,-6.744312,-6.178347E-16,-8.886962,-6.178347E-16,-6.284031,6.284031,-4.768949,4.768949,2.842171E-14,8.886962,2.842171E-14,6.744312,1.699114,-0.4576834,2.197441,-2.580937,0.7024606,-0.4576834,1.699114,0.4576834,0.2041339,-2.580937,2.197441,2.580937,0.7024606,0.4576834,0.2041339,2.580937,-0.2041339,-2.580937,-0.7024606,0.4576834,-0.2041339,2.580937,-2.197441,2.580937,-0.7024606,-0.4576834,-1.699114,0.4576834,-2.197441,-2.580937,-1.699114,-0.4576834,0.2041339,2.580937,0.7024606,-0.4576834,0.2041339,-2.580937,2.197441,-2.580937,0.7024606,0.4576834,1.699114,-0.4576834,1.699114,0.4576834,2.197441,2.580937,-2.197441,-2.580937,-0.7024606,-0.4576834,-0.2041339,-2.580937,-0.2041339,2.580937,-1.699114,-0.4576834,-0.7024606,0.4576834,-2.197441,2.580937,-1.699114,0.4576834,-0.7925197,-3.400893,-0.7925197,3.400893,0.2041339,-3.400893,0.2041339,3.400893,-2.197441,-3.400893,-3.194094,-3.400893,-2.197441,3.400893,-3.194094,3.400893,0.7925197,-3.400893,-0.2041339,-3.400893,0.7925197,3.400893,-0.2041339,3.400893,0.7925197,-3.814028,-3.194094,-3.814028,0.7925197,3.814028,-3.194094,3.814028,2.197441,3.400893,3.194094,3.400893,2.197441,-3.400893,3.194094,-3.400893,-0.7925197,3.400893,0.2041339,3.400893,-0.7925197,-3.400893,0.2041339,-3.400893,0.7925197,3.400893,0.7925197,-3.400893,-0.2041339,3.400893,-0.2041339,-3.400893,0.7925197,3.814028,0.7925197,-3.814028,-3.194094,3.814028,-3.194094,-3.814028,-0.7925197,-3.814028,-0.7925197,3.814028,3.194094,-3.814028,3.194094,3.814028,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,-0.7925197,-3.400893,-0.7925197,3.400893,0.2041339,-3.400893,0.2041339,3.400893,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,0.7925197,-3.400893,-0.2041339,-3.400893,0.7925197,3.400893,-0.2041339,3.400893,-0.7925197,-3.814028,-0.7925197,3.814028,3.194094,-3.814028,3.194094,3.814028,-2.197441,-3.400893,-3.194094,-3.400893,-2.197441,3.400893,-3.194094,3.400893,-2.197441,3.400893,-2.197441,-3.400893,-3.194094,3.400893,-3.194094,-3.400893,-0.7925197,3.400893,0.2041339,3.400893,-0.7925197,-3.400893,0.2041339,-3.400893,-2.197441,3.400893,-2.197441,-3.400893,-3.194094,3.400893,-3.194094,-3.400893,-0.7925197,3.814028,3.194094,3.814028,-0.7925197,-3.814028,3.194094,-3.814028,2.197441,-3.400893,2.197441,3.400893,3.194094,-3.400893,3.194094,3.400893,0.7925197,3.814028,0.7925197,-3.814028,-3.194094,3.814028,-3.194094,-3.814028,0.7925197,3.400893,0.7925197,-3.400893,-0.2041339,3.400893,-0.2041339,-3.400893,0.7925197,-3.814028,-3.194094,-3.814028,0.7925197,3.814028,-3.194094,3.814028,-0.7925197,3.814028,3.194094,3.814028,-0.7925197,-3.814028,3.194094,-3.814028,9.966536,-1.02936E-15,8.886962,-1.02936E-15,7.047405,7.047405,7.047405,-7.047405,6.284031,6.284031,6.284031,-6.284031,-2.842171E-14,9.966536,-2.842171E-14,8.886962,-2.842171E-14,-9.966536,-2.842171E-14,-8.886962,-6.284031,-6.284031,-7.047405,-7.047405,-7.047405,7.047405,-6.284031,6.284031,-8.886962,-1.02936E-15,-9.966536,-1.02936E-15,-9.966536,-1.664897E-15,-8.886962,-1.664897E-15,-7.047405,-7.047405,-7.047405,7.047405,-6.284031,-6.284031,-6.284031,6.284031,2.842171E-14,-9.966536,2.842171E-14,-8.886962,2.842171E-14,9.966536,2.842171E-14,8.886962,6.284031,6.284031,7.047405,7.047405,7.047405,-7.047405,6.284031,-6.284031,8.886962,-1.664897E-15,9.966536,-1.664897E-15 + } + UVIndex: *708 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,7,6,5,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,20,19,22,20,21,23,22,21,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,59,60,62,61,60,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,93,96,98,97,96,99,93,97,100,102,101,103,101,102,104,103,102,105,103,104,106,105,104,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,131,130,133,132,130,134,132,133,135,132,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,160,161,161,162,164,165,163,161,162,166,164,165,167,163,164,166,168,163,167,169,166,170,168,171,168,170,171,170,172,173,172,170,167,174,169,174,172,173,169,174,175,175,174,173,176,178,177,179,176,177,177,178,180,181,179,177,178,182,180,181,183,179,180,182,184,179,183,185,182,186,184,187,184,186,187,186,188,189,188,186,183,190,185,190,188,189,185,190,191,191,190,189,192,194,193,195,192,193,193,194,196,193,197,195,198,196,194,195,197,198,196,198,199,197,199,198,200,202,201,203,201,202,201,204,200,205,201,203,206,200,204,207,205,203,207,206,204,203,206,207,208,210,209,211,209,210,212,208,209,209,211,213,214,208,212,215,213,211,214,213,215,208,214,215,216,218,217,219,217,218,217,220,216,221,217,219,222,216,220,223,221,219,223,222,220,219,222,223,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,320,321,323,324,321,322,325,323,321,326,324,322,327,324,326,328,323,325,329,328,325,330,328,329,331,328,330,332,327,326,333,327,332,334,331,330,334,333,332,335,331,334,335,334,332,336,338,337,336,337,339,340,337,338,341,339,337,342,340,338,343,340,342,344,339,341,345,344,341,346,344,345,347,344,346,348,343,342,349,343,348,350,347,346,350,349,348,351,347,350,351,350,348 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *236 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7180, "Material::hay", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9490196,0.854902,0.6313726 + P: "DiffuseColor", "Color", "", "A",0.9490196,0.854902,0.6313726 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cartHigh, Model::RootNode + C: "OO",4821645529597847422,0 + + ;Geometry::, Model::Mesh cartHigh + C: "OO",4972135573833344451,4821645529597847422 + + ;Material::wood, Model::Mesh cartHigh + C: "OO",7178,4821645529597847422 + + ;Model::Mesh hay, Model::USING PARENT + C: "OO",5558791436270493980,4821645529597847422 + + ;Geometry::, Model::Mesh hay + C: "OO",4727609306271410538,5558791436270493980 + + ;Material::hay, Model::Mesh hay + C: "OO",7180,5558791436270493980 + + ;Material::_defaultMat, Model::Mesh hay + C: "OO",7176,5558791436270493980 + + ;Model::Mesh wheel, Model::USING PARENT + C: "OO",4984798714881377806,4821645529597847422 + + ;Geometry::, Model::Mesh wheel + C: "OO",5272575673122205711,4984798714881377806 + + ;Material::wood, Model::Mesh wheel + C: "OO",7178,4984798714881377806 + + ;Material::stone, Model::Mesh wheel + C: "OO",7184,4984798714881377806 + + ;Model::Mesh wheel, Model::USING PARENT + C: "OO",4700128361741211811,4821645529597847422 + + ;Geometry::, Model::Mesh wheel + C: "OO",5695208684060922365,4700128361741211811 + + ;Material::wood, Model::Mesh wheel + C: "OO",7178,4700128361741211811 + + ;Material::stone, Model::Mesh wheel + C: "OO",7184,4700128361741211811 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/cartHigh.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/cartHigh.fbx.import new file mode 100644 index 0000000..e9d2606 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/cartHigh.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ddauhawlnvsa1" +path="res://.godot/imported/cartHigh.fbx-6deaf8e71868fa2866520913b6564cf2.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/cartHigh.fbx" +dest_files=["res://.godot/imported/cartHigh.fbx-6deaf8e71868fa2866520913b6564cf2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimney.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimney.fbx new file mode 100644 index 0000000..94c5dd4 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimney.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 816 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "chimney.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "chimney.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4946196690135877097, "Model::chimney", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5613094356572415507, "Geometry::", "Mesh" { + Vertices: *216 { + a: 4.25,6.25,1.3,2.530917,6.25,1.3,4.25,10,1.3,2.530917,10,1.3,2.530917,6.25,-1.3,2.530917,10,-1.3,2.530917,6.25,1.3,2.530917,10,1.3,2.530917,0,-1.3,4.25,0,-1.3,2.530917,3.75,-1.3,4.25,3.75,-1.3,4.25,10,-1.3,4.25,10,1.3,2.530917,10,-1.3,2.530917,10,1.3,4.25,3.75,1.7,4.25,6.25,1.7,4.25,3.75,1.3,4.25,6.25,1.3,4.25,0,1.3,4.25,10,1.3,4.25,0,-1.3,4.25,3.75,-1.3,4.25,6.25,-1.3,4.25,10,-1.3,4.25,3.75,-1.7,4.25,6.25,-1.7,4.25,0,1.3,4.25,0,-1.3,2.530917,0,1.3,2.530917,0,-1.3,2.530917,0,-1.3,2.530917,3.75,-1.3,2.530917,0,1.3,2.530917,3.75,1.3,4.25,6.25,-1.3,4.25,10,-1.3,2.530917,6.25,-1.3,2.530917,10,-1.3,4.25,0,1.3,2.530917,0,1.3,4.25,3.75,1.3,2.530917,3.75,1.3,4.25,6.25,-1.7,4.25,6.25,-1.3,2.130917,6.25,-1.7,2.530917,6.25,-1.3,2.530917,6.25,1.3,2.130917,6.25,1.7,4.25,6.25,1.7,4.25,6.25,1.3,4.25,3.75,1.7,4.25,3.75,1.3,2.130917,3.75,1.7,2.530917,3.75,1.3,2.530917,3.75,-1.3,2.130917,3.75,-1.7,4.25,3.75,-1.7,4.25,3.75,-1.3,4.25,3.75,1.7,2.130917,3.75,1.7,4.25,6.25,1.7,2.130917,6.25,1.7,2.130917,3.75,-1.7,2.130917,6.25,-1.7,2.130917,3.75,1.7,2.130917,6.25,1.7,2.130917,3.75,-1.7,4.25,3.75,-1.7,2.130917,6.25,-1.7,4.25,6.25,-1.7 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,18,20,-20,19,20,-22,20,22,-22,22,23,-22,23,24,-22,25,21,-25,23,26,-25,27,24,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,46,49,-49,49,50,-49,51,48,-51,52,54,-54,55,53,-55,56,55,-55,54,57,-57,57,58,-57,59,56,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 16.73228,24.6063,9.964241,24.6063,16.73228,39.37008,9.964241,39.37008,-5.11811,24.6063,-5.11811,39.37008,5.11811,24.6063,5.11811,39.37008,-9.964241,0,-16.73228,0,-9.964241,14.76378,-16.73228,14.76378,-16.73228,-5.11811,-16.73228,5.11811,-9.964241,-5.11811,-9.964241,5.11811,-6.692914,14.76378,-6.692914,24.6063,-5.11811,14.76378,-5.11811,24.6063,-5.11811,0,-5.11811,39.37008,5.11811,0,5.11811,14.76378,5.11811,24.6063,5.11811,39.37008,6.692914,14.76378,6.692914,24.6063,16.73228,5.11811,16.73228,-5.11811,9.964241,5.11811,9.964241,-5.11811,-5.11811,0,-5.11811,14.76378,5.11811,0,5.11811,14.76378,-16.73228,24.6063,-16.73228,39.37008,-9.964241,24.6063,-9.964241,39.37008,16.73228,0,9.964241,0,16.73228,14.76378,9.964241,14.76378,-16.73228,-6.692914,-16.73228,-5.11811,-8.389438,-6.692914,-9.964241,-5.11811,-9.964241,5.11811,-8.389438,6.692914,-16.73228,6.692914,-16.73228,5.11811,16.73228,6.692914,16.73228,5.11811,8.389438,6.692914,9.964241,5.11811,9.964241,-5.11811,8.389438,-6.692914,16.73228,-6.692914,16.73228,-5.11811,16.73228,14.76378,8.389438,14.76378,16.73228,24.6063,8.389438,24.6063,-6.692914,14.76378,-6.692914,24.6063,6.692914,14.76378,6.692914,24.6063,-8.389438,14.76378,-16.73228,14.76378,-8.389438,24.6063,-16.73228,24.6063 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,18,20,19,19,20,21,20,22,21,22,23,21,23,24,21,25,21,24,23,26,24,27,24,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,46,49,48,49,50,48,51,48,50,52,54,53,55,53,54,56,55,54,54,57,56,57,58,56,59,56,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh chimney, Model::RootNode + C: "OO",4946196690135877097,0 + + ;Geometry::, Model::Mesh chimney + C: "OO",5613094356572415507,4946196690135877097 + + ;Material::stoneDark, Model::Mesh chimney + C: "OO",7174,4946196690135877097 + + ;Material::stone, Model::Mesh chimney + C: "OO",7184,4946196690135877097 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimney.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimney.fbx.import new file mode 100644 index 0000000..087d824 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimney.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b64cev5ve8sf" +path="res://.godot/imported/chimney.fbx-dd9e12bf9860536668c9c03027bd36cc.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/chimney.fbx" +dest_files=["res://.godot/imported/chimney.fbx-dd9e12bf9860536668c9c03027bd36cc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyBase.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyBase.fbx new file mode 100644 index 0000000..d7419b0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyBase.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 896 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "chimneyBase.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "chimneyBase.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5415938364003276824, "Model::chimneyBase", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5712174618568113477, "Geometry::", "Mesh" { + Vertices: *372 { + a: 0.8118343,4.1,-2.6,4.25,4.1,-2.6,2.530917,5.9,-1.3,4.25,5.9,-1.3,0.8118343,4.1,-2.6,2.530917,5.9,-1.3,0.8118343,4.1,2.6,2.530917,5.9,1.3,4.25,4.1,-2.6,4.25,3.5,-2.6,4.25,5.9,-1.3,4.25,3.5,-2,4.25,1.28742,-2,4.25,0,2.4,4.25,0,-2.4,4.25,1.28742,-2.4,4.25,1.28742,2,4.25,1.28742,2.4,4.25,5.9,1.3,4.25,3.5,2,4.25,10,1.3,4.25,10,-1.3,4.25,4.1,2.6,4.25,3.5,2.6,1.011834,0,-2.4,1.011834,1.28742,-2.4,1.011834,0,2.4,1.011834,1.28742,2.4,4.25,0,2.4,1.011834,0,2.4,4.25,1.28742,2.4,1.011834,1.28742,2.4,4.25,1.28742,-2.4,4.25,1.28742,-2,1.011834,1.28742,-2.4,1.411834,1.28742,-2,1.411834,1.28742,-1.4943,1.411834,1.28742,1.4943,2.411834,1.28742,1.4943,2.411834,1.28742,-1.4943,1.411834,1.28742,2,1.011834,1.28742,2.4,4.25,1.28742,2.4,4.25,1.28742,2,0.8118343,3.5,-2.6,4.25,3.5,-2.6,0.8118343,4.1,-2.6,4.25,4.1,-2.6,0.8118343,3.5,-2.6,0.8118343,4.1,-2.6,0.8118343,3.5,2.6,0.8118343,4.1,2.6,1.011834,0,-2.4,4.25,0,-2.4,1.011834,1.28742,-2.4,4.25,1.28742,-2.4,4.25,3.5,2.6,0.8118343,3.5,2.6,4.25,4.1,2.6,0.8118343,4.1,2.6,4.25,3.5,2.6,4.25,3.5,2,0.8118343,3.5,2.6,1.411834,3.5,2,1.411834,3.5,-2,0.8118343,3.5,-2.6,4.25,3.5,-2.6,4.25,3.5,-2,4.25,0,2.4,4.25,0,-2.4,1.011834,0,2.4,1.011834,0,-2.4,4.25,4.1,2.6,0.8118343,4.1,2.6,4.25,5.9,1.3,2.530917,5.9,1.3,1.411834,1.28742,1.4943,1.411834,2.9943,1.4943,1.411834,1.28742,2,1.411834,3.5,2,1.411834,2.9943,-1.4943,1.411834,3.5,-2,1.411834,1.28742,-1.4943,1.411834,1.28742,-2,4.25,1.28742,2,1.411834,1.28742,2,4.25,3.5,2,1.411834,3.5,2,1.411834,1.28742,-2,4.25,1.28742,-2,1.411834,3.5,-2,4.25,3.5,-2,1.411834,1.28742,1.4943,2.411834,1.28742,1.4943,1.411834,2.9943,1.4943,2.411834,2.9943,1.4943,4.25,5.9,1.3,2.530917,5.9,1.3,4.25,10,1.3,2.530917,10,1.3,2.411834,2.9943,1.4943,2.411834,2.9943,-1.4943,1.411834,2.9943,1.4943,1.411834,2.9943,-1.4943,2.530917,5.9,-1.3,2.530917,10,-1.3,2.530917,5.9,1.3,2.530917,10,1.3,2.411834,1.28742,-1.4943,2.411834,2.9943,-1.4943,2.411834,1.28742,1.4943,2.411834,2.9943,1.4943,2.530917,5.9,-1.3,4.25,5.9,-1.3,2.530917,10,-1.3,4.25,10,-1.3,2.411834,1.28742,-1.4943,1.411834,1.28742,-1.4943,2.411834,2.9943,-1.4943,1.411834,2.9943,-1.4943,4.25,10,-1.3,4.25,10,1.3,2.530917,10,-1.3,2.530917,10,1.3 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,10,13,-13,13,14,-13,15,12,-15,16,13,-11,17,13,-17,18,16,-11,19,16,-19,20,18,-11,21,20,-11,18,22,-20,23,19,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,36,-35,37,38,-37,39,36,-39,40,37,-35,34,41,-41,41,42,-41,43,40,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,63,-63,62,65,-65,65,66,-65,67,64,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,78,79,-78,77,79,-81,79,81,-81,80,81,-83,83,82,-82,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 0,0.5854905,-0.8106793,0,0.5854905,-0.8106793,0,0.5854905,-0.8106793,0,0.5854905,-0.8106793,0,0.5854905,-0.8106793,0,0.5854905,-0.8106793,-0.7231748,0.6906651,0,-0.7231748,0.6906651,0,-0.7231748,0.6906651,0,-0.7231748,0.6906651,0,-0.7231748,0.6906651,0,-0.7231748,0.6906651,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5854905,0.8106793,0,0.5854905,0.8106793,0,0.5854905,0.8106793,0,0.5854905,0.8106793,0,0.5854905,0.8106793,0,0.5854905,0.8106793,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *248 { + a: -3.196198,7.092556,-16.73228,7.092556,-9.964241,15.83413,-16.73228,15.83413,-10.23622,13.8808,-5.11811,23.68011,10.23622,13.8808,5.11811,23.68011,10.23622,16.14173,10.23622,13.77953,5.11811,23.22835,7.874016,13.77953,7.874016,5.068582,-9.448819,0,9.448819,0,9.448819,5.068582,-7.874016,5.068582,-9.448819,5.068582,-5.11811,23.22835,-7.874016,13.77953,-5.11811,39.37008,5.11811,39.37008,-10.23622,16.14173,-10.23622,13.77953,-9.448819,0,-9.448819,5.068582,9.448819,0,9.448819,5.068582,16.73228,0,3.9836,0,16.73228,5.068582,3.9836,5.068582,-16.73228,-9.448819,-16.73228,-7.874016,-3.9836,-9.448819,-5.558403,-7.874016,-5.558403,-5.88307,-5.558403,5.88307,-9.495411,5.88307,-9.495411,-5.88307,-5.558403,7.874016,-3.9836,9.448819,-16.73228,9.448819,-16.73228,7.874016,-3.196198,13.77953,-16.73228,13.77953,-3.196198,16.14173,-16.73228,16.14173,-10.23622,13.77953,-10.23622,16.14173,10.23622,13.77953,10.23622,16.14173,-3.9836,0,-16.73228,0,-3.9836,5.068582,-16.73228,5.068582,16.73228,13.77953,3.196198,13.77953,16.73228,16.14173,3.196198,16.14173,16.73228,10.23622,16.73228,7.874016,3.196198,10.23622,5.558403,7.874016,5.558403,-7.874016,3.196198,-10.23622,16.73228,-10.23622,16.73228,-7.874016,16.73228,9.448819,16.73228,-9.448819,3.9836,9.448819,3.9836,-9.448819,16.73228,7.092556,3.196198,7.092556,16.73228,15.83413,9.964241,15.83413,5.88307,5.068582,5.88307,11.78858,7.874016,5.068582,7.874016,13.77953,-5.88307,11.78858,-7.874016,13.77953,-5.88307,5.068582,-7.874016,5.068582,16.73228,5.068582,5.558403,5.068582,16.73228,13.77953,5.558403,13.77953,-5.558403,5.068582,-16.73228,5.068582,-5.558403,13.77953,-16.73228,13.77953,-5.558403,5.068582,-9.495411,5.068582,-5.558403,11.78858,-9.495411,11.78858,16.73228,23.22835,9.964241,23.22835,16.73228,39.37008,9.964241,39.37008,9.495411,5.88307,9.495411,-5.88307,5.558403,5.88307,5.558403,-5.88307,-5.11811,23.22835,-5.11811,39.37008,5.11811,23.22835,5.11811,39.37008,-5.88307,5.068582,-5.88307,11.78858,5.88307,5.068582,5.88307,11.78858,-9.964241,23.22835,-16.73228,23.22835,-9.964241,39.37008,-16.73228,39.37008,9.495411,5.068582,5.558403,5.068582,9.495411,11.78858,5.558403,11.78858,-16.73228,-5.11811,-16.73228,5.11811,-9.964241,-5.11811,-9.964241,5.11811 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,10,13,12,13,14,12,15,12,14,16,13,10,17,13,16,18,16,10,19,16,18,20,18,10,21,20,10,18,22,19,23,19,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,37,36,34,37,38,36,39,36,38,40,37,34,34,41,40,41,42,40,43,40,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,63,62,62,65,64,65,66,64,67,64,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,78,79,77,77,79,80,79,81,80,80,81,82,83,82,81,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh chimneyBase, Model::RootNode + C: "OO",5415938364003276824,0 + + ;Geometry::, Model::Mesh chimneyBase + C: "OO",5712174618568113477,5415938364003276824 + + ;Material::stone, Model::Mesh chimneyBase + C: "OO",7184,5415938364003276824 + + ;Material::stoneDark, Model::Mesh chimneyBase + C: "OO",7174,5415938364003276824 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyBase.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyBase.fbx.import new file mode 100644 index 0000000..9c7e0c4 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyBase.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cf8kuqk41s2ta" +path="res://.godot/imported/chimneyBase.fbx-893c4c10b82084a69f8a7e26c783fb57.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyBase.fbx" +dest_files=["res://.godot/imported/chimneyBase.fbx-893c4c10b82084a69f8a7e26c783fb57.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyTop.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyTop.fbx new file mode 100644 index 0000000..72a4a4e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyTop.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 927 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "chimneyTop.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "chimneyTop.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5588568906511303874, "Model::chimneyTop", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5273554012916883247, "Geometry::", "Mesh" { + Vertices: *444 { + a: 4.25,0,1.3,4.25,0,-1.3,2.530917,0,1.3,2.530917,0,-1.3,4.65,6.25,-1.3,4.65,6.25,1.3,4.25,6.25,-1.7,4.25,6.25,-1.134315,4.084315,6.25,-1.3,4.25,6.25,1.134315,4.25,6.25,1.7,4.084315,6.25,1.3,2.530917,6.25,-1.7,2.696603,6.25,-1.3,2.530917,6.25,-1.134315,2.530917,6.25,1.7,2.130917,6.25,-1.3,2.696603,6.25,1.3,2.530917,6.25,1.134315,2.130917,6.25,1.3,4.25,0,1.3,2.530917,0,1.3,4.25,3.75,1.3,2.696603,3.75,1.3,2.530917,3.75,1.3,4.084315,3.75,1.3,2.530917,0,-1.3,2.530917,3.75,-1.3,2.530917,0,1.3,2.530917,3.75,-1.134315,2.530917,3.75,1.134315,2.530917,3.75,1.3,2.530917,0,-1.3,4.25,0,-1.3,2.530917,3.75,-1.3,4.25,3.75,-1.3,2.696603,3.75,-1.3,4.084315,3.75,-1.3,4.25,3.75,-1.3,4.25,0,-1.3,4.25,3.75,-1.134315,4.25,0,1.3,4.25,3.75,1.134315,4.25,3.75,1.3,4.65,6.25,-1.3,4.65,3.75,-1.3,4.65,6.25,1.3,4.65,3.75,1.3,4.65,3.75,1.3,4.65,3.75,-1.3,4.25,3.75,1.7,4.25,3.75,1.134315,4.25,3.75,1.3,4.25,3.75,-1.134315,2.530917,3.75,1.7,4.25,3.75,-1.7,4.25,3.75,-1.3,4.084315,3.75,-1.3,4.084315,3.75,1.3,2.696603,3.75,1.3,2.530917,3.75,1.3,2.530917,3.75,-1.7,2.130917,3.75,1.3,2.696603,3.75,-1.3,2.530917,3.75,1.134315,2.530917,3.75,-1.134315,2.530917,3.75,-1.3,2.130917,3.75,-1.3,4.65,3.75,1.3,4.25,3.75,1.7,4.65,6.25,1.3,4.25,6.25,1.7,4.25,3.75,-1.7,4.65,3.75,-1.3,4.25,6.25,-1.7,4.65,6.25,-1.3,2.130917,3.75,1.3,2.130917,6.25,1.3,2.530917,3.75,1.7,2.530917,6.25,1.7,2.530917,3.75,-1.7,2.530917,6.25,-1.7,2.130917,3.75,-1.3,2.130917,6.25,-1.3,4.25,3.75,-1.134315,4.25,3.75,1.134315,4.084315,3.75,-1.3,4.084315,3.75,1.3,2.696603,3.75,-1.3,2.696603,3.75,1.3,2.530917,3.75,-1.134315,2.530917,3.75,1.134315,2.696603,3.75,1.3,4.084315,3.75,1.3,2.696603,6.25,1.3,4.084315,6.25,1.3,4.25,3.75,1.134315,4.25,6.25,1.134315,4.084315,3.75,1.3,4.084315,6.25,1.3,4.25,3.75,-1.134315,4.25,6.25,-1.134315,4.25,3.75,1.134315,4.25,6.25,1.134315,4.084315,3.75,-1.3,4.084315,6.25,-1.3,4.25,3.75,-1.134315,4.25,6.25,-1.134315,4.084315,3.75,-1.3,2.696603,3.75,-1.3,4.084315,6.25,-1.3,2.696603,6.25,-1.3,2.696603,6.25,-1.3,2.696603,3.75,-1.3,2.530917,6.25,-1.134315,2.530917,3.75,-1.134315,2.530917,6.25,-1.134315,2.530917,3.75,-1.134315,2.530917,6.25,1.134315,2.530917,3.75,1.134315,2.530917,3.75,1.134315,2.696603,3.75,1.3,2.530917,6.25,1.134315,2.696603,6.25,1.3,4.25,3.75,1.7,2.530917,3.75,1.7,4.25,6.25,1.7,2.530917,6.25,1.7,2.130917,3.75,-1.3,2.130917,6.25,-1.3,2.130917,3.75,1.3,2.130917,6.25,1.3,2.530917,3.75,-1.7,4.25,3.75,-1.7,2.530917,6.25,-1.7,4.25,6.25,-1.7,4.25,3.75,-1.134315,4.25,3.75,-1.3,4.084315,3.75,-1.3,4.25,3.75,1.3,4.25,3.75,1.134315,4.084315,3.75,1.3,2.530917,3.75,-1.134315,2.696603,3.75,-1.3,2.530917,3.75,-1.3,2.530917,3.75,1.3,2.696603,3.75,1.3,2.530917,3.75,1.134315 + } + PolygonVertexIndex: *288 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,7,9,-6,10,5,-10,11,10,-10,12,8,-7,13,8,-13,14,13,-13,15,10,-12,16,14,-13,17,15,-12,18,14,-17,18,15,-18,15,18,-17,19,15,-17,20,22,-22,23,21,-23,24,21,-24,25,23,-23,26,28,-28,29,27,-29,30,29,-29,31,30,-29,32,34,-34,35,33,-35,36,35,-35,37,35,-37,38,40,-40,41,39,-41,42,41,-41,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,51,53,-50,54,52,-51,55,49,-54,56,55,-54,57,55,-57,58,52,-55,59,58,-55,60,59,-55,61,55,-58,62,60,-55,63,61,-58,64,60,-63,65,64,-63,66,61,-64,66,65,-63,61,66,-63,67,61,-63,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,89,87,-89,90,89,-89,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,141,-141,142,144,-144,145,147,-147 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *864 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *296 { + a: 16.73228,5.11811,16.73228,-5.11811,9.964241,5.11811,9.964241,-5.11811,-18.30709,-5.11811,-18.30709,5.11811,-16.73228,-6.692914,-16.73228,-4.465806,-16.07998,-5.11811,-16.73228,4.465806,-16.73228,6.692914,-16.07998,5.11811,-9.964241,-6.692914,-10.61655,-5.11811,-9.964241,-4.465806,-9.964241,6.692914,-8.389438,-5.11811,-10.61655,5.11811,-9.964241,4.465806,-8.389438,5.11811,16.73228,0,9.964241,0,16.73228,14.76378,10.61655,14.76378,9.964241,14.76378,16.07998,14.76378,-5.11811,0,-5.11811,14.76378,5.11811,0,-4.465806,14.76378,4.465806,14.76378,5.11811,14.76378,-9.964241,2.463215E-15,-16.73228,2.463215E-15,-9.964241,14.76378,-16.73228,14.76378,-10.61655,14.76378,-16.07998,14.76378,5.11811,14.76378,5.11811,6.442254E-14,4.465806,14.76378,-5.11811,6.442254E-14,-4.465806,14.76378,-5.11811,14.76378,5.11811,24.6063,5.11811,14.76378,-5.11811,24.6063,-5.11811,14.76378,18.30709,5.11811,18.30709,-5.11811,16.73228,6.692914,16.73228,4.465806,16.73228,5.11811,16.73228,-4.465806,9.964241,6.692914,16.73228,-6.692914,16.73228,-5.11811,16.07998,-5.11811,16.07998,5.11811,10.61655,5.11811,9.964241,5.11811,9.964241,-6.692914,8.389438,5.11811,10.61655,-5.11811,9.964241,4.465806,9.964241,-4.465806,9.964241,-5.11811,8.389438,-5.11811,9.326015,14.76378,7.098907,14.76378,9.326015,24.6063,7.098907,24.6063,-7.098907,14.76378,-9.326015,14.76378,-7.098907,24.6063,-9.326015,24.6063,9.551279,14.76378,9.551279,24.6063,11.77839,14.76378,11.77839,24.6063,-11.77839,14.76378,-11.77839,24.6063,-9.551279,14.76378,-9.551279,24.6063,-16.73228,-4.465806,-16.73228,4.465806,-16.07998,-5.11811,-16.07998,5.11811,-10.61655,-5.11811,-10.61655,5.11811,-9.964241,-4.465806,-9.964241,4.465806,-10.61655,14.76378,-16.07998,14.76378,-10.61655,24.6063,-16.07998,24.6063,-8.67371,14.76378,-8.67371,24.6063,-7.751212,14.76378,-7.751212,24.6063,-4.465806,14.76378,-4.465806,24.6063,4.465806,14.76378,4.465806,24.6063,7.751212,14.76378,7.751212,24.6063,8.67371,14.76378,8.67371,24.6063,16.07998,14.76378,10.61655,14.76378,16.07998,24.6063,10.61655,24.6063,11.12608,24.6063,11.12608,14.76378,10.20358,24.6063,10.20358,14.76378,4.465806,24.6063,4.465806,14.76378,-4.465806,24.6063,-4.465806,14.76378,-10.20358,14.76378,-11.12608,14.76378,-10.20358,24.6063,-11.12608,24.6063,16.73228,14.76378,9.964241,14.76378,16.73228,24.6063,9.964241,24.6063,-5.11811,14.76378,-5.11811,24.6063,5.11811,14.76378,5.11811,24.6063,-9.964241,14.76378,-16.73228,14.76378,-9.964241,24.6063,-16.73228,24.6063,-5.11811,14.76378,-5.11811,24.6063,5.11811,14.76378,-11.12608,24.6063,-10.20358,24.6063,-11.12608,14.76378,-11.12608,24.6063,-10.20358,24.6063,-11.12608,14.76378,-11.12608,24.6063,-10.20358,24.6063,-11.12608,14.76378 + } + UVIndex: *288 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,7,9,5,10,5,9,11,10,9,12,8,6,13,8,12,14,13,12,15,10,11,16,14,12,17,15,11,18,14,16,18,15,17,15,18,16,19,15,16,20,22,21,23,21,22,24,21,23,25,23,22,26,28,27,29,27,28,30,29,28,31,30,28,32,34,33,35,33,34,36,35,34,37,35,36,38,40,39,41,39,40,42,41,40,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,51,53,49,54,52,50,55,49,53,56,55,53,57,55,56,58,52,54,59,58,54,60,59,54,61,55,57,62,60,54,63,61,57,64,60,62,65,64,62,66,61,63,66,65,62,61,66,62,67,61,62,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,89,87,88,90,89,88,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,141,140,142,144,143,145,147,146 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *96 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh chimneyTop, Model::RootNode + C: "OO",5588568906511303874,0 + + ;Geometry::, Model::Mesh chimneyTop + C: "OO",5273554012916883247,5588568906511303874 + + ;Material::stoneDark, Model::Mesh chimneyTop + C: "OO",7174,5588568906511303874 + + ;Material::stone, Model::Mesh chimneyTop + C: "OO",7184,5588568906511303874 + + ;Material::_defaultMat, Model::Mesh chimneyTop + C: "OO",7176,5588568906511303874 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyTop.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyTop.fbx.import new file mode 100644 index 0000000..f3088f8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyTop.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://8sgn3birmmkt" +path="res://.godot/imported/chimneyTop.fbx-d8d5f743268a1ebbd0b48a27595f3b03.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/chimneyTop.fbx" +dest_files=["res://.godot/imported/chimneyTop.fbx-d8d5f743268a1ebbd0b48a27595f3b03.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fence.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fence.fbx new file mode 100644 index 0000000..781e52a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fence.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 42 + Millisecond: 981 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5705553298850882304, "Model::fence", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5751552060832170286, "Geometry::", "Mesh" { + Vertices: *360 { + a: 4.8125,1.5,-4.25,4.8125,1.5,-0.375,4.4375,1.5,-4.25,4.4375,1.5,-0.375,4.4375,1.5,-0.375,4.8125,1.5,-0.375,4.4375,2.3,-0.375,4.8125,2.3,-0.375,5,3.8,-5,5,0,-5,5,3.8,-4.25,5,0,-4.25,4.8125,2.3,4.25,4.8125,2.3,0.375,4.4375,2.3,4.25,4.4375,2.3,0.375,4.25,0,4.25,4.25,3.8,4.25,4.25,0,5,4.25,3.8,5,5,3.8,4.25,5,3.8,5,4.25,3.8,4.25,4.25,3.8,5,4.8125,2.3,-0.375,4.8125,2.3,-4.25,4.4375,2.3,-0.375,4.4375,2.3,-4.25,4.8125,0.75,4.25,4.8125,0.75,-4.25,4.4375,0.75,4.25,4.4375,0.75,-4.25,5,3.8,4.25,5,0,4.25,5,3.8,5,5,0,5,5,0,-4.25,5,0,-5,4.25,0,-4.25,4.25,0,-5,4.8125,1.5,0.375,4.8125,1.5,4.25,4.4375,1.5,0.375,4.4375,1.5,4.25,4.25,0,-5,5,0,-5,4.25,3.8,-5,5,3.8,-5,4.4375,1.5,-4.25,4.4375,1.5,-0.375,4.4375,0.75,-4.25,4.4375,0.75,4.25,4.4375,1.5,0.375,4.4375,1.5,4.25,4.4375,2.3,-0.375,4.4375,2.3,0.375,4.4375,3.05,4.25,4.4375,2.3,4.25,4.4375,2.3,-4.25,4.4375,3.05,-4.25,4.8125,3.05,-4.25,4.8125,2.3,-4.25,4.8125,3.05,4.25,4.8125,2.3,-0.375,4.8125,2.3,0.375,4.8125,2.3,4.25,4.8125,1.5,0.375,4.8125,1.5,-0.375,4.8125,0.75,4.25,4.8125,1.5,4.25,4.8125,0.75,-4.25,4.8125,1.5,-4.25,5,0,5,4.25,0,5,5,3.8,5,4.25,3.8,5,4.8125,1.5,0.375,4.4375,1.5,0.375,4.8125,2.3,0.375,4.4375,2.3,0.375,5,3.8,-5,5,3.8,-4.25,4.25,3.8,-5,4.25,3.8,-4.25,4.8125,3.05,-4.25,4.8125,3.05,4.25,4.4375,3.05,-4.25,4.4375,3.05,4.25,4.25,0,-5,4.25,3.8,-5,4.25,0,-4.25,4.25,3.8,-4.25,5,0,5,5,0,4.25,4.25,0,5,4.25,0,4.25,5,0,4.25,4.4375,0.75,4.25,4.25,0,4.25,4.25,3.8,4.25,4.8125,0.75,4.25,5,3.8,4.25,4.4375,1.5,4.25,4.8125,1.5,4.25,4.4375,2.3,4.25,4.8125,2.3,4.25,4.4375,3.05,4.25,4.8125,3.05,4.25,4.25,0,-4.25,4.8125,0.75,-4.25,5,0,-4.25,5,3.8,-4.25,4.4375,0.75,-4.25,4.25,3.8,-4.25,4.8125,1.5,-4.25,4.4375,1.5,-4.25,4.8125,2.3,-4.25,4.4375,2.3,-4.25,4.8125,3.05,-4.25,4.4375,3.05,-4.25 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,49,-52,53,52,-52,54,49,-53,52,55,-55,55,56,-55,57,56,-56,54,56,-59,59,58,-57,60,62,-62,63,61,-63,64,63,-63,65,64,-63,66,63,-65,63,66,-68,66,68,-68,69,68,-67,68,70,-68,71,67,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,97,100,-97,101,96,-101,102,97,-100,103,101,-101,103,102,-105,104,102,-100,104,105,-104,105,101,-104,106,104,-100,107,101,-106,107,106,-100,99,101,-108,108,110,-110,111,109,-111,109,112,-109,113,108,-113,114,109,-112,115,113,-113,115,114,-117,116,114,-112,116,117,-116,117,113,-116,118,116,-112,119,113,-118,119,118,-112,111,113,-120 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: -18.94685,-16.73228,-18.94685,-1.476378,-17.47047,-16.73228,-17.47047,-1.476378,-17.47047,5.905512,-18.94685,5.905512,-17.47047,9.055119,-18.94685,9.055119,19.68504,14.96063,19.68504,0,16.73228,14.96063,16.73228,0,18.94685,16.73228,18.94685,1.476378,17.47047,16.73228,17.47047,1.476378,16.73228,0,16.73228,14.96063,19.68504,0,19.68504,14.96063,-19.68504,16.73228,-19.68504,19.68504,-16.73228,16.73228,-16.73228,19.68504,18.94685,-1.476378,18.94685,-16.73228,17.47047,-1.476378,17.47047,-16.73228,18.94685,16.73228,18.94685,-16.73228,17.47047,16.73228,17.47047,-16.73228,-16.73228,14.96063,-16.73228,0,-19.68504,14.96063,-19.68504,0,19.68504,-16.73228,19.68504,-19.68504,16.73228,-16.73228,16.73228,-19.68504,-18.94685,1.476378,-18.94685,16.73228,-17.47047,1.476378,-17.47047,16.73228,-16.73228,0,-19.68504,0,-16.73228,14.96063,-19.68504,14.96063,-16.73228,5.905512,-1.476378,5.905512,-16.73228,2.952756,16.73228,2.952756,1.476378,5.905512,16.73228,5.905512,-1.476378,9.055119,1.476378,9.055119,16.73228,12.00787,16.73228,9.055119,-16.73228,9.055119,-16.73228,12.00787,16.73228,12.00787,16.73228,9.055119,-16.73228,12.00787,1.476378,9.055119,-1.476378,9.055119,-16.73228,9.055119,-1.476378,5.905512,1.476378,5.905512,-16.73228,2.952756,-16.73228,5.905512,16.73228,2.952756,16.73228,5.905512,19.68504,1.869849E-14,16.73228,1.869849E-14,19.68504,14.96063,16.73228,14.96063,18.94685,5.905512,17.47047,5.905512,18.94685,9.055119,17.47047,9.055119,-19.68504,-19.68504,-19.68504,-16.73228,-16.73228,-19.68504,-16.73228,-16.73228,-18.94685,-16.73228,-18.94685,16.73228,-17.47047,-16.73228,-17.47047,16.73228,-19.68504,0,-19.68504,14.96063,-16.73228,0,-16.73228,14.96063,19.68504,19.68504,19.68504,16.73228,16.73228,19.68504,16.73228,16.73228,-19.68504,0,-17.47047,2.952756,-16.73228,0,-16.73228,14.96063,-18.94685,2.952756,-19.68504,14.96063,-17.47047,5.905512,-18.94685,5.905512,-17.47047,9.055119,-18.94685,9.055119,-17.47047,12.00787,-18.94685,12.00787,16.73228,0,18.94685,2.952756,19.68504,0,19.68504,14.96063,17.47047,2.952756,16.73228,14.96063,18.94685,5.905512,17.47047,5.905512,18.94685,9.055119,17.47047,9.055119,18.94685,12.00787,17.47047,12.00787 + } + UVIndex: *252 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,49,51,53,52,51,54,49,52,52,55,54,55,56,54,57,56,55,54,56,58,59,58,56,60,62,61,63,61,62,64,63,62,65,64,62,66,63,64,63,66,67,66,68,67,69,68,66,68,70,67,71,67,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,97,100,96,101,96,100,102,97,99,103,101,100,103,102,104,104,102,99,104,105,103,105,101,103,106,104,99,107,101,105,107,106,99,99,101,107,108,110,109,111,109,110,109,112,108,113,108,112,114,109,111,115,113,112,115,114,116,116,114,111,116,117,115,117,113,115,118,116,111,119,113,117,119,118,111,111,113,119 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence, Model::RootNode + C: "OO",5705553298850882304,0 + + ;Geometry::, Model::Mesh fence + C: "OO",5751552060832170286,5705553298850882304 + + ;Material::wood, Model::Mesh fence + C: "OO",7178,5705553298850882304 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fence.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fence.fbx.import new file mode 100644 index 0000000..6f2507f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fence.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://qq726awj2nfw" +path="res://.godot/imported/fence.fbx-3590fde68d9bee7ca4146bdf9928e86c.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fence.fbx" +dest_files=["res://.godot/imported/fence.fbx-3590fde68d9bee7ca4146bdf9928e86c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceBroken.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceBroken.fbx new file mode 100644 index 0000000..936e6cf --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceBroken.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 61 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fenceBroken.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fenceBroken.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5209292721415742091, "Model::fenceBroken", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4857200058106777333, "Geometry::", "Mesh" { + Vertices: *624 { + a: 4.4375,2.3,3.54553,4.8125,2.3,3.54553,4.4375,3.05,3.34553,4.8125,3.05,3.34553,5,0,-4.25,5,0,-5,4.25,0,-4.25,4.25,0,-5,4.8125,3.05,-4.25,4.8125,3.05,-2.5125,4.4375,3.05,-4.25,4.4375,3.05,-2.5125,4.25,0,4.25,4.25,3.8,4.25,4.25,0,5,4.25,3.8,5,4.8125,2.3,-2.3125,4.4375,2.3,-2.3125,4.8125,3.05,-2.5125,4.4375,3.05,-2.5125,4.8125,0.5750897,-1.846782,4.8125,2.547318,2.873841,4.4375,0.5750897,-1.846782,4.4375,2.547318,2.873841,4.8125,3.05,3.34553,4.8125,3.05,4.25,4.4375,3.05,3.34553,4.4375,3.05,4.25,4.25,0,-5,4.25,3.8,-5,4.25,0,-4.25,4.25,3.8,-4.25,4.8125,0.75,4.25,4.8125,0.75,2.494902,4.4375,0.75,4.25,4.4375,0.75,2.494902,4.8125,2.3,-2.3125,4.8125,2.3,-4.25,4.4375,2.3,-2.3125,4.4375,2.3,-4.25,4.4375,0.75,4.25,4.4375,0.75,2.494902,4.4375,1.5,4.25,4.4375,1.5,2.3125,4.4375,1.777591,2.976997,4.4375,2.547318,2.873841,4.4375,0,-1.277753,4.4375,0.5750897,-1.846782,4.4375,-1.804779E-15,-1.946321,4.8125,0.75,4.25,4.8125,1.5,4.25,4.8125,0.75,2.494902,4.8125,1.5,2.3125,4.8125,1.777591,2.976997,4.8125,2.547318,2.873841,4.8125,0,-1.277753,4.8125,0.5750897,-1.846782,4.8125,-1.804779E-15,-1.946321,4.8125,1.5,-4.25,4.8125,1.5,-3.565625,4.4375,1.5,-4.25,4.4375,1.5,-3.565625,5,6.059185E-14,1.470163,3.027771,1.367939E-14,-3.250461,4.230273,7.115918E-14,1.573318,2.452682,4.488303E-29,-2.681432,2.452682,0,-3.35,5,6.059185E-14,1.470163,4.230273,7.115918E-14,1.573318,5,0.375,1.470163,4.230273,0.375,1.573318,3.027771,0.375,-3.250461,3.027771,1.367939E-14,-3.250461,5,0.375,1.470163,5,6.059185E-14,1.470163,4.8125,0.75,-3.765625,4.8125,0.75,-4.25,4.4375,0.75,-3.765625,4.4375,0.75,-4.25,5,3.8,4.25,5,3.8,5,4.25,3.8,4.25,4.25,3.8,5,2.452682,4.488303E-29,-2.681432,2.452682,0.375,-2.681432,4.230273,7.115918E-14,1.573318,4.230273,0.375,1.573318,4.8125,3.05,-4.25,4.8125,2.3,-4.25,4.8125,3.05,-2.5125,4.8125,2.3,-2.3125,4.4375,1.777591,2.976997,4.8125,1.777591,2.976997,4.4375,1.5,2.3125,4.8125,1.5,2.3125,4.8125,0,-1.277753,4.4375,0,-1.277753,2.452682,0,-3.35,2.452682,0.375,-3.35,2.452682,4.488303E-29,-2.681432,2.452682,0.375,-2.681432,5,3.8,-5,5,3.8,-4.25,4.25,3.8,-5,4.25,3.8,-4.25,4.4375,3.05,-4.25,4.4375,3.05,-2.5125,4.4375,2.3,-4.25,4.4375,2.3,-2.3125,4.8125,2.3,4.25,4.8125,2.3,3.54553,4.4375,2.3,4.25,4.4375,2.3,3.54553,5,0,5,4.25,0,5,5,3.8,5,4.25,3.8,5,4.8125,3.05,3.34553,4.8125,2.3,3.54553,4.8125,3.05,4.25,4.8125,2.3,4.25,4.4375,3.05,3.34553,4.4375,3.05,4.25,4.4375,2.3,3.54553,4.4375,2.3,4.25,4.8125,0.75,-3.765625,4.4375,0.75,-3.765625,4.8125,1.5,-3.565625,4.4375,1.5,-3.565625,5,0.375,1.470163,4.230273,0.375,1.573318,3.027771,0.375,-3.250461,2.452682,0.375,-2.681432,2.452682,0.375,-3.35,4.8125,1.5,-4.25,4.8125,0.75,-4.25,4.8125,1.5,-3.565625,4.8125,0.75,-3.765625,4.8125,1.777591,2.976997,4.4375,1.777591,2.976997,4.8125,2.547318,2.873841,4.4375,2.547318,2.873841,5,3.8,-5,5,0,-5,5,3.8,-4.25,5,0,-4.25,4.4375,1.5,-4.25,4.4375,1.5,-3.565625,4.4375,0.75,-4.25,4.4375,0.75,-3.765625,2.452682,0,-3.35,3.027771,1.367939E-14,-3.250461,2.452682,0.375,-3.35,3.027771,0.375,-3.250461,4.25,0,-5,5,0,-5,4.25,3.8,-5,5,3.8,-5,5,3.8,4.25,5,0,4.25,5,3.8,5,5,0,5,4.8125,1.5,2.3125,4.8125,1.5,4.25,4.4375,1.5,2.3125,4.4375,1.5,4.25,4.4375,0.75,2.494902,4.8125,0.75,2.494902,4.4375,1.5,2.3125,4.8125,1.5,2.3125,5,0,5,5,0,4.25,4.25,0,5,4.25,0,4.25,4.4375,-1.804779E-15,-1.946321,4.8125,-1.804779E-15,-1.946321,4.4375,0.5750897,-1.846782,4.8125,0.5750897,-1.846782,4.8125,3.05,-4.25,5,3.8,-4.25,4.8125,2.3,-4.25,4.4375,3.05,-4.25,4.25,3.8,-4.25,4.4375,2.3,-4.25,4.4375,1.5,-4.25,4.8125,1.5,-4.25,4.4375,0.75,-4.25,4.25,0,-4.25,4.8125,0.75,-4.25,5,0,-4.25,5,0,4.25,4.4375,0.75,4.25,4.25,0,4.25,4.25,3.8,4.25,4.8125,0.75,4.25,5,3.8,4.25,4.4375,1.5,4.25,4.8125,1.5,4.25,4.4375,2.3,4.25,4.8125,2.3,4.25,4.4375,3.05,4.25,4.8125,3.05,4.25,4.8125,0,-1.277753,4.8125,-1.804779E-15,-1.946321,4.4375,0,-1.277753,4.4375,-1.804779E-15,-1.946321,4.4375,0,-1.277753,4.8125,-1.804779E-15,-1.946321 + } + PolygonVertexIndex: *372 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,45,-44,43,45,-47,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,52,-55,52,55,-55,54,55,-57,57,56,-56,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,63,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,94,93,-96,96,95,-94,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,132,-132,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,178,-180,179,182,-182,181,182,-184,180,183,-185,183,182,-185,184,185,-181,180,185,-180,184,182,-187,182,187,-187,185,188,-180,188,186,-188,179,188,-190,187,189,-189,190,192,-192,193,191,-193,191,194,-191,195,190,-195,196,191,-194,197,195,-195,197,196,-199,198,196,-194,198,199,-198,199,195,-198,200,198,-194,201,195,-200,201,200,-194,193,195,-202,202,204,-204,205,207,-207 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1116 { + a: 0,-0.2576627,-0.9662349,0,-0.2576627,-0.9662349,0,-0.2576627,-0.9662349,0,-0.2576627,-0.9662349,0,-0.2576627,-0.9662349,0,-0.2576627,-0.9662349,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.2576627,0.9662349,0,0.2576627,0.9662349,0,0.2576627,0.9662349,0,0.2576627,0.9662349,0,0.2576627,0.9662349,0,0.2576627,0.9662349,0,0.9227086,-0.3854983,0,0.9227086,-0.3854983,0,0.9227086,-0.3854983,0,0.9227086,-0.3854983,0,0.9227086,-0.3854983,0,0.9227086,-0.3854983,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.1328286,0,0.991139,0.1328286,0,0.991139,0.1328286,0,0.991139,0.1328286,0,0.991139,0.1328286,0,0.991139,0.1328286,0,0.991139,0.9227086,0,-0.3854983,0.9227086,0,-0.3854983,0.9227086,0,-0.3854983,0.9227086,0,-0.3854983,0.9227086,0,-0.3854983,0.9227086,0,-0.3854983,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9227086,0,0.3854983,-0.9227086,0,0.3854983,-0.9227086,0,0.3854983,-0.9227086,0,0.3854983,-0.9227086,0,0.3854983,-0.9227086,0,0.3854983,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.9227228,0.3854641,0,-0.9227228,0.3854641,0,-0.9227228,0.3854641,0,-0.9227228,0.3854641,0,-0.9227228,0.3854641,0,-0.9227228,0.3854641,0,-0.9227228,0.3854641,0,-0.9227228,0.3854641,0,-0.9227059,0.3855045,0,-0.9227059,0.3855045,0,-0.9227059,0.3855045,0,-0.9227228,0.3854641,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.2576627,0.9662349,0,-0.2576627,0.9662349,0,-0.2576627,0.9662349,0,-0.2576627,0.9662349,0,-0.2576627,0.9662349,0,-0.2576627,0.9662349,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.1328286,0.991139,0,0.1328286,0.991139,0,0.1328286,0.991139,0,0.1328286,0.991139,0,0.1328286,0.991139,0,0.1328286,0.991139,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.1705485,0,-0.9853492,0.1705485,0,-0.9853492,0.1705485,0,-0.9853492,0.1705485,0,-0.9853492,0.1705485,0,-0.9853492,0.1705485,0,-0.9853492,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.2363149,-0.9716765,0,-0.2363149,-0.9716765,0,-0.2363149,-0.9716765,0,-0.2363149,-0.9716765,0,-0.2363149,-0.9716765,0,-0.2363149,-0.9716765,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.1705485,-0.9853492,0,0.1705485,-0.9853492,0,0.1705485,-0.9853492,0,0.1705485,-0.9853492,0,0.1705485,-0.9853492,0,0.1705485,-0.9853492,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: -17.47047,5.152716,-18.94685,5.152716,-17.47047,8.208655,-18.94685,8.208655,19.68504,-16.73228,19.68504,-19.68504,16.73228,-16.73228,16.73228,-19.68504,-18.94685,-16.73228,-18.94685,-9.891732,-17.47047,-16.73228,-17.47047,-9.891732,16.73228,0,16.73228,14.96063,19.68504,0,19.68504,14.96063,18.94685,11.09522,17.47047,11.09522,18.94685,14.15116,17.47047,14.15116,-18.94685,-5.836007,-18.94685,14.30592,-17.47047,-5.836007,-17.47047,14.30592,-18.94685,13.17138,-18.94685,16.73228,-17.47047,13.17138,-17.47047,16.73228,-19.68504,0,-19.68504,14.96063,-16.73228,0,-16.73228,14.96063,18.94685,16.73228,18.94685,9.822451,17.47047,16.73228,17.47047,9.822451,18.94685,-9.104331,18.94685,-16.73228,17.47047,-9.104331,17.47047,-16.73228,16.73228,2.952756,9.822451,2.952756,16.73228,5.905512,9.104331,5.905512,11.72046,6.998391,11.31434,10.02881,-5.030524,0,-7.270796,2.264133,-7.662683,-7.105427E-15,-16.73228,2.952756,-16.73228,5.905512,-9.822451,2.952756,-9.104331,5.905512,-11.72046,6.998391,-11.31434,10.02881,5.030524,1.829167E-13,7.270796,2.264133,7.662683,1.758113E-13,-18.94685,-16.73228,-18.94685,-14.03789,-17.47047,-16.73228,-17.47047,-14.03789,19.68504,5.788042,11.92036,-12.79709,16.65462,6.194168,9.656227,-10.55682,9.656227,-13.18898,18.74179,7.749865E-13,15.68428,8.165901E-13,18.74179,1.476378,15.68428,1.476378,7.212707,1.476378,7.212707,-5.142616E-13,-12.92922,1.476378,-12.92922,-3.295669E-13,18.94685,-14.8253,18.94685,-16.73228,17.47047,-14.8253,17.47047,-16.73228,-19.68504,16.73228,-19.68504,19.68504,-16.73228,16.73228,-16.73228,19.68504,-6.018407,-5.231185E-13,-6.018407,1.476378,12.13574,-2.429643E-13,12.13574,1.476378,16.73228,12.00787,16.73228,9.055119,9.891732,12.00787,9.104331,9.055119,17.47047,13.51237,18.94685,13.51237,17.47047,10.67714,18.94685,10.67714,18.94685,-4.641694,17.47047,-4.641694,-13.18898,-2.296881E-13,-13.18898,1.476378,-10.55682,-2.296881E-13,-10.55682,1.476378,-19.68504,-19.68504,-19.68504,-16.73228,-16.73228,-19.68504,-16.73228,-16.73228,-16.73228,12.00787,-9.891732,12.00787,-16.73228,9.055119,-9.104331,9.055119,18.94685,16.73228,18.94685,13.95878,17.47047,16.73228,17.47047,13.95878,19.68504,3.739699E-14,16.73228,3.739699E-14,19.68504,14.96063,16.73228,14.96063,-13.17138,12.00787,-13.95878,9.055119,-16.73228,12.00787,-16.73228,9.055119,13.17138,12.00787,16.73228,12.00787,13.95878,9.055119,16.73228,9.055119,18.94685,-0.9668689,17.47047,-0.9668689,18.94685,2.089071,17.47047,2.089071,-19.68504,5.788042,-16.65462,6.194168,-11.92036,-12.79709,-9.656227,-10.55682,-9.656227,-13.18898,16.73228,5.905512,16.73228,2.952756,14.03789,5.905512,14.8253,2.952756,18.94685,5.379566,17.47047,5.379566,18.94685,8.437079,17.47047,8.437079,19.68504,14.96063,19.68504,0,16.73228,14.96063,16.73228,0,-16.73228,5.905512,-14.03789,5.905512,-16.73228,2.952756,-14.8253,2.952756,-7.265396,-5.940151E-14,-9.563193,-5.545644E-15,-7.265396,1.476378,-9.563193,1.476378,-16.73228,0,-19.68504,0,-16.73228,14.96063,-19.68504,14.96063,-16.73228,14.96063,-16.73228,0,-19.68504,14.96063,-19.68504,0,-18.94685,9.104331,-18.94685,16.73228,-17.47047,9.104331,-17.47047,16.73228,-17.47047,0.5479324,-18.94685,0.5479324,-17.47047,3.586758,-18.94685,3.586758,19.68504,19.68504,19.68504,16.73228,16.73228,19.68504,16.73228,16.73228,-17.47047,-1.306859,-18.94685,-1.306859,-17.47047,0.9909378,-18.94685,0.9909378,18.94685,12.00787,19.68504,14.96063,18.94685,9.055119,17.47047,12.00787,16.73228,14.96063,17.47047,9.055119,17.47047,5.905512,18.94685,5.905512,17.47047,2.952756,16.73228,0,18.94685,2.952756,19.68504,0,-19.68504,0,-17.47047,2.952756,-16.73228,0,-16.73228,14.96063,-18.94685,2.952756,-19.68504,14.96063,-17.47047,5.905512,-18.94685,5.905512,-17.47047,9.055119,-18.94685,9.055119,-17.47047,12.00787,-18.94685,12.00787,-16.73228,14.96063,-18.94685,12.00787,-19.68504,14.96063,-16.73228,14.96063,-18.94685,12.00787,-19.68504,14.96063 + } + UVIndex: *372 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,45,43,43,45,46,45,47,46,48,46,47,49,51,50,52,50,51,53,52,54,52,55,54,54,55,56,57,56,55,58,60,59,61,59,60,62,64,63,65,63,64,66,63,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,94,93,95,96,95,93,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,127,126,128,126,127,129,131,130,132,130,131,133,132,131,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,178,179,179,182,181,181,182,183,180,183,184,183,182,184,184,185,180,180,185,179,184,182,186,182,187,186,185,188,179,188,186,187,179,188,189,187,189,188,190,192,191,193,191,192,191,194,190,195,190,194,196,191,193,197,195,194,197,196,198,198,196,193,198,199,197,199,195,197,200,198,193,201,195,199,201,200,193,193,195,201,202,204,203,205,207,206 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *124 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fenceBroken, Model::RootNode + C: "OO",5209292721415742091,0 + + ;Geometry::, Model::Mesh fenceBroken + C: "OO",4857200058106777333,5209292721415742091 + + ;Material::wood, Model::Mesh fenceBroken + C: "OO",7178,5209292721415742091 + + ;Material::_defaultMat, Model::Mesh fenceBroken + C: "OO",7176,5209292721415742091 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceBroken.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceBroken.fbx.import new file mode 100644 index 0000000..eca6f2e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceBroken.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dx13fr23x3cr" +path="res://.godot/imported/fenceBroken.fbx-a7ba7462c56bc33a76606fa21756adcc.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceBroken.fbx" +dest_files=["res://.godot/imported/fenceBroken.fbx-a7ba7462c56bc33a76606fa21756adcc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceCurved.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceCurved.fbx new file mode 100644 index 0000000..efbe25e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceCurved.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 116 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fenceCurved.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fenceCurved.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5217703809195673377, "Model::fenceCurved", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5303988437738799408, "Geometry::", "Mesh" { + Vertices: *1374 { + a: 4.4375,1.5,4.25,4.4375,1.5,8.301981E-14,4.8125,1.5,4.25,4.8125,1.5,8.301981E-14,4.771328,1.5,-0.6281573,4.648518,1.5,-1.245567,4.44617,1.5,-1.841664,4.399537,1.5,-0.57921,4.167747,1.5,-2.40625,4.286296,1.5,-1.14851,4.099715,1.5,-1.698158,3.818013,1.5,-2.929665,3.842988,1.5,-2.21875,3.520505,1.5,-2.701379,3.650737,1.5,-3.120406,3.385571,1.5,-2.855241,3.120406,1.5,-3.650737,2.855241,1.5,-3.385571,2.929665,1.5,-3.818013,2.40625,1.5,-4.167747,2.701379,1.5,-3.520505,2.21875,1.5,-3.842988,1.841664,1.5,-4.44617,1.698158,1.5,-4.099715,1.245567,1.5,-4.648518,1.14851,1.5,-4.286296,0.6281573,1.5,-4.771328,0.57921,1.5,-4.399537,-5.775292E-14,1.5,-4.8125,-4.331469E-14,1.5,-4.4375,-4.25,1.5,-4.4375,-4.25,1.5,-4.8125,4.4375,3.05,7.941025E-14,4.4375,3.05,4.25,4.4375,2.3,2.310117E-13,4.4375,2.3,4.25,5,3.8,4.25,5,3.8,5,4.25,3.8,4.25,4.25,3.8,5,5,3.8,4.25,5,0,4.25,5,3.8,5,5,0,5,5,0,5,5,0,4.25,4.25,0,5,4.25,0,4.25,5,0,5,4.25,0,5,5,3.8,5,4.25,3.8,5,4.4375,0.75,7.941025E-14,4.4375,1.5,8.301981E-14,4.4375,0.75,4.25,4.4375,1.5,4.25,4.8125,2.3,4.25,4.8125,2.3,2.310117E-13,4.4375,2.3,4.25,4.4375,2.3,2.310117E-13,4.771328,2.3,-0.6281573,4.648518,2.3,-1.245567,4.44617,2.3,-1.841664,4.399537,2.3,-0.57921,4.167747,2.3,-2.40625,4.286296,2.3,-1.14851,4.099715,2.3,-1.698158,3.818013,2.3,-2.929665,3.842988,2.3,-2.21875,3.520505,2.3,-2.701379,3.650737,2.3,-3.120406,3.385571,2.3,-2.855241,4.4375,3.05,4.25,4.4375,3.05,7.941025E-14,4.8125,3.05,4.25,4.8125,3.05,7.941025E-14,4.771328,3.05,-0.6281573,4.648518,3.05,-1.245567,4.44617,3.05,-1.841664,4.399537,3.05,-0.57921,4.167747,3.05,-2.40625,4.286296,3.05,-1.14851,4.099715,3.05,-1.698158,3.818013,3.05,-2.929665,3.842988,3.05,-2.21875,3.520505,3.05,-2.701379,3.650737,3.05,-3.120406,3.385571,3.05,-2.855241,4.8125,0.75,4.25,4.8125,0.75,7.941025E-14,4.4375,0.75,4.25,4.4375,0.75,7.941025E-14,4.771328,0.75,-0.6281573,4.648518,0.75,-1.245567,4.44617,0.75,-1.841664,4.399537,0.75,-0.57921,4.167747,0.75,-2.40625,4.286296,0.75,-1.14851,4.099715,0.75,-1.698158,3.818013,0.75,-2.929665,3.842988,0.75,-2.21875,3.520505,0.75,-2.701379,3.650737,0.75,-3.120406,3.385571,0.75,-2.855241,4.8125,3.05,7.941025E-14,4.8125,2.3,2.310117E-13,4.8125,3.05,4.25,4.8125,2.3,4.25,4.25,0,4.25,4.25,3.8,4.25,4.25,0,5,4.25,3.8,5,4.8125,0.75,7.941025E-14,4.8125,0.75,4.25,4.8125,1.5,8.301981E-14,4.8125,1.5,4.25,3.270369,5.803884E-17,-2.740039,2.740039,5.803884E-17,-3.270369,3.270369,3.8,-2.740039,2.740039,3.8,-3.270369,3.270369,5.803884E-17,-3.800699,3.800699,5.803884E-17,-3.270369,3.270369,3.8,-3.800699,3.800699,3.8,-3.270369,3.800699,3.8,-3.270369,3.270369,3.8,-2.740039,3.270369,3.8,-3.800699,2.740039,3.8,-3.270369,3.120406,0.75,-3.650737,3.120406,1.5,-3.650737,2.929665,0.75,-3.818013,2.929665,1.5,-3.818013,-4.25,0.75,-4.8125,-4.25,0.75,-4.4375,-5.775292E-14,0.75,-4.8125,-4.331469E-14,0.75,-4.4375,0.57921,0.75,-4.399537,0.6281573,0.75,-4.771328,1.14851,0.75,-4.286296,1.245567,0.75,-4.648518,1.698158,0.75,-4.099715,1.841664,0.75,-4.44617,2.21875,0.75,-3.842988,2.40625,0.75,-4.167747,2.701379,0.75,-3.520505,2.855241,0.75,-3.385571,2.929665,0.75,-3.818013,3.120406,0.75,-3.650737,-5.775292E-14,2.3,-4.8125,0.6281573,2.3,-4.771328,-5.775292E-14,3.05,-4.8125,0.6281573,3.05,-4.771328,4.648518,1.5,-1.245567,4.648518,0.75,-1.245567,4.771328,1.5,-0.6281573,4.771328,0.75,-0.6281573,1.245567,2.3,-4.648518,1.841664,2.3,-4.44617,1.245567,3.05,-4.648518,1.841664,3.05,-4.44617,2.40625,2.3,-4.167747,2.929665,2.3,-3.818013,2.40625,3.05,-4.167747,2.929665,3.05,-3.818013,4.44617,3.05,-1.841664,4.44617,2.3,-1.841664,4.648518,3.05,-1.245567,4.648518,2.3,-1.245567,0.57921,0.75,-4.399537,-4.331469E-14,0.75,-4.4375,0.57921,1.5,-4.399537,-4.331469E-14,1.5,-4.4375,1.245567,0.75,-4.648518,1.841664,0.75,-4.44617,1.245567,1.5,-4.648518,1.841664,1.5,-4.44617,2.855241,2.3,-3.385571,2.701379,2.3,-3.520505,2.855241,3.05,-3.385571,2.701379,3.05,-3.520505,2.21875,2.3,-3.842988,1.698158,2.3,-4.099715,2.21875,3.05,-3.842988,1.698158,3.05,-4.099715,4.399537,0.75,-0.57921,4.399537,1.5,-0.57921,4.4375,0.75,7.941025E-14,4.4375,1.5,8.301981E-14,0.6281573,0.75,-4.771328,1.245567,0.75,-4.648518,0.6281573,1.5,-4.771328,1.245567,1.5,-4.648518,2.40625,0.75,-4.167747,2.929665,0.75,-3.818013,2.40625,1.5,-4.167747,2.929665,1.5,-3.818013,4.771328,1.5,-0.6281573,4.771328,0.75,-0.6281573,4.8125,1.5,8.301981E-14,4.8125,0.75,7.941025E-14,3.120406,3.05,-3.650737,2.855241,3.05,-3.385571,2.929665,3.05,-3.818013,2.40625,3.05,-4.167747,2.701379,3.05,-3.520505,2.21875,3.05,-3.842988,1.841664,3.05,-4.44617,1.698158,3.05,-4.099715,1.245567,3.05,-4.648518,1.14851,3.05,-4.286296,0.6281573,3.05,-4.771328,0.57921,3.05,-4.399537,-5.775292E-14,3.05,-4.8125,-4.331469E-14,3.05,-4.4375,-4.25,3.05,-4.4375,-4.25,3.05,-4.8125,1.841664,2.3,-4.44617,2.40625,2.3,-4.167747,1.841664,3.05,-4.44617,2.40625,3.05,-4.167747,4.286296,2.3,-1.14851,4.286296,3.05,-1.14851,4.399537,2.3,-0.57921,4.399537,3.05,-0.57921,3.842988,2.3,-2.21875,3.842988,3.05,-2.21875,4.099715,2.3,-1.698158,4.099715,3.05,-1.698158,4.167747,1.5,-2.40625,4.167747,0.75,-2.40625,4.44617,1.5,-1.841664,4.44617,0.75,-1.841664,4.648518,3.05,-1.245567,4.648518,2.3,-1.245567,4.771328,3.05,-0.6281573,4.771328,2.3,-0.6281573,3.818013,3.05,-2.929665,3.818013,2.3,-2.929665,4.167747,3.05,-2.40625,4.167747,2.3,-2.40625,3.842988,0.75,-2.21875,3.842988,1.5,-2.21875,4.099715,0.75,-1.698158,4.099715,1.5,-1.698158,3.818013,1.5,-2.929665,3.818013,0.75,-2.929665,4.167747,1.5,-2.40625,4.167747,0.75,-2.40625,-5.775292E-14,0.75,-4.8125,0.6281573,0.75,-4.771328,-5.775292E-14,1.5,-4.8125,0.6281573,1.5,-4.771328,4.099715,0.75,-1.698158,4.099715,1.5,-1.698158,4.286296,0.75,-1.14851,4.286296,1.5,-1.14851,-4.25,2.3,-4.8125,-4.25,2.3,-4.4375,-5.775292E-14,2.3,-4.8125,-4.331469E-14,2.3,-4.4375,0.57921,2.3,-4.399537,0.6281573,2.3,-4.771328,1.14851,2.3,-4.286296,1.245567,2.3,-4.648518,1.698158,2.3,-4.099715,1.841664,2.3,-4.44617,2.21875,2.3,-3.842988,2.40625,2.3,-4.167747,2.701379,2.3,-3.520505,2.855241,2.3,-3.385571,2.929665,2.3,-3.818013,3.120406,2.3,-3.650737,4.099715,2.3,-1.698158,4.099715,3.05,-1.698158,4.286296,2.3,-1.14851,4.286296,3.05,-1.14851,-5.775292E-14,2.3,-4.8125,-5.775292E-14,3.05,-4.8125,-4.25,2.3,-4.8125,-4.25,3.05,-4.8125,1.841664,0.75,-4.44617,2.40625,0.75,-4.167747,1.841664,1.5,-4.44617,2.40625,1.5,-4.167747,2.21875,0.75,-3.842988,1.698158,0.75,-4.099715,2.21875,1.5,-3.842988,1.698158,1.5,-4.099715,2.701379,0.75,-3.520505,2.21875,0.75,-3.842988,2.701379,1.5,-3.520505,2.21875,1.5,-3.842988,4.771328,3.05,-0.6281573,4.771328,2.3,-0.6281573,4.8125,3.05,7.941025E-14,4.8125,2.3,2.310117E-13,1.698158,0.75,-4.099715,1.14851,0.75,-4.286296,1.698158,1.5,-4.099715,1.14851,1.5,-4.286296,3.520505,2.3,-2.701379,3.520505,3.05,-2.701379,3.842988,2.3,-2.21875,3.842988,3.05,-2.21875,2.701379,2.3,-3.520505,2.21875,2.3,-3.842988,2.701379,3.05,-3.520505,2.21875,3.05,-3.842988,0.6281573,2.3,-4.771328,1.245567,2.3,-4.648518,0.6281573,3.05,-4.771328,1.245567,3.05,-4.648518,-5,0,-5,-5,3.8,-5,-5,0,-4.25,-5,3.8,-4.25,3.520505,0.75,-2.701379,3.520505,1.5,-2.701379,3.842988,0.75,-2.21875,3.842988,1.5,-2.21875,0.57921,2.3,-4.399537,-4.331469E-14,2.3,-4.4375,0.57921,3.05,-4.399537,-4.331469E-14,3.05,-4.4375,3.650737,2.3,-3.120406,3.818013,2.3,-2.929665,3.650737,3.05,-3.120406,3.818013,3.05,-2.929665,-5,0,-5,-4.25,0,-5,-5,3.8,-5,-4.25,3.8,-5,4.399537,2.3,-0.57921,4.399537,3.05,-0.57921,4.4375,2.3,2.310117E-13,4.4375,3.05,7.941025E-14,-4.25,0,-4.25,-5,0,-4.25,-4.25,3.8,-4.25,-5,3.8,-4.25,4.286296,0.75,-1.14851,4.286296,1.5,-1.14851,4.399537,0.75,-0.57921,4.399537,1.5,-0.57921,-4.25,3.8,-4.25,-5,3.8,-4.25,-4.25,3.8,-5,-5,3.8,-5,4.167747,3.05,-2.40625,4.167747,2.3,-2.40625,4.44617,3.05,-1.841664,4.44617,2.3,-1.841664,-4.25,0,-4.25,-4.25,0,-5,-5,0,-4.25,-5,0,-5,-4.331469E-14,2.3,-4.4375,-4.25,2.3,-4.4375,-4.331469E-14,3.05,-4.4375,-4.25,3.05,-4.4375,1.14851,0.75,-4.286296,0.57921,0.75,-4.399537,1.14851,1.5,-4.286296,0.57921,1.5,-4.399537,1.14851,2.3,-4.286296,0.57921,2.3,-4.399537,1.14851,3.05,-4.286296,0.57921,3.05,-4.399537,1.698158,2.3,-4.099715,1.14851,2.3,-4.286296,1.698158,3.05,-4.099715,1.14851,3.05,-4.286296,4.44617,1.5,-1.841664,4.44617,0.75,-1.841664,4.648518,1.5,-1.245567,4.648518,0.75,-1.245567,2.855241,0.75,-3.385571,2.701379,0.75,-3.520505,2.855241,1.5,-3.385571,2.701379,1.5,-3.520505,3.385571,2.3,-2.855241,3.385571,3.05,-2.855241,3.520505,2.3,-2.701379,3.520505,3.05,-2.701379,-4.331469E-14,0.75,-4.4375,-4.25,0.75,-4.4375,-4.331469E-14,1.5,-4.4375,-4.25,1.5,-4.4375,-5.775292E-14,0.75,-4.8125,-5.775292E-14,1.5,-4.8125,-4.25,0.75,-4.8125,-4.25,1.5,-4.8125,3.385571,0.75,-2.855241,3.385571,1.5,-2.855241,3.520505,0.75,-2.701379,3.520505,1.5,-2.701379,3.650737,1.5,-3.120406,3.650737,0.75,-3.120406,3.818013,1.5,-2.929665,3.818013,0.75,-2.929665,3.120406,2.3,-3.650737,3.120406,3.05,-3.650737,2.929665,2.3,-3.818013,2.929665,3.05,-3.818013,5,0,4.25,4.4375,0.75,4.25,4.25,0,4.25,4.25,3.8,4.25,4.8125,0.75,4.25,5,3.8,4.25,4.4375,1.5,4.25,4.8125,1.5,4.25,4.4375,2.3,4.25,4.8125,2.3,4.25,4.4375,3.05,4.25,4.8125,3.05,4.25,3.270369,3.8,-3.800699,3.120406,0.75,-3.650737,3.270369,5.803884E-17,-3.800699,2.740039,5.803884E-17,-3.270369,3.120406,3.05,-3.650737,2.740039,3.8,-3.270369,2.855241,0.75,-3.385571,3.120406,1.5,-3.650737,2.855241,1.5,-3.385571,2.855241,3.05,-3.385571,3.120406,2.3,-3.650737,2.855241,2.3,-3.385571,3.385571,3.05,-2.855241,3.270369,3.8,-2.740039,3.650737,3.05,-3.120406,3.385571,2.3,-2.855241,3.800699,3.8,-3.270369,3.800699,5.803884E-17,-3.270369,3.650737,2.3,-3.120406,3.385571,1.5,-2.855241,3.270369,5.803884E-17,-2.740039,3.650737,1.5,-3.120406,3.385571,0.75,-2.855241,3.650737,0.75,-3.120406,-4.25,0,-5,-4.25,3.05,-4.8125,-4.25,3.8,-5,-4.25,3.8,-4.25,-4.25,0.75,-4.8125,-4.25,0,-4.25,-4.25,3.05,-4.4375,-4.25,2.3,-4.8125,-4.25,2.3,-4.4375,-4.25,0.75,-4.4375,-4.25,1.5,-4.8125,-4.25,1.5,-4.4375,3.800699,5.803884E-17,-3.270369,3.270369,5.803884E-17,-3.800699,3.270369,5.803884E-17,-2.740039,2.740039,5.803884E-17,-3.270369,3.270369,5.803884E-17,-2.740039,3.270369,5.803884E-17,-3.800699 + } + PolygonVertexIndex: *924 { + a: 0,2,-2,3,1,-3,3,4,-2,5,1,-5,6,1,-6,7,1,-7,8,7,-7,9,7,-9,10,9,-9,11,10,-9,12,10,-12,13,12,-12,14,13,-12,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,20,-20,22,21,-20,23,21,-23,24,23,-23,25,23,-25,26,25,-25,27,25,-27,28,27,-27,29,27,-29,29,28,-31,31,30,-29,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,57,59,-61,61,60,-60,62,61,-60,63,62,-60,64,62,-64,65,64,-64,66,64,-66,67,64,-67,68,67,-67,69,67,-69,70,67,-70,71,70,-70,72,74,-74,75,73,-75,75,76,-74,77,73,-77,78,73,-78,79,73,-79,80,79,-79,81,79,-81,82,81,-81,83,82,-81,84,82,-84,85,84,-84,86,85,-84,87,85,-87,88,90,-90,91,89,-91,89,91,-93,93,92,-92,94,93,-92,95,94,-92,96,94,-96,97,96,-96,98,96,-98,99,96,-99,100,99,-99,101,99,-101,102,99,-102,103,102,-102,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,135,134,-137,134,137,-137,136,137,-139,137,139,-139,138,139,-141,139,141,-141,140,141,-143,141,143,-143,142,143,-145,144,143,-146,143,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,201,-204,205,204,-204,206,205,-204,207,205,-207,208,207,-207,209,207,-209,210,209,-209,211,209,-211,212,211,-211,213,211,-213,213,212,-215,215,214,-213,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,259,258,-261,258,261,-261,260,261,-263,261,263,-263,262,263,-265,263,265,-265,264,265,-267,265,267,-267,266,267,-269,268,267,-270,267,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,405,408,-405,409,404,-409,410,405,-408,411,409,-409,411,410,-413,412,410,-408,412,413,-412,413,409,-412,414,412,-408,415,409,-414,415,414,-408,407,409,-416,416,418,-418,419,417,-419,417,420,-417,421,416,-421,422,417,-420,423,420,-418,424,422,-420,425,421,-421,419,421,-426,426,420,-424,423,424,-427,425,427,-420,427,426,-425,427,424,-420,428,430,-430,431,428,-430,429,430,-433,433,432,-431,434,433,-431,435,431,-430,429,436,-436,435,437,-432,434,431,-438,435,436,-439,437,439,-435,434,439,-434,438,436,-440,436,433,-440,440,442,-442,443,441,-443,441,444,-441,445,440,-445,446,441,-444,447,444,-442,448,446,-444,449,445,-445,443,445,-450,450,444,-448,447,448,-451,449,451,-444,451,450,-449,451,448,-444,452,454,-454,455,457,-457 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2772 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9994646,0,0.03271909,-0.9994646,0,0.03271909,-1,0,0,-1,0,0,-1,0,0,-0.9994646,0,0.03271909,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9994646,0,0.03271909,-1,0,0,-0.9994646,0,0.03271909,-1,0,0,-0.9994646,0,0.03271909,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9994646,0,-0.03271909,1,0,0,0.9994646,0,-0.03271909,1,0,0,0.9994646,0,-0.03271909,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9994646,0,-0.03271909,0.9994646,0,-0.03271909,1,0,0,1,0,0,1,0,0,0.9994646,0,-0.03271909,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6593459,0,-0.7518399,0.6087614,0,-0.7933533,0.6593459,0,-0.7518399,0.6087614,0,-0.7933533,0.6593459,0,-0.7518399,0.6087614,0,-0.7933533,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.03271909,0,-0.9994646,0.03271909,0,-0.9994646,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.03271909,0,-0.9994646,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.1305262,0,0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,-0.6593459,0,0.7518399,-0.6593459,0,0.7518399,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6593459,0,0.7518399,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.03271909,0,-0.9994646,0.03271909,0,-0.9994646,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.03271909,0,-0.9994646,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,0.03271909,0,-0.9994646,0,0,-1,0.03271909,0,-0.9994646,0,0,-1,0.03271909,0,-0.9994646,0,0,-1,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.1305262,0,0.9914449,0.7518399,0,-0.6593459,0.7518399,0,-0.6593459,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7518399,0,-0.6593459,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,0,0,1,0,0,1,0,0,1,-0.03271909,0,0.9994646,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,-0.6593459,0,0.7518399,-0.6593459,0,0.7518399,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6593459,0,0.7518399,-0.7518399,0,0.6593459,-0.7933533,0,0.6087614,-0.7518399,0,0.6593459,-0.7933533,0,0.6087614,-0.7518399,0,0.6593459,-0.7933533,0,0.6087614,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,0,0,1,0,0,1,0,0,1,-0.03271909,0,0.9994646,0.03271909,0,-0.9994646,0,0,-1,0.03271909,0,-0.9994646,0,0,-1,0.03271909,0,-0.9994646,0,0,-1,-0.7518399,0,0.6593459,-0.7933533,0,0.6087614,-0.7518399,0,0.6593459,-0.7933533,0,0.6087614,-0.7518399,0,0.6593459,-0.7933533,0,0.6087614,0.7518399,0,-0.6593459,0.7933533,0,-0.6087614,0.7518399,0,-0.6593459,0.7933533,0,-0.6087614,0.7518399,0,-0.6593459,0.7933533,0,-0.6087614,0.6593459,0,-0.7518399,0.6087614,0,-0.7933533,0.6593459,0,-0.7518399,0.6087614,0,-0.7933533,0.6593459,0,-0.7518399,0.6087614,0,-0.7933533,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *916 { + a: -17.47047,16.73228,-17.47047,7.851497E-13,-18.94685,16.73228,-18.94685,7.851497E-13,-18.78476,-2.47306,-18.30125,-4.903806,-17.50461,-7.250646,-17.32101,-2.280354,-16.40845,-9.473425,-16.87518,-4.521691,-16.14061,-6.68566,-15.03155,-11.53411,-15.12987,-8.735236,-13.86026,-10.63535,-14.37298,-12.28506,-13.32902,-11.24111,-12.28506,-14.37298,-11.24111,-13.32902,-11.53411,-15.03155,-9.473425,-16.40845,-10.63535,-13.86026,-8.735236,-15.12987,-7.250646,-17.50461,-6.68566,-16.14061,-4.903806,-18.30125,-4.521691,-16.87518,-2.47306,-18.78476,-2.280354,-17.32101,2.273737E-13,-18.94685,1.705303E-13,-17.47047,16.73228,-17.47047,16.73228,-18.94685,3.126388E-13,12.00787,16.73228,12.00787,9.094947E-13,9.055119,16.73228,9.055119,-19.68504,16.73228,-19.68504,19.68504,-16.73228,16.73228,-16.73228,19.68504,-16.73228,14.96063,-16.73228,0,-19.68504,14.96063,-19.68504,0,19.68504,19.68504,19.68504,16.73228,16.73228,19.68504,16.73228,16.73228,19.68504,1.869849E-14,16.73228,1.869849E-14,19.68504,14.96063,16.73228,14.96063,3.126388E-13,2.952756,3.268497E-13,5.905512,16.73228,2.952756,16.73228,5.905512,18.94685,16.73228,18.94685,-7.545546E-13,17.47047,16.73228,17.47047,-7.545546E-13,18.78476,-2.47306,18.30125,-4.903806,17.50461,-7.250646,17.32101,-2.280354,16.40845,-9.473425,16.87518,-4.521691,16.14061,-6.68566,15.03155,-11.53411,15.12987,-8.735236,13.86026,-10.63535,14.37298,-12.28506,13.32902,-11.24111,-17.47047,16.73228,-17.47047,1.236867E-12,-18.94685,16.73228,-18.94685,1.236867E-12,-18.78476,-2.47306,-18.30125,-4.903806,-17.50461,-7.250646,-17.32101,-2.280354,-16.40845,-9.473425,-16.87518,-4.521691,-16.14061,-6.68566,-15.03155,-11.53411,-15.12987,-8.735236,-13.86026,-10.63535,-14.37298,-12.28506,-13.32902,-11.24111,18.94685,16.73228,18.94685,5.39908E-13,17.47047,16.73228,17.47047,5.39908E-13,18.78476,-2.47306,18.30125,-4.903806,17.50461,-7.250646,17.32101,-2.280354,16.40845,-9.473425,16.87518,-4.521691,16.14061,-6.68566,15.03155,-11.53411,15.12987,-8.735236,13.86026,-10.63535,14.37298,-12.28506,13.32902,-11.24111,-3.126388E-13,12.00787,-9.094947E-13,9.055119,-16.73228,12.00787,-16.73228,9.055119,16.73228,0,16.73228,14.96063,19.68504,0,19.68504,14.96063,-3.126388E-13,2.952756,-16.73228,2.952756,-3.268497E-13,5.905512,-16.73228,5.905512,1.476378,2.284994E-16,-1.476378,2.284994E-16,1.476378,14.96063,-1.476378,14.96063,1.476378,2.284994E-16,-1.476378,2.284994E-16,1.476378,14.96063,-1.476378,14.96063,-14.96338,-12.87547,-12.87547,-10.78755,-12.87547,-14.96338,-10.78755,-12.87547,0.2403625,2.952756,0.2403625,5.905512,1.239183,2.952756,1.239183,5.905512,-16.73228,-18.94685,-16.73228,-17.47047,-4.546429E-13,-18.94685,-3.977994E-13,-17.47047,2.280354,-17.32101,2.47306,-18.78476,4.521691,-16.87518,4.903806,-18.30125,6.68566,-16.14061,7.250646,-17.50461,8.735236,-15.12987,9.473425,-16.40845,10.63535,-13.86026,11.24111,-13.32902,11.53411,-15.03155,12.28506,-14.37298,1.239183,9.055119,-1.239183,9.055119,1.239183,12.00787,-1.239183,12.00787,1.239183,5.905512,1.239183,2.952756,-1.239183,5.905512,-1.239183,2.952756,1.239183,9.055119,-1.239183,9.055119,1.239183,12.00787,-1.239183,12.00787,1.239183,9.055119,-1.239183,9.055119,1.239183,12.00787,-1.239183,12.00787,1.239183,12.00787,1.239183,9.055119,-1.239183,12.00787,-1.239183,9.055119,1.142624,2.952756,-1.142624,2.952756,1.142624,5.905512,-1.142624,5.905512,1.239183,2.952756,-1.239183,2.952756,1.239183,5.905512,-1.239183,5.905512,-0.3369222,9.055119,-1.142624,9.055119,-0.3369222,12.00787,-1.142624,12.00787,1.142624,9.055119,-1.142624,9.055119,1.142624,12.00787,-1.142624,12.00787,-1.142624,2.952756,-1.142624,5.905512,1.142624,2.952756,1.142624,5.905512,1.239183,2.952756,-1.239183,2.952756,1.239183,5.905512,-1.239183,5.905512,1.239183,2.952756,-1.239183,2.952756,1.239183,5.905512,-1.239183,5.905512,1.239183,5.905512,1.239183,2.952756,-1.239183,5.905512,-1.239183,2.952756,-12.28506,-14.37298,-11.24111,-13.32902,-11.53411,-15.03155,-9.473425,-16.40845,-10.63535,-13.86026,-8.735236,-15.12987,-7.250646,-17.50461,-6.68566,-16.14061,-4.903806,-18.30125,-4.521691,-16.87518,-2.47306,-18.78476,-2.280354,-17.32101,2.273737E-13,-18.94685,1.705303E-13,-17.47047,16.73228,-17.47047,16.73228,-18.94685,1.239183,9.055119,-1.239183,9.055119,1.239183,12.00787,-1.239183,12.00787,-1.142624,9.055119,-1.142624,12.00787,1.142624,9.055119,1.142624,12.00787,-1.142624,9.055119,-1.142624,12.00787,1.142624,9.055119,1.142624,12.00787,1.239183,5.905512,1.239183,2.952756,-1.239183,5.905512,-1.239183,2.952756,1.239183,12.00787,1.239183,9.055119,-1.239183,12.00787,-1.239183,9.055119,1.239183,12.00787,1.239183,9.055119,-1.239183,12.00787,-1.239183,9.055119,-1.142624,2.952756,-1.142624,5.905512,1.142624,2.952756,1.142624,5.905512,1.239183,5.905512,1.239183,2.952756,-1.239183,5.905512,-1.239183,2.952756,1.239183,2.952756,-1.239183,2.952756,1.239183,5.905512,-1.239183,5.905512,-1.142624,2.952756,-1.142624,5.905512,1.142624,2.952756,1.142624,5.905512,-16.73228,-18.94685,-16.73228,-17.47047,-9.185646E-13,-18.94685,-8.617212E-13,-17.47047,2.280354,-17.32101,2.47306,-18.78476,4.521691,-16.87518,4.903806,-18.30125,6.68566,-16.14061,7.250646,-17.50461,8.735236,-15.12987,9.473425,-16.40845,10.63535,-13.86026,11.24111,-13.32902,11.53411,-15.03155,12.28506,-14.37298,-1.142624,9.055119,-1.142624,12.00787,1.142624,9.055119,1.142624,12.00787,-4.057343E-13,9.055119,-4.057343E-13,12.00787,16.73228,9.055119,16.73228,12.00787,1.239183,2.952756,-1.239183,2.952756,1.239183,5.905512,-1.239183,5.905512,1.142624,2.952756,-1.142624,2.952756,1.142624,5.905512,-1.142624,5.905512,1.142624,2.952756,-1.142624,2.952756,1.142624,5.905512,-1.142624,5.905512,1.239183,12.00787,1.239183,9.055119,-1.239183,12.00787,-1.239183,9.055119,1.142624,2.952756,-1.142624,2.952756,1.142624,5.905512,-1.142624,5.905512,-1.142624,9.055119,-1.142624,12.00787,1.142624,9.055119,1.142624,12.00787,1.142624,9.055119,-1.142624,9.055119,1.142624,12.00787,-1.142624,12.00787,1.239183,9.055119,-1.239183,9.055119,1.239183,12.00787,-1.239183,12.00787,-19.68504,0,-19.68504,14.96063,-16.73228,0,-16.73228,14.96063,-1.142624,2.952756,-1.142624,5.905512,1.142624,2.952756,1.142624,5.905512,1.142624,9.055119,-1.142624,9.055119,1.142624,12.00787,-1.142624,12.00787,-0.2403625,9.055119,-1.239183,9.055119,-0.2403625,12.00787,-1.239183,12.00787,19.68504,0,16.73228,0,19.68504,14.96063,16.73228,14.96063,-1.142624,9.055119,-1.142624,12.00787,1.142624,9.055119,1.142624,12.00787,-16.73228,0,-19.68504,0,-16.73228,14.96063,-19.68504,14.96063,-1.142624,2.952756,-1.142624,5.905512,1.142624,2.952756,1.142624,5.905512,16.73228,-16.73228,19.68504,-16.73228,16.73228,-19.68504,19.68504,-19.68504,1.239183,12.00787,1.239183,9.055119,-1.239183,12.00787,-1.239183,9.055119,-16.73228,-16.73228,-16.73228,-19.68504,-19.68504,-16.73228,-19.68504,-19.68504,4.099988E-13,9.055119,-16.73228,9.055119,4.099988E-13,12.00787,-16.73228,12.00787,1.142624,2.952756,-1.142624,2.952756,1.142624,5.905512,-1.142624,5.905512,1.142624,9.055119,-1.142624,9.055119,1.142624,12.00787,-1.142624,12.00787,1.142624,9.055119,-1.142624,9.055119,1.142624,12.00787,-1.142624,12.00787,1.239183,5.905512,1.239183,2.952756,-1.239183,5.905512,-1.239183,2.952756,-0.3369222,2.952756,-1.142624,2.952756,-0.3369222,5.905512,-1.142624,5.905512,0.3369222,9.055119,0.3369222,12.00787,1.142624,9.055119,1.142624,12.00787,4.099988E-13,2.952756,-16.73228,2.952756,4.099988E-13,5.905512,-16.73228,5.905512,-4.057343E-13,2.952756,-4.057343E-13,5.905512,16.73228,2.952756,16.73228,5.905512,0.3369222,2.952756,0.3369222,5.905512,1.142624,2.952756,1.142624,5.905512,-0.2403625,5.905512,-0.2403625,2.952756,-1.239183,5.905512,-1.239183,2.952756,0.2403625,9.055119,0.2403625,12.00787,1.239183,9.055119,1.239183,12.00787,-19.68504,0,-17.47047,2.952756,-16.73228,0,-16.73228,14.96063,-18.94685,2.952756,-19.68504,14.96063,-17.47047,5.905512,-18.94685,5.905512,-17.47047,9.055119,-18.94685,9.055119,-17.47047,12.00787,-18.94685,12.00787,-19.68504,14.96063,-18.85008,2.952756,-19.68504,2.284994E-16,-16.73228,2.284994E-16,-18.85008,12.00787,-16.73228,14.96063,-17.3737,2.952756,-18.85008,5.905512,-17.3737,5.905512,-17.3737,12.00787,-18.85008,9.055119,-17.3737,9.055119,17.3737,12.00787,16.73228,14.96063,18.85008,12.00787,17.3737,9.055119,19.68504,14.96063,19.68504,2.284994E-16,18.85008,9.055119,17.3737,5.905512,16.73228,2.284994E-16,18.85008,5.905512,17.3737,2.952756,18.85008,2.952756,19.68504,0,18.94685,12.00787,19.68504,14.96063,16.73228,14.96063,18.94685,2.952756,16.73228,0,17.47047,12.00787,18.94685,9.055119,17.47047,9.055119,17.47047,2.952756,18.94685,5.905512,17.47047,5.905512,17.3737,5.905512,17.3737,9.055119,18.85008,5.905512,17.3737,5.905512,17.3737,9.055119,18.85008,5.905512 + } + UVIndex: *924 { + a: 0,2,1,3,1,2,3,4,1,5,1,4,6,1,5,7,1,6,8,7,6,9,7,8,10,9,8,11,10,8,12,10,11,13,12,11,14,13,11,15,13,14,16,18,17,19,17,18,20,17,19,21,20,19,22,21,19,23,21,22,24,23,22,25,23,24,26,25,24,27,25,26,28,27,26,29,27,28,29,28,30,31,30,28,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,57,59,60,61,60,59,62,61,59,63,62,59,64,62,63,65,64,63,66,64,65,67,64,66,68,67,66,69,67,68,70,67,69,71,70,69,72,74,73,75,73,74,75,76,73,77,73,76,78,73,77,79,73,78,80,79,78,81,79,80,82,81,80,83,82,80,84,82,83,85,84,83,86,85,83,87,85,86,88,90,89,91,89,90,89,91,92,93,92,91,94,93,91,95,94,91,96,94,95,97,96,95,98,96,97,99,96,98,100,99,98,101,99,100,102,99,101,103,102,101,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,135,134,136,134,137,136,136,137,138,137,139,138,138,139,140,139,141,140,140,141,142,141,143,142,142,143,144,144,143,145,143,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,201,203,205,204,203,206,205,203,207,205,206,208,207,206,209,207,208,210,209,208,211,209,210,212,211,210,213,211,212,213,212,214,215,214,212,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,259,258,260,258,261,260,260,261,262,261,263,262,262,263,264,263,265,264,264,265,266,265,267,266,266,267,268,268,267,269,267,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,405,408,404,409,404,408,410,405,407,411,409,408,411,410,412,412,410,407,412,413,411,413,409,411,414,412,407,415,409,413,415,414,407,407,409,415,416,418,417,419,417,418,417,420,416,421,416,420,422,417,419,423,420,417,424,422,419,425,421,420,419,421,425,426,420,423,423,424,426,425,427,419,427,426,424,427,424,419,428,430,429,431,428,429,429,430,432,433,432,430,434,433,430,435,431,429,429,436,435,435,437,431,434,431,437,435,436,438,437,439,434,434,439,433,438,436,439,436,433,439,440,442,441,443,441,442,441,444,440,445,440,444,446,441,443,447,444,441,448,446,443,449,445,444,443,445,449,450,444,447,447,448,450,449,451,443,451,450,448,451,448,443,452,454,453,455,457,456 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *308 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fenceCurved, Model::RootNode + C: "OO",5217703809195673377,0 + + ;Geometry::, Model::Mesh fenceCurved + C: "OO",5303988437738799408,5217703809195673377 + + ;Material::wood, Model::Mesh fenceCurved + C: "OO",7178,5217703809195673377 + + ;Material::_defaultMat, Model::Mesh fenceCurved + C: "OO",7176,5217703809195673377 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceCurved.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceCurved.fbx.import new file mode 100644 index 0000000..ef49a5c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceCurved.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b5s4nnfvlnu74" +path="res://.godot/imported/fenceCurved.fbx-2483bf9eaff6f508d87bf18e82793693.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceCurved.fbx" +dest_files=["res://.godot/imported/fenceCurved.fbx-2483bf9eaff6f508d87bf18e82793693.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceGate.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceGate.fbx new file mode 100644 index 0000000..5a3e125 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceGate.fbx @@ -0,0 +1,436 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 205 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fenceGate.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fenceGate.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4750427804107076152, "Model::fenceGate", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4967909403507767534, "Geometry::", "Mesh" { + Vertices: *576 { + a: 5,-5.475981E-17,-2,4.25,-5.475981E-17,-2,5,3.8,-2,4.25,3.8,-2,5,3.8,4.25,5,0,4.25,5,3.8,5,5,0,5,5,-5.475981E-17,2.75,5,-5.475981E-17,2,4.25,-5.475981E-17,2.75,4.25,-5.475981E-17,2,4.25,-5.475981E-17,2,5,-5.475981E-17,2,4.25,3.8,2,5,3.8,2,5,3.8,-2.75,5,3.8,-2,4.25,3.8,-2.75,4.25,3.8,-2,4.8125,3.05,2.75,4.8125,3.05,4.25,4.4375,3.05,2.75,4.4375,3.05,4.25,4.8125,2.3,4.25,4.8125,2.3,2.75,4.4375,2.3,4.25,4.4375,2.3,2.75,5,-5.475981E-17,-2,5,-5.475981E-17,-2.75,4.25,-5.475981E-17,-2,4.25,-5.475981E-17,-2.75,5,0,-4.25,5,0,-5,4.25,0,-4.25,4.25,0,-5,4.25,-5.475981E-17,2,4.25,3.8,2,4.25,-5.475981E-17,2.75,4.25,3.8,2.75,5,3.8,-5,5,0,-5,5,3.8,-4.25,5,0,-4.25,5,3.8,-5,5,3.8,-4.25,4.25,3.8,-5,4.25,3.8,-4.25,5,3.8,4.25,5,3.8,5,4.25,3.8,4.25,4.25,3.8,5,5,3.8,2,5,-5.475981E-17,2,5,3.8,2.75,5,-5.475981E-17,2.75,4.25,0,-5,4.25,3.8,-5,4.25,0,-4.25,4.25,3.8,-4.25,5,3.8,-2.75,5,-5.475981E-17,-2.75,5,3.8,-2,5,-5.475981E-17,-2,5,0,5,4.25,0,5,5,3.8,5,4.25,3.8,5,5,0,5,5,0,4.25,4.25,0,5,4.25,0,4.25,5,3.8,2,5,3.8,2.75,4.25,3.8,2,4.25,3.8,2.75,4.25,-5.475981E-17,-2.75,4.25,3.8,-2.75,4.25,-5.475981E-17,-2,4.25,3.8,-2,4.4375,0.75,2.75,4.4375,1.5,2.75,4.4375,0.75,4.25,4.4375,1.5,4.25,4.4375,2.3,2.75,4.4375,3.05,2.75,4.4375,2.3,4.25,4.4375,3.05,4.25,4.8125,1.5,2.75,4.8125,1.5,4.25,4.4375,1.5,2.75,4.4375,1.5,4.25,4.25,0,-5,5,0,-5,4.25,3.8,-5,5,3.8,-5,4.25,0,4.25,4.25,3.8,4.25,4.25,0,5,4.25,3.8,5,4.8125,3.05,-4.25,4.8125,2.3,-4.25,4.8125,3.05,-2.75,4.8125,2.3,-2.75,4.4375,3.05,-4.25,4.4375,3.05,-2.75,4.4375,2.3,-4.25,4.4375,2.3,-2.75,4.8125,3.05,2.75,4.8125,2.3,2.75,4.8125,3.05,4.25,4.8125,2.3,4.25,4.8125,1.5,-4.25,4.8125,1.5,-2.75,4.4375,1.5,-4.25,4.4375,1.5,-2.75,4.8125,3.05,-4.25,4.8125,3.05,-2.75,4.4375,3.05,-4.25,4.4375,3.05,-2.75,4.8125,0.75,4.25,4.8125,0.75,2.75,4.4375,0.75,4.25,4.4375,0.75,2.75,4.8125,2.3,-2.75,4.8125,2.3,-4.25,4.4375,2.3,-2.75,4.4375,2.3,-4.25,4.4375,1.5,-4.25,4.4375,1.5,-2.75,4.4375,0.75,-4.25,4.4375,0.75,-2.75,4.8125,1.5,-4.25,4.8125,0.75,-4.25,4.8125,1.5,-2.75,4.8125,0.75,-2.75,4.8125,1.5,2.75,4.8125,0.75,2.75,4.8125,1.5,4.25,4.8125,0.75,4.25,4.8125,0.75,-2.75,4.8125,0.75,-4.25,4.4375,0.75,-2.75,4.4375,0.75,-4.25,5,0,4.25,4.4375,0.75,4.25,4.25,0,4.25,4.25,3.8,4.25,4.8125,0.75,4.25,5,3.8,4.25,4.4375,1.5,4.25,4.8125,1.5,4.25,4.4375,2.3,4.25,4.8125,2.3,4.25,4.4375,3.05,4.25,4.8125,3.05,4.25,4.8125,3.05,-4.25,5,3.8,-4.25,4.8125,2.3,-4.25,4.4375,3.05,-4.25,4.25,3.8,-4.25,4.4375,2.3,-4.25,4.4375,1.5,-4.25,4.8125,1.5,-4.25,4.4375,0.75,-4.25,4.25,0,-4.25,4.8125,0.75,-4.25,5,0,-4.25,4.4375,3.05,-2.75,4.25,3.8,-2.75,4.4375,2.3,-2.75,4.8125,3.05,-2.75,5,3.8,-2.75,4.8125,2.3,-2.75,4.8125,1.5,-2.75,4.4375,1.5,-2.75,4.8125,0.75,-2.75,5,-5.475981E-17,-2.75,4.4375,0.75,-2.75,4.25,-5.475981E-17,-2.75,4.25,-5.475981E-17,2.75,4.8125,0.75,2.75,5,-5.475981E-17,2.75,5,3.8,2.75,4.4375,0.75,2.75,4.25,3.8,2.75,4.8125,1.5,2.75,4.4375,1.5,2.75,4.8125,2.3,2.75,4.4375,2.3,2.75,4.8125,3.05,2.75,4.4375,3.05,2.75 + } + PolygonVertexIndex: *384 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,145,148,-145,149,144,-149,150,145,-148,151,149,-149,151,150,-153,152,150,-148,152,153,-152,153,149,-152,154,152,-148,155,149,-154,155,154,-148,147,149,-156,156,158,-158,159,156,-158,157,160,-160,159,160,-162,158,161,-163,161,160,-163,162,163,-159,158,163,-158,162,160,-165,160,165,-165,163,166,-158,166,164,-166,157,166,-168,165,167,-167,168,170,-170,171,168,-170,169,172,-172,171,172,-174,170,173,-175,173,172,-175,174,175,-171,170,175,-170,174,172,-177,172,177,-177,175,178,-170,178,176,-178,169,178,-180,177,179,-179,180,182,-182,183,181,-183,181,184,-181,185,180,-185,186,181,-184,187,185,-185,187,186,-189,188,186,-184,188,189,-188,189,185,-188,190,188,-184,191,185,-190,191,190,-184,183,185,-192 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1152 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *384 { + a: 19.68504,-2.155898E-16,16.73228,-2.155898E-16,19.68504,14.96063,16.73228,14.96063,-16.73228,14.96063,-16.73228,0,-19.68504,14.96063,-19.68504,0,19.68504,10.82677,19.68504,7.874016,16.73228,10.82677,16.73228,7.874016,-16.73228,-2.155898E-16,-19.68504,-2.155898E-16,-16.73228,14.96063,-19.68504,14.96063,-19.68504,-10.82677,-19.68504,-7.874016,-16.73228,-10.82677,-16.73228,-7.874016,-18.94685,10.82677,-18.94685,16.73228,-17.47047,10.82677,-17.47047,16.73228,18.94685,16.73228,18.94685,10.82677,17.47047,16.73228,17.47047,10.82677,19.68504,-7.874016,19.68504,-10.82677,16.73228,-7.874016,16.73228,-10.82677,19.68504,-16.73228,19.68504,-19.68504,16.73228,-16.73228,16.73228,-19.68504,7.874016,-2.155898E-16,7.874016,14.96063,10.82677,-2.155898E-16,10.82677,14.96063,19.68504,14.96063,19.68504,0,16.73228,14.96063,16.73228,0,-19.68504,-19.68504,-19.68504,-16.73228,-16.73228,-19.68504,-16.73228,-16.73228,-19.68504,16.73228,-19.68504,19.68504,-16.73228,16.73228,-16.73228,19.68504,-7.874016,14.96063,-7.874016,-2.155898E-16,-10.82677,14.96063,-10.82677,-2.155898E-16,-19.68504,0,-19.68504,14.96063,-16.73228,0,-16.73228,14.96063,10.82677,14.96063,10.82677,-2.155898E-16,7.874016,14.96063,7.874016,-2.155898E-16,19.68504,3.739699E-14,16.73228,3.739699E-14,19.68504,14.96063,16.73228,14.96063,19.68504,19.68504,19.68504,16.73228,16.73228,19.68504,16.73228,16.73228,-19.68504,7.874016,-19.68504,10.82677,-16.73228,7.874016,-16.73228,10.82677,-10.82677,-2.155898E-16,-10.82677,14.96063,-7.874016,-2.155898E-16,-7.874016,14.96063,10.82677,2.952756,10.82677,5.905512,16.73228,2.952756,16.73228,5.905512,10.82677,9.055119,10.82677,12.00787,16.73228,9.055119,16.73228,12.00787,-18.94685,10.82677,-18.94685,16.73228,-17.47047,10.82677,-17.47047,16.73228,-16.73228,0,-19.68504,0,-16.73228,14.96063,-19.68504,14.96063,16.73228,0,16.73228,14.96063,19.68504,0,19.68504,14.96063,16.73228,12.00787,16.73228,9.055119,10.82677,12.00787,10.82677,9.055119,-16.73228,12.00787,-10.82677,12.00787,-16.73228,9.055119,-10.82677,9.055119,-10.82677,12.00787,-10.82677,9.055119,-16.73228,12.00787,-16.73228,9.055119,-18.94685,-16.73228,-18.94685,-10.82677,-17.47047,-16.73228,-17.47047,-10.82677,-18.94685,-16.73228,-18.94685,-10.82677,-17.47047,-16.73228,-17.47047,-10.82677,18.94685,16.73228,18.94685,10.82677,17.47047,16.73228,17.47047,10.82677,18.94685,-10.82677,18.94685,-16.73228,17.47047,-10.82677,17.47047,-16.73228,-16.73228,5.905512,-10.82677,5.905512,-16.73228,2.952756,-10.82677,2.952756,16.73228,5.905512,16.73228,2.952756,10.82677,5.905512,10.82677,2.952756,-10.82677,5.905512,-10.82677,2.952756,-16.73228,5.905512,-16.73228,2.952756,18.94685,-10.82677,18.94685,-16.73228,17.47047,-10.82677,17.47047,-16.73228,-19.68504,0,-17.47047,2.952756,-16.73228,0,-16.73228,14.96063,-18.94685,2.952756,-19.68504,14.96063,-17.47047,5.905512,-18.94685,5.905512,-17.47047,9.055119,-18.94685,9.055119,-17.47047,12.00787,-18.94685,12.00787,18.94685,12.00787,19.68504,14.96063,18.94685,9.055119,17.47047,12.00787,16.73228,14.96063,17.47047,9.055119,17.47047,5.905512,18.94685,5.905512,17.47047,2.952756,16.73228,0,18.94685,2.952756,19.68504,0,-17.47047,12.00787,-16.73228,14.96063,-17.47047,9.055119,-18.94685,12.00787,-19.68504,14.96063,-18.94685,9.055119,-18.94685,5.905512,-17.47047,5.905512,-18.94685,2.952756,-19.68504,-2.155898E-16,-17.47047,2.952756,-16.73228,-2.155898E-16,16.73228,-2.155898E-16,18.94685,2.952756,19.68504,-2.155898E-16,19.68504,14.96063,17.47047,2.952756,16.73228,14.96063,18.94685,5.905512,17.47047,5.905512,18.94685,9.055119,17.47047,9.055119,18.94685,12.00787,17.47047,12.00787 + } + UVIndex: *384 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,145,148,144,149,144,148,150,145,147,151,149,148,151,150,152,152,150,147,152,153,151,153,149,151,154,152,147,155,149,153,155,154,147,147,149,155,156,158,157,159,156,157,157,160,159,159,160,161,158,161,162,161,160,162,162,163,158,158,163,157,162,160,164,160,165,164,163,166,157,166,164,165,157,166,167,165,167,166,168,170,169,171,168,169,169,172,171,171,172,173,170,173,174,173,172,174,174,175,170,170,175,169,174,172,176,172,177,176,175,178,169,178,176,177,169,178,179,177,179,178,180,182,181,183,181,182,181,184,180,185,180,184,186,181,183,187,185,184,187,186,188,188,186,183,188,189,187,189,185,187,190,188,183,191,185,189,191,190,183,183,185,191 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *128 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5211987905373609686, "Model::gate", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",4.625,1.852812,-2 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5311978538914843350, "Geometry::", "Mesh" { + Vertices: *1092 { + a: -0.1875,-0.9468666,0,0.1875,-0.9468666,0,-0.1875,-0.5531334,0,0.1875,-0.5531334,0,-0.1875,-0.9468666,0,-0.1875,-0.5531334,0,-0.1875,-0.9468666,0.1850733,-0.1875,-0.5531334,0.1850733,0.1875,-0.5531334,0,0.1875,-0.9468666,0,0.1875,-0.5531334,0.1850733,0.1875,-0.9468666,0.1850733,-0.1875,0.5531334,0,-0.1875,0.9468666,0,-0.1875,0.5531334,0.1850733,-0.1875,0.9468666,0.1850733,-0.1875,0.5531334,0,0.1875,0.5531334,0,-0.1875,0.9468666,0,0.1875,0.9468666,0,0.1875,0.9468666,0,0.1875,0.5531334,0,0.1875,0.9468666,0.1850733,0.1875,0.5531334,0.1850733,0.1875,0.9468666,0.5096871,0.1875,-1.132295,0.5096871,0.1875,0.9974252,0.5751351,0.1875,-1.1546,0.511149,0.1875,-1.160123,0.5122476,0.1875,-1.165455,0.5140578,0.1875,-1.170506,0.5165483,0.1875,-1.175188,0.5196769,0.1875,-1.179422,0.5233898,0.1875,-1.183135,0.5276237,0.1875,-1.186263,0.5323058,0.1875,-1.188754,0.5373563,0.1875,-1.190564,0.5426886,0.1875,-1.191663,0.5482116,0.1875,-1.193125,0.5705162,0.1875,-0.6906849,1.012127,0.1875,-1.193125,3.429484,0.1875,1.152478,0.8348874,0.1875,0.6731297,1.012127,0.1875,-0.6906849,2,0.1875,1.275433,1.111283,0.1875,0.7056384,1.066587,0.1875,0.8041424,1.288017,0.1875,1.364535,1.400374,0.1875,0.875525,1.519618,0.1875,1.418511,1.69803,0.1875,0.9187666,1.758081,0.1875,-0.6906849,2.34853,0.1875,1.436589,2,0.1875,0.9332495,2,0.1875,0.9187666,2.241919,0.1875,1.418511,2.30197,0.1875,0.875525,2.480382,0.1875,1.364535,2.599626,0.1875,0.8041424,2.711983,0.1875,1.275433,2.888717,0.1875,0.7056384,2.933413,0.1875,1.152478,3.165112,0.1875,0.6731297,2.987873,0.1875,-0.6906849,2.987873,0.1875,0.9974252,3.424865,0.1875,0.9468666,3.490313,0.1875,-1.191663,3.451788,0.1875,-1.190564,3.457311,0.1875,-1.188754,3.462644,0.1875,-1.186263,3.467694,0.1875,-1.183135,3.472376,0.1875,-1.179422,3.47661,0.1875,-1.175188,3.480323,0.1875,-1.170506,3.483452,0.1875,-1.165455,3.485942,0.1875,-1.160123,3.487752,0.1875,-1.1546,3.488851,0.1875,-1.132295,3.490313,-0.1875,-1.132295,0.5096871,-0.1875,0.9468666,0.5096871,-0.1875,-1.1546,0.511149,-0.1875,0.9974252,0.5751351,-0.1875,-1.160123,0.5122476,-0.1875,-1.165455,0.5140578,-0.1875,-1.170506,0.5165483,-0.1875,-1.175188,0.5196769,-0.1875,-1.179422,0.5233898,-0.1875,-1.183135,0.5276237,-0.1875,-1.186263,0.5323058,-0.1875,-1.188754,0.5373563,-0.1875,-1.190564,0.5426886,-0.1875,-1.191663,0.5482116,-0.1875,-1.193125,0.5705162,-0.1875,-0.6906849,1.012127,-0.1875,1.152478,0.8348874,-0.1875,-1.193125,3.429484,-0.1875,0.6731297,1.012127,-0.1875,-0.6906849,2.987873,-0.1875,1.275433,1.111283,-0.1875,0.7056384,1.066587,-0.1875,0.8041424,1.288017,-0.1875,1.364535,1.400374,-0.1875,0.875525,1.519618,-0.1875,1.418511,1.69803,-0.1875,0.9187666,1.758081,-0.1875,1.436589,2,-0.1875,0.9332495,2,-0.1875,0.9187666,2.241919,-0.1875,1.418511,2.30197,-0.1875,0.875525,2.480382,-0.1875,1.364535,2.599626,-0.1875,0.8041424,2.711983,-0.1875,1.275433,2.888717,-0.1875,0.7056384,2.933413,-0.1875,1.152478,3.165112,-0.1875,0.6731297,2.987873,-0.1875,0.9974252,3.424865,-0.1875,0.9468666,3.490313,-0.1875,-1.191663,3.451788,-0.1875,-1.190564,3.457311,-0.1875,-1.188754,3.462644,-0.1875,-1.186263,3.467694,-0.1875,-1.183135,3.472376,-0.1875,-1.179422,3.47661,-0.1875,-1.175188,3.480323,-0.1875,-1.170506,3.483452,-0.1875,-1.165455,3.485942,-0.1875,-1.160123,3.487752,-0.1875,-1.1546,3.488851,-0.1875,-1.132295,3.490313,0.1875,-1.702812,3.446169,0.1875,-1.702812,0.5538308,-0.1875,-1.702812,3.446169,-0.1875,-1.702812,0.5538308,0.1875,1.925464,2.362887,0.1875,1.8606,2.720591,-0.1875,1.925464,2.362887,-0.1875,1.8606,2.720591,0.1875,1.419431,0.2876929,0.1875,1.605763,0.5998458,-0.1875,1.419431,0.2876929,-0.1875,1.605763,0.5998458,0.1875,1.753523,0.9319996,0.1875,1.8606,1.279409,-0.1875,1.753523,0.9319996,-0.1875,1.8606,1.279409,-0.1875,-1.148981,0,0.1875,-1.148981,0,0.1875,1.8606,2.720591,0.1875,1.753523,3.068,-0.1875,1.8606,2.720591,-0.1875,1.753523,3.068,0.1875,1.753523,3.068,0.1875,1.605763,3.400154,-0.1875,1.753523,3.068,-0.1875,1.605763,3.400154,0.1875,1.197188,0,0.1875,1.419431,0.2876929,-0.1875,1.197188,0,-0.1875,1.419431,0.2876929,-0.1875,-1.148981,0,-0.1875,-1.22127,0.004738099,-0.1875,-1.292323,0.01887133,-0.1875,-1.360923,0.04215786,-0.1875,-1.425896,0.07419926,-0.1875,-1.486132,0.1144473,-0.1875,-1.540598,0.1622133,-0.1875,-1.588364,0.21668,-0.1875,1.419431,0.2876929,-0.1875,-1.628612,0.2769154,-0.1875,-1.660654,0.341889,-0.1875,1.197188,0,-0.1875,-1.68394,0.4104889,-0.1875,1.605763,0.5998458,-0.1875,-1.698074,0.4815414,-0.1875,1.753523,0.9319996,-0.1875,1.8606,1.279409,-0.1875,1.925464,1.637113,-0.1875,1.947188,2,-0.1875,-1.702812,0.5538308,-0.1875,1.925464,2.362887,-0.1875,1.8606,2.720591,-0.1875,1.753523,3.068,-0.1875,1.605763,3.400154,-0.1875,1.419431,3.712307,-0.1875,-1.702812,3.446169,-0.1875,-1.698074,3.518459,-0.1875,-1.68394,3.589511,-0.1875,-1.660654,3.658111,-0.1875,-1.628612,3.723084,-0.1875,1.197188,4,-0.1875,-1.588364,3.78332,-0.1875,-1.540598,3.837787,-0.1875,-1.486132,3.885553,-0.1875,-1.425896,3.925801,-0.1875,-1.360923,3.957842,-0.1875,-1.292323,3.981129,-0.1875,-1.22127,3.995262,-0.1875,-1.148981,4,0.1875,-1.148981,4,-0.1875,-1.148981,4,0.1875,1.197188,4,-0.1875,1.197188,4,0.1875,1.8606,1.279409,0.1875,1.925464,1.637113,-0.1875,1.8606,1.279409,-0.1875,1.925464,1.637113,0.1875,1.947188,2,0.1875,1.925464,2.362887,-0.1875,1.947188,2,-0.1875,1.925464,2.362887,-0.1875,-1.292323,0.01887133,0.1875,-1.292323,0.01887133,-0.1875,-1.22127,0.004738099,0.1875,-1.22127,0.004738099,-0.1875,-1.540598,0.1622133,0.1875,-1.540598,0.1622133,-0.1875,-1.486132,0.1144473,0.1875,-1.486132,0.1144473,0.1875,-1.486132,3.885553,-0.1875,-1.486132,3.885553,0.1875,-1.425896,3.925801,-0.1875,-1.425896,3.925801,0.1875,1.197188,0,0.1875,1.419431,0.2876929,0.1875,-1.588364,0.21668,0.1875,-1.540598,0.1622133,0.1875,-1.628612,0.2769154,0.1875,-1.486132,0.1144473,0.1875,-1.425896,0.07419926,0.1875,-1.360923,0.04215786,0.1875,-1.292323,0.01887133,0.1875,-1.22127,0.004738099,0.1875,-1.148981,0,0.1875,-1.660654,0.341889,0.1875,-1.68394,0.4104889,0.1875,1.605763,0.5998458,0.1875,-1.698074,0.4815414,0.1875,1.753523,0.9319996,0.1875,1.8606,1.279409,0.1875,1.925464,1.637113,0.1875,1.947188,2,0.1875,-1.702812,0.5538308,0.1875,1.925464,2.362887,0.1875,1.8606,2.720591,0.1875,1.753523,3.068,0.1875,1.605763,3.400154,0.1875,1.419431,3.712307,0.1875,-1.702812,3.446169,0.1875,-1.698074,3.518459,0.1875,-1.68394,3.589511,0.1875,-1.660654,3.658111,0.1875,-1.628612,3.723084,0.1875,1.197188,4,0.1875,-1.588364,3.78332,0.1875,-1.540598,3.837787,0.1875,-1.486132,3.885553,0.1875,-1.425896,3.925801,0.1875,-1.360923,3.957842,0.1875,-1.292323,3.981129,0.1875,-1.22127,3.995262,0.1875,-1.148981,4,0.1875,-1.292323,3.981129,-0.1875,-1.292323,3.981129,0.1875,-1.22127,3.995262,-0.1875,-1.22127,3.995262,0.1875,1.419431,3.712307,0.1875,1.197188,4,-0.1875,1.419431,3.712307,-0.1875,1.197188,4,0.1875,1.925464,1.637113,0.1875,1.947188,2,-0.1875,1.925464,1.637113,-0.1875,1.947188,2,0.1875,-1.660654,0.341889,0.1875,-1.628612,0.2769154,-0.1875,-1.660654,0.341889,-0.1875,-1.628612,0.2769154,-0.1875,-1.360923,0.04215786,0.1875,-1.360923,0.04215786,-0.1875,-1.292323,0.01887133,0.1875,-1.292323,0.01887133,0.1875,-1.68394,3.589511,0.1875,-1.698074,3.518459,-0.1875,-1.68394,3.589511,-0.1875,-1.698074,3.518459,0.1875,-1.660654,3.658111,0.1875,-1.68394,3.589511,-0.1875,-1.660654,3.658111,-0.1875,-1.68394,3.589511,0.1875,-1.628612,3.723084,0.1875,-1.660654,3.658111,-0.1875,-1.628612,3.723084,-0.1875,-1.660654,3.658111,-0.1875,-1.486132,0.1144473,0.1875,-1.486132,0.1144473,-0.1875,-1.425896,0.07419926,0.1875,-1.425896,0.07419926,0.1875,-1.588364,0.21668,0.1875,-1.540598,0.1622133,-0.1875,-1.588364,0.21668,-0.1875,-1.540598,0.1622133,0.1875,-1.588364,3.78332,0.1875,-1.628612,3.723084,-0.1875,-1.588364,3.78332,-0.1875,-1.628612,3.723084,0.1875,-1.360923,3.957842,-0.1875,-1.360923,3.957842,0.1875,-1.292323,3.981129,-0.1875,-1.292323,3.981129,-0.1875,-1.22127,0.004738099,0.1875,-1.22127,0.004738099,-0.1875,-1.148981,0,0.1875,-1.148981,0,0.1875,-1.702812,0.5538308,0.1875,-1.698074,0.4815414,-0.1875,-1.702812,0.5538308,-0.1875,-1.698074,0.4815414,0.1875,-1.540598,3.837787,-0.1875,-1.540598,3.837787,0.1875,-1.486132,3.885553,-0.1875,-1.486132,3.885553,0.1875,-1.698074,3.518459,0.1875,-1.702812,3.446169,-0.1875,-1.698074,3.518459,-0.1875,-1.702812,3.446169,-0.1875,1.197188,0,0.1875,1.197188,0,0.1875,-1.628612,0.2769154,0.1875,-1.588364,0.21668,-0.1875,-1.628612,0.2769154,-0.1875,-1.588364,0.21668,0.1875,-1.68394,0.4104889,0.1875,-1.660654,0.341889,-0.1875,-1.68394,0.4104889,-0.1875,-1.660654,0.341889,0.1875,1.605763,3.400154,0.1875,1.419431,3.712307,-0.1875,1.605763,3.400154,-0.1875,1.419431,3.712307,-0.1875,-1.425896,0.07419926,0.1875,-1.425896,0.07419926,-0.1875,-1.360923,0.04215786,0.1875,-1.360923,0.04215786,0.1875,-1.425896,3.925801,-0.1875,-1.425896,3.925801,0.1875,-1.360923,3.957842,-0.1875,-1.360923,3.957842,0.1875,-1.540598,3.837787,0.1875,-1.588364,3.78332,-0.1875,-1.540598,3.837787,-0.1875,-1.588364,3.78332,0.1875,1.605763,0.5998458,0.1875,1.753523,0.9319996,-0.1875,1.605763,0.5998458,-0.1875,1.753523,0.9319996,0.1875,-1.22127,3.995262,-0.1875,-1.22127,3.995262,0.1875,-1.148981,4,-0.1875,-1.148981,4,0.1875,-1.698074,0.4815414,0.1875,-1.68394,0.4104889,-0.1875,-1.698074,0.4815414,-0.1875,-1.68394,0.4104889 + } + PolygonVertexIndex: *1188 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,27,-27,29,28,-27,30,29,-27,31,30,-27,32,31,-27,33,32,-27,34,33,-27,35,34,-27,36,35,-27,37,36,-27,38,37,-27,39,38,-27,40,38,-40,41,39,-27,42,39,-42,43,40,-40,41,44,-43,45,42,-45,46,45,-45,47,46,-45,48,46,-48,49,48,-48,50,48,-50,51,40,-44,52,50,-50,53,50,-53,54,53,-53,55,54,-53,56,54,-56,57,56,-56,58,56,-58,59,58,-58,60,58,-60,61,60,-60,62,60,-62,63,62,-62,61,40,-64,63,40,-52,64,40,-62,65,40,-65,66,40,-66,67,66,-66,68,67,-66,69,68,-66,70,69,-66,71,70,-66,72,71,-66,73,72,-66,74,73,-66,75,74,-66,76,75,-66,77,76,-66,78,80,-80,81,79,-81,82,81,-81,83,81,-83,84,81,-84,85,81,-85,86,81,-86,87,81,-87,88,81,-88,89,81,-89,90,81,-90,91,81,-91,92,81,-92,93,81,-93,94,81,-94,95,93,-93,93,96,-95,97,93,-96,98,94,-97,99,98,-97,100,98,-100,101,98,-101,102,101,-101,103,101,-103,104,103,-103,105,103,-105,106,105,-105,107,105,-107,108,105,-108,109,108,-108,110,108,-110,111,110,-110,112,110,-112,113,112,-112,114,112,-114,115,114,-114,114,115,-96,115,97,-96,116,114,-96,117,116,-96,118,117,-96,119,117,-119,120,117,-120,121,117,-121,122,117,-122,123,117,-123,124,117,-124,125,117,-125,126,117,-126,127,117,-127,128,117,-128,129,117,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,42,45,-40,43,39,-46,46,43,-46,48,43,-47,50,43,-49,53,43,-51,54,43,-54,51,43,-55,56,51,-55,63,51,-57,58,63,-57,60,63,-59,62,63,-61,93,97,-97,99,96,-98,100,99,-98,102,100,-98,104,102,-98,106,104,-98,107,106,-98,109,107,-98,111,109,-98,113,111,-98,115,113,-98,146,0,-148,1,147,-1,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,2,16,-4,17,3,-17,160,161,-5,6,4,-162,162,6,-162,163,6,-163,164,6,-164,165,6,-165,166,6,-166,167,6,-167,7,6,-168,14,7,-168,14,12,-8,5,7,-13,15,14,-168,167,168,-16,169,168,-168,170,168,-170,168,171,-16,13,15,-172,79,168,-171,172,79,-171,173,168,-80,174,79,-173,81,173,-80,78,79,-175,94,173,-82,78,174,-81,175,173,-95,98,175,-95,176,175,-99,101,176,-99,177,176,-102,103,177,-102,178,177,-104,105,178,-104,179,80,-175,180,178,-106,108,180,-106,110,180,-109,181,180,-111,112,181,-111,182,181,-113,114,182,-113,183,182,-115,116,183,-115,82,80,-180,83,82,-180,84,83,-180,85,84,-180,86,85,-180,184,183,-117,87,86,-180,88,87,-180,89,88,-180,90,89,-180,91,90,-180,92,91,-180,185,92,-180,95,92,-186,118,95,-186,186,118,-186,119,118,-187,120,119,-187,121,120,-187,122,121,-187,123,122,-187,124,123,-187,125,124,-187,126,125,-187,127,126,-187,128,127,-187,129,128,-187,117,129,-187,186,184,-118,117,184,-117,187,184,-187,188,184,-188,189,184,-189,190,184,-190,191,190,-190,192,190,-192,193,190,-193,194,190,-194,195,190,-195,196,190,-196,197,190,-197,198,190,-198,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,224,-21,22,20,-225,23,22,-225,10,23,-225,10,8,-24,21,23,-9,11,10,-225,225,11,-225,225,226,-12,227,225,-225,226,228,-12,228,229,-12,229,230,-12,230,231,-12,231,232,-12,232,233,-12,9,11,-234,234,227,-225,24,234,-225,235,234,-25,236,24,-225,237,235,-25,26,24,-237,24,25,-238,41,26,-237,25,27,-238,238,41,-237,44,41,-239,239,44,-239,47,44,-240,240,47,-240,49,47,-241,241,49,-241,52,49,-242,242,237,-28,243,52,-242,55,52,-244,57,55,-244,244,57,-244,59,57,-245,245,59,-245,61,59,-246,246,61,-246,64,61,-247,247,64,-247,28,242,-28,29,242,-29,30,242,-30,31,242,-31,32,242,-32,65,64,-248,33,242,-33,34,242,-34,35,242,-35,36,242,-36,37,242,-37,38,242,-38,248,242,-39,40,248,-39,66,248,-41,249,248,-67,67,249,-67,68,249,-68,69,249,-69,70,249,-70,71,249,-71,72,249,-72,73,249,-73,74,249,-74,75,249,-75,76,249,-76,77,249,-77,249,77,-248,77,65,-248,250,249,-248,251,250,-248,252,251,-248,253,252,-248,254,252,-254,255,254,-254,256,255,-254,257,256,-254,258,257,-254,259,258,-254,260,259,-254,261,260,-254,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,18,326,-20,327,19,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3564 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9928576,0.1193054,0,0.9928576,0.1193054,0,0.9715325,0.2369065,0,0.9715325,0.2369065,0,0.9715325,0.2369065,0,0.9928576,0.1193054,0,0.8264908,-0.5629504,0,0.8264908,-0.5629504,0,0.8877506,-0.4603246,0,0.8877506,-0.4603246,0,0.8877506,-0.4603246,0,0.8264908,-0.5629504,0,0.9363292,-0.3511235,0,0.9363292,-0.3511235,0,0.9715325,-0.2369065,0,0.9715325,-0.2369065,0,0.9715325,-0.2369065,0,0.9363292,-0.3511235,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9715325,0.2369065,0,0.9715325,0.2369065,0,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.9715325,0.2369065,0,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.8877506,0.4603246,0,0.8877506,0.4603246,0,0.8877506,0.4603246,0,0.9363292,0.3511235,0,0.791372,-0.6113349,0,0.791372,-0.6113349,0,0.8264908,-0.5629504,0,0.8264908,-0.5629504,0,0.8264908,-0.5629504,0,0.791372,-0.6113349,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9715325,-0.2369065,0,0.9715325,-0.2369065,0,0.9928576,-0.1193054,0,0.9928576,-0.1193054,0,0.9928576,-0.1193054,0,0.9715325,-0.2369065,0,1,0,0,1,0,0,0.9928576,0.1193054,0,0.9928576,0.1193054,0,0.9928576,0.1193054,0,1,0,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,0.8264908,0.5629504,0,0.8264908,0.5629504,0,0.791372,0.6113349,0,0.791372,0.6113349,0,0.791372,0.6113349,0,0.8264908,0.5629504,0,0.9928576,-0.1193054,0,0.9928576,-0.1193054,0,1,0,0,1,0,0,1,0,0,0.9928576,-0.1193054,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.9238795,-0.3826834,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9659258,0.258819,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9238795,0.3826834,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.8660254,0.5,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7933533,-0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.7933533,0.6087614,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9978589,-0.06540313,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9978589,0.06540313,0,-0.9978589,0.06540313,0,-0.9978589,0.06540313,0,-0.9914449,0.1305262,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9659258,-0.258819,0,0.8877506,0.4603246,0,0.8877506,0.4603246,0,0.8264908,0.5629504,0,0.8264908,0.5629504,0,0.8264908,0.5629504,0,0.8877506,0.4603246,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7071068,0.7071068,0,0.8877506,-0.4603246,0,0.8877506,-0.4603246,0,0.9363292,-0.3511235,0,0.9363292,-0.3511235,0,0.9363292,-0.3511235,0,0.8877506,-0.4603246,0,-0.1305262,0.9914449,0,-0.06540313,0.9978589,0,-0.1305262,0.9914449,0,-0.06540313,0.9978589,0,-0.1305262,0.9914449,0,-0.06540313,0.9978589,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9914449,-0.1305262 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *728 { + a: 0.738189,-3.727821,-0.738189,-3.727821,0.738189,-2.177691,-0.738189,-2.177691,0,-3.727821,0,-2.177691,0.7286351,-3.727821,0.7286351,-2.177691,0,-2.177691,0,-3.727821,-0.7286351,-2.177691,-0.7286351,-3.727821,0,2.177691,0,3.727821,0.7286351,2.177691,0.7286351,3.727821,0.738189,2.177691,-0.738189,2.177691,0.738189,3.727821,-0.738189,3.727821,0,3.727821,0,2.177691,-0.7286351,3.727821,-0.7286351,2.177691,-2.006642,3.727821,-2.006642,-4.457856,-2.264312,3.926871,-2.012398,-4.545669,-2.016723,-4.567413,-2.023849,-4.588407,-2.033655,-4.608291,-2.045972,-4.626725,-2.06059,-4.643393,-2.077258,-4.658011,-2.095692,-4.670328,-2.115576,-4.680133,-2.136569,-4.68726,-2.158314,-4.691585,-2.246127,-4.69734,-3.984751,-2.719232,-13.5019,-4.69734,-3.286958,4.537315,-3.984751,2.650117,-7.874016,-2.719232,-4.37513,5.021392,-4.199161,2.778104,-5.070934,3.165915,-5.513283,5.372187,-5.982749,3.446949,-6.685158,5.584688,-6.921579,3.617192,-9.246182,-2.719232,-7.874016,5.655861,-7.874016,3.674211,-8.826452,3.617192,-9.062874,5.584688,-9.765283,3.446949,-10.23475,5.372187,-10.6771,3.165915,-11.3729,5.021392,-11.54887,2.778104,-12.46107,4.537315,-11.76328,2.650117,-11.76328,-2.719232,-13.48372,3.926871,-13.74139,3.727821,-13.58972,-4.691585,-13.61146,-4.68726,-13.63246,-4.680133,-13.65234,-4.670328,-13.67077,-4.658011,-13.68744,-4.643393,-13.70206,-4.626725,-13.71438,-4.608291,-13.72418,-4.588407,-13.73131,-4.567413,-13.73563,-4.545669,-13.74139,-4.457856,2.006642,-4.457856,2.006642,3.727821,2.012398,-4.545669,2.264312,3.926871,2.016723,-4.567413,2.023849,-4.588407,2.033655,-4.608291,2.045972,-4.626725,2.06059,-4.643393,2.077258,-4.658011,2.095692,-4.670328,2.115576,-4.680133,2.136569,-4.68726,2.158314,-4.691585,2.246127,-4.69734,3.984751,-2.719232,3.286958,4.537315,13.5019,-4.69734,3.984751,2.650117,11.76328,-2.719232,4.37513,5.021392,4.199161,2.778104,5.070934,3.165915,5.513283,5.372187,5.982749,3.446949,6.685158,5.584688,6.921579,3.617192,7.874016,5.655861,7.874016,3.674211,8.826452,3.617192,9.062874,5.584688,9.765283,3.446949,10.23475,5.372187,10.6771,3.165915,11.3729,5.021392,11.54887,2.778104,12.46107,4.537315,11.76328,2.650117,13.48372,3.926871,13.74139,3.727821,13.58972,-4.691585,13.61146,-4.68726,13.63246,-4.680133,13.65234,-4.670328,13.67077,-4.658011,13.68744,-4.643393,13.70206,-4.626725,13.71438,-4.608291,13.72418,-4.588407,13.73131,-4.567413,13.73563,-4.545669,13.74139,-4.457856,0.738189,13.5676,0.738189,2.180436,-0.738189,13.5676,-0.738189,2.180436,0.738189,-7.800869,0.738189,-9.232117,-0.738189,-7.800869,-0.738189,-9.232117,-0.738189,3.836864,-0.738189,5.268112,0.738189,3.836864,0.738189,5.268112,-0.738189,5.539921,-0.738189,6.971169,0.738189,5.539921,0.738189,6.971169,0.738189,-4.523547,-0.738189,-4.523547,0.738189,-8.07826,0.738189,-9.509508,-0.738189,-8.07826,-0.738189,-9.509508,0.738189,-8.230033,0.738189,-9.661281,-0.738189,-8.230033,-0.738189,-9.661281,-0.738189,2.881429,-0.738189,4.312676,0.738189,2.881429,0.738189,4.312676,0,-4.523547,0.01865393,-4.80815,0.07429656,-5.087885,0.1659758,-5.357963,0.2921231,-5.613765,0.4505799,-5.850912,0.638635,-6.065348,0.8530708,-6.253403,1.132649,5.588312,1.090218,-6.41186,1.34602,-6.538007,0,4.71334,1.616098,-6.629686,2.361598,6.321902,1.895832,-6.685329,3.66929,6.903634,5.037045,7.325195,6.445326,7.580565,7.874016,7.666096,2.180436,-6.703983,9.302706,7.580565,10.71099,7.325195,12.07874,6.903634,13.38643,6.321902,14.61538,5.588312,13.5676,-6.703983,13.8522,-6.685329,14.13193,-6.629686,14.40201,-6.538007,14.65781,-6.41186,15.74803,4.71334,14.89496,-6.253403,15.1094,-6.065348,15.29745,-5.850912,15.45591,-5.613765,15.58206,-5.357963,15.67373,-5.087885,15.72938,-4.80815,15.74803,-4.523547,0.738189,-4.523547,-0.738189,-4.523547,0.738189,4.71334,-0.738189,4.71334,-0.738189,6.263215,-0.738189,7.694462,0.738189,6.263215,0.738189,7.694462,0.738189,-7.401822,0.738189,-8.833069,-0.738189,-7.401822,-0.738189,-8.833069,0.738189,-5.004617,-0.738189,-5.004617,0.738189,-4.719402,-0.738189,-4.719402,0.738189,-4.981251,-0.738189,-4.981251,0.738189,-4.696036,-0.738189,-4.696036,0.738189,3.633953,-0.738189,3.633953,0.738189,3.919168,-0.738189,3.919168,0,4.71334,-1.132649,5.588312,-0.8530708,-6.253403,-0.638635,-6.065348,-1.090218,-6.41186,-0.4505799,-5.850912,-0.2921231,-5.613765,-0.1659758,-5.357963,-0.07429656,-5.087885,-0.01865393,-4.80815,0,-4.523547,-1.34602,-6.538007,-1.616098,-6.629686,-2.361598,6.321902,-1.895832,-6.685329,-3.66929,6.903634,-5.037045,7.325195,-6.445326,7.580565,-7.874016,7.666096,-2.180436,-6.703983,-9.302706,7.580565,-10.71099,7.325195,-12.07874,6.903634,-13.38643,6.321902,-14.61538,5.588312,-13.5676,-6.703983,-13.8522,-6.685329,-14.13193,-6.629686,-14.40201,-6.538007,-14.65781,-6.41186,-15.74803,4.71334,-14.89496,-6.253403,-15.1094,-6.065348,-15.29745,-5.850912,-15.45591,-5.613765,-15.58206,-5.357963,-15.67373,-5.087885,-15.72938,-4.80815,-15.74803,-4.523547,0.738189,-1.932329,-0.738189,-1.932329,0.738189,-1.647114,-0.738189,-1.647114,0.738189,-8.149876,0.738189,-9.581123,-0.738189,-8.149876,-0.738189,-9.581123,-0.738189,6.886818,-0.738189,8.318066,0.738189,6.886818,0.738189,8.318066,-0.738189,-4.098895,-0.738189,-3.81368,0.738189,-4.098895,0.738189,-3.81368,0.738189,-5.126968,-0.738189,-5.126968,0.738189,-4.841753,-0.738189,-4.841753,0.738189,12.56701,0.738189,12.28179,-0.738189,12.56701,-0.738189,12.28179,0.738189,11.53613,0.738189,11.25091,-0.738189,11.53613,-0.738189,11.25091,0.738189,10.3103,0.738189,10.02509,-0.738189,10.3103,-0.738189,10.02509,0.738189,-5.115184,-0.738189,-5.115184,0.738189,-4.829969,-0.738189,-4.829969,-0.738189,-4.764528,-0.738189,-4.479313,0.738189,-4.764528,0.738189,-4.479313,0.738189,8.910502,0.738189,8.625288,-0.738189,8.910502,-0.738189,8.625288,0.738189,-0.06492925,-0.738189,-0.06492925,0.738189,0.2202855,-0.738189,0.2202855,0.738189,-4.799076,-0.738189,-4.799076,0.738189,-4.513861,-0.738189,-4.513861,-0.738189,-2.614229,-0.738189,-2.329015,0.738189,-2.614229,0.738189,-2.329015,0.738189,5.402147,-0.738189,5.402147,0.738189,5.687362,-0.738189,5.687362,0.738189,13.3853,0.738189,13.10008,-0.738189,13.3853,-0.738189,13.10008,0.738189,4.71334,-0.738189,4.71334,-0.738189,-4.468722,-0.738189,-4.183507,0.738189,-4.468722,0.738189,-4.183507,-0.738189,-3.661375,-0.738189,-3.37616,0.738189,-3.661375,0.738189,-3.37616,0.738189,-8.254019,0.738189,-9.685266,-0.738189,-8.254019,-0.738189,-9.685266,0.738189,-5.164035,-0.738189,-5.164035,0.738189,-4.87882,-0.738189,-4.87882,0.738189,1.801141,-0.738189,1.801141,0.738189,2.086356,-0.738189,2.086356,0.738189,7.360684,0.738189,7.075469,-0.738189,7.360684,-0.738189,7.075469,-0.738189,4.727268,-0.738189,6.158515,0.738189,4.727268,0.738189,6.158515,0.738189,-3.769105,-0.738189,-3.769105,0.738189,-3.483891,-0.738189,-3.483891,-0.738189,-3.163647,-0.738189,-2.878433,0.738189,-3.163647,0.738189,-2.878433 + } + UVIndex: *1188 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,27,26,29,28,26,30,29,26,31,30,26,32,31,26,33,32,26,34,33,26,35,34,26,36,35,26,37,36,26,38,37,26,39,38,26,40,38,39,41,39,26,42,39,41,43,40,39,41,44,42,45,42,44,46,45,44,47,46,44,48,46,47,49,48,47,50,48,49,51,40,43,52,50,49,53,50,52,54,53,52,55,54,52,56,54,55,57,56,55,58,56,57,59,58,57,60,58,59,61,60,59,62,60,61,63,62,61,61,40,63,63,40,51,64,40,61,65,40,64,66,40,65,67,66,65,68,67,65,69,68,65,70,69,65,71,70,65,72,71,65,73,72,65,74,73,65,75,74,65,76,75,65,77,76,65,78,80,79,81,79,80,82,81,80,83,81,82,84,81,83,85,81,84,86,81,85,87,81,86,88,81,87,89,81,88,90,81,89,91,81,90,92,81,91,93,81,92,94,81,93,95,93,92,93,96,94,97,93,95,98,94,96,99,98,96,100,98,99,101,98,100,102,101,100,103,101,102,104,103,102,105,103,104,106,105,104,107,105,106,108,105,107,109,108,107,110,108,109,111,110,109,112,110,111,113,112,111,114,112,113,115,114,113,114,115,95,115,97,95,116,114,95,117,116,95,118,117,95,119,117,118,120,117,119,121,117,120,122,117,121,123,117,122,124,117,123,125,117,124,126,117,125,127,117,126,128,117,127,129,117,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,42,45,39,43,39,45,46,43,45,48,43,46,50,43,48,53,43,50,54,43,53,51,43,54,56,51,54,63,51,56,58,63,56,60,63,58,62,63,60,93,97,96,99,96,97,100,99,97,102,100,97,104,102,97,106,104,97,107,106,97,109,107,97,111,109,97,113,111,97,115,113,97,146,0,147,1,147,0,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,2,16,3,17,3,16,160,161,4,6,4,161,162,6,161,163,6,162,164,6,163,165,6,164,166,6,165,167,6,166,7,6,167,14,7,167,14,12,7,5,7,12,15,14,167,167,168,15,169,168,167,170,168,169,168,171,15,13,15,171,79,168,170,172,79,170,173,168,79,174,79,172,81,173,79,78,79,174,94,173,81,78,174,80,175,173,94,98,175,94,176,175,98,101,176,98,177,176,101,103,177,101,178,177,103,105,178,103,179,80,174,180,178,105,108,180,105,110,180,108,181,180,110,112,181,110,182,181,112,114,182,112,183,182,114,116,183,114,82,80,179,83,82,179,84,83,179,85,84,179,86,85,179,184,183,116,87,86,179,88,87,179,89,88,179,90,89,179,91,90,179,92,91,179,185,92,179,95,92,185,118,95,185,186,118,185,119,118,186,120,119,186,121,120,186,122,121,186,123,122,186,124,123,186,125,124,186,126,125,186,127,126,186,128,127,186,129,128,186,117,129,186,186,184,117,117,184,116,187,184,186,188,184,187,189,184,188,190,184,189,191,190,189,192,190,191,193,190,192,194,190,193,195,190,194,196,190,195,197,190,196,198,190,197,199,201,200,202,200,201,203,205,204,206,204,205,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,218,216,217,219,221,220,222,220,221,223,224,20,22,20,224,23,22,224,10,23,224,10,8,23,21,23,8,11,10,224,225,11,224,225,226,11,227,225,224,226,228,11,228,229,11,229,230,11,230,231,11,231,232,11,232,233,11,9,11,233,234,227,224,24,234,224,235,234,24,236,24,224,237,235,24,26,24,236,24,25,237,41,26,236,25,27,237,238,41,236,44,41,238,239,44,238,47,44,239,240,47,239,49,47,240,241,49,240,52,49,241,242,237,27,243,52,241,55,52,243,57,55,243,244,57,243,59,57,244,245,59,244,61,59,245,246,61,245,64,61,246,247,64,246,28,242,27,29,242,28,30,242,29,31,242,30,32,242,31,65,64,247,33,242,32,34,242,33,35,242,34,36,242,35,37,242,36,38,242,37,248,242,38,40,248,38,66,248,40,249,248,66,67,249,66,68,249,67,69,249,68,70,249,69,71,249,70,72,249,71,73,249,72,74,249,73,75,249,74,76,249,75,77,249,76,249,77,247,77,65,247,250,249,247,251,250,247,252,251,247,253,252,247,254,252,253,255,254,253,256,255,253,257,256,253,258,257,253,259,258,253,260,259,253,261,260,253,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,18,326,19,327,19,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *396 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fenceGate, Model::RootNode + C: "OO",4750427804107076152,0 + + ;Geometry::, Model::Mesh fenceGate + C: "OO",4967909403507767534,4750427804107076152 + + ;Material::wood, Model::Mesh fenceGate + C: "OO",7178,4750427804107076152 + + ;Model::Mesh gate, Model::USING PARENT + C: "OO",5211987905373609686,4750427804107076152 + + ;Geometry::, Model::Mesh gate + C: "OO",5311978538914843350,5211987905373609686 + + ;Material::stone, Model::Mesh gate + C: "OO",7184,5211987905373609686 + + ;Material::woodDark, Model::Mesh gate + C: "OO",7186,5211987905373609686 + + ;Material::wood, Model::Mesh gate + C: "OO",7178,5211987905373609686 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceGate.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceGate.fbx.import new file mode 100644 index 0000000..f725b1c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceGate.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://52t28wgrvmpa" +path="res://.godot/imported/fenceGate.fbx-c078cc815b2f2d70dce649304b430c53.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fenceGate.fbx" +dest_files=["res://.godot/imported/fenceGate.fbx-c078cc815b2f2d70dce649304b430c53.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCenter.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCenter.fbx new file mode 100644 index 0000000..4ab0714 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCenter.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 292 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainCenter.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainCenter.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4732410923764401180, "Model::fountainCenter", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4941272810104212090, "Geometry::", "Mesh" { + Vertices: *24 { + a: 5,0,-5,5,0,5,-5,0,-5,-5,0,5,5,1.4,-5,5,1.4,5,-5,1.4,-5,-5,1.4,5 + } + PolygonVertexIndex: *12 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *36 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *16 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504 + } + UVIndex: *12 { + a: 0,2,1,3,1,2,4,6,5,7,5,6 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *4 { + a: 0,0,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainCenter, Model::RootNode + C: "OO",4732410923764401180,0 + + ;Geometry::, Model::Mesh fountainCenter + C: "OO",4941272810104212090,4732410923764401180 + + ;Material::stone, Model::Mesh fountainCenter + C: "OO",7184,4732410923764401180 + + ;Material::water, Model::Mesh fountainCenter + C: "OO",7194,4732410923764401180 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCenter.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCenter.fbx.import new file mode 100644 index 0000000..ba4a7e8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCenter.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c5xxbjfimoh2o" +path="res://.godot/imported/fountainCenter.fbx-06e28e45318147149f8cc97d18310466.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCenter.fbx" +dest_files=["res://.godot/imported/fountainCenter.fbx-06e28e45318147149f8cc97d18310466.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCorner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCorner.fbx new file mode 100644 index 0000000..7da591e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCorner.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 345 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4873711046071030738, "Model::fountainCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4747914153014488742, "Geometry::", "Mesh" { + Vertices: *315 { + a: -4.7,1.12,-4.7,-4.625,1.4,-5,-5,1.4,-4.625,-2,0,5,-2,1.4,5,-2,0,-2,-2,1.4,-2,-2,2.8,-2,-2,2.8,5,-4.7,1.12,5,-4.7,1.12,-4.7,-5,1.4,5,-5,1.4,-4.625,-2,2.8,-2,5,2.8,-2,-2,1.4,-2,5,1.4,-2,-2,0,-2,5,0,-2,5,1.12,-4.7,5,1.4,-5,-4.7,1.12,-4.7,-4.625,1.4,-5,-2,0,5,-2,0,-2,-5,0,5,-5,0,-5,5,0,-5,5,0,-2,-4.625,1.4,-5,5,1.4,-5,-4.625,2.8,-5,5,2.8,-5,5,2.8,-2,-2,2.8,-2,5,2.8,-4.25,-4.25,2.8,-4.25,-2,2.8,5,-4.25,2.8,5,-5,1.4,-4.625,-5,2.8,-4.625,-5,1.4,5,-5,2.8,5,-4.625,1.4,-5,-4.625,2.8,-5,-5,1.4,-4.625,-5,2.8,-4.625,-2,0,5,-5,0,5,-2,1.4,5,-4.7,0.56,5,-5,0.56,5,-4.7,1.12,5,-5,1.4,5,-2,2.8,5,-5,2.8,5,-4.25,2.8,5,5,0,-2,5,0,5,-2,0,-2,-2,0,5,-4.7,0.56,-4.7,5,0.56,-4.7,-4.7,1.12,-4.7,5,1.12,-4.7,5,2.8,-5,5,1.4,-5,5,2.8,-4.25,5,1.12,-4.7,5,0.56,-4.7,5,0,-2,5,1.4,-2,5,2.8,-2,5,0,-5,5,0.56,-5,-4.7,0.56,-4.7,-4.7,1.12,-4.7,-4.7,0.56,5,-4.7,1.12,5,5,2.8,-5,-4.625,2.8,-5,-5,2.8,5,-5,2.8,-4.625,-5,0,-5,-5,0.56,-5,-5,0,5,-5,0.56,5,-5,0,-5,5,0,-5,-5,0.56,-5,5,0.56,-5,5,0.56,-5,5,0.56,-4.7,-5,0.56,-5,-4.7,0.56,-4.7,-4.7,0.56,5,-5,0.56,5,5,1.4,-2,5,1.4,5,-2,1.4,-2,-2,1.4,5,-2,1.4,-2,5,1.4,5,5,1.4,-2,-2,1.4,5 + } + PolygonVertexIndex: *198 { + a: 0,2,-2,3,5,-5,6,4,-6,6,7,-5,8,4,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,25,26,-25,26,27,-25,28,24,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,34,-37,38,37,-37,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,50,51,-49,52,50,-50,53,52,-50,54,53,-50,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,68,-68,67,70,-70,71,70,-68,67,72,-72,70,73,-70,74,69,-74,75,77,-77,78,76,-78,79,80,-36,36,35,-81,38,36,-81,81,38,-81,82,81,-81,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,94,-94,96,95,-94,97,99,-99,100,98,-100,101,103,-103,102,104,-102 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *594 { + a: -0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,-0.614791,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *210 { + a: -5.631051E-13,16.76177,-1.043957,18.02966,1.043957,18.02966,-19.68504,-2.273737E-12,-19.68504,5.511811,7.874016,-2.273737E-12,7.874016,5.511811,7.874016,11.02362,-19.68504,11.02362,19.68504,16.53605,-18.50394,16.53605,19.68504,18.15166,-18.20866,18.15166,-7.874016,11.02362,19.68504,11.02362,-7.874016,5.511811,19.68504,5.511811,-7.874016,2.395544E-12,19.68504,2.395544E-12,-19.68504,16.53605,-19.68504,18.15166,18.50394,16.53605,18.20866,18.15166,-7.874016,19.68504,-7.874016,-7.874016,-19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,19.68504,-7.874016,18.20866,5.511811,-19.68504,5.511811,18.20866,11.02362,-19.68504,11.02362,-19.68504,-7.874016,7.874016,-7.874016,-19.68504,-16.73228,16.73228,-16.73228,7.874016,19.68504,16.73228,19.68504,-18.20866,5.511811,-18.20866,11.02362,19.68504,5.511811,19.68504,11.02362,-1.043957,5.511811,-1.043957,11.02362,1.043957,5.511811,1.043957,11.02362,-7.874016,-5.554411E-14,-19.68504,-5.554411E-14,-7.874016,5.511811,-18.50394,2.204724,-19.68504,2.204724,-18.50394,4.409449,-19.68504,5.511811,-7.874016,11.02362,-19.68504,11.02362,-16.73228,11.02362,-19.68504,-7.874016,-19.68504,19.68504,7.874016,-7.874016,7.874016,19.68504,18.50394,2.204724,-19.68504,2.204724,18.50394,4.409449,-19.68504,4.409449,19.68504,11.02362,19.68504,5.511811,16.73228,11.02362,18.50394,4.409449,18.50394,2.204724,7.874016,-2.844449E-14,7.874016,5.511811,7.874016,11.02362,19.68504,-2.844449E-14,19.68504,2.204724,-18.50394,2.204724,-18.50394,4.409449,19.68504,2.204724,19.68504,4.409449,-19.68504,-19.68504,18.20866,-19.68504,19.68504,19.68504,19.68504,-18.20866,-19.68504,0,-19.68504,2.204724,19.68504,0,19.68504,2.204724,19.68504,0,-19.68504,0,19.68504,2.204724,-19.68504,2.204724,-19.68504,-19.68504,-19.68504,-18.50394,19.68504,-19.68504,18.50394,-18.50394,18.50394,19.68504,19.68504,19.68504,-19.68504,-7.874016,-19.68504,19.68504,7.874016,-7.874016,7.874016,19.68504,7.874016,-7.874016,-19.68504,19.68504,-19.68504,-7.874016,7.874016,19.68504 + } + UVIndex: *198 { + a: 0,2,1,3,5,4,6,4,5,6,7,4,8,4,7,9,11,10,12,10,11,13,15,14,16,14,15,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,25,26,24,26,27,24,28,24,27,29,31,30,32,30,31,33,35,34,36,34,35,37,34,36,38,37,36,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,50,51,48,52,50,49,53,52,49,54,53,49,55,53,54,56,55,54,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,68,67,67,70,69,71,70,67,67,72,71,70,73,69,74,69,73,75,77,76,78,76,77,79,80,35,36,35,80,38,36,80,81,38,80,82,81,80,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,94,93,96,95,93,97,99,98,100,98,99,101,103,102,102,104,101 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *66 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainCorner, Model::RootNode + C: "OO",4873711046071030738,0 + + ;Geometry::, Model::Mesh fountainCorner + C: "OO",4747914153014488742,4873711046071030738 + + ;Material::stone, Model::Mesh fountainCorner + C: "OO",7184,4873711046071030738 + + ;Material::stoneDark, Model::Mesh fountainCorner + C: "OO",7174,4873711046071030738 + + ;Material::water, Model::Mesh fountainCorner + C: "OO",7194,4873711046071030738 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCorner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCorner.fbx.import new file mode 100644 index 0000000..dea8763 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c76ws0xrleitx" +path="res://.godot/imported/fountainCorner.fbx-3b297b1365bcd91c57a644d83c72d8b0.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCorner.fbx" +dest_files=["res://.godot/imported/fountainCorner.fbx-3b297b1365bcd91c57a644d83c72d8b0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInner.fbx new file mode 100644 index 0000000..115c4fe --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInner.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 382 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainCornerInner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainCornerInner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4979838519230738942, "Model::fountainCornerInner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4815497381888407815, "Geometry::", "Mesh" { + Vertices: *789 { + a: -4.710222,1.12,-4.922354,-4.702567,1.12,-4.960842,-5,1.4,-5,-4.922354,1.12,-4.710222,-4.885195,1.12,-4.722836,-5,1.4,-5,-4.885195,1.12,-4.722836,-4.85,1.12,-4.740192,-5,1.4,-5,-4.85,1.12,-4.740192,-4.817372,1.12,-4.761994,-5,1.4,-5,-4.722836,1.12,-4.885195,-4.710222,1.12,-4.922354,-5,1.4,-5,-4.740192,1.12,-4.85,-4.722836,1.12,-4.885195,-5,1.4,-5,-4.817372,1.12,-4.761994,-4.787868,1.12,-4.787868,-5,1.4,-5,-4.702567,1.12,-4.960842,-4.7,1.12,-5,-5,1.4,-5,-4.761994,1.12,-4.817372,-4.740192,1.12,-4.85,-5,1.4,-5,-5,1.12,-4.7,-4.960842,1.12,-4.702567,-5,1.4,-5,-4.960842,1.12,-4.702567,-4.922354,1.12,-4.710222,-5,1.4,-5,-4.787868,1.12,-4.787868,-4.761994,1.12,-4.817372,-5,1.4,-5,-4.740192,0.56,-4.85,-4.740192,1.12,-4.85,-4.761994,0.56,-4.817372,-4.761994,1.12,-4.817372,-4.817372,0.56,-4.761994,-4.787868,0.56,-4.787868,-4.817372,1.12,-4.761994,-4.787868,1.12,-4.787868,-4.960842,0.56,-4.702567,-4.922354,0.56,-4.710222,-4.960842,1.12,-4.702567,-4.922354,1.12,-4.710222,-4.761994,0.56,-4.817372,-4.761994,1.12,-4.817372,-4.787868,0.56,-4.787868,-4.787868,1.12,-4.787868,-4.722836,0.56,-4.885195,-4.722836,1.12,-4.885195,-4.740192,0.56,-4.85,-4.740192,1.12,-4.85,-4.85,0.56,-4.740192,-4.817372,0.56,-4.761994,-4.85,1.12,-4.740192,-4.817372,1.12,-4.761994,-5,0.56,-4.7,-4.960842,0.56,-4.702567,-5,1.12,-4.7,-4.960842,1.12,-4.702567,-4.702567,0.56,-4.960842,-4.702567,1.12,-4.960842,-4.710222,0.56,-4.922354,-4.710222,1.12,-4.922354,-4.7,0.56,-5,-4.7,1.12,-5,-4.702567,0.56,-4.960842,-4.702567,1.12,-4.960842,-4.710222,0.56,-4.922354,-4.710222,1.12,-4.922354,-4.722836,0.56,-4.885195,-4.722836,1.12,-4.885195,-4.885195,0.56,-4.722836,-4.85,0.56,-4.740192,-4.885195,1.12,-4.722836,-4.85,1.12,-4.740192,-4.922354,0.56,-4.710222,-4.885195,0.56,-4.722836,-4.922354,1.12,-4.710222,-4.885195,1.12,-4.722836,-2,2.8,-5,-2.025665,2.8,-4.608421,-4.25,2.8,-5,-2.102222,2.8,-4.223543,-2.228361,2.8,-3.85195,-2.401924,2.8,-3.5,-2.61994,2.8,-3.173716,-2.878679,2.8,-2.87868,-3.173716,2.8,-2.61994,-3.5,2.8,-2.401924,-3.85195,2.8,-2.228361,-4.223543,2.8,-2.102222,-4.256416,2.8,-4.902105,-4.608421,2.8,-2.025665,-4.275555,2.8,-4.805886,-4.30709,2.8,-4.712987,-4.350481,2.8,-4.625,-4.404985,2.8,-4.543429,-4.46967,2.8,-4.46967,-4.543429,2.8,-4.404985,-4.625,2.8,-4.350481,-5,2.8,-2,-4.712987,2.8,-4.30709,-4.805886,2.8,-4.275555,-4.902105,2.8,-4.256416,-5,2.8,-4.25,-2,0,-5,-5,0,-5,-2.025665,0,-4.608421,-2.102222,0,-4.223543,-2.228361,0,-3.85195,-2.401924,0,-3.5,-2.61994,0,-3.173716,-2.878679,0,-2.87868,-3.173716,0,-2.61994,-3.5,0,-2.401924,-3.85195,0,-2.228361,-4.223543,0,-2.102222,-4.608421,0,-2.025665,-5,0,-2,-2.025665,0,-4.608421,-2.025665,1.4,-4.608421,-2,0,-5,-2,1.4,-5,-2.025665,2.8,-4.608421,-2,2.8,-5,-4.223543,0,-2.102222,-4.608421,0,-2.025665,-4.223543,1.4,-2.102222,-4.608421,1.4,-2.025665,-4.223543,2.8,-2.102222,-4.608421,2.8,-2.025665,-3.85195,0,-2.228361,-4.223543,0,-2.102222,-3.85195,1.4,-2.228361,-4.223543,1.4,-2.102222,-3.85195,2.8,-2.228361,-4.223543,2.8,-2.102222,-2.102222,0,-4.223543,-2.102222,1.4,-4.223543,-2.025665,0,-4.608421,-2.025665,1.4,-4.608421,-2.102222,2.8,-4.223543,-2.025665,2.8,-4.608421,-2.228361,0,-3.85195,-2.228361,1.4,-3.85195,-2.102222,0,-4.223543,-2.102222,1.4,-4.223543,-2.228361,2.8,-3.85195,-2.102222,2.8,-4.223543,-2.61994,0,-3.173716,-2.61994,1.4,-3.173716,-2.401924,0,-3.5,-2.401924,1.4,-3.5,-2.61994,2.8,-3.173716,-2.401924,2.8,-3.5,-2.878679,0,-2.87868,-3.173716,0,-2.61994,-2.878679,1.4,-2.87868,-3.173716,1.4,-2.61994,-2.878679,2.8,-2.87868,-3.173716,2.8,-2.61994,-2.878679,0,-2.87868,-2.878679,1.4,-2.87868,-2.61994,0,-3.173716,-2.61994,1.4,-3.173716,-2.878679,2.8,-2.87868,-2.61994,2.8,-3.173716,-2.401924,0,-3.5,-2.401924,1.4,-3.5,-2.228361,0,-3.85195,-2.228361,1.4,-3.85195,-2.401924,2.8,-3.5,-2.228361,2.8,-3.85195,-4.608421,0,-2.025665,-5,0,-2,-4.608421,1.4,-2.025665,-5,1.4,-2,-4.608421,2.8,-2.025665,-5,2.8,-2,-3.173716,0,-2.61994,-3.5,0,-2.401924,-3.173716,1.4,-2.61994,-3.5,1.4,-2.401924,-3.173716,2.8,-2.61994,-3.5,2.8,-2.401924,-3.5,0,-2.401924,-3.85195,0,-2.228361,-3.5,1.4,-2.401924,-3.85195,1.4,-2.228361,-3.5,2.8,-2.401924,-3.85195,2.8,-2.228361,-5,0,-5,-5,0.56,-5,-5,0,-2,-5,0.56,-4.7,-5,1.12,-4.7,-5,2.8,-4.25,-5,2.8,-2,-5,1.4,-2,-5,2.8,-5,-5,1.4,-5,5,0,-5,5,0,5,-2,0,-5,-2.025665,0,-4.608421,-2.102222,0,-4.223543,-5,0,5,-2.228361,0,-3.85195,-2.401924,0,-3.5,-2.61994,0,-3.173716,-2.878679,0,-2.87868,-3.173716,0,-2.61994,-3.5,0,-2.401924,-3.85195,0,-2.228361,-4.223543,0,-2.102222,-4.608421,0,-2.025665,-5,0,-2,-5,0,-5,-2,0,-5,-5,0.56,-5,-4.7,0.56,-5,-2,1.4,-5,-4.7,1.12,-5,-5,1.4,-5,-5,2.8,-5,-2,2.8,-5,-4.25,2.8,-5,-4.7,0.56,-5,-4.702567,0.56,-4.960842,-5,0.56,-5,-4.710222,0.56,-4.922354,-4.722836,0.56,-4.885195,-4.740192,0.56,-4.85,-4.761994,0.56,-4.817372,-4.787868,0.56,-4.787868,-4.817372,0.56,-4.761994,-4.85,0.56,-4.740192,-4.885195,0.56,-4.722836,-4.922354,0.56,-4.710222,-4.960842,0.56,-4.702567,-5,0.56,-4.7,-5,2.8,-5,5,1.4,-5,5,1.4,5,-2,1.4,-5,-2.025665,1.4,-4.608421,-2.102222,1.4,-4.223543,-5,1.4,5,-2.228361,1.4,-3.85195,-2.401924,1.4,-3.5,-2.61994,1.4,-3.173716,-2.878679,1.4,-2.87868,-3.173716,1.4,-2.61994,-3.5,1.4,-2.401924,-3.85195,1.4,-2.228361,-4.223543,1.4,-2.102222,-4.608421,1.4,-2.025665,-5,1.4,-2 + } + PolygonVertexIndex: *564 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,32,-32,33,35,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,89,88,-87,90,89,-87,91,90,-87,92,91,-87,93,92,-87,94,93,-87,95,94,-87,96,95,-87,97,95,-97,98,97,-97,99,97,-99,100,97,-100,101,97,-101,102,97,-102,103,97,-103,104,97,-104,105,97,-105,106,105,-105,107,105,-107,108,105,-108,109,105,-109,110,112,-112,113,111,-113,114,111,-114,115,111,-115,116,111,-116,117,111,-117,118,111,-118,119,111,-119,120,111,-120,121,111,-121,122,111,-122,123,111,-123,124,126,-126,127,125,-127,125,127,-129,129,128,-128,130,132,-132,133,131,-133,132,134,-134,135,133,-135,136,138,-138,139,137,-139,138,140,-140,141,139,-141,142,144,-144,145,143,-145,143,145,-147,147,146,-146,148,150,-150,151,149,-151,149,151,-153,153,152,-152,154,156,-156,157,155,-157,155,157,-159,159,158,-158,160,162,-162,163,161,-163,162,164,-164,165,163,-165,166,168,-168,169,167,-169,167,169,-171,171,170,-170,172,174,-174,175,173,-175,173,175,-177,177,176,-176,178,180,-180,181,179,-181,180,182,-182,183,181,-183,184,186,-186,187,185,-187,186,188,-188,189,187,-189,190,192,-192,193,191,-193,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,199,-199,201,200,-199,202,201,-199,203,202,-199,201,204,-201,205,200,-205,206,208,-208,209,207,-209,210,207,-210,211,207,-211,212,211,-211,213,211,-213,214,211,-214,215,211,-215,216,211,-216,217,211,-217,218,211,-218,219,211,-219,220,211,-220,221,211,-221,222,224,-224,225,223,-225,226,223,-226,227,226,-226,228,226,-228,229,226,-229,230,226,-230,231,230,-230,232,234,-234,235,233,-235,236,235,-235,237,236,-235,238,237,-235,239,238,-235,240,239,-235,241,240,-235,242,241,-235,243,242,-235,244,243,-235,245,244,-235,86,246,-97,98,96,-247,99,98,-247,100,99,-247,101,100,-247,102,101,-247,103,102,-247,104,103,-247,106,104,-247,107,106,-247,108,107,-247,109,108,-247,247,249,-249,250,248,-250,251,248,-251,252,248,-252,253,252,-252,254,252,-254,255,252,-255,256,252,-256,257,252,-257,258,252,-258,259,252,-259,260,252,-260,261,252,-261,262,252,-262 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1692 { + a: -0.6590688,-0.7310552,-0.176597,-0.4556606,-0.7646871,-0.455661,-0.6764809,-0.7310552,-0.08906042,-0.1765967,-0.7310551,-0.659069,-0.4556606,-0.7646871,-0.455661,-0.2611117,-0.7310551,-0.63038,-0.2611117,-0.7310551,-0.63038,-0.4556606,-0.7646871,-0.455661,-0.341159,-0.7310551,-0.5909051,-0.341159,-0.7310551,-0.5909051,-0.4556606,-0.7646871,-0.455661,-0.4153689,-0.7310551,-0.5413196,-0.6303798,-0.7310552,-0.2611119,-0.4556606,-0.7646871,-0.455661,-0.6590688,-0.7310552,-0.176597,-0.5909049,-0.7310552,-0.3411592,-0.4556606,-0.7646871,-0.455661,-0.6303798,-0.7310552,-0.2611119,-0.4153689,-0.7310551,-0.5413196,-0.4556606,-0.7646871,-0.455661,-0.4824718,-0.7310551,-0.482472,-0.6764809,-0.7310552,-0.08906042,-0.4556606,-0.7646871,-0.455661,-0.681637,-0.7303253,-0.04467686,-0.5413194,-0.7310552,-0.4153691,-0.4556606,-0.7646871,-0.455661,-0.5909049,-0.7310552,-0.3411592,-0.04467654,-0.7303252,-0.6816372,-0.4556606,-0.7646871,-0.455661,-0.08906013,-0.7310551,-0.6764811,-0.08906013,-0.7310551,-0.6764811,-0.4556606,-0.7646871,-0.455661,-0.1765967,-0.7310551,-0.659069,-0.4824718,-0.7310551,-0.482472,-0.4556606,-0.7646871,-0.455661,-0.5413194,-0.7310552,-0.4153691,-0.8660253,0,-0.5000001,-0.7933532,0,-0.6087616,-0.8660253,0,-0.5000001,-0.7933532,0,-0.6087616,-0.8660253,0,-0.5000001,-0.7933532,0,-0.6087616,-0.6087613,0,-0.7933536,-0.6087613,0,-0.7933536,-0.7071066,0,-0.7071069,-0.7071066,0,-0.7071069,-0.7071066,0,-0.7071069,-0.6087613,0,-0.7933536,-0.1305257,0,-0.9914449,-0.1305257,0,-0.9914449,-0.2588187,0,-0.9659259,-0.2588187,0,-0.9659259,-0.2588187,0,-0.9659259,-0.1305257,0,-0.9914449,-0.7933532,0,-0.6087616,-0.7071066,0,-0.7071069,-0.7933532,0,-0.6087616,-0.7071066,0,-0.7071069,-0.7933532,0,-0.6087616,-0.7071066,0,-0.7071069,-0.9238795,0,-0.3826835,-0.8660253,0,-0.5000001,-0.9238795,0,-0.3826835,-0.8660253,0,-0.5000001,-0.9238795,0,-0.3826835,-0.8660253,0,-0.5000001,-0.4999998,0,-0.8660256,-0.4999998,0,-0.8660256,-0.6087613,0,-0.7933536,-0.6087613,0,-0.7933536,-0.6087613,0,-0.7933536,-0.4999998,0,-0.8660256,-0.06540267,0,-0.9978589,-0.06540267,0,-0.9978589,-0.1305257,0,-0.9914449,-0.1305257,0,-0.9914449,-0.1305257,0,-0.9914449,-0.06540267,0,-0.9978589,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9978589,0,-0.06540315,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540315,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540315,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826835,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826835,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826835,-0.3826831,0,-0.9238796,-0.3826831,0,-0.9238796,-0.4999998,0,-0.8660256,-0.4999998,0,-0.8660256,-0.4999998,0,-0.8660256,-0.3826831,0,-0.9238796,-0.2588187,0,-0.9659259,-0.2588187,0,-0.9659259,-0.3826831,0,-0.9238796,-0.3826831,0,-0.9238796,-0.3826831,0,-0.9238796,-0.2588187,0,-0.9659259,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305261,0.9978589,0,0.06540294,0.9914449,0,0.1305261,0.9978589,0,0.06540313,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305261,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.0654031,0,0.9978589,0.0654031,0,0.9978589,0.0654031,0,0.9978589,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.0654031,0,0.9978589,0.0654031,0,0.9978589,0.0654031,0,0.9978589,0.1305262,0,0.9914449,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *526 { + a: -15.38919,19.0563,-15.54368,19.0563,-15.46643,20.67007,12.39007,20.38604,12.23557,20.38604,12.31282,21.9998,9.025762,21.40378,8.871265,21.40378,8.948514,23.01754,5.508346,22.0921,5.35385,22.0921,5.431098,23.70587,-12.23556,20.38604,-12.39005,20.38604,-12.31281,21.99981,-8.871254,21.40378,-9.025749,21.40378,-8.948502,23.01755,1.898003,22.43923,1.743507,22.43923,1.820755,24.053,-18.27818,17.43732,-18.43268,17.43732,-18.35543,19.05108,-5.353838,22.0921,-5.508333,22.0921,-5.431085,23.70587,18.43269,17.43731,18.27819,17.43731,18.35544,19.05107,15.54369,19.0563,15.3892,19.0563,15.46645,20.67006,-1.743494,22.43924,-1.89799,22.43924,-1.820742,24.053,-5.508333,2.204724,-5.508333,4.409449,-5.353838,2.204724,-5.353838,4.409449,1.898003,2.204724,1.743507,2.204724,1.898003,4.409449,1.743507,4.409449,15.54369,2.204724,15.3892,2.204724,15.54369,4.409449,15.3892,4.409449,-1.89799,2.204724,-1.89799,4.409449,-1.743494,2.204724,-1.743494,4.409449,-9.025749,2.204724,-9.025749,4.409449,-8.871254,2.204724,-8.871254,4.409449,5.508346,2.204724,5.35385,2.204724,5.508346,4.409449,5.35385,4.409449,18.43269,2.204724,18.27819,2.204724,18.43269,4.409449,18.27819,4.409449,-15.54368,2.204724,-15.54368,4.409449,-15.38919,2.204724,-15.38919,4.409449,-18.43268,2.204724,-18.43268,4.409449,-18.27818,2.204724,-18.27818,4.409449,-12.39005,2.204724,-12.39005,4.409449,-12.23556,2.204724,-12.23556,4.409449,9.025762,2.204724,8.871265,2.204724,9.025762,4.409449,8.871265,4.409449,12.39007,2.204724,12.23557,2.204724,12.39007,4.409449,12.23557,4.409449,7.874016,-19.68504,7.97506,-18.14339,16.73228,-19.68504,8.276466,-16.62812,8.773076,-15.16516,9.456392,-13.77953,10.31472,-12.49494,11.33338,-11.33338,12.49494,-10.31472,13.77953,-9.456392,15.16516,-8.773076,16.62812,-8.276466,16.75755,-19.29963,18.14339,-7.97506,16.8329,-18.92081,16.95705,-18.55507,17.12788,-18.20866,17.34246,-17.88752,17.59713,-17.59713,17.88752,-17.34246,18.20866,-17.12788,19.68504,-7.874016,18.55507,-16.95705,18.92081,-16.8329,19.29963,-16.75755,19.68504,-16.73228,-7.874015,-19.68504,-19.68504,-19.68504,-7.97506,-18.14339,-8.276466,-16.62812,-8.773076,-15.16516,-9.456392,-13.77953,-10.31472,-12.49494,-11.33338,-11.33338,-12.49494,-10.31472,-13.77953,-9.456392,-15.16516,-8.773076,-16.62812,-8.276466,-18.14339,-7.97506,-19.68504,-7.874016,17.58295,-1.598029E-13,17.58295,5.511811,19.12791,-1.598029E-13,19.12791,5.511811,17.58295,11.02362,19.12791,11.02362,-14.69396,-5.157157E-14,-16.23891,-5.157157E-14,-14.69396,5.511811,-16.23891,5.511811,-14.69396,11.02362,-16.23891,11.02362,-11.54033,0,-13.08529,0,-11.54033,5.511811,-13.08529,5.511811,-11.54033,11.02362,-13.08529,11.02362,14.69396,-2.298345E-13,14.69396,5.511811,16.23891,-2.298345E-13,16.23891,5.511811,14.69396,11.02362,16.23891,11.02362,11.54033,-1.287311E-13,11.54033,5.511811,13.08529,-1.287311E-13,13.08529,5.511811,11.54033,11.02362,13.08529,11.02362,4.658612,-1.330657E-13,4.658612,5.511811,6.203568,-1.330657E-13,6.203568,5.511811,4.658612,11.02362,6.203568,11.02362,-1.04827,-1.087516E-13,-2.593226,-1.087516E-13,-1.04827,5.511811,-2.593226,5.511811,-1.04827,11.02362,-2.593226,11.02362,1.04827,0,1.04827,5.511811,2.593226,0,2.593226,5.511811,1.04827,11.02362,2.593226,11.02362,8.176027,-1.348631E-13,8.176027,5.511811,9.720983,-1.348631E-13,9.720983,5.511811,8.176027,11.02362,9.720983,11.02362,-17.58295,-5.042635E-14,-19.12791,-5.042635E-14,-17.58295,5.511811,-19.12791,5.511811,-17.58295,11.02362,-19.12791,11.02362,-4.658612,-1.222017E-13,-6.203568,-1.222017E-13,-4.658612,5.511811,-6.203568,5.511811,-4.658612,11.02362,-6.203568,11.02362,-8.176027,-3.372771E-14,-9.720983,-3.372771E-14,-8.176027,5.511811,-9.720983,5.511811,-8.176027,11.02362,-9.720983,11.02362,-19.68504,5.16016E-07,-19.68504,2.204725,-7.874016,5.16016E-07,-18.50394,2.204725,-18.50394,4.409449,-16.73228,11.02362,-7.874016,11.02362,-7.874016,5.511812,-19.68504,11.02362,-19.68504,5.511812,-19.68504,-19.68504,-19.68504,19.68504,7.874015,-19.68504,7.97506,-18.14339,8.276466,-16.62812,19.68504,19.68504,8.773076,-15.16516,9.456392,-13.77953,10.31472,-12.49494,11.33338,-11.33338,12.49494,-10.31472,13.77953,-9.456392,15.16516,-8.773076,16.62812,-8.276466,18.14339,-7.97506,19.68504,-7.874016,19.68504,-1.49119E-12,7.874015,-1.49119E-12,19.68504,2.204724,18.50394,2.204724,7.874015,5.511811,18.50394,4.409449,19.68504,5.511811,19.68504,11.02362,7.874016,11.02362,16.73228,11.02362,18.50394,-19.68504,18.51404,-19.53087,19.68504,-19.68504,18.54418,-19.37935,18.59384,-19.23305,18.66217,-19.09449,18.74801,-18.96603,18.84987,-18.84987,18.96603,-18.74801,19.09449,-18.66217,19.23305,-18.59384,19.37935,-18.54418,19.53087,-18.51404,19.68504,-18.50394,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,19.68504,7.874015,-19.68504,7.97506,-18.14339,8.276466,-16.62812,19.68504,19.68504,8.773076,-15.16516,9.456392,-13.77953,10.31472,-12.49494,11.33338,-11.33338,12.49494,-10.31472,13.77953,-9.456392,15.16516,-8.773076,16.62812,-8.276466,18.14339,-7.97506,19.68504,-7.874016 + } + UVIndex: *564 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,29,28,30,32,31,33,35,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,89,88,86,90,89,86,91,90,86,92,91,86,93,92,86,94,93,86,95,94,86,96,95,86,97,95,96,98,97,96,99,97,98,100,97,99,101,97,100,102,97,101,103,97,102,104,97,103,105,97,104,106,105,104,107,105,106,108,105,107,109,105,108,110,112,111,113,111,112,114,111,113,115,111,114,116,111,115,117,111,116,118,111,117,119,111,118,120,111,119,121,111,120,122,111,121,123,111,122,124,126,125,127,125,126,125,127,128,129,128,127,130,132,131,133,131,132,132,134,133,135,133,134,136,138,137,139,137,138,138,140,139,141,139,140,142,144,143,145,143,144,143,145,146,147,146,145,148,150,149,151,149,150,149,151,152,153,152,151,154,156,155,157,155,156,155,157,158,159,158,157,160,162,161,163,161,162,162,164,163,165,163,164,166,168,167,169,167,168,167,169,170,171,170,169,172,174,173,175,173,174,173,175,176,177,176,175,178,180,179,181,179,180,180,182,181,183,181,182,184,186,185,187,185,186,186,188,187,189,187,188,190,192,191,193,191,192,192,194,193,195,193,194,196,198,197,199,197,198,200,199,198,201,200,198,202,201,198,203,202,198,201,204,200,205,200,204,206,208,207,209,207,208,210,207,209,211,207,210,212,211,210,213,211,212,214,211,213,215,211,214,216,211,215,217,211,216,218,211,217,219,211,218,220,211,219,221,211,220,222,224,223,225,223,224,226,223,225,227,226,225,228,226,227,229,226,228,230,226,229,231,230,229,232,234,233,235,233,234,236,235,234,237,236,234,238,237,234,239,238,234,240,239,234,241,240,234,242,241,234,243,242,234,244,243,234,245,244,234,86,246,96,98,96,246,99,98,246,100,99,246,101,100,246,102,101,246,103,102,246,104,103,246,106,104,246,107,106,246,108,107,246,109,108,246,247,249,248,250,248,249,251,248,250,252,248,251,253,252,251,254,252,253,255,252,254,256,252,255,257,252,256,258,252,257,259,252,258,260,252,259,261,252,260,262,252,261 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *188 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainCornerInner, Model::RootNode + C: "OO",4979838519230738942,0 + + ;Geometry::, Model::Mesh fountainCornerInner + C: "OO",4815497381888407815,4979838519230738942 + + ;Material::stone, Model::Mesh fountainCornerInner + C: "OO",7184,4979838519230738942 + + ;Material::stoneDark, Model::Mesh fountainCornerInner + C: "OO",7174,4979838519230738942 + + ;Material::water, Model::Mesh fountainCornerInner + C: "OO",7194,4979838519230738942 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInner.fbx.import new file mode 100644 index 0000000..e5e2c15 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d3807xibr4gbk" +path="res://.godot/imported/fountainCornerInner.fbx-4f1aa65a6961d8bf6fd490c6baabf97f.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInner.fbx" +dest_files=["res://.godot/imported/fountainCornerInner.fbx-4f1aa65a6961d8bf6fd490c6baabf97f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInnerSquare.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInnerSquare.fbx new file mode 100644 index 0000000..b890103 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInnerSquare.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 456 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainCornerInnerSquare.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainCornerInnerSquare.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5665519333172035276, "Model::fountainCornerInnerSquare", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4754322616590903800, "Geometry::", "Mesh" { + Vertices: *237 { + a: -4.7,1.12,-4.7,-5,1.4,-5,-5,1.12,-4.7,-4.7,1.12,-4.7,-4.7,1.12,-5,-5,1.4,-5,-5,5.203873E-17,-5,-5,0.56,-5,-5,5.203873E-17,-2,-5,0.56,-4.7,-5,1.12,-4.7,-5,2.8,-4.25,-5,1.4,-5,-5,2.8,-5,-5,2.8,-2,-5,1.4,-2,-2,5.203873E-17,-2,-5,5.203873E-17,-2,-2,1.4,-2,-5,1.4,-2,-2,2.8,-2,-5,2.8,-2,-2,5.203873E-17,-2,-2,1.4,-2,-2,5.203873E-17,-5,-2,1.4,-5,-2,2.8,-2,-2,2.8,-5,-4.25,2.8,-5,-5,2.8,-5,-2,2.8,-5,-2,1.4,-5,-5,1.4,-5,-4.7,1.12,-5,-4.7,0.56,-5,-2,5.203873E-17,-5,-5,0.56,-5,-5,5.203873E-17,-5,-5,0.56,-4.7,-4.7,0.56,-4.7,-5,1.12,-4.7,-4.7,1.12,-4.7,-2,2.8,-5,-2,2.8,-2,-4.25,2.8,-5,-4.25,2.8,-4.25,-5,2.8,-2,-5,2.8,-4.25,-4.7,0.56,-5,-4.7,1.12,-5,-4.7,0.56,-4.7,-4.7,1.12,-4.7,5,5.203873E-17,-5,5,5.203873E-17,5,-2,5.203873E-17,-5,-2,5.203873E-17,-2,-5,5.203873E-17,5,-5,5.203873E-17,-2,-2,5.203873E-17,-2,-2,5.203873E-17,-5,-5,5.203873E-17,-2,-5,5.203873E-17,-5,-4.7,0.56,-5,-4.7,0.56,-4.7,-5,0.56,-5,-5,0.56,-4.7,-5,2.8,-5,5,1.4,-5,5,1.4,5,-2,1.4,-5,-2,1.4,-2,-5,1.4,5,-5,1.4,-2,-2,1.4,-5,5,1.4,5,5,1.4,-5,-2,1.4,-2,-5,1.4,5,-5,1.4,-2 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,9,-9,11,10,-9,10,11,-13,13,12,-12,14,11,-9,15,14,-9,16,18,-18,19,17,-19,18,20,-20,21,19,-21,22,24,-24,25,23,-25,23,25,-27,27,26,-26,28,30,-30,30,31,-30,29,31,-33,32,31,-34,33,31,-35,35,34,-32,34,35,-37,37,36,-36,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,43,-46,47,46,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,53,-56,57,56,-56,58,60,-60,61,59,-61,62,64,-64,65,63,-65,44,66,-46,47,45,-67,67,69,-69,70,68,-70,71,68,-71,72,71,-71,73,75,-75,74,76,-74,74,77,-77,77,78,-77 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *158 { + a: 18.50394,16.53605,19.68504,18.15166,19.68504,16.53605,-18.50394,16.53605,-19.68504,16.53605,-19.68504,18.15166,-19.68504,1.562725E-12,-19.68504,2.204724,-7.874016,1.562725E-12,-18.50394,2.204724,-18.50394,4.409449,-16.73228,11.02362,-19.68504,5.511811,-19.68504,11.02362,-7.874016,11.02362,-7.874016,5.511811,-7.874015,2.048769E-16,-19.68504,2.048769E-16,-7.874015,5.511811,-19.68504,5.511811,-7.874015,11.02362,-19.68504,11.02362,7.874016,2.048769E-16,7.874016,5.511811,19.68504,2.048769E-16,19.68504,5.511811,7.874016,11.02362,19.68504,11.02362,16.73228,11.02362,19.68504,11.02362,7.874015,11.02362,7.874015,5.511811,19.68504,5.511811,18.50394,4.409449,18.50394,2.204724,7.874015,-1.476681E-12,19.68504,2.204724,19.68504,-1.476681E-12,19.68504,2.204724,18.50394,2.204724,19.68504,4.409449,18.50394,4.409449,7.874015,-19.68504,7.874015,-7.874016,16.73228,-19.68504,16.73228,-16.73228,19.68504,-7.874016,19.68504,-16.73228,-19.68504,2.204724,-19.68504,4.409449,-18.50394,2.204724,-18.50394,4.409449,-19.68504,-19.68504,-19.68504,19.68504,7.874015,-19.68504,7.874015,-7.874016,19.68504,19.68504,19.68504,-7.874016,-7.874015,-7.874016,-7.874015,-19.68504,-19.68504,-7.874016,-19.68504,-19.68504,18.50394,-19.68504,18.50394,-18.50394,19.68504,-19.68504,19.68504,-18.50394,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,19.68504,7.874015,-19.68504,7.874015,-7.874016,19.68504,19.68504,19.68504,-7.874016,7.874015,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,7.874015,-7.874016,19.68504,19.68504,19.68504,-7.874016 + } + UVIndex: *156 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,9,8,11,10,8,10,11,12,13,12,11,14,11,8,15,14,8,16,18,17,19,17,18,18,20,19,21,19,20,22,24,23,25,23,24,23,25,26,27,26,25,28,30,29,30,31,29,29,31,32,32,31,33,33,31,34,35,34,31,34,35,36,37,36,35,38,40,39,41,39,40,42,44,43,45,43,44,46,43,45,47,46,45,48,50,49,51,49,50,52,54,53,55,53,54,56,53,55,57,56,55,58,60,59,61,59,60,62,64,63,65,63,64,44,66,45,47,45,66,67,69,68,70,68,69,71,68,70,72,71,70,73,75,74,74,76,73,74,77,76,77,78,76 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainCornerInnerSquare, Model::RootNode + C: "OO",5665519333172035276,0 + + ;Geometry::, Model::Mesh fountainCornerInnerSquare + C: "OO",4754322616590903800,5665519333172035276 + + ;Material::stone, Model::Mesh fountainCornerInnerSquare + C: "OO",7184,5665519333172035276 + + ;Material::stoneDark, Model::Mesh fountainCornerInnerSquare + C: "OO",7174,5665519333172035276 + + ;Material::water, Model::Mesh fountainCornerInnerSquare + C: "OO",7194,5665519333172035276 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInnerSquare.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInnerSquare.fbx.import new file mode 100644 index 0000000..194cdf3 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInnerSquare.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dbbxxm0bdat72" +path="res://.godot/imported/fountainCornerInnerSquare.fbx-00af1cabf405a62bc0a2670c136bad31.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCornerInnerSquare.fbx" +dest_files=["res://.godot/imported/fountainCornerInnerSquare.fbx-00af1cabf405a62bc0a2670c136bad31.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCurved.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCurved.fbx new file mode 100644 index 0000000..cec5904 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCurved.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 493 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainCurved.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainCurved.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5705836970327541244, "Model::fountainCurved", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4942893619488260381, "Geometry::", "Mesh" { + Vertices: *1251 { + a: 5,1.4,-5,3.694738,1.4,-4.914449,5,1.12,-4.7,3.733896,1.12,-4.617015,0.15,1.12,-3.400446,1.299441E-13,1.4,-3.660254,-0.9049859,1.12,-2.695527,-1.087614,1.4,-2.933533,3.733896,1.12,-4.617015,3.694738,1.4,-4.914449,2.489455,1.12,-4.36948,2.411809,1.4,-4.659258,5,0,-5,3.694738,0,-4.914449,5,0,-2,4.086317,0,-1.940114,3.188267,0,-1.761481,2.411809,0,-4.659258,2.321216,0,-1.467157,1.173166,0,-4.238795,1.5,0,-1.062178,0.7386699,0,-0.5534734,1.299441E-13,0,-3.660254,0.05025253,0,0.05025253,-0.5534734,0,0.7386699,-1.087614,0,-2.933533,-1.062178,0,1.5,-1.467157,0,2.321216,-2.071068,0,-2.071068,-1.761481,0,3.188267,-1.940114,0,4.086317,-2,0,5,-5,0,5,-2.933533,0,-1.087614,-3.660254,0,-3.753939E-13,-4.238795,0,1.173166,-4.659258,0,2.411809,-4.914449,0,3.694738,-1.761481,2.8,3.188267,-1.761481,1.4,3.188267,-1.940114,2.8,4.086317,-1.940114,1.4,4.086317,-1.940114,0,4.086317,-1.761481,0,3.188267,2.489455,1.12,-4.36948,2.411809,1.4,-4.659258,1.287971,1.12,-3.961631,1.173166,1.4,-4.238795,-2.695527,1.12,-0.9049859,-2.933533,1.4,-1.087614,-3.400446,1.12,0.15,-3.660254,1.4,-3.753939E-13,-1.940114,2.8,4.086317,-1.940114,1.4,4.086317,-2,2.8,5,-2,1.4,5,-2,0,5,-1.940114,0,4.086317,0.05025253,2.8,0.05025253,0.7386699,2.8,-0.5534734,0.05025253,1.4,0.05025253,0.7386699,1.4,-0.5534734,0.05025253,0,0.05025253,0.7386699,0,-0.5534734,0.05025253,2.8,0.05025253,0.05025253,1.4,0.05025253,-0.5534734,2.8,0.7386699,-0.5534734,1.4,0.7386699,-0.5534734,0,0.7386699,0.05025253,0,0.05025253,1.5,2.8,-1.062178,2.321216,2.8,-1.467157,1.5,1.4,-1.062178,2.321216,1.4,-1.467157,1.5,0,-1.062178,2.321216,0,-1.467157,3.188267,2.8,-1.761481,4.086317,2.8,-1.940114,3.188267,1.4,-1.761481,4.086317,1.4,-1.940114,3.188267,0,-1.761481,4.086317,0,-1.940114,0.7386699,2.8,-0.5534734,1.5,2.8,-1.062178,0.7386699,1.4,-0.5534734,1.5,1.4,-1.062178,0.7386699,0,-0.5534734,1.5,0,-1.062178,-0.9049859,1.12,-2.695527,-1.087614,1.4,-2.933533,-1.858936,1.12,-1.858936,-2.071068,1.4,-2.071068,1.287971,1.12,-3.961631,1.173166,1.4,-4.238795,0.15,1.12,-3.400446,1.299441E-13,1.4,-3.660254,-1.858936,1.12,-1.858936,-2.071068,1.4,-2.071068,-2.695527,1.12,-0.9049859,-2.933533,1.4,-1.087614,-2,0,5,-5,0,5,-2,1.4,5,-4.7,0.56,5,-5,0.56,5,-4.7,1.12,5,-5,1.4,5,-5,2.8,5,-4.25,2.8,5,-2,2.8,5,2.321216,2.8,-1.467157,3.188267,2.8,-1.761481,2.321216,1.4,-1.467157,3.188267,1.4,-1.761481,2.321216,0,-1.467157,3.188267,0,-1.761481,-3.400446,1.12,0.15,-3.660254,1.4,-3.753939E-13,-3.961631,1.12,1.287971,-4.238795,1.4,1.173166,-0.5534734,2.8,0.7386699,-0.5534734,1.4,0.7386699,-1.062178,2.8,1.5,-1.062178,1.4,1.5,-1.062178,0,1.5,-0.5534734,0,0.7386699,-1.062178,2.8,1.5,-1.062178,1.4,1.5,-1.467157,2.8,2.321216,-1.467157,1.4,2.321216,-1.467157,0,2.321216,-1.062178,0,1.5,4.086317,2.8,-1.940114,5,2.8,-2,4.086317,1.4,-1.940114,5,1.4,-2,4.086317,0,-1.940114,5,0,-2,-1.467157,2.8,2.321216,-1.467157,1.4,2.321216,-1.761481,2.8,3.188267,-1.761481,1.4,3.188267,-1.761481,0,3.188267,-1.467157,0,2.321216,-4.914449,1.4,3.694738,-4.914449,2.8,3.694738,-5,1.4,5,-5,2.8,5,3.694738,1.4,-4.914449,5,1.4,-5,3.694738,2.8,-4.914449,5,2.8,-5,-0.9049859,0.56,-2.695527,0.15,0.56,-3.400446,-0.9049859,1.12,-2.695527,0.15,1.12,-3.400446,3.733896,0.56,-4.617015,5,0.56,-4.7,3.733896,1.12,-4.617015,5,1.12,-4.7,0.15,0.56,-3.400446,1.287971,0.56,-3.961631,0.15,1.12,-3.400446,1.287971,1.12,-3.961631,-1.087614,1.4,-2.933533,1.299441E-13,1.4,-3.660254,-1.087614,2.8,-2.933533,1.299441E-13,2.8,-3.660254,-2.695527,0.56,-0.9049859,-2.695527,1.12,-0.9049859,-3.400446,0.56,0.15,-3.400446,1.12,0.15,1.173166,1.4,-4.238795,2.411809,1.4,-4.659258,1.173166,2.8,-4.238795,2.411809,2.8,-4.659258,-4.659258,1.4,2.411809,-4.659258,2.8,2.411809,-4.914449,1.4,3.694738,-4.914449,2.8,3.694738,-3.961631,1.12,1.287971,-4.238795,1.4,1.173166,-4.36948,1.12,2.489455,-4.659258,1.4,2.411809,-1.858936,0.56,-1.858936,-1.858936,1.12,-1.858936,-2.695527,0.56,-0.9049859,-2.695527,1.12,-0.9049859,-2.071068,1.4,-2.071068,-2.071068,2.8,-2.071068,-2.933533,1.4,-1.087614,-2.933533,2.8,-1.087614,1.299441E-13,1.4,-3.660254,1.173166,1.4,-4.238795,1.299441E-13,2.8,-3.660254,1.173166,2.8,-4.238795,-2.071068,1.4,-2.071068,-1.087614,1.4,-2.933533,-2.071068,2.8,-2.071068,-1.087614,2.8,-2.933533,5,0,-2,5,0,5,4.086317,0,-1.940114,-2,0,5,3.188267,0,-1.761481,2.321216,0,-1.467157,1.5,0,-1.062178,0.7386699,0,-0.5534734,0.05025253,0,0.05025253,-0.5534734,0,0.7386699,-1.062178,0,1.5,-1.467157,0,2.321216,-1.761481,0,3.188267,-1.940114,0,4.086317,1.287971,0.56,-3.961631,2.489455,0.56,-4.36948,1.287971,1.12,-3.961631,2.489455,1.12,-4.36948,-3.660254,1.4,-3.753939E-13,-3.660254,2.8,-3.753939E-13,-4.238795,1.4,1.173166,-4.238795,2.8,1.173166,-2.933533,1.4,-1.087614,-2.933533,2.8,-1.087614,-3.660254,1.4,-3.753939E-13,-3.660254,2.8,-3.753939E-13,5,2.8,-5,5,1.4,-5,5,2.8,-4.25,5,1.12,-4.7,5,0.56,-4.7,5,0,-2,5,2.8,-2,5,1.4,-2,5,0,-5,5,0.56,-5,-3.961631,0.56,1.287971,-3.961631,1.12,1.287971,-4.36948,0.56,2.489455,-4.36948,1.12,2.489455,-1.858936,0.56,-1.858936,-0.9049859,0.56,-2.695527,-1.858936,1.12,-1.858936,-0.9049859,1.12,-2.695527,-3.400446,0.56,0.15,-3.400446,1.12,0.15,-3.961631,0.56,1.287971,-3.961631,1.12,1.287971,-4.617015,0.56,3.733896,-4.617015,1.12,3.733896,-4.7,0.56,5,-4.7,1.12,5,2.411809,1.4,-4.659258,3.694738,1.4,-4.914449,2.411809,2.8,-4.659258,3.694738,2.8,-4.914449,5,2.8,-4.25,5,2.8,-2,3.792633,2.8,-4.170865,4.086317,2.8,-1.940114,3.188267,2.8,-1.761481,2.605924,2.8,-3.934814,2.321216,2.8,-1.467157,1.460178,2.8,-3.545886,1.5,2.8,-1.062178,0.7386699,2.8,-0.5534734,0.375,2.8,-3.010735,0.05025253,2.8,0.05025253,-0.6310433,2.8,-2.338518,-0.5534734,2.8,0.7386699,-1.062178,2.8,1.5,-1.540738,2.8,-1.540738,-1.467157,2.8,2.321216,-1.761481,2.8,3.188267,-2.338518,2.8,-0.6310433,-1.940114,2.8,4.086317,-2,2.8,5,-4.25,2.8,5,-3.010735,2.8,0.375,-3.545886,2.8,1.460178,-3.934814,2.8,2.605924,-4.170865,2.8,3.792633,-4.617015,1.12,3.733896,-4.914449,1.4,3.694738,-4.7,1.12,5,-5,1.4,5,2.489455,0.56,-4.36948,3.733896,0.56,-4.617015,2.489455,1.12,-4.36948,3.733896,1.12,-4.617015,-4.36948,0.56,2.489455,-4.36948,1.12,2.489455,-4.617015,0.56,3.733896,-4.617015,1.12,3.733896,-4.238795,1.4,1.173166,-4.238795,2.8,1.173166,-4.659258,1.4,2.411809,-4.659258,2.8,2.411809,-4.36948,1.12,2.489455,-4.659258,1.4,2.411809,-4.617015,1.12,3.733896,-4.914449,1.4,3.694738,5,2.8,-5,3.694738,2.8,-4.914449,2.411809,2.8,-4.659258,1.173166,2.8,-4.238795,1.299441E-13,2.8,-3.660254,-1.087614,2.8,-2.933533,-2.071068,2.8,-2.071068,-2.933533,2.8,-1.087614,-3.660254,2.8,-3.753939E-13,-4.238795,2.8,1.173166,-4.659258,2.8,2.411809,-5,2.8,5,-4.914449,2.8,3.694738,3.694738,0,-4.914449,5,0,-5,3.694738,0.56,-4.914449,5,0.56,-5,-2.933533,0,-1.087614,-2.933533,0.56,-1.087614,-3.660254,0,-3.753939E-13,-3.660254,0.56,-3.753939E-13,2.411809,0,-4.659258,3.694738,0,-4.914449,2.411809,0.56,-4.659258,3.694738,0.56,-4.914449,1.299441E-13,0,-3.660254,1.173166,0,-4.238795,1.299441E-13,0.56,-3.660254,1.173166,0.56,-4.238795,1.173166,0,-4.238795,2.411809,0,-4.659258,1.173166,0.56,-4.238795,2.411809,0.56,-4.659258,-2.071068,0,-2.071068,-1.087614,0,-2.933533,-2.071068,0.56,-2.071068,-1.087614,0.56,-2.933533,-4.659258,0,2.411809,-4.659258,0.56,2.411809,-4.914449,0,3.694738,-4.914449,0.56,3.694738,-1.087614,0,-2.933533,1.299441E-13,0,-3.660254,-1.087614,0.56,-2.933533,1.299441E-13,0.56,-3.660254,-4.914449,0,3.694738,-4.914449,0.56,3.694738,-5,0,5,-5,0.56,5,5,0.56,-5,5,0.56,-4.7,3.694738,0.56,-4.914449,3.733896,0.56,-4.617015,2.489455,0.56,-4.36948,2.411809,0.56,-4.659258,1.287971,0.56,-3.961631,1.173166,0.56,-4.238795,0.15,0.56,-3.400446,1.299441E-13,0.56,-3.660254,-0.9049859,0.56,-2.695527,-1.087614,0.56,-2.933533,-1.858936,0.56,-1.858936,-2.071068,0.56,-2.071068,-2.695527,0.56,-0.9049859,-2.933533,0.56,-1.087614,-3.400446,0.56,0.15,-3.660254,0.56,-3.753939E-13,-3.961631,0.56,1.287971,-4.238795,0.56,1.173166,-4.36948,0.56,2.489455,-4.659258,0.56,2.411809,-4.617015,0.56,3.733896,-4.7,0.56,5,-4.914449,0.56,3.694738,-5,0.56,5,-3.660254,0,-3.753939E-13,-3.660254,0.56,-3.753939E-13,-4.238795,0,1.173166,-4.238795,0.56,1.173166,-4.238795,0,1.173166,-4.238795,0.56,1.173166,-4.659258,0,2.411809,-4.659258,0.56,2.411809,-2.071068,0,-2.071068,-2.071068,0.56,-2.071068,-2.933533,0,-1.087614,-2.933533,0.56,-1.087614,5,1.4,-2,5,1.4,5,4.086317,1.4,-1.940114,-2,1.4,5,3.188267,1.4,-1.761481,2.321216,1.4,-1.467157,1.5,1.4,-1.062178,0.7386699,1.4,-0.5534734,0.05025253,1.4,0.05025253,-0.5534734,1.4,0.7386699,-1.062178,1.4,1.5,-1.467157,1.4,2.321216,-1.761481,1.4,3.188267,-1.940114,1.4,4.086317,4.086317,1.4,-1.940114,5,1.4,5,5,1.4,-2,-2,1.4,5,3.188267,1.4,-1.761481,2.321216,1.4,-1.467157,1.5,1.4,-1.062178,0.7386699,1.4,-0.5534734,0.05025253,1.4,0.05025253,-0.5534734,1.4,0.7386699,-1.062178,1.4,1.5,-1.467157,1.4,2.321216,-1.761481,1.4,3.188267,-1.940114,1.4,4.086317 + } + PolygonVertexIndex: *876 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,13,-16,17,13,-17,18,17,-17,19,17,-19,20,19,-19,21,19,-21,22,19,-22,23,22,-22,24,22,-24,25,22,-25,26,25,-25,27,25,-27,28,25,-28,29,28,-28,30,28,-30,31,28,-31,32,28,-32,33,28,-33,34,33,-33,35,34,-33,36,35,-33,37,36,-33,38,40,-40,41,39,-41,41,42,-40,43,39,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,55,56,-54,57,53,-57,58,60,-60,61,59,-61,60,62,-62,63,61,-63,64,66,-66,67,65,-67,67,68,-66,69,65,-69,70,72,-72,73,71,-73,72,74,-74,75,73,-75,76,78,-78,79,77,-79,78,80,-80,81,79,-81,82,84,-84,85,83,-85,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,103,104,-102,105,103,-103,106,105,-103,107,106,-103,108,107,-103,109,108,-103,110,112,-112,113,111,-113,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,123,124,-122,125,121,-125,126,128,-128,129,127,-129,129,130,-128,131,127,-131,132,134,-134,135,133,-135,134,136,-136,137,135,-137,138,140,-140,141,139,-141,141,142,-140,143,139,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,203,-203,205,203,-205,206,203,-206,207,203,-207,208,203,-208,209,203,-209,210,203,-210,211,203,-211,212,203,-212,213,203,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,229,-229,228,231,-231,232,231,-229,233,231,-233,231,234,-231,235,230,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,259,-259,261,260,-259,262,260,-262,263,262,-262,264,262,-264,265,264,-264,266,265,-264,267,265,-267,268,267,-267,269,267,-269,270,269,-269,271,270,-269,272,270,-272,273,272,-272,274,273,-272,275,273,-275,276,275,-275,277,276,-275,278,277,-275,279,277,-279,280,277,-280,281,277,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,303,-257,258,256,-304,261,258,-304,304,261,-304,263,261,-305,305,263,-305,266,263,-306,306,266,-306,268,266,-307,307,268,-307,271,268,-308,308,271,-308,274,271,-309,309,274,-309,278,274,-310,310,278,-310,279,278,-311,280,279,-311,311,280,-311,281,280,-312,277,281,-312,312,277,-312,313,277,-313,314,313,-313,315,317,-317,318,316,-318,319,321,-321,322,320,-322,323,325,-325,326,324,-326,327,329,-329,330,328,-330,331,333,-333,334,332,-334,335,337,-337,338,336,-338,339,341,-341,342,340,-342,343,345,-345,346,344,-346,347,349,-349,350,348,-350,351,353,-353,354,352,-354,355,354,-354,356,355,-354,357,355,-357,358,357,-357,359,357,-359,360,359,-359,361,359,-361,362,361,-361,363,361,-363,364,363,-363,365,363,-365,366,365,-365,367,365,-367,368,367,-367,369,367,-369,370,369,-369,371,369,-371,372,371,-371,373,371,-373,374,373,-373,375,374,-373,376,374,-376,377,379,-379,380,378,-380,381,383,-383,384,382,-384,385,387,-387,388,386,-388,389,391,-391,392,390,-392,393,392,-392,394,392,-394,395,392,-395,396,392,-396,397,392,-397,398,392,-398,399,392,-399,400,392,-400,401,392,-401,402,392,-402,403,405,-405,404,406,-404,406,407,-404,406,408,-408,406,409,-409,406,410,-410,406,411,-411,406,412,-412,406,413,-413,406,414,-414,406,415,-415,406,416,-416 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2628 { + a: -0.04467685,-0.7303253,-0.681637,-0.04467685,-0.7303253,-0.681637,-0.0890604,-0.7310552,-0.6764809,-0.0890604,-0.7310552,-0.6764809,-0.0890604,-0.7310552,-0.6764809,-0.04467685,-0.7303253,-0.681637,-0.3411591,-0.7310552,-0.5909049,-0.415369,-0.7310552,-0.5413194,-0.3411591,-0.7310552,-0.5909049,-0.415369,-0.7310552,-0.5413194,-0.3411591,-0.7310552,-0.5909049,-0.415369,-0.7310552,-0.5413194,-0.0890604,-0.7310552,-0.6764809,-0.1765969,-0.7310552,-0.6590688,-0.0890604,-0.7310552,-0.6764809,-0.1765969,-0.7310552,-0.6590688,-0.0890604,-0.7310552,-0.6764809,-0.1765969,-0.7310552,-0.6590688,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9914449,0,0.1305262,-0.1765969,-0.7310552,-0.6590688,-0.2611119,-0.7310553,-0.6303799,-0.1765969,-0.7310552,-0.6590688,-0.2611119,-0.7310553,-0.6303799,-0.1765969,-0.7310552,-0.6590688,-0.2611119,-0.7310553,-0.6303799,-0.5413195,-0.7310552,-0.415369,-0.5909049,-0.7310552,-0.3411591,-0.5413195,-0.7310552,-0.415369,-0.5909049,-0.7310552,-0.3411591,-0.5413195,-0.7310552,-0.415369,-0.5909049,-0.7310552,-0.3411591,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9978589,0,0.06540313,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,-0.415369,-0.7310552,-0.5413194,-0.4824718,-0.7310552,-0.4824718,-0.415369,-0.7310552,-0.5413194,-0.4824718,-0.7310552,-0.4824718,-0.415369,-0.7310552,-0.5413194,-0.4824718,-0.7310552,-0.4824718,-0.2611119,-0.7310553,-0.6303799,-0.3411591,-0.7310552,-0.5909049,-0.2611119,-0.7310553,-0.6303799,-0.3411591,-0.7310552,-0.5909049,-0.2611119,-0.7310553,-0.6303799,-0.3411591,-0.7310552,-0.5909049,-0.4824718,-0.7310552,-0.4824718,-0.5413195,-0.7310552,-0.415369,-0.4824718,-0.7310552,-0.4824718,-0.5413195,-0.7310552,-0.415369,-0.4824718,-0.7310552,-0.4824718,-0.5413195,-0.7310552,-0.415369,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,-0.5909049,-0.7310552,-0.3411591,-0.6303798,-0.7310552,-0.2611119,-0.5909049,-0.7310552,-0.3411591,-0.6303798,-0.7310552,-0.2611119,-0.5909049,-0.7310552,-0.3411591,-0.6303798,-0.7310552,-0.2611119,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.8660254,0,0.5,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.9238795,0,0.3826834,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.1305262,0,0.9914449,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9659258,0,0.258819,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.1305262,0,-0.9914449,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.1305262,0,-0.9914449,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.6303798,-0.7310552,-0.2611119,-0.6590688,-0.7310552,-0.1765969,-0.6303798,-0.7310552,-0.2611119,-0.6590688,-0.7310552,-0.1765969,-0.6303798,-0.7310552,-0.2611119,-0.6590688,-0.7310552,-0.1765969,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6764809,-0.7310552,-0.0890604,-0.681637,-0.7303253,-0.04467685,-0.6764809,-0.7310552,-0.0890604,-0.681637,-0.7303253,-0.04467685,-0.6764809,-0.7310552,-0.0890604,-0.681637,-0.7303253,-0.04467685,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.6590688,-0.7310552,-0.1765969,-0.6764809,-0.7310552,-0.0890604,-0.6590688,-0.7310552,-0.1765969,-0.6764809,-0.7310552,-0.0890604,-0.6590688,-0.7310552,-0.1765969,-0.6764809,-0.7310552,-0.0890604,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.1305262,0,-0.9914449,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *834 { + a: -20.93036,17.17055,-15.7805,17.17055,-20.85311,15.55678,-15.85775,15.55678,-7.928769,10.902,-8.006017,12.51576,-2.933412,10.902,-2.856164,12.51576,-17.96412,13.9378,-18.04136,15.55156,-12.96876,13.9378,-12.89151,15.55156,19.68504,-19.68504,14.54621,-19.34822,19.68504,-7.874016,16.08786,-7.638244,12.55223,-6.934964,9.495314,-18.34354,9.138645,-5.776207,4.618762,-16.68817,5.905512,-4.181802,2.908149,-2.179029,5.115908E-13,-14.41045,0.1978446,0.1978446,-2.179029,2.908149,-4.281946,-11.54934,-4.181802,5.905512,-5.776207,9.138645,-8.153811,-8.153811,-6.934964,12.55223,-7.638244,16.08786,-7.874016,19.68504,-19.68504,19.68504,-11.54934,-4.281946,-14.41045,-1.477929E-12,-16.68817,4.618762,-18.34354,9.495314,-19.34822,14.54621,-13.66399,11.02362,-13.66399,5.511811,-17.26888,11.02362,-17.26888,5.511811,-17.26888,-1.854479E-12,-13.66399,-1.854479E-12,-14.81049,12.60806,-14.88773,14.22182,-9.81513,12.60806,-9.737882,14.22182,2.933412,10.902,2.856164,12.51576,7.928769,10.902,8.006017,12.51576,-16.55298,11.02362,-16.55298,5.511811,-20.15788,11.02362,-20.15788,5.511811,-20.15788,-2.414614E-12,-16.55298,-2.414614E-12,0.01829944,11.02362,3.623196,11.02362,0.01829944,5.511811,3.623196,5.511811,0.01829944,8.040212E-14,3.623196,8.040212E-14,-0.01829944,11.02362,-0.01829944,5.511811,-3.623196,11.02362,-3.623196,5.511811,-3.623196,9.194787E-14,-0.01829944,9.194787E-14,7.146057,11.02362,10.75095,11.02362,7.146057,5.511811,10.75095,5.511811,7.146057,-2.26217E-13,10.75095,-2.26217E-13,13.66399,11.02362,17.26888,11.02362,13.66399,5.511811,17.26888,5.511811,13.66399,-3.701858E-13,17.26888,-3.701858E-13,3.628642,11.02362,7.233539,11.02362,3.628642,5.511811,7.233539,5.511811,3.628642,-4.782978E-14,7.233539,-4.782978E-14,-4.318427,10.55487,-4.395674,12.16863,0.6769307,10.55487,0.7541785,12.16863,-11.44618,11.59032,-11.52343,13.20409,-6.450826,11.59032,-6.373579,13.20409,-0.6769307,10.55487,-0.7541785,12.16863,4.318427,10.55487,4.395674,12.16863,-7.874016,9.315457E-14,-19.68504,9.315457E-14,-7.874016,5.511811,-18.50394,2.204724,-19.68504,2.204724,-18.50394,4.409449,-19.68504,5.511811,-19.68504,11.02362,-16.73228,11.02362,-7.874016,11.02362,10.51036,11.02362,14.11526,11.02362,10.51036,5.511811,14.11526,5.511811,10.51036,-3.649612E-13,14.11526,-3.649612E-13,6.450826,11.59032,6.373579,13.20409,11.44618,11.59032,11.52343,13.20409,-3.628642,11.02362,-3.628642,5.511811,-7.233539,11.02362,-7.233539,5.511811,-7.233539,-7.114075E-14,-3.628642,-7.114075E-14,-7.146057,11.02362,-7.146057,5.511811,-10.75095,11.02362,-10.75095,5.511811,-10.75095,-4.429386E-13,-7.146057,-4.429386E-13,16.55298,11.02362,20.15788,11.02362,16.55298,5.511811,20.15788,5.511811,16.55298,-1.754003E-13,20.15788,-1.754003E-13,-10.51036,11.02362,-10.51036,5.511811,-14.11526,11.02362,-14.11526,5.511811,-14.11526,-1.038688E-12,-10.51036,-1.038688E-12,15.7805,5.511811,15.7805,11.02362,20.93036,5.511811,20.93036,11.02362,-15.7805,5.511811,-20.93036,5.511811,-15.7805,11.02362,-20.93036,11.02362,-2.933412,2.204724,-7.928769,2.204724,-2.933412,4.409449,-7.928769,4.409449,-15.85775,2.204724,-20.85311,2.204724,-15.85775,4.409449,-20.85311,4.409449,-6.450826,2.204724,-11.44618,2.204724,-6.450826,4.409449,-11.44618,4.409449,-2.856164,5.511811,-8.006017,5.511811,-2.856164,11.02362,-8.006017,11.02362,2.933412,2.204724,2.933412,4.409449,7.928769,2.204724,7.928769,4.409449,-9.737882,5.511811,-14.88773,5.511811,-9.737882,11.02362,-14.88773,11.02362,12.89151,5.511811,12.89151,11.02362,18.04136,5.511811,18.04136,11.02362,9.81513,12.60806,9.737882,14.22182,14.81049,12.60806,14.88773,14.22182,-0.6769307,2.204724,-0.6769307,4.409449,4.318427,2.204724,4.318427,4.409449,-0.7541785,5.511811,-0.7541785,11.02362,4.395674,5.511811,4.395674,11.02362,-6.373579,5.511811,-11.52343,5.511811,-6.373579,11.02362,-11.52343,11.02362,0.7541785,5.511811,-4.395674,5.511811,0.7541785,11.02362,-4.395674,11.02362,-19.68504,-7.874016,-19.68504,19.68504,-16.08786,-7.638244,7.874016,19.68504,-12.55223,-6.934964,-9.138645,-5.776207,-5.905512,-4.181802,-2.908149,-2.179029,-0.1978446,0.1978446,2.179029,2.908149,4.181802,5.905512,5.776207,9.138645,6.934964,12.55223,7.638244,16.08786,-9.81513,2.204724,-14.81049,2.204724,-9.81513,4.409449,-14.81049,4.409449,6.373579,5.511811,6.373579,11.02362,11.52343,5.511811,11.52343,11.02362,2.856164,5.511811,2.856164,11.02362,8.006017,5.511811,8.006017,11.02362,19.68504,11.02362,19.68504,5.511811,16.73228,11.02362,18.50394,4.409449,18.50394,2.204724,7.874016,1.002887E-15,7.874016,11.02362,7.874016,5.511811,19.68504,1.002887E-15,19.68504,2.204724,9.81513,2.204724,9.81513,4.409449,14.81049,2.204724,14.81049,4.409449,0.6769307,2.204724,-4.318427,2.204724,0.6769307,4.409449,-4.318427,4.409449,6.450826,2.204724,6.450826,4.409449,11.44618,2.204724,11.44618,4.409449,15.85775,2.204724,15.85775,4.409449,20.85311,2.204724,20.85311,4.409449,-12.89151,5.511811,-18.04136,5.511811,-12.89151,11.02362,-18.04136,11.02362,-19.68504,-16.73228,-19.68504,-7.874016,-14.93163,-16.42073,-16.08786,-7.638244,-12.55223,-6.934964,-10.25954,-15.49139,-9.138645,-5.776207,-5.748733,-13.96018,-5.905512,-4.181802,-2.908149,-2.179029,-1.476378,-11.85329,-0.1978446,0.1978446,2.484422,-9.206765,2.179029,2.908149,4.181802,5.905512,6.065897,-6.065897,5.776207,9.138645,6.934964,12.55223,9.206765,-2.484422,7.638244,16.08786,7.874016,19.68504,16.73228,19.68504,11.85329,1.476378,13.96018,5.748733,15.49139,10.25954,16.42073,14.93163,15.85775,15.55678,15.7805,17.17055,20.85311,15.55678,20.93036,17.17055,-12.96876,2.204724,-17.96412,2.204724,-12.96876,4.409449,-17.96412,4.409449,12.96876,2.204724,12.96876,4.409449,17.96412,2.204724,17.96412,4.409449,9.737882,5.511811,9.737882,11.02362,14.88773,5.511811,14.88773,11.02362,12.96876,13.9378,12.89151,15.55156,17.96412,13.9378,18.04136,15.55156,-19.68504,-19.68504,-14.54621,-19.34822,-9.495314,-18.34354,-4.618762,-16.68817,-5.107845E-13,-14.41045,4.281946,-11.54934,8.153811,-8.153811,11.54934,-4.281946,14.41045,-1.480897E-12,16.68817,4.618762,18.34354,9.495314,19.68504,19.68504,19.34822,14.54621,-15.7805,0,-20.93036,0,-15.7805,2.204724,-20.93036,2.204724,2.856164,0,2.856164,2.204724,8.006017,0,8.006017,2.204724,-12.89151,0,-18.04136,0,-12.89151,2.204724,-18.04136,2.204724,-6.373579,0,-11.52343,0,-6.373579,2.204724,-11.52343,2.204724,-9.737882,0,-14.88773,0,-9.737882,2.204724,-14.88773,2.204724,0.7541785,0,-4.395674,0,0.7541785,2.204724,-4.395674,2.204724,12.89151,0,12.89151,2.204724,18.04136,0,18.04136,2.204724,-2.856164,0,-8.006017,0,-2.856164,2.204724,-8.006017,2.204724,15.7805,0,15.7805,2.204724,20.93036,0,20.93036,2.204724,-19.68504,-19.68504,-19.68504,-18.50394,-14.54621,-19.34822,-14.70038,-18.17723,-9.801005,-17.20268,-9.495314,-18.34354,-5.070751,-15.59697,-4.618762,-16.68817,-0.5905512,-13.38758,-5.115938E-13,-14.41045,3.562937,-10.61231,4.281946,-11.54934,7.318645,-7.318645,8.153811,-8.153811,10.61231,-3.562937,11.54934,-4.281946,13.38758,0.5905512,14.41045,-1.477937E-12,15.59697,5.070751,16.68817,4.618762,17.20268,9.801005,18.34354,9.495314,18.17723,14.70038,18.50394,19.68504,19.34822,14.54621,19.68504,19.68504,6.373579,0,6.373579,2.204724,11.52343,0,11.52343,2.204724,9.737882,0,9.737882,2.204724,14.88773,0,14.88773,2.204724,-0.7541785,0,-0.7541785,2.204724,4.395674,0,4.395674,2.204724,-19.68504,-7.874016,-19.68504,19.68504,-16.08786,-7.638244,7.874016,19.68504,-12.55223,-6.934964,-9.138645,-5.776207,-5.905512,-4.181802,-2.908149,-2.179029,-0.1978446,0.1978446,2.179029,2.908149,4.181802,5.905512,5.776207,9.138645,6.934964,12.55223,7.638244,16.08786,-16.08786,-7.638244,-19.68504,19.68504,-19.68504,-7.874016,7.874016,19.68504,-12.55223,-6.934964,-9.138645,-5.776207,-5.905512,-4.181802,-2.908149,-2.179029,-0.1978446,0.1978446,2.179029,2.908149,4.181802,5.905512,5.776207,9.138645,6.934964,12.55223,7.638244,16.08786 + } + UVIndex: *876 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,13,15,17,13,16,18,17,16,19,17,18,20,19,18,21,19,20,22,19,21,23,22,21,24,22,23,25,22,24,26,25,24,27,25,26,28,25,27,29,28,27,30,28,29,31,28,30,32,28,31,33,28,32,34,33,32,35,34,32,36,35,32,37,36,32,38,40,39,41,39,40,41,42,39,43,39,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,55,56,53,57,53,56,58,60,59,61,59,60,60,62,61,63,61,62,64,66,65,67,65,66,67,68,65,69,65,68,70,72,71,73,71,72,72,74,73,75,73,74,76,78,77,79,77,78,78,80,79,81,79,80,82,84,83,85,83,84,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,103,104,101,105,103,102,106,105,102,107,106,102,108,107,102,109,108,102,110,112,111,113,111,112,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,123,124,121,125,121,124,126,128,127,129,127,128,129,130,127,131,127,130,132,134,133,135,133,134,134,136,135,137,135,136,138,140,139,141,139,140,141,142,139,143,139,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,203,202,205,203,204,206,203,205,207,203,206,208,203,207,209,203,208,210,203,209,211,203,210,212,203,211,213,203,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,229,228,228,231,230,232,231,228,233,231,232,231,234,230,235,230,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,259,258,261,260,258,262,260,261,263,262,261,264,262,263,265,264,263,266,265,263,267,265,266,268,267,266,269,267,268,270,269,268,271,270,268,272,270,271,273,272,271,274,273,271,275,273,274,276,275,274,277,276,274,278,277,274,279,277,278,280,277,279,281,277,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,303,256,258,256,303,261,258,303,304,261,303,263,261,304,305,263,304,266,263,305,306,266,305,268,266,306,307,268,306,271,268,307,308,271,307,274,271,308,309,274,308,278,274,309,310,278,309,279,278,310,280,279,310,311,280,310,281,280,311,277,281,311,312,277,311,313,277,312,314,313,312,315,317,316,318,316,317,319,321,320,322,320,321,323,325,324,326,324,325,327,329,328,330,328,329,331,333,332,334,332,333,335,337,336,338,336,337,339,341,340,342,340,341,343,345,344,346,344,345,347,349,348,350,348,349,351,353,352,354,352,353,355,354,353,356,355,353,357,355,356,358,357,356,359,357,358,360,359,358,361,359,360,362,361,360,363,361,362,364,363,362,365,363,364,366,365,364,367,365,366,368,367,366,369,367,368,370,369,368,371,369,370,372,371,370,373,371,372,374,373,372,375,374,372,376,374,375,377,379,378,380,378,379,381,383,382,384,382,383,385,387,386,388,386,387,389,391,390,392,390,391,393,392,391,394,392,393,395,392,394,396,392,395,397,392,396,398,392,397,399,392,398,400,392,399,401,392,400,402,392,401,403,405,404,404,406,403,406,407,403,406,408,407,406,409,408,406,410,409,406,411,410,406,412,411,406,413,412,406,414,413,406,415,414,406,416,415 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *292 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainCurved, Model::RootNode + C: "OO",5705836970327541244,0 + + ;Geometry::, Model::Mesh fountainCurved + C: "OO",4942893619488260381,5705836970327541244 + + ;Material::stone, Model::Mesh fountainCurved + C: "OO",7184,5705836970327541244 + + ;Material::stoneDark, Model::Mesh fountainCurved + C: "OO",7174,5705836970327541244 + + ;Material::water, Model::Mesh fountainCurved + C: "OO",7194,5705836970327541244 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCurved.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCurved.fbx.import new file mode 100644 index 0000000..e7b7295 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCurved.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bmt0crutvkups" +path="res://.godot/imported/fountainCurved.fbx-45e2399e0c7b05856f3575c6402fb50d.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainCurved.fbx" +dest_files=["res://.godot/imported/fountainCurved.fbx-45e2399e0c7b05856f3575c6402fb50d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainEdge.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainEdge.fbx new file mode 100644 index 0000000..79942af --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainEdge.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 549 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainEdge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainEdge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5392322982086735234, "Model::fountainEdge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5592480081164674570, "Geometry::", "Mesh" { + Vertices: *192 { + a: 5,2.8,2,-5,2.8,2,5,1.4,2,-5,1.4,2,5,0,2,-5,0,2,5,2.8,2,5,2.8,4.25,-5,2.8,2,-5,2.8,4.25,5,0.56,4.7,-5,0.56,4.7,5,1.12,4.7,-5,1.12,4.7,5,1.4,5,5,1.12,4.7,-5,1.4,5,-5,1.12,4.7,5,0,-5,5,0,2,-5,0,-5,-5,0,2,5,1.4,5,-5,1.4,5,5,2.8,5,-5,2.8,5,-5,0,2,-5,1.4,2,-5,0,5,-5,2.8,2,-5,0.56,4.7,-5,0.56,5,-5,2.8,4.25,-5,1.12,4.7,-5,2.8,5,-5,1.4,5,5,1.4,5,5,2.8,5,5,1.12,4.7,5,2.8,4.25,5,0.56,4.7,5,0,2,5,0,5,5,0.56,5,5,1.4,2,5,2.8,2,5,0,2,-5,0,2,5,0,5,-5,0,5,5,0.56,4.7,5,0.56,5,-5,0.56,4.7,-5,0.56,5,5,2.8,5,-5,2.8,5,5,0,5,-5,0,5,5,0.56,5,-5,0.56,5,5,1.4,-5,5,1.4,2,-5,1.4,-5,-5,1.4,2 + } + PolygonVertexIndex: *120 { + a: 0,2,-2,3,1,-3,2,4,-4,5,3,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,29,-29,31,30,-29,32,29,-31,30,33,-33,34,32,-34,35,34,-34,36,38,-38,39,37,-39,38,40,-40,40,41,-40,42,41,-41,43,42,-41,41,44,-40,45,39,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,7,9,-55,55,54,-10,56,58,-58,59,57,-59,60,62,-62,63,61,-63 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *360 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *128 { + a: -19.68504,11.02362,19.68504,11.02362,-19.68504,5.511811,19.68504,5.511811,-19.68504,0,19.68504,0,-19.68504,7.874016,-19.68504,16.73228,19.68504,7.874016,19.68504,16.73228,19.68504,2.204724,-19.68504,2.204724,19.68504,4.409449,-19.68504,4.409449,19.68504,18.15166,19.68504,16.53605,-19.68504,18.15166,-19.68504,16.53605,-19.68504,-19.68504,-19.68504,7.874016,19.68504,-19.68504,19.68504,7.874016,19.68504,5.511811,-19.68504,5.511811,19.68504,11.02362,-19.68504,11.02362,7.874016,0,7.874016,5.511811,19.68504,0,7.874016,11.02362,18.50394,2.204724,19.68504,2.204724,16.73228,11.02362,18.50394,4.409449,19.68504,11.02362,19.68504,5.511811,-19.68504,5.511811,-19.68504,11.02362,-18.50394,4.409449,-16.73228,11.02362,-18.50394,2.204724,-7.874016,0,-19.68504,0,-19.68504,2.204724,-7.874016,5.511811,-7.874016,11.02362,19.68504,7.874016,-19.68504,7.874016,19.68504,19.68504,-19.68504,19.68504,-19.68504,18.50394,-19.68504,19.68504,19.68504,18.50394,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,19.68504,0,-19.68504,0,19.68504,2.204724,-19.68504,2.204724,-19.68504,-19.68504,-19.68504,7.874016,19.68504,-19.68504,19.68504,7.874016 + } + UVIndex: *120 { + a: 0,2,1,3,1,2,2,4,3,5,3,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,29,28,31,30,28,32,29,30,30,33,32,34,32,33,35,34,33,36,38,37,39,37,38,38,40,39,40,41,39,42,41,40,43,42,40,41,44,39,45,39,44,46,48,47,49,47,48,50,52,51,53,51,52,7,9,54,55,54,9,56,58,57,59,57,58,60,62,61,63,61,62 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *40 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainEdge, Model::RootNode + C: "OO",5392322982086735234,0 + + ;Geometry::, Model::Mesh fountainEdge + C: "OO",5592480081164674570,5392322982086735234 + + ;Material::stone, Model::Mesh fountainEdge + C: "OO",7184,5392322982086735234 + + ;Material::stoneDark, Model::Mesh fountainEdge + C: "OO",7174,5392322982086735234 + + ;Material::water, Model::Mesh fountainEdge + C: "OO",7194,5392322982086735234 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainEdge.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainEdge.fbx.import new file mode 100644 index 0000000..2bd502f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainEdge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cb3267s7wq5e3" +path="res://.godot/imported/fountainEdge.fbx-2d0e5fe8ff67eec8d7e71a727c63a6cb.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainEdge.fbx" +dest_files=["res://.godot/imported/fountainEdge.fbx-2d0e5fe8ff67eec8d7e71a727c63a6cb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRound.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRound.fbx new file mode 100644 index 0000000..e66b585 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRound.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 614 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4832544077613753621, "Model::fountainRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5753109903981196858, "Geometry::", "Mesh" { + Vertices: *4608 { + a: 3.5,2.8,6.062178,2.678784,2.8,6.467156,3.5,1.4,6.062178,2.678784,1.4,6.467156,3.5,1.804779E-15,6.062178,2.678784,1.804779E-15,6.467156,6.940114,2.8,0.9136834,6.940114,1.4,0.9136834,7,2.8,7.451088E-08,7,1.4,7.451088E-08,6.940114,1.804779E-15,0.9136834,7,0,7.451088E-08,1.811733,2.8,6.76148,0.9136834,2.8,6.940114,1.811733,1.4,6.76148,0.9136834,1.4,6.940114,1.811733,1.804779E-15,6.76148,0.9136834,1.804779E-15,6.940114,2.678784,2.8,6.467156,1.811733,2.8,6.76148,2.678784,1.4,6.467156,1.811733,1.4,6.76148,2.678784,1.804779E-15,6.467156,1.811733,1.804779E-15,6.76148,-4.470751E-08,2.8,7,-4.470731E-08,1.4,7,0.9136834,2.8,6.940114,0.9136834,1.4,6.940114,-4.470751E-08,3.609557E-15,7,0.9136834,1.804779E-15,6.940114,9.238795,1.4,3.826835,8.961631,1.12,3.712029,8.660254,1.4,5,8.400446,1.12,4.85,6.062178,2.8,3.5,6.062178,1.4,3.5,6.467156,2.8,2.678784,6.467156,1.4,2.678784,6.467156,1.804779E-15,2.678784,6.062178,1.804779E-15,3.5,4.949748,2.8,4.949747,4.26133,2.8,5.553473,4.949748,1.4,4.949747,4.26133,1.4,5.553473,4.949748,1.804779E-15,4.949747,4.26133,1.804779E-15,5.553473,7.933534,1.4,6.087614,7.695527,1.12,5.904985,7.071068,1.4,7.071068,6.858936,1.12,6.858936,1.305262,1.4,9.914448,1.266104,1.12,9.617015,-4.764615E-12,1.4,10,-4.475013E-09,1.12,9.7,6.467156,2.8,2.678784,6.467156,1.4,2.678784,6.76148,2.8,1.811733,6.76148,1.4,1.811733,6.76148,1.804779E-15,1.811733,6.467156,1.804779E-15,2.678784,6.087614,1.4,7.933533,5.904985,1.12,7.695527,5,1.4,8.660254,4.85,1.12,8.400446,5.553473,2.8,4.26133,5.553473,1.4,4.26133,6.062178,2.8,3.5,6.062178,1.4,3.5,6.062178,1.804779E-15,3.5,5.553473,1.804779E-15,4.26133,2.588191,1.4,9.659258,2.510545,1.12,9.36948,1.305262,1.4,9.914448,1.266104,1.12,9.617015,8.660254,1.4,5,8.400446,1.12,4.85,7.933534,1.4,6.087614,7.695527,1.12,5.904985,4.949748,2.8,4.949747,4.949748,1.4,4.949747,5.553473,2.8,4.26133,5.553473,1.4,4.26133,5.553473,1.804779E-15,4.26133,4.949748,1.804779E-15,4.949747,6.76148,2.8,1.811733,6.76148,1.4,1.811733,6.940114,2.8,0.9136834,6.940114,1.4,0.9136834,6.940114,1.804779E-15,0.9136834,6.76148,1.804779E-15,1.811733,7.071068,1.4,7.071068,6.858936,1.12,6.858936,6.087614,1.4,7.933533,5.904985,1.12,7.695527,5,1.4,8.660254,4.85,1.12,8.400446,3.826834,1.4,9.238795,3.712029,1.12,8.961631,3.826834,1.4,9.238795,3.712029,1.12,8.961631,2.588191,1.4,9.659258,2.510545,1.12,9.36948,4.26133,2.8,5.553473,3.5,2.8,6.062178,4.26133,1.4,5.553473,3.5,1.4,6.062178,4.26133,1.804779E-15,5.553473,3.5,1.804779E-15,6.062178,10,2.8,7.451324E-08,10,1.4,7.451324E-08,9.914449,2.8,1.305262,9.914449,1.4,1.305262,1.305262,1.4,9.914448,-4.764615E-12,1.4,10,1.305262,2.8,9.914448,-4.764615E-12,2.8,10,9.617016,1.12,1.266104,9.617016,0.56,1.266104,9.36948,1.12,2.510545,9.36948,0.56,2.510545,9.659258,2.8,2.588191,9.659258,1.4,2.588191,9.238795,2.8,3.826835,9.238795,1.4,3.826835,5.904985,0.56,7.695527,4.85,0.56,8.400446,5.904985,1.12,7.695527,4.85,1.12,8.400446,4.85,0.56,8.400446,3.712029,0.56,8.961631,4.85,1.12,8.400446,3.712029,1.12,8.961631,9.36948,1.12,2.510545,9.36948,0.56,2.510545,8.961631,1.12,3.712029,8.961631,0.56,3.712029,7.695527,1.12,5.904985,7.695527,0.56,5.904985,6.858936,1.12,6.858936,6.858936,0.56,6.858936,1.266104,0.56,9.617015,-4.475013E-09,0.56,9.7,1.266104,1.12,9.617015,-4.475013E-09,1.12,9.7,2.588191,1.4,9.659258,1.305262,1.4,9.914448,2.588191,2.8,9.659258,1.305262,2.8,9.914448,8.660254,2.8,5,8.660254,1.4,5,7.933534,2.8,6.087614,7.933534,1.4,6.087614,9.914449,1.4,1.305262,9.617016,1.12,1.266104,9.659258,1.4,2.588191,9.36948,1.12,2.510545,9.914449,2.8,1.305262,9.914449,1.4,1.305262,9.659258,2.8,2.588191,9.659258,1.4,2.588191,7.071068,1.4,7.071068,6.087614,1.4,7.933533,7.071068,2.8,7.071068,6.087614,2.8,7.933533,9.238795,2.8,3.826835,9.238795,1.4,3.826835,8.660254,2.8,5,8.660254,1.4,5,5,1.4,8.660254,3.826834,1.4,9.238795,5,2.8,8.660254,3.826834,2.8,9.238795,9.7,1.12,7.451301E-08,9.7,0.56,7.451301E-08,9.617016,1.12,1.266104,9.617016,0.56,1.266104,10,1.4,7.451324E-08,9.7,1.12,7.451301E-08,9.914449,1.4,1.305262,9.617016,1.12,1.266104,9.659258,1.4,2.588191,9.36948,1.12,2.510545,9.238795,1.4,3.826835,8.961631,1.12,3.712029,8.961631,1.12,3.712029,8.961631,0.56,3.712029,8.400446,1.12,4.85,8.400446,0.56,4.85,9.25,2.8,7.451266E-08,9.170865,2.8,1.207367,9.170865,2.8,-1.207367,8.934813,2.8,-2.394076,8.934813,2.8,2.394076,8.545885,2.8,-3.539822,8.545885,2.8,3.539822,8.010736,2.8,-4.625,8.010735,2.8,4.625,7.338519,2.8,-5.631042,7.338519,2.8,5.631043,7,2.8,7.451088E-08,6.940114,2.8,-0.9136832,6.940114,2.8,0.9136834,6.540738,2.8,-6.540738,6.76148,2.8,-1.811733,6.467157,2.8,-2.678784,6.540738,2.8,6.540738,6.76148,2.8,1.811733,6.467156,2.8,2.678784,5.631043,2.8,-7.338518,6.062178,2.8,-3.5,5.553473,2.8,-4.26133,5.631043,2.8,7.338519,6.062178,2.8,3.5,5.553473,2.8,4.26133,4.625,2.8,-8.010735,4.949748,2.8,-4.949747,4.26133,2.8,-5.553473,3.539822,2.8,-8.545885,3.5,2.8,-6.062178,4.625,2.8,8.010735,4.949748,2.8,4.949747,4.26133,2.8,5.553473,3.539822,2.8,8.545885,3.5,2.8,6.062178,2.394076,2.8,-8.934813,2.678784,2.8,-6.467156,1.811733,2.8,-6.76148,1.207367,2.8,-9.170865,0.9136835,2.8,-6.940114,-1.490123E-07,2.8,-9.25,-1.490124E-07,2.8,-7,2.394076,2.8,8.934813,2.678784,2.8,6.467156,1.811733,2.8,6.76148,1.207367,2.8,9.170865,0.9136834,2.8,6.940114,-1.118042E-08,2.8,9.25,-4.470751E-08,2.8,7,-1.207367,2.8,-9.170865,-0.9136835,2.8,-6.940114,-1.811733,2.8,-6.76148,-2.394076,2.8,-8.934813,-2.678784,2.8,-6.467156,-1.207367,2.8,9.170865,-0.9136834,2.8,6.940114,-1.811733,2.8,6.76148,-2.394076,2.8,8.934813,-2.678784,2.8,6.467156,-3.539822,2.8,-8.545885,-3.5,2.8,-6.062178,-4.26133,2.8,-5.553473,-4.625,2.8,-8.010735,-4.949748,2.8,-4.949747,-3.539822,2.8,8.545885,-3.5,2.8,6.062178,-4.26133,2.8,5.553473,-4.625,2.8,8.010735,-4.949748,2.8,4.949747,-5.631043,2.8,-7.338518,-5.553473,2.8,-4.26133,-6.062178,2.8,-3.5,-5.631043,2.8,7.338519,-5.553473,2.8,4.26133,-6.062178,2.8,3.5,-6.540738,2.8,-6.540738,-6.467157,2.8,-2.678784,-6.76148,2.8,-1.811733,-6.540738,2.8,6.540738,-6.467156,2.8,2.678784,-6.76148,2.8,1.811733,-7.338519,2.8,-5.631042,-7.338519,2.8,5.631043,-6.940114,2.8,-0.9136832,-6.940114,2.8,0.9136834,-7,2.8,7.450386E-08,-8.010735,2.8,4.625,-8.010736,2.8,-4.625,-8.545885,2.8,3.539822,-8.545885,2.8,-3.539822,-8.934813,2.8,2.394076,-8.934813,2.8,-2.394076,-9.170865,2.8,1.207367,-9.170865,2.8,-1.207367,-9.25,2.8,7.450383E-08,7,0,7.451088E-08,6.940114,1.804779E-15,0.9136834,6.940114,0,-0.9136832,6.76148,0,-1.811733,6.76148,1.804779E-15,1.811733,6.467157,0,-2.678784,6.467156,1.804779E-15,2.678784,6.062178,0,-3.5,6.062178,1.804779E-15,3.5,5.553473,0,-4.26133,5.553473,1.804779E-15,4.26133,4.949748,0,-4.949747,4.949748,1.804779E-15,4.949747,4.26133,0,-5.553473,4.26133,1.804779E-15,5.553473,3.5,0,-6.062178,3.5,1.804779E-15,6.062178,2.678784,0,-6.467156,2.678784,1.804779E-15,6.467156,1.811733,0,-6.76148,1.811733,1.804779E-15,6.76148,0.9136835,0,-6.940114,0.9136834,1.804779E-15,6.940114,-1.490124E-07,5.414336E-15,-7,-4.470751E-08,3.609557E-15,7,-0.9136834,3.609557E-15,6.940114,-0.9136835,5.414336E-15,-6.940114,-1.811733,3.609557E-15,6.76148,-1.811733,5.414336E-15,-6.76148,-2.678784,3.609557E-15,6.467156,-2.678784,5.414336E-15,-6.467156,-3.5,3.609557E-15,6.062178,-3.5,5.414336E-15,-6.062178,-4.26133,3.609557E-15,5.553473,-4.26133,5.414336E-15,-5.553473,-4.949748,3.609557E-15,4.949747,-4.949748,5.414336E-15,-4.949747,-5.553473,3.609557E-15,4.26133,-5.553473,5.414336E-15,-4.26133,-6.062178,3.609557E-15,3.5,-6.062178,5.414336E-15,-3.5,-6.467156,3.609557E-15,2.678784,-6.467157,5.414336E-15,-2.678784,-6.76148,3.609557E-15,1.811733,-6.76148,5.414336E-15,-1.811733,-6.940114,3.609557E-15,0.9136834,-6.940114,5.414336E-15,-0.9136832,-7,5.414336E-15,7.450386E-08,3.712029,0.56,8.961631,2.510545,0.56,9.36948,3.712029,1.12,8.961631,2.510545,1.12,9.36948,8.400446,1.12,4.85,8.400446,0.56,4.85,7.695527,1.12,5.904985,7.695527,0.56,5.904985,2.510545,0.56,9.36948,1.266104,0.56,9.617015,2.510545,1.12,9.36948,1.266104,1.12,9.617015,3.826834,1.4,9.238795,2.588191,1.4,9.659258,3.826834,2.8,9.238795,2.588191,2.8,9.659258,7.933534,2.8,6.087614,7.933534,1.4,6.087614,7.071068,2.8,7.071068,7.071068,1.4,7.071068,6.858936,0.56,6.858936,5.904985,0.56,7.695527,6.858936,1.12,6.858936,5.904985,1.12,7.695527,6.087614,1.4,7.933533,5,1.4,8.660254,6.087614,2.8,7.933533,5,2.8,8.660254,-4.85,1.12,8.400446,-5.904985,1.12,7.695527,-5,1.4,8.660254,-6.087614,1.4,7.933533,-0.9136834,2.8,6.940114,-1.811733,2.8,6.76148,-0.9136834,1.4,6.940114,-1.811733,1.4,6.76148,-0.9136834,3.609557E-15,6.940114,-1.811733,3.609557E-15,6.76148,-8.961631,1.12,3.712029,-9.36948,1.12,2.510545,-9.238795,1.4,3.826835,-9.659258,1.4,2.588191,-4.470751E-08,2.8,7,-0.9136834,2.8,6.940114,-4.470731E-08,1.4,7,-0.9136834,1.4,6.940114,-4.470751E-08,3.609557E-15,7,-0.9136834,3.609557E-15,6.940114,-4.949748,2.8,4.949747,-5.553473,2.8,4.26133,-4.949748,1.4,4.949747,-5.553473,1.4,4.26133,-5.553473,3.609557E-15,4.26133,-4.949748,3.609557E-15,4.949747,-4.26133,2.8,5.553473,-4.949748,2.8,4.949747,-4.26133,1.4,5.553473,-4.949748,1.4,4.949747,-4.26133,3.609557E-15,5.553473,-4.949748,3.609557E-15,4.949747,-9.36948,1.12,2.510545,-9.617016,1.12,1.266104,-9.659258,1.4,2.588191,-9.914449,1.4,1.305262,-6.76148,2.8,1.811733,-6.940114,2.8,0.9136834,-6.76148,1.4,1.811733,-6.940114,1.4,0.9136834,-6.940114,3.609557E-15,0.9136834,-6.76148,3.609557E-15,1.811733,-6.858936,1.12,6.858936,-7.695527,1.12,5.904985,-7.071068,1.4,7.071068,-7.933534,1.4,6.087614,-9.617016,1.12,1.266104,-9.7,1.12,7.450377E-08,-9.914449,1.4,1.305262,-10,1.4,7.450372E-08,-8.400446,1.12,4.85,-8.961631,1.12,3.712029,-8.660254,1.4,5,-9.238795,1.4,3.826835,-6.062178,2.8,3.5,-6.467156,2.8,2.678784,-6.062178,1.4,3.5,-6.467156,1.4,2.678784,-6.467156,3.609557E-15,2.678784,-6.062178,3.609557E-15,3.5,-5.553473,2.8,4.26133,-6.062178,2.8,3.5,-5.553473,1.4,4.26133,-6.062178,1.4,3.5,-6.062178,3.609557E-15,3.5,-5.553473,3.609557E-15,4.26133,-5.904985,1.12,7.695527,-6.858936,1.12,6.858936,-6.087614,1.4,7.933533,-7.071068,1.4,7.071068,-7.695527,1.12,5.904985,-8.400446,1.12,4.85,-7.933534,1.4,6.087614,-8.660254,1.4,5,-9.7,0.56,7.450377E-08,-9.7,1.12,7.450377E-08,-9.617016,0.56,1.266104,-9.617016,1.12,1.266104,-3.712029,1.12,8.961631,-4.85,1.12,8.400446,-3.826834,1.4,9.238795,-5,1.4,8.660254,-1.811733,2.8,6.76148,-2.678784,2.8,6.467156,-1.811733,1.4,6.76148,-2.678784,1.4,6.467156,-1.811733,3.609557E-15,6.76148,-2.678784,3.609557E-15,6.467156,-8.660254,1.4,5,-8.660254,2.8,5,-7.933534,1.4,6.087614,-7.933534,2.8,6.087614,-7.933534,1.4,6.087614,-7.933534,2.8,6.087614,-7.071068,1.4,7.071068,-7.071068,2.8,7.071068,-2.510545,1.12,9.36948,-3.712029,1.12,8.961631,-2.588191,1.4,9.659258,-3.826834,1.4,9.238795,-9.238795,1.4,3.826835,-9.238795,2.8,3.826835,-8.660254,1.4,5,-8.660254,2.8,5,-1.305262,1.4,9.914448,-2.588191,1.4,9.659258,-1.305262,2.8,9.914448,-2.588191,2.8,9.659258,-6.087614,1.4,7.933533,-7.071068,1.4,7.071068,-6.087614,2.8,7.933533,-7.071068,2.8,7.071068,-4.85,0.56,8.400446,-5.904985,0.56,7.695527,-4.85,1.12,8.400446,-5.904985,1.12,7.695527,-3.826834,1.4,9.238795,-5,1.4,8.660254,-3.826834,2.8,9.238795,-5,2.8,8.660254,-4.764615E-12,1.4,10,-1.305262,1.4,9.914448,-4.764615E-12,2.8,10,-1.305262,2.8,9.914448,-2.678784,2.8,6.467156,-3.5,2.8,6.062178,-2.678784,1.4,6.467156,-3.5,1.4,6.062178,-2.678784,3.609557E-15,6.467156,-3.5,3.609557E-15,6.062178,-6.467156,3.609557E-15,2.678784,-6.467156,1.4,2.678784,-6.76148,3.609557E-15,1.811733,-6.76148,1.4,1.811733,-6.76148,2.8,1.811733,-6.467156,2.8,2.678784,-9.659258,1.4,2.588191,-9.659258,2.8,2.588191,-9.238795,1.4,3.826835,-9.238795,2.8,3.826835,-5.904985,0.56,7.695527,-6.858936,0.56,6.858936,-5.904985,1.12,7.695527,-6.858936,1.12,6.858936,-7,2.8,7.450386E-08,-7,1.4,7.450406E-08,-6.940114,2.8,0.9136834,-6.940114,1.4,0.9136834,-6.940114,3.609557E-15,0.9136834,-7,5.414336E-15,7.450386E-08,-5,1.4,8.660254,-6.087614,1.4,7.933533,-5,2.8,8.660254,-6.087614,2.8,7.933533,-2.510545,0.56,9.36948,-3.712029,0.56,8.961631,-2.510545,1.12,9.36948,-3.712029,1.12,8.961631,-7.695527,0.56,5.904985,-7.695527,1.12,5.904985,-6.858936,0.56,6.858936,-6.858936,1.12,6.858936,-3.712029,0.56,8.961631,-4.85,0.56,8.400446,-3.712029,1.12,8.961631,-4.85,1.12,8.400446,-3.5,2.8,6.062178,-4.26133,2.8,5.553473,-3.5,1.4,6.062178,-4.26133,1.4,5.553473,-3.5,3.609557E-15,6.062178,-4.26133,3.609557E-15,5.553473,-4.475013E-09,0.56,9.7,-1.266104,0.56,9.617015,-4.475013E-09,1.12,9.7,-1.266104,1.12,9.617015,-10,1.4,7.450372E-08,-10,2.8,7.450372E-08,-9.914449,1.4,1.305262,-9.914449,2.8,1.305262,-8.400446,0.56,4.85,-8.400446,1.12,4.85,-7.695527,0.56,5.904985,-7.695527,1.12,5.904985,-9.36948,0.56,2.510545,-9.36948,1.12,2.510545,-8.961631,0.56,3.712029,-8.961631,1.12,3.712029,-8.961631,0.56,3.712029,-8.961631,1.12,3.712029,-8.400446,0.56,4.85,-8.400446,1.12,4.85,-1.266104,0.56,9.617015,-2.510545,0.56,9.36948,-1.266104,1.12,9.617015,-2.510545,1.12,9.36948,-9.617016,0.56,1.266104,-9.617016,1.12,1.266104,-9.36948,0.56,2.510545,-9.36948,1.12,2.510545,-9.914449,1.4,1.305262,-9.914449,2.8,1.305262,-9.659258,1.4,2.588191,-9.659258,2.8,2.588191,-4.764615E-12,1.4,10,-4.475013E-09,1.12,9.7,-1.305262,1.4,9.914448,-1.266104,1.12,9.617015,-2.588191,1.4,9.659258,-3.826834,1.4,9.238795,-2.588191,2.8,9.659258,-3.826834,2.8,9.238795,-1.266104,1.12,9.617015,-2.510545,1.12,9.36948,-1.305262,1.4,9.914448,-2.588191,1.4,9.659258,0.9136835,2.8,-6.940114,1.811733,2.8,-6.76148,0.9136835,1.4,-6.940114,1.811733,1.4,-6.76148,0.9136835,0,-6.940114,1.811733,0,-6.76148,9.659258,1.4,-2.588191,9.238795,1.4,-3.826834,9.36948,1.12,-2.510545,8.961631,1.12,-3.712029,8.660254,1.4,-5,7.933534,1.4,-6.087614,8.400446,1.12,-4.85,7.695527,1.12,-5.904985,9.914449,1.4,-1.305262,9.659258,1.4,-2.588191,9.617016,1.12,-1.266104,9.36948,1.12,-2.510545,6.087614,1.4,-7.933533,5,1.4,-8.660254,5.904985,1.12,-7.695527,4.85,1.12,-8.400446,10,1.4,7.451324E-08,9.914449,1.4,-1.305262,9.7,1.12,7.451301E-08,9.617016,1.12,-1.266104,-1.490124E-07,2.8,-7,0.9136835,2.8,-6.940114,-1.490124E-07,1.4,-7,0.9136835,1.4,-6.940114,-1.490124E-07,5.414336E-15,-7,0.9136835,0,-6.940114,10,0,7.451324E-08,9.914449,0,-1.305262,9.914449,1.804779E-15,1.305262,9.659258,0,-2.588191,9.659258,1.804779E-15,2.588191,9.238795,0,-3.826834,9.238795,1.804779E-15,3.826835,8.660254,0,-5,8.660254,1.804779E-15,5,7.933534,0,-6.087614,7.933534,1.804779E-15,6.087614,7.071068,0,-7.071068,7.071068,1.804779E-15,7.071068,7,0,7.451088E-08,6.940114,1.804779E-15,0.9136834,6.940114,0,-0.9136832,6.087614,1.804779E-15,7.933533,6.087614,0,-7.933533,6.76148,1.804779E-15,1.811733,6.467156,1.804779E-15,2.678784,6.062178,1.804779E-15,3.5,6.76148,0,-1.811733,6.467157,0,-2.678784,6.062178,0,-3.5,5,1.804779E-15,8.660254,5.553473,1.804779E-15,4.26133,4.949748,1.804779E-15,4.949747,5,0,-8.660254,5.553473,0,-4.26133,4.949748,0,-4.949747,3.826834,1.804779E-15,9.238795,4.26133,1.804779E-15,5.553473,3.5,1.804779E-15,6.062178,3.826835,0,-9.238795,4.26133,0,-5.553473,3.5,0,-6.062178,2.588191,1.804779E-15,9.659258,2.678784,1.804779E-15,6.467156,1.811733,1.804779E-15,6.76148,1.305262,1.804779E-15,9.914448,0.9136834,1.804779E-15,6.940114,-4.764615E-12,3.609557E-15,10,-4.470751E-08,3.609557E-15,7,2.588191,0,-9.659258,2.678784,0,-6.467156,1.811733,0,-6.76148,1.305262,0,-9.914448,0.9136835,0,-6.940114,-1.490122E-07,5.414336E-15,-10,-1.490124E-07,5.414336E-15,-7,-1.305262,3.609557E-15,9.914448,-0.9136834,3.609557E-15,6.940114,-1.811733,3.609557E-15,6.76148,-2.588191,3.609557E-15,9.659258,-2.678784,3.609557E-15,6.467156,-1.305262,5.414336E-15,-9.914448,-0.9136835,5.414336E-15,-6.940114,-1.811733,5.414336E-15,-6.76148,-2.588191,5.414336E-15,-9.659258,-2.678784,5.414336E-15,-6.467156,-3.826834,3.609557E-15,9.238795,-3.5,3.609557E-15,6.062178,-4.26133,3.609557E-15,5.553473,-3.826835,5.414336E-15,-9.238795,-3.5,5.414336E-15,-6.062178,-4.26133,5.414336E-15,-5.553473,-5,3.609557E-15,8.660254,-4.949748,3.609557E-15,4.949747,-5.553473,3.609557E-15,4.26133,-5,5.414336E-15,-8.660254,-4.949748,5.414336E-15,-4.949747,-5.553473,5.414336E-15,-4.26133,-6.087614,3.609557E-15,7.933533,-6.062178,3.609557E-15,3.5,-6.467156,3.609557E-15,2.678784,-6.087614,5.414336E-15,-7.933533,-6.062178,5.414336E-15,-3.5,-6.467157,5.414336E-15,-2.678784,-7.071068,3.609557E-15,7.071068,-7.071068,5.414336E-15,-7.071068,-6.76148,3.609557E-15,1.811733,-6.76148,5.414336E-15,-1.811733,-6.940114,3.609557E-15,0.9136834,-6.940114,5.414336E-15,-0.9136832,-7,5.414336E-15,7.450386E-08,-7.933534,3.609557E-15,6.087614,-7.933534,5.414336E-15,-6.087614,-8.660254,3.609557E-15,5,-8.660254,5.414336E-15,-5,-9.238795,3.609557E-15,3.826835,-9.238795,5.414336E-15,-3.826834,-9.659258,3.609557E-15,2.588191,-9.659258,5.414336E-15,-2.588191,-9.914449,3.609557E-15,1.305262,-9.914449,5.414336E-15,-1.305262,-10,5.414336E-15,7.450372E-08,4.949748,2.8,-4.949747,5.553473,2.8,-4.26133,4.949748,1.4,-4.949747,5.553473,1.4,-4.26133,5.553473,0,-4.26133,4.949748,0,-4.949747,6.062178,2.8,-3.5,6.467157,2.8,-2.678784,6.062178,1.4,-3.5,6.467157,1.4,-2.678784,6.467157,0,-2.678784,6.062178,0,-3.5,6.76148,2.8,-1.811733,6.940114,2.8,-0.9136832,6.76148,1.4,-1.811733,6.940114,1.4,-0.9136832,6.940114,0,-0.9136832,6.76148,0,-1.811733,7.933534,1.4,-6.087614,7.071068,1.4,-7.071068,7.695527,1.12,-5.904985,6.858936,1.12,-6.858935,7.071068,1.4,-7.071068,6.087614,1.4,-7.933533,6.858936,1.12,-6.858935,5.904985,1.12,-7.695527,6.467157,2.8,-2.678784,6.76148,2.8,-1.811733,6.467157,1.4,-2.678784,6.76148,1.4,-1.811733,6.76148,0,-1.811733,6.467157,0,-2.678784,2.678784,2.8,-6.467156,3.5,2.8,-6.062178,2.678784,1.4,-6.467156,3.5,1.4,-6.062178,2.678784,0,-6.467156,3.5,0,-6.062178,6.940114,2.8,-0.9136832,7,2.8,7.451088E-08,6.940114,1.4,-0.9136832,7,1.4,7.451088E-08,7,0,7.451088E-08,6.940114,0,-0.9136832,1.811733,2.8,-6.76148,2.678784,2.8,-6.467156,1.811733,1.4,-6.76148,2.678784,1.4,-6.467156,1.811733,0,-6.76148,2.678784,0,-6.467156,1.305262,1.4,-9.914448,1.305262,2.8,-9.914448,-1.490122E-07,1.4,-10,-1.490122E-07,2.8,-10,9.914449,2.8,-1.305262,9.914449,1.4,-1.305262,10,2.8,7.451324E-08,10,1.4,7.451324E-08,5,1.4,-8.660254,3.826835,1.4,-9.238795,4.85,1.12,-8.400446,3.712029,1.12,-8.961631,4.26133,2.8,-5.553473,4.949748,2.8,-4.949747,4.26133,1.4,-5.553473,4.949748,1.4,-4.949747,4.26133,0,-5.553473,4.949748,0,-4.949747,5.553473,2.8,-4.26133,6.062178,2.8,-3.5,5.553473,1.4,-4.26133,6.062178,1.4,-3.5,6.062178,0,-3.5,5.553473,0,-4.26133,9.238795,1.4,-3.826834,8.660254,1.4,-5,8.961631,1.12,-3.712029,8.400446,1.12,-4.85,3.5,2.8,-6.062178,4.26133,2.8,-5.553473,3.5,1.4,-6.062178,4.26133,1.4,-5.553473,3.5,0,-6.062178,4.26133,0,-5.553473,8.961631,1.12,-3.712029,8.961631,0.56,-3.712029,9.36948,1.12,-2.510545,9.36948,0.56,-2.510545,3.826835,1.4,-9.238795,5,1.4,-8.660254,3.826835,2.8,-9.238795,5,2.8,-8.660254,5,1.4,-8.660254,6.087614,1.4,-7.933533,5,2.8,-8.660254,6.087614,2.8,-7.933533,5.904985,0.56,-7.695527,6.858936,0.56,-6.858935,5.904985,1.12,-7.695527,6.858936,1.12,-6.858935,7.933534,2.8,-6.087614,7.933534,1.4,-6.087614,8.660254,2.8,-5,8.660254,1.4,-5,6.858936,1.12,-6.858935,6.858936,0.56,-6.858935,7.695527,1.12,-5.904985,7.695527,0.56,-5.904985,9.238795,2.8,-3.826834,9.238795,1.4,-3.826834,9.659258,2.8,-2.588191,9.659258,1.4,-2.588191,3.712029,0.56,-8.961631,4.85,0.56,-8.400446,3.712029,1.12,-8.961631,4.85,1.12,-8.400446,7.695527,1.12,-5.904985,7.695527,0.56,-5.904985,8.400446,1.12,-4.85,8.400446,0.56,-4.85,8.400446,1.12,-4.85,8.400446,0.56,-4.85,8.961631,1.12,-3.712029,8.961631,0.56,-3.712029,7.071068,2.8,-7.071068,7.071068,1.4,-7.071068,7.933534,2.8,-6.087614,7.933534,1.4,-6.087614,2.510545,0.56,-9.36948,3.712029,0.56,-8.961631,2.510545,1.12,-9.36948,3.712029,1.12,-8.961631,1.266104,0.56,-9.617015,1.266104,1.12,-9.617015,-1.490123E-07,0.56,-9.7,-1.490123E-07,1.12,-9.7,9.659258,2.8,-2.588191,9.659258,1.4,-2.588191,9.914449,2.8,-1.305262,9.914449,1.4,-1.305262,8.660254,2.8,-5,8.660254,1.4,-5,9.238795,2.8,-3.826834,9.238795,1.4,-3.826834,1.305262,1.4,-9.914448,2.588191,1.4,-9.659258,1.305262,2.8,-9.914448,2.588191,2.8,-9.659258,6.087614,1.4,-7.933533,7.071068,1.4,-7.071068,6.087614,2.8,-7.933533,7.071068,2.8,-7.071068,4.85,0.56,-8.400446,5.904985,0.56,-7.695527,4.85,1.12,-8.400446,5.904985,1.12,-7.695527,9.617016,1.12,-1.266104,9.617016,0.56,-1.266104,9.7,1.12,7.451301E-08,9.7,0.56,7.451301E-08,3.826835,1.4,-9.238795,2.588191,1.4,-9.659258,3.712029,1.12,-8.961631,2.510545,1.12,-9.36948,2.588191,1.4,-9.659258,3.826835,1.4,-9.238795,2.588191,2.8,-9.659258,3.826835,2.8,-9.238795,1.305262,1.4,-9.914448,-1.490122E-07,1.4,-10,1.266104,1.12,-9.617015,-1.490123E-07,1.12,-9.7,9.36948,1.12,-2.510545,9.36948,0.56,-2.510545,9.617016,1.12,-1.266104,9.617016,0.56,-1.266104,1.266104,0.56,-9.617015,2.510545,0.56,-9.36948,1.266104,1.12,-9.617015,2.510545,1.12,-9.36948,2.588191,1.4,-9.659258,1.305262,1.4,-9.914448,2.510545,1.12,-9.36948,1.266104,1.12,-9.617015,-5.904985,1.12,-7.695527,-6.087614,1.4,-7.933533,-6.858936,1.12,-6.858935,-7.071068,1.4,-7.071068,-3.712029,1.12,-8.961631,-3.826835,1.4,-9.238795,-4.85,1.12,-8.400446,-5,1.4,-8.660254,-6.858936,1.12,-6.858935,-7.071068,1.4,-7.071068,-7.695527,1.12,-5.904985,-7.933534,1.4,-6.087614,-4.85,1.12,-8.400446,-5,1.4,-8.660254,-5.904985,1.12,-7.695527,-6.087614,1.4,-7.933533,-1.266104,1.12,-9.617015,-1.305262,1.4,-9.914448,-2.510545,1.12,-9.36948,-2.588191,1.4,-9.659258,-6.76148,2.8,-1.811733,-6.76148,1.4,-1.811733,-6.940114,2.8,-0.9136832,-6.940114,1.4,-0.9136832,-6.940114,5.414336E-15,-0.9136832,-6.76148,5.414336E-15,-1.811733,-7.695527,1.12,-5.904985,-7.933534,1.4,-6.087614,-8.400446,1.12,-4.85,-8.660254,1.4,-5,-2.510545,1.12,-9.36948,-2.588191,1.4,-9.659258,-3.712029,1.12,-8.961631,-3.826835,1.4,-9.238795,-4.949748,2.8,-4.949747,-4.949748,1.4,-4.949747,-5.553473,2.8,-4.26133,-5.553473,1.4,-4.26133,-5.553473,5.414336E-15,-4.26133,-4.949748,5.414336E-15,-4.949747,-1.811733,2.8,-6.76148,-0.9136835,2.8,-6.940114,-1.811733,1.4,-6.76148,-0.9136835,1.4,-6.940114,-1.811733,5.414336E-15,-6.76148,-0.9136835,5.414336E-15,-6.940114,-4.26133,2.8,-5.553473,-3.5,2.8,-6.062178,-4.26133,1.4,-5.553473,-3.5,1.4,-6.062178,-4.26133,5.414336E-15,-5.553473,-3.5,5.414336E-15,-6.062178,-3.5,2.8,-6.062178,-2.678784,2.8,-6.467156,-3.5,1.4,-6.062178,-2.678784,1.4,-6.467156,-3.5,5.414336E-15,-6.062178,-2.678784,5.414336E-15,-6.467156,-1.490122E-07,1.4,-10,-1.305262,1.4,-9.914448,-1.490123E-07,1.12,-9.7,-1.266104,1.12,-9.617015,-4.949748,2.8,-4.949747,-4.26133,2.8,-5.553473,-4.949748,1.4,-4.949747,-4.26133,1.4,-5.553473,-4.949748,5.414336E-15,-4.949747,-4.26133,5.414336E-15,-5.553473,-6.940114,2.8,-0.9136832,-6.940114,1.4,-0.9136832,-7,2.8,7.450386E-08,-7,1.4,7.450406E-08,-7,5.414336E-15,7.450386E-08,-6.940114,5.414336E-15,-0.9136832,-5.553473,5.414336E-15,-4.26133,-6.062178,5.414336E-15,-3.5,-5.553473,1.4,-4.26133,-6.062178,1.4,-3.5,-6.062178,2.8,-3.5,-5.553473,2.8,-4.26133,-5.904985,0.56,-7.695527,-4.85,0.56,-8.400446,-5.904985,1.12,-7.695527,-4.85,1.12,-8.400446,-6.858936,0.56,-6.858935,-6.858936,1.12,-6.858935,-7.695527,0.56,-5.904985,-7.695527,1.12,-5.904985,-4.85,0.56,-8.400446,-3.712029,0.56,-8.961631,-4.85,1.12,-8.400446,-3.712029,1.12,-8.961631,-8.660254,1.4,-5,-8.660254,2.8,-5,-9.238795,1.4,-3.826834,-9.238795,2.8,-3.826834,-8.961631,1.12,-3.712029,-9.238795,1.4,-3.826834,-9.36948,1.12,-2.510545,-9.659258,1.4,-2.588191,-1.305262,1.4,-9.914448,-1.490122E-07,1.4,-10,-1.305262,2.8,-9.914448,-1.490122E-07,2.8,-10,-7.071068,1.4,-7.071068,-6.087614,1.4,-7.933533,-7.071068,2.8,-7.071068,-6.087614,2.8,-7.933533,-9.914449,1.4,-1.305262,-9.914449,2.8,-1.305262,-10,1.4,7.450372E-08,-10,2.8,7.450372E-08,-7.071068,1.4,-7.071068,-7.071068,2.8,-7.071068,-7.933534,1.4,-6.087614,-7.933534,2.8,-6.087614,-1.811733,5.414336E-15,-6.76148,-2.678784,5.414336E-15,-6.467156,-1.811733,1.4,-6.76148,-2.678784,1.4,-6.467156,-1.811733,2.8,-6.76148,-2.678784,2.8,-6.467156,-7.933534,1.4,-6.087614,-7.933534,2.8,-6.087614,-8.660254,1.4,-5,-8.660254,2.8,-5,-6.467157,2.8,-2.678784,-6.467157,1.4,-2.678784,-6.76148,2.8,-1.811733,-6.76148,1.4,-1.811733,-6.76148,5.414336E-15,-1.811733,-6.467157,5.414336E-15,-2.678784,-5,1.4,-8.660254,-3.826835,1.4,-9.238795,-5,2.8,-8.660254,-3.826835,2.8,-9.238795,-8.961631,0.56,-3.712029,-8.961631,1.12,-3.712029,-9.36948,0.56,-2.510545,-9.36948,1.12,-2.510545,-6.858936,0.56,-6.858935,-5.904985,0.56,-7.695527,-6.858936,1.12,-6.858935,-5.904985,1.12,-7.695527,-8.400446,0.56,-4.85,-8.400446,1.12,-4.85,-8.961631,0.56,-3.712029,-8.961631,1.12,-3.712029,-9.617016,0.56,-1.266104,-9.617016,1.12,-1.266104,-9.7,0.56,7.450377E-08,-9.7,1.12,7.450377E-08,-2.588191,1.4,-9.659258,-1.305262,1.4,-9.914448,-2.588191,2.8,-9.659258,-1.305262,2.8,-9.914448,-3.712029,0.56,-8.961631,-2.510545,0.56,-9.36948,-3.712029,1.12,-8.961631,-2.510545,1.12,-9.36948,-9.659258,1.4,-2.588191,-9.659258,2.8,-2.588191,-9.914449,1.4,-1.305262,-9.914449,2.8,-1.305262,-0.9136835,2.8,-6.940114,-1.490124E-07,2.8,-7,-0.9136835,1.4,-6.940114,-1.490124E-07,1.4,-7,-0.9136835,5.414336E-15,-6.940114,-1.490124E-07,5.414336E-15,-7,-3.826835,1.4,-9.238795,-2.588191,1.4,-9.659258,-3.826835,2.8,-9.238795,-2.588191,2.8,-9.659258,-6.062178,2.8,-3.5,-6.062178,1.4,-3.5,-6.467157,2.8,-2.678784,-6.467157,1.4,-2.678784,-6.467157,5.414336E-15,-2.678784,-6.062178,5.414336E-15,-3.5,-8.400446,1.12,-4.85,-8.660254,1.4,-5,-8.961631,1.12,-3.712029,-9.238795,1.4,-3.826834,-6.087614,1.4,-7.933533,-5,1.4,-8.660254,-6.087614,2.8,-7.933533,-5,2.8,-8.660254,-1.266104,0.56,-9.617015,-1.490123E-07,0.56,-9.7,-1.266104,1.12,-9.617015,-1.490123E-07,1.12,-9.7,-7.695527,0.56,-5.904985,-7.695527,1.12,-5.904985,-8.400446,0.56,-4.85,-8.400446,1.12,-4.85,-2.510545,0.56,-9.36948,-1.266104,0.56,-9.617015,-2.510545,1.12,-9.36948,-1.266104,1.12,-9.617015,-9.238795,1.4,-3.826834,-9.238795,2.8,-3.826834,-9.659258,1.4,-2.588191,-9.659258,2.8,-2.588191,-9.36948,0.56,-2.510545,-9.36948,1.12,-2.510545,-9.617016,0.56,-1.266104,-9.617016,1.12,-1.266104,-9.36948,1.12,-2.510545,-9.659258,1.4,-2.588191,-9.617016,1.12,-1.266104,-9.914449,1.4,-1.305262,-9.617016,1.12,-1.266104,-9.914449,1.4,-1.305262,-9.7,1.12,7.450377E-08,-10,1.4,7.450372E-08,2.588191,1.804779E-15,9.659258,1.305262,1.804779E-15,9.914448,2.588191,0.56,9.659258,1.305262,0.56,9.914448,5,1.804779E-15,8.660254,3.826834,1.804779E-15,9.238795,5,0.56,8.660254,3.826834,0.56,9.238795,8.660254,0.56,5,8.660254,1.804779E-15,5,7.933534,0.56,6.087614,7.933534,1.804779E-15,6.087614,1.305262,1.804779E-15,9.914448,-4.764615E-12,3.609557E-15,10,1.305262,0.56,9.914448,-4.764615E-12,0.56,10,10,2.8,7.451324E-08,9.914449,2.8,1.305262,9.914449,2.8,-1.305262,9.659258,2.8,-2.588191,9.659258,2.8,2.588191,9.238795,2.8,-3.826834,9.238795,2.8,3.826835,8.660254,2.8,-5,8.660254,2.8,5,7.933534,2.8,-6.087614,7.071068,2.8,-7.071068,6.087614,2.8,-7.933533,5,2.8,-8.660254,3.826835,2.8,-9.238795,2.588191,2.8,-9.659258,1.305262,2.8,-9.914448,-1.490122E-07,2.8,-10,-1.305262,2.8,-9.914448,-2.588191,2.8,-9.659258,-3.826835,2.8,-9.238795,-5,2.8,-8.660254,-6.087614,2.8,-7.933533,-7.071068,2.8,-7.071068,-7.933534,2.8,-6.087614,-8.660254,2.8,-5,-9.238795,2.8,-3.826834,-9.659258,2.8,-2.588191,-9.659258,2.8,2.588191,-9.914449,2.8,1.305262,-9.914449,2.8,-1.305262,-10,2.8,7.450372E-08,-9.238795,2.8,3.826835,-8.660254,2.8,5,-7.933534,2.8,6.087614,-7.071068,2.8,7.071068,-6.087614,2.8,7.933533,-5,2.8,8.660254,-3.826834,2.8,9.238795,-2.588191,2.8,9.659258,-1.305262,2.8,9.914448,-4.764615E-12,2.8,10,1.305262,2.8,9.914448,2.588191,2.8,9.659258,3.826834,2.8,9.238795,5,2.8,8.660254,6.087614,2.8,7.933533,7.071068,2.8,7.071068,7.933534,2.8,6.087614,3.826834,1.804779E-15,9.238795,2.588191,1.804779E-15,9.659258,3.826834,0.56,9.238795,2.588191,0.56,9.659258,7.071068,1.804779E-15,7.071068,6.087614,1.804779E-15,7.933533,7.071068,0.56,7.071068,6.087614,0.56,7.933533,6.087614,1.804779E-15,7.933533,5,1.804779E-15,8.660254,6.087614,0.56,7.933533,5,0.56,8.660254,9.914449,0.56,1.305262,9.914449,1.804779E-15,1.305262,9.659258,0.56,2.588191,9.659258,1.804779E-15,2.588191,9.238795,0.56,3.826835,9.238795,1.804779E-15,3.826835,8.660254,0.56,5,8.660254,1.804779E-15,5,9.659258,0.56,2.588191,9.659258,1.804779E-15,2.588191,9.238795,0.56,3.826835,9.238795,1.804779E-15,3.826835,10,0.56,7.451324E-08,10,0,7.451324E-08,9.914449,0.56,1.305262,9.914449,1.804779E-15,1.305262,7.933534,0.56,6.087614,7.933534,1.804779E-15,6.087614,7.071068,0.56,7.071068,7.071068,1.804779E-15,7.071068,-9.659258,3.609557E-15,2.588191,-9.659258,0.56,2.588191,-9.238795,3.609557E-15,3.826835,-9.238795,0.56,3.826835,-5,3.609557E-15,8.660254,-6.087614,3.609557E-15,7.933533,-5,0.56,8.660254,-6.087614,0.56,7.933533,-10,5.414336E-15,7.450372E-08,-10,0.56,7.450372E-08,-9.914449,3.609557E-15,1.305262,-9.914449,0.56,1.305262,-9.238795,3.609557E-15,3.826835,-9.238795,0.56,3.826835,-8.660254,3.609557E-15,5,-8.660254,0.56,5,-3.826834,3.609557E-15,9.238795,-5,3.609557E-15,8.660254,-3.826834,0.56,9.238795,-5,0.56,8.660254,-8.660254,3.609557E-15,5,-8.660254,0.56,5,-7.933534,3.609557E-15,6.087614,-7.933534,0.56,6.087614,-9.914449,3.609557E-15,1.305262,-9.914449,0.56,1.305262,-9.659258,3.609557E-15,2.588191,-9.659258,0.56,2.588191,-7.933534,3.609557E-15,6.087614,-7.933534,0.56,6.087614,-7.071068,3.609557E-15,7.071068,-7.071068,0.56,7.071068,-1.305262,3.609557E-15,9.914448,-2.588191,3.609557E-15,9.659258,-1.305262,0.56,9.914448,-2.588191,0.56,9.659258,-4.764615E-12,3.609557E-15,10,-1.305262,3.609557E-15,9.914448,-4.764615E-12,0.56,10,-1.305262,0.56,9.914448,-2.588191,3.609557E-15,9.659258,-3.826834,3.609557E-15,9.238795,-2.588191,0.56,9.659258,-3.826834,0.56,9.238795,-6.087614,3.609557E-15,7.933533,-7.071068,3.609557E-15,7.071068,-6.087614,0.56,7.933533,-7.071068,0.56,7.071068,9.914449,0.56,-1.305262,9.914449,0,-1.305262,10,0.56,7.451324E-08,10,0,7.451324E-08,5,0,-8.660254,6.087614,0,-7.933533,5,0.56,-8.660254,6.087614,0.56,-7.933533,1.305262,0,-9.914448,1.305262,0.56,-9.914448,-1.490122E-07,5.414336E-15,-10,-1.490122E-07,0.56,-10,9.238795,0.56,-3.826834,9.238795,0,-3.826834,9.659258,0.56,-2.588191,9.659258,0,-2.588191,10,0.56,7.451324E-08,9.914449,0.56,1.305262,9.914449,0.56,-1.305262,9.659258,0.56,-2.588191,9.7,0.56,7.451301E-08,9.659258,0.56,2.588191,9.617016,0.56,-1.266104,9.617016,0.56,1.266104,9.238795,0.56,-3.826834,9.36948,0.56,-2.510545,8.961631,0.56,-3.712029,8.660254,0.56,-5,8.400446,0.56,-4.85,7.933534,0.56,-6.087614,7.695527,0.56,-5.904985,7.071068,0.56,-7.071068,6.858936,0.56,-6.858935,6.087614,0.56,-7.933533,5.904985,0.56,-7.695527,5,0.56,-8.660254,4.85,0.56,-8.400446,3.826835,0.56,-9.238795,3.712029,0.56,-8.961631,2.588191,0.56,-9.659258,2.510545,0.56,-9.36948,1.305262,0.56,-9.914448,1.266104,0.56,-9.617015,-1.490122E-07,0.56,-10,-1.490123E-07,0.56,-9.7,-1.305262,0.56,-9.914448,-1.266104,0.56,-9.617015,-2.510545,0.56,-9.36948,-2.588191,0.56,-9.659258,-3.712029,0.56,-8.961631,-3.826835,0.56,-9.238795,-4.85,0.56,-8.400446,-5,0.56,-8.660254,-5.904985,0.56,-7.695527,-6.087614,0.56,-7.933533,-6.858936,0.56,-6.858935,-7.071068,0.56,-7.071068,-7.695527,0.56,-5.904985,-7.933534,0.56,-6.087614,-8.400446,0.56,-4.85,-8.660254,0.56,-5,-8.961631,0.56,-3.712029,-9.238795,0.56,-3.826834,-9.36948,0.56,-2.510545,-9.659258,0.56,-2.588191,-9.617016,0.56,-1.266104,-9.7,0.56,7.450377E-08,-9.914449,0.56,-1.305262,-9.914449,0.56,1.305262,-10,0.56,7.450372E-08,-9.659258,0.56,2.588191,-9.617016,0.56,1.266104,-9.36948,0.56,2.510545,-9.238795,0.56,3.826835,-8.961631,0.56,3.712029,-8.660254,0.56,5,-8.400446,0.56,4.85,-7.933534,0.56,6.087614,-7.695527,0.56,5.904985,-7.071068,0.56,7.071068,-6.858936,0.56,6.858936,-6.087614,0.56,7.933533,-5.904985,0.56,7.695527,-5,0.56,8.660254,-4.85,0.56,8.400446,-3.826834,0.56,9.238795,-3.712029,0.56,8.961631,-2.588191,0.56,9.659258,-2.510545,0.56,9.36948,-1.305262,0.56,9.914448,-1.266104,0.56,9.617015,-4.475013E-09,0.56,9.7,-4.764615E-12,0.56,10,1.266104,0.56,9.617015,1.305262,0.56,9.914448,2.510545,0.56,9.36948,2.588191,0.56,9.659258,3.712029,0.56,8.961631,3.826834,0.56,9.238795,4.85,0.56,8.400446,5,0.56,8.660254,5.904985,0.56,7.695527,6.087614,0.56,7.933533,6.858936,0.56,6.858936,7.071068,0.56,7.071068,7.695527,0.56,5.904985,7.933534,0.56,6.087614,8.400446,0.56,4.85,8.660254,0.56,5,8.961631,0.56,3.712029,9.238795,0.56,3.826835,9.36948,0.56,2.510545,8.660254,0.56,-5,8.660254,0,-5,9.238795,0.56,-3.826834,9.238795,0,-3.826834,3.826835,0,-9.238795,5,0,-8.660254,3.826835,0.56,-9.238795,5,0.56,-8.660254,2.588191,0,-9.659258,3.826835,0,-9.238795,2.588191,0.56,-9.659258,3.826835,0.56,-9.238795,7.071068,0.56,-7.071068,7.071068,0,-7.071068,7.933534,0.56,-6.087614,7.933534,0,-6.087614,9.659258,0.56,-2.588191,9.659258,0,-2.588191,9.914449,0.56,-1.305262,9.914449,0,-1.305262,1.305262,0,-9.914448,2.588191,0,-9.659258,1.305262,0.56,-9.914448,2.588191,0.56,-9.659258,7.933534,0.56,-6.087614,7.933534,0,-6.087614,8.660254,0.56,-5,8.660254,0,-5,6.087614,0,-7.933533,7.071068,0,-7.071068,6.087614,0.56,-7.933533,7.071068,0.56,-7.071068,-9.659258,5.414336E-15,-2.588191,-9.659258,0.56,-2.588191,-9.914449,5.414336E-15,-1.305262,-9.914449,0.56,-1.305262,-7.071068,5.414336E-15,-7.071068,-6.087614,5.414336E-15,-7.933533,-7.071068,0.56,-7.071068,-6.087614,0.56,-7.933533,-6.087614,5.414336E-15,-7.933533,-5,5.414336E-15,-8.660254,-6.087614,0.56,-7.933533,-5,0.56,-8.660254,-9.238795,5.414336E-15,-3.826834,-9.238795,0.56,-3.826834,-9.659258,5.414336E-15,-2.588191,-9.659258,0.56,-2.588191,-7.933534,5.414336E-15,-6.087614,-7.933534,0.56,-6.087614,-8.660254,5.414336E-15,-5,-8.660254,0.56,-5,-5,5.414336E-15,-8.660254,-3.826835,5.414336E-15,-9.238795,-5,0.56,-8.660254,-3.826835,0.56,-9.238795,-8.660254,5.414336E-15,-5,-8.660254,0.56,-5,-9.238795,5.414336E-15,-3.826834,-9.238795,0.56,-3.826834,-9.914449,5.414336E-15,-1.305262,-9.914449,0.56,-1.305262,-10,5.414336E-15,7.450372E-08,-10,0.56,7.450372E-08,-1.305262,5.414336E-15,-9.914448,-1.490122E-07,5.414336E-15,-10,-1.305262,0.56,-9.914448,-1.490122E-07,0.56,-10,-3.826835,5.414336E-15,-9.238795,-2.588191,5.414336E-15,-9.659258,-3.826835,0.56,-9.238795,-2.588191,0.56,-9.659258,-2.588191,5.414336E-15,-9.659258,-1.305262,5.414336E-15,-9.914448,-2.588191,0.56,-9.659258,-1.305262,0.56,-9.914448,-7.071068,5.414336E-15,-7.071068,-7.071068,0.56,-7.071068,-7.933534,5.414336E-15,-6.087614,-7.933534,0.56,-6.087614,7,1.4,7.451088E-08,6.940114,1.4,0.9136834,6.940114,1.4,-0.9136832,6.76148,1.4,-1.811733,6.76148,1.4,1.811733,6.467157,1.4,-2.678784,6.467156,1.4,2.678784,6.062178,1.4,-3.5,6.062178,1.4,3.5,5.553473,1.4,-4.26133,5.553473,1.4,4.26133,4.949748,1.4,-4.949747,4.949748,1.4,4.949747,4.26133,1.4,-5.553473,4.26133,1.4,5.553473,3.5,1.4,-6.062178,3.5,1.4,6.062178,2.678784,1.4,-6.467156,2.678784,1.4,6.467156,1.811733,1.4,-6.76148,1.811733,1.4,6.76148,0.9136835,1.4,-6.940114,0.9136834,1.4,6.940114,-1.490124E-07,1.4,-7,-4.470731E-08,1.4,7,-0.9136834,1.4,6.940114,-0.9136835,1.4,-6.940114,-1.811733,1.4,6.76148,-1.811733,1.4,-6.76148,-2.678784,1.4,6.467156,-2.678784,1.4,-6.467156,-3.5,1.4,6.062178,-3.5,1.4,-6.062178,-4.26133,1.4,5.553473,-4.26133,1.4,-5.553473,-4.949748,1.4,4.949747,-4.949748,1.4,-4.949747,-5.553473,1.4,4.26133,-5.553473,1.4,-4.26133,-6.062178,1.4,3.5,-6.062178,1.4,-3.5,-6.467156,1.4,2.678784,-6.467157,1.4,-2.678784,-6.76148,1.4,1.811733,-6.76148,1.4,-1.811733,-6.940114,1.4,0.9136834,-6.940114,1.4,-0.9136832,-7,1.4,7.450406E-08,6.940114,1.4,-0.9136832,6.940114,1.4,0.9136834,7,1.4,7.451088E-08,6.76148,1.4,-1.811733,6.76148,1.4,1.811733,6.467157,1.4,-2.678784,6.467156,1.4,2.678784,6.062178,1.4,-3.5,6.062178,1.4,3.5,5.553473,1.4,-4.26133,5.553473,1.4,4.26133,4.949748,1.4,-4.949747,4.949748,1.4,4.949747,4.26133,1.4,-5.553473,4.26133,1.4,5.553473,3.5,1.4,-6.062178,3.5,1.4,6.062178,2.678784,1.4,-6.467156,2.678784,1.4,6.467156,1.811733,1.4,-6.76148,1.811733,1.4,6.76148,0.9136835,1.4,-6.940114,0.9136834,1.4,6.940114,-1.490124E-07,1.4,-7,-4.470731E-08,1.4,7,-0.9136834,1.4,6.940114,-0.9136835,1.4,-6.940114,-1.811733,1.4,6.76148,-1.811733,1.4,-6.76148,-2.678784,1.4,6.467156,-2.678784,1.4,-6.467156,-3.5,1.4,6.062178,-3.5,1.4,-6.062178,-4.26133,1.4,5.553473,-4.26133,1.4,-5.553473,-4.949748,1.4,4.949747,-4.949748,1.4,-4.949747,-5.553473,1.4,4.26133,-5.553473,1.4,-4.26133,-6.062178,1.4,3.5,-6.062178,1.4,-3.5,-6.467156,1.4,2.678784,-6.467157,1.4,-2.678784,-6.76148,1.4,1.811733,-6.76148,1.4,-1.811733,-6.940114,1.4,0.9136834,-6.940114,1.4,-0.9136832,-7,1.4,7.450406E-08 + } + PolygonVertexIndex: *3294 { + a: 0,2,-2,3,1,-3,2,4,-4,5,3,-5,6,8,-8,9,7,-9,7,9,-11,11,10,-10,12,14,-14,15,13,-15,14,16,-16,17,15,-17,18,20,-20,21,19,-21,20,22,-22,23,21,-23,24,26,-26,27,25,-27,25,27,-29,29,28,-28,30,32,-32,33,31,-33,34,36,-36,37,35,-37,37,38,-36,39,35,-39,40,42,-42,43,41,-43,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,57,58,-56,59,55,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,67,68,-66,69,65,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,81,82,-80,83,79,-83,84,86,-86,87,85,-87,87,88,-86,89,85,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,189,-192,193,192,-192,194,192,-194,195,194,-194,196,194,-196,197,196,-196,198,196,-198,199,198,-198,200,199,-198,199,201,-199,202,200,-198,203,200,-203,204,203,-203,205,198,-202,206,205,-202,207,205,-207,208,204,-203,209,204,-209,210,209,-209,211,205,-208,212,211,-208,213,211,-213,214,210,-209,215,210,-215,216,215,-215,217,216,-215,218,216,-218,219,211,-214,220,219,-214,221,219,-221,222,219,-222,223,222,-222,224,218,-218,225,218,-225,226,225,-225,227,226,-225,228,226,-228,229,228,-228,230,228,-230,231,222,-224,232,231,-224,233,231,-233,234,231,-234,235,234,-234,236,234,-236,237,236,-236,238,230,-230,239,230,-239,240,239,-239,241,240,-239,242,240,-242,243,236,-238,244,243,-238,245,243,-245,246,243,-246,247,246,-246,248,242,-242,249,242,-249,250,249,-249,251,250,-249,252,250,-252,253,246,-248,254,253,-248,255,253,-255,256,253,-256,257,256,-256,258,252,-252,259,252,-259,260,259,-259,261,256,-258,262,261,-258,263,261,-263,264,260,-259,265,260,-265,266,265,-265,267,261,-264,268,267,-264,269,267,-269,270,266,-265,271,267,-270,272,266,-271,273,271,-270,274,271,-274,274,272,-271,271,274,-271,275,271,-271,276,275,-271,277,275,-277,278,277,-277,279,277,-279,280,279,-279,281,279,-281,282,281,-281,283,281,-283,284,286,-286,287,285,-287,288,285,-288,289,288,-288,290,288,-290,291,290,-290,292,290,-292,293,292,-292,294,292,-294,295,294,-294,296,294,-296,297,296,-296,298,296,-298,299,298,-298,300,298,-300,301,300,-300,302,300,-302,303,302,-302,304,302,-304,305,304,-304,306,304,-306,307,306,-306,308,306,-308,309,308,-308,310,309,-308,311,309,-311,312,311,-311,313,311,-313,314,313,-313,315,313,-315,316,315,-315,317,315,-317,318,317,-317,319,317,-319,320,319,-319,321,319,-321,322,321,-321,323,321,-323,324,323,-323,325,323,-325,326,325,-325,327,325,-327,328,327,-327,329,327,-329,330,329,-329,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,366,368,-368,369,367,-369,370,372,-372,373,371,-373,374,376,-376,377,375,-377,376,378,-378,379,377,-379,380,382,-382,383,381,-383,383,382,-385,385,384,-383,386,388,-388,389,387,-389,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,399,398,-401,401,400,-399,402,404,-404,405,403,-405,406,408,-408,409,407,-409,410,412,-412,413,411,-413,414,416,-416,417,415,-417,417,416,-419,419,418,-417,420,422,-422,423,421,-423,423,422,-425,425,424,-423,426,428,-428,429,427,-429,430,432,-432,433,431,-433,434,436,-436,437,435,-437,438,440,-440,441,439,-441,442,444,-444,445,443,-445,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,454,-454,455,453,-455,456,458,-458,459,457,-459,460,462,-462,463,461,-463,464,466,-466,467,465,-467,468,470,-470,471,469,-471,472,474,-474,475,473,-475,476,478,-478,479,477,-479,480,482,-482,483,481,-483,484,486,-486,487,485,-487,486,488,-488,489,487,-489,490,492,-492,493,491,-493,493,494,-492,495,491,-495,496,498,-498,499,497,-499,500,502,-502,503,501,-503,504,506,-506,507,505,-507,507,508,-506,509,505,-509,510,512,-512,513,511,-513,514,516,-516,517,515,-517,518,520,-520,521,519,-521,522,524,-524,525,523,-525,526,528,-528,529,527,-529,528,530,-530,531,529,-531,532,534,-534,535,533,-535,536,538,-538,539,537,-539,540,542,-542,543,541,-543,544,546,-546,547,545,-547,548,550,-550,551,549,-551,552,554,-554,555,553,-555,556,558,-558,559,557,-559,560,562,-562,563,561,-563,564,566,-566,567,565,-567,568,570,-570,571,569,-571,572,574,-574,575,573,-575,576,578,-578,579,577,-579,578,580,-580,581,579,-581,582,584,-584,585,583,-585,586,588,-588,589,587,-589,590,592,-592,593,591,-593,594,596,-596,597,595,-597,598,600,-600,601,599,-601,602,604,-604,605,603,-605,604,606,-606,607,605,-607,608,610,-610,611,609,-611,612,611,-611,613,611,-613,614,613,-613,615,613,-615,616,615,-615,617,615,-617,618,617,-617,619,617,-619,620,619,-619,621,619,-621,621,620,-623,623,619,-622,624,622,-621,625,619,-624,626,622,-625,627,626,-625,628,627,-625,629,625,-624,630,625,-630,631,625,-631,632,628,-625,633,628,-633,634,633,-633,635,625,-632,636,635,-632,637,635,-637,638,634,-633,639,634,-639,640,639,-639,641,635,-638,642,641,-638,643,641,-643,644,640,-639,645,640,-645,646,645,-645,647,646,-645,648,646,-648,649,648,-648,650,648,-650,651,641,-644,652,651,-644,653,651,-653,654,651,-654,655,654,-654,656,654,-656,657,656,-656,658,650,-650,659,650,-659,660,659,-659,661,660,-659,662,660,-662,663,656,-658,664,663,-658,665,663,-665,666,663,-666,667,666,-666,668,662,-662,669,662,-669,670,669,-669,671,666,-668,672,671,-668,673,671,-673,674,670,-669,675,670,-675,676,675,-675,677,671,-674,678,677,-674,679,677,-679,680,676,-675,681,676,-681,682,681,-681,683,677,-680,684,683,-680,685,683,-685,686,682,-681,687,683,-686,688,682,-687,689,687,-686,690,688,-687,691,687,-690,692,690,-687,692,687,-692,686,687,-693,693,687,-687,694,687,-694,695,694,-694,696,694,-696,697,696,-696,698,696,-698,699,698,-698,700,698,-700,701,700,-700,702,700,-702,703,702,-702,704,706,-706,707,705,-707,707,706,-709,709,708,-707,710,712,-712,713,711,-713,713,712,-715,715,714,-713,716,718,-718,719,717,-719,719,718,-721,721,720,-719,722,724,-724,725,723,-725,726,728,-728,729,727,-729,730,732,-732,733,731,-733,733,732,-735,735,734,-733,736,738,-738,739,737,-739,738,740,-740,741,739,-741,742,744,-744,745,743,-745,745,744,-747,747,746,-745,748,750,-750,751,749,-751,750,752,-752,753,751,-753,754,756,-756,757,755,-757,758,760,-760,761,759,-761,762,764,-764,765,763,-765,766,768,-768,769,767,-769,768,770,-770,771,769,-771,772,774,-774,775,773,-775,775,774,-777,777,776,-775,778,780,-780,781,779,-781,782,784,-784,785,783,-785,784,786,-786,787,785,-787,788,790,-790,791,789,-791,792,794,-794,795,793,-795,796,798,-798,799,797,-799,800,802,-802,803,801,-803,804,806,-806,807,805,-807,808,810,-810,811,809,-811,812,814,-814,815,813,-815,816,818,-818,819,817,-819,820,822,-822,823,821,-823,824,826,-826,827,825,-827,828,830,-830,831,829,-831,832,834,-834,835,833,-835,836,838,-838,839,837,-839,840,842,-842,843,841,-843,844,846,-846,847,845,-847,848,850,-850,851,849,-851,852,854,-854,855,853,-855,856,858,-858,859,857,-859,860,862,-862,863,861,-863,864,866,-866,867,865,-867,868,870,-870,871,869,-871,872,874,-874,875,873,-875,876,878,-878,879,877,-879,880,882,-882,883,881,-883,884,886,-886,887,885,-887,888,890,-890,891,889,-891,892,894,-894,895,893,-895,896,898,-898,899,897,-899,900,902,-902,903,901,-903,904,906,-906,907,905,-907,908,910,-910,911,909,-911,911,912,-910,913,909,-913,914,916,-916,917,915,-917,918,920,-920,921,919,-921,922,924,-924,925,923,-925,925,926,-924,927,923,-927,928,930,-930,931,929,-931,930,932,-932,933,931,-933,934,936,-936,937,935,-937,936,938,-938,939,937,-939,940,942,-942,943,941,-943,942,944,-944,945,943,-945,946,948,-948,949,947,-949,950,952,-952,953,951,-953,952,954,-954,955,953,-955,956,958,-958,959,957,-959,959,960,-958,961,957,-961,962,964,-964,965,963,-965,965,964,-967,967,966,-965,968,970,-970,971,969,-971,972,974,-974,975,973,-975,976,978,-978,979,977,-979,980,982,-982,983,981,-983,984,986,-986,987,985,-987,988,990,-990,991,989,-991,992,994,-994,995,993,-995,996,998,-998,999,997,-999,1000,1002,-1002,1003,1001,-1003,1004,1006,-1006,1007,1005,-1007,1006,1008,-1008,1009,1007,-1009,1010,1012,-1012,1013,1011,-1013,1014,1016,-1016,1017,1015,-1017,1017,1018,-1016,1019,1015,-1019,1020,1022,-1022,1023,1021,-1023,1024,1026,-1026,1027,1025,-1027,1028,1030,-1030,1031,1029,-1031,1032,1034,-1034,1035,1033,-1035,1036,1038,-1038,1039,1037,-1039,1040,1042,-1042,1043,1041,-1043,1044,1046,-1046,1047,1045,-1047,1048,1050,-1050,1051,1049,-1051,1052,1054,-1054,1055,1053,-1055,1054,1056,-1056,1057,1055,-1057,1058,1060,-1060,1061,1059,-1061,1062,1064,-1064,1065,1063,-1065,1065,1066,-1064,1067,1063,-1067,1068,1070,-1070,1071,1069,-1071,1072,1074,-1074,1075,1073,-1075,1076,1078,-1078,1079,1077,-1079,1080,1082,-1082,1083,1081,-1083,1084,1086,-1086,1087,1085,-1087,1088,1090,-1090,1091,1089,-1091,1092,1094,-1094,1095,1093,-1095,1096,1098,-1098,1099,1097,-1099,1100,1102,-1102,1103,1101,-1103,1104,1106,-1106,1107,1105,-1107,1108,1110,-1110,1111,1109,-1111,1112,1114,-1114,1115,1113,-1115,1116,1118,-1118,1119,1117,-1119,1120,1122,-1122,1123,1121,-1123,1124,1121,-1124,1125,1124,-1124,188,1124,-1126,1124,188,-1127,190,188,-1126,189,1126,-189,1127,190,-1126,191,190,-1128,193,191,-1128,1128,1126,-190,192,1128,-190,194,1128,-193,1129,193,-1128,195,193,-1130,197,195,-1130,1130,197,-1130,202,197,-1131,1131,202,-1131,208,202,-1132,1132,208,-1132,214,208,-1133,1133,214,-1133,217,214,-1134,1134,217,-1134,224,217,-1135,1135,224,-1135,227,224,-1136,1136,227,-1136,229,227,-1137,1137,229,-1137,238,229,-1138,241,238,-1138,1138,241,-1138,248,241,-1139,1139,248,-1139,251,248,-1140,1140,251,-1140,258,251,-1141,1141,258,-1141,264,258,-1142,1142,264,-1142,270,264,-1143,1143,270,-1143,276,270,-1144,1144,276,-1144,278,276,-1145,280,278,-1145,1145,280,-1145,282,280,-1146,283,282,-1146,1146,283,-1146,1147,283,-1147,1148,1147,-1147,1149,1148,-1147,1150,1148,-1150,1147,1151,-284,283,1151,-282,281,1151,-280,1151,1152,-280,279,1152,-278,277,1152,-276,1152,1153,-276,275,1153,-272,1153,1154,-272,271,1154,-268,1154,1155,-268,267,1155,-262,1155,1156,-262,261,1156,-257,1156,1157,-257,256,1157,-254,1157,1158,-254,253,1158,-247,1158,1159,-247,246,1159,-244,243,1159,-237,1159,1160,-237,236,1160,-235,1160,1161,-235,234,1161,-232,1161,1162,-232,231,1162,-223,1162,1163,-223,222,1163,-220,1163,1164,-220,219,1164,-212,1164,1165,-212,211,1165,-206,1165,1166,-206,205,1166,-199,1166,1167,-199,198,1167,-197,196,1167,-195,1167,1128,-195,1168,1170,-1170,1171,1169,-1171,1172,1174,-1174,1175,1173,-1175,1176,1178,-1178,1179,1177,-1179,1180,1182,-1182,1183,1181,-1183,1184,1186,-1186,1187,1185,-1187,1188,1190,-1190,1191,1189,-1191,1192,1194,-1194,1195,1193,-1195,1196,1198,-1198,1199,1197,-1199,1200,1202,-1202,1203,1201,-1203,1204,1206,-1206,1207,1205,-1207,1208,1210,-1210,1211,1209,-1211,1212,1214,-1214,1215,1213,-1215,1216,1218,-1218,1219,1217,-1219,1220,1222,-1222,1223,1221,-1223,1224,1226,-1226,1227,1225,-1227,1228,1230,-1230,1231,1229,-1231,1232,1234,-1234,1235,1233,-1235,1236,1238,-1238,1239,1237,-1239,1240,1242,-1242,1243,1241,-1243,1244,1246,-1246,1247,1245,-1247,1248,1250,-1250,1251,1249,-1251,1252,1254,-1254,1255,1253,-1255,1256,1258,-1258,1259,1257,-1259,1260,1262,-1262,1263,1261,-1263,1264,1266,-1266,1267,1265,-1267,1268,1265,-1268,1265,1268,-1270,1270,1268,-1268,1271,1269,-1269,1272,1270,-1268,1273,1270,-1273,1274,1273,-1273,1275,1274,-1273,1276,1274,-1276,1277,1276,-1276,1278,1276,-1278,1279,1278,-1278,1280,1278,-1280,1281,1280,-1280,1282,1280,-1282,1283,1282,-1282,1284,1282,-1284,1285,1284,-1284,1286,1284,-1286,1287,1286,-1286,1288,1286,-1288,1289,1288,-1288,1290,1288,-1290,1291,1290,-1290,1292,1290,-1292,1293,1292,-1292,1294,1292,-1294,1295,1294,-1294,1296,1295,-1294,1297,1295,-1297,1298,1297,-1297,1299,1297,-1299,1300,1299,-1299,1301,1299,-1301,1302,1301,-1301,1303,1301,-1303,1304,1303,-1303,1305,1303,-1305,1306,1305,-1305,1307,1305,-1307,1308,1307,-1307,1309,1307,-1309,1310,1309,-1309,1311,1309,-1311,1312,1311,-1311,1313,1311,-1313,1314,1313,-1313,1315,1314,-1313,1316,1314,-1316,1317,1316,-1316,1316,1318,-1315,1314,1318,-1320,1319,1318,-1321,1318,1321,-1321,1320,1321,-1323,1321,1323,-1323,1322,1323,-1325,1323,1325,-1325,1324,1325,-1327,1325,1327,-1327,1326,1327,-1329,1327,1329,-1329,1328,1329,-1331,1329,1331,-1331,1330,1331,-1333,1331,1333,-1333,1332,1333,-1335,1333,1335,-1335,1334,1335,-1337,1335,1337,-1337,1336,1337,-1339,1338,1337,-1340,1337,1340,-1340,1339,1340,-1342,1340,1342,-1342,1341,1342,-1344,1342,1344,-1344,1343,1344,-1346,1344,1346,-1346,1345,1346,-1348,1346,1348,-1348,1347,1348,-1350,1348,1350,-1350,1349,1350,-1352,1350,1352,-1352,1351,1352,-1354,1352,1354,-1354,1353,1354,-1356,1354,1356,-1356,1355,1356,-1358,1356,1358,-1358,1357,1358,-1360,1359,1358,-1272,1358,1269,-1272,1360,1362,-1362,1363,1361,-1363,1364,1366,-1366,1367,1365,-1367,1368,1370,-1370,1371,1369,-1371,1372,1374,-1374,1375,1373,-1375,1376,1378,-1378,1379,1377,-1379,1380,1382,-1382,1383,1381,-1383,1384,1386,-1386,1387,1385,-1387,1388,1390,-1390,1391,1389,-1391,1392,1394,-1394,1395,1393,-1395,1396,1398,-1398,1399,1397,-1399,1400,1402,-1402,1403,1401,-1403,1404,1406,-1406,1407,1405,-1407,1408,1410,-1410,1411,1409,-1411,1412,1414,-1414,1415,1413,-1415,1416,1418,-1418,1419,1417,-1419,1420,1422,-1422,1423,1421,-1423,1424,1426,-1426,1427,1425,-1427,1428,1430,-1430,1431,1429,-1431,1432,1434,-1434,1435,1433,-1435,1436,1438,-1438,1439,1437,-1439,1440,1442,-1442,1443,1441,-1443,1444,1441,-1444,1445,1444,-1444,1446,1444,-1446,1447,1446,-1446,1448,1446,-1448,1449,1448,-1448,1450,1448,-1450,1451,1450,-1450,1452,1450,-1452,1453,1452,-1452,1454,1452,-1454,1455,1454,-1454,1456,1454,-1456,1457,1456,-1456,1458,1456,-1458,1459,1458,-1458,1460,1458,-1460,1461,1460,-1460,1462,1460,-1462,1463,1462,-1462,1464,1462,-1464,1465,1464,-1464,1466,1465,-1464,1467,1465,-1467,1468,1467,-1467,1469,1467,-1469,1470,1469,-1469,1471,1469,-1471,1472,1471,-1471,1473,1471,-1473,1474,1473,-1473,1475,1473,-1475,1476,1475,-1475,1477,1475,-1477,1478,1477,-1477,1479,1477,-1479,1480,1479,-1479,1481,1479,-1481,1482,1481,-1481,1483,1481,-1483,1484,1483,-1483,1485,1483,-1485,1486,1485,-1485,1487,1485,-1487,1488,1490,-1490,1489,1491,-1489,1489,1492,-1492,1492,1493,-1492,1492,1494,-1494,1494,1495,-1494,1494,1496,-1496,1496,1497,-1496,1496,1498,-1498,1498,1499,-1498,1498,1500,-1500,1500,1501,-1500,1500,1502,-1502,1502,1503,-1502,1502,1504,-1504,1504,1505,-1504,1504,1506,-1506,1506,1507,-1506,1506,1508,-1508,1508,1509,-1508,1508,1510,-1510,1510,1511,-1510,1510,1512,-1512,1512,1513,-1512,1513,1514,-1512,1513,1515,-1515,1515,1516,-1515,1515,1517,-1517,1517,1518,-1517,1517,1519,-1519,1519,1520,-1519,1519,1521,-1521,1521,1522,-1521,1521,1523,-1523,1523,1524,-1523,1523,1525,-1525,1525,1526,-1525,1525,1527,-1527,1527,1528,-1527,1527,1529,-1529,1529,1530,-1529,1529,1531,-1531,1531,1532,-1531,1531,1533,-1533,1533,1534,-1533,1533,1535,-1535 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *9882 { + a: -0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0.6303798,-0.7310552,0.2611119,0.5909049,-0.7310552,0.3411591,0.6303798,-0.7310552,0.2611119,0.5909049,-0.7310552,0.3411591,0.6303798,-0.7310552,0.2611119,0.5909049,-0.7310552,0.3411591,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,0.5413195,-0.7310553,0.4153691,0.4824718,-0.7310552,0.4824719,0.5413195,-0.7310553,0.4153691,0.4824718,-0.7310552,0.4824719,0.5413195,-0.7310553,0.4153691,0.4824718,-0.7310552,0.4824719,0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9659258,0,-0.2588191,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,0.415369,-0.7310552,0.5413194,0.3411591,-0.7310552,0.5909049,0.415369,-0.7310552,0.5413194,0.3411591,-0.7310552,0.5909049,0.415369,-0.7310552,0.5413194,0.3411591,-0.7310552,0.5909049,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,0.1765969,-0.7310552,0.6590688,0.08906039,-0.7310552,0.6764809,0.1765969,-0.7310552,0.6590688,0.08906039,-0.7310552,0.6764809,0.1765969,-0.7310552,0.6590688,0.08906039,-0.7310552,0.6764809,0.5909049,-0.7310552,0.3411591,0.5413195,-0.7310553,0.4153691,0.5909049,-0.7310552,0.3411591,0.5413195,-0.7310553,0.4153691,0.5909049,-0.7310552,0.3411591,0.5413195,-0.7310553,0.4153691,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9914449,0,-0.1305262,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9659258,0,-0.2588191,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,0.4824718,-0.7310552,0.4824719,0.415369,-0.7310552,0.5413194,0.4824718,-0.7310552,0.4824719,0.415369,-0.7310552,0.5413194,0.4824718,-0.7310552,0.4824719,0.415369,-0.7310552,0.5413194,0.3411591,-0.7310552,0.5909049,0.2611119,-0.7310553,0.6303799,0.3411591,-0.7310552,0.5909049,0.2611119,-0.7310553,0.6303799,0.3411591,-0.7310552,0.5909049,0.2611119,-0.7310553,0.6303799,0.2611119,-0.7310553,0.6303799,0.1765969,-0.7310552,0.6590688,0.2611119,-0.7310553,0.6303799,0.1765969,-0.7310552,0.6590688,0.2611119,-0.7310553,0.6303799,0.1765969,-0.7310552,0.6590688,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.6764809,-0.7310552,0.0890604,0.6590688,-0.7310552,0.176597,0.6764809,-0.7310552,0.0890604,0.6590688,-0.7310552,0.176597,0.6764809,-0.7310552,0.0890604,0.6590688,-0.7310552,0.176597,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,0.6823182,-0.7310552,0,0.6764809,-0.7310552,0.0890604,0.6823182,-0.7310552,0,0.6764809,-0.7310552,0.0890604,0.6823182,-0.7310552,0,0.6764809,-0.7310552,0.0890604,0.6590688,-0.7310552,0.176597,0.6303798,-0.7310552,0.2611119,0.6590688,-0.7310552,0.176597,0.6303798,-0.7310552,0.2611119,0.6590688,-0.7310552,0.176597,0.6303798,-0.7310552,0.2611119,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,-0.3411591,-0.7310552,0.5909049,-0.3411591,-0.7310552,0.5909049,-0.415369,-0.7310552,0.5413194,-0.415369,-0.7310552,0.5413194,-0.415369,-0.7310552,0.5413194,-0.3411591,-0.7310552,0.5909049,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,-0.6303798,-0.7310552,0.2611119,-0.6303798,-0.7310552,0.2611119,-0.6590688,-0.7310552,0.176597,-0.6590688,-0.7310552,0.176597,-0.6590688,-0.7310552,0.176597,-0.6303798,-0.7310552,0.2611119,0,0,-1,0,0,-1,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0,0,-1,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,-0.6590688,-0.7310552,0.176597,-0.6590688,-0.7310552,0.176597,-0.6764809,-0.7310552,0.0890604,-0.6764809,-0.7310552,0.0890604,-0.6764809,-0.7310552,0.0890604,-0.6590688,-0.7310552,0.176597,0.9659258,0,-0.2588191,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,-0.4824718,-0.7310552,0.4824719,-0.4824718,-0.7310552,0.4824719,-0.5413195,-0.7310553,0.4153691,-0.5413195,-0.7310553,0.4153691,-0.5413195,-0.7310553,0.4153691,-0.4824718,-0.7310552,0.4824719,-0.6764809,-0.7310552,0.0890604,-0.6764809,-0.7310552,0.0890604,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6764809,-0.7310552,0.0890604,-0.5909049,-0.7310552,0.3411591,-0.5909049,-0.7310552,0.3411591,-0.6303798,-0.7310552,0.2611119,-0.6303798,-0.7310552,0.2611119,-0.6303798,-0.7310552,0.2611119,-0.5909049,-0.7310552,0.3411591,0.8660254,0,-0.5,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,-0.415369,-0.7310552,0.5413194,-0.415369,-0.7310552,0.5413194,-0.4824718,-0.7310552,0.4824719,-0.4824718,-0.7310552,0.4824719,-0.4824718,-0.7310552,0.4824719,-0.415369,-0.7310552,0.5413194,-0.5413195,-0.7310553,0.4153691,-0.5413195,-0.7310553,0.4153691,-0.5909049,-0.7310552,0.3411591,-0.5909049,-0.7310552,0.3411591,-0.5909049,-0.7310552,0.3411591,-0.5413195,-0.7310553,0.4153691,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.2611119,-0.7310553,0.6303799,-0.2611119,-0.7310553,0.6303799,-0.3411591,-0.7310552,0.5909049,-0.3411591,-0.7310552,0.5909049,-0.3411591,-0.7310552,0.5909049,-0.2611119,-0.7310553,0.6303799,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.1765969,-0.7310552,0.6590688,-0.1765969,-0.7310552,0.6590688,-0.2611119,-0.7310553,0.6303799,-0.2611119,-0.7310553,0.6303799,-0.2611119,-0.7310553,0.6303799,-0.1765969,-0.7310552,0.6590688,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9659258,0,-0.2588191,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,1,0,0,1,0,0,1,0,0,0.9914449,0,-0.1305262,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,0,-0.7310552,0.6823182,-0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,-0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,-0.08906039,-0.7310552,0.6764809,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.08906039,-0.7310552,0.6764809,-0.08906039,-0.7310552,0.6764809,-0.1765969,-0.7310552,0.6590688,-0.1765969,-0.7310552,0.6590688,-0.1765969,-0.7310552,0.6590688,-0.08906039,-0.7310552,0.6764809,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,0.6590688,-0.7310552,-0.1765969,0.6590688,-0.7310552,-0.1765969,0.6303798,-0.7310552,-0.2611119,0.6303798,-0.7310552,-0.2611119,0.6303798,-0.7310552,-0.2611119,0.6590688,-0.7310552,-0.1765969,0.5909049,-0.7310552,-0.3411591,0.5909049,-0.7310552,-0.3411591,0.5413195,-0.7310552,-0.415369,0.5413195,-0.7310552,-0.415369,0.5413195,-0.7310552,-0.415369,0.5909049,-0.7310552,-0.3411591,0.6764809,-0.7310552,-0.0890604,0.6764809,-0.7310552,-0.0890604,0.6590688,-0.7310552,-0.1765969,0.6590688,-0.7310552,-0.1765969,0.6590688,-0.7310552,-0.1765969,0.6764809,-0.7310552,-0.0890604,0.415369,-0.7310552,-0.5413194,0.415369,-0.7310552,-0.5413194,0.3411591,-0.7310552,-0.5909049,0.3411591,-0.7310552,-0.5909049,0.3411591,-0.7310552,-0.5909049,0.415369,-0.7310552,-0.5413194,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6764809,-0.7310552,-0.0890604,0.6764809,-0.7310552,-0.0890604,0.6764809,-0.7310552,-0.0890604,0.6823182,-0.7310552,0,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,0.5413195,-0.7310552,-0.415369,0.5413195,-0.7310552,-0.415369,0.4824718,-0.7310552,-0.4824718,0.4824718,-0.7310552,-0.4824718,0.4824718,-0.7310552,-0.4824718,0.5413195,-0.7310552,-0.415369,0.4824718,-0.7310552,-0.4824718,0.4824718,-0.7310552,-0.4824718,0.415369,-0.7310552,-0.5413194,0.415369,-0.7310552,-0.5413194,0.415369,-0.7310552,-0.5413194,0.4824718,-0.7310552,-0.4824718,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-1,0,0,-1,0,0,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.3411591,-0.7310552,-0.5909049,0.3411591,-0.7310552,-0.5909049,0.2611119,-0.7310553,-0.6303799,0.2611119,-0.7310553,-0.6303799,0.2611119,-0.7310553,-0.6303799,0.3411591,-0.7310552,-0.5909049,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,0.6303798,-0.7310552,-0.2611119,0.6303798,-0.7310552,-0.2611119,0.5909049,-0.7310552,-0.3411591,0.5909049,-0.7310552,-0.3411591,0.5909049,-0.7310552,-0.3411591,0.6303798,-0.7310552,-0.2611119,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.2611119,-0.7310553,-0.6303799,0.2611119,-0.7310553,-0.6303799,0.1765969,-0.7310552,-0.6590688,0.1765969,-0.7310552,-0.6590688,0.1765969,-0.7310552,-0.6590688,0.2611119,-0.7310553,-0.6303799,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.08906039,-0.7310552,-0.6764809,0.08906039,-0.7310552,-0.6764809,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0.08906039,-0.7310552,-0.6764809,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1765969,-0.7310552,-0.6590688,0.1765969,-0.7310552,-0.6590688,0.08906039,-0.7310552,-0.6764809,0.08906039,-0.7310552,-0.6764809,0.08906039,-0.7310552,-0.6764809,0.1765969,-0.7310552,-0.6590688,-0.415369,-0.7310552,-0.5413194,-0.4824718,-0.7310552,-0.4824718,-0.415369,-0.7310552,-0.5413194,-0.4824718,-0.7310552,-0.4824718,-0.415369,-0.7310552,-0.5413194,-0.4824718,-0.7310552,-0.4824718,-0.2611119,-0.7310553,-0.6303799,-0.3411591,-0.7310552,-0.5909049,-0.2611119,-0.7310553,-0.6303799,-0.3411591,-0.7310552,-0.5909049,-0.2611119,-0.7310553,-0.6303799,-0.3411591,-0.7310552,-0.5909049,-0.4824718,-0.7310552,-0.4824718,-0.5413195,-0.7310552,-0.415369,-0.4824718,-0.7310552,-0.4824718,-0.5413195,-0.7310552,-0.415369,-0.4824718,-0.7310552,-0.4824718,-0.5413195,-0.7310552,-0.415369,-0.3411591,-0.7310552,-0.5909049,-0.415369,-0.7310552,-0.5413194,-0.3411591,-0.7310552,-0.5909049,-0.415369,-0.7310552,-0.5413194,-0.3411591,-0.7310552,-0.5909049,-0.415369,-0.7310552,-0.5413194,-0.0890604,-0.7310552,-0.6764809,-0.1765969,-0.7310552,-0.6590688,-0.0890604,-0.7310552,-0.6764809,-0.1765969,-0.7310552,-0.6590688,-0.0890604,-0.7310552,-0.6764809,-0.1765969,-0.7310552,-0.6590688,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9914449,0,0.1305262,-0.5413195,-0.7310552,-0.415369,-0.5909049,-0.7310552,-0.3411591,-0.5413195,-0.7310552,-0.415369,-0.5909049,-0.7310552,-0.3411591,-0.5413195,-0.7310552,-0.415369,-0.5909049,-0.7310552,-0.3411591,-0.1765969,-0.7310552,-0.6590688,-0.2611119,-0.7310553,-0.6303799,-0.1765969,-0.7310552,-0.6590688,-0.2611119,-0.7310553,-0.6303799,-0.1765969,-0.7310552,-0.6590688,-0.2611119,-0.7310553,-0.6303799,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,-0.0890604,-0.7310552,-0.6764809,-0.0890604,-0.7310552,-0.6764809,-0.0890604,-0.7310552,-0.6764809,0,-0.7310552,-0.6823182,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,1,0,0,1,0,0,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1305262,1,0,0,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.6303798,-0.7310552,-0.2611119,-0.6590688,-0.7310552,-0.1765969,-0.6303798,-0.7310552,-0.2611119,-0.6590688,-0.7310552,-0.1765969,-0.6303798,-0.7310552,-0.2611119,-0.6590688,-0.7310552,-0.1765969,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9659258,0,0.258819,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.9238795,0,0.3826834,-0.5909049,-0.7310552,-0.3411591,-0.6303798,-0.7310552,-0.2611119,-0.5909049,-0.7310552,-0.3411591,-0.6303798,-0.7310552,-0.2611119,-0.5909049,-0.7310552,-0.3411591,-0.6303798,-0.7310552,-0.2611119,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.6590688,-0.7310552,-0.1765969,-0.6764809,-0.7310552,-0.0890604,-0.6590688,-0.7310552,-0.1765969,-0.6764809,-0.7310552,-0.0890604,-0.6590688,-0.7310552,-0.1765969,-0.6764809,-0.7310552,-0.0890604,-0.6764809,-0.7310552,-0.0890604,-0.6823182,-0.7310552,0,-0.6764809,-0.7310552,-0.0890604,-0.6823182,-0.7310552,0,-0.6764809,-0.7310552,-0.0890604,-0.6823182,-0.7310552,0,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *3072 { + a: -1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-5.456587E-12,1.802448,-5.456587E-12,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,1.802448,-5.79204E-12,-1.802449,-5.799146E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-2.331599E-12,1.802448,-2.331599E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-3.956513E-12,1.802448,-3.956513E-12,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,1.802448,-6.543624E-12,-1.802449,-6.55073E-12,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.069094E-11,1.802448,-1.069094E-11,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-7.9123E-12,1.802448,-7.9123E-12,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.127345E-11,1.802448,-1.127345E-11,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-9.968536E-12,1.802448,-9.968536E-12,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-9.049528E-12,1.802448,-9.049528E-12,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.170885E-11,1.802448,-1.170885E-11,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-6.699779E-12,1.802448,-6.699779E-12,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,-36.41732,2.933569E-07,-36.10577,4.753415,-36.10577,-4.753414,-35.17643,-9.425496,-35.17643,9.425497,-33.64522,-13.93631,-33.64522,13.93631,-31.53833,-18.20866,-31.53833,18.20866,-28.89181,-22.16946,-28.89181,22.16946,-27.55906,2.933499E-07,-27.32328,-3.597178,-27.32328,3.597179,-25.75094,-25.75094,-26.62,-7.132808,-25.46125,-10.54639,-25.75094,25.75094,-26.62,7.132808,-25.46125,10.54639,-22.16946,-28.8918,-23.86684,-13.77953,-21.86407,-16.77689,-22.16946,28.89181,-23.86684,13.77953,-21.86407,16.77689,-18.20866,-31.53833,-19.4872,-19.48719,-16.77689,-21.86407,-13.93631,-33.64522,-13.77953,-23.86684,-18.20866,31.53833,-19.4872,19.48719,-16.77689,21.86407,-13.93631,33.64522,-13.77953,23.86684,-9.425497,-35.17643,-10.54639,-25.46125,-7.132809,-26.62,-4.753415,-36.10577,-3.597179,-27.32328,5.866624E-07,-36.41732,5.866628E-07,-27.55906,-9.425497,35.17643,-10.54639,25.46125,-7.132809,26.62,-4.753415,36.10577,-3.597179,27.32328,4.401739E-08,36.41732,1.760138E-07,27.55906,4.753415,-36.10577,3.597179,-27.32328,7.132809,-26.62,9.425497,-35.17643,10.54639,-25.46125,4.753415,36.10577,3.597179,27.32328,7.132809,26.62,9.425497,35.17643,10.54639,25.46125,13.93631,-33.64522,13.77953,-23.86684,16.77689,-21.86407,18.20866,-31.53833,19.4872,-19.48719,13.93631,33.64522,13.77953,23.86684,16.77689,21.86407,18.20866,31.53833,19.4872,19.48719,22.16946,-28.8918,21.86407,-16.77689,23.86684,-13.77953,22.16946,28.89181,21.86407,16.77689,23.86684,13.77953,25.75094,-25.75094,25.46125,-10.54639,26.62,-7.132808,25.75094,25.75094,25.46125,10.54639,26.62,7.132808,28.89181,-22.16946,28.89181,22.16946,27.32328,-3.597178,27.32328,3.597179,27.55906,2.933223E-07,31.53833,18.20866,31.53833,-18.20866,33.64522,13.93631,33.64522,-13.93631,35.17643,9.425497,35.17643,-9.425496,36.10577,4.753415,36.10577,-4.753414,36.41732,2.933222E-07,-27.55906,2.933499E-07,-27.32328,3.597179,-27.32328,-3.597178,-26.62,-7.132808,-26.62,7.132808,-25.46125,-10.54639,-25.46125,10.54639,-23.86684,-13.77953,-23.86684,13.77953,-21.86407,-16.77689,-21.86407,16.77689,-19.4872,-19.48719,-19.4872,19.48719,-16.77689,-21.86407,-16.77689,21.86407,-13.77953,-23.86684,-13.77953,23.86684,-10.54639,-25.46125,-10.54639,25.46125,-7.132809,-26.62,-7.132809,26.62,-3.597179,-27.32328,-3.597179,27.32328,5.866628E-07,-27.55906,1.760138E-07,27.55906,3.597179,27.32328,3.597179,-27.32328,7.132809,26.62,7.132809,-26.62,10.54639,25.46125,10.54639,-25.46125,13.77953,23.86684,13.77953,-23.86684,16.77689,21.86407,16.77689,-21.86407,19.4872,19.48719,19.4872,-19.48719,21.86407,16.77689,21.86407,-16.77689,23.86684,13.77953,23.86684,-13.77953,25.46125,10.54639,25.46125,-10.54639,26.62,7.132808,26.62,-7.132808,27.32328,3.597179,27.32328,-3.597178,27.55906,2.933223E-07,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.170174E-11,1.802449,-1.170174E-11,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.18485E-11,1.802449,-1.18485E-11,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-7.905195E-12,-1.802448,-7.905195E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-9.042422E-12,1.802449,-9.042422E-12,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-2.324494E-12,-1.802448,-2.324494E-12,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-5.449482E-12,-1.802448,-5.449482E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-6.692674E-12,-1.802448,-6.692674E-12,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.126634E-11,1.802449,-1.126634E-11,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.068384E-11,1.802449,-1.068384E-11,-1.802448,-3.949407E-12,-1.802448,5.511811,1.802449,-3.949407E-12,1.802449,5.511811,1.802449,11.02362,-1.802448,11.02362,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,1.802449,11.02362,1.802449,5.511811,-1.802448,11.02362,-1.802448,5.511811,-1.802448,-6.119027E-12,1.802449,-6.111921E-12,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-9.961431E-12,1.802449,-9.961431E-12,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,2.574926,32.45652,2.497678,30.84275,-2.574927,32.45652,-2.497679,30.84275,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.171595E-11,1.802449,-1.171595E-11,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-1.802448,11.02362,1.80245,11.02362,-1.802448,5.511811,1.80245,5.511811,-1.802448,-5.787064E-12,1.80245,-5.80838E-12,39.37008,2.933592E-07,39.03326,-5.138826,39.03326,5.138827,38.02858,-10.18973,38.02858,10.18973,36.37321,-15.06628,36.37321,15.06628,34.09549,-19.68504,34.09549,19.68504,31.23438,-23.96699,31.23438,23.96699,27.83885,-27.83885,27.83885,27.83885,27.55906,2.933499E-07,27.32328,3.597179,27.32328,-3.597178,23.96699,31.23438,23.96699,-31.23438,26.62,7.132808,25.46125,10.54639,23.86684,13.77953,26.62,-7.132808,25.46125,-10.54639,23.86684,-13.77953,19.68504,34.09549,21.86407,16.77689,19.4872,19.48719,19.68504,-34.09549,21.86407,-16.77689,19.4872,-19.48719,15.06628,36.37321,16.77689,21.86407,13.77953,23.86684,15.06628,-36.37321,16.77689,-21.86407,13.77953,-23.86684,10.18973,38.02858,10.54639,25.46125,7.132809,26.62,5.138826,39.03326,3.597179,27.32328,-1.875833E-11,39.37008,-1.760138E-07,27.55906,10.18973,-38.02858,10.54639,-25.46125,7.132809,-26.62,5.138827,-39.03326,3.597179,-27.32328,-5.866623E-07,-39.37008,-5.866628E-07,-27.55906,-5.138826,39.03326,-3.597179,27.32328,-7.132809,26.62,-10.18973,38.02858,-10.54639,25.46125,-5.138827,-39.03326,-3.597179,-27.32328,-7.132809,-26.62,-10.18973,-38.02858,-10.54639,-25.46125,-15.06628,36.37321,-13.77953,23.86684,-16.77689,21.86407,-15.06628,-36.37321,-13.77953,-23.86684,-16.77689,-21.86407,-19.68504,34.09549,-19.4872,19.48719,-21.86407,16.77689,-19.68504,-34.09549,-19.4872,-19.48719,-21.86407,-16.77689,-23.96699,31.23438,-23.86684,13.77953,-25.46125,10.54639,-23.96699,-31.23438,-23.86684,-13.77953,-25.46125,-10.54639,-27.83885,27.83885,-27.83885,-27.83885,-26.62,7.132808,-26.62,-7.132808,-27.32328,3.597179,-27.32328,-3.597178,-27.55906,2.933223E-07,-31.23438,23.96699,-31.23438,-23.96699,-34.09549,19.68504,-34.09549,-19.68504,-36.37321,15.06628,-36.37321,-15.06628,-38.02858,10.18973,-38.02858,-10.18973,-39.03326,5.138827,-39.03326,-5.138826,-39.37008,2.933217E-07,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-7.919406E-12,-1.802448,-7.919406E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-5.463692E-12,-1.802448,-5.463692E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-2.338705E-12,-1.802448,-2.338705E-12,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-3.963618E-12,-1.802448,-3.963618E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.069805E-11,1.802449,-1.069805E-11,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-7.353078E-13,-1.802448,-7.353078E-13,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.128055E-11,1.802449,-1.128055E-11,-2.574928,5.511811,-2.574928,11.02362,2.574926,5.511811,2.574926,11.02362,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-9.056633E-12,1.802449,-9.056633E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-6.706885E-12,-1.802448,-6.706885E-12,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-9.975642E-12,1.802449,-9.975642E-12,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.49768,2.204724,-2.49768,4.409449,2.497679,2.204724,2.497679,4.409449,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,-2.574928,32.45652,2.574926,32.45652,-2.49768,30.84275,2.497679,30.84275,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.169464E-11,1.802448,-1.169464E-11,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-9.035317E-12,1.802448,-9.035317E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-2.317388E-12,1.802448,-2.317388E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-6.685568E-12,1.802448,-6.685568E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-5.442376E-12,1.802448,-5.442376E-12,-2.574926,32.45652,2.574927,32.45652,-2.497678,30.84275,2.497679,30.84275,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-7.898089E-12,1.802448,-7.898089E-12,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.155845E-11,1.802448,-1.155845E-11,1.802448,-9.954326E-12,-1.802449,-9.954326E-12,1.802448,5.511811,-1.802449,5.511811,-1.802449,11.02362,1.802448,11.02362,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,1.802448,-3.942302E-12,-1.802449,-3.942302E-12,1.802448,5.511811,-1.802449,5.511811,1.802448,11.02362,-1.802449,11.02362,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.125923E-11,1.802448,-1.125923E-11,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-7.046844E-13,1.802448,-7.046844E-13,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.067673E-11,1.802448,-1.067673E-11,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,2.574927,7.106994E-15,-2.574926,1.421242E-14,2.574927,2.204724,-2.574926,2.204724,-39.37008,2.933592E-07,-39.03326,5.138827,-39.03326,-5.138826,-38.02858,-10.18973,-38.02858,10.18973,-36.37321,-15.06628,-36.37321,15.06628,-34.09549,-19.68504,-34.09549,19.68504,-31.23438,-23.96699,-27.83885,-27.83885,-23.96699,-31.23438,-19.68504,-34.09549,-15.06628,-36.37321,-10.18973,-38.02858,-5.138827,-39.03326,5.866623E-07,-39.37008,5.138827,-39.03326,10.18973,-38.02858,15.06628,-36.37321,19.68504,-34.09549,23.96699,-31.23438,27.83885,-27.83885,31.23438,-23.96699,34.09549,-19.68504,36.37321,-15.06628,38.02858,-10.18973,38.02858,10.18973,39.03326,5.138827,39.03326,-5.138826,39.37008,2.933217E-07,36.37321,15.06628,34.09549,19.68504,31.23438,23.96699,27.83885,27.83885,23.96699,31.23438,19.68504,34.09549,15.06628,36.37321,10.18973,38.02858,5.138826,39.03326,1.87609E-11,39.37008,-5.138826,39.03326,-10.18973,38.02858,-15.06628,36.37321,-19.68504,34.09549,-23.96699,31.23438,-27.83885,27.83885,-31.23438,23.96699,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,2.574927,2.204724,2.574927,2.331873E-16,-2.574926,2.204724,-2.574926,7.338615E-15,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,-2.574927,2.131784E-14,-2.574927,2.204724,2.574926,1.421241E-14,2.574926,2.204724,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,-2.574928,4.698328E-18,-2.574928,2.204724,2.574926,2.132098E-14,2.574926,2.204724,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,-39.37008,2.933592E-07,-39.03326,5.138827,-39.03326,-5.138826,-38.02858,-10.18973,-38.18898,2.933583E-07,-38.02858,10.18973,-37.86227,-4.984662,-37.86227,4.984662,-36.37321,-15.06628,-36.88772,-9.884034,-35.28201,-14.61429,-34.09549,-19.68504,-33.07262,-19.09449,-31.23438,-23.96699,-30.29735,-23.24798,-27.83885,-27.83885,-27.00368,-27.00368,-23.96699,-31.23438,-23.24798,-30.29735,-19.68504,-34.09549,-19.09449,-33.07262,-15.06628,-36.37321,-14.61429,-35.28201,-10.18973,-38.02858,-9.884035,-36.88772,-5.138827,-39.03326,-4.984662,-37.86226,5.866623E-07,-39.37008,5.866624E-07,-38.18898,5.138827,-39.03326,4.984662,-37.86226,9.884035,-36.88772,10.18973,-38.02858,14.61429,-35.28201,15.06628,-36.37321,19.09449,-33.07262,19.68504,-34.09549,23.24798,-30.29735,23.96699,-31.23438,27.00368,-27.00368,27.83885,-27.83885,30.29735,-23.24798,31.23438,-23.96699,33.07262,-19.09449,34.09549,-19.68504,35.28201,-14.61429,36.37321,-15.06628,36.88772,-9.884034,38.02858,-10.18973,37.86227,-4.984662,38.18898,2.933219E-07,39.03326,-5.138826,39.03326,5.138827,39.37008,2.933217E-07,38.02858,10.18973,37.86227,4.984662,36.88772,9.884035,36.37321,15.06628,35.28201,14.61429,34.09549,19.68504,33.07262,19.09449,31.23438,23.96699,30.29735,23.24798,27.83885,27.83885,27.00368,27.00368,23.96699,31.23438,23.24798,30.29735,19.68504,34.09549,19.09449,33.07262,15.06628,36.37321,14.61429,35.28201,10.18973,38.02858,9.884034,36.88772,5.138826,39.03326,4.984662,37.86226,1.761816E-08,38.18898,1.875886E-11,39.37008,-4.984662,37.86226,-5.138826,39.03326,-9.884034,36.88772,-10.18973,38.02858,-14.61429,35.28201,-15.06628,36.37321,-19.09449,33.07262,-19.68504,34.09549,-23.24798,30.29735,-23.96699,31.23438,-27.00368,27.00368,-27.83885,27.83885,-30.29735,23.24798,-31.23438,23.96699,-33.07262,19.09449,-34.09549,19.68504,-35.28201,14.61429,-36.37321,15.06628,-36.88772,9.884035,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,-27.55906,2.933499E-07,-27.32328,3.597179,-27.32328,-3.597178,-26.62,-7.132808,-26.62,7.132808,-25.46125,-10.54639,-25.46125,10.54639,-23.86684,-13.77953,-23.86684,13.77953,-21.86407,-16.77689,-21.86407,16.77689,-19.4872,-19.48719,-19.4872,19.48719,-16.77689,-21.86407,-16.77689,21.86407,-13.77953,-23.86684,-13.77953,23.86684,-10.54639,-25.46125,-10.54639,25.46125,-7.132809,-26.62,-7.132809,26.62,-3.597179,-27.32328,-3.597179,27.32328,5.866628E-07,-27.55906,1.76013E-07,27.55906,3.597179,27.32328,3.597179,-27.32328,7.132809,26.62,7.132809,-26.62,10.54639,25.46125,10.54639,-25.46125,13.77953,23.86684,13.77953,-23.86684,16.77689,21.86407,16.77689,-21.86407,19.4872,19.48719,19.4872,-19.48719,21.86407,16.77689,21.86407,-16.77689,23.86684,13.77953,23.86684,-13.77953,25.46125,10.54639,25.46125,-10.54639,26.62,7.132808,26.62,-7.132808,27.32328,3.597179,27.32328,-3.597178,27.55906,2.933231E-07,-27.32328,-3.597178,-27.32328,3.597179,-27.55906,2.933499E-07,-26.62,-7.132808,-26.62,7.132808,-25.46125,-10.54639,-25.46125,10.54639,-23.86684,-13.77953,-23.86684,13.77953,-21.86407,-16.77689,-21.86407,16.77689,-19.4872,-19.48719,-19.4872,19.48719,-16.77689,-21.86407,-16.77689,21.86407,-13.77953,-23.86684,-13.77953,23.86684,-10.54639,-25.46125,-10.54639,25.46125,-7.132809,-26.62,-7.132809,26.62,-3.597179,-27.32328,-3.597179,27.32328,5.866628E-07,-27.55906,1.76013E-07,27.55906,3.597179,27.32328,3.597179,-27.32328,7.132809,26.62,7.132809,-26.62,10.54639,25.46125,10.54639,-25.46125,13.77953,23.86684,13.77953,-23.86684,16.77689,21.86407,16.77689,-21.86407,19.4872,19.48719,19.4872,-19.48719,21.86407,16.77689,21.86407,-16.77689,23.86684,13.77953,23.86684,-13.77953,25.46125,10.54639,25.46125,-10.54639,26.62,7.132808,26.62,-7.132808,27.32328,3.597179,27.32328,-3.597178,27.55906,2.933231E-07 + } + UVIndex: *3294 { + a: 0,2,1,3,1,2,2,4,3,5,3,4,6,8,7,9,7,8,7,9,10,11,10,9,12,14,13,15,13,14,14,16,15,17,15,16,18,20,19,21,19,20,20,22,21,23,21,22,24,26,25,27,25,26,25,27,28,29,28,27,30,32,31,33,31,32,34,36,35,37,35,36,37,38,35,39,35,38,40,42,41,43,41,42,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,57,58,55,59,55,58,60,62,61,63,61,62,64,66,65,67,65,66,67,68,65,69,65,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,81,82,79,83,79,82,84,86,85,87,85,86,87,88,85,89,85,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,189,191,193,192,191,194,192,193,195,194,193,196,194,195,197,196,195,198,196,197,199,198,197,200,199,197,199,201,198,202,200,197,203,200,202,204,203,202,205,198,201,206,205,201,207,205,206,208,204,202,209,204,208,210,209,208,211,205,207,212,211,207,213,211,212,214,210,208,215,210,214,216,215,214,217,216,214,218,216,217,219,211,213,220,219,213,221,219,220,222,219,221,223,222,221,224,218,217,225,218,224,226,225,224,227,226,224,228,226,227,229,228,227,230,228,229,231,222,223,232,231,223,233,231,232,234,231,233,235,234,233,236,234,235,237,236,235,238,230,229,239,230,238,240,239,238,241,240,238,242,240,241,243,236,237,244,243,237,245,243,244,246,243,245,247,246,245,248,242,241,249,242,248,250,249,248,251,250,248,252,250,251,253,246,247,254,253,247,255,253,254,256,253,255,257,256,255,258,252,251,259,252,258,260,259,258,261,256,257,262,261,257,263,261,262,264,260,258,265,260,264,266,265,264,267,261,263,268,267,263,269,267,268,270,266,264,271,267,269,272,266,270,273,271,269,274,271,273,274,272,270,271,274,270,275,271,270,276,275,270,277,275,276,278,277,276,279,277,278,280,279,278,281,279,280,282,281,280,283,281,282,284,286,285,287,285,286,288,285,287,289,288,287,290,288,289,291,290,289,292,290,291,293,292,291,294,292,293,295,294,293,296,294,295,297,296,295,298,296,297,299,298,297,300,298,299,301,300,299,302,300,301,303,302,301,304,302,303,305,304,303,306,304,305,307,306,305,308,306,307,309,308,307,310,309,307,311,309,310,312,311,310,313,311,312,314,313,312,315,313,314,316,315,314,317,315,316,318,317,316,319,317,318,320,319,318,321,319,320,322,321,320,323,321,322,324,323,322,325,323,324,326,325,324,327,325,326,328,327,326,329,327,328,330,329,328,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,366,368,367,369,367,368,370,372,371,373,371,372,374,376,375,377,375,376,376,378,377,379,377,378,380,382,381,383,381,382,383,382,384,385,384,382,386,388,387,389,387,388,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,399,398,400,401,400,398,402,404,403,405,403,404,406,408,407,409,407,408,410,412,411,413,411,412,414,416,415,417,415,416,417,416,418,419,418,416,420,422,421,423,421,422,423,422,424,425,424,422,426,428,427,429,427,428,430,432,431,433,431,432,434,436,435,437,435,436,438,440,439,441,439,440,442,444,443,445,443,444,444,446,445,447,445,446,448,450,449,451,449,450,452,454,453,455,453,454,456,458,457,459,457,458,460,462,461,463,461,462,464,466,465,467,465,466,468,470,469,471,469,470,472,474,473,475,473,474,476,478,477,479,477,478,480,482,481,483,481,482,484,486,485,487,485,486,486,488,487,489,487,488,490,492,491,493,491,492,493,494,491,495,491,494,496,498,497,499,497,498,500,502,501,503,501,502,504,506,505,507,505,506,507,508,505,509,505,508,510,512,511,513,511,512,514,516,515,517,515,516,518,520,519,521,519,520,522,524,523,525,523,524,526,528,527,529,527,528,528,530,529,531,529,530,532,534,533,535,533,534,536,538,537,539,537,538,540,542,541,543,541,542,544,546,545,547,545,546,548,550,549,551,549,550,552,554,553,555,553,554,556,558,557,559,557,558,560,562,561,563,561,562,564,566,565,567,565,566,568,570,569,571,569,570,572,574,573,575,573,574,576,578,577,579,577,578,578,580,579,581,579,580,582,584,583,585,583,584,586,588,587,589,587,588,590,592,591,593,591,592,594,596,595,597,595,596,598,600,599,601,599,600,602,604,603,605,603,604,604,606,605,607,605,606,608,610,609,611,609,610,612,611,610,613,611,612,614,613,612,615,613,614,616,615,614,617,615,616,618,617,616,619,617,618,620,619,618,621,619,620,621,620,622,623,619,621,624,622,620,625,619,623,626,622,624,627,626,624,628,627,624,629,625,623,630,625,629,631,625,630,632,628,624,633,628,632,634,633,632,635,625,631,636,635,631,637,635,636,638,634,632,639,634,638,640,639,638,641,635,637,642,641,637,643,641,642,644,640,638,645,640,644,646,645,644,647,646,644,648,646,647,649,648,647,650,648,649,651,641,643,652,651,643,653,651,652,654,651,653,655,654,653,656,654,655,657,656,655,658,650,649,659,650,658,660,659,658,661,660,658,662,660,661,663,656,657,664,663,657,665,663,664,666,663,665,667,666,665,668,662,661,669,662,668,670,669,668,671,666,667,672,671,667,673,671,672,674,670,668,675,670,674,676,675,674,677,671,673,678,677,673,679,677,678,680,676,674,681,676,680,682,681,680,683,677,679,684,683,679,685,683,684,686,682,680,687,683,685,688,682,686,689,687,685,690,688,686,691,687,689,692,690,686,692,687,691,686,687,692,693,687,686,694,687,693,695,694,693,696,694,695,697,696,695,698,696,697,699,698,697,700,698,699,701,700,699,702,700,701,703,702,701,704,706,705,707,705,706,707,706,708,709,708,706,710,712,711,713,711,712,713,712,714,715,714,712,716,718,717,719,717,718,719,718,720,721,720,718,722,724,723,725,723,724,726,728,727,729,727,728,730,732,731,733,731,732,733,732,734,735,734,732,736,738,737,739,737,738,738,740,739,741,739,740,742,744,743,745,743,744,745,744,746,747,746,744,748,750,749,751,749,750,750,752,751,753,751,752,754,756,755,757,755,756,758,760,759,761,759,760,762,764,763,765,763,764,766,768,767,769,767,768,768,770,769,771,769,770,772,774,773,775,773,774,775,774,776,777,776,774,778,780,779,781,779,780,782,784,783,785,783,784,784,786,785,787,785,786,788,790,789,791,789,790,792,794,793,795,793,794,796,798,797,799,797,798,800,802,801,803,801,802,804,806,805,807,805,806,808,810,809,811,809,810,812,814,813,815,813,814,816,818,817,819,817,818,820,822,821,823,821,822,824,826,825,827,825,826,828,830,829,831,829,830,832,834,833,835,833,834,836,838,837,839,837,838,840,842,841,843,841,842,844,846,845,847,845,846,848,850,849,851,849,850,852,854,853,855,853,854,856,858,857,859,857,858,860,862,861,863,861,862,864,866,865,867,865,866,868,870,869,871,869,870,872,874,873,875,873,874,876,878,877,879,877,878,880,882,881,883,881,882,884,886,885,887,885,886,888,890,889,891,889,890,892,894,893,895,893,894,896,898,897,899,897,898,900,902,901,903,901,902,904,906,905,907,905,906,908,910,909,911,909,910,911,912,909,913,909,912,914,916,915,917,915,916,918,920,919,921,919,920,922,924,923,925,923,924,925,926,923,927,923,926,928,930,929,931,929,930,930,932,931,933,931,932,934,936,935,937,935,936,936,938,937,939,937,938,940,942,941,943,941,942,942,944,943,945,943,944,946,948,947,949,947,948,950,952,951,953,951,952,952,954,953,955,953,954,956,958,957,959,957,958,959,960,957,961,957,960,962,964,963,965,963,964,965,964,966,967,966,964,968,970,969,971,969,970,972,974,973,975,973,974,976,978,977,979,977,978,980,982,981,983,981,982,984,986,985,987,985,986,988,990,989,991,989,990,992,994,993,995,993,994,996,998,997,999,997,998,1000,1002,1001,1003,1001,1002,1004,1006,1005,1007,1005,1006,1006,1008,1007,1009,1007,1008,1010,1012,1011,1013,1011,1012,1014,1016,1015,1017,1015,1016,1017,1018,1015,1019,1015,1018,1020,1022,1021,1023,1021,1022,1024,1026,1025,1027,1025,1026,1028,1030,1029,1031,1029,1030,1032,1034,1033,1035,1033,1034,1036,1038,1037,1039,1037,1038,1040,1042,1041,1043,1041,1042,1044,1046,1045,1047,1045,1046,1048,1050,1049,1051,1049,1050,1052,1054,1053,1055,1053,1054,1054,1056,1055,1057,1055,1056,1058,1060,1059,1061,1059,1060,1062,1064,1063,1065,1063,1064,1065,1066,1063,1067,1063,1066,1068,1070,1069,1071,1069,1070,1072,1074,1073,1075,1073,1074,1076,1078,1077,1079,1077,1078,1080,1082,1081,1083,1081,1082,1084,1086,1085,1087,1085,1086,1088,1090,1089,1091,1089,1090,1092,1094,1093,1095,1093,1094,1096,1098,1097,1099,1097,1098,1100,1102,1101,1103,1101,1102,1104,1106,1105,1107,1105,1106,1108,1110,1109,1111,1109,1110,1112,1114,1113,1115,1113,1114,1116,1118,1117,1119,1117,1118,1120,1122,1121,1123,1121,1122,1124,1121,1123,1125,1124,1123,188,1124,1125,1124,188,1126,190,188,1125,189,1126,188,1127,190,1125,191,190,1127,193,191,1127,1128,1126,189,192,1128,189,194,1128,192,1129,193,1127,195,193,1129,197,195,1129,1130,197,1129,202,197,1130,1131,202,1130,208,202,1131,1132,208,1131,214,208,1132,1133,214,1132,217,214,1133,1134,217,1133,224,217,1134,1135,224,1134,227,224,1135,1136,227,1135,229,227,1136,1137,229,1136,238,229,1137,241,238,1137,1138,241,1137,248,241,1138,1139,248,1138,251,248,1139,1140,251,1139,258,251,1140,1141,258,1140,264,258,1141,1142,264,1141,270,264,1142,1143,270,1142,276,270,1143,1144,276,1143,278,276,1144,280,278,1144,1145,280,1144,282,280,1145,283,282,1145,1146,283,1145,1147,283,1146,1148,1147,1146,1149,1148,1146,1150,1148,1149,1147,1151,283,283,1151,281,281,1151,279,1151,1152,279,279,1152,277,277,1152,275,1152,1153,275,275,1153,271,1153,1154,271,271,1154,267,1154,1155,267,267,1155,261,1155,1156,261,261,1156,256,1156,1157,256,256,1157,253,1157,1158,253,253,1158,246,1158,1159,246,246,1159,243,243,1159,236,1159,1160,236,236,1160,234,1160,1161,234,234,1161,231,1161,1162,231,231,1162,222,1162,1163,222,222,1163,219,1163,1164,219,219,1164,211,1164,1165,211,211,1165,205,1165,1166,205,205,1166,198,1166,1167,198,198,1167,196,196,1167,194,1167,1128,194,1168,1170,1169,1171,1169,1170,1172,1174,1173,1175,1173,1174,1176,1178,1177,1179,1177,1178,1180,1182,1181,1183,1181,1182,1184,1186,1185,1187,1185,1186,1188,1190,1189,1191,1189,1190,1192,1194,1193,1195,1193,1194,1196,1198,1197,1199,1197,1198,1200,1202,1201,1203,1201,1202,1204,1206,1205,1207,1205,1206,1208,1210,1209,1211,1209,1210,1212,1214,1213,1215,1213,1214,1216,1218,1217,1219,1217,1218,1220,1222,1221,1223,1221,1222,1224,1226,1225,1227,1225,1226,1228,1230,1229,1231,1229,1230,1232,1234,1233,1235,1233,1234,1236,1238,1237,1239,1237,1238,1240,1242,1241,1243,1241,1242,1244,1246,1245,1247,1245,1246,1248,1250,1249,1251,1249,1250,1252,1254,1253,1255,1253,1254,1256,1258,1257,1259,1257,1258,1260,1262,1261,1263,1261,1262,1264,1266,1265,1267,1265,1266,1268,1265,1267,1265,1268,1269,1270,1268,1267,1271,1269,1268,1272,1270,1267,1273,1270,1272,1274,1273,1272,1275,1274,1272,1276,1274,1275,1277,1276,1275,1278,1276,1277,1279,1278,1277,1280,1278,1279,1281,1280,1279,1282,1280,1281,1283,1282,1281,1284,1282,1283,1285,1284,1283,1286,1284,1285,1287,1286,1285,1288,1286,1287,1289,1288,1287,1290,1288,1289,1291,1290,1289,1292,1290,1291,1293,1292,1291,1294,1292,1293,1295,1294,1293,1296,1295,1293,1297,1295,1296,1298,1297,1296,1299,1297,1298,1300,1299,1298,1301,1299,1300,1302,1301,1300,1303,1301,1302,1304,1303,1302,1305,1303,1304,1306,1305,1304,1307,1305,1306,1308,1307,1306,1309,1307,1308,1310,1309,1308,1311,1309,1310,1312,1311,1310,1313,1311,1312,1314,1313,1312,1315,1314,1312,1316,1314,1315,1317,1316,1315,1316,1318,1314,1314,1318,1319,1319,1318,1320,1318,1321,1320,1320,1321,1322,1321,1323,1322,1322,1323,1324,1323,1325,1324,1324,1325,1326,1325,1327,1326,1326,1327,1328,1327,1329,1328,1328,1329,1330,1329,1331,1330,1330,1331,1332,1331,1333,1332,1332,1333,1334,1333,1335,1334,1334,1335,1336,1335,1337,1336,1336,1337,1338,1338,1337,1339,1337,1340,1339,1339,1340,1341,1340,1342,1341,1341,1342,1343,1342,1344,1343,1343,1344,1345,1344,1346,1345,1345,1346,1347,1346,1348,1347,1347,1348,1349,1348,1350,1349,1349,1350,1351,1350,1352,1351,1351,1352,1353,1352,1354,1353,1353,1354,1355,1354,1356,1355,1355,1356,1357,1356,1358,1357,1357,1358,1359,1359,1358,1271,1358,1269,1271,1360,1362,1361,1363,1361,1362,1364,1366,1365,1367,1365,1366,1368,1370,1369,1371,1369,1370,1372,1374,1373,1375,1373,1374,1376,1378,1377,1379,1377,1378,1380,1382,1381,1383,1381,1382,1384,1386,1385,1387,1385,1386,1388,1390,1389,1391,1389,1390,1392,1394,1393,1395,1393,1394,1396,1398,1397,1399,1397,1398,1400,1402,1401,1403,1401,1402,1404,1406,1405,1407,1405,1406,1408,1410,1409,1411,1409,1410,1412,1414,1413,1415,1413,1414,1416,1418,1417,1419,1417,1418,1420,1422,1421,1423,1421,1422,1424,1426,1425,1427,1425,1426,1428,1430,1429,1431,1429,1430,1432,1434,1433,1435,1433,1434,1436,1438,1437,1439,1437,1438,1440,1442,1441,1443,1441,1442,1444,1441,1443,1445,1444,1443,1446,1444,1445,1447,1446,1445,1448,1446,1447,1449,1448,1447,1450,1448,1449,1451,1450,1449,1452,1450,1451,1453,1452,1451,1454,1452,1453,1455,1454,1453,1456,1454,1455,1457,1456,1455,1458,1456,1457,1459,1458,1457,1460,1458,1459,1461,1460,1459,1462,1460,1461,1463,1462,1461,1464,1462,1463,1465,1464,1463,1466,1465,1463,1467,1465,1466,1468,1467,1466,1469,1467,1468,1470,1469,1468,1471,1469,1470,1472,1471,1470,1473,1471,1472,1474,1473,1472,1475,1473,1474,1476,1475,1474,1477,1475,1476,1478,1477,1476,1479,1477,1478,1480,1479,1478,1481,1479,1480,1482,1481,1480,1483,1481,1482,1484,1483,1482,1485,1483,1484,1486,1485,1484,1487,1485,1486,1488,1490,1489,1489,1491,1488,1489,1492,1491,1492,1493,1491,1492,1494,1493,1494,1495,1493,1494,1496,1495,1496,1497,1495,1496,1498,1497,1498,1499,1497,1498,1500,1499,1500,1501,1499,1500,1502,1501,1502,1503,1501,1502,1504,1503,1504,1505,1503,1504,1506,1505,1506,1507,1505,1506,1508,1507,1508,1509,1507,1508,1510,1509,1510,1511,1509,1510,1512,1511,1512,1513,1511,1513,1514,1511,1513,1515,1514,1515,1516,1514,1515,1517,1516,1517,1518,1516,1517,1519,1518,1519,1520,1518,1519,1521,1520,1521,1522,1520,1521,1523,1522,1523,1524,1522,1523,1525,1524,1525,1526,1524,1525,1527,1526,1527,1528,1526,1527,1529,1528,1529,1530,1528,1529,1531,1530,1531,1532,1530,1531,1533,1532,1533,1534,1532,1533,1535,1534 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *1098 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainRound, Model::RootNode + C: "OO",4832544077613753621,0 + + ;Geometry::, Model::Mesh fountainRound + C: "OO",5753109903981196858,4832544077613753621 + + ;Material::stone, Model::Mesh fountainRound + C: "OO",7184,4832544077613753621 + + ;Material::stoneDark, Model::Mesh fountainRound + C: "OO",7174,4832544077613753621 + + ;Material::water, Model::Mesh fountainRound + C: "OO",7194,4832544077613753621 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRound.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRound.fbx.import new file mode 100644 index 0000000..1d50dfd --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c1h78hv70svaw" +path="res://.godot/imported/fountainRound.fbx-e5ecc9c4d844b4cf9dc2f18050ae7808.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRound.fbx" +dest_files=["res://.godot/imported/fountainRound.fbx-e5ecc9c4d844b4cf9dc2f18050ae7808.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRoundDetail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRoundDetail.fbx new file mode 100644 index 0000000..8e38c27 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRoundDetail.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 796 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainRoundDetail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainRoundDetail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5548854079493786264, "Model::fountainRoundDetail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5253319047977497699, "Geometry::", "Mesh" { + Vertices: *8208 { + a: 3.5,2.8,6.062178,2.678784,2.8,6.467156,3.5,1.4,6.062178,2.678784,1.4,6.467156,3.5,1.804779E-15,6.062178,2.678784,1.804779E-15,6.467156,6.940114,2.8,0.9136834,6.940114,1.4,0.9136834,7,2.8,7.451091E-08,7,1.4,7.451091E-08,6.940114,1.804779E-15,0.9136834,7,0,7.451091E-08,1.811733,2.8,6.76148,0.9136834,2.8,6.940114,1.811733,1.4,6.76148,0.9136834,1.4,6.940114,1.811733,1.804779E-15,6.76148,0.9136834,1.804779E-15,6.940114,2.678784,2.8,6.467156,1.811733,2.8,6.76148,2.678784,1.4,6.467156,1.811733,1.4,6.76148,2.678784,1.804779E-15,6.467156,1.811733,1.804779E-15,6.76148,-4.470751E-08,2.8,7,-4.470731E-08,1.4,7,0.9136834,2.8,6.940114,0.9136834,1.4,6.940114,-4.470751E-08,3.609557E-15,7,0.9136834,1.804779E-15,6.940114,9.238795,1.4,3.826835,8.961631,1.12,3.712029,8.660254,1.4,5,8.400446,1.12,4.85,6.062178,2.8,3.5,6.062178,1.4,3.5,6.467156,2.8,2.678784,6.467156,1.4,2.678784,6.467156,1.804779E-15,2.678784,6.062178,1.804779E-15,3.5,4.949748,2.8,4.949747,4.26133,2.8,5.553473,4.949748,1.4,4.949747,4.26133,1.4,5.553473,4.949748,1.804779E-15,4.949747,4.26133,1.804779E-15,5.553473,7.933534,1.4,6.087614,7.695527,1.12,5.904985,7.071068,1.4,7.071068,6.858936,1.12,6.858936,1.305262,1.4,9.914448,1.266104,1.12,9.617015,-4.764615E-12,1.4,10,-4.475013E-09,1.12,9.7,6.467156,2.8,2.678784,6.467156,1.4,2.678784,6.76148,2.8,1.811733,6.76148,1.4,1.811733,6.76148,1.804779E-15,1.811733,6.467156,1.804779E-15,2.678784,6.087614,1.4,7.933533,5.904985,1.12,7.695527,5,1.4,8.660254,4.85,1.12,8.400446,5.553473,2.8,4.26133,5.553473,1.4,4.26133,6.062178,2.8,3.5,6.062178,1.4,3.5,6.062178,1.804779E-15,3.5,5.553473,1.804779E-15,4.26133,2.588191,1.4,9.659258,2.510545,1.12,9.36948,1.305262,1.4,9.914448,1.266104,1.12,9.617015,8.660254,1.4,5,8.400446,1.12,4.85,7.933534,1.4,6.087614,7.695527,1.12,5.904985,4.949748,2.8,4.949747,4.949748,1.4,4.949747,5.553473,2.8,4.26133,5.553473,1.4,4.26133,5.553473,1.804779E-15,4.26133,4.949748,1.804779E-15,4.949747,6.76148,2.8,1.811733,6.76148,1.4,1.811733,6.940114,2.8,0.9136834,6.940114,1.4,0.9136834,6.940114,1.804779E-15,0.9136834,6.76148,1.804779E-15,1.811733,7.071068,1.4,7.071068,6.858936,1.12,6.858936,6.087614,1.4,7.933533,5.904985,1.12,7.695527,5,1.4,8.660254,4.85,1.12,8.400446,3.826834,1.4,9.238795,3.712029,1.12,8.961631,3.826834,1.4,9.238795,3.712029,1.12,8.961631,2.588191,1.4,9.659258,2.510545,1.12,9.36948,4.26133,2.8,5.553473,3.5,2.8,6.062178,4.26133,1.4,5.553473,3.5,1.4,6.062178,4.26133,1.804779E-15,5.553473,3.5,1.804779E-15,6.062178,10,2.8,7.451324E-08,10,1.4,7.451324E-08,9.914449,2.8,1.305262,9.914449,1.4,1.305262,1.305262,1.4,9.914448,-4.764615E-12,1.4,10,1.305262,2.8,9.914448,-4.764615E-12,2.8,10,9.617016,1.12,1.266104,9.617016,0.56,1.266104,9.36948,1.12,2.510545,9.36948,0.56,2.510545,9.659258,2.8,2.588191,9.659258,1.4,2.588191,9.238795,2.8,3.826835,9.238795,1.4,3.826835,5.904985,0.56,7.695527,4.85,0.56,8.400446,5.904985,1.12,7.695527,4.85,1.12,8.400446,4.85,0.56,8.400446,3.712029,0.56,8.961631,4.85,1.12,8.400446,3.712029,1.12,8.961631,9.36948,1.12,2.510545,9.36948,0.56,2.510545,8.961631,1.12,3.712029,8.961631,0.56,3.712029,7.695527,1.12,5.904985,7.695527,0.56,5.904985,6.858936,1.12,6.858936,6.858936,0.56,6.858936,1.266104,0.56,9.617015,-4.475013E-09,0.56,9.7,1.266104,1.12,9.617015,-4.475013E-09,1.12,9.7,2.588191,1.4,9.659258,1.305262,1.4,9.914448,2.588191,2.8,9.659258,1.305262,2.8,9.914448,8.660254,2.8,5,8.660254,1.4,5,7.933534,2.8,6.087614,7.933534,1.4,6.087614,9.914449,1.4,1.305262,9.617016,1.12,1.266104,9.659258,1.4,2.588191,9.36948,1.12,2.510545,9.914449,2.8,1.305262,9.914449,1.4,1.305262,9.659258,2.8,2.588191,9.659258,1.4,2.588191,7.071068,1.4,7.071068,6.087614,1.4,7.933533,7.071068,2.8,7.071068,6.087614,2.8,7.933533,9.238795,2.8,3.826835,9.238795,1.4,3.826835,8.660254,2.8,5,8.660254,1.4,5,5,1.4,8.660254,3.826834,1.4,9.238795,5,2.8,8.660254,3.826834,2.8,9.238795,9.7,1.12,7.451301E-08,9.7,0.56,7.451301E-08,9.617016,1.12,1.266104,9.617016,0.56,1.266104,10,1.4,7.451324E-08,9.7,1.12,7.451301E-08,9.914449,1.4,1.305262,9.617016,1.12,1.266104,9.659258,1.4,2.588191,9.36948,1.12,2.510545,9.238795,1.4,3.826835,8.961631,1.12,3.712029,8.961631,1.12,3.712029,8.961631,0.56,3.712029,8.400446,1.12,4.85,8.400446,0.56,4.85,9.25,2.8,7.451263E-08,9.170865,2.8,1.207367,9.170865,2.8,-1.207367,8.934813,2.8,-2.394076,8.934813,2.8,2.394076,8.545885,2.8,-3.539822,8.545885,2.8,3.539822,8.010736,2.8,-4.625,8.010735,2.8,4.625,7.338519,2.8,-5.631042,7.338519,2.8,5.631043,7,2.8,7.451091E-08,6.940114,2.8,-0.9136832,6.940114,2.8,0.9136834,6.540738,2.8,-6.540738,6.76148,2.8,-1.811733,6.467157,2.8,-2.678784,6.540738,2.8,6.540738,6.76148,2.8,1.811733,6.467156,2.8,2.678784,5.631043,2.8,-7.338518,6.062178,2.8,-3.5,5.553473,2.8,-4.26133,5.631043,2.8,7.338519,6.062178,2.8,3.5,5.553473,2.8,4.26133,4.625,2.8,-8.010735,4.949748,2.8,-4.949747,4.26133,2.8,-5.553473,3.539822,2.8,-8.545885,3.5,2.8,-6.062178,4.625,2.8,8.010735,4.949748,2.8,4.949747,4.26133,2.8,5.553473,3.539822,2.8,8.545885,3.5,2.8,6.062178,2.394076,2.8,-8.934813,2.678784,2.8,-6.467156,1.811733,2.8,-6.76148,1.207367,2.8,-9.170865,0.9136835,2.8,-6.940114,-1.490123E-07,2.8,-9.25,-1.490124E-07,2.8,-7,2.394076,2.8,8.934813,2.678784,2.8,6.467156,1.811733,2.8,6.76148,1.207367,2.8,9.170865,0.9136834,2.8,6.940114,-1.118042E-08,2.8,9.25,-4.470751E-08,2.8,7,-1.207367,2.8,-9.170865,-0.9136835,2.8,-6.940114,-1.811733,2.8,-6.76148,-2.394076,2.8,-8.934813,-2.678784,2.8,-6.467156,-1.207367,2.8,9.170865,-0.9136834,2.8,6.940114,-1.811733,2.8,6.76148,-2.394076,2.8,8.934813,-2.678784,2.8,6.467156,-3.539822,2.8,-8.545885,-3.5,2.8,-6.062178,-4.26133,2.8,-5.553473,-4.625,2.8,-8.010735,-4.949748,2.8,-4.949747,-3.539822,2.8,8.545885,-3.5,2.8,6.062178,-4.26133,2.8,5.553473,-4.625,2.8,8.010735,-4.949748,2.8,4.949747,-5.631043,2.8,-7.338518,-5.553473,2.8,-4.26133,-6.062178,2.8,-3.5,-5.631043,2.8,7.338519,-5.553473,2.8,4.26133,-6.062178,2.8,3.5,-6.540738,2.8,-6.540738,-6.467157,2.8,-2.678784,-6.76148,2.8,-1.811733,-6.540738,2.8,6.540738,-6.467156,2.8,2.678784,-6.76148,2.8,1.811733,-7.338519,2.8,-5.631042,-7.338519,2.8,5.631043,-6.940114,2.8,-0.9136832,-6.940114,2.8,0.9136834,-7,2.8,7.450386E-08,-8.010735,2.8,4.625,-8.010736,2.8,-4.625,-8.545885,2.8,3.539822,-8.545885,2.8,-3.539822,-8.934813,2.8,2.394076,-8.934813,2.8,-2.394076,-9.170865,2.8,1.207367,-9.170865,2.8,-1.207367,-9.25,2.8,7.45038E-08,7,0,7.451091E-08,6.940114,1.804779E-15,0.9136834,6.940114,0,-0.9136832,6.76148,0,-1.811733,6.76148,1.804779E-15,1.811733,6.467157,0,-2.678784,6.467156,1.804779E-15,2.678784,6.062178,0,-3.5,6.062178,1.804779E-15,3.5,5.553473,0,-4.26133,5.553473,1.804779E-15,4.26133,4.949748,0,-4.949747,4.949748,1.804779E-15,4.949747,4.26133,0,-5.553473,4.26133,1.804779E-15,5.553473,3.5,0,-6.062178,3.5,1.804779E-15,6.062178,3.5,-4.591168E-19,3.725551E-08,3.470057,-4.591168E-19,-0.4568416,3.470057,1.80432E-15,0.4568417,2.678784,0,-6.467156,2.678784,1.804779E-15,6.467156,3.38074,-4.591168E-19,-0.9058666,3.38074,1.80432E-15,0.9058666,3.233578,-4.591168E-19,-1.339392,3.233578,1.80432E-15,1.339392,3.031089,-4.591168E-19,-1.75,2.776737,-4.591168E-19,-2.130665,2.474874,-4.591168E-19,-2.474874,3.031089,1.80432E-15,1.75,2.776737,1.80432E-15,2.130665,2.474874,1.80432E-15,2.474874,1.811733,0,-6.76148,2.130665,-4.591168E-19,-2.776737,1.75,-4.591168E-19,-3.031089,1.811733,1.804779E-15,6.76148,2.130665,1.80432E-15,2.776737,1.75,1.80432E-15,3.031089,0.9136835,0,-6.940114,1.339392,-4.591168E-19,-3.233578,0.9058667,-4.591168E-19,-3.38074,0.9136834,1.804779E-15,6.940114,1.339392,1.80432E-15,3.233578,0.9058667,1.80432E-15,3.38074,-1.490124E-07,5.414336E-15,-7,-4.470751E-08,3.609557E-15,7,0.4568417,-4.591168E-19,-3.470057,-7.450623E-08,5.413876E-15,-3.5,-0.4568417,5.413876E-15,-3.470057,0.4568417,1.80432E-15,3.470057,-2.23538E-08,3.609098E-15,3.5,-0.4568417,3.609098E-15,3.470057,-0.9136835,5.414336E-15,-6.940114,-0.9058667,5.413876E-15,-3.38074,-1.339392,5.413876E-15,-3.233578,-0.9136834,3.609557E-15,6.940114,-0.9058667,3.609098E-15,3.38074,-1.339392,3.609098E-15,3.233578,-1.811733,5.414336E-15,-6.76148,-1.75,5.413876E-15,-3.031089,-2.130665,5.413876E-15,-2.776737,-1.811733,3.609557E-15,6.76148,-1.75,3.609098E-15,3.031089,-2.130665,3.609098E-15,2.776737,-2.678784,5.414336E-15,-6.467156,-2.474874,5.413876E-15,-2.474874,-2.776737,5.413876E-15,-2.130665,-3.5,5.414336E-15,-6.062178,-2.678784,3.609557E-15,6.467156,-2.474874,3.609098E-15,2.474874,-2.776737,3.609098E-15,2.130665,-3.031089,5.413876E-15,-1.75,-3.5,3.609557E-15,6.062178,-3.233578,5.413876E-15,-1.339392,-3.031089,3.609098E-15,1.75,-3.38074,5.413876E-15,-0.9058666,-3.233578,3.609098E-15,1.339392,-3.470057,5.413876E-15,-0.4568416,-3.38074,3.609098E-15,0.9058666,-3.470057,3.609098E-15,0.4568417,-3.5,5.413876E-15,3.725199E-08,-4.26133,3.609557E-15,5.553473,-4.26133,5.414336E-15,-5.553473,-4.949748,3.609557E-15,4.949747,-4.949748,5.414336E-15,-4.949747,-5.553473,3.609557E-15,4.26133,-5.553473,5.414336E-15,-4.26133,-6.062178,3.609557E-15,3.5,-6.062178,5.414336E-15,-3.5,-6.467156,3.609557E-15,2.678784,-6.467157,5.414336E-15,-2.678784,-6.76148,3.609557E-15,1.811733,-6.76148,5.414336E-15,-1.811733,-6.940114,3.609557E-15,0.9136834,-6.940114,5.414336E-15,-0.9136832,-7,5.414336E-15,7.450386E-08,3.712029,0.56,8.961631,2.510545,0.56,9.36948,3.712029,1.12,8.961631,2.510545,1.12,9.36948,8.400446,1.12,4.85,8.400446,0.56,4.85,7.695527,1.12,5.904985,7.695527,0.56,5.904985,2.510545,0.56,9.36948,1.266104,0.56,9.617015,2.510545,1.12,9.36948,1.266104,1.12,9.617015,3.826834,1.4,9.238795,2.588191,1.4,9.659258,3.826834,2.8,9.238795,2.588191,2.8,9.659258,7.933534,2.8,6.087614,7.933534,1.4,6.087614,7.071068,2.8,7.071068,7.071068,1.4,7.071068,6.858936,0.56,6.858936,5.904985,0.56,7.695527,6.858936,1.12,6.858936,5.904985,1.12,7.695527,6.087614,1.4,7.933533,5,1.4,8.660254,6.087614,2.8,7.933533,5,2.8,8.660254,-4.85,1.12,8.400446,-5.904985,1.12,7.695527,-5,1.4,8.660254,-6.087614,1.4,7.933533,-0.9136834,2.8,6.940114,-1.811733,2.8,6.76148,-0.9136834,1.4,6.940114,-1.811733,1.4,6.76148,-0.9136834,3.609557E-15,6.940114,-1.811733,3.609557E-15,6.76148,-8.961631,1.12,3.712029,-9.36948,1.12,2.510545,-9.238795,1.4,3.826835,-9.659258,1.4,2.588191,-4.470751E-08,2.8,7,-0.9136834,2.8,6.940114,-4.470731E-08,1.4,7,-0.9136834,1.4,6.940114,-4.470751E-08,3.609557E-15,7,-0.9136834,3.609557E-15,6.940114,-4.949748,2.8,4.949747,-5.553473,2.8,4.26133,-4.949748,1.4,4.949747,-5.553473,1.4,4.26133,-5.553473,3.609557E-15,4.26133,-4.949748,3.609557E-15,4.949747,-4.26133,2.8,5.553473,-4.949748,2.8,4.949747,-4.26133,1.4,5.553473,-4.949748,1.4,4.949747,-4.26133,3.609557E-15,5.553473,-4.949748,3.609557E-15,4.949747,-9.36948,1.12,2.510545,-9.617016,1.12,1.266104,-9.659258,1.4,2.588191,-9.914449,1.4,1.305262,-6.76148,2.8,1.811733,-6.940114,2.8,0.9136834,-6.76148,1.4,1.811733,-6.940114,1.4,0.9136834,-6.940114,3.609557E-15,0.9136834,-6.76148,3.609557E-15,1.811733,-6.858936,1.12,6.858936,-7.695527,1.12,5.904985,-7.071068,1.4,7.071068,-7.933534,1.4,6.087614,-9.617016,1.12,1.266104,-9.7,1.12,7.450374E-08,-9.914449,1.4,1.305262,-10,1.4,7.450374E-08,-8.400446,1.12,4.85,-8.961631,1.12,3.712029,-8.660254,1.4,5,-9.238795,1.4,3.826835,-6.062178,2.8,3.5,-6.467156,2.8,2.678784,-6.062178,1.4,3.5,-6.467156,1.4,2.678784,-6.467156,3.609557E-15,2.678784,-6.062178,3.609557E-15,3.5,-5.553473,2.8,4.26133,-6.062178,2.8,3.5,-5.553473,1.4,4.26133,-6.062178,1.4,3.5,-6.062178,3.609557E-15,3.5,-5.553473,3.609557E-15,4.26133,-5.904985,1.12,7.695527,-6.858936,1.12,6.858936,-6.087614,1.4,7.933533,-7.071068,1.4,7.071068,-7.695527,1.12,5.904985,-8.400446,1.12,4.85,-7.933534,1.4,6.087614,-8.660254,1.4,5,-9.7,0.56,7.450374E-08,-9.7,1.12,7.450374E-08,-9.617016,0.56,1.266104,-9.617016,1.12,1.266104,-3.712029,1.12,8.961631,-4.85,1.12,8.400446,-3.826834,1.4,9.238795,-5,1.4,8.660254,-1.811733,2.8,6.76148,-2.678784,2.8,6.467156,-1.811733,1.4,6.76148,-2.678784,1.4,6.467156,-1.811733,3.609557E-15,6.76148,-2.678784,3.609557E-15,6.467156,-8.660254,1.4,5,-8.660254,2.8,5,-7.933534,1.4,6.087614,-7.933534,2.8,6.087614,-7.933534,1.4,6.087614,-7.933534,2.8,6.087614,-7.071068,1.4,7.071068,-7.071068,2.8,7.071068,-2.510545,1.12,9.36948,-3.712029,1.12,8.961631,-2.588191,1.4,9.659258,-3.826834,1.4,9.238795,-9.238795,1.4,3.826835,-9.238795,2.8,3.826835,-8.660254,1.4,5,-8.660254,2.8,5,-1.305262,1.4,9.914448,-2.588191,1.4,9.659258,-1.305262,2.8,9.914448,-2.588191,2.8,9.659258,-6.087614,1.4,7.933533,-7.071068,1.4,7.071068,-6.087614,2.8,7.933533,-7.071068,2.8,7.071068,-4.85,0.56,8.400446,-5.904985,0.56,7.695527,-4.85,1.12,8.400446,-5.904985,1.12,7.695527,-3.826834,1.4,9.238795,-5,1.4,8.660254,-3.826834,2.8,9.238795,-5,2.8,8.660254,-4.764615E-12,1.4,10,-1.305262,1.4,9.914448,-4.764615E-12,2.8,10,-1.305262,2.8,9.914448,-2.678784,2.8,6.467156,-3.5,2.8,6.062178,-2.678784,1.4,6.467156,-3.5,1.4,6.062178,-2.678784,3.609557E-15,6.467156,-3.5,3.609557E-15,6.062178,-6.467156,3.609557E-15,2.678784,-6.467156,1.4,2.678784,-6.76148,3.609557E-15,1.811733,-6.76148,1.4,1.811733,-6.76148,2.8,1.811733,-6.467156,2.8,2.678784,-9.659258,1.4,2.588191,-9.659258,2.8,2.588191,-9.238795,1.4,3.826835,-9.238795,2.8,3.826835,-5.904985,0.56,7.695527,-6.858936,0.56,6.858936,-5.904985,1.12,7.695527,-6.858936,1.12,6.858936,-7,2.8,7.450386E-08,-7,1.4,7.450403E-08,-6.940114,2.8,0.9136834,-6.940114,1.4,0.9136834,-6.940114,3.609557E-15,0.9136834,-7,5.414336E-15,7.450386E-08,-5,1.4,8.660254,-6.087614,1.4,7.933533,-5,2.8,8.660254,-6.087614,2.8,7.933533,-2.510545,0.56,9.36948,-3.712029,0.56,8.961631,-2.510545,1.12,9.36948,-3.712029,1.12,8.961631,-7.695527,0.56,5.904985,-7.695527,1.12,5.904985,-6.858936,0.56,6.858936,-6.858936,1.12,6.858936,-3.712029,0.56,8.961631,-4.85,0.56,8.400446,-3.712029,1.12,8.961631,-4.85,1.12,8.400446,-3.5,2.8,6.062178,-4.26133,2.8,5.553473,-3.5,1.4,6.062178,-4.26133,1.4,5.553473,-3.5,3.609557E-15,6.062178,-4.26133,3.609557E-15,5.553473,-4.475013E-09,0.56,9.7,-1.266104,0.56,9.617015,-4.475013E-09,1.12,9.7,-1.266104,1.12,9.617015,-10,1.4,7.450374E-08,-10,2.8,7.450374E-08,-9.914449,1.4,1.305262,-9.914449,2.8,1.305262,-8.400446,0.56,4.85,-8.400446,1.12,4.85,-7.695527,0.56,5.904985,-7.695527,1.12,5.904985,-9.36948,0.56,2.510545,-9.36948,1.12,2.510545,-8.961631,0.56,3.712029,-8.961631,1.12,3.712029,-8.961631,0.56,3.712029,-8.961631,1.12,3.712029,-8.400446,0.56,4.85,-8.400446,1.12,4.85,-1.266104,0.56,9.617015,-2.510545,0.56,9.36948,-1.266104,1.12,9.617015,-2.510545,1.12,9.36948,-9.617016,0.56,1.266104,-9.617016,1.12,1.266104,-9.36948,0.56,2.510545,-9.36948,1.12,2.510545,-9.914449,1.4,1.305262,-9.914449,2.8,1.305262,-9.659258,1.4,2.588191,-9.659258,2.8,2.588191,-4.764615E-12,1.4,10,-4.475013E-09,1.12,9.7,-1.305262,1.4,9.914448,-1.266104,1.12,9.617015,-2.588191,1.4,9.659258,-3.826834,1.4,9.238795,-2.588191,2.8,9.659258,-3.826834,2.8,9.238795,-1.266104,1.12,9.617015,-2.510545,1.12,9.36948,-1.305262,1.4,9.914448,-2.588191,1.4,9.659258,0.9136835,2.8,-6.940114,1.811733,2.8,-6.76148,0.9136835,1.4,-6.940114,1.811733,1.4,-6.76148,0.9136835,0,-6.940114,1.811733,0,-6.76148,9.659258,1.4,-2.588191,9.238795,1.4,-3.826834,9.36948,1.12,-2.510545,8.961631,1.12,-3.712029,8.660254,1.4,-5,7.933534,1.4,-6.087614,8.400446,1.12,-4.85,7.695527,1.12,-5.904985,9.914449,1.4,-1.305262,9.659258,1.4,-2.588191,9.617016,1.12,-1.266104,9.36948,1.12,-2.510545,6.087614,1.4,-7.933533,5,1.4,-8.660254,5.904985,1.12,-7.695527,4.85,1.12,-8.400446,10,1.4,7.451324E-08,9.914449,1.4,-1.305262,9.7,1.12,7.451301E-08,9.617016,1.12,-1.266104,-1.490124E-07,2.8,-7,0.9136835,2.8,-6.940114,-1.490124E-07,1.4,-7,0.9136835,1.4,-6.940114,-1.490124E-07,5.414336E-15,-7,0.9136835,0,-6.940114,10,0,7.451324E-08,9.914449,0,-1.305262,9.914449,1.804779E-15,1.305262,9.659258,0,-2.588191,9.659258,1.804779E-15,2.588191,9.238795,0,-3.826834,9.238795,1.804779E-15,3.826835,8.660254,0,-5,8.660254,1.804779E-15,5,7.933534,0,-6.087614,7.933534,1.804779E-15,6.087614,7.071068,0,-7.071068,7.071068,1.804779E-15,7.071068,7,0,7.451091E-08,6.940114,1.804779E-15,0.9136834,6.940114,0,-0.9136832,6.087614,1.804779E-15,7.933533,6.087614,0,-7.933533,6.76148,1.804779E-15,1.811733,6.467156,1.804779E-15,2.678784,6.062178,1.804779E-15,3.5,6.76148,0,-1.811733,6.467157,0,-2.678784,6.062178,0,-3.5,5,1.804779E-15,8.660254,5.553473,1.804779E-15,4.26133,4.949748,1.804779E-15,4.949747,5,0,-8.660254,5.553473,0,-4.26133,4.949748,0,-4.949747,3.826834,1.804779E-15,9.238795,4.26133,1.804779E-15,5.553473,3.5,1.804779E-15,6.062178,3.826835,0,-9.238795,4.26133,0,-5.553473,3.5,0,-6.062178,2.588191,1.804779E-15,9.659258,2.678784,1.804779E-15,6.467156,1.811733,1.804779E-15,6.76148,1.305262,1.804779E-15,9.914448,0.9136834,1.804779E-15,6.940114,-4.764615E-12,3.609557E-15,10,-4.470751E-08,3.609557E-15,7,2.588191,0,-9.659258,2.678784,0,-6.467156,1.811733,0,-6.76148,1.305262,0,-9.914448,0.9136835,0,-6.940114,-1.490122E-07,5.414336E-15,-10,-1.490124E-07,5.414336E-15,-7,-1.305262,3.609557E-15,9.914448,-0.9136834,3.609557E-15,6.940114,-1.811733,3.609557E-15,6.76148,-2.588191,3.609557E-15,9.659258,-2.678784,3.609557E-15,6.467156,-1.305262,5.414336E-15,-9.914448,-0.9136835,5.414336E-15,-6.940114,-1.811733,5.414336E-15,-6.76148,-2.588191,5.414336E-15,-9.659258,-2.678784,5.414336E-15,-6.467156,-3.826834,3.609557E-15,9.238795,-3.5,3.609557E-15,6.062178,-4.26133,3.609557E-15,5.553473,-3.826835,5.414336E-15,-9.238795,-3.5,5.414336E-15,-6.062178,-4.26133,5.414336E-15,-5.553473,-5,3.609557E-15,8.660254,-4.949748,3.609557E-15,4.949747,-5.553473,3.609557E-15,4.26133,-5,5.414336E-15,-8.660254,-4.949748,5.414336E-15,-4.949747,-5.553473,5.414336E-15,-4.26133,-6.087614,3.609557E-15,7.933533,-6.062178,3.609557E-15,3.5,-6.467156,3.609557E-15,2.678784,-6.087614,5.414336E-15,-7.933533,-6.062178,5.414336E-15,-3.5,-6.467157,5.414336E-15,-2.678784,-7.071068,3.609557E-15,7.071068,-7.071068,5.414336E-15,-7.071068,-6.76148,3.609557E-15,1.811733,-6.76148,5.414336E-15,-1.811733,-6.940114,3.609557E-15,0.9136834,-6.940114,5.414336E-15,-0.9136832,-7,5.414336E-15,7.450386E-08,-7.933534,3.609557E-15,6.087614,-7.933534,5.414336E-15,-6.087614,-8.660254,3.609557E-15,5,-8.660254,5.414336E-15,-5,-9.238795,3.609557E-15,3.826835,-9.238795,5.414336E-15,-3.826834,-9.659258,3.609557E-15,2.588191,-9.659258,5.414336E-15,-2.588191,-9.914449,3.609557E-15,1.305262,-9.914449,5.414336E-15,-1.305262,-10,5.414336E-15,7.450374E-08,4.949748,2.8,-4.949747,5.553473,2.8,-4.26133,4.949748,1.4,-4.949747,5.553473,1.4,-4.26133,5.553473,0,-4.26133,4.949748,0,-4.949747,6.062178,2.8,-3.5,6.467157,2.8,-2.678784,6.062178,1.4,-3.5,6.467157,1.4,-2.678784,6.467157,0,-2.678784,6.062178,0,-3.5,6.76148,2.8,-1.811733,6.940114,2.8,-0.9136832,6.76148,1.4,-1.811733,6.940114,1.4,-0.9136832,6.940114,0,-0.9136832,6.76148,0,-1.811733,7.933534,1.4,-6.087614,7.071068,1.4,-7.071068,7.695527,1.12,-5.904985,6.858936,1.12,-6.858935,7.071068,1.4,-7.071068,6.087614,1.4,-7.933533,6.858936,1.12,-6.858935,5.904985,1.12,-7.695527,6.467157,2.8,-2.678784,6.76148,2.8,-1.811733,6.467157,1.4,-2.678784,6.76148,1.4,-1.811733,6.76148,0,-1.811733,6.467157,0,-2.678784,2.678784,2.8,-6.467156,3.5,2.8,-6.062178,2.678784,1.4,-6.467156,3.5,1.4,-6.062178,2.678784,0,-6.467156,3.5,0,-6.062178,6.940114,2.8,-0.9136832,7,2.8,7.451091E-08,6.940114,1.4,-0.9136832,7,1.4,7.451091E-08,7,0,7.451091E-08,6.940114,0,-0.9136832,1.811733,2.8,-6.76148,2.678784,2.8,-6.467156,1.811733,1.4,-6.76148,2.678784,1.4,-6.467156,1.811733,0,-6.76148,2.678784,0,-6.467156,1.305262,1.4,-9.914448,1.305262,2.8,-9.914448,-1.490122E-07,1.4,-10,-1.490122E-07,2.8,-10,9.914449,2.8,-1.305262,9.914449,1.4,-1.305262,10,2.8,7.451324E-08,10,1.4,7.451324E-08,5,1.4,-8.660254,3.826835,1.4,-9.238795,4.85,1.12,-8.400446,3.712029,1.12,-8.961631,4.26133,2.8,-5.553473,4.949748,2.8,-4.949747,4.26133,1.4,-5.553473,4.949748,1.4,-4.949747,4.26133,0,-5.553473,4.949748,0,-4.949747,5.553473,2.8,-4.26133,6.062178,2.8,-3.5,5.553473,1.4,-4.26133,6.062178,1.4,-3.5,6.062178,0,-3.5,5.553473,0,-4.26133,9.238795,1.4,-3.826834,8.660254,1.4,-5,8.961631,1.12,-3.712029,8.400446,1.12,-4.85,3.5,2.8,-6.062178,4.26133,2.8,-5.553473,3.5,1.4,-6.062178,4.26133,1.4,-5.553473,3.5,0,-6.062178,4.26133,0,-5.553473,8.961631,1.12,-3.712029,8.961631,0.56,-3.712029,9.36948,1.12,-2.510545,9.36948,0.56,-2.510545,3.826835,1.4,-9.238795,5,1.4,-8.660254,3.826835,2.8,-9.238795,5,2.8,-8.660254,5,1.4,-8.660254,6.087614,1.4,-7.933533,5,2.8,-8.660254,6.087614,2.8,-7.933533,5.904985,0.56,-7.695527,6.858936,0.56,-6.858935,5.904985,1.12,-7.695527,6.858936,1.12,-6.858935,7.933534,2.8,-6.087614,7.933534,1.4,-6.087614,8.660254,2.8,-5,8.660254,1.4,-5,6.858936,1.12,-6.858935,6.858936,0.56,-6.858935,7.695527,1.12,-5.904985,7.695527,0.56,-5.904985,9.238795,2.8,-3.826834,9.238795,1.4,-3.826834,9.659258,2.8,-2.588191,9.659258,1.4,-2.588191,3.712029,0.56,-8.961631,4.85,0.56,-8.400446,3.712029,1.12,-8.961631,4.85,1.12,-8.400446,7.695527,1.12,-5.904985,7.695527,0.56,-5.904985,8.400446,1.12,-4.85,8.400446,0.56,-4.85,8.400446,1.12,-4.85,8.400446,0.56,-4.85,8.961631,1.12,-3.712029,8.961631,0.56,-3.712029,7.071068,2.8,-7.071068,7.071068,1.4,-7.071068,7.933534,2.8,-6.087614,7.933534,1.4,-6.087614,2.510545,0.56,-9.36948,3.712029,0.56,-8.961631,2.510545,1.12,-9.36948,3.712029,1.12,-8.961631,1.266104,0.56,-9.617015,1.266104,1.12,-9.617015,-1.490123E-07,0.56,-9.7,-1.490123E-07,1.12,-9.7,9.659258,2.8,-2.588191,9.659258,1.4,-2.588191,9.914449,2.8,-1.305262,9.914449,1.4,-1.305262,8.660254,2.8,-5,8.660254,1.4,-5,9.238795,2.8,-3.826834,9.238795,1.4,-3.826834,1.305262,1.4,-9.914448,2.588191,1.4,-9.659258,1.305262,2.8,-9.914448,2.588191,2.8,-9.659258,6.087614,1.4,-7.933533,7.071068,1.4,-7.071068,6.087614,2.8,-7.933533,7.071068,2.8,-7.071068,4.85,0.56,-8.400446,5.904985,0.56,-7.695527,4.85,1.12,-8.400446,5.904985,1.12,-7.695527,9.617016,1.12,-1.266104,9.617016,0.56,-1.266104,9.7,1.12,7.451301E-08,9.7,0.56,7.451301E-08,3.826835,1.4,-9.238795,2.588191,1.4,-9.659258,3.712029,1.12,-8.961631,2.510545,1.12,-9.36948,2.588191,1.4,-9.659258,3.826835,1.4,-9.238795,2.588191,2.8,-9.659258,3.826835,2.8,-9.238795,1.305262,1.4,-9.914448,-1.490122E-07,1.4,-10,1.266104,1.12,-9.617015,-1.490123E-07,1.12,-9.7,9.36948,1.12,-2.510545,9.36948,0.56,-2.510545,9.617016,1.12,-1.266104,9.617016,0.56,-1.266104,1.266104,0.56,-9.617015,2.510545,0.56,-9.36948,1.266104,1.12,-9.617015,2.510545,1.12,-9.36948,2.588191,1.4,-9.659258,1.305262,1.4,-9.914448,2.510545,1.12,-9.36948,1.266104,1.12,-9.617015,-5.904985,1.12,-7.695527,-6.087614,1.4,-7.933533,-6.858936,1.12,-6.858935,-7.071068,1.4,-7.071068,-3.712029,1.12,-8.961631,-3.826835,1.4,-9.238795,-4.85,1.12,-8.400446,-5,1.4,-8.660254,-6.858936,1.12,-6.858935,-7.071068,1.4,-7.071068,-7.695527,1.12,-5.904985,-7.933534,1.4,-6.087614,-4.85,1.12,-8.400446,-5,1.4,-8.660254,-5.904985,1.12,-7.695527,-6.087614,1.4,-7.933533,-1.266104,1.12,-9.617015,-1.305262,1.4,-9.914448,-2.510545,1.12,-9.36948,-2.588191,1.4,-9.659258,-6.76148,2.8,-1.811733,-6.76148,1.4,-1.811733,-6.940114,2.8,-0.9136832,-6.940114,1.4,-0.9136832,-6.940114,5.414336E-15,-0.9136832,-6.76148,5.414336E-15,-1.811733,-7.695527,1.12,-5.904985,-7.933534,1.4,-6.087614,-8.400446,1.12,-4.85,-8.660254,1.4,-5,-2.510545,1.12,-9.36948,-2.588191,1.4,-9.659258,-3.712029,1.12,-8.961631,-3.826835,1.4,-9.238795,-4.949748,2.8,-4.949747,-4.949748,1.4,-4.949747,-5.553473,2.8,-4.26133,-5.553473,1.4,-4.26133,-5.553473,5.414336E-15,-4.26133,-4.949748,5.414336E-15,-4.949747,-1.811733,2.8,-6.76148,-0.9136835,2.8,-6.940114,-1.811733,1.4,-6.76148,-0.9136835,1.4,-6.940114,-1.811733,5.414336E-15,-6.76148,-0.9136835,5.414336E-15,-6.940114,-4.26133,2.8,-5.553473,-3.5,2.8,-6.062178,-4.26133,1.4,-5.553473,-3.5,1.4,-6.062178,-4.26133,5.414336E-15,-5.553473,-3.5,5.414336E-15,-6.062178,-3.5,2.8,-6.062178,-2.678784,2.8,-6.467156,-3.5,1.4,-6.062178,-2.678784,1.4,-6.467156,-3.5,5.414336E-15,-6.062178,-2.678784,5.414336E-15,-6.467156,-1.490122E-07,1.4,-10,-1.305262,1.4,-9.914448,-1.490123E-07,1.12,-9.7,-1.266104,1.12,-9.617015,-4.949748,2.8,-4.949747,-4.26133,2.8,-5.553473,-4.949748,1.4,-4.949747,-4.26133,1.4,-5.553473,-4.949748,5.414336E-15,-4.949747,-4.26133,5.414336E-15,-5.553473,-6.940114,2.8,-0.9136832,-6.940114,1.4,-0.9136832,-7,2.8,7.450386E-08,-7,1.4,7.450403E-08,-7,5.414336E-15,7.450386E-08,-6.940114,5.414336E-15,-0.9136832,-5.553473,5.414336E-15,-4.26133,-6.062178,5.414336E-15,-3.5,-5.553473,1.4,-4.26133,-6.062178,1.4,-3.5,-6.062178,2.8,-3.5,-5.553473,2.8,-4.26133,-5.904985,0.56,-7.695527,-4.85,0.56,-8.400446,-5.904985,1.12,-7.695527,-4.85,1.12,-8.400446,-6.858936,0.56,-6.858935,-6.858936,1.12,-6.858935,-7.695527,0.56,-5.904985,-7.695527,1.12,-5.904985,-4.85,0.56,-8.400446,-3.712029,0.56,-8.961631,-4.85,1.12,-8.400446,-3.712029,1.12,-8.961631,-8.660254,1.4,-5,-8.660254,2.8,-5,-9.238795,1.4,-3.826834,-9.238795,2.8,-3.826834,-8.961631,1.12,-3.712029,-9.238795,1.4,-3.826834,-9.36948,1.12,-2.510545,-9.659258,1.4,-2.588191,-1.305262,1.4,-9.914448,-1.490122E-07,1.4,-10,-1.305262,2.8,-9.914448,-1.490122E-07,2.8,-10,-7.071068,1.4,-7.071068,-6.087614,1.4,-7.933533,-7.071068,2.8,-7.071068,-6.087614,2.8,-7.933533,-9.914449,1.4,-1.305262,-9.914449,2.8,-1.305262,-10,1.4,7.450374E-08,-10,2.8,7.450374E-08,-7.071068,1.4,-7.071068,-7.071068,2.8,-7.071068,-7.933534,1.4,-6.087614,-7.933534,2.8,-6.087614,-1.811733,5.414336E-15,-6.76148,-2.678784,5.414336E-15,-6.467156,-1.811733,1.4,-6.76148,-2.678784,1.4,-6.467156,-1.811733,2.8,-6.76148,-2.678784,2.8,-6.467156,-7.933534,1.4,-6.087614,-7.933534,2.8,-6.087614,-8.660254,1.4,-5,-8.660254,2.8,-5,-6.467157,2.8,-2.678784,-6.467157,1.4,-2.678784,-6.76148,2.8,-1.811733,-6.76148,1.4,-1.811733,-6.76148,5.414336E-15,-1.811733,-6.467157,5.414336E-15,-2.678784,-5,1.4,-8.660254,-3.826835,1.4,-9.238795,-5,2.8,-8.660254,-3.826835,2.8,-9.238795,-8.961631,0.56,-3.712029,-8.961631,1.12,-3.712029,-9.36948,0.56,-2.510545,-9.36948,1.12,-2.510545,-6.858936,0.56,-6.858935,-5.904985,0.56,-7.695527,-6.858936,1.12,-6.858935,-5.904985,1.12,-7.695527,-8.400446,0.56,-4.85,-8.400446,1.12,-4.85,-8.961631,0.56,-3.712029,-8.961631,1.12,-3.712029,-9.617016,0.56,-1.266104,-9.617016,1.12,-1.266104,-9.7,0.56,7.450374E-08,-9.7,1.12,7.450374E-08,-2.588191,1.4,-9.659258,-1.305262,1.4,-9.914448,-2.588191,2.8,-9.659258,-1.305262,2.8,-9.914448,-3.712029,0.56,-8.961631,-2.510545,0.56,-9.36948,-3.712029,1.12,-8.961631,-2.510545,1.12,-9.36948,-9.659258,1.4,-2.588191,-9.659258,2.8,-2.588191,-9.914449,1.4,-1.305262,-9.914449,2.8,-1.305262,-0.9136835,2.8,-6.940114,-1.490124E-07,2.8,-7,-0.9136835,1.4,-6.940114,-1.490124E-07,1.4,-7,-0.9136835,5.414336E-15,-6.940114,-1.490124E-07,5.414336E-15,-7,-3.826835,1.4,-9.238795,-2.588191,1.4,-9.659258,-3.826835,2.8,-9.238795,-2.588191,2.8,-9.659258,-6.062178,2.8,-3.5,-6.062178,1.4,-3.5,-6.467157,2.8,-2.678784,-6.467157,1.4,-2.678784,-6.467157,5.414336E-15,-2.678784,-6.062178,5.414336E-15,-3.5,-8.400446,1.12,-4.85,-8.660254,1.4,-5,-8.961631,1.12,-3.712029,-9.238795,1.4,-3.826834,-6.087614,1.4,-7.933533,-5,1.4,-8.660254,-6.087614,2.8,-7.933533,-5,2.8,-8.660254,-1.266104,0.56,-9.617015,-1.490123E-07,0.56,-9.7,-1.266104,1.12,-9.617015,-1.490123E-07,1.12,-9.7,-7.695527,0.56,-5.904985,-7.695527,1.12,-5.904985,-8.400446,0.56,-4.85,-8.400446,1.12,-4.85,-2.510545,0.56,-9.36948,-1.266104,0.56,-9.617015,-2.510545,1.12,-9.36948,-1.266104,1.12,-9.617015,-9.238795,1.4,-3.826834,-9.238795,2.8,-3.826834,-9.659258,1.4,-2.588191,-9.659258,2.8,-2.588191,-9.36948,0.56,-2.510545,-9.36948,1.12,-2.510545,-9.617016,0.56,-1.266104,-9.617016,1.12,-1.266104,-9.36948,1.12,-2.510545,-9.659258,1.4,-2.588191,-9.617016,1.12,-1.266104,-9.914449,1.4,-1.305262,-9.617016,1.12,-1.266104,-9.914449,1.4,-1.305262,-9.7,1.12,7.450374E-08,-10,1.4,7.450374E-08,3.470057,2.8,0.4568417,3.5,2.8,3.725551E-08,3.470057,1.4,0.4568417,3.5,1.4,3.725545E-08,3.5,-4.591168E-19,3.725551E-08,3.470057,1.80432E-15,0.4568417,3.5,2.8,3.725551E-08,3.470057,2.8,-0.4568416,3.5,1.4,3.725545E-08,3.470057,1.4,-0.4568416,3.470057,-4.591168E-19,-0.4568416,3.5,-4.591168E-19,3.725551E-08,3.470057,2.8,-0.4568416,3.38074,2.8,-0.9058666,3.470057,1.4,-0.4568416,3.38074,1.4,-0.9058666,3.38074,-4.591168E-19,-0.9058666,3.470057,-4.591168E-19,-0.4568416,3.38074,2.8,-0.9058666,3.233578,2.8,-1.339392,3.38074,1.4,-0.9058666,3.233578,1.4,-1.339392,3.233578,-4.591168E-19,-1.339392,3.38074,-4.591168E-19,-0.9058666,3.233578,2.8,-1.339392,3.031089,2.8,-1.75,3.233578,1.4,-1.339392,3.031089,1.4,-1.75,3.031089,-4.591168E-19,-1.75,3.233578,-4.591168E-19,-1.339392,3.031089,2.8,-1.75,2.776737,2.8,-2.130665,3.031089,1.4,-1.75,2.776737,1.4,-2.130665,2.776737,-4.591168E-19,-2.130665,3.031089,-4.591168E-19,-1.75,2.776737,2.8,-2.130665,2.474874,2.8,-2.474874,2.776737,1.4,-2.130665,2.474874,1.4,-2.474874,2.474874,-4.591168E-19,-2.474874,2.776737,-4.591168E-19,-2.130665,2.474874,2.8,-2.474874,2.130665,2.8,-2.776737,2.474874,1.4,-2.474874,2.130665,1.4,-2.776737,2.474874,-4.591168E-19,-2.474874,2.130665,-4.591168E-19,-2.776737,2.130665,2.8,-2.776737,1.75,2.8,-3.031089,2.130665,1.4,-2.776737,1.75,1.4,-3.031089,2.130665,-4.591168E-19,-2.776737,1.75,-4.591168E-19,-3.031089,1.75,2.8,-3.031089,1.339392,2.8,-3.233578,1.75,1.4,-3.031089,1.339392,1.4,-3.233578,1.75,-4.591168E-19,-3.031089,1.339392,-4.591168E-19,-3.233578,1.339392,2.8,-3.233578,0.9058667,2.8,-3.38074,1.339392,1.4,-3.233578,0.9058667,1.4,-3.38074,1.339392,-4.591168E-19,-3.233578,0.9058667,-4.591168E-19,-3.38074,0.9058667,2.8,-3.38074,0.4568417,2.8,-3.470057,0.9058667,1.4,-3.38074,0.4568417,1.4,-3.470057,0.9058667,-4.591168E-19,-3.38074,0.4568417,-4.591168E-19,-3.470057,-7.450623E-08,2.8,-3.5,-7.450617E-08,1.4,-3.5,0.4568417,2.8,-3.470057,0.4568417,1.4,-3.470057,-7.450623E-08,5.413876E-15,-3.5,0.4568417,-4.591168E-19,-3.470057,-7.450623E-08,2.8,-3.5,-0.4568417,2.8,-3.470057,-7.450617E-08,1.4,-3.5,-0.4568417,1.4,-3.470057,-7.450623E-08,5.413876E-15,-3.5,-0.4568417,5.413876E-15,-3.470057,-0.4568417,2.8,-3.470057,-0.9058667,2.8,-3.38074,-0.4568417,1.4,-3.470057,-0.9058667,1.4,-3.38074,-0.4568417,5.413876E-15,-3.470057,-0.9058667,5.413876E-15,-3.38074,-0.9058667,2.8,-3.38074,-1.339392,2.8,-3.233578,-0.9058667,1.4,-3.38074,-1.339392,1.4,-3.233578,-0.9058667,5.413876E-15,-3.38074,-1.339392,5.413876E-15,-3.233578,-1.339392,2.8,-3.233578,-1.75,2.8,-3.031089,-1.339392,1.4,-3.233578,-1.75,1.4,-3.031089,-1.339392,5.413876E-15,-3.233578,-1.75,5.413876E-15,-3.031089,-1.75,2.8,-3.031089,-2.130665,2.8,-2.776737,-1.75,1.4,-3.031089,-2.130665,1.4,-2.776737,-1.75,5.413876E-15,-3.031089,-2.130665,5.413876E-15,-2.776737,-2.130665,2.8,-2.776737,-2.474874,2.8,-2.474874,-2.130665,1.4,-2.776737,-2.474874,1.4,-2.474874,-2.130665,5.413876E-15,-2.776737,-2.474874,5.413876E-15,-2.474874,-2.776737,2.8,-2.130665,-2.776737,1.4,-2.130665,-2.474874,2.8,-2.474874,-2.474874,1.4,-2.474874,-2.474874,5.413876E-15,-2.474874,-2.776737,5.413876E-15,-2.130665,-3.031089,2.8,-1.75,-3.031089,1.4,-1.75,-2.776737,2.8,-2.130665,-2.776737,1.4,-2.130665,-2.776737,5.413876E-15,-2.130665,-3.031089,5.413876E-15,-1.75,-3.233578,2.8,-1.339392,-3.233578,1.4,-1.339392,-3.031089,2.8,-1.75,-3.031089,1.4,-1.75,-3.031089,5.413876E-15,-1.75,-3.233578,5.413876E-15,-1.339392,-3.38074,2.8,-0.9058666,-3.38074,1.4,-0.9058666,-3.233578,2.8,-1.339392,-3.233578,1.4,-1.339392,-3.233578,5.413876E-15,-1.339392,-3.38074,5.413876E-15,-0.9058666,-3.470057,2.8,-0.4568416,-3.470057,1.4,-0.4568416,-3.38074,2.8,-0.9058666,-3.38074,1.4,-0.9058666,-3.38074,5.413876E-15,-0.9058666,-3.470057,5.413876E-15,-0.4568416,-3.5,2.8,3.725199E-08,-3.5,1.4,3.725193E-08,-3.470057,2.8,-0.4568416,-3.470057,1.4,-0.4568416,-3.470057,5.413876E-15,-0.4568416,-3.5,5.413876E-15,3.725199E-08,-3.470057,2.8,0.4568417,-3.470057,1.4,0.4568417,-3.5,2.8,3.725199E-08,-3.5,1.4,3.725193E-08,-3.5,5.413876E-15,3.725199E-08,-3.470057,3.609098E-15,0.4568417,-3.38074,2.8,0.9058666,-3.38074,1.4,0.9058666,-3.470057,2.8,0.4568417,-3.470057,1.4,0.4568417,-3.470057,3.609098E-15,0.4568417,-3.38074,3.609098E-15,0.9058666,-3.233578,2.8,1.339392,-3.233578,1.4,1.339392,-3.38074,2.8,0.9058666,-3.38074,1.4,0.9058666,-3.38074,3.609098E-15,0.9058666,-3.233578,3.609098E-15,1.339392,-3.031089,2.8,1.75,-3.031089,1.4,1.75,-3.233578,2.8,1.339392,-3.233578,1.4,1.339392,-3.233578,3.609098E-15,1.339392,-3.031089,3.609098E-15,1.75,-2.776737,2.8,2.130665,-2.776737,1.4,2.130665,-3.031089,2.8,1.75,-3.031089,1.4,1.75,-3.031089,3.609098E-15,1.75,-2.776737,3.609098E-15,2.130665,-2.474874,2.8,2.474874,-2.474874,1.4,2.474874,-2.776737,2.8,2.130665,-2.776737,1.4,2.130665,-2.776737,3.609098E-15,2.130665,-2.474874,3.609098E-15,2.474874,-2.474874,2.8,2.474874,-2.130665,2.8,2.776737,-2.474874,1.4,2.474874,-2.130665,1.4,2.776737,-2.474874,3.609098E-15,2.474874,-2.130665,3.609098E-15,2.776737,-2.130665,2.8,2.776737,-1.75,2.8,3.031089,-2.130665,1.4,2.776737,-1.75,1.4,3.031089,-2.130665,3.609098E-15,2.776737,-1.75,3.609098E-15,3.031089,-1.75,2.8,3.031089,-1.339392,2.8,3.233578,-1.75,1.4,3.031089,-1.339392,1.4,3.233578,-1.75,3.609098E-15,3.031089,-1.339392,3.609098E-15,3.233578,-1.339392,2.8,3.233578,-0.9058667,2.8,3.38074,-1.339392,1.4,3.233578,-0.9058667,1.4,3.38074,-1.339392,3.609098E-15,3.233578,-0.9058667,3.609098E-15,3.38074,-0.9058667,2.8,3.38074,-0.4568417,2.8,3.470057,-0.9058667,1.4,3.38074,-0.4568417,1.4,3.470057,-0.9058667,3.609098E-15,3.38074,-0.4568417,3.609098E-15,3.470057,-0.4568417,2.8,3.470057,-2.23538E-08,2.8,3.5,-0.4568417,1.4,3.470057,-2.235374E-08,1.4,3.5,-0.4568417,3.609098E-15,3.470057,-2.23538E-08,3.609098E-15,3.5,-2.23538E-08,2.8,3.5,0.4568417,2.8,3.470057,-2.235374E-08,1.4,3.5,0.4568417,1.4,3.470057,-2.23538E-08,3.609098E-15,3.5,0.4568417,1.80432E-15,3.470057,0.4568417,2.8,3.470057,0.9058667,2.8,3.38074,0.4568417,1.4,3.470057,0.9058667,1.4,3.38074,0.4568417,1.80432E-15,3.470057,0.9058667,1.80432E-15,3.38074,0.9058667,2.8,3.38074,1.339392,2.8,3.233578,0.9058667,1.4,3.38074,1.339392,1.4,3.233578,0.9058667,1.80432E-15,3.38074,1.339392,1.80432E-15,3.233578,1.339392,2.8,3.233578,1.75,2.8,3.031089,1.339392,1.4,3.233578,1.75,1.4,3.031089,1.339392,1.80432E-15,3.233578,1.75,1.80432E-15,3.031089,1.75,2.8,3.031089,2.130665,2.8,2.776737,1.75,1.4,3.031089,2.130665,1.4,2.776737,1.75,1.80432E-15,3.031089,2.130665,1.80432E-15,2.776737,2.130665,2.8,2.776737,2.474874,2.8,2.474874,2.130665,1.4,2.776737,2.474874,1.4,2.474874,2.130665,1.80432E-15,2.776737,2.474874,1.80432E-15,2.474874,2.474874,2.8,2.474874,2.776737,2.8,2.130665,2.474874,1.4,2.474874,2.776737,1.4,2.130665,2.776737,1.80432E-15,2.130665,2.474874,1.80432E-15,2.474874,2.776737,2.8,2.130665,3.031089,2.8,1.75,2.776737,1.4,2.130665,3.031089,1.4,1.75,3.031089,1.80432E-15,1.75,2.776737,1.80432E-15,2.130665,3.031089,2.8,1.75,3.233578,2.8,1.339392,3.031089,1.4,1.75,3.233578,1.4,1.339392,3.233578,1.80432E-15,1.339392,3.031089,1.80432E-15,1.75,3.233578,2.8,1.339392,3.38074,2.8,0.9058666,3.233578,1.4,1.339392,3.38074,1.4,0.9058666,3.38074,1.80432E-15,0.9058666,3.233578,1.80432E-15,1.339392,3.38074,2.8,0.9058666,3.470057,2.8,0.4568417,3.38074,1.4,0.9058666,3.470057,1.4,0.4568417,3.470057,1.80432E-15,0.4568417,3.38074,1.80432E-15,0.9058666,2.722361,3.8,-2.722361,2.474874,2.8,-2.474874,3.05441,3.8,-2.343731,2.776737,2.8,-2.130665,0.9058667,2.8,-3.38074,1.339392,2.8,-3.233578,0.9964534,3.8,-3.718814,1.473331,3.8,-3.556936,0.4568417,2.8,-3.470057,0.9058667,2.8,-3.38074,0.5025259,3.8,-3.817063,0.9964534,3.8,-3.718814,3.817063,3.8,-0.5025258,3.470057,2.8,-0.4568416,3.85,3.8,4.098101E-08,3.5,2.8,3.725551E-08,-0.4568417,2.8,-3.470057,-7.450623E-08,2.8,-3.5,-0.5025259,3.8,-3.817063,-8.195683E-08,3.8,-3.85,-0.9058667,2.8,-3.38074,-0.4568417,2.8,-3.470057,-0.9964534,3.8,-3.718814,-0.5025259,3.8,-3.817063,-1.339392,2.8,-3.233578,-0.9058667,2.8,-3.38074,-1.473331,3.8,-3.556936,-0.9964534,3.8,-3.718814,-1.75,2.8,-3.031089,-1.339392,2.8,-3.233578,-1.925,3.8,-3.334198,-1.473331,3.8,-3.556936,1.339392,2.8,-3.233578,1.75,2.8,-3.031089,1.473331,3.8,-3.556936,1.925,3.8,-3.334198,-2.130665,2.8,-2.776737,-1.75,2.8,-3.031089,-2.343732,3.8,-3.05441,-1.925,3.8,-3.334198,0.4568417,2.8,-3.470057,0.5025259,3.8,-3.817063,-7.450623E-08,2.8,-3.5,-8.195683E-08,3.8,-3.85,-2.474874,2.8,-2.474874,-2.130665,2.8,-2.776737,-2.722361,3.8,-2.722361,-2.343732,3.8,-3.05441,3.05441,3.8,-2.343731,2.776737,2.8,-2.130665,3.334198,3.8,-1.925,3.031089,2.8,-1.75,-2.722361,3.8,-2.722361,-3.05441,3.8,-2.343731,-2.474874,2.8,-2.474874,-2.776737,2.8,-2.130665,-3.05441,3.8,-2.343731,-3.334198,3.8,-1.925,-2.776737,2.8,-2.130665,-3.031089,2.8,-1.75,3.556936,3.8,-1.473331,3.233578,2.8,-1.339392,3.718814,3.8,-0.9964532,3.38074,2.8,-0.9058666,3.5,2.8,3.725551E-08,3.470057,2.8,0.4568417,3.85,3.8,4.098101E-08,3.817063,3.8,0.5025259,3.334198,3.8,-1.925,3.031089,2.8,-1.75,3.556936,3.8,-1.473331,3.233578,2.8,-1.339392,2.130665,2.8,-2.776737,2.474874,2.8,-2.474874,2.343732,3.8,-3.05441,2.722361,3.8,-2.722361,3.718814,3.8,-0.9964532,3.38074,2.8,-0.9058666,3.817063,3.8,-0.5025258,3.470057,2.8,-0.4568416,1.75,2.8,-3.031089,2.130665,2.8,-2.776737,1.925,3.8,-3.334198,2.343732,3.8,-3.05441,-3.5,2.8,3.725199E-08,-3.85,3.8,4.097719E-08,-3.470057,2.8,0.4568417,-3.817063,3.8,0.5025259,-3.718814,3.8,-0.9964532,-3.817063,3.8,-0.5025258,-3.38074,2.8,-0.9058666,-3.470057,2.8,-0.4568416,-3.817063,3.8,-0.5025258,-3.85,3.8,4.097719E-08,-3.470057,2.8,-0.4568416,-3.5,2.8,3.725199E-08,-3.334198,3.8,-1.925,-3.556936,3.8,-1.473331,-3.031089,2.8,-1.75,-3.233578,2.8,-1.339392,-3.556936,3.8,-1.473331,-3.718814,3.8,-0.9964532,-3.233578,2.8,-1.339392,-3.38074,2.8,-0.9058666,-3.38074,2.8,0.9058666,-3.718814,3.8,0.9964533,-3.233578,2.8,1.339392,-3.556936,3.8,1.473331,-3.031089,2.8,1.75,-3.334198,3.8,1.925,-2.776737,2.8,2.130665,-3.05441,3.8,2.343731,-2.130665,2.8,2.776737,-2.474874,2.8,2.474874,-2.343731,3.8,3.05441,-2.722361,3.8,2.722361,-1.75,2.8,3.031089,-2.130665,2.8,2.776737,-1.925,3.8,3.334198,-2.343731,3.8,3.05441,-3.470057,2.8,0.4568417,-3.817063,3.8,0.5025259,-3.38074,2.8,0.9058666,-3.718814,3.8,0.9964533,-3.233578,2.8,1.339392,-3.556936,3.8,1.473331,-3.031089,2.8,1.75,-3.334198,3.8,1.925,-2.776737,2.8,2.130665,-3.05441,3.8,2.343731,-2.474874,2.8,2.474874,-2.722361,3.8,2.722361,-1.339392,2.8,3.233578,-1.75,2.8,3.031089,-1.473331,3.8,3.556936,-1.925,3.8,3.334198,-0.9058667,2.8,3.38074,-1.339392,2.8,3.233578,-0.9964533,3.8,3.718814,-1.473331,3.8,3.556936,3.470057,2.8,0.4568417,3.38074,2.8,0.9058666,3.817063,3.8,0.5025259,3.718814,3.8,0.9964533,3.031089,2.8,1.75,2.776737,2.8,2.130665,3.334198,3.8,1.925,3.05441,3.8,2.343731,2.474874,2.8,2.474874,2.130665,2.8,2.776737,2.722361,3.8,2.722361,2.343731,3.8,3.05441,3.38074,2.8,0.9058666,3.233578,2.8,1.339392,3.718814,3.8,0.9964533,3.556936,3.8,1.473331,3.233578,2.8,1.339392,3.031089,2.8,1.75,3.556936,3.8,1.473331,3.334198,3.8,1.925,2.776737,2.8,2.130665,2.474874,2.8,2.474874,3.05441,3.8,2.343731,2.722361,3.8,2.722361,-0.4568417,2.8,3.470057,-0.9058667,2.8,3.38074,-0.5025259,3.8,3.817063,-0.9964533,3.8,3.718814,0.9058667,2.8,3.38074,0.4568417,2.8,3.470057,0.9964533,3.8,3.718814,0.5025259,3.8,3.817063,0.4568417,2.8,3.470057,-2.23538E-08,2.8,3.5,0.5025259,3.8,3.817063,-2.458917E-08,3.8,3.85,-2.23538E-08,2.8,3.5,-0.4568417,2.8,3.470057,-2.458917E-08,3.8,3.85,-0.5025259,3.8,3.817063,2.130665,2.8,2.776737,1.75,2.8,3.031089,2.343731,3.8,3.05441,1.925,3.8,3.334198,1.339392,2.8,3.233578,0.9058667,2.8,3.38074,1.473331,3.8,3.556936,0.9964533,3.8,3.718814,1.75,2.8,3.031089,1.339392,2.8,3.233578,1.925,3.8,3.334198,1.473331,3.8,3.556936,3.85,4.8,4.098101E-08,3.817063,4.8,0.5025259,3.817063,4.8,-0.5025258,3.718814,4.8,-0.9964532,3.718814,4.8,0.9964533,3.556936,4.8,-1.473331,3.556936,4.8,1.473331,3.334198,4.8,-1.925,3.334198,4.8,1.925,3.05441,4.8,-2.343731,3.05441,4.8,2.343731,2.722361,4.8,-2.722361,2.842785,4.8,3.186777E-08,2.722361,4.8,2.722361,2.818465,4.8,-0.3710579,2.745919,4.8,-0.7357669,2.626391,4.8,-1.087887,2.818465,4.8,0.3710579,2.745919,4.8,0.7357669,2.626391,4.8,1.087887,2.343732,4.8,-3.05441,2.461924,4.8,-1.421393,2.255333,4.8,-1.730578,2.343731,4.8,3.05441,2.461924,4.8,1.421393,2.255333,4.8,1.730578,1.925,4.8,-3.334198,2.010153,4.8,-2.010153,1.730578,4.8,-2.255333,1.473331,4.8,-3.556936,1.421393,4.8,-2.461924,1.925,4.8,3.334198,2.010153,4.8,2.010153,1.730578,4.8,2.255333,1.473331,4.8,3.556936,1.421393,4.8,2.461924,0.9964534,4.8,-3.718814,1.087887,4.8,-2.626391,0.7357669,4.8,-2.745919,0.5025259,4.8,-3.817063,0.371058,4.8,-2.818465,0.9964533,4.8,3.718814,1.087887,4.8,2.626391,0.7357669,4.8,2.745919,0.5025259,4.8,3.817063,0.371058,4.8,2.818465,-8.195683E-08,4.8,-3.85,-7.12365E-08,4.8,-2.842785,-0.371058,4.8,-2.818465,-0.5025259,4.8,-3.817063,-0.7357669,4.8,-2.745919,-0.9964534,4.8,-3.718814,-1.087887,4.8,-2.626391,-2.458917E-08,4.8,3.85,-2.137248E-08,4.8,2.842785,-0.371058,4.8,2.818465,-0.5025259,4.8,3.817063,-0.7357669,4.8,2.745919,-0.9964533,4.8,3.718814,-1.087887,4.8,2.626391,-1.473331,4.8,-3.556936,-1.421393,4.8,-2.461924,-1.730578,4.8,-2.255333,-1.925,4.8,-3.334198,-2.010153,4.8,-2.010153,-1.473331,4.8,3.556936,-1.421393,4.8,2.461924,-1.730578,4.8,2.255333,-1.925,4.8,3.334198,-2.010153,4.8,2.010153,-2.343732,4.8,-3.05441,-2.255333,4.8,-1.730578,-2.461924,4.8,-1.421393,-2.343731,4.8,3.05441,-2.255333,4.8,1.730578,-2.461924,4.8,1.421393,-2.722361,4.8,-2.722361,-2.626391,4.8,-1.087887,-2.745919,4.8,-0.7357669,-2.722361,4.8,2.722361,-2.626391,4.8,1.087887,-2.745919,4.8,0.7357669,-3.05441,4.8,-2.343731,-3.05441,4.8,2.343731,-2.818465,4.8,-0.3710579,-2.818465,4.8,0.3710579,-2.842785,4.8,3.186494E-08,-3.334198,4.8,1.925,-3.334198,4.8,-1.925,-3.556936,4.8,1.473331,-3.556936,4.8,-1.473331,-3.718814,4.8,0.9964533,-3.718814,4.8,-0.9964532,-3.817063,4.8,0.5025259,-3.817063,4.8,-0.5025258,-3.85,4.8,4.097719E-08,3.85,4.8,4.098101E-08,3.85,3.8,4.098101E-08,3.817063,4.8,0.5025259,3.817063,3.8,0.5025259,3.817063,4.8,-0.5025258,3.817063,3.8,-0.5025258,3.85,4.8,4.098101E-08,3.85,3.8,4.098101E-08,3.718814,4.8,-0.9964532,3.718814,3.8,-0.9964532,3.817063,4.8,-0.5025258,3.817063,3.8,-0.5025258,3.556936,4.8,-1.473331,3.556936,3.8,-1.473331,3.718814,4.8,-0.9964532,3.718814,3.8,-0.9964532,3.334198,4.8,-1.925,3.334198,3.8,-1.925,3.556936,4.8,-1.473331,3.556936,3.8,-1.473331,3.05441,4.8,-2.343731,3.05441,3.8,-2.343731,3.334198,4.8,-1.925,3.334198,3.8,-1.925,2.722361,4.8,-2.722361,2.722361,3.8,-2.722361,3.05441,4.8,-2.343731,3.05441,3.8,-2.343731,2.343732,3.8,-3.05441,2.722361,3.8,-2.722361,2.343732,4.8,-3.05441,2.722361,4.8,-2.722361,1.925,3.8,-3.334198,2.343732,3.8,-3.05441,1.925,4.8,-3.334198,2.343732,4.8,-3.05441,1.473331,3.8,-3.556936,1.925,3.8,-3.334198,1.473331,4.8,-3.556936,1.925,4.8,-3.334198,0.9964534,3.8,-3.718814,1.473331,3.8,-3.556936,0.9964534,4.8,-3.718814,1.473331,4.8,-3.556936,0.5025259,3.8,-3.817063,0.9964534,3.8,-3.718814,0.5025259,4.8,-3.817063,0.9964534,4.8,-3.718814,0.5025259,3.8,-3.817063,0.5025259,4.8,-3.817063,-8.195683E-08,3.8,-3.85,-8.195683E-08,4.8,-3.85,-0.5025259,3.8,-3.817063,-8.195683E-08,3.8,-3.85,-0.5025259,4.8,-3.817063,-8.195683E-08,4.8,-3.85,-0.9964534,3.8,-3.718814,-0.5025259,3.8,-3.817063,-0.9964534,4.8,-3.718814,-0.5025259,4.8,-3.817063,-1.473331,3.8,-3.556936,-0.9964534,3.8,-3.718814,-1.473331,4.8,-3.556936,-0.9964534,4.8,-3.718814,-1.925,3.8,-3.334198,-1.473331,3.8,-3.556936,-1.925,4.8,-3.334198,-1.473331,4.8,-3.556936,-2.343732,3.8,-3.05441,-1.925,3.8,-3.334198,-2.343732,4.8,-3.05441,-1.925,4.8,-3.334198,-2.722361,3.8,-2.722361,-2.343732,3.8,-3.05441,-2.722361,4.8,-2.722361,-2.343732,4.8,-3.05441,-2.722361,3.8,-2.722361,-2.722361,4.8,-2.722361,-3.05441,3.8,-2.343731,-3.05441,4.8,-2.343731,-3.05441,3.8,-2.343731,-3.05441,4.8,-2.343731,-3.334198,3.8,-1.925,-3.334198,4.8,-1.925,-3.334198,3.8,-1.925,-3.334198,4.8,-1.925,-3.556936,3.8,-1.473331,-3.556936,4.8,-1.473331,-3.556936,3.8,-1.473331,-3.556936,4.8,-1.473331,-3.718814,3.8,-0.9964532,-3.718814,4.8,-0.9964532,-3.718814,3.8,-0.9964532,-3.718814,4.8,-0.9964532,-3.817063,3.8,-0.5025258,-3.817063,4.8,-0.5025258,-3.817063,3.8,-0.5025258,-3.817063,4.8,-0.5025258,-3.85,3.8,4.097719E-08,-3.85,4.8,4.097719E-08,-3.85,3.8,4.097719E-08,-3.85,4.8,4.097719E-08,-3.817063,3.8,0.5025259,-3.817063,4.8,0.5025259,-3.817063,3.8,0.5025259,-3.817063,4.8,0.5025259,-3.718814,3.8,0.9964533,-3.718814,4.8,0.9964533,-3.718814,3.8,0.9964533,-3.718814,4.8,0.9964533,-3.556936,3.8,1.473331,-3.556936,4.8,1.473331,-3.556936,3.8,1.473331,-3.556936,4.8,1.473331,-3.334198,3.8,1.925,-3.334198,4.8,1.925,-3.334198,3.8,1.925,-3.334198,4.8,1.925,-3.05441,3.8,2.343731,-3.05441,4.8,2.343731,-3.05441,3.8,2.343731,-3.05441,4.8,2.343731,-2.722361,3.8,2.722361,-2.722361,4.8,2.722361,-2.343731,3.8,3.05441,-2.722361,3.8,2.722361,-2.343731,4.8,3.05441,-2.722361,4.8,2.722361,-1.925,3.8,3.334198,-2.343731,3.8,3.05441,-1.925,4.8,3.334198,-2.343731,4.8,3.05441,-1.473331,3.8,3.556936,-1.925,3.8,3.334198,-1.473331,4.8,3.556936,-1.925,4.8,3.334198,-0.9964533,3.8,3.718814,-1.473331,3.8,3.556936,-0.9964533,4.8,3.718814,-1.473331,4.8,3.556936,-0.5025259,3.8,3.817063,-0.9964533,3.8,3.718814,-0.5025259,4.8,3.817063,-0.9964533,4.8,3.718814,-2.458917E-08,3.8,3.85,-0.5025259,3.8,3.817063,-2.458917E-08,4.8,3.85,-0.5025259,4.8,3.817063,0.5025259,3.8,3.817063,-2.458917E-08,3.8,3.85,0.5025259,4.8,3.817063,-2.458917E-08,4.8,3.85,0.9964533,3.8,3.718814,0.5025259,3.8,3.817063,0.9964533,4.8,3.718814,0.5025259,4.8,3.817063,1.473331,3.8,3.556936,0.9964533,3.8,3.718814,1.473331,4.8,3.556936,0.9964533,4.8,3.718814,1.925,3.8,3.334198,1.473331,3.8,3.556936,1.925,4.8,3.334198,1.473331,4.8,3.556936,2.343731,3.8,3.05441,1.925,3.8,3.334198,2.343731,4.8,3.05441,1.925,4.8,3.334198,2.722361,3.8,2.722361,2.343731,3.8,3.05441,2.722361,4.8,2.722361,2.343731,4.8,3.05441,3.05441,4.8,2.343731,3.05441,3.8,2.343731,2.722361,4.8,2.722361,2.722361,3.8,2.722361,3.334198,4.8,1.925,3.334198,3.8,1.925,3.05441,4.8,2.343731,3.05441,3.8,2.343731,3.556936,4.8,1.473331,3.556936,3.8,1.473331,3.334198,4.8,1.925,3.334198,3.8,1.925,3.718814,4.8,0.9964533,3.718814,3.8,0.9964533,3.556936,4.8,1.473331,3.556936,3.8,1.473331,3.817063,4.8,0.5025259,3.817063,3.8,0.5025259,3.718814,4.8,0.9964533,3.718814,3.8,0.9964533,2.745919,2.8,-0.7357669,2.745919,3.8,-0.7357669,2.818465,2.8,-0.3710579,2.818465,3.8,-0.3710579,2.745919,4.8,-0.7357669,2.818465,4.8,-0.3710579,2.626391,2.8,-1.087887,2.626391,3.8,-1.087887,2.745919,2.8,-0.7357669,2.745919,3.8,-0.7357669,2.626391,4.8,-1.087887,2.745919,4.8,-0.7357669,2.461924,2.8,-1.421393,2.461924,3.8,-1.421393,2.626391,2.8,-1.087887,2.626391,3.8,-1.087887,2.461924,4.8,-1.421393,2.626391,4.8,-1.087887,2.255333,2.8,-1.730578,2.255333,3.8,-1.730578,2.461924,2.8,-1.421393,2.461924,3.8,-1.421393,2.255333,4.8,-1.730578,2.461924,4.8,-1.421393,2.010153,2.8,-2.010153,2.010153,3.8,-2.010153,2.255333,2.8,-1.730578,2.255333,3.8,-1.730578,2.010153,4.8,-2.010153,2.255333,4.8,-1.730578,2.010153,2.8,-2.010153,1.730578,2.8,-2.255333,2.010153,3.8,-2.010153,1.730578,3.8,-2.255333,2.010153,4.8,-2.010153,1.730578,4.8,-2.255333,1.730578,2.8,-2.255333,1.421393,2.8,-2.461924,1.730578,3.8,-2.255333,1.421393,3.8,-2.461924,1.730578,4.8,-2.255333,1.421393,4.8,-2.461924,1.421393,2.8,-2.461924,1.087887,2.8,-2.626391,1.421393,3.8,-2.461924,1.087887,3.8,-2.626391,1.421393,4.8,-2.461924,1.087887,4.8,-2.626391,1.087887,2.8,-2.626391,0.7357669,2.8,-2.745919,1.087887,3.8,-2.626391,0.7357669,3.8,-2.745919,1.087887,4.8,-2.626391,0.7357669,4.8,-2.745919,0.7357669,2.8,-2.745919,0.371058,2.8,-2.818465,0.7357669,3.8,-2.745919,0.371058,3.8,-2.818465,0.7357669,4.8,-2.745919,0.371058,4.8,-2.818465,0.371058,2.8,-2.818465,-7.12365E-08,2.8,-2.842785,0.371058,3.8,-2.818465,-7.12365E-08,3.8,-2.842785,0.371058,4.8,-2.818465,-7.12365E-08,4.8,-2.842785,-7.12365E-08,2.8,-2.842785,-0.371058,2.8,-2.818465,-7.12365E-08,3.8,-2.842785,-0.371058,3.8,-2.818465,-7.12365E-08,4.8,-2.842785,-0.371058,4.8,-2.818465,-0.371058,2.8,-2.818465,-0.7357669,2.8,-2.745919,-0.371058,3.8,-2.818465,-0.7357669,3.8,-2.745919,-0.371058,4.8,-2.818465,-0.7357669,4.8,-2.745919,-0.7357669,2.8,-2.745919,-1.087887,2.8,-2.626391,-0.7357669,3.8,-2.745919,-1.087887,3.8,-2.626391,-0.7357669,4.8,-2.745919,-1.087887,4.8,-2.626391,-1.087887,2.8,-2.626391,-1.421393,2.8,-2.461924,-1.087887,3.8,-2.626391,-1.421393,3.8,-2.461924,-1.087887,4.8,-2.626391,-1.421393,4.8,-2.461924,-1.421393,2.8,-2.461924,-1.730578,2.8,-2.255333,-1.421393,3.8,-2.461924,-1.730578,3.8,-2.255333,-1.421393,4.8,-2.461924,-1.730578,4.8,-2.255333,-2.010153,2.8,-2.010153,-2.010153,3.8,-2.010153,-1.730578,2.8,-2.255333,-1.730578,3.8,-2.255333,-2.010153,4.8,-2.010153,-1.730578,4.8,-2.255333,-2.255333,2.8,-1.730578,-2.255333,3.8,-1.730578,-2.010153,2.8,-2.010153,-2.010153,3.8,-2.010153,-2.255333,4.8,-1.730578,-2.010153,4.8,-2.010153,-2.461924,2.8,-1.421393,-2.461924,3.8,-1.421393,-2.255333,2.8,-1.730578,-2.255333,3.8,-1.730578,-2.461924,4.8,-1.421393,-2.255333,4.8,-1.730578,-2.626391,2.8,-1.087887,-2.626391,3.8,-1.087887,-2.461924,2.8,-1.421393,-2.461924,3.8,-1.421393,-2.626391,4.8,-1.087887,-2.461924,4.8,-1.421393,-2.745919,2.8,-0.7357669,-2.745919,3.8,-0.7357669,-2.626391,2.8,-1.087887,-2.626391,3.8,-1.087887,-2.745919,4.8,-0.7357669,-2.626391,4.8,-1.087887,-2.818465,2.8,-0.3710579,-2.818465,3.8,-0.3710579,-2.745919,2.8,-0.7357669,-2.745919,3.8,-0.7357669,-2.818465,4.8,-0.3710579,-2.745919,4.8,-0.7357669,-2.842785,2.8,3.186494E-08,-2.842785,3.8,3.186494E-08,-2.818465,2.8,-0.3710579,-2.818465,3.8,-0.3710579,-2.842785,4.8,3.186494E-08,-2.818465,4.8,-0.3710579,-2.818465,2.8,0.3710579,-2.818465,3.8,0.3710579,-2.842785,2.8,3.186494E-08,-2.842785,3.8,3.186494E-08,-2.818465,4.8,0.3710579,-2.842785,4.8,3.186494E-08,-2.745919,2.8,0.7357669,-2.745919,3.8,0.7357669,-2.818465,2.8,0.3710579,-2.818465,3.8,0.3710579,-2.745919,4.8,0.7357669,-2.818465,4.8,0.3710579,-2.626391,2.8,1.087887,-2.626391,3.8,1.087887,-2.745919,2.8,0.7357669,-2.745919,3.8,0.7357669,-2.626391,4.8,1.087887,-2.745919,4.8,0.7357669,-2.461924,2.8,1.421393,-2.461924,3.8,1.421393,-2.626391,2.8,1.087887,-2.626391,3.8,1.087887,-2.461924,4.8,1.421393,-2.626391,4.8,1.087887,-2.255333,2.8,1.730578,-2.255333,3.8,1.730578,-2.461924,2.8,1.421393,-2.461924,3.8,1.421393,-2.255333,4.8,1.730578,-2.461924,4.8,1.421393,-2.010153,2.8,2.010153,-2.010153,3.8,2.010153,-2.255333,2.8,1.730578,-2.255333,3.8,1.730578,-2.010153,4.8,2.010153,-2.255333,4.8,1.730578,-2.010153,2.8,2.010153,-1.730578,2.8,2.255333,-2.010153,3.8,2.010153,-1.730578,3.8,2.255333,-2.010153,4.8,2.010153,-1.730578,4.8,2.255333,-1.730578,2.8,2.255333,-1.421393,2.8,2.461924,-1.730578,3.8,2.255333,-1.421393,3.8,2.461924,-1.730578,4.8,2.255333,-1.421393,4.8,2.461924,-1.421393,2.8,2.461924,-1.087887,2.8,2.626391,-1.421393,3.8,2.461924,-1.087887,3.8,2.626391,-1.421393,4.8,2.461924,-1.087887,4.8,2.626391,-1.087887,2.8,2.626391,-0.7357669,2.8,2.745919,-1.087887,3.8,2.626391,-0.7357669,3.8,2.745919,-1.087887,4.8,2.626391,-0.7357669,4.8,2.745919,-0.7357669,2.8,2.745919,-0.371058,2.8,2.818465,-0.7357669,3.8,2.745919,-0.371058,3.8,2.818465,-0.7357669,4.8,2.745919,-0.371058,4.8,2.818465,-0.371058,2.8,2.818465,-2.137248E-08,2.8,2.842785,-0.371058,3.8,2.818465,-2.137248E-08,3.8,2.842785,-0.371058,4.8,2.818465,-2.137248E-08,4.8,2.842785,-2.137248E-08,2.8,2.842785,0.371058,2.8,2.818465,-2.137248E-08,3.8,2.842785,0.371058,3.8,2.818465,-2.137248E-08,4.8,2.842785,0.371058,4.8,2.818465,0.371058,2.8,2.818465,0.7357669,2.8,2.745919,0.371058,3.8,2.818465,0.7357669,3.8,2.745919,0.371058,4.8,2.818465,0.7357669,4.8,2.745919,0.7357669,2.8,2.745919,1.087887,2.8,2.626391,0.7357669,3.8,2.745919,1.087887,3.8,2.626391,0.7357669,4.8,2.745919,1.087887,4.8,2.626391,1.087887,2.8,2.626391,1.421393,2.8,2.461924,1.087887,3.8,2.626391,1.421393,3.8,2.461924,1.087887,4.8,2.626391,1.421393,4.8,2.461924,1.421393,2.8,2.461924,1.730578,2.8,2.255333,1.421393,3.8,2.461924,1.730578,3.8,2.255333,1.421393,4.8,2.461924,1.730578,4.8,2.255333,1.730578,2.8,2.255333,2.010153,2.8,2.010153,1.730578,3.8,2.255333,2.010153,3.8,2.010153,1.730578,4.8,2.255333,2.010153,4.8,2.010153,2.255333,2.8,1.730578,2.255333,3.8,1.730578,2.010153,2.8,2.010153,2.010153,3.8,2.010153,2.255333,4.8,1.730578,2.010153,4.8,2.010153,2.461924,2.8,1.421393,2.461924,3.8,1.421393,2.255333,2.8,1.730578,2.255333,3.8,1.730578,2.461924,4.8,1.421393,2.255333,4.8,1.730578,2.626391,2.8,1.087887,2.626391,3.8,1.087887,2.461924,2.8,1.421393,2.461924,3.8,1.421393,2.626391,4.8,1.087887,2.461924,4.8,1.421393,2.745919,2.8,0.7357669,2.745919,3.8,0.7357669,2.626391,2.8,1.087887,2.626391,3.8,1.087887,2.745919,4.8,0.7357669,2.626391,4.8,1.087887,2.818465,2.8,0.3710579,2.818465,3.8,0.3710579,2.745919,2.8,0.7357669,2.745919,3.8,0.7357669,2.818465,4.8,0.3710579,2.745919,4.8,0.7357669,2.842785,2.8,3.186777E-08,2.842785,3.8,3.186777E-08,2.818465,2.8,0.3710579,2.818465,3.8,0.3710579,2.842785,4.8,3.186777E-08,2.818465,4.8,0.3710579,2.818465,2.8,-0.3710579,2.818465,3.8,-0.3710579,2.842785,2.8,3.186777E-08,2.842785,3.8,3.186777E-08,2.818465,4.8,-0.3710579,2.842785,4.8,3.186777E-08,2.842785,2.8,3.186777E-08,2.818465,2.8,0.3710579,2.818465,2.8,-0.3710579,2.745919,2.8,-0.7357669,2.745919,2.8,0.7357669,2.626391,2.8,-1.087887,2.626391,2.8,1.087887,2.461924,2.8,-1.421393,2.461924,2.8,1.421393,2.255333,2.8,-1.730578,2.255333,2.8,1.730578,2.010153,2.8,-2.010153,2.010153,2.8,2.010153,1.730578,2.8,-2.255333,1.730578,2.8,2.255333,1.421393,2.8,-2.461924,1.421393,2.8,2.461924,1.087887,2.8,-2.626391,1.087887,2.8,2.626391,0.7357669,2.8,-2.745919,0.7357669,2.8,2.745919,0.371058,2.8,-2.818465,0.371058,2.8,2.818465,-7.12365E-08,2.8,-2.842785,-2.137248E-08,2.8,2.842785,-0.371058,2.8,2.818465,-0.371058,2.8,-2.818465,-0.7357669,2.8,2.745919,-0.7357669,2.8,-2.745919,-1.087887,2.8,2.626391,-1.087887,2.8,-2.626391,-1.421393,2.8,2.461924,-1.421393,2.8,-2.461924,-1.730578,2.8,2.255333,-1.730578,2.8,-2.255333,-2.010153,2.8,2.010153,-2.010153,2.8,-2.010153,-2.255333,2.8,1.730578,-2.255333,2.8,-1.730578,-2.461924,2.8,1.421393,-2.461924,2.8,-1.421393,-2.626391,2.8,1.087887,-2.626391,2.8,-1.087887,-2.745919,2.8,0.7357669,-2.745919,2.8,-0.7357669,-2.818465,2.8,0.3710579,-2.818465,2.8,-0.3710579,-2.842785,2.8,3.186494E-08,2.588191,1.804779E-15,9.659258,1.305262,1.804779E-15,9.914448,2.588191,0.56,9.659258,1.305262,0.56,9.914448,5,1.804779E-15,8.660254,3.826834,1.804779E-15,9.238795,5,0.56,8.660254,3.826834,0.56,9.238795,8.660254,0.56,5,8.660254,1.804779E-15,5,7.933534,0.56,6.087614,7.933534,1.804779E-15,6.087614,1.305262,1.804779E-15,9.914448,-4.764615E-12,3.609557E-15,10,1.305262,0.56,9.914448,-4.764615E-12,0.56,10,10,2.8,7.451324E-08,9.914449,2.8,1.305262,9.914449,2.8,-1.305262,9.659258,2.8,-2.588191,9.659258,2.8,2.588191,9.238795,2.8,-3.826834,9.238795,2.8,3.826835,8.660254,2.8,-5,8.660254,2.8,5,7.933534,2.8,-6.087614,7.071068,2.8,-7.071068,6.087614,2.8,-7.933533,5,2.8,-8.660254,3.826835,2.8,-9.238795,2.588191,2.8,-9.659258,1.305262,2.8,-9.914448,-1.490122E-07,2.8,-10,-1.305262,2.8,-9.914448,-2.588191,2.8,-9.659258,-3.826835,2.8,-9.238795,-5,2.8,-8.660254,-6.087614,2.8,-7.933533,-7.071068,2.8,-7.071068,-7.933534,2.8,-6.087614,-8.660254,2.8,-5,-9.238795,2.8,-3.826834,-9.659258,2.8,-2.588191,-9.659258,2.8,2.588191,-9.914449,2.8,1.305262,-9.914449,2.8,-1.305262,-10,2.8,7.450374E-08,-9.238795,2.8,3.826835,-8.660254,2.8,5,-7.933534,2.8,6.087614,-7.071068,2.8,7.071068,-6.087614,2.8,7.933533,-5,2.8,8.660254,-3.826834,2.8,9.238795,-2.588191,2.8,9.659258,-1.305262,2.8,9.914448,-4.764615E-12,2.8,10,1.305262,2.8,9.914448,2.588191,2.8,9.659258,3.826834,2.8,9.238795,5,2.8,8.660254,6.087614,2.8,7.933533,7.071068,2.8,7.071068,7.933534,2.8,6.087614,3.826834,1.804779E-15,9.238795,2.588191,1.804779E-15,9.659258,3.826834,0.56,9.238795,2.588191,0.56,9.659258,7.071068,1.804779E-15,7.071068,6.087614,1.804779E-15,7.933533,7.071068,0.56,7.071068,6.087614,0.56,7.933533,6.087614,1.804779E-15,7.933533,5,1.804779E-15,8.660254,6.087614,0.56,7.933533,5,0.56,8.660254,9.914449,0.56,1.305262,9.914449,1.804779E-15,1.305262,9.659258,0.56,2.588191,9.659258,1.804779E-15,2.588191,9.238795,0.56,3.826835,9.238795,1.804779E-15,3.826835,8.660254,0.56,5,8.660254,1.804779E-15,5,9.659258,0.56,2.588191,9.659258,1.804779E-15,2.588191,9.238795,0.56,3.826835,9.238795,1.804779E-15,3.826835,10,0.56,7.451324E-08,10,0,7.451324E-08,9.914449,0.56,1.305262,9.914449,1.804779E-15,1.305262,7.933534,0.56,6.087614,7.933534,1.804779E-15,6.087614,7.071068,0.56,7.071068,7.071068,1.804779E-15,7.071068,-9.659258,3.609557E-15,2.588191,-9.659258,0.56,2.588191,-9.238795,3.609557E-15,3.826835,-9.238795,0.56,3.826835,-5,3.609557E-15,8.660254,-6.087614,3.609557E-15,7.933533,-5,0.56,8.660254,-6.087614,0.56,7.933533,-10,5.414336E-15,7.450374E-08,-10,0.56,7.450374E-08,-9.914449,3.609557E-15,1.305262,-9.914449,0.56,1.305262,-9.238795,3.609557E-15,3.826835,-9.238795,0.56,3.826835,-8.660254,3.609557E-15,5,-8.660254,0.56,5,-3.826834,3.609557E-15,9.238795,-5,3.609557E-15,8.660254,-3.826834,0.56,9.238795,-5,0.56,8.660254,-8.660254,3.609557E-15,5,-8.660254,0.56,5,-7.933534,3.609557E-15,6.087614,-7.933534,0.56,6.087614,-9.914449,3.609557E-15,1.305262,-9.914449,0.56,1.305262,-9.659258,3.609557E-15,2.588191,-9.659258,0.56,2.588191,-7.933534,3.609557E-15,6.087614,-7.933534,0.56,6.087614,-7.071068,3.609557E-15,7.071068,-7.071068,0.56,7.071068,-1.305262,3.609557E-15,9.914448,-2.588191,3.609557E-15,9.659258,-1.305262,0.56,9.914448,-2.588191,0.56,9.659258,-4.764615E-12,3.609557E-15,10,-1.305262,3.609557E-15,9.914448,-4.764615E-12,0.56,10,-1.305262,0.56,9.914448,-2.588191,3.609557E-15,9.659258,-3.826834,3.609557E-15,9.238795,-2.588191,0.56,9.659258,-3.826834,0.56,9.238795,-6.087614,3.609557E-15,7.933533,-7.071068,3.609557E-15,7.071068,-6.087614,0.56,7.933533,-7.071068,0.56,7.071068,9.914449,0.56,-1.305262,9.914449,0,-1.305262,10,0.56,7.451324E-08,10,0,7.451324E-08,5,0,-8.660254,6.087614,0,-7.933533,5,0.56,-8.660254,6.087614,0.56,-7.933533,1.305262,0,-9.914448,1.305262,0.56,-9.914448,-1.490122E-07,5.414336E-15,-10,-1.490122E-07,0.56,-10,9.238795,0.56,-3.826834,9.238795,0,-3.826834,9.659258,0.56,-2.588191,9.659258,0,-2.588191,10,0.56,7.451324E-08,9.914449,0.56,1.305262,9.914449,0.56,-1.305262,9.659258,0.56,-2.588191,9.7,0.56,7.451301E-08,9.659258,0.56,2.588191,9.617016,0.56,-1.266104,9.617016,0.56,1.266104,9.238795,0.56,-3.826834,9.36948,0.56,-2.510545,8.961631,0.56,-3.712029,8.660254,0.56,-5,8.400446,0.56,-4.85,7.933534,0.56,-6.087614,7.695527,0.56,-5.904985,7.071068,0.56,-7.071068,6.858936,0.56,-6.858935,6.087614,0.56,-7.933533,5.904985,0.56,-7.695527,5,0.56,-8.660254,4.85,0.56,-8.400446,3.826835,0.56,-9.238795,3.712029,0.56,-8.961631,2.588191,0.56,-9.659258,2.510545,0.56,-9.36948,1.305262,0.56,-9.914448,1.266104,0.56,-9.617015,-1.490122E-07,0.56,-10,-1.490123E-07,0.56,-9.7,-1.305262,0.56,-9.914448,-1.266104,0.56,-9.617015,-2.510545,0.56,-9.36948,-2.588191,0.56,-9.659258,-3.712029,0.56,-8.961631,-3.826835,0.56,-9.238795,-4.85,0.56,-8.400446,-5,0.56,-8.660254,-5.904985,0.56,-7.695527,-6.087614,0.56,-7.933533,-6.858936,0.56,-6.858935,-7.071068,0.56,-7.071068,-7.695527,0.56,-5.904985,-7.933534,0.56,-6.087614,-8.400446,0.56,-4.85,-8.660254,0.56,-5,-8.961631,0.56,-3.712029,-9.238795,0.56,-3.826834,-9.36948,0.56,-2.510545,-9.659258,0.56,-2.588191,-9.617016,0.56,-1.266104,-9.7,0.56,7.450374E-08,-9.914449,0.56,-1.305262,-9.914449,0.56,1.305262,-10,0.56,7.450374E-08,-9.659258,0.56,2.588191,-9.617016,0.56,1.266104,-9.36948,0.56,2.510545,-9.238795,0.56,3.826835,-8.961631,0.56,3.712029,-8.660254,0.56,5,-8.400446,0.56,4.85,-7.933534,0.56,6.087614,-7.695527,0.56,5.904985,-7.071068,0.56,7.071068,-6.858936,0.56,6.858936,-6.087614,0.56,7.933533,-5.904985,0.56,7.695527,-5,0.56,8.660254,-4.85,0.56,8.400446,-3.826834,0.56,9.238795,-3.712029,0.56,8.961631,-2.588191,0.56,9.659258,-2.510545,0.56,9.36948,-1.305262,0.56,9.914448,-1.266104,0.56,9.617015,-4.475013E-09,0.56,9.7,-4.764615E-12,0.56,10,1.266104,0.56,9.617015,1.305262,0.56,9.914448,2.510545,0.56,9.36948,2.588191,0.56,9.659258,3.712029,0.56,8.961631,3.826834,0.56,9.238795,4.85,0.56,8.400446,5,0.56,8.660254,5.904985,0.56,7.695527,6.087614,0.56,7.933533,6.858936,0.56,6.858936,7.071068,0.56,7.071068,7.695527,0.56,5.904985,7.933534,0.56,6.087614,8.400446,0.56,4.85,8.660254,0.56,5,8.961631,0.56,3.712029,9.238795,0.56,3.826835,9.36948,0.56,2.510545,8.660254,0.56,-5,8.660254,0,-5,9.238795,0.56,-3.826834,9.238795,0,-3.826834,3.826835,0,-9.238795,5,0,-8.660254,3.826835,0.56,-9.238795,5,0.56,-8.660254,2.588191,0,-9.659258,3.826835,0,-9.238795,2.588191,0.56,-9.659258,3.826835,0.56,-9.238795,7.071068,0.56,-7.071068,7.071068,0,-7.071068,7.933534,0.56,-6.087614,7.933534,0,-6.087614,9.659258,0.56,-2.588191,9.659258,0,-2.588191,9.914449,0.56,-1.305262,9.914449,0,-1.305262,1.305262,0,-9.914448,2.588191,0,-9.659258,1.305262,0.56,-9.914448,2.588191,0.56,-9.659258,7.933534,0.56,-6.087614,7.933534,0,-6.087614,8.660254,0.56,-5,8.660254,0,-5,6.087614,0,-7.933533,7.071068,0,-7.071068,6.087614,0.56,-7.933533,7.071068,0.56,-7.071068,-9.659258,5.414336E-15,-2.588191,-9.659258,0.56,-2.588191,-9.914449,5.414336E-15,-1.305262,-9.914449,0.56,-1.305262,-7.071068,5.414336E-15,-7.071068,-6.087614,5.414336E-15,-7.933533,-7.071068,0.56,-7.071068,-6.087614,0.56,-7.933533,-6.087614,5.414336E-15,-7.933533,-5,5.414336E-15,-8.660254,-6.087614,0.56,-7.933533,-5,0.56,-8.660254,-9.238795,5.414336E-15,-3.826834,-9.238795,0.56,-3.826834,-9.659258,5.414336E-15,-2.588191,-9.659258,0.56,-2.588191,-7.933534,5.414336E-15,-6.087614,-7.933534,0.56,-6.087614,-8.660254,5.414336E-15,-5,-8.660254,0.56,-5,-5,5.414336E-15,-8.660254,-3.826835,5.414336E-15,-9.238795,-5,0.56,-8.660254,-3.826835,0.56,-9.238795,-8.660254,5.414336E-15,-5,-8.660254,0.56,-5,-9.238795,5.414336E-15,-3.826834,-9.238795,0.56,-3.826834,-9.914449,5.414336E-15,-1.305262,-9.914449,0.56,-1.305262,-10,5.414336E-15,7.450374E-08,-10,0.56,7.450374E-08,-1.305262,5.414336E-15,-9.914448,-1.490122E-07,5.414336E-15,-10,-1.305262,0.56,-9.914448,-1.490122E-07,0.56,-10,-3.826835,5.414336E-15,-9.238795,-2.588191,5.414336E-15,-9.659258,-3.826835,0.56,-9.238795,-2.588191,0.56,-9.659258,-2.588191,5.414336E-15,-9.659258,-1.305262,5.414336E-15,-9.914448,-2.588191,0.56,-9.659258,-1.305262,0.56,-9.914448,-7.071068,5.414336E-15,-7.071068,-7.071068,0.56,-7.071068,-7.933534,5.414336E-15,-6.087614,-7.933534,0.56,-6.087614,2.842785,3.8,3.186777E-08,2.818465,3.8,0.3710579,2.818465,3.8,-0.3710579,2.745919,3.8,-0.7357669,2.745919,3.8,0.7357669,2.626391,3.8,-1.087887,2.626391,3.8,1.087887,2.461924,3.8,-1.421393,2.461924,3.8,1.421393,2.255333,3.8,-1.730578,2.255333,3.8,1.730578,2.010153,3.8,-2.010153,2.010153,3.8,2.010153,1.730578,3.8,-2.255333,1.730578,3.8,2.255333,1.421393,3.8,-2.461924,1.421393,3.8,2.461924,1.087887,3.8,-2.626391,1.087887,3.8,2.626391,0.7357669,3.8,-2.745919,0.7357669,3.8,2.745919,0.371058,3.8,-2.818465,0.371058,3.8,2.818465,-7.12365E-08,3.8,-2.842785,-2.137248E-08,3.8,2.842785,-0.371058,3.8,2.818465,-0.371058,3.8,-2.818465,-0.7357669,3.8,2.745919,-0.7357669,3.8,-2.745919,-1.087887,3.8,2.626391,-1.087887,3.8,-2.626391,-1.421393,3.8,2.461924,-1.421393,3.8,-2.461924,-1.730578,3.8,2.255333,-1.730578,3.8,-2.255333,-2.010153,3.8,2.010153,-2.010153,3.8,-2.010153,-2.255333,3.8,1.730578,-2.255333,3.8,-1.730578,-2.461924,3.8,1.421393,-2.461924,3.8,-1.421393,-2.626391,3.8,1.087887,-2.626391,3.8,-1.087887,-2.745919,3.8,0.7357669,-2.745919,3.8,-0.7357669,-2.818465,3.8,0.3710579,-2.818465,3.8,-0.3710579,-2.842785,3.8,3.186494E-08,7,1.4,7.451091E-08,6.940114,1.4,0.9136834,6.940114,1.4,-0.9136832,6.76148,1.4,-1.811733,6.76148,1.4,1.811733,6.467157,1.4,-2.678784,6.467156,1.4,2.678784,6.062178,1.4,-3.5,6.062178,1.4,3.5,5.553473,1.4,-4.26133,5.553473,1.4,4.26133,4.949748,1.4,-4.949747,4.949748,1.4,4.949747,4.26133,1.4,-5.553473,4.26133,1.4,5.553473,3.5,1.4,-6.062178,3.5,1.4,6.062178,3.5,1.4,3.725545E-08,3.470057,1.4,-0.4568416,3.470057,1.4,0.4568417,2.678784,1.4,-6.467156,2.678784,1.4,6.467156,3.38074,1.4,-0.9058666,3.38074,1.4,0.9058666,3.233578,1.4,-1.339392,3.233578,1.4,1.339392,3.031089,1.4,-1.75,2.776737,1.4,-2.130665,2.474874,1.4,-2.474874,3.031089,1.4,1.75,2.776737,1.4,2.130665,2.474874,1.4,2.474874,1.811733,1.4,-6.76148,2.130665,1.4,-2.776737,1.75,1.4,-3.031089,1.811733,1.4,6.76148,2.130665,1.4,2.776737,1.75,1.4,3.031089,0.9136835,1.4,-6.940114,1.339392,1.4,-3.233578,0.9058667,1.4,-3.38074,0.9136834,1.4,6.940114,1.339392,1.4,3.233578,0.9058667,1.4,3.38074,-1.490124E-07,1.4,-7,-4.470731E-08,1.4,7,0.4568417,1.4,-3.470057,-7.450617E-08,1.4,-3.5,-0.4568417,1.4,-3.470057,0.4568417,1.4,3.470057,-2.235374E-08,1.4,3.5,-0.4568417,1.4,3.470057,-0.9136835,1.4,-6.940114,-0.9058667,1.4,-3.38074,-1.339392,1.4,-3.233578,-0.9136834,1.4,6.940114,-0.9058667,1.4,3.38074,-1.339392,1.4,3.233578,-1.811733,1.4,-6.76148,-1.75,1.4,-3.031089,-2.130665,1.4,-2.776737,-1.811733,1.4,6.76148,-1.75,1.4,3.031089,-2.130665,1.4,2.776737,-2.678784,1.4,-6.467156,-2.474874,1.4,-2.474874,-2.776737,1.4,-2.130665,-3.5,1.4,-6.062178,-2.678784,1.4,6.467156,-2.474874,1.4,2.474874,-2.776737,1.4,2.130665,-3.031089,1.4,-1.75,-3.5,1.4,6.062178,-3.233578,1.4,-1.339392,-3.031089,1.4,1.75,-3.38074,1.4,-0.9058666,-3.233578,1.4,1.339392,-3.470057,1.4,-0.4568416,-3.38074,1.4,0.9058666,-3.470057,1.4,0.4568417,-3.5,1.4,3.725193E-08,-4.26133,1.4,5.553473,-4.26133,1.4,-5.553473,-4.949748,1.4,4.949747,-4.949748,1.4,-4.949747,-5.553473,1.4,4.26133,-5.553473,1.4,-4.26133,-6.062178,1.4,3.5,-6.062178,1.4,-3.5,-6.467156,1.4,2.678784,-6.467157,1.4,-2.678784,-6.76148,1.4,1.811733,-6.76148,1.4,-1.811733,-6.940114,1.4,0.9136834,-6.940114,1.4,-0.9136832,-7,1.4,7.450403E-08 + } + PolygonVertexIndex: *5748 { + a: 0,2,-2,3,1,-3,2,4,-4,5,3,-5,6,8,-8,9,7,-9,7,9,-11,11,10,-10,12,14,-14,15,13,-15,14,16,-16,17,15,-17,18,20,-20,21,19,-21,20,22,-22,23,21,-23,24,26,-26,27,25,-27,25,27,-29,29,28,-28,30,32,-32,33,31,-33,34,36,-36,37,35,-37,37,38,-36,39,35,-39,40,42,-42,43,41,-43,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,57,58,-56,59,55,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,67,68,-66,69,65,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,81,82,-80,83,79,-83,84,86,-86,87,85,-87,87,88,-86,89,85,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,189,-192,193,192,-192,194,192,-194,195,194,-194,196,194,-196,197,196,-196,198,196,-198,199,198,-198,200,199,-198,199,201,-199,202,200,-198,203,200,-203,204,203,-203,205,198,-202,206,205,-202,207,205,-207,208,204,-203,209,204,-209,210,209,-209,211,205,-208,212,211,-208,213,211,-213,214,210,-209,215,210,-215,216,215,-215,217,216,-215,218,216,-218,219,211,-214,220,219,-214,221,219,-221,222,219,-222,223,222,-222,224,218,-218,225,218,-225,226,225,-225,227,226,-225,228,226,-228,229,228,-228,230,228,-230,231,222,-224,232,231,-224,233,231,-233,234,231,-234,235,234,-234,236,234,-236,237,236,-236,238,230,-230,239,230,-239,240,239,-239,241,240,-239,242,240,-242,243,236,-238,244,243,-238,245,243,-245,246,243,-246,247,246,-246,248,242,-242,249,242,-249,250,249,-249,251,250,-249,252,250,-252,253,246,-248,254,253,-248,255,253,-255,256,253,-256,257,256,-256,258,252,-252,259,252,-259,260,259,-259,261,256,-258,262,261,-258,263,261,-263,264,260,-259,265,260,-265,266,265,-265,267,261,-264,268,267,-264,269,267,-269,270,266,-265,271,267,-270,272,266,-271,273,271,-270,274,271,-274,274,272,-271,271,274,-271,275,271,-271,276,275,-271,277,275,-277,278,277,-277,279,277,-279,280,279,-279,281,279,-281,282,281,-281,283,281,-283,284,286,-286,287,285,-287,288,285,-288,289,288,-288,290,288,-290,291,290,-290,292,290,-292,293,292,-292,294,292,-294,295,294,-294,296,294,-296,297,296,-296,298,296,-298,299,298,-298,300,298,-300,301,300,-300,301,299,-303,303,300,-302,304,302,-300,305,300,-304,306,302,-305,307,305,-304,308,306,-305,309,305,-308,310,308,-305,311,310,-305,312,311,-305,313,305,-310,314,305,-314,315,305,-315,316,312,-305,317,312,-317,318,317,-317,319,305,-316,320,319,-316,321,319,-321,322,318,-317,323,318,-323,324,323,-323,325,319,-322,326,325,-322,327,325,-327,328,324,-323,329,325,-328,330,324,-329,331,330,-329,332,331,-329,333,329,-328,334,329,-334,335,329,-335,336,332,-329,337,332,-337,338,337,-337,339,329,-336,340,339,-336,341,339,-341,342,338,-337,343,338,-343,344,343,-343,345,339,-342,346,345,-342,347,345,-347,348,344,-343,349,344,-349,350,349,-349,351,350,-349,352,345,-348,353,352,-348,354,352,-354,355,350,-352,356,352,-355,357,355,-352,358,356,-355,359,357,-352,360,356,-359,361,359,-352,362,356,-361,363,356,-363,364,356,-364,364,361,-352,365,356,-365,351,365,-365,366,365,-352,367,365,-367,368,367,-367,369,367,-369,370,369,-369,371,369,-371,372,371,-371,373,371,-373,374,373,-373,375,373,-375,376,375,-375,377,375,-377,378,377,-377,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,414,416,-416,417,415,-417,418,420,-420,421,419,-421,422,424,-424,425,423,-425,424,426,-426,427,425,-427,428,430,-430,431,429,-431,431,430,-433,433,432,-431,434,436,-436,437,435,-437,436,438,-438,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,447,446,-449,449,448,-447,450,452,-452,453,451,-453,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,465,463,-465,465,464,-467,467,466,-465,468,470,-470,471,469,-471,471,470,-473,473,472,-471,474,476,-476,477,475,-477,478,480,-480,481,479,-481,482,484,-484,485,483,-485,486,488,-488,489,487,-489,490,492,-492,493,491,-493,492,494,-494,495,493,-495,496,498,-498,499,497,-499,500,502,-502,503,501,-503,504,506,-506,507,505,-507,508,510,-510,511,509,-511,512,514,-514,515,513,-515,516,518,-518,519,517,-519,520,522,-522,523,521,-523,524,526,-526,527,525,-527,528,530,-530,531,529,-531,532,534,-534,535,533,-535,534,536,-536,537,535,-537,538,540,-540,541,539,-541,541,542,-540,543,539,-543,544,546,-546,547,545,-547,548,550,-550,551,549,-551,552,554,-554,555,553,-555,555,556,-554,557,553,-557,558,560,-560,561,559,-561,562,564,-564,565,563,-565,566,568,-568,569,567,-569,570,572,-572,573,571,-573,574,576,-576,577,575,-577,576,578,-578,579,577,-579,580,582,-582,583,581,-583,584,586,-586,587,585,-587,588,590,-590,591,589,-591,592,594,-594,595,593,-595,596,598,-598,599,597,-599,600,602,-602,603,601,-603,604,606,-606,607,605,-607,608,610,-610,611,609,-611,612,614,-614,615,613,-615,616,618,-618,619,617,-619,620,622,-622,623,621,-623,624,626,-626,627,625,-627,626,628,-628,629,627,-629,630,632,-632,633,631,-633,634,636,-636,637,635,-637,638,640,-640,641,639,-641,642,644,-644,645,643,-645,646,648,-648,649,647,-649,650,652,-652,653,651,-653,652,654,-654,655,653,-655,656,658,-658,659,657,-659,660,659,-659,661,659,-661,662,661,-661,663,661,-663,664,663,-663,665,663,-665,666,665,-665,667,665,-667,668,667,-667,669,667,-669,669,668,-671,671,667,-670,672,670,-669,673,667,-672,674,670,-673,675,674,-673,676,675,-673,677,673,-672,678,673,-678,679,673,-679,680,676,-673,681,676,-681,682,681,-681,683,673,-680,684,683,-680,685,683,-685,686,682,-681,687,682,-687,688,687,-687,689,683,-686,690,689,-686,691,689,-691,692,688,-687,693,688,-693,694,693,-693,695,694,-693,696,694,-696,697,696,-696,698,696,-698,699,689,-692,700,699,-692,701,699,-701,702,699,-702,703,702,-702,704,702,-704,705,704,-704,706,698,-698,707,698,-707,708,707,-707,709,708,-707,710,708,-710,711,704,-706,712,711,-706,713,711,-713,714,711,-714,715,714,-714,716,710,-710,717,710,-717,718,717,-717,719,714,-716,720,719,-716,721,719,-721,722,718,-717,723,718,-723,724,723,-723,725,719,-722,726,725,-722,727,725,-727,728,724,-723,729,724,-729,730,729,-729,731,725,-728,732,731,-728,733,731,-733,734,730,-729,735,731,-734,736,730,-735,737,735,-734,738,736,-735,739,735,-738,740,738,-735,740,735,-740,734,735,-741,741,735,-735,742,735,-742,743,742,-742,744,742,-744,745,744,-744,746,744,-746,747,746,-746,748,746,-748,749,748,-748,750,748,-750,751,750,-750,752,754,-754,755,753,-755,755,754,-757,757,756,-755,758,760,-760,761,759,-761,761,760,-763,763,762,-761,764,766,-766,767,765,-767,767,766,-769,769,768,-767,770,772,-772,773,771,-773,774,776,-776,777,775,-777,778,780,-780,781,779,-781,781,780,-783,783,782,-781,784,786,-786,787,785,-787,786,788,-788,789,787,-789,790,792,-792,793,791,-793,793,792,-795,795,794,-793,796,798,-798,799,797,-799,798,800,-800,801,799,-801,802,804,-804,805,803,-805,806,808,-808,809,807,-809,810,812,-812,813,811,-813,814,816,-816,817,815,-817,816,818,-818,819,817,-819,820,822,-822,823,821,-823,823,822,-825,825,824,-823,826,828,-828,829,827,-829,830,832,-832,833,831,-833,832,834,-834,835,833,-835,836,838,-838,839,837,-839,840,842,-842,843,841,-843,844,846,-846,847,845,-847,848,850,-850,851,849,-851,852,854,-854,855,853,-855,856,858,-858,859,857,-859,860,862,-862,863,861,-863,864,866,-866,867,865,-867,868,870,-870,871,869,-871,872,874,-874,875,873,-875,876,878,-878,879,877,-879,880,882,-882,883,881,-883,884,886,-886,887,885,-887,888,890,-890,891,889,-891,892,894,-894,895,893,-895,896,898,-898,899,897,-899,900,902,-902,903,901,-903,904,906,-906,907,905,-907,908,910,-910,911,909,-911,912,914,-914,915,913,-915,916,918,-918,919,917,-919,920,922,-922,923,921,-923,924,926,-926,927,925,-927,928,930,-930,931,929,-931,932,934,-934,935,933,-935,936,938,-938,939,937,-939,940,942,-942,943,941,-943,944,946,-946,947,945,-947,948,950,-950,951,949,-951,952,954,-954,955,953,-955,956,958,-958,959,957,-959,959,960,-958,961,957,-961,962,964,-964,965,963,-965,966,968,-968,969,967,-969,970,972,-972,973,971,-973,973,974,-972,975,971,-975,976,978,-978,979,977,-979,978,980,-980,981,979,-981,982,984,-984,985,983,-985,984,986,-986,987,985,-987,988,990,-990,991,989,-991,990,992,-992,993,991,-993,994,996,-996,997,995,-997,998,1000,-1000,1001,999,-1001,1000,1002,-1002,1003,1001,-1003,1004,1006,-1006,1007,1005,-1007,1007,1008,-1006,1009,1005,-1009,1010,1012,-1012,1013,1011,-1013,1013,1012,-1015,1015,1014,-1013,1016,1018,-1018,1019,1017,-1019,1020,1022,-1022,1023,1021,-1023,1024,1026,-1026,1027,1025,-1027,1028,1030,-1030,1031,1029,-1031,1032,1034,-1034,1035,1033,-1035,1036,1038,-1038,1039,1037,-1039,1040,1042,-1042,1043,1041,-1043,1044,1046,-1046,1047,1045,-1047,1048,1050,-1050,1051,1049,-1051,1052,1054,-1054,1055,1053,-1055,1054,1056,-1056,1057,1055,-1057,1058,1060,-1060,1061,1059,-1061,1062,1064,-1064,1065,1063,-1065,1065,1066,-1064,1067,1063,-1067,1068,1070,-1070,1071,1069,-1071,1072,1074,-1074,1075,1073,-1075,1076,1078,-1078,1079,1077,-1079,1080,1082,-1082,1083,1081,-1083,1084,1086,-1086,1087,1085,-1087,1088,1090,-1090,1091,1089,-1091,1092,1094,-1094,1095,1093,-1095,1096,1098,-1098,1099,1097,-1099,1100,1102,-1102,1103,1101,-1103,1102,1104,-1104,1105,1103,-1105,1106,1108,-1108,1109,1107,-1109,1110,1112,-1112,1113,1111,-1113,1113,1114,-1112,1115,1111,-1115,1116,1118,-1118,1119,1117,-1119,1120,1122,-1122,1123,1121,-1123,1124,1126,-1126,1127,1125,-1127,1128,1130,-1130,1131,1129,-1131,1132,1134,-1134,1135,1133,-1135,1136,1138,-1138,1139,1137,-1139,1140,1142,-1142,1143,1141,-1143,1144,1146,-1146,1147,1145,-1147,1148,1150,-1150,1151,1149,-1151,1152,1154,-1154,1155,1153,-1155,1155,1154,-1157,1157,1156,-1155,1158,1160,-1160,1161,1159,-1161,1161,1160,-1163,1163,1162,-1161,1164,1166,-1166,1167,1165,-1167,1167,1166,-1169,1169,1168,-1167,1170,1172,-1172,1173,1171,-1173,1173,1172,-1175,1175,1174,-1173,1176,1178,-1178,1179,1177,-1179,1179,1178,-1181,1181,1180,-1179,1182,1184,-1184,1185,1183,-1185,1185,1184,-1187,1187,1186,-1185,1188,1190,-1190,1191,1189,-1191,1191,1190,-1193,1193,1192,-1191,1194,1196,-1196,1197,1195,-1197,1196,1198,-1198,1199,1197,-1199,1200,1202,-1202,1203,1201,-1203,1202,1204,-1204,1205,1203,-1205,1206,1208,-1208,1209,1207,-1209,1208,1210,-1210,1211,1209,-1211,1212,1214,-1214,1215,1213,-1215,1214,1216,-1216,1217,1215,-1217,1218,1220,-1220,1221,1219,-1221,1220,1222,-1222,1223,1221,-1223,1224,1226,-1226,1227,1225,-1227,1225,1227,-1229,1229,1228,-1228,1230,1232,-1232,1233,1231,-1233,1232,1234,-1234,1235,1233,-1235,1236,1238,-1238,1239,1237,-1239,1238,1240,-1240,1241,1239,-1241,1242,1244,-1244,1245,1243,-1245,1244,1246,-1246,1247,1245,-1247,1248,1250,-1250,1251,1249,-1251,1250,1252,-1252,1253,1251,-1253,1254,1256,-1256,1257,1255,-1257,1256,1258,-1258,1259,1257,-1259,1260,1262,-1262,1263,1261,-1263,1262,1264,-1264,1265,1263,-1265,1266,1268,-1268,1269,1267,-1269,1269,1270,-1268,1271,1267,-1271,1272,1274,-1274,1275,1273,-1275,1275,1276,-1274,1277,1273,-1277,1278,1280,-1280,1281,1279,-1281,1281,1282,-1280,1283,1279,-1283,1284,1286,-1286,1287,1285,-1287,1287,1288,-1286,1289,1285,-1289,1290,1292,-1292,1293,1291,-1293,1293,1294,-1292,1295,1291,-1295,1296,1298,-1298,1299,1297,-1299,1299,1300,-1298,1301,1297,-1301,1302,1304,-1304,1305,1303,-1305,1305,1306,-1304,1307,1303,-1307,1308,1310,-1310,1311,1309,-1311,1311,1312,-1310,1313,1309,-1313,1314,1316,-1316,1317,1315,-1317,1317,1318,-1316,1319,1315,-1319,1320,1322,-1322,1323,1321,-1323,1323,1324,-1322,1325,1321,-1325,1326,1328,-1328,1329,1327,-1329,1329,1330,-1328,1331,1327,-1331,1332,1334,-1334,1335,1333,-1335,1335,1336,-1334,1337,1333,-1337,1338,1340,-1340,1341,1339,-1341,1340,1342,-1342,1343,1341,-1343,1344,1346,-1346,1347,1345,-1347,1346,1348,-1348,1349,1347,-1349,1350,1352,-1352,1353,1351,-1353,1352,1354,-1354,1355,1353,-1355,1356,1358,-1358,1359,1357,-1359,1358,1360,-1360,1361,1359,-1361,1362,1364,-1364,1365,1363,-1365,1364,1366,-1366,1367,1365,-1367,1368,1370,-1370,1371,1369,-1371,1370,1372,-1372,1373,1371,-1373,1374,1376,-1376,1377,1375,-1377,1376,1378,-1378,1379,1377,-1379,1380,1382,-1382,1383,1381,-1383,1382,1384,-1384,1385,1383,-1385,1386,1388,-1388,1389,1387,-1389,1388,1390,-1390,1391,1389,-1391,1392,1394,-1394,1395,1393,-1395,1394,1396,-1396,1397,1395,-1397,1398,1400,-1400,1401,1399,-1401,1400,1402,-1402,1403,1401,-1403,1404,1406,-1406,1407,1405,-1407,1406,1408,-1408,1409,1407,-1409,1410,1412,-1412,1413,1411,-1413,1413,1412,-1415,1415,1414,-1413,1416,1418,-1418,1419,1417,-1419,1419,1418,-1421,1421,1420,-1419,1422,1424,-1424,1425,1423,-1425,1425,1424,-1427,1427,1426,-1425,1428,1430,-1430,1431,1429,-1431,1431,1430,-1433,1433,1432,-1431,1434,1436,-1436,1437,1435,-1437,1437,1436,-1439,1439,1438,-1437,1440,1442,-1442,1443,1441,-1443,1444,1446,-1446,1447,1445,-1447,1448,1450,-1450,1451,1449,-1451,1452,1454,-1454,1455,1453,-1455,1456,1458,-1458,1459,1457,-1459,1460,1462,-1462,1463,1461,-1463,1464,1466,-1466,1467,1465,-1467,1468,1470,-1470,1471,1469,-1471,1472,1474,-1474,1475,1473,-1475,1476,1478,-1478,1479,1477,-1479,1480,1482,-1482,1483,1481,-1483,1484,1486,-1486,1487,1485,-1487,1488,1490,-1490,1491,1489,-1491,1492,1494,-1494,1495,1493,-1495,1496,1498,-1498,1499,1497,-1499,1500,1502,-1502,1503,1501,-1503,1504,1506,-1506,1507,1505,-1507,1508,1510,-1510,1511,1509,-1511,1512,1514,-1514,1515,1513,-1515,1516,1518,-1518,1519,1517,-1519,1520,1522,-1522,1523,1521,-1523,1524,1526,-1526,1527,1525,-1527,1528,1530,-1530,1531,1529,-1531,1532,1534,-1534,1535,1533,-1535,1536,1538,-1538,1539,1537,-1539,1540,1542,-1542,1543,1541,-1543,1544,1546,-1546,1547,1545,-1547,1548,1550,-1550,1551,1549,-1551,1552,1554,-1554,1555,1553,-1555,1556,1558,-1558,1559,1557,-1559,1560,1562,-1562,1563,1561,-1563,1564,1566,-1566,1567,1565,-1567,1568,1570,-1570,1571,1569,-1571,1572,1574,-1574,1575,1573,-1575,1576,1578,-1578,1579,1577,-1579,1580,1582,-1582,1583,1581,-1583,1584,1586,-1586,1587,1585,-1587,1588,1590,-1590,1591,1589,-1591,1592,1594,-1594,1595,1593,-1595,1596,1598,-1598,1599,1597,-1599,1600,1602,-1602,1603,1601,-1603,1604,1606,-1606,1607,1605,-1607,1608,1610,-1610,1611,1609,-1611,1612,1614,-1614,1615,1613,-1615,1616,1618,-1618,1619,1617,-1619,1620,1622,-1622,1623,1621,-1623,1624,1626,-1626,1627,1625,-1627,1628,1630,-1630,1631,1629,-1631,1632,1634,-1634,1635,1633,-1635,1636,1633,-1636,1637,1636,-1636,1638,1636,-1638,1639,1638,-1638,1640,1638,-1640,1641,1640,-1640,1642,1640,-1642,1643,1642,-1642,1644,1642,-1644,1642,1644,-1646,1646,1644,-1644,1647,1646,-1644,1648,1647,-1644,1649,1645,-1645,1650,1645,-1650,1651,1645,-1651,1652,1648,-1644,1653,1648,-1653,1654,1653,-1653,1655,1645,-1652,1656,1655,-1652,1657,1655,-1657,1658,1654,-1653,1659,1654,-1659,1660,1659,-1659,1661,1660,-1659,1662,1660,-1662,1663,1655,-1658,1664,1663,-1658,1665,1663,-1665,1666,1663,-1666,1667,1666,-1666,1668,1662,-1662,1669,1662,-1669,1670,1669,-1669,1671,1670,-1669,1672,1670,-1672,1673,1666,-1668,1674,1673,-1668,1675,1673,-1675,1676,1673,-1676,1677,1676,-1676,1678,1672,-1672,1679,1672,-1679,1680,1679,-1679,1681,1680,-1679,1682,1680,-1682,1683,1682,-1682,1684,1682,-1684,1685,1676,-1678,1686,1685,-1678,1687,1685,-1687,1688,1685,-1688,1689,1688,-1688,1690,1688,-1690,1691,1690,-1690,1692,1684,-1684,1693,1684,-1693,1694,1693,-1693,1695,1694,-1693,1696,1694,-1696,1697,1690,-1692,1698,1697,-1692,1699,1697,-1699,1700,1697,-1700,1701,1700,-1700,1702,1696,-1696,1703,1696,-1703,1704,1703,-1703,1705,1700,-1702,1706,1705,-1702,1707,1705,-1707,1708,1704,-1703,1709,1704,-1709,1710,1709,-1709,1711,1705,-1708,1712,1711,-1708,1713,1711,-1713,1714,1710,-1709,1715,1711,-1714,1716,1710,-1715,1717,1715,-1714,1718,1715,-1718,1718,1716,-1715,1715,1718,-1715,1719,1715,-1715,1720,1719,-1715,1721,1719,-1721,1722,1721,-1721,1723,1721,-1723,1724,1723,-1723,1725,1723,-1725,1726,1725,-1725,1727,1725,-1727,1728,1730,-1730,1731,1729,-1731,1732,1734,-1734,1735,1733,-1735,1736,1738,-1738,1739,1737,-1739,1740,1742,-1742,1743,1741,-1743,1744,1746,-1746,1747,1745,-1747,1748,1750,-1750,1751,1749,-1751,1752,1754,-1754,1755,1753,-1755,1756,1758,-1758,1759,1757,-1759,1760,1762,-1762,1763,1761,-1763,1764,1766,-1766,1767,1765,-1767,1768,1770,-1770,1771,1769,-1771,1772,1774,-1774,1775,1773,-1775,1776,1778,-1778,1779,1777,-1779,1780,1782,-1782,1783,1781,-1783,1784,1786,-1786,1787,1785,-1787,1788,1790,-1790,1791,1789,-1791,1792,1794,-1794,1795,1793,-1795,1796,1798,-1798,1799,1797,-1799,1800,1802,-1802,1803,1801,-1803,1804,1806,-1806,1807,1805,-1807,1808,1810,-1810,1811,1809,-1811,1812,1814,-1814,1815,1813,-1815,1816,1818,-1818,1819,1817,-1819,1820,1822,-1822,1823,1821,-1823,1824,1826,-1826,1827,1825,-1827,1828,1830,-1830,1831,1829,-1831,1832,1834,-1834,1835,1833,-1835,1836,1838,-1838,1839,1837,-1839,1840,1842,-1842,1843,1841,-1843,1844,1846,-1846,1847,1845,-1847,1848,1850,-1850,1851,1849,-1851,1852,1854,-1854,1855,1853,-1855,1856,1858,-1858,1859,1857,-1859,1860,1862,-1862,1863,1861,-1863,1864,1866,-1866,1867,1865,-1867,1868,1870,-1870,1871,1869,-1871,1872,1874,-1874,1875,1873,-1875,1876,1878,-1878,1879,1877,-1879,1880,1882,-1882,1883,1881,-1883,1884,1886,-1886,1887,1885,-1887,1888,1890,-1890,1891,1889,-1891,1892,1894,-1894,1895,1893,-1895,1896,1898,-1898,1899,1897,-1899,1900,1902,-1902,1903,1901,-1903,1904,1906,-1906,1907,1905,-1907,1908,1910,-1910,1911,1909,-1911,1912,1914,-1914,1915,1913,-1915,1916,1918,-1918,1919,1917,-1919,1920,1922,-1922,1923,1921,-1923,1921,1923,-1925,1925,1924,-1924,1926,1928,-1928,1929,1927,-1929,1927,1929,-1931,1931,1930,-1930,1932,1934,-1934,1935,1933,-1935,1933,1935,-1937,1937,1936,-1936,1938,1940,-1940,1941,1939,-1941,1939,1941,-1943,1943,1942,-1942,1944,1946,-1946,1947,1945,-1947,1945,1947,-1949,1949,1948,-1948,1950,1952,-1952,1953,1951,-1953,1952,1954,-1954,1955,1953,-1955,1956,1958,-1958,1959,1957,-1959,1958,1960,-1960,1961,1959,-1961,1962,1964,-1964,1965,1963,-1965,1964,1966,-1966,1967,1965,-1967,1968,1970,-1970,1971,1969,-1971,1970,1972,-1972,1973,1971,-1973,1974,1976,-1976,1977,1975,-1977,1976,1978,-1978,1979,1977,-1979,1980,1982,-1982,1983,1981,-1983,1982,1984,-1984,1985,1983,-1985,1986,1988,-1988,1989,1987,-1989,1988,1990,-1990,1991,1989,-1991,1992,1994,-1994,1995,1993,-1995,1994,1996,-1996,1997,1995,-1997,1998,2000,-2000,2001,1999,-2001,2000,2002,-2002,2003,2001,-2003,2004,2006,-2006,2007,2005,-2007,2006,2008,-2008,2009,2007,-2009,2010,2012,-2012,2013,2011,-2013,2012,2014,-2014,2015,2013,-2015,2016,2018,-2018,2019,2017,-2019,2017,2019,-2021,2021,2020,-2020,2022,2024,-2024,2025,2023,-2025,2023,2025,-2027,2027,2026,-2026,2028,2030,-2030,2031,2029,-2031,2029,2031,-2033,2033,2032,-2032,2034,2036,-2036,2037,2035,-2037,2035,2037,-2039,2039,2038,-2038,2040,2042,-2042,2043,2041,-2043,2041,2043,-2045,2045,2044,-2044,2046,2048,-2048,2049,2047,-2049,2047,2049,-2051,2051,2050,-2050,2052,2054,-2054,2055,2053,-2055,2053,2055,-2057,2057,2056,-2056,2058,2060,-2060,2061,2059,-2061,2059,2061,-2063,2063,2062,-2062,2064,2066,-2066,2067,2065,-2067,2065,2067,-2069,2069,2068,-2068,2070,2072,-2072,2073,2071,-2073,2071,2073,-2075,2075,2074,-2074,2076,2078,-2078,2079,2077,-2079,2077,2079,-2081,2081,2080,-2080,2082,2084,-2084,2085,2083,-2085,2083,2085,-2087,2087,2086,-2086,2088,2090,-2090,2091,2089,-2091,2089,2091,-2093,2093,2092,-2092,2094,2096,-2096,2097,2095,-2097,2096,2098,-2098,2099,2097,-2099,2100,2102,-2102,2103,2101,-2103,2102,2104,-2104,2105,2103,-2105,2106,2108,-2108,2109,2107,-2109,2108,2110,-2110,2111,2109,-2111,2112,2114,-2114,2115,2113,-2115,2114,2116,-2116,2117,2115,-2117,2118,2120,-2120,2121,2119,-2121,2120,2122,-2122,2123,2121,-2123,2124,2126,-2126,2127,2125,-2127,2126,2128,-2128,2129,2127,-2129,2130,2132,-2132,2133,2131,-2133,2132,2134,-2134,2135,2133,-2135,2136,2138,-2138,2139,2137,-2139,2138,2140,-2140,2141,2139,-2141,2142,2144,-2144,2145,2143,-2145,2144,2146,-2146,2147,2145,-2147,2148,2150,-2150,2151,2149,-2151,2150,2152,-2152,2153,2151,-2153,2154,2156,-2156,2157,2155,-2157,2156,2158,-2158,2159,2157,-2159,2160,2162,-2162,2163,2161,-2163,2162,2164,-2164,2165,2163,-2165,2166,2168,-2168,2169,2167,-2169,2167,2169,-2171,2171,2170,-2170,2172,2174,-2174,2175,2173,-2175,2173,2175,-2177,2177,2176,-2176,2178,2180,-2180,2181,2179,-2181,2179,2181,-2183,2183,2182,-2182,2184,2186,-2186,2187,2185,-2187,2185,2187,-2189,2189,2188,-2188,2190,2192,-2192,2193,2191,-2193,2191,2193,-2195,2195,2194,-2194,2196,2198,-2198,2199,2197,-2199,2197,2199,-2201,2201,2200,-2200,2202,2204,-2204,2205,2203,-2205,2203,2205,-2207,2207,2206,-2206,2208,2210,-2210,2211,2209,-2211,2212,2209,-2212,2213,2212,-2212,2214,2212,-2214,2215,2214,-2214,2216,2214,-2216,2217,2216,-2216,2218,2216,-2218,2219,2218,-2218,2220,2218,-2220,2221,2220,-2220,2222,2220,-2222,2223,2222,-2222,2224,2222,-2224,2225,2224,-2224,2226,2224,-2226,2227,2226,-2226,2228,2226,-2228,2229,2228,-2228,2230,2228,-2230,2231,2230,-2230,2232,2230,-2232,2233,2232,-2232,2234,2233,-2232,2235,2233,-2235,2236,2235,-2235,2237,2235,-2237,2238,2237,-2237,2239,2237,-2239,2240,2239,-2239,2241,2239,-2241,2242,2241,-2241,2243,2241,-2243,2244,2243,-2243,2245,2243,-2245,2246,2245,-2245,2247,2245,-2247,2248,2247,-2247,2249,2247,-2249,2250,2249,-2249,2251,2249,-2251,2252,2251,-2251,2253,2251,-2253,2254,2253,-2253,2255,2253,-2255,2256,2258,-2258,2259,2257,-2259,2260,2262,-2262,2263,2261,-2263,2264,2266,-2266,2267,2265,-2267,2268,2270,-2270,2271,2269,-2271,2272,2274,-2274,2275,2273,-2275,2276,2273,-2276,2277,2276,-2276,188,2276,-2278,2276,188,-2279,190,188,-2278,189,2278,-189,2279,190,-2278,191,190,-2280,193,191,-2280,2280,2278,-190,192,2280,-190,194,2280,-193,2281,193,-2280,195,193,-2282,197,195,-2282,2282,197,-2282,202,197,-2283,2283,202,-2283,208,202,-2284,2284,208,-2284,214,208,-2285,2285,214,-2285,217,214,-2286,2286,217,-2286,224,217,-2287,2287,224,-2287,227,224,-2288,2288,227,-2288,229,227,-2289,2289,229,-2289,238,229,-2290,241,238,-2290,2290,241,-2290,248,241,-2291,2291,248,-2291,251,248,-2292,2292,251,-2292,258,251,-2293,2293,258,-2293,264,258,-2294,2294,264,-2294,270,264,-2295,2295,270,-2295,276,270,-2296,2296,276,-2296,278,276,-2297,280,278,-2297,2297,280,-2297,282,280,-2298,283,282,-2298,2298,283,-2298,2299,283,-2299,2300,2299,-2299,2301,2300,-2299,2302,2300,-2302,2299,2303,-284,283,2303,-282,281,2303,-280,2303,2304,-280,279,2304,-278,277,2304,-276,2304,2305,-276,275,2305,-272,2305,2306,-272,271,2306,-268,2306,2307,-268,267,2307,-262,2307,2308,-262,261,2308,-257,2308,2309,-257,256,2309,-254,2309,2310,-254,253,2310,-247,2310,2311,-247,246,2311,-244,243,2311,-237,2311,2312,-237,236,2312,-235,2312,2313,-235,234,2313,-232,2313,2314,-232,231,2314,-223,2314,2315,-223,222,2315,-220,2315,2316,-220,219,2316,-212,2316,2317,-212,211,2317,-206,2317,2318,-206,205,2318,-199,2318,2319,-199,198,2319,-197,196,2319,-195,2319,2280,-195,2320,2322,-2322,2323,2321,-2323,2324,2326,-2326,2327,2325,-2327,2328,2330,-2330,2331,2329,-2331,2332,2334,-2334,2335,2333,-2335,2336,2338,-2338,2339,2337,-2339,2340,2342,-2342,2343,2341,-2343,2344,2346,-2346,2347,2345,-2347,2348,2350,-2350,2351,2349,-2351,2352,2354,-2354,2355,2353,-2355,2356,2358,-2358,2359,2357,-2359,2360,2362,-2362,2363,2361,-2363,2364,2366,-2366,2367,2365,-2367,2368,2370,-2370,2371,2369,-2371,2372,2374,-2374,2375,2373,-2375,2376,2378,-2378,2379,2377,-2379,2380,2382,-2382,2383,2381,-2383,2384,2386,-2386,2387,2385,-2387,2388,2390,-2390,2391,2389,-2391,2392,2394,-2394,2395,2393,-2395,2396,2398,-2398,2399,2397,-2399,2400,2402,-2402,2403,2401,-2403,2404,2406,-2406,2407,2405,-2407,2408,2410,-2410,2411,2409,-2411,2412,2414,-2414,2415,2413,-2415,2416,2418,-2418,2419,2417,-2419,2420,2417,-2420,2417,2420,-2422,2422,2420,-2420,2423,2421,-2421,2424,2422,-2420,2425,2422,-2425,2426,2425,-2425,2427,2426,-2425,2428,2426,-2428,2429,2428,-2428,2430,2428,-2430,2431,2430,-2430,2432,2430,-2432,2433,2432,-2432,2434,2432,-2434,2435,2434,-2434,2436,2434,-2436,2437,2436,-2436,2438,2436,-2438,2439,2438,-2438,2440,2438,-2440,2441,2440,-2440,2442,2440,-2442,2443,2442,-2442,2444,2442,-2444,2445,2444,-2444,2446,2444,-2446,2447,2446,-2446,2448,2447,-2446,2449,2447,-2449,2450,2449,-2449,2451,2449,-2451,2452,2451,-2451,2453,2451,-2453,2454,2453,-2453,2455,2453,-2455,2456,2455,-2455,2457,2455,-2457,2458,2457,-2457,2459,2457,-2459,2460,2459,-2459,2461,2459,-2461,2462,2461,-2461,2463,2461,-2463,2464,2463,-2463,2465,2463,-2465,2466,2465,-2465,2467,2466,-2465,2468,2466,-2468,2469,2468,-2468,2468,2470,-2467,2466,2470,-2472,2471,2470,-2473,2470,2473,-2473,2472,2473,-2475,2473,2475,-2475,2474,2475,-2477,2475,2477,-2477,2476,2477,-2479,2477,2479,-2479,2478,2479,-2481,2479,2481,-2481,2480,2481,-2483,2481,2483,-2483,2482,2483,-2485,2483,2485,-2485,2484,2485,-2487,2485,2487,-2487,2486,2487,-2489,2487,2489,-2489,2488,2489,-2491,2490,2489,-2492,2489,2492,-2492,2491,2492,-2494,2492,2494,-2494,2493,2494,-2496,2494,2496,-2496,2495,2496,-2498,2496,2498,-2498,2497,2498,-2500,2498,2500,-2500,2499,2500,-2502,2500,2502,-2502,2501,2502,-2504,2502,2504,-2504,2503,2504,-2506,2504,2506,-2506,2505,2506,-2508,2506,2508,-2508,2507,2508,-2510,2508,2510,-2510,2509,2510,-2512,2511,2510,-2424,2510,2421,-2424,2512,2514,-2514,2515,2513,-2515,2516,2518,-2518,2519,2517,-2519,2520,2522,-2522,2523,2521,-2523,2524,2526,-2526,2527,2525,-2527,2528,2530,-2530,2531,2529,-2531,2532,2534,-2534,2535,2533,-2535,2536,2538,-2538,2539,2537,-2539,2540,2542,-2542,2543,2541,-2543,2544,2546,-2546,2547,2545,-2547,2548,2550,-2550,2551,2549,-2551,2552,2554,-2554,2555,2553,-2555,2556,2558,-2558,2559,2557,-2559,2560,2562,-2562,2563,2561,-2563,2564,2566,-2566,2567,2565,-2567,2568,2570,-2570,2571,2569,-2571,2572,2574,-2574,2575,2573,-2575,2576,2578,-2578,2579,2577,-2579,2580,2582,-2582,2583,2581,-2583,2584,2586,-2586,2587,2585,-2587,2588,2590,-2590,2591,2589,-2591,2592,2594,-2594,2595,2593,-2595,2596,2593,-2596,2597,2596,-2596,2598,2596,-2598,2599,2598,-2598,2600,2598,-2600,2601,2600,-2600,2602,2600,-2602,2603,2602,-2602,2604,2602,-2604,2605,2604,-2604,2606,2604,-2606,2607,2606,-2606,2608,2606,-2608,2609,2608,-2608,2610,2608,-2610,2611,2610,-2610,2612,2610,-2612,2613,2612,-2612,2614,2612,-2614,2615,2614,-2614,2616,2614,-2616,2617,2616,-2616,2618,2617,-2616,2619,2617,-2619,2620,2619,-2619,2621,2619,-2621,2622,2621,-2621,2623,2621,-2623,2624,2623,-2623,2625,2623,-2625,2626,2625,-2625,2627,2625,-2627,2628,2627,-2627,2629,2627,-2629,2630,2629,-2629,2631,2629,-2631,2632,2631,-2631,2633,2631,-2633,2634,2633,-2633,2635,2633,-2635,2636,2635,-2635,2637,2635,-2637,2638,2637,-2637,2639,2637,-2639,2640,2642,-2642,2643,2641,-2643,2644,2641,-2644,2645,2644,-2644,2646,2644,-2646,2647,2646,-2646,2648,2646,-2648,2649,2648,-2648,2650,2648,-2650,2651,2650,-2650,2652,2650,-2652,2653,2652,-2652,2654,2652,-2654,2655,2654,-2654,2656,2654,-2656,2657,2656,-2656,2657,2655,-2659,2659,2656,-2658,2660,2658,-2656,2661,2656,-2660,2662,2658,-2661,2663,2661,-2660,2664,2662,-2661,2665,2661,-2664,2666,2664,-2661,2667,2666,-2661,2668,2667,-2661,2669,2661,-2666,2670,2661,-2670,2671,2661,-2671,2672,2668,-2661,2673,2668,-2673,2674,2673,-2673,2675,2661,-2672,2676,2675,-2672,2677,2675,-2677,2678,2674,-2673,2679,2674,-2679,2680,2679,-2679,2681,2675,-2678,2682,2681,-2678,2683,2681,-2683,2684,2680,-2679,2685,2681,-2684,2686,2680,-2685,2687,2686,-2685,2688,2687,-2685,2689,2685,-2684,2690,2685,-2690,2691,2685,-2691,2692,2688,-2685,2693,2688,-2693,2694,2693,-2693,2695,2685,-2692,2696,2695,-2692,2697,2695,-2697,2698,2694,-2693,2699,2694,-2699,2700,2699,-2699,2701,2695,-2698,2702,2701,-2698,2703,2701,-2703,2704,2700,-2699,2705,2700,-2705,2706,2705,-2705,2707,2706,-2705,2708,2701,-2704,2709,2708,-2704,2710,2708,-2710,2711,2706,-2708,2712,2708,-2711,2713,2711,-2708,2714,2712,-2711,2715,2713,-2708,2716,2712,-2715,2717,2715,-2708,2718,2712,-2717,2719,2712,-2719,2720,2712,-2720,2720,2717,-2708,2721,2712,-2721,2707,2721,-2721,2722,2721,-2708,2723,2721,-2723,2724,2723,-2723,2725,2723,-2725,2726,2725,-2725,2727,2725,-2727,2728,2727,-2727,2729,2727,-2729,2730,2729,-2729,2731,2729,-2731,2732,2731,-2731,2733,2731,-2733,2734,2733,-2733,2735,2733,-2735 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *17244 { + a: -0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,0.6303798,-0.7310552,0.2611119,0.5909049,-0.7310552,0.3411591,0.6303798,-0.7310552,0.2611119,0.5909049,-0.7310552,0.3411591,0.6303798,-0.7310552,0.2611119,0.5909049,-0.7310552,0.3411591,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,0.5413195,-0.7310553,0.4153691,0.4824718,-0.7310552,0.4824719,0.5413195,-0.7310553,0.4153691,0.4824718,-0.7310552,0.4824719,0.5413195,-0.7310553,0.4153691,0.4824718,-0.7310552,0.4824719,0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9659258,0,-0.2588191,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,0.415369,-0.7310552,0.5413194,0.3411591,-0.7310552,0.5909049,0.415369,-0.7310552,0.5413194,0.3411591,-0.7310552,0.5909049,0.415369,-0.7310552,0.5413194,0.3411591,-0.7310552,0.5909049,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,0.1765969,-0.7310552,0.6590688,0.08906039,-0.7310552,0.6764809,0.1765969,-0.7310552,0.6590688,0.08906039,-0.7310552,0.6764809,0.1765969,-0.7310552,0.6590688,0.08906039,-0.7310552,0.6764809,0.5909049,-0.7310552,0.3411591,0.5413195,-0.7310553,0.4153691,0.5909049,-0.7310552,0.3411591,0.5413195,-0.7310553,0.4153691,0.5909049,-0.7310552,0.3411591,0.5413195,-0.7310553,0.4153691,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9914449,0,-0.1305262,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9659258,0,-0.2588191,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,0.4824718,-0.7310552,0.4824719,0.415369,-0.7310552,0.5413194,0.4824718,-0.7310552,0.4824719,0.415369,-0.7310552,0.5413194,0.4824718,-0.7310552,0.4824719,0.415369,-0.7310552,0.5413194,0.3411591,-0.7310552,0.5909049,0.2611119,-0.7310553,0.6303799,0.3411591,-0.7310552,0.5909049,0.2611119,-0.7310553,0.6303799,0.3411591,-0.7310552,0.5909049,0.2611119,-0.7310553,0.6303799,0.2611119,-0.7310553,0.6303799,0.1765969,-0.7310552,0.6590688,0.2611119,-0.7310553,0.6303799,0.1765969,-0.7310552,0.6590688,0.2611119,-0.7310553,0.6303799,0.1765969,-0.7310552,0.6590688,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.6764809,-0.7310552,0.0890604,0.6590688,-0.7310552,0.176597,0.6764809,-0.7310552,0.0890604,0.6590688,-0.7310552,0.176597,0.6764809,-0.7310552,0.0890604,0.6590688,-0.7310552,0.176597,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,0.6823182,-0.7310552,0,0.6764809,-0.7310552,0.0890604,0.6823182,-0.7310552,0,0.6764809,-0.7310552,0.0890604,0.6823182,-0.7310552,0,0.6764809,-0.7310552,0.0890604,0.6590688,-0.7310552,0.176597,0.6303798,-0.7310552,0.2611119,0.6590688,-0.7310552,0.176597,0.6303798,-0.7310552,0.2611119,0.6590688,-0.7310552,0.176597,0.6303798,-0.7310552,0.2611119,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,-0.3411591,-0.7310552,0.5909049,-0.3411591,-0.7310552,0.5909049,-0.415369,-0.7310552,0.5413194,-0.415369,-0.7310552,0.5413194,-0.415369,-0.7310552,0.5413194,-0.3411591,-0.7310552,0.5909049,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,-0.6303798,-0.7310552,0.2611119,-0.6303798,-0.7310552,0.2611119,-0.6590688,-0.7310552,0.176597,-0.6590688,-0.7310552,0.176597,-0.6590688,-0.7310552,0.176597,-0.6303798,-0.7310552,0.2611119,0,0,-1,0,0,-1,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0,0,-1,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,-0.6590688,-0.7310552,0.176597,-0.6590688,-0.7310552,0.176597,-0.6764809,-0.7310552,0.0890604,-0.6764809,-0.7310552,0.0890604,-0.6764809,-0.7310552,0.0890604,-0.6590688,-0.7310552,0.176597,0.9659258,0,-0.2588191,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,-0.4824718,-0.7310552,0.4824719,-0.4824718,-0.7310552,0.4824719,-0.5413195,-0.7310553,0.4153691,-0.5413195,-0.7310553,0.4153691,-0.5413195,-0.7310553,0.4153691,-0.4824718,-0.7310552,0.4824719,-0.6764809,-0.7310552,0.0890604,-0.6764809,-0.7310552,0.0890604,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6764809,-0.7310552,0.0890604,-0.5909049,-0.7310552,0.3411591,-0.5909049,-0.7310552,0.3411591,-0.6303798,-0.7310552,0.2611119,-0.6303798,-0.7310552,0.2611119,-0.6303798,-0.7310552,0.2611119,-0.5909049,-0.7310552,0.3411591,0.8660254,0,-0.5,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,-0.415369,-0.7310552,0.5413194,-0.415369,-0.7310552,0.5413194,-0.4824718,-0.7310552,0.4824719,-0.4824718,-0.7310552,0.4824719,-0.4824718,-0.7310552,0.4824719,-0.415369,-0.7310552,0.5413194,-0.5413195,-0.7310553,0.4153691,-0.5413195,-0.7310553,0.4153691,-0.5909049,-0.7310552,0.3411591,-0.5909049,-0.7310552,0.3411591,-0.5909049,-0.7310552,0.3411591,-0.5413195,-0.7310553,0.4153691,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.2611119,-0.7310553,0.6303799,-0.2611119,-0.7310553,0.6303799,-0.3411591,-0.7310552,0.5909049,-0.3411591,-0.7310552,0.5909049,-0.3411591,-0.7310552,0.5909049,-0.2611119,-0.7310553,0.6303799,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.1765969,-0.7310552,0.6590688,-0.1765969,-0.7310552,0.6590688,-0.2611119,-0.7310553,0.6303799,-0.2611119,-0.7310553,0.6303799,-0.2611119,-0.7310553,0.6303799,-0.1765969,-0.7310552,0.6590688,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9659258,0,-0.2588191,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,1,0,0,1,0,0,1,0,0,0.9914449,0,-0.1305262,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,0,-0.7310552,0.6823182,-0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,-0.08906039,-0.7310552,0.6764809,0,-0.7310552,0.6823182,-0.08906039,-0.7310552,0.6764809,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.08906039,-0.7310552,0.6764809,-0.08906039,-0.7310552,0.6764809,-0.1765969,-0.7310552,0.6590688,-0.1765969,-0.7310552,0.6590688,-0.1765969,-0.7310552,0.6590688,-0.08906039,-0.7310552,0.6764809,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,0.6590688,-0.7310552,-0.1765969,0.6590688,-0.7310552,-0.1765969,0.6303798,-0.7310552,-0.2611119,0.6303798,-0.7310552,-0.2611119,0.6303798,-0.7310552,-0.2611119,0.6590688,-0.7310552,-0.1765969,0.5909049,-0.7310552,-0.3411591,0.5909049,-0.7310552,-0.3411591,0.5413195,-0.7310552,-0.415369,0.5413195,-0.7310552,-0.415369,0.5413195,-0.7310552,-0.415369,0.5909049,-0.7310552,-0.3411591,0.6764809,-0.7310552,-0.0890604,0.6764809,-0.7310552,-0.0890604,0.6590688,-0.7310552,-0.1765969,0.6590688,-0.7310552,-0.1765969,0.6590688,-0.7310552,-0.1765969,0.6764809,-0.7310552,-0.0890604,0.415369,-0.7310552,-0.5413194,0.415369,-0.7310552,-0.5413194,0.3411591,-0.7310552,-0.5909049,0.3411591,-0.7310552,-0.5909049,0.3411591,-0.7310552,-0.5909049,0.415369,-0.7310552,-0.5413194,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6764809,-0.7310552,-0.0890604,0.6764809,-0.7310552,-0.0890604,0.6764809,-0.7310552,-0.0890604,0.6823182,-0.7310552,0,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,0.5413195,-0.7310552,-0.415369,0.5413195,-0.7310552,-0.415369,0.4824718,-0.7310552,-0.4824718,0.4824718,-0.7310552,-0.4824718,0.4824718,-0.7310552,-0.4824718,0.5413195,-0.7310552,-0.415369,0.4824718,-0.7310552,-0.4824718,0.4824718,-0.7310552,-0.4824718,0.415369,-0.7310552,-0.5413194,0.415369,-0.7310552,-0.5413194,0.415369,-0.7310552,-0.5413194,0.4824718,-0.7310552,-0.4824718,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-1,0,0,-1,0,0,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.3411591,-0.7310552,-0.5909049,0.3411591,-0.7310552,-0.5909049,0.2611119,-0.7310553,-0.6303799,0.2611119,-0.7310553,-0.6303799,0.2611119,-0.7310553,-0.6303799,0.3411591,-0.7310552,-0.5909049,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,0.6303798,-0.7310552,-0.2611119,0.6303798,-0.7310552,-0.2611119,0.5909049,-0.7310552,-0.3411591,0.5909049,-0.7310552,-0.3411591,0.5909049,-0.7310552,-0.3411591,0.6303798,-0.7310552,-0.2611119,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.2611119,-0.7310553,-0.6303799,0.2611119,-0.7310553,-0.6303799,0.1765969,-0.7310552,-0.6590688,0.1765969,-0.7310552,-0.6590688,0.1765969,-0.7310552,-0.6590688,0.2611119,-0.7310553,-0.6303799,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.08906039,-0.7310552,-0.6764809,0.08906039,-0.7310552,-0.6764809,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0.08906039,-0.7310552,-0.6764809,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1765969,-0.7310552,-0.6590688,0.1765969,-0.7310552,-0.6590688,0.08906039,-0.7310552,-0.6764809,0.08906039,-0.7310552,-0.6764809,0.08906039,-0.7310552,-0.6764809,0.1765969,-0.7310552,-0.6590688,-0.415369,-0.7310552,-0.5413194,-0.4824718,-0.7310552,-0.4824718,-0.415369,-0.7310552,-0.5413194,-0.4824718,-0.7310552,-0.4824718,-0.415369,-0.7310552,-0.5413194,-0.4824718,-0.7310552,-0.4824718,-0.2611119,-0.7310553,-0.6303799,-0.3411591,-0.7310552,-0.5909049,-0.2611119,-0.7310553,-0.6303799,-0.3411591,-0.7310552,-0.5909049,-0.2611119,-0.7310553,-0.6303799,-0.3411591,-0.7310552,-0.5909049,-0.4824718,-0.7310552,-0.4824718,-0.5413195,-0.7310552,-0.415369,-0.4824718,-0.7310552,-0.4824718,-0.5413195,-0.7310552,-0.415369,-0.4824718,-0.7310552,-0.4824718,-0.5413195,-0.7310552,-0.415369,-0.3411591,-0.7310552,-0.5909049,-0.415369,-0.7310552,-0.5413194,-0.3411591,-0.7310552,-0.5909049,-0.415369,-0.7310552,-0.5413194,-0.3411591,-0.7310552,-0.5909049,-0.415369,-0.7310552,-0.5413194,-0.0890604,-0.7310552,-0.6764809,-0.1765969,-0.7310552,-0.6590688,-0.0890604,-0.7310552,-0.6764809,-0.1765969,-0.7310552,-0.6590688,-0.0890604,-0.7310552,-0.6764809,-0.1765969,-0.7310552,-0.6590688,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9914449,0,0.1305262,-0.5413195,-0.7310552,-0.415369,-0.5909049,-0.7310552,-0.3411591,-0.5413195,-0.7310552,-0.415369,-0.5909049,-0.7310552,-0.3411591,-0.5413195,-0.7310552,-0.415369,-0.5909049,-0.7310552,-0.3411591,-0.1765969,-0.7310552,-0.6590688,-0.2611119,-0.7310553,-0.6303799,-0.1765969,-0.7310552,-0.6590688,-0.2611119,-0.7310553,-0.6303799,-0.1765969,-0.7310552,-0.6590688,-0.2611119,-0.7310553,-0.6303799,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,-0.0890604,-0.7310552,-0.6764809,-0.0890604,-0.7310552,-0.6764809,-0.0890604,-0.7310552,-0.6764809,0,-0.7310552,-0.6823182,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,1,0,0,1,0,0,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1305262,1,0,0,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.6303798,-0.7310552,-0.2611119,-0.6590688,-0.7310552,-0.1765969,-0.6303798,-0.7310552,-0.2611119,-0.6590688,-0.7310552,-0.1765969,-0.6303798,-0.7310552,-0.2611119,-0.6590688,-0.7310552,-0.1765969,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9659258,0,0.258819,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.9238795,0,0.3826834,-0.5909049,-0.7310552,-0.3411591,-0.6303798,-0.7310552,-0.2611119,-0.5909049,-0.7310552,-0.3411591,-0.6303798,-0.7310552,-0.2611119,-0.5909049,-0.7310552,-0.3411591,-0.6303798,-0.7310552,-0.2611119,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.6590688,-0.7310552,-0.1765969,-0.6764809,-0.7310552,-0.0890604,-0.6590688,-0.7310552,-0.1765969,-0.6764809,-0.7310552,-0.0890604,-0.6590688,-0.7310552,-0.1765969,-0.6764809,-0.7310552,-0.0890604,-0.6764809,-0.7310552,-0.0890604,-0.6823182,-0.7310552,0,-0.6764809,-0.7310552,-0.0890604,-0.6823182,-0.7310552,0,-0.6764809,-0.7310552,-0.0890604,-0.6823182,-0.7310552,0,0.9772336,-0.1687074,0.1286553,0.9914449,0,0.1305262,0.9856662,-0.1687074,0,1,0,0,0.9856662,-0.1687074,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,0.9856662,-0.1687074,0,1,0,0,0.9772336,-0.1687074,-0.1286553,0.9914449,0,-0.1305262,0.9772336,-0.1687074,-0.1286553,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9772336,-0.1687074,-0.1286553,0.9914449,0,-0.1305262,0.9520804,-0.1687074,-0.2551092,0.9659258,0,-0.258819,0.9520804,-0.1687074,-0.2551092,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9520804,-0.1687074,-0.2551092,0.9659258,0,-0.258819,0.9106368,-0.1687074,-0.3771982,0.9238795,0,-0.3826834,0.9106368,-0.1687074,-0.3771982,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9106368,-0.1687074,-0.3771982,0.9238795,0,-0.3826834,0.853612,-0.1687074,-0.4928331,0.8660254,0,-0.5,0.853612,-0.1687074,-0.4928331,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.853612,-0.1687074,-0.4928331,0.8660254,0,-0.5,0.7819816,-0.1687074,-0.6000356,0.7933533,0,-0.6087614,0.7819816,-0.1687074,-0.6000356,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7819816,-0.1687074,-0.6000356,0.7933533,0,-0.6087614,0.6969712,-0.1687074,-0.6969712,0.7071068,0,-0.7071068,0.6969712,-0.1687074,-0.6969712,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.6969712,-0.1687074,-0.6969712,0.7071068,0,-0.7071068,0.6000356,-0.1687074,-0.7819816,0.6087614,0,-0.7933533,0.6000356,-0.1687074,-0.7819816,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6000356,-0.1687074,-0.7819816,0.6087614,0,-0.7933533,0.4928331,-0.1687074,-0.853612,0.5,0,-0.8660254,0.4928331,-0.1687074,-0.853612,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.4928331,-0.1687074,-0.853612,0.5,0,-0.8660254,0.3771982,-0.1687074,-0.9106368,0.3826834,0,-0.9238795,0.3771982,-0.1687074,-0.9106368,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3771982,-0.1687074,-0.9106368,0.3826834,0,-0.9238795,0.2551092,-0.1687074,-0.9520804,0.258819,0,-0.9659258,0.2551092,-0.1687074,-0.9520804,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.2551092,-0.1687074,-0.9520804,0.258819,0,-0.9659258,0.1286552,-0.1687074,-0.9772336,0.1305262,0,-0.9914449,0.1286552,-0.1687074,-0.9772336,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0,-0.1687074,-0.9856662,0.1286552,-0.1687074,-0.9772336,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.1286552,-0.1687074,-0.9772336,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,-0.1687074,-0.9856662,0,0,-1,-0.1286553,-0.1687074,-0.9772336,-0.1305262,0,-0.9914449,-0.1286553,-0.1687074,-0.9772336,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,-0.1286553,-0.1687074,-0.9772336,-0.1305262,0,-0.9914449,-0.2551092,-0.1687074,-0.9520804,-0.258819,0,-0.9659258,-0.2551092,-0.1687074,-0.9520804,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.2551092,-0.1687074,-0.9520804,-0.258819,0,-0.9659258,-0.3771982,-0.1687074,-0.9106368,-0.3826834,0,-0.9238795,-0.3771982,-0.1687074,-0.9106368,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.3771982,-0.1687074,-0.9106368,-0.3826834,0,-0.9238795,-0.4928331,-0.1687074,-0.853612,-0.5,0,-0.8660254,-0.4928331,-0.1687074,-0.853612,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.4928331,-0.1687074,-0.853612,-0.5,0,-0.8660254,-0.6000356,-0.1687074,-0.7819816,-0.6087614,0,-0.7933533,-0.6000356,-0.1687074,-0.7819816,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.6000356,-0.1687074,-0.7819816,-0.6087614,0,-0.7933533,-0.6969712,-0.1687074,-0.6969712,-0.7071068,0,-0.7071068,-0.6969712,-0.1687074,-0.6969712,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.7819816,-0.1687074,-0.6000356,-0.6969712,-0.1687074,-0.6969712,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.6969712,-0.1687074,-0.6969712,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.853612,-0.1687074,-0.4928331,-0.7819816,-0.1687074,-0.6000356,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7819816,-0.1687074,-0.6000356,-0.7933533,0,-0.6087614,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.9106368,-0.1687074,-0.3771982,-0.853612,-0.1687074,-0.4928331,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.853612,-0.1687074,-0.4928331,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9520804,-0.1687074,-0.2551092,-0.9106368,-0.1687074,-0.3771982,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9106368,-0.1687074,-0.3771982,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9772336,-0.1687074,-0.1286553,-0.9520804,-0.1687074,-0.2551092,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9520804,-0.1687074,-0.2551092,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9914449,0,-0.1305262,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9856662,-0.1687074,0,-0.9772336,-0.1687074,-0.1286553,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9772336,-0.1687074,-0.1286553,-0.9914449,0,-0.1305262,-0.9914449,0,-0.1305262,-1,0,0,-1,0,0,-1,0,0,-0.9914449,0,-0.1305262,-0.9772336,-0.1687074,0.1286553,-0.9856662,-0.1687074,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.9856662,-0.1687074,0,-1,0,0,-1,0,0,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-1,0,0,-0.9520804,-0.1687074,0.2551092,-0.9772336,-0.1687074,0.1286553,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9772336,-0.1687074,0.1286553,-0.9914449,0,0.1305262,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9659258,0,0.2588191,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9106368,-0.1687074,0.3771982,-0.9520804,-0.1687074,0.2551092,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9520804,-0.1687074,0.2551092,-0.9659258,0,0.2588191,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.853612,-0.1687074,0.4928331,-0.9106368,-0.1687074,0.3771982,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9106368,-0.1687074,0.3771982,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.7819816,-0.1687074,0.6000356,-0.853612,-0.1687074,0.4928331,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.853612,-0.1687074,0.4928331,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.6969712,-0.1687074,0.6969712,-0.7819816,-0.1687074,0.6000356,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7819816,-0.1687074,0.6000356,-0.7933533,0,0.6087614,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.6969712,-0.1687074,0.6969712,-0.7071068,0,0.7071068,-0.6000355,-0.1687074,0.7819816,-0.6087614,0,0.7933533,-0.6000355,-0.1687074,0.7819816,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6000355,-0.1687074,0.7819816,-0.6087614,0,0.7933533,-0.4928331,-0.1687074,0.853612,-0.5,0,0.8660254,-0.4928331,-0.1687074,0.853612,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.4928331,-0.1687074,0.853612,-0.5,0,0.8660254,-0.3771981,-0.1687074,0.9106368,-0.3826834,0,0.9238795,-0.3771981,-0.1687074,0.9106368,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3771981,-0.1687074,0.9106368,-0.3826834,0,0.9238795,-0.2551091,-0.1687074,0.9520804,-0.258819,0,0.9659258,-0.2551091,-0.1687074,0.9520804,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.2551091,-0.1687074,0.9520804,-0.258819,0,0.9659258,-0.1286552,-0.1687074,0.9772336,-0.1305262,0,0.9914449,-0.1286552,-0.1687074,0.9772336,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1286552,-0.1687074,0.9772336,-0.1305262,0,0.9914449,0,-0.1687074,0.9856662,0,0,1,0,-0.1687074,0.9856662,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,-0.1305262,0,0.9914449,0,-0.1687074,0.9856662,0,0,1,0.1286552,-0.1687074,0.9772336,0.1305262,0,0.9914449,0.1286552,-0.1687074,0.9772336,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0.1286552,-0.1687074,0.9772336,0.1305262,0,0.9914449,0.2551091,-0.1687074,0.9520804,0.258819,0,0.9659258,0.2551091,-0.1687074,0.9520804,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.2551091,-0.1687074,0.9520804,0.258819,0,0.9659258,0.3771981,-0.1687074,0.9106368,0.3826834,0,0.9238795,0.3771981,-0.1687074,0.9106368,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.3771981,-0.1687074,0.9106368,0.3826834,0,0.9238795,0.4928331,-0.1687074,0.853612,0.5,0,0.8660254,0.4928331,-0.1687074,0.853612,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.4928331,-0.1687074,0.853612,0.5,0,0.8660254,0.6000355,-0.1687074,0.7819816,0.6087614,0,0.7933533,0.6000355,-0.1687074,0.7819816,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.6000355,-0.1687074,0.7819816,0.6087614,0,0.7933533,0.6969712,-0.1687074,0.6969712,0.7071068,0,0.7071068,0.6969712,-0.1687074,0.6969712,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6969712,-0.1687074,0.6969712,0.7071068,0,0.7071068,0.7819816,-0.1687074,0.6000356,0.7933533,0,0.6087614,0.7819816,-0.1687074,0.6000356,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7819816,-0.1687074,0.6000356,0.7933533,0,0.6087614,0.853612,-0.1687074,0.4928331,0.8660254,0,0.5,0.853612,-0.1687074,0.4928331,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.853612,-0.1687074,0.4928331,0.8660254,0,0.5,0.9106368,-0.1687074,0.3771982,0.9238795,0,0.3826834,0.9106368,-0.1687074,0.3771982,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9106368,-0.1687074,0.3771982,0.9238795,0,0.3826834,0.9520804,-0.1687074,0.2551092,0.9659258,0,0.2588191,0.9520804,-0.1687074,0.2551092,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9520804,-0.1687074,0.2551092,0.9659258,0,0.2588191,0.9772336,-0.1687074,0.1286553,0.9914449,0,0.1305262,0.9772336,-0.1687074,0.1286553,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.6972482,-0.1664026,-0.6972482,0.7822923,-0.1664026,-0.600274,0.6969712,-0.1687074,-0.6969712,0.7819816,-0.1687074,-0.6000356,0.6969712,-0.1687074,-0.6969712,0.7822923,-0.1664026,-0.600274,0.2551092,-0.1687074,-0.9520804,0.2552105,-0.1664026,-0.9524587,0.3771982,-0.1687074,-0.9106368,0.377348,-0.1664026,-0.9109987,0.3771982,-0.1687074,-0.9106368,0.2552105,-0.1664026,-0.9524587,0.1286552,-0.1687074,-0.9772336,0.1287064,-0.1664026,-0.977622,0.2551092,-0.1687074,-0.9520804,0.2552105,-0.1664026,-0.9524587,0.2551092,-0.1687074,-0.9520804,0.1287064,-0.1664026,-0.977622,0.977622,-0.1664026,-0.1287064,0.9860579,-0.1664026,0,0.9772336,-0.1687074,-0.1286553,0.9856662,-0.1687074,0,0.9772336,-0.1687074,-0.1286553,0.9860579,-0.1664026,0,-0.1286553,-0.1687074,-0.9772336,-0.1287064,-0.1664026,-0.977622,0,-0.1687074,-0.9856662,0,-0.1664026,-0.9860579,0,-0.1687074,-0.9856662,-0.1287064,-0.1664026,-0.977622,-0.2551092,-0.1687074,-0.9520804,-0.2552105,-0.1664026,-0.9524587,-0.1286553,-0.1687074,-0.9772336,-0.1287064,-0.1664026,-0.977622,-0.1286553,-0.1687074,-0.9772336,-0.2552105,-0.1664026,-0.9524587,-0.3771982,-0.1687074,-0.9106368,-0.377348,-0.1664026,-0.9109987,-0.2551092,-0.1687074,-0.9520804,-0.2552105,-0.1664026,-0.9524587,-0.2551092,-0.1687074,-0.9520804,-0.377348,-0.1664026,-0.9109987,-0.4928331,-0.1687074,-0.853612,-0.493029,-0.1664026,-0.8539512,-0.3771982,-0.1687074,-0.9106368,-0.377348,-0.1664026,-0.9109987,-0.3771982,-0.1687074,-0.9106368,-0.493029,-0.1664026,-0.8539512,0.3771982,-0.1687074,-0.9106368,0.377348,-0.1664026,-0.9109987,0.4928331,-0.1687074,-0.853612,0.493029,-0.1664026,-0.8539512,0.4928331,-0.1687074,-0.853612,0.377348,-0.1664026,-0.9109987,-0.6000356,-0.1687074,-0.7819816,-0.600274,-0.1664026,-0.7822923,-0.4928331,-0.1687074,-0.853612,-0.493029,-0.1664026,-0.8539512,-0.4928331,-0.1687074,-0.853612,-0.600274,-0.1664026,-0.7822923,0.1286552,-0.1687074,-0.9772336,0,-0.1687074,-0.9856662,0.1287064,-0.1664026,-0.977622,0,-0.1664026,-0.9860579,0.1287064,-0.1664026,-0.977622,0,-0.1687074,-0.9856662,-0.6969712,-0.1687074,-0.6969712,-0.6972482,-0.1664026,-0.6972482,-0.6000356,-0.1687074,-0.7819816,-0.600274,-0.1664026,-0.7822923,-0.6000356,-0.1687074,-0.7819816,-0.6972482,-0.1664026,-0.6972482,0.7822923,-0.1664026,-0.600274,0.8539512,-0.1664026,-0.493029,0.7819816,-0.1687074,-0.6000356,0.853612,-0.1687074,-0.4928331,0.7819816,-0.1687074,-0.6000356,0.8539512,-0.1664026,-0.493029,-0.6972482,-0.1664026,-0.6972482,-0.6969712,-0.1687074,-0.6969712,-0.7822923,-0.1664026,-0.600274,-0.7819816,-0.1687074,-0.6000356,-0.7822923,-0.1664026,-0.600274,-0.6969712,-0.1687074,-0.6969712,-0.7822923,-0.1664026,-0.600274,-0.7819816,-0.1687074,-0.6000356,-0.8539512,-0.1664026,-0.493029,-0.853612,-0.1687074,-0.4928331,-0.8539512,-0.1664026,-0.493029,-0.7819816,-0.1687074,-0.6000356,0.9109987,-0.1664026,-0.377348,0.9524587,-0.1664026,-0.2552105,0.9106368,-0.1687074,-0.3771982,0.9520804,-0.1687074,-0.2551092,0.9106368,-0.1687074,-0.3771982,0.9524587,-0.1664026,-0.2552105,0.9856662,-0.1687074,0,0.9860579,-0.1664026,0,0.9772336,-0.1687074,0.1286553,0.977622,-0.1664026,0.1287064,0.9772336,-0.1687074,0.1286553,0.9860579,-0.1664026,0,0.8539512,-0.1664026,-0.493029,0.9109987,-0.1664026,-0.377348,0.853612,-0.1687074,-0.4928331,0.9106368,-0.1687074,-0.3771982,0.853612,-0.1687074,-0.4928331,0.9109987,-0.1664026,-0.377348,0.6000356,-0.1687074,-0.7819816,0.600274,-0.1664026,-0.7822923,0.6969712,-0.1687074,-0.6969712,0.6972482,-0.1664026,-0.6972482,0.6969712,-0.1687074,-0.6969712,0.600274,-0.1664026,-0.7822923,0.9524587,-0.1664026,-0.2552105,0.977622,-0.1664026,-0.1287064,0.9520804,-0.1687074,-0.2551092,0.9772336,-0.1687074,-0.1286553,0.9520804,-0.1687074,-0.2551092,0.977622,-0.1664026,-0.1287064,0.4928331,-0.1687074,-0.853612,0.493029,-0.1664026,-0.8539512,0.6000356,-0.1687074,-0.7819816,0.600274,-0.1664026,-0.7822923,0.6000356,-0.1687074,-0.7819816,0.493029,-0.1664026,-0.8539512,-0.9856662,-0.1687074,0,-0.9772336,-0.1687074,0.1286553,-0.9860579,-0.1664026,0,-0.977622,-0.1664026,0.1287064,-0.9860579,-0.1664026,0,-0.9772336,-0.1687074,0.1286553,-0.9524587,-0.1664026,-0.2552105,-0.9520804,-0.1687074,-0.2551092,-0.977622,-0.1664026,-0.1287064,-0.9772336,-0.1687074,-0.1286553,-0.977622,-0.1664026,-0.1287064,-0.9520804,-0.1687074,-0.2551092,-0.977622,-0.1664026,-0.1287064,-0.9772336,-0.1687074,-0.1286553,-0.9860579,-0.1664026,0,-0.9856662,-0.1687074,0,-0.9860579,-0.1664026,0,-0.9772336,-0.1687074,-0.1286553,-0.8539512,-0.1664026,-0.493029,-0.853612,-0.1687074,-0.4928331,-0.9109987,-0.1664026,-0.377348,-0.9106368,-0.1687074,-0.3771982,-0.9109987,-0.1664026,-0.377348,-0.853612,-0.1687074,-0.4928331,-0.9109987,-0.1664026,-0.377348,-0.9106368,-0.1687074,-0.3771982,-0.9524587,-0.1664026,-0.2552105,-0.9520804,-0.1687074,-0.2551092,-0.9524587,-0.1664026,-0.2552105,-0.9106368,-0.1687074,-0.3771982,-0.9520804,-0.1687074,0.2551092,-0.9106368,-0.1687074,0.3771982,-0.9524587,-0.1664026,0.2552105,-0.9109987,-0.1664026,0.377348,-0.9524587,-0.1664026,0.2552105,-0.9106368,-0.1687074,0.3771982,-0.853612,-0.1687074,0.4928331,-0.7819816,-0.1687074,0.6000356,-0.8539512,-0.1664026,0.493029,-0.7822923,-0.1664026,0.600274,-0.8539512,-0.1664026,0.493029,-0.7819816,-0.1687074,0.6000356,-0.6000355,-0.1687074,0.7819816,-0.600274,-0.1664026,0.7822923,-0.6969712,-0.1687074,0.6969712,-0.6972482,-0.1664026,0.6972482,-0.6969712,-0.1687074,0.6969712,-0.600274,-0.1664026,0.7822923,-0.4928331,-0.1687074,0.853612,-0.493029,-0.1664026,0.8539512,-0.6000355,-0.1687074,0.7819816,-0.600274,-0.1664026,0.7822923,-0.6000355,-0.1687074,0.7819816,-0.493029,-0.1664026,0.8539512,-0.9772336,-0.1687074,0.1286553,-0.9520804,-0.1687074,0.2551092,-0.977622,-0.1664026,0.1287064,-0.9524587,-0.1664026,0.2552105,-0.977622,-0.1664026,0.1287064,-0.9520804,-0.1687074,0.2551092,-0.9106368,-0.1687074,0.3771982,-0.853612,-0.1687074,0.4928331,-0.9109987,-0.1664026,0.377348,-0.8539512,-0.1664026,0.493029,-0.9109987,-0.1664026,0.377348,-0.853612,-0.1687074,0.4928331,-0.7819816,-0.1687074,0.6000356,-0.6969712,-0.1687074,0.6969712,-0.7822923,-0.1664026,0.600274,-0.6972482,-0.1664026,0.6972482,-0.7822923,-0.1664026,0.600274,-0.6969712,-0.1687074,0.6969712,-0.3771981,-0.1687074,0.9106368,-0.377348,-0.1664026,0.9109987,-0.4928331,-0.1687074,0.853612,-0.493029,-0.1664026,0.8539512,-0.4928331,-0.1687074,0.853612,-0.377348,-0.1664026,0.9109987,-0.2551091,-0.1687074,0.9520804,-0.2552105,-0.1664026,0.9524587,-0.3771981,-0.1687074,0.9106368,-0.377348,-0.1664026,0.9109987,-0.3771981,-0.1687074,0.9106368,-0.2552105,-0.1664026,0.9524587,0.9772336,-0.1687074,0.1286553,0.977622,-0.1664026,0.1287064,0.9520804,-0.1687074,0.2551092,0.9524587,-0.1664026,0.2552105,0.9520804,-0.1687074,0.2551092,0.977622,-0.1664026,0.1287064,0.853612,-0.1687074,0.4928331,0.8539512,-0.1664026,0.493029,0.7819816,-0.1687074,0.6000356,0.7822923,-0.1664026,0.600274,0.7819816,-0.1687074,0.6000356,0.8539512,-0.1664026,0.493029,0.6969712,-0.1687074,0.6969712,0.6972482,-0.1664026,0.6972482,0.6000355,-0.1687074,0.7819816,0.600274,-0.1664026,0.7822923,0.6000355,-0.1687074,0.7819816,0.6972482,-0.1664026,0.6972482,0.9520804,-0.1687074,0.2551092,0.9524587,-0.1664026,0.2552105,0.9106368,-0.1687074,0.3771982,0.9109987,-0.1664026,0.377348,0.9106368,-0.1687074,0.3771982,0.9524587,-0.1664026,0.2552105,0.9106368,-0.1687074,0.3771982,0.9109987,-0.1664026,0.377348,0.853612,-0.1687074,0.4928331,0.8539512,-0.1664026,0.493029,0.853612,-0.1687074,0.4928331,0.9109987,-0.1664026,0.377348,0.7819816,-0.1687074,0.6000356,0.7822923,-0.1664026,0.600274,0.6969712,-0.1687074,0.6969712,0.6972482,-0.1664026,0.6972482,0.6969712,-0.1687074,0.6969712,0.7822923,-0.1664026,0.600274,-0.1286552,-0.1687074,0.9772336,-0.1287064,-0.1664026,0.977622,-0.2551091,-0.1687074,0.9520804,-0.2552105,-0.1664026,0.9524587,-0.2551091,-0.1687074,0.9520804,-0.1287064,-0.1664026,0.977622,0.2551091,-0.1687074,0.9520804,0.2552105,-0.1664026,0.9524587,0.1286552,-0.1687074,0.9772336,0.1287064,-0.1664026,0.977622,0.1286552,-0.1687074,0.9772336,0.2552105,-0.1664026,0.9524587,0.1286552,-0.1687074,0.9772336,0.1287064,-0.1664026,0.977622,0,-0.1687074,0.9856662,0,-0.1664026,0.9860579,0,-0.1687074,0.9856662,0.1287064,-0.1664026,0.977622,0,-0.1687074,0.9856662,0,-0.1664026,0.9860579,-0.1286552,-0.1687074,0.9772336,-0.1287064,-0.1664026,0.977622,-0.1286552,-0.1687074,0.9772336,0,-0.1664026,0.9860579,0.6000355,-0.1687074,0.7819816,0.600274,-0.1664026,0.7822923,0.4928331,-0.1687074,0.853612,0.493029,-0.1664026,0.8539512,0.4928331,-0.1687074,0.853612,0.600274,-0.1664026,0.7822923,0.3771981,-0.1687074,0.9106368,0.377348,-0.1664026,0.9109987,0.2551091,-0.1687074,0.9520804,0.2552105,-0.1664026,0.9524587,0.2551091,-0.1687074,0.9520804,0.377348,-0.1664026,0.9109987,0.4928331,-0.1687074,0.853612,0.493029,-0.1664026,0.8539512,0.3771981,-0.1687074,0.9106368,0.377348,-0.1664026,0.9109987,0.3771981,-0.1687074,0.9106368,0.493029,-0.1664026,0.8539512,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,0.9914449,0,0.1305262,0.9860579,-0.1664026,0,0.977622,-0.1664026,0.1287064,0.9860579,-0.1664026,0,0.9914449,0,0.1305262,0.9914449,0,-0.1305262,1,0,0,0.977622,-0.1664026,-0.1287064,0.9860579,-0.1664026,0,0.977622,-0.1664026,-0.1287064,1,0,0,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9524587,-0.1664026,-0.2552105,0.977622,-0.1664026,-0.1287064,0.9524587,-0.1664026,-0.2552105,0.9914449,0,-0.1305262,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9109987,-0.1664026,-0.377348,0.9524587,-0.1664026,-0.2552105,0.9109987,-0.1664026,-0.377348,0.9659258,0,-0.258819,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8539512,-0.1664026,-0.493029,0.9109987,-0.1664026,-0.377348,0.8539512,-0.1664026,-0.493029,0.9238795,0,-0.3826834,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7822923,-0.1664026,-0.600274,0.8539512,-0.1664026,-0.493029,0.7822923,-0.1664026,-0.600274,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.6972482,-0.1664026,-0.6972482,0.7822923,-0.1664026,-0.600274,0.6972482,-0.1664026,-0.6972482,0.7933533,0,-0.6087614,0.600274,-0.1664026,-0.7822923,0.6087614,0,-0.7933533,0.6972482,-0.1664026,-0.6972482,0.7071068,0,-0.7071068,0.6972482,-0.1664026,-0.6972482,0.6087614,0,-0.7933533,0.493029,-0.1664026,-0.8539512,0.5,0,-0.8660254,0.600274,-0.1664026,-0.7822923,0.6087614,0,-0.7933533,0.600274,-0.1664026,-0.7822923,0.5,0,-0.8660254,0.377348,-0.1664026,-0.9109987,0.3826834,0,-0.9238795,0.493029,-0.1664026,-0.8539512,0.5,0,-0.8660254,0.493029,-0.1664026,-0.8539512,0.3826834,0,-0.9238795,0.2552105,-0.1664026,-0.9524587,0.258819,0,-0.9659258,0.377348,-0.1664026,-0.9109987,0.3826834,0,-0.9238795,0.377348,-0.1664026,-0.9109987,0.258819,0,-0.9659258,0.1287064,-0.1664026,-0.977622,0.1305262,0,-0.9914449,0.2552105,-0.1664026,-0.9524587,0.258819,0,-0.9659258,0.2552105,-0.1664026,-0.9524587,0.1305262,0,-0.9914449,0.1287064,-0.1664026,-0.977622,0,-0.1664026,-0.9860579,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,-0.1664026,-0.9860579,-0.1287064,-0.1664026,-0.977622,-0.1305262,0,-0.9914449,0,-0.1664026,-0.9860579,0,0,-1,0,-0.1664026,-0.9860579,-0.1305262,0,-0.9914449,-0.2552105,-0.1664026,-0.9524587,-0.258819,0,-0.9659258,-0.1287064,-0.1664026,-0.977622,-0.1305262,0,-0.9914449,-0.1287064,-0.1664026,-0.977622,-0.258819,0,-0.9659258,-0.377348,-0.1664026,-0.9109987,-0.3826834,0,-0.9238795,-0.2552105,-0.1664026,-0.9524587,-0.258819,0,-0.9659258,-0.2552105,-0.1664026,-0.9524587,-0.3826834,0,-0.9238795,-0.493029,-0.1664026,-0.8539512,-0.5,0,-0.8660254,-0.377348,-0.1664026,-0.9109987,-0.3826834,0,-0.9238795,-0.377348,-0.1664026,-0.9109987,-0.5,0,-0.8660254,-0.600274,-0.1664026,-0.7822923,-0.6087614,0,-0.7933533,-0.493029,-0.1664026,-0.8539512,-0.5,0,-0.8660254,-0.493029,-0.1664026,-0.8539512,-0.6087614,0,-0.7933533,-0.6972482,-0.1664026,-0.6972482,-0.7071068,0,-0.7071068,-0.600274,-0.1664026,-0.7822923,-0.6087614,0,-0.7933533,-0.600274,-0.1664026,-0.7822923,-0.7071068,0,-0.7071068,-0.6972482,-0.1664026,-0.6972482,-0.7822923,-0.1664026,-0.600274,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7822923,-0.1664026,-0.600274,-0.7822923,-0.1664026,-0.600274,-0.8539512,-0.1664026,-0.493029,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8539512,-0.1664026,-0.493029,-0.8539512,-0.1664026,-0.493029,-0.9109987,-0.1664026,-0.377348,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9109987,-0.1664026,-0.377348,-0.9109987,-0.1664026,-0.377348,-0.9524587,-0.1664026,-0.2552105,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9524587,-0.1664026,-0.2552105,-0.9524587,-0.1664026,-0.2552105,-0.977622,-0.1664026,-0.1287064,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.977622,-0.1664026,-0.1287064,-0.977622,-0.1664026,-0.1287064,-0.9860579,-0.1664026,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-0.9860579,-0.1664026,0,-0.9860579,-0.1664026,0,-0.977622,-0.1664026,0.1287064,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.977622,-0.1664026,0.1287064,-0.977622,-0.1664026,0.1287064,-0.9524587,-0.1664026,0.2552105,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9524587,-0.1664026,0.2552105,-0.9524587,-0.1664026,0.2552105,-0.9109987,-0.1664026,0.377348,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9109987,-0.1664026,0.377348,-0.9109987,-0.1664026,0.377348,-0.8539512,-0.1664026,0.493029,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8539512,-0.1664026,0.493029,-0.8539512,-0.1664026,0.493029,-0.7822923,-0.1664026,0.600274,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7822923,-0.1664026,0.600274,-0.7822923,-0.1664026,0.600274,-0.6972482,-0.1664026,0.6972482,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.6972482,-0.1664026,0.6972482,-0.600274,-0.1664026,0.7822923,-0.6087614,0,0.7933533,-0.6972482,-0.1664026,0.6972482,-0.7071068,0,0.7071068,-0.6972482,-0.1664026,0.6972482,-0.6087614,0,0.7933533,-0.493029,-0.1664026,0.8539512,-0.5,0,0.8660254,-0.600274,-0.1664026,0.7822923,-0.6087614,0,0.7933533,-0.600274,-0.1664026,0.7822923,-0.5,0,0.8660254,-0.377348,-0.1664026,0.9109987,-0.3826834,0,0.9238795,-0.493029,-0.1664026,0.8539512,-0.5,0,0.8660254,-0.493029,-0.1664026,0.8539512,-0.3826834,0,0.9238795,-0.2552105,-0.1664026,0.9524587,-0.258819,0,0.9659258,-0.377348,-0.1664026,0.9109987,-0.3826834,0,0.9238795,-0.377348,-0.1664026,0.9109987,-0.258819,0,0.9659258,-0.1287064,-0.1664026,0.977622,-0.1305262,0,0.9914449,-0.2552105,-0.1664026,0.9524587,-0.258819,0,0.9659258,-0.2552105,-0.1664026,0.9524587,-0.1305262,0,0.9914449,0,-0.1664026,0.9860579,0,0,1,-0.1287064,-0.1664026,0.977622,-0.1305262,0,0.9914449,-0.1287064,-0.1664026,0.977622,0,0,1,0.1287064,-0.1664026,0.977622,0.1305262,0,0.9914449,0,-0.1664026,0.9860579,0,0,1,0,-0.1664026,0.9860579,0.1305262,0,0.9914449,0.2552105,-0.1664026,0.9524587,0.258819,0,0.9659258,0.1287064,-0.1664026,0.977622,0.1305262,0,0.9914449,0.1287064,-0.1664026,0.977622,0.258819,0,0.9659258,0.377348,-0.1664026,0.9109987,0.3826834,0,0.9238795,0.2552105,-0.1664026,0.9524587,0.258819,0,0.9659258,0.2552105,-0.1664026,0.9524587,0.3826834,0,0.9238795,0.493029,-0.1664026,0.8539512,0.5,0,0.8660254,0.377348,-0.1664026,0.9109987,0.3826834,0,0.9238795,0.377348,-0.1664026,0.9109987,0.5,0,0.8660254,0.600274,-0.1664026,0.7822923,0.6087614,0,0.7933533,0.493029,-0.1664026,0.8539512,0.5,0,0.8660254,0.493029,-0.1664026,0.8539512,0.6087614,0,0.7933533,0.6972482,-0.1664026,0.6972482,0.7071068,0,0.7071068,0.600274,-0.1664026,0.7822923,0.6087614,0,0.7933533,0.600274,-0.1664026,0.7822923,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7822923,-0.1664026,0.600274,0.6972482,-0.1664026,0.6972482,0.7822923,-0.1664026,0.600274,0.7071068,0,0.7071068,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8539512,-0.1664026,0.493029,0.7822923,-0.1664026,0.600274,0.8539512,-0.1664026,0.493029,0.7933533,0,0.6087614,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9109987,-0.1664026,0.377348,0.8539512,-0.1664026,0.493029,0.9109987,-0.1664026,0.377348,0.8660254,0,0.5,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9524587,-0.1664026,0.2552105,0.9109987,-0.1664026,0.377348,0.9524587,-0.1664026,0.2552105,0.9238795,0,0.3826834,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.977622,-0.1664026,0.1287064,0.9524587,-0.1664026,0.2552105,0.977622,-0.1664026,0.1287064,0.9659258,0,0.2588191,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,-0.1305262,0,0.9914449,0,0,1,0,0,1,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9659258,0,-0.2588191,0.9914449,0,-0.1305262,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.9238795,0,-0.3826834,0.9659258,0,-0.2588191,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9659258,0,-0.2588191,-0.9238795,0,-0.3826834,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-0.9914449,0,-0.1305262,-0.9659258,0,-0.2588191,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0,0,1,0,0,1,0,0,1,0.1305262,0,0.9914449,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9914449,0,0.1305262,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,0.9659258,0,0.2588191,0.9238795,0,0.3826834,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,1,0,0,0.9914449,0,0.1305262,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-1,0,0,-0.9914449,0,0.1305262,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.9914449,0,0.1305262,-0.9659258,0,0.2588191,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,0,0,1,0,0,1,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,0,0,1,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.9914449,0,-0.1305262,1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.1305262,0,-0.9914449,0,0,-1,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.9914449,0,-0.1305262,-1,0,0,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,-0.9914449,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *5472 { + a: -1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-5.059458E-12,1.802448,-5.059458E-12,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,1.802448,-5.782786E-12,-1.802449,-5.789891E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-2.216657E-12,1.802448,-2.216657E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-3.676269E-12,1.802448,-3.676269E-12,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,1.802448,-6.402126E-12,-1.802449,-6.409231E-12,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.102455E-11,1.802448,-1.102455E-11,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-7.971262E-12,1.802448,-7.971262E-12,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.147955E-11,1.802448,-1.147955E-11,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-9.982282E-12,1.802448,-9.982282E-12,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-8.850145E-12,1.802448,-8.850145E-12,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.1671E-11,1.802448,-1.1671E-11,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-6.68046E-12,1.802448,-6.68046E-12,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.574927,32.45652,2.497679,30.84275,-2.574926,32.45652,-2.497678,30.84275,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,-36.41732,2.933568E-07,-36.10577,4.753415,-36.10577,-4.753414,-35.17643,-9.425496,-35.17643,9.425497,-33.64522,-13.93631,-33.64522,13.93631,-31.53833,-18.20866,-31.53833,18.20866,-28.89181,-22.16946,-28.89181,22.16946,-27.55906,2.9335E-07,-27.32328,-3.597178,-27.32328,3.597179,-25.75094,-25.75094,-26.62,-7.132808,-25.46125,-10.54639,-25.75094,25.75094,-26.62,7.132808,-25.46125,10.54639,-22.16946,-28.8918,-23.86684,-13.77953,-21.86407,-16.77689,-22.16946,28.89181,-23.86684,13.77953,-21.86407,16.77689,-18.20866,-31.53833,-19.4872,-19.48719,-16.77689,-21.86407,-13.93631,-33.64522,-13.77953,-23.86684,-18.20866,31.53833,-19.4872,19.48719,-16.77689,21.86407,-13.93631,33.64522,-13.77953,23.86684,-9.425497,-35.17643,-10.54639,-25.46125,-7.132809,-26.62,-4.753415,-36.10577,-3.597179,-27.32328,5.866624E-07,-36.41732,5.866628E-07,-27.55906,-9.425497,35.17643,-10.54639,25.46125,-7.132809,26.62,-4.753415,36.10577,-3.597179,27.32328,4.401739E-08,36.41732,1.760138E-07,27.55906,4.753415,-36.10577,3.597179,-27.32328,7.132809,-26.62,9.425497,-35.17643,10.54639,-25.46125,4.753415,36.10577,3.597179,27.32328,7.132809,26.62,9.425497,35.17643,10.54639,25.46125,13.93631,-33.64522,13.77953,-23.86684,16.77689,-21.86407,18.20866,-31.53833,19.4872,-19.48719,13.93631,33.64522,13.77953,23.86684,16.77689,21.86407,18.20866,31.53833,19.4872,19.48719,22.16946,-28.8918,21.86407,-16.77689,23.86684,-13.77953,22.16946,28.89181,21.86407,16.77689,23.86684,13.77953,25.75094,-25.75094,25.46125,-10.54639,26.62,-7.132808,25.75094,25.75094,25.46125,10.54639,26.62,7.132808,28.89181,-22.16946,28.89181,22.16946,27.32328,-3.597178,27.32328,3.597179,27.55906,2.933223E-07,31.53833,18.20866,31.53833,-18.20866,33.64522,13.93631,33.64522,-13.93631,35.17643,9.425497,35.17643,-9.425496,36.10577,4.753415,36.10577,-4.753414,36.41732,2.93322E-07,-27.55906,2.9335E-07,-27.32328,3.597179,-27.32328,-3.597178,-26.62,-7.132808,-26.62,7.132808,-25.46125,-10.54639,-25.46125,10.54639,-23.86684,-13.77953,-23.86684,13.77953,-21.86407,-16.77689,-21.86407,16.77689,-19.4872,-19.48719,-19.4872,19.48719,-16.77689,-21.86407,-16.77689,21.86407,-13.77953,-23.86684,-13.77953,23.86684,-13.77953,1.466752E-07,-13.66164,-1.798589,-13.66164,1.798589,-10.54639,-25.46125,-10.54639,25.46125,-13.31,-3.566404,-13.31,3.566404,-12.73062,-5.273197,-12.73062,5.273197,-11.93342,-6.889764,-10.93203,-8.388445,-9.743598,-9.743597,-11.93342,6.889764,-10.93203,8.388445,-9.743598,9.743597,-7.132809,-26.62,-8.388445,-10.93203,-6.889764,-11.93342,-7.132809,26.62,-8.388445,10.93203,-6.889764,11.93342,-3.597179,-27.32328,-5.273197,-12.73062,-3.566404,-13.31,-3.597179,27.32328,-5.273197,12.73062,-3.566404,13.31,5.866628E-07,-27.55906,1.760138E-07,27.55906,-1.79859,-13.66164,2.933316E-07,-13.77953,1.79859,-13.66164,-1.798589,13.66164,8.800708E-08,13.77953,1.798589,13.66164,3.597179,-27.32328,3.566404,-13.31,5.273197,-12.73062,3.597179,27.32328,3.566404,13.31,5.273197,12.73062,7.132809,-26.62,6.889764,-11.93342,8.388445,-10.93203,7.132809,26.62,6.889764,11.93342,8.388445,10.93203,10.54639,-25.46125,9.743598,-9.743597,10.93203,-8.388445,13.77953,-23.86684,10.54639,25.46125,9.743598,9.743597,10.93203,8.388445,11.93342,-6.889764,13.77953,23.86684,12.73062,-5.273197,11.93342,6.889764,13.31,-3.566404,12.73062,5.273197,13.66164,-1.798589,13.31,3.566404,13.66164,1.798589,13.77953,1.466614E-07,16.77689,21.86407,16.77689,-21.86407,19.4872,19.48719,19.4872,-19.48719,21.86407,16.77689,21.86407,-16.77689,23.86684,13.77953,23.86684,-13.77953,25.46125,10.54639,25.46125,-10.54639,26.62,7.132808,26.62,-7.132808,27.32328,3.597179,27.32328,-3.597178,27.55906,2.933223E-07,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.497679,4.409449,2.497679,2.204724,-2.497678,4.409449,-2.497678,2.204724,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.574927,11.02362,2.574927,5.511811,-2.574926,11.02362,-2.574926,5.511811,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.144101E-11,1.802449,-1.144101E-11,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.18485E-11,1.802449,-1.18485E-11,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-7.776766E-12,-1.802448,-7.776766E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-8.843343E-12,1.802449,-8.843343E-12,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-2.265174E-12,-1.802448,-2.265174E-12,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-5.435187E-12,-1.802448,-5.435187E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-6.751656E-12,-1.802448,-6.751656E-12,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.102604E-11,1.802449,-1.102604E-11,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.050837E-11,1.802449,-1.050837E-11,-1.802448,-3.937717E-12,-1.802448,5.511811,1.802449,-3.937717E-12,1.802449,5.511811,1.802449,11.02362,-1.802448,11.02362,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,1.802449,11.02362,1.802449,5.511811,-1.802448,11.02362,-1.802448,5.511811,-1.802448,-6.137641E-12,1.802449,-6.130536E-12,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-9.739202E-12,1.802449,-9.739202E-12,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.497679,2.204724,-2.497679,4.409449,2.497678,2.204724,2.497678,4.409449,-2.574927,5.511811,-2.574927,11.02362,2.574926,5.511811,2.574926,11.02362,2.574926,32.45652,2.497678,30.84275,-2.574927,32.45652,-2.497679,30.84275,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,30.84275,-2.497679,30.84275,2.574926,32.45652,-2.574927,32.45652,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.145532E-11,1.802449,-1.145532E-11,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-1.802448,11.02362,1.80245,11.02362,-1.802448,5.511811,1.80245,5.511811,-1.802448,-5.787114E-12,1.80245,-5.80843E-12,39.37008,2.933592E-07,39.03326,-5.138826,39.03326,5.138827,38.02858,-10.18973,38.02858,10.18973,36.37321,-15.06628,36.37321,15.06628,34.09549,-19.68504,34.09549,19.68504,31.23438,-23.96699,31.23438,23.96699,27.83885,-27.83885,27.83885,27.83885,27.55906,2.9335E-07,27.32328,3.597179,27.32328,-3.597178,23.96699,31.23438,23.96699,-31.23438,26.62,7.132808,25.46125,10.54639,23.86684,13.77953,26.62,-7.132808,25.46125,-10.54639,23.86684,-13.77953,19.68504,34.09549,21.86407,16.77689,19.4872,19.48719,19.68504,-34.09549,21.86407,-16.77689,19.4872,-19.48719,15.06628,36.37321,16.77689,21.86407,13.77953,23.86684,15.06628,-36.37321,16.77689,-21.86407,13.77953,-23.86684,10.18973,38.02858,10.54639,25.46125,7.132809,26.62,5.138826,39.03326,3.597179,27.32328,-1.875833E-11,39.37008,-1.760138E-07,27.55906,10.18973,-38.02858,10.54639,-25.46125,7.132809,-26.62,5.138827,-39.03326,3.597179,-27.32328,-5.866623E-07,-39.37008,-5.866628E-07,-27.55906,-5.138826,39.03326,-3.597179,27.32328,-7.132809,26.62,-10.18973,38.02858,-10.54639,25.46125,-5.138827,-39.03326,-3.597179,-27.32328,-7.132809,-26.62,-10.18973,-38.02858,-10.54639,-25.46125,-15.06628,36.37321,-13.77953,23.86684,-16.77689,21.86407,-15.06628,-36.37321,-13.77953,-23.86684,-16.77689,-21.86407,-19.68504,34.09549,-19.4872,19.48719,-21.86407,16.77689,-19.68504,-34.09549,-19.4872,-19.48719,-21.86407,-16.77689,-23.96699,31.23438,-23.86684,13.77953,-25.46125,10.54639,-23.96699,-31.23438,-23.86684,-13.77953,-25.46125,-10.54639,-27.83885,27.83885,-27.83885,-27.83885,-26.62,7.132808,-26.62,-7.132808,-27.32328,3.597179,-27.32328,-3.597178,-27.55906,2.933223E-07,-31.23438,23.96699,-31.23438,-23.96699,-34.09549,19.68504,-34.09549,-19.68504,-36.37321,15.06628,-36.37321,-15.06628,-38.02858,10.18973,-38.02858,-10.18973,-39.03326,5.138827,-39.03326,-5.138826,-39.37008,2.933218E-07,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-8.165265E-12,-1.802448,-8.165265E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-5.320746E-12,-1.802448,-5.320746E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-2.50176E-12,-1.802448,-2.50176E-12,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-3.951928E-12,-1.802448,-3.951928E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.077747E-11,1.802449,-1.077747E-11,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-8.860607E-13,-1.802448,-8.860607E-13,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.094916E-11,1.802449,-1.094916E-11,-2.574928,5.511811,-2.574928,11.02362,2.574926,5.511811,2.574926,11.02362,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-9.283701E-12,1.802449,-9.283701E-12,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,1.802449,-6.687565E-12,-1.802448,-6.687565E-12,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-1.802448,11.02362,1.802449,11.02362,-1.802448,5.511811,1.802449,5.511811,-1.802448,-1.02257E-11,1.802449,-1.02257E-11,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.49768,2.204724,-2.49768,4.409449,2.497679,2.204724,2.497679,4.409449,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.574926,11.02362,2.574926,5.511811,-2.574927,11.02362,-2.574927,5.511811,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,2.574926,5.511811,-2.574927,5.511811,2.574926,11.02362,-2.574927,11.02362,-2.574928,32.45652,2.574926,32.45652,-2.49768,30.84275,2.497679,30.84275,2.497678,4.409449,2.497678,2.204724,-2.497679,4.409449,-2.497679,2.204724,2.497678,2.204724,-2.497679,2.204724,2.497678,4.409449,-2.497679,4.409449,-2.574927,32.45652,2.574926,32.45652,-2.497679,30.84275,2.497678,30.84275,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.1434E-11,1.802448,-1.1434E-11,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-8.835935E-12,1.802448,-8.835935E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-2.146922E-12,1.802448,-2.146922E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-6.744216E-12,1.802448,-6.744216E-12,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-5.679845E-12,1.802448,-5.679845E-12,-2.574926,32.45652,2.574927,32.45652,-2.497678,30.84275,2.497679,30.84275,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-7.769963E-12,1.802448,-7.769963E-12,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.153989E-11,1.802448,-1.153989E-11,1.802448,-9.968965E-12,-1.802449,-9.968965E-12,1.802448,5.511811,-1.802449,5.511811,-1.802449,11.02362,1.802448,11.02362,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,1.802448,-4.021838E-12,-1.802449,-4.021838E-12,1.802448,5.511811,-1.802449,5.511811,1.802448,11.02362,-1.802449,11.02362,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.128763E-11,1.802448,-1.128763E-11,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,-1.802449,11.02362,1.802448,11.02362,-1.802449,5.511811,1.802448,5.511811,-1.802449,-5.631861E-13,1.802448,-5.631861E-13,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,1.802448,11.02362,1.802448,5.511811,-1.802449,11.02362,-1.802449,5.511811,-1.802449,-1.100998E-11,1.802448,-1.100998E-11,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,2.574927,5.511811,-2.574926,5.511811,2.574927,11.02362,-2.574926,11.02362,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,2.497679,2.204724,-2.497678,2.204724,2.497679,4.409449,-2.497678,4.409449,-2.574926,5.511811,-2.574926,11.02362,2.574927,5.511811,2.574927,11.02362,-2.497678,2.204724,-2.497678,4.409449,2.497679,2.204724,2.497679,4.409449,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-2.497678,30.84275,-2.574926,32.45652,2.497679,30.84275,2.574927,32.45652,-0.901224,11.02362,0.9012243,11.02362,-0.901224,5.511811,0.9012243,5.511811,0.9012243,5.288994E-13,-0.901224,5.360048E-13,-0.9012244,11.02362,0.9012241,11.02362,-0.9012244,5.511811,0.9012241,5.511811,0.9012241,6.030885E-13,-0.9012244,6.030885E-13,-0.9012244,11.02362,0.901224,11.02362,-0.9012244,5.511811,0.901224,5.511811,0.901224,6.669638E-13,-0.9012244,6.669638E-13,-0.9012244,11.02362,0.901224,11.02362,-0.9012244,5.511811,0.901224,5.511811,0.901224,7.194271E-13,-0.9012244,7.194271E-13,-0.9012245,11.02362,0.901224,11.02362,-0.9012245,5.511811,0.901224,5.511811,0.901224,7.595808E-13,-0.9012245,7.595808E-13,-0.9012245,11.02362,0.901224,11.02362,-0.9012245,5.511811,0.901224,5.511811,0.901224,7.867378E-13,-0.9012245,7.867378E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,0.9012239,8.004334E-13,-0.9012246,8.004334E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,8.004997E-13,0.9012239,8.004997E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,7.867378E-13,0.9012239,7.867378E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,7.595808E-13,0.9012239,7.595808E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,7.194271E-13,0.9012239,7.194271E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,6.670131E-13,0.9012239,6.670131E-13,0.9012242,11.02362,0.9012242,5.511811,-0.9012248,11.02362,-0.9012248,5.511811,0.9012242,6.244275E-13,-0.9012248,6.031113E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,5.502105E-13,0.9012246,5.502105E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,4.669666E-13,0.9012246,4.669666E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,3.760976E-13,0.9012246,3.760976E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,2.79158E-13,0.9012246,2.79158E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,1.778067E-13,0.9012246,1.778067E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,7.377778E-14,0.9012246,7.377778E-14,0.9012246,11.02362,0.9012246,5.511811,-0.9012239,11.02362,-0.9012239,5.511811,-0.9012239,-3.114882E-14,0.9012246,-3.114882E-14,0.9012245,11.02362,0.9012245,5.511811,-0.901224,11.02362,-0.901224,5.511811,-0.901224,-1.351778E-13,0.9012245,-1.351778E-13,0.9012245,11.02362,0.9012245,5.511811,-0.901224,11.02362,-0.901224,5.511811,-0.901224,-2.365291E-13,0.9012245,-2.365291E-13,0.9012244,11.02362,0.9012244,5.511811,-0.901224,11.02362,-0.901224,5.511811,-0.901224,-3.334686E-13,0.9012244,-3.334686E-13,0.9012244,11.02362,0.9012244,5.511811,-0.901224,11.02362,-0.901224,5.511811,-0.901224,-4.243377E-13,0.9012244,-4.243377E-13,0.9012244,11.02362,0.9012244,5.511811,-0.9012241,11.02362,-0.9012241,5.511811,-0.9012241,-5.076067E-13,0.9012244,-5.076067E-13,0.901224,11.02362,0.901224,5.511811,-0.9012243,11.02362,-0.9012243,5.511811,-0.9012243,-5.818061E-13,0.901224,-5.889116E-13,0.901224,11.02362,0.901224,5.511811,-0.9012244,11.02362,-0.9012244,5.511811,-0.9012244,-6.528843E-13,0.901224,-6.528843E-13,0.901224,11.02362,0.901224,5.511811,-0.9012244,11.02362,-0.9012244,5.511811,-0.9012244,-7.052199E-13,0.901224,-7.052199E-13,0.901224,11.02362,0.901224,5.511811,-0.9012245,11.02362,-0.9012245,5.511811,-0.9012245,-7.453735E-13,0.901224,-7.453735E-13,0.901224,11.02362,0.901224,5.511811,-0.9012245,11.02362,-0.9012245,5.511811,-0.9012245,-7.725305E-13,0.901224,-7.725305E-13,0.9012239,11.02362,0.9012239,5.511811,-0.9012246,11.02362,-0.9012246,5.511811,-0.9012246,-7.862262E-13,0.9012239,-7.862262E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,-7.862262E-13,0.9012239,-7.862262E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,-7.725305E-13,0.9012239,-7.725305E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,-7.455538E-13,0.9012239,-7.455538E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,-7.052674E-13,0.9012239,-7.052674E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,-6.527565E-13,0.9012239,-6.527565E-13,-0.9012246,11.02362,0.9012239,11.02362,-0.9012246,5.511811,0.9012239,5.511811,-0.9012246,-5.888813E-13,0.9012239,-5.888813E-13,-0.901224,11.02362,0.9012246,11.02362,-0.901224,5.511811,0.9012246,5.511811,-0.901224,-5.146922E-13,0.9012246,-5.217976E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,-4.385486E-13,0.9012246,-4.385486E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,-3.476795E-13,0.9012246,-3.476795E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,-2.507399E-13,0.9012246,-2.507399E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,-1.493886E-13,0.9012246,-1.493886E-13,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,-0.9012239,-4.535969E-14,0.9012246,-4.535969E-14,-0.9012239,11.02362,0.9012246,11.02362,-0.9012239,5.511811,0.9012246,5.511811,0.9012246,5.956691E-14,-0.9012239,5.956691E-14,-0.901224,11.02362,0.9012245,11.02362,-0.901224,5.511811,0.9012245,5.511811,0.9012245,1.63763E-13,-0.901224,1.63763E-13,-0.901224,11.02362,0.9012245,11.02362,-0.901224,5.511811,0.9012245,5.511811,0.9012245,2.649472E-13,-0.901224,2.649472E-13,-0.901224,11.02362,0.9012244,11.02362,-0.901224,5.511811,0.9012244,5.511811,0.9012244,3.618867E-13,-0.901224,3.618867E-13,-0.901224,11.02362,0.9012244,11.02362,-0.901224,5.511811,0.9012244,5.511811,0.9012244,4.527558E-13,-0.901224,4.527558E-13,0.9913463,19.11104,0.9012239,14.94083,-0.991347,19.11104,-0.9012246,14.94083,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,0.9913465,19.11104,0.9012241,14.94083,-0.9913468,19.11104,-0.9012244,14.94083,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,-0.9012248,14.94083,-0.9913473,19.11104,0.9012242,14.94083,0.9913467,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9913464,19.11104,0.901224,14.94083,-0.991347,19.11104,-0.9012245,14.94083,-0.9913463,19.11104,0.991347,19.11104,-0.9012239,14.94083,0.9012246,14.94083,-0.9913464,19.11104,0.991347,19.11104,-0.901224,14.94083,0.9012245,14.94083,0.9913464,19.11104,0.901224,14.94083,-0.9913469,19.11104,-0.9012244,14.94083,0.9012243,14.94083,-0.901224,14.94083,0.9913468,19.11104,-0.9913464,19.11104,0.9913464,19.11104,0.901224,14.94083,-0.991347,19.11104,-0.9012245,14.94083,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,0.9913464,19.11104,0.901224,14.94083,-0.9913468,19.11104,-0.9012244,14.94083,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,-0.9012243,14.94083,-0.9913468,19.11104,0.901224,14.94083,0.9913464,19.11104,-0.9913464,19.11104,0.9913468,19.11104,-0.901224,14.94083,0.9012244,14.94083,-0.9913465,19.11104,0.9913468,19.11104,-0.9012241,14.94083,0.9012244,14.94083,-0.9913464,19.11104,0.991347,19.11104,-0.901224,14.94083,0.9012245,14.94083,-0.9913464,19.11104,0.9913469,19.11104,-0.901224,14.94083,0.9012244,14.94083,-0.9012244,14.94083,-0.9913469,19.11104,0.901224,14.94083,0.9913464,19.11104,-0.9012245,14.94083,-0.991347,19.11104,0.901224,14.94083,0.9913464,19.11104,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,-0.9012244,14.94083,-0.9913468,19.11104,0.901224,14.94083,0.9913464,19.11104,-0.9012245,14.94083,-0.991347,19.11104,0.901224,14.94083,0.9913464,19.11104,-0.9012246,14.94083,-0.991347,19.11104,0.9012239,14.94083,0.9913463,19.11104,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,0.9012244,14.94083,-0.901224,14.94083,0.9913468,19.11104,-0.9913464,19.11104,0.9012245,14.94083,-0.901224,14.94083,0.991347,19.11104,-0.9913464,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9012244,14.94083,-0.901224,14.94083,0.9913469,19.11104,-0.9913464,19.11104,0.9012245,14.94083,-0.901224,14.94083,0.991347,19.11104,-0.9913464,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9012246,14.94083,-0.901224,14.94083,0.9913471,19.11104,-0.9913464,19.11104,0.9012239,14.94083,-0.9012246,14.94083,0.9913463,19.11104,-0.991347,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,0.9012246,14.94083,-0.9012239,14.94083,0.991347,19.11104,-0.9913463,19.11104,-15.15748,1.613425E-07,-15.02781,1.978448,-15.02781,-1.978448,-14.641,-3.923044,-14.641,3.923045,-14.00369,-5.800517,-14.00369,5.800517,-13.12676,-7.57874,-13.12676,7.57874,-12.02524,-9.227289,-12.02524,9.227289,-10.71796,-10.71796,-11.19207,1.254637E-07,-10.71796,10.71796,-11.09632,-1.460858,-10.81071,-2.89672,-10.34012,-4.283019,-11.09632,1.460858,-10.81071,2.89672,-10.34012,4.283019,-9.22729,-12.02524,-9.692615,-5.596034,-8.879264,-6.813299,-9.227289,12.02524,-9.692615,5.596034,-8.879264,6.813299,-7.578741,-13.12676,-7.913987,-7.913987,-6.813299,-8.879264,-5.800517,-14.00369,-5.596034,-9.692615,-7.57874,13.12676,-7.913987,7.913987,-6.813299,8.879264,-5.800517,14.00369,-5.596034,9.692615,-3.923045,-14.641,-4.283019,-10.34012,-2.89672,-10.81071,-1.978449,-15.02781,-1.460858,-11.09632,-3.923045,14.641,-4.283019,10.34012,-2.89672,10.81071,-1.978448,15.02781,-1.460858,11.09632,3.226647E-07,-15.15748,2.804587E-07,-11.19207,1.460858,-11.09632,1.978449,-15.02781,2.89672,-10.81071,3.923045,-14.641,4.283019,-10.34012,9.680777E-08,15.15748,8.414362E-08,11.19207,1.460858,11.09632,1.978448,15.02781,2.89672,10.81071,3.923045,14.641,4.283019,10.34012,5.800517,-14.00369,5.596034,-9.692615,6.813299,-8.879264,7.578741,-13.12676,7.913987,-7.913987,5.800517,14.00369,5.596034,9.692615,6.813299,8.879264,7.57874,13.12676,7.913987,7.913987,9.22729,-12.02524,8.879264,-6.813299,9.692615,-5.596034,9.227289,12.02524,8.879264,6.813299,9.692615,5.596034,10.71796,-10.71796,10.34012,-4.283019,10.81071,-2.89672,10.71796,10.71796,10.34012,4.283019,10.81071,2.89672,12.02524,-9.227289,12.02524,9.227289,11.09632,-1.460858,11.09632,1.460858,11.19207,1.254525E-07,13.12676,7.57874,13.12676,-7.57874,14.00369,5.800517,14.00369,-5.800517,14.641,3.923045,14.641,-3.923044,15.02781,1.978448,15.02781,-1.978448,15.15748,1.613275E-07,0.9913468,18.89764,0.9913468,14.96063,-0.9913464,18.89764,-0.9913464,14.96063,0.9913465,18.89764,0.9913465,14.96063,-0.9913468,18.89764,-0.9913468,14.96063,0.9913464,18.89764,0.9913464,14.96063,-0.9913468,18.89764,-0.9913468,14.96063,0.9913464,18.89764,0.9913464,14.96063,-0.9913469,18.89764,-0.9913469,14.96063,0.9913464,18.89764,0.9913464,14.96063,-0.991347,18.89764,-0.991347,14.96063,0.9913464,18.89764,0.9913464,14.96063,-0.991347,18.89764,-0.991347,14.96063,0.9913463,18.89764,0.9913463,14.96063,-0.991347,18.89764,-0.991347,14.96063,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,-0.9913473,14.96063,-0.9913473,18.89764,0.9913467,14.96063,0.9913467,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,-0.9913463,14.96063,-0.9913463,18.89764,0.991347,14.96063,0.991347,18.89764,-0.9913464,14.96063,-0.9913464,18.89764,0.991347,14.96063,0.991347,18.89764,-0.9913464,14.96063,-0.9913464,18.89764,0.991347,14.96063,0.991347,18.89764,-0.9913464,14.96063,-0.9913464,18.89764,0.9913469,14.96063,0.9913469,18.89764,-0.9913464,14.96063,-0.9913464,18.89764,0.9913468,14.96063,0.9913468,18.89764,-0.9913465,14.96063,-0.9913465,18.89764,0.9913468,14.96063,0.9913468,18.89764,-0.9913468,14.96063,-0.9913468,18.89764,0.9913464,14.96063,0.9913464,18.89764,-0.9913468,14.96063,-0.9913468,18.89764,0.9913464,14.96063,0.9913464,18.89764,-0.9913469,14.96063,-0.9913469,18.89764,0.9913464,14.96063,0.9913464,18.89764,-0.991347,14.96063,-0.991347,18.89764,0.9913464,14.96063,0.9913464,18.89764,-0.991347,14.96063,-0.991347,18.89764,0.9913464,14.96063,0.9913464,18.89764,-0.991347,14.96063,-0.991347,18.89764,0.9913463,14.96063,0.9913463,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913463,14.96063,-0.991347,14.96063,0.9913463,18.89764,-0.991347,18.89764,0.9913471,14.96063,-0.9913464,14.96063,0.9913471,18.89764,-0.9913464,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,14.96063,-0.9913463,14.96063,0.991347,18.89764,-0.9913463,18.89764,0.991347,18.89764,0.991347,14.96063,-0.9913463,18.89764,-0.9913463,14.96063,0.991347,18.89764,0.991347,14.96063,-0.9913464,18.89764,-0.9913464,14.96063,0.991347,18.89764,0.991347,14.96063,-0.9913464,18.89764,-0.9913464,14.96063,0.9913469,18.89764,0.9913469,14.96063,-0.9913464,18.89764,-0.9913464,14.96063,0.9913468,18.89764,0.9913468,14.96063,-0.9913464,18.89764,-0.9913464,14.96063,-0.731996,11.02362,-0.731996,14.96063,0.7319964,11.02362,0.7319964,14.96063,-0.731996,18.89764,0.7319964,18.89764,-0.7319959,11.02362,-0.7319959,14.96063,0.7319965,11.02362,0.7319965,14.96063,-0.7319959,18.89764,0.7319965,18.89764,-0.7319959,11.02362,-0.7319959,14.96063,0.7319965,11.02362,0.7319965,14.96063,-0.7319959,18.89764,0.7319965,18.89764,-0.7319959,11.02362,-0.7319959,14.96063,0.7319965,11.02362,0.7319965,14.96063,-0.7319959,18.89764,0.7319965,18.89764,-0.7319959,11.02362,-0.7319959,14.96063,0.7319965,11.02362,0.7319965,14.96063,-0.7319959,18.89764,0.7319965,18.89764,0.7319966,11.02362,-0.7319959,11.02362,0.7319966,14.96063,-0.7319959,14.96063,0.7319966,18.89764,-0.7319959,18.89764,0.7319966,11.02362,-0.7319959,11.02362,0.7319966,14.96063,-0.7319959,14.96063,0.7319966,18.89764,-0.7319959,18.89764,0.7319966,11.02362,-0.7319959,11.02362,0.7319966,14.96063,-0.7319959,14.96063,0.7319966,18.89764,-0.7319959,18.89764,0.7319966,11.02362,-0.7319959,11.02362,0.7319966,14.96063,-0.7319959,14.96063,0.7319966,18.89764,-0.7319959,18.89764,0.7319966,11.02362,-0.7319958,11.02362,0.7319966,14.96063,-0.7319958,14.96063,0.7319966,18.89764,-0.7319958,18.89764,0.7319968,11.02362,-0.7319962,11.02362,0.7319968,14.96063,-0.7319962,14.96063,0.7319968,18.89764,-0.7319962,18.89764,0.7319959,11.02362,-0.7319965,11.02362,0.7319959,14.96063,-0.7319965,14.96063,0.7319959,18.89764,-0.7319965,18.89764,0.7319959,11.02362,-0.7319966,11.02362,0.7319959,14.96063,-0.7319966,14.96063,0.7319959,18.89764,-0.7319966,18.89764,0.7319959,11.02362,-0.7319966,11.02362,0.7319959,14.96063,-0.7319966,14.96063,0.7319959,18.89764,-0.7319966,18.89764,0.7319959,11.02362,-0.7319966,11.02362,0.7319959,14.96063,-0.7319966,14.96063,0.7319959,18.89764,-0.7319966,18.89764,0.7319959,11.02362,-0.7319966,11.02362,0.7319959,14.96063,-0.7319966,14.96063,0.7319959,18.89764,-0.7319966,18.89764,-0.7319966,11.02362,-0.7319966,14.96063,0.7319959,11.02362,0.7319959,14.96063,-0.7319966,18.89764,0.7319959,18.89764,-0.7319965,11.02362,-0.7319965,14.96063,0.7319959,11.02362,0.7319959,14.96063,-0.7319965,18.89764,0.7319959,18.89764,-0.7319965,11.02362,-0.7319965,14.96063,0.7319959,11.02362,0.7319959,14.96063,-0.7319965,18.89764,0.7319959,18.89764,-0.7319965,11.02362,-0.7319965,14.96063,0.7319959,11.02362,0.7319959,14.96063,-0.7319965,18.89764,0.7319959,18.89764,-0.7319965,11.02362,-0.7319965,14.96063,0.7319959,11.02362,0.7319959,14.96063,-0.7319965,18.89764,0.7319959,18.89764,-0.7319964,11.02362,-0.7319964,14.96063,0.731996,11.02362,0.731996,14.96063,-0.7319964,18.89764,0.731996,18.89764,-0.7319964,11.02362,-0.7319964,14.96063,0.7319961,11.02362,0.7319961,14.96063,-0.7319964,18.89764,0.7319961,18.89764,-0.731996,11.02362,-0.731996,14.96063,0.7319963,11.02362,0.7319963,14.96063,-0.731996,18.89764,0.7319963,18.89764,-0.731996,11.02362,-0.731996,14.96063,0.7319965,11.02362,0.7319965,14.96063,-0.731996,18.89764,0.7319965,18.89764,-0.7319959,11.02362,-0.7319959,14.96063,0.7319965,11.02362,0.7319965,14.96063,-0.7319959,18.89764,0.7319965,18.89764,-0.7319959,11.02362,-0.7319959,14.96063,0.7319965,11.02362,0.7319965,14.96063,-0.7319959,18.89764,0.7319965,18.89764,-0.7319959,11.02362,-0.7319959,14.96063,0.7319965,11.02362,0.7319965,14.96063,-0.7319959,18.89764,0.7319965,18.89764,-0.7319959,11.02362,-0.7319959,14.96063,0.7319965,11.02362,0.7319965,14.96063,-0.7319959,18.89764,0.7319965,18.89764,0.7319966,11.02362,-0.7319959,11.02362,0.7319966,14.96063,-0.7319959,14.96063,0.7319966,18.89764,-0.7319959,18.89764,0.7319966,11.02362,-0.7319959,11.02362,0.7319966,14.96063,-0.7319959,14.96063,0.7319966,18.89764,-0.7319959,18.89764,0.7319966,11.02362,-0.7319959,11.02362,0.7319966,14.96063,-0.7319959,14.96063,0.7319966,18.89764,-0.7319959,18.89764,0.7319966,11.02362,-0.7319959,11.02362,0.7319966,14.96063,-0.7319959,14.96063,0.7319966,18.89764,-0.7319959,18.89764,0.7319966,11.02362,-0.7319959,11.02362,0.7319966,14.96063,-0.7319959,14.96063,0.7319966,18.89764,-0.7319959,18.89764,0.7319965,11.02362,-0.7319959,11.02362,0.7319965,14.96063,-0.7319959,14.96063,0.7319965,18.89764,-0.7319959,18.89764,0.7319961,11.02362,-0.7319967,11.02362,0.7319961,14.96063,-0.7319967,14.96063,0.7319961,18.89764,-0.7319967,18.89764,0.7319959,11.02362,-0.7319966,11.02362,0.7319959,14.96063,-0.7319966,14.96063,0.7319959,18.89764,-0.7319966,18.89764,0.7319959,11.02362,-0.7319966,11.02362,0.7319959,14.96063,-0.7319966,14.96063,0.7319959,18.89764,-0.7319966,18.89764,0.7319959,11.02362,-0.7319966,11.02362,0.7319959,14.96063,-0.7319966,14.96063,0.7319959,18.89764,-0.7319966,18.89764,0.7319959,11.02362,-0.7319966,11.02362,0.7319959,14.96063,-0.7319966,14.96063,0.7319959,18.89764,-0.7319966,18.89764,0.7319959,11.02362,-0.7319966,11.02362,0.7319959,14.96063,-0.7319966,14.96063,0.7319959,18.89764,-0.7319966,18.89764,-0.7319965,11.02362,-0.7319965,14.96063,0.7319959,11.02362,0.7319959,14.96063,-0.7319965,18.89764,0.7319959,18.89764,-0.7319965,11.02362,-0.7319965,14.96063,0.7319959,11.02362,0.7319959,14.96063,-0.7319965,18.89764,0.7319959,18.89764,-0.7319965,11.02362,-0.7319965,14.96063,0.7319959,11.02362,0.7319959,14.96063,-0.7319965,18.89764,0.7319959,18.89764,-0.7319965,11.02362,-0.7319965,14.96063,0.7319959,11.02362,0.7319959,14.96063,-0.7319965,18.89764,0.7319959,18.89764,-0.7319965,11.02362,-0.7319965,14.96063,0.731996,11.02362,0.731996,14.96063,-0.7319965,18.89764,0.731996,18.89764,-0.7319963,11.02362,-0.7319963,14.96063,0.731996,11.02362,0.731996,14.96063,-0.7319963,18.89764,0.731996,18.89764,-0.7319961,11.02362,-0.7319961,14.96063,0.7319964,11.02362,0.7319964,14.96063,-0.7319961,18.89764,0.7319964,18.89764,-11.19207,1.254637E-07,-11.09632,1.460858,-11.09632,-1.460858,-10.81071,-2.89672,-10.81071,2.89672,-10.34012,-4.283019,-10.34012,4.283019,-9.692615,-5.596034,-9.692615,5.596034,-8.879264,-6.813299,-8.879264,6.813299,-7.913987,-7.913987,-7.913987,7.913987,-6.813299,-8.879264,-6.813299,8.879264,-5.596034,-9.692615,-5.596034,9.692615,-4.283019,-10.34012,-4.283019,10.34012,-2.89672,-10.81071,-2.89672,10.81071,-1.460858,-11.09632,-1.460858,11.09632,2.804587E-07,-11.19207,8.414361E-08,11.19207,1.460858,11.09632,1.460858,-11.09632,2.89672,10.81071,2.89672,-10.81071,4.283019,10.34012,4.283019,-10.34012,5.596034,9.692615,5.596034,-9.692615,6.813299,8.879264,6.813299,-8.879264,7.913987,7.913987,7.913987,-7.913987,8.879264,6.813299,8.879264,-6.813299,9.692615,5.596034,9.692615,-5.596034,10.34012,4.283019,10.34012,-4.283019,10.81071,2.89672,10.81071,-2.89672,11.09632,1.460858,11.09632,-1.460858,11.19207,1.254525E-07,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,2.574927,7.106994E-15,-2.574926,1.421242E-14,2.574927,2.204724,-2.574926,2.204724,-39.37008,2.933592E-07,-39.03326,5.138827,-39.03326,-5.138826,-38.02858,-10.18973,-38.02858,10.18973,-36.37321,-15.06628,-36.37321,15.06628,-34.09549,-19.68504,-34.09549,19.68504,-31.23438,-23.96699,-27.83885,-27.83885,-23.96699,-31.23438,-19.68504,-34.09549,-15.06628,-36.37321,-10.18973,-38.02858,-5.138827,-39.03326,5.866623E-07,-39.37008,5.138827,-39.03326,10.18973,-38.02858,15.06628,-36.37321,19.68504,-34.09549,23.96699,-31.23438,27.83885,-27.83885,31.23438,-23.96699,34.09549,-19.68504,36.37321,-15.06628,38.02858,-10.18973,38.02858,10.18973,39.03326,5.138827,39.03326,-5.138826,39.37008,2.933218E-07,36.37321,15.06628,34.09549,19.68504,31.23438,23.96699,27.83885,27.83885,23.96699,31.23438,19.68504,34.09549,15.06628,36.37321,10.18973,38.02858,5.138826,39.03326,1.87609E-11,39.37008,-5.138826,39.03326,-10.18973,38.02858,-15.06628,36.37321,-19.68504,34.09549,-23.96699,31.23438,-27.83885,27.83885,-31.23438,23.96699,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,7.105427E-15,-2.574926,7.105427E-15,2.574927,2.204724,-2.574926,2.204724,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,2.574927,2.204724,2.574927,2.331873E-16,-2.574926,2.204724,-2.574926,7.338615E-15,2.574927,2.204724,2.574927,7.105427E-15,-2.574926,2.204724,-2.574926,7.105427E-15,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,-2.574927,2.131784E-14,-2.574927,2.204724,2.574926,1.421241E-14,2.574926,2.204724,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,-2.574927,1.421085E-14,-2.574927,2.204724,2.574926,1.421085E-14,2.574926,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,2.574926,1.421085E-14,-2.574927,1.421085E-14,2.574926,2.204724,-2.574927,2.204724,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,-2.574928,4.698328E-18,-2.574928,2.204724,2.574926,2.132098E-14,2.574926,2.204724,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,-39.37008,2.933592E-07,-39.03326,5.138827,-39.03326,-5.138826,-38.02858,-10.18973,-38.18898,2.933583E-07,-38.02858,10.18973,-37.86227,-4.984662,-37.86227,4.984662,-36.37321,-15.06628,-36.88772,-9.884034,-35.28201,-14.61429,-34.09549,-19.68504,-33.07262,-19.09449,-31.23438,-23.96699,-30.29735,-23.24798,-27.83885,-27.83885,-27.00368,-27.00368,-23.96699,-31.23438,-23.24798,-30.29735,-19.68504,-34.09549,-19.09449,-33.07262,-15.06628,-36.37321,-14.61429,-35.28201,-10.18973,-38.02858,-9.884035,-36.88772,-5.138827,-39.03326,-4.984662,-37.86226,5.866623E-07,-39.37008,5.866624E-07,-38.18898,5.138827,-39.03326,4.984662,-37.86226,9.884035,-36.88772,10.18973,-38.02858,14.61429,-35.28201,15.06628,-36.37321,19.09449,-33.07262,19.68504,-34.09549,23.24798,-30.29735,23.96699,-31.23438,27.00368,-27.00368,27.83885,-27.83885,30.29735,-23.24798,31.23438,-23.96699,33.07262,-19.09449,34.09549,-19.68504,35.28201,-14.61429,36.37321,-15.06628,36.88772,-9.884034,38.02858,-10.18973,37.86227,-4.984662,38.18898,2.933218E-07,39.03326,-5.138826,39.03326,5.138827,39.37008,2.933218E-07,38.02858,10.18973,37.86227,4.984662,36.88772,9.884035,36.37321,15.06628,35.28201,14.61429,34.09549,19.68504,33.07262,19.09449,31.23438,23.96699,30.29735,23.24798,27.83885,27.83885,27.00368,27.00368,23.96699,31.23438,23.24798,30.29735,19.68504,34.09549,19.09449,33.07262,15.06628,36.37321,14.61429,35.28201,10.18973,38.02858,9.884034,36.88772,5.138826,39.03326,4.984662,37.86226,1.761816E-08,38.18898,1.875886E-11,39.37008,-4.984662,37.86226,-5.138826,39.03326,-9.884034,36.88772,-10.18973,38.02858,-14.61429,35.28201,-15.06628,36.37321,-19.09449,33.07262,-19.68504,34.09549,-23.24798,30.29735,-23.96699,31.23438,-27.00368,27.00368,-27.83885,27.83885,-30.29735,23.24798,-31.23438,23.96699,-33.07262,19.09449,-34.09549,19.68504,-35.28201,14.61429,-36.37321,15.06628,-36.88772,9.884035,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,2.574926,2.204724,2.574926,0,-2.574927,2.204724,-2.574927,0,2.574926,0,-2.574927,0,2.574926,2.204724,-2.574927,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,2.574927,2.131628E-14,-2.574926,2.131628E-14,2.574927,2.204724,-2.574926,2.204724,-2.574926,2.131628E-14,-2.574926,2.204724,2.574927,2.131628E-14,2.574927,2.204724,-11.19207,1.254637E-07,-11.09632,1.460858,-11.09632,-1.460858,-10.81071,-2.89672,-10.81071,2.89672,-10.34012,-4.283019,-10.34012,4.283019,-9.692615,-5.596034,-9.692615,5.596034,-8.879264,-6.813299,-8.879264,6.813299,-7.913987,-7.913987,-7.913987,7.913987,-6.813299,-8.879264,-6.813299,8.879264,-5.596034,-9.692615,-5.596034,9.692615,-4.283019,-10.34012,-4.283019,10.34012,-2.89672,-10.81071,-2.89672,10.81071,-1.460858,-11.09632,-1.460858,11.09632,2.804587E-07,-11.19207,8.414361E-08,11.19207,1.460858,11.09632,1.460858,-11.09632,2.89672,10.81071,2.89672,-10.81071,4.283019,10.34012,4.283019,-10.34012,5.596034,9.692615,5.596034,-9.692615,6.813299,8.879264,6.813299,-8.879264,7.913987,7.913987,7.913987,-7.913987,8.879264,6.813299,8.879264,-6.813299,9.692615,5.596034,9.692615,-5.596034,10.34012,4.283019,10.34012,-4.283019,10.81071,2.89672,10.81071,-2.89672,11.09632,1.460858,11.09632,-1.460858,11.19207,1.254525E-07,-27.55906,2.9335E-07,-27.32328,3.597179,-27.32328,-3.597178,-26.62,-7.132808,-26.62,7.132808,-25.46125,-10.54639,-25.46125,10.54639,-23.86684,-13.77953,-23.86684,13.77953,-21.86407,-16.77689,-21.86407,16.77689,-19.4872,-19.48719,-19.4872,19.48719,-16.77689,-21.86407,-16.77689,21.86407,-13.77953,-23.86684,-13.77953,23.86684,-13.77953,1.46675E-07,-13.66164,-1.798589,-13.66164,1.798589,-10.54639,-25.46125,-10.54639,25.46125,-13.31,-3.566404,-13.31,3.566404,-12.73062,-5.273197,-12.73062,5.273197,-11.93342,-6.889764,-10.93203,-8.388445,-9.743598,-9.743597,-11.93342,6.889764,-10.93203,8.388445,-9.743598,9.743597,-7.132809,-26.62,-8.388445,-10.93203,-6.889764,-11.93342,-7.132809,26.62,-8.388445,10.93203,-6.889764,11.93342,-3.597179,-27.32328,-5.273197,-12.73062,-3.566404,-13.31,-3.597179,27.32328,-5.273197,12.73062,-3.566404,13.31,5.866628E-07,-27.55906,1.76013E-07,27.55906,-1.79859,-13.66164,2.933314E-07,-13.77953,1.79859,-13.66164,-1.798589,13.66164,8.800686E-08,13.77953,1.798589,13.66164,3.597179,-27.32328,3.566404,-13.31,5.273197,-12.73062,3.597179,27.32328,3.566404,13.31,5.273197,12.73062,7.132809,-26.62,6.889764,-11.93342,8.388445,-10.93203,7.132809,26.62,6.889764,11.93342,8.388445,10.93203,10.54639,-25.46125,9.743598,-9.743597,10.93203,-8.388445,13.77953,-23.86684,10.54639,25.46125,9.743598,9.743597,10.93203,8.388445,11.93342,-6.889764,13.77953,23.86684,12.73062,-5.273197,11.93342,6.889764,13.31,-3.566404,12.73062,5.273197,13.66164,-1.798589,13.31,3.566404,13.66164,1.798589,13.77953,1.466611E-07,16.77689,21.86407,16.77689,-21.86407,19.4872,19.48719,19.4872,-19.48719,21.86407,16.77689,21.86407,-16.77689,23.86684,13.77953,23.86684,-13.77953,25.46125,10.54639,25.46125,-10.54639,26.62,7.132808,26.62,-7.132808,27.32328,3.597179,27.32328,-3.597178,27.55906,2.93323E-07 + } + UVIndex: *5748 { + a: 0,2,1,3,1,2,2,4,3,5,3,4,6,8,7,9,7,8,7,9,10,11,10,9,12,14,13,15,13,14,14,16,15,17,15,16,18,20,19,21,19,20,20,22,21,23,21,22,24,26,25,27,25,26,25,27,28,29,28,27,30,32,31,33,31,32,34,36,35,37,35,36,37,38,35,39,35,38,40,42,41,43,41,42,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,57,58,55,59,55,58,60,62,61,63,61,62,64,66,65,67,65,66,67,68,65,69,65,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,81,82,79,83,79,82,84,86,85,87,85,86,87,88,85,89,85,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,189,191,193,192,191,194,192,193,195,194,193,196,194,195,197,196,195,198,196,197,199,198,197,200,199,197,199,201,198,202,200,197,203,200,202,204,203,202,205,198,201,206,205,201,207,205,206,208,204,202,209,204,208,210,209,208,211,205,207,212,211,207,213,211,212,214,210,208,215,210,214,216,215,214,217,216,214,218,216,217,219,211,213,220,219,213,221,219,220,222,219,221,223,222,221,224,218,217,225,218,224,226,225,224,227,226,224,228,226,227,229,228,227,230,228,229,231,222,223,232,231,223,233,231,232,234,231,233,235,234,233,236,234,235,237,236,235,238,230,229,239,230,238,240,239,238,241,240,238,242,240,241,243,236,237,244,243,237,245,243,244,246,243,245,247,246,245,248,242,241,249,242,248,250,249,248,251,250,248,252,250,251,253,246,247,254,253,247,255,253,254,256,253,255,257,256,255,258,252,251,259,252,258,260,259,258,261,256,257,262,261,257,263,261,262,264,260,258,265,260,264,266,265,264,267,261,263,268,267,263,269,267,268,270,266,264,271,267,269,272,266,270,273,271,269,274,271,273,274,272,270,271,274,270,275,271,270,276,275,270,277,275,276,278,277,276,279,277,278,280,279,278,281,279,280,282,281,280,283,281,282,284,286,285,287,285,286,288,285,287,289,288,287,290,288,289,291,290,289,292,290,291,293,292,291,294,292,293,295,294,293,296,294,295,297,296,295,298,296,297,299,298,297,300,298,299,301,300,299,301,299,302,303,300,301,304,302,299,305,300,303,306,302,304,307,305,303,308,306,304,309,305,307,310,308,304,311,310,304,312,311,304,313,305,309,314,305,313,315,305,314,316,312,304,317,312,316,318,317,316,319,305,315,320,319,315,321,319,320,322,318,316,323,318,322,324,323,322,325,319,321,326,325,321,327,325,326,328,324,322,329,325,327,330,324,328,331,330,328,332,331,328,333,329,327,334,329,333,335,329,334,336,332,328,337,332,336,338,337,336,339,329,335,340,339,335,341,339,340,342,338,336,343,338,342,344,343,342,345,339,341,346,345,341,347,345,346,348,344,342,349,344,348,350,349,348,351,350,348,352,345,347,353,352,347,354,352,353,355,350,351,356,352,354,357,355,351,358,356,354,359,357,351,360,356,358,361,359,351,362,356,360,363,356,362,364,356,363,364,361,351,365,356,364,351,365,364,366,365,351,367,365,366,368,367,366,369,367,368,370,369,368,371,369,370,372,371,370,373,371,372,374,373,372,375,373,374,376,375,374,377,375,376,378,377,376,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,414,416,415,417,415,416,418,420,419,421,419,420,422,424,423,425,423,424,424,426,425,427,425,426,428,430,429,431,429,430,431,430,432,433,432,430,434,436,435,437,435,436,436,438,437,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,447,446,448,449,448,446,450,452,451,453,451,452,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,465,463,464,465,464,466,467,466,464,468,470,469,471,469,470,471,470,472,473,472,470,474,476,475,477,475,476,478,480,479,481,479,480,482,484,483,485,483,484,486,488,487,489,487,488,490,492,491,493,491,492,492,494,493,495,493,494,496,498,497,499,497,498,500,502,501,503,501,502,504,506,505,507,505,506,508,510,509,511,509,510,512,514,513,515,513,514,516,518,517,519,517,518,520,522,521,523,521,522,524,526,525,527,525,526,528,530,529,531,529,530,532,534,533,535,533,534,534,536,535,537,535,536,538,540,539,541,539,540,541,542,539,543,539,542,544,546,545,547,545,546,548,550,549,551,549,550,552,554,553,555,553,554,555,556,553,557,553,556,558,560,559,561,559,560,562,564,563,565,563,564,566,568,567,569,567,568,570,572,571,573,571,572,574,576,575,577,575,576,576,578,577,579,577,578,580,582,581,583,581,582,584,586,585,587,585,586,588,590,589,591,589,590,592,594,593,595,593,594,596,598,597,599,597,598,600,602,601,603,601,602,604,606,605,607,605,606,608,610,609,611,609,610,612,614,613,615,613,614,616,618,617,619,617,618,620,622,621,623,621,622,624,626,625,627,625,626,626,628,627,629,627,628,630,632,631,633,631,632,634,636,635,637,635,636,638,640,639,641,639,640,642,644,643,645,643,644,646,648,647,649,647,648,650,652,651,653,651,652,652,654,653,655,653,654,656,658,657,659,657,658,660,659,658,661,659,660,662,661,660,663,661,662,664,663,662,665,663,664,666,665,664,667,665,666,668,667,666,669,667,668,669,668,670,671,667,669,672,670,668,673,667,671,674,670,672,675,674,672,676,675,672,677,673,671,678,673,677,679,673,678,680,676,672,681,676,680,682,681,680,683,673,679,684,683,679,685,683,684,686,682,680,687,682,686,688,687,686,689,683,685,690,689,685,691,689,690,692,688,686,693,688,692,694,693,692,695,694,692,696,694,695,697,696,695,698,696,697,699,689,691,700,699,691,701,699,700,702,699,701,703,702,701,704,702,703,705,704,703,706,698,697,707,698,706,708,707,706,709,708,706,710,708,709,711,704,705,712,711,705,713,711,712,714,711,713,715,714,713,716,710,709,717,710,716,718,717,716,719,714,715,720,719,715,721,719,720,722,718,716,723,718,722,724,723,722,725,719,721,726,725,721,727,725,726,728,724,722,729,724,728,730,729,728,731,725,727,732,731,727,733,731,732,734,730,728,735,731,733,736,730,734,737,735,733,738,736,734,739,735,737,740,738,734,740,735,739,734,735,740,741,735,734,742,735,741,743,742,741,744,742,743,745,744,743,746,744,745,747,746,745,748,746,747,749,748,747,750,748,749,751,750,749,752,754,753,755,753,754,755,754,756,757,756,754,758,760,759,761,759,760,761,760,762,763,762,760,764,766,765,767,765,766,767,766,768,769,768,766,770,772,771,773,771,772,774,776,775,777,775,776,778,780,779,781,779,780,781,780,782,783,782,780,784,786,785,787,785,786,786,788,787,789,787,788,790,792,791,793,791,792,793,792,794,795,794,792,796,798,797,799,797,798,798,800,799,801,799,800,802,804,803,805,803,804,806,808,807,809,807,808,810,812,811,813,811,812,814,816,815,817,815,816,816,818,817,819,817,818,820,822,821,823,821,822,823,822,824,825,824,822,826,828,827,829,827,828,830,832,831,833,831,832,832,834,833,835,833,834,836,838,837,839,837,838,840,842,841,843,841,842,844,846,845,847,845,846,848,850,849,851,849,850,852,854,853,855,853,854,856,858,857,859,857,858,860,862,861,863,861,862,864,866,865,867,865,866,868,870,869,871,869,870,872,874,873,875,873,874,876,878,877,879,877,878,880,882,881,883,881,882,884,886,885,887,885,886,888,890,889,891,889,890,892,894,893,895,893,894,896,898,897,899,897,898,900,902,901,903,901,902,904,906,905,907,905,906,908,910,909,911,909,910,912,914,913,915,913,914,916,918,917,919,917,918,920,922,921,923,921,922,924,926,925,927,925,926,928,930,929,931,929,930,932,934,933,935,933,934,936,938,937,939,937,938,940,942,941,943,941,942,944,946,945,947,945,946,948,950,949,951,949,950,952,954,953,955,953,954,956,958,957,959,957,958,959,960,957,961,957,960,962,964,963,965,963,964,966,968,967,969,967,968,970,972,971,973,971,972,973,974,971,975,971,974,976,978,977,979,977,978,978,980,979,981,979,980,982,984,983,985,983,984,984,986,985,987,985,986,988,990,989,991,989,990,990,992,991,993,991,992,994,996,995,997,995,996,998,1000,999,1001,999,1000,1000,1002,1001,1003,1001,1002,1004,1006,1005,1007,1005,1006,1007,1008,1005,1009,1005,1008,1010,1012,1011,1013,1011,1012,1013,1012,1014,1015,1014,1012,1016,1018,1017,1019,1017,1018,1020,1022,1021,1023,1021,1022,1024,1026,1025,1027,1025,1026,1028,1030,1029,1031,1029,1030,1032,1034,1033,1035,1033,1034,1036,1038,1037,1039,1037,1038,1040,1042,1041,1043,1041,1042,1044,1046,1045,1047,1045,1046,1048,1050,1049,1051,1049,1050,1052,1054,1053,1055,1053,1054,1054,1056,1055,1057,1055,1056,1058,1060,1059,1061,1059,1060,1062,1064,1063,1065,1063,1064,1065,1066,1063,1067,1063,1066,1068,1070,1069,1071,1069,1070,1072,1074,1073,1075,1073,1074,1076,1078,1077,1079,1077,1078,1080,1082,1081,1083,1081,1082,1084,1086,1085,1087,1085,1086,1088,1090,1089,1091,1089,1090,1092,1094,1093,1095,1093,1094,1096,1098,1097,1099,1097,1098,1100,1102,1101,1103,1101,1102,1102,1104,1103,1105,1103,1104,1106,1108,1107,1109,1107,1108,1110,1112,1111,1113,1111,1112,1113,1114,1111,1115,1111,1114,1116,1118,1117,1119,1117,1118,1120,1122,1121,1123,1121,1122,1124,1126,1125,1127,1125,1126,1128,1130,1129,1131,1129,1130,1132,1134,1133,1135,1133,1134,1136,1138,1137,1139,1137,1138,1140,1142,1141,1143,1141,1142,1144,1146,1145,1147,1145,1146,1148,1150,1149,1151,1149,1150,1152,1154,1153,1155,1153,1154,1155,1154,1156,1157,1156,1154,1158,1160,1159,1161,1159,1160,1161,1160,1162,1163,1162,1160,1164,1166,1165,1167,1165,1166,1167,1166,1168,1169,1168,1166,1170,1172,1171,1173,1171,1172,1173,1172,1174,1175,1174,1172,1176,1178,1177,1179,1177,1178,1179,1178,1180,1181,1180,1178,1182,1184,1183,1185,1183,1184,1185,1184,1186,1187,1186,1184,1188,1190,1189,1191,1189,1190,1191,1190,1192,1193,1192,1190,1194,1196,1195,1197,1195,1196,1196,1198,1197,1199,1197,1198,1200,1202,1201,1203,1201,1202,1202,1204,1203,1205,1203,1204,1206,1208,1207,1209,1207,1208,1208,1210,1209,1211,1209,1210,1212,1214,1213,1215,1213,1214,1214,1216,1215,1217,1215,1216,1218,1220,1219,1221,1219,1220,1220,1222,1221,1223,1221,1222,1224,1226,1225,1227,1225,1226,1225,1227,1228,1229,1228,1227,1230,1232,1231,1233,1231,1232,1232,1234,1233,1235,1233,1234,1236,1238,1237,1239,1237,1238,1238,1240,1239,1241,1239,1240,1242,1244,1243,1245,1243,1244,1244,1246,1245,1247,1245,1246,1248,1250,1249,1251,1249,1250,1250,1252,1251,1253,1251,1252,1254,1256,1255,1257,1255,1256,1256,1258,1257,1259,1257,1258,1260,1262,1261,1263,1261,1262,1262,1264,1263,1265,1263,1264,1266,1268,1267,1269,1267,1268,1269,1270,1267,1271,1267,1270,1272,1274,1273,1275,1273,1274,1275,1276,1273,1277,1273,1276,1278,1280,1279,1281,1279,1280,1281,1282,1279,1283,1279,1282,1284,1286,1285,1287,1285,1286,1287,1288,1285,1289,1285,1288,1290,1292,1291,1293,1291,1292,1293,1294,1291,1295,1291,1294,1296,1298,1297,1299,1297,1298,1299,1300,1297,1301,1297,1300,1302,1304,1303,1305,1303,1304,1305,1306,1303,1307,1303,1306,1308,1310,1309,1311,1309,1310,1311,1312,1309,1313,1309,1312,1314,1316,1315,1317,1315,1316,1317,1318,1315,1319,1315,1318,1320,1322,1321,1323,1321,1322,1323,1324,1321,1325,1321,1324,1326,1328,1327,1329,1327,1328,1329,1330,1327,1331,1327,1330,1332,1334,1333,1335,1333,1334,1335,1336,1333,1337,1333,1336,1338,1340,1339,1341,1339,1340,1340,1342,1341,1343,1341,1342,1344,1346,1345,1347,1345,1346,1346,1348,1347,1349,1347,1348,1350,1352,1351,1353,1351,1352,1352,1354,1353,1355,1353,1354,1356,1358,1357,1359,1357,1358,1358,1360,1359,1361,1359,1360,1362,1364,1363,1365,1363,1364,1364,1366,1365,1367,1365,1366,1368,1370,1369,1371,1369,1370,1370,1372,1371,1373,1371,1372,1374,1376,1375,1377,1375,1376,1376,1378,1377,1379,1377,1378,1380,1382,1381,1383,1381,1382,1382,1384,1383,1385,1383,1384,1386,1388,1387,1389,1387,1388,1388,1390,1389,1391,1389,1390,1392,1394,1393,1395,1393,1394,1394,1396,1395,1397,1395,1396,1398,1400,1399,1401,1399,1400,1400,1402,1401,1403,1401,1402,1404,1406,1405,1407,1405,1406,1406,1408,1407,1409,1407,1408,1410,1412,1411,1413,1411,1412,1413,1412,1414,1415,1414,1412,1416,1418,1417,1419,1417,1418,1419,1418,1420,1421,1420,1418,1422,1424,1423,1425,1423,1424,1425,1424,1426,1427,1426,1424,1428,1430,1429,1431,1429,1430,1431,1430,1432,1433,1432,1430,1434,1436,1435,1437,1435,1436,1437,1436,1438,1439,1438,1436,1440,1442,1441,1443,1441,1442,1444,1446,1445,1447,1445,1446,1448,1450,1449,1451,1449,1450,1452,1454,1453,1455,1453,1454,1456,1458,1457,1459,1457,1458,1460,1462,1461,1463,1461,1462,1464,1466,1465,1467,1465,1466,1468,1470,1469,1471,1469,1470,1472,1474,1473,1475,1473,1474,1476,1478,1477,1479,1477,1478,1480,1482,1481,1483,1481,1482,1484,1486,1485,1487,1485,1486,1488,1490,1489,1491,1489,1490,1492,1494,1493,1495,1493,1494,1496,1498,1497,1499,1497,1498,1500,1502,1501,1503,1501,1502,1504,1506,1505,1507,1505,1506,1508,1510,1509,1511,1509,1510,1512,1514,1513,1515,1513,1514,1516,1518,1517,1519,1517,1518,1520,1522,1521,1523,1521,1522,1524,1526,1525,1527,1525,1526,1528,1530,1529,1531,1529,1530,1532,1534,1533,1535,1533,1534,1536,1538,1537,1539,1537,1538,1540,1542,1541,1543,1541,1542,1544,1546,1545,1547,1545,1546,1548,1550,1549,1551,1549,1550,1552,1554,1553,1555,1553,1554,1556,1558,1557,1559,1557,1558,1560,1562,1561,1563,1561,1562,1564,1566,1565,1567,1565,1566,1568,1570,1569,1571,1569,1570,1572,1574,1573,1575,1573,1574,1576,1578,1577,1579,1577,1578,1580,1582,1581,1583,1581,1582,1584,1586,1585,1587,1585,1586,1588,1590,1589,1591,1589,1590,1592,1594,1593,1595,1593,1594,1596,1598,1597,1599,1597,1598,1600,1602,1601,1603,1601,1602,1604,1606,1605,1607,1605,1606,1608,1610,1609,1611,1609,1610,1612,1614,1613,1615,1613,1614,1616,1618,1617,1619,1617,1618,1620,1622,1621,1623,1621,1622,1624,1626,1625,1627,1625,1626,1628,1630,1629,1631,1629,1630,1632,1634,1633,1635,1633,1634,1636,1633,1635,1637,1636,1635,1638,1636,1637,1639,1638,1637,1640,1638,1639,1641,1640,1639,1642,1640,1641,1643,1642,1641,1644,1642,1643,1642,1644,1645,1646,1644,1643,1647,1646,1643,1648,1647,1643,1649,1645,1644,1650,1645,1649,1651,1645,1650,1652,1648,1643,1653,1648,1652,1654,1653,1652,1655,1645,1651,1656,1655,1651,1657,1655,1656,1658,1654,1652,1659,1654,1658,1660,1659,1658,1661,1660,1658,1662,1660,1661,1663,1655,1657,1664,1663,1657,1665,1663,1664,1666,1663,1665,1667,1666,1665,1668,1662,1661,1669,1662,1668,1670,1669,1668,1671,1670,1668,1672,1670,1671,1673,1666,1667,1674,1673,1667,1675,1673,1674,1676,1673,1675,1677,1676,1675,1678,1672,1671,1679,1672,1678,1680,1679,1678,1681,1680,1678,1682,1680,1681,1683,1682,1681,1684,1682,1683,1685,1676,1677,1686,1685,1677,1687,1685,1686,1688,1685,1687,1689,1688,1687,1690,1688,1689,1691,1690,1689,1692,1684,1683,1693,1684,1692,1694,1693,1692,1695,1694,1692,1696,1694,1695,1697,1690,1691,1698,1697,1691,1699,1697,1698,1700,1697,1699,1701,1700,1699,1702,1696,1695,1703,1696,1702,1704,1703,1702,1705,1700,1701,1706,1705,1701,1707,1705,1706,1708,1704,1702,1709,1704,1708,1710,1709,1708,1711,1705,1707,1712,1711,1707,1713,1711,1712,1714,1710,1708,1715,1711,1713,1716,1710,1714,1717,1715,1713,1718,1715,1717,1718,1716,1714,1715,1718,1714,1719,1715,1714,1720,1719,1714,1721,1719,1720,1722,1721,1720,1723,1721,1722,1724,1723,1722,1725,1723,1724,1726,1725,1724,1727,1725,1726,1728,1730,1729,1731,1729,1730,1732,1734,1733,1735,1733,1734,1736,1738,1737,1739,1737,1738,1740,1742,1741,1743,1741,1742,1744,1746,1745,1747,1745,1746,1748,1750,1749,1751,1749,1750,1752,1754,1753,1755,1753,1754,1756,1758,1757,1759,1757,1758,1760,1762,1761,1763,1761,1762,1764,1766,1765,1767,1765,1766,1768,1770,1769,1771,1769,1770,1772,1774,1773,1775,1773,1774,1776,1778,1777,1779,1777,1778,1780,1782,1781,1783,1781,1782,1784,1786,1785,1787,1785,1786,1788,1790,1789,1791,1789,1790,1792,1794,1793,1795,1793,1794,1796,1798,1797,1799,1797,1798,1800,1802,1801,1803,1801,1802,1804,1806,1805,1807,1805,1806,1808,1810,1809,1811,1809,1810,1812,1814,1813,1815,1813,1814,1816,1818,1817,1819,1817,1818,1820,1822,1821,1823,1821,1822,1824,1826,1825,1827,1825,1826,1828,1830,1829,1831,1829,1830,1832,1834,1833,1835,1833,1834,1836,1838,1837,1839,1837,1838,1840,1842,1841,1843,1841,1842,1844,1846,1845,1847,1845,1846,1848,1850,1849,1851,1849,1850,1852,1854,1853,1855,1853,1854,1856,1858,1857,1859,1857,1858,1860,1862,1861,1863,1861,1862,1864,1866,1865,1867,1865,1866,1868,1870,1869,1871,1869,1870,1872,1874,1873,1875,1873,1874,1876,1878,1877,1879,1877,1878,1880,1882,1881,1883,1881,1882,1884,1886,1885,1887,1885,1886,1888,1890,1889,1891,1889,1890,1892,1894,1893,1895,1893,1894,1896,1898,1897,1899,1897,1898,1900,1902,1901,1903,1901,1902,1904,1906,1905,1907,1905,1906,1908,1910,1909,1911,1909,1910,1912,1914,1913,1915,1913,1914,1916,1918,1917,1919,1917,1918,1920,1922,1921,1923,1921,1922,1921,1923,1924,1925,1924,1923,1926,1928,1927,1929,1927,1928,1927,1929,1930,1931,1930,1929,1932,1934,1933,1935,1933,1934,1933,1935,1936,1937,1936,1935,1938,1940,1939,1941,1939,1940,1939,1941,1942,1943,1942,1941,1944,1946,1945,1947,1945,1946,1945,1947,1948,1949,1948,1947,1950,1952,1951,1953,1951,1952,1952,1954,1953,1955,1953,1954,1956,1958,1957,1959,1957,1958,1958,1960,1959,1961,1959,1960,1962,1964,1963,1965,1963,1964,1964,1966,1965,1967,1965,1966,1968,1970,1969,1971,1969,1970,1970,1972,1971,1973,1971,1972,1974,1976,1975,1977,1975,1976,1976,1978,1977,1979,1977,1978,1980,1982,1981,1983,1981,1982,1982,1984,1983,1985,1983,1984,1986,1988,1987,1989,1987,1988,1988,1990,1989,1991,1989,1990,1992,1994,1993,1995,1993,1994,1994,1996,1995,1997,1995,1996,1998,2000,1999,2001,1999,2000,2000,2002,2001,2003,2001,2002,2004,2006,2005,2007,2005,2006,2006,2008,2007,2009,2007,2008,2010,2012,2011,2013,2011,2012,2012,2014,2013,2015,2013,2014,2016,2018,2017,2019,2017,2018,2017,2019,2020,2021,2020,2019,2022,2024,2023,2025,2023,2024,2023,2025,2026,2027,2026,2025,2028,2030,2029,2031,2029,2030,2029,2031,2032,2033,2032,2031,2034,2036,2035,2037,2035,2036,2035,2037,2038,2039,2038,2037,2040,2042,2041,2043,2041,2042,2041,2043,2044,2045,2044,2043,2046,2048,2047,2049,2047,2048,2047,2049,2050,2051,2050,2049,2052,2054,2053,2055,2053,2054,2053,2055,2056,2057,2056,2055,2058,2060,2059,2061,2059,2060,2059,2061,2062,2063,2062,2061,2064,2066,2065,2067,2065,2066,2065,2067,2068,2069,2068,2067,2070,2072,2071,2073,2071,2072,2071,2073,2074,2075,2074,2073,2076,2078,2077,2079,2077,2078,2077,2079,2080,2081,2080,2079,2082,2084,2083,2085,2083,2084,2083,2085,2086,2087,2086,2085,2088,2090,2089,2091,2089,2090,2089,2091,2092,2093,2092,2091,2094,2096,2095,2097,2095,2096,2096,2098,2097,2099,2097,2098,2100,2102,2101,2103,2101,2102,2102,2104,2103,2105,2103,2104,2106,2108,2107,2109,2107,2108,2108,2110,2109,2111,2109,2110,2112,2114,2113,2115,2113,2114,2114,2116,2115,2117,2115,2116,2118,2120,2119,2121,2119,2120,2120,2122,2121,2123,2121,2122,2124,2126,2125,2127,2125,2126,2126,2128,2127,2129,2127,2128,2130,2132,2131,2133,2131,2132,2132,2134,2133,2135,2133,2134,2136,2138,2137,2139,2137,2138,2138,2140,2139,2141,2139,2140,2142,2144,2143,2145,2143,2144,2144,2146,2145,2147,2145,2146,2148,2150,2149,2151,2149,2150,2150,2152,2151,2153,2151,2152,2154,2156,2155,2157,2155,2156,2156,2158,2157,2159,2157,2158,2160,2162,2161,2163,2161,2162,2162,2164,2163,2165,2163,2164,2166,2168,2167,2169,2167,2168,2167,2169,2170,2171,2170,2169,2172,2174,2173,2175,2173,2174,2173,2175,2176,2177,2176,2175,2178,2180,2179,2181,2179,2180,2179,2181,2182,2183,2182,2181,2184,2186,2185,2187,2185,2186,2185,2187,2188,2189,2188,2187,2190,2192,2191,2193,2191,2192,2191,2193,2194,2195,2194,2193,2196,2198,2197,2199,2197,2198,2197,2199,2200,2201,2200,2199,2202,2204,2203,2205,2203,2204,2203,2205,2206,2207,2206,2205,2208,2210,2209,2211,2209,2210,2212,2209,2211,2213,2212,2211,2214,2212,2213,2215,2214,2213,2216,2214,2215,2217,2216,2215,2218,2216,2217,2219,2218,2217,2220,2218,2219,2221,2220,2219,2222,2220,2221,2223,2222,2221,2224,2222,2223,2225,2224,2223,2226,2224,2225,2227,2226,2225,2228,2226,2227,2229,2228,2227,2230,2228,2229,2231,2230,2229,2232,2230,2231,2233,2232,2231,2234,2233,2231,2235,2233,2234,2236,2235,2234,2237,2235,2236,2238,2237,2236,2239,2237,2238,2240,2239,2238,2241,2239,2240,2242,2241,2240,2243,2241,2242,2244,2243,2242,2245,2243,2244,2246,2245,2244,2247,2245,2246,2248,2247,2246,2249,2247,2248,2250,2249,2248,2251,2249,2250,2252,2251,2250,2253,2251,2252,2254,2253,2252,2255,2253,2254,2256,2258,2257,2259,2257,2258,2260,2262,2261,2263,2261,2262,2264,2266,2265,2267,2265,2266,2268,2270,2269,2271,2269,2270,2272,2274,2273,2275,2273,2274,2276,2273,2275,2277,2276,2275,188,2276,2277,2276,188,2278,190,188,2277,189,2278,188,2279,190,2277,191,190,2279,193,191,2279,2280,2278,189,192,2280,189,194,2280,192,2281,193,2279,195,193,2281,197,195,2281,2282,197,2281,202,197,2282,2283,202,2282,208,202,2283,2284,208,2283,214,208,2284,2285,214,2284,217,214,2285,2286,217,2285,224,217,2286,2287,224,2286,227,224,2287,2288,227,2287,229,227,2288,2289,229,2288,238,229,2289,241,238,2289,2290,241,2289,248,241,2290,2291,248,2290,251,248,2291,2292,251,2291,258,251,2292,2293,258,2292,264,258,2293,2294,264,2293,270,264,2294,2295,270,2294,276,270,2295,2296,276,2295,278,276,2296,280,278,2296,2297,280,2296,282,280,2297,283,282,2297,2298,283,2297,2299,283,2298,2300,2299,2298,2301,2300,2298,2302,2300,2301,2299,2303,283,283,2303,281,281,2303,279,2303,2304,279,279,2304,277,277,2304,275,2304,2305,275,275,2305,271,2305,2306,271,271,2306,267,2306,2307,267,267,2307,261,2307,2308,261,261,2308,256,2308,2309,256,256,2309,253,2309,2310,253,253,2310,246,2310,2311,246,246,2311,243,243,2311,236,2311,2312,236,236,2312,234,2312,2313,234,234,2313,231,2313,2314,231,231,2314,222,2314,2315,222,222,2315,219,2315,2316,219,219,2316,211,2316,2317,211,211,2317,205,2317,2318,205,205,2318,198,2318,2319,198,198,2319,196,196,2319,194,2319,2280,194,2320,2322,2321,2323,2321,2322,2324,2326,2325,2327,2325,2326,2328,2330,2329,2331,2329,2330,2332,2334,2333,2335,2333,2334,2336,2338,2337,2339,2337,2338,2340,2342,2341,2343,2341,2342,2344,2346,2345,2347,2345,2346,2348,2350,2349,2351,2349,2350,2352,2354,2353,2355,2353,2354,2356,2358,2357,2359,2357,2358,2360,2362,2361,2363,2361,2362,2364,2366,2365,2367,2365,2366,2368,2370,2369,2371,2369,2370,2372,2374,2373,2375,2373,2374,2376,2378,2377,2379,2377,2378,2380,2382,2381,2383,2381,2382,2384,2386,2385,2387,2385,2386,2388,2390,2389,2391,2389,2390,2392,2394,2393,2395,2393,2394,2396,2398,2397,2399,2397,2398,2400,2402,2401,2403,2401,2402,2404,2406,2405,2407,2405,2406,2408,2410,2409,2411,2409,2410,2412,2414,2413,2415,2413,2414,2416,2418,2417,2419,2417,2418,2420,2417,2419,2417,2420,2421,2422,2420,2419,2423,2421,2420,2424,2422,2419,2425,2422,2424,2426,2425,2424,2427,2426,2424,2428,2426,2427,2429,2428,2427,2430,2428,2429,2431,2430,2429,2432,2430,2431,2433,2432,2431,2434,2432,2433,2435,2434,2433,2436,2434,2435,2437,2436,2435,2438,2436,2437,2439,2438,2437,2440,2438,2439,2441,2440,2439,2442,2440,2441,2443,2442,2441,2444,2442,2443,2445,2444,2443,2446,2444,2445,2447,2446,2445,2448,2447,2445,2449,2447,2448,2450,2449,2448,2451,2449,2450,2452,2451,2450,2453,2451,2452,2454,2453,2452,2455,2453,2454,2456,2455,2454,2457,2455,2456,2458,2457,2456,2459,2457,2458,2460,2459,2458,2461,2459,2460,2462,2461,2460,2463,2461,2462,2464,2463,2462,2465,2463,2464,2466,2465,2464,2467,2466,2464,2468,2466,2467,2469,2468,2467,2468,2470,2466,2466,2470,2471,2471,2470,2472,2470,2473,2472,2472,2473,2474,2473,2475,2474,2474,2475,2476,2475,2477,2476,2476,2477,2478,2477,2479,2478,2478,2479,2480,2479,2481,2480,2480,2481,2482,2481,2483,2482,2482,2483,2484,2483,2485,2484,2484,2485,2486,2485,2487,2486,2486,2487,2488,2487,2489,2488,2488,2489,2490,2490,2489,2491,2489,2492,2491,2491,2492,2493,2492,2494,2493,2493,2494,2495,2494,2496,2495,2495,2496,2497,2496,2498,2497,2497,2498,2499,2498,2500,2499,2499,2500,2501,2500,2502,2501,2501,2502,2503,2502,2504,2503,2503,2504,2505,2504,2506,2505,2505,2506,2507,2506,2508,2507,2507,2508,2509,2508,2510,2509,2509,2510,2511,2511,2510,2423,2510,2421,2423,2512,2514,2513,2515,2513,2514,2516,2518,2517,2519,2517,2518,2520,2522,2521,2523,2521,2522,2524,2526,2525,2527,2525,2526,2528,2530,2529,2531,2529,2530,2532,2534,2533,2535,2533,2534,2536,2538,2537,2539,2537,2538,2540,2542,2541,2543,2541,2542,2544,2546,2545,2547,2545,2546,2548,2550,2549,2551,2549,2550,2552,2554,2553,2555,2553,2554,2556,2558,2557,2559,2557,2558,2560,2562,2561,2563,2561,2562,2564,2566,2565,2567,2565,2566,2568,2570,2569,2571,2569,2570,2572,2574,2573,2575,2573,2574,2576,2578,2577,2579,2577,2578,2580,2582,2581,2583,2581,2582,2584,2586,2585,2587,2585,2586,2588,2590,2589,2591,2589,2590,2592,2594,2593,2595,2593,2594,2596,2593,2595,2597,2596,2595,2598,2596,2597,2599,2598,2597,2600,2598,2599,2601,2600,2599,2602,2600,2601,2603,2602,2601,2604,2602,2603,2605,2604,2603,2606,2604,2605,2607,2606,2605,2608,2606,2607,2609,2608,2607,2610,2608,2609,2611,2610,2609,2612,2610,2611,2613,2612,2611,2614,2612,2613,2615,2614,2613,2616,2614,2615,2617,2616,2615,2618,2617,2615,2619,2617,2618,2620,2619,2618,2621,2619,2620,2622,2621,2620,2623,2621,2622,2624,2623,2622,2625,2623,2624,2626,2625,2624,2627,2625,2626,2628,2627,2626,2629,2627,2628,2630,2629,2628,2631,2629,2630,2632,2631,2630,2633,2631,2632,2634,2633,2632,2635,2633,2634,2636,2635,2634,2637,2635,2636,2638,2637,2636,2639,2637,2638,2640,2642,2641,2643,2641,2642,2644,2641,2643,2645,2644,2643,2646,2644,2645,2647,2646,2645,2648,2646,2647,2649,2648,2647,2650,2648,2649,2651,2650,2649,2652,2650,2651,2653,2652,2651,2654,2652,2653,2655,2654,2653,2656,2654,2655,2657,2656,2655,2657,2655,2658,2659,2656,2657,2660,2658,2655,2661,2656,2659,2662,2658,2660,2663,2661,2659,2664,2662,2660,2665,2661,2663,2666,2664,2660,2667,2666,2660,2668,2667,2660,2669,2661,2665,2670,2661,2669,2671,2661,2670,2672,2668,2660,2673,2668,2672,2674,2673,2672,2675,2661,2671,2676,2675,2671,2677,2675,2676,2678,2674,2672,2679,2674,2678,2680,2679,2678,2681,2675,2677,2682,2681,2677,2683,2681,2682,2684,2680,2678,2685,2681,2683,2686,2680,2684,2687,2686,2684,2688,2687,2684,2689,2685,2683,2690,2685,2689,2691,2685,2690,2692,2688,2684,2693,2688,2692,2694,2693,2692,2695,2685,2691,2696,2695,2691,2697,2695,2696,2698,2694,2692,2699,2694,2698,2700,2699,2698,2701,2695,2697,2702,2701,2697,2703,2701,2702,2704,2700,2698,2705,2700,2704,2706,2705,2704,2707,2706,2704,2708,2701,2703,2709,2708,2703,2710,2708,2709,2711,2706,2707,2712,2708,2710,2713,2711,2707,2714,2712,2710,2715,2713,2707,2716,2712,2714,2717,2715,2707,2718,2712,2716,2719,2712,2718,2720,2712,2719,2720,2717,2707,2721,2712,2720,2707,2721,2720,2722,2721,2707,2723,2721,2722,2724,2723,2722,2725,2723,2724,2726,2725,2724,2727,2725,2726,2728,2727,2726,2729,2727,2728,2730,2729,2728,2731,2729,2730,2732,2731,2730,2733,2731,2732,2734,2733,2732,2735,2733,2734 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *1916 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainRoundDetail, Model::RootNode + C: "OO",5548854079493786264,0 + + ;Geometry::, Model::Mesh fountainRoundDetail + C: "OO",5253319047977497699,5548854079493786264 + + ;Material::stone, Model::Mesh fountainRoundDetail + C: "OO",7184,5548854079493786264 + + ;Material::stoneDark, Model::Mesh fountainRoundDetail + C: "OO",7174,5548854079493786264 + + ;Material::water, Model::Mesh fountainRoundDetail + C: "OO",7194,5548854079493786264 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRoundDetail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRoundDetail.fbx.import new file mode 100644 index 0000000..3acd735 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRoundDetail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dhv4jlncrj2m5" +path="res://.godot/imported/fountainRoundDetail.fbx-776dc765bd49c2e3885b8a9314dc3e65.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainRoundDetail.fbx" +dest_files=["res://.godot/imported/fountainRoundDetail.fbx-776dc765bd49c2e3885b8a9314dc3e65.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquare.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquare.fbx new file mode 100644 index 0000000..5d63a32 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquare.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 43 + Millisecond: 999 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainSquare.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainSquare.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5190422281981741895, "Model::fountainSquare", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5332489430459921370, "Geometry::", "Mesh" { + Vertices: *480 { + a: 9.625,1.4,-10,9.7,1.12,-9.7,10,1.4,-9.625,-9.7,1.12,-9.7,-9.625,1.4,-10,-10,1.4,-9.625,-9.7,1.12,9.7,-10,1.4,9.625,-9.625,1.4,10,10,1.4,9.625,9.7,1.12,9.7,9.625,1.4,10,9.625,1.4,-10,10,1.4,-9.625,9.625,2.8,-10,10,2.8,-9.625,-10,1.4,-9.625,-10,2.8,-9.625,-10,1.4,9.625,-10,2.8,9.625,-9.7,0.56,-9.7,9.7,0.56,-9.7,-9.7,1.12,-9.7,9.7,1.12,-9.7,7,0,-7,-7,0,-7,7,1.4,-7,-7,1.4,-7,7,2.8,-7,-7,2.8,-7,-9.7,0.56,-9.7,-9.7,1.12,-9.7,-9.7,0.56,9.7,-9.7,1.12,9.7,-9.625,1.4,-10,9.625,1.4,-10,-9.625,2.8,-10,9.625,2.8,-10,-9.625,1.4,-10,-9.625,2.8,-10,-10,1.4,-9.625,-10,2.8,-9.625,9.7,1.12,-9.7,9.625,1.4,-10,-9.7,1.12,-9.7,-9.625,1.4,-10,-7,2.8,7,-7,2.8,-7,-7,1.4,7,-7,1.4,-7,-7,0,-7,-7,0,7,-10,1.4,9.625,-10,2.8,9.625,-9.625,1.4,10,-9.625,2.8,10,7,0,-7,7,1.4,-7,7,0,7,7,1.4,7,7,2.8,7,7,2.8,-7,10,1.4,-9.625,9.7,1.12,-9.7,10,1.4,9.625,9.7,1.12,9.7,-7,0,7,7,0,7,-7,1.4,7,7,1.4,7,-7,2.8,7,7,2.8,7,-9.7,1.12,-9.7,-10,1.4,-9.625,-9.7,1.12,9.7,-10,1.4,9.625,9.7,1.12,9.7,-9.7,1.12,9.7,9.625,1.4,10,-9.625,1.4,10,9.7,1.12,-9.7,9.7,0.56,-9.7,9.7,1.12,9.7,9.7,0.56,9.7,9.625,1.4,10,-9.625,1.4,10,9.625,2.8,10,-9.625,2.8,10,9.7,0.56,9.7,-9.7,0.56,9.7,9.7,1.12,9.7,-9.7,1.12,9.7,10,2.8,-9.625,10,1.4,-9.625,10,2.8,9.625,10,1.4,9.625,10,1.4,9.625,9.625,1.4,10,10,2.8,9.625,9.625,2.8,10,7,0,-7,7,0,7,-7,0,-7,-7,0,7,9.25,2.8,9.25,7,2.8,-7,9.25,2.8,-9.25,-9.25,2.8,-9.25,7,2.8,7,-7,2.8,-7,-9.25,2.8,9.25,-7,2.8,7,-10,0,-10,7,0,-7,10,0,-10,10,0,10,-7,0,-7,7,0,7,-7,0,7,-10,0,10,-10,0,-10,-10,0.56,-10,-10,0,10,-10,0.56,10,-10,0,-10,10,0,-10,-10,0.56,-10,10,0.56,-10,10,2.8,-9.625,10,2.8,9.625,9.625,2.8,-10,9.625,2.8,10,-9.625,2.8,-10,-9.625,2.8,10,-10,2.8,-9.625,-10,2.8,9.625,10,0.56,-10,10,0,-10,10,0.56,10,10,0,10,10,0,10,-10,0,10,10,0.56,10,-10,0.56,10,10,0.56,10,9.7,0.56,-9.7,10,0.56,-10,-10,0.56,-10,9.7,0.56,9.7,-9.7,0.56,-9.7,-10,0.56,10,-9.7,0.56,9.7,7,1.4,-7,7,1.4,7,-7,1.4,-7,-7,1.4,7,-7,1.4,-7,7,1.4,7,7,1.4,-7,-7,1.4,7 + } + PolygonVertexIndex: *306 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,49,48,-51,51,50,-49,52,54,-54,55,53,-55,56,58,-58,59,57,-59,59,60,-58,61,57,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,105,108,-105,109,105,-108,110,104,-109,111,109,-108,111,110,-109,107,110,-112,112,114,-114,115,113,-115,116,112,-114,113,115,-118,118,112,-117,119,117,-116,118,117,-120,112,118,-120,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,106,131,-131,132,106,-131,106,104,-132,107,106,-133,133,131,-105,110,107,-133,110,133,-105,132,133,-111,134,133,-133,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,145,148,-145,149,145,-148,150,144,-149,151,149,-148,151,150,-149,147,150,-152,152,154,-154,155,153,-155,156,158,-158,157,159,-157 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *918 { + a: 0.614791,-0.4940285,-0.614791,0.614791,-0.4940285,-0.614791,0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,0.614791,-0.614791,-0.4940285,0.614791,-0.614791,-0.4940285,0.614791,0.614791,-0.4940285,0.614791,0.614791,-0.4940285,0.614791,0.614791,-0.4940285,0.614791,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *320 { + a: 1.043957,31.78284,-3.513634E-12,30.51495,-1.043957,31.78284,-6.227907E-12,30.51495,-1.043957,31.78284,1.043957,31.78284,-1.467271E-12,30.51495,-1.043957,31.78284,1.043957,31.78284,1.043957,31.78284,4.341416E-12,30.51495,-1.043957,31.78284,1.043957,5.511811,-1.043957,5.511811,1.043957,11.02362,-1.043957,11.02362,-37.8937,5.511811,-37.8937,11.02362,37.8937,5.511811,37.8937,11.02362,38.18898,2.204724,-38.18898,2.204724,38.18898,4.409449,-38.18898,4.409449,27.55906,-2.463215E-12,-27.55906,-2.463215E-12,27.55906,5.511811,-27.55906,5.511811,27.55906,11.02362,-27.55906,11.02362,-38.18898,2.204724,-38.18898,4.409449,38.18898,2.204724,38.18898,4.409449,37.8937,5.511811,-37.8937,5.511811,37.8937,11.02362,-37.8937,11.02362,-1.043957,5.511811,-1.043957,11.02362,1.043957,5.511811,1.043957,11.02362,-38.18898,30.9269,-37.8937,32.54251,38.18898,30.9269,37.8937,32.54251,-27.55906,11.02362,27.55906,11.02362,-27.55906,5.511811,27.55906,5.511811,27.55906,2.842171E-12,-27.55906,2.842171E-12,-1.043957,5.511811,-1.043957,11.02362,1.043957,5.511811,1.043957,11.02362,-27.55906,-2.557954E-12,-27.55906,5.511811,27.55906,-2.557954E-12,27.55906,5.511811,27.55906,11.02362,-27.55906,11.02362,37.8937,32.54251,38.18898,30.9269,-37.8937,32.54251,-38.18898,30.9269,27.55906,-2.510584E-12,-27.55906,-2.510584E-12,27.55906,5.511811,-27.55906,5.511811,27.55906,11.02362,-27.55906,11.02362,-38.18898,30.9269,-37.8937,32.54251,38.18898,30.9269,37.8937,32.54251,38.18898,30.9269,-38.18898,30.9269,37.8937,32.54251,-37.8937,32.54251,38.18898,4.409449,38.18898,2.204724,-38.18898,4.409449,-38.18898,2.204724,37.8937,5.511811,-37.8937,5.511811,37.8937,11.02362,-37.8937,11.02362,38.18898,2.204724,-38.18898,2.204724,38.18898,4.409449,-38.18898,4.409449,37.8937,11.02362,37.8937,5.511811,-37.8937,11.02362,-37.8937,5.511811,1.043957,5.511811,-1.043957,5.511811,1.043957,11.02362,-1.043957,11.02362,-27.55906,-27.55906,-27.55906,27.55906,27.55906,-27.55906,27.55906,27.55906,-36.41732,36.41732,-27.55906,-27.55906,-36.41732,-36.41732,36.41732,-36.41732,-27.55906,27.55906,27.55906,-27.55906,36.41732,36.41732,27.55906,27.55906,-39.37008,-39.37008,27.55906,-27.55906,39.37008,-39.37008,39.37008,39.37008,-27.55906,-27.55906,27.55906,27.55906,-27.55906,27.55906,-39.37008,39.37008,-39.37008,0,-39.37008,2.204724,39.37008,0,39.37008,2.204724,39.37008,1.635679E-27,-39.37008,1.635679E-27,39.37008,2.204724,-39.37008,2.204724,-39.37008,-37.8937,-39.37008,37.8937,-37.8937,-39.37008,-37.8937,39.37008,37.8937,-39.37008,37.8937,39.37008,39.37008,-37.8937,39.37008,37.8937,39.37008,2.204724,39.37008,0,-39.37008,2.204724,-39.37008,0,39.37008,0,-39.37008,0,39.37008,2.204724,-39.37008,2.204724,-39.37008,39.37008,-38.18898,-38.18898,-39.37008,-39.37008,39.37008,-39.37008,-38.18898,38.18898,38.18898,-38.18898,39.37008,39.37008,38.18898,38.18898,-27.55906,-27.55906,-27.55906,27.55906,27.55906,-27.55906,27.55906,27.55906,27.55906,-27.55906,-27.55906,27.55906,-27.55906,-27.55906,27.55906,27.55906 + } + UVIndex: *306 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,49,48,50,51,50,48,52,54,53,55,53,54,56,58,57,59,57,58,59,60,57,61,57,60,62,64,63,65,63,64,66,68,67,69,67,68,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,105,108,104,109,105,107,110,104,108,111,109,107,111,110,108,107,110,111,112,114,113,115,113,114,116,112,113,113,115,117,118,112,116,119,117,115,118,117,119,112,118,119,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,106,131,130,132,106,130,106,104,131,107,106,132,133,131,104,110,107,132,110,133,104,132,133,110,134,133,132,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,145,148,144,149,145,147,150,144,148,151,149,147,151,150,148,147,150,151,152,154,153,155,153,154,156,158,157,157,159,156 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *102 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainSquare, Model::RootNode + C: "OO",5190422281981741895,0 + + ;Geometry::, Model::Mesh fountainSquare + C: "OO",5332489430459921370,5190422281981741895 + + ;Material::stone, Model::Mesh fountainSquare + C: "OO",7184,5190422281981741895 + + ;Material::stoneDark, Model::Mesh fountainSquare + C: "OO",7174,5190422281981741895 + + ;Material::water, Model::Mesh fountainSquare + C: "OO",7194,5190422281981741895 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquare.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquare.fbx.import new file mode 100644 index 0000000..b483fe0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquare.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ti874lyuva10" +path="res://.godot/imported/fountainSquare.fbx-6405b867a9363a87a21c00f93ee1c817.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquare.fbx" +dest_files=["res://.godot/imported/fountainSquare.fbx-6405b867a9363a87a21c00f93ee1c817.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquareDetail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquareDetail.fbx new file mode 100644 index 0000000..b1ce848 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquareDetail.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 72 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fountainSquareDetail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fountainSquareDetail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4885659526220692345, "Model::fountainSquareDetail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5593571254669066897, "Geometry::", "Mesh" { + Vertices: *816 { + a: 9.625,1.4,-10,9.7,1.12,-9.7,10,1.4,-9.625,-9.7,1.12,-9.7,-9.625,1.4,-10,-10,1.4,-9.625,-9.7,1.12,9.7,-10,1.4,9.625,-9.625,1.4,10,10,1.4,9.625,9.7,1.12,9.7,9.625,1.4,10,9.625,1.4,-10,10,1.4,-9.625,9.625,2.8,-10,10,2.8,-9.625,-10,1.4,-9.625,-10,2.8,-9.625,-10,1.4,9.625,-10,2.8,9.625,-9.7,0.56,-9.7,9.7,0.56,-9.7,-9.7,1.12,-9.7,9.7,1.12,-9.7,7,0,-7,-7,0,-7,7,1.4,-7,-7,1.4,-7,7,2.8,-7,-7,2.8,-7,-9.7,0.56,-9.7,-9.7,1.12,-9.7,-9.7,0.56,9.7,-9.7,1.12,9.7,-9.625,1.4,-10,9.625,1.4,-10,-9.625,2.8,-10,9.625,2.8,-10,-9.625,1.4,-10,-9.625,2.8,-10,-10,1.4,-9.625,-10,2.8,-9.625,9.7,1.12,-9.7,9.625,1.4,-10,-9.7,1.12,-9.7,-9.625,1.4,-10,-7,2.8,7,-7,2.8,-7,-7,1.4,7,-7,1.4,-7,-7,0,-7,-7,0,7,-10,1.4,9.625,-10,2.8,9.625,-9.625,1.4,10,-9.625,2.8,10,7,0,-7,7,1.4,-7,7,0,7,7,1.4,7,7,2.8,7,7,2.8,-7,10,1.4,-9.625,9.7,1.12,-9.7,10,1.4,9.625,9.7,1.12,9.7,-7,0,7,7,0,7,-7,1.4,7,7,1.4,7,-7,2.8,7,7,2.8,7,-9.7,1.12,-9.7,-10,1.4,-9.625,-9.7,1.12,9.7,-10,1.4,9.625,9.7,1.12,9.7,-9.7,1.12,9.7,9.625,1.4,10,-9.625,1.4,10,9.7,1.12,-9.7,9.7,0.56,-9.7,9.7,1.12,9.7,9.7,0.56,9.7,9.625,1.4,10,-9.625,1.4,10,9.625,2.8,10,-9.625,2.8,10,9.7,0.56,9.7,-9.7,0.56,9.7,9.7,1.12,9.7,-9.7,1.12,9.7,10,2.8,-9.625,10,1.4,-9.625,10,2.8,9.625,10,1.4,9.625,10,1.4,9.625,9.625,1.4,10,10,2.8,9.625,9.625,2.8,10,2.5,2.8,2.5,2.5,2.8,-2.5,2.5,1.4,2.5,2.5,1.4,-2.5,2.5,0,-2.5,2.5,0,2.5,2.5,2.8,-2.5,-2.5,2.8,-2.5,2.5,1.4,-2.5,-2.5,1.4,-2.5,2.5,0,-2.5,-2.5,0,-2.5,-2.5,0,2.5,-2.5,0,-2.5,-2.5,1.4,2.5,-2.5,1.4,-2.5,-2.5,2.8,-2.5,-2.5,2.8,2.5,-2.5,2.8,2.5,2.5,2.8,2.5,-2.5,1.4,2.5,2.5,1.4,2.5,-2.5,0,2.5,2.5,0,2.5,-2.5,2.8,-2.5,2.5,2.8,-2.5,-2.75,3.8,-2.75,2.75,3.8,-2.75,2.75,3.8,-2.75,2.5,2.8,-2.5,2.75,3.8,2.75,2.5,2.8,2.5,-2.75,3.8,-2.75,-2.75,3.8,2.75,-2.5,2.8,-2.5,-2.5,2.8,2.5,2.5,2.8,2.5,-2.5,2.8,2.5,2.75,3.8,2.75,-2.75,3.8,2.75,2.75,4.8,-2.75,2.75,3.8,-2.75,2.75,4.8,2.75,2.75,3.8,2.75,-2.75,3.8,-2.75,2.75,3.8,-2.75,-2.75,4.8,-2.75,2.75,4.8,-2.75,-2.75,3.8,-2.75,-2.75,4.8,-2.75,-2.75,3.8,2.75,-2.75,4.8,2.75,2.75,3.8,2.75,-2.75,3.8,2.75,2.75,4.8,2.75,-2.75,4.8,2.75,-1.740251,4.8,-1.740251,-1.740251,3.8,-1.740251,-1.740251,4.8,1.740251,-1.740251,3.8,1.740251,-1.740251,2.8,-1.740251,-1.740251,2.8,1.740251,-1.740251,2.8,1.740251,1.740251,2.8,1.740251,-1.740251,3.8,1.740251,1.740251,3.8,1.740251,-1.740251,4.8,1.740251,1.740251,4.8,1.740251,1.740251,2.8,-1.740251,1.740251,3.8,-1.740251,1.740251,2.8,1.740251,1.740251,3.8,1.740251,1.740251,4.8,-1.740251,1.740251,4.8,1.740251,-1.740251,4.8,-1.740251,1.740251,4.8,-1.740251,-1.740251,3.8,-1.740251,1.740251,3.8,-1.740251,-1.740251,2.8,-1.740251,1.740251,2.8,-1.740251,1.740251,2.8,1.740251,-1.740251,2.8,1.740251,1.740251,2.8,-1.740251,-1.740251,2.8,-1.740251,9.25,2.8,9.25,7,2.8,-7,9.25,2.8,-9.25,-9.25,2.8,-9.25,7,2.8,7,-7,2.8,-7,-9.25,2.8,9.25,-7,2.8,7,-2.5,0,2.5,2.5,0,2.5,-7,0,7,-2.5,0,-2.5,7,0,7,-7,0,-7,2.5,0,-2.5,7,0,-7,-2.75,4.8,2.75,1.740251,4.8,1.740251,2.75,4.8,2.75,2.75,4.8,-2.75,-1.740251,4.8,1.740251,1.740251,4.8,-1.740251,-1.740251,4.8,-1.740251,-2.75,4.8,-2.75,-10,0,-10,7,0,-7,10,0,-10,10,0,10,-7,0,-7,7,0,7,-7,0,7,-10,0,10,-10,0,-10,-10,0.56,-10,-10,0,10,-10,0.56,10,-10,0,-10,10,0,-10,-10,0.56,-10,10,0.56,-10,10,2.8,-9.625,10,2.8,9.625,9.625,2.8,-10,9.625,2.8,10,-9.625,2.8,-10,-9.625,2.8,10,-10,2.8,-9.625,-10,2.8,9.625,10,0.56,-10,10,0,-10,10,0.56,10,10,0,10,10,0,10,-10,0,10,10,0.56,10,-10,0.56,10,10,0.56,10,9.7,0.56,-9.7,10,0.56,-10,-10,0.56,-10,9.7,0.56,9.7,-9.7,0.56,-9.7,-10,0.56,10,-9.7,0.56,9.7,1.740251,3.8,1.740251,-1.740251,3.8,1.740251,1.740251,3.8,-1.740251,-1.740251,3.8,-1.740251,1.740251,3.8,-1.740251,-1.740251,3.8,1.740251,1.740251,3.8,1.740251,-1.740251,3.8,-1.740251,7,1.4,7,2.5,1.4,-2.5,7,1.4,-7,-7,1.4,-7,2.5,1.4,2.5,-2.5,1.4,-2.5,-7,1.4,7,-2.5,1.4,2.5,7,1.4,-7,2.5,1.4,-2.5,7,1.4,7,-7,1.4,-7,2.5,1.4,2.5,-2.5,1.4,-2.5,-7,1.4,7,-2.5,1.4,2.5 + } + PolygonVertexIndex: *546 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,49,48,-51,51,50,-49,52,54,-54,55,53,-55,56,58,-58,59,57,-59,59,60,-58,61,57,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,103,102,-105,105,104,-103,106,108,-108,109,107,-109,108,110,-110,111,109,-111,112,114,-114,115,113,-115,115,114,-117,117,116,-115,118,120,-120,121,119,-121,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,157,159,-161,161,160,-160,162,164,-164,165,163,-165,164,166,-166,167,165,-167,168,170,-170,171,169,-171,169,171,-173,173,172,-172,174,176,-176,177,175,-177,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,185,188,-185,189,185,-188,190,184,-189,191,189,-188,191,190,-189,187,190,-192,192,194,-194,195,194,-193,196,193,-195,197,194,-196,193,196,-199,195,198,-198,196,199,-199,197,198,-200,200,202,-202,203,201,-203,204,200,-202,201,203,-206,206,200,-205,207,205,-204,206,205,-208,200,206,-208,208,210,-210,211,209,-211,212,208,-210,209,211,-214,214,208,-213,215,213,-212,214,213,-216,208,214,-216,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,186,227,-227,228,186,-227,186,184,-228,187,186,-229,229,227,-185,190,187,-229,190,229,-185,228,229,-191,230,229,-229,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,241,244,-241,245,241,-244,246,240,-245,247,245,-244,247,246,-245,243,246,-248,248,250,-250,251,249,-251,252,254,-254,253,255,-253,256,258,-258,259,257,-259,260,256,-258,261,257,-260,256,260,-263,259,262,-262,263,262,-261,261,262,-264,264,266,-266,265,267,-265,266,268,-266,265,269,-268,268,266,-271,270,267,-270,270,271,-269,270,269,-272 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1638 { + a: 0.614791,-0.4940285,-0.614791,0.614791,-0.4940285,-0.614791,0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,-0.614791,-0.614791,-0.4940285,0.614791,-0.614791,-0.4940285,0.614791,-0.614791,-0.4940285,0.614791,0.614791,-0.4940285,0.614791,0.614791,-0.4940285,0.614791,0.614791,-0.4940285,0.614791,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,0,-0.7310552,-0.6823182,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0.6823182,-0.7310552,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,-0.6823182,-0.7310552,0,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,0,-0.7310552,0.6823182,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.9914113,-0.1307809,0,1,0,0,0.9914113,-0.1307809,0,1,0,0,0.9914113,-0.1307809,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.1307809,-0.9914113,0,0,-1,0,-0.1307809,-0.9914113,0,0,-1,0,-0.1307809,-0.9914113,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9914113,-0.1307809,0,-0.9914113,-0.1307809,0,-0.9914113,-0.1307809,0,-1,0,0,0,-0.1307809,0.9914113,0,0,1,0,-0.1307809,0.9914113,0,0,1,0,-0.1307809,0.9914113,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1307809,-0.9914113,0,-0.1121652,-0.9936895,0,-0.1307809,-0.9914113,0,-0.1121652,-0.9936895,0,-0.1307809,-0.9914113,0,-0.1121652,-0.9936895,0.9936895,-0.1121652,0,0.9936895,-0.1121652,0,0.9914113,-0.1307809,0,0.9914113,-0.1307809,0,0.9914113,-0.1307809,0,0.9936895,-0.1121652,0,-0.9936895,-0.1121652,0,-0.9914113,-0.1307809,0,-0.9936895,-0.1121652,0,-0.9914113,-0.1307809,0,-0.9936895,-0.1121652,0,-0.9914113,-0.1307809,0,0,-0.1307809,0.9914113,0,-0.1121652,0.9936895,0,-0.1307809,0.9914113,0,-0.1121652,0.9936895,0,-0.1307809,0.9914113,0,-0.1121652,0.9936895,1,0,0,1,0,0,0.9936895,-0.1121652,0,0.9936895,-0.1121652,0,0.9936895,-0.1121652,0,1,0,0,0,-0.1121652,-0.9936895,0,0,-1,0,-0.1121652,-0.9936895,0,0,-1,0,-0.1121652,-0.9936895,0,0,-1,-0.9936895,-0.1121652,0,-0.9936895,-0.1121652,0,-1,0,0,-1,0,0,-1,0,0,-0.9936895,-0.1121652,0,0,-0.1121652,0.9936895,0,0,1,0,-0.1121652,0.9936895,0,0,1,0,-0.1121652,0.9936895,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *544 { + a: 1.043957,31.78284,-3.513634E-12,30.51495,-1.043957,31.78284,-6.227907E-12,30.51495,-1.043957,31.78284,1.043957,31.78284,-1.467271E-12,30.51495,-1.043957,31.78284,1.043957,31.78284,1.043957,31.78284,4.341416E-12,30.51495,-1.043957,31.78284,1.043957,5.511811,-1.043957,5.511811,1.043957,11.02362,-1.043957,11.02362,-37.8937,5.511811,-37.8937,11.02362,37.8937,5.511811,37.8937,11.02362,38.18898,2.204724,-38.18898,2.204724,38.18898,4.409449,-38.18898,4.409449,27.55906,2.842171E-13,-27.55906,2.842171E-13,27.55906,5.511811,-27.55906,5.511811,27.55906,11.02362,-27.55906,11.02362,-38.18898,2.204724,-38.18898,4.409449,38.18898,2.204724,38.18898,4.409449,37.8937,5.511811,-37.8937,5.511811,37.8937,11.02362,-37.8937,11.02362,-1.043957,5.511811,-1.043957,11.02362,1.043957,5.511811,1.043957,11.02362,-38.18898,30.9269,-37.8937,32.54251,38.18898,30.9269,37.8937,32.54251,-27.55906,11.02362,27.55906,11.02362,-27.55906,5.511811,27.55906,5.511811,27.55906,3.573642E-25,-27.55906,3.573642E-25,-1.043957,5.511811,-1.043957,11.02362,1.043957,5.511811,1.043957,11.02362,-27.55906,1.421085E-13,-27.55906,5.511811,27.55906,1.421085E-13,27.55906,5.511811,27.55906,11.02362,-27.55906,11.02362,37.8937,32.54251,38.18898,30.9269,-37.8937,32.54251,-38.18898,30.9269,27.55906,2.842171E-13,-27.55906,2.842171E-13,27.55906,5.511811,-27.55906,5.511811,27.55906,11.02362,-27.55906,11.02362,-38.18898,30.9269,-37.8937,32.54251,38.18898,30.9269,37.8937,32.54251,38.18898,30.9269,-38.18898,30.9269,37.8937,32.54251,-37.8937,32.54251,38.18898,4.409449,38.18898,2.204724,-38.18898,4.409449,-38.18898,2.204724,37.8937,5.511811,-37.8937,5.511811,37.8937,11.02362,-37.8937,11.02362,38.18898,2.204724,-38.18898,2.204724,38.18898,4.409449,-38.18898,4.409449,37.8937,11.02362,37.8937,5.511811,-37.8937,11.02362,-37.8937,5.511811,1.043957,5.511811,-1.043957,5.511811,1.043957,11.02362,-1.043957,11.02362,-9.84252,11.02362,9.84252,11.02362,-9.84252,5.511811,9.84252,5.511811,9.84252,2.842171E-12,-9.84252,2.842171E-12,-9.84252,11.02362,9.84252,11.02362,-9.84252,5.511811,9.84252,5.511811,-9.84252,3.045183E-12,9.84252,3.045183E-12,9.84252,-2.842171E-12,-9.84252,-2.842171E-12,9.84252,5.511811,-9.84252,5.511811,-9.84252,11.02362,9.84252,11.02362,-9.84252,11.02362,9.84252,11.02362,-9.84252,5.511811,9.84252,5.511811,-9.84252,-3.045183E-12,9.84252,-3.045183E-12,9.84252,13.08165,-9.84252,13.08165,10.82677,17.13982,-10.82677,17.13982,10.82677,17.13982,9.84252,13.08165,-10.82677,17.13982,-9.84252,13.08165,-10.82677,17.13982,10.82677,17.13982,-9.84252,13.08165,9.84252,13.08165,9.84252,13.08165,-9.84252,13.08165,10.82677,17.13982,-10.82677,17.13982,10.82677,18.89764,10.82677,14.96063,-10.82677,18.89764,-10.82677,14.96063,10.82677,14.96063,-10.82677,14.96063,10.82677,18.89764,-10.82677,18.89764,-10.82677,14.96063,-10.82677,18.89764,10.82677,14.96063,10.82677,18.89764,10.82677,14.96063,-10.82677,14.96063,10.82677,18.89764,-10.82677,18.89764,6.851382,18.89764,6.851382,14.96063,-6.851382,18.89764,-6.851382,14.96063,6.851382,11.02362,-6.851382,11.02362,6.851382,11.02362,-6.851382,11.02362,6.851382,14.96063,-6.851382,14.96063,6.851382,18.89764,-6.851382,18.89764,-6.851382,11.02362,-6.851382,14.96063,6.851382,11.02362,6.851382,14.96063,-6.851382,18.89764,6.851382,18.89764,-6.851382,18.89764,6.851382,18.89764,-6.851382,14.96063,6.851382,14.96063,-6.851382,11.02362,6.851382,11.02362,-6.851382,6.851382,6.851382,6.851382,-6.851382,-6.851382,6.851382,-6.851382,-36.41732,36.41732,-27.55906,-27.55906,-36.41732,-36.41732,36.41732,-36.41732,-27.55906,27.55906,27.55906,-27.55906,36.41732,36.41732,27.55906,27.55906,9.84252,9.84252,-9.84252,9.84252,27.55906,27.55906,9.84252,-9.84252,-27.55906,27.55906,27.55906,-27.55906,-9.84252,-9.84252,-27.55906,-27.55906,10.82677,10.82677,-6.851382,6.851382,-10.82677,10.82677,-10.82677,-10.82677,6.851382,6.851382,-6.851382,-6.851382,6.851382,-6.851382,10.82677,-10.82677,-39.37008,-39.37008,27.55906,-27.55906,39.37008,-39.37008,39.37008,39.37008,-27.55906,-27.55906,27.55906,27.55906,-27.55906,27.55906,-39.37008,39.37008,-39.37008,0,-39.37008,2.204724,39.37008,0,39.37008,2.204724,39.37008,1.635679E-27,-39.37008,1.635679E-27,39.37008,2.204724,-39.37008,2.204724,-39.37008,-37.8937,-39.37008,37.8937,-37.8937,-39.37008,-37.8937,39.37008,37.8937,-39.37008,37.8937,39.37008,39.37008,-37.8937,39.37008,37.8937,39.37008,2.204724,39.37008,0,-39.37008,2.204724,-39.37008,0,39.37008,0,-39.37008,0,39.37008,2.204724,-39.37008,2.204724,-39.37008,39.37008,-38.18898,-38.18898,-39.37008,-39.37008,39.37008,-39.37008,-38.18898,38.18898,38.18898,-38.18898,39.37008,39.37008,38.18898,38.18898,-6.851382,6.851382,6.851382,6.851382,-6.851382,-6.851382,6.851382,-6.851382,-6.851382,-6.851382,6.851382,6.851382,-6.851382,6.851382,6.851382,-6.851382,-27.55906,27.55906,-9.84252,-9.84252,-27.55906,-27.55906,27.55906,-27.55906,-9.84252,9.84252,9.84252,-9.84252,27.55906,27.55906,9.84252,9.84252,-27.55906,-27.55906,-9.84252,-9.84252,-27.55906,27.55906,27.55906,-27.55906,-9.84252,9.84252,9.84252,-9.84252,27.55906,27.55906,9.84252,9.84252 + } + UVIndex: *546 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,49,48,50,51,50,48,52,54,53,55,53,54,56,58,57,59,57,58,59,60,57,61,57,60,62,64,63,65,63,64,66,68,67,69,67,68,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,103,102,104,105,104,102,106,108,107,109,107,108,108,110,109,111,109,110,112,114,113,115,113,114,115,114,116,117,116,114,118,120,119,121,119,120,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,157,159,160,161,160,159,162,164,163,165,163,164,164,166,165,167,165,166,168,170,169,171,169,170,169,171,172,173,172,171,174,176,175,177,175,176,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,185,188,184,189,185,187,190,184,188,191,189,187,191,190,188,187,190,191,192,194,193,195,194,192,196,193,194,197,194,195,193,196,198,195,198,197,196,199,198,197,198,199,200,202,201,203,201,202,204,200,201,201,203,205,206,200,204,207,205,203,206,205,207,200,206,207,208,210,209,211,209,210,212,208,209,209,211,213,214,208,212,215,213,211,214,213,215,208,214,215,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,186,227,226,228,186,226,186,184,227,187,186,228,229,227,184,190,187,228,190,229,184,228,229,190,230,229,228,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,241,244,240,245,241,243,246,240,244,247,245,243,247,246,244,243,246,247,248,250,249,251,249,250,252,254,253,253,255,252,256,258,257,259,257,258,260,256,257,261,257,259,256,260,262,259,262,261,263,262,260,261,262,263,264,266,265,265,267,264,266,268,265,265,269,267,268,266,270,270,267,269,270,271,268,270,269,271 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *182 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7194, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4941176,1,0.9332614 + P: "DiffuseColor", "Color", "", "A",0.4941176,1,0.9332614 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fountainSquareDetail, Model::RootNode + C: "OO",4885659526220692345,0 + + ;Geometry::, Model::Mesh fountainSquareDetail + C: "OO",5593571254669066897,4885659526220692345 + + ;Material::stone, Model::Mesh fountainSquareDetail + C: "OO",7184,4885659526220692345 + + ;Material::stoneDark, Model::Mesh fountainSquareDetail + C: "OO",7174,4885659526220692345 + + ;Material::water, Model::Mesh fountainSquareDetail + C: "OO",7194,4885659526220692345 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquareDetail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquareDetail.fbx.import new file mode 100644 index 0000000..8ca9af0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquareDetail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cwyafh8eaud1n" +path="res://.godot/imported/fountainSquareDetail.fbx-f381ac2528ed91009dd162c67eec6135.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/fountainSquareDetail.fbx" +dest_files=["res://.godot/imported/fountainSquareDetail.fbx-f381ac2528ed91009dd162c67eec6135.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedge.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedge.fbx new file mode 100644 index 0000000..9349c4f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedge.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 124 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "hedge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "hedge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5664295058181572631, "Model::hedge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4821763209480152190, "Geometry::", "Mesh" { + Vertices: *180 { + a: 2.5,0,-5,2.5,1,-5,2.5,0,5,2.5,1,5,5,1,-5,5,0,-5,5,1,5,5,0,5,5,0,5,2.5,0,5,5,1,5,2.5,1,5,4.375,1,5,3.125,1,5,2.5,0,-5,5,0,-5,2.5,1,-5,5,1,-5,3.125,1,-5,4.375,1,-5,3.125,1,-5,3.125,1,5,2.5,1,-5,2.5,1,5,5,1,-5,5,1,5,4.375,1,-5,4.375,1,5,5,0,5,5,0,-5,2.5,0,5,2.5,0,-5,4.375,2.2,5,3.125,2.2,5,4.075,2.5,5,3.425,2.5,5,3.125,2.2,-5,4.375,2.2,-5,3.425,2.5,-5,4.075,2.5,-5,4.075,2.5,-5,4.075,2.5,5,3.425,2.5,-5,3.425,2.5,5,4.375,2.2,-5,4.375,1,-5,4.375,2.2,5,4.375,1,5,3.125,1,-5,3.125,2.2,-5,3.125,1,5,3.125,2.2,5,3.125,2.2,-5,3.425,2.5,-5,3.125,2.2,5,3.425,2.5,5,4.375,2.2,-5,4.375,2.2,5,4.075,2.5,-5,4.075,2.5,5 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,11,-13,14,16,-16,17,15,-17,18,17,-17,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,12,32,-14,33,13,-33,34,33,-33,35,33,-35,18,36,-20,37,19,-37,38,37,-37,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,1,0,0,1,0,0,1,0,0,0.9238795,0.3826834,0,-1,0,0,-1,0,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-1,0,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.3826834,0.9238795,0,0.9238795,0.3826834,0,0.3826834,0.9238795,0,0.9238795,0.3826834,0,0.3826834,0.9238795,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *120 { + a: -19.68504,0,-19.68504,3.937008,19.68504,0,19.68504,3.937008,19.68504,3.937008,19.68504,0,-19.68504,3.937008,-19.68504,0,19.68504,0,9.84252,0,19.68504,3.937008,9.84252,3.937008,17.22441,3.937008,12.30315,3.937008,-9.84252,0,-19.68504,0,-9.84252,3.937008,-19.68504,3.937008,-12.30315,3.937008,-17.22441,3.937008,-12.30315,-19.68504,-12.30315,19.68504,-9.84252,-19.68504,-9.84252,19.68504,-19.68504,-19.68504,-19.68504,19.68504,-17.22441,-19.68504,-17.22441,19.68504,19.68504,19.68504,19.68504,-19.68504,9.84252,19.68504,9.84252,-19.68504,17.22441,8.661417,12.30315,8.661417,16.04331,9.84252,13.48425,9.84252,-12.30315,8.661417,-17.22441,8.661417,-13.48425,9.84252,-16.04331,9.84252,-16.04331,-19.68504,-16.04331,19.68504,-13.48425,-19.68504,-13.48425,19.68504,19.68504,8.661417,19.68504,3.937008,-19.68504,8.661417,-19.68504,3.937008,-19.68504,3.937008,-19.68504,8.661417,19.68504,3.937008,19.68504,8.661417,-19.68504,14.82419,-19.68504,16.49452,19.68504,14.82419,19.68504,16.49452,19.68504,-6.05495,-19.68504,-6.05495,19.68504,-4.384619,-19.68504,-4.384619 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,11,12,14,16,15,17,15,16,18,17,16,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,12,32,13,33,13,32,34,33,32,35,33,34,18,36,19,37,19,36,38,37,36,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh hedge, Model::RootNode + C: "OO",5664295058181572631,0 + + ;Geometry::, Model::Mesh hedge + C: "OO",4821763209480152190,5664295058181572631 + + ;Material::stone, Model::Mesh hedge + C: "OO",7184,5664295058181572631 + + ;Material::foliage, Model::Mesh hedge + C: "OO",7192,5664295058181572631 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedge.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedge.fbx.import new file mode 100644 index 0000000..0c4457c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b7tlrfubg2pyr" +path="res://.godot/imported/hedge.fbx-32f466f1fec34f7cbe70fe5d5a2ce372.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/hedge.fbx" +dest_files=["res://.godot/imported/hedge.fbx-32f466f1fec34f7cbe70fe5d5a2ce372.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeCurved.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeCurved.fbx new file mode 100644 index 0000000..f613491 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeCurved.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 194 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "hedgeCurved.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "hedgeCurved.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5435362403349343639, "Model::hedgeCurved", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5282232559926354910, "Geometry::", "Mesh" { + Vertices: *1428 { + a: 5,0,5,5,0,2.021352E-13,2.5,0,5,4.957224,0,-0.6526309,4.829629,0,-1.294095,4.619398,0,-1.913417,4.330127,0,-2.5,3.966767,0,-3.043807,3.535534,0,-3.535534,3.043807,0,-3.966767,2.5,0,-4.330127,2.5,0,2.021352E-13,2.478612,0,-0.3263155,1.913417,0,-4.619398,2.414814,0,-0.6470476,2.309699,0,-0.9567086,2.165064,0,-1.25,1.983383,0,-1.521904,1.767767,0,-1.767767,1.294095,0,-4.829629,1.521904,0,-1.983383,1.25,0,-2.165064,0.6526309,0,-4.957224,0.9567086,0,-2.309699,0.6470476,0,-2.414814,3.465175E-13,0,-5,0.3263155,0,-2.478612,1.443823E-13,0,-2.5,-5,0,-5,-5,0,-2.5,2.5,0,-4.330127,3.043807,0,-3.966767,2.5,1,-4.330127,3.043807,1,-3.966767,1.913417,0,-4.619398,2.5,0,-4.330127,1.913417,1,-4.619398,2.5,1,-4.330127,1.294095,0,-4.829629,1.913417,0,-4.619398,1.294095,1,-4.829629,1.913417,1,-4.619398,3.465175E-13,0,-5,0.6526309,0,-4.957224,3.465175E-13,1,-5,0.6526309,1,-4.957224,0.6526309,0,-4.957224,1.294095,0,-4.829629,0.6526309,1,-4.957224,1.294095,1,-4.829629,0.6470476,0,-2.414814,0.3263155,0,-2.478612,0.6470476,1,-2.414814,0.3263155,1,-2.478612,0.9567086,0,-2.309699,0.6470476,0,-2.414814,0.9567086,1,-2.309699,0.6470476,1,-2.414814,1.25,0,-2.165064,0.9567086,0,-2.309699,1.25,1,-2.165064,0.9567086,1,-2.309699,0.3263155,0,-2.478612,1.443823E-13,0,-2.5,0.3263155,1,-2.478612,1.443823E-13,1,-2.5,1.767767,0,-1.767767,1.767767,1,-1.767767,1.983383,0,-1.521904,1.983383,1,-1.521904,1.767767,0,-1.767767,1.521904,0,-1.983383,1.767767,1,-1.767767,1.521904,1,-1.983383,1.983383,0,-1.521904,1.983383,1,-1.521904,2.165064,0,-1.25,2.165064,1,-1.25,1.521904,0,-1.983383,1.25,0,-2.165064,1.521904,1,-1.983383,1.25,1,-2.165064,2.165064,0,-1.25,2.165064,1,-1.25,2.309699,0,-0.9567086,2.309699,1,-0.9567086,-5,1,-2.5,-5,1,-3.125,1.443823E-13,1,-2.5,2.021352E-13,1,-3.125,0.3263155,1,-2.478612,0.4078943,1,-3.098265,0.6470476,1,-2.414814,0.8088095,1,-3.018518,0.9567086,1,-2.309699,1.195886,1,-2.887124,1.25,1,-2.165064,1.521904,1,-1.983383,1.5625,1,-2.70633,1.767767,1,-1.767767,1.90238,1,-2.479229,1.983383,1,-1.521904,2.165064,1,-1.25,2.209708,1,-2.209708,2.309699,1,-0.9567086,2.414814,1,-0.6470476,2.478612,1,-0.3263155,2.479229,1,-1.90238,2.5,1,2.021352E-13,2.70633,1,-1.5625,2.5,1,5,2.887124,1,-1.195886,3.018518,1,-0.8088095,3.098265,1,-0.4078943,3.125,1,5,3.125,1,2.021352E-13,2.309699,0,-0.9567086,2.309699,1,-0.9567086,2.414814,0,-0.6470476,2.414814,1,-0.6470476,2.478612,0,-0.3263155,2.478612,1,-0.3263155,2.5,0,2.021352E-13,2.5,1,2.021352E-13,2.414814,0,-0.6470476,2.414814,1,-0.6470476,2.478612,0,-0.3263155,2.478612,1,-0.3263155,4.957224,1,-0.6526309,4.957224,0,-0.6526309,5,1,2.021352E-13,5,0,2.021352E-13,4.619398,1,-1.913417,4.619398,0,-1.913417,4.829629,1,-1.294095,4.829629,0,-1.294095,3.966767,1,-3.043807,3.966767,0,-3.043807,4.330127,1,-2.5,4.330127,0,-2.5,4.330127,1,-2.5,4.330127,0,-2.5,4.619398,1,-1.913417,4.619398,0,-1.913417,-5,1,-4.375,-5,1,-5,3.17641E-13,1,-4.375,3.465175E-13,1,-5,0.5710521,1,-4.337572,0.6526309,1,-4.957224,1.132333,1,-4.225925,1.294095,1,-4.829629,1.67424,1,-4.041973,1.913417,1,-4.619398,2.1875,1,-3.788861,2.5,1,-4.330127,2.663331,1,-3.470921,3.043807,1,-3.966767,3.093592,1,-3.093592,3.470921,1,-2.663331,3.535534,1,-3.535534,3.788861,1,-2.1875,3.966767,1,-3.043807,4.041973,1,-1.67424,4.225925,1,-1.132333,4.330127,1,-2.5,4.337572,1,-0.5710521,4.375,1,2.021352E-13,4.619398,1,-1.913417,4.375,1,5,4.829629,1,-1.294095,4.957224,1,-0.6526309,5,1,5,5,1,2.021352E-13,4.829629,1,-1.294095,4.829629,0,-1.294095,4.957224,1,-0.6526309,4.957224,0,-0.6526309,3.535534,1,-3.535534,3.535534,0,-3.535534,3.966767,1,-3.043807,3.966767,0,-3.043807,3.043807,0,-3.966767,3.535534,0,-3.535534,3.043807,1,-3.966767,3.535534,1,-3.535534,2.5,0,2.021352E-13,2.5,1,2.021352E-13,2.5,0,5,2.5,1,5,5,1,2.021352E-13,5,0,2.021352E-13,5,1,5,5,0,5,5,0,5,2.5,0,5,5,1,5,2.5,1,5,4.375,1,5,3.125,1,5,1.443823E-13,0,-2.5,-5,0,-2.5,1.443823E-13,1,-2.5,-5,1,-2.5,-5,0,-5,3.465175E-13,0,-5,-5,1,-5,3.465175E-13,1,-5,-5,0,-5,-5,1,-5,-5,0,-2.5,-5,1,-4.375,-5,1,-3.125,-5,1,-2.5,2.021352E-13,1,-3.125,-5,1,-3.125,2.021352E-13,2.2,-3.125,-5,2.2,-3.125,3.17641E-13,2.2,-4.375,2.887646E-13,2.5,-4.075,-5,2.2,-4.375,-5,2.5,-4.075,2.021352E-13,2.2,-3.125,-5,2.2,-3.125,2.310117E-13,2.5,-3.425,-5,2.5,-3.425,4.375,2.2,5,3.125,2.2,5,4.075,2.5,5,3.425,2.5,5,4.375,2.2,2.021352E-13,4.375,1,2.021352E-13,4.375,2.2,5,4.375,1,5,3.125,2.2,2.021352E-13,3.425,2.5,2.021352E-13,3.125,2.2,5,3.425,2.5,5,4.375,2.2,2.021352E-13,4.375,2.2,5,4.075,2.5,2.021352E-13,4.075,2.5,5,3.125,1,2.021352E-13,3.125,2.2,2.021352E-13,3.125,1,5,3.125,2.2,5,-5,2.2,-4.375,-5,2.5,-4.075,-5,2.5,-3.425,-5,2.2,-3.125,-5,1,-4.375,3.17641E-13,1,-4.375,-5,2.2,-4.375,3.17641E-13,2.2,-4.375,4.225925,2.2,-1.132333,4.225925,1,-1.132333,4.337572,2.2,-0.5710521,4.337572,1,-0.5710521,3.788861,2.2,-2.1875,3.788861,1,-2.1875,4.041973,2.2,-1.67424,4.041973,1,-1.67424,2.209708,1,-2.209708,1.90238,1,-2.479229,2.209708,2.2,-2.209708,1.90238,2.2,-2.479229,3.018518,1,-0.8088095,3.018518,2.2,-0.8088095,3.098265,1,-0.4078943,3.098265,2.2,-0.4078943,3.470921,2.2,-2.663331,3.470921,1,-2.663331,3.788861,2.2,-2.1875,3.788861,1,-2.1875,2.209708,1,-2.209708,2.209708,2.2,-2.209708,2.479229,1,-1.90238,2.479229,2.2,-1.90238,0.8088095,1,-3.018518,0.4078943,1,-3.098265,0.8088095,2.2,-3.018518,0.4078943,2.2,-3.098265,1.132333,1,-4.225925,1.67424,1,-4.041973,1.132333,2.2,-4.225925,1.67424,2.2,-4.041973,0.4078943,1,-3.098265,2.021352E-13,1,-3.125,0.4078943,2.2,-3.098265,2.021352E-13,2.2,-3.125,4.041973,2.2,-1.67424,4.041973,1,-1.67424,4.225925,2.2,-1.132333,4.225925,1,-1.132333,4.337572,2.2,-0.5710521,4.337572,1,-0.5710521,4.375,2.2,2.021352E-13,4.375,1,2.021352E-13,3.093592,2.2,-3.093592,3.093592,1,-3.093592,3.470921,2.2,-2.663331,3.470921,1,-2.663331,2.663331,1,-3.470921,3.093592,1,-3.093592,2.663331,2.2,-3.470921,3.093592,2.2,-3.093592,1.195886,1,-2.887124,0.8088095,1,-3.018518,1.195886,2.2,-2.887124,0.8088095,2.2,-3.018518,1.67424,1,-4.041973,2.1875,1,-3.788861,1.67424,2.2,-4.041973,2.1875,2.2,-3.788861,1.5625,1,-2.70633,1.195886,1,-2.887124,1.5625,2.2,-2.70633,1.195886,2.2,-2.887124,2.479229,1,-1.90238,2.479229,2.2,-1.90238,2.70633,1,-1.5625,2.70633,2.2,-1.5625,1.90238,1,-2.479229,1.5625,1,-2.70633,1.90238,2.2,-2.479229,1.5625,2.2,-2.70633,2.1875,1,-3.788861,2.663331,1,-3.470921,2.1875,2.2,-3.788861,2.663331,2.2,-3.470921,2.70633,1,-1.5625,2.70633,2.2,-1.5625,2.887124,1,-1.195886,2.887124,2.2,-1.195886,2.887124,1,-1.195886,2.887124,2.2,-1.195886,3.018518,1,-0.8088095,3.018518,2.2,-0.8088095,0.5710521,1,-4.337572,1.132333,1,-4.225925,0.5710521,2.2,-4.337572,1.132333,2.2,-4.225925,3.098265,1,-0.4078943,3.098265,2.2,-0.4078943,3.125,1,2.021352E-13,3.125,2.2,2.021352E-13,3.17641E-13,1,-4.375,0.5710521,1,-4.337572,3.17641E-13,2.2,-4.375,0.5710521,2.2,-4.337572,-5,2.5,-3.425,-5,2.5,-4.075,2.310117E-13,2.5,-3.425,2.887646E-13,2.5,-4.075,0.4470522,2.5,-3.395699,0.5318942,2.5,-4.040138,0.8864552,2.5,-3.308296,1.054688,2.5,-3.936148,1.310691,2.5,-3.164288,1.559435,2.5,-3.764809,1.7125,2.5,-2.966137,2.0375,2.5,-3.529053,2.085008,2.5,-2.717235,2.421841,2.5,-2.421841,2.480703,2.5,-3.232915,2.717235,2.5,-2.085008,2.88146,2.5,-2.88146,2.966137,2.5,-1.7125,3.164288,2.5,-1.310691,3.232915,2.5,-2.480703,3.308296,2.5,-0.8864552,3.395699,2.5,-0.4470522,3.529053,2.5,-2.0375,3.425,2.5,2.021352E-13,3.425,2.5,5,3.764809,2.5,-1.559435,3.936148,2.5,-1.054688,4.040138,2.5,-0.5318942,4.075,2.5,5,4.075,2.5,2.021352E-13,4.337572,2.2,-0.5710521,4.375,2.2,2.021352E-13,4.040138,2.5,-0.5318942,4.075,2.5,2.021352E-13,4.337572,2.2,-0.5710521,4.040138,2.5,-0.5318942,4.225925,2.2,-1.132333,3.936148,2.5,-1.054688,4.225925,2.2,-1.132333,3.936148,2.5,-1.054688,4.041973,2.2,-1.67424,3.764809,2.5,-1.559435,4.041973,2.2,-1.67424,3.764809,2.5,-1.559435,3.788861,2.2,-2.1875,3.529053,2.5,-2.0375,3.788861,2.2,-2.1875,3.529053,2.5,-2.0375,3.470921,2.2,-2.663331,3.232915,2.5,-2.480703,3.470921,2.2,-2.663331,3.232915,2.5,-2.480703,3.093592,2.2,-3.093592,2.88146,2.5,-2.88146,3.093592,2.2,-3.093592,2.88146,2.5,-2.88146,2.663331,2.2,-3.470921,2.480703,2.5,-3.232915,2.663331,2.2,-3.470921,2.480703,2.5,-3.232915,2.1875,2.2,-3.788861,2.0375,2.5,-3.529053,2.1875,2.2,-3.788861,2.0375,2.5,-3.529053,1.67424,2.2,-4.041973,1.559435,2.5,-3.764809,1.67424,2.2,-4.041973,1.559435,2.5,-3.764809,1.132333,2.2,-4.225925,1.054688,2.5,-3.936148,1.132333,2.2,-4.225925,1.054688,2.5,-3.936148,0.5710521,2.2,-4.337572,0.5318942,2.5,-4.040138,3.17641E-13,2.2,-4.375,0.5710521,2.2,-4.337572,2.887646E-13,2.5,-4.075,0.5318942,2.5,-4.040138,0.4470522,2.5,-3.395699,0.4078943,2.2,-3.098265,2.310117E-13,2.5,-3.425,2.021352E-13,2.2,-3.125,0.8864552,2.5,-3.308296,0.8088095,2.2,-3.018518,0.4470522,2.5,-3.395699,0.4078943,2.2,-3.098265,1.310691,2.5,-3.164288,1.195886,2.2,-2.887124,0.8864552,2.5,-3.308296,0.8088095,2.2,-3.018518,1.7125,2.5,-2.966137,1.5625,2.2,-2.70633,1.310691,2.5,-3.164288,1.195886,2.2,-2.887124,2.085008,2.5,-2.717235,1.90238,2.2,-2.479229,1.7125,2.5,-2.966137,1.5625,2.2,-2.70633,2.421841,2.5,-2.421841,2.209708,2.2,-2.209708,2.085008,2.5,-2.717235,1.90238,2.2,-2.479229,2.717235,2.5,-2.085008,2.479229,2.2,-1.90238,2.421841,2.5,-2.421841,2.209708,2.2,-2.209708,2.966137,2.5,-1.7125,2.70633,2.2,-1.5625,2.717235,2.5,-2.085008,2.479229,2.2,-1.90238,3.164288,2.5,-1.310691,2.887124,2.2,-1.195886,2.966137,2.5,-1.7125,2.70633,2.2,-1.5625,3.308296,2.5,-0.8864552,3.018518,2.2,-0.8088095,3.164288,2.5,-1.310691,2.887124,2.2,-1.195886,3.425,2.5,2.021352E-13,3.125,2.2,2.021352E-13,3.395699,2.5,-0.4470522,3.098265,2.2,-0.4078943,3.395699,2.5,-0.4470522,3.098265,2.2,-0.4078943,3.308296,2.5,-0.8864552,3.018518,2.2,-0.8088095 + } + PolygonVertexIndex: *888 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,5,-3,7,6,-3,8,7,-3,9,8,-3,10,9,-3,11,10,-3,12,10,-12,13,10,-13,14,13,-13,15,13,-15,16,13,-16,17,13,-17,18,13,-18,19,13,-19,20,19,-19,21,19,-21,22,19,-22,23,22,-22,24,22,-24,25,22,-25,26,25,-25,27,25,-27,28,25,-28,29,28,-28,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,87,88,-90,88,90,-90,89,90,-92,90,92,-92,91,92,-94,92,94,-94,93,94,-96,94,96,-96,96,97,-96,95,97,-99,97,99,-99,98,99,-101,99,101,-101,101,102,-101,100,102,-104,102,104,-104,104,105,-104,105,106,-104,103,106,-108,106,108,-108,109,107,-109,108,110,-110,109,110,-112,111,110,-113,112,110,-114,110,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,145,146,-148,146,148,-148,147,148,-150,148,150,-150,149,150,-152,150,152,-152,151,152,-154,152,154,-154,153,154,-156,154,156,-156,155,156,-158,156,158,-158,158,159,-158,157,159,-161,159,161,-161,160,161,-163,161,163,-163,163,164,-163,162,164,-166,164,166,-166,166,167,-166,168,165,-168,167,169,-169,168,169,-171,170,169,-172,169,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,197,-197,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,211,-211,213,212,-211,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,198,226,-200,227,199,-227,228,227,-227,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,211,212,-247,247,246,-213,248,247,-213,249,248,-213,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,351,352,-354,352,354,-354,353,354,-356,354,356,-356,355,356,-358,356,358,-358,357,358,-360,358,360,-360,359,360,-362,360,362,-362,362,363,-362,361,363,-365,363,365,-365,364,365,-367,365,367,-367,367,368,-367,366,368,-370,368,370,-370,370,371,-370,369,371,-373,373,372,-372,373,374,-373,372,374,-376,375,374,-377,376,374,-378,374,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,432,434,-434,435,433,-435,436,438,-438,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,454,-454,455,453,-455,456,458,-458,459,457,-459,460,462,-462,463,461,-463,464,466,-466,467,465,-467,468,470,-470,471,469,-471,472,474,-474,475,473,-475 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2664 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.03271909,0,-0.9994646,0.03271909,0,-0.9994646,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.03271909,0,-0.9994646,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.1305262,0,0.9914449,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,-0.9994646,0,0.03271909,-1,0,0,-0.9994646,0,0.03271909,-1,0,0,-0.9994646,0,0.03271909,-1,0,0,0.9994646,0,-0.03271909,1,0,0,0.9994646,0,-0.03271909,1,0,0,0.9994646,0,-0.03271909,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,0,0,1,0,0,1,0,0,1,-0.03271909,0,0.9994646,0,0,-1,0,0,-1,0.03271909,0,-0.9994646,0.03271909,0,-0.9994646,0.03271909,0,-0.9994646,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.03271909,0,0.9994646,-0.03038135,0.3854015,0.9222487,0,0,1,0,0.3826834,0.9238795,0,0,1,-0.03038135,0.3854015,0.9222487,0.03008856,0.379775,-0.9245894,0,0.3826834,-0.9238795,0.01293838,0.9209942,-0.3893613,0,0.9238795,-0.3826834,0.01293838,0.9209942,-0.3893613,0,0.3826834,-0.9238795,-0.03038135,0.3854015,0.9222487,-0.01212368,0.9266374,0.375761,0,0.3826834,0.9238795,0,0.9238795,0.3826834,0,0.3826834,0.9238795,-0.01212368,0.9266374,0.375761,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9245894,0.379775,-0.03008856,0.9238795,0.3826834,0,0.9994646,0,-0.03271909,1,0,0,0.9994646,0,-0.03271909,0.9238795,0.3826834,0,-0.9222487,0.3854015,0.03038136,-0.9238795,0.3826834,0,-0.375761,0.9266374,0.01212368,-0.3826834,0.9238795,0,-0.375761,0.9266374,0.01212368,-0.9238795,0.3826834,0,0.9245894,0.379775,-0.03008856,0.3893613,0.9209942,-0.01293838,0.9238795,0.3826834,0,0.3826834,0.9238795,0,0.9238795,0.3826834,0,0.3893613,0.9209942,-0.01293838,-0.9994646,0,0.03271909,-1,0,0,-0.9222487,0.3854015,0.03038136,-0.9238795,0.3826834,0,-0.9222487,0.3854015,0.03038136,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0.3826834,-0.9238795,0.03271909,0,-0.9994646,0.03008856,0.379775,-0.9245894,0.03271909,0,-0.9994646,0,0.3826834,-0.9238795,0.8945896,0.3771618,-0.2397046,0.9182241,0.3771619,-0.1208865,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9182241,0.3771619,-0.1208865,0.8020672,0.3771618,-0.4630737,0.8556485,0.3771618,-0.3544213,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.8556485,0.3771618,-0.3544213,-0.7071068,0,0.7071068,-0.6515822,0.3884344,0.6515822,-0.6087614,0,0.7933533,-0.5609593,0.3884344,0.7310564,-0.6087614,0,0.7933533,-0.6515822,0.3884344,0.6515822,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.8900778,0.3884344,0.2384956,-0.9135931,0.3884344,0.1202768,-0.8900778,0.3884344,0.2384956,-0.9914449,0,0.1305262,0.7347621,0.3771619,-0.5638028,0.8020672,0.3771618,-0.4630737,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8020672,0.3771618,-0.4630737,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.6515822,0.3884344,0.6515822,-0.7310564,0.3884344,0.5609593,-0.6515822,0.3884344,0.6515822,-0.7933533,0,0.6087614,-0.258819,0,0.9659258,-0.2384956,0.3884344,0.8900778,-0.1305262,0,0.9914449,-0.1202768,0.3884344,0.9135931,-0.1305262,0,0.9914449,-0.2384956,0.3884344,0.8900778,0.258819,0,-0.9659258,0.2397046,0.3771618,-0.8945896,0.3826834,0,-0.9238795,0.3544213,0.3771618,-0.8556485,0.3826834,0,-0.9238795,0.2397046,0.3771618,-0.8945896,-0.1305262,0,0.9914449,-0.1202768,0.3884344,0.9135931,-0.03271909,0,0.9994646,-0.03038135,0.3854015,0.9222487,-0.03271909,0,0.9994646,-0.1202768,0.3884344,0.9135931,0.8556485,0.3771618,-0.3544213,0.8945896,0.3771618,-0.2397046,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.8945896,0.3771618,-0.2397046,0.9182241,0.3771619,-0.1208865,0.9245894,0.379775,-0.03008856,0.9914449,0,-0.1305262,0.9994646,0,-0.03271909,0.9914449,0,-0.1305262,0.9245894,0.379775,-0.03008856,0.6548851,0.3771618,-0.6548851,0.7347621,0.3771619,-0.5638028,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7347621,0.3771619,-0.5638028,0.6087614,0,-0.7933533,0.5638028,0.3771619,-0.7347621,0.7071068,0,-0.7071068,0.6548851,0.3771618,-0.6548851,0.7071068,0,-0.7071068,0.5638028,0.3771619,-0.7347621,-0.3826834,0,0.9238795,-0.3526338,0.3884344,0.8513332,-0.258819,0,0.9659258,-0.2384956,0.3884344,0.8900778,-0.258819,0,0.9659258,-0.3526338,0.3884344,0.8513332,0.3826834,0,-0.9238795,0.3544213,0.3771618,-0.8556485,0.5,0,-0.8660254,0.4630737,0.3771618,-0.8020672,0.5,0,-0.8660254,0.3544213,0.3771618,-0.8556485,-0.5,0,0.8660254,-0.4607382,0.3884344,0.798022,-0.3826834,0,0.9238795,-0.3526338,0.3884344,0.8513332,-0.3826834,0,0.9238795,-0.4607382,0.3884344,0.798022,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7310564,0.3884344,0.5609593,-0.798022,0.3884344,0.4607382,-0.7310564,0.3884344,0.5609593,-0.8660254,0,0.5,-0.6087614,0,0.7933533,-0.5609593,0.3884344,0.7310564,-0.5,0,0.8660254,-0.4607382,0.3884344,0.798022,-0.5,0,0.8660254,-0.5609593,0.3884344,0.7310564,0.5,0,-0.8660254,0.4630737,0.3771618,-0.8020672,0.6087614,0,-0.7933533,0.5638028,0.3771619,-0.7347621,0.6087614,0,-0.7933533,0.4630737,0.3771618,-0.8020672,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.798022,0.3884344,0.4607382,-0.8513332,0.3884344,0.3526338,-0.798022,0.3884344,0.4607382,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.8513332,0.3884344,0.3526338,-0.8900778,0.3884344,0.2384956,-0.8513332,0.3884344,0.3526338,-0.9659258,0,0.258819,0.1305262,0,-0.9914449,0.1208865,0.3771619,-0.9182241,0.258819,0,-0.9659258,0.2397046,0.3771618,-0.8945896,0.258819,0,-0.9659258,0.1208865,0.3771619,-0.9182241,-0.9914449,0,0.1305262,-0.9994646,0,0.03271909,-0.9135931,0.3884344,0.1202768,-0.9222487,0.3854015,0.03038136,-0.9135931,0.3884344,0.1202768,-0.9994646,0,0.03271909,0.03271909,0,-0.9994646,0.03008856,0.379775,-0.9245894,0.1305262,0,-0.9914449,0.1208865,0.3771619,-0.9182241,0.1305262,0,-0.9914449,0.03008856,0.379775,-0.9245894,0,0.9238795,0.3826834,-0.01212368,0.9266374,0.375761,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,-0.01212368,0.9266374,0.375761,0.01293838,0.9209942,-0.3893613,-0.01212368,0.9266374,0.375761,-0.04815271,0.9294642,0.3657562,0.01293838,0.9209942,-0.3893613,0.01293838,0.9209942,-0.3893613,-0.04815271,0.9294642,0.3657562,0.05170505,0.9181954,-0.3927389,-0.04815271,0.9294642,0.3657562,-0.09548152,0.9294642,0.3563419,0.05170505,0.9181954,-0.3927389,0.05170505,0.9181954,-0.3927389,-0.09548152,0.9294642,0.3563419,0.1025254,0.9181954,-0.3826301,-0.09548152,0.9294642,0.3563419,-0.1411766,0.9294642,0.3408305,0.1025254,0.9181954,-0.3826301,0.1025254,0.9181954,-0.3826301,-0.1411766,0.9294642,0.3408305,0.1515916,0.9181954,-0.3659744,-0.1411766,0.9294642,0.3408305,-0.1844561,0.9294642,0.3194874,0.1515916,0.9181954,-0.3659744,0.1515916,0.9181954,-0.3659744,-0.1844561,0.9294642,0.3194874,0.1980639,0.9181954,-0.3430568,-0.1844561,0.9294642,0.3194874,-0.2245796,0.9294642,0.2926778,0.1980639,0.9181954,-0.3430568,-0.2245796,0.9294642,0.2926778,-0.2608604,0.9294642,0.2608604,0.1980639,0.9181954,-0.3430568,0.1980639,0.9181954,-0.3430568,-0.2608604,0.9294642,0.2608604,0.2411474,0.9181954,-0.3142693,-0.2608604,0.9294642,0.2608604,-0.2926778,0.9294642,0.2245796,0.2411474,0.9181954,-0.3142693,0.2411474,0.9181954,-0.3142693,-0.2926778,0.9294642,0.2245796,0.2801047,0.9181954,-0.2801047,-0.2926778,0.9294642,0.2245796,-0.3194874,0.9294642,0.1844561,0.2801047,0.9181954,-0.2801047,-0.3194874,0.9294642,0.1844561,-0.3408305,0.9294642,0.1411766,0.2801047,0.9181954,-0.2801047,0.2801047,0.9181954,-0.2801047,-0.3408305,0.9294642,0.1411766,0.3142693,0.9181954,-0.2411474,-0.3408305,0.9294642,0.1411766,-0.3563419,0.9294642,0.09548152,0.3142693,0.9181954,-0.2411474,-0.3563419,0.9294642,0.09548152,-0.3657562,0.9294642,0.04815271,0.3142693,0.9181954,-0.2411474,0.3142693,0.9181954,-0.2411474,-0.3657562,0.9294642,0.04815271,0.3430568,0.9181954,-0.1980639,-0.375761,0.9266374,0.01212368,0.3430568,0.9181954,-0.1980639,-0.3657562,0.9294642,0.04815271,-0.375761,0.9266374,0.01212368,-0.3826834,0.9238795,0,0.3430568,0.9181954,-0.1980639,0.3430568,0.9181954,-0.1980639,-0.3826834,0.9238795,0,0.3659744,0.9181954,-0.1515916,0.3659744,0.9181954,-0.1515916,-0.3826834,0.9238795,0,0.3826301,0.9181954,-0.1025254,0.3826301,0.9181954,-0.1025254,-0.3826834,0.9238795,0,0.3927389,0.9181954,-0.05170505,-0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3927389,0.9181954,-0.05170505,0.3893613,0.9209942,-0.01293838,0.3927389,0.9181954,-0.05170505,0.3826834,0.9238795,0,0.9182241,0.3771619,-0.1208865,0.3927389,0.9181954,-0.05170505,0.9245894,0.379775,-0.03008856,0.3893613,0.9209942,-0.01293838,0.9245894,0.379775,-0.03008856,0.3927389,0.9181954,-0.05170505,0.9182241,0.3771619,-0.1208865,0.8945896,0.3771618,-0.2397046,0.3927389,0.9181954,-0.05170505,0.3826301,0.9181954,-0.1025254,0.3927389,0.9181954,-0.05170505,0.8945896,0.3771618,-0.2397046,0.8945896,0.3771618,-0.2397046,0.8556485,0.3771618,-0.3544213,0.3826301,0.9181954,-0.1025254,0.3659744,0.9181954,-0.1515916,0.3826301,0.9181954,-0.1025254,0.8556485,0.3771618,-0.3544213,0.8556485,0.3771618,-0.3544213,0.8020672,0.3771618,-0.4630737,0.3659744,0.9181954,-0.1515916,0.3430568,0.9181954,-0.1980639,0.3659744,0.9181954,-0.1515916,0.8020672,0.3771618,-0.4630737,0.8020672,0.3771618,-0.4630737,0.7347621,0.3771619,-0.5638028,0.3430568,0.9181954,-0.1980639,0.3142693,0.9181954,-0.2411474,0.3430568,0.9181954,-0.1980639,0.7347621,0.3771619,-0.5638028,0.7347621,0.3771619,-0.5638028,0.6548851,0.3771618,-0.6548851,0.3142693,0.9181954,-0.2411474,0.2801047,0.9181954,-0.2801047,0.3142693,0.9181954,-0.2411474,0.6548851,0.3771618,-0.6548851,0.6548851,0.3771618,-0.6548851,0.5638028,0.3771619,-0.7347621,0.2801047,0.9181954,-0.2801047,0.2411474,0.9181954,-0.3142693,0.2801047,0.9181954,-0.2801047,0.5638028,0.3771619,-0.7347621,0.5638028,0.3771619,-0.7347621,0.4630737,0.3771618,-0.8020672,0.2411474,0.9181954,-0.3142693,0.1980639,0.9181954,-0.3430568,0.2411474,0.9181954,-0.3142693,0.4630737,0.3771618,-0.8020672,0.4630737,0.3771618,-0.8020672,0.3544213,0.3771618,-0.8556485,0.1980639,0.9181954,-0.3430568,0.1515916,0.9181954,-0.3659744,0.1980639,0.9181954,-0.3430568,0.3544213,0.3771618,-0.8556485,0.3544213,0.3771618,-0.8556485,0.2397046,0.3771618,-0.8945896,0.1515916,0.9181954,-0.3659744,0.1025254,0.9181954,-0.3826301,0.1515916,0.9181954,-0.3659744,0.2397046,0.3771618,-0.8945896,0.2397046,0.3771618,-0.8945896,0.1208865,0.3771619,-0.9182241,0.1025254,0.9181954,-0.3826301,0.05170505,0.9181954,-0.3927389,0.1025254,0.9181954,-0.3826301,0.1208865,0.3771619,-0.9182241,0.03008856,0.379775,-0.9245894,0.01293838,0.9209942,-0.3893613,0.1208865,0.3771619,-0.9182241,0.05170505,0.9181954,-0.3927389,0.1208865,0.3771619,-0.9182241,0.01293838,0.9209942,-0.3893613,-0.04815271,0.9294642,0.3657562,-0.01212368,0.9266374,0.375761,-0.1202768,0.3884344,0.9135931,-0.03038135,0.3854015,0.9222487,-0.1202768,0.3884344,0.9135931,-0.01212368,0.9266374,0.375761,-0.09548152,0.9294642,0.3563419,-0.04815271,0.9294642,0.3657562,-0.2384956,0.3884344,0.8900778,-0.1202768,0.3884344,0.9135931,-0.2384956,0.3884344,0.8900778,-0.04815271,0.9294642,0.3657562,-0.1411766,0.9294642,0.3408305,-0.09548152,0.9294642,0.3563419,-0.3526338,0.3884344,0.8513332,-0.2384956,0.3884344,0.8900778,-0.3526338,0.3884344,0.8513332,-0.09548152,0.9294642,0.3563419,-0.1844561,0.9294642,0.3194874,-0.1411766,0.9294642,0.3408305,-0.4607382,0.3884344,0.798022,-0.3526338,0.3884344,0.8513332,-0.4607382,0.3884344,0.798022,-0.1411766,0.9294642,0.3408305,-0.2245796,0.9294642,0.2926778,-0.1844561,0.9294642,0.3194874,-0.5609593,0.3884344,0.7310564,-0.4607382,0.3884344,0.798022,-0.5609593,0.3884344,0.7310564,-0.1844561,0.9294642,0.3194874,-0.2608604,0.9294642,0.2608604,-0.2245796,0.9294642,0.2926778,-0.6515822,0.3884344,0.6515822,-0.5609593,0.3884344,0.7310564,-0.6515822,0.3884344,0.6515822,-0.2245796,0.9294642,0.2926778,-0.2926778,0.9294642,0.2245796,-0.2608604,0.9294642,0.2608604,-0.7310564,0.3884344,0.5609593,-0.6515822,0.3884344,0.6515822,-0.7310564,0.3884344,0.5609593,-0.2608604,0.9294642,0.2608604,-0.3194874,0.9294642,0.1844561,-0.2926778,0.9294642,0.2245796,-0.798022,0.3884344,0.4607382,-0.7310564,0.3884344,0.5609593,-0.798022,0.3884344,0.4607382,-0.2926778,0.9294642,0.2245796,-0.3408305,0.9294642,0.1411766,-0.3194874,0.9294642,0.1844561,-0.8513332,0.3884344,0.3526338,-0.798022,0.3884344,0.4607382,-0.8513332,0.3884344,0.3526338,-0.3194874,0.9294642,0.1844561,-0.3563419,0.9294642,0.09548152,-0.3408305,0.9294642,0.1411766,-0.8900778,0.3884344,0.2384956,-0.8513332,0.3884344,0.3526338,-0.8900778,0.3884344,0.2384956,-0.3408305,0.9294642,0.1411766,-0.375761,0.9266374,0.01212368,-0.3657562,0.9294642,0.04815271,-0.9222487,0.3854015,0.03038136,-0.9135931,0.3884344,0.1202768,-0.9222487,0.3854015,0.03038136,-0.3657562,0.9294642,0.04815271,-0.3657562,0.9294642,0.04815271,-0.3563419,0.9294642,0.09548152,-0.9135931,0.3884344,0.1202768,-0.8900778,0.3884344,0.2384956,-0.9135931,0.3884344,0.1202768,-0.3563419,0.9294642,0.09548152 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *952 { + a: 19.68504,19.68504,19.68504,7.958079E-13,9.84252,19.68504,19.51663,-2.569413,19.01429,-5.094863,18.18661,-7.533138,17.04774,-9.84252,15.61719,-11.98349,13.91943,-13.91943,11.98349,-15.61719,9.84252,-17.04774,9.84252,7.958079E-13,9.758316,-1.284707,7.533138,-18.18661,9.507144,-2.547431,9.093303,-3.766569,8.523872,-4.92126,7.808596,-5.991746,6.959713,-6.959713,5.094863,-19.01429,5.991746,-7.808596,4.92126,-8.523872,2.569413,-19.51663,3.766569,-9.093303,2.547431,-9.507144,1.364242E-12,-19.68504,1.284707,-9.758316,5.684342E-13,-9.84252,-19.68504,-19.68504,-19.68504,-9.84252,1.287463,0,-1.287463,0,1.287463,3.937008,-1.287463,3.937008,1.287463,0,-1.287463,0,1.287463,3.937008,-1.287463,3.937008,1.287463,0,-1.287463,0,1.287463,3.937008,-1.287463,3.937008,1.287463,0,-1.287463,0,1.287463,3.937008,-1.287463,3.937008,1.287463,0,-1.287463,0,1.287463,3.937008,-1.287463,3.937008,0.6437316,0,-0.6437316,0,0.6437316,3.937008,-0.6437316,3.937008,0.6437316,0,-0.6437316,0,0.6437316,3.937008,-0.6437316,3.937008,0.6437316,0,-0.6437316,0,0.6437316,3.937008,-0.6437316,3.937008,0.6437316,0,-0.6437316,0,0.6437316,3.937008,-0.6437316,3.937008,-0.6437316,0,-0.6437316,3.937008,0.6437316,0,0.6437316,3.937008,0.6437316,0,-0.6437316,0,0.6437316,3.937008,-0.6437316,3.937008,-0.6437316,0,-0.6437316,3.937008,0.6437316,0,0.6437316,3.937008,0.6437316,0,-0.6437316,0,0.6437316,3.937008,-0.6437316,3.937008,-0.6437316,0,-0.6437316,3.937008,0.6437316,0,0.6437316,3.937008,19.68504,-9.84252,19.68504,-12.30315,-5.684342E-13,-9.84252,-7.958079E-13,-12.30315,-1.284707,-9.758316,-1.605883,-12.19789,-2.547431,-9.507144,-3.184289,-11.88393,-3.766569,-9.093303,-4.708211,-11.36663,-4.92126,-8.523872,-5.991746,-7.808596,-6.151575,-10.65484,-6.959713,-6.959713,-7.489683,-9.760745,-7.808596,-5.991746,-8.523872,-4.92126,-8.69964,-8.69964,-9.093303,-3.766569,-9.507144,-2.547431,-9.758316,-1.284707,-9.760745,-7.489683,-9.84252,7.958079E-13,-10.65484,-6.151575,-9.84252,19.68504,-11.36663,-4.708211,-11.88393,-3.184289,-12.19789,-1.605883,-12.30315,19.68504,-12.30315,7.958079E-13,-0.6437316,0,-0.6437316,3.937008,0.6437316,0,0.6437316,3.937008,-0.6437316,0,-0.6437316,3.937008,0.6437316,0,0.6437316,3.937008,-0.6437316,0,-0.6437316,3.937008,0.6437316,0,0.6437316,3.937008,1.287463,3.937008,1.287463,0,-1.287463,3.937008,-1.287463,0,1.287463,3.937008,1.287463,0,-1.287463,3.937008,-1.287463,0,1.287463,3.937008,1.287463,0,-1.287463,3.937008,-1.287463,0,1.287463,3.937008,1.287463,0,-1.287463,3.937008,-1.287463,0,19.68504,-17.22441,19.68504,-19.68504,-1.250555E-12,-17.22441,-1.364242E-12,-19.68504,-2.248237,-17.07705,-2.569413,-19.51663,-4.458005,-16.6375,-5.094863,-19.01429,-6.591496,-15.91328,-7.533138,-18.18661,-8.612205,-14.91678,-9.84252,-17.04774,-10.48556,-13.66504,-11.98349,-15.61719,-12.1795,-12.1795,-13.66504,-10.48556,-13.91943,-13.91943,-14.91678,-8.612205,-15.61719,-11.98349,-15.91328,-6.591496,-16.6375,-4.458005,-17.04774,-9.84252,-17.07705,-2.248237,-17.22441,7.958079E-13,-18.18661,-7.533138,-17.22441,19.68504,-19.01429,-5.094863,-19.51663,-2.569413,-19.68504,19.68504,-19.68504,7.958079E-13,1.287463,3.937008,1.287463,0,-1.287463,3.937008,-1.287463,0,1.287463,3.937008,1.287463,0,-1.287463,3.937008,-1.287463,0,1.287463,0,-1.287463,0,1.287463,3.937008,-1.287463,3.937008,7.958079E-13,0,7.958079E-13,3.937008,19.68504,0,19.68504,3.937008,-7.958079E-13,3.937008,-7.958079E-13,0,-19.68504,3.937008,-19.68504,0,19.68504,0,9.84252,0,19.68504,3.937008,9.84252,3.937008,17.22441,3.937008,12.30315,3.937008,-2.557954E-13,0,-19.68504,0,-2.557954E-13,3.937008,-19.68504,3.937008,19.68504,0,2.842171E-13,0,19.68504,3.937008,2.842171E-13,3.937008,-19.68504,0,-19.68504,3.937008,-9.84252,0,-17.22441,3.937008,-12.30315,3.937008,-9.84252,3.937008,-2.344791E-13,3.937008,-19.68504,3.937008,-2.344791E-13,8.661417,-19.68504,8.661417,1.918294E-13,-6.05495,2.066099E-13,-4.384619,19.68504,-6.05495,19.68504,-4.384619,-2.344951E-13,14.82419,-19.68504,14.82419,-2.197173E-13,16.49452,-19.68504,16.49452,17.22441,8.661417,12.30315,8.661417,16.04331,9.84252,13.48425,9.84252,-7.958079E-13,8.661417,-7.958079E-13,3.937008,-19.68504,8.661417,-19.68504,3.937008,7.958079E-13,14.82419,7.958079E-13,16.49452,19.68504,14.82419,19.68504,16.49452,-7.958079E-13,-6.05495,-19.68504,-6.05495,-7.958079E-13,-4.384619,-19.68504,-4.384619,7.958079E-13,3.937008,7.958079E-13,8.661417,19.68504,3.937008,19.68504,8.661417,-17.22441,8.661417,-16.04331,9.84252,-13.48425,9.84252,-12.30315,8.661417,19.68504,3.937008,1.918465E-13,3.937008,19.68504,8.661417,1.918465E-13,8.661417,1.12653,8.661417,1.12653,3.937008,-1.12653,8.661417,-1.12653,3.937008,1.12653,8.661417,1.12653,3.937008,-1.12653,8.661417,-1.12653,3.937008,0.8046645,3.937008,-0.8046645,3.937008,0.8046645,8.661417,-0.8046645,8.661417,-0.8046645,3.937008,-0.8046645,8.661417,0.8046645,3.937008,0.8046645,8.661417,1.12653,8.661417,1.12653,3.937008,-1.12653,8.661417,-1.12653,3.937008,-0.8046645,3.937008,-0.8046645,8.661417,0.8046645,3.937008,0.8046645,8.661417,0.8046645,3.937008,-0.8046645,3.937008,0.8046645,8.661417,-0.8046645,8.661417,1.12653,3.937008,-1.12653,3.937008,1.12653,8.661417,-1.12653,8.661417,0.8046645,3.937008,-0.8046645,3.937008,0.8046645,8.661417,-0.8046645,8.661417,1.12653,8.661417,1.12653,3.937008,-1.12653,8.661417,-1.12653,3.937008,1.12653,8.661417,1.12653,3.937008,-1.12653,8.661417,-1.12653,3.937008,1.12653,8.661417,1.12653,3.937008,-1.12653,8.661417,-1.12653,3.937008,1.12653,3.937008,-1.12653,3.937008,1.12653,8.661417,-1.12653,8.661417,0.8046645,3.937008,-0.8046645,3.937008,0.8046645,8.661417,-0.8046645,8.661417,1.12653,3.937008,-1.12653,3.937008,1.12653,8.661417,-1.12653,8.661417,0.8046645,3.937008,-0.8046645,3.937008,0.8046645,8.661417,-0.8046645,8.661417,-0.8046645,3.937008,-0.8046645,8.661417,0.8046645,3.937008,0.8046645,8.661417,0.8046645,3.937008,-0.8046645,3.937008,0.8046645,8.661417,-0.8046645,8.661417,1.12653,3.937008,-1.12653,3.937008,1.12653,8.661417,-1.12653,8.661417,-0.8046645,3.937008,-0.8046645,8.661417,0.8046645,3.937008,0.8046645,8.661417,-0.8046645,3.937008,-0.8046645,8.661417,0.8046645,3.937008,0.8046645,8.661417,1.12653,3.937008,-1.12653,3.937008,1.12653,8.661417,-1.12653,8.661417,-0.8046645,3.937008,-0.8046645,8.661417,0.8046645,3.937008,0.8046645,8.661417,1.12653,3.937008,-1.12653,3.937008,1.12653,8.661417,-1.12653,8.661417,19.68504,-13.48425,19.68504,-16.04331,-9.094947E-13,-13.48425,-1.136868E-12,-16.04331,-1.760048,-13.36889,-2.094072,-15.90605,-3.489981,-13.02479,-4.152313,-15.49664,-5.1602,-12.45782,-6.139508,-14.82208,-6.742126,-11.6777,-8.021653,-13.89391,-8.208693,-10.69778,-9.534806,-9.534806,-9.766546,-12.72801,-10.69778,-8.208693,-11.34433,-11.34433,-11.6777,-6.742126,-12.45782,-5.1602,-12.72801,-9.766546,-13.02479,-3.489981,-13.36889,-1.760048,-13.89391,-8.021653,-13.48425,7.958079E-13,-13.48425,19.68504,-14.82208,-6.139508,-15.49664,-4.152313,-15.90605,-2.094072,-16.04331,19.68504,-16.04331,7.958079E-13,1.12653,-6.009281,-1.12653,-6.009281,1.049282,-4.340737,-1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,-1.12653,-6.009281,-1.049282,-4.340737,1.12653,-6.009281,1.049282,-4.340737,1.12653,-6.009281,-1.12653,-6.009281,1.049282,-4.340737,-1.049282,-4.340737,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281,0.8819123,16.47136,0.8046645,14.80281,-0.8819123,16.47136,-0.8046645,14.80281 + } + UVIndex: *888 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,5,2,7,6,2,8,7,2,9,8,2,10,9,2,11,10,2,12,10,11,13,10,12,14,13,12,15,13,14,16,13,15,17,13,16,18,13,17,19,13,18,20,19,18,21,19,20,22,19,21,23,22,21,24,22,23,25,22,24,26,25,24,27,25,26,28,25,27,29,28,27,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,87,88,89,88,90,89,89,90,91,90,92,91,91,92,93,92,94,93,93,94,95,94,96,95,96,97,95,95,97,98,97,99,98,98,99,100,99,101,100,101,102,100,100,102,103,102,104,103,104,105,103,105,106,103,103,106,107,106,108,107,109,107,108,108,110,109,109,110,111,111,110,112,112,110,113,110,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,145,146,147,146,148,147,147,148,149,148,150,149,149,150,151,150,152,151,151,152,153,152,154,153,153,154,155,154,156,155,155,156,157,156,158,157,158,159,157,157,159,160,159,161,160,160,161,162,161,163,162,163,164,162,162,164,165,164,166,165,166,167,165,168,165,167,167,169,168,168,169,170,170,169,171,169,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,197,196,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,211,210,213,212,210,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,198,226,199,227,199,226,228,227,226,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,211,212,246,247,246,212,248,247,212,249,248,212,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,351,352,353,352,354,353,353,354,355,354,356,355,355,356,357,356,358,357,357,358,359,358,360,359,359,360,361,360,362,361,362,363,361,361,363,364,363,365,364,364,365,366,365,367,366,367,368,366,366,368,369,368,370,369,370,371,369,369,371,372,373,372,371,373,374,372,372,374,375,375,374,376,376,374,377,374,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,432,434,433,435,433,434,436,438,437,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,448,450,449,451,449,450,452,454,453,455,453,454,456,458,457,459,457,458,460,462,461,463,461,462,464,466,465,467,465,466,468,470,469,471,469,470,472,474,473,475,473,474 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *296 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh hedgeCurved, Model::RootNode + C: "OO",5435362403349343639,0 + + ;Geometry::, Model::Mesh hedgeCurved + C: "OO",5282232559926354910,5435362403349343639 + + ;Material::stone, Model::Mesh hedgeCurved + C: "OO",7184,5435362403349343639 + + ;Material::foliage, Model::Mesh hedgeCurved + C: "OO",7192,5435362403349343639 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeCurved.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeCurved.fbx.import new file mode 100644 index 0000000..ba872a2 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeCurved.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bih0b7ubtekqj" +path="res://.godot/imported/hedgeCurved.fbx-188a7b90718b10220539776adac094cc.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeCurved.fbx" +dest_files=["res://.godot/imported/hedgeCurved.fbx-188a7b90718b10220539776adac094cc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeGate.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeGate.fbx new file mode 100644 index 0000000..76ffc94 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeGate.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 262 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "hedgeGate.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "hedgeGate.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4675493659417806582, "Model::hedgeGate", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5128161283963146177, "Geometry::", "Mesh" { + Vertices: *432 { + a: 4.375,2.2,-5,4.375,1,-5,4.375,2.2,-2.625,4.375,1,-2.625,3.125,1,-5,4.375,1,-5,3.125,2.2,-5,4.375,2.2,-5,3.425,2.5,-5,4.075,2.5,-5,4.375,2.2,-5,4.375,2.2,-2.625,4.075,2.5,-5,4.075,2.5,-2.625,4.075,2.5,-5,4.075,2.5,-2.625,3.425,2.5,-5,3.425,2.5,-2.625,3.125,2.2,-5,3.425,2.5,-5,3.125,2.2,-2.625,3.425,2.5,-2.625,3.125,1,-5,3.125,2.2,-5,3.125,1,-2.625,3.125,2.2,-2.625,4.375,2.2,2.625,4.375,2.2,5,4.075,2.5,2.625,4.075,2.5,5,3.125,2.2,2.625,3.425,2.5,2.625,3.125,2.2,5,3.425,2.5,5,4.075,2.5,2.625,4.075,2.5,5,3.425,2.5,2.625,3.425,2.5,5,3.125,1,2.625,3.125,2.2,2.625,3.125,1,5,3.125,2.2,5,4.375,1,5,3.125,1,5,4.375,2.2,5,3.125,2.2,5,4.075,2.5,5,3.425,2.5,5,4.375,2.2,2.625,4.375,1,2.625,4.375,2.2,5,4.375,1,5,4.375,1,-2.625,3.125,1,-2.625,4.375,2.2,-2.625,3.125,2.2,-2.625,4.075,2.5,-2.625,3.425,2.5,-2.625,3.125,1,2.625,4.375,1,2.625,3.125,2.2,2.625,4.375,2.2,2.625,3.425,2.5,2.625,4.075,2.5,2.625,2.5,0,-5,5,0,-5,2.5,1,-5,5,1,-5,4.375,0,-2,3.125,0,-2,4.375,1,-2,3.125,1,-2,2.5,0,-5,2.5,1,-5,2.5,0,-2.625,2.5,1,-2.625,5,1,-5,5,0,-5,5,1,-2.625,5,0,-2.625,5,0,-2.625,5,0,-5,4.375,0,-2,2.5,0,-5,3.125,0,-2,2.5,0,-2.625,2.5,0,2.625,2.5,1,2.625,2.5,0,5,2.5,1,5,5,1,2.625,5,0,2.625,5,1,5,5,0,5,5,0,5,2.5,0,5,5,1,5,2.5,1,5,3.125,0,2,4.375,0,2,3.125,1,2,4.375,1,2,5,0,5,5,0,2.625,2.5,0,5,4.375,0,2,3.125,0,2,2.5,0,2.625,3.125,1,-5,3.125,1,-2.625,2.5,1,-5,3.125,1,-2,2.5,1,-2.625,4.375,1,-2,4.375,1,-2.625,4.375,1,-5,5,1,-2.625,5,1,-5,2.5,1,5,2.5,1,2.625,3.125,1,5,3.125,1,2.625,3.125,1,2,4.375,1,2.625,4.375,1,2,4.375,1,5,5,1,5,5,1,2.625,2.5,0,-2.625,2.5,1,-2.625,3.125,0,-2,3.125,1,-2,5,1,-2.625,5,0,-2.625,4.375,1,-2,4.375,0,-2,4.375,1,2,4.375,0,2,5,1,2.625,5,0,2.625,3.125,0,2,3.125,1,2,2.5,0,2.625,2.5,1,2.625 + } + PolygonVertexIndex: *264 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,45,-45,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,55,-55,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,61,-63,64,66,-66,67,65,-67,4,67,-67,5,67,-5,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,83,-83,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,42,97,-97,43,97,-43,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,105,-105,107,106,-105,108,110,-110,111,109,-111,112,111,-111,111,113,-110,109,113,-115,114,113,-116,113,116,-116,117,115,-117,118,120,-120,120,121,-120,119,121,-123,121,123,-123,124,122,-124,123,125,-125,125,126,-125,127,124,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *792 { + a: 0.9238795,0.3826834,0,0.9238795,0.3826834,0,1,0,0,1,0,0,1,0,0,0.9238795,0.3826834,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9238795,0.3826834,0,0.3826834,0.9238795,0,0.9238795,0.3826834,0,0.3826834,0.9238795,0,0.9238795,0.3826834,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.9238795,0.3826834,0,-1,0,0,-1,0,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-1,0,0,0.9238795,0.3826834,0,0.3826834,0.9238795,0,0.9238795,0.3826834,0,0.3826834,0.9238795,0,0.9238795,0.3826834,0,0.3826834,0.9238795,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.9238795,0.3826834,0,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-1,0,0,-1,0,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9238795,0.3826834,0,0.9238795,0.3826834,0,1,0,0,1,0,0,1,0,0,0.9238795,0.3826834,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.3826834,0,0.9238795,0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,0.3826834,0,0.9238795,-1,0,0,-0.9238795,0,0.3826834,-1,0,0,-0.9238795,0,0.3826834,-1,0,0,-0.9238795,0,0.3826834,1,0,0,0.9238795,0,0.3826834,1,0,0,0.9238795,0,0.3826834,1,0,0,0.9238795,0,0.3826834,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9238795,0,-0.3826834,-1,0,0,-0.9238795,0,-0.3826834,-1,0,0,-0.9238795,0,-0.3826834,-1,0,0,0.9238795,0,-0.3826834,1,0,0,0.9238795,0,-0.3826834,1,0,0,0.9238795,0,-0.3826834,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9238795,0,0.3826834,-0.3826834,0,0.9238795,-0.9238795,0,0.3826834,-0.3826834,0,0.9238795,-0.9238795,0,0.3826834,-0.3826834,0,0.9238795,0.9238795,0,0.3826834,0.3826834,0,0.9238795,0.9238795,0,0.3826834,0.3826834,0,0.9238795,0.9238795,0,0.3826834,0.3826834,0,0.9238795,0.3826834,0,-0.9238795,0.9238795,0,-0.3826834,0.3826834,0,-0.9238795,0.9238795,0,-0.3826834,0.3826834,0,-0.9238795,0.9238795,0,-0.3826834,-0.3826834,0,-0.9238795,-0.9238795,0,-0.3826834,-0.3826834,0,-0.9238795,-0.9238795,0,-0.3826834,-0.3826834,0,-0.9238795,-0.9238795,0,-0.3826834 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *288 { + a: 19.68504,8.661417,19.68504,3.937008,10.33465,8.661417,10.33465,3.937008,-12.30315,3.937008,-17.22441,3.937008,-12.30315,8.661417,-17.22441,8.661417,-13.48425,9.84252,-16.04331,9.84252,19.68504,-6.05495,10.33465,-6.05495,19.68504,-4.384619,10.33465,-4.384619,-16.04331,-19.68504,-16.04331,-10.33465,-13.48425,-19.68504,-13.48425,-10.33465,-19.68504,14.82419,-19.68504,16.49452,-10.33465,14.82419,-10.33465,16.49452,-19.68504,3.937008,-19.68504,8.661417,-10.33465,3.937008,-10.33465,8.661417,-10.33465,-6.05495,-19.68504,-6.05495,-10.33465,-4.384619,-19.68504,-4.384619,10.33465,14.82419,10.33465,16.49452,19.68504,14.82419,19.68504,16.49452,-16.04331,10.33465,-16.04331,19.68504,-13.48425,10.33465,-13.48425,19.68504,10.33465,3.937008,10.33465,8.661417,19.68504,3.937008,19.68504,8.661417,17.22441,3.937008,12.30315,3.937008,17.22441,8.661417,12.30315,8.661417,16.04331,9.84252,13.48425,9.84252,-10.33465,8.661417,-10.33465,3.937008,-19.68504,8.661417,-19.68504,3.937008,17.22441,3.937008,12.30315,3.937008,17.22441,8.661417,12.30315,8.661417,16.04331,9.84252,13.48425,9.84252,-12.30315,3.937008,-17.22441,3.937008,-12.30315,8.661417,-17.22441,8.661417,-13.48425,9.84252,-16.04331,9.84252,-9.84252,3.552714E-14,-19.68504,3.552714E-14,-9.84252,3.937008,-19.68504,3.937008,17.22441,0,12.30315,0,17.22441,3.937008,12.30315,3.937008,-19.68504,0,-19.68504,3.937008,-10.33465,0,-10.33465,3.937008,19.68504,3.937008,19.68504,0,10.33465,3.937008,10.33465,0,19.68504,-10.33465,19.68504,-19.68504,17.22441,-7.874016,9.84252,-19.68504,12.30315,-7.874016,9.84252,-10.33465,10.33465,0,10.33465,3.937008,19.68504,0,19.68504,3.937008,-10.33465,3.937008,-10.33465,0,-19.68504,3.937008,-19.68504,0,19.68504,0,9.84252,0,19.68504,3.937008,9.84252,3.937008,-12.30315,0,-17.22441,0,-12.30315,3.937008,-17.22441,3.937008,19.68504,19.68504,19.68504,10.33465,9.84252,19.68504,17.22441,7.874016,12.30315,7.874016,9.84252,10.33465,-12.30315,-19.68504,-12.30315,-10.33465,-9.84252,-19.68504,-12.30315,-7.874016,-9.84252,-10.33465,-17.22441,-7.874016,-17.22441,-10.33465,-17.22441,-19.68504,-19.68504,-10.33465,-19.68504,-19.68504,-9.84252,19.68504,-9.84252,10.33465,-12.30315,19.68504,-12.30315,10.33465,-12.30315,7.874016,-17.22441,10.33465,-17.22441,7.874016,-17.22441,19.68504,-19.68504,19.68504,-19.68504,10.33465,-0.3479856,0,-0.3479856,3.937008,3.131871,0,3.131871,3.937008,21.22712,3.937008,21.22712,0,17.74727,3.937008,17.74727,0,-17.74727,3.937008,-17.74727,0,-21.22712,3.937008,-21.22712,0,-3.131871,0,-3.131871,3.937008,0.3479856,0,0.3479856,3.937008 + } + UVIndex: *264 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,45,44,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,55,54,57,55,56,58,60,59,61,59,60,62,61,60,63,61,62,64,66,65,67,65,66,4,67,66,5,67,4,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,83,82,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,42,97,96,43,97,42,98,100,99,101,99,100,102,104,103,105,103,104,106,105,104,107,106,104,108,110,109,111,109,110,112,111,110,111,113,109,109,113,114,114,113,115,113,116,115,117,115,116,118,120,119,120,121,119,119,121,122,121,123,122,124,122,123,123,125,124,125,126,124,127,124,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *88 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh hedgeGate, Model::RootNode + C: "OO",4675493659417806582,0 + + ;Geometry::, Model::Mesh hedgeGate + C: "OO",5128161283963146177,4675493659417806582 + + ;Material::foliage, Model::Mesh hedgeGate + C: "OO",7192,4675493659417806582 + + ;Material::stone, Model::Mesh hedgeGate + C: "OO",7184,4675493659417806582 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeGate.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeGate.fbx.import new file mode 100644 index 0000000..e9a667a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeGate.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cbvd1ttgfwsmy" +path="res://.godot/imported/hedgeGate.fbx-abac6b122143698060b9c10827a0b7be.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeGate.fbx" +dest_files=["res://.godot/imported/hedgeGate.fbx-abac6b122143698060b9c10827a0b7be.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLarge.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLarge.fbx new file mode 100644 index 0000000..0722d86 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLarge.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 318 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "hedgeLarge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "hedgeLarge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5372272500225577973, "Model::hedgeLarge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4774326290944625265, "Geometry::", "Mesh" { + Vertices: *216 { + a: 1,0,-5,1,1.5,-5,1,0,5,1,1.5,5,1,0,-5,5,0,-5,1,1.5,-5,5,1.5,-5,4.5,2,-5,1.5,2,-5,5,0,5,1,0,5,5,1.5,5,1,1.5,5,4.5,2,5,1.5,2,5,4.5,2,-5,5,1.5,-5,4.5,2,5,5,1.5,5,5,0,-5,5,0,5,5,1.5,-5,5,1.5,5,1.5,2,-5,1.5,2,5,1,1.5,-5,1,1.5,5,5,0,5,5,0,-5,1,0,5,1,0,-5,4.5,6,5,1.5,6,5,4.25,6.75,5,1.75,6.75,5,3.5,7,5,2.5,7,5,4.5,2,-5,4.5,2,5,4.5,6,-5,4.5,6,5,1.5,6,-5,1.75,6.75,-5,1.5,6,5,1.75,6.75,5,4.25,6.75,-5,4.25,6.75,5,3.5,7,-5,3.5,7,5,4.25,6.75,-5,4.5,6,-5,4.25,6.75,5,4.5,6,5,3.5,7,-5,3.5,7,5,2.5,7,-5,2.5,7,5,1.5,2,-5,1.5,6,-5,1.5,2,5,1.5,6,5,1.5,6,-5,4.5,6,-5,1.75,6.75,-5,4.25,6.75,-5,2.5,7,-5,3.5,7,-5,2.5,7,-5,2.5,7,5,1.75,6.75,-5,1.75,6.75,5 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,12,-12,13,11,-13,14,13,-13,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,14,32,-16,33,15,-33,34,33,-33,35,33,-35,36,35,-35,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,9,62,-9,63,8,-63,64,63,-63,65,63,-65,66,65,-65,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -1,0,0,-1,0,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.7071068,0.7071068,0,1,0,0,0.9238795,0.3826834,0,1,0,0,0.9238795,0.3826834,0,1,0,0,0.9238795,0.3826834,0,-0.7071068,0.7071068,0,-0.9238795,0.3826834,0,-0.7071068,0.7071068,0,-0.9238795,0.3826834,0,-0.7071068,0.7071068,0,-0.9238795,0.3826834,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.9486833,0.3162278,0,0.7071068,0.7071068,0,0.1601822,0.9870875,0,0.7071068,0.7071068,0,0.1601822,0.9870875,0,0.7071068,0.7071068,0,0.1601822,0.9870875,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.9486833,0.3162278,0,0.7071068,0.7071068,0,0.1601822,0.9870875,0,-0.1601822,0.9870875,0,0.1601822,0.9870875,0,-0.1601822,0.9870875,0,0.1601822,0.9870875,0,-0.1601822,0.9870875,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.1601822,0.9870875,0,-0.7071068,0.7071068,0,-0.1601822,0.9870875,0,-0.7071068,0.7071068,0,-0.1601822,0.9870875,0,-0.7071068,0.7071068,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: -19.68504,0,-19.68504,5.905512,19.68504,0,19.68504,5.905512,-3.937008,-4.372571E-14,-19.68504,-4.372571E-14,-3.937008,5.905512,-19.68504,5.905512,-17.71654,7.874016,-5.905512,7.874016,19.68504,0,3.937008,0,19.68504,5.905512,3.937008,5.905512,17.71654,7.874016,5.905512,7.874016,19.68504,-6.959713,19.68504,-9.743597,-19.68504,-6.959713,-19.68504,-9.743597,19.68504,0,-19.68504,0,19.68504,5.905512,-19.68504,5.905512,-19.68504,9.743597,19.68504,9.743597,-19.68504,6.959713,19.68504,6.959713,19.68504,19.68504,19.68504,-19.68504,3.937008,19.68504,3.937008,-19.68504,17.71654,23.62205,5.905512,23.62205,16.73228,26.5748,6.889764,26.5748,13.77953,27.55906,9.84252,27.55906,19.68504,7.874016,-19.68504,7.874016,19.68504,23.62205,-19.68504,23.62205,-19.68504,24.27733,-19.68504,27.38981,19.68504,24.27733,19.68504,27.38981,19.68504,-7.469947,-19.68504,-7.469947,19.68504,-4.357469,-19.68504,-4.357469,19.68504,19.91986,19.68504,16.80738,-19.68504,19.91986,-19.68504,16.80738,-13.77953,-19.68504,-13.77953,19.68504,-9.84252,-19.68504,-9.84252,19.68504,-19.68504,7.874016,-19.68504,23.62205,19.68504,7.874016,19.68504,23.62205,-5.905512,23.62205,-17.71654,23.62205,-6.889764,26.5748,-16.73228,26.5748,-9.84252,27.55906,-13.77953,27.55906,-19.68504,18.05237,19.68504,18.05237,-19.68504,14.93989,19.68504,14.93989 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,12,11,13,11,12,14,13,12,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,14,32,15,33,15,32,34,33,32,35,33,34,36,35,34,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,9,62,8,63,8,62,64,63,62,65,63,64,66,65,64,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh hedgeLarge, Model::RootNode + C: "OO",5372272500225577973,0 + + ;Geometry::, Model::Mesh hedgeLarge + C: "OO",4774326290944625265,5372272500225577973 + + ;Material::stone, Model::Mesh hedgeLarge + C: "OO",7184,5372272500225577973 + + ;Material::foliage, Model::Mesh hedgeLarge + C: "OO",7192,5372272500225577973 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLarge.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLarge.fbx.import new file mode 100644 index 0000000..9832456 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLarge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://blfiai38ltayq" +path="res://.godot/imported/hedgeLarge.fbx-0cdd13e810f48d9ac843210a2cd710c5.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLarge.fbx" +dest_files=["res://.godot/imported/hedgeLarge.fbx-0cdd13e810f48d9ac843210a2cd710c5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeCurved.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeCurved.fbx new file mode 100644 index 0000000..3abea86 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeCurved.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 354 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "hedgeLargeCurved.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "hedgeLargeCurved.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4877635368205876887, "Model::hedgeLargeCurved", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4876801401383935852, "Geometry::", "Mesh" { + Vertices: *876 { + a: 1.722075,2,-4.157458,3.18198,2,-3.18198,1.722075,6,-4.157458,3.18198,6,-3.18198,4.157458,6,-1.722075,4.157458,2,-1.722075,4.5,6,3.753939E-13,4.5,2,3.465175E-13,3.18198,6,-3.18198,3.18198,2,-3.18198,4.157458,6,-1.722075,4.157458,2,-1.722075,3.18198,6,-3.18198,4.157458,6,-1.722075,3.005204,6.75,-3.005204,3.926488,6.75,-1.626405,4.157458,6,-1.722075,4.5,6,3.753939E-13,3.926488,6.75,-1.626405,4.25,6.75,3.753939E-13,3.926488,6.75,-1.626405,3.233578,7,-1.339392,3.005204,6.75,-3.005204,2.474874,7,-2.474874,4.25,6.75,3.753939E-13,3.5,7,3.753939E-13,3.926488,6.75,-1.626405,3.233578,7,-1.339392,1.626405,6.75,-3.926488,1.339392,7,-3.233578,1.299441E-13,6.75,-4.25,2.310117E-13,7,-3.5,3.005204,6.75,-3.005204,2.474874,7,-2.474874,1.626405,6.75,-3.926488,1.339392,7,-3.233578,8.662937E-14,6,-4.5,1.722075,6,-4.157458,1.299441E-13,6.75,-4.25,1.626405,6.75,-3.926488,1.767767,7,-1.767767,1.237437,6.75,-1.237437,0.9567086,7,-2.309699,0.669696,6.75,-1.616789,1.722075,6,-4.157458,3.18198,6,-3.18198,1.626405,6.75,-3.926488,3.005204,6.75,-3.005204,2.5,7,3.465175E-13,1.75,6.75,3.465175E-13,2.309699,7,-0.9567086,1.616789,6.75,-0.669696,1.06066,6,-1.06066,0.5740252,6,-1.385819,1.237437,6.75,-1.237437,0.669696,6.75,-1.616789,0.5740252,6,-1.385819,4.908997E-13,6,-1.5,0.669696,6.75,-1.616789,4.620233E-13,6.75,-1.75,0.5740252,2,-1.385819,5.197762E-13,2,-1.5,0.5740252,6,-1.385819,4.908997E-13,6,-1.5,0.9567086,7,-2.309699,0.669696,6.75,-1.616789,3.465175E-13,7,-2.5,4.620233E-13,6.75,-1.75,2.309699,7,-0.9567086,1.616789,6.75,-0.669696,1.767767,7,-1.767767,1.237437,6.75,-1.237437,1.237437,6.75,-1.237437,1.616789,6.75,-0.669696,1.06066,6,-1.06066,1.385819,6,-0.5740252,1.616789,6.75,-0.669696,1.75,6.75,3.465175E-13,1.385819,6,-0.5740252,1.5,6,3.465175E-13,1.385819,2,-0.5740252,1.385819,6,-0.5740252,1.5,2,3.465175E-13,1.5,6,3.465175E-13,1.06066,2,-1.06066,1.06066,6,-1.06066,1.385819,2,-0.5740252,1.385819,6,-0.5740252,1.06066,2,-1.06066,0.5740252,2,-1.385819,1.06066,6,-1.06066,0.5740252,6,-1.385819,8.662937E-14,2,-4.5,1.722075,2,-4.157458,8.662937E-14,6,-4.5,1.722075,6,-4.157458,2.310117E-13,7,-3.5,-5,7,-3.5,1.299441E-13,6.75,-4.25,-5,6.75,-4.25,-5,2,-4.5,8.662937E-14,2,-4.5,-5,6,-4.5,8.662937E-14,6,-4.5,4.620233E-13,6.75,-1.75,-5,6.75,-1.75,3.465175E-13,7,-2.5,-5,7,-2.5,5.197762E-13,2,-1.5,-5,2,-1.5,4.908997E-13,6,-1.5,-5,6,-1.5,-5,7,-3.5,2.310117E-13,7,-3.5,-5,7,-2.5,3.465175E-13,7,-2.5,0.9567086,7,-2.309699,1.339392,7,-3.233578,1.767767,7,-1.767767,2.309699,7,-0.9567086,2.474874,7,-2.474874,2.5,7,3.465175E-13,3.233578,7,-1.339392,3.5,7,3.753939E-13,3.5,7,5,2.5,7,5,4.908997E-13,6,-1.5,-5,6,-1.5,4.620233E-13,6.75,-1.75,-5,6.75,-1.75,-5,6,-4.5,8.662937E-14,6,-4.5,-5,6.75,-4.25,1.299441E-13,6.75,-4.25,-5,2,-4.5,-5,6,-4.5,-5,2,-1.5,-5,6.75,-4.25,-5,7,-3.5,-5,7,-2.5,-5,6.75,-1.75,-5,6,-1.5,1.5,2,3.465175E-13,1.5,6,3.465175E-13,1.5,2,5,1.5,6,5,4.5,2,5,1.5,2,5,4.5,6,5,1.5,6,5,4.25,6.75,5,1.75,6.75,5,3.5,7,5,2.5,7,5,1.5,6,3.465175E-13,1.75,6.75,3.465175E-13,1.5,6,5,1.75,6.75,5,4.25,6.75,3.753939E-13,4.25,6.75,5,3.5,7,3.753939E-13,3.5,7,5,2.5,7,3.465175E-13,2.5,7,5,1.75,6.75,3.465175E-13,1.75,6.75,5,4.5,2,3.465175E-13,4.5,2,5,4.5,6,3.753939E-13,4.5,6,5,4.25,6.75,3.753939E-13,4.5,6,3.753939E-13,4.25,6.75,5,4.5,6,5,-5,0,-5,-5,1.5,-5,-5,0,-1,-5,1.5,-1,8.662937E-14,2,-4.5,-5,2,-4.5,1.443823E-14,1.5,-5,-5,1.5,-5,-5,0,-5,1.443823E-14,0,-5,-5,1.5,-5,1.443823E-14,1.5,-5,5.630909E-13,1.5,-1,-5,1.5,-1,5.197762E-13,2,-1.5,-5,2,-1.5,5.919673E-13,0,-1,-5,0,-1,5.630909E-13,1.5,-1,-5,1.5,-1,1.385819,2,-0.5740252,0.9238795,1.5,-0.3826834,1.06066,2,-1.06066,0.7071068,1.5,-0.7071068,1.913417,1.5,-4.619398,1.722075,2,-4.157458,1.443823E-14,1.5,-5,8.662937E-14,2,-4.5,4.619398,1.5,-1.913417,4.157458,2,-1.722075,3.535534,1.5,-3.535534,3.18198,2,-3.18198,1.5,2,3.465175E-13,1,1.5,3.465175E-13,1.385819,2,-0.5740252,0.9238795,1.5,-0.3826834,3.535534,1.5,-3.535534,3.18198,2,-3.18198,1.913417,1.5,-4.619398,1.722075,2,-4.157458,5,0,3.465175E-13,5,0,5,5,1.5,3.753939E-13,5,1.5,5,5,0,5,5,0,3.465175E-13,1,0,5,4.619398,0,-1.913417,3.535534,0,-3.535534,1.913417,0,-4.619398,1,0,3.465175E-13,0.9238795,0,-0.3826834,1.443823E-14,0,-5,0.7071068,0,-0.7071068,0.3826834,0,-0.9238795,5.919673E-13,0,-1,-5,0,-1,-5,0,-5,1.5,2,3.465175E-13,1.5,2,5,1,1.5,3.465175E-13,1,1.5,5,5,0,5,1,0,5,5,1.5,5,1,1.5,5,1,0,3.465175E-13,1,1.5,3.465175E-13,1,0,5,1,1.5,5,4.5,2,3.465175E-13,5,1.5,3.753939E-13,4.5,2,5,5,1.5,5,0.5740252,2,-1.385819,0.3826834,1.5,-0.9238795,5.197762E-13,2,-1.5,5.630909E-13,1.5,-1,1.06066,2,-1.06066,0.7071068,1.5,-0.7071068,0.5740252,2,-1.385819,0.3826834,1.5,-0.9238795,4.619398,1.5,-1.913417,5,1.5,3.753939E-13,4.157458,2,-1.722075,4.5,2,3.465175E-13,0.9238795,0,-0.3826834,0.9238795,1.5,-0.3826834,1,0,3.465175E-13,1,1.5,3.465175E-13,0.7071068,0,-0.7071068,0.3826834,0,-0.9238795,0.7071068,1.5,-0.7071068,0.3826834,1.5,-0.9238795,0.3826834,0,-0.9238795,5.919673E-13,0,-1,0.3826834,1.5,-0.9238795,5.630909E-13,1.5,-1,1.913417,0,-4.619398,3.535534,0,-3.535534,1.913417,1.5,-4.619398,3.535534,1.5,-3.535534,0.7071068,0,-0.7071068,0.7071068,1.5,-0.7071068,0.9238795,0,-0.3826834,0.9238795,1.5,-0.3826834,1.443823E-14,0,-5,1.913417,0,-4.619398,1.443823E-14,1.5,-5,1.913417,1.5,-4.619398,3.535534,1.5,-3.535534,3.535534,0,-3.535534,4.619398,1.5,-1.913417,4.619398,0,-1.913417,4.619398,1.5,-1.913417,4.619398,0,-1.913417,5,1.5,3.753939E-13,5,0,3.465175E-13 + } + PolygonVertexIndex: *492 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,115,116,-114,113,116,-118,116,118,-118,118,119,-118,117,119,-121,119,121,-121,120,121,-123,123,122,-122,123,121,-125,125,124,-122,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,137,-137,139,138,-137,140,139,-137,141,140,-137,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,149,-149,151,149,-151,152,151,-151,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,134,175,-177,136,134,-177,177,136,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,221,-221,223,222,-221,224,223,-221,225,223,-225,226,223,-226,227,226,-226,228,226,-228,229,226,-229,230,226,-230,231,226,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,146,239,-239,147,239,-147,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1476 { + a: 0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.3826834,0,-0.9238795,0.9238795,0,-0.3826834,0.9951847,0,-0.09801714,0.9238795,0,-0.3826834,0.9951847,0,-0.09801714,0.9238795,0,-0.3826834,0.9951847,0,-0.09801714,0.7071068,0,-0.7071068,0.9238795,0,-0.3826834,0.7071068,0,-0.7071068,0.9238795,0,-0.3826834,0.7071068,0,-0.7071068,0.9238795,0,-0.3826834,0.6708204,0.3162277,-0.6708204,0.5182524,0.6803154,-0.5182524,0.876469,0.3162277,-0.3630454,0.6771294,0.6803153,-0.2804762,0.876469,0.3162277,-0.3630454,0.5182524,0.6803154,-0.5182524,0.876469,0.3162277,-0.3630454,0.6771294,0.6803153,-0.2804762,0.9447251,0.3149084,-0.09125404,0.718003,0.6924193,-0.07090265,0.9447251,0.3149084,-0.09125404,0.6771294,0.6803153,-0.2804762,0.6771294,0.6803153,-0.2804762,0.5182524,0.6803154,-0.5182524,0.1658901,0.9837474,-0.0687139,0.1269667,0.9837474,-0.1269667,0.1658901,0.9837474,-0.0687139,0.5182524,0.6803154,-0.5182524,0.718003,0.6924193,-0.07090265,0.6771294,0.6803153,-0.2804762,0.1698312,0.985312,-0.017819,0.1658901,0.9837474,-0.0687139,0.1698312,0.985312,-0.017819,0.6771294,0.6803153,-0.2804762,0.2804762,0.6803153,-0.6771294,0.07090265,0.6924193,-0.718003,0.0687139,0.9837474,-0.1658901,0.017819,0.985312,-0.1698312,0.0687139,0.9837474,-0.1658901,0.07090265,0.6924193,-0.718003,0.5182524,0.6803154,-0.5182524,0.2804762,0.6803153,-0.6771294,0.1269667,0.9837474,-0.1269667,0.0687139,0.9837474,-0.1658901,0.1269667,0.9837474,-0.1269667,0.2804762,0.6803153,-0.6771294,0.09125404,0.3149084,-0.9447251,0.07090265,0.6924193,-0.718003,0.3630454,0.3162277,-0.876469,0.2804762,0.6803153,-0.6771294,0.3630454,0.3162277,-0.876469,0.07090265,0.6924193,-0.718003,-0.09939024,0.9900723,0.09939024,-0.0537896,0.9900723,0.1298596,-0.4786796,0.7360242,0.4786796,-0.2590595,0.7360242,0.6254251,-0.4786796,0.7360242,0.4786796,-0.0537896,0.9900723,0.1298596,0.3630454,0.3162277,-0.876469,0.2804762,0.6803153,-0.6771294,0.6708204,0.3162277,-0.6708204,0.5182524,0.6803154,-0.5182524,0.6708204,0.3162277,-0.6708204,0.2804762,0.6803153,-0.6771294,-0.1503507,0.9885336,0.01399675,-0.1298596,0.9900723,0.0537896,-0.6903396,0.7202626,0.06821299,-0.6254251,0.7360242,0.2590595,-0.6903396,0.7202626,0.06821299,-0.1298596,0.9900723,0.0537896,-0.6708204,0.3162277,0.6708204,-0.4786796,0.7360242,0.4786796,-0.3630454,0.3162277,0.876469,-0.2590595,0.7360242,0.6254251,-0.3630454,0.3162277,0.876469,-0.4786796,0.7360242,0.4786796,-0.3630454,0.3162277,0.876469,-0.2590595,0.7360242,0.6254251,-0.0949151,0.3148001,0.9444004,-0.06821299,0.7202626,0.6903396,-0.0949151,0.3148001,0.9444004,-0.2590595,0.7360242,0.6254251,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.09801714,0,0.9951847,-0.09801714,0,0.9951847,-0.09801714,0,0.9951847,-0.3826834,0,0.9238795,-0.0537896,0.9900723,0.1298596,-0.01399675,0.9885336,0.1503507,-0.2590595,0.7360242,0.6254251,-0.06821299,0.7202626,0.6903396,-0.2590595,0.7360242,0.6254251,-0.01399675,0.9885336,0.1503507,-0.1298596,0.9900723,0.0537896,-0.09939024,0.9900723,0.09939024,-0.6254251,0.7360242,0.2590595,-0.4786796,0.7360242,0.4786796,-0.6254251,0.7360242,0.2590595,-0.09939024,0.9900723,0.09939024,-0.4786796,0.7360242,0.4786796,-0.6708204,0.3162277,0.6708204,-0.6254251,0.7360242,0.2590595,-0.876469,0.3162277,0.3630454,-0.6254251,0.7360242,0.2590595,-0.6708204,0.3162277,0.6708204,-0.6254251,0.7360242,0.2590595,-0.876469,0.3162277,0.3630454,-0.6903396,0.7202626,0.06821299,-0.9444004,0.3148001,0.0949151,-0.6903396,0.7202626,0.06821299,-0.876469,0.3162277,0.3630454,-0.9238795,0,0.3826834,-0.9951847,0,0.09801714,-0.9238795,0,0.3826834,-0.9951847,0,0.09801714,-0.9238795,0,0.3826834,-0.9951847,0,0.09801714,-0.7071068,0,0.7071068,-0.9238795,0,0.3826834,-0.7071068,0,0.7071068,-0.9238795,0,0.3826834,-0.7071068,0,0.7071068,-0.9238795,0,0.3826834,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.7071068,0,0.7071068,0.09801714,0,-0.9951847,0.09801714,0,-0.9951847,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.09801714,0,-0.9951847,0.017819,0.985312,-0.1698312,0.07090265,0.6924193,-0.718003,0,0.9870875,-0.1601822,0,0.7071068,-0.7071068,0,0.9870875,-0.1601822,0.07090265,0.6924193,-0.718003,0,0,-1,0,0,-1,0.09801714,0,-0.9951847,0.09801714,0,-0.9951847,0.09801714,0,-0.9951847,0,0,-1,-0.06821299,0.7202626,0.6903396,-0.01399675,0.9885336,0.1503507,0,0.7071068,0.7071068,0,0.9870875,0.1601822,0,0.7071068,0.7071068,-0.01399675,0.9885336,0.1503507,-0.09801714,0,0.9951847,-0.09801714,0,0.9951847,0,0,1,0,0,1,0,0,1,-0.09801714,0,0.9951847,0,0.9870875,-0.1601822,0,0.9870875,0.1601822,0.017819,0.985312,-0.1698312,-0.01399675,0.9885336,0.1503507,0.017819,0.985312,-0.1698312,0,0.9870875,0.1601822,-0.01399675,0.9885336,0.1503507,-0.0537896,0.9900723,0.1298596,0.017819,0.985312,-0.1698312,0.017819,0.985312,-0.1698312,-0.0537896,0.9900723,0.1298596,0.0687139,0.9837474,-0.1658901,-0.0537896,0.9900723,0.1298596,-0.09939024,0.9900723,0.09939024,0.0687139,0.9837474,-0.1658901,-0.09939024,0.9900723,0.09939024,-0.1298596,0.9900723,0.0537896,0.0687139,0.9837474,-0.1658901,0.0687139,0.9837474,-0.1658901,-0.1298596,0.9900723,0.0537896,0.1269667,0.9837474,-0.1269667,-0.1298596,0.9900723,0.0537896,-0.1503507,0.9885336,0.01399675,0.1269667,0.9837474,-0.1269667,0.1269667,0.9837474,-0.1269667,-0.1503507,0.9885336,0.01399675,0.1658901,0.9837474,-0.0687139,0.1698312,0.985312,-0.017819,0.1658901,0.9837474,-0.0687139,-0.1503507,0.9885336,0.01399675,0.1698312,0.985312,-0.017819,-0.1503507,0.9885336,0.01399675,0.1601822,0.9870875,0,-0.1601822,0.9870875,0,0.1601822,0.9870875,0,-0.1503507,0.9885336,0.01399675,-0.0949151,0.3148001,0.9444004,-0.06821299,0.7202626,0.6903396,0,0.3162278,0.9486833,0,0.7071068,0.7071068,0,0.3162278,0.9486833,-0.06821299,0.7202626,0.6903396,0,0.3162278,-0.9486833,0,0.7071068,-0.7071068,0.09125404,0.3149084,-0.9447251,0.07090265,0.6924193,-0.718003,0.09125404,0.3149084,-0.9447251,0,0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9951847,0,0.09801714,-1,0,0,-0.9951847,0,0.09801714,-1,0,0,-0.9951847,0,0.09801714,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9444004,0.3148001,0.0949151,-0.9486833,0.3162278,0,-0.6903396,0.7202626,0.06821299,-0.7071068,0.7071068,0,-0.6903396,0.7202626,0.06821299,-0.9486833,0.3162278,0,0.718003,0.6924193,-0.07090265,0.1698312,0.985312,-0.017819,0.7071068,0.7071068,0,0.1601822,0.9870875,0,0.7071068,0.7071068,0,0.1698312,0.985312,-0.017819,-0.1503507,0.9885336,0.01399675,-0.6903396,0.7202626,0.06821299,-0.1601822,0.9870875,0,-0.7071068,0.7071068,0,-0.1601822,0.9870875,0,-0.6903396,0.7202626,0.06821299,0.9951847,0,-0.09801714,0.9951847,0,-0.09801714,1,0,0,1,0,0,1,0,0,0.9951847,0,-0.09801714,0.718003,0.6924193,-0.07090265,0.7071068,0.7071068,0,0.9447251,0.3149084,-0.09125404,0.9486833,0.3162278,0,0.9447251,0.3149084,-0.09125404,0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.07275616,0.7052328,-0.7052328,0.08940511,0.3735052,-0.9233096,0,0.7071068,-0.7071068,0,0.3826834,-0.9238795,0,0.7071068,-0.7071068,0.08940511,0.3735052,-0.9233096,0,0,-1,0,0.3826834,-0.9238795,0.09801714,0,-0.9951847,0.08940511,0.3735052,-0.9233096,0.09801714,0,-0.9951847,0,0.3826834,-0.9238795,-0.09205667,0.3901203,0.9161505,-0.06659367,0.7055371,0.7055371,0,0.3826834,0.9238795,0,0.7071068,0.7071068,0,0.3826834,0.9238795,-0.06659367,0.7055371,0.7055371,-0.09801714,0,0.9951847,-0.09205667,0.3901203,0.9161505,0,0,1,0,0.3826834,0.9238795,0,0,1,-0.09205667,0.3901203,0.9161505,-0.6532815,0.7071068,0.2705981,-0.5,0.7071068,0.5,-0.8465121,0.4005885,0.3506368,-0.6478924,0.4005885,0.6478924,-0.8465121,0.4005885,0.3506368,-0.5,0.7071068,0.5,0.3560058,0.3668299,-0.8594741,0.08940511,0.3735052,-0.9233096,0.2705981,0.7071068,-0.6532815,0.07275616,0.7052328,-0.7052328,0.2705981,0.7071068,-0.6532815,0.08940511,0.3735052,-0.9233096,0.8594741,0.3668299,-0.3560058,0.6578129,0.3668299,-0.6578129,0.6532815,0.7071068,-0.2705981,0.5,0.7071068,-0.5,0.6532815,0.7071068,-0.2705981,0.6578129,0.3668299,-0.6578129,-0.7055371,0.7055371,0.06659367,-0.6532815,0.7071068,0.2705981,-0.9161505,0.3901203,0.09205667,-0.8465121,0.4005885,0.3506368,-0.9161505,0.3901203,0.09205667,-0.6532815,0.7071068,0.2705981,0.6578129,0.3668299,-0.6578129,0.3560058,0.3668299,-0.8594741,0.5,0.7071068,-0.5,0.2705981,0.7071068,-0.6532815,0.5,0.7071068,-0.5,0.3560058,0.3668299,-0.8594741,0.9951847,0,-0.09801714,0.9233096,0.3735052,-0.08940511,1,0,0,0.9238795,0.3826834,0,1,0,0,0.9233096,0.3735052,-0.08940511,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7055371,0.7055371,0.06659367,-0.9161505,0.3901203,0.09205667,-0.7071068,0.7071068,0,-0.9238795,0.3826834,0,-0.7071068,0.7071068,0,-0.9161505,0.3901203,0.09205667,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9951847,0,0.09801714,-1,0,0,-0.9161505,0.3901203,0.09205667,-0.9238795,0.3826834,0,-0.9161505,0.3901203,0.09205667,-1,0,0,0.7052328,0.7052328,-0.07275616,0.7071068,0.7071068,0,0.9233096,0.3735052,-0.08940511,0.9238795,0.3826834,0,0.9233096,0.3735052,-0.08940511,0.7071068,0.7071068,0,-0.2705981,0.7071068,0.6532815,-0.06659367,0.7055371,0.7055371,-0.3506368,0.4005885,0.8465121,-0.09205667,0.3901203,0.9161505,-0.3506368,0.4005885,0.8465121,-0.06659367,0.7055371,0.7055371,-0.5,0.7071068,0.5,-0.2705981,0.7071068,0.6532815,-0.6478924,0.4005885,0.6478924,-0.3506368,0.4005885,0.8465121,-0.6478924,0.4005885,0.6478924,-0.2705981,0.7071068,0.6532815,0.8594741,0.3668299,-0.3560058,0.6532815,0.7071068,-0.2705981,0.9233096,0.3735052,-0.08940511,0.7052328,0.7052328,-0.07275616,0.9233096,0.3735052,-0.08940511,0.6532815,0.7071068,-0.2705981,-0.9238795,0,0.3826834,-0.9951847,0,0.09801714,-0.8465121,0.4005885,0.3506368,-0.9161505,0.3901203,0.09205667,-0.8465121,0.4005885,0.3506368,-0.9951847,0,0.09801714,-0.7071068,0,0.7071068,-0.6478924,0.4005885,0.6478924,-0.3826834,0,0.9238795,-0.3506368,0.4005885,0.8465121,-0.3826834,0,0.9238795,-0.6478924,0.4005885,0.6478924,-0.3826834,0,0.9238795,-0.3506368,0.4005885,0.8465121,-0.09801714,0,0.9951847,-0.09205667,0.3901203,0.9161505,-0.09801714,0,0.9951847,-0.3506368,0.4005885,0.8465121,0.3826834,0,-0.9238795,0.3560058,0.3668299,-0.8594741,0.7071068,0,-0.7071068,0.6578129,0.3668299,-0.6578129,0.7071068,0,-0.7071068,0.3560058,0.3668299,-0.8594741,-0.7071068,0,0.7071068,-0.9238795,0,0.3826834,-0.6478924,0.4005885,0.6478924,-0.8465121,0.4005885,0.3506368,-0.6478924,0.4005885,0.6478924,-0.9238795,0,0.3826834,0.09801714,0,-0.9951847,0.08940511,0.3735052,-0.9233096,0.3826834,0,-0.9238795,0.3560058,0.3668299,-0.8594741,0.3826834,0,-0.9238795,0.08940511,0.3735052,-0.9233096,0.6578129,0.3668299,-0.6578129,0.8594741,0.3668299,-0.3560058,0.7071068,0,-0.7071068,0.9238795,0,-0.3826834,0.7071068,0,-0.7071068,0.8594741,0.3668299,-0.3560058,0.8594741,0.3668299,-0.3560058,0.9233096,0.3735052,-0.08940511,0.9238795,0,-0.3826834,0.9951847,0,-0.09801714,0.9238795,0,-0.3826834,0.9233096,0.3735052,-0.08940511 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *584 { + a: 3.456325,7.874016,-3.456325,7.874016,3.456325,23.62205,-3.456325,23.62205,3.456325,23.62205,3.456325,7.874016,-3.456325,23.62205,-3.456325,7.874016,3.456325,23.62205,3.456325,7.874016,-3.456325,23.62205,-3.456325,7.874016,3.456325,17.05309,-3.456325,17.05309,3.264307,20.15965,-3.264307,20.15965,3.456325,17.05309,-3.456325,17.05309,3.264307,20.15965,-3.264307,20.15965,-3.264307,-6.986494,-2.688252,-3.927788,3.264307,-6.986494,2.688252,-3.927788,-3.264307,-6.986494,-2.688252,-3.927788,3.264307,-6.986494,2.688252,-3.927788,-3.264307,-6.986494,-2.688252,-3.927788,3.264307,-6.986494,2.688252,-3.927788,-3.264307,-6.986494,-2.688252,-3.927788,3.264307,-6.986494,2.688252,-3.927788,3.456325,17.05309,-3.456325,17.05309,3.264307,20.15965,-3.264307,20.15965,1.92018,18.0081,1.344126,14.9494,-1.92018,18.0081,-1.344126,14.9494,3.456325,17.05309,-3.456325,17.05309,3.264307,20.15965,-3.264307,20.15965,1.92018,18.0081,1.344126,14.9494,-1.92018,18.0081,-1.344126,14.9494,1.152108,24.25245,-1.152108,24.25245,1.344126,27.359,-1.344126,27.359,1.152108,24.25245,-1.152108,24.25245,1.344126,27.359,-1.344126,27.359,1.152108,7.874016,-1.152108,7.874016,1.152108,23.62205,-1.152108,23.62205,1.92018,18.0081,1.344126,14.9494,-1.92018,18.0081,-1.344126,14.9494,1.92018,18.0081,1.344126,14.9494,-1.92018,18.0081,-1.344126,14.9494,-1.344126,27.359,1.344126,27.359,-1.152108,24.25245,1.152108,24.25245,-1.344126,27.359,1.344126,27.359,-1.152108,24.25245,1.152108,24.25245,-1.152108,7.874016,-1.152108,23.62205,1.152108,7.874016,1.152108,23.62205,-1.152108,7.874016,-1.152108,23.62205,1.152108,7.874016,1.152108,23.62205,1.152108,7.874016,-1.152108,7.874016,1.152108,23.62205,-1.152108,23.62205,3.456325,7.874016,-3.456325,7.874016,3.456325,23.62205,-3.456325,23.62205,-2.899042E-12,-4.357469,19.68504,-4.357469,-2.92747E-12,-7.469947,19.68504,-7.469947,19.68504,7.874016,-2.899014E-12,7.874016,19.68504,23.62205,-2.899014E-12,23.62205,2.813716E-12,14.93989,-19.68504,14.93989,2.78528E-12,18.05237,-19.68504,18.05237,2.899014E-12,7.874016,-19.68504,7.874016,2.785328E-12,23.62205,-19.68504,23.62205,19.68504,-13.77953,-9.094947E-13,-13.77953,19.68504,-9.84252,-1.364242E-12,-9.84252,-3.766569,-9.093303,-5.273197,-12.73062,-6.959713,-6.959713,-9.093303,-3.766569,-9.743597,-9.743597,-9.84252,1.364242E-12,-12.73062,-5.273197,-13.77953,1.477929E-12,-13.77953,19.68504,-9.84252,19.68504,2.78533E-12,24.27733,-19.68504,24.27733,2.813752E-12,27.38981,-19.68504,27.38981,19.68504,16.80738,-2.899023E-12,16.80738,19.68504,19.91986,-2.927444E-12,19.91986,-17.71654,7.874016,-17.71654,23.62205,-5.905512,7.874016,-16.73228,26.5748,-13.77953,27.55906,-9.84252,27.55906,-6.889764,26.5748,-5.905512,23.62205,1.364242E-12,7.874016,1.364242E-12,23.62205,19.68504,7.874016,19.68504,23.62205,17.71654,7.874016,5.905512,7.874016,17.71654,23.62205,5.905512,23.62205,16.73228,26.5748,6.889764,26.5748,13.77953,27.55906,9.84252,27.55906,1.364242E-12,24.27733,1.364242E-12,27.38981,19.68504,24.27733,19.68504,27.38981,-1.477929E-12,-7.469947,-19.68504,-7.469947,-1.477929E-12,-4.357469,-19.68504,-4.357469,1.364242E-12,18.05237,19.68504,18.05237,1.364242E-12,14.93989,19.68504,14.93989,-1.364242E-12,7.874016,-19.68504,7.874016,-1.477929E-12,23.62205,-19.68504,23.62205,-1.477929E-12,19.91986,-1.477929E-12,16.80738,-19.68504,19.91986,-19.68504,16.80738,-19.68504,2.43848E-28,-19.68504,5.905512,-3.937008,2.43848E-28,-3.937008,5.905512,-2.899009E-12,-6.959713,19.68504,-6.959713,-2.899009E-12,-9.743597,19.68504,-9.743597,19.68504,0,-2.899014E-12,0,19.68504,5.905512,-2.899014E-12,5.905512,2.785326E-12,6.959713,-19.68504,6.959713,2.899013E-12,9.743597,-19.68504,9.743597,2.899014E-12,5.501092E-27,-19.68504,5.501092E-27,2.785328E-12,5.905512,-19.68504,5.905512,1.152108,9.677186,0.7680721,6.919917,-1.152108,9.677186,-0.7680721,6.919917,-3.840361,-9.302762,-3.456325,-6.545494,3.840361,-9.302762,3.456325,-6.545494,-3.840361,-9.302762,-3.456325,-6.545494,3.840361,-9.302762,3.456325,-6.545494,1.152108,9.677186,0.7680721,6.919917,-1.152108,9.677186,-0.7680721,6.919917,-3.840361,-9.302762,-3.456325,-6.545494,3.840361,-9.302762,3.456325,-6.545494,-1.364242E-12,0,-19.68504,0,-1.477929E-12,5.905512,-19.68504,5.905512,19.68504,19.68504,19.68504,1.364242E-12,3.937008,19.68504,18.18661,-7.533138,13.91943,-13.91943,7.533138,-18.18661,3.937008,1.364242E-12,3.637321,-1.506628,5.684342E-14,-19.68504,2.783885,-2.783885,1.506628,-3.637321,2.33058E-12,-3.937008,-19.68504,-3.937008,-19.68504,-19.68504,1.364242E-12,9.743597,19.68504,9.743597,1.364242E-12,6.959713,19.68504,6.959713,19.68504,0,3.937008,0,19.68504,5.905512,3.937008,5.905512,1.364242E-12,0,1.364242E-12,5.905512,19.68504,0,19.68504,5.905512,-1.364323E-12,-6.959713,-1.478019E-12,-9.743597,-19.68504,-6.959713,-19.68504,-9.743597,1.152108,9.677186,0.7680721,6.919917,-1.152108,9.677186,-0.7680721,6.919917,1.152108,9.677186,0.7680721,6.919917,-1.152108,9.677186,-0.7680721,6.919917,3.840361,-9.302762,-3.840361,-9.302762,3.456325,-6.545494,-3.456325,-6.545494,-0.7680721,2.14973E-18,-0.7680721,5.905512,0.7680721,2.14973E-18,0.7680721,5.905512,0.7680721,0,-0.7680721,0,0.7680721,5.905512,-0.7680721,5.905512,0.7680721,-7.251918E-15,-0.7680721,-7.251918E-15,0.7680721,5.905512,-0.7680721,5.905512,3.840361,0,-3.840361,0,3.840361,5.905512,-3.840361,5.905512,-0.7680721,0,-0.7680721,5.905512,0.7680721,0,0.7680721,5.905512,3.840361,1.195277E-16,-3.840361,1.195277E-16,3.840361,5.905512,-3.840361,5.905512,3.840361,5.905512,3.840361,0,-3.840361,5.905512,-3.840361,0,3.840361,5.905512,3.840361,-3.625959E-14,-3.840361,5.905512,-3.840361,-3.625959E-14 + } + UVIndex: *492 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,115,116,113,113,116,117,116,118,117,118,119,117,117,119,120,119,121,120,120,121,122,123,122,121,123,121,124,125,124,121,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,137,136,139,138,136,140,139,136,141,140,136,142,144,143,145,143,144,146,148,147,149,147,148,150,149,148,151,149,150,152,151,150,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,134,175,176,136,134,176,177,136,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,221,220,223,222,220,224,223,220,225,223,224,226,223,225,227,226,225,228,226,227,229,226,228,230,226,229,231,226,230,232,234,233,235,233,234,236,238,237,239,237,238,146,239,238,147,239,146,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *164 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh hedgeLargeCurved, Model::RootNode + C: "OO",4877635368205876887,0 + + ;Geometry::, Model::Mesh hedgeLargeCurved + C: "OO",4876801401383935852,4877635368205876887 + + ;Material::foliage, Model::Mesh hedgeLargeCurved + C: "OO",7192,4877635368205876887 + + ;Material::stone, Model::Mesh hedgeLargeCurved + C: "OO",7184,4877635368205876887 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeCurved.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeCurved.fbx.import new file mode 100644 index 0000000..c7a1d72 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeCurved.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ct6nedvmhiwx3" +path="res://.godot/imported/hedgeLargeCurved.fbx-f5e0d41cc4689e228bc9b03ff2f472f8.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeCurved.fbx" +dest_files=["res://.godot/imported/hedgeLargeCurved.fbx-f5e0d41cc4689e228bc9b03ff2f472f8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeGate.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeGate.fbx new file mode 100644 index 0000000..a13c838 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeGate.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 404 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "hedgeLargeGate.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "hedgeLargeGate.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4840782032666854256, "Model::hedgeLargeGate", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4702707190544379874, "Geometry::", "Mesh" { + Vertices: *816 { + a: 5,0,-5,0.9999999,0,-5,5,0,-2,0.9999999,0,-2,5,1.5,-2,0.9999999,1.5,-2,4.5,2,-2.5,3.5,2,-2.5,2.5,2,-2.5,1.5,2,-2.5,1.5,2,-5,1.5,2,-3.5,0.9999999,1.5,-5,1.5,2,-2.5,0.9999999,1.5,-2,5,0,-2,0.9999999,0,-2,5,1.5,-2,0.9999999,1.5,-2,0.9999999,0,-5,0.9999999,1.5,-5,0.9999999,0,-2,0.9999999,1.5,-2,4.5,2,-5,5,1.5,-5,4.5,2,-3.5,5,1.5,-2,4.5,2,-2.5,0.9999999,0,-5,5,0,-5,0.9999999,1.5,-5,5,1.5,-5,4.5,2,-5,1.5,2,-5,5,0,-5,5,0,-2,5,1.5,-5,5,1.5,-2,2.5,2,-2.5,1.5,2,-2.5,1.75,2,-2.75,1.5,2,-3.5,4.5,2,-3.5,4.5,2,-2.5,4.25,2,-2.75,3.5,2,-2.5,4.5,2,3.5,4.25,2,2.75,4.5,2,2.5,3.5,2,2.5,5,1.5,2,4.5,2,2.5,0.9999999,1.5,2,3.5,2,2.5,2.5,2,2.5,1.5,2,2.5,5,0,2,0.9999999,0,2,5,0,5,0.9999999,0,5,0.9999999,1.5,2,1.5,2,2.5,0.9999999,1.5,5,1.5,2,3.5,1.5,2,5,0.9999999,0,2,5,0,2,0.9999999,1.5,2,5,1.5,2,5,1.5,5,4.5,2,5,5,1.5,2,4.5,2,3.5,4.5,2,2.5,0.9999999,0,2,0.9999999,1.5,2,0.9999999,0,5,0.9999999,1.5,5,5,1.5,2,5,0,2,5,1.5,5,5,0,5,5,0,5,0.9999999,0,5,5,1.5,5,0.9999999,1.5,5,1.5,2,5,4.5,2,5,2.5,2,2.5,1.75,2,2.75,1.5,2,2.5,1.5,2,3.5,2.5,7,-3.5,1.9375,6.75,-2.9375,1.75,6.75,-3.5,2.5,7,-3.5,2.5,6.75,-2.75,1.9375,6.75,-2.9375,4.0625,6.75,-2.9375,3.5,6.75,-2.75,3.5,7,-3.5,4.25,6.75,-3.5,4.0625,6.75,-2.9375,3.5,7,-3.5,4.0625,6.75,2.9375,4.25,6.75,3.5,3.5,7,3.5,2.5,6.75,2.75,2.5,7,3.5,1.9375,6.75,2.9375,1.9375,6.75,2.9375,2.5,7,3.5,1.75,6.75,3.5,4.0625,6.75,2.9375,3.5,7,3.5,3.5,6.75,2.75,3.5,7,-5,3.5,7,-3.5,2.5,7,-5,2.5,7,-3.5,4.5,2,-5,4.5,2,-3.5,4.5,6,-5,4.5,6,-3.5,4.25,6.75,-5,4.5,6,-5,4.25,6.75,-3.5,4.5,6,-3.5,1.5,6,-5,4.5,6,-5,1.75,6.75,-5,4.25,6.75,-5,2.5,7,-5,3.5,7,-5,4.25,6.75,-5,4.25,6.75,-3.5,3.5,7,-5,3.5,7,-3.5,2.5,7,-5,2.5,7,-3.5,1.75,6.75,-5,1.75,6.75,-3.5,1.5,6,-5,1.75,6.75,-5,1.5,6,-3.5,1.75,6.75,-3.5,1.5,2,-5,1.5,6,-5,1.5,2,-3.5,1.5,6,-3.5,3.5,2,-2.5,2.5,2,-2.5,3.5,6,-2.5,2.5,6,-2.5,1.5,6,-3.5,1.75,6.75,-3.5,1.75,6,-2.75,1.9375,6.75,-2.9375,2.5,6,-2.5,1.75,6,-2.75,2.5,6.75,-2.75,1.9375,6.75,-2.9375,4.25,6.75,-3.5,4.5,6,-3.5,4.0625,6.75,-2.9375,4.25,6,-2.75,4.25,6,-2.75,3.5,6,-2.5,4.0625,6.75,-2.9375,3.5,6.75,-2.75,3.5,6.75,-2.75,2.5,6.75,-2.75,3.5,7,-3.5,2.5,7,-3.5,3.5,6,-2.5,2.5,6,-2.5,3.5,6.75,-2.75,2.5,6.75,-2.75,2.5,2,-2.5,1.75,2,-2.75,2.5,6,-2.5,1.75,6,-2.75,1.5,2,-3.5,1.5,6,-3.5,1.75,2,-2.75,1.75,6,-2.75,4.5,6,-3.5,4.5,2,-3.5,4.25,6,-2.75,4.25,2,-2.75,4.25,2,-2.75,3.5,2,-2.5,4.25,6,-2.75,3.5,6,-2.5,1.75,6,2.75,1.9375,6.75,2.9375,1.5,6,3.5,1.75,6.75,3.5,1.75,6,2.75,2.5,6,2.5,1.9375,6.75,2.9375,2.5,6.75,2.75,4.5,6,5,1.5,6,5,4.25,6.75,5,1.75,6.75,5,3.5,7,5,2.5,7,5,1.75,6.75,3.5,1.75,6.75,5,1.5,6,3.5,1.5,6,5,4.25,6.75,5,3.5,7,5,4.25,6.75,3.5,3.5,7,3.5,3.5,7,3.5,2.5,7,3.5,3.5,6.75,2.75,2.5,6.75,2.75,1.75,2,2.75,2.5,2,2.5,1.75,6,2.75,2.5,6,2.5,4.25,6.75,3.5,4.5,6,3.5,4.25,6.75,5,4.5,6,5,2.5,6,2.5,3.5,6,2.5,2.5,6.75,2.75,3.5,6.75,2.75,3.5,6,2.5,4.25,6,2.75,3.5,6.75,2.75,4.0625,6.75,2.9375,4.25,6,2.75,4.5,6,3.5,4.0625,6.75,2.9375,4.25,6.75,3.5,3.5,2,2.5,4.25,2,2.75,3.5,6,2.5,4.25,6,2.75,1.5,2,3.5,1.5,6,3.5,1.5,2,5,1.5,6,5,4.5,6,3.5,4.5,2,3.5,4.5,6,5,4.5,2,5,4.25,6,2.75,4.25,2,2.75,4.5,6,3.5,4.5,2,3.5,3.5,7,5,2.5,7,5,3.5,7,3.5,2.5,7,3.5,2.5,2,2.5,3.5,2,2.5,2.5,6,2.5,3.5,6,2.5,1.75,2,2.75,1.75,6,2.75,1.5,2,3.5,1.5,6,3.5,2.5,7,5,1.75,6.75,5,2.5,7,3.5,1.75,6.75,3.5 + } + PolygonVertexIndex: *432 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,5,-9,10,12,-12,13,11,-13,14,13,-13,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,26,-26,28,30,-30,31,29,-31,32,31,-31,33,32,-31,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,53,-53,55,54,-53,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,63,-63,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,72,-72,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,85,-85,87,86,-85,88,90,-90,91,89,-91,92,94,-94,95,97,-97,98,100,-100,101,103,-103,104,106,-106,107,109,-109,110,112,-112,113,115,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,33,128,-33,129,32,-129,130,129,-129,131,129,-131,132,131,-131,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,87,202,-87,203,86,-203,204,203,-203,205,203,-205,206,205,-205,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1296 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2879809,0.9576361,0,0.7071068,0.7071068,0,0.2879809,0.9576361,0,0.7071068,0.7071068,0,0.2879809,0.9576361,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.2879809,0.9576361,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.2879809,0.9576361,0,0.7071068,0.7071068,-0.7071068,0.7071068,0,-0.9238795,0.3826834,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.9238795,0.3826834,0,-0.9576361,0.2879809,0,-0.7071068,0.7071068,0,-0.9238795,0.3826834,0,0,0,1,0,0.2879809,0.9576361,0,0,1,0,0.2879809,0.9576361,0,0,1,0,0.2879809,0.9576361,-1,0,0,-1,0,0,-0.9238795,0.3826834,0,-0.9576361,0.2879809,0,-0.9238795,0.3826834,0,-1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.9238795,0.3826834,0,0.9576361,0.2879809,0,0.9238795,0.3826834,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.9576361,0.2879809,0,0.7071068,0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,0.9238795,0.3826834,0,1,0,0,0.9576361,0.2879809,0,1,0,0,0.9238795,0.3826834,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2879809,-0.9576361,0,0.2879809,-0.9576361,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.2879809,-0.9576361,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.2879809,-0.9576361,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.2879809,-0.9576361,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9576361,0.2879809,0,-0.9238795,0.3826834,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.9238795,0.3826834,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.9238795,0.3826834,0,0,0,-1,0,0.2879809,-0.9576361,0,0,-1,0,0.2879809,-0.9576361,0,0,-1,0,0.2879809,-0.9576361,0.9238795,0.3826834,0,0.9576361,0.2879809,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.9576361,0.2879809,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.9576361,0.2879809,0,-1,0,0,-1,0,0,-0.9576361,0.2879809,0,-0.9238795,0.3826834,0,-0.9576361,0.2879809,0,-1,0,0,0.9576361,0.2879809,0,0.9238795,0.3826834,0,1,0,0,1,0,0,1,0,0,0.9238795,0.3826834,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1334017,0.9820427,0.1334017,-0.7214665,0.6823455,0.1178589,-0.5309973,0.6603665,0.5309973,-0.1334017,0.9820427,0.1334017,-0.5309973,0.6603665,0.5309973,-0.1178589,0.6823455,0.7214665,0.5309973,0.6603665,0.5309973,0.1334017,0.9820427,0.1334017,0.1178589,0.6823455,0.7214665,0.7214665,0.6823455,0.1178589,0.1334017,0.9820427,0.1334017,0.5309973,0.6603665,0.5309973,0.5309973,0.6603665,-0.5309973,0.1334017,0.9820427,-0.1334017,0.7214665,0.6823455,-0.1178589,-0.1178589,0.6823455,-0.7214665,-0.5309973,0.6603665,-0.5309973,-0.1334017,0.9820427,-0.1334017,-0.5309973,0.6603665,-0.5309973,-0.7214665,0.6823455,-0.1178589,-0.1334017,0.9820427,-0.1334017,0.5309973,0.6603665,-0.5309973,0.1178589,0.6823455,-0.7214665,0.1334017,0.9820427,-0.1334017,0.1601822,0.9870875,0,-0.1601822,0.9870875,0,0.1334017,0.9820427,0.1334017,-0.1334017,0.9820427,0.1334017,0.1334017,0.9820427,0.1334017,-0.1601822,0.9870875,0,1,0,0,1,0,0,0.9870875,0,0.1601822,0.9870875,0,0.1601822,0.9870875,0,0.1601822,1,0,0,0.7071068,0.7071068,0,0.7214665,0.6823455,0.1178589,0.9486833,0.3162278,0,0.9383045,0.3127681,0.1475151,0.9486833,0.3162278,0,0.7214665,0.6823455,0.1178589,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0.7071068,0,0.1601822,0.9870875,0,0.7214665,0.6823455,0.1178589,0.1334017,0.9820427,0.1334017,0.7214665,0.6823455,0.1178589,0.1601822,0.9870875,0,-0.1601822,0.9870875,0,-0.7071068,0.7071068,0,-0.1334017,0.9820427,0.1334017,-0.7214665,0.6823455,0.1178589,-0.1334017,0.9820427,0.1334017,-0.7071068,0.7071068,0,-0.9486833,0.3162278,0,-0.9383045,0.3127681,0.1475151,-0.7071068,0.7071068,0,-0.7214665,0.6823455,0.1178589,-0.7071068,0.7071068,0,-0.9383045,0.3127681,0.1475151,-1,0,0,-0.9870875,0,0.1601823,-1,0,0,-0.9870875,0,0.1601823,-1,0,0,-0.9870875,0,0.1601823,0.1601823,0,0.9870875,0.1601823,0,0.9870875,-0.1601822,0,0.9870875,-0.1601822,0,0.9870875,-0.1601822,0,0.9870875,0.1601823,0,0.9870875,-0.9383045,0.3127681,0.1475151,-0.6666667,0.3333333,0.6666667,-0.7214665,0.6823455,0.1178589,-0.5309973,0.6603665,0.5309973,-0.7214665,0.6823455,0.1178589,-0.6666667,0.3333333,0.6666667,-0.1475151,0.3127681,0.9383045,-0.1178589,0.6823455,0.7214665,-0.6666667,0.3333333,0.6666667,-0.5309973,0.6603665,0.5309973,-0.6666667,0.3333333,0.6666667,-0.1178589,0.6823455,0.7214665,0.7214665,0.6823455,0.1178589,0.5309973,0.6603665,0.5309973,0.9383045,0.3127681,0.1475151,0.6666667,0.3333333,0.6666667,0.9383045,0.3127681,0.1475151,0.5309973,0.6603665,0.5309973,0.6666667,0.3333333,0.6666667,0.5309973,0.6603665,0.5309973,0.1475151,0.3127681,0.9383045,0.1178589,0.6823455,0.7214665,0.1475151,0.3127681,0.9383045,0.5309973,0.6603665,0.5309973,0.1178589,0.6823455,0.7214665,0.1334017,0.9820427,0.1334017,-0.1178589,0.6823455,0.7214665,-0.1334017,0.9820427,0.1334017,-0.1178589,0.6823455,0.7214665,0.1334017,0.9820427,0.1334017,0.1475151,0.3127681,0.9383045,0.1178589,0.6823455,0.7214665,-0.1475151,0.3127681,0.9383045,-0.1178589,0.6823455,0.7214665,-0.1475151,0.3127681,0.9383045,0.1178589,0.6823455,0.7214665,-0.1601822,0,0.9870875,-0.1601822,0,0.9870875,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.1601822,0,0.9870875,-0.9870875,0,0.1601823,-0.7071068,0,0.7071068,-0.9870875,0,0.1601823,-0.7071068,0,0.7071068,-0.9870875,0,0.1601823,-0.7071068,0,0.7071068,0.9870875,0,0.1601822,0.7071068,0,0.7071068,0.9870875,0,0.1601822,0.7071068,0,0.7071068,0.9870875,0,0.1601822,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.1601823,0,0.9870875,0.1601823,0,0.9870875,0.1601823,0,0.9870875,0.7071068,0,0.7071068,-0.6666667,0.3333333,-0.6666667,-0.9383045,0.3127681,-0.1475151,-0.5309973,0.6603665,-0.5309973,-0.7214665,0.6823455,-0.1178589,-0.5309973,0.6603665,-0.5309973,-0.9383045,0.3127681,-0.1475151,-0.6666667,0.3333333,-0.6666667,-0.5309973,0.6603665,-0.5309973,-0.1475151,0.3127681,-0.9383045,-0.1178589,0.6823455,-0.7214665,-0.1475151,0.3127681,-0.9383045,-0.5309973,0.6603665,-0.5309973,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7214665,0.6823455,-0.1178589,-0.9383045,0.3127681,-0.1475151,-0.7071068,0.7071068,0,-0.9486833,0.3162278,0,-0.7071068,0.7071068,0,-0.9383045,0.3127681,-0.1475151,0.7071068,0.7071068,0,0.7214665,0.6823455,-0.1178589,0.1601822,0.9870875,0,0.1334017,0.9820427,-0.1334017,0.1601822,0.9870875,0,0.7214665,0.6823455,-0.1178589,0.1334017,0.9820427,-0.1334017,0.1178589,0.6823455,-0.7214665,-0.1334017,0.9820427,-0.1334017,-0.1178589,0.6823455,-0.7214665,-0.1334017,0.9820427,-0.1334017,0.1178589,0.6823455,-0.7214665,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.1601823,0,-0.9870875,-0.1601823,0,-0.9870875,-0.1601823,0,-0.9870875,-0.7071068,0,-0.7071068,0.7214665,0.6823455,-0.1178589,0.7071068,0.7071068,0,0.9383045,0.3127681,-0.1475151,0.9486833,0.3162278,0,0.9383045,0.3127681,-0.1475151,0.7071068,0.7071068,0,-0.1475151,0.3127681,-0.9383045,-0.1178589,0.6823455,-0.7214665,0.1475151,0.3127681,-0.9383045,0.1178589,0.6823455,-0.7214665,0.1475151,0.3127681,-0.9383045,-0.1178589,0.6823455,-0.7214665,0.1475151,0.3127681,-0.9383045,0.1178589,0.6823455,-0.7214665,0.6666667,0.3333333,-0.6666667,0.5309973,0.6603665,-0.5309973,0.6666667,0.3333333,-0.6666667,0.1178589,0.6823455,-0.7214665,0.6666667,0.3333333,-0.6666667,0.5309973,0.6603665,-0.5309973,0.9383045,0.3127681,-0.1475151,0.7214665,0.6823455,-0.1178589,0.9383045,0.3127681,-0.1475151,0.5309973,0.6603665,-0.5309973,0.1601822,0,-0.9870875,0.1601822,0,-0.9870875,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.1601822,0,-0.9870875,-0.9870875,0,-0.1601822,-1,0,0,-0.9870875,0,-0.1601822,-1,0,0,-0.9870875,0,-0.1601822,-1,0,0,0.9870875,0,-0.1601823,1,0,0,0.9870875,0,-0.1601823,1,0,0,0.9870875,0,-0.1601823,1,0,0,0.7071068,0,-0.7071068,0.9870875,0,-0.1601823,0.7071068,0,-0.7071068,0.9870875,0,-0.1601823,0.7071068,0,-0.7071068,0.9870875,0,-0.1601823,0.1601822,0.9870875,0,0.1334017,0.9820427,-0.1334017,-0.1601822,0.9870875,0,-0.1334017,0.9820427,-0.1334017,-0.1601822,0.9870875,0,0.1334017,0.9820427,-0.1334017,-0.1601823,0,-0.9870875,-0.1601823,0,-0.9870875,0.1601822,0,-0.9870875,0.1601822,0,-0.9870875,0.1601822,0,-0.9870875,-0.1601823,0,-0.9870875,-0.7071068,0,-0.7071068,-0.9870875,0,-0.1601822,-0.7071068,0,-0.7071068,-0.9870875,0,-0.1601822,-0.7071068,0,-0.7071068,-0.9870875,0,-0.1601822,-0.1601822,0.9870875,0,-0.1334017,0.9820427,-0.1334017,-0.7071068,0.7071068,0,-0.7214665,0.6823455,-0.1178589,-0.7071068,0.7071068,0,-0.1334017,0.9820427,-0.1334017 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *544 { + a: 19.68504,-19.68504,3.937008,-19.68504,19.68504,-7.874016,3.937008,-7.874016,19.68504,9.743597,3.937008,9.743597,17.71654,12.52748,13.77953,12.52748,9.84252,12.52748,5.905511,12.52748,-19.68504,9.743597,-13.77953,9.743597,-19.68504,6.959713,-9.84252,9.743597,-7.874016,6.959713,19.68504,0,3.937008,0,19.68504,5.905512,3.937008,5.905512,-19.68504,0,-19.68504,5.905512,-7.874016,0,-7.874016,5.905512,19.68504,-6.959713,19.68504,-9.743597,13.77953,-6.959713,7.874016,-9.743597,9.84252,-6.959713,-3.937008,-2.186285E-14,-19.68504,-2.186285E-14,-3.937008,5.905512,-19.68504,5.905512,-17.71654,7.874016,-5.905511,7.874016,19.68504,-3.400934E-07,7.874016,-3.400934E-07,19.68504,5.905511,7.874016,5.905511,-9.84252,-9.84252,-5.905511,-9.84252,-6.889763,-10.82677,-5.905511,-13.77953,-17.71654,-13.77953,-17.71654,-9.84252,-16.73228,-10.82677,-13.77953,-9.84252,-17.71654,13.77953,-16.73228,10.82677,-17.71654,9.84252,-13.77953,9.84252,-19.68504,9.743597,-17.71654,12.52748,-3.937008,9.743597,-13.77953,12.52748,-9.84252,12.52748,-5.905512,12.52748,19.68504,7.874016,3.937008,7.874016,19.68504,19.68504,3.937008,19.68504,7.874016,6.959713,9.84252,9.743597,19.68504,6.959713,13.77953,9.743597,19.68504,9.743597,-3.937008,-1.368886E-07,-19.68504,-1.368886E-07,-3.937008,5.905512,-19.68504,5.905512,-19.68504,-9.743597,-19.68504,-6.959713,-7.874016,-9.743597,-13.77953,-6.959713,-9.84252,-6.959713,7.874016,-3.294039E-22,7.874016,5.905512,19.68504,-3.294039E-22,19.68504,5.905512,-7.874015,5.905511,-7.874016,-2.933326E-07,-19.68504,5.905511,-19.68504,-2.933326E-07,19.68504,3.948704E-08,3.937008,3.948704E-08,19.68504,5.905512,3.937008,5.905512,5.905512,7.874016,17.71654,7.874016,-9.84252,9.84252,-6.889764,10.82677,-5.905512,9.84252,-5.905512,13.77953,-9.959929,22.05628,-8.559315,19.08717,-10.89367,19.08717,4.979965,24.40547,5.913708,21.43636,3.57935,21.43636,18.83049,14.38879,16.49613,14.38879,17.42988,17.3579,18.36362,-2.055541,16.02926,-2.055541,17.42988,0.913574,-16.02926,-2.055541,-18.36362,-2.055541,-17.42988,0.913574,-5.913708,21.43636,-4.979965,24.40547,-3.57935,21.43636,8.559315,19.08717,9.959929,22.05628,10.89367,19.08717,-18.83049,14.38879,-17.42988,17.3579,-16.49613,14.38879,-13.77953,-19.68504,-13.77953,-13.77953,-9.84252,-19.68504,-9.84252,-13.77953,19.68504,7.874016,13.77953,7.874016,19.68504,23.62205,13.77953,23.62205,19.68504,19.91986,19.68504,16.80738,13.77953,19.91986,13.77953,16.80738,-5.905511,23.62205,-17.71654,23.62205,-6.889763,26.5748,-16.73228,26.5748,-9.84252,27.55906,-13.77953,27.55906,19.68504,-7.469947,13.77953,-7.469947,19.68504,-4.357469,13.77953,-4.357469,-19.68504,18.05237,-13.77953,18.05237,-19.68504,14.93989,-13.77953,14.93989,-19.68504,24.27733,-19.68504,27.38981,-13.77953,24.27733,-13.77953,27.38981,-19.68504,7.874016,-19.68504,23.62205,-13.77953,7.874016,-13.77953,23.62205,13.77953,7.874016,9.84252,7.874016,13.77953,23.62205,9.84252,23.62205,-11.20492,25.52577,-10.89367,28.62265,-8.092443,25.52577,-8.559315,28.62265,6.224956,26.27653,3.112478,26.27653,5.913708,29.37341,3.57935,29.37341,18.36362,21.86583,18.67487,18.76895,16.02926,21.86583,15.56239,18.76895,19.29736,24.02425,16.18489,24.02425,18.83049,27.12113,16.49613,27.12113,13.77953,18.67487,9.84252,18.67487,13.77953,21.78735,9.84252,21.78735,13.77953,25.52232,9.84252,25.52232,13.77953,28.6348,9.84252,28.6348,6.224956,7.874016,3.112478,7.874016,6.224956,23.62205,3.112478,23.62205,-11.20492,7.874016,-11.20492,23.62205,-8.092443,7.874016,-8.092443,23.62205,18.67487,23.62205,18.67487,7.874016,15.56239,23.62205,15.56239,7.874016,19.29736,7.874016,16.18489,7.874016,19.29736,23.62205,16.18489,23.62205,8.092443,25.52577,8.559315,28.62265,11.20492,25.52577,10.89367,28.62265,-3.112478,26.27653,-6.224956,26.27653,-3.57935,29.37341,-5.913708,29.37341,17.71654,23.62205,5.905512,23.62205,16.73228,26.5748,6.889764,26.5748,13.77953,27.55906,9.84252,27.55906,13.77953,27.38981,19.68504,27.38981,13.77953,24.27733,19.68504,24.27733,-19.68504,-7.469947,-19.68504,-4.357469,-13.77953,-7.469947,-13.77953,-4.357469,-13.77953,21.78735,-9.84252,21.78735,-13.77953,18.67487,-9.84252,18.67487,-3.112478,7.874016,-6.224956,7.874016,-3.112478,23.62205,-6.224956,23.62205,-13.77953,19.91986,-13.77953,16.80738,-19.68504,19.91986,-19.68504,16.80738,-9.84252,25.52232,-13.77953,25.52232,-9.84252,28.6348,-13.77953,28.6348,-16.18489,24.02425,-19.29736,24.02425,-16.49613,27.12113,-18.83049,27.12113,-15.56239,18.76895,-18.67487,18.76895,-16.02926,21.86583,-18.36362,21.86583,-16.18489,7.874016,-19.29736,7.874016,-16.18489,23.62205,-19.29736,23.62205,13.77953,7.874016,13.77953,23.62205,19.68504,7.874016,19.68504,23.62205,-13.77953,23.62205,-13.77953,7.874016,-19.68504,23.62205,-19.68504,7.874016,-15.56239,23.62205,-15.56239,7.874016,-18.67487,23.62205,-18.67487,7.874016,-13.77953,19.68504,-9.84252,19.68504,-13.77953,13.77953,-9.84252,13.77953,-9.84252,7.874016,-13.77953,7.874016,-9.84252,23.62205,-13.77953,23.62205,8.092443,7.874016,8.092443,23.62205,11.20492,7.874016,11.20492,23.62205,19.68504,18.05237,19.68504,14.93989,13.77953,18.05237,13.77953,14.93989 + } + UVIndex: *432 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,5,8,10,12,11,13,11,12,14,13,12,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,26,25,28,30,29,31,29,30,32,31,30,33,32,30,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,53,52,55,54,52,56,58,57,59,57,58,60,62,61,63,61,62,64,63,62,65,67,66,68,66,67,69,71,70,72,70,71,73,72,71,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,85,84,87,86,84,88,90,89,91,89,90,92,94,93,95,97,96,98,100,99,101,103,102,104,106,105,107,109,108,110,112,111,113,115,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,33,128,32,129,32,128,130,129,128,131,129,130,132,131,130,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,87,202,86,203,86,202,204,203,202,205,203,204,206,205,204,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *144 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh hedgeLargeGate, Model::RootNode + C: "OO",4840782032666854256,0 + + ;Geometry::, Model::Mesh hedgeLargeGate + C: "OO",4702707190544379874,4840782032666854256 + + ;Material::stone, Model::Mesh hedgeLargeGate + C: "OO",7184,4840782032666854256 + + ;Material::foliage, Model::Mesh hedgeLargeGate + C: "OO",7192,4840782032666854256 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeGate.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeGate.fbx.import new file mode 100644 index 0000000..757ec21 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeGate.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cumk1dlvo4pfx" +path="res://.godot/imported/hedgeLargeGate.fbx-354755e820207deaadf39d34cc434292.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/hedgeLargeGate.fbx" +dest_files=["res://.godot/imported/hedgeLargeGate.fbx-354755e820207deaadf39d34cc434292.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/lantern.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/lantern.fbx new file mode 100644 index 0000000..e8e57ff --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/lantern.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 448 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "lantern.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "lantern.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4702928443190440151, "Model::lantern", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4891997847460265800, "Geometry::", "Mesh" { + Vertices: *891 { + a: 0.48,2.976,0.48,-0.48,2.976,0.48,0.48,4.415999,0.48,-0.48,4.415999,0.48,-0.48,2.976,-0.48,-0.48,4.415999,-0.48,-0.48,2.976,0.48,-0.48,4.415999,0.48,0.3216,12.86,-0.3216,0.3216,6.816,-0.3216,0.3216,12.86,0.3216,0.3216,6.816,0.3216,0.3216,6.816,0.3216,-0.3216,6.816,0.3216,0.3216,12.86,0.3216,0.1608,12.3776,0.3216,0.1608,12.6992,0.3216,-0.1608,12.3776,0.3216,-0.1608,12.6992,0.3216,-0.3216,12.86,0.3216,-0.48,4.415999,-0.48,-0.3216,6.816,-0.3216,-0.48,4.415999,0.48,-0.3216,6.816,0.3216,0.48,4.415999,-0.48,0.48,4.415999,0.48,0.3216,6.816,-0.3216,0.3216,6.816,0.3216,0.48,4.415999,0.48,-0.48,4.415999,0.48,0.3216,6.816,0.3216,-0.3216,6.816,0.3216,0.48,4.415999,-0.48,0.48,2.976,-0.48,0.48,4.415999,0.48,0.48,2.976,0.48,-0.48,2.976,-0.48,0.48,2.976,-0.48,-0.48,4.415999,-0.48,0.48,4.415999,-0.48,-0.48,4.415999,-0.48,0.48,4.415999,-0.48,-0.3216,6.816,-0.3216,0.3216,6.816,-0.3216,0.1608,12.3776,0.3216,-0.1608,12.3776,0.3216,0.08039998,12.458,1.1216,-0.08040002,12.458,1.1216,-1.082242,14.86,-0.5819305,-1.082242,15.26,-0.5819305,-1.082242,14.86,0.5819305,-1.082242,15.26,0.5819305,-0.5819305,14.86,-1.082242,0.5819305,14.86,-1.082242,-0.5819305,15.26,-1.082242,0.5819305,15.26,-1.082242,1.082242,14.86,0.5819305,0.5819305,14.86,1.082242,1.082242,15.26,0.5819305,0.5819305,15.26,1.082242,0.431074,15.26,-0.7180426,0.7180427,15.26,-0.431074,0.3362378,15.56,-0.5600733,0.5600733,15.56,-0.3362377,0.7180427,15.26,-0.431074,0.7180426,15.26,0.431074,0.5600733,15.56,-0.3362377,0.5600733,15.56,0.3362378,0.08040002,12.6188,-1.1216,0.08040002,12.458,-1.1216,0.1608,12.6992,-0.3216,0.1608,12.3776,-0.3216,0.5600733,15.56,-0.3362377,0.5600733,15.56,0.3362378,0.3362378,15.56,-0.5600733,0.3362377,15.56,0.5600733,-0.3362377,15.56,-0.5600733,-0.3362378,15.56,0.5600733,-0.5600733,15.56,-0.3362378,-0.5600733,15.56,0.3362377,-0.3216,6.816,-0.3216,0.3216,6.816,-0.3216,-0.3216,12.86,-0.3216,-0.1608,12.3776,-0.3216,-0.1608,12.6992,-0.3216,0.1608,12.3776,-0.3216,0.1608,12.6992,-0.3216,0.3216,12.86,-0.3216,0.5819305,14.86,1.082242,-0.5819305,14.86,1.082242,0.5819305,15.26,1.082242,-0.5819305,15.26,1.082242,-0.7180426,15.26,-0.431074,-0.431074,15.26,-0.7180427,-0.5600733,15.56,-0.3362378,-0.3362377,15.56,-0.5600733,-0.431074,15.26,-0.7180427,0.431074,15.26,-0.7180426,-0.3362377,15.56,-0.5600733,0.3362378,15.56,-0.5600733,-0.7180426,15.26,-0.431074,-0.5600733,15.56,-0.3362378,-0.7180427,15.26,0.431074,-0.5600733,15.56,0.3362377,0.1608,12.6992,0.3216,0.08039998,12.6188,1.1216,-0.1608,12.6992,0.3216,-0.08040002,12.6188,1.1216,-0.1608,12.3776,0.3216,-0.1608,12.6992,0.3216,-0.08040002,12.458,1.1216,-0.08040002,12.6188,1.1216,-0.5600733,15.56,0.3362377,-0.3362378,15.56,0.5600733,-0.7180427,15.26,0.431074,-0.431074,15.26,0.7180426,0.1608,12.3776,-0.3216,0.08040002,12.458,-1.1216,-0.1608,12.3776,-0.3216,-0.08039998,12.458,-1.1216,-1.082242,14.86,0.5819305,-1.082242,15.26,0.5819305,-0.5819305,14.86,1.082242,-0.5819305,15.26,1.082242,-0.08039998,12.458,-1.1216,-0.08039998,12.6188,-1.1216,-0.1608,12.3776,-0.3216,-0.1608,12.6992,-0.3216,-0.3216,6.816,-0.3216,-0.3216,12.86,-0.3216,-0.3216,6.816,0.3216,-0.3216,12.86,0.3216,0.431074,15.26,0.7180427,-0.431074,15.26,0.7180426,0.3362377,15.56,0.5600733,-0.3362378,15.56,0.5600733,0.5819305,15.26,-1.082242,0.5819305,14.86,-1.082242,1.082242,15.26,-0.5819305,1.082242,14.86,-0.5819305,1.082242,15.26,-0.5819305,1.082242,15.26,0.5819305,0.5819305,15.26,-1.082242,0.7180427,15.26,-0.431074,0.431074,15.26,-0.7180426,0.7180426,15.26,0.431074,0.5819305,15.26,1.082242,0.431074,15.26,0.7180427,-0.5819305,15.26,-1.082242,-0.431074,15.26,-0.7180427,-0.7180426,15.26,-0.431074,-1.082242,15.26,-0.5819305,-0.5819305,15.26,1.082242,-0.431074,15.26,0.7180426,-0.7180427,15.26,0.431074,-1.082242,15.26,0.5819305,1.082242,15.26,-0.5819305,1.082242,14.86,-0.5819305,1.082242,15.26,0.5819305,1.082242,14.86,0.5819305,-1.082242,14.86,-0.5819305,-0.5819305,14.86,-1.082242,-1.082242,15.26,-0.5819305,-0.5819305,15.26,-1.082242,0.08039998,12.458,1.1216,-0.08040002,12.458,1.1216,0.08039998,12.6188,1.1216,-0.08040002,12.6188,1.1216,-0.08039998,12.458,-1.1216,0.08040002,12.458,-1.1216,-0.08039998,12.6188,-1.1216,0.08040002,12.6188,-1.1216,0.1608,12.6992,0.3216,0.1608,12.3776,0.3216,0.08039998,12.6188,1.1216,0.08039998,12.458,1.1216,0.7180426,15.26,0.431074,0.431074,15.26,0.7180427,0.5600733,15.56,0.3362378,0.3362377,15.56,0.5600733,0.1608,12.6992,-0.3216,-0.1608,12.6992,-0.3216,0.08040002,12.6188,-1.1216,-0.08039998,12.6188,-1.1216,0.5819305,14.86,-1.082242,0.832944,14.86,-0.4786677,1.082242,14.86,-0.5819305,1.082242,14.86,0.5819305,0.4786677,14.86,-0.832944,0.832944,14.86,0.4786677,0.5819305,14.86,1.082242,0.4786677,14.86,0.832944,-0.5819305,14.86,-1.082242,-0.4786677,14.86,-0.832944,-0.832944,14.86,-0.4786677,-1.082242,14.86,-0.5819305,-0.5819305,14.86,1.082242,-0.4786677,14.86,0.832944,-0.832944,14.86,0.4786677,-1.082242,14.86,0.5819305,0.48,2.976,-0.48,0.48,2.976,-0.7679999,0.48,2.976,0.7679999,0.48,2.976,-0.7679999,0.48,1.212586E-14,-0.7679999,0.7679999,2.976,-0.48,0.7679999,1.212586E-14,-0.48,0.48,0,0.7679999,0.48,2.976,0.7679999,0.7679999,1.212586E-14,0.48,0.7679999,2.976,0.48,0.48,0,0.7679999,-0.48,0,0.7679999,0.48,2.976,0.7679999,-0.48,2.976,0.7679999,0.7679999,2.976,-0.48,0.7679999,1.212586E-14,-0.48,0.7679999,2.976,0.48,0.7679999,1.212586E-14,0.48,-0.48,-1.212586E-14,-0.7679999,0.48,1.212586E-14,-0.7679999,-0.48,2.976,-0.7679999,0.48,2.976,-0.7679999,-0.48,-1.212586E-14,-0.7679999,-0.48,2.976,-0.7679999,-0.7679999,0,-0.48,-0.7679999,2.976,-0.48,0.7679999,2.976,-0.48,0.7679999,2.976,0.48,0.48,2.976,-0.7679999,0.48,2.976,0.7679999,0.48,2.976,-0.48,-0.48,2.976,-0.7679999,0.48,2.976,0.48,-0.48,2.976,-0.48,-0.48,2.976,0.48,-0.48,2.976,0.7679999,-0.7679999,2.976,-0.48,-0.7679999,2.976,0.48,-0.7679999,0,-0.48,-0.7679999,2.976,-0.48,-0.7679999,0,0.48,-0.7679999,2.976,0.48,-0.7679999,0,0.48,-0.7679999,2.976,0.48,-0.48,0,0.7679999,-0.48,2.976,0.7679999,0.7679999,1.212586E-14,-0.48,0.48,1.212586E-14,-0.7679999,0.7679999,1.212586E-14,0.48,0.48,0,0.7679999,-0.48,-1.212586E-14,-0.7679999,-0.48,0,0.7679999,-0.7679999,0,-0.48,-0.7679999,0,0.48,0.832944,14.86,-0.4786677,0.4786677,14.86,-0.832944,0.3216,12.86,-0.3216,-0.832944,14.86,-0.4786677,-0.3216,12.86,-0.3216,-0.4786677,14.86,-0.832944,0.3216,12.86,0.3216,-0.3216,12.86,0.3216,0.4786677,14.86,0.832944,-0.4786677,14.86,0.832944,0.4786677,14.86,0.832944,-0.3216,12.86,0.3216,0.3216,12.86,-0.3216,-0.3216,12.86,-0.3216,0.3216,12.86,0.3216,-0.3216,12.86,0.3216,0.3216,12.86,0.3216,-0.3216,12.86,-0.3216,0.832944,14.86,0.4786677,0.3216,12.86,0.3216,0.4786677,14.86,0.832944,-0.3216,12.86,-0.3216,0.3216,12.86,-0.3216,-0.4786677,14.86,-0.832944,0.4786677,14.86,-0.832944,-0.4786677,14.86,-0.832944,0.3216,12.86,-0.3216,-0.3216,12.86,0.3216,-0.832944,14.86,0.4786677,-0.4786677,14.86,0.832944,-0.832944,14.86,-0.4786677,-0.832944,14.86,0.4786677,-0.3216,12.86,-0.3216,-0.3216,12.86,0.3216,-0.3216,12.86,-0.3216,-0.832944,14.86,0.4786677,0.832944,14.86,-0.4786677,0.3216,12.86,-0.3216,0.832944,14.86,0.4786677,0.3216,12.86,0.3216,0.832944,14.86,0.4786677,0.3216,12.86,-0.3216 + } + PolygonVertexIndex: *522 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,15,17,-14,18,16,-15,19,13,-18,18,19,-18,14,19,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,77,75,-77,78,77,-77,79,77,-79,80,82,-82,83,81,-83,84,83,-83,83,85,-82,86,84,-83,87,81,-86,86,87,-86,82,87,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,143,-143,143,145,-142,146,141,-146,147,146,-146,148,144,-143,149,144,-149,150,149,-149,151,150,-149,152,146,-148,153,152,-148,154,150,-152,154,152,-154,151,155,-155,155,152,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,184,-186,185,187,-190,190,189,-188,191,189,-191,192,184,-189,193,192,-189,194,192,-194,195,192,-195,196,191,-191,197,191,-197,198,195,-195,198,197,-197,195,198,-200,199,198,-197,200,202,-202,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,225,-225,226,224,-226,227,229,-229,230,228,-230,229,232,-232,233,230,-232,234,231,-233,235,230,-234,235,234,-233,236,230,-236,232,236,-236,237,236,-233,238,236,-238,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,248,-251,252,251,-251,253,251,-253,254,253,-253,255,257,-257,258,260,-260,261,263,-263,264,266,-266,267,269,-269,270,272,-272,273,275,-275,276,278,-278,279,281,-281,282,284,-284,285,287,-287,288,290,-290,291,293,-293,294,296,-296 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1566 { + a: 0,0,1,0,0.03224184,0.9994802,0,0,1,0,0.03224184,0.9994802,0,0,1,0,0.03224184,0.9994802,-1,0,0,-1,0,0,-0.9994802,0.03224184,0,-0.9994802,0.03224184,0,-0.9994802,0.03224184,0,-1,0,0,1,0,0,1,0,0,0.9994346,0.03362175,0,0.9994346,0.03362175,0,0.9994346,0.03362175,0,1,0,0,0,0.03362175,0.9994346,0,0,1,0,0.03362175,0.9994346,0,0,1,0,0.03362175,0.9994346,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.03362175,0.9994346,0,0,1,0,0,1,0,0,1,0,0,1,0,0.03362175,0.9994346,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9994802,0.03224184,0,-0.9994802,0.03224184,0,-0.9994346,0.03362175,0,-0.9994346,0.03362175,0,-0.9994346,0.03362175,0,-0.9994802,0.03224184,0,0.9994802,0.03224184,0,0.9994346,0.03362175,0,0.9994802,0.03224184,0,0.9994346,0.03362175,0,0.9994802,0.03224184,0,0.9994346,0.03362175,0,0,0.03224184,0.9994802,0,0.03362175,0.9994346,0,0.03224184,0.9994802,0,0.03362175,0.9994346,0,0.03224184,0.9994802,0,0.03362175,0.9994346,0.9994802,0.03224184,0,0.9994802,0.03224184,0,1,0,0,1,0,0,1,0,0,0.9994802,0.03224184,0,0,0,-1,0,0.03224184,-0.9994802,0,0,-1,0,0.03224184,-0.9994802,0,0,-1,0,0.03224184,-0.9994802,0,0.03224184,-0.9994802,0,0.03362175,-0.9994346,0,0.03224184,-0.9994802,0,0.03362175,-0.9994346,0,0.03224184,-0.9994802,0,0.03362175,-0.9994346,0,-0.9949878,0.09999629,0,-0.9949878,0.09999629,0,-0.9949878,0.09999629,0,-0.9949878,0.09999629,0,-0.9949878,0.09999629,0,-0.9949878,0.09999629,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6074434,0.5118838,-0.6074434,0.6074434,0.5118838,-0.6074434,0.6074434,0.5118838,-0.6074434,0.6074434,0.5118838,-0.6074434,0.6074434,0.5118838,-0.6074434,0.6074434,0.5118838,-0.6074434,0.8848275,0.4659189,0,0.8848275,0.4659189,0,0.8848275,0.4659189,0,0.8848275,0.4659189,0,0.8848275,0.4659189,0,0.8848275,0.4659189,0,0.9949878,0,-0.09999628,0.9949878,0,-0.09999628,0.9949878,0,-0.09999628,0.9949878,0,-0.09999628,0.9949878,0,-0.09999628,0.9949878,0,-0.09999628,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.03362175,-0.9994346,0,0,-1,0,0.03362175,-0.9994346,0,0,-1,0,0.03362175,-0.9994346,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.03362175,-0.9994346,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.03362175,-0.9994346,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.6074434,0.5118838,-0.6074434,-0.6074434,0.5118838,-0.6074434,-0.6074434,0.5118838,-0.6074434,-0.6074434,0.5118838,-0.6074434,-0.6074434,0.5118838,-0.6074434,-0.6074434,0.5118838,-0.6074434,0,0.4659189,-0.8848275,0,0.4659189,-0.8848275,0,0.4659189,-0.8848275,0,0.4659189,-0.8848275,0,0.4659189,-0.8848275,0,0.4659189,-0.8848275,-0.8848275,0.4659189,0,-0.8848275,0.4659189,0,-0.8848275,0.4659189,0,-0.8848275,0.4659189,0,-0.8848275,0.4659189,0,-0.8848275,0.4659189,0,0,0.9949878,0.09999629,0,0.9949878,0.09999629,0,0.9949878,0.09999629,0,0.9949878,0.09999629,0,0.9949878,0.09999629,0,0.9949878,0.09999629,-0.9949878,0,0.09999628,-0.9949878,0,0.09999628,-0.9949878,0,0.09999628,-0.9949878,0,0.09999628,-0.9949878,0,0.09999628,-0.9949878,0,0.09999628,-0.6074434,0.5118838,0.6074434,-0.6074434,0.5118838,0.6074434,-0.6074434,0.5118838,0.6074434,-0.6074434,0.5118838,0.6074434,-0.6074434,0.5118838,0.6074434,-0.6074434,0.5118838,0.6074434,0,-0.9949878,-0.09999629,0,-0.9949878,-0.09999629,0,-0.9949878,-0.09999629,0,-0.9949878,-0.09999629,0,-0.9949878,-0.09999629,0,-0.9949878,-0.09999629,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.9949878,0,-0.09999631,-0.9949878,0,-0.09999631,-0.9949878,0,-0.09999631,-0.9949878,0,-0.09999631,-0.9949878,0,-0.09999631,-0.9949878,0,-0.09999631,-0.9994346,0.03362175,0,-0.9994346,0.03362175,0,-1,0,0,-1,0,0,-1,0,0,-0.9994346,0.03362175,0,0,0.4659189,0.8848275,0,0.4659189,0.8848275,0,0.4659189,0.8848275,0,0.4659189,0.8848275,0,0.4659189,0.8848275,0,0.4659189,0.8848275,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9949878,0,0.09999631,0.9949878,0,0.09999631,0.9949878,0,0.09999631,0.9949878,0,0.09999631,0.9949878,0,0.09999631,0.9949878,0,0.09999631,0.6074434,0.5118838,0.6074434,0.6074434,0.5118838,0.6074434,0.6074434,0.5118838,0.6074434,0.6074434,0.5118838,0.6074434,0.6074434,0.5118838,0.6074434,0.6074434,0.5118838,0.6074434,0,0.9949878,-0.09999629,0,0.9949878,-0.09999629,0,0.9949878,-0.09999629,0,0.9949878,-0.09999629,0,0.9949878,-0.09999629,0,0.9949878,-0.09999629,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6881523,-0.2299845,-0.6881523,0.6881523,-0.2299845,-0.6881523,0.6881523,-0.2299845,-0.6881523,-0.6881523,-0.2299845,-0.6881523,-0.6881523,-0.2299845,-0.6881523,-0.6881523,-0.2299845,-0.6881523,0,-0.2477042,0.9688357,0,-0.2477042,0.9688357,0,-0.2477042,0.9688357,0,-0.2477042,0.9688357,0,-0.2477042,0.9688357,0,-0.2477042,0.9688357,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6881523,-0.2299845,0.6881523,0.6881523,-0.2299845,0.6881523,0.6881523,-0.2299845,0.6881523,0,-0.2477042,-0.9688357,0,-0.2477042,-0.9688357,0,-0.2477042,-0.9688357,0,-0.2477042,-0.9688357,0,-0.2477042,-0.9688357,0,-0.2477042,-0.9688357,-0.6881523,-0.2299845,0.6881523,-0.6881523,-0.2299845,0.6881523,-0.6881523,-0.2299845,0.6881523,-0.9688357,-0.2477042,0,-0.9688357,-0.2477042,0,-0.9688357,-0.2477042,0,-0.9688357,-0.2477042,0,-0.9688357,-0.2477042,0,-0.9688357,-0.2477042,0,0.9688357,-0.2477042,0,0.9688357,-0.2477042,0,0.9688357,-0.2477042,0,0.9688357,-0.2477042,0,0.9688357,-0.2477042,0,0.9688357,-0.2477042,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *594 { + a: 1.889764,11.71654,-1.889764,11.71654,1.889764,17.38583,-1.889764,17.38583,-1.889764,11.71654,-1.889764,17.38583,1.889764,11.71654,1.889764,17.38583,1.266142,50.62992,1.266142,26.83465,-1.266142,50.62992,-1.266142,26.83465,1.266142,26.83465,-1.266142,26.83465,1.266142,50.62992,0.6330709,48.73071,0.6330709,49.99685,-0.6330709,48.73071,-0.6330709,49.99685,-1.266142,50.62992,-1.889764,17.22363,-1.266142,26.69301,1.889764,17.22363,1.266142,26.69301,1.889764,17.22363,-1.889764,17.22363,1.266142,26.69301,-1.266142,26.69301,1.889764,17.22363,-1.889764,17.22363,1.266142,26.69301,-1.266142,26.69301,1.889764,17.38583,1.889764,11.71654,-1.889764,17.38583,-1.889764,11.71654,1.889764,11.71654,-1.889764,11.71654,1.889764,17.38583,-1.889764,17.38583,1.889764,17.22363,-1.889764,17.22363,1.266142,26.69301,-1.266142,26.69301,0.6330709,6.132685,-0.6330709,6.132685,0.3165354,9.298157,-0.3165354,9.298157,-2.291065,58.50394,-2.291065,60.07874,2.291065,58.50394,2.291065,60.07874,2.291065,58.50394,-2.291065,58.50394,2.291065,60.07874,-2.291065,60.07874,1.392811,58.50394,-1.392811,58.50394,1.392811,60.07874,-1.392811,60.07874,0.7988877,49.9734,-0.7988877,49.9734,0.6231324,51.34829,-0.6231324,51.34829,1.697142,51.84219,-1.697142,51.84219,1.323771,53.17703,-1.323771,53.17703,4.361963,49.68031,4.361963,49.04725,1.196491,49.99685,1.196491,48.73071,-2.205013,-1.323771,-2.205013,1.323771,-1.323771,-2.205013,-1.323771,2.205013,1.323771,-2.205013,1.323771,2.205013,2.205013,-1.323771,2.205013,1.323771,1.266142,26.83465,-1.266142,26.83465,1.266142,50.62992,0.6330709,48.73071,0.6330709,49.99685,-0.6330709,48.73071,-0.6330709,49.99685,-1.266142,50.62992,2.291065,58.50394,-2.291065,58.50394,2.291065,60.07874,-2.291065,60.07874,0.7988877,49.9734,-0.7988877,49.9734,0.6231324,51.34829,-0.6231324,51.34829,1.697142,51.84219,-1.697142,51.84219,1.323771,53.17703,-1.323771,53.17703,-1.697142,51.84219,-1.323771,53.17703,1.697142,51.84219,1.323771,53.17703,0.6330709,3.739703,0.3165354,0.574231,-0.6330709,3.739703,-0.3165354,0.574231,1.196491,48.73071,1.196491,49.99685,4.361963,49.04725,4.361963,49.68031,-0.6231324,51.34829,0.6231324,51.34829,-0.7988877,49.9734,0.7988877,49.9734,-0.6330709,6.132685,-0.3165354,9.298157,0.6330709,6.132685,0.3165354,9.298157,-1.392811,58.50394,-1.392811,60.07874,1.392811,58.50394,1.392811,60.07874,-4.361963,49.04725,-4.361963,49.68031,-1.196491,48.73071,-1.196491,49.99685,-1.266142,26.83465,-1.266142,50.62992,1.266142,26.83465,1.266142,50.62992,1.697142,51.84219,-1.697142,51.84219,1.323771,53.17703,-1.323771,53.17703,1.392811,60.07874,1.392811,58.50394,-1.392811,60.07874,-1.392811,58.50394,-4.260797,-2.291065,-4.260797,2.291065,-2.291065,-4.260797,-2.82694,-1.697142,-1.697142,-2.82694,-2.82694,1.697142,-2.291065,4.260797,-1.697142,2.82694,2.291065,-4.260797,1.697142,-2.82694,2.82694,-1.697142,4.260797,-2.291065,2.291065,4.260797,1.697142,2.82694,2.82694,1.697142,4.260797,2.291065,2.291065,60.07874,2.291065,58.50394,-2.291065,60.07874,-2.291065,58.50394,1.392811,58.50394,-1.392811,58.50394,1.392811,60.07874,-1.392811,60.07874,0.3165354,49.04725,-0.3165354,49.04725,0.3165354,49.68031,-0.3165354,49.68031,0.3165354,49.04725,-0.3165354,49.04725,0.3165354,49.68031,-0.3165354,49.68031,-1.196491,49.99685,-1.196491,48.73071,-4.361963,49.68031,-4.361963,49.04725,0.7988877,49.9734,-0.7988877,49.9734,0.6231324,51.34829,-0.6231324,51.34829,-0.6330709,3.739703,0.6330709,3.739703,-0.3165354,0.574231,0.3165354,0.574231,2.291065,-4.260797,3.279307,-1.884519,4.260797,-2.291065,4.260797,2.291065,1.884519,-3.279307,3.279307,1.884519,2.291065,4.260797,1.884519,3.279307,-2.291065,-4.260797,-1.884519,-3.279307,-3.279307,-1.884519,-4.260797,-2.291065,-2.291065,4.260797,-1.884519,3.279307,-3.279307,1.884519,-4.260797,2.291065,-1.889764,-1.889764,-1.889764,-3.023622,-1.889764,3.023622,0.8017589,11.71654,0.8017589,4.773959E-14,-0.8017588,11.71654,-0.8017588,4.773959E-14,-0.8017589,4.866706E-29,-0.8017589,11.71654,0.8017589,4.773959E-14,0.8017589,11.71654,1.889764,0,-1.889764,0,1.889764,11.71654,-1.889764,11.71654,1.889764,11.71654,1.889764,4.773959E-14,-1.889764,11.71654,-1.889764,4.773959E-14,1.889764,-4.773959E-14,-1.889764,4.773959E-14,1.889764,11.71654,-1.889764,11.71654,-0.8017589,-4.773959E-14,-0.8017589,11.71654,0.8017589,2.865901E-23,0.8017589,11.71654,-3.023622,-1.889764,-3.023622,1.889764,-1.889764,-3.023622,-1.889764,3.023622,-1.889764,-1.889764,1.889764,-3.023622,-1.889764,1.889764,1.889764,-1.889764,1.889764,1.889764,1.889764,3.023622,3.023622,-1.889764,3.023622,1.889764,-1.889764,0,-1.889764,11.71654,1.889764,0,1.889764,11.71654,-0.8017589,0,-0.8017589,11.71654,0.8017589,0,0.8017589,11.71654,3.023622,-1.889764,1.889764,-3.023622,3.023622,1.889764,1.889764,3.023622,-1.889764,-3.023622,-1.889764,3.023622,-3.023622,-1.889764,-3.023622,1.889764,4.361963,49.68031,4.361963,49.04725,1.196491,49.99685,4.361963,49.68031,4.361963,49.04725,1.196491,49.99685,0.3165354,9.298157,0.6330709,6.132685,-0.3165354,9.298157,0.3165354,9.298157,0.6330709,6.132685,-0.3165354,9.298157,1.266142,50.62992,1.266142,26.83465,-1.266142,50.62992,1.266142,50.62992,1.266142,26.83465,-1.266142,50.62992,1.266142,50.62992,1.266142,26.83465,-1.266142,50.62992,1.266142,50.62992,1.266142,26.83465,-1.266142,50.62992,1.266142,50.62992,1.266142,26.83465,-1.266142,50.62992,4.260797,-2.291065,2.82694,1.697142,4.260797,2.291065,4.260797,-2.291065,2.82694,1.697142,4.260797,2.291065,4.260797,-2.291065,2.82694,1.697142,4.260797,2.291065,4.260797,-2.291065,2.82694,1.697142,4.260797,2.291065,4.260797,-2.291065,2.82694,1.697142,4.260797,2.291065 + } + UVIndex: *522 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,15,17,13,18,16,14,19,13,17,18,19,17,14,19,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,77,75,76,78,77,76,79,77,78,80,82,81,83,81,82,84,83,82,83,85,81,86,84,82,87,81,85,86,87,85,82,87,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,143,142,143,145,141,146,141,145,147,146,145,148,144,142,149,144,148,150,149,148,151,150,148,152,146,147,153,152,147,154,150,151,154,152,153,151,155,154,155,152,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,184,185,185,187,189,190,189,187,191,189,190,192,184,188,193,192,188,194,192,193,195,192,194,196,191,190,197,191,196,198,195,194,198,197,196,195,198,199,199,198,196,200,202,201,203,205,204,206,204,205,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,218,216,217,219,221,220,222,220,221,223,225,224,226,224,225,227,229,228,230,228,229,229,232,231,233,230,231,234,231,232,235,230,233,235,234,232,236,230,235,232,236,235,237,236,232,238,236,237,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,248,250,252,251,250,253,251,252,254,253,252,255,257,256,258,260,259,261,263,262,264,266,265,267,269,268,270,272,271,273,275,274,276,278,277,279,281,280,282,284,283,285,287,286,288,290,289,291,293,292,294,296,295 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *174 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh lantern, Model::RootNode + C: "OO",4702928443190440151,0 + + ;Geometry::, Model::Mesh lantern + C: "OO",4891997847460265800,4702928443190440151 + + ;Material::roof, Model::Mesh lantern + C: "OO",7172,4702928443190440151 + + ;Material::stoneDark, Model::Mesh lantern + C: "OO",7174,4702928443190440151 + + ;Material::_defaultMat, Model::Mesh lantern + C: "OO",7176,4702928443190440151 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/lantern.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/lantern.fbx.import new file mode 100644 index 0000000..e7ecfc6 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/lantern.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://8pnjshiqdrwm" +path="res://.godot/imported/lantern.fbx-a4e85575bad4d7621d0b207d7be4c130.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/lantern.fbx" +dest_files=["res://.godot/imported/lantern.fbx-a4e85575bad4d7621d0b207d7be4c130.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/overhang.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/overhang.fbx new file mode 100644 index 0000000..1bdf855 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/overhang.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 495 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "overhang.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "overhang.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5309231870873688724, "Model::overhang", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5157457789370015063, "Geometry::", "Mesh" { + Vertices: *384 { + a: 4,6.7,-4.25,4,6.7,-4.75,1.7,9,-4.25,1.7,9,-4.75,1.65,10,4,1.4,10,4,1.65,9.499999,4,1.4,9,4,4,9,4,4,9.499999,4,4,10,4,4,9.499999,4,4,10,5,4,9,4,4,9,5,4.25,10,-4,4.25,9.499999,-4,4.25,10,4,4.25,9.499999,4,1.4,10,4,1.65,10,4,1.4,10,5,4,10,5,1.65,10,-4,1.4,10,-5,1.4,10,-4,4,10,4,4,10,-4,4,10,-5,4.25,10,4,4.25,10,-4,1.4,9,4,1.4,10,4,1.4,9,5,1.4,10,5,4,6.7,4.75,1.7,9,4.75,4,7.407107,4.75,2.407107,9,4.75,4,10,-5,4,9,-5,4,10,-4,4,9,-4,4,9.499999,-4,4,7.407107,-4.75,4,6.7,-4.75,4,7.407107,-4.25,4,6.7,-4.25,4.25,9.499999,4,4,9.499999,4,4.25,10,4,4,10,4,4,6.7,4.75,4,6.7,4.25,1.7,9,4.75,1.7,9,4.25,4,6.7,-4.75,4,7.407107,-4.75,1.7,9,-4.75,2.407107,9,-4.75,1.4,9,-5,4,9,-5,1.4,10,-5,4,10,-5,4,7.407107,4.25,4,7.407107,4.75,2.407107,9,4.25,2.407107,9,4.75,4,6.7,-4.25,1.7,9,-4.25,4,7.407107,-4.25,2.407107,9,-4.25,4,7.407107,4.25,4,6.7,4.25,4,7.407107,4.75,4,6.7,4.75,4,9,-4,1.4,9,-4,4,9.499999,-4,1.65,9.499999,-4,1.4,10,-4,1.65,10,-4,1.65,9.499999,-4,1.65,10,-4,1.65,9.499999,4,1.65,10,4,4,9,5,1.4,9,5,4,10,5,1.4,10,5,1.4,9,-5,1.4,10,-5,1.4,9,-4,1.4,10,-4,4,9.499999,-4,4.25,9.499999,-4,4,10,-4,4.25,10,-4,4,7.407107,-4.75,4,7.407107,-4.25,2.407107,9,-4.75,2.407107,9,-4.25,4,6.7,4.25,4,7.407107,4.25,1.7,9,4.25,2.407107,9,4.25,4,9,-5,2.407107,9,-4.25,4,9,-4,1.4,9,-4,2.407107,9,-4.75,1.7,9,-4.25,1.4,9,-5,1.7,9,-4.75,4,9,4,2.407107,9,4.75,4,9,5,1.4,9,5,2.407107,9,4.25,1.7,9,4.75,1.4,9,4,1.7,9,4.25,4.25,9.499999,4,4.25,9.499999,-4,4,9.499999,4,4,9.499999,-4,1.65,9.499999,4,1.65,9.499999,-4 + } + PolygonVertexIndex: *240 { + a: 0,2,-2,3,1,-3,4,6,-6,5,6,-8,8,7,-7,6,9,-9,10,12,-12,13,11,-13,14,13,-13,15,17,-17,18,16,-18,19,21,-21,21,22,-21,23,20,-23,23,22,-25,25,23,-25,22,26,-25,26,27,-25,28,24,-28,26,29,-28,30,27,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,42,-42,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,77,-80,81,80,-80,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,107,110,-107,111,107,-110,112,106,-111,113,111,-110,113,112,-111,109,112,-114,114,116,-116,117,115,-117,115,118,-115,119,115,-118,120,114,-119,121,119,-118,121,120,-119,117,120,-122,122,124,-124,125,123,-125,126,125,-125,127,125,-127 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *720 { + a: -0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *256 { + a: -16.73228,7.516489,-18.70079,7.516489,-16.73228,20.32236,-18.70079,20.32236,-6.496063,39.37008,-5.511811,39.37008,-6.496063,37.40157,-5.511811,35.43307,-15.74803,35.43307,-15.74803,37.40157,-15.74803,39.37008,-15.74803,37.40157,-19.68504,39.37008,-15.74803,35.43307,-19.68504,35.43307,15.74803,39.37008,15.74803,37.40157,-15.74803,39.37008,-15.74803,37.40157,-5.511811,15.74803,-6.496063,15.74803,-5.511811,19.68504,-15.74803,19.68504,-6.496063,-15.74803,-5.511811,-19.68504,-5.511811,-15.74803,-15.74803,15.74803,-15.74803,-15.74803,-15.74803,-19.68504,-16.73228,15.74803,-16.73228,-15.74803,15.74803,35.43307,15.74803,39.37008,19.68504,35.43307,19.68504,39.37008,15.74803,26.37795,6.692914,35.43307,15.74803,29.16184,9.476798,35.43307,19.68504,39.37008,19.68504,35.43307,15.74803,39.37008,15.74803,35.43307,15.74803,37.40157,18.70079,29.16184,18.70079,26.37795,16.73228,29.16184,16.73228,26.37795,16.73228,37.40157,15.74803,37.40157,16.73228,39.37008,15.74803,39.37008,18.70079,7.516489,16.73228,7.516489,18.70079,20.32236,16.73228,20.32236,-15.74803,26.37795,-15.74803,29.16184,-6.692914,35.43307,-9.476798,35.43307,-5.511811,35.43307,-15.74803,35.43307,-5.511811,39.37008,-15.74803,39.37008,-16.73228,9.484993,-18.70079,9.484993,-16.73228,18.35386,-18.70079,18.35386,15.74803,26.37795,6.692914,35.43307,15.74803,29.16184,9.476798,35.43307,-16.73228,29.16184,-16.73228,26.37795,-18.70079,29.16184,-18.70079,26.37795,15.74803,35.43307,5.511811,35.43307,15.74803,37.40157,6.496063,37.40157,5.511811,39.37008,6.496063,39.37008,-15.74803,37.40157,-15.74803,39.37008,15.74803,37.40157,15.74803,39.37008,15.74803,35.43307,5.511811,35.43307,15.74803,39.37008,5.511811,39.37008,-19.68504,35.43307,-19.68504,39.37008,-15.74803,35.43307,-15.74803,39.37008,-15.74803,37.40157,-16.73228,37.40157,-15.74803,39.37008,-16.73228,39.37008,18.70079,9.484993,16.73228,9.484993,18.70079,18.35386,16.73228,18.35386,-15.74803,26.37795,-15.74803,29.16184,-6.692914,35.43307,-9.476798,35.43307,15.74803,-19.68504,9.476798,-16.73228,15.74803,-15.74803,5.511811,-15.74803,9.476798,-18.70079,6.692914,-16.73228,5.511811,-19.68504,6.692914,-18.70079,15.74803,15.74803,9.476798,18.70079,15.74803,19.68504,5.511811,19.68504,9.476798,16.73228,6.692914,18.70079,5.511811,15.74803,6.692914,16.73228,16.73228,15.74803,16.73228,-15.74803,15.74803,15.74803,15.74803,-15.74803,6.496063,15.74803,6.496063,-15.74803 + } + UVIndex: *240 { + a: 0,2,1,3,1,2,4,6,5,5,6,7,8,7,6,6,9,8,10,12,11,13,11,12,14,13,12,15,17,16,18,16,17,19,21,20,21,22,20,23,20,22,23,22,24,25,23,24,22,26,24,26,27,24,28,24,27,26,29,27,30,27,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,42,41,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,77,79,81,80,79,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,107,110,106,111,107,109,112,106,110,113,111,109,113,112,110,109,112,113,114,116,115,117,115,116,115,118,114,119,115,117,120,114,118,121,119,117,121,120,118,117,120,121,122,124,123,125,123,124,126,125,124,127,125,126 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *80 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh overhang, Model::RootNode + C: "OO",5309231870873688724,0 + + ;Geometry::, Model::Mesh overhang + C: "OO",5157457789370015063,5309231870873688724 + + ;Material::wood, Model::Mesh overhang + C: "OO",7178,5309231870873688724 + + ;Material::woodDark, Model::Mesh overhang + C: "OO",7186,5309231870873688724 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/overhang.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/overhang.fbx.import new file mode 100644 index 0000000..8510177 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/overhang.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bhxeo0fqqawdl" +path="res://.godot/imported/overhang.fbx-8a20e0b6afbec812324e0a847fdd63e8.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/overhang.fbx" +dest_files=["res://.godot/imported/overhang.fbx-8a20e0b6afbec812324e0a847fdd63e8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarStone.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarStone.fbx new file mode 100644 index 0000000..3feb78d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarStone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 529 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "pillarStone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "pillarStone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5471590588962788025, "Model::pillarStone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5297325006169603897, "Geometry::", "Mesh" { + Vertices: *576 { + a: 0.8,-1.263345E-14,-0.5000001,0.8,2,-0.5000001,0.5,0,-0.8000001,0.5,2,-0.8000001,-0.5,0,-0.8,0.5,0,-0.8000001,-0.5,2,-0.8,0.5,2,-0.8000001,0.8,1.263345E-14,0.5,0.5,1.263345E-14,0.8,0.8,2,0.5,0.5,2,0.8,0.8,2,-0.5000001,0.8,-1.263345E-14,-0.5000001,0.8,2,0.5,0.8,1.263345E-14,0.5,-0.8,0,-0.5,-0.8,2,-0.5,-0.8,0,0.5,-0.8,2,0.5,-0.8,0,0.5,-0.8,2,0.5,-0.5,1.263345E-14,0.8,-0.5,2,0.8,-0.8,9,-0.5,-0.8,10,-0.5,-0.8,9,0.5,-0.8,10,0.5,-0.8,0,-0.5,-0.5,0,-0.8,-0.8,2,-0.5,-0.5,2,-0.8,0.5,1.263345E-14,0.8,-0.5,1.263345E-14,0.8,0.5,2,0.8,-0.5,2,0.8,0.8,10,-0.5000001,0.8,10,0.5,0.5,10,-0.8000001,0.5,10,0.8,-0.5,10,-0.8,-0.5,10,0.8,-0.8,10,-0.5,-0.8,10,0.5,0.8,-1.263345E-14,-0.5000001,0.5,0,-0.8000001,0.8,1.263345E-14,0.5,0.5,1.263345E-14,0.8,-0.5,0,-0.8,-0.5,1.263345E-14,0.8,-0.8,0,-0.5,-0.8,0,0.5,-0.8,2,0.5,-0.8,2,-0.5,-0.5,2,0.8,-0.5,2,0.5,0.5,2,0.8,-0.5,2,-0.5,-0.5,2,-0.8,0.5,2,0.5,0.5,2,-0.5,0.5,2,-0.8000001,0.8,2,0.5,0.8,2,-0.5000001,-0.8,3.381664,0.5,-0.8,4.381664,0.5,-0.5,3.381664,0.8,-0.5,4.381664,0.8,0.5,9,0.8,-0.5,9,0.8,0.5,10,0.8,-0.5,10,0.8,-0.8,9,0.5,-0.8,10,0.5,-0.5,9,0.8,-0.5,10,0.8,0.8,3.381664,0.5,0.5,3.381664,0.8,0.8,4.381664,0.5,0.5,4.381664,0.8,-0.8,3.381664,-0.5,-0.8,4.381664,-0.5,-0.8,3.381664,0.5,-0.8,4.381664,0.5,-0.8,3.381664,-0.5,-0.5,3.381664,-0.8,-0.8,4.381664,-0.5,-0.5,4.381664,-0.8,0.8,3.381664,-0.5000001,0.5,3.381664,-0.8000001,0.8,3.381664,0.5,0.5,3.381664,0.8,0.5,3.381664,-0.5,-0.5,3.381664,-0.8,0.5,3.381664,0.5,-0.5,3.381664,0.8,-0.5,3.381664,0.5,-0.8,3.381664,0.5,-0.5,3.381664,-0.5,-0.8,3.381664,-0.5,-0.8,4.381664,0.5,-0.8,4.381664,-0.5,-0.5,4.381664,0.8,-0.5,4.381664,0.5,0.5,4.381664,0.8,-0.5,4.381664,-0.5,-0.5,4.381664,-0.8,0.5,4.381664,0.5,0.5,4.381664,-0.5,0.5,4.381664,-0.8000001,0.8,4.381664,0.5,0.8,4.381664,-0.5000001,0.8,9,-0.5000001,0.5,9,-0.8000001,0.8,9,0.5,0.5,9,0.8,0.5,9,-0.5,-0.5,9,-0.8,0.5,9,0.5,-0.5,9,0.8,-0.5,9,0.5,-0.8,9,0.5,-0.5,9,-0.5,-0.8,9,-0.5,0.8,9,0.5,0.5,9,0.8,0.8,10,0.5,0.5,10,0.8,-0.5,3.381664,-0.8,0.5,3.381664,-0.8000001,-0.5,4.381664,-0.8,0.5,4.381664,-0.8000001,0.8,9,-0.5000001,0.8,10,-0.5000001,0.5,9,-0.8000001,0.5,10,-0.8000001,0.8,3.381664,-0.5000001,0.8,4.381664,-0.5000001,0.5,3.381664,-0.8000001,0.5,4.381664,-0.8000001,0.5,3.381664,0.8,-0.5,3.381664,0.8,0.5,4.381664,0.8,-0.5,4.381664,0.8,0.8,10,-0.5000001,0.8,9,-0.5000001,0.8,10,0.5,0.8,9,0.5,0.8,4.381664,-0.5000001,0.8,3.381664,-0.5000001,0.8,4.381664,0.5,0.8,3.381664,0.5,-0.8,9,-0.5,-0.5,9,-0.8,-0.8,10,-0.5,-0.5,10,-0.8,-0.5,9,-0.8,0.5,9,-0.8000001,-0.5,10,-0.8,0.5,10,-0.8000001,-0.5,2,-0.5,-0.5,3.381664,-0.5,-0.5,2,0.5,-0.5,3.381664,0.5,0.5,9,-0.5,0.5,4.381664,-0.5,0.5,9,0.5,0.5,4.381664,0.5,0.5,3.381664,-0.5,0.5,2,-0.5,0.5,3.381664,0.5,0.5,2,0.5,-0.5,4.381664,-0.5,-0.5,9,-0.5,-0.5,4.381664,0.5,-0.5,9,0.5,-0.5,2,-0.5,0.5,2,-0.5,-0.5,3.381664,-0.5,0.5,3.381664,-0.5,0.5,4.381664,0.5,-0.5,4.381664,0.5,0.5,9,0.5,-0.5,9,0.5,-0.5,4.381664,-0.5,0.5,4.381664,-0.5,-0.5,9,-0.5,0.5,9,-0.5,0.5,2,0.5,-0.5,2,0.5,0.5,3.381664,0.5,-0.5,3.381664,0.5 + } + PolygonVertexIndex: *372 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,39,-41,42,41,-41,43,41,-43,44,46,-46,47,45,-47,48,45,-48,49,48,-48,50,48,-50,51,50,-50,52,54,-54,54,55,-54,54,56,-56,55,57,-54,53,57,-59,55,56,-60,57,60,-59,59,56,-61,61,58,-61,60,56,-62,56,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,89,-92,93,89,-93,94,92,-92,91,95,-95,96,94,-96,97,96,-96,98,93,-93,98,96,-98,99,93,-99,97,99,-99,100,102,-102,102,103,-102,102,104,-104,103,105,-102,101,105,-107,103,104,-108,105,108,-107,107,104,-109,109,106,-109,108,104,-110,104,110,-110,111,109,-111,112,114,-114,115,113,-115,116,113,-116,117,113,-117,118,116,-116,115,119,-119,120,118,-120,121,120,-120,122,117,-117,122,120,-122,123,117,-123,121,123,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1116 { + a: 0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *384 { + a: -0.8351655,-4.973799E-14,-0.8351655,7.874016,0.8351655,0,0.8351655,7.874016,1.968504,-1.646314E-36,-1.968504,-1.646314E-36,1.968504,7.874016,-1.968504,7.874016,0.8351655,4.973799E-14,-0.8351654,4.973799E-14,0.8351655,7.874016,-0.8351654,7.874016,1.968504,7.874016,1.968504,-4.973799E-14,-1.968504,7.874016,-1.968504,4.973799E-14,-1.968504,0,-1.968504,7.874016,1.968504,0,1.968504,7.874016,-0.8351655,0,-0.8351655,7.874016,0.8351655,4.973799E-14,0.8351655,7.874016,-1.968504,35.43307,-1.968504,39.37008,1.968504,35.43307,1.968504,39.37008,0.8351655,-1.605888E-42,-0.8351655,-1.605888E-42,0.8351655,7.874016,-0.8351655,7.874016,1.968504,4.973799E-14,-1.968504,4.973799E-14,1.968504,7.874016,-1.968504,7.874016,-3.149606,-1.968504,-3.149606,1.968504,-1.968504,-3.149606,-1.968504,3.149606,1.968504,-3.149606,1.968504,3.149606,3.149606,-1.968504,3.149606,1.968504,3.149606,-1.968504,1.968504,-3.149606,3.149606,1.968504,1.968504,3.149606,-1.968504,-3.149606,-1.968504,3.149606,-3.149606,-1.968504,-3.149606,1.968504,3.149606,1.968504,3.149606,-1.968504,1.968504,3.149606,1.968504,1.968504,-1.968504,3.149606,1.968504,-1.968504,1.968504,-3.149606,-1.968504,1.968504,-1.968504,-1.968504,-1.968504,-3.149606,-3.149606,1.968504,-3.149606,-1.968504,-0.8351655,13.31364,-0.8351655,17.25064,0.8351655,13.31364,0.8351655,17.25064,1.968504,35.43307,-1.968504,35.43307,1.968504,39.37008,-1.968504,39.37008,-0.8351655,35.43307,-0.8351655,39.37008,0.8351655,35.43307,0.8351655,39.37008,0.8351655,13.31364,-0.8351654,13.31364,0.8351655,17.25064,-0.8351654,17.25064,-1.968504,13.31364,-1.968504,17.25064,1.968504,13.31364,1.968504,17.25064,0.8351655,13.31364,-0.8351655,13.31364,0.8351655,17.25064,-0.8351655,17.25064,3.149606,-1.968504,1.968504,-3.149606,3.149606,1.968504,1.968504,3.149606,1.968504,-1.968504,-1.968504,-3.149606,1.968504,1.968504,-1.968504,3.149606,-1.968504,1.968504,-3.149606,1.968504,-1.968504,-1.968504,-3.149606,-1.968504,3.149606,1.968504,3.149606,-1.968504,1.968504,3.149606,1.968504,1.968504,-1.968504,3.149606,1.968504,-1.968504,1.968504,-3.149606,-1.968504,1.968504,-1.968504,-1.968504,-1.968504,-3.149606,-3.149606,1.968504,-3.149606,-1.968504,3.149606,-1.968504,1.968504,-3.149606,3.149606,1.968504,1.968504,3.149606,1.968504,-1.968504,-1.968504,-3.149606,1.968504,1.968504,-1.968504,3.149606,-1.968504,1.968504,-3.149606,1.968504,-1.968504,-1.968504,-3.149606,-1.968504,0.8351655,35.43307,-0.8351654,35.43307,0.8351655,39.37008,-0.8351654,39.37008,1.968504,13.31364,-1.968504,13.31364,1.968504,17.25064,-1.968504,17.25064,-0.8351655,35.43307,-0.8351655,39.37008,0.8351655,35.43307,0.8351655,39.37008,-0.8351655,13.31364,-0.8351655,17.25064,0.8351655,13.31364,0.8351655,17.25064,1.968504,13.31364,-1.968504,13.31364,1.968504,17.25064,-1.968504,17.25064,1.968504,39.37008,1.968504,35.43307,-1.968504,39.37008,-1.968504,35.43307,1.968504,17.25064,1.968504,13.31364,-1.968504,17.25064,-1.968504,13.31364,0.8351655,35.43307,-0.8351655,35.43307,0.8351655,39.37008,-0.8351655,39.37008,1.968504,35.43307,-1.968504,35.43307,1.968504,39.37008,-1.968504,39.37008,-1.968504,7.874016,-1.968504,13.31364,1.968504,7.874016,1.968504,13.31364,1.968504,35.43307,1.968504,17.25064,-1.968504,35.43307,-1.968504,17.25064,1.968504,13.31364,1.968504,7.874016,-1.968504,13.31364,-1.968504,7.874016,-1.968504,17.25064,-1.968504,35.43307,1.968504,17.25064,1.968504,35.43307,1.968504,7.874016,-1.968504,7.874016,1.968504,13.31364,-1.968504,13.31364,1.968504,17.25064,-1.968504,17.25064,1.968504,35.43307,-1.968504,35.43307,1.968504,17.25064,-1.968504,17.25064,1.968504,35.43307,-1.968504,35.43307,1.968504,7.874016,-1.968504,7.874016,1.968504,13.31364,-1.968504,13.31364 + } + UVIndex: *372 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,39,40,42,41,40,43,41,42,44,46,45,47,45,46,48,45,47,49,48,47,50,48,49,51,50,49,52,54,53,54,55,53,54,56,55,55,57,53,53,57,58,55,56,59,57,60,58,59,56,60,61,58,60,60,56,61,56,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,89,91,93,89,92,94,92,91,91,95,94,96,94,95,97,96,95,98,93,92,98,96,97,99,93,98,97,99,98,100,102,101,102,103,101,102,104,103,103,105,101,101,105,106,103,104,107,105,108,106,107,104,108,109,106,108,108,104,109,104,110,109,111,109,110,112,114,113,115,113,114,116,113,115,117,113,116,118,116,115,115,119,118,120,118,119,121,120,119,122,117,116,122,120,121,123,117,122,121,123,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *124 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh pillarStone, Model::RootNode + C: "OO",5471590588962788025,0 + + ;Geometry::, Model::Mesh pillarStone + C: "OO",5297325006169603897,5471590588962788025 + + ;Material::stoneDark, Model::Mesh pillarStone + C: "OO",7174,5471590588962788025 + + ;Material::stone, Model::Mesh pillarStone + C: "OO",7184,5471590588962788025 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarStone.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarStone.fbx.import new file mode 100644 index 0000000..e536d54 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarStone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cc8la114h0py3" +path="res://.godot/imported/pillarStone.fbx-c50ad9a426a8b3bb0b951aa4c46259f8.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarStone.fbx" +dest_files=["res://.godot/imported/pillarStone.fbx-c50ad9a426a8b3bb0b951aa4c46259f8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarWood.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarWood.fbx new file mode 100644 index 0000000..a59e1e0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarWood.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 569 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "pillarWood.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "pillarWood.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5389404157553799340, "Model::pillarWood", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5263476867163920816, "Geometry::", "Mesh" { + Vertices: *216 { + a: -0.5,2,-0.5,-0.5,10,-0.5,-0.5,2,0.5,-0.5,10,0.5,-0.5,2,-0.5,0.5,2,-0.5,-0.5,10,-0.5,0.5,10,-0.5,0.5,10,-0.5,0.5,10,0.5,-0.5,10,-0.5,-0.5,10,0.5,0.5,2,0.5,-0.5,2,0.5,0.5,10,0.5,-0.5,10,0.5,0.5,10,-0.5,0.5,2,-0.5,0.5,10,0.5,0.5,2,0.5,0.8,-1.263345E-14,-0.5000001,0.8,2,-0.5000001,0.5,0,-0.8000001,0.5,2,-0.8000001,-0.8,0,-0.5,-0.5,0,-0.8,-0.8,2,-0.5,-0.5,2,-0.8,0.8,-1.263345E-14,-0.5000001,0.5,0,-0.8000001,0.8,1.263345E-14,0.5,0.5,1.263345E-14,0.8,-0.5,0,-0.8,-0.5,1.263345E-14,0.8,-0.8,0,-0.5,-0.8,0,0.5,-0.5,0,-0.8,0.5,0,-0.8000001,-0.5,2,-0.8,0.5,2,-0.8000001,0.8,1.263345E-14,0.5,0.5,1.263345E-14,0.8,0.8,2,0.5,0.5,2,0.8,0.8,2,-0.5000001,0.8,-1.263345E-14,-0.5000001,0.8,2,0.5,0.8,1.263345E-14,0.5,-0.8,2,0.5,-0.8,2,-0.5,-0.5,2,0.8,-0.5,2,0.5,0.5,2,0.8,-0.5,2,-0.5,-0.5,2,-0.8,0.5,2,0.5,0.5,2,-0.5,0.5,2,-0.8000001,0.8,2,0.5,0.8,2,-0.5000001,-0.8,0,-0.5,-0.8,2,-0.5,-0.8,0,0.5,-0.8,2,0.5,0.5,1.263345E-14,0.8,-0.5,1.263345E-14,0.8,0.5,2,0.8,-0.5,2,0.8,-0.8,0,0.5,-0.8,2,0.5,-0.5,1.263345E-14,0.8,-0.5,2,0.8 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,29,-32,33,32,-32,34,32,-34,35,34,-34,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,50,51,-50,50,52,-52,51,53,-50,49,53,-55,51,52,-56,53,56,-55,55,52,-57,57,54,-57,56,52,-58,52,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: -1.968504,7.874016,-1.968504,39.37008,1.968504,7.874016,1.968504,39.37008,1.968504,7.874016,-1.968504,7.874016,1.968504,39.37008,-1.968504,39.37008,-1.968504,-1.968504,-1.968504,1.968504,1.968504,-1.968504,1.968504,1.968504,1.968504,7.874016,-1.968504,7.874016,1.968504,39.37008,-1.968504,39.37008,1.968504,39.37008,1.968504,7.874016,-1.968504,39.37008,-1.968504,7.874016,-0.8351655,-4.973799E-14,-0.8351655,7.874016,0.8351655,0,0.8351655,7.874016,0.8351655,-1.605888E-42,-0.8351655,-1.605888E-42,0.8351655,7.874016,-0.8351655,7.874016,3.149606,-1.968504,1.968504,-3.149606,3.149606,1.968504,1.968504,3.149606,-1.968504,-3.149606,-1.968504,3.149606,-3.149606,-1.968504,-3.149606,1.968504,1.968504,-1.646314E-36,-1.968504,-1.646314E-36,1.968504,7.874016,-1.968504,7.874016,0.8351655,4.973799E-14,-0.8351654,4.973799E-14,0.8351655,7.874016,-0.8351654,7.874016,1.968504,7.874016,1.968504,-4.973799E-14,-1.968504,7.874016,-1.968504,4.973799E-14,3.149606,1.968504,3.149606,-1.968504,1.968504,3.149606,1.968504,1.968504,-1.968504,3.149606,1.968504,-1.968504,1.968504,-3.149606,-1.968504,1.968504,-1.968504,-1.968504,-1.968504,-3.149606,-3.149606,1.968504,-3.149606,-1.968504,-1.968504,0,-1.968504,7.874016,1.968504,0,1.968504,7.874016,1.968504,4.973799E-14,-1.968504,4.973799E-14,1.968504,7.874016,-1.968504,7.874016,-0.8351655,0,-0.8351655,7.874016,0.8351655,4.973799E-14,0.8351655,7.874016 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,29,31,33,32,31,34,32,33,35,34,33,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,50,51,49,50,52,51,51,53,49,49,53,54,51,52,55,53,56,54,55,52,56,57,54,56,56,52,57,52,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh pillarWood, Model::RootNode + C: "OO",5389404157553799340,0 + + ;Geometry::, Model::Mesh pillarWood + C: "OO",5263476867163920816,5389404157553799340 + + ;Material::wood, Model::Mesh pillarWood + C: "OO",7178,5389404157553799340 + + ;Material::stoneDark, Model::Mesh pillarWood + C: "OO",7174,5389404157553799340 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarWood.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarWood.fbx.import new file mode 100644 index 0000000..bc5f945 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarWood.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c8sp0p5ichnnl" +path="res://.godot/imported/pillarWood.fbx-e0ef3dce4eea6cac0fc87bc8eb27142d.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/pillarWood.fbx" +dest_files=["res://.godot/imported/pillarWood.fbx-e0ef3dce4eea6cac0fc87bc8eb27142d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/planks.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planks.fbx new file mode 100644 index 0000000..77d6870 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planks.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 599 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "planks.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "planks.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5602323426970875404, "Model::planks", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4869515899379782843, "Geometry::", "Mesh" { + Vertices: *1056 { + a: -5,0,-3.514081,-5,0.3,-3.514081,-5,0,-2.028162,-5,0.3,-2.028162,-5,0.6,5,-5,0.3,2.028162,-5,0.6,-5,-5,0.3,-5,-5,0.3,3.514081,-5,0.3,5,-5,0,3.514081,-5,0,2.028162,5,0,-2.028162,5,0,-3.514081,-5,0,-2.028162,-5,0,-3.514081,-5,0,-3.514081,5,0,-3.514081,-5,0.3,-3.514081,5,0.3,-3.514081,-3.514081,0.3,-3.514081,-3.297184,0.3,-3.514081,-1.811265,0.3,-3.514081,-1.594368,0.3,-3.514081,-0.1084486,0.3,-3.514081,0.1084486,0.3,-3.514081,1.594368,0.3,-3.514081,1.811265,0.3,-3.514081,3.297184,0.3,-3.514081,3.514081,0.3,-3.514081,5,0,-2.028162,5,0.3,-2.028162,5,0,-3.514081,5,0.3,-3.514081,5,0.6,5,5,0.3,-5,5,0.6,-5,5,0.3,2.028162,5,0.3,3.514081,5,0.3,5,5,0,2.028162,5,0,3.514081,-1.594368,0.3,-2.028162,-1.811265,0.3,-2.028162,-1.594368,0.3,-3.514081,-1.811265,0.3,-3.514081,5,0,-2.028162,-5,0,-2.028162,5,0.3,-2.028162,-5,0.3,-2.028162,3.514081,0.3,-2.028162,3.297184,0.3,-2.028162,1.811265,0.3,-2.028162,1.594368,0.3,-2.028162,0.1084486,0.3,-2.028162,-0.1084486,0.3,-2.028162,-1.594368,0.3,-2.028162,-1.811265,0.3,-2.028162,-3.297184,0.3,-2.028162,-3.514081,0.3,-2.028162,-3.297184,0.3,-5,-3.297184,0.6,-5,-3.297184,0.3,-3.514081,-3.297184,0.6,5,-3.297184,0.3,-2.028162,-3.297184,0.3,2.028162,-3.297184,0.3,3.514081,-3.297184,0.3,5,-1.811265,0.3,5,-3.297184,0.3,5,-1.811265,0.6,5,-3.297184,0.6,5,-1.811265,0.6,5,-3.297184,0.6,5,-1.811265,0.6,-5,-3.297184,0.6,-5,-3.297184,0.3,-5,-1.811265,0.3,-5,-3.297184,0.6,-5,-1.811265,0.6,-5,-1.811265,0.6,-5,-1.811265,0.3,-5,-1.811265,0.6,5,-1.811265,0.3,-3.514081,-1.811265,0.3,-2.028162,-1.811265,0.3,2.028162,-1.811265,0.3,3.514081,-1.811265,0.3,5,-1.811265,0.3,-3.514081,-1.811265,0.3,-5,-3.297184,0.3,-3.514081,-3.297184,0.3,-5,-3.297184,0.3,-2.028162,-3.514081,0.3,-2.028162,-3.297184,0.3,-3.514081,-3.514081,0.3,-3.514081,1.811265,0.3,3.514081,1.594368,0.3,3.514081,1.811265,0.3,2.028162,1.594368,0.3,2.028162,-5,0,2.028162,5,0,2.028162,-5,0.3,2.028162,5,0.3,2.028162,-3.514081,0.3,2.028162,-3.297184,0.3,2.028162,-1.811265,0.3,2.028162,-1.594368,0.3,2.028162,-0.1084486,0.3,2.028162,0.1084486,0.3,2.028162,1.594368,0.3,2.028162,1.811265,0.3,2.028162,3.297184,0.3,2.028162,3.514081,0.3,2.028162,5,0,3.514081,-5,0,3.514081,5,0.3,3.514081,-5,0.3,3.514081,3.514081,0.3,3.514081,3.297184,0.3,3.514081,1.811265,0.3,3.514081,1.594368,0.3,3.514081,0.1084486,0.3,3.514081,-0.1084486,0.3,3.514081,-1.594368,0.3,3.514081,-1.811265,0.3,3.514081,-3.297184,0.3,3.514081,-3.514081,0.3,3.514081,5,0,3.514081,5,0,2.028162,-5,0,3.514081,-5,0,2.028162,-3.297184,0.3,3.514081,-3.514081,0.3,3.514081,-3.297184,0.3,2.028162,-3.514081,0.3,2.028162,-1.811265,0.3,5,-1.811265,0.3,3.514081,-3.297184,0.3,5,-3.297184,0.3,3.514081,-1.811265,0.3,2.028162,-1.811265,0.3,-2.028162,-3.297184,0.3,2.028162,-3.297184,0.3,-2.028162,5,0.6,5,3.514081,0.6,5,5,0.6,-5,3.514081,0.6,-5,3.514081,0.3,-5,3.514081,0.6,-5,3.514081,0.3,-3.514081,3.514081,0.6,5,3.514081,0.3,-2.028162,3.514081,0.3,2.028162,3.514081,0.3,3.514081,3.514081,0.3,5,5,0.3,5,3.514081,0.3,5,5,0.6,5,3.514081,0.6,5,3.514081,0.3,-5,5,0.3,-5,3.514081,0.6,-5,5,0.6,-5,5,0.3,-3.514081,5,0.3,-5,3.514081,0.3,-3.514081,3.514081,0.3,-5,5,0.3,5,5,0.3,3.514081,3.514081,0.3,5,3.514081,0.3,3.514081,5,0.3,-2.028162,3.514081,0.3,-2.028162,5,0.3,2.028162,3.514081,0.3,2.028162,-0.1084486,0.6,-5,-0.1084486,0.3,-5,-0.1084486,0.6,5,-0.1084486,0.3,-3.514081,-0.1084486,0.3,-2.028162,-0.1084486,0.3,2.028162,-0.1084486,0.3,3.514081,-0.1084486,0.3,5,-0.1084486,0.3,5,-1.594368,0.3,5,-0.1084486,0.6,5,-1.594368,0.6,5,-1.594368,0.3,-5,-0.1084486,0.3,-5,-1.594368,0.6,-5,-0.1084486,0.6,-5,-0.1084486,0.6,5,-1.594368,0.6,5,-0.1084486,0.6,-5,-1.594368,0.6,-5,-1.594368,0.3,-5,-1.594368,0.6,-5,-1.594368,0.3,-3.514081,-1.594368,0.6,5,-1.594368,0.3,-2.028162,-1.594368,0.3,2.028162,-1.594368,0.3,3.514081,-1.594368,0.3,5,-0.1084486,0.3,5,-0.1084486,0.3,3.514081,-1.594368,0.3,5,-1.594368,0.3,3.514081,-0.1084486,0.3,-3.514081,-0.1084486,0.3,-5,-1.594368,0.3,-3.514081,-1.594368,0.3,-5,1.811265,0.3,-2.028162,1.594368,0.3,-2.028162,1.811265,0.3,-3.514081,1.594368,0.3,-3.514081,-1.594368,0.3,3.514081,-1.811265,0.3,3.514081,-1.594368,0.3,2.028162,-1.811265,0.3,2.028162,-0.1084486,0.3,2.028162,-0.1084486,0.3,-2.028162,-1.594368,0.3,2.028162,-1.594368,0.3,-2.028162,-3.514081,0.3,5,-5,0.3,5,-3.514081,0.6,5,-5,0.6,5,-5,0.3,-5,-3.514081,0.3,-5,-5,0.6,-5,-3.514081,0.6,-5,-3.514081,0.6,-5,-3.514081,0.3,-5,-3.514081,0.6,5,-3.514081,0.3,-3.514081,-3.514081,0.3,-2.028162,-3.514081,0.3,2.028162,-3.514081,0.3,3.514081,-3.514081,0.3,5,-3.514081,0.6,5,-5,0.6,5,-3.514081,0.6,-5,-5,0.6,-5,-3.514081,0.3,-3.514081,-3.514081,0.3,-5,-5,0.3,-3.514081,-5,0.3,-5,-3.514081,0.3,5,-3.514081,0.3,3.514081,-5,0.3,5,-5,0.3,3.514081,-3.514081,0.3,2.028162,-3.514081,0.3,-2.028162,-5,0.3,2.028162,-5,0.3,-2.028162,1.594368,0.6,5,0.1084486,0.6,5,1.594368,0.6,-5,0.1084486,0.6,-5,0.1084486,0.3,-5,0.1084486,0.6,-5,0.1084486,0.3,-3.514081,0.1084486,0.6,5,0.1084486,0.3,-2.028162,0.1084486,0.3,2.028162,0.1084486,0.3,3.514081,0.1084486,0.3,5,1.594368,0.3,5,0.1084486,0.3,5,1.594368,0.6,5,0.1084486,0.6,5,0.1084486,0.3,-5,1.594368,0.3,-5,0.1084486,0.6,-5,1.594368,0.6,-5,1.594368,0.6,-5,1.594368,0.3,-5,1.594368,0.6,5,1.594368,0.3,-3.514081,1.594368,0.3,-2.028162,1.594368,0.3,2.028162,1.594368,0.3,3.514081,1.594368,0.3,5,0.1084486,0.3,3.514081,-0.1084486,0.3,3.514081,0.1084486,0.3,2.028162,-0.1084486,0.3,2.028162,0.1084486,0.3,-2.028162,-0.1084486,0.3,-2.028162,0.1084486,0.3,-3.514081,-0.1084486,0.3,-3.514081,1.594368,0.3,5,1.594368,0.3,3.514081,0.1084486,0.3,5,0.1084486,0.3,3.514081,1.594368,0.3,-3.514081,1.594368,0.3,-5,0.1084486,0.3,-3.514081,0.1084486,0.3,-5,1.594368,0.3,2.028162,1.594368,0.3,-2.028162,0.1084486,0.3,2.028162,0.1084486,0.3,-2.028162,1.811265,0.3,-5,1.811265,0.6,-5,1.811265,0.3,-3.514081,1.811265,0.6,5,1.811265,0.3,-2.028162,1.811265,0.3,2.028162,1.811265,0.3,3.514081,1.811265,0.3,5,3.297184,0.3,5,1.811265,0.3,5,3.297184,0.6,5,1.811265,0.6,5,1.811265,0.3,-5,3.297184,0.3,-5,1.811265,0.6,-5,3.297184,0.6,-5,3.297184,0.6,-5,3.297184,0.3,-5,3.297184,0.6,5,3.297184,0.3,-3.514081,3.297184,0.3,-2.028162,3.297184,0.3,2.028162,3.297184,0.3,3.514081,3.297184,0.3,5,3.297184,0.6,5,1.811265,0.6,5,3.297184,0.6,-5,1.811265,0.6,-5,3.297184,0.3,-3.514081,3.297184,0.3,-5,1.811265,0.3,-3.514081,1.811265,0.3,-5,3.297184,0.3,5,3.297184,0.3,3.514081,1.811265,0.3,5,1.811265,0.3,3.514081,3.514081,0.3,3.514081,3.297184,0.3,3.514081,3.514081,0.3,2.028162,3.297184,0.3,2.028162,3.514081,0.3,-2.028162,3.297184,0.3,-2.028162,3.514081,0.3,-3.514081,3.297184,0.3,-3.514081,3.297184,0.3,2.028162,3.297184,0.3,-2.028162,1.811265,0.3,2.028162,1.811265,0.3,-2.028162 + } + PolygonVertexIndex: *672 { + a: 0,2,-2,3,1,-3,3,4,-2,5,4,-4,4,6,-2,7,1,-7,8,4,-6,9,4,-9,8,5,-11,11,10,-6,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,19,-21,22,19,-22,23,19,-23,24,19,-24,25,19,-25,26,19,-26,27,19,-27,28,19,-28,29,19,-29,30,32,-32,33,31,-33,31,33,-35,33,35,-35,36,34,-36,37,31,-35,38,37,-35,39,38,-35,37,38,-41,41,40,-39,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,49,-49,51,49,-51,52,49,-52,53,49,-53,54,49,-54,55,49,-55,56,49,-56,57,49,-57,58,49,-58,59,49,-59,60,62,-62,63,61,-63,64,63,-63,65,63,-65,66,63,-66,67,63,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,83,-83,85,84,-83,86,85,-83,87,86,-83,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,103,-103,105,103,-105,106,103,-106,107,103,-107,108,103,-108,109,103,-109,110,103,-110,111,103,-111,112,103,-112,113,103,-113,114,116,-116,117,115,-117,118,117,-117,119,117,-119,120,117,-120,121,117,-121,122,117,-122,123,117,-123,124,117,-124,125,117,-125,126,117,-126,127,117,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,151,-151,153,151,-153,154,151,-154,155,151,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,179,-179,181,180,-179,182,181,-179,183,182,-179,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,199,-199,201,199,-201,202,199,-202,203,199,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,235,-235,237,236,-235,238,237,-235,239,238,-235,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,263,-263,265,263,-265,266,263,-266,267,263,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,279,-279,281,280,-279,282,281,-279,283,282,-279,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,307,-307,309,307,-309,310,307,-310,311,307,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,323,-323,325,324,-323,326,325,-323,327,326,-323,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2016 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *704 { + a: -13.83496,0,-13.83496,1.181102,-7.98489,0,-7.98489,1.181102,19.68504,2.362205,7.98489,1.181102,-19.68504,2.362205,-19.68504,1.181102,13.83496,1.181102,19.68504,1.181102,13.83496,0,7.98489,0,19.68504,-7.98489,19.68504,-13.83496,-19.68504,-7.98489,-19.68504,-13.83496,19.68504,2.080754E-14,-19.68504,2.080754E-14,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,12.98104,1.181102,7.130964,1.181102,6.277038,1.181102,0.4269629,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-7.130964,1.181102,-12.98104,1.181102,-13.83496,1.181102,7.98489,0,7.98489,1.181102,13.83496,0,13.83496,1.181102,-19.68504,2.362205,19.68504,1.181102,19.68504,2.362205,-7.98489,1.181102,-13.83496,1.181102,-19.68504,1.181102,-7.98489,0,-13.83496,0,6.277038,-7.98489,7.130964,-7.98489,6.277038,-13.83496,7.130964,-13.83496,19.68504,8.006089E-15,-19.68504,8.006089E-15,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,12.98104,1.181102,7.130964,1.181102,6.277038,1.181102,0.4269629,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-7.130964,1.181102,-12.98104,1.181102,-13.83496,1.181102,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,19.68504,2.362205,-7.98489,1.181102,7.98489,1.181102,13.83496,1.181102,19.68504,1.181102,-7.130964,1.181102,-12.98104,1.181102,-7.130964,2.362205,-12.98104,2.362205,7.130964,19.68504,12.98104,19.68504,7.130964,-19.68504,12.98104,-19.68504,12.98104,1.181102,7.130964,1.181102,12.98104,2.362205,7.130964,2.362205,19.68504,2.362205,19.68504,1.181102,-19.68504,2.362205,13.83496,1.181102,7.98489,1.181102,-7.98489,1.181102,-13.83496,1.181102,-19.68504,1.181102,-7.130964,-13.83496,-7.130964,-19.68504,-12.98104,-13.83496,-12.98104,-19.68504,12.98104,-7.98489,13.83496,-7.98489,12.98104,-13.83496,13.83496,-13.83496,-7.130964,13.83496,-6.277038,13.83496,-7.130964,7.98489,-6.277038,7.98489,19.68504,1.474339E-21,-19.68504,1.474339E-21,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,12.98104,1.181102,7.130964,1.181102,6.277038,1.181102,0.4269629,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-7.130964,1.181102,-12.98104,1.181102,-13.83496,1.181102,19.68504,2.774339E-14,-19.68504,2.774339E-14,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,12.98104,1.181102,7.130964,1.181102,6.277038,1.181102,0.4269629,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-7.130964,1.181102,-12.98104,1.181102,-13.83496,1.181102,19.68504,13.83496,19.68504,7.98489,-19.68504,13.83496,-19.68504,7.98489,12.98104,13.83496,13.83496,13.83496,12.98104,7.98489,13.83496,7.98489,-7.130964,19.68504,-7.130964,13.83496,-12.98104,19.68504,-12.98104,13.83496,-7.130964,7.98489,-7.130964,-7.98489,-12.98104,7.98489,-12.98104,-7.98489,-19.68504,19.68504,-13.83496,19.68504,-19.68504,-19.68504,-13.83496,-19.68504,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,19.68504,2.362205,-7.98489,1.181102,7.98489,1.181102,13.83496,1.181102,19.68504,1.181102,19.68504,1.181102,13.83496,1.181102,19.68504,2.362205,13.83496,2.362205,-13.83496,1.181102,-19.68504,1.181102,-13.83496,2.362205,-19.68504,2.362205,19.68504,-13.83496,19.68504,-19.68504,13.83496,-13.83496,13.83496,-19.68504,19.68504,19.68504,19.68504,13.83496,13.83496,19.68504,13.83496,13.83496,19.68504,-7.98489,13.83496,-7.98489,19.68504,7.98489,13.83496,7.98489,19.68504,2.362205,19.68504,1.181102,-19.68504,2.362205,13.83496,1.181102,7.98489,1.181102,-7.98489,1.181102,-13.83496,1.181102,-19.68504,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-0.4269629,2.362205,-6.277038,2.362205,6.277038,1.181102,0.4269629,1.181102,6.277038,2.362205,0.4269629,2.362205,0.4269629,19.68504,6.277038,19.68504,0.4269629,-19.68504,6.277038,-19.68504,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,19.68504,2.362205,-7.98489,1.181102,7.98489,1.181102,13.83496,1.181102,19.68504,1.181102,-0.4269629,19.68504,-0.4269629,13.83496,-6.277038,19.68504,-6.277038,13.83496,-0.4269629,-13.83496,-0.4269629,-19.68504,-6.277038,-13.83496,-6.277038,-19.68504,-7.130964,-7.98489,-6.277038,-7.98489,-7.130964,-13.83496,-6.277038,-13.83496,6.277038,13.83496,7.130964,13.83496,6.277038,7.98489,7.130964,7.98489,-0.4269629,7.98489,-0.4269629,-7.98489,-6.277038,7.98489,-6.277038,-7.98489,-13.83496,1.181102,-19.68504,1.181102,-13.83496,2.362205,-19.68504,2.362205,19.68504,1.181102,13.83496,1.181102,19.68504,2.362205,13.83496,2.362205,19.68504,2.362205,19.68504,1.181102,-19.68504,2.362205,13.83496,1.181102,7.98489,1.181102,-7.98489,1.181102,-13.83496,1.181102,-19.68504,1.181102,13.83496,19.68504,19.68504,19.68504,13.83496,-19.68504,19.68504,-19.68504,-13.83496,-13.83496,-13.83496,-19.68504,-19.68504,-13.83496,-19.68504,-19.68504,-13.83496,19.68504,-13.83496,13.83496,-19.68504,19.68504,-19.68504,13.83496,-13.83496,7.98489,-13.83496,-7.98489,-19.68504,7.98489,-19.68504,-7.98489,-6.277038,19.68504,-0.4269629,19.68504,-6.277038,-19.68504,-0.4269629,-19.68504,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,19.68504,2.362205,-7.98489,1.181102,7.98489,1.181102,13.83496,1.181102,19.68504,1.181102,6.277038,1.181102,0.4269629,1.181102,6.277038,2.362205,0.4269629,2.362205,-0.4269629,1.181102,-6.277038,1.181102,-0.4269629,2.362205,-6.277038,2.362205,19.68504,2.362205,19.68504,1.181102,-19.68504,2.362205,13.83496,1.181102,7.98489,1.181102,-7.98489,1.181102,-13.83496,1.181102,-19.68504,1.181102,-0.4269629,13.83496,0.4269629,13.83496,-0.4269629,7.98489,0.4269629,7.98489,-0.4269629,-7.98489,0.4269629,-7.98489,-0.4269629,-13.83496,0.4269629,-13.83496,6.277038,19.68504,6.277038,13.83496,0.4269629,19.68504,0.4269629,13.83496,6.277038,-13.83496,6.277038,-19.68504,0.4269629,-13.83496,0.4269629,-19.68504,6.277038,7.98489,6.277038,-7.98489,0.4269629,7.98489,0.4269629,-7.98489,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,19.68504,2.362205,-7.98489,1.181102,7.98489,1.181102,13.83496,1.181102,19.68504,1.181102,12.98104,1.181102,7.130964,1.181102,12.98104,2.362205,7.130964,2.362205,-7.130964,1.181102,-12.98104,1.181102,-7.130964,2.362205,-12.98104,2.362205,19.68504,2.362205,19.68504,1.181102,-19.68504,2.362205,13.83496,1.181102,7.98489,1.181102,-7.98489,1.181102,-13.83496,1.181102,-19.68504,1.181102,-12.98104,19.68504,-7.130964,19.68504,-12.98104,-19.68504,-7.130964,-19.68504,12.98104,-13.83496,12.98104,-19.68504,7.130964,-13.83496,7.130964,-19.68504,12.98104,19.68504,12.98104,13.83496,7.130964,19.68504,7.130964,13.83496,-13.83496,13.83496,-12.98104,13.83496,-13.83496,7.98489,-12.98104,7.98489,-13.83496,-7.98489,-12.98104,-7.98489,-13.83496,-13.83496,-12.98104,-13.83496,12.98104,7.98489,12.98104,-7.98489,7.130964,7.98489,7.130964,-7.98489 + } + UVIndex: *672 { + a: 0,2,1,3,1,2,3,4,1,5,4,3,4,6,1,7,1,6,8,4,5,9,4,8,8,5,10,11,10,5,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,19,20,22,19,21,23,19,22,24,19,23,25,19,24,26,19,25,27,19,26,28,19,27,29,19,28,30,32,31,33,31,32,31,33,34,33,35,34,36,34,35,37,31,34,38,37,34,39,38,34,37,38,40,41,40,38,42,44,43,45,43,44,46,48,47,49,47,48,50,49,48,51,49,50,52,49,51,53,49,52,54,49,53,55,49,54,56,49,55,57,49,56,58,49,57,59,49,58,60,62,61,63,61,62,64,63,62,65,63,64,66,63,65,67,63,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,83,82,85,84,82,86,85,82,87,86,82,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,103,102,105,103,104,106,103,105,107,103,106,108,103,107,109,103,108,110,103,109,111,103,110,112,103,111,113,103,112,114,116,115,117,115,116,118,117,116,119,117,118,120,117,119,121,117,120,122,117,121,123,117,122,124,117,123,125,117,124,126,117,125,127,117,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,151,150,153,151,152,154,151,153,155,151,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,179,178,181,180,178,182,181,178,183,182,178,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,199,198,201,199,200,202,199,201,203,199,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,235,234,237,236,234,238,237,234,239,238,234,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,263,262,265,263,264,266,263,265,267,263,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,279,278,281,280,278,282,281,278,283,282,278,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,307,306,309,307,308,310,307,309,311,307,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,323,322,325,324,322,326,325,322,327,326,322,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *224 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh planks, Model::RootNode + C: "OO",5602323426970875404,0 + + ;Geometry::, Model::Mesh planks + C: "OO",4869515899379782843,5602323426970875404 + + ;Material::wood, Model::Mesh planks + C: "OO",7178,5602323426970875404 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/planks.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planks.fbx.import new file mode 100644 index 0000000..6ee8c73 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planks.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4v2bbitfcbxb" +path="res://.godot/imported/planks.fbx-29f01598c2649ceadc7097296dd0fc0f.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/planks.fbx" +dest_files=["res://.godot/imported/planks.fbx-29f01598c2649ceadc7097296dd0fc0f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksHalf.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksHalf.fbx new file mode 100644 index 0000000..1b7f71e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksHalf.fbx @@ -0,0 +1,359 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 650 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "planksHalf.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "planksHalf.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4684274164488443620, "Model::planksHalf", "Null" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Model: 4997993789679150964, "Model::planks", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-3.104219E-12,0,1.155058E-13 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-90,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4994637780719853203, "Geometry::", "Mesh" { + Vertices: *858 { + a: -5,0,-3.514081,-5,0.3,-3.514081,-5,0,-2.028162,-5,0.3,-2.028162,-5,0.6,2.598881E-12,-5,0.3,2.598881E-12,-5,0.6,-5,-5,0.3,-5,5,0,-2.028162,5,0,-3.514081,-5,0,-2.028162,-5,0,-3.514081,-5,0,-3.514081,5,0,-3.514081,-5,0.3,-3.514081,5,0.3,-3.514081,-3.514081,0.3,-3.514081,-3.297184,0.3,-3.514081,-1.811265,0.3,-3.514081,-1.594368,0.3,-3.514081,-0.1084486,0.3,-3.514081,0.1084486,0.3,-3.514081,1.594368,0.3,-3.514081,1.811265,0.3,-3.514081,3.297184,0.3,-3.514081,3.514081,0.3,-3.514081,5,0,-2.028162,5,0.3,-2.028162,5,0,-3.514081,5,0.3,-3.514081,5,0.6,-3.840569E-12,5,0.3,-3.840569E-12,5,0.3,-5,5,0.6,-5,-1.594368,0.3,-2.028162,-1.811265,0.3,-2.028162,-1.594368,0.3,-3.514081,-1.811265,0.3,-3.514081,5,0,-2.028162,-5,0,-2.028162,5,0.3,-2.028162,-5,0.3,-2.028162,3.514081,0.3,-2.028162,3.297184,0.3,-2.028162,1.811265,0.3,-2.028162,1.594368,0.3,-2.028162,0.1084486,0.3,-2.028162,-0.1084486,0.3,-2.028162,-1.594368,0.3,-2.028162,-1.811265,0.3,-2.028162,-3.297184,0.3,-2.028162,-3.5,0.3,-2.028162,-3.514081,0.3,-2.028162,-3.297184,0.3,-5,-3.297184,0.6,-5,-3.297184,0.3,-3.514081,-3.297184,0.6,1.357193E-12,-3.297184,0.3,-2.028162,-3.297184,0.3,1.357193E-12,-1.811265,0.3,4.908997E-13,-3.297184,0.3,1.357193E-12,-1.811265,0.6,4.908997E-13,-3.297184,0.6,1.357193E-12,-1.811265,0.6,4.908997E-13,-3.297184,0.6,1.357193E-12,-1.811265,0.6,-5,-3.297184,0.6,-5,-3.297184,0.3,-5,-1.811265,0.3,-5,-3.297184,0.6,-5,-1.811265,0.6,-5,-1.811265,0.6,-5,-1.811265,0.3,-5,-1.811265,0.6,4.908997E-13,-1.811265,0.3,-3.514081,-1.811265,0.3,-2.028162,-1.811265,0.3,4.908997E-13,-1.811265,0.3,-3.514081,-1.811265,0.3,-5,-3.297184,0.3,-3.514081,-3.297184,0.3,-5,-3.297184,0.3,-2.028162,-3.5,0.3,-2.028162,-3.297184,0.3,-3.514081,-3.514081,0.3,-3.514081,-3.514081,0.3,-2.028162,5,0.6,-3.840569E-12,3.514081,0.6,-2.974275E-12,5,0.6,-5,3.514081,0.6,-5,3.514081,0.3,-5,3.514081,0.6,-5,3.514081,0.3,-3.514081,3.514081,0.6,-2.974275E-12,3.514081,0.3,-2.028162,3.514081,0.3,-2.974275E-12,5,0.3,-3.840569E-12,3.514081,0.3,-2.974275E-12,5,0.6,-3.840569E-12,3.514081,0.6,-2.974275E-12,3.514081,0.3,-5,5,0.3,-5,3.514081,0.6,-5,5,0.6,-5,5,0.3,-3.514081,5,0.3,-5,3.514081,0.3,-3.514081,3.514081,0.3,-5,-0.1084486,0.6,-5,-0.1084486,0.3,-5,-0.1084486,0.6,-5.486527E-13,-0.1084486,0.3,-3.514081,-0.1084486,0.3,-2.028162,-0.1084486,0.3,-5.486527E-13,-0.1084486,0.3,-5.486527E-13,-1.594368,0.3,3.17641E-13,-0.1084486,0.6,-5.486527E-13,-1.594368,0.6,3.17641E-13,-1.594368,0.3,-5,-0.1084486,0.3,-5,-1.594368,0.6,-5,-0.1084486,0.6,-5,-0.1084486,0.6,-5.486527E-13,-1.594368,0.6,3.17641E-13,-0.1084486,0.6,-5,-1.594368,0.6,-5,-1.594368,0.3,-5,-1.594368,0.6,-5,-1.594368,0.3,-3.514081,-1.594368,0.6,3.17641E-13,-1.594368,0.3,-2.028162,-1.594368,0.3,3.17641E-13,-0.1084486,0.3,-3.514081,-0.1084486,0.3,-5,-1.594368,0.3,-3.514081,-1.594368,0.3,-5,1.811265,0.3,-2.028162,1.594368,0.3,-2.028162,1.811265,0.3,-3.514081,1.594368,0.3,-3.514081,-3.514081,0.3,1.732587E-12,-5,0.3,2.598881E-12,-3.514081,0.6,1.732587E-12,-5,0.6,2.598881E-12,-5,0.3,-5,-3.514081,0.3,-5,-5,0.6,-5,-3.514081,0.6,-5,-3.514081,0.6,-5,-3.514081,0.3,-5,-3.514081,0.6,1.732587E-12,-3.514081,0.3,-3.514081,-3.514081,0.3,-2.028162,-3.514081,0.3,1.732587E-12,-3.514081,0.6,1.732587E-12,-5,0.6,2.598881E-12,-3.514081,0.6,-5,-5,0.6,-5,-3.514081,0.3,-3.514081,-3.514081,0.3,-5,-5,0.3,-3.514081,-5,0.3,-5,1.594368,0.6,-1.703711E-12,0.1084486,0.6,-8.374172E-13,1.594368,0.6,-5,0.1084486,0.6,-5,0.1084486,0.3,-5,0.1084486,0.6,-5,0.1084486,0.3,-3.514081,0.1084486,0.6,-8.374172E-13,0.1084486,0.3,-2.028162,0.1084486,0.3,-8.374172E-13,1.594368,0.3,-1.703711E-12,0.1084486,0.3,-8.374172E-13,1.594368,0.6,-1.703711E-12,0.1084486,0.6,-8.374172E-13,0.1084486,0.3,-5,1.594368,0.3,-5,0.1084486,0.6,-5,1.594368,0.6,-5,1.594368,0.6,-5,1.594368,0.3,-5,1.594368,0.6,-1.703711E-12,1.594368,0.3,-3.514081,1.594368,0.3,-2.028162,1.594368,0.3,-1.703711E-12,0.1084486,0.3,-2.028162,-0.1084486,0.3,-2.028162,0.1084486,0.3,-3.514081,-0.1084486,0.3,-3.514081,1.594368,0.3,-3.514081,1.594368,0.3,-5,0.1084486,0.3,-3.514081,0.1084486,0.3,-5,1.811265,0.3,-5,1.811265,0.6,-5,1.811265,0.3,-3.514081,1.811265,0.6,-1.819217E-12,1.811265,0.3,-2.028162,1.811265,0.3,-1.819217E-12,3.297184,0.3,-2.68551E-12,1.811265,0.3,-1.819217E-12,3.297184,0.6,-2.68551E-12,1.811265,0.6,-1.819217E-12,1.811265,0.3,-5,3.297184,0.3,-5,1.811265,0.6,-5,3.297184,0.6,-5,3.297184,0.6,-5,3.297184,0.3,-5,3.297184,0.6,-2.68551E-12,3.297184,0.3,-3.514081,3.297184,0.3,-2.028162,3.297184,0.3,-2.68551E-12,3.297184,0.6,-2.68551E-12,1.811265,0.6,-1.819217E-12,3.297184,0.6,-5,1.811265,0.6,-5,3.297184,0.3,-3.514081,3.297184,0.3,-5,1.811265,0.3,-3.514081,1.811265,0.3,-5,3.514081,0.3,-2.028162,3.297184,0.3,-2.028162,3.514081,0.3,-3.514081,3.297184,0.3,-3.514081,-3.514081,0.3,1.732587E-12,-3.514081,0.3,-2.028162,-5,0.3,2.598881E-12,-5,0.3,-2.028162,-1.811265,0.3,4.908997E-13,-1.811265,0.3,-2.028162,-3.297184,0.3,1.357193E-12,-3.297184,0.3,-2.028162,-0.1084486,0.3,-5.486527E-13,-0.1084486,0.3,-2.028162,-1.594368,0.3,3.17641E-13,-1.594368,0.3,-2.028162,1.594368,0.3,-1.703711E-12,1.594368,0.3,-2.028162,0.1084486,0.3,-8.374172E-13,0.1084486,0.3,-2.028162,3.297184,0.3,-2.68551E-12,3.297184,0.3,-2.028162,1.811265,0.3,-1.819217E-12,1.811265,0.3,-2.028162,5,0.3,-2.028162,3.514081,0.3,-2.028162,5,0.3,-3.840569E-12,3.514081,0.3,-2.974275E-12,-3.514081,0.3,-2.028162,-5,0.3,-2.028162,-3.514081,0.3,-3.514081,-5,0.3,-3.514081,-3.514081,0.3,-3.514081,-5,0.3,-2.028162,-1.811265,0.3,-2.028162,-1.811265,0.3,-3.514081,-3.297184,0.3,-2.028162,-3.297184,0.3,-3.514081,-3.297184,0.3,-2.028162,-1.811265,0.3,-3.514081,-0.1084486,0.3,-2.028162,-1.594368,0.3,-2.028162,-0.1084486,0.3,-3.514081,-1.594368,0.3,-3.514081,-0.1084486,0.3,-3.514081,-1.594368,0.3,-2.028162,1.594368,0.3,-2.028162,0.1084486,0.3,-2.028162,1.594368,0.3,-3.514081,0.1084486,0.3,-3.514081,1.594368,0.3,-3.514081,0.1084486,0.3,-2.028162,3.297184,0.3,-2.028162,1.811265,0.3,-2.028162,3.297184,0.3,-3.514081,1.811265,0.3,-3.514081,3.297184,0.3,-3.514081,1.811265,0.3,-2.028162,5,0.3,-2.028162,3.514081,0.3,-2.028162,5,0.3,-3.514081,3.514081,0.3,-3.514081,5,0.3,-3.514081,3.514081,0.3,-2.028162 + } + PolygonVertexIndex: *486 { + a: 0,2,-2,3,1,-3,3,4,-2,5,4,-4,4,6,-2,7,1,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,15,-18,19,15,-19,20,15,-20,21,15,-21,22,15,-22,23,15,-23,24,15,-24,25,15,-25,26,28,-28,29,27,-29,27,29,-31,31,27,-31,29,32,-31,33,30,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,41,-41,43,41,-43,44,41,-44,45,41,-45,46,41,-46,47,41,-47,48,41,-48,49,41,-49,50,41,-50,51,41,-51,52,41,-52,53,55,-55,56,54,-56,57,56,-56,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,74,-74,76,75,-74,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,82,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,93,-93,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,111,-111,113,112,-111,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,129,-129,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,151,-151,153,152,-151,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,169,-169,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,183,-183,185,184,-183,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,197,-197,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,211,-211,213,212,-211,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,255,-255,256,258,-258,259,261,-261,262,264,-264,265,267,-267,268,270,-270,271,273,-273,274,276,-276,277,279,-279,280,282,-282,283,285,-285 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1458 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *572 { + a: -13.83496,0,-13.83496,1.181102,-7.98489,0,-7.98489,1.181102,-4.09865E-12,2.362205,-4.09865E-12,1.181102,-19.68504,2.362205,-19.68504,1.181102,19.68504,-7.98489,19.68504,-13.83496,-19.68504,-7.98489,-19.68504,-13.83496,19.68504,2.080754E-14,-19.68504,2.080754E-14,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,12.98104,1.181102,7.130964,1.181102,6.277038,1.181102,0.4269629,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-7.130964,1.181102,-12.98104,1.181102,-13.83496,1.181102,7.98489,0,7.98489,1.181102,13.83496,0,13.83496,1.181102,1.680892E-11,2.362205,1.680892E-11,1.181102,19.68504,1.181102,19.68504,2.362205,6.277038,-7.98489,7.130964,-7.98489,6.277038,-13.83496,7.130964,-13.83496,19.68504,-1.322928E-11,-19.68504,-1.322928E-11,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,12.98104,1.181102,7.130964,1.181102,6.277038,1.181102,0.4269629,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-7.130964,1.181102,-12.98104,1.181102,-13.77953,1.181102,-13.83496,1.181102,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,-2.218323E-12,2.362205,-7.98489,1.181102,-2.218323E-12,1.181102,-7.130964,1.181102,-12.98104,1.181102,-7.130964,2.362205,-12.98104,2.362205,7.130964,1.932676E-12,12.98104,5.343281E-12,7.130964,-19.68504,12.98104,-19.68504,12.98104,1.181102,7.130964,1.181102,12.98104,2.362205,7.130964,2.362205,19.68504,2.362205,19.68504,1.181102,2.227211E-12,2.362205,13.83496,1.181102,7.98489,1.181102,2.227211E-12,1.181102,-7.130964,-13.83496,-7.130964,-19.68504,-12.98104,-13.83496,-12.98104,-19.68504,12.98104,-7.98489,13.77953,-7.98489,12.98104,-13.83496,13.83496,-13.83496,13.83496,-7.98489,-19.68504,-1.512035E-11,-13.83496,-1.170974E-11,-19.68504,-19.68504,-13.83496,-19.68504,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,-3.650718E-12,2.362205,-7.98489,1.181102,-3.650718E-12,1.181102,19.68504,1.181102,13.83496,1.181102,19.68504,2.362205,13.83496,2.362205,-13.83496,1.181102,-19.68504,1.181102,-13.83496,2.362205,-19.68504,2.362205,19.68504,-13.83496,19.68504,-19.68504,13.83496,-13.83496,13.83496,-19.68504,19.68504,2.362205,19.68504,1.181102,2.409121E-12,2.362205,13.83496,1.181102,7.98489,1.181102,2.409121E-12,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-0.4269629,2.362205,-6.277038,2.362205,6.277038,1.181102,0.4269629,1.181102,6.277038,2.362205,0.4269629,2.362205,0.4269629,-2.16005E-12,6.277038,1.250555E-12,0.4269629,-19.68504,6.277038,-19.68504,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,-2.405892E-12,2.362205,-7.98489,1.181102,-2.405892E-12,1.181102,-0.4269629,-13.83496,-0.4269629,-19.68504,-6.277038,-13.83496,-6.277038,-19.68504,-7.130964,-7.98489,-6.277038,-7.98489,-7.130964,-13.83496,-6.277038,-13.83496,-13.83496,1.181102,-19.68504,1.181102,-13.83496,2.362205,-19.68504,2.362205,19.68504,1.181102,13.83496,1.181102,19.68504,2.362205,13.83496,2.362205,19.68504,2.362205,19.68504,1.181102,1.784055E-12,2.362205,13.83496,1.181102,7.98489,1.181102,1.784055E-12,1.181102,13.83496,6.82121E-12,19.68504,1.023182E-11,13.83496,-19.68504,19.68504,-19.68504,-13.83496,-13.83496,-13.83496,-19.68504,-19.68504,-13.83496,-19.68504,-19.68504,-6.277038,-6.707523E-12,-0.4269629,-3.296918E-12,-6.277038,-19.68504,-0.4269629,-19.68504,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,-3.048208E-12,2.362205,-7.98489,1.181102,-3.048208E-12,1.181102,6.277038,1.181102,0.4269629,1.181102,6.277038,2.362205,0.4269629,2.362205,-0.4269629,1.181102,-6.277038,1.181102,-0.4269629,2.362205,-6.277038,2.362205,19.68504,2.362205,19.68504,1.181102,3.045778E-12,2.362205,13.83496,1.181102,7.98489,1.181102,3.045778E-12,1.181102,-0.4269629,-7.98489,0.4269629,-7.98489,-0.4269629,-13.83496,0.4269629,-13.83496,6.277038,-13.83496,6.277038,-19.68504,0.4269629,-13.83496,0.4269629,-19.68504,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,-3.008402E-12,2.362205,-7.98489,1.181102,-3.008402E-12,1.181102,12.98104,1.181102,7.130964,1.181102,12.98104,2.362205,7.130964,2.362205,-7.130964,1.181102,-12.98104,1.181102,-7.130964,2.362205,-12.98104,2.362205,19.68504,2.362205,19.68504,1.181102,3.000314E-12,2.362205,13.83496,1.181102,7.98489,1.181102,3.000314E-12,1.181102,-12.98104,-1.057288E-11,-7.130964,-7.162271E-12,-12.98104,-19.68504,-7.130964,-19.68504,12.98104,-13.83496,12.98104,-19.68504,7.130964,-13.83496,7.130964,-19.68504,-13.83496,-7.98489,-12.98104,-7.98489,-13.83496,-13.83496,-12.98104,-13.83496,-13.83496,6.82121E-12,-13.83496,-7.98489,-19.68504,1.023182E-11,-19.68504,-7.98489,-7.130964,1.932676E-12,-7.130964,-7.98489,-12.98104,5.343281E-12,-12.98104,-7.98489,-0.4269629,-2.16005E-12,-0.4269629,-7.98489,-6.277038,1.250555E-12,-6.277038,-7.98489,6.277038,-6.707523E-12,6.277038,-7.98489,0.4269629,-3.296918E-12,0.4269629,-7.98489,12.98104,-1.057288E-11,12.98104,-7.98489,7.130964,-7.162271E-12,7.130964,-7.98489,19.68504,-7.98489,13.83496,-7.98489,19.68504,-1.512035E-11,13.83496,-1.170974E-11,-12.98104,-13.83496,-13.83496,-13.83496,-12.98104,-7.98489,-12.98104,-13.83496,-13.83496,-13.83496,-12.98104,-7.98489,-12.98104,-7.98489,-12.98104,5.343281E-12,-7.130964,-7.98489,-12.98104,-7.98489,-12.98104,5.343281E-12,-7.130964,-7.98489,-12.98104,-7.98489,-12.98104,5.343281E-12,-7.130964,-7.98489,-12.98104,-7.98489,-12.98104,5.343281E-12,-7.130964,-7.98489,-6.277038,-7.98489,-6.277038,1.250555E-12,-0.4269629,-7.98489,-6.277038,-7.98489,-6.277038,1.250555E-12,-0.4269629,-7.98489,0.4269629,-7.98489,0.4269629,-3.296918E-12,6.277038,-7.98489,0.4269629,-7.98489,0.4269629,-3.296918E-12,6.277038,-7.98489,7.130964,-7.98489,7.130964,-7.162271E-12,12.98104,-7.98489,7.130964,-7.98489,7.130964,-7.162271E-12,12.98104,-7.98489 + } + UVIndex: *486 { + a: 0,2,1,3,1,2,3,4,1,5,4,3,4,6,1,7,1,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,15,16,18,15,17,19,15,18,20,15,19,21,15,20,22,15,21,23,15,22,24,15,23,25,15,24,26,28,27,29,27,28,27,29,30,31,27,30,29,32,30,33,30,32,34,36,35,37,35,36,38,40,39,41,39,40,42,41,40,43,41,42,44,41,43,45,41,44,46,41,45,47,41,46,48,41,47,49,41,48,50,41,49,51,41,50,52,41,51,53,55,54,56,54,55,57,56,55,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,74,73,76,75,73,77,79,78,80,78,79,81,83,82,84,82,83,85,82,84,86,88,87,89,87,88,90,92,91,93,91,92,94,93,92,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,111,110,113,112,110,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,129,128,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,151,150,153,152,150,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,169,168,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,183,182,185,184,182,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,197,196,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,211,210,213,212,210,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,255,254,256,258,257,259,261,260,262,264,263,265,267,266,268,270,269,271,273,272,274,276,275,277,279,278,280,282,281,283,285,284 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *162 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::planksHalf, Model::RootNode + C: "OO",4684274164488443620,0 + + ;Model::Mesh planks, Model::USING PARENT + C: "OO",4997993789679150964,4684274164488443620 + + ;Geometry::, Model::Mesh planks + C: "OO",4994637780719853203,4997993789679150964 + + ;Material::wood, Model::Mesh planks + C: "OO",7178,4997993789679150964 + + ;Material::_defaultMat, Model::Mesh planks + C: "OO",7176,4997993789679150964 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksHalf.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksHalf.fbx.import new file mode 100644 index 0000000..19ec79b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksHalf.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cssmwqbmliuhb" +path="res://.godot/imported/planksHalf.fbx-43bbcbc6a12d5bdefab426e588c965b2.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/planksHalf.fbx" +dest_files=["res://.godot/imported/planksHalf.fbx-43bbcbc6a12d5bdefab426e588c965b2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksOpening.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksOpening.fbx new file mode 100644 index 0000000..da847e5 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksOpening.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 697 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "planksOpening.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "planksOpening.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4771452363314714587, "Model::planksOpening", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5332887746787268450, "Geometry::", "Mesh" { + Vertices: *1152 { + a: -0.1084486,0.6,-2.771122,-1.594368,0.6,-2.771122,-0.1084486,0.6,-5,-1.594368,0.6,-5,-0.1084486,0.6,-5,-0.1084486,0.3,-5,-0.1084486,0.6,-2.771122,-0.1084486,0.3,-3.514081,-0.1084486,0.3,-2.771122,-1.594368,0.3,-5,-1.594368,0.6,-5,-1.594368,0.3,-3.514081,-1.594368,0.6,-2.771122,-1.594368,0.3,-2.771122,-0.1084486,0.3,-2.771122,-1.594368,0.3,-2.771122,-0.1084486,0.6,-2.771122,-1.594368,0.6,-2.771122,-1.594368,0.3,-5,-0.1084486,0.3,-5,-1.594368,0.6,-5,-0.1084486,0.6,-5,0.1084486,0.3,-5,0.1084486,0.6,-5,0.1084486,0.3,-3.514081,0.1084486,0.6,-2.771122,0.1084486,0.3,-2.771122,1.594368,0.3,-2.771122,0.1084486,0.3,-2.771122,1.594368,0.6,-2.771122,0.1084486,0.6,-2.771122,0.1084486,0.3,-5,1.594368,0.3,-5,0.1084486,0.6,-5,1.594368,0.6,-5,1.594368,0.6,-5,1.594368,0.3,-5,1.594368,0.6,-2.771122,1.594368,0.3,-3.514081,1.594368,0.3,-2.771122,1.594368,0.6,-2.771122,0.1084486,0.6,-2.771122,1.594368,0.6,-5,0.1084486,0.6,-5,1.811265,0.3,-5,1.811265,0.6,-5,1.811265,0.3,-3.514081,1.811265,0.6,-2.771122,1.811265,0.3,-2.771122,3.297184,0.6,-5,3.297184,0.3,-5,3.297184,0.6,-2.771122,3.297184,0.3,-3.514081,3.297184,0.3,-2.771122,3.297184,0.3,-2.771122,1.811265,0.3,-2.771122,3.297184,0.6,-2.771122,1.811265,0.6,-2.771122,1.811265,0.3,-5,3.297184,0.3,-5,1.811265,0.6,-5,3.297184,0.6,-5,3.297184,0.6,-2.771122,1.811265,0.6,-2.771122,3.297184,0.6,-5,1.811265,0.6,-5,1.594368,0.6,2.771122,1.594368,0.3,2.771122,1.594368,0.6,5,1.594368,0.3,3.514081,1.594368,0.3,5,1.594368,0.6,5,0.1084486,0.6,5,1.594368,0.6,2.771122,0.1084486,0.6,2.771122,0.1084486,0.3,2.771122,1.594368,0.3,2.771122,0.1084486,0.6,2.771122,1.594368,0.6,2.771122,0.1084486,0.3,2.771122,0.1084486,0.6,2.771122,0.1084486,0.3,3.514081,0.1084486,0.6,5,0.1084486,0.3,5,1.594368,0.3,5,0.1084486,0.3,5,1.594368,0.6,5,0.1084486,0.6,5,-5,0.3,-5,-5,0.6,-5,-5,0.3,-3.514081,-5,0.6,5,-5,0.3,-2.028162,-5,0,-2.028162,-5,0,-3.514081,-5,0.3,2.028162,-5,0.3,3.514081,-5,0.3,5,-5,0,3.514081,-5,0,2.028162,-5,0.3,-5,-3.514081,0.3,-5,-5,0.6,-5,-3.514081,0.6,-5,-3.514081,0.6,5,-5,0.6,5,-3.514081,0.6,-5,-5,0.6,-5,-3.514081,0.3,5,-5,0.3,5,-3.514081,0.6,5,-5,0.6,5,-3.514081,0.6,-5,-3.514081,0.3,-5,-3.514081,0.6,5,-3.514081,0.3,-3.514081,-3.514081,0.3,-2.028162,-3.514081,0.3,2.028162,-3.514081,0.3,3.514081,-3.514081,0.3,5,-1.811265,0.3,5,-3.297184,0.3,5,-1.811265,0.6,5,-3.297184,0.6,5,-1.811265,0.6,2.771122,-1.811265,0.3,2.771122,-1.811265,0.6,5,-1.811265,0.3,3.514081,-1.811265,0.3,5,-3.297184,0.3,2.771122,-3.297184,0.6,2.771122,-3.297184,0.3,3.514081,-3.297184,0.6,5,-3.297184,0.3,5,-3.297184,0.3,2.771122,-1.811265,0.3,2.771122,-3.297184,0.6,2.771122,-1.811265,0.6,2.771122,-1.811265,0.6,5,-3.297184,0.6,5,-1.811265,0.6,2.771122,-3.297184,0.6,2.771122,-1.811265,0.6,-2.771122,-3.297184,0.6,-2.771122,-1.811265,0.6,-5,-3.297184,0.6,-5,-3.297184,0.3,-5,-1.811265,0.3,-5,-3.297184,0.6,-5,-1.811265,0.6,-5,-1.811265,0.6,-5,-1.811265,0.3,-5,-1.811265,0.6,-2.771122,-1.811265,0.3,-3.514081,-1.811265,0.3,-2.771122,-3.297184,0.3,-5,-3.297184,0.6,-5,-3.297184,0.3,-3.514081,-3.297184,0.6,-2.771122,-3.297184,0.3,-2.771122,-1.811265,0.3,-2.771122,-3.297184,0.3,-2.771122,-1.811265,0.6,-2.771122,-3.297184,0.6,-2.771122,5,0,-2.028162,-5,0,-2.028162,5,0.3,-2.028162,-5,0.3,-2.028162,3.514081,0.3,-2.028162,-3.514081,0.3,-2.028162,5,0,-2.028162,5,0,-3.514081,-5,0,-2.028162,-5,0,-3.514081,5,0,-2.028162,5,0.3,-2.028162,5,0,-3.514081,5,0.3,-3.514081,5,0.6,5,5,0.3,-5,5,0.6,-5,5,0.3,2.028162,5,0.3,3.514081,5,0.3,5,5,0,2.028162,5,0,3.514081,-5,0,-3.514081,5,0,-3.514081,-5,0.3,-3.514081,5,0.3,-3.514081,-3.514081,0.3,-3.514081,-3.297184,0.3,-3.514081,-1.811265,0.3,-3.514081,-1.594368,0.3,-3.514081,-0.1084486,0.3,-3.514081,0.1084486,0.3,-3.514081,1.594368,0.3,-3.514081,1.811265,0.3,-3.514081,3.297184,0.3,-3.514081,3.514081,0.3,-3.514081,-3.514081,0.3,-3.514081,-3.514081,0.3,-5,-5,0.3,-3.514081,-5,0.3,-5,3.297184,0.3,-3.514081,3.297184,0.3,-5,1.811265,0.3,-3.514081,1.811265,0.3,-5,-1.811265,0.3,-3.514081,-1.811265,0.3,-5,-3.297184,0.3,-3.514081,-3.297184,0.3,-5,3.514081,0.3,-3.514081,3.297184,0.3,-2.771122,3.297184,0.3,-3.514081,3.514081,0.3,-2.028162,-3.514081,0.3,-2.028162,1.811265,0.3,-2.771122,1.594368,0.3,-2.771122,1.811265,0.3,-3.514081,1.594368,0.3,-3.514081,0.1084486,0.3,-2.771122,-0.1084486,0.3,-2.771122,0.1084486,0.3,-3.514081,-0.1084486,0.3,-3.514081,-1.594368,0.3,-2.771122,-1.811265,0.3,-2.771122,-1.594368,0.3,-3.514081,-1.811265,0.3,-3.514081,-3.297184,0.3,-2.771122,-3.297184,0.3,-3.514081,-3.514081,0.3,-3.514081,1.594368,0.3,-3.514081,1.594368,0.3,-5,0.1084486,0.3,-3.514081,0.1084486,0.3,-5,-0.1084486,0.3,-3.514081,-0.1084486,0.3,-5,-1.594368,0.3,-3.514081,-1.594368,0.3,-5,5,0.6,5,3.514081,0.6,5,5,0.6,-5,3.514081,0.6,-5,3.514081,0.3,-5,3.514081,0.6,-5,3.514081,0.3,-3.514081,3.514081,0.6,5,3.514081,0.3,-2.028162,3.514081,0.3,2.028162,3.514081,0.3,3.514081,3.514081,0.3,5,3.514081,0.3,-5,5,0.3,-5,3.514081,0.6,-5,5,0.6,-5,5,0.3,5,3.514081,0.3,5,5,0.6,5,3.514081,0.6,5,5,0.3,-3.514081,5,0.3,-5,3.514081,0.3,-3.514081,3.514081,0.3,-5,-0.1084486,0.6,2.771122,-0.1084486,0.3,2.771122,-0.1084486,0.6,5,-0.1084486,0.3,3.514081,-0.1084486,0.3,5,-0.1084486,0.3,5,-1.594368,0.3,5,-0.1084486,0.6,5,-1.594368,0.6,5,-1.594368,0.3,2.771122,-1.594368,0.6,2.771122,-1.594368,0.3,3.514081,-1.594368,0.6,5,-1.594368,0.3,5,-1.594368,0.3,2.771122,-0.1084486,0.3,2.771122,-1.594368,0.6,2.771122,-0.1084486,0.6,2.771122,-0.1084486,0.6,5,-1.594368,0.6,5,-0.1084486,0.6,2.771122,-1.594368,0.6,2.771122,1.811265,0.3,2.771122,1.811265,0.6,2.771122,1.811265,0.3,3.514081,1.811265,0.6,5,1.811265,0.3,5,3.297184,0.6,2.771122,3.297184,0.3,2.771122,3.297184,0.6,5,3.297184,0.3,3.514081,3.297184,0.3,5,3.297184,0.3,5,1.811265,0.3,5,3.297184,0.6,5,1.811265,0.6,5,1.811265,0.3,2.771122,3.297184,0.3,2.771122,1.811265,0.6,2.771122,3.297184,0.6,2.771122,3.297184,0.6,5,1.811265,0.6,5,3.297184,0.6,2.771122,1.811265,0.6,2.771122,5,0,3.514081,5,0,2.028162,-5,0,3.514081,-5,0,2.028162,5,0,3.514081,-5,0,3.514081,5,0.3,3.514081,-5,0.3,3.514081,3.514081,0.3,3.514081,3.297184,0.3,3.514081,1.811265,0.3,3.514081,1.594368,0.3,3.514081,0.1084486,0.3,3.514081,-0.1084486,0.3,3.514081,-1.594368,0.3,3.514081,-1.811265,0.3,3.514081,-3.297184,0.3,3.514081,-3.514081,0.3,3.514081,-5,0,2.028162,5,0,2.028162,-5,0.3,2.028162,5,0.3,2.028162,-3.514081,0.3,2.028162,3.514081,0.3,2.028162,5,0.3,5,5,0.3,3.514081,3.514081,0.3,5,3.514081,0.3,3.514081,5,0.3,-2.028162,3.514081,0.3,-2.028162,5,0.3,2.028162,3.514081,0.3,2.028162,-3.514081,0.3,2.028162,-3.514081,0.3,-2.028162,-5,0.3,2.028162,-5,0.3,-2.028162,3.297184,0.3,5,3.297184,0.3,3.514081,1.811265,0.3,5,1.811265,0.3,3.514081,-0.1084486,0.3,5,-0.1084486,0.3,3.514081,-1.594368,0.3,5,-1.594368,0.3,3.514081,1.594368,0.3,5,1.594368,0.3,3.514081,0.1084486,0.3,5,0.1084486,0.3,3.514081,-1.811265,0.3,5,-1.811265,0.3,3.514081,-3.297184,0.3,5,-3.297184,0.3,3.514081,-3.514081,0.3,5,-3.514081,0.3,3.514081,-5,0.3,5,-5,0.3,3.514081,3.514081,0.3,3.514081,3.297184,0.3,3.514081,3.514081,0.3,2.028162,3.297184,0.3,2.771122,-3.514081,0.3,2.028162,1.811265,0.3,2.771122,1.594368,0.3,2.771122,1.594368,0.3,3.514081,1.811265,0.3,3.514081,0.1084486,0.3,2.771122,-0.1084486,0.3,2.771122,-0.1084486,0.3,3.514081,0.1084486,0.3,3.514081,-1.594368,0.3,2.771122,-1.811265,0.3,2.771122,-1.811265,0.3,3.514081,-1.594368,0.3,3.514081,-3.297184,0.3,2.771122,-3.514081,0.3,3.514081,-3.297184,0.3,3.514081 + } + PolygonVertexIndex: *720 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,12,-12,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,38,-38,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,51,-51,52,50,-52,53,52,-52,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,69,-69,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,82,-82,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,91,-91,92,90,-94,94,93,-91,95,91,-93,96,91,-96,97,91,-97,96,95,-99,99,98,-96,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,115,-115,117,116,-115,118,117,-115,119,118,-115,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,127,-127,129,131,-131,132,130,-132,133,132,-132,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,153,-153,155,157,-157,158,156,-158,159,158,-158,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,167,-167,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,175,177,-179,177,179,-179,180,178,-180,181,175,-179,182,181,-179,183,182,-179,181,182,-185,185,184,-183,186,188,-188,189,187,-189,190,189,-189,191,189,-191,192,189,-192,193,189,-193,194,189,-194,195,189,-195,196,189,-196,197,189,-197,198,189,-198,199,189,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,212,213,-216,216,215,-214,217,216,-214,218,216,-218,219,218,-218,219,220,-219,221,216,-219,222,216,-222,223,222,-222,223,224,-223,225,216,-223,226,216,-226,227,226,-226,227,228,-227,229,216,-227,230,216,-230,231,216,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,247,-247,249,247,-249,250,247,-250,251,247,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,267,-267,269,271,-271,272,270,-272,273,275,-275,276,274,-276,277,276,-276,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,289,-289,291,293,-293,294,292,-294,295,294,-294,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,315,-315,317,315,-317,318,315,-318,319,315,-319,320,315,-320,321,315,-321,322,315,-322,323,315,-323,324,315,-324,325,315,-325,326,328,-328,329,327,-329,330,329,-329,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,367,-367,369,367,-369,370,369,-369,371,369,-371,369,371,-373,373,370,-369,374,373,-369,375,373,-375,373,375,-377,377,374,-369,378,377,-369,379,377,-379,377,379,-381,381,378,-369,382,381,-369,381,382,-384 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2160 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *768 { + a: 0.4269629,-10.90993,6.277038,-10.90993,0.4269629,-19.68504,6.277038,-19.68504,19.68504,2.362205,19.68504,1.181102,10.90993,2.362205,13.83496,1.181102,10.90993,1.181102,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,-10.90993,2.362205,-10.90993,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-0.4269629,2.362205,-6.277038,2.362205,6.277038,1.181102,0.4269629,1.181102,6.277038,2.362205,0.4269629,2.362205,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,-10.90993,2.362205,-10.90993,1.181102,6.277038,1.181102,0.4269629,1.181102,6.277038,2.362205,0.4269629,2.362205,-0.4269629,1.181102,-6.277038,1.181102,-0.4269629,2.362205,-6.277038,2.362205,19.68504,2.362205,19.68504,1.181102,10.90993,2.362205,13.83496,1.181102,10.90993,1.181102,-6.277038,-10.90993,-0.4269629,-10.90993,-6.277038,-19.68504,-0.4269629,-19.68504,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,-10.90993,2.362205,-10.90993,1.181102,19.68504,2.362205,19.68504,1.181102,10.90993,2.362205,13.83496,1.181102,10.90993,1.181102,12.98104,1.181102,7.130964,1.181102,12.98104,2.362205,7.130964,2.362205,-7.130964,1.181102,-12.98104,1.181102,-7.130964,2.362205,-12.98104,2.362205,-12.98104,-10.90993,-7.130964,-10.90993,-12.98104,-19.68504,-7.130964,-19.68504,-10.90993,2.362205,-10.90993,1.181102,-19.68504,2.362205,-13.83496,1.181102,-19.68504,1.181102,-6.277038,19.68504,-0.4269629,19.68504,-6.277038,10.90993,-0.4269629,10.90993,-0.4269629,1.181102,-6.277038,1.181102,-0.4269629,2.362205,-6.277038,2.362205,10.90993,1.181102,10.90993,2.362205,13.83496,1.181102,19.68504,2.362205,19.68504,1.181102,6.277038,1.181102,0.4269629,1.181102,6.277038,2.362205,0.4269629,2.362205,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,19.68504,2.362205,-7.98489,1.181102,-7.98489,0,-13.83496,0,7.98489,1.181102,13.83496,1.181102,19.68504,1.181102,13.83496,0,7.98489,0,19.68504,1.181102,13.83496,1.181102,19.68504,2.362205,13.83496,2.362205,13.83496,19.68504,19.68504,19.68504,13.83496,-19.68504,19.68504,-19.68504,-13.83496,1.181102,-19.68504,1.181102,-13.83496,2.362205,-19.68504,2.362205,19.68504,2.362205,19.68504,1.181102,-19.68504,2.362205,13.83496,1.181102,7.98489,1.181102,-7.98489,1.181102,-13.83496,1.181102,-19.68504,1.181102,-7.130964,1.181102,-12.98104,1.181102,-7.130964,2.362205,-12.98104,2.362205,-10.90993,2.362205,-10.90993,1.181102,-19.68504,2.362205,-13.83496,1.181102,-19.68504,1.181102,10.90993,1.181102,10.90993,2.362205,13.83496,1.181102,19.68504,2.362205,19.68504,1.181102,12.98104,1.181102,7.130964,1.181102,12.98104,2.362205,7.130964,2.362205,7.130964,19.68504,12.98104,19.68504,7.130964,10.90993,12.98104,10.90993,7.130964,-10.90993,12.98104,-10.90993,7.130964,-19.68504,12.98104,-19.68504,12.98104,1.181102,7.130964,1.181102,12.98104,2.362205,7.130964,2.362205,19.68504,2.362205,19.68504,1.181102,10.90993,2.362205,13.83496,1.181102,10.90993,1.181102,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,-10.90993,2.362205,-10.90993,1.181102,-7.130964,1.181102,-12.98104,1.181102,-7.130964,2.362205,-12.98104,2.362205,19.68504,3.002283E-15,-19.68504,3.002283E-15,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,-13.83496,1.181102,19.68504,-7.98489,19.68504,-13.83496,-19.68504,-7.98489,-19.68504,-13.83496,7.98489,0,7.98489,1.181102,13.83496,0,13.83496,1.181102,-19.68504,2.362205,19.68504,1.181102,19.68504,2.362205,-7.98489,1.181102,-13.83496,1.181102,-19.68504,1.181102,-7.98489,0,-13.83496,0,19.68504,4.308844E-22,-19.68504,4.308844E-22,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,12.98104,1.181102,7.130964,1.181102,6.277038,1.181102,0.4269629,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-7.130964,1.181102,-12.98104,1.181102,-13.83496,1.181102,-13.83496,-13.83496,-13.83496,-19.68504,-19.68504,-13.83496,-19.68504,-19.68504,12.98104,-13.83496,12.98104,-19.68504,7.130964,-13.83496,7.130964,-19.68504,-7.130964,-13.83496,-7.130964,-19.68504,-12.98104,-13.83496,-12.98104,-19.68504,-13.83496,-13.83496,-12.98104,-10.90993,-12.98104,-13.83496,-13.83496,-7.98489,13.83496,-7.98489,-7.130964,-10.90993,-6.277038,-10.90993,-7.130964,-13.83496,-6.277038,-13.83496,-0.4269629,-10.90993,0.4269629,-10.90993,-0.4269629,-13.83496,0.4269629,-13.83496,6.277038,-10.90993,7.130964,-10.90993,6.277038,-13.83496,7.130964,-13.83496,12.98104,-10.90993,12.98104,-13.83496,13.83496,-13.83496,6.277038,-13.83496,6.277038,-19.68504,0.4269629,-13.83496,0.4269629,-19.68504,-0.4269629,-13.83496,-0.4269629,-19.68504,-6.277038,-13.83496,-6.277038,-19.68504,-19.68504,19.68504,-13.83496,19.68504,-19.68504,-19.68504,-13.83496,-19.68504,-19.68504,1.181102,-19.68504,2.362205,-13.83496,1.181102,19.68504,2.362205,-7.98489,1.181102,7.98489,1.181102,13.83496,1.181102,19.68504,1.181102,-13.83496,1.181102,-19.68504,1.181102,-13.83496,2.362205,-19.68504,2.362205,19.68504,1.181102,13.83496,1.181102,19.68504,2.362205,13.83496,2.362205,19.68504,-13.83496,19.68504,-19.68504,13.83496,-13.83496,13.83496,-19.68504,-10.90993,2.362205,-10.90993,1.181102,-19.68504,2.362205,-13.83496,1.181102,-19.68504,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-0.4269629,2.362205,-6.277038,2.362205,10.90993,1.181102,10.90993,2.362205,13.83496,1.181102,19.68504,2.362205,19.68504,1.181102,6.277038,1.181102,0.4269629,1.181102,6.277038,2.362205,0.4269629,2.362205,0.4269629,19.68504,6.277038,19.68504,0.4269629,10.90993,6.277038,10.90993,10.90993,1.181102,10.90993,2.362205,13.83496,1.181102,19.68504,2.362205,19.68504,1.181102,-10.90993,2.362205,-10.90993,1.181102,-19.68504,2.362205,-13.83496,1.181102,-19.68504,1.181102,12.98104,1.181102,7.130964,1.181102,12.98104,2.362205,7.130964,2.362205,-7.130964,1.181102,-12.98104,1.181102,-7.130964,2.362205,-12.98104,2.362205,-12.98104,19.68504,-7.130964,19.68504,-12.98104,10.90993,-7.130964,10.90993,19.68504,13.83496,19.68504,7.98489,-19.68504,13.83496,-19.68504,7.98489,19.68504,1.467361E-21,-19.68504,1.467361E-21,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,12.98104,1.181102,7.130964,1.181102,6.277038,1.181102,0.4269629,1.181102,-0.4269629,1.181102,-6.277038,1.181102,-7.130964,1.181102,-12.98104,1.181102,-13.83496,1.181102,19.68504,-6.004564E-15,-19.68504,-6.004564E-15,19.68504,1.181102,-19.68504,1.181102,13.83496,1.181102,-13.83496,1.181102,19.68504,19.68504,19.68504,13.83496,13.83496,19.68504,13.83496,13.83496,19.68504,-7.98489,13.83496,-7.98489,19.68504,7.98489,13.83496,7.98489,-13.83496,7.98489,-13.83496,-7.98489,-19.68504,7.98489,-19.68504,-7.98489,12.98104,19.68504,12.98104,13.83496,7.130964,19.68504,7.130964,13.83496,-0.4269629,19.68504,-0.4269629,13.83496,-6.277038,19.68504,-6.277038,13.83496,6.277038,19.68504,6.277038,13.83496,0.4269629,19.68504,0.4269629,13.83496,-7.130964,19.68504,-7.130964,13.83496,-12.98104,19.68504,-12.98104,13.83496,-13.83496,19.68504,-13.83496,13.83496,-19.68504,19.68504,-19.68504,13.83496,-13.83496,13.83496,-12.98104,13.83496,-13.83496,7.98489,-12.98104,10.90993,13.83496,7.98489,-7.130964,10.90993,-6.277038,10.90993,-6.277038,13.83496,-7.130964,13.83496,-0.4269629,10.90993,0.4269629,10.90993,0.4269629,13.83496,-0.4269629,13.83496,6.277038,10.90993,7.130964,10.90993,7.130964,13.83496,6.277038,13.83496,12.98104,10.90993,13.83496,13.83496,12.98104,13.83496 + } + UVIndex: *720 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,12,11,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,38,37,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,51,50,52,50,51,53,52,51,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,69,68,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,82,81,84,86,85,87,85,86,88,90,89,91,89,90,92,91,90,92,90,93,94,93,90,95,91,92,96,91,95,97,91,96,96,95,98,99,98,95,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,115,114,117,116,114,118,117,114,119,118,114,120,122,121,123,121,122,124,126,125,127,125,126,128,127,126,129,131,130,132,130,131,133,132,131,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,153,152,155,157,156,158,156,157,159,158,157,160,162,161,163,161,162,164,166,165,167,165,166,168,167,166,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,175,177,178,177,179,178,180,178,179,181,175,178,182,181,178,183,182,178,181,182,184,185,184,182,186,188,187,189,187,188,190,189,188,191,189,190,192,189,191,193,189,192,194,189,193,195,189,194,196,189,195,197,189,196,198,189,197,199,189,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,212,213,215,216,215,213,217,216,213,218,216,217,219,218,217,219,220,218,221,216,218,222,216,221,223,222,221,223,224,222,225,216,222,226,216,225,227,226,225,227,228,226,229,216,226,230,216,229,231,216,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,247,246,249,247,248,250,247,249,251,247,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,267,266,269,271,270,272,270,271,273,275,274,276,274,275,277,276,275,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,289,288,291,293,292,294,292,293,295,294,293,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,315,314,317,315,316,318,315,317,319,315,318,320,315,319,321,315,320,322,315,321,323,315,322,324,315,323,325,315,324,326,328,327,329,327,328,330,329,328,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,367,366,369,367,368,370,369,368,371,369,370,369,371,372,373,370,368,374,373,368,375,373,374,373,375,376,377,374,368,378,377,368,379,377,378,377,379,380,381,378,368,382,381,368,381,382,383 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *240 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh planksOpening, Model::RootNode + C: "OO",4771452363314714587,0 + + ;Geometry::, Model::Mesh planksOpening + C: "OO",5332887746787268450,4771452363314714587 + + ;Material::wood, Model::Mesh planksOpening + C: "OO",7178,4771452363314714587 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksOpening.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksOpening.fbx.import new file mode 100644 index 0000000..048d0e8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/planksOpening.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bp2rmbnvp0pb7" +path="res://.godot/imported/planksOpening.fbx-ec155acbca68ba0de5bd6076ed1c6241.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/planksOpening.fbx" +dest_files=["res://.godot/imported/planksOpening.fbx-ec155acbca68ba0de5bd6076ed1c6241.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/poles.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/poles.fbx new file mode 100644 index 0000000..4de48a3 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/poles.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 749 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "poles.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "poles.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5252991188704505355, "Model::poles", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5762796738933873564, "Geometry::", "Mesh" { + Vertices: *156 { + a: 4,0,4,4.125,0,4,4,10,4,5,0,4,5,10,4,5,10,4,5,0,4,5,10,5,5,0,5,5,0,-4,4.125,0,-4,5,10,-4,4,0,-4,4,10,-4,5,0,-4,5,0,-5,4.125,0,-4,4,0,-5,4,0,-4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,5,0,5,5,0,4,4,0,5,4.125,0,4,4,0,4,5,10,4,5,10,5,4,10,4,4,10,5,4,0,4,4,10,4,4,0,5,4,10,5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,5,4,0,5,5,10,5,4,10,5 + } + PolygonVertexIndex: *84 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,12,-12,14,16,-16,17,15,-17,18,17,-17,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,26,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *252 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *104 { + a: -15.74803,6.929483E-15,-16.24016,6.929483E-15,-15.74803,39.37008,-19.68504,6.929483E-15,-19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,-6.929483E-15,16.24016,-6.929483E-15,19.68504,39.37008,15.74803,-6.929483E-15,15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,16.24016,-15.74803,15.74803,-19.68504,15.74803,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,16.24016,15.74803,15.74803,15.74803,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008 + } + UVIndex: *84 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,12,11,14,16,15,17,15,16,18,17,16,19,21,20,22,20,21,23,25,24,26,24,25,27,26,25,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *28 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh poles, Model::RootNode + C: "OO",5252991188704505355,0 + + ;Geometry::, Model::Mesh poles + C: "OO",5762796738933873564,5252991188704505355 + + ;Material::wood, Model::Mesh poles + C: "OO",7178,5252991188704505355 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/poles.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/poles.fbx.import new file mode 100644 index 0000000..787796c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/poles.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://o5wjoi4vwyuf" +path="res://.godot/imported/poles.fbx-75680718f1c2782e2a617e7159fe984d.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/poles.fbx" +dest_files=["res://.godot/imported/poles.fbx-75680718f1c2782e2a617e7159fe984d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/polesHorizontal.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/polesHorizontal.fbx new file mode 100644 index 0000000..00c3560 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/polesHorizontal.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 786 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "polesHorizontal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "polesHorizontal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4648546091399209323, "Model::polesHorizontal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5493148486592437636, "Geometry::", "Mesh" { + Vertices: *288 { + a: 4.325,4.25,-4,4.325,5.75,-4,4.325,4.25,4,4.325,5.75,4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,4.675,1.5,-4,4.675,1.5,4,4.325,1.5,-4,4.325,1.5,4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4.675,5.75,-4,4.675,5.75,4,4.325,5.75,-4,4.325,5.75,4,5,10,4,5,10,5,4,10,4,4,10,5,4.675,4.25,4,4.675,4.25,-4,4.325,4.25,4,4.325,4.25,-4,4,0,4,4.325,0,4,4,10,4,4.325,1.5,4,4.325,4.25,4,4.675,1.5,4,4.325,5.75,4,4.675,5.75,4,5,10,4,4.675,4.25,4,5,0,4,4.675,0,4,5,0,-4,4.675,0,-4,5,10,-4,4.675,1.5,-4,4.675,4.25,-4,4.325,1.5,-4,4.675,5.75,-4,4,10,-4,4.325,5.75,-4,4.325,4.25,-4,4,0,-4,4.325,0,-4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4,4,10,4,4,0,5,4,10,5,4.675,1.5,-4,4.675,0,-4,4.675,1.5,4,4.675,0,4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,0,5,5,0,4,4,0,5,4.675,0,4,4.325,0,4,4,0,4,4.675,0,-4,4.325,0,-4,4,0,-5,4,0,-4,5,0,-5,5,0,-4,4.675,5.75,-4,4.675,4.25,-4,4.675,5.75,4,4.675,4.25,4,4.325,0,-4,4.325,1.5,-4,4.325,0,4,4.325,1.5,4 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,31,-31,33,31,-33,34,32,-31,35,34,-31,30,36,-36,35,36,-38,32,37,-34,37,36,-34,36,38,-34,39,33,-39,40,42,-42,43,41,-43,44,43,-43,45,43,-45,46,44,-43,42,47,-47,46,47,-49,48,47,-50,49,45,-45,49,47,-46,47,50,-46,51,45,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,79,-79,81,80,-79,82,79,-81,80,83,-83,83,84,-83,85,84,-84,84,86,-83,87,82,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: -15.74803,16.73228,-15.74803,22.63779,15.74803,16.73228,15.74803,22.63779,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,-18.40551,-15.74803,-18.40551,15.74803,-17.02756,-15.74803,-17.02756,15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-18.40551,-15.74803,-18.40551,15.74803,-17.02756,-15.74803,-17.02756,15.74803,-19.68504,15.74803,-19.68504,19.68504,-15.74803,15.74803,-15.74803,19.68504,18.40551,15.74803,18.40551,-15.74803,17.02756,15.74803,17.02756,-15.74803,-15.74803,1.396695E-14,-17.02756,1.396695E-14,-15.74803,39.37008,-17.02756,5.905512,-17.02756,16.73228,-18.40551,5.905512,-17.02756,22.63779,-18.40551,22.63779,-19.68504,39.37008,-18.40551,16.73228,-19.68504,1.396695E-14,-18.40551,1.396695E-14,19.68504,-1.396695E-14,18.40551,-1.396695E-14,19.68504,39.37008,18.40551,5.905512,18.40551,16.73228,17.02756,5.905512,18.40551,22.63779,15.74803,39.37008,17.02756,22.63779,17.02756,16.73228,15.74803,-1.396695E-14,17.02756,-1.396695E-14,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,15.74803,5.905512,15.74803,0,-15.74803,5.905512,-15.74803,0,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.40551,15.74803,17.02756,15.74803,15.74803,15.74803,18.40551,-15.74803,17.02756,-15.74803,15.74803,-19.68504,15.74803,-15.74803,19.68504,-19.68504,19.68504,-15.74803,15.74803,22.63779,15.74803,16.73228,-15.74803,22.63779,-15.74803,16.73228,-15.74803,0,-15.74803,5.905512,15.74803,0,15.74803,5.905512 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,31,30,33,31,32,34,32,30,35,34,30,30,36,35,35,36,37,32,37,33,37,36,33,36,38,33,39,33,38,40,42,41,43,41,42,44,43,42,45,43,44,46,44,42,42,47,46,46,47,48,48,47,49,49,45,44,49,47,45,47,50,45,51,45,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,79,78,81,80,78,82,79,80,80,83,82,83,84,82,85,84,83,84,86,82,87,82,86,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh polesHorizontal, Model::RootNode + C: "OO",4648546091399209323,0 + + ;Geometry::, Model::Mesh polesHorizontal + C: "OO",5493148486592437636,4648546091399209323 + + ;Material::wood, Model::Mesh polesHorizontal + C: "OO",7178,4648546091399209323 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/polesHorizontal.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/polesHorizontal.fbx.import new file mode 100644 index 0000000..c681e56 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/polesHorizontal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dis1swpxagaxu" +path="res://.godot/imported/polesHorizontal.fbx-fc5e5a08288cbb0c68029646cd69913e.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/polesHorizontal.fbx" +dest_files=["res://.godot/imported/polesHorizontal.fbx-fc5e5a08288cbb0c68029646cd69913e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/road.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/road.fbx new file mode 100644 index 0000000..7124929 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/road.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 818 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "road.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "road.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5316431779031698848, "Model::road", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4920682852096750559, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,0.25,-5,5,0,-5,5,0.25,5,5,0,5,5,0,5,-5,0,5,5,0.25,5,-5,0.25,5,-5,0,-5,-5,0.25,-5,-5,0,5,-5,0.25,5,-5,0,-5,5,0,-5,-5,0.25,-5,5,0.25,-5,5,0.25,-5,5,0.25,5,-5,0.25,-5,-5,0.25,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 19.68504,0.984252,19.68504,0,-19.68504,0.984252,-19.68504,0,19.68504,0,-19.68504,0,19.68504,0.984252,-19.68504,0.984252,-19.68504,0,-19.68504,0.984252,19.68504,0,19.68504,0.984252,19.68504,0,-19.68504,0,19.68504,0.984252,-19.68504,0.984252,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh road, Model::RootNode + C: "OO",5316431779031698848,0 + + ;Geometry::, Model::Mesh road + C: "OO",4920682852096750559,5316431779031698848 + + ;Material::stone, Model::Mesh road + C: "OO",7184,5316431779031698848 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/road.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/road.fbx.import new file mode 100644 index 0000000..22a19b6 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/road.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4f222t2pa0v2" +path="res://.godot/imported/road.fbx-4b17e8e83ae45f54bda4e597843539fa.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/road.fbx" +dest_files=["res://.godot/imported/road.fbx-4b17e8e83ae45f54bda4e597843539fa.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadBend.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadBend.fbx new file mode 100644 index 0000000..ead5234 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadBend.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 860 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roadBend.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roadBend.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5152408218523898092, "Model::roadBend", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4925488598132076874, "Geometry::", "Mesh" { + Vertices: *1341 { + a: -15,9.276206E-19,-15,-15,0.5,-15,-15,6.829876E-18,15,-15,0.5,15,-15,6.829876E-18,15,-15,0.5,15,15,3.724923E-15,15,15,0.5,15,10.75556,0.5,-11.74313,10.04154,0.25,-11.19524,10.36676,0.5,-12.325,9.587341,0.25,-11.875,10.36676,0.5,-12.325,9.587341,0.25,-11.875,10.05724,0.5,-12.95264,9.225752,0.25,-12.60823,15,0.5,-9.65,15,0.25,-8.75,14.30169,0.5,-9.695769,14.18421,0.25,-8.80347,14.30169,0.5,-9.695769,14.18421,0.25,-8.80347,13.61532,0.5,-9.832297,13.38238,0.25,-8.962963,9.832297,0.5,-13.61532,8.962963,0.25,-13.38238,9.695769,0.5,-14.30169,8.80347,0.25,-14.18421,13.61532,0.5,-9.832297,13.38238,0.25,-8.962963,12.95264,0.5,-10.05724,12.60823,0.25,-9.225752,11.74313,0.5,-10.75556,11.19524,0.25,-10.04154,11.21698,0.5,-11.21698,10.58058,0.25,-10.58058,11.21698,0.5,-11.21698,10.58058,0.25,-10.58058,10.75556,0.5,-11.74313,10.04154,0.25,-11.19524,12.95264,0.5,-10.05724,12.60823,0.25,-9.225752,12.325,0.5,-10.36676,11.875,0.25,-9.587341,9.695769,0.5,-14.30169,8.80347,0.25,-14.18421,9.65,0.5,-15,8.75,0.25,-15,12.325,0.5,-10.36676,11.875,0.25,-9.587341,11.74313,0.5,-10.75556,11.19524,0.25,-10.04154,10.05724,0.5,-12.95264,9.225752,0.25,-12.60823,9.832297,0.5,-13.61532,8.962963,0.25,-13.38238,15,0.5,-15,15,0.5,-9.65,9.65,0.5,-15,14.30169,0.5,-9.695769,13.61532,0.5,-9.832297,12.95264,0.5,-10.05724,12.325,0.5,-10.36676,11.74313,0.5,-10.75556,11.21698,0.5,-11.21698,10.75556,0.5,-11.74313,10.36676,0.5,-12.325,10.05724,0.5,-12.95264,9.832297,0.5,-13.61532,9.695769,0.5,-14.30169,15,0.5,-15,15,0.25,-15,15,0.5,-9.65,15,0.25,-8.75,15,9.276206E-19,-15,15,7.828194E-16,-8.75,15,0.125,-8.75,15,0.5,-15,9.65,0.5,-15,15,0.25,-15,8.75,0.25,-15,8.75,0.125,-15,15,9.276206E-19,-15,8.75,1.078629E-19,-15,15,0.25,8.75,15,0.125,8.75,15,0.5,9.65,15,2.955469E-15,8.75,15,3.724923E-15,15,15,0.5,15,-8.75,0,-15,-8.75,0.125,-15,-15,9.276206E-19,-15,-15,0.5,-15,-8.75,0.25,-15,-9.65,0.5,-15,15,0.125,-8.75,14.18421,0.125,-8.80347,15,0.25,-8.75,14.18421,0.25,-8.80347,14.18421,0.125,-8.80347,13.38238,0.125,-8.962963,14.18421,0.25,-8.80347,13.38238,0.25,-8.962963,13.38238,0.125,-8.962963,12.60823,0.125,-9.225752,13.38238,0.25,-8.962963,12.60823,0.25,-9.225752,12.60823,0.125,-9.225752,11.875,0.125,-9.587341,12.60823,0.25,-9.225752,11.875,0.25,-9.587341,11.875,0.125,-9.587341,11.19524,0.125,-10.04154,11.875,0.25,-9.587341,11.19524,0.25,-10.04154,11.19524,0.125,-10.04154,10.58058,0.125,-10.58058,11.19524,0.25,-10.04154,10.58058,0.25,-10.58058,10.04154,0.125,-11.19524,10.04154,0.25,-11.19524,10.58058,0.125,-10.58058,10.58058,0.25,-10.58058,9.587341,0.125,-11.875,9.587341,0.25,-11.875,10.04154,0.125,-11.19524,10.04154,0.25,-11.19524,9.225752,0.125,-12.60823,9.225752,0.25,-12.60823,9.587341,0.125,-11.875,9.587341,0.25,-11.875,8.962963,0.125,-13.38238,8.962963,0.25,-13.38238,9.225752,0.125,-12.60823,9.225752,0.25,-12.60823,8.80347,0.125,-14.18421,8.80347,0.25,-14.18421,8.962963,0.125,-13.38238,8.962963,0.25,-13.38238,8.75,0.125,-15,8.75,0.25,-15,8.80347,0.125,-14.18421,8.80347,0.25,-14.18421,-8.75,0.25,-15,-8.75,0.125,-15,-8.546816,0.25,-11.9,-8.546816,0.125,-11.9,-8.546816,0.25,-11.9,-8.546816,0.125,-11.9,-7.940738,0.25,-8.853047,-7.940738,0.125,-8.853047,-7.940738,0.25,-8.853047,-7.940738,0.125,-8.853047,-6.942139,0.25,-5.911269,-6.942139,0.125,-5.911269,-6.942139,0.25,-5.911269,-6.942139,0.125,-5.911269,-5.568103,0.25,-3.125,-5.568103,0.125,-3.125,-5.568103,0.25,-3.125,-5.568103,0.125,-3.125,-3.842142,0.25,-0.541916,-3.842142,0.125,-0.541916,-3.842142,0.25,-0.541916,-3.842142,0.125,-0.541916,-1.793786,0.25,1.793786,-1.793786,0.125,1.793786,0.541916,0.125,3.842142,0.541916,0.25,3.842142,-1.793786,0.125,1.793786,-1.793786,0.25,1.793786,3.125,0.125,5.568103,3.125,0.25,5.568103,0.541916,0.125,3.842142,0.541916,0.25,3.842142,5.911269,0.125,6.942139,5.911269,0.25,6.942139,3.125,0.125,5.568103,3.125,0.25,5.568103,8.853047,0.125,7.940738,8.853047,0.25,7.940738,5.911269,0.125,6.942139,5.911269,0.25,6.942139,11.9,0.125,8.546816,11.9,0.25,8.546816,8.853047,0.125,7.940738,8.853047,0.25,7.940738,15,0.125,8.75,15,0.25,8.75,11.9,0.125,8.546816,11.9,0.25,8.546816,-6.942139,0.25,-5.911269,-7.773631,0.5,-5.566854,-7.940738,0.25,-8.853047,-8.810071,0.5,-8.620111,5.911269,0.25,6.942139,5.566854,0.5,7.773631,3.125,0.25,5.568103,2.675,0.5,6.347527,-3.842142,0.25,-0.541916,-4.55616,0.5,0.005969224,-5.568103,0.25,-3.125,-6.347527,0.5,-2.675,0.541916,0.25,3.842142,-0.005969224,0.5,4.55616,-1.793786,0.25,1.793786,-2.430182,0.5,2.430182,-5.568103,0.25,-3.125,-6.347527,0.5,-2.675,-6.942139,0.25,-5.911269,-7.773631,0.5,-5.566854,-1.793786,0.25,1.793786,-2.430182,0.5,2.430182,-3.842142,0.25,-0.541916,-4.55616,0.5,0.005969224,-7.940738,0.25,-8.853047,-8.810071,0.5,-8.620111,-8.546816,0.25,-11.9,-9.439116,0.5,-11.78253,8.853047,0.25,7.940738,8.620111,0.5,8.810071,5.911269,0.25,6.942139,5.566854,0.5,7.773631,-8.546816,0.25,-11.9,-9.439116,0.5,-11.78253,-8.75,0.25,-15,-9.65,0.5,-15,11.9,0.25,8.546816,11.78253,0.5,9.439116,8.853047,0.25,7.940738,8.620111,0.5,8.810071,15,0.5,9.65,11.78253,0.5,9.439116,15,0.25,8.75,11.9,0.25,8.546816,15,0.5,15,-15,0.5,15,15,0.5,9.65,11.78253,0.5,9.439116,8.620111,0.5,8.810071,5.566854,0.5,7.773631,2.675,0.5,6.347527,-0.005969224,0.5,4.55616,-2.430182,0.5,2.430182,-4.55616,0.5,0.005969224,-6.347527,0.5,-2.675,-7.773631,0.5,-5.566854,-8.810071,0.5,-8.620111,-9.439116,0.5,-11.78253,-9.65,0.5,-15,-15,0.5,-15,3.125,0.25,5.568103,2.675,0.5,6.347527,0.541916,0.25,3.842142,-0.005969224,0.5,4.55616,15,0.25,-7.849999,15,0.125,-7.849999,15,0.25,7.849999,15,0.125,7.849999,15,0.125,-8.75,-7.849999,0.125,-15,7.849999,0.125,-15,-7.849999,0.25,-15,7.849999,0.25,-15,15,3.724923E-15,15,15,2.955469E-15,8.75,-15,6.829876E-18,15,8.75,1.078629E-19,-15,15,7.828194E-16,-8.75,15,9.276206E-19,-15,-8.75,0,-15,-15,9.276206E-19,-15,15,0.25,-7.849999,15,0.25,7.849999,14.06674,0.25,-7.911169,12.01748,0.25,7.654515,13.14944,0.25,-8.093631,12.26381,0.25,-8.394261,11.425,0.25,-8.807919,9.085985,0.25,7.071405,10.64736,0.25,-9.327524,9.944186,0.25,-9.944186,9.327524,0.25,-10.64736,8.807919,0.25,-11.425,6.255683,0.25,6.110647,8.394261,0.25,-12.26381,8.093631,0.25,-13.14944,7.911169,0.25,-14.06674,7.849999,0.25,-15,-7.849999,0.25,-15,3.575,0.25,4.788681,1.089801,0.25,3.128124,-1.15739,0.25,1.15739,-3.128124,0.25,-1.089801,-4.788681,0.25,-3.575,-6.110647,0.25,-6.255683,-7.071405,0.25,-9.085985,-7.654515,0.25,-12.01748,15,0.125,-7.849999,14.06674,0.125,-7.911169,15,0.125,-8.75,14.18421,0.125,-8.80347,13.38238,0.125,-8.962963,13.14944,0.125,-8.093631,12.60823,0.125,-9.225752,12.26381,0.125,-8.394261,11.875,0.125,-9.587341,11.425,0.125,-8.807919,11.19524,0.125,-10.04154,10.64736,0.125,-9.327524,10.58058,0.125,-10.58058,9.944186,0.125,-9.944186,10.04154,0.125,-11.19524,9.587341,0.125,-11.875,9.327524,0.125,-10.64736,9.225752,0.125,-12.60823,8.807919,0.125,-11.425,8.962963,0.125,-13.38238,8.80347,0.125,-14.18421,8.394261,0.125,-12.26381,8.75,0.125,-15,7.849999,0.125,-15,8.093631,0.125,-13.14944,7.911169,0.125,-14.06674,7.849999,0.25,-15,7.849999,0.125,-15,7.911169,0.25,-14.06674,7.911169,0.125,-14.06674,7.911169,0.25,-14.06674,7.911169,0.125,-14.06674,8.093631,0.25,-13.14944,8.093631,0.125,-13.14944,8.093631,0.25,-13.14944,8.093631,0.125,-13.14944,8.394261,0.25,-12.26381,8.394261,0.125,-12.26381,8.394261,0.25,-12.26381,8.394261,0.125,-12.26381,8.807919,0.25,-11.425,8.807919,0.125,-11.425,8.807919,0.25,-11.425,8.807919,0.125,-11.425,9.327524,0.25,-10.64736,9.327524,0.125,-10.64736,9.327524,0.25,-10.64736,9.327524,0.125,-10.64736,9.944186,0.25,-9.944186,9.944186,0.125,-9.944186,10.64736,0.125,-9.327524,10.64736,0.25,-9.327524,9.944186,0.125,-9.944186,9.944186,0.25,-9.944186,11.425,0.125,-8.807919,11.425,0.25,-8.807919,10.64736,0.125,-9.327524,10.64736,0.25,-9.327524,12.26381,0.125,-8.394261,12.26381,0.25,-8.394261,11.425,0.125,-8.807919,11.425,0.25,-8.807919,13.14944,0.125,-8.093631,13.14944,0.25,-8.093631,12.26381,0.125,-8.394261,12.26381,0.25,-8.394261,14.06674,0.125,-7.911169,14.06674,0.25,-7.911169,13.14944,0.125,-8.093631,13.14944,0.25,-8.093631,15,0.125,-7.849999,15,0.25,-7.849999,14.06674,0.125,-7.911169,14.06674,0.25,-7.911169,15,0.125,7.849999,15,0.125,8.75,12.01748,0.125,7.654515,11.9,0.125,8.546816,9.085985,0.125,7.071405,8.853047,0.125,7.940738,6.255683,0.125,6.110647,5.911269,0.125,6.942139,3.575,0.125,4.788681,3.125,0.125,5.568103,1.089801,0.125,3.128124,0.541916,0.125,3.842142,-1.15739,0.125,1.15739,-1.793786,0.125,1.793786,-3.128124,0.125,-1.089801,-3.842142,0.125,-0.541916,-4.788681,0.125,-3.575,-5.568103,0.125,-3.125,-6.110647,0.125,-6.255683,-6.942139,0.125,-5.911269,-7.071405,0.125,-9.085985,-7.940738,0.125,-8.853047,-7.654515,0.125,-12.01748,-7.849999,0.125,-15,-8.75,0.125,-15,-8.546816,0.125,-11.9,15,0.125,7.849999,12.01748,0.125,7.654515,15,0.25,7.849999,12.01748,0.25,7.654515,12.01748,0.125,7.654515,9.085985,0.125,7.071405,12.01748,0.25,7.654515,9.085985,0.25,7.071405,9.085985,0.125,7.071405,6.255683,0.125,6.110647,9.085985,0.25,7.071405,6.255683,0.25,6.110647,6.255683,0.125,6.110647,3.575,0.125,4.788681,6.255683,0.25,6.110647,3.575,0.25,4.788681,3.575,0.125,4.788681,1.089801,0.125,3.128124,3.575,0.25,4.788681,1.089801,0.25,3.128124,1.089801,0.125,3.128124,-1.15739,0.125,1.15739,1.089801,0.25,3.128124,-1.15739,0.25,1.15739,-3.128124,0.125,-1.089801,-3.128124,0.25,-1.089801,-1.15739,0.125,1.15739,-1.15739,0.25,1.15739,-4.788681,0.125,-3.575,-4.788681,0.25,-3.575,-3.128124,0.125,-1.089801,-3.128124,0.25,-1.089801,-6.110647,0.125,-6.255683,-6.110647,0.25,-6.255683,-4.788681,0.125,-3.575,-4.788681,0.25,-3.575,-7.071405,0.125,-9.085985,-7.071405,0.25,-9.085985,-6.110647,0.125,-6.255683,-6.110647,0.25,-6.255683,-7.654515,0.125,-12.01748,-7.654515,0.25,-12.01748,-7.071405,0.125,-9.085985,-7.071405,0.25,-9.085985,-7.849999,0.125,-15,-7.849999,0.25,-15,-7.654515,0.125,-12.01748,-7.654515,0.25,-12.01748 + } + PolygonVertexIndex: *846 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,60,-59,62,61,-59,63,62,-59,64,63,-59,65,64,-59,66,65,-59,67,66,-59,68,67,-59,69,68,-59,70,72,-72,73,71,-73,71,73,-75,75,74,-74,76,75,-74,77,79,-79,80,78,-80,80,79,-82,79,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,89,88,-87,90,92,-92,93,91,-93,94,91,-94,95,94,-94,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,237,-240,241,237,-241,242,237,-242,243,237,-243,244,237,-244,245,237,-245,246,237,-246,247,237,-247,248,237,-248,249,237,-249,250,237,-250,251,237,-251,252,254,-254,255,253,-255,256,258,-258,258,259,-258,259,87,-258,85,87,-260,87,75,-258,260,257,-76,90,91,-84,81,83,-92,261,81,-92,262,81,-262,263,262,-262,264,262,-264,265,267,-267,268,266,-268,266,268,-270,270,269,-269,271,268,-268,272,271,-268,273,275,-275,276,274,-276,277,276,-276,278,276,-278,279,276,-279,280,276,-280,281,280,-280,282,280,-282,283,280,-283,284,280,-284,285,280,-285,286,285,-285,287,285,-287,288,285,-288,289,285,-289,290,285,-290,291,285,-291,292,291,-291,293,292,-291,294,293,-291,295,294,-291,296,295,-291,297,296,-291,298,297,-291,299,301,-301,302,300,-302,303,300,-303,304,300,-304,305,304,-304,306,304,-306,307,306,-306,308,306,-308,309,308,-308,310,308,-310,311,310,-310,312,310,-312,313,312,-312,314,312,-314,315,312,-315,316,315,-315,317,315,-317,318,317,-317,319,317,-319,320,317,-320,321,320,-320,322,320,-322,323,320,-323,324,323,-323,325,327,-327,328,326,-328,329,331,-331,332,330,-332,333,335,-335,336,334,-336,337,339,-339,340,338,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348,349,351,-351,352,350,-352,353,355,-355,356,354,-356,357,359,-359,360,358,-360,361,363,-363,364,362,-364,365,367,-367,368,366,-368,369,371,-371,372,370,-372,373,375,-375,376,374,-376,377,376,-376,378,376,-378,379,378,-378,380,378,-380,381,380,-380,382,380,-382,383,382,-382,384,382,-384,385,384,-384,386,384,-386,387,386,-386,388,386,-388,389,388,-388,390,388,-390,391,390,-390,392,390,-392,393,392,-392,394,392,-394,395,394,-394,396,394,-396,397,394,-397,398,394,-398,399,401,-401,402,400,-402,403,405,-405,406,404,-406,407,409,-409,410,408,-410,411,413,-413,414,412,-414,415,417,-417,418,416,-418,419,421,-421,422,420,-422,423,425,-425,426,424,-426,427,429,-429,430,428,-430,431,433,-433,434,432,-434,435,437,-437,438,436,-438,439,441,-441,442,440,-442,443,445,-445,446,444,-446 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2538 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.1115263,0.9900699,0.0855771,-0.1217422,0.9900699,0.07028788,-0.2123362,0.963518,0.1629313,-0.2317864,0.963518,0.1338219,-0.2123362,0.963518,0.1629313,-0.1217422,0.9900699,0.07028788,-0.1217422,0.9900699,0.07028788,-0.1298751,0.9900699,0.05379601,-0.2317864,0.963518,0.1338219,-0.2472707,0.963518,0.1024229,-0.2317864,0.963518,0.1338219,-0.1298751,0.9900699,0.05379601,-0.009213432,0.990028,0.1405698,-0.01834882,0.9900699,0.1393731,-0.01753961,0.9633697,0.2676027,-0.03493454,0.963518,0.2653541,-0.01753961,0.9633697,0.2676027,-0.01834882,0.9900699,0.1393731,-0.01834882,0.9900699,0.1393731,-0.03638368,0.9900699,0.1357858,-0.03493454,0.963518,0.2653541,-0.06927133,0.963518,0.2585241,-0.03493454,0.963518,0.2653541,-0.03638368,0.9900699,0.1357858,-0.1357858,0.9900699,0.03638368,-0.1393731,0.9900699,0.01834882,-0.2585241,0.963518,0.06927133,-0.2653541,0.963518,0.03493454,-0.2585241,0.963518,0.06927133,-0.1393731,0.9900699,0.01834882,-0.03638368,0.9900699,0.1357858,-0.05379601,0.9900699,0.1298751,-0.06927133,0.963518,0.2585241,-0.1024229,0.963518,0.2472707,-0.06927133,0.963518,0.2585241,-0.05379601,0.9900699,0.1298751,-0.0855771,0.9900699,0.1115263,-0.09940208,0.9900699,0.09940208,-0.1629313,0.963518,0.2123362,-0.1892528,0.963518,0.1892528,-0.1629313,0.963518,0.2123362,-0.09940208,0.9900699,0.09940208,-0.09940208,0.9900699,0.09940208,-0.1115263,0.9900699,0.0855771,-0.1892528,0.963518,0.1892528,-0.2123362,0.963518,0.1629313,-0.1892528,0.963518,0.1892528,-0.1115263,0.9900699,0.0855771,-0.05379601,0.9900699,0.1298751,-0.07028788,0.9900699,0.1217422,-0.1024229,0.963518,0.2472707,-0.1338219,0.963518,0.2317864,-0.1024229,0.963518,0.2472707,-0.07028788,0.9900699,0.1217422,-0.1393731,0.9900699,0.01834882,-0.1405698,0.990028,0.009213432,-0.2653541,0.963518,0.03493454,-0.2676027,0.9633697,0.01753961,-0.2653541,0.963518,0.03493454,-0.1405698,0.990028,0.009213432,-0.07028788,0.9900699,0.1217422,-0.0855771,0.9900699,0.1115263,-0.1338219,0.963518,0.2317864,-0.1629313,0.963518,0.2123362,-0.1338219,0.963518,0.2317864,-0.0855771,0.9900699,0.1115263,-0.1298751,0.9900699,0.05379601,-0.1357858,0.9900699,0.03638368,-0.2472707,0.963518,0.1024229,-0.2585241,0.963518,0.06927133,-0.2472707,0.963518,0.1024229,-0.1357858,0.9900699,0.03638368,0,1,0,-0.1405698,0.990028,0.009213432,-0.009213432,0.990028,0.1405698,-0.01834882,0.9900699,0.1393731,-0.009213432,0.990028,0.1405698,-0.1405698,0.990028,0.009213432,-0.03638368,0.9900699,0.1357858,-0.01834882,0.9900699,0.1393731,-0.1405698,0.990028,0.009213432,-0.05379601,0.9900699,0.1298751,-0.03638368,0.9900699,0.1357858,-0.1405698,0.990028,0.009213432,-0.07028788,0.9900699,0.1217422,-0.05379601,0.9900699,0.1298751,-0.1405698,0.990028,0.009213432,-0.0855771,0.9900699,0.1115263,-0.07028788,0.9900699,0.1217422,-0.1405698,0.990028,0.009213432,-0.09940208,0.9900699,0.09940208,-0.0855771,0.9900699,0.1115263,-0.1405698,0.990028,0.009213432,-0.1115263,0.9900699,0.0855771,-0.09940208,0.9900699,0.09940208,-0.1405698,0.990028,0.009213432,-0.1217422,0.9900699,0.07028788,-0.1115263,0.9900699,0.0855771,-0.1405698,0.990028,0.009213432,-0.1298751,0.9900699,0.05379601,-0.1217422,0.9900699,0.07028788,-0.1405698,0.990028,0.009213432,-0.1357858,0.9900699,0.03638368,-0.1298751,0.9900699,0.05379601,-0.1405698,0.990028,0.009213432,-0.1393731,0.9900699,0.01834882,-0.1357858,0.9900699,0.03638368,-0.1405698,0.990028,0.009213432,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.2472707,0.963518,-0.1024229,0.2585241,0.963518,-0.06927133,0.1196669,0.991576,-0.04956767,0.125113,0.991576,-0.03352393,0.1196669,0.991576,-0.04956767,0.2585241,0.963518,-0.06927133,0.1024229,0.963518,-0.2472707,0.1338219,0.963518,-0.2317864,0.04956767,0.991576,-0.1196669,0.06476327,0.991576,-0.1121733,0.04956767,0.991576,-0.1196669,0.1338219,0.963518,-0.2317864,0.2123362,0.963518,-0.1629313,0.2317864,0.963518,-0.1338219,0.1027603,0.991576,-0.07885076,0.1121733,0.991576,-0.06476327,0.1027603,0.991576,-0.07885076,0.2317864,0.963518,-0.1338219,0.1629313,0.963518,-0.2123362,0.1892528,0.963518,-0.1892528,0.07885076,0.991576,-0.1027603,0.09158909,0.991576,-0.09158909,0.07885076,0.991576,-0.1027603,0.1892528,0.963518,-0.1892528,0.2317864,0.963518,-0.1338219,0.2472707,0.963518,-0.1024229,0.1121733,0.991576,-0.06476327,0.1196669,0.991576,-0.04956767,0.1121733,0.991576,-0.06476327,0.2472707,0.963518,-0.1024229,0.1892528,0.963518,-0.1892528,0.2123362,0.963518,-0.1629313,0.09158909,0.991576,-0.09158909,0.1027603,0.991576,-0.07885076,0.09158909,0.991576,-0.09158909,0.2123362,0.963518,-0.1629313,0.2585241,0.963518,-0.06927133,0.2653541,0.963518,-0.03493454,0.125113,0.991576,-0.03352393,0.1284184,0.991576,-0.01690661,0.125113,0.991576,-0.03352393,0.2653541,0.963518,-0.03493454,0.06927133,0.963518,-0.2585241,0.1024229,0.963518,-0.2472707,0.03352393,0.991576,-0.125113,0.04956767,0.991576,-0.1196669,0.03352393,0.991576,-0.125113,0.1024229,0.963518,-0.2472707,0.2653541,0.963518,-0.03493454,0.2676027,0.9633697,-0.01753961,0.1284184,0.991576,-0.01690661,0.1295219,0.9915403,-0.008489313,0.1284184,0.991576,-0.01690661,0.2676027,0.9633697,-0.01753961,0.03493454,0.963518,-0.2653541,0.06927133,0.963518,-0.2585241,0.01690661,0.991576,-0.1284184,0.03352393,0.991576,-0.125113,0.01690661,0.991576,-0.1284184,0.06927133,0.963518,-0.2585241,0.008489313,0.9915403,-0.1295219,0.01753961,0.9633697,-0.2676027,0.01690661,0.991576,-0.1284184,0.03493454,0.963518,-0.2653541,0.01690661,0.991576,-0.1284184,0.01753961,0.9633697,-0.2676027,0,1,0,0.008489313,0.9915403,-0.1295219,0,1,0,0.01690661,0.991576,-0.1284184,0,1,0,0.008489313,0.9915403,-0.1295219,0.03352393,0.991576,-0.125113,0,1,0,0.01690661,0.991576,-0.1284184,0.04956767,0.991576,-0.1196669,0,1,0,0.03352393,0.991576,-0.125113,0.06476327,0.991576,-0.1121733,0,1,0,0.04956767,0.991576,-0.1196669,0.07885076,0.991576,-0.1027603,0,1,0,0.06476327,0.991576,-0.1121733,0.09158909,0.991576,-0.09158909,0,1,0,0.07885076,0.991576,-0.1027603,0.1027603,0.991576,-0.07885076,0,1,0,0.09158909,0.991576,-0.09158909,0.1121733,0.991576,-0.06476327,0,1,0,0.1027603,0.991576,-0.07885076,0.1196669,0.991576,-0.04956767,0,1,0,0.1121733,0.991576,-0.06476327,0.125113,0.991576,-0.03352393,0,1,0,0.1196669,0.991576,-0.04956767,0.1284184,0.991576,-0.01690661,0,1,0,0.125113,0.991576,-0.03352393,0.1295219,0.9915403,-0.008489313,0,1,0,0.1284184,0.991576,-0.01690661,0,1,0,0,1,0,0.1295219,0.9915403,-0.008489313,0.1338219,0.963518,-0.2317864,0.1629313,0.963518,-0.2123362,0.06476327,0.991576,-0.1121733,0.07885076,0.991576,-0.1027603,0.06476327,0.991576,-0.1121733,0.1629313,0.963518,-0.2123362,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *894 { + a: -59.05512,3.663193E-15,-59.05512,1.968504,59.05512,3.68643E-15,59.05512,1.968504,-59.05512,-3.64427E-15,-59.05512,1.968504,59.05512,1.099389E-14,59.05512,1.968504,-14.91568,59.19125,-14.68394,55.52109,-17.67086,59.19125,-17.9026,55.52109,-25.46793,56.46736,-25.23619,52.7972,-28.2231,56.46736,-28.45484,52.7972,56.44387,40.77092,56.67562,37.10075,53.6887,40.77092,53.45696,37.10075,47.77689,47.17772,48.00864,43.50755,45.02172,47.17772,44.78998,43.50755,-45.02172,47.17772,-44.78998,43.50755,-47.77689,47.17772,-48.00864,43.50755,38.31601,52.43987,38.54775,48.76971,35.56084,52.43987,35.3291,48.76971,6.839829,60.56495,7.071573,56.89479,4.084658,60.56495,3.852915,56.89479,-4.084658,60.56495,-3.852915,56.89479,-6.839829,60.56495,-7.071573,56.89479,28.2231,56.46736,28.45484,52.7972,25.46793,56.46736,25.23619,52.7972,-53.6887,40.77092,-53.45696,37.10075,-56.44387,40.77092,-56.67562,37.10075,17.67086,59.19125,17.9026,55.52109,14.91568,59.19125,14.68394,55.52109,-35.56084,52.43987,-35.3291,48.76971,-38.31601,52.43987,-38.54775,48.76971,-59.05512,-59.05512,-59.05512,-37.99213,-37.99213,-59.05512,-56.30585,-38.17232,-53.60361,-38.70983,-50.99466,-39.59545,-48.52362,-40.81403,-46.23278,-42.34472,-44.16133,-44.16133,-42.34472,-46.23278,-40.81403,-48.52362,-39.59545,-50.99466,-38.70983,-53.60361,-38.17232,-56.30585,59.05512,1.968504,59.05512,0.984252,37.99213,1.968504,34.44882,0.984252,59.05512,-9.549694E-11,34.44882,-1.022873E-11,34.44882,0.492126,-59.05512,1.968504,-37.99213,1.968504,-59.05512,0.984252,-34.44882,0.984252,-34.44882,0.492126,-59.05512,1.432454E-10,-34.44882,1.261924E-10,-34.44882,0.984252,-34.44882,0.492126,-37.99213,1.968504,-34.44882,-1.022018E-11,-59.05512,1.358769E-10,-59.05512,1.968504,34.44882,1.261924E-10,34.44882,0.492126,59.05512,1.350479E-11,59.05512,1.968504,34.44882,0.984252,37.99213,1.968504,56.67562,0.492126,53.45696,0.492126,56.67562,0.984252,53.45696,0.984252,48.00864,0.492126,44.78998,0.492126,48.00864,0.984252,44.78998,0.984252,38.54775,0.492126,35.3291,0.492126,38.54775,0.984252,35.3291,0.984252,28.45484,0.492126,25.23619,0.492126,28.45484,0.984252,25.23619,0.984252,17.9026,0.492126,14.68394,0.492126,17.9026,0.984252,14.68394,0.984252,7.071573,0.492126,3.852915,0.492126,7.071573,0.984252,3.852915,0.984252,-7.071573,0.492126,-7.071573,0.984252,-3.852915,0.492126,-3.852915,0.984252,-17.9026,0.492126,-17.9026,0.984252,-14.68394,0.492126,-14.68394,0.984252,-28.45484,0.492126,-28.45484,0.984252,-25.23619,0.492126,-25.23619,0.984252,-38.54775,0.492126,-38.54775,0.984252,-35.3291,0.492126,-35.3291,0.984252,-48.00864,0.492126,-48.00864,0.984252,-44.78998,0.492126,-44.78998,0.984252,-56.67562,0.492126,-56.67562,0.984252,-53.45696,0.492126,-53.45696,0.984252,61.18174,0.984252,61.18174,0.492126,48.95084,0.984252,48.95084,0.492126,52.51476,0.984252,52.51476,0.492126,40.28386,0.984252,40.28386,0.492126,43.05387,0.984252,43.05387,0.492126,30.82298,0.984252,30.82298,0.492126,32.96096,0.984252,32.96096,0.492126,20.73006,0.984252,20.73006,0.492126,22.40872,0.984252,22.40872,0.492126,10.17782,0.984252,10.17782,0.492126,11.57769,0.984252,11.57769,0.492126,-0.6532064,0.984252,-0.6532064,0.492126,-11.57769,0.492126,-11.57769,0.984252,0.6532064,0.492126,0.6532064,0.984252,-22.40872,0.492126,-22.40872,0.984252,-10.17782,0.492126,-10.17782,0.984252,-32.96096,0.492126,-32.96096,0.984252,-20.73006,0.492126,-20.73006,0.984252,-43.05387,0.492126,-43.05387,0.984252,-30.82298,0.492126,-30.82298,0.984252,-52.51476,0.492126,-52.51476,0.984252,-40.28386,0.492126,-40.28386,0.984252,-61.18174,0.492126,-61.18174,0.984252,-48.95084,0.492126,-48.95084,0.984252,30.82298,17.98998,30.59123,21.66014,43.05387,17.98998,43.28562,21.66014,-32.96096,13.96249,-33.19271,17.63265,-20.73006,13.96249,-20.49832,17.63265,10.17782,11.2386,9.946077,14.90876,22.40872,11.2386,22.64046,14.90876,-11.57769,9.8649,-11.80944,13.53506,0.6532064,9.8649,0.8849498,13.53506,20.73006,13.96249,20.49832,17.63265,32.96096,13.96249,33.19271,17.63265,-0.6532064,9.8649,-0.8849498,13.53506,11.57769,9.8649,11.80944,13.53506,40.28386,23.25214,40.05212,26.9223,52.51476,23.25214,52.7465,26.9223,-43.05387,17.98998,-43.28562,21.66014,-30.82298,17.98998,-30.59123,21.66014,48.95084,29.65894,48.71909,33.3291,61.18174,29.65894,61.41348,33.3291,-52.51476,23.25214,-52.7465,26.9223,-40.28386,23.25214,-40.05212,26.9223,-61.41348,33.3291,-48.71909,33.3291,-61.18174,29.65894,-48.95084,29.65894,-59.05512,59.05512,59.05512,59.05512,-59.05512,37.99213,-46.38791,37.16187,-33.93744,34.68532,-21.91675,30.60485,-10.5315,24.99026,0.02350089,17.93764,9.567646,9.567646,17.93764,0.02350089,24.99026,-10.5315,30.60485,-21.91675,34.68532,-33.93744,37.16187,-46.38791,37.99213,-59.05512,59.05512,-59.05512,-22.40872,11.2386,-22.64046,14.90876,-10.17782,11.2386,-9.946077,14.90876,30.90551,0.984252,30.90551,0.492126,-30.90551,0.984252,-30.90551,0.492126,34.44882,0.492126,30.90551,0.492126,-30.90551,0.492126,30.90551,0.984252,-30.90551,0.984252,59.05512,59.05512,59.05512,34.44882,-59.05512,59.05512,34.44882,-59.05512,59.05512,-34.44882,59.05512,-59.05512,-34.44882,-59.05512,-59.05512,-59.05512,-59.05512,-30.90551,-59.05512,30.90551,-55.38086,-31.14634,-47.3129,30.13589,-51.76946,-31.86469,-48.28273,-33.04827,-44.98032,-34.67685,-35.7716,27.84018,-41.91872,-36.72253,-39.15034,-39.15034,-36.72253,-41.91872,-34.67685,-44.98032,-24.62868,24.05767,-33.04827,-48.28273,-31.86469,-51.76946,-31.14634,-55.38086,-30.90551,-59.05512,30.90551,-59.05512,-14.0748,18.85307,-4.290556,12.31545,4.556653,4.556653,12.31545,-4.290556,18.85307,-14.0748,24.05767,-24.62868,27.84018,-35.7716,30.13589,-47.3129,-59.05512,-30.90551,-55.38086,-31.14634,-59.05512,-34.44882,-55.84335,-34.65933,-52.68654,-35.28726,-51.76946,-31.86469,-49.63869,-36.32186,-48.28273,-33.04827,-46.75197,-37.74544,-44.98032,-34.67685,-44.07575,-39.53363,-41.91872,-36.72253,-41.65584,-41.65584,-39.15034,-39.15034,-39.53363,-44.07575,-37.74544,-46.75197,-36.72253,-41.91872,-36.32186,-49.63869,-34.67685,-44.98032,-35.28726,-52.68654,-34.65933,-55.84335,-33.04827,-48.28273,-34.44882,-59.05512,-30.90551,-59.05512,-31.86469,-51.76946,-31.14634,-55.38086,56.90736,0.984252,56.90736,0.492126,53.22522,0.984252,53.22522,0.492126,48.24038,0.984252,48.24038,0.492126,44.55824,0.984252,44.55824,0.492126,38.7795,0.984252,38.7795,0.492126,35.09735,0.984252,35.09735,0.492126,28.68659,0.984252,28.68659,0.492126,25.00444,0.984252,25.00444,0.492126,18.13434,0.984252,18.13434,0.492126,14.4522,0.984252,14.4522,0.492126,7.303316,0.984252,7.303316,0.492126,3.621171,0.984252,3.621171,0.492126,-7.303316,0.492126,-7.303316,0.984252,-3.621171,0.492126,-3.621171,0.984252,-18.13434,0.492126,-18.13434,0.984252,-14.4522,0.492126,-14.4522,0.984252,-28.68659,0.492126,-28.68659,0.984252,-25.00444,0.492126,-25.00444,0.984252,-38.7795,0.492126,-38.7795,0.984252,-35.09735,0.492126,-35.09735,0.984252,-48.24038,0.492126,-48.24038,0.984252,-44.55824,0.492126,-44.55824,0.984252,-56.90736,0.492126,-56.90736,0.984252,-53.22522,0.492126,-53.22522,0.984252,-59.05512,30.90551,-59.05512,34.44882,-47.3129,30.13589,-46.85041,33.64888,-35.7716,27.84018,-34.85452,31.26275,-24.62868,24.05767,-23.27271,27.33125,-14.0748,18.85307,-12.30315,21.92167,-4.290556,12.31545,-2.133528,15.12654,4.556653,4.556653,7.06215,7.06215,12.31545,-4.290556,15.12654,-2.133528,18.85307,-14.0748,21.92167,-12.30315,24.05767,-24.62868,27.33125,-23.27271,27.84018,-35.7716,31.26275,-34.85452,30.13589,-47.3129,30.90551,-59.05512,34.44882,-59.05512,33.64888,-46.85041,60.94999,0.492126,49.18258,0.492126,60.94999,0.984252,49.18258,0.984252,52.28302,0.492126,40.5156,0.492126,52.28302,0.984252,40.5156,0.984252,42.82213,0.492126,31.05472,0.492126,42.82213,0.984252,31.05472,0.984252,32.72922,0.492126,20.96181,0.492126,32.72922,0.984252,20.96181,0.984252,22.17698,0.492126,10.40956,0.492126,22.17698,0.984252,10.40956,0.984252,11.34595,0.492126,-0.4214631,0.492126,11.34595,0.984252,-0.4214631,0.984252,-11.34595,0.492126,-11.34595,0.984252,0.4214631,0.492126,0.4214631,0.984252,-22.17698,0.492126,-22.17698,0.984252,-10.40956,0.492126,-10.40956,0.984252,-32.72922,0.492126,-32.72922,0.984252,-20.96181,0.492126,-20.96181,0.984252,-42.82213,0.492126,-42.82213,0.984252,-31.05472,0.492126,-31.05472,0.984252,-52.28302,0.492126,-52.28302,0.984252,-40.5156,0.492126,-40.5156,0.984252,-60.94999,0.492126,-60.94999,0.984252,-49.18258,0.492126,-49.18258,0.984252 + } + UVIndex: *846 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,60,58,62,61,58,63,62,58,64,63,58,65,64,58,66,65,58,67,66,58,68,67,58,69,68,58,70,72,71,73,71,72,71,73,74,75,74,73,76,75,73,77,79,78,80,78,79,80,79,81,79,82,81,83,81,82,84,86,85,87,85,86,88,87,86,89,88,86,90,92,91,93,91,92,94,91,93,95,94,93,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,237,239,241,237,240,242,237,241,243,237,242,244,237,243,245,237,244,246,237,245,247,237,246,248,237,247,249,237,248,250,237,249,251,237,250,252,254,253,255,253,254,256,258,257,258,259,257,259,87,257,85,87,259,87,75,257,260,257,75,90,91,83,81,83,91,261,81,91,262,81,261,263,262,261,264,262,263,265,267,266,268,266,267,266,268,269,270,269,268,271,268,267,272,271,267,273,275,274,276,274,275,277,276,275,278,276,277,279,276,278,280,276,279,281,280,279,282,280,281,283,280,282,284,280,283,285,280,284,286,285,284,287,285,286,288,285,287,289,285,288,290,285,289,291,285,290,292,291,290,293,292,290,294,293,290,295,294,290,296,295,290,297,296,290,298,297,290,299,301,300,302,300,301,303,300,302,304,300,303,305,304,303,306,304,305,307,306,305,308,306,307,309,308,307,310,308,309,311,310,309,312,310,311,313,312,311,314,312,313,315,312,314,316,315,314,317,315,316,318,317,316,319,317,318,320,317,319,321,320,319,322,320,321,323,320,322,324,323,322,325,327,326,328,326,327,329,331,330,332,330,331,333,335,334,336,334,335,337,339,338,340,338,339,341,343,342,344,342,343,345,347,346,348,346,347,349,351,350,352,350,351,353,355,354,356,354,355,357,359,358,360,358,359,361,363,362,364,362,363,365,367,366,368,366,367,369,371,370,372,370,371,373,375,374,376,374,375,377,376,375,378,376,377,379,378,377,380,378,379,381,380,379,382,380,381,383,382,381,384,382,383,385,384,383,386,384,385,387,386,385,388,386,387,389,388,387,390,388,389,391,390,389,392,390,391,393,392,391,394,392,393,395,394,393,396,394,395,397,394,396,398,394,397,399,401,400,402,400,401,403,405,404,406,404,405,407,409,408,410,408,409,411,413,412,414,412,413,415,417,416,418,416,417,419,421,420,422,420,421,423,425,424,426,424,425,427,429,428,430,428,429,431,433,432,434,432,433,435,437,436,438,436,437,439,441,440,442,440,441,443,445,444,446,444,445 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *282 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roadBend, Model::RootNode + C: "OO",5152408218523898092,0 + + ;Geometry::, Model::Mesh roadBend + C: "OO",4925488598132076874,5152408218523898092 + + ;Material::stoneDark, Model::Mesh roadBend + C: "OO",7174,5152408218523898092 + + ;Material::stone, Model::Mesh roadBend + C: "OO",7184,5152408218523898092 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadBend.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadBend.fbx.import new file mode 100644 index 0000000..1a9c91b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadBend.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bnckaxeqlau8k" +path="res://.godot/imported/roadBend.fbx-cfd6320c242feb2f77874b8cea76e6e9.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roadBend.fbx" +dest_files=["res://.godot/imported/roadBend.fbx-cfd6320c242feb2f77874b8cea76e6e9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCorner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCorner.fbx new file mode 100644 index 0000000..5c24e77 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCorner.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 907 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roadCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roadCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5354094131072752551, "Model::roadCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5350711745107197842, "Geometry::", "Mesh" { + Vertices: *717 { + a: 5,0.5,0.35,4.301685,0.5,0.30423,5,0.5,-5,-0.35,0.5,-5,3.615318,0.5,0.1677032,2.952644,0.5,-0.0572445,2.325,0.5,-0.3667641,1.743126,0.5,-0.7555596,1.216979,0.5,-1.216979,0.7555596,0.5,-1.743126,0.3667641,0.5,-2.325,0.0572445,0.5,-2.952644,-0.1677032,0.5,-3.615318,-0.30423,0.5,-4.301685,2.952644,0.5,-0.0572445,2.608229,0.25,0.7742471,2.325,0.5,-0.3667641,1.875,0.25,0.4126588,3.615318,0.5,0.1677032,3.382381,0.25,1.037036,2.952644,0.5,-0.0572445,2.608229,0.25,0.7742471,-0.30423,0.5,-4.301685,-1.19653,0.25,-4.184211,-0.35,0.5,-5,-1.25,0.25,-5,-0.1677032,0.5,-3.615318,-1.037036,0.25,-3.382381,-0.30423,0.5,-4.301685,-1.19653,0.25,-4.184211,0.0572445,0.5,-2.952644,-0.7742471,0.25,-2.608229,-0.1677032,0.5,-3.615318,-1.037036,0.25,-3.382381,0.3667641,0.5,-2.325,-0.4126588,0.25,-1.875,0.0572445,0.5,-2.952644,-0.7742471,0.25,-2.608229,2.325,0.5,-0.3667641,1.875,0.25,0.4126588,1.743126,0.5,-0.7555596,1.195241,0.25,-0.04154162,5,0.5,0.35,5,0.25,1.25,4.301685,0.5,0.30423,4.184211,0.25,1.19653,1.216979,0.5,-1.216979,0.5805826,0.25,-0.5805826,0.7555596,0.5,-1.743126,0.04154162,0.25,-1.195241,1.743126,0.5,-0.7555596,1.195241,0.25,-0.04154162,1.216979,0.5,-1.216979,0.5805826,0.25,-0.5805826,0.7555596,0.5,-1.743126,0.04154162,0.25,-1.195241,0.3667641,0.5,-2.325,-0.4126588,0.25,-1.875,4.301685,0.5,0.30423,4.184211,0.25,1.19653,3.615318,0.5,0.1677032,3.382381,0.25,1.037036,5,0.5,-5,5,1.271649E-17,-5,5,0.5,0.35,5,0,1.25,5,0.25,1.25,5,0.125,1.25,5,1.271649E-17,-5,5,0.5,-5,-1.25,1.456095E-17,-5,-1.25,0.125,-5,-1.25,0.25,-5,-0.35,0.5,-5,4.184211,0.125,1.19653,4.184211,0.25,1.19653,5,0.125,1.25,5,0.25,1.25,3.382381,0.125,1.037036,3.382381,0.25,1.037036,4.184211,0.125,1.19653,4.184211,0.25,1.19653,2.608229,0.125,0.7742471,2.608229,0.25,0.7742471,3.382381,0.125,1.037036,3.382381,0.25,1.037036,1.875,0.125,0.4126588,1.875,0.25,0.4126588,2.608229,0.125,0.7742471,2.608229,0.25,0.7742471,1.195241,0.125,-0.04154162,1.195241,0.25,-0.04154162,1.875,0.125,0.4126588,1.875,0.25,0.4126588,0.5805826,0.125,-0.5805826,0.5805826,0.25,-0.5805826,1.195241,0.125,-0.04154162,1.195241,0.25,-0.04154162,0.04154162,0.125,-1.195241,0.04154162,0.25,-1.195241,0.5805826,0.125,-0.5805826,0.5805826,0.25,-0.5805826,-0.4126588,0.125,-1.875,-0.4126588,0.25,-1.875,0.04154162,0.125,-1.195241,0.04154162,0.25,-1.195241,-0.7742471,0.125,-2.608229,-0.7742471,0.25,-2.608229,-0.4126588,0.125,-1.875,-0.4126588,0.25,-1.875,-1.037036,0.125,-3.382381,-1.037036,0.25,-3.382381,-0.7742471,0.125,-2.608229,-0.7742471,0.25,-2.608229,-1.19653,0.125,-4.184211,-1.19653,0.25,-4.184211,-1.037036,0.125,-3.382381,-1.037036,0.25,-3.382381,-1.25,0.125,-5,-1.25,0.25,-5,-1.19653,0.125,-4.184211,-1.19653,0.25,-4.184211,-5,1.599552E-17,-5,-5,0.25,-5,-5,1.599552E-17,5,-5,0.25,5,5,1.384366E-17,1.481861,5,1.384366E-17,1.381861,5,1.435601E-17,5,5,1.271649E-17,-5,5,0,1.25,-5,1.599552E-17,5,-1.25,1.456095E-17,-5,-5,1.599552E-17,-5,-2.15,0.25,-5,-5,0.25,-5,-2.15,0.125,-5,-5,1.599552E-17,-5,5,1.435601E-17,5,-5,1.599552E-17,5,5,0.25,5,-5,0.25,5,5,0.25,2.15,5,0.25,5,4.066738,0.25,2.088831,-5,0.25,5,3.149444,0.25,1.90637,2.263813,0.25,1.605739,1.425,0.25,1.192082,0.6473558,0.25,0.6724764,-0.05581348,0.25,0.05581348,-0.6724764,0.25,-0.6473558,-1.192082,0.25,-1.425,-1.605739,0.25,-2.263813,-1.90637,0.25,-3.149444,-2.088831,0.25,-4.066738,-2.15,0.25,-5,-5,0.25,-5,5,0.25,2.15,5,0.125,2.15,5,0.25,5,5,1.435601E-17,5,5,1.384366E-17,1.481861,5,1.384366E-17,1.381861,5,0.125,1.25,5,0.125,2.15,4.066738,0.125,2.088831,5,0.125,1.25,4.184211,0.125,1.19653,3.382381,0.125,1.037036,3.149444,0.125,1.90637,2.608229,0.125,0.7742471,2.263813,0.125,1.605739,1.875,0.125,0.4126588,1.425,0.125,1.192082,1.195241,0.125,-0.04154162,0.6473558,0.125,0.6724764,0.5805826,0.125,-0.5805826,-0.05581348,0.125,0.05581348,0.04154162,0.125,-1.195241,-0.4126588,0.125,-1.875,-0.6724764,0.125,-0.6473558,-0.7742471,0.125,-2.608229,-1.192082,0.125,-1.425,-1.037036,0.125,-3.382381,-1.19653,0.125,-4.184211,-1.605739,0.125,-2.263813,-1.25,0.125,-5,-2.15,0.125,-5,-1.90637,0.125,-3.149444,-2.088831,0.125,-4.066738,-2.15,0.25,-5,-2.15,0.125,-5,-2.088831,0.25,-4.066738,-2.088831,0.125,-4.066738,-2.088831,0.25,-4.066738,-2.088831,0.125,-4.066738,-1.90637,0.25,-3.149444,-1.90637,0.125,-3.149444,-1.90637,0.25,-3.149444,-1.90637,0.125,-3.149444,-1.605739,0.25,-2.263813,-1.605739,0.125,-2.263813,-1.605739,0.25,-2.263813,-1.605739,0.125,-2.263813,-1.192082,0.25,-1.425,-1.192082,0.125,-1.425,-1.192082,0.25,-1.425,-1.192082,0.125,-1.425,-0.6724764,0.25,-0.6473558,-0.6724764,0.125,-0.6473558,-0.6724764,0.25,-0.6473558,-0.6724764,0.125,-0.6473558,-0.05581348,0.25,0.05581348,-0.05581348,0.125,0.05581348,-0.05581348,0.125,0.05581348,0.6473558,0.125,0.6724764,-0.05581348,0.25,0.05581348,0.6473558,0.25,0.6724764,0.6473558,0.125,0.6724764,1.425,0.125,1.192082,0.6473558,0.25,0.6724764,1.425,0.25,1.192082,1.425,0.125,1.192082,2.263813,0.125,1.605739,1.425,0.25,1.192082,2.263813,0.25,1.605739,2.263813,0.125,1.605739,3.149444,0.125,1.90637,2.263813,0.25,1.605739,3.149444,0.25,1.90637,3.149444,0.125,1.90637,4.066738,0.125,2.088831,3.149444,0.25,1.90637,4.066738,0.25,2.088831,4.066738,0.125,2.088831,5,0.125,2.15,4.066738,0.25,2.088831,5,0.25,2.15 + } + PolygonVertexIndex: *450 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,5,-4,7,6,-4,8,7,-4,9,8,-4,10,9,-4,11,10,-4,12,11,-4,13,12,-4,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,65,-65,67,65,-67,68,70,-70,71,69,-71,72,69,-72,73,69,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,128,129,-128,130,127,-130,131,129,-129,132,129,-132,133,132,-132,134,136,-136,137,135,-137,136,71,-138,70,137,-72,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,145,-145,147,145,-147,148,145,-148,149,145,-149,150,145,-150,151,145,-151,152,145,-152,153,145,-153,154,145,-154,155,145,-155,156,145,-156,157,145,-157,158,160,-160,160,161,-160,161,162,-160,162,163,-160,163,65,-160,164,159,-66,165,167,-167,168,166,-168,169,166,-169,170,166,-170,171,170,-170,172,170,-172,173,172,-172,174,172,-174,175,174,-174,176,174,-176,177,176,-176,178,176,-178,179,178,-178,180,178,-180,181,178,-181,182,181,-181,183,181,-183,184,183,-183,185,183,-185,186,183,-186,187,186,-186,188,186,-188,189,186,-189,190,189,-189,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,233,-233,234,232,-234,235,237,-237,238,236,-238 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1350 { + a: -0.009213432,0.990028,0.1405698,0,1,0,-0.01834882,0.9900699,0.1393731,-0.1405698,0.990028,0.009213432,-0.01834882,0.9900699,0.1393731,0,1,0,-0.03638368,0.9900699,0.1357858,-0.01834882,0.9900699,0.1393731,-0.1405698,0.990028,0.009213432,-0.05379601,0.9900699,0.1298751,-0.03638368,0.9900699,0.1357858,-0.1405698,0.990028,0.009213432,-0.07028788,0.9900699,0.1217422,-0.05379601,0.9900699,0.1298751,-0.1405698,0.990028,0.009213432,-0.0855771,0.9900699,0.1115263,-0.07028788,0.9900699,0.1217422,-0.1405698,0.990028,0.009213432,-0.09940208,0.9900699,0.09940208,-0.0855771,0.9900699,0.1115263,-0.1405698,0.990028,0.009213432,-0.1115263,0.9900699,0.0855771,-0.09940208,0.9900699,0.09940208,-0.1405698,0.990028,0.009213432,-0.1217422,0.9900699,0.07028788,-0.1115263,0.9900699,0.0855771,-0.1405698,0.990028,0.009213432,-0.1298751,0.9900699,0.05379601,-0.1217422,0.9900699,0.07028788,-0.1405698,0.990028,0.009213432,-0.1357858,0.9900699,0.03638368,-0.1298751,0.9900699,0.05379601,-0.1405698,0.990028,0.009213432,-0.1393731,0.9900699,0.01834882,-0.1357858,0.9900699,0.03638368,-0.1405698,0.990028,0.009213432,-0.05379601,0.9900699,0.1298751,-0.07028788,0.9900699,0.1217422,-0.1024229,0.963518,0.2472707,-0.1338219,0.963518,0.2317864,-0.1024229,0.963518,0.2472707,-0.07028788,0.9900699,0.1217422,-0.03638368,0.9900699,0.1357858,-0.05379601,0.9900699,0.1298751,-0.06927133,0.963518,0.2585241,-0.1024229,0.963518,0.2472707,-0.06927133,0.963518,0.2585241,-0.05379601,0.9900699,0.1298751,-0.1393731,0.9900699,0.01834882,-0.1405698,0.990028,0.009213432,-0.2653541,0.963518,0.03493454,-0.2676027,0.9633697,0.01753961,-0.2653541,0.963518,0.03493454,-0.1405698,0.990028,0.009213432,-0.1357858,0.9900699,0.03638368,-0.1393731,0.9900699,0.01834882,-0.2585241,0.963518,0.06927133,-0.2653541,0.963518,0.03493454,-0.2585241,0.963518,0.06927133,-0.1393731,0.9900699,0.01834882,-0.1298751,0.9900699,0.05379601,-0.1357858,0.9900699,0.03638368,-0.2472707,0.963518,0.1024229,-0.2585241,0.963518,0.06927133,-0.2472707,0.963518,0.1024229,-0.1357858,0.9900699,0.03638368,-0.1217422,0.9900699,0.07028788,-0.1298751,0.9900699,0.05379601,-0.2317864,0.963518,0.1338219,-0.2472707,0.963518,0.1024229,-0.2317864,0.963518,0.1338219,-0.1298751,0.9900699,0.05379601,-0.07028788,0.9900699,0.1217422,-0.0855771,0.9900699,0.1115263,-0.1338219,0.963518,0.2317864,-0.1629313,0.963518,0.2123362,-0.1338219,0.963518,0.2317864,-0.0855771,0.9900699,0.1115263,-0.009213432,0.990028,0.1405698,-0.01834882,0.9900699,0.1393731,-0.01753961,0.9633697,0.2676027,-0.03493454,0.963518,0.2653541,-0.01753961,0.9633697,0.2676027,-0.01834882,0.9900699,0.1393731,-0.09940208,0.9900699,0.09940208,-0.1115263,0.9900699,0.0855771,-0.1892528,0.963518,0.1892528,-0.2123362,0.963518,0.1629313,-0.1892528,0.963518,0.1892528,-0.1115263,0.9900699,0.0855771,-0.0855771,0.9900699,0.1115263,-0.09940208,0.9900699,0.09940208,-0.1629313,0.963518,0.2123362,-0.1892528,0.963518,0.1892528,-0.1629313,0.963518,0.2123362,-0.09940208,0.9900699,0.09940208,-0.1115263,0.9900699,0.0855771,-0.1217422,0.9900699,0.07028788,-0.2123362,0.963518,0.1629313,-0.2317864,0.963518,0.1338219,-0.2123362,0.963518,0.1629313,-0.1217422,0.9900699,0.07028788,-0.01834882,0.9900699,0.1393731,-0.03638368,0.9900699,0.1357858,-0.03493454,0.963518,0.2653541,-0.06927133,0.963518,0.2585241,-0.03493454,0.963518,0.2653541,-0.03638368,0.9900699,0.1357858,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.06540313,0,-0.9978589,0.06540313,0,-0.9978589,0.06540313,0,-0.9978589,0.1305262,0,-0.9914449 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *478 { + a: -19.68504,1.377953,-16.93577,1.197756,-19.68504,-19.68504,1.377953,-19.68504,-14.23354,0.6602487,-11.62458,-0.225372,-9.153543,-1.443953,-6.862702,-2.974644,-4.791255,-4.791255,-2.974644,-6.862702,-1.443953,-9.153543,-0.225372,-11.62458,0.6602487,-14.23354,1.197756,-16.93577,10.32609,5.675722,10.55783,2.005563,7.57092,5.675722,7.339176,2.005563,13.69039,4.333228,13.92214,0.6630682,10.93522,4.333228,10.70348,0.6630682,-16.97784,0.4435745,-16.7461,-3.226585,-19.73302,0.4435745,-19.96476,-3.226585,-14.08885,2.579175,-13.85711,-1.090985,-16.84402,2.579175,-17.07577,-1.090985,-10.93522,4.333228,-10.70348,0.6630682,-13.69039,4.333228,-13.92214,0.6630682,-7.57092,5.675722,-7.339176,2.005563,-10.32609,5.675722,-10.55783,2.005563,6.808676,6.583687,7.040419,2.913527,4.053504,6.583687,3.821761,2.913527,19.73302,0.4435745,19.96476,-3.226585,16.97784,0.4435745,16.7461,-3.226585,-0.4431623,7.041587,-0.2114189,3.371427,-3.198334,7.041587,-3.430077,3.371427,3.198334,7.041587,3.430077,3.371427,0.4431623,7.041587,0.2114189,3.371427,-4.053504,6.583687,-3.821761,2.913527,-6.808676,6.583687,-7.040419,2.913527,16.84402,2.579175,17.07577,-1.090985,14.08885,2.579175,13.85711,-1.090985,19.68504,1.968504,19.68504,1.856568E-11,-1.377953,1.968504,-4.92126,9.893007E-12,-4.92126,0.984252,-4.92126,0.492126,-19.68504,3.406347E-12,-19.68504,1.968504,4.92126,5.732656E-17,4.92126,0.492126,4.92126,0.984252,1.377953,1.968504,16.7461,0.492126,16.7461,0.984252,19.96476,0.492126,19.96476,0.984252,13.85711,0.492126,13.85711,0.984252,17.07577,0.492126,17.07577,0.984252,10.70348,0.492126,10.70348,0.984252,13.92214,0.492126,13.92214,0.984252,7.339176,0.492126,7.339176,0.984252,10.55783,0.492126,10.55783,0.984252,3.821761,0.492126,3.821761,0.984252,7.040419,0.492126,7.040419,0.984252,0.2114189,0.492126,0.2114189,0.984252,3.430077,0.492126,3.430077,0.984252,-3.430077,0.492126,-3.430077,0.984252,-0.2114189,0.492126,-0.2114189,0.984252,-7.040419,0.492126,-7.040419,0.984252,-3.821761,0.492126,-3.821761,0.984252,-10.55783,0.492126,-10.55783,0.984252,-7.339176,0.492126,-7.339176,0.984252,-13.92214,0.492126,-13.92214,0.984252,-10.70348,0.492126,-10.70348,0.984252,-17.07577,0.492126,-17.07577,0.984252,-13.85711,0.492126,-13.85711,0.984252,-19.96476,0.492126,-19.96476,0.984252,-16.7461,0.492126,-16.7461,0.984252,-19.68504,5.813341E-17,-19.68504,0.984252,19.68504,5.813341E-17,19.68504,0.984252,19.68504,5.834097,19.68504,5.440397,19.68504,19.68504,19.68504,-19.68504,19.68504,4.92126,-19.68504,19.68504,-4.92126,-19.68504,-19.68504,-19.68504,8.464567,0.984252,19.68504,0.984252,8.464567,0.492126,19.68504,6.29745E-17,19.68504,5.490602E-17,-19.68504,6.13608E-17,19.68504,0.984252,-19.68504,0.984252,-19.68504,8.464567,-19.68504,19.68504,-16.01078,8.223743,19.68504,19.68504,-12.39939,7.505393,-8.912651,6.321806,-5.610236,4.693235,-2.548645,2.647545,0.2197381,0.2197381,2.647545,-2.548645,4.693235,-5.610236,6.321806,-8.912651,7.505393,-12.39939,8.223743,-16.01078,8.464567,-19.68504,19.68504,-19.68504,-8.464567,0.984252,-8.464567,0.492126,-19.68504,0.984252,-19.68504,9.893064E-12,-5.834097,9.893061E-12,-5.440397,9.893061E-12,-4.92126,0.492126,-19.68504,8.464567,-16.01078,8.223743,-19.68504,4.92126,-16.47327,4.71075,-13.31646,4.08282,-12.39939,7.505393,-10.26862,3.048217,-8.912651,6.321806,-7.38189,1.624641,-5.610236,4.693235,-4.705674,-0.1635497,-2.548645,2.647545,-2.285758,-2.285758,0.2197381,0.2197381,-0.1635497,-4.705674,1.624641,-7.38189,2.647545,-2.548645,3.048217,-10.26862,4.693235,-5.610236,4.08282,-13.31646,4.71075,-16.47327,6.321806,-8.912651,4.92126,-19.68504,8.464567,-19.68504,7.505393,-12.39939,8.223743,-16.01078,20.1965,0.984252,20.1965,0.492126,16.51436,0.984252,16.51436,0.492126,17.30751,0.984252,17.30751,0.492126,13.62536,0.984252,13.62536,0.492126,14.15388,0.984252,14.15388,0.492126,10.47174,0.984252,10.47174,0.492126,10.78958,0.984252,10.78958,0.492126,7.107433,0.984252,7.107433,0.492126,7.272162,0.984252,7.272162,0.492126,3.590018,0.984252,3.590018,0.492126,3.66182,0.984252,3.66182,0.492126,-0.02032446,0.984252,-0.02032446,0.492126,0.02032446,0.492126,-3.66182,0.492126,0.02032446,0.984252,-3.66182,0.984252,-3.590018,0.492126,-7.272162,0.492126,-3.590018,0.984252,-7.272162,0.984252,-7.107433,0.492126,-10.78958,0.492126,-7.107433,0.984252,-10.78958,0.984252,-10.47174,0.492126,-14.15388,0.492126,-10.47174,0.984252,-14.15388,0.984252,-13.62536,0.492126,-17.30751,0.492126,-13.62536,0.984252,-17.30751,0.984252,-16.51436,0.492126,-20.1965,0.492126,-16.51436,0.984252,-20.1965,0.984252 + } + UVIndex: *450 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,5,3,7,6,3,8,7,3,9,8,3,10,9,3,11,10,3,12,11,3,13,12,3,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,65,64,67,65,66,68,70,69,71,69,70,72,69,71,73,69,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,128,129,127,130,127,129,131,129,128,132,129,131,133,132,131,134,136,135,137,135,136,136,71,137,70,137,71,138,140,139,141,139,140,142,144,143,145,143,144,146,145,144,147,145,146,148,145,147,149,145,148,150,145,149,151,145,150,152,145,151,153,145,152,154,145,153,155,145,154,156,145,155,157,145,156,158,160,159,160,161,159,161,162,159,162,163,159,163,65,159,164,159,65,165,167,166,168,166,167,169,166,168,170,166,169,171,170,169,172,170,171,173,172,171,174,172,173,175,174,173,176,174,175,177,176,175,178,176,177,179,178,177,180,178,179,181,178,180,182,181,180,183,181,182,184,183,182,185,183,184,186,183,185,187,186,185,188,186,187,189,186,188,190,189,188,191,193,192,194,192,193,195,197,196,198,196,197,199,201,200,202,200,201,203,205,204,206,204,205,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,218,216,217,219,221,220,222,220,221,223,225,224,226,224,225,227,229,228,230,228,229,231,233,232,234,232,233,235,237,236,238,236,237 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *150 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roadCorner, Model::RootNode + C: "OO",5354094131072752551,0 + + ;Geometry::, Model::Mesh roadCorner + C: "OO",5350711745107197842,5354094131072752551 + + ;Material::stoneDark, Model::Mesh roadCorner + C: "OO",7174,5354094131072752551 + + ;Material::stone, Model::Mesh roadCorner + C: "OO",7184,5354094131072752551 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCorner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCorner.fbx.import new file mode 100644 index 0000000..9e25ee3 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ca53wm6rjastu" +path="res://.godot/imported/roadCorner.fbx-d6c04d412ee6c12f380b43145a83a90a.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCorner.fbx" +dest_files=["res://.godot/imported/roadCorner.fbx-d6c04d412ee6c12f380b43145a83a90a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCornerInner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCornerInner.fbx new file mode 100644 index 0000000..fce2502 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCornerInner.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 44 + Millisecond: 967 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roadCornerInner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roadCornerInner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5239235352979618560, "Model::roadCornerInner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5579636271967004735, "Geometry::", "Mesh" { + Vertices: *705 { + a: 5,0,-5,-5,0,-5,5,0,5,-1.25,0,5,-5,0,5,-5,0,1.25,-5,0,1.25,-5,0.125,1.25,-5,0,5,-5,0.125,2.15,-5,0.25,2.15,-5,0.25,5,-1.25,0,5,-5,0,5,-1.25,0.125,5,-2.15,0.125,5,-5,0.25,5,-2.15,0.25,5,-2.15,0.25,5,-5,0.25,5,-2.174382,0.25,4.628,-2.247111,0.25,4.262366,-2.366943,0.25,3.909352,-2.531827,0.25,3.575,-2.738943,0.25,3.26503,-2.984746,0.25,2.984746,-3.26503,0.25,2.738943,-3.575,0.25,2.531827,-3.909352,0.25,2.366943,-4.262366,0.25,2.247111,-4.628,0.25,2.174382,-5,0.25,2.15,-1.25,0.125,5,-2.15,0.125,5,-1.282082,0.125,4.510527,-1.377778,0.125,4.029428,-1.535452,0.125,3.564937,-1.752405,0.125,3.125,-2.024925,0.125,2.717145,-2.174382,0.125,4.628,-2.34835,0.125,2.34835,-2.247111,0.125,4.262366,-2.366943,0.125,3.909352,-2.717145,0.125,2.024925,-2.531827,0.125,3.575,-2.738943,0.125,3.26503,-3.125,0.125,1.752405,-2.984746,0.125,2.984746,-3.26503,0.125,2.738943,-3.564937,0.125,1.535452,-3.575,0.125,2.531827,-4.029428,0.125,1.377778,-3.909352,0.125,2.366943,-4.262366,0.125,2.247111,-4.510527,0.125,1.282082,-4.628,0.125,2.174382,-5,0.125,1.25,-5,0.125,2.15,-4.628,0.125,2.174382,-4.628,0.25,2.174382,-5,0.125,2.15,-5,0.25,2.15,-4.262366,0.125,2.247111,-4.262366,0.25,2.247111,-4.628,0.125,2.174382,-4.628,0.25,2.174382,-3.909352,0.125,2.366943,-3.909352,0.25,2.366943,-4.262366,0.125,2.247111,-4.262366,0.25,2.247111,-3.909352,0.125,2.366943,-3.575,0.125,2.531827,-3.909352,0.25,2.366943,-3.575,0.25,2.531827,-3.575,0.125,2.531827,-3.26503,0.125,2.738943,-3.575,0.25,2.531827,-3.26503,0.25,2.738943,-3.26503,0.125,2.738943,-2.984746,0.125,2.984746,-3.26503,0.25,2.738943,-2.984746,0.25,2.984746,-2.984746,0.25,2.984746,-2.984746,0.125,2.984746,-2.738943,0.25,3.26503,-2.738943,0.125,3.26503,-2.738943,0.25,3.26503,-2.738943,0.125,3.26503,-2.531827,0.25,3.575,-2.531827,0.125,3.575,-2.531827,0.25,3.575,-2.531827,0.125,3.575,-2.366943,0.25,3.909352,-2.366943,0.125,3.909352,-2.366943,0.25,3.909352,-2.366943,0.125,3.909352,-2.247111,0.25,4.262366,-2.247111,0.125,4.262366,-2.247111,0.25,4.262366,-2.247111,0.125,4.262366,-2.174382,0.25,4.628,-2.174382,0.125,4.628,-2.174382,0.25,4.628,-2.174382,0.125,4.628,-2.15,0.25,5,-2.15,0.125,5,-5,0,-5,5,0,-5,-5,0.5,-5,5,0.5,-5,5,0.5,-5,5,0,-5,5,0.5,5,5,0,5,-0.35,0.5,5,-1.25,0.25,5,-0.3897814,0.5,4.393053,-1.282082,0.25,4.510527,-2.169259,0.5,1.310907,-2.717145,0.25,2.024925,-2.675,0.5,0.9729818,-3.125,0.25,1.752405,-3.796491,0.5,0.5084449,-4.029428,0.25,1.377778,-4.393053,0.5,0.3897814,-4.510527,0.25,1.282082,-0.5084449,0.5,3.796491,-1.377778,0.25,4.029428,-0.7039601,0.5,3.220522,-1.535452,0.25,3.564937,-4.393053,0.5,0.3897814,-4.510527,0.25,1.282082,-5,0.5,0.35,-5,0.25,1.25,-1.310907,0.5,2.169259,-2.024925,0.25,2.717145,-1.711953,0.5,1.711953,-2.34835,0.25,2.34835,-0.7039601,0.5,3.220522,-1.535452,0.25,3.564937,-0.9729818,0.5,2.675,-1.752405,0.25,3.125,-1.711953,0.5,1.711953,-2.34835,0.25,2.34835,-2.169259,0.5,1.310907,-2.717145,0.25,2.024925,-0.9729818,0.5,2.675,-1.752405,0.25,3.125,-1.310907,0.5,2.169259,-2.024925,0.25,2.717145,-0.3897814,0.5,4.393053,-1.282082,0.25,4.510527,-0.5084449,0.5,3.796491,-1.377778,0.25,4.029428,-2.675,0.5,0.9729818,-3.125,0.25,1.752405,-3.220522,0.5,0.7039601,-3.564937,0.25,1.535452,-3.220522,0.5,0.7039601,-3.564937,0.25,1.535452,-3.796491,0.5,0.5084449,-4.029428,0.25,1.377778,-5,0,-5,-5,0.5,-5,-5,0.5,0.35,-5,0.25,1.25,-5,0.125,1.25,5,0.5,-5,5,0.5,5,-5,0.5,-5,-0.9729818,0.5,2.675,-1.310907,0.5,2.169259,-0.7039601,0.5,3.220522,-0.5084449,0.5,3.796491,-0.3897814,0.5,4.393053,-0.35,0.5,5,-1.711953,0.5,1.711953,-2.169259,0.5,1.310907,-2.675,0.5,0.9729818,-3.220522,0.5,0.7039601,-3.796491,0.5,0.5084449,-4.393053,0.5,0.3897814,-5,0.5,0.35,5,0,5,5,0.5,5,-1.25,0.25,5,-0.35,0.5,5,-1.282082,0.125,4.510527,-1.282082,0.25,4.510527,-1.25,0.125,5,-1.25,0.25,5,-1.377778,0.125,4.029428,-1.377778,0.25,4.029428,-1.282082,0.125,4.510527,-1.282082,0.25,4.510527,-1.535452,0.125,3.564937,-1.535452,0.25,3.564937,-1.377778,0.125,4.029428,-1.377778,0.25,4.029428,-1.752405,0.125,3.125,-1.752405,0.25,3.125,-1.535452,0.125,3.564937,-1.535452,0.25,3.564937,-2.024925,0.125,2.717145,-2.024925,0.25,2.717145,-1.752405,0.125,3.125,-1.752405,0.25,3.125,-2.34835,0.125,2.34835,-2.34835,0.25,2.34835,-2.024925,0.125,2.717145,-2.024925,0.25,2.717145,-2.34835,0.125,2.34835,-2.717145,0.125,2.024925,-2.34835,0.25,2.34835,-2.717145,0.25,2.024925,-2.717145,0.125,2.024925,-3.125,0.125,1.752405,-2.717145,0.25,2.024925,-3.125,0.25,1.752405,-3.125,0.125,1.752405,-3.564937,0.125,1.535452,-3.125,0.25,1.752405,-3.564937,0.25,1.535452,-3.564937,0.125,1.535452,-4.029428,0.125,1.377778,-3.564937,0.25,1.535452,-4.029428,0.25,1.377778,-4.029428,0.125,1.377778,-4.510527,0.125,1.282082,-4.029428,0.25,1.377778,-4.510527,0.25,1.282082,-4.510527,0.125,1.282082,-5,0.125,1.25,-4.510527,0.25,1.282082,-5,0.25,1.25 + } + PolygonVertexIndex: *438 { + a: 0,2,-2,3,1,-3,4,1,-4,5,1,-5,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,14,-14,15,13,-15,16,13,-16,17,16,-16,18,20,-20,21,19,-21,22,19,-22,23,19,-23,24,19,-24,25,19,-25,26,19,-26,27,19,-27,28,19,-28,29,19,-29,30,19,-30,31,19,-31,32,34,-34,35,33,-35,36,33,-36,37,33,-37,38,33,-38,39,33,-39,40,39,-39,41,39,-41,42,41,-41,43,42,-41,44,42,-44,45,44,-44,46,45,-44,47,45,-47,48,47,-47,49,48,-47,50,48,-50,51,50,-50,52,50,-52,53,52,-52,54,53,-52,55,53,-55,56,55,-55,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,6,-164,164,163,-7,165,164,-7,166,165,-7,167,169,-169,170,168,-170,171,170,-170,172,168,-171,173,168,-173,174,168,-174,175,168,-175,176,171,-170,177,176,-170,178,177,-170,179,178,-170,180,179,-170,181,180,-170,182,181,-170,183,184,-13,14,12,-185,185,14,-185,186,185,-185,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,233,-233,234,232,-234 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1314 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.1305262,0,-0.9914449,0.0654031,0,-0.9978589,0.1305262,0,-0.9914449,0.0654031,0,-0.9978589,0.1305262,0,-0.9914449,0.0654031,0,-0.9978589,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.258819,0,-0.9659258,0.1305262,0,-0.9914449,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.258819,0,-0.9659258,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.3826834,0,-0.9238795,0.5,0,-0.8660254,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.5,0,-0.8660254,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087614,0,-0.7933533,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7071068,0,-0.7071068,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.7933533,0,-0.6087614,0.8660254,0,-0.5,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.8660254,0,-0.5,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9238795,0,-0.3826834,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9659258,0,-0.258819,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0.9914449,0,-0.1305262,0.9978589,0,-0.06540313,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.1295219,0.9915403,0.008489313,-0.1284184,0.991576,0.01690661,-0.2676027,0.9633697,0.01753961,-0.2653541,0.963518,0.03493454,-0.2676027,0.9633697,0.01753961,-0.1284184,0.991576,0.01690661,-0.07885076,0.991576,0.1027603,-0.06476327,0.991576,0.1121733,-0.1629313,0.963518,0.2123362,-0.1338219,0.963518,0.2317864,-0.1629313,0.963518,0.2123362,-0.06476327,0.991576,0.1121733,-0.03352393,0.991576,0.125113,-0.01690661,0.991576,0.1284184,-0.06927133,0.963518,0.2585241,-0.03493454,0.963518,0.2653541,-0.06927133,0.963518,0.2585241,-0.01690661,0.991576,0.1284184,-0.125113,0.991576,0.03352393,-0.1196669,0.991576,0.04956767,-0.2585241,0.963518,0.06927133,-0.2472707,0.963518,0.1024229,-0.2585241,0.963518,0.06927133,-0.1196669,0.991576,0.04956767,-0.01690661,0.991576,0.1284184,-0.008489313,0.9915403,0.1295219,-0.03493454,0.963518,0.2653541,-0.01753961,0.9633697,0.2676027,-0.03493454,0.963518,0.2653541,-0.008489313,0.9915403,0.1295219,-0.1027603,0.991576,0.07885076,-0.09158909,0.991576,0.09158909,-0.2123362,0.963518,0.1629313,-0.1892528,0.963518,0.1892528,-0.2123362,0.963518,0.1629313,-0.09158909,0.991576,0.09158909,-0.1196669,0.991576,0.04956767,-0.1121733,0.991576,0.06476327,-0.2472707,0.963518,0.1024229,-0.2317864,0.963518,0.1338219,-0.2472707,0.963518,0.1024229,-0.1121733,0.991576,0.06476327,-0.09158909,0.991576,0.09158909,-0.07885076,0.991576,0.1027603,-0.1892528,0.963518,0.1892528,-0.1629313,0.963518,0.2123362,-0.1892528,0.963518,0.1892528,-0.07885076,0.991576,0.1027603,-0.1121733,0.991576,0.06476327,-0.1027603,0.991576,0.07885076,-0.2317864,0.963518,0.1338219,-0.2123362,0.963518,0.1629313,-0.2317864,0.963518,0.1338219,-0.1027603,0.991576,0.07885076,-0.1284184,0.991576,0.01690661,-0.125113,0.991576,0.03352393,-0.2653541,0.963518,0.03493454,-0.2585241,0.963518,0.06927133,-0.2653541,0.963518,0.03493454,-0.125113,0.991576,0.03352393,-0.06476327,0.991576,0.1121733,-0.04956767,0.991576,0.1196669,-0.1338219,0.963518,0.2317864,-0.1024229,0.963518,0.2472707,-0.1338219,0.963518,0.2317864,-0.04956767,0.991576,0.1196669,-0.04956767,0.991576,0.1196669,-0.03352393,0.991576,0.125113,-0.1024229,0.963518,0.2472707,-0.06927133,0.963518,0.2585241,-0.1024229,0.963518,0.2472707,-0.03352393,0.991576,0.125113,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,-0.1121733,0.991576,0.06476327,0,1,0,0,1,0,-0.1027603,0.991576,0.07885076,-0.1121733,0.991576,0.06476327,0,1,0,-0.1196669,0.991576,0.04956767,0,1,0,-0.1121733,0.991576,0.06476327,-0.125113,0.991576,0.03352393,0,1,0,-0.1196669,0.991576,0.04956767,-0.1284184,0.991576,0.01690661,0,1,0,-0.125113,0.991576,0.03352393,-0.1295219,0.9915403,0.008489313,0,1,0,-0.1284184,0.991576,0.01690661,-0.09158909,0.991576,0.09158909,-0.1027603,0.991576,0.07885076,0,1,0,-0.07885076,0.991576,0.1027603,-0.09158909,0.991576,0.09158909,0,1,0,-0.06476327,0.991576,0.1121733,-0.07885076,0.991576,0.1027603,0,1,0,-0.04956767,0.991576,0.1196669,-0.06476327,0.991576,0.1121733,0,1,0,-0.03352393,0.991576,0.125113,-0.04956767,0.991576,0.1196669,0,1,0,-0.01690661,0.991576,0.1284184,-0.03352393,0.991576,0.125113,0,1,0,-0.008489313,0.9915403,0.1295219,-0.01690661,0.991576,0.1284184,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9914449,0,0.1305262,-0.9978589,0,0.06540313,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9659258,0,0.258819,-0.9914449,0,0.1305262,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.9238795,0,0.3826834,-0.9659258,0,0.258819,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.8660254,0,0.5,-0.9238795,0,0.3826834,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7933533,0,0.6087614,-0.8660254,0,0.5,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7933533,0,0.6087614,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.7071068,0,0.7071068,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6087614,0,0.7933533,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.5,0,0.8660254,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.3826834,0,0.9238795,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.258819,0,0.9659258,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305262,0,0.9914449 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *470 { + a: 19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-4.92126,19.68504,-19.68504,19.68504,-19.68504,4.92126,4.92126,2.675686E-06,4.92126,0.4921287,19.68504,2.675686E-06,8.464567,0.4921287,8.464567,0.9842547,19.68504,0.9842547,-4.92126,1.600864E-10,-19.68504,1.600864E-10,-4.92126,0.492126,-8.464567,0.492126,-19.68504,0.984252,-8.464567,0.984252,8.464567,19.68504,19.68504,19.68504,8.560559,18.22047,8.846895,16.78097,9.318675,15.39115,9.967825,14.0748,10.78324,12.85445,11.75097,11.75097,12.85445,10.78324,14.0748,9.967825,15.39115,9.318674,16.78097,8.846895,18.22047,8.560559,19.68504,8.464567,4.92126,19.68504,8.464567,19.68504,5.047566,17.75798,5.424324,15.86389,6.045085,14.03519,6.899231,12.30315,7.972146,10.69742,8.560559,18.22047,9.245471,9.245471,8.846895,16.78097,9.318675,15.39115,10.69742,7.972146,9.967825,14.0748,10.78324,12.85445,12.30315,6.899231,11.75097,11.75097,12.85445,10.78324,14.03519,6.045085,14.0748,9.967825,15.86389,5.424324,15.39115,9.318674,16.78097,8.846895,17.75798,5.047566,18.22047,8.560559,19.68504,4.92126,19.68504,8.464567,17.62158,0.492126,17.62158,0.984252,19.08928,0.492126,19.08928,0.984252,14.73258,0.492126,14.73258,0.984252,16.20029,0.492126,16.20029,0.984252,11.57895,0.492126,11.57895,0.984252,13.04666,0.492126,13.04666,0.984252,9.68236,0.492126,8.214652,0.492126,9.68236,0.984252,8.214652,0.984252,6.164945,0.492126,4.697237,0.492126,6.164945,0.984252,4.697237,0.984252,2.554602,0.492126,1.086894,0.492126,2.554602,0.984252,1.086894,0.984252,-1.086893,0.984252,-1.086893,0.492126,-2.554601,0.984252,-2.554601,0.492126,-4.697236,0.984252,-4.697236,0.492126,-6.164944,0.984252,-6.164944,0.492126,-8.214651,0.984252,-8.214651,0.492126,-9.682359,0.984252,-9.682359,0.492126,-11.57895,0.984252,-11.57895,0.492126,-13.04666,0.984252,-13.04666,0.492126,-14.73258,0.984252,-14.73258,0.492126,-16.20029,0.984252,-16.20029,0.492126,-17.62157,0.984252,-17.62157,0.492126,-19.08928,0.984252,-19.08928,0.492126,19.68504,0,-19.68504,0,19.68504,1.968504,-19.68504,1.968504,19.68504,1.968504,19.68504,0,-19.68504,1.968504,-19.68504,0,19.55277,-2.037031,19.32103,-5.707191,17.15809,-2.037031,17.38983,-5.707191,-4.233749,-8.177144,-4.465493,-11.8473,-6.628431,-8.177144,-6.396688,-11.8473,-14.2691,-4.172631,-14.50084,-7.842791,-16.66378,-4.172631,-16.43203,-7.842791,13.51015,-5.926685,13.27841,-9.596845,11.11547,-5.926685,11.34721,-9.596845,-17.15809,-2.037031,-17.38983,-5.707191,-19.55277,-2.037031,-19.32103,-5.707191,3.018089,-8.635044,2.786345,-12.3052,0.6234071,-8.635044,0.8551505,-12.3052,10.14585,-7.269179,9.914103,-10.93934,7.751164,-7.269179,7.982908,-10.93934,-0.6234071,-8.635044,-0.8551505,-12.3052,-3.018089,-8.635044,-2.786345,-12.3052,6.628431,-8.177144,6.396688,-11.8473,4.233749,-8.177144,4.465493,-11.8473,16.66378,-4.172631,16.43203,-7.842791,14.2691,-4.172631,14.50084,-7.842791,-7.751164,-7.269179,-7.982908,-10.93934,-10.14585,-7.269179,-9.914103,-10.93934,-11.11547,-5.926685,-11.34721,-9.596845,-13.51015,-5.926685,-13.27841,-9.596845,-19.68504,-3.017391E-11,-19.68504,1.968504,1.377953,1.968504,4.92126,0.984252,4.92126,0.492126,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,3.830637,10.5315,5.161051,8.540391,2.771497,12.67922,2.001752,14.94682,1.534572,17.29548,1.377953,19.68504,6.739974,6.739974,8.540391,5.161051,10.5315,3.830637,12.67922,2.771497,14.94682,2.001752,17.29548,1.534572,19.68504,1.377953,19.68504,4.773979E-11,19.68504,1.968504,-4.92126,0.984252,-1.377953,1.968504,17.38983,0.492126,17.38983,0.984252,19.32103,0.492126,19.32103,0.984252,14.50084,0.492126,14.50084,0.984252,16.43203,0.492126,16.43203,0.984252,11.34721,0.492126,11.34721,0.984252,13.27841,0.492126,13.27841,0.984252,7.982908,0.492126,7.982908,0.984252,9.914103,0.492126,9.914103,0.984252,4.465493,0.492126,4.465493,0.984252,6.396688,0.492126,6.396688,0.984252,0.8551505,0.492126,0.8551505,0.984252,2.786345,0.492126,2.786345,0.984252,-0.8551505,0.492126,-2.786345,0.492126,-0.8551505,0.984252,-2.786345,0.984252,-4.465493,0.492126,-6.396688,0.492126,-4.465493,0.984252,-6.396688,0.984252,-7.982908,0.492126,-9.914103,0.492126,-7.982908,0.984252,-9.914103,0.984252,-11.34721,0.492126,-13.27841,0.492126,-11.34721,0.984252,-13.27841,0.984252,-14.50084,0.492126,-16.43203,0.492126,-14.50084,0.984252,-16.43203,0.984252,-17.38983,0.492126,-19.32103,0.492126,-17.38983,0.984252,-19.32103,0.984252 + } + UVIndex: *438 { + a: 0,2,1,3,1,2,4,1,3,5,1,4,6,8,7,9,7,8,10,9,8,11,10,8,12,14,13,15,13,14,16,13,15,17,16,15,18,20,19,21,19,20,22,19,21,23,19,22,24,19,23,25,19,24,26,19,25,27,19,26,28,19,27,29,19,28,30,19,29,31,19,30,32,34,33,35,33,34,36,33,35,37,33,36,38,33,37,39,33,38,40,39,38,41,39,40,42,41,40,43,42,40,44,42,43,45,44,43,46,45,43,47,45,46,48,47,46,49,48,46,50,48,49,51,50,49,52,50,51,53,52,51,54,53,51,55,53,54,56,55,54,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,6,163,164,163,6,165,164,6,166,165,6,167,169,168,170,168,169,171,170,169,172,168,170,173,168,172,174,168,173,175,168,174,176,171,169,177,176,169,178,177,169,179,178,169,180,179,169,181,180,169,182,181,169,183,184,12,14,12,184,185,14,184,186,185,184,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,201,200,202,200,201,203,205,204,206,204,205,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,218,216,217,219,221,220,222,220,221,223,225,224,226,224,225,227,229,228,230,228,229,231,233,232,234,232,233 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *146 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roadCornerInner, Model::RootNode + C: "OO",5239235352979618560,0 + + ;Geometry::, Model::Mesh roadCornerInner + C: "OO",5579636271967004735,5239235352979618560 + + ;Material::stone, Model::Mesh roadCornerInner + C: "OO",7184,5239235352979618560 + + ;Material::stoneDark, Model::Mesh roadCornerInner + C: "OO",7174,5239235352979618560 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCornerInner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCornerInner.fbx.import new file mode 100644 index 0000000..96a4c9a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCornerInner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bbfa70iordm6v" +path="res://.godot/imported/roadCornerInner.fbx-8eb867371637dcc2005ac1427000ea16.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCornerInner.fbx" +dest_files=["res://.godot/imported/roadCornerInner.fbx-8eb867371637dcc2005ac1427000ea16.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurb.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurb.fbx new file mode 100644 index 0000000..f9c43c0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurb.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 4 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roadCurb.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roadCurb.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5104763794105719152, "Model::roadCurb", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5037453873021901469, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,0.5,-5,5,0,-5,5,0.5,5,5,0,5,5,0,5,-5,0,5,5,0.5,5,-5,0.5,5,-5,0,-5,-5,0.5,-5,-5,0,5,-5,0.5,5,-5,0,-5,5,0,-5,-5,0.5,-5,5,0.5,-5,5,0.5,-5,5,0.5,5,-5,0.5,-5,-5,0.5,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 19.68504,1.968504,19.68504,0,-19.68504,1.968504,-19.68504,0,19.68504,0,-19.68504,0,19.68504,1.968504,-19.68504,1.968504,-19.68504,0,-19.68504,1.968504,19.68504,0,19.68504,1.968504,19.68504,0,-19.68504,0,19.68504,1.968504,-19.68504,1.968504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roadCurb, Model::RootNode + C: "OO",5104763794105719152,0 + + ;Geometry::, Model::Mesh roadCurb + C: "OO",5037453873021901469,5104763794105719152 + + ;Material::stoneDark, Model::Mesh roadCurb + C: "OO",7174,5104763794105719152 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurb.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurb.fbx.import new file mode 100644 index 0000000..82998fc --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurb.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ca71gmi2rablc" +path="res://.godot/imported/roadCurb.fbx-c6c700f57ebad5fcd0f411081f01328c.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurb.fbx" +dest_files=["res://.godot/imported/roadCurb.fbx-c6c700f57ebad5fcd0f411081f01328c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurbEnd.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurbEnd.fbx new file mode 100644 index 0000000..47d257b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurbEnd.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 44 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roadCurbEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roadCurbEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5705484277435969132, "Model::roadCurbEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5021710356562787167, "Geometry::", "Mesh" { + Vertices: *183 { + a: -2.598881E-13,0.25,2.15,5,0.125,2.15,5,0.25,2.15,5,0,5,-5,0,5,5,0.25,5,-5,0.25,5,5,0.25,2.15,5,0.125,2.15,5,0.25,5,5,0,5,5,-1.639515E-18,1.25,5,0.125,1.25,5,0,-5,6.641585E-13,0,-5,5,-1.639515E-18,1.25,5,0,5,-5,0,5,-5,0,-5,-5,0,-5,-5,0.25,-5,-5,0,5,-5,0.25,5,-5,0,-5,6.641585E-13,0,-5,-5,0.25,-5,6.064056E-13,0.25,-5,6.064056E-13,0.25,-5,-2.598881E-13,0.25,1.25,-5,0.25,-5,-2.598881E-13,0.25,2.15,-5,0.25,5,5,0.25,2.15,5,0.25,5,5,0.125,1.25,5,0.125,2.15,-2.598881E-13,0.25,1.25,-2.598881E-13,0.25,2.15,5,0.25,1.25,5,0.125,1.25,-2.598881E-13,0.25,1.25,5,0.25,1.25,-2.598881E-13,0.25,1.25,5,0.5,0.35,-2.396746E-12,0.5,0.35,5,0.5,-5,5,0.5,0.35,6.064056E-13,0.5,-5,-2.396746E-12,0.5,0.35,5,0.5,-5,5,0,-5,5,0.5,0.35,5,0.25,1.25,5,0.125,1.25,5,0,-5,5,0.5,-5,6.064056E-13,0.5,-5,6.064056E-13,0.25,-5,6.064056E-13,0.5,-5,-2.598881E-13,0.25,1.25,-2.396746E-12,0.5,0.35 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,9,10,-9,10,11,-9,12,8,-12,13,15,-15,16,14,-16,17,14,-17,18,14,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,29,31,-31,30,31,-33,33,32,-32,34,36,-36,37,35,-37,38,40,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,11,50,-52,52,11,-52,53,11,-53,24,26,-55,55,54,-27,56,55,-27,57,59,-59,60,58,-60 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0.008331309,0.9999653,0,0.006248414,0.9999804,0,0.008331309,0.9999653,0,0,1,0,0,1,0,0,1,0,0.006248414,0.9999804,0,0.006248414,0.9999804,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.02499219,0.9996877,0,0.008331309,0.9999653,0,0.02499219,0.9996877,0,0.006248414,0.9999804,0,0.02499219,0.9996877,0,0.008331309,0.9999653,0,0,0,1,0,0,1,0,0,1,0,0.963518,0.2676439,0,0.9908375,0.1350594,0,0.963518,0.2676439,0,0.9908375,0.1350594,0,0.963518,0.2676439,0,0.9908375,0.1350594,0,1,0,0,1,0,0,0.9908375,0.1350594,0,0.9908375,0.1350594,0,0.9908375,0.1350594,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *122 { + a: 1.023182E-12,0.984252,-19.68504,0.492126,-19.68504,0.984252,19.68504,0,-19.68504,0,19.68504,0.984252,-19.68504,0.984252,-8.464567,0.9842474,-8.464567,0.4921214,-19.68504,0.9842474,-19.68504,-4.575175E-06,-4.92126,-4.575175E-06,-4.92126,0.4921214,19.68504,-19.68504,2.614797E-12,-19.68504,19.68504,4.92126,19.68504,19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,0,-19.68504,0.984252,19.68504,0,19.68504,0.984252,19.68504,0,3.946624E-14,0,19.68504,0.984252,2.668399E-13,0.984252,-2.387424E-12,-19.68504,1.023182E-12,4.92126,19.68504,-19.68504,1.023182E-12,8.464567,19.68504,19.68504,-19.68504,8.464567,-19.68504,19.68504,-4.921258,-19.66659,-8.464566,-19.66659,-4.92126,0.02459832,-8.464567,0.02459811,19.68504,0.984252,19.68504,0.492126,-3.694822E-13,0.984252,19.68504,-4.478293,-3.695494E-13,-4.478293,19.68504,-0.8008242,-9.252991E-12,-0.8008242,-19.68504,-19.68504,-19.68504,1.377953,-2.387424E-12,-19.68504,9.436008E-12,1.377953,19.68504,1.968504,19.68504,-4.690296E-11,-1.377953,1.968504,-4.92126,0.984252,-4.92126,0.492126,-19.68504,0,-19.68504,1.968504,2.668399E-13,1.968504,-19.68504,0.984252,-19.68504,1.968504,4.92126,0.984252,1.377953,1.968504 + } + UVIndex: *108 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,9,10,8,10,11,8,12,8,11,13,15,14,16,14,15,17,14,16,18,14,17,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,29,31,30,30,31,32,33,32,31,34,36,35,37,35,36,38,40,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,11,50,51,52,11,51,53,11,52,24,26,54,55,54,26,56,55,26,57,59,58,60,58,59 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roadCurbEnd, Model::RootNode + C: "OO",5705484277435969132,0 + + ;Geometry::, Model::Mesh roadCurbEnd + C: "OO",5021710356562787167,5705484277435969132 + + ;Material::stone, Model::Mesh roadCurbEnd + C: "OO",7184,5705484277435969132 + + ;Material::stoneDark, Model::Mesh roadCurbEnd + C: "OO",7174,5705484277435969132 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurbEnd.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurbEnd.fbx.import new file mode 100644 index 0000000..9ae19de --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurbEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://btalectx2mrym" +path="res://.godot/imported/roadCurbEnd.fbx-d1ef087f07579847ab64f70fc9e6087e.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roadCurbEnd.fbx" +dest_files=["res://.godot/imported/roadCurbEnd.fbx-d1ef087f07579847ab64f70fc9e6087e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdge.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdge.fbx new file mode 100644 index 0000000..449728c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdge.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 73 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roadEdge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roadEdge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5124269140331397721, "Model::roadEdge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5523122993919646113, "Geometry::", "Mesh" { + Vertices: *174 { + a: -5,1.639515E-18,-5,-5,0.25,-5,-5,1.639515E-18,5,-5,0.25,5,-1.25,8.197577E-19,5,-1.25,0,-5,-5,1.639515E-18,5,-5,1.639515E-18,-5,-2.15,0.25,-5,-2.15,0.25,5,-5,0.25,-5,-5,0.25,5,-1.25,8.197577E-19,5,-5,1.639515E-18,5,-1.25,0.125,5,-2.15,0.125,5,-5,0.25,5,-2.15,0.25,5,-2.15,0.25,-5,-5,0.25,-5,-2.15,0.125,-5,-5,1.639515E-18,-5,-1.25,0.125,-5,-1.25,0,-5,-1.25,0.125,-5,-1.25,0.125,5,-2.15,0.125,-5,-2.15,0.125,5,-2.15,0.25,-5,-2.15,0.125,-5,-2.15,0.25,5,-2.15,0.125,5,5,1.639515E-18,-5,5,0.5,-5,-1.25,0.25,-5,-0.35,0.5,-5,5,1.639515E-18,5,5,1.639515E-18,-5,5,0.5,-5,5,0.5,5,-0.35,0.5,-5,-0.35,0.5,5,-0.35,0.5,-5,-0.35,0.5,5,-1.25,0.25,-5,-1.25,0.25,5,5,0.5,-5,5,1.639515E-18,-5,5,0.5,5,5,1.639515E-18,5,5,1.639515E-18,5,5,0.5,5,-1.25,0.25,5,-0.35,0.5,5,-1.25,0.125,-5,-1.25,0.25,-5,-1.25,0.125,5,-1.25,0.25,5 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,13,-16,17,16,-16,18,20,-20,21,19,-21,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,23,22,-33,33,32,-23,34,33,-23,35,33,-35,36,4,-38,5,37,-5,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,12,50,-15,51,14,-51,52,14,-52,53,52,-52,54,56,-56,57,55,-57 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,-0.1350594,0.9908375,0,0,1,0,-0.1350594,0.9908375,0,0,1,0,-0.1350594,0.9908375,0,-0.1350594,0.9908375,0,-0.2676439,0.963518,0,-0.1350594,0.9908375,0,-0.2676439,0.963518,0,-0.1350594,0.9908375,0,-0.2676439,0.963518,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *116 { + a: -19.68504,6.454785E-18,-19.68504,0.984252,19.68504,6.454785E-18,19.68504,0.984252,-4.92126,19.68504,-4.92126,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,8.464567,-19.68504,8.464567,19.68504,19.68504,-19.68504,19.68504,19.68504,-4.92126,3.227393E-18,-19.68504,6.454785E-18,-4.92126,0.492126,-8.464567,0.492126,-19.68504,0.984252,-8.464567,0.984252,8.464567,0.984252,19.68504,0.984252,8.464567,0.492126,19.68504,6.454785E-18,4.92126,0.492126,4.92126,0,4.92126,-19.68504,4.92126,19.68504,8.464567,-19.68504,8.464567,19.68504,19.68504,0.984252,19.68504,0.492126,-19.68504,0.984252,-19.68504,0.492126,-19.68504,6.454785E-18,-19.68504,1.968504,4.92126,0.984252,1.377953,1.968504,19.68504,19.68504,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,19.68504,1.377953,-19.68504,1.377953,19.68504,-19.68504,-0.8008242,19.68504,-0.8008242,-19.68504,-4.478293,19.68504,-4.478293,19.68504,1.968504,19.68504,6.454785E-18,-19.68504,1.968504,-19.68504,6.454785E-18,19.68504,6.454785E-18,19.68504,1.968504,-4.92126,0.984252,-1.377953,1.968504,-19.68504,0.492126,-19.68504,0.984252,19.68504,0.492126,19.68504,0.984252 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,13,15,17,16,15,18,20,19,21,19,20,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,23,22,32,33,32,22,34,33,22,35,33,34,36,4,37,5,37,4,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,12,50,14,51,14,50,52,14,51,53,52,51,54,56,55,57,55,56 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roadEdge, Model::RootNode + C: "OO",5124269140331397721,0 + + ;Geometry::, Model::Mesh roadEdge + C: "OO",5523122993919646113,5124269140331397721 + + ;Material::stone, Model::Mesh roadEdge + C: "OO",7184,5124269140331397721 + + ;Material::stoneDark, Model::Mesh roadEdge + C: "OO",7174,5124269140331397721 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdge.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdge.fbx.import new file mode 100644 index 0000000..c471262 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cbirkhl4ota0f" +path="res://.godot/imported/roadEdge.fbx-a1e7b1e146b77116911b8e43b63e45b7.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdge.fbx" +dest_files=["res://.godot/imported/roadEdge.fbx-a1e7b1e146b77116911b8e43b63e45b7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdgeSlope.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdgeSlope.fbx new file mode 100644 index 0000000..6ff7cac --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdgeSlope.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 113 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roadEdgeSlope.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roadEdgeSlope.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5172931631882632149, "Model::roadEdgeSlope", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4808900428638443636, "Geometry::", "Mesh" { + Vertices: *177 { + a: -5,1.639515E-18,-5,-5,0.25,-5,-5,-1.639515E-18,5,-5,2.25,5,-2.15,0.25,-5,-2.15,2.25,5,-5,0.25,-5,-5,2.25,5,-1.25,-1.639515E-18,5,-5,-1.639515E-18,5,-1.25,2,5,-5,2.25,5,-2.15,2.125,5,-1.25,2.125,5,-2.15,2.25,5,-2.15,0.25,-5,-5,0.25,-5,-2.15,0.125,-5,-5,1.639515E-18,-5,-1.25,0.125,-5,-1.25,0,-5,-1.25,0.125,-5,-1.25,2.125,5,-2.15,0.125,-5,-2.15,2.125,5,-2.15,0.25,-5,-2.15,0.125,-5,-2.15,2.25,5,-2.15,2.125,5,5,-1.639515E-18,5,5,1.639515E-18,-5,-1.25,-1.639515E-18,5,-1.25,0,-5,-5,-1.639515E-18,5,-5,1.639515E-18,-5,5,1.639515E-18,-5,5,0.5,-5,-1.25,0.25,-5,-0.35,0.5,-5,5,0.5,-5,5,2.5,5,-0.35,0.5,-5,-0.35,2.5,5,-0.35,0.5,-5,-0.35,2.5,5,-1.25,0.25,-5,-1.25,2.25,5,5,0.5,-5,5,1.639515E-18,-5,5,2.5,5,5,-1.639515E-18,5,5,-1.639515E-18,5,5,2.5,5,-1.25,2.25,5,-0.35,2.5,5,-1.25,0.125,-5,-1.25,0.25,-5,-1.25,2.125,5,-1.25,2.25,5 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,11,-13,15,17,-17,18,16,-18,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,32,-32,34,32,-34,20,19,-36,36,35,-20,37,36,-20,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,52,-9,10,8,-53,13,10,-53,53,13,-53,54,53,-53,55,57,-57,58,56,-58 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9805807,-0.1961161,-0.1347539,0.971637,-0.1943274,0,0.9805807,-0.1961161,-0.1303205,0.9722182,-0.1944436,0,0.9805807,-0.1961161,-0.1347539,0.971637,-0.1943274,-0.1347539,0.971637,-0.1943274,-0.2628087,0.9461112,-0.1892222,-0.1303205,0.9722182,-0.1944436,-0.2628087,0.9461112,-0.1892222,-0.1303205,0.9722182,-0.1944436,-0.2628087,0.9461112,-0.1892222,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *118 { + a: -19.68504,6.454785E-18,-19.68504,0.984252,19.68504,-6.454785E-18,19.68504,8.858268,8.464567,-19.10974,8.464567,21.04002,19.68504,-19.10974,19.68504,21.04002,-4.92126,-6.454785E-18,-19.68504,-6.454785E-18,-4.92126,7.874016,-19.68504,8.858268,-8.464567,8.366141,-4.92126,8.366141,-8.464567,8.858268,8.464567,0.984252,19.68504,0.984252,8.464567,0.492126,19.68504,6.454785E-18,4.92126,0.492126,4.92126,0,4.92126,-19.20625,4.92126,20.9435,8.464567,-19.20625,8.464567,20.9435,19.68504,0.984252,19.68504,0.492126,-19.68504,8.858268,-19.68504,8.366141,19.68504,19.68504,19.68504,-19.68504,-4.92126,19.68504,-4.92126,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,6.454785E-18,-19.68504,1.968504,4.92126,0.984252,1.377953,1.968504,-19.68504,-18.91671,-19.68504,21.23305,1.377953,-18.91671,1.377953,21.23305,-15.16994,-11.30274,16.78023,13.01165,-13.09957,-14.34204,18.8506,9.972355,19.68504,1.968504,19.68504,6.454785E-18,-19.68504,9.84252,-19.68504,-6.454785E-18,19.68504,-6.454785E-18,19.68504,9.84252,-4.92126,8.858268,-1.377953,9.84252,-19.68504,0.492126,-19.68504,0.984252,19.68504,8.366141,19.68504,8.858268 + } + UVIndex: *114 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,11,12,15,17,16,18,16,17,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,32,31,34,32,33,20,19,35,36,35,19,37,36,19,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,52,8,10,8,52,13,10,52,53,13,52,54,53,52,55,57,56,58,56,57 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roadEdgeSlope, Model::RootNode + C: "OO",5172931631882632149,0 + + ;Geometry::, Model::Mesh roadEdgeSlope + C: "OO",4808900428638443636,5172931631882632149 + + ;Material::stone, Model::Mesh roadEdgeSlope + C: "OO",7184,5172931631882632149 + + ;Material::stoneDark, Model::Mesh roadEdgeSlope + C: "OO",7174,5172931631882632149 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdgeSlope.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdgeSlope.fbx.import new file mode 100644 index 0000000..70b9acf --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdgeSlope.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d3wyn3nmfnwqt" +path="res://.godot/imported/roadEdgeSlope.fbx-78653215f27caf3b1f9383eb8b87d671.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roadEdgeSlope.fbx" +dest_files=["res://.godot/imported/roadEdgeSlope.fbx-78653215f27caf3b1f9383eb8b87d671.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadSlope.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadSlope.fbx new file mode 100644 index 0000000..dec8cb2 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadSlope.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 144 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roadSlope.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roadSlope.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5448016301050338282, "Model::roadSlope", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5515977959620967798, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,0.25,-5,5,0,-5,5,2.25,5,5,0,5,5,0,5,-5,0,5,5,2.25,5,-5,2.25,5,-5,0,-5,-5,0.25,-5,-5,0,5,-5,2.25,5,-5,0,-5,5,0,-5,-5,0.25,-5,5,0.25,-5,5,0.25,-5,5,2.25,5,-5,0.25,-5,-5,2.25,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 19.68504,0.984252,19.68504,0,-19.68504,8.858268,-19.68504,0,19.68504,2.526374E-13,-19.68504,2.526374E-13,19.68504,8.858268,-19.68504,8.858268,-19.68504,0,-19.68504,0.984252,19.68504,0,19.68504,8.858268,19.68504,0,-19.68504,0,19.68504,0.984252,-19.68504,0.984252,-19.68504,-19.10974,-19.68504,21.04002,19.68504,-19.10974,19.68504,21.04002,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roadSlope, Model::RootNode + C: "OO",5448016301050338282,0 + + ;Geometry::, Model::Mesh roadSlope + C: "OO",5515977959620967798,5448016301050338282 + + ;Material::stone, Model::Mesh roadSlope + C: "OO",7184,5448016301050338282 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadSlope.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadSlope.fbx.import new file mode 100644 index 0000000..9473509 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roadSlope.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ckdp3fclmn5by" +path="res://.godot/imported/roadSlope.fbx-68bc0d8c75147ab63c62cabdceb3941f.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roadSlope.fbx" +dest_files=["res://.godot/imported/roadSlope.fbx-68bc0d8c75147ab63c62cabdceb3941f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockLarge.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockLarge.fbx new file mode 100644 index 0000000..589c540 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockLarge.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 184 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rockLarge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rockLarge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4639475548272057317, "Model::rockLarge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4979977801850600311, "Geometry::", "Mesh" { + Vertices: *558 { + a: 2.064383,7.618666,0.8837507,2.696069,6.03614,0.6169211,2.522673,7.618666,0.8837507,-4.286818,5.256879,-4.819706,-4.611765,0.8722559,-7.033932,-2.713904,5.256879,-5.962495,-3.577095,5.256879,0.4151648,-2.152936,11.628,-1.647598,-2.152936,11.628,0.6764275,-5.887498,2.754605,2.348184,-4.611765,2.754605,4.544727,-7.105953,1.377302,3.573996,3.877368,4.341808,-4.390843,5.578044,1.377302,-5.66622,5.368547,4.341808,-2.484858,3.165923,7.618666,2.86347,4.507641,1.377302,3.835785,2.785353,7.618666,4.034744,-3.684253,2.754605,-0.1663575,-3.896502,2.754605,0.4868761,-5.070474,2.754605,-0.1663575,-4.611765,2.754605,4.544727,-5.887498,2.754605,2.348184,-3.20848,2.754605,5.564274,-2.060857,2.754605,3.780964,-1.407411,2.754605,4.255721,-1.545532,2.754605,2.194956,-0.7435605,7.618666,2.187129,-1.198522,7.618666,3.587358,-1.545532,2.754605,2.194956,-2.060857,2.754605,3.780964,-0.2365619,7.618666,2.555485,-0.7435605,7.618666,2.187129,-0.2365619,11.628,2.068755,-2.152936,11.628,0.6764275,-3.577095,5.256879,0.4151648,-1.545532,2.754605,2.194956,-3.896502,2.754605,0.4868761,3.220777,4.341808,0.4413893,2.975426,4.341808,0.6196474,2.290719,11.628,0.2325782,2.696069,6.03614,0.6169211,2.064383,7.618666,0.8837507,-0.2365619,7.618666,2.555485,-0.2365619,11.628,2.068755,-6.144649,0,-2.955639,-4.793958,5.256879,-3.258888,-4.621714,2.591244E-17,-1.849162,-3.537288,0.92121,-1.286389,-2.843713,5.256879,-1.841952,-2.301125,5.256879,-3.511867,-1.798507,11.628,-2.738418,-2.843713,5.256879,-1.841952,-2.152936,11.628,-1.647598,-3.537288,0.92121,-1.286389,-3.577095,5.256879,0.4151648,-3.684253,2.754605,-0.1663575,-3.896502,2.754605,0.4868761,0.06361895,3.545556,-3.71962,0.366124,4.341808,-3.622956,-0.2765055,5.256879,-3.511867,1.900191,4.341808,-3.622956,1.325383,11.628,-2.738418,-2.301125,5.256879,-3.511867,-1.798507,11.628,-2.738418,-0.2379896,0,-7.247078,0.08313562,0,-6.258757,-1.072762,5.256879,-5.962495,-0.09425815,1.802618,-5.483242,-0.2765055,5.256879,-3.511867,0.06361895,3.545556,-3.71962,1.900191,4.341808,-3.622956,3.220777,4.341808,0.4413893,1.325383,11.628,-2.738418,2.290719,11.628,0.2325782,1.101303,0,6.542861,-0.568953,2.591244E-17,5.32935,1.101303,7.618666,5.258278,-1.407411,2.754605,4.255721,-1.198522,7.618666,3.587358,-2.060857,2.754605,3.780964,-4.621714,2.591244E-17,-1.849162,-3.537288,0.92121,-1.286389,-6.164027,5.182487E-17,-1.849162,-5.070474,2.754605,-0.1663575,-3.684253,2.754605,-0.1663575,-0.2765055,5.256879,-3.511867,-2.301125,5.256879,-3.511867,-1.072762,5.256879,-5.962495,-2.713904,5.256879,-5.962495,-2.843713,5.256879,-1.841952,-4.286818,5.256879,-4.819706,-4.793958,5.256879,-3.258888,-4.750276,0,-7.247078,-0.2379896,0,-7.247078,-4.611765,0.8722559,-7.033932,-1.072762,5.256879,-5.962495,-2.713904,5.256879,-5.962495,-4.750276,0,-7.247078,-4.611765,0.8722559,-7.033932,-6.144649,0,-2.955639,-4.286818,5.256879,-4.819706,-4.793958,5.256879,-3.258888,4.751819,0,3.890606,1.101303,0,6.542861,4.507641,1.377302,3.835785,1.101303,7.618666,5.258278,2.785353,7.618666,4.034744,-0.568953,2.591244E-17,5.32935,-3.20848,5.182487E-17,7.247078,-1.407411,2.754605,4.255721,-3.20848,2.754605,5.564274,3.165923,7.618666,2.86347,2.785353,7.618666,4.034744,2.522673,7.618666,0.8837507,1.101303,7.618666,5.258278,2.064383,7.618666,0.8837507,-0.2365619,7.618666,2.555485,-1.198522,7.618666,3.587358,-0.7435605,7.618666,2.187129,2.696069,6.03614,0.6169211,2.975426,4.341808,0.6196474,2.522673,7.618666,0.8837507,3.274473,4.341808,1.54002,3.165923,7.618666,2.86347,4.342793,7.97052E-20,2.631753,4.751819,0,3.890606,4.507641,1.377302,3.835785,-3.20848,5.182487E-17,7.247078,-7.990655,5.182487E-17,3.772624,-3.20848,2.754605,5.564274,-7.105953,1.377302,3.573996,-4.611765,2.754605,4.544727,-6.164027,5.182487E-17,-1.849162,-5.070474,2.754605,-0.1663575,-7.990655,5.182487E-17,3.772624,-5.887498,2.754605,2.348184,-7.105953,1.377302,3.573996,2.290719,11.628,0.2325782,-0.2365619,11.628,2.068755,1.325383,11.628,-2.738418,-1.798507,11.628,-2.738418,-2.152936,11.628,0.6764275,-2.152936,11.628,-1.647598,4.751819,0,3.890606,4.342793,7.97052E-20,2.631753,1.101303,0,6.542861,0.08313562,0,-6.258757,-0.568953,2.591244E-17,5.32935,5.963098,0,-6.258757,7.990655,0,-0.01857442,-0.2379896,0,-7.247078,-4.750276,0,-7.247078,-3.20848,5.182487E-17,7.247078,-4.621714,2.591244E-17,-1.849162,-6.144649,0,-2.955639,-7.990655,5.182487E-17,3.772624,-6.164027,5.182487E-17,-1.849162,7.990655,0,-0.01857442,4.342793,7.97052E-20,2.631753,6.026616,4.341808,-0.4595288,3.274473,4.341808,1.54002,-0.09425815,1.802618,-5.483242,0.6156256,4.341808,-4.390843,0.06361895,3.545556,-3.71962,0.366124,4.341808,-3.622956,6.026616,4.341808,-0.4595288,3.274473,4.341808,1.54002,5.368547,4.341808,-2.484858,3.877368,4.341808,-4.390843,3.220777,4.341808,0.4413893,2.975426,4.341808,0.6196474,1.900191,4.341808,-3.622956,0.6156256,4.341808,-4.390843,0.366124,4.341808,-3.622956,0.08313562,0,-6.258757,5.963098,0,-6.258757,-0.09425815,1.802618,-5.483242,5.578044,1.377302,-5.66622,3.877368,4.341808,-4.390843,0.6156256,4.341808,-4.390843,5.963098,0,-6.258757,7.990655,0,-0.01857442,5.578044,1.377302,-5.66622,5.368547,4.341808,-2.484858,6.026616,4.341808,-0.4595288 + } + PolygonVertexIndex: *360 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,19,-21,22,21,-21,21,23,-20,23,24,-20,24,23,-26,26,19,-25,27,29,-29,30,28,-30,31,33,-33,33,34,-33,34,35,-33,32,35,-37,37,36,-36,38,40,-40,41,39,-41,42,41,-41,43,42,-41,44,43,-41,45,47,-47,48,46,-48,49,46,-49,50,52,-52,53,51,-53,54,53,-53,55,53,-55,56,55,-55,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,62,-61,64,62,-64,65,67,-67,68,66,-68,69,68,-68,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,82,-85,86,88,-88,89,87,-89,90,87,-90,91,90,-90,92,90,-92,93,95,-95,96,94,-96,97,96,-96,98,100,-100,101,99,-101,102,101,-101,103,105,-105,106,104,-106,107,106,-106,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,115,-115,117,115,-117,118,115,-118,119,118,-118,120,122,-122,123,121,-123,124,123,-123,125,123,-125,126,125,-125,127,126,-125,128,130,-130,131,129,-131,132,131,-131,133,135,-135,136,134,-136,137,136,-136,138,140,-140,141,139,-141,142,139,-142,143,142,-142,144,146,-146,146,147,-146,148,147,-147,147,149,-146,150,145,-150,151,147,-149,152,151,-149,153,152,-149,154,152,-154,155,152,-155,153,156,-155,157,154,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,167,-170,170,171,-168,172,170,-170,173,172,-170,174,172,-174,175,177,-177,178,176,-178,179,178,-178,180,179,-178,181,183,-183,184,182,-184,185,182,-185 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1080 { + a: 0,0.1662632,-0.9860814,0,0.1662632,-0.9860814,0,0.1662632,-0.9860814,-0.5355897,0.4119652,-0.7371759,-0.5355897,0.4119652,-0.7371759,-0.5355897,0.4119652,-0.7371759,-0.9533455,0.1239898,-0.2752431,-0.9759153,0.2181497,0,-0.9697325,0.1559344,-0.1878916,-0.550337,0.7713398,0.319631,-0.550337,0.7713398,0.319631,-0.550337,0.7713398,0.319631,0.6400954,0.5826564,-0.5007887,0.6400954,0.5826564,-0.5007887,0.6400954,0.5826564,-0.5007887,0.9220955,0.2448992,0.299607,0.9220955,0.2448992,0.299607,0.9220955,0.2448992,0.299607,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9396467,0.1544348,-0.3053097,-0.9396467,0.1544348,-0.3053097,-0.9396467,0.1544348,-0.3053097,-0.9396467,0.1544348,-0.3053097,-0.9396467,0.1544348,-0.3053097,-0.9396467,0.1544348,-0.3053097,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,-0.5766253,0.1939398,0.7936566,-0.5766253,0.1939398,0.7936566,-0.5766253,0.1939398,0.7936566,-0.5766253,0.1939398,0.7936566,-0.5766253,0.1939398,0.7936566,-0.5766253,0.1939398,0.7936566,-0.5766253,0.1939398,0.7936566,-0.5766253,0.1939398,0.7936566,-0.5766253,0.1939398,0.7936566,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9697325,0.1559344,-0.1878916,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9697325,0.1559344,-0.1878916,-0.9450901,0.1118372,-0.3070784,-0.9533455,0.1239898,-0.2752431,-0.9697325,0.1559344,-0.1878916,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9533455,0.1239898,-0.2752431,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9533455,0.1239898,-0.2752431,-0.9450901,0.1118372,-0.3070784,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9275539,0.2209382,-0.3013805,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,-0.5823919,0.1351567,0.8015937,0,0.5213225,-0.8533597,0,0.5213225,-0.8533597,0,0.5213225,-0.8533597,0,0.5213225,-0.8533597,0,0.5213225,-0.8533597,0,0.5213225,-0.8533597,0,0.5213225,-0.8533597,0,0.5213225,-0.8533597,0,0.5213225,-0.8533597,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2373779,-0.9714174,0,0.2373779,-0.9714174,0,0.2373779,-0.9714174,0,0.2373779,-0.9714174,0,0.2373779,-0.9714174,0,0.2373779,-0.9714174,0,0.2373779,-0.9714174,0,0.2373779,-0.9714174,0,0.2373779,-0.9714174,-0.9275539,0.2209382,-0.3013805,-0.9275539,0.2209382,-0.3013805,-0.9275539,0.2209382,-0.3013805,-0.9275539,0.2209382,-0.3013805,-0.9275539,0.2209382,-0.3013805,-0.9275539,0.2209382,-0.3013805,-0.9275539,0.2209382,-0.3013805,-0.9275539,0.2209382,-0.3013805,-0.9275539,0.2209382,-0.3013805,0.5823919,0.1351567,0.8015937,0.5823919,0.1351567,0.8015937,0.5823919,0.1351567,0.8015937,0.5823919,0.1351567,0.8015937,0.5823919,0.1351567,0.8015937,0.5823919,0.1351567,0.8015937,0.5823919,0.1351567,0.8015937,0.5823919,0.1351567,0.8015937,0.5823919,0.1351567,0.8015937,0.526941,0.443073,0.7252721,0.526941,0.443073,0.7252721,0.526941,0.443073,0.7252721,0.526941,0.443073,0.7252721,0.526941,0.443073,0.7252721,0.526941,0.443073,0.7252721,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,0.9396467,0.1544348,-0.3053097,-0.526941,0.443073,0.7252721,-0.526941,0.443073,0.7252721,-0.526941,0.443073,0.7252721,-0.526941,0.443073,0.7252721,-0.526941,0.443073,0.7252721,-0.526941,0.443073,0.7252721,-0.526941,0.443073,0.7252721,-0.526941,0.443073,0.7252721,-0.526941,0.443073,0.7252721,-0.8275558,0.4927981,-0.2688892,-0.8275558,0.4927981,-0.2688892,-0.8275558,0.4927981,-0.2688892,-0.8275558,0.4927981,-0.2688892,-0.8275558,0.4927981,-0.2688892,-0.8275558,0.4927981,-0.2688892,-0.8275558,0.4927981,-0.2688892,-0.8275558,0.4927981,-0.2688892,-0.8275558,0.4927981,-0.2688892,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5551224,0.3287106,0.7640604,0.5551224,0.3287106,0.7640604,0.5551224,0.3287106,0.7640604,0.5551224,0.3287106,0.7640604,0.5551224,0.3287106,0.7640604,0.5551224,0.3287106,0.7640604,-0.8833893,0.370455,-0.2870306,-0.8833893,0.370455,-0.2870306,-0.8833893,0.370455,-0.2870306,-0.8833893,0.370455,-0.2870306,-0.8833893,0.370455,-0.2870306,-0.8833893,0.370455,-0.2870306,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0,0.3951948,-0.9185973,0.8833893,0.370455,-0.2870306,0.8833893,0.370455,-0.2870306,0.8833893,0.370455,-0.2870306,0.8833893,0.370455,-0.2870306,0.8833893,0.370455,-0.2870306,0.8833893,0.370455,-0.2870306,0.8833893,0.370455,-0.2870306,0.8833893,0.370455,-0.2870306,0.8833893,0.370455,-0.2870306 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *372 { + a: -8.127493,30.15575,-10.61445,23.83739,-9.931784,30.15575,2.500613,8.447565,-1.588367,-10.49702,-5.153825,8.447565,1.634507,17.12569,-6.486606,42.82788,2.663101,42.82788,-3.646946,-12.13997,6.353595,-12.13997,-1.882944,-20.66016,4.208757,0.6807739,4.037674,-13.68002,-5.318795,0.6807739,-6.870071,25.32512,-8.878388,-0.01894114,-11.71869,25.32512,14.50494,-0.6549506,15.34056,1.916835,19.9625,-0.6549506,18.15656,17.89263,23.17913,9.244818,12.63181,21.90659,8.113612,14.88568,5.540987,16.75481,6.084773,8.641558,9.093922,29.61586,14.89033,29.61586,10.09891,10.23349,16.66437,10.23349,5.160212,29.00203,2.692949,29.00203,4.033863,44.86275,-5.291999,44.86275,-10.43269,19.65892,0.1566956,9.760044,-11.28409,9.760044,9.237091,16.14596,8.043113,16.14596,6.757969,44.96977,7.159642,22.84865,4.530179,29.10904,-6.667161,29.10904,-5.540812,44.96977,-26.41105,-0.9319587,-22.81071,20.16497,-18.99982,-0.9319587,-14.24349,2.765046,-13.32002,20.16497,-10.34999,19.1251,-8.065438,44.36661,-3.437184,19.1251,-3.549862,44.36661,-0.513176,1.947777,5.906411,19.1251,3.859376,9.211434,6.563512,9.211434,-0.2504683,12.09231,-1.441433,15.25018,1.088604,18.87927,-7.481067,15.25018,-5.218045,44.14658,9.059546,18.87927,7.080737,44.14658,27.4249,-1.751091,23.33362,-1.751091,23.6306,19.4697,20.64567,5.525654,13.48594,19.4697,13.85004,12.56149,11.25372,15.69784,-5.571106,15.69784,8.641042,44.56473,-3.65774,44.56473,18.6487,-2.472175,10.52055,-2.472175,15.67603,27.80035,5.365475,8.473158,4.484137,27.80035,2.185535,8.473158,18.19572,-3.795314,13.92633,0.4547239,24.26782,-3.795314,19.9625,8.913161,14.50494,8.913161,1.088604,-13.82625,9.059546,-13.82625,4.223475,-23.47439,10.68466,-23.47439,11.19572,-7.25178,16.87723,-18.97522,18.87385,-12.83027,18.70187,-6.772819,0.936967,-6.772819,18.15656,-3.237697,4.223475,14.53252,10.68466,14.53252,-21.35616,-5.877696,-20.72659,-2.356604,-3.591254,-5.877696,-12.83116,15.34309,-6.369969,15.34309,6.131738,-3.16108,-11.63317,-3.16108,5.480868,2.311586,-8.660495,27.11144,-0.4652175,27.11144,-14.14491,-6.937603,-26.98992,-6.937603,-14.33098,5.159525,-23.09572,5.159525,-12.46426,11.27351,-10.96596,15.88482,-9.931784,3.479333,-4.335838,20.70188,-8.127493,3.479333,0.9313459,10.06096,4.718592,14.12346,2.927404,8.610744,-5.589993,22.03613,-5.940066,15.28453,-6.378133,28.3422,-9.750054,15.28453,-14.57341,28.3422,-15.13757,-2.016764,-20.34874,-2.016764,-19.8464,3.471529,6.551226,-13.51705,-16.7208,-13.51705,2.657022,-1.419923,-14.36258,-7.468488,-4.171939,-1.419923,0.5753215,-12.48246,5.545856,-0.01911457,23.84735,-12.48246,15.95509,-0.01911457,22.02729,-6.250786,-9.018578,0.9156622,0.9313459,8.144705,-5.218045,-10.78117,7.080737,-10.78117,8.476127,2.663101,8.476127,-6.486606,18.70795,15.31735,17.09761,10.36123,4.335838,25.7593,0.3273056,-24.64077,-2.239972,20.98169,23.47676,-24.64077,31.45927,-0.07312765,-0.936967,-28.5318,-18.70187,-28.5318,-12.63181,28.5318,-18.19572,-7.280165,-24.19153,-11.63637,-31.45927,14.85285,-24.26782,-7.280165,25.49407,-6.058839,7.742077,-6.058839,20.25882,12.04067,6.865761,12.04067,-20.41632,3.989955,-17.18968,14.75252,-14.00484,11.37754,-14.01092,14.75252,-23.72684,-1.809169,-12.89163,6.063071,-21.13601,-9.782906,-15.26523,-17.28679,-12.68022,1.737753,-11.71428,2.439557,-7.481067,-14.26361,-2.423723,-17.28679,-1.441433,-14.26361,-0.3273056,-9.737905,-23.47676,-9.737905,0.3710951,-2.012082,-21.9608,-3.834937,-15.26523,8.87061,-2.423723,8.87061,16.18005,-11.09222,-9.651902,-11.09222,14.42986,-5.254409,2.77271,7.310889,-5.611373,7.310889 + } + UVIndex: *360 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,19,20,22,21,20,21,23,19,23,24,19,24,23,25,26,19,24,27,29,28,30,28,29,31,33,32,33,34,32,34,35,32,32,35,36,37,36,35,38,40,39,41,39,40,42,41,40,43,42,40,44,43,40,45,47,46,48,46,47,49,46,48,50,52,51,53,51,52,54,53,52,55,53,54,56,55,54,57,55,56,58,60,59,61,59,60,62,61,60,63,62,60,64,62,63,65,67,66,68,66,67,69,68,67,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,77,79,78,80,78,79,81,83,82,84,82,83,85,82,84,86,88,87,89,87,88,90,87,89,91,90,89,92,90,91,93,95,94,96,94,95,97,96,95,98,100,99,101,99,100,102,101,100,103,105,104,106,104,105,107,106,105,108,110,109,111,109,110,112,114,113,115,113,114,116,115,114,117,115,116,118,115,117,119,118,117,120,122,121,123,121,122,124,123,122,125,123,124,126,125,124,127,126,124,128,130,129,131,129,130,132,131,130,133,135,134,136,134,135,137,136,135,138,140,139,141,139,140,142,139,141,143,142,141,144,146,145,146,147,145,148,147,146,147,149,145,150,145,149,151,147,148,152,151,148,153,152,148,154,152,153,155,152,154,153,156,154,157,154,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,167,169,170,171,167,172,170,169,173,172,169,174,172,173,175,177,176,178,176,177,179,178,177,180,179,177,181,183,182,184,182,183,185,182,184 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *120 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rockLarge, Model::RootNode + C: "OO",4639475548272057317,0 + + ;Geometry::, Model::Mesh rockLarge + C: "OO",4979977801850600311,4639475548272057317 + + ;Material::stone, Model::Mesh rockLarge + C: "OO",7184,4639475548272057317 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockLarge.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockLarge.fbx.import new file mode 100644 index 0000000..f2b0792 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockLarge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cqou4v5um2sk0" +path="res://.godot/imported/rockLarge.fbx-51a8d41b3a97849d42cf2e094282b325.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/rockLarge.fbx" +dest_files=["res://.godot/imported/rockLarge.fbx-51a8d41b3a97849d42cf2e094282b325.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockSmall.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockSmall.fbx new file mode 100644 index 0000000..34b53a8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockSmall.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 221 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rockSmall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rockSmall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5468615242909682080, "Model::rockSmall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4765729741180995915, "Geometry::", "Mesh" { + Vertices: *324 { + a: -1.115188,10.2,-3.193135,-1.326903,3.465071,-4.994387,0.2386728,10.2,-4.176772,-2.371426,1.831509,2.071393,-1.326903,4.52625,1.140884,-0.3229988,4.52625,2.860528,-4.380098,0.6208146,-0.8012211,-3.381544,2.056275,-1.837654,-2.948976,2.056275,-0.4380882,2.595051,10.2,-2.175105,3.634005,3.599365,-1.381471,1.232639,10.2,-0.4380882,-1.977207,2.056275,-3.506038,-2.681889,2.056275,-1.337248,-2.909925,2.056275,-3.506038,-2.948976,2.056275,-0.4380882,-3.381544,2.056275,-1.837654,-1.855093,2.056275,0.4754206,-1.570868,2.056275,-0.5300438,-1.570868,2.056275,-0.5300438,-0.9062924,4.52625,-0.3470546,-1.855093,2.056275,0.4754206,-1.326903,4.52625,1.140884,-2.610097,0,1.036749,-2.944366,0,2.219248,-2.371426,1.831509,2.071393,0.5745429,4.52625,0.7288353,-0.9062924,4.52625,-0.3470546,0.5745429,10.2,0.04004643,-1.64237,10.2,-1.570635,-1.570868,2.056275,-0.5300438,-2.681889,2.056275,-1.337248,3.784102,0,-1.053563,4.709261,0,2.219248,2.566262,4.52625,-0.7182336,3.29334,4.52625,1.853852,3.29334,4.52625,1.853852,0.8824474,4.52625,3.867204,2.566262,4.52625,-0.7182336,0.5745429,4.52625,0.7288353,-0.3229988,4.52625,2.860528,-0.9062924,4.52625,-0.3470546,-1.326903,4.52625,1.140884,0.8824474,0,5.415044,-2.944366,0,2.219248,0.8824474,4.52625,3.867204,-2.371426,1.831509,2.071393,-0.3229988,4.52625,2.860528,3.784102,0,-1.053563,4.093452,0,-1.278318,2.749348,0,-5.415044,0.8824474,0,5.415044,4.709261,0,2.219248,-1.600263,0,-5.415044,-2.610097,0,1.036749,-2.944366,0,2.219248,-1.833285,0,-4.697875,-3.583742,0,-4.697875,-4.709261,0,-0.7162768,4.709261,0,2.219248,0.8824474,0,5.415044,3.29334,4.52625,1.853852,0.8824474,4.52625,3.867204,-3.583742,0,-4.697875,-2.909925,2.056275,-3.506038,-4.709261,0,-0.7162768,-3.381544,2.056275,-1.837654,-4.380098,0.6208146,-0.8012211,4.093452,0,-1.278318,3.784102,0,-1.053563,3.634005,3.599365,-1.381471,2.566262,4.52625,-0.7182336,1.232639,10.2,-0.4380882,0.5745429,4.52625,0.7288353,0.5745429,10.2,0.04004643,-3.583742,0,-4.697875,-1.833285,0,-4.697875,-2.909925,2.056275,-3.506038,-1.977207,2.056275,-3.506038,2.749348,0,-5.415044,4.093452,0,-1.278318,1.94467,10.2,-4.176772,2.595051,10.2,-2.175105,3.634005,3.599365,-1.381471,2.595051,10.2,-2.175105,1.232639,10.2,-0.4380882,1.94467,10.2,-4.176772,0.2386728,10.2,-4.176772,0.5745429,10.2,0.04004643,-1.64237,10.2,-1.570635,-1.115188,10.2,-3.193135,-1.600263,0,-5.415044,2.749348,0,-5.415044,-1.326903,3.465071,-4.994387,1.94467,10.2,-4.176772,0.2386728,10.2,-4.176772,-1.600263,0,-5.415044,-1.326903,3.465071,-4.994387,-1.833285,0,-4.697875,-1.115188,10.2,-3.193135,-1.977207,2.056275,-3.506038,-2.681889,2.056275,-1.337248,-1.64237,10.2,-1.570635,-2.610097,0,1.036749,-4.709261,0,-0.7162768,-1.855093,2.056275,0.4754206,-4.380098,0.6208146,-0.8012211,-2.948976,2.056275,-0.4380882 + } + PolygonVertexIndex: *204 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,14,15,-14,16,15,-15,15,17,-14,18,13,-18,19,21,-21,22,20,-22,23,22,-22,24,22,-24,25,22,-25,26,28,-28,28,29,-28,27,29,-31,31,30,-30,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,37,-40,41,40,-40,42,40,-42,43,45,-45,46,44,-46,47,46,-46,48,50,-50,50,48,-52,52,51,-49,53,50,-52,54,53,-52,55,54,-52,56,53,-55,56,54,-58,58,57,-55,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,66,-66,68,70,-70,71,69,-71,72,71,-71,73,71,-73,74,73,-73,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,80,-83,84,86,-86,87,85,-87,88,85,-88,89,88,-88,90,89,-88,91,93,-93,94,92,-94,95,94,-94,96,98,-98,99,97,-99,100,99,-99,101,99,-101,102,99,-102,103,105,-105,106,104,-106,107,106,-106 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *612 { + a: -0.5722171,0.2286281,-0.7875893,-0.5722171,0.2286281,-0.7875893,-0.5722171,0.2286281,-0.7875893,-0.7696949,0.4535042,0.4493369,-0.7696949,0.4535042,0.4493369,-0.7696949,0.4535042,0.4493369,-0.7180132,0.6597039,0.2219188,-0.7180132,0.6597039,0.2219188,-0.7180132,0.6597039,0.2219188,0.7718507,0.194281,0.6053935,0.6651753,0.1370916,0.7339944,0.6058505,0.1077548,0.7882474,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.9268758,0.2687978,-0.2620094,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,0.9268758,0.2687978,-0.2620094,0.9268758,0.2687978,-0.2620094,0.9268758,0.2687978,-0.2620094,0.9268758,0.2687978,-0.2620094,0.9268758,0.2687978,-0.2620094,0.9268758,0.2687978,-0.2620094,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6199859,0.2538795,0.7424034,-0.6199859,0.2538795,0.7424034,-0.6199859,0.2538795,0.7424034,-0.6199859,0.2538795,0.7424034,-0.6199859,0.2538795,0.7424034,-0.6199859,0.2538795,0.7424034,-0.6199859,0.2538795,0.7424034,-0.6199859,0.2538795,0.7424034,-0.6199859,0.2538795,0.7424034,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6199859,0.2538795,0.7424034,0.6199859,0.2538795,0.7424034,0.6199859,0.2538795,0.7424034,0.6199859,0.2538795,0.7424034,0.6199859,0.2538795,0.7424034,0.6199859,0.2538795,0.7424034,-0.8698902,0.4275792,-0.2459007,-0.8698902,0.4275792,-0.2459007,-0.8698902,0.4275792,-0.2459007,-0.8698902,0.4275792,-0.2459007,-0.8698902,0.4275792,-0.2459007,-0.8698902,0.4275792,-0.2459007,-0.8698902,0.4275792,-0.2459007,-0.8698902,0.4275792,-0.2459007,-0.8698902,0.4275792,-0.2459007,0.5849708,0.09774375,0.8051431,0.6058505,0.1077548,0.7882474,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.6058505,0.1077548,0.7882474,0.6651753,0.1370916,0.7339944,0.5849708,0.09774375,0.8051431,0.6058505,0.1077548,0.7882474,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.6651753,0.1370916,0.7339944,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.6651753,0.1370916,0.7339944,0,0.5014654,-0.8651778,0,0.5014654,-0.8651778,0,0.5014654,-0.8651778,0,0.5014654,-0.8651778,0,0.5014654,-0.8651778,0,0.5014654,-0.8651778,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.5856468,0.406471,0.7012841,-0.5856468,0.406471,0.7012841,-0.5856468,0.406471,0.7012841,-0.5856468,0.406471,0.7012841,-0.5856468,0.406471,0.7012841,-0.5856468,0.406471,0.7012841,-0.5856468,0.406471,0.7012841,-0.5856468,0.406471,0.7012841,-0.5856468,0.406471,0.7012841 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *216 { + a: -3.837291,36.17859,-7.33126,8.941725,-10.42573,36.17859,2.335786,0.9053831,1.245285,12.80908,9.084777,12.80908,-8.105892,-8.417617,-10.84349,-0.8976866,-5.076216,-0.8976866,13.04335,38.85726,13.1092,12.36573,4.3521,38.85726,7.784279,-13.8033,10.55862,-5.264757,11.4564,-13.8033,11.61014,-1.724757,13.31317,-7.234857,7.303514,1.871735,6.184519,-2.086787,-0.3257799,6.045346,-0.3442416,16.14122,3.787861,6.045346,5.743337,16.14122,6.723049,-2.359555,11.56099,-2.359555,10.38725,5.126626,3.516589,17.63761,-3.689762,17.63761,1.922652,40.08268,-8.865752,40.08268,-6.229963,7.866508,-11.63665,7.866508,-0.06110035,-4.156842,-13.4511,-4.156842,-0.02726916,14.34393,-10.5504,14.34393,-12.96591,7.298632,-3.474203,15.22521,-10.1034,-2.827692,-2.26198,2.86943,1.271649,11.26192,3.56808,-1.366357,5.224028,4.491668,16.33188,-3.588984,-3.297021,-3.588984,12.4258,14.83453,-1.938798,3.865934,6.242692,14.83453,14.89804,-4.147886,16.11595,-5.03275,10.82421,-21.31907,3.474203,21.31907,18.5404,8.737197,-6.300246,-21.31907,-10.27597,4.081687,-11.59199,8.737197,-7.217657,-18.49557,-14.10922,-18.49557,-18.5404,-2.819987,8.63028,-4.719722,-10.99862,-4.719722,5.273672,13.70379,-7.092537,13.70379,-13.96013,-7.956547,-10.16642,0.9989507,2.329722,-7.956547,-3.340584,0.9989507,1.65539,-5.252773,15.99626,-0.5279276,14.49083,-0.5279276,14.77157,13.71098,9.835894,17.37769,4.939872,39.82277,0.1433714,17.37769,1.737308,39.82277,14.10922,-9.274888,7.217657,-9.274888,11.4564,0.08223241,7.784279,0.08223241,16.93078,-1.88808,-0.1936734,-1.88808,13.27327,38.52292,4.987139,38.52292,0.7515257,12.37211,-10.21674,-8.563407,-4.852909,-1.724757,-7.656182,-16.44398,-0.9396566,-16.44398,-2.26198,0.1576631,6.466023,-6.183602,4.390502,-12.5714,6.300246,-2.569256,-10.82421,-2.569256,5.224028,11.17292,-7.656182,37.88306,-0.9396566,37.88306,-18.32876,-1.406895,-17.08626,12.32124,-15.35996,-1.406895,-10.59937,39.0041,-10.72225,6.739785,-1.744288,6.739785,-3.882844,39.0041,-5.27103,-3.950764,-16.03829,-3.950764,-4.406066,4.909796,-15.25797,-1.275653,-10.01693,4.909796 + } + UVIndex: *204 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,14,15,13,16,15,14,15,17,13,18,13,17,19,21,20,22,20,21,23,22,21,24,22,23,25,22,24,26,28,27,28,29,27,27,29,30,31,30,29,32,34,33,35,33,34,36,38,37,39,37,38,40,37,39,41,40,39,42,40,41,43,45,44,46,44,45,47,46,45,48,50,49,50,48,51,52,51,48,53,50,51,54,53,51,55,54,51,56,53,54,56,54,57,58,57,54,59,61,60,62,60,61,63,65,64,66,64,65,67,66,65,68,70,69,71,69,70,72,71,70,73,71,72,74,73,72,75,77,76,78,76,77,79,81,80,82,80,81,83,80,82,84,86,85,87,85,86,88,85,87,89,88,87,90,89,87,91,93,92,94,92,93,95,94,93,96,98,97,99,97,98,100,99,98,101,99,100,102,99,101,103,105,104,106,104,105,107,106,105 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *68 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rockSmall, Model::RootNode + C: "OO",5468615242909682080,0 + + ;Geometry::, Model::Mesh rockSmall + C: "OO",4765729741180995915,5468615242909682080 + + ;Material::stone, Model::Mesh rockSmall + C: "OO",7184,5468615242909682080 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockSmall.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockSmall.fbx.import new file mode 100644 index 0000000..3f6c184 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockSmall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://qp8i87t1ymf" +path="res://.godot/imported/rockSmall.fbx-1a88af54de7f68d30a698915ec3d8885.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/rockSmall.fbx" +dest_files=["res://.godot/imported/rockSmall.fbx-1a88af54de7f68d30a698915ec3d8885.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockWide.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockWide.fbx new file mode 100644 index 0000000..11f9709 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockWide.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 272 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rockWide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rockWide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5752850034351859314, "Model::rockWide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4920978238225530838, "Geometry::", "Mesh" { + Vertices: *450 { + a: -1.796614,4.072408,-2.025732,-2.652129,2.002343,-0.9005556,-2.652129,4.072408,-1.404164,-2.061586,10.2,-5.362669,-2.062258,5.1,-7.218009,-0.3600979,10.2,-6.598873,-2.805434,2.679549,0.06454275,-1.523012,6.477,-1.116299,-1.016636,6.477,0.4421648,1.856318,3.2385,5.641366,0.9985931,1.09603,7.304916,-1.016636,3.2385,4.80039,3.482031,6.477,-1.116299,5.168715,1.09603,0.1553053,2.975656,6.477,0.4421648,-4.39219,3.613091E-15,-5.768782,-3.136649,3.613091E-15,-5.768782,-3.748367,4.072408,-4.778041,-2.976652,4.072408,-4.778041,-0.2897921,6.477,-1.930085,-1.073572,6.477,-2.499534,-0.2897921,10.2,-2.382055,-2.506705,10.2,-3.992736,-3.288872,4.072408,-3.817128,-1.610714,4.072408,-2.597875,2.601317,4.918261,-3.841369,1.81996,6.477,-3.46291,1.927121,10.2,-3.992736,-0.2897921,6.477,-1.930085,-0.2897921,10.2,-2.382055,-2.976652,4.072408,-4.778041,-3.288872,4.072408,-3.817128,-3.748367,4.072408,-4.778041,-4.42588,4.072408,-2.69287,-2.652129,4.072408,-1.404164,-1.796614,4.072408,-2.025732,-1.610714,4.072408,-2.597875,-3.163568,3.613091E-15,-0.785005,-5.467607,3.613091E-15,-2.458988,-2.652129,2.002343,-0.9005556,-4.42588,4.072408,-2.69287,-2.652129,4.072408,-1.404164,4.314691,1.806545E-15,1.041904,5.467607,0,4.590216,2.867848,3.2385,1.306795,3.814072,3.2385,4.218974,3.814072,3.2385,4.218974,1.856318,3.2385,5.641366,2.867848,3.2385,1.306795,0.9795097,3.2385,2.678752,-1.016636,3.2385,4.80039,-0.8779508,3.2385,1.329229,-1.816886,3.2385,4.218974,1.885013,3.613091E-15,-7.837145,2.795318,3.613091E-15,-5.035515,1.080335,10.2,-6.598873,1.927121,10.2,-3.992736,2.601317,4.918261,-3.841369,-2.324794,1.806545E-15,1.064338,-0.8779508,3.2385,1.329229,-3.470421,0,4.590216,-1.816886,3.2385,4.218974,5.467607,0,4.590216,0.9985931,0,7.837145,3.814072,3.2385,4.218974,0.9985931,1.09603,7.304916,1.856318,3.2385,5.641366,1.927121,10.2,-3.992736,-0.2897921,10.2,-2.382055,1.080335,10.2,-6.598873,-0.3600979,10.2,-6.598873,-2.506705,10.2,-3.992736,-2.061586,10.2,-5.362669,-2.464597,3.613091E-15,-7.837145,1.885013,3.613091E-15,-7.837145,-2.062258,5.1,-7.218009,1.080335,10.2,-6.598873,-0.3600979,10.2,-6.598873,0.9985931,0,7.837145,-2.324794,1.806545E-15,1.064338,-3.470421,0,4.590216,-2.464597,3.613091E-15,-7.837145,-3.163568,3.613091E-15,-0.785005,-3.489505,3.613091E-15,0.2181263,-3.136649,3.613091E-15,-5.768782,-4.39219,3.613091E-15,-5.768782,-5.467607,3.613091E-15,-2.458988,1.885013,3.613091E-15,-7.837145,2.795318,3.613091E-15,-5.035515,3.741513,3.613091E-15,-5.035515,4.314691,1.806545E-15,1.041904,5.448524,3.613091E-15,0.2181263,5.467607,0,4.590216,-2.464597,3.613091E-15,-7.837145,-2.062258,5.1,-7.218009,-3.136649,3.613091E-15,-5.768782,-2.061586,10.2,-5.362669,-2.976652,4.072408,-4.778041,-2.506705,10.2,-3.992736,-3.288872,4.072408,-3.817128,-4.39219,3.613091E-15,-5.768782,-3.748367,4.072408,-4.778041,-5.467607,3.613091E-15,-2.458988,-4.42588,4.072408,-2.69287,3.482031,6.477,-1.116299,2.975656,6.477,0.4421648,2.719571,6.477,-3.46291,0.9795097,6.477,1.89245,1.81996,6.477,-3.46291,-0.2897921,6.477,-1.930085,-1.016636,6.477,0.4421648,-1.073572,6.477,-2.499534,-1.523012,6.477,-1.116299,0.9795097,3.2385,2.678752,-0.8779508,3.2385,1.329229,0.9795097,6.477,1.89245,-1.016636,6.477,0.4421648,-2.805434,2.679549,0.06454275,-3.489505,3.613091E-15,0.2181263,-2.324794,1.806545E-15,1.064338,2.795318,3.613091E-15,-5.035515,3.741513,3.613091E-15,-5.035515,2.601317,4.918261,-3.841369,2.719571,6.477,-3.46291,1.81996,6.477,-3.46291,-1.610714,4.072408,-2.597875,-1.073572,6.477,-2.499534,-1.796614,4.072408,-2.025732,-1.523012,6.477,-1.116299,-2.652129,2.002343,-0.9005556,-2.805434,2.679549,0.06454275,-3.163568,3.613091E-15,-0.785005,-3.489505,3.613091E-15,0.2181263,0.9985931,0,7.837145,-3.470421,0,4.590216,0.9985931,1.09603,7.304916,-1.816886,3.2385,4.218974,-1.016636,3.2385,4.80039,3.741513,3.613091E-15,-5.035515,5.448524,3.613091E-15,0.2181263,2.719571,6.477,-3.46291,3.482031,6.477,-1.116299,5.168715,1.09603,0.1553053,4.314691,1.806545E-15,1.041904,2.867848,3.2385,1.306795,5.448524,3.613091E-15,0.2181263,5.168715,1.09603,0.1553053,2.975656,6.477,0.4421648,0.9795097,3.2385,2.678752,0.9795097,6.477,1.89245 + } + PolygonVertexIndex: *288 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,16,-18,19,21,-21,21,22,-21,22,23,-21,24,20,-24,25,27,-27,28,26,-28,29,28,-28,30,32,-32,32,33,-32,33,34,-32,34,35,-32,36,31,-36,37,39,-39,40,38,-40,41,40,-40,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,47,-50,51,50,-50,52,50,-52,53,55,-55,56,54,-56,57,54,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,65,-65,67,69,-69,70,68,-70,71,68,-71,72,71,-71,73,75,-75,76,74,-76,77,76,-76,78,80,-80,79,81,-79,82,81,-80,83,82,-80,84,81,-83,84,82,-86,86,85,-83,81,87,-79,87,88,-79,88,89,-79,89,90,-79,90,89,-92,92,78,-91,93,95,-95,96,94,-96,97,96,-96,98,96,-98,99,98,-98,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,107,-107,109,107,-109,110,107,-110,111,110,-110,112,110,-112,113,115,-115,115,116,-115,116,117,-115,117,118,-115,119,114,-119,120,122,-122,123,121,-123,124,123,-123,125,127,-127,128,126,-128,129,128,-128,130,128,-130,131,130,-130,132,130,-132,133,135,-135,136,134,-136,137,136,-136,138,140,-140,141,139,-141,142,139,-142,143,145,-145,146,144,-146,147,144,-147,148,144,-148,149,148,-148 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *864 { + a: 0.576721,0.193114,0.7937883,0.576721,0.193114,0.7937883,0.576721,0.193114,0.7937883,-0.5638591,0.2824081,-0.7760854,-0.5638591,0.2824081,-0.7760854,-0.5638591,0.2824081,-0.7760854,-0.8777108,0.3850884,0.2851855,-0.8777108,0.3850884,0.2851855,-0.8777108,0.3850884,0.2851855,-0.2132455,0.651019,0.728492,-0.2132455,0.651019,0.728492,-0.2132455,0.651019,0.728492,0.8916292,0.3479466,0.2897079,0.8916292,0.3479466,0.2897079,0.8916292,0.3479466,0.2897079,0,0.2363867,-0.9716591,0,0.2363867,-0.9716591,0,0.2363867,-0.9716591,0,0.2363867,-0.9716591,0,0.2363867,-0.9716591,0,0.2363867,-0.9716591,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,-0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0.5849708,0.09774375,0.8051431,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.576721,0.193114,0.7937883,-0.576721,0.193114,0.7937883,-0.576721,0.193114,0.7937883,-0.576721,0.193114,0.7937883,-0.576721,0.193114,0.7937883,-0.576721,0.193114,0.7937883,-0.576721,0.193114,0.7937883,-0.576721,0.193114,0.7937883,-0.576721,0.193114,0.7937883,0.8672327,0.4104959,-0.281781,0.8672327,0.4104959,-0.281781,0.8672327,0.4104959,-0.281781,0.8672327,0.4104959,-0.281781,0.8672327,0.4104959,-0.281781,0.8672327,0.4104959,-0.281781,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,0.9450901,0.1118372,-0.3070784,-0.8672327,0.4104959,-0.281781,-0.8672327,0.4104959,-0.281781,-0.8672327,0.4104959,-0.281781,-0.8672327,0.4104959,-0.281781,-0.8672327,0.4104959,-0.281781,-0.8672327,0.4104959,-0.281781,0.5470822,0.3656516,0.752994,0.5470822,0.3656516,0.752994,0.5470822,0.3656516,0.752994,0.5470822,0.3656516,0.752994,0.5470822,0.3656516,0.752994,0.5470822,0.3656516,0.752994,0.5470822,0.3656516,0.752994,0.5470822,0.3656516,0.752994,0.5470822,0.3656516,0.752994,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,0.1205144,-0.9927117,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9450901,0.1118372,-0.3070784,-0.9277537,0.2200083,-0.3014455,-0.9277537,0.2200083,-0.3014455,-0.9277537,0.2200083,-0.3014455,-0.9277537,0.2200083,-0.3014455,-0.9277537,0.2200083,-0.3014455,-0.9277537,0.2200083,-0.3014455,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,-0.5767636,0.1927448,0.793847,0,0.2359435,-0.9717667,0,0.2359435,-0.9717667,0,0.2359435,-0.9717667,0,0.2359435,-0.9717667,0,0.2359435,-0.9717667,0,0.2359435,-0.9717667,0,0.2359435,-0.9717667,0,0.2359435,-0.9717667,0,0.2359435,-0.9717667,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.9278428,0.2195926,-0.3014744,-0.5470822,0.3656516,0.752994,-0.5470822,0.3656516,0.752994,-0.5470822,0.3656516,0.752994,-0.5470822,0.3656516,0.752994,-0.5470822,0.3656516,0.752994,-0.5470822,0.3656516,0.752994,-0.5470822,0.3656516,0.752994,-0.5470822,0.3656516,0.752994,-0.5470822,0.3656516,0.752994,0.9278428,0.2195926,-0.3014744,0.9278428,0.2195926,-0.3014744,0.9278428,0.2195926,-0.3014744,0.9278428,0.2195926,-0.3014744,0.9278428,0.2195926,-0.3014744,0.9278428,0.2195926,-0.3014744,0.9278428,0.2195926,-0.3014744,0.9278428,0.2195926,-0.3014744,0.9278428,0.2195926,-0.3014744,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847,0.5767636,0.1927448,0.793847 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *300 { + a: -1.034632,17.78019,-6.363322,9.473975,-5.197914,17.78019,-5.843462,32.35183,-10.13479,11.42109,-14.1236,32.35183,-3.171428,5.66046,-6.032679,21.8604,0.4187632,21.8604,13.25357,-2.862214,11.85264,-13.97452,1.468091,-2.862214,8.416026,19.84269,5.706759,-2.754212,1.964584,19.84269,17.29209,-5.368753,12.34901,-5.368753,14.75735,11.132,11.7191,11.132,-5.389458,25.91323,-9.20365,25.91323,-6.435367,40.64124,-17.22377,40.64124,-19.30868,16.40078,-11.14208,16.40078,17.17484,19.87803,13.81034,26.04433,15.37773,40.77233,3.543421,26.04433,4.58933,40.77233,11.7191,-18.81118,12.94831,-15.02806,14.75735,-18.81118,17.42473,-10.60185,10.44145,-5.528205,7.073285,-7.975321,6.341393,-10.22785,-11.89289,-0.930913,-23.10529,-0.930913,-10.5313,7.103566,-20.32851,15.40978,-11.69671,15.40978,-9.150483,-6.111459,-23.83913,-6.111459,-8.382084,7.870914,-20.43739,7.870914,-15.01603,16.61013,-7.308338,22.2101,-11.29074,5.144861,-3.856337,10.54627,4.002505,18.89917,3.456499,5.233183,7.153095,16.61013,27.05144,-1.85569,15.45378,-1.85569,23.39393,38.55531,12.60553,38.55531,11.21854,17.62978,6.81357,-3.04173,6.04517,10.94064,21.40935,-3.04173,18.0076,10.94064,6.792623,-9.972415,-14.95543,-9.972415,2.385034,3.726188,-13.72379,-5.336295,-7.142201,3.726188,-7.587089,-15.71943,1.140914,-9.378167,-4.253289,-25.97981,1.417708,-25.97981,9.868917,-15.71943,8.116482,-21.11287,9.703139,-3.718461,-7.421312,-3.718461,8.119128,16.5077,-4.253289,36.73385,1.417708,36.73385,3.931469,30.8549,-9.152734,4.190308,-13.66308,18.07172,-9.703139,-30.8549,-12.45499,-3.090571,-13.73821,0.8587651,-12.34901,-22.71174,-17.29209,-22.71174,-21.52601,-9.681055,7.421312,-30.8549,11.00519,-19.82486,14.73036,-19.82486,16.98697,4.101985,21.45088,0.8587651,21.52601,18.07172,-26.34632,-2.098393,-24.51756,18.10711,-17.78409,-2.098393,-17.5714,38.3126,-14.2691,14.03593,-11.9004,38.3126,-10.29129,14.03593,-16.2566,-5.16229,-13.33023,11.27352,-2.555326,-5.16229,-4.698423,11.27352,-13.70879,-4.394879,-11.71518,1.740806,-10.70697,-13.6335,-3.856337,7.45059,-7.165198,-13.6335,1.140914,-7.59876,4.002505,1.740806,4.226661,-9.840686,5.99611,-4.394879,9.318785,11.3033,0.2796214,11.3033,7.499189,24.29694,-2.214875,24.29694,-8.786244,9.060653,-10.60967,-1.690348,-4.941716,-1.690348,-11.00519,-4.677547,-14.73036,-4.677547,-10.24141,15.24825,-10.70697,21.56332,-7.165198,21.56332,-7.76767,13.62335,-8.052938,23.3271,-5.399215,13.62335,-2.326879,23.3271,-0.1453799,5.26959,3.654766,8.002461,0.9094967,-2.810881,5.062074,-2.810881,21.31668,-8.282476,-0.4313728,-8.282476,20.08504,-3.646356,3.976217,5.416127,7.870559,5.416127,14.30263,-4.421634,-7.445422,-4.421634,9.657595,21.71635,-0.05646904,21.71635,-6.869783,0.001402208,11.33166,-2.564136,6.110327,10.42951,16.84936,-2.564136,16.10351,1.8334,8.454559,23.42315,-3.0791,10.42951,-1.259504,23.42315 + } + UVIndex: *288 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,16,17,19,21,20,21,22,20,22,23,20,24,20,23,25,27,26,28,26,27,29,28,27,30,32,31,32,33,31,33,34,31,34,35,31,36,31,35,37,39,38,40,38,39,41,40,39,42,44,43,45,43,44,46,48,47,49,47,48,50,47,49,51,50,49,52,50,51,53,55,54,56,54,55,57,54,56,58,60,59,61,59,60,62,64,63,65,63,64,66,65,64,67,69,68,70,68,69,71,68,70,72,71,70,73,75,74,76,74,75,77,76,75,78,80,79,79,81,78,82,81,79,83,82,79,84,81,82,84,82,85,86,85,82,81,87,78,87,88,78,88,89,78,89,90,78,90,89,91,92,78,90,93,95,94,96,94,95,97,96,95,98,96,97,99,98,97,100,102,101,103,101,102,104,106,105,107,105,106,108,107,106,109,107,108,110,107,109,111,110,109,112,110,111,113,115,114,115,116,114,116,117,114,117,118,114,119,114,118,120,122,121,123,121,122,124,123,122,125,127,126,128,126,127,129,128,127,130,128,129,131,130,129,132,130,131,133,135,134,136,134,135,137,136,135,138,140,139,141,139,140,142,139,141,143,145,144,146,144,145,147,144,146,148,144,147,149,148,147 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *96 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rockWide, Model::RootNode + C: "OO",5752850034351859314,0 + + ;Geometry::, Model::Mesh rockWide + C: "OO",4920978238225530838,5752850034351859314 + + ;Material::stone, Model::Mesh rockWide + C: "OO",7184,5752850034351859314 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockWide.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockWide.fbx.import new file mode 100644 index 0000000..b8de62d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/rockWide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bteaqv6k7upcs" +path="res://.godot/imported/rockWide.fbx-e218a201d75f749e7d67b87695f8e178.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/rockWide.fbx" +dest_files=["res://.godot/imported/rockWide.fbx-e218a201d75f749e7d67b87695f8e178.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roof.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roof.fbx new file mode 100644 index 0000000..a50d7a2 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roof.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 316 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roof.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roof.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5424272504217255178, "Model::roof", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5399515629564695701, "Geometry::", "Mesh" { + Vertices: *294 { + a: -4,7.219114E-15,5,-5,0,5,-4,0.5,5,-5,0,-5,-4,7.219114E-15,-5,-4,0.5,-5,5,0,-5,5,5,-5,4,7.219114E-15,-5,4,4.5,-5,-4,0.5,-5,-4,7.219114E-15,-5,-4,0.5,-4.75,-4,7.219114E-15,-4.75,4,7.219114E-15,-5,4,4.5,-5,4,7.219114E-15,-4.75,4,4.5,-4.75,5,0,5,4,7.219114E-15,5,5,5,5,4,4.5,5,-4,0.5,4.75,-4,7.219114E-15,4.75,-4,0.5,5,-4,7.219114E-15,5,4,7.219114E-15,4.75,4,4.5,4.75,4,7.219114E-15,5,4,4.5,5,-4,7.219114E-15,5,-4,7.219114E-15,4.75,-5,0,5,-4,7.219114E-15,-4.75,-4,7.219114E-15,-5,-5,0,-5,4,7.219114E-15,-4.75,4,7.219114E-15,4.75,4,7.219114E-15,-5,4,7.219114E-15,5,5,0,-5,5,0,5,5,6.259017,-5,5,5,-5,5,6.259017,5,5,0,-5,5,5,5,5,0,5,-4,7.219114E-15,-4.75,4,7.219114E-15,-4.75,-4,0.5,-4.75,4,4.5,-4.75,4,7.219114E-15,4.75,-4,7.219114E-15,4.75,4,4.5,4.75,-4,0.5,4.75,-5.447214,-0.2236068,5,-5.67082,0.2236068,5,-4.461968,0.8280331,5,4,5.059017,5,5,6.259017,5,4,5.759017,5,-5.447214,-0.2236068,-5,-5.67082,0.2236068,-5,-5.447214,-0.2236068,5,-5.67082,0.2236068,5,4,4.5,5,4,4.5,4.75,-4,0.5,5,-4,0.5,4.75,-5,0,5,-5,0,-5,-5.447214,-0.2236068,5,-5.447214,-0.2236068,-5,4,4.5,-4.75,4,4.5,-5,-4,0.5,-4.75,-4,0.5,-5,4,5.059017,-5,4,5.059017,5,-4.461968,0.8280331,-5,-4.461968,0.8280331,5,4,5.759017,-5,4,5.759017,5,4,5.059017,-5,4,5.059017,5,5,6.259017,-5,5,6.259017,5,4,5.759017,-5,4,5.759017,5,-5.447214,-0.2236068,-5,-5.67082,0.2236068,-5,-4.461968,0.8280331,-5,4,5.059017,-5,5,6.259017,-5,4,5.759017,-5,-5.67082,0.2236068,-5,-5.67082,0.2236068,5 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,34,-33,33,36,-32,37,31,-37,36,38,-38,37,38,-40,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,45,-45,46,47,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,1,-58,2,57,-2,58,57,-3,21,58,-3,59,58,-22,20,59,-22,60,59,-21,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,91,-4,5,3,-92,92,5,-92,9,5,-93,93,9,-93,7,9,-94,94,7,-94,95,94,-94,80,96,-82,97,81,-97 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: 0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *196 { + a: -15.74803,2.842171E-14,-19.68504,0,-15.74803,1.968504,19.68504,0,15.74803,2.842171E-14,15.74803,1.968504,-19.68504,0,-19.68504,19.68504,-15.74803,2.842171E-14,-15.74803,17.71654,19.68504,1.968504,19.68504,2.842171E-14,18.70079,1.968504,18.70079,2.842171E-14,-19.68504,2.842171E-14,-19.68504,17.71654,-18.70079,2.842171E-14,-18.70079,17.71654,19.68504,3.65673E-30,15.74803,2.842171E-14,19.68504,19.68504,15.74803,17.71654,-18.70079,1.968504,-18.70079,2.842171E-14,-19.68504,1.968504,-19.68504,2.842171E-14,18.70079,2.842171E-14,18.70079,17.71654,19.68504,2.842171E-14,19.68504,17.71654,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-18.70079,15.74803,18.70079,15.74803,-19.68504,15.74803,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,24.6418,19.68504,19.68504,-19.68504,24.6418,19.68504,-2.631396E-12,-19.68504,19.68504,-19.68504,-2.631396E-12,15.74803,2.842171E-14,-15.74803,2.842171E-14,15.74803,1.968504,-15.74803,17.71654,15.74803,2.842171E-14,-15.74803,2.842171E-14,15.74803,17.71654,-15.74803,1.968504,-21.44572,-0.8803417,-22.32607,0.8803417,-17.5668,3.259973,15.74803,19.91739,19.68504,24.6418,15.74803,22.6733,-19.68504,8.803417,-19.68504,10.77192,19.68504,8.803417,19.68504,10.77192,-19.68504,22.00854,-18.70079,22.00854,-19.68504,-13.20513,-18.70079,-13.20513,-19.68504,-17.60683,19.68504,-17.60683,-19.68504,-19.57534,19.68504,-19.57534,18.70079,22.00854,19.68504,22.00854,18.70079,-13.20513,19.68504,-13.20513,-19.68504,22.9928,19.68504,22.9928,-19.68504,-14.25432,19.68504,-14.25432,-19.68504,22.6733,19.68504,22.6733,-19.68504,19.91739,19.68504,19.91739,-19.68504,28.62698,19.68504,28.62698,-19.68504,24.22527,19.68504,24.22527,21.44572,-0.8803417,22.32607,0.8803417,17.5668,3.259973,-15.74803,19.91739,-19.68504,24.6418,-15.74803,22.6733,-19.68504,-19.57534,19.68504,-19.57534 + } + UVIndex: *192 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,34,32,33,36,31,37,31,36,36,38,37,37,38,39,38,40,39,41,39,40,42,44,43,45,43,44,46,45,44,46,47,45,48,50,49,51,49,50,52,54,53,55,53,54,56,1,57,2,57,1,58,57,2,21,58,2,59,58,21,20,59,21,60,59,20,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,91,3,5,3,91,92,5,91,9,5,92,93,9,92,7,9,93,94,7,93,95,94,93,80,96,81,97,81,96 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roof, Model::RootNode + C: "OO",5424272504217255178,0 + + ;Geometry::, Model::Mesh roof + C: "OO",5399515629564695701,5424272504217255178 + + ;Material::wood, Model::Mesh roof + C: "OO",7178,5424272504217255178 + + ;Material::stone, Model::Mesh roof + C: "OO",7184,5424272504217255178 + + ;Material::roof, Model::Mesh roof + C: "OO",7172,5424272504217255178 + + ;Material::roofLight, Model::Mesh roof + C: "OO",7182,5424272504217255178 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roof.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roof.fbx.import new file mode 100644 index 0000000..e14de19 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roof.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4rsglayimstg" +path="res://.godot/imported/roof.fbx-21c61e4f05239f1691afe0ac6cb09162.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roof.fbx" +dest_files=["res://.godot/imported/roof.fbx-21c61e4f05239f1691afe0ac6cb09162.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCorner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCorner.fbx new file mode 100644 index 0000000..88d2443 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCorner.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 364 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4762024026700032985, "Model::roofCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4969023591047488403, "Geometry::", "Mesh" { + Vertices: *186 { + a: 5,0,5,5,0,-5,-5,0,5,-5,0,-5,-5.447214,-0.2236068,-5,-5,0,-5,-5.67082,0.2236068,-5,5,0,-5,-4.461968,0.8280331,-5,4,5.059017,-5,5,6.259017,-5,4,5.759017,-5,5,5.759017,-4,5,6.259017,-5,5,5.059017,-4,5,0,-5,5,0,5,5,0.8280331,4.461968,5,0.2236068,5.67082,5,-0.2236068,5.447214,4,5.759017,-5,5,6.259017,-5,4,5.759017,-4,5,6.259017,-5,5,5.759017,-4,4,5.759017,-4,-5,0,5,-5,0,-5,-5.447214,-0.2236068,5.447214,-5.447214,-0.2236068,-5,5,0,5,-5,0,5,5,-0.2236068,5.447214,-5.447214,-0.2236068,5.447214,-5.447214,-0.2236068,-5,-5.67082,0.2236068,-5,-5.447214,-0.2236068,5.447214,-5.67082,0.2236068,5.67082,5,-0.2236068,5.447214,-5.447214,-0.2236068,5.447214,5,0.2236068,5.67082,-5.67082,0.2236068,5.67082,4,5.059017,-5,4,5.759017,-5,4,5.059017,-4,4,5.759017,-4,5,5.059017,-4,4,5.059017,-4,5,5.759017,-4,4,5.759017,-4,4,5.059017,-5,4,5.059017,-4,-4.461968,0.8280331,-5,-4.461968,0.8280331,4.461968,5,5.059017,-4,5,0.8280331,4.461968,4,5.059017,-4,-4.461968,0.8280331,4.461968,-5.67082,0.2236068,5.67082,-5.67082,0.2236068,-5,5,0.2236068,5.67082,-5.67082,0.2236068,5.67082 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,7,-10,11,10,-10,12,14,-14,13,14,-16,16,15,-15,17,16,-15,18,16,-18,19,16,-19,20,22,-22,23,25,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,53,52,-59,59,58,-53,55,57,-61,61,60,-58 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *124 { + a: 19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,21.44572,-0.8803417,19.68504,-2.201481E-12,22.32607,0.8803417,-19.68504,-2.201481E-12,17.5668,3.259973,-15.74803,19.91739,-19.68504,24.6418,-15.74803,22.6733,15.74803,22.6733,19.68504,24.6418,15.74803,19.91739,19.68504,-3.545899E-08,-19.68504,-3.545899E-08,-17.5668,3.259973,-22.32607,0.8803417,-21.44572,-0.8803418,-19.68504,24.22527,-19.68504,28.62698,-15.74803,24.22527,19.68504,28.62698,19.68504,24.22527,15.74803,24.22527,-19.68504,-17.60683,19.68504,-17.60683,-21.44572,-19.57534,19.68504,-19.57534,-19.68504,-17.60683,19.68504,-17.60683,-19.68504,-19.57534,21.44572,-19.57534,-19.68504,8.803417,-19.68504,10.77192,21.44572,8.803417,22.32607,10.77192,19.68504,8.803417,-21.44572,8.803417,19.68504,10.77192,-22.32607,10.77192,-19.68504,19.91739,-19.68504,22.6733,-15.74803,19.91739,-15.74803,22.6733,19.68504,19.91739,15.74803,19.91739,19.68504,22.6733,15.74803,22.6733,-19.68504,22.9928,-15.74803,22.9928,-19.68504,-14.25432,17.5668,-14.25432,19.68504,22.9928,19.68504,-14.25432,15.74803,22.9928,-17.5668,-14.25432,22.32607,-19.57534,-19.68504,-19.57534,19.68504,-19.57534,-22.32607,-19.57534 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,7,9,11,10,9,12,14,13,13,14,15,16,15,14,17,16,14,18,16,17,19,16,18,20,22,21,23,25,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,53,52,58,59,58,52,55,57,60,61,60,57 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofCorner, Model::RootNode + C: "OO",4762024026700032985,0 + + ;Geometry::, Model::Mesh roofCorner + C: "OO",4969023591047488403,4762024026700032985 + + ;Material::stone, Model::Mesh roofCorner + C: "OO",7184,4762024026700032985 + + ;Material::roof, Model::Mesh roofCorner + C: "OO",7172,4762024026700032985 + + ;Material::roofLight, Model::Mesh roofCorner + C: "OO",7182,4762024026700032985 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCorner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCorner.fbx.import new file mode 100644 index 0000000..f5777fa --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bf5f4xvdhga7v" +path="res://.godot/imported/roofCorner.fbx-877956136e525fa98dc7eb4a5522fcef.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCorner.fbx" +dest_files=["res://.godot/imported/roofCorner.fbx-877956136e525fa98dc7eb4a5522fcef.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerInner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerInner.fbx new file mode 100644 index 0000000..4030cd2 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerInner.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 402 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofCornerInner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofCornerInner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5299398268559582734, "Model::roofCornerInner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5557714838739243719, "Geometry::", "Mesh" { + Vertices: *156 { + a: -5,0.559017,5,-4.461968,0.8280331,5,-5,0,5,4,5.059017,5,5,0,5,5,6.259017,5,4,5.759017,5,5,6.259017,-5,5,0,-5,5,6.259017,5,5,0,5,5,0,-5,-5,0,-5,5,0,5,-5,0,5,-5,5.759017,-4,-5,5.059017,-4,-5,6.259017,-5,-5,0,-5,-5,0,5,-5,0.8280331,4.461968,-5,0.559017,5,-5,0,-5,5,0,-5,-5,6.259017,-5,5,6.259017,-5,-4.461968,0.8280331,4.461968,-4.461968,0.8280331,5,-5,0.559017,5,-4.461968,0.8280331,4.461968,-5,0.559017,5,-5,0.8280331,4.461968,5,6.259017,-5,4,5.759017,-4,-5,6.259017,-5,-5,5.759017,-4,4,5.059017,-4,4,5.759017,-4,4,5.059017,5,4,5.759017,5,4,5.059017,-4,4,5.059017,5,-5,5.059017,-4,-5,5.759017,-4,4,5.059017,-4,4,5.759017,-4,5,6.259017,-5,5,6.259017,5,4,5.759017,-4,4,5.759017,5,4,5.059017,-4,-5,5.059017,-4 + } + PolygonVertexIndex: *90 { + a: 0,2,-2,1,2,-4,2,4,-4,5,3,-5,6,3,-6,7,9,-9,10,8,-10,11,13,-13,14,12,-14,15,17,-17,17,18,-17,19,16,-19,20,16,-20,21,20,-20,22,24,-24,25,23,-25,26,28,-28,29,31,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,26,-42,27,41,-27,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,51,-30,31,29,-52 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *270 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *104 { + a: -19.68504,2.200854,-17.5668,3.259973,-19.68504,-2.221391E-12,15.74803,19.91739,19.68504,-2.221391E-12,19.68504,24.6418,15.74803,22.6733,19.68504,24.6418,19.68504,-2.713201E-12,-19.68504,24.6418,-19.68504,-2.713201E-12,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,-15.74803,22.6733,-15.74803,19.91739,-19.68504,24.6418,-19.68504,2.918686E-12,19.68504,2.918686E-12,17.5668,3.259973,19.68504,2.200854,19.68504,-2.724553E-12,-19.68504,-2.724553E-12,19.68504,24.6418,-19.68504,24.6418,17.5668,-14.25432,19.68504,-14.25432,19.68504,-16.62258,-17.5668,-14.25432,-19.68504,-16.62258,-19.68504,-14.25432,19.68504,28.62698,15.74803,24.22527,-19.68504,28.62698,-19.68504,24.22527,-15.74803,19.91739,-15.74803,22.6733,19.68504,19.91739,19.68504,22.6733,-15.74803,22.9928,19.68504,22.9928,-19.68504,19.91739,-19.68504,22.6733,15.74803,19.91739,15.74803,22.6733,-19.68504,28.62698,19.68504,28.62698,-15.74803,24.22527,19.68504,24.22527,15.74803,22.9928,-19.68504,22.9928 + } + UVIndex: *90 { + a: 0,2,1,1,2,3,2,4,3,5,3,4,6,3,5,7,9,8,10,8,9,11,13,12,14,12,13,15,17,16,17,18,16,19,16,18,20,16,19,21,20,19,22,24,23,25,23,24,26,28,27,29,31,30,32,34,33,35,33,34,36,38,37,39,37,38,40,26,41,27,41,26,42,44,43,45,43,44,46,48,47,49,47,48,50,51,29,31,29,51 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *30 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofCornerInner, Model::RootNode + C: "OO",5299398268559582734,0 + + ;Geometry::, Model::Mesh roofCornerInner + C: "OO",5557714838739243719,5299398268559582734 + + ;Material::stone, Model::Mesh roofCornerInner + C: "OO",7184,5299398268559582734 + + ;Material::roofLight, Model::Mesh roofCornerInner + C: "OO",7182,5299398268559582734 + + ;Material::roof, Model::Mesh roofCornerInner + C: "OO",7172,5299398268559582734 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerInner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerInner.fbx.import new file mode 100644 index 0000000..c1c4ddb --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerInner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bb0dmoy38rivm" +path="res://.godot/imported/roofCornerInner.fbx-c030db5f8beaa40e6936a932d4a946f8.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerInner.fbx" +dest_files=["res://.godot/imported/roofCornerInner.fbx-c030db5f8beaa40e6936a932d4a946f8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerRound.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerRound.fbx new file mode 100644 index 0000000..b39f4da --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerRound.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 443 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofCornerRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofCornerRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4835927825433190148, "Model::roofCornerRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4861855651245358144, "Geometry::", "Mesh" { + Vertices: *228 { + a: 4,5.059017,-4,0.5,0.8280331,4.461968,-4.461968,0.8280331,-0.5,4,5.759017,-5,5,6.259017,-5,4,5.759017,-4,5,6.259017,-5,5,5.759017,-4,4,5.759017,-4,-5,0,-1.443823E-14,-5,0,-5,-5.447214,-0.2236068,-1.443823E-14,-5.447214,-0.2236068,-5,5,0,5,5.775292E-14,0,5,5,-0.2236068,5.447214,-6.35282E-13,-0.2236068,5.447214,5,5.059017,-4,4,5.059017,-4,5,5.759017,-4,4,5.759017,-4,5,5.059017,-4,5,0.8280331,4.461968,4,5.059017,-4,0.5,0.8280331,4.461968,4,5.059017,-5,4,5.759017,-5,4,5.059017,-4,4,5.759017,-4,4,5.059017,-5,4,5.059017,-4,-4.461968,0.8280331,-5,-4.461968,0.8280331,-0.5,5.775292E-14,0,5,-5,0,-1.443823E-14,-6.35282E-13,-0.2236068,5.447214,-5.447214,-0.2236068,-1.443823E-14,-5.447214,-0.2236068,-1.443823E-14,-5.67082,0.2236068,-1.443823E-14,-6.35282E-13,-0.2236068,5.447214,-6.35282E-13,0.2236068,5.67082,-5.447214,-0.2236068,-5,-5.67082,0.2236068,-5,-5.447214,-0.2236068,-1.443823E-14,-5.67082,0.2236068,-1.443823E-14,-6.35282E-13,0.2236068,5.67082,-5.67082,0.2236068,-1.443823E-14,-5.67082,0.2236068,-5,-5.67082,0.2236068,-1.443823E-14,5,-0.2236068,5.447214,-6.35282E-13,-0.2236068,5.447214,5,0.2236068,5.67082,-6.35282E-13,0.2236068,5.67082,5,0.2236068,5.67082,-6.35282E-13,0.2236068,5.67082,5,0,5,5,0,-5,5.775292E-14,0,5,-5,0,-5,-5,0,-1.443823E-14,-5.447214,-0.2236068,-5,-5,0,-5,-5.67082,0.2236068,-5,5,0,-5,-4.461968,0.8280331,-5,4,5.059017,-5,5,6.259017,-5,4,5.759017,-5,5,5.759017,-4,5,6.259017,-5,5,5.059017,-4,5,0,-5,5,0,5,5,0.8280331,4.461968,5,0.2236068,5.67082,5,-0.2236068,5.447214 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,1,2,-46,46,45,-3,31,47,-33,48,32,-48,49,51,-51,52,50,-52,53,22,-55,24,54,-23,55,57,-57,58,56,-58,59,58,-58,60,62,-62,63,61,-63,64,63,-63,65,63,-65,66,63,-66,67,66,-66,68,70,-70,69,70,-72,72,71,-71,73,72,-71,74,72,-74,75,72,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -0.2490932,0.9358981,0.2490932,-0.387518,0.907787,0.1604764,-0.1604764,0.907787,0.387518,-0.4472136,0.8944272,0,-0.2357023,0.9428091,0.2357023,-0.2357023,0.9428091,0.2357023,-0.2357023,0.9428091,0.2357023,-0.2357023,0.9428091,0.2357023,0,0.8944272,0.4472136,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8944272,0.4472136,-0.2490932,0.9358981,0.2490932,0,0.8944272,0.4472136,-0.1604764,0.907787,0.387518,0,0.8944272,0.4472136,-0.2490932,0.9358981,0.2490932,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.2490932,0.9358981,0.2490932,-0.3874773,0.9077869,0.1605748,-0.2490932,0.9358981,0.2490932,-0.4472136,0.8944272,0,0.4082483,-0.8164966,-0.4082483,0.4082483,-0.8164966,-0.4082483,0.4082483,-0.8164966,-0.4082483,0.4082483,-0.8164966,-0.4082483,0.4082483,-0.8164966,-0.4082483,0.4082483,-0.8164966,-0.4082483,-0.8237056,-0.4118528,0.3897262,-0.3897262,-0.4118528,0.8237056,-0.8486531,-0.4243266,0.315808,-0.315808,-0.4243266,0.8486531,-0.8486531,-0.4243266,0.315808,-0.3897262,-0.4118528,0.8237056,-0.8944272,-0.4472136,0,-0.8237056,-0.4118528,0.3897262,-0.8944272,-0.4472136,0,-0.8486531,-0.4243266,0.315808,-0.8944272,-0.4472136,0,-0.8237056,-0.4118528,0.3897262,-0.1604764,0.907787,0.387518,-0.387518,0.907787,0.1604764,-0.1604764,0.907787,0.387518,-0.387518,0.907787,0.1604764,-0.1604764,0.907787,0.387518,-0.387518,0.907787,0.1604764,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.3874773,0.9077869,0.1605748,-0.387518,0.907787,0.1604764,-0.3874773,0.9077869,0.1605748,-0.4472136,0.8944272,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,-0.3897262,-0.4118528,0.8237056,-0.315808,-0.4243266,0.8486531,-0.3897262,-0.4118528,0.8237056,0,-0.4472136,0.8944272,0,0.8944272,0.4472136,0,0.8944272,0.4472136,-0.1604764,0.907787,0.387518,-0.1604764,0.907787,0.387518,-0.1604764,0.907787,0.387518,0,0.8944272,0.4472136,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *152 { + a: -1.066369E-11,28.82852,13.81355,-8.405997,-13.81355,-8.405997,-19.68504,24.22527,-19.68504,28.62698,-15.74803,24.22527,19.68504,28.62698,19.68504,24.22527,15.74803,24.22527,1.693714E-13,-17.60683,19.68504,-17.60683,1.794362E-13,-19.57534,19.68504,-19.57534,-19.68504,-17.60683,1.691016E-12,-17.60683,-19.68504,-19.57534,4.591086E-12,-19.57534,19.68504,19.91739,15.74803,19.91739,19.68504,22.6733,15.74803,22.6733,19.68504,22.9928,19.68504,-14.25432,15.74803,22.9928,1.968504,-14.25432,-19.68504,19.91739,-19.68504,22.6733,-15.74803,19.91739,-15.74803,22.6733,-19.68504,22.9928,-15.74803,22.9928,-19.68504,-14.25432,-1.968504,-14.25432,-13.91943,-11.36516,13.91943,-11.36516,-15.16442,-12.88996,15.16442,-12.88996,-15.16442,4.224811,-15.78691,6.092298,15.16442,4.224811,15.78691,6.092298,-19.68504,8.803417,-19.68504,10.77192,-5.55926E-14,8.803417,-5.554125E-14,10.77192,15.78691,-13.72521,-15.78691,-13.72521,-19.68504,-19.57534,1.207088E-12,-19.57534,19.68504,8.803417,-1.644122E-12,8.803417,19.68504,10.77192,-1.608943E-12,10.77192,19.68504,-19.57534,-1.856882E-11,-19.57534,19.68504,19.68504,19.68504,-19.68504,2.273737E-13,19.68504,-19.68504,-19.68504,-19.68504,-5.684342E-14,21.44572,-0.8803417,19.68504,-2.201481E-12,22.32607,0.8803417,-19.68504,-2.201481E-12,17.5668,3.259973,-15.74803,19.91739,-19.68504,24.6418,-15.74803,22.6733,15.74803,22.6733,19.68504,24.6418,15.74803,19.91739,19.68504,-3.702273E-12,-19.68504,-3.702273E-12,-17.5668,3.259973,-22.32607,0.8803417,-21.44572,-0.8803417 + } + UVIndex: *132 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,1,2,45,46,45,2,31,47,32,48,32,47,49,51,50,52,50,51,53,22,54,24,54,22,55,57,56,58,56,57,59,58,57,60,62,61,63,61,62,64,63,62,65,63,64,66,63,65,67,66,65,68,70,69,69,70,71,72,71,70,73,72,70,74,72,73,75,72,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofCornerRound, Model::RootNode + C: "OO",4835927825433190148,0 + + ;Geometry::, Model::Mesh roofCornerRound + C: "OO",4861855651245358144,4835927825433190148 + + ;Material::roof, Model::Mesh roofCornerRound + C: "OO",7172,4835927825433190148 + + ;Material::roofLight, Model::Mesh roofCornerRound + C: "OO",7182,4835927825433190148 + + ;Material::stone, Model::Mesh roofCornerRound + C: "OO",7184,4835927825433190148 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerRound.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerRound.fbx.import new file mode 100644 index 0000000..4fd0152 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://3m0rmpi6khsm" +path="res://.godot/imported/roofCornerRound.fbx-eb3fd95aaf06c4c61b5e46f726e3bb21.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofCornerRound.fbx" +dest_files=["res://.godot/imported/roofCornerRound.fbx-eb3fd95aaf06c4c61b5e46f726e3bb21.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofFlat.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofFlat.fbx new file mode 100644 index 0000000..934e8f9 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofFlat.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 474 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofFlat.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofFlat.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5150063477802286312, "Model::roofFlat", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4660483202345245882, "Geometry::", "Mesh" { + Vertices: *108 { + a: 5,1.259017,-5,5,0,-5,5,0.759017,-4,5,0,5,5,0.759017,4,5,1.259017,5,5,0.759017,-4,5,0.759017,4,-5,0.759017,-4,-5,0.759017,4,-5,1.259017,-5,-5,0.759017,-4,-5,0,-5,-5,0,5,-5,0.759017,4,-5,1.259017,5,-5,0,-5,5,0,-5,-5,1.259017,-5,5,1.259017,-5,5,1.259017,-5,5,0.759017,-4,-5,1.259017,-5,-5,0.759017,-4,5,0,-5,-5,0,-5,5,0,5,-5,0,5,5,1.259017,5,-5,1.259017,5,5,0.759017,4,-5,0.759017,4,5,0,5,-5,0,5,5,1.259017,5,-5,1.259017,5 + } + PolygonVertexIndex: *60 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,11,-14,15,14,-14,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *180 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *72 { + a: 19.68504,4.95676,19.68504,0,15.74803,2.988256,-19.68504,0,-15.74803,2.988256,-19.68504,4.95676,-19.68504,-15.74803,-19.68504,15.74803,19.68504,-15.74803,19.68504,15.74803,-19.68504,4.95676,-15.74803,2.988256,-19.68504,3.663709E-12,19.68504,3.663709E-12,15.74803,2.988256,19.68504,4.95676,19.68504,0,-19.68504,0,19.68504,4.95676,-19.68504,4.95676,19.68504,19.82356,19.68504,15.42186,-19.68504,19.82356,-19.68504,15.42186,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,-19.68504,19.82356,19.68504,19.82356,-19.68504,15.42186,19.68504,15.42186,19.68504,0,-19.68504,0,19.68504,4.95676,-19.68504,4.95676 + } + UVIndex: *60 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,7,8,10,12,11,13,11,12,14,11,13,15,14,13,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *20 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofFlat, Model::RootNode + C: "OO",5150063477802286312,0 + + ;Geometry::, Model::Mesh roofFlat + C: "OO",4660483202345245882,5150063477802286312 + + ;Material::roof, Model::Mesh roofFlat + C: "OO",7172,5150063477802286312 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofFlat.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofFlat.fbx.import new file mode 100644 index 0000000..84ee8c4 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofFlat.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b80vf7ylba2d0" +path="res://.godot/imported/roofFlat.fbx-631d1a0c14c313b7f3cd3a16831ddd9a.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofFlat.fbx" +dest_files=["res://.godot/imported/roofFlat.fbx-631d1a0c14c313b7f3cd3a16831ddd9a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGable.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGable.fbx new file mode 100644 index 0000000..dc5816f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGable.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 511 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofGable.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofGable.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5729130405259222297, "Model::roofGable", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4739501972775222288, "Geometry::", "Mesh" { + Vertices: *342 { + a: 5.5,1.022748,-4.68436,5.5,5.707107,0,-5.5,1.022748,-4.68436,-5.5,5.707107,0,5.5,-5.414336E-15,-5,5,-5.414336E-15,-5,5.5,5,0,5,1,-4,4.75,1,-4,4.75,5,0,5.5,1.022748,4.68436,-5.5,1.022748,4.68436,5.5,5.707107,0,-5.5,5.707107,0,5,-5.414336E-15,5,5.5,-5.414336E-15,5,5,1,4,5.5,5,0,4.75,1,4,4.75,5,0,5.5,0.3535534,5.353553,5.5,-5.414336E-15,5,-5.5,0.3535534,5.353553,5,-5.414336E-15,5,-5,-5.414336E-15,5,-5.5,-3.609557E-15,5,5.5,0.3535534,-5.353553,5.5,-5.414336E-15,-5,5.5,1.022748,-4.68436,5.5,5,0,5.5,5.707107,0,5.5,1.022748,4.68436,5.5,-5.414336E-15,5,5.5,0.3535534,5.353553,5.5,-5.414336E-15,-5,5.5,0.3535534,-5.353553,5,-5.414336E-15,-5,-5.5,0.3535534,-5.353553,-5,-5.414336E-15,-5,-5.5,-3.609557E-15,-5,-4.75,1,-4,-5,1,-4,-4.75,5,0,-5.5,5,0,-5.5,-3.609557E-15,-5,-5,-5.414336E-15,-5,-5,-5.414336E-15,5,-5,1,4,-5.5,-3.609557E-15,5,-5.5,5,0,-4.75,1,4,-4.75,5,0,-5.5,0.3535534,-5.353553,-5.5,1.022748,-4.68436,-5.5,-3.609557E-15,-5,-5.5,5,0,-5.5,5.707107,0,-5.5,-3.609557E-15,5,-5.5,1.022748,4.68436,-5.5,0.3535534,5.353553,5,1,4,5,-5.414336E-15,4,5,-5.414336E-15,5,-5,-5.414336E-15,-4,-5,-5.414336E-15,-5,-5,1,-4,5,1,-4,5,-5.414336E-15,-5,5,-5.414336E-15,-4,-5,-5.414336E-15,4,-5,1,4,-5,-5.414336E-15,5,-4.75,-5.414336E-15,-4,-5,-5.414336E-15,-4,-4.75,1,-4,-5,1,-4,-5,-5.414336E-15,4,-4.75,-5.414336E-15,4,-5,1,4,-4.75,1,4,5,-5.414336E-15,-4,4.75,0,-4,5,1,-4,4.75,1,-4,5,-5.414336E-15,4,5,1,4,4.75,0,4,4.75,1,4,5,-5.414336E-15,5,5,-5.414336E-15,4,-5,-5.414336E-15,5,4.75,0,4,4.75,0,-4,-4.75,-5.414336E-15,4,-5,-5.414336E-15,4,-4.75,-5.414336E-15,-4,-5,-5.414336E-15,-5,-5,-5.414336E-15,-4,5,-5.414336E-15,-5,5,-5.414336E-15,-4,-4.75,-5.414336E-15,-4,-4.75,1,-4,-4.75,-5.414336E-15,4,-4.75,5,0,-4.75,1,4,4.75,1,-4,4.75,0,-4,4.75,5,0,4.75,0,4,4.75,1,4,5.5,0.3535534,5.353553,-5.5,0.3535534,5.353553,5.5,0.3535534,-5.353553,-5.5,0.3535534,-5.353553 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,17,-17,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,24,-23,26,28,-28,29,27,-29,30,29,-29,31,29,-31,32,29,-32,33,32,-32,34,36,-36,37,35,-37,38,37,-37,39,37,-39,40,42,-42,42,43,-42,43,44,-42,45,41,-45,46,48,-48,49,47,-49,50,47,-50,51,50,-50,52,54,-54,55,53,-55,56,53,-56,57,56,-56,58,56,-58,59,58,-58,60,62,-62,63,65,-65,66,68,-68,69,71,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,91,-91,93,92,-91,94,93,-91,93,95,-93,95,96,-93,97,96,-96,96,98,-93,99,92,-99,100,102,-102,103,101,-103,104,103,-103,105,107,-107,108,106,-108,109,108,-108,110,10,-112,11,111,-11,112,113,-1,2,0,-114 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: 0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *228 { + a: -21.65354,-10.19351,-21.65354,15.88793,21.65354,-10.19351,21.65354,15.88793,21.65354,-13.91943,19.68504,-13.91943,21.65354,13.91943,19.68504,-8.351655,18.70079,-8.351655,18.70079,13.91943,21.65354,-10.19351,-21.65354,-10.19351,21.65354,15.88793,-21.65354,15.88793,-19.68504,-13.91943,-21.65354,-13.91943,-19.68504,-8.351655,-21.65354,13.91943,-18.70079,-8.351655,-18.70079,13.91943,21.65354,15.88793,21.65354,13.91943,-21.65354,15.88793,19.68504,13.91943,-19.68504,13.91943,-21.65354,13.91943,21.07698,1.391943,19.68504,-1.389693E-13,18.44236,4.026565,2.979581E-29,19.68504,2.979581E-29,22.46892,-18.44236,4.026565,-19.68504,-1.389693E-13,-21.07698,1.391943,-21.65354,13.91943,-21.65354,15.88793,-19.68504,13.91943,21.65354,15.88793,19.68504,13.91943,21.65354,13.91943,-18.70079,-8.351655,-19.68504,-8.351655,-18.70079,13.91943,-21.65354,13.91943,-21.65354,-13.91943,-19.68504,-13.91943,19.68504,-13.91943,19.68504,-8.351655,21.65354,-13.91943,21.65354,13.91943,18.70079,-8.351655,18.70079,13.91943,-21.07698,1.391943,-18.44236,4.026565,-19.68504,-1.271246E-13,-1.432312E-28,19.68504,-1.432312E-28,22.46892,19.68504,-1.271246E-13,18.44236,4.026565,21.07698,1.391943,-15.74803,3.937008,-15.74803,-2.131628E-14,-19.68504,-2.131628E-14,-15.74803,-2.131628E-14,-19.68504,-2.131628E-14,-15.74803,3.937008,15.74803,3.937008,19.68504,-2.131628E-14,15.74803,-2.131628E-14,15.74803,-2.131628E-14,15.74803,3.937008,19.68504,-2.131628E-14,-18.70079,-2.131628E-14,-19.68504,-2.131628E-14,-18.70079,3.937008,-19.68504,3.937008,19.68504,-2.131628E-14,18.70079,-2.131628E-14,19.68504,3.937008,18.70079,3.937008,19.68504,-2.131628E-14,18.70079,0,19.68504,3.937008,18.70079,3.937008,-19.68504,-2.131628E-14,-19.68504,3.937008,-18.70079,0,-18.70079,3.937008,19.68504,19.68504,19.68504,15.74803,-19.68504,19.68504,18.70079,15.74803,18.70079,-15.74803,-18.70079,15.74803,-19.68504,15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,-15.74803,-2.131628E-14,-15.74803,3.937008,15.74803,-2.131628E-14,0,19.68504,15.74803,3.937008,15.74803,3.937008,15.74803,-1.130259E-13,-2.105819E-28,19.68504,-15.74803,-1.130259E-13,-15.74803,3.937008,21.65354,-13.91943,-21.65354,-13.91943,-21.65354,-13.91943,21.65354,-13.91943 + } + UVIndex: *216 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,12,11,13,11,12,14,16,15,17,15,16,18,17,16,19,17,18,20,22,21,23,21,22,24,23,22,25,24,22,26,28,27,29,27,28,30,29,28,31,29,30,32,29,31,33,32,31,34,36,35,37,35,36,38,37,36,39,37,38,40,42,41,42,43,41,43,44,41,45,41,44,46,48,47,49,47,48,50,47,49,51,50,49,52,54,53,55,53,54,56,53,55,57,56,55,58,56,57,59,58,57,60,62,61,63,65,64,66,68,67,69,71,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,91,90,93,92,90,94,93,90,93,95,92,95,96,92,97,96,95,96,98,92,99,92,98,100,102,101,103,101,102,104,103,102,105,107,106,108,106,107,109,108,107,110,10,111,11,111,10,112,113,0,2,0,113 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofGable, Model::RootNode + C: "OO",5729130405259222297,0 + + ;Geometry::, Model::Mesh roofGable + C: "OO",4739501972775222288,5729130405259222297 + + ;Material::roof, Model::Mesh roofGable + C: "OO",7172,5729130405259222297 + + ;Material::wood, Model::Mesh roofGable + C: "OO",7178,5729130405259222297 + + ;Material::stone, Model::Mesh roofGable + C: "OO",7184,5729130405259222297 + + ;Material::roofLight, Model::Mesh roofGable + C: "OO",7182,5729130405259222297 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGable.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGable.fbx.import new file mode 100644 index 0000000..58dca0c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGable.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dfjq0cv6a6cx7" +path="res://.godot/imported/roofGable.fbx-d6973c2f4dda9e86e020987b3c41d376.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGable.fbx" +dest_files=["res://.godot/imported/roofGable.fbx-d6973c2f4dda9e86e020987b3c41d376.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableDetail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableDetail.fbx new file mode 100644 index 0000000..fbb0a18 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableDetail.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 551 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofGableDetail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofGableDetail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5602347557047937292, "Model::roofGableDetail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5524959178686501195, "Geometry::", "Mesh" { + Vertices: *606 { + a: -5,1.022748,-4.68436,5,1.022748,-4.68436,-5,5.707107,2.887646E-14,5,5.707107,2.887646E-14,5,1.022748,4.68436,-5,1.022748,4.68436,5,5.707107,2.887646E-14,-5,5.707107,2.887646E-14,5,0.3535534,5.353553,5,-5.414336E-15,5,-5,0.3535534,5.353553,-5,-5.414336E-15,5,5,-5.414336E-15,-5,5,0.3535534,-5.353553,-5,-5.414336E-15,-5,-5,0.3535534,-5.353553,5,1,4,5,-5.414336E-15,4,5,-5.414336E-15,5,-5,-5.414336E-15,-4,-5,-5.414336E-15,-5,-5,1,-4,5,1,-4,5,-5.414336E-15,-5,5,-5.414336E-15,-4,-5,-5.414336E-15,4,-5,1,4,-5,-5.414336E-15,5,-4.75,1,-4,-5,1,-4,-4.75,5,2.887646E-14,-5.5,5,2.887646E-14,-5,-5.414336E-15,-5,-5.5,-0.3535534,-5.353553,-5,-0.3535534,-5.353553,-5.5,-0.3535534,5.353553,-5,-0.3535534,5.353553,-5.5,5,2.887646E-14,-5,-5.414336E-15,5,-5,1,4,-4.75,1,4,-4.75,5,2.887646E-14,-4.75,-5.414336E-15,-4,-5,-5.414336E-15,-4,-4.75,1,-4,-5,1,-4,-5,-5.414336E-15,4,-4.75,-5.414336E-15,4,-5,1,4,-4.75,1,4,5.5,-0.3535534,-5.353553,5,-0.3535534,-5.353553,5.5,5,2.887646E-14,5,-5.414336E-15,-5,5,1,-4,4.75,1,-4,4.75,5,2.887646E-14,5,-0.3535534,5.353553,5.5,-0.3535534,5.353553,5,-5.414336E-15,5,5.5,5,2.887646E-14,5,1,4,4.75,1,4,4.75,5,2.887646E-14,5,-5.414336E-15,4,5,1,4,4.75,0,4,4.75,1,4,5,-5.414336E-15,-4,4.75,0,-4,5,1,-4,4.75,1,-4,5.5,6.414214,-0.7071068,5.5,5.707107,-0.7071068,5.5,6.414214,0.7071068,5.5,5,2.887646E-14,5.5,5.707107,0.7071068,5.5,-0.3535534,-5.353553,5.5,0.3535534,-6.06066,5.5,-0.3535534,5.353553,5.5,0.3535534,6.06066,5.5,0.3535534,6.06066,5,0.3535534,6.06066,5.5,5.707107,0.7071068,5,5.707107,0.7071068,5.5,0.3535534,6.06066,5.5,-0.3535534,5.353553,5,0.3535534,6.06066,5,-0.3535534,5.353553,5.5,-0.3535534,-5.353553,5.5,0.3535534,-6.06066,5,-0.3535534,-5.353553,5,0.3535534,-6.06066,5.5,0.3535534,-6.06066,5.5,5.707107,-0.7071068,5,0.3535534,-6.06066,5,5.707107,-0.7071068,5,-5.414336E-15,-5,5,-0.3535534,-5.353553,5,0.3535534,-5.353553,5,0.3535534,-6.06066,5,5.707107,-0.7071068,5,1.022748,-4.68436,5,5.707107,2.887646E-14,5,6.414214,-0.7071068,5,6.414214,0.7071068,5,5.707107,0.7071068,5,1.022748,4.68436,5,0.3535534,6.06066,5,0.3535534,5.353553,5,-0.3535534,5.353553,5,-5.414336E-15,5,-5.5,0.3535534,6.06066,-5.5,-0.3535534,5.353553,-5.5,5.707107,0.7071068,-5.5,5,2.887646E-14,-5.5,6.414214,0.7071068,-5.5,6.414214,-0.7071068,-5.5,5.707107,-0.7071068,-5.5,-0.3535534,-5.353553,-5.5,0.3535534,-6.06066,-5.5,0.3535534,-6.06066,-5,0.3535534,-6.06066,-5.5,5.707107,-0.7071068,-5,5.707107,-0.7071068,-5,-0.3535534,-5.353553,-5,0.3535534,-6.06066,-5.5,-0.3535534,-5.353553,-5.5,0.3535534,-6.06066,-5,-0.3535534,5.353553,-5.5,-0.3535534,5.353553,-5,0.3535534,6.06066,-5.5,0.3535534,6.06066,-5,0.3535534,6.06066,-5.5,0.3535534,6.06066,-5,5.707107,0.7071068,-5.5,5.707107,0.7071068,-5,6.414214,-0.7071068,-5,5.707107,-0.7071068,-5,6.414214,0.7071068,-5,5.707107,2.887646E-14,-5,5.707107,0.7071068,-5,1.022748,-4.68436,-5,1.022748,4.68436,-5,0.3535534,6.06066,-5,0.3535534,5.353553,-5,-0.3535534,5.353553,-5,-5.414336E-15,5,-5,0.3535534,-5.353553,-5,0.3535534,-6.06066,-5,-0.3535534,-5.353553,-5,-5.414336E-15,-5,-5,5.707107,0.7071068,-5.5,5.707107,0.7071068,-5,6.414214,0.7071068,-5.5,6.414214,0.7071068,-5,6.414214,0.7071068,-5.5,6.414214,0.7071068,-5,6.414214,-0.7071068,-5.5,6.414214,-0.7071068,-5.5,5.707107,-0.7071068,-5,5.707107,-0.7071068,-5.5,6.414214,-0.7071068,-5,6.414214,-0.7071068,5,5.707107,-0.7071068,5.5,5.707107,-0.7071068,5,6.414214,-0.7071068,5.5,6.414214,-0.7071068,5.5,6.414214,-0.7071068,5.5,6.414214,0.7071068,5,6.414214,-0.7071068,5,6.414214,0.7071068,5.5,5.707107,0.7071068,5,5.707107,0.7071068,5.5,6.414214,0.7071068,5,6.414214,0.7071068,5,-5.414336E-15,5,5,-5.414336E-15,4,-5,-5.414336E-15,5,4.75,0,4,4.75,0,-4,-4.75,-5.414336E-15,4,-5,-5.414336E-15,4,-4.75,-5.414336E-15,-4,-5,-5.414336E-15,-5,-5,-5.414336E-15,-4,5,-5.414336E-15,-5,5,-5.414336E-15,-4,-4.75,-5.414336E-15,-4,-4.75,1,-4,-4.75,-5.414336E-15,4,-4.75,5,2.887646E-14,-4.75,1,4,4.75,1,-4,4.75,0,-4,4.75,5,2.887646E-14,4.75,0,4,4.75,1,4,-5,0.3535534,5.353553,5,0.3535534,5.353553,5,0.3535534,-5.353553,-5,0.3535534,-5.353553 + } + PolygonVertexIndex: *384 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,21,-21,22,24,-24,25,27,-27,28,30,-30,31,29,-31,29,31,-33,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,38,-38,40,39,-38,41,40,-38,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,53,-53,55,54,-53,56,55,-53,57,59,-59,60,58,-60,61,60,-60,62,60,-62,63,60,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,75,77,-74,78,73,-78,79,75,-77,80,79,-77,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,100,99,-102,102,101,-100,103,101,-103,104,101,-104,105,104,-104,106,105,-104,103,107,-107,108,106,-108,109,108,-108,108,109,-111,111,110,-110,112,114,-114,115,113,-115,114,116,-116,116,117,-116,117,118,-116,115,118,-120,120,119,-119,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,140,-140,140,142,-139,143,140,-142,144,143,-142,145,143,-145,144,146,-146,147,145,-147,142,148,-139,149,138,-149,149,148,-151,151,150,-149,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,179,-179,181,180,-179,182,181,-179,181,183,-181,183,184,-181,185,184,-184,184,186,-181,187,180,-187,188,190,-190,191,189,-191,192,191,-191,193,195,-195,196,194,-196,197,196,-196,198,199,-6,4,5,-200,200,201,-2,0,1,-202 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1152 { + a: 0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *404 { + a: 19.68504,-10.19351,-19.68504,-10.19351,19.68504,15.88793,-19.68504,15.88793,19.68504,-10.19351,-19.68504,-10.19351,19.68504,15.88793,-19.68504,15.88793,19.68504,15.88793,19.68504,13.91943,-19.68504,15.88793,-19.68504,13.91943,-19.68504,13.91943,-19.68504,15.88793,19.68504,13.91943,19.68504,15.88793,-15.74803,3.937008,-15.74803,-2.131628E-14,-19.68504,-2.131628E-14,-15.74803,-2.131628E-14,-19.68504,-2.131628E-14,-15.74803,3.937008,15.74803,3.937008,19.68504,-2.131628E-14,15.74803,-2.131628E-14,15.74803,-2.131628E-14,15.74803,3.937008,19.68504,-2.131628E-14,-18.70079,-8.351655,-19.68504,-8.351655,-18.70079,13.91943,-21.65354,13.91943,-19.68504,-13.91943,-21.65354,-15.88793,-19.68504,-15.88793,21.65354,-15.88793,19.68504,-15.88793,21.65354,13.91943,19.68504,-13.91943,19.68504,-8.351655,18.70079,-8.351655,18.70079,13.91943,-18.70079,-2.131628E-14,-19.68504,-2.131628E-14,-18.70079,3.937008,-19.68504,3.937008,19.68504,-2.131628E-14,18.70079,-2.131628E-14,19.68504,3.937008,18.70079,3.937008,21.65354,-15.88793,19.68504,-15.88793,21.65354,13.91943,19.68504,-13.91943,19.68504,-8.351655,18.70079,-8.351655,18.70079,13.91943,-19.68504,-15.88793,-21.65354,-15.88793,-19.68504,-13.91943,-21.65354,13.91943,-19.68504,-8.351655,-18.70079,-8.351655,-18.70079,13.91943,-19.68504,-2.131628E-14,-19.68504,3.937008,-18.70079,0,-18.70079,3.937008,19.68504,-2.131628E-14,18.70079,0,19.68504,3.937008,18.70079,3.937008,2.783885,25.25281,2.783885,22.46892,-2.783885,25.25281,-1.136868E-13,19.68504,-2.783885,22.46892,21.07698,-1.391943,23.86087,1.391943,-21.07698,-1.391943,-23.86087,1.391943,21.65354,-15.88793,19.68504,-15.88793,21.65354,13.91943,19.68504,13.91943,21.65354,17.85643,21.65354,13.91943,19.68504,17.85643,19.68504,13.91943,-21.65354,13.91943,-21.65354,17.85643,-19.68504,13.91943,-19.68504,17.85643,-21.65354,-15.88793,-21.65354,13.91943,-19.68504,-15.88793,-19.68504,13.91943,-19.68504,-1.154423E-13,-21.07698,-1.391943,-21.07698,1.391943,-23.86087,1.391943,-2.783885,22.46892,-18.44236,4.026565,1.136868E-13,22.46892,-2.783885,25.25281,2.783885,25.25281,2.783885,22.46892,18.44236,4.026565,23.86087,1.391943,21.07698,1.391943,21.07698,-1.391943,19.68504,-1.154423E-13,23.86087,1.391943,21.07698,-1.391943,2.783885,22.46892,1.136868E-13,19.68504,2.783885,25.25281,-2.783885,25.25281,-2.783885,22.46892,-21.07698,-1.391943,-23.86087,1.391943,21.65354,-15.88793,19.68504,-15.88793,21.65354,13.91943,19.68504,13.91943,19.68504,13.91943,19.68504,17.85643,21.65354,13.91943,21.65354,17.85643,-19.68504,13.91943,-21.65354,13.91943,-19.68504,17.85643,-21.65354,17.85643,-19.68504,-15.88793,-21.65354,-15.88793,-19.68504,13.91943,-21.65354,13.91943,2.783885,25.25281,2.783885,22.46892,-2.783885,25.25281,-1.122715E-13,22.46892,-2.783885,22.46892,18.44236,4.026565,-18.44236,4.026565,-23.86087,1.391943,-21.07698,1.391943,-21.07698,-1.391943,-19.68504,-9.810117E-14,21.07698,1.391943,23.86087,1.391943,21.07698,-1.391943,19.68504,-9.810117E-14,-19.68504,22.46892,-21.65354,22.46892,-19.68504,25.25281,-21.65354,25.25281,19.68504,2.783885,21.65354,2.783885,19.68504,-2.783885,21.65354,-2.783885,21.65354,22.46892,19.68504,22.46892,21.65354,25.25281,19.68504,25.25281,-19.68504,22.46892,-21.65354,22.46892,-19.68504,25.25281,-21.65354,25.25281,-21.65354,-2.783885,-21.65354,2.783885,-19.68504,-2.783885,-19.68504,2.783885,21.65354,22.46892,19.68504,22.46892,21.65354,25.25281,19.68504,25.25281,19.68504,19.68504,19.68504,15.74803,-19.68504,19.68504,18.70079,15.74803,18.70079,-15.74803,-18.70079,15.74803,-19.68504,15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,-15.74803,-2.131628E-14,-15.74803,3.937008,15.74803,-2.131628E-14,1.136868E-13,19.68504,15.74803,3.937008,15.74803,3.937008,15.74803,-1.130259E-13,-1.136868E-13,19.68504,-15.74803,-1.130259E-13,-15.74803,3.937008,-19.68504,-13.91943,19.68504,-13.91943,-19.68504,-13.91943,19.68504,-13.91943 + } + UVIndex: *384 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,21,20,22,24,23,25,27,26,28,30,29,31,29,30,29,31,32,31,33,32,34,32,33,35,37,36,38,36,37,39,38,37,40,39,37,41,40,37,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,53,52,55,54,52,56,55,52,57,59,58,60,58,59,61,60,59,62,60,61,63,60,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,75,77,73,78,73,77,79,75,76,80,79,76,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,100,99,101,102,101,99,103,101,102,104,101,103,105,104,103,106,105,103,103,107,106,108,106,107,109,108,107,108,109,110,111,110,109,112,114,113,115,113,114,114,116,115,116,117,115,117,118,115,115,118,119,120,119,118,121,123,122,124,122,123,125,127,126,128,126,127,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,140,139,140,142,138,143,140,141,144,143,141,145,143,144,144,146,145,147,145,146,142,148,138,149,138,148,149,148,150,151,150,148,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,179,178,181,180,178,182,181,178,181,183,180,183,184,180,185,184,183,184,186,180,187,180,186,188,190,189,191,189,190,192,191,190,193,195,194,196,194,195,197,196,195,198,199,5,4,5,199,200,201,1,0,1,201 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *128 { + a: 0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofGableDetail, Model::RootNode + C: "OO",5602347557047937292,0 + + ;Geometry::, Model::Mesh roofGableDetail + C: "OO",5524959178686501195,5602347557047937292 + + ;Material::roof, Model::Mesh roofGableDetail + C: "OO",7172,5602347557047937292 + + ;Material::wood, Model::Mesh roofGableDetail + C: "OO",7178,5602347557047937292 + + ;Material::stone, Model::Mesh roofGableDetail + C: "OO",7184,5602347557047937292 + + ;Material::roofLight, Model::Mesh roofGableDetail + C: "OO",7182,5602347557047937292 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableDetail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableDetail.fbx.import new file mode 100644 index 0000000..d06ae1f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableDetail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://stwilfru18nn" +path="res://.godot/imported/roofGableDetail.fbx-70082e99c2c58515283892d3d739c1d2.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableDetail.fbx" +dest_files=["res://.godot/imported/roofGableDetail.fbx-70082e99c2c58515283892d3d739c1d2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableEnd.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableEnd.fbx new file mode 100644 index 0000000..7e84f9a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableEnd.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 596 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofGableEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofGableEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5726670140477670237, "Model::roofGableEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4930202243591708585, "Geometry::", "Mesh" { + Vertices: *240 { + a: 5,1,4,5,-5.414336E-15,4,5,-5.414336E-15,5,5,1,-4,5,-5.414336E-15,-5,5,-5.414336E-15,-4,5,-5.414336E-15,-4,4.75,0,-4,5,1,-4,4.75,1,-4,5,-5.414336E-15,4,5,1,4,4.75,0,4,4.75,1,4,4.75,1,-4,4.75,0,-4,4.75,5,0,4.75,0,4,4.75,1,4,5,-5.414336E-15,5,5,-5.414336E-15,4,-5,0,5,4.75,0,4,4.75,0,-4,-5,0,-5,5,-5.414336E-15,-5,5,-5.414336E-15,-4,-4.68436,1.022748,-4.68436,-1.443823E-14,5.707107,0,-4.68436,1.022748,4.68436,5,-5.414336E-15,-5,5.5,-5.414336E-15,-5,-5,0,-5,5.5,0.3535534,-5.353553,-5.353553,0.3535534,-5.353553,-4.68436,1.022748,4.68436,-1.443823E-14,5.707107,0,5.5,1.022748,4.68436,5.5,5.707107,0,5.5,-5.414336E-15,-5,5,-5.414336E-15,-5,5.5,5,0,5,1,-4,4.75,1,-4,4.75,5,0,5.5,0.3535534,-5.353553,5.5,-5.414336E-15,-5,5.5,1.022748,-4.68436,5.5,5,0,5.5,5.707107,0,5.5,1.022748,4.68436,5.5,-5.414336E-15,5,5.5,0.3535534,5.353553,5.5,0.3535534,5.353553,5.5,-5.414336E-15,5,-5.353553,0.3535534,5.353553,5,-5.414336E-15,5,-5,0,5,-5.353553,0.3535534,-5.353553,-5.353553,0.3535534,-4.5,-5,0,-5,-5,0,5,-5.353553,0.3535534,5.353553,5,-5.414336E-15,5,5.5,-5.414336E-15,5,5,1,4,5.5,5,0,4.75,1,4,4.75,5,0,-4.68436,1.022748,-4.68436,5.5,1.022748,-4.68436,-1.443823E-14,5.707107,0,5.5,5.707107,0,-5.353553,0.3535534,-5.353553,-5.353553,0.3535534,-4.5,-5.353553,0.3535534,5.353553,-5.353553,0.3535534,5.353553,5.5,0.3535534,5.353553,5.5,0.3535534,-5.353553,-5.353553,0.3535534,-5.353553 + } + PolygonVertexIndex: *150 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,17,-17,19,21,-21,22,20,-22,23,22,-22,21,24,-24,24,25,-24,26,23,-26,27,29,-29,30,32,-32,33,31,-33,34,33,-33,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,42,-42,44,43,-42,45,47,-47,48,46,-48,49,48,-48,50,48,-50,51,48,-51,52,51,-51,53,55,-55,56,54,-56,57,56,-56,58,60,-60,61,59,-61,62,59,-62,63,65,-65,66,64,-66,67,66,-66,68,66,-68,69,71,-71,72,70,-72,73,74,-28,29,27,-75,75,29,-75,76,77,-36,37,35,-78,78,79,-71,69,70,-80 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *450 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *160 { + a: -15.74803,3.937008,-15.74803,-2.131628E-14,-19.68504,-2.131628E-14,15.74803,3.937008,19.68504,-2.131628E-14,15.74803,-2.131628E-14,19.68504,-2.131628E-14,18.70079,0,19.68504,3.937008,18.70079,3.937008,-19.68504,-2.131628E-14,-19.68504,3.937008,-18.70079,0,-18.70079,3.937008,15.74803,3.937008,15.74803,-1.130259E-13,-2.109867E-28,19.68504,-15.74803,-1.130259E-13,-15.74803,3.937008,19.68504,19.68504,19.68504,15.74803,-19.68504,19.68504,18.70079,15.74803,18.70079,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,19.68504,-15.74803,-18.44236,-10.19351,-5.62032E-29,15.88793,18.44236,-10.19351,-19.68504,13.91943,-21.65354,13.91943,19.68504,13.91943,-21.65354,15.88793,21.07698,15.88793,-18.44236,-10.19351,-5.684342E-14,15.88793,21.65354,-10.19351,21.65354,15.88793,21.65354,-13.91943,19.68504,-13.91943,21.65354,13.91943,19.68504,-8.351655,18.70079,-8.351655,18.70079,13.91943,21.07698,1.391943,19.68504,-1.445037E-13,18.44236,4.026565,-2.91407E-30,19.68504,-2.91407E-30,22.46892,-18.44236,4.026565,-19.68504,-1.445037E-13,-21.07698,1.391943,21.65354,15.88793,21.65354,13.91943,-21.07698,15.88793,19.68504,13.91943,-19.68504,13.91943,-21.07698,15.88793,-17.71654,15.88793,-19.68504,13.91943,19.68504,13.91943,21.07698,15.88793,-19.68504,-13.91943,-21.65354,-13.91943,-19.68504,-8.351655,-21.65354,13.91943,-18.70079,-8.351655,-18.70079,13.91943,18.44236,-10.19351,-21.65354,-10.19351,5.684342E-14,15.88793,-21.65354,15.88793,-21.07698,-13.91943,-17.71654,-13.91943,21.07698,-13.91943,-21.07698,-13.91943,21.65354,-13.91943,-21.65354,-13.91943,21.07698,-13.91943 + } + UVIndex: *150 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,17,16,19,21,20,22,20,21,23,22,21,21,24,23,24,25,23,26,23,25,27,29,28,30,32,31,33,31,32,34,33,32,35,37,36,38,36,37,39,41,40,42,40,41,43,42,41,44,43,41,45,47,46,48,46,47,49,48,47,50,48,49,51,48,50,52,51,50,53,55,54,56,54,55,57,56,55,58,60,59,61,59,60,62,59,61,63,65,64,66,64,65,67,66,65,68,66,67,69,71,70,72,70,71,73,74,27,29,27,74,75,29,74,76,77,35,37,35,77,78,79,70,69,70,79 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *50 { + a: 0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofGableEnd, Model::RootNode + C: "OO",5726670140477670237,0 + + ;Geometry::, Model::Mesh roofGableEnd + C: "OO",4930202243591708585,5726670140477670237 + + ;Material::wood, Model::Mesh roofGableEnd + C: "OO",7178,5726670140477670237 + + ;Material::stone, Model::Mesh roofGableEnd + C: "OO",7184,5726670140477670237 + + ;Material::roof, Model::Mesh roofGableEnd + C: "OO",7172,5726670140477670237 + + ;Material::roofLight, Model::Mesh roofGableEnd + C: "OO",7182,5726670140477670237 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableEnd.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableEnd.fbx.import new file mode 100644 index 0000000..285f074 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://mh0id3suyqkk" +path="res://.godot/imported/roofGableEnd.fbx-55ce421580d2f13cdc1de4e85b0c2b77.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableEnd.fbx" +dest_files=["res://.godot/imported/roofGableEnd.fbx-55ce421580d2f13cdc1de4e85b0c2b77.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableTop.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableTop.fbx new file mode 100644 index 0000000..4fe5f28 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableTop.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 638 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofGableTop.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofGableTop.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4737057367941194884, "Model::roofGableTop", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4859968727534629469, "Geometry::", "Mesh" { + Vertices: *270 { + a: 5,3.759017,4.135397E-10,-5,3.759017,1.170302E-08,5,1.259017,-5,-5,1.259017,-5,-5,-6.923166E-10,-5,5,6.923166E-10,-5,-5,1.259017,-5,5,1.259017,-5,5,3.759017,4.135397E-10,5,1.259017,5,-5,3.759017,1.170302E-08,-5,1.259017,5,5,6.923166E-10,5,-5,6.923166E-10,5,5,1.259017,5,-5,1.259017,5,5,2.5,1.170132E-08,4.75,2.5,1.168676E-08,5,0.5,4,4.75,0.5,4,5,1.259017,-5,5,6.923166E-10,-5,5,3.759017,4.135397E-10,5,0.5,-4,5,2.5,1.170132E-08,5,1.259017,5,5,0.5,4,5,6.923166E-10,5,-4.75,2.5,1.168518E-08,-5,2.5,1.168518E-08,-4.75,0.5,4,-5,0.5,4,-4.75,2.5,1.168518E-08,-4.75,0.5,-4,-5,2.5,1.168518E-08,-5,0.5,-4,5,2.5,1.170132E-08,5,0.5,-4,4.75,2.5,1.168676E-08,4.75,0.5,-4,-5,-6.923166E-10,-5,-5,1.259017,-5,-5,0.5,-4,-5,3.759017,1.170302E-08,-5,2.5,1.168518E-08,-5,0.5,4,-5,1.259017,5,-5,6.923166E-10,5,5,6.923166E-10,-4,-5,3.964207E-09,4,5,6.923166E-10,4,-5,3.964236E-09,-4,5,6.923166E-10,-4,4.75,2.587376E-09,-4,5,0.5,-4,4.75,0.5,-4,5,6.923166E-10,4,5,0.5,4,4.75,2.587376E-09,4,4.75,0.5,4,-4.75,6.923166E-10,-4,-5,3.964236E-09,-4,-4.75,0.5,-4,-5,0.5,-4,-4.75,6.923166E-10,4,-4.75,0.5,4,-5,3.964207E-09,4,-5,0.5,4,4.75,0.5,-4,4.75,2.587376E-09,-4,4.75,2.5,1.168676E-08,4.75,2.587376E-09,4,4.75,0.5,4,-4.75,6.923166E-10,-4,-4.75,0.5,-4,-4.75,6.923166E-10,4,-4.75,2.5,1.168518E-08,-4.75,0.5,4,5,6.923166E-10,4,4.75,2.587376E-09,4,5,6.923166E-10,5,-5,6.923166E-10,5,-4.75,6.923166E-10,4,-5,3.964207E-09,4,-4.75,6.923166E-10,-4,-5,-6.923166E-10,-5,-5,3.964236E-09,-4,4.75,2.587376E-09,-4,5,6.923166E-10,-4,5,6.923166E-10,-5 + } + PolygonVertexIndex: *168 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,24,-23,26,24,-26,27,26,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,43,-43,45,43,-45,46,43,-46,47,46,-46,23,48,-22,49,47,-46,26,27,-51,51,42,-41,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,71,-71,73,75,-75,76,74,-76,77,76,-76,78,80,-80,81,79,-81,82,79,-82,83,82,-82,84,79,-83,84,85,-80,86,85,-85,79,85,-88,87,85,-89,89,88,-86 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *504 { + a: 0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *180 { + a: -19.68504,6.618439,19.68504,6.618439,-19.68504,-15.3901,19.68504,-15.3901,19.68504,7.818358E-08,-19.68504,8.363489E-08,19.68504,4.95676,-19.68504,4.95676,19.68504,6.618439,19.68504,-15.3901,-19.68504,6.618439,-19.68504,-15.3901,19.68504,-8.550698E-08,-19.68504,-8.550698E-08,19.68504,4.956759,-19.68504,4.95676,-19.68504,4.401708,-18.70079,4.401708,-19.68504,-13.20513,-18.70079,-13.20513,19.68504,4.956759,19.68504,1.127199E-07,-1.072451E-09,14.79928,15.74803,1.968504,-4.551252E-08,9.84252,-19.68504,4.956759,-15.74803,1.968504,-19.68504,3.499318E-09,18.70079,4.401709,19.68504,4.401709,18.70079,-13.20513,19.68504,-13.20512,-18.70079,4.401709,-18.70079,-13.20512,-19.68504,4.401709,-19.68504,-13.20512,19.68504,4.401709,19.68504,-13.20513,18.70079,4.401709,18.70079,-13.20513,-19.68504,-1.414882E-07,-19.68504,4.956759,-15.74803,1.968504,5.095441E-08,14.79928,5.088415E-08,9.84252,15.74803,1.968504,19.68504,4.956759,19.68504,-2.549035E-07,15.74803,1.127199E-07,15.74803,-2.420221E-07,-15.74803,7.605594E-08,-15.74803,-2.420242E-07,19.68504,2.725656E-09,18.70079,1.018652E-08,19.68504,1.968504,18.70079,1.968504,-19.68504,2.725656E-09,-19.68504,1.968504,-18.70079,1.018652E-08,-18.70079,1.968504,-18.70079,2.725657E-09,-19.68504,1.560723E-08,-18.70079,1.968504,-19.68504,1.968504,18.70079,2.725657E-09,18.70079,1.968504,19.68504,1.560711E-08,19.68504,1.968504,15.74803,1.968504,15.74803,1.519431E-07,-4.492175E-08,9.84252,-15.74803,1.519431E-07,-15.74803,1.968504,-15.74803,-3.799647E-07,-15.74803,1.968504,15.74803,-3.799647E-07,4.600503E-08,9.84252,15.74803,1.968504,19.68504,15.74803,18.70079,15.74803,19.68504,19.68504,-19.68504,19.68504,-18.70079,15.74803,-19.68504,15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,18.70079,-15.74803,19.68504,-15.74803,19.68504,-19.68504 + } + UVIndex: *168 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,24,22,26,24,25,27,26,25,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,43,42,45,43,44,46,43,45,47,46,45,23,48,21,49,47,45,26,27,50,51,42,40,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,71,70,73,75,74,76,74,75,77,76,75,78,80,79,81,79,80,82,79,81,83,82,81,84,79,82,84,85,79,86,85,84,79,85,87,87,85,88,89,88,85 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *56 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofGableTop, Model::RootNode + C: "OO",4737057367941194884,0 + + ;Geometry::, Model::Mesh roofGableTop + C: "OO",4859968727534629469,4737057367941194884 + + ;Material::roof, Model::Mesh roofGableTop + C: "OO",7172,4737057367941194884 + + ;Material::wood, Model::Mesh roofGableTop + C: "OO",7178,4737057367941194884 + + ;Material::stone, Model::Mesh roofGableTop + C: "OO",7184,4737057367941194884 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableTop.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableTop.fbx.import new file mode 100644 index 0000000..35043a2 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableTop.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dg7g4gkk6vbit" +path="res://.godot/imported/roofGableTop.fbx-a31f8585a843bb2e3533a33af13dd8a6.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofGableTop.fbx" +dest_files=["res://.godot/imported/roofGableTop.fbx-a31f8585a843bb2e3533a33af13dd8a6.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHigh.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHigh.fbx new file mode 100644 index 0000000..8336993 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHigh.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 681 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHigh.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHigh.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5210166448733545509, "Model::roofHigh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5617412759719377217, "Geometry::", "Mesh" { + Vertices: *294 { + a: -4,0,5,-4,0,4.75,-5,0,5,-4,0,-4.75,-4,0,-5,-5,0,-5,4,0,-4.75,4,0,4.75,4,0,-5,4,0,5,5,0,-5,5,0,5,5,11.40711,-5,5,10,-5,5,11.40711,5,5,0,-5,5,0,5,5,10,5,4,0,4.75,-4,0,4.75,4,9,4.75,-4,1,4.75,-4,0,-4.75,4,0,-4.75,-4,1,-4.75,4,9,-4.75,-4,0,5,-5,0,5,-4,1,5,-5,0,-5,-4,0,-5,-4,1,-5,4,0,-5,5,0,-5,4,9,-5,5,10,-5,5,0,5,4,0,5,5,10,5,4,9,5,4,0,4.75,4,9,4.75,4,0,5,4,9,5,-4,1,4.75,-4,0,4.75,-4,1,5,-4,0,5,-4,1,-5,-4,0,-5,-4,1,-4.75,-4,0,-4.75,4,0,-5,4,9,-5,4,0,-4.75,4,9,-4.75,-5.353553,-0.3535534,5,-5.353553,-0.3535534,-5,-5.707107,-3.609557E-15,5,-5.707107,-3.609557E-15,-5,-5,0,-5,-5.353553,-0.3535534,-5,-5,0,5,-5.353553,-0.3535534,5,-5.353553,-0.3535534,-5,-5.707107,-3.609557E-15,-5,-4.707107,1,-5,4,9.707107,-5,4,10.40711,-5,5,11.40711,-5,4,9,4.75,-4,1,4.75,4,9,5,-4,1,5,4,9,-5,-4,1,-5,4,9,-4.75,-4,1,-4.75,4,10.40711,-5,5,11.40711,-5,4,10.40711,5,5,11.40711,5,4,9.707107,-5,4,10.40711,-5,4,9.707107,5,4,10.40711,5,-5.353553,-0.3535534,5,-5.707107,-3.609557E-15,5,-4.707107,1,5,4,9.707107,5,4,10.40711,5,5,11.40711,5,4,9.707107,-5,4,9.707107,5,-4.707107,1,-5,-4.707107,1,5,-5.707107,-3.609557E-15,-5,-5.707107,-3.609557E-15,5 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,3,6,-2,7,1,-7,6,8,-8,7,8,-10,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,16,-15,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,31,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,65,-30,66,29,-66,31,29,-67,67,31,-67,34,31,-68,35,34,-68,68,35,-68,69,35,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,27,-88,88,87,-28,28,88,-28,89,88,-29,39,89,-29,38,89,-40,90,89,-39,91,90,-39,92,94,-94,95,93,-95,94,96,-96,97,95,-97 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *196 { + a: -15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-18.70079,15.74803,18.70079,15.74803,-19.68504,15.74803,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,44.90987,19.68504,39.37008,-19.68504,44.90987,19.68504,1.019945E-13,-19.68504,1.019945E-13,-19.68504,39.37008,15.74803,0,-15.74803,0,15.74803,35.43307,-15.74803,3.937008,15.74803,0,-15.74803,0,15.74803,3.937008,-15.74803,35.43307,-15.74803,0,-19.68504,0,-15.74803,3.937008,19.68504,9.728794E-12,15.74803,0,15.74803,3.937008,-15.74803,0,-19.68504,0,-15.74803,35.43307,-19.68504,39.37008,19.68504,1.097019E-30,15.74803,1.097019E-30,19.68504,39.37008,15.74803,35.43307,18.70079,0,18.70079,35.43307,19.68504,0,19.68504,35.43307,-18.70079,3.937008,-18.70079,0,-19.68504,3.937008,-19.68504,0,19.68504,3.937008,19.68504,0,18.70079,3.937008,18.70079,0,-19.68504,0,-19.68504,35.43307,-18.70079,0,-18.70079,35.43307,19.68504,13.91943,-19.68504,13.91943,19.68504,15.88793,-19.68504,15.88793,19.68504,-13.91943,19.68504,-15.88793,-19.68504,-13.91943,-19.68504,-15.88793,21.07698,-1.391943,22.46892,9.714583E-12,18.53192,3.937008,-15.74803,38.21696,-15.74803,40.97286,-19.68504,44.90987,-18.70079,36.19051,-18.70079,-8.351655,-19.68504,36.19051,-19.68504,-8.351655,19.68504,36.19051,19.68504,-8.351655,18.70079,36.19051,18.70079,-8.351655,-19.68504,40.10773,-19.68504,45.6755,19.68504,40.10773,19.68504,45.6755,-19.68504,38.21696,-19.68504,40.97286,19.68504,38.21696,19.68504,40.97286,-21.07698,-1.391943,-22.46892,1.277255E-13,-18.53192,3.937008,15.74803,38.21696,15.74803,40.97286,19.68504,44.90987,-19.68504,38.15901,19.68504,38.15901,-19.68504,-10.32016,19.68504,-10.32016,-19.68504,-15.88793,19.68504,-15.88793 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,3,6,1,7,1,6,6,8,7,7,8,9,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,16,14,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,31,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,65,29,66,29,65,31,29,66,67,31,66,34,31,67,35,34,67,68,35,67,69,35,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,27,87,88,87,27,28,88,27,89,88,28,39,89,28,38,89,39,90,89,38,91,90,38,92,94,93,95,93,94,94,96,95,97,95,96 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHigh, Model::RootNode + C: "OO",5210166448733545509,0 + + ;Geometry::, Model::Mesh roofHigh + C: "OO",5617412759719377217,5210166448733545509 + + ;Material::woodDark, Model::Mesh roofHigh + C: "OO",7186,5210166448733545509 + + ;Material::wood, Model::Mesh roofHigh + C: "OO",7178,5210166448733545509 + + ;Material::roofRed, Model::Mesh roofHigh + C: "OO",7188,5210166448733545509 + + ;Material::roofRedLight, Model::Mesh roofHigh + C: "OO",7190,5210166448733545509 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHigh.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHigh.fbx.import new file mode 100644 index 0000000..2bb20a5 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHigh.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cld3k8l01q4lc" +path="res://.godot/imported/roofHigh.fbx-51be8a20da5748b16bbf166803b20118.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHigh.fbx" +dest_files=["res://.godot/imported/roofHigh.fbx-51be8a20da5748b16bbf166803b20118.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCorner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCorner.fbx new file mode 100644 index 0000000..f08e143 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCorner.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 732 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4629918025045835511, "Model::roofHighCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5184387038802780010, "Geometry::", "Mesh" { + Vertices: *186 { + a: 5,10.40711,-4,4,10.40711,-4,5,11.40711,-5,4,10.40711,-5,5,11.40711,-5,4,10.40711,-4,4,9.707107,-5,4,9.707107,-4,-4.707107,1,-5,-4.707107,1,4.707107,5,-0.3535534,5.353553,-5.353553,-0.3535534,5.353553,5,-3.609557E-15,5.707107,-5.707107,-3.609557E-15,5.707107,-5,0,-5,-5.353553,-0.3535534,-5,-5,0,5,-5.353553,-0.3535534,5.353553,4,9.707107,-5,4,10.40711,-5,4,9.707107,-4,4,10.40711,-4,5,9.707107,-4,4,9.707107,-4,5,10.40711,-4,4,10.40711,-4,-5.353553,-0.3535534,5.353553,-5.353553,-0.3535534,-5,-5.707107,-3.609557E-15,5.707107,-5.707107,-3.609557E-15,-5,5,9.707107,-4,5,1,4.707107,4,9.707107,-4,-4.707107,1,4.707107,5,0,5,-5,0,5,5,-0.3535534,5.353553,-5.353553,-0.3535534,5.353553,5,-3.609557E-15,5.707107,-5.707107,-3.609557E-15,5.707107,-5.707107,-3.609557E-15,-5,-5.707107,-3.609557E-15,5.707107,-5.353553,-0.3535534,-5,-5,0,-5,-5.707107,-3.609557E-15,-5,-4.707107,1,-5,5,0,-5,4,9.707107,-5,5,11.40711,-5,4,10.40711,-5,5,0,5,5,0,-5,-5,0,5,-5,0,-5,5,11.40711,-5,5,0,-5,5,10.40711,-4,5,9.707107,-4,5,0,5,5,1,4.707107,5,-3.609557E-15,5.707107,5,-0.3535534,5.353553 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,31,-40,33,39,-32,40,41,-9,9,8,-42,42,44,-44,45,43,-45,46,43,-46,47,46,-46,48,46,-48,49,48,-48,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,55,-58,59,58,-58,60,58,-60,61,58,-61 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: 0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *124 { + a: 19.68504,40.10773,15.74803,40.10773,19.68504,45.6755,-19.68504,40.10773,-19.68504,45.6755,-15.74803,40.10773,-19.68504,38.15901,-15.74803,38.15901,-19.68504,-10.32016,18.53192,-10.32016,19.68504,13.91943,-21.07698,13.91943,19.68504,15.88793,-22.46892,15.88793,19.68504,-13.91943,19.68504,-15.88793,-19.68504,-13.91943,-21.07698,-15.88793,-19.68504,38.21696,-19.68504,40.97286,-15.74803,38.21696,-15.74803,40.97286,19.68504,38.21696,15.74803,38.21696,19.68504,40.97286,15.74803,40.97286,21.07698,13.91943,-19.68504,13.91943,22.46892,15.88793,-19.68504,15.88793,19.68504,38.15901,19.68504,-10.32016,15.74803,38.15901,-18.53192,-10.32016,-19.68504,-13.91943,19.68504,-13.91943,-19.68504,-15.88793,21.07698,-15.88793,19.68504,-15.88793,-22.46892,-15.88793,-19.68504,-15.88793,22.46892,-15.88793,21.07698,-1.391943,19.68504,3.336441E-14,22.46892,1.915356E-14,18.53192,3.937008,-19.68504,3.336441E-14,-15.74803,38.21696,-19.68504,44.90987,-15.74803,40.97286,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,19.68504,44.90987,19.68504,-1.832694E-13,15.74803,40.97286,15.74803,38.21696,-19.68504,-1.832694E-13,-18.53192,3.937008,-22.46892,-1.974803E-13,-21.07698,-1.391943 + } + UVIndex: *108 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,31,39,33,39,31,40,41,8,9,8,41,42,44,43,45,43,44,46,43,45,47,46,45,48,46,47,49,48,47,50,52,51,53,51,52,54,56,55,57,55,56,58,55,57,59,58,57,60,58,59,61,58,60 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighCorner, Model::RootNode + C: "OO",4629918025045835511,0 + + ;Geometry::, Model::Mesh roofHighCorner + C: "OO",5184387038802780010,4629918025045835511 + + ;Material::roofRed, Model::Mesh roofHighCorner + C: "OO",7188,4629918025045835511 + + ;Material::roofRedLight, Model::Mesh roofHighCorner + C: "OO",7190,4629918025045835511 + + ;Material::woodDark, Model::Mesh roofHighCorner + C: "OO",7186,4629918025045835511 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCorner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCorner.fbx.import new file mode 100644 index 0000000..e9dcb4b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://h5b6y18yc5tk" +path="res://.godot/imported/roofHighCorner.fbx-fd257355ceb776002c4d06dc171876ab.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCorner.fbx" +dest_files=["res://.godot/imported/roofHighCorner.fbx-fd257355ceb776002c4d06dc171876ab.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerInner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerInner.fbx new file mode 100644 index 0000000..cf04a2a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerInner.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 774 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighCornerInner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighCornerInner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4847807249575239480, "Model::roofHighCornerInner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5014456748550983782, "Geometry::", "Mesh" { + Vertices: *156 { + a: 4,9.707107,-4,4,10.40711,-4,4,9.707107,5,4,10.40711,5,-4.707107,1,4.707107,-5,1,4.707107,4,9.707107,-4,-5,9.707107,-4,5,11.40711,-5,5,11.40711,5,4,10.40711,-4,4,10.40711,5,4,10.40711,-4,-5,10.40711,-4,5,11.40711,-5,-5,11.40711,-5,4,9.707107,-4,-5,9.707107,-4,4,10.40711,-4,-5,10.40711,-4,4,9.707107,-4,4,9.707107,5,-4.707107,1,4.707107,-4.707107,1,5,-5,0.7071068,5,-5,0.7071068,5,-5,0.7071068,5,-5,0,5,-5,1,4.707107,-5,9.707107,-4,-5,0,-5,-5,11.40711,-5,-5,10.40711,-4,5,11.40711,-5,5,0,-5,5,11.40711,5,5,0,5,-5,0,-5,5,0,-5,-5,11.40711,-5,5,11.40711,-5,-5,0.7071068,5,-4.707107,1,5,-5,0,5,4,9.707107,5,5,0,5,5,11.40711,5,4,10.40711,5,5,0,-5,-5,0,-5,5,0,5,-5,0,5 + } + PolygonVertexIndex: *90 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,22,24,-24,4,5,-26,26,28,-28,28,29,-28,27,29,-31,31,30,-30,29,32,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,42,43,-45,43,45,-45,46,44,-46,47,44,-47,48,50,-50,51,49,-51 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *270 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *104 { + a: -15.74803,38.21696,-15.74803,40.97286,19.68504,38.21696,19.68504,40.97286,-18.53192,-10.32016,-19.68504,-10.32016,15.74803,38.15901,-19.68504,38.15901,-19.68504,45.6755,19.68504,45.6755,-15.74803,40.10773,19.68504,40.10773,15.74803,40.10773,-19.68504,40.10773,19.68504,45.6755,-19.68504,45.6755,15.74803,38.21696,-19.68504,38.21696,15.74803,40.97286,-19.68504,40.97286,-15.74803,38.15901,19.68504,38.15901,18.53192,-10.32016,19.68504,-10.32016,19.68504,-11.95092,-19.68504,-11.95092,19.68504,2.783885,19.68504,-3.236463E-12,18.53192,3.937008,-15.74803,38.21696,-19.68504,-3.236463E-12,-19.68504,44.90987,-15.74803,40.97286,19.68504,44.90987,19.68504,2.989895E-13,-19.68504,44.90987,-19.68504,2.989895E-13,19.68504,-1.24579E-14,-19.68504,-1.24579E-14,19.68504,44.90987,-19.68504,44.90987,-19.68504,2.783885,-18.53192,3.937008,-19.68504,-4.19649E-12,15.74803,38.21696,19.68504,-4.19649E-12,19.68504,44.90987,15.74803,40.97286,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504 + } + UVIndex: *90 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,22,24,23,4,5,25,26,28,27,28,29,27,27,29,30,31,30,29,29,32,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,42,43,44,43,45,44,46,44,45,47,44,46,48,50,49,51,49,50 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *30 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighCornerInner, Model::RootNode + C: "OO",4847807249575239480,0 + + ;Geometry::, Model::Mesh roofHighCornerInner + C: "OO",5014456748550983782,4847807249575239480 + + ;Material::roofRed, Model::Mesh roofHighCornerInner + C: "OO",7188,4847807249575239480 + + ;Material::roofRedLight, Model::Mesh roofHighCornerInner + C: "OO",7190,4847807249575239480 + + ;Material::woodDark, Model::Mesh roofHighCornerInner + C: "OO",7186,4847807249575239480 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerInner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerInner.fbx.import new file mode 100644 index 0000000..ef450de --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerInner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://nxf6a4pd85q0" +path="res://.godot/imported/roofHighCornerInner.fbx-23d5e50772c4fe43fd27a6652a1afaee.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerInner.fbx" +dest_files=["res://.godot/imported/roofHighCornerInner.fbx-23d5e50772c4fe43fd27a6652a1afaee.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerRound.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerRound.fbx new file mode 100644 index 0000000..cf3695c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerRound.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 829 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighCornerRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighCornerRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5456278562350500093, "Model::roofHighCornerRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4631574659435910764, "Geometry::", "Mesh" { + Vertices: *240 { + a: 4,9.707107,-4,0.4120692,1,4.707107,-4.707107,1,-0.4120692,4,10.40711,-5,5,11.40711,-5,4,10.40711,-4,5,10.40711,-4,4,10.40711,-4,5,11.40711,-5,5,9.707107,-4,4,9.707107,-4,5,10.40711,-4,4,10.40711,-4,4,9.707107,-5,4,9.707107,-4,-4.707107,1,-5,-4.707107,1,-0.4120692,4,9.707107,-5,4,10.40711,-5,4,9.707107,-4,4,10.40711,-4,6.35282E-13,-0.3535534,5.353553,5,-0.3535534,5.353553,5.775292E-14,0,5,5,0,5,-5,0,-5,-5.353553,-0.3535534,-5,-5,0,-1.443823E-14,-5.353553,-0.3535534,-1.443823E-14,-5,0,-1.443823E-14,-5.353553,-0.3535534,-1.443823E-14,5.775292E-14,0,5,6.35282E-13,-0.3535534,5.353553,5,9.707107,-4,5,1,4.707107,4,9.707107,-4,0.4120692,1,4.707107,-5.353553,-0.3535534,-5,-5,0,-5,-5.707107,-3.609557E-15,-5,-4.707107,1,-5,5,0,-5,4,9.707107,-5,5,11.40711,-5,4,10.40711,-5,5,0,5,5,0,-5,5.775292E-14,0,5,-5,0,-5,-5,0,-1.443823E-14,5,11.40711,-5,5,0,-5,5,10.40711,-4,5,9.707107,-4,5,0,5,5,1,4.707107,5,-3.609557E-15,5.707107,5,-0.3535534,5.353553,5,-3.609557E-15,5.707107,6.064056E-13,-3.609557E-15,5.707107,5,-0.3535534,5.353553,6.35282E-13,-0.3535534,5.353553,5,-3.609557E-15,5.707107,6.064056E-13,-3.609557E-15,5.707107,-5.353553,-0.3535534,-1.443823E-14,-5.353553,-0.3535534,-5,-5.707107,-3.609557E-15,-1.443823E-14,-5.707107,-3.609557E-15,-5,6.064056E-13,-3.609557E-15,5.707107,-0.7071068,-1.804779E-15,5,-5,-1.804779E-15,0.7071068,-5.707107,-3.609557E-15,-1.443823E-14,6.35282E-13,-0.3535534,5.353553,-5.353553,-0.3535534,-1.443823E-14,6.064056E-13,-3.609557E-15,5.707107,-0.7071068,-1.804779E-15,5,-5,-1.804779E-15,0.7071068,-5.707107,-3.609557E-15,-1.443823E-14,-5.707107,-3.609557E-15,-5,-5.707107,-3.609557E-15,-1.443823E-14 + } + PolygonVertexIndex: *144 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,38,-41,42,41,-41,43,41,-43,44,43,-43,45,47,-47,48,46,-48,49,48,-48,50,52,-52,53,51,-53,54,51,-54,55,54,-54,56,54,-56,57,54,-57,58,34,-60,36,59,-35,60,62,-62,63,61,-63,64,66,-66,67,65,-67,1,2,-69,69,68,-3,70,69,-3,71,70,-3,72,74,-74,75,73,-75,76,73,-76,77,73,-77,78,79,-16,16,15,-80 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *432 { + a: -0.4229703,0.801369,0.4229703,-0.627267,0.7342531,0.2596314,-0.2596314,0.7342531,0.627267,-0.7071068,0.7071068,0,-0.4082483,0.8164966,0.4082483,-0.4082483,0.8164966,0.4082483,0,0.7071068,0.7071068,-0.4082483,0.8164966,0.4082483,-0.4082483,0.8164966,0.4082483,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.4229703,0.801369,0.4229703,-0.627267,0.7342531,0.2596314,-0.4229703,0.801369,0.4229703,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0,0.7071068,0.7071068,-0.4229703,0.801369,0.4229703,0,0.7071068,0.7071068,-0.2600745,0.7342527,0.627084,0,0.7071068,0.7071068,-0.4229703,0.801369,0.4229703,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-0.2596314,0.7342531,0.627267,-0.2600745,0.7342527,0.627084,-0.2596314,0.7342531,0.627267,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,-0.3458214,-0.6634786,0.6634786,-0.2418363,-0.6861178,0.6861178,-0.3458214,-0.6634786,0.6634786,0,-0.7071068,0.7071068,-0.6634786,-0.6634786,0.3458214,-0.6861178,-0.6861178,0.2418363,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.6861178,-0.6861178,0.2418363,-0.2596314,0.7342531,0.627267,-0.627267,0.7342531,0.2596314,-0.2596314,0.7342531,0.627267,-0.5003792,0.7065701,0.5003792,-0.2596314,0.7342531,0.627267,-0.627267,0.7342531,0.2596314,-0.5003792,0.7065701,0.5003792,-0.5003792,0.7065701,0.5003792,-0.627267,0.7342531,0.2596314,-0.627267,0.7342531,0.2596314,-0.5003792,0.7065701,0.5003792,-0.627267,0.7342531,0.2596314,-0.3458214,-0.6634786,0.6634786,-0.2418363,-0.6861178,0.6861178,-0.6634786,-0.6634786,0.3458214,-0.5773503,-0.5773503,0.5773503,-0.6634786,-0.6634786,0.3458214,-0.2418363,-0.6861178,0.6861178,-0.5773503,-0.5773503,0.5773503,-0.6634786,-0.6634786,0.3458214,-0.5773503,-0.5773503,0.5773503,-0.6861178,-0.6861178,0.2418363,-0.6634786,-0.6634786,0.3458214,-0.5773503,-0.5773503,0.5773503,-0.7071068,0.7071068,0,-0.627267,0.7342531,0.2596314,-0.7071068,0.7071068,0,-0.627267,0.7342531,0.2596314,-0.7071068,0.7071068,0,-0.627267,0.7342531,0.2596314 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *160 { + a: 8.455459E-13,42.78004,14.2512,-5.662385,-14.2512,-5.662385,-19.68504,40.10773,-19.68504,45.6755,-15.74803,40.10773,19.68504,40.10773,15.74803,40.10773,19.68504,45.6755,19.68504,38.21696,15.74803,38.21696,19.68504,40.97286,15.74803,40.97286,-19.68504,38.15901,-15.74803,38.15901,-19.68504,-10.32016,-1.62232,-10.32016,-19.68504,38.21696,-19.68504,40.97286,-15.74803,38.21696,-15.74803,40.97286,-4.469255E-13,-15.88793,-19.68504,-15.88793,1.691151E-12,-13.91943,-19.68504,-13.91943,19.68504,-13.91943,19.68504,-15.88793,1.704993E-13,-13.91943,1.78536E-13,-15.88793,13.91943,-8.036384,14.90368,-9.741158,-13.91943,-8.036384,-14.90368,-9.741158,19.68504,38.15901,19.68504,-10.32016,15.74803,38.15901,1.62232,-10.32016,21.07698,-1.391943,19.68504,3.110798E-14,22.46892,1.689712E-14,18.53192,3.937008,-19.68504,3.110798E-14,-15.74803,38.21696,-19.68504,44.90987,-15.74803,40.97286,19.68504,19.68504,19.68504,-19.68504,2.273737E-13,19.68504,-19.68504,-19.68504,-19.68504,-5.684342E-14,19.68504,44.90987,19.68504,-3.829507E-14,15.74803,40.97286,15.74803,38.21696,-19.68504,-3.829507E-14,-18.53192,3.937008,-22.46892,-5.250593E-14,-21.07698,-1.391943,19.68504,-15.88793,2.015863E-12,-15.88793,19.68504,13.91943,2.50111E-12,13.91943,19.68504,15.88793,2.387424E-12,15.88793,-5.684342E-14,13.91943,-19.68504,13.91943,-5.684342E-14,15.88793,-19.68504,15.88793,15.88793,-11.22593,11.95092,-11.22593,-11.95092,-11.22593,-15.88793,-11.22593,14.90368,7.468125,-14.90368,7.468125,15.88793,9.1729,11.95092,9.1729,-11.95092,9.1729,-15.88793,9.1729,-19.68504,-15.88793,-5.889257E-14,-15.88793 + } + UVIndex: *144 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,38,40,42,41,40,43,41,42,44,43,42,45,47,46,48,46,47,49,48,47,50,52,51,53,51,52,54,51,53,55,54,53,56,54,55,57,54,56,58,34,59,36,59,34,60,62,61,63,61,62,64,66,65,67,65,66,1,2,68,69,68,2,70,69,2,71,70,2,72,74,73,75,73,74,76,73,75,77,73,76,78,79,15,16,15,79 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *48 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighCornerRound, Model::RootNode + C: "OO",5456278562350500093,0 + + ;Geometry::, Model::Mesh roofHighCornerRound + C: "OO",4631574659435910764,5456278562350500093 + + ;Material::roofRed, Model::Mesh roofHighCornerRound + C: "OO",7188,5456278562350500093 + + ;Material::woodDark, Model::Mesh roofHighCornerRound + C: "OO",7186,5456278562350500093 + + ;Material::roofRedLight, Model::Mesh roofHighCornerRound + C: "OO",7190,5456278562350500093 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerRound.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerRound.fbx.import new file mode 100644 index 0000000..0b9e4eb --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dv60xwkcc1cjp" +path="res://.godot/imported/roofHighCornerRound.fbx-8c70e4105c0d1a53eef1e229cf6663b0.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighCornerRound.fbx" +dest_files=["res://.godot/imported/roofHighCornerRound.fbx-8c70e4105c0d1a53eef1e229cf6663b0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighFlat.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighFlat.fbx new file mode 100644 index 0000000..7c0a3ff --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighFlat.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 876 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighFlat.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighFlat.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5210932937841681316, "Model::roofHighFlat", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5580052637990220833, "Geometry::", "Mesh" { + Vertices: *108 { + a: 5,0.4071068,-4,-5,0.4071068,-4,5,1.407107,-5,-5,1.407107,-5,5,0,5,-5,0,5,5,1.407107,5,-5,1.407107,5,-5,0,-5,5,0,-5,-5,1.407107,-5,5,1.407107,-5,-5,1.407107,-5,-5,0.4071068,-4,-5,0,-5,-5,0,5,-5,0.4071068,4,-5,1.407107,5,5,1.407107,-5,5,0,-5,5,0.4071068,-4,5,0,5,5,0.4071068,4,5,1.407107,5,5,0.4071068,-4,5,0.4071068,4,-5,0.4071068,-4,-5,0.4071068,4,5,0.4071068,4,5,1.407107,5,-5,0.4071068,4,-5,1.407107,5,5,0,-5,-5,0,-5,5,0,5,-5,0,5 + } + PolygonVertexIndex: *60 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,13,-16,17,16,-16,18,20,-20,21,19,-21,22,21,-21,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *180 { + a: 0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *72 { + a: 19.68504,12.26888,-19.68504,12.26888,19.68504,17.83665,-19.68504,17.83665,19.68504,-1.424237E-10,-19.68504,-1.424237E-10,19.68504,5.539791,-19.68504,5.539791,19.68504,1.400144E-10,-19.68504,1.400144E-10,19.68504,5.539791,-19.68504,5.539791,-19.68504,5.539791,-15.74803,1.602783,-19.68504,-3.310288E-11,19.68504,-3.310288E-11,15.74803,1.602783,19.68504,5.539791,19.68504,5.539791,19.68504,-1.055381E-11,15.74803,1.602783,-19.68504,-1.055381E-11,-15.74803,1.602783,-19.68504,5.539791,-19.68504,-15.74803,-19.68504,15.74803,19.68504,-15.74803,19.68504,15.74803,-19.68504,12.26888,-19.68504,17.83665,19.68504,12.26888,19.68504,17.83665,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504 + } + UVIndex: *60 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,13,15,17,16,15,18,20,19,21,19,20,22,21,20,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *20 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighFlat, Model::RootNode + C: "OO",5210932937841681316,0 + + ;Geometry::, Model::Mesh roofHighFlat + C: "OO",5580052637990220833,5210932937841681316 + + ;Material::roofRed, Model::Mesh roofHighFlat + C: "OO",7188,5210932937841681316 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighFlat.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighFlat.fbx.import new file mode 100644 index 0000000..ab36ef3 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighFlat.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cmpy0ibeqnnyf" +path="res://.godot/imported/roofHighFlat.fbx-ad751a56e78e1f335f407218e7b0bf31.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighFlat.fbx" +dest_files=["res://.godot/imported/roofHighFlat.fbx-ad751a56e78e1f335f407218e7b0bf31.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGable.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGable.fbx new file mode 100644 index 0000000..a02b2ad --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGable.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 910 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighGable.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighGable.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5241540742368624615, "Model::roofHighGable", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4906446298665360886, "Geometry::", "Mesh" { + Vertices: *330 { + a: -5,-5.414336E-15,-4,-5,-5.414336E-15,-5,-5,2,-4,5,2,4,5,-5.414336E-15,4,5,-5.414336E-15,5,5,2,-4,5,-5.414336E-15,-5,5,-5.414336E-15,-4,-5,-5.414336E-15,4,-5,2,4,-5,-5.414336E-15,5,-4.75,-5.414336E-15,-4,-5,-5.414336E-15,-4,-4.75,2,-4,-5,2,-4,4.75,-5.414336E-15,4,5,-5.414336E-15,4,4.75,2,4,5,2,4,5,-5.414336E-15,-4,4.75,-5.414336E-15,-4,5,2,-4,4.75,2,-4,-5,-5.414336E-15,4,-4.75,-5.414336E-15,4,-5,2,4,-4.75,2,4,-5.5,-0.2236068,-5.67082,-5.5,1.194098,-4.961968,-5.5,-0.4472136,-5.223607,-5.5,10,0,-5.5,11.11803,2.887646E-14,-5.5,-0.4472136,5.223607,-5.5,1.194098,4.961968,-5.5,-0.2236068,5.67082,-4.75,10,0,-5.5,10,0,-4.75,2,4,-5,2,4,-5,-5.414336E-15,5,-5.5,-0.4472136,5.223607,5.5,-0.4472136,5.223607,5,-5.414336E-15,5,5.5,10,0,5,2,4,4.75,10,0,4.75,2,4,4.75,10,0,5.5,10,0,4.75,2,-4,5,2,-4,5,-5.414336E-15,-5,5.5,-0.4472136,-5.223607,-5.5,-0.4472136,-5.223607,-5,-5.414336E-15,-5,-5.5,10,0,-5,2,-4,-4.75,10,0,-4.75,2,-4,5.5,1.194098,4.961968,-5.5,1.194098,4.961968,5.5,11.11803,2.887646E-14,-5.5,11.11803,2.887646E-14,5.5,-0.2236068,-5.67082,5.5,-0.4472136,-5.223607,5.5,1.194098,-4.961968,5.5,10,0,5.5,11.11803,2.887646E-14,5.5,-0.4472136,5.223607,5.5,1.194098,4.961968,5.5,-0.2236068,5.67082,5.5,-0.2236068,5.67082,5.5,-0.4472136,5.223607,-5.5,-0.2236068,5.67082,-5.5,-0.4472136,5.223607,5.5,-0.4472136,-5.223607,5.5,-0.2236068,-5.67082,-5.5,-0.4472136,-5.223607,-5.5,-0.2236068,-5.67082,-5.5,1.194098,-4.961968,5.5,1.194098,-4.961968,-5.5,11.11803,2.887646E-14,5.5,11.11803,2.887646E-14,4.75,2,-4,4.75,-5.414336E-15,-4,4.75,10,0,4.75,-5.414336E-15,4,4.75,2,4,5,-5.414336E-15,5,5,-5.414336E-15,4,-5,-5.414336E-15,5,4.75,-5.414336E-15,4,4.75,-5.414336E-15,-4,-4.75,-5.414336E-15,4,-5,-5.414336E-15,4,-4.75,-5.414336E-15,-4,-5,-5.414336E-15,-5,-5,-5.414336E-15,-4,5,-5.414336E-15,-5,5,-5.414336E-15,-4,-4.75,-5.414336E-15,-4,-4.75,2,-4,-4.75,-5.414336E-15,4,-4.75,10,0,-4.75,2,4,-5.5,-0.2236068,-5.67082,5.5,-0.2236068,-5.67082,5.5,-0.2236068,5.67082,-5.5,-0.2236068,5.67082 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,29,-32,33,32,-32,34,32,-34,35,34,-34,36,38,-38,38,39,-38,39,40,-38,37,40,-42,42,41,-41,40,43,-43,44,42,-44,45,44,-44,46,44,-46,47,46,-46,48,50,-50,50,51,-50,51,52,-50,49,52,-54,54,53,-53,52,55,-55,56,54,-56,57,56,-56,58,56,-58,59,58,-58,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,67,-69,70,69,-69,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,89,91,-91,92,90,-92,93,92,-92,94,93,-92,95,94,-92,94,96,-94,96,97,-94,98,97,-97,97,99,-94,100,93,-100,101,103,-103,104,102,-104,105,104,-104,106,80,-108,81,107,-81,108,60,-110,61,109,-61 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: -1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *220 { + a: -15.74803,-2.131628E-14,-19.68504,-2.131628E-14,-15.74803,7.874016,-15.74803,7.874016,-15.74803,-2.131628E-14,-19.68504,-2.131628E-14,15.74803,7.874016,19.68504,-2.131628E-14,15.74803,-2.131628E-14,15.74803,-2.131628E-14,15.74803,7.874016,19.68504,-2.131628E-14,-18.70079,-2.131628E-14,-19.68504,-2.131628E-14,-18.70079,7.874016,-19.68504,7.874016,-18.70079,-2.131628E-14,-19.68504,-2.131628E-14,-18.70079,7.874016,-19.68504,7.874016,19.68504,-2.131628E-14,18.70079,-2.131628E-14,19.68504,7.874016,18.70079,7.874016,19.68504,-2.131628E-14,18.70079,-2.131628E-14,19.68504,7.874016,18.70079,7.874016,-22.32607,-0.8803417,-19.53531,4.701174,-20.56538,-1.760683,0,39.37008,1.136868E-13,43.77179,20.56538,-1.760683,19.53531,4.701174,22.32607,-0.8803417,18.70079,35.21367,21.65354,35.21367,18.70079,3.197442E-14,19.68504,3.197442E-14,19.68504,-8.803417,21.65354,-10.77192,-21.65354,-10.77192,-19.68504,-8.803417,-21.65354,35.21367,-19.68504,2.4869E-14,-18.70079,35.21367,-18.70079,2.4869E-14,18.70079,35.21367,21.65354,35.21367,18.70079,-1.829648E-13,19.68504,-1.829648E-13,19.68504,-8.803417,21.65354,-10.77192,-21.65354,-10.77192,-19.68504,-8.803417,-21.65354,35.21367,-19.68504,-1.847411E-13,-18.70079,35.21367,-18.70079,-1.847411E-13,21.65354,-4.531597,-21.65354,-4.531597,21.65354,39.15068,-21.65354,39.15068,22.32607,-0.8803417,20.56538,-1.760683,19.53531,4.701174,0,39.37008,-1.136868E-13,43.77179,-20.56538,-1.760683,-19.53531,4.701174,-22.32607,-0.8803417,21.65354,19.57534,21.65354,17.60683,-21.65354,19.57534,-21.65354,17.60683,-21.65354,17.60683,-21.65354,19.57534,21.65354,17.60683,21.65354,19.57534,21.65354,-4.531597,-21.65354,-4.531597,21.65354,39.15068,-21.65354,39.15068,15.74803,7.874016,15.74803,-2.131628E-14,0,39.37008,-15.74803,-2.131628E-14,-15.74803,7.874016,19.68504,19.68504,19.68504,15.74803,-19.68504,19.68504,18.70079,15.74803,18.70079,-15.74803,-18.70079,15.74803,-19.68504,15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,-15.74803,-2.131628E-14,-15.74803,7.874016,15.74803,-2.131628E-14,0,39.37008,15.74803,7.874016,21.65354,-10.77192,-21.65354,-10.77192,21.65354,-10.77192,-21.65354,-10.77192 + } + UVIndex: *216 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,29,31,33,32,31,34,32,33,35,34,33,36,38,37,38,39,37,39,40,37,37,40,41,42,41,40,40,43,42,44,42,43,45,44,43,46,44,45,47,46,45,48,50,49,50,51,49,51,52,49,49,52,53,54,53,52,52,55,54,56,54,55,57,56,55,58,56,57,59,58,57,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,67,68,70,69,68,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,89,91,90,92,90,91,93,92,91,94,93,91,95,94,91,94,96,93,96,97,93,98,97,96,97,99,93,100,93,99,101,103,102,104,102,103,105,104,103,106,80,107,81,107,80,108,60,109,61,109,60 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighGable, Model::RootNode + C: "OO",5241540742368624615,0 + + ;Geometry::, Model::Mesh roofHighGable + C: "OO",4906446298665360886,5241540742368624615 + + ;Material::wood, Model::Mesh roofHighGable + C: "OO",7178,5241540742368624615 + + ;Material::roofRed, Model::Mesh roofHighGable + C: "OO",7188,5241540742368624615 + + ;Material::woodDark, Model::Mesh roofHighGable + C: "OO",7186,5241540742368624615 + + ;Material::roofRedLight, Model::Mesh roofHighGable + C: "OO",7190,5241540742368624615 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGable.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGable.fbx.import new file mode 100644 index 0000000..9127a17 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGable.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b68phqfdn31q" +path="res://.godot/imported/roofHighGable.fbx-0a22b05ae425219f7756ed9008a41897.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGable.fbx" +dest_files=["res://.godot/imported/roofHighGable.fbx-0a22b05ae425219f7756ed9008a41897.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableDetail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableDetail.fbx new file mode 100644 index 0000000..9bd5500 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableDetail.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 952 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighGableDetail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighGableDetail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4963722259638415178, "Model::roofHighGableDetail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4834729962147785424, "Geometry::", "Mesh" { + Vertices: *630 { + a: 4,-5.414336E-15,5,4,-5.414336E-15,4,-5,-5.414336E-15,5,3.75,-5.414336E-15,4,3.75,-5.414336E-15,-4,-4.75,-5.414336E-15,4,-5,-5.414336E-15,4,-4.75,-5.414336E-15,-4,-5,-5.414336E-15,-5,-5,-5.414336E-15,-4,4,-5.414336E-15,-5,4,-5.414336E-15,-4,3.75,2,-4,3.75,-5.414336E-15,-4,3.75,10,0,3.75,-5.414336E-15,4,3.75,2,4,-4.75,-5.414336E-15,-4,-4.75,2,-4,-4.75,-5.414336E-15,4,-4.75,10,0,-4.75,2,4,4,2,4,4,-5.414336E-15,4,4,-5.414336E-15,5,-5,-5.414336E-15,-4,-5,-5.414336E-15,-5,-5,2,-4,4,2,-4,4,-5.414336E-15,-5,4,-5.414336E-15,-4,-5,-5.414336E-15,4,-5,2,4,-5,-5.414336E-15,5,4,-5.414336E-15,-4,3.75,-5.414336E-15,-4,4,2,-4,3.75,2,-4,-5,-5.414336E-15,4,-4.75,-5.414336E-15,4,-5,2,4,-4.75,2,4,3.75,-5.414336E-15,4,4,-5.414336E-15,4,3.75,2,4,4,2,4,-4.75,-5.414336E-15,-4,-5,-5.414336E-15,-4,-4.75,2,-4,-5,2,-4,-6,-0.4472136,-6.341641,-5.5,-0.4472136,-6.341641,-6,11.11803,-0.559017,-5.5,11.11803,-0.559017,-5.5,-0.8944272,-5.447214,-6,-0.8944272,-5.447214,-5.5,-0.4472136,-5.223607,-6,10,0,-5.5,10,0,4.5,-0.4472136,-6.341641,5,-0.4472136,-6.341641,4.5,11.11803,-0.559017,5,11.11803,-0.559017,5,12.23607,-0.559017,5,11.11803,-0.559017,5,12.23607,0.559017,5,10,0,5,11.11803,0.559017,5,-0.8944272,-5.447214,5,-0.4472136,-6.341641,5,-0.8944272,5.447214,5,-0.4472136,6.341641,-6,-0.8944272,5.447214,-5.5,-0.8944272,5.447214,-6,10,0,-5.5,-0.4472136,5.223607,-5.5,10,0,4.5,-0.4472136,-5.223607,4.5,-0.8944272,-5.447214,4.5,-0.2236068,-5.67082,4.5,-0.4472136,-6.341641,4.5,11.11803,-0.559017,4.5,1.194098,-4.961968,4.5,11.11803,2.887646E-14,4.5,12.23607,-0.559017,4.5,12.23607,0.559017,4.5,11.11803,0.559017,4.5,1.194098,4.961968,4.5,-0.4472136,6.341641,4.5,-0.2236068,5.67082,4.5,-0.8944272,5.447214,4.5,-0.4472136,5.223607,5,-0.8944272,-5.447214,4.5,-0.8944272,-5.447214,5,10,0,4.5,-0.4472136,-5.223607,4.5,10,0,-5.5,-0.4472136,6.341641,-6,-0.4472136,6.341641,-5.5,11.11803,0.559017,-6,11.11803,0.559017,-5.5,12.23607,-0.559017,-5.5,12.23607,0.559017,-6,12.23607,-0.559017,-6,12.23607,0.559017,5,12.23607,-0.559017,5,12.23607,0.559017,4.5,12.23607,-0.559017,4.5,12.23607,0.559017,4.5,11.11803,-0.559017,5,11.11803,-0.559017,4.5,12.23607,-0.559017,5,12.23607,-0.559017,-5.5,-0.4472136,6.341641,-5.5,-0.8944272,5.447214,-6,-0.4472136,6.341641,-6,-0.8944272,5.447214,4.5,-0.8944272,5.447214,5,-0.8944272,5.447214,4.5,-0.4472136,5.223607,5,10,0,4.5,10,0,-6,11.11803,-0.559017,-5.5,11.11803,-0.559017,-6,12.23607,-0.559017,-5.5,12.23607,-0.559017,-5.5,-0.8944272,-5.447214,-5.5,-0.4472136,-6.341641,-6,-0.8944272,-5.447214,-6,-0.4472136,-6.341641,5,-0.8944272,-5.447214,5,-0.4472136,-6.341641,4.5,-0.8944272,-5.447214,4.5,-0.4472136,-6.341641,5,-0.4472136,6.341641,4.5,-0.4472136,6.341641,5,11.11803,0.559017,4.5,11.11803,0.559017,-5.5,11.11803,0.559017,-6,11.11803,0.559017,-5.5,12.23607,0.559017,-6,12.23607,0.559017,5,11.11803,0.559017,4.5,11.11803,0.559017,5,12.23607,0.559017,4.5,12.23607,0.559017,-5.5,12.23607,-0.559017,-5.5,11.11803,-0.559017,-5.5,12.23607,0.559017,-5.5,11.11803,2.887646E-14,-5.5,11.11803,0.559017,-5.5,1.194098,-4.961968,-5.5,1.194098,4.961968,-5.5,-0.4472136,6.341641,-5.5,-0.2236068,5.67082,-5.5,-0.8944272,5.447214,-5.5,-0.4472136,5.223607,-5.5,-0.2236068,-5.67082,-5.5,-0.4472136,-6.341641,-5.5,-0.8944272,-5.447214,-5.5,-0.4472136,-5.223607,5,-0.4472136,6.341641,5,-0.8944272,5.447214,4.5,-0.4472136,6.341641,4.5,-0.8944272,5.447214,-6,-0.4472136,6.341641,-6,-0.8944272,5.447214,-6,11.11803,0.559017,-6,10,0,-6,12.23607,0.559017,-6,12.23607,-0.559017,-6,11.11803,-0.559017,-6,-0.8944272,-5.447214,-6,-0.4472136,-6.341641,-5.5,-0.2236068,-5.67082,4.5,-0.2236068,-5.67082,-5.5,1.194098,-4.961968,4.5,1.194098,-4.961968,4.5,-0.2236068,5.67082,-5.5,-0.2236068,5.67082,4.5,1.194098,4.961968,-5.5,1.194098,4.961968,3.75,10,0,3.75,2,-4,4,2,-4,4,-5.414336E-15,-5,-5,-5.414336E-15,-5,-5,2,-4,-4.75,10,0,-4.75,2,-4,-4.75,10,0,-4.75,2,4,-5,2,4,-5,-5.414336E-15,5,4,-5.414336E-15,5,4,2,4,3.75,10,0,3.75,2,4,4.5,11.11803,2.887646E-14,-5.5,11.11803,2.887646E-14,4.5,-0.2236068,5.67082,4.5,-0.4472136,5.223607,-5.5,-0.2236068,5.67082,-5.5,-0.4472136,5.223607,-5.5,11.11803,2.887646E-14,4.5,11.11803,2.887646E-14,4.5,-0.4472136,-5.223607,4.5,-0.2236068,-5.67082,-5.5,-0.4472136,-5.223607,-5.5,-0.2236068,-5.67082 + } + PolygonVertexIndex: *420 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,5,-3,5,7,-5,7,8,-5,9,8,-8,8,10,-5,11,4,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,20,18,-20,21,20,-20,22,24,-24,25,27,-27,28,30,-30,31,33,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,57,-57,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,66,-66,66,68,-65,69,64,-69,70,66,-68,71,70,-68,72,74,-74,75,73,-75,76,75,-75,77,79,-79,80,78,-80,80,79,-82,82,81,-80,83,81,-83,84,81,-84,85,84,-84,86,85,-84,83,87,-87,88,86,-88,89,88,-88,88,89,-91,91,90,-90,92,94,-94,95,93,-95,96,95,-95,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,120,-120,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,149,-149,149,151,-148,152,149,-151,153,152,-151,154,152,-154,153,155,-155,156,154,-156,151,157,-148,158,147,-158,158,157,-160,160,159,-158,161,163,-163,164,162,-164,165,167,-167,168,166,-168,167,169,-169,169,170,-169,170,171,-169,168,171,-173,173,172,-172,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,183,-97,183,184,-97,184,185,-97,96,185,-96,56,95,-186,185,186,-57,58,56,-187,187,58,-187,188,58,-188,189,188,-188,190,191,-77,191,192,-77,192,193,-77,76,193,-76,119,75,-194,193,194,-120,121,119,-195,195,121,-195,196,121,-196,197,196,-196,180,198,-182,199,181,-199,200,202,-202,203,201,-203,176,204,-178,205,177,-205,206,208,-208,209,207,-209 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1260 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *420 { + a: 15.74803,19.68504,15.74803,15.74803,-19.68504,19.68504,14.76378,15.74803,14.76378,-15.74803,-18.70079,15.74803,-19.68504,15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,15.74803,-19.68504,15.74803,-15.74803,15.74803,7.874016,15.74803,-2.131628E-14,0,39.37008,-15.74803,-2.131628E-14,-15.74803,7.874016,-15.74803,-2.131628E-14,-15.74803,7.874016,15.74803,-2.131628E-14,0,39.37008,15.74803,7.874016,-15.74803,7.874016,-15.74803,-2.131628E-14,-19.68504,-2.131628E-14,-15.74803,-2.131628E-14,-19.68504,-2.131628E-14,-15.74803,7.874016,15.74803,7.874016,19.68504,-2.131628E-14,15.74803,-2.131628E-14,15.74803,-2.131628E-14,15.74803,7.874016,19.68504,-2.131628E-14,15.74803,-2.131628E-14,14.76378,-2.131628E-14,15.74803,7.874016,14.76378,7.874016,19.68504,-2.131628E-14,18.70079,-2.131628E-14,19.68504,7.874016,18.70079,7.874016,-14.76378,-2.131628E-14,-15.74803,-2.131628E-14,-14.76378,7.874016,-15.74803,7.874016,-18.70079,-2.131628E-14,-19.68504,-2.131628E-14,-18.70079,7.874016,-19.68504,7.874016,23.62205,-12.74043,21.65354,-12.74043,23.62205,38.16642,21.65354,38.16642,-21.65354,-12.74043,-23.62205,-12.74043,-21.65354,-10.77192,-23.62205,35.21367,-21.65354,35.21367,-17.71654,-12.74043,-19.68504,-12.74043,-17.71654,38.16642,-19.68504,38.16642,2.200854,48.1735,2.200854,43.77179,-2.200854,48.1735,0,39.37008,-2.200854,43.77179,21.44572,-3.521367,24.96709,-1.760683,-21.44572,-3.521367,-24.96709,-1.760683,23.62205,-12.74043,21.65354,-12.74043,23.62205,35.21367,21.65354,-10.77192,21.65354,35.21367,-20.56538,-1.760683,-21.44572,-3.521367,-22.32607,-0.8803417,-24.96709,-1.760683,-2.200854,43.77179,-19.53531,4.701174,1.132243E-13,43.77179,-2.200854,48.1735,2.200854,48.1735,2.200854,43.77179,19.53531,4.701174,24.96709,-1.760683,22.32607,-0.8803417,21.44572,-3.521367,20.56538,-1.760683,19.68504,-12.74043,17.71654,-12.74043,19.68504,35.21367,17.71654,-10.77192,17.71654,35.21367,-21.65354,-12.74043,-23.62205,-12.74043,-21.65354,38.16642,-23.62205,38.16642,21.65354,-2.200854,21.65354,2.200854,23.62205,-2.200854,23.62205,2.200854,-19.68504,-2.200854,-19.68504,2.200854,-17.71654,-2.200854,-17.71654,2.200854,-17.71654,43.77179,-19.68504,43.77179,-17.71654,48.1735,-19.68504,48.1735,-21.65354,21.54384,-21.65354,17.60683,-23.62205,21.54384,-23.62205,17.60683,-17.71654,-12.74043,-19.68504,-12.74043,-17.71654,-10.77192,-19.68504,35.21367,-17.71654,35.21367,23.62205,43.77179,21.65354,43.77179,23.62205,48.1735,21.65354,48.1735,21.65354,17.60683,21.65354,21.54384,23.62205,17.60683,23.62205,21.54384,-19.68504,17.60683,-19.68504,21.54384,-17.71654,17.60683,-17.71654,21.54384,19.68504,-12.74043,17.71654,-12.74043,19.68504,38.16642,17.71654,38.16642,-21.65354,43.77179,-23.62205,43.77179,-21.65354,48.1735,-23.62205,48.1735,19.68504,43.77179,17.71654,43.77179,19.68504,48.1735,17.71654,48.1735,2.200854,48.1735,2.200854,43.77179,-2.200854,48.1735,-1.148175E-13,43.77179,-2.200854,43.77179,19.53531,4.701174,-19.53531,4.701174,-24.96709,-1.760683,-22.32607,-0.8803417,-21.44572,-3.521367,-20.56538,-1.760683,22.32607,-0.8803417,24.96709,-1.760683,21.44572,-3.521367,20.56538,-1.760683,19.68504,21.54384,19.68504,17.60683,17.71654,21.54384,17.71654,17.60683,24.96709,-1.760683,21.44572,-3.521367,2.200854,43.77179,0,39.37008,2.200854,48.1735,-2.200854,48.1735,-2.200854,43.77179,-21.44572,-3.521367,-24.96709,-1.760683,21.65354,-10.77192,-17.71654,-10.77192,21.65354,-4.531597,-17.71654,-4.531597,17.71654,-10.77192,-21.65354,-10.77192,17.71654,-4.531597,-21.65354,-4.531597,14.76378,35.21367,14.76378,-1.838529E-13,15.74803,-1.838529E-13,15.74803,-8.803417,-19.68504,-8.803417,-19.68504,-1.838529E-13,-18.70079,35.21367,-18.70079,-1.838529E-13,18.70079,35.21367,18.70079,3.28626E-14,19.68504,3.28626E-14,19.68504,-8.803417,-15.74803,-8.803417,-15.74803,3.28626E-14,-14.76378,35.21367,-14.76378,3.28626E-14,17.71654,39.15068,-21.65354,39.15068,17.71654,19.57534,17.71654,17.60683,-21.65354,19.57534,-21.65354,17.60683,21.65354,39.15068,-17.71654,39.15068,-17.71654,17.60683,-17.71654,19.57534,21.65354,17.60683,21.65354,19.57534 + } + UVIndex: *420 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,5,2,5,7,4,7,8,4,9,8,7,8,10,4,11,4,10,12,14,13,15,13,14,16,15,14,17,19,18,20,18,19,21,20,19,22,24,23,25,27,26,28,30,29,31,33,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,57,56,59,61,60,62,60,61,63,65,64,66,64,65,67,66,65,66,68,64,69,64,68,70,66,67,71,70,67,72,74,73,75,73,74,76,75,74,77,79,78,80,78,79,80,79,81,82,81,79,83,81,82,84,81,83,85,84,83,86,85,83,83,87,86,88,86,87,89,88,87,88,89,90,91,90,89,92,94,93,95,93,94,96,95,94,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,120,119,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,149,148,149,151,147,152,149,150,153,152,150,154,152,153,153,155,154,156,154,155,151,157,147,158,147,157,158,157,159,160,159,157,161,163,162,164,162,163,165,167,166,168,166,167,167,169,168,169,170,168,170,171,168,168,171,172,173,172,171,174,176,175,177,175,176,178,180,179,181,179,180,182,183,96,183,184,96,184,185,96,96,185,95,56,95,185,185,186,56,58,56,186,187,58,186,188,58,187,189,188,187,190,191,76,191,192,76,192,193,76,76,193,75,119,75,193,193,194,119,121,119,194,195,121,194,196,121,195,197,196,195,180,198,181,199,181,198,200,202,201,203,201,202,176,204,177,205,177,204,206,208,207,209,207,208 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *140 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighGableDetail, Model::RootNode + C: "OO",4963722259638415178,0 + + ;Geometry::, Model::Mesh roofHighGableDetail + C: "OO",4834729962147785424,4963722259638415178 + + ;Material::woodDark, Model::Mesh roofHighGableDetail + C: "OO",7186,4963722259638415178 + + ;Material::wood, Model::Mesh roofHighGableDetail + C: "OO",7178,4963722259638415178 + + ;Material::roofRedLight, Model::Mesh roofHighGableDetail + C: "OO",7190,4963722259638415178 + + ;Material::roofRed, Model::Mesh roofHighGableDetail + C: "OO",7188,4963722259638415178 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableDetail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableDetail.fbx.import new file mode 100644 index 0000000..327a630 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableDetail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d11yg8rigm07o" +path="res://.godot/imported/roofHighGableDetail.fbx-cbcddec4651b6858b5ddac7ff2957dc3.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableDetail.fbx" +dest_files=["res://.godot/imported/roofHighGableDetail.fbx-cbcddec4651b6858b5ddac7ff2957dc3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableEnd.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableEnd.fbx new file mode 100644 index 0000000..476eda4 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableEnd.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 45 + Millisecond: 993 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighGableEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighGableEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4619112821352580077, "Model::roofHighGableEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5286172215400455059, "Geometry::", "Mesh" { + Vertices: *252 { + a: -4.965645,1.194098,-4.961968,4.331469E-14,11.11803,-2.598881E-13,-4.965645,1.194098,4.961968,5.5,-0.4472136,5.223607,-5.227809,-0.4472136,5.223607,5.5,-0.2236068,5.67082,-5.675023,-0.2236068,5.67082,5.5,-0.2236068,-5.67082,5.5,-0.4472136,-5.223607,5.5,1.194098,-4.961968,5.5,10,0,5.5,11.11803,-5.775292E-14,5.5,1.194098,4.961968,5.5,-0.4472136,5.223607,5.5,-0.2236068,5.67082,4.75,10,-2.887646E-14,5.5,10,0,4.75,2,-4,5,2,-4,5,0,-5,5.5,-0.4472136,-5.223607,-5.227809,-0.4472136,-5.223607,-5.004203,0,-5,5.5,-0.2236068,-5.67082,-5.675023,-0.2236068,-5.67082,5.5,-0.4472136,-5.223607,-5.227809,-0.4472136,-5.223607,4.75,2,4,5,2,4,4.75,10,-2.887646E-14,5.5,10,0,5,0,5,5.5,-0.4472136,5.223607,-5.004203,0,5,-5.227809,-0.4472136,5.223607,-4.965645,1.194098,-4.961968,5.5,1.194098,-4.961968,4.331469E-14,11.11803,-2.598881E-13,5.5,11.11803,-5.775292E-14,-4.965645,1.194098,4.961968,4.331469E-14,11.11803,-2.598881E-13,5.5,1.194098,4.961968,5.5,11.11803,-5.775292E-14,-5.227809,-0.4472136,-5.223607,-5.675023,-0.2236068,-5.67082,-5.227809,-0.4472136,5.223607,-5.675023,-0.2236068,5.67082,-5.227809,-0.4472136,-5.223607,-5.227809,-0.4472136,5.223607,-5.004203,0,-5,-5.004203,0,5,5,2,4,5,0,4,5,0,5,5,2,-4,5,0,-5,5,0,-4,4.75,0,4,5,0,4,4.75,2,4,5,2,4,5,0,-4,4.75,0,-4,5,2,-4,4.75,2,-4,5,0,4,4.75,0,4,5,0,5,-5.004203,0,5,-5.004203,0,-5,4.75,0,-4,5,0,-4,5,0,-5,4.75,2,-4,4.75,0,-4,4.75,10,-2.887646E-14,4.75,0,4,4.75,2,4,5.5,-0.2236068,-5.67082,-5.675023,-0.2236068,-5.67082,-5.675023,-0.2236068,5.67082,5.5,-0.2236068,5.67082,-5.675023,-0.2236068,-5.67082,-5.675023,-0.2236068,5.67082 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,10,8,-10,11,10,-10,12,10,-12,13,10,-13,14,13,-13,15,17,-17,17,18,-17,18,19,-17,16,19,-21,21,20,-20,19,22,-22,23,25,-25,26,24,-26,27,29,-29,29,30,-29,28,30,-32,30,32,-32,31,32,-34,34,33,-33,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,56,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,66,-69,66,69,-71,70,69,-72,72,71,-70,73,75,-75,76,74,-76,77,76,-76,78,79,-37,35,36,-80,80,81,-40,41,39,-82,82,83,-1,2,0,-84 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: -0.8942946,0.4474787,0,-0.8942946,0.4474787,0,-0.8942946,0.4474787,0,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,-0.8942946,0.4474787,0,-0.8942946,0.4474787,0,-0.8942946,0.4474787,0,-0.8942946,0.4474787,0,-0.8942946,0.4474787,0,-0.8942946,0.4474787,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: -19.53531,-4.543878,-1.023182E-12,39.14487,19.53531,-4.543878,21.65354,17.60683,-20.58193,17.60683,21.65354,19.57534,-22.34261,19.57534,22.32607,-0.8803417,20.56538,-1.760683,19.53531,4.701174,1.080009E-12,39.37008,1.307382E-12,43.77179,-19.53531,4.701174,-20.56538,-1.760683,-22.32607,-0.8803417,18.70079,35.21367,21.65354,35.21367,18.70079,-3.375078E-13,19.68504,-3.606004E-13,19.68504,-8.803417,21.65354,-10.77192,-20.58193,-10.77192,-19.70159,-8.803417,-21.65354,19.57534,22.34261,19.57534,-21.65354,17.60683,20.58193,17.60683,-18.70079,3.099743E-13,-19.68504,3.321787E-13,-18.70079,35.21367,-21.65354,35.21367,-19.68504,-8.803417,-21.65354,-10.77192,19.70159,-8.803417,20.58193,-10.77192,19.54979,-4.531597,-21.65354,-4.531597,-1.705303E-13,39.15068,-21.65354,39.15068,-19.54979,-4.531597,1.705303E-13,39.15068,21.65354,-4.531597,21.65354,39.15068,-20.56538,17.62164,-22.32607,19.59014,20.56538,17.62164,22.32607,19.59014,20.56538,-10.77932,-20.56538,-10.77932,19.68504,-8.810818,-19.68504,-8.810818,-15.74803,7.874016,-15.74803,0,-19.68504,0,15.74803,7.874016,19.68504,0,15.74803,0,-18.70079,0,-19.68504,0,-18.70079,7.874016,-19.68504,7.874016,19.68504,0,18.70079,0,19.68504,7.874016,18.70079,7.874016,19.68504,15.74803,18.70079,15.74803,19.68504,19.68504,-19.70159,19.68504,-19.70159,-19.68504,18.70079,-15.74803,19.68504,-15.74803,19.68504,-19.68504,15.74803,7.874016,15.74803,0,1.046422E-12,39.37008,-15.74803,0,-15.74803,7.874016,-21.65354,-10.77192,22.34261,-10.77192,-22.34261,-10.77192,21.65354,-10.77192,-22.32607,-10.78513,22.32607,-10.78513 + } + UVIndex: *156 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,10,8,9,11,10,9,12,10,11,13,10,12,14,13,12,15,17,16,17,18,16,18,19,16,16,19,20,21,20,19,19,22,21,23,25,24,26,24,25,27,29,28,29,30,28,28,30,31,30,32,31,31,32,33,34,33,32,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,56,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,66,68,66,69,70,70,69,71,72,71,69,73,75,74,76,74,75,77,76,75,78,79,36,35,36,79,80,81,39,41,39,81,82,83,0,2,0,83 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighGableEnd, Model::RootNode + C: "OO",4619112821352580077,0 + + ;Geometry::, Model::Mesh roofHighGableEnd + C: "OO",5286172215400455059,4619112821352580077 + + ;Material::roofRed, Model::Mesh roofHighGableEnd + C: "OO",7188,4619112821352580077 + + ;Material::wood, Model::Mesh roofHighGableEnd + C: "OO",7178,4619112821352580077 + + ;Material::woodDark, Model::Mesh roofHighGableEnd + C: "OO",7186,4619112821352580077 + + ;Material::roofRedLight, Model::Mesh roofHighGableEnd + C: "OO",7190,4619112821352580077 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableEnd.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableEnd.fbx.import new file mode 100644 index 0000000..ffd2631 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ch12lxiutws4u" +path="res://.godot/imported/roofHighGableEnd.fbx-dc8202d02d832b4128379c5c46525e03.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableEnd.fbx" +dest_files=["res://.godot/imported/roofHighGableEnd.fbx-dc8202d02d832b4128379c5c46525e03.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableTop.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableTop.fbx new file mode 100644 index 0000000..0e133e2 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableTop.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 34 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighGableTop.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighGableTop.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5108801861999239031, "Model::roofHighGableTop", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5544019630639135689, "Geometry::", "Mesh" { + Vertices: *270 { + a: 5,6.922084E-10,5,5,6.922084E-10,4,-5,6.922084E-10,5,4.75,6.922733E-10,4,4.75,6.922733E-10,-4,-4.75,6.923166E-10,4,-5,6.922084E-10,4,-4.75,6.923166E-10,-4,-5,6.922084E-10,-5,-5,6.922084E-10,-4,5,6.922084E-10,-5,5,6.922084E-10,-4,4.75,1,-4,4.75,6.922733E-10,-4,4.75,5,1.168041E-08,4.75,6.922733E-10,4,4.75,1,4,-4.75,6.923166E-10,-4,-4.75,1,-4,-4.75,6.923166E-10,4,-4.75,5,1.167712E-08,-4.75,1,4,-4.75,1,4,-4.75,5,1.167712E-08,-5,1,4,-5,5,1.167712E-08,5,5,1.168041E-08,4.75,5,1.168041E-08,5,1,4,4.75,1,4,-5,1.407107,-5,-5,6.407107,1.167648E-08,-5,6.922084E-10,-5,-5,1,-4,-5,5,1.167712E-08,-5,1.407107,5,-5,1,4,-5,6.922084E-10,5,5,1.407107,-5,5,6.407107,1.167654E-08,-5,1.407107,-5,-5,6.407107,1.167648E-08,5,6.922084E-10,5,-5,6.922084E-10,5,5,1.407107,5,-5,1.407107,5,-5,1,-4,-5,5,1.167712E-08,-4.75,1,-4,-4.75,5,1.167712E-08,5,1.407107,-5,5,6.922084E-10,-5,5,6.407107,1.167654E-08,5,1,-4,5,5,1.168041E-08,5,1.407107,5,5,1,4,5,6.922084E-10,5,-5,6.922084E-10,-5,5,6.922084E-10,-5,-5,1.407107,-5,5,1.407107,-5,5,1.407107,5,-5,1.407107,5,5,6.407107,1.167654E-08,-5,6.407107,1.167648E-08,5,1,-4,4.75,1,-4,5,5,1.168041E-08,4.75,5,1.168041E-08,5,6.922084E-10,4,-5,6.922084E-10,4,-5,6.922084E-10,-4,5,6.922084E-10,-4,-5,6.922084E-10,-4,-5,1,-4,-4.75,6.923166E-10,-4,-4.75,1,-4,-5,6.922084E-10,4,-4.75,6.923166E-10,4,-5,1,4,-4.75,1,4,5,6.922084E-10,4,5,1,4,4.75,6.922733E-10,4,4.75,1,4,5,6.922084E-10,-4,4.75,6.922733E-10,-4,5,1,-4,4.75,1,-4 + } + PolygonVertexIndex: *168 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,5,-3,5,7,-5,7,8,-5,9,8,-8,8,10,-5,11,4,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,20,18,-20,21,20,-20,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,31,-34,35,31,-35,36,35,-35,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,53,-53,55,54,-53,56,54,-56,57,56,-56,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,56,57,-71,71,37,-37,72,33,-33,53,73,-52,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *504 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *180 { + a: 19.68504,19.68504,19.68504,15.74803,-19.68504,19.68504,18.70079,15.74803,18.70079,-15.74803,-18.70079,15.74803,-19.68504,15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-19.68504,19.68504,-15.74803,15.74803,3.937008,15.74803,2.727143E-09,-4.598587E-08,19.68504,-15.74803,2.727143E-09,-15.74803,3.937008,-15.74803,2.733775E-09,-15.74803,3.937008,15.74803,2.733775E-09,4.597291E-08,19.68504,15.74803,3.937008,18.70079,-8.351655,18.70079,13.91943,19.68504,-8.351655,19.68504,13.91943,-19.68504,13.91943,-18.70079,13.91943,-19.68504,-8.351655,-18.70079,-8.351655,-19.68504,5.539791,4.597127E-08,25.22483,-19.68504,2.728378E-09,-15.74803,3.937008,4.597377E-08,19.68504,19.68504,5.539791,15.74803,3.937008,19.68504,2.728378E-09,-19.68504,-10.0022,-19.68504,17.83665,19.68504,-10.0022,19.68504,17.83665,19.68504,2.601816E-09,-19.68504,2.601816E-09,19.68504,5.539791,-19.68504,5.539791,-19.68504,-8.351655,-19.68504,13.91943,-18.70079,-8.351655,-18.70079,13.91943,19.68504,5.539791,19.68504,2.724679E-09,-4.597005E-08,25.22483,15.74803,3.937008,-4.598529E-08,19.68504,-19.68504,5.539791,-15.74803,3.937008,-19.68504,2.726082E-09,19.68504,2.84622E-09,-19.68504,2.84622E-09,19.68504,5.539791,-19.68504,5.539791,19.68504,-10.0022,-19.68504,-10.0022,19.68504,17.83665,-19.68504,17.83665,19.68504,-8.351655,18.70079,-8.351655,19.68504,13.91943,18.70079,13.91943,-15.74803,2.726082E-09,15.74803,2.729493E-09,-15.74803,2.729493E-09,15.74803,2.726082E-09,-19.68504,2.72523E-09,-19.68504,3.937008,-18.70079,2.725656E-09,-18.70079,3.937008,19.68504,2.72523E-09,18.70079,2.725656E-09,19.68504,3.937008,18.70079,3.937008,-19.68504,2.72523E-09,-19.68504,3.937008,-18.70079,2.725486E-09,-18.70079,3.937008,19.68504,2.72523E-09,18.70079,2.725486E-09,19.68504,3.937008,18.70079,3.937008 + } + UVIndex: *168 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,5,2,5,7,4,7,8,4,9,8,7,8,10,4,11,4,10,12,14,13,15,13,14,16,15,14,17,19,18,20,18,19,21,20,19,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,31,33,35,31,34,36,35,34,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,53,52,55,54,52,56,54,55,57,56,55,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,56,57,70,71,37,36,72,33,32,53,73,51,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *56 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighGableTop, Model::RootNode + C: "OO",5108801861999239031,0 + + ;Geometry::, Model::Mesh roofHighGableTop + C: "OO",5544019630639135689,5108801861999239031 + + ;Material::woodDark, Model::Mesh roofHighGableTop + C: "OO",7186,5108801861999239031 + + ;Material::roofRed, Model::Mesh roofHighGableTop + C: "OO",7188,5108801861999239031 + + ;Material::wood, Model::Mesh roofHighGableTop + C: "OO",7178,5108801861999239031 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableTop.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableTop.fbx.import new file mode 100644 index 0000000..055d60d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableTop.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dd4mdasa4joxc" +path="res://.godot/imported/roofHighGableTop.fbx-1964cb99ac23b58ea7f66950ec11bafc.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighGableTop.fbx" +dest_files=["res://.godot/imported/roofHighGableTop.fbx-1964cb99ac23b58ea7f66950ec11bafc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighLeft.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighLeft.fbx new file mode 100644 index 0000000..c68a89a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighLeft.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 66 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighLeft.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighLeft.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5412503320923595457, "Model::roofHighLeft", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4951300051123703092, "Geometry::", "Mesh" { + Vertices: *381 { + a: 4,10.40711,-4,4,10.40711,5,4,9.907106,-4,4,9.707107,-4,4,9.707107,5,4,9,4.75,-4,1,4.75,4,9,5,-4,1,5,4,9,-5,-4,1,-5,4,9,-4.75,-4,1,-4.75,-5.353553,-0.3535534,5,-5.353553,-0.3535534,-4,-5.707107,-3.835154E-15,5,-5.707107,-4.461187E-14,-4,-5.353553,-0.3535534,5,-5.707107,-3.835154E-15,5,-5,-2.255973E-16,5,-4.707107,1,5,-4,1,5,4,9.707107,5,4,9,5,5,10,5,4,10.40711,5,5,11.40711,5,4,9.707107,-4,4,9.707107,5,-4.707107,1,-4,-4.707107,1,5,-5,-2.255973E-16,-5,-5.353553,-0.3535534,-5,-5,-2.255973E-16,5,-5.353553,-0.3535534,-4,-5.353553,-0.3535534,5,4,10.40711,-4,5,11.40711,-4,4,10.40711,5,5,11.40711,5,4,-2.255973E-16,4.75,-4,-2.255973E-16,4.75,4,9,4.75,-4,1,4.75,-4,-2.255973E-16,-4.75,4,-2.255973E-16,-4.75,-4,1,-4.75,4,9,-4.75,-4,-2.255973E-16,5,-4,-2.255973E-16,4.75,-5,-2.255973E-16,5,-4,-2.255973E-16,-4.75,-4,-2.255973E-16,-5,-5,-2.255973E-16,-5,4,-2.255973E-16,-4.75,4,-2.255973E-16,4.75,4,-2.255973E-16,-5,4,-2.255973E-16,5,5,-2.255973E-16,-5,5,-2.255973E-16,5,5,11.90711,-5,5,-2.255973E-16,-5,5,11.90711,-4,5,11.40711,-4,5,-2.255973E-16,5,5,11.40711,5,5,10,5,-4,-2.255973E-16,5,4,10.40711,-5,-6.414214,-0.007106781,-5,-6.414214,-0.007106781,-4,5,11.90711,-4,5,11.40711,-4,4,10.90711,-4,4,10.40711,-4,4,9.907106,-4,-4.707107,1,-4,4,9.707107,-4,-5.707107,-4.461187E-14,-4,-6.414214,-0.007106781,-4,-5.353553,-0.3535534,-4,-5.707107,-0.7071068,-4,4,10.40711,-5,4,10.90711,-5,4,10.90711,-4,5,-2.255973E-16,5,4,-2.255973E-16,5,-4,1,4.75,-4,-2.255973E-16,4.75,-4,1,5,-4,-2.255973E-16,5,-5.707107,-0.7071068,-5,-5.353553,-0.3535534,-5,-6.414214,-0.007106781,-5,-5,-2.255973E-16,-5,4,10.40711,-5,-4,1,-5,-4,-2.255973E-16,-5,4,9,-5,5,11.90711,-5,4,10.90711,-5,5,-2.255973E-16,-5,4,-2.255973E-16,-5,-5.707107,-0.7071068,-4,-5.707107,-0.7071068,-5,-6.414214,-0.007106781,-4,-6.414214,-0.007106781,-5,-4,1,-5,-4,-2.255973E-16,-5,-4,1,-4.75,-4,-2.255973E-16,-4.75,4,-2.255973E-16,4.75,4,9,4.75,4,-2.255973E-16,5,4,9,5,4,-2.255973E-16,-5,4,9,-5,4,-2.255973E-16,-4.75,4,9,-4.75,4,10.90711,-5,5,11.90711,-5,4,10.90711,-4,5,11.90711,-4,-5.707107,-0.7071068,-4,-5.707107,-0.7071068,-5,-5.707107,-4.461187E-14,-4,-5.707107,-3.835154E-15,5 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,20,-20,22,20,-22,23,22,-22,24,22,-24,25,22,-25,26,25,-25,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,34,-34,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,53,52,-51,51,54,-50,55,49,-55,54,56,-56,55,56,-58,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,61,-64,65,64,-64,66,64,-66,67,21,-20,68,69,-37,70,36,-70,71,73,-73,74,72,-74,75,74,-77,77,75,-77,76,74,-79,74,79,-79,78,79,-81,81,80,-80,82,0,-84,84,83,-1,85,24,-87,23,86,-25,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,94,-94,96,94,-96,97,94,-97,98,96,-96,95,99,-99,100,99,-96,99,101,-99,102,98,-102,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,113,-113,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,34,123,-33,124,32,-124,29,125,-31,126,30,-126 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *254 { + a: -15.74803,40.97286,19.68504,40.97286,-15.74803,39.00436,-15.74803,38.21696,19.68504,38.21696,-18.70079,36.19051,-18.70079,-8.351655,-19.68504,36.19051,-19.68504,-8.351655,19.68504,36.19051,19.68504,-8.351655,18.70079,36.19051,18.70079,-8.351655,19.68504,13.91943,-15.74803,13.91943,19.68504,15.88793,-15.74803,15.88793,-21.07698,-1.391943,-22.46892,1.268374E-13,-19.68504,-8.881784E-16,-18.53192,3.937008,-15.74803,3.937008,15.74803,38.21696,15.74803,35.43307,19.68504,39.37008,15.74803,40.97286,19.68504,44.90987,-15.74803,38.15901,19.68504,38.15901,-15.74803,-10.32016,19.68504,-10.32016,19.68504,-13.91943,19.68504,-15.88793,-19.68504,-13.91943,15.74803,-15.88793,-19.68504,-15.88793,-15.74803,40.10773,-15.74803,45.6755,19.68504,40.10773,19.68504,45.6755,15.74803,-8.881784E-16,-15.74803,-8.881784E-16,15.74803,35.43307,-15.74803,3.937008,15.74803,-8.881784E-16,-15.74803,-8.881784E-16,15.74803,3.937008,-15.74803,35.43307,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-18.70079,15.74803,18.70079,15.74803,-19.68504,15.74803,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,46.87837,19.68504,1.727989E-13,15.74803,46.87837,15.74803,44.90987,-19.68504,1.727989E-13,-19.68504,44.90987,-19.68504,39.37008,-15.74803,-8.881784E-16,-19.68504,40.10773,-19.68504,-17.87622,-15.74803,-17.87622,19.68504,46.87837,19.68504,44.90987,15.74803,42.94136,15.74803,40.97286,15.74803,39.00436,-18.53192,3.937008,15.74803,38.21696,-22.46892,1.697387E-12,-25.25281,-0.02797945,-21.07698,-1.391943,-22.46892,-2.783885,-19.68504,40.97286,-19.68504,42.94136,-15.74803,42.94136,19.68504,-8.881784E-16,15.74803,-8.881784E-16,-18.70079,3.937008,-18.70079,-8.881784E-16,-19.68504,3.937008,-19.68504,-8.881784E-16,22.46892,-2.783885,21.07698,-1.391943,25.25281,-0.02797945,19.68504,1.190127E-12,-15.74803,40.97286,15.74803,3.937008,15.74803,1.190127E-12,-15.74803,35.43307,-19.68504,46.87837,-15.74803,42.94136,-19.68504,1.190127E-12,-15.74803,1.190127E-12,-15.74803,14.00943,-19.68504,14.00943,-15.74803,17.92671,-19.68504,17.92671,19.68504,3.937008,19.68504,-8.881784E-16,18.70079,3.937008,18.70079,-8.881784E-16,18.70079,-8.881784E-16,18.70079,35.43307,19.68504,-8.881784E-16,19.68504,35.43307,-19.68504,-8.881784E-16,-19.68504,35.43307,-18.70079,-8.881784E-16,-18.70079,35.43307,-19.68504,41.49967,-19.68504,47.06744,-15.74803,41.49967,-15.74803,47.06744,15.74803,-17.85643,19.68504,-17.85643,-15.74803,-15.88793,19.68504,-15.88793 + } + UVIndex: *252 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,20,19,22,20,21,23,22,21,24,22,23,25,22,24,26,25,24,27,29,28,30,28,29,31,33,32,34,32,33,35,34,33,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,53,52,50,51,54,49,55,49,54,54,56,55,55,56,57,56,58,57,59,57,58,60,62,61,63,61,62,64,61,63,65,64,63,66,64,65,67,21,19,68,69,36,70,36,69,71,73,72,74,72,73,75,74,76,77,75,76,76,74,78,74,79,78,78,79,80,81,80,79,82,0,83,84,83,0,85,24,86,23,86,24,87,89,88,90,88,89,91,93,92,94,92,93,95,94,93,96,94,95,97,94,96,98,96,95,95,99,98,100,99,95,99,101,98,102,98,101,103,105,104,106,104,105,107,109,108,110,108,109,111,113,112,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,34,123,32,124,32,123,29,125,30,126,30,125 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighLeft, Model::RootNode + C: "OO",5412503320923595457,0 + + ;Geometry::, Model::Mesh roofHighLeft + C: "OO",4951300051123703092,5412503320923595457 + + ;Material::roofRed, Model::Mesh roofHighLeft + C: "OO",7188,5412503320923595457 + + ;Material::woodDark, Model::Mesh roofHighLeft + C: "OO",7186,5412503320923595457 + + ;Material::wood, Model::Mesh roofHighLeft + C: "OO",7178,5412503320923595457 + + ;Material::roofRedLight, Model::Mesh roofHighLeft + C: "OO",7190,5412503320923595457 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighLeft.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighLeft.fbx.import new file mode 100644 index 0000000..1e35a96 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighLeft.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bbdteeh3nsrwx" +path="res://.godot/imported/roofHighLeft.fbx-1e2ddab9021b36af4ac7a3d63a709d70.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighLeft.fbx" +dest_files=["res://.godot/imported/roofHighLeft.fbx-1e2ddab9021b36af4ac7a3d63a709d70.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighPoint.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighPoint.fbx new file mode 100644 index 0000000..120b91c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighPoint.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 109 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighPoint.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighPoint.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5340910801486957008, "Model::roofHighPoint", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5043315704216130043, "Geometry::", "Mesh" { + Vertices: *228 { + a: 1.375,10,1.375,4.984375,1.25,4.546875,4.546875,1.25,4.984375,4.546875,1.25,-4.984375,4.984375,1.25,-4.546875,1.375,10,-1.375,-4.546875,1.25,4.984375,-4.984375,1.25,4.546875,-1.375,10,1.375,-4.984375,1.25,-4.546875,-4.546875,1.25,-4.984375,-1.375,10,-1.375,5.5,0,5,5.5,0,-5,5,0,5.5,5,0,-5,5,0,-5.5,-5,0,-5,-5,0,-5.5,5,0,5,-5,0,5,-5,0,5.5,-5.5,0,5,-5.5,0,-5,1.375,10,-1.375,1.375,10,1.375,0.6875,9.499999,-0.6875,0.6875,9.499999,0.6875,0.6875,9.499999,-0.6875,0.6875,9.499999,0.6875,-0.6875,9.499999,-0.6875,-0.6875,9.499999,0.6875,1.375,10,1.375,-1.375,10,1.375,0.6875,9.499999,0.6875,-0.6875,9.499999,0.6875,1.375,10,-1.375,0.6875,9.499999,-0.6875,-1.375,10,-1.375,-0.6875,9.499999,-0.6875,4.984375,1.25,-4.546875,4.984375,1.25,4.546875,1.375,10,-1.375,1.375,10,1.375,-4.546875,1.25,4.984375,-1.375,10,1.375,4.546875,1.25,4.984375,1.375,10,1.375,4.546875,1.25,-4.984375,1.375,10,-1.375,-4.546875,1.25,-4.984375,-1.375,10,-1.375,-4.984375,1.25,-4.546875,-1.375,10,-1.375,-4.984375,1.25,4.546875,-1.375,10,1.375,-0.6875,9.499999,-0.6875,-0.6875,9.499999,0.6875,-1.375,10,-1.375,-1.375,10,1.375,5,0,-5.5,5.5,0,-5,5.5,0,5,5,0,5.5,-5.5,0,-5,-5.5,0,5,-5,0,5.5,-5.5,0,5,-5.5,0,-5,-5,0,-5.5,-5,0,-5.5,5,0,-5.5,5.5,0,-5,5.5,0,5,5,0,5.5,-5,0,5.5 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,13,-15,13,15,-17,17,16,-16,18,16,-18,19,15,-15,15,19,-18,20,19,-15,20,17,-20,20,18,-18,21,20,-15,21,18,-21,22,18,-22,23,18,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,3,-62,4,61,-4,1,2,-63,63,62,-3,64,65,-53,54,52,-66,66,6,-68,7,67,-7,68,9,-70,10,69,-10,70,50,-72,48,71,-51,72,40,-74,41,73,-41,74,46,-76,44,75,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0.6200991,0.4805768,0.6200991,0.6200991,0.4805768,0.6200991,0.6200991,0.4805768,0.6200991,0.6200991,0.4805768,-0.6200991,0.6200991,0.4805768,-0.6200991,0.6200991,0.4805768,-0.6200991,-0.6200991,0.4805768,0.6200991,-0.6200991,0.4805768,0.6200991,-0.6200991,0.4805768,0.6200991,-0.6200991,0.4805768,-0.6200991,-0.6200991,0.4805768,-0.6200991,-0.6200991,0.4805768,-0.6200991,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,0.8087361,0.5881717,0,0.8087361,0.5881717,0,0.8087361,0.5881717,0,0.8087361,0.5881717,0,0.8087361,0.5881717,0,0.8087361,0.5881717,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0,0.3813309,0.9244386,0,0.3813309,0.9244386,0,0.3813309,0.9244386,0,0.3813309,0.9244386,0,0.3813309,0.9244386,0,0.3813309,0.9244386,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0.6200991,0.4805768,-0.6200991,0.6200991,0.4805768,-0.6200991,0.6200991,0.4805768,-0.6200991,0.6200991,0.4805768,-0.6200991,0.6200991,0.4805768,-0.6200991,0.6200991,0.4805768,-0.6200991,0.6200991,0.4805768,0.6200991,0.6200991,0.4805768,0.6200991,0.6200991,0.4805768,0.6200991,0.6200991,0.4805768,0.6200991,0.6200991,0.4805768,0.6200991,0.6200991,0.4805768,0.6200991,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,-0.9244386,0.3813309,0,-0.6200991,0.4805768,0.6200991,-0.6200991,0.4805768,0.6200991,-0.6200991,0.4805768,0.6200991,-0.6200991,0.4805768,0.6200991,-0.6200991,0.4805768,0.6200991,-0.6200991,0.4805768,0.6200991,-0.6200991,0.4805768,-0.6200991,-0.6200991,0.4805768,-0.6200991,-0.6200991,0.4805768,-0.6200991,-0.6200991,0.4805768,-0.6200991,-0.6200991,0.4805768,-0.6200991,-0.6200991,0.4805768,-0.6200991,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,0,0.3813309,-0.9244386,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0.9244386,0.3813309,0,0,0.3813309,0.9244386,0,0.3813309,0.9244386,0,0.3813309,0.9244386,0,0.3813309,0.9244386,0,0.3813309,0.9244386,0,0.3813309,0.9244386 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *152 { + a: 5.713208E-12,30.84655,1.21795,-8.435867,-1.21795,-8.435867,1.21795,-8.435867,-1.21795,-8.435867,1.837686E-11,30.84655,1.21795,-8.435867,-1.21795,-8.435867,-1.862022E-11,30.84655,1.21795,-8.435867,-1.21795,-8.435867,-5.754064E-12,30.84655,21.65354,19.68504,21.65354,-19.68504,19.68504,21.65354,19.68504,-19.68504,19.68504,-21.65354,-19.68504,-19.68504,-19.68504,-21.65354,19.68504,19.68504,-19.68504,19.68504,-19.68504,21.65354,-21.65354,19.68504,-21.65354,-19.68504,-5.413386,27.53437,5.413386,27.53437,-2.706693,24.18755,2.706693,24.18755,-2.706693,-2.706693,-2.706693,2.706693,2.706693,-2.706693,2.706693,2.706693,-5.413386,27.53437,5.413386,27.53437,-2.706693,24.18755,2.706693,24.18755,5.413386,27.53437,2.706693,24.18755,-5.413386,27.53437,-2.706693,24.18755,17.90108,-2.933654,-17.90108,-2.933654,5.413386,34.33093,-5.413386,34.33093,-17.90108,-2.933654,-5.413386,34.33093,17.90108,-2.933654,5.413386,34.33093,-17.90108,-2.933654,-5.413386,34.33093,17.90108,-2.933654,5.413386,34.33093,-17.90108,-2.933654,-5.413386,34.33093,17.90108,-2.933654,5.413386,34.33093,2.706693,24.18755,-2.706693,24.18755,5.413386,27.53437,-5.413386,27.53437,1.391943,-14.04764,-1.391943,-14.04764,1.391943,-14.04764,-1.391943,-14.04764,-19.68504,-8.257166,19.68504,-8.257166,1.391943,-14.04764,-1.391943,-14.04764,1.391943,-14.04764,-1.391943,-14.04764,19.68504,-8.257166,-19.68504,-8.257166,19.68504,-8.257166,-19.68504,-8.257166,19.68504,-8.257166,-19.68504,-8.257166 + } + UVIndex: *156 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,13,14,13,15,16,17,16,15,18,16,17,19,15,14,15,19,17,20,19,14,20,17,19,20,18,17,21,20,14,21,18,20,22,18,21,23,18,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,3,61,4,61,3,1,2,62,63,62,2,64,65,52,54,52,65,66,6,67,7,67,6,68,9,69,10,69,9,70,50,71,48,71,50,72,40,73,41,73,40,74,46,75,44,75,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighPoint, Model::RootNode + C: "OO",5340910801486957008,0 + + ;Geometry::, Model::Mesh roofHighPoint + C: "OO",5043315704216130043,5340910801486957008 + + ;Material::roofRed, Model::Mesh roofHighPoint + C: "OO",7188,5340910801486957008 + + ;Material::roofRedLight, Model::Mesh roofHighPoint + C: "OO",7190,5340910801486957008 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighPoint.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighPoint.fbx.import new file mode 100644 index 0000000..8677a4a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighPoint.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bi38uouwpevvy" +path="res://.godot/imported/roofHighPoint.fbx-238dc341439685e0efb3ecf06d174800.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighPoint.fbx" +dest_files=["res://.godot/imported/roofHighPoint.fbx-238dc341439685e0efb3ecf06d174800.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighRight.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighRight.fbx new file mode 100644 index 0000000..554e0f5 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighRight.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 148 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighRight.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighRight.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4731785655781639107, "Model::roofHighRight", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5010363288594098241, "Geometry::", "Mesh" { + Vertices: *381 { + a: 4,9.707107,-5,4,10.40711,-5,4,9.707107,4,4,9.907106,4,4,10.40711,4,4,9,-5,-4,1,-5,4,9,-4.75,-4,1,-4.75,-5.353553,-0.3535534,-5,-5,-2.255973E-16,-5,-5.707107,-3.835154E-15,-5,-4.707107,1,-5,-4,1,-5,4,9.707107,-5,4,9,-5,5,10,-5,4,10.40711,-5,5,11.40711,-5,4,9.707107,4,-4.707107,1,4,4,9.707107,-5,-4.707107,1,-5,4,9,4.75,-4,1,4.75,4,9,5,-4,1,5,-5,-2.255973E-16,-5,-5.353553,-0.3535534,-5,-5,-2.255973E-16,5,-5.353553,-0.3535534,4,-5.353553,-0.3535534,5,-5.353553,-0.3535534,4,-5.353553,-0.3535534,-5,-5.707107,-4.466827E-14,4,-5.707107,-3.835154E-15,-5,5,11.40711,-5,5,11.40711,4,4,10.40711,-5,4,10.40711,4,-4,-2.255973E-16,-4.75,4,-2.255973E-16,-4.75,-4,1,-4.75,4,9,-4.75,5,11.90711,4,5,11.40711,4,5,11.90711,5,5,-2.255973E-16,5,5,-2.255973E-16,-5,5,10,-5,5,11.40711,-5,4,-2.255973E-16,4.75,-4,-2.255973E-16,4.75,4,9,4.75,-4,1,4.75,-4,-2.255973E-16,5,-4,-2.255973E-16,4.75,-5,-2.255973E-16,5,-4,-2.255973E-16,-4.75,-4,-2.255973E-16,-5,-5,-2.255973E-16,-5,4,-2.255973E-16,-4.75,4,-2.255973E-16,4.75,4,-2.255973E-16,-5,4,-2.255973E-16,5,5,-2.255973E-16,-5,5,-2.255973E-16,5,-4,-2.255973E-16,-5,4,10.40711,5,-6.414214,-0.007106781,5,-6.414214,-0.007106781,4,5,11.90711,4,4,10.90711,4,5,11.40711,4,4,10.40711,4,4,9.907106,4,-4.707107,1,4,4,9.707107,4,-5.707107,-4.466827E-14,4,-6.414214,-0.007106781,4,-5.353553,-0.3535534,4,-5.707107,-0.7071068,4,4,10.90711,4,4,10.40711,5,4,10.90711,5,4,-2.255973E-16,-5,5,-2.255973E-16,-5,-4,1,-5,-4,-2.255973E-16,-5,-4,1,-4.75,-4,-2.255973E-16,-4.75,4,-2.255973E-16,-5,4,9,-5,4,-2.255973E-16,-4.75,4,9,-4.75,5,11.90711,4,5,11.90711,5,4,10.90711,4,4,10.90711,5,-5.707107,-0.7071068,4,-5.707107,-0.7071068,5,-4,-2.255973E-16,5,-5,-2.255973E-16,5,-4,1,5,4,10.40711,5,4,9,5,-6.414214,-0.007106781,5,-5.353553,-0.3535534,5,-5.707107,-0.7071068,5,5,11.90711,5,4,10.90711,5,4,-2.255973E-16,5,5,-2.255973E-16,5,-4,1,4.75,-4,-2.255973E-16,4.75,-4,1,5,-4,-2.255973E-16,5,-5.707107,-0.7071068,5,-5.707107,-0.7071068,4,-6.414214,-0.007106781,5,-6.414214,-0.007106781,4,4,-2.255973E-16,4.75,4,9,4.75,4,-2.255973E-16,5,4,9,5,-5.707107,-4.466827E-14,4,-5.707107,-3.835154E-15,-5 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,10,-13,14,13,-13,15,13,-15,16,15,-15,17,16,-15,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,30,-30,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,47,48,-46,48,49,-46,50,45,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,58,-58,60,59,-58,58,61,-57,62,56,-62,61,63,-63,62,63,-65,63,65,-65,66,64,-66,10,13,-68,68,39,-70,70,69,-40,71,73,-73,74,72,-74,75,76,-75,77,76,-76,76,78,-75,74,78,-80,78,80,-80,81,79,-81,4,83,-83,84,82,-84,85,15,-87,16,86,-16,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,30,31,-100,100,99,-32,101,103,-103,103,104,-103,105,104,-104,104,106,-103,102,106,-108,108,107,-107,104,105,-110,110,104,-110,105,111,-110,112,109,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,20,22,-126,126,125,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,-0.7035264,-0.710669,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *254 { + a: -19.68504,38.21696,-19.68504,40.97286,15.74803,38.21696,15.74803,39.00436,15.74803,40.97286,19.68504,36.19051,19.68504,-8.351655,18.70079,36.19051,18.70079,-8.351655,21.07698,-1.391943,19.68504,-8.881784E-16,22.46892,1.268374E-13,18.53192,3.937008,15.74803,3.937008,-15.74803,38.21696,-15.74803,35.43307,-19.68504,39.37008,-15.74803,40.97286,-19.68504,44.90987,15.74803,38.15901,15.74803,-10.32016,-19.68504,38.15901,-19.68504,-10.32016,-18.70079,36.19051,-18.70079,-8.351655,-19.68504,36.19051,-19.68504,-8.351655,19.68504,-13.91943,19.68504,-15.88793,-19.68504,-13.91943,-15.74803,-15.88793,-19.68504,-15.88793,15.74803,13.91943,-19.68504,13.91943,15.74803,15.88793,-19.68504,15.88793,-19.68504,45.6755,15.74803,45.6755,-19.68504,40.10773,15.74803,40.10773,15.74803,-8.881784E-16,-15.74803,-8.881784E-16,15.74803,3.937008,-15.74803,35.43307,-15.74803,46.87837,-15.74803,44.90987,-19.68504,46.87837,-19.68504,1.727989E-13,19.68504,1.727989E-13,19.68504,39.37008,19.68504,44.90987,15.74803,-8.881784E-16,-15.74803,-8.881784E-16,15.74803,35.43307,-15.74803,3.937008,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-18.70079,15.74803,18.70079,15.74803,-19.68504,15.74803,19.68504,19.68504,-19.68504,19.68504,19.68504,15.74803,-8.881784E-16,19.68504,40.10773,19.68504,-17.87622,15.74803,-17.87622,-19.68504,46.87837,-15.74803,42.94136,-19.68504,44.90987,-15.74803,40.97286,-15.74803,39.00436,18.53192,3.937008,-15.74803,38.21696,22.46892,1.697165E-12,25.25281,-0.02797945,21.07698,-1.391943,22.46892,-2.783885,15.74803,42.94136,19.68504,40.97286,19.68504,42.94136,-15.74803,-8.881784E-16,-19.68504,-8.881784E-16,19.68504,3.937008,19.68504,-8.881784E-16,18.70079,3.937008,18.70079,-8.881784E-16,-19.68504,-8.881784E-16,-19.68504,35.43307,-18.70079,-8.881784E-16,-18.70079,35.43307,15.74803,47.06744,19.68504,47.06744,15.74803,41.49967,19.68504,41.49967,-15.74803,-17.85643,-19.68504,-17.85643,-15.74803,1.190127E-12,-19.68504,1.190127E-12,-15.74803,3.937008,15.74803,40.97286,15.74803,35.43307,-25.25281,-0.02797945,-21.07698,-1.391943,-22.46892,-2.783885,19.68504,46.87837,15.74803,42.94136,15.74803,1.190127E-12,19.68504,1.190127E-12,-18.70079,3.937008,-18.70079,-8.881784E-16,-19.68504,3.937008,-19.68504,-8.881784E-16,19.68504,14.00943,15.74803,14.00943,19.68504,17.92671,15.74803,17.92671,18.70079,-8.881784E-16,18.70079,35.43307,19.68504,-8.881784E-16,19.68504,35.43307,15.74803,-15.88793,-19.68504,-15.88793 + } + UVIndex: *252 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,8,6,7,9,11,10,12,10,11,13,10,12,14,13,12,15,13,14,16,15,14,17,16,14,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,31,30,29,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,47,48,45,48,49,45,50,45,49,51,53,52,54,52,53,55,57,56,58,56,57,59,58,57,60,59,57,58,61,56,62,56,61,61,63,62,62,63,64,63,65,64,66,64,65,10,13,67,68,39,69,70,69,39,71,73,72,74,72,73,75,76,74,77,76,75,76,78,74,74,78,79,78,80,79,81,79,80,4,83,82,84,82,83,85,15,86,16,86,15,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,30,31,99,100,99,31,101,103,102,103,104,102,105,104,103,104,106,102,102,106,107,108,107,106,104,105,109,110,104,109,105,111,109,112,109,111,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,20,22,125,126,125,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighRight, Model::RootNode + C: "OO",4731785655781639107,0 + + ;Geometry::, Model::Mesh roofHighRight + C: "OO",5010363288594098241,4731785655781639107 + + ;Material::roofRed, Model::Mesh roofHighRight + C: "OO",7188,4731785655781639107 + + ;Material::woodDark, Model::Mesh roofHighRight + C: "OO",7186,4731785655781639107 + + ;Material::wood, Model::Mesh roofHighRight + C: "OO",7178,4731785655781639107 + + ;Material::roofRedLight, Model::Mesh roofHighRight + C: "OO",7190,4731785655781639107 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighRight.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighRight.fbx.import new file mode 100644 index 0000000..ea6aa37 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighRight.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b0nn26hum08kp" +path="res://.godot/imported/roofHighRight.fbx-12b33a55ac4785b8df6fcd59e4708669.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighRight.fbx" +dest_files=["res://.godot/imported/roofHighRight.fbx-12b33a55ac4785b8df6fcd59e4708669.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighWindow.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighWindow.fbx new file mode 100644 index 0000000..7350760 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighWindow.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 201 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofHighWindow.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofHighWindow.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4896932562319038533, "Model::roofHighWindow", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4977563858949124812, "Geometry::", "Mesh" { + Vertices: *1041 { + a: -4.707107,5.4,-2.5,-4.707107,1,-2.5,-0.3071068,5.4,-2.5,-0.3071068,5.4,2.5,-4.707107,1,2.5,-4.707107,5.4,2.5,5,11.40711,-5,5,10,-5,5,11.40711,5,5,0,-5,5,0,5,5,10,5,-4,0,5,-4,0,4.75,-5,0,5,-4,0,-4.75,-4,0,-5,-5,0,-5,4,0,-4.75,4,0,4.75,4,0,-5,4,0,5,5,0,-5,5,0,5,-4,0,-4.75,4,0,-4.75,-4,1,-4.75,4,9,-4.75,4,0,4.75,-4,0,4.75,4,9,4.75,-4,1,4.75,-3.707107,4.871972,-1.001435,-5.207107,4.871972,-1.001435,-3.707107,6.116599,-3.17641E-13,-4.707107,5.961244,-0.125,-4.707107,6.116599,-3.465175E-13,-4.957107,5.961244,-0.125,-5.207107,6.116599,-3.17641E-13,-4.957107,6.116599,-3.465175E-13,-3.707107,2.498564,-1.001435,-3.707107,4.871972,-1.001435,-3.707107,2.498564,1.001435,-3.707107,6.116599,-3.17641E-13,-3.707107,4.871972,1.001435,-3.707107,2.498564,-1.001435,-5.207107,2.498564,-1.001435,-3.707107,4.871972,-1.001435,-4.769607,3.298564,-1.001435,-4.894607,3.298564,-1.001435,-4.769607,3.548565,-1.001435,-5.207107,4.871972,-1.001435,-4.894607,3.548565,-1.001435,-4.894607,4.448565,-1.001435,-4.769607,4.448565,-1.001435,-4.894607,4.698565,-1.001435,-4.769607,4.698565,-1.001435,-3.707107,2.498564,-1.001435,-3.707107,2.498564,1.001435,-5.207107,2.498564,-1.001435,-4.707107,2.498564,-0.125,-4.957107,2.498564,-0.125,-4.707107,2.498564,0.125,-4.957107,2.498564,0.125,-5.207107,2.498564,1.001435,-5.207107,4.871972,1.001435,-3.707107,4.871972,1.001435,-5.207107,6.116599,-3.17641E-13,-4.957107,5.961244,0.125,-4.957107,6.116599,-3.465175E-13,-4.707107,5.961244,0.125,-3.707107,6.116599,-3.17641E-13,-4.707107,6.116599,-3.465175E-13,-4.707107,1.499132,2.000868,-4.707107,1,2.5,-4.707107,1.499132,-2.000868,-4.707107,5.224128,2.000868,-4.707107,1,-2.5,-4.707107,5.4,2.5,-4.707107,5.4,-2.5,-4.707107,7.710892,-3.17641E-13,-4.707107,5.224128,-2.000868,-4.707107,8.507107,-3.465175E-13,-4.894607,3.548565,1.001435,-5.207107,4.871972,1.001435,-4.894607,3.298564,1.001435,-4.769607,3.548565,1.001435,-5.207107,2.498564,1.001435,-3.707107,2.498564,1.001435,-4.769607,3.298564,1.001435,-3.707107,4.871972,1.001435,-4.769607,4.448565,1.001435,-4.894607,4.448565,1.001435,-4.769607,4.698565,1.001435,-4.894607,4.698565,1.001435,-4,0,5,-5,0,5,-4,1,5,-5,0,-5,-4,0,-5,-4,1,-5,4,0,-5,5,0,-5,4,9,-5,5,10,-5,-4,1,-5,-4,0,-5,-4,1,-4.75,-4,0,-4.75,5,0,5,4,0,5,5,10,5,4,9,5,4,0,4.75,4,9,4.75,4,0,5,4,9,5,-4,1,4.75,-4,0,4.75,-4,1,5,-4,0,5,-4.707107,2.00282,1.49718,-5.207107,2.00282,1.49718,-4.707107,5.046651,1.49718,-5.207107,5.046651,1.49718,-4.707107,5.046651,1.49718,-5.207107,5.046651,1.49718,-4.707107,6.90741,-3.17641E-13,-5.207107,6.90741,-3.17641E-13,-5.207107,5.046651,-1.49718,-4.707107,5.046651,-1.49718,-5.207107,6.90741,-3.17641E-13,-4.707107,6.90741,-3.17641E-13,-5.207107,2.00282,-1.49718,-4.707107,2.00282,-1.49718,-5.207107,5.046651,-1.49718,-4.707107,5.046651,-1.49718,4,0,-5,4,9,-5,4,0,-4.75,4,9,-4.75,-4.769607,4.698565,0.125,-4.769607,4.448565,0.125,-4.769607,4.698565,1.001435,-4.769607,4.448565,1.001435,-4.707107,5.961244,-0.125,-4.707107,2.498564,-0.125,-4.707107,6.116599,-3.465175E-13,-4.707107,2.498564,0.125,-4.707107,5.961244,0.125,-4.769607,4.448565,-0.125,-4.769607,4.448565,-1.001435,-4.894607,4.448565,-0.125,-4.894607,4.448565,-1.001435,-4.769607,4.698565,-1.001435,-4.769607,4.698565,-0.125,-4.894607,4.698565,-1.001435,-4.894607,4.698565,-0.125,-4.707107,2.00282,-1.49718,-5.207107,2.00282,-1.49718,-4.707107,2.00282,1.49718,-5.207107,2.00282,1.49718,-4.894607,3.298564,-1.001435,-4.894607,3.548565,-1.001435,-4.894607,3.298564,-0.125,-4.894607,3.548565,-0.125,-4.894607,4.448565,-1.001435,-4.894607,4.698565,-1.001435,-4.894607,4.448565,-0.125,-4.894607,4.698565,-0.125,-4.769607,3.298564,1.001435,-4.769607,3.298564,0.125,-4.894607,3.298564,1.001435,-4.894607,3.298564,0.125,-4.769607,3.548565,-1.001435,-4.769607,3.548565,-0.125,-4.894607,3.548565,-1.001435,-4.894607,3.548565,-0.125,-4.769607,3.298564,-0.125,-4.769607,3.298564,-1.001435,-4.894607,3.298564,-0.125,-4.894607,3.298564,-1.001435,-4.769607,4.698565,0.125,-4.769607,4.698565,1.001435,-4.894607,4.698565,0.125,-4.894607,4.698565,1.001435,-4.894607,4.448565,0.125,-4.894607,4.698565,0.125,-4.894607,4.448565,1.001435,-4.894607,4.698565,1.001435,-4.769607,4.448565,1.001435,-4.769607,4.448565,0.125,-4.894607,4.448565,1.001435,-4.894607,4.448565,0.125,-4.769607,4.448565,-1.001435,-4.769607,4.448565,-0.125,-4.769607,4.698565,-1.001435,-4.769607,4.698565,-0.125,-4.957107,2.498564,-0.125,-4.957107,5.961244,-0.125,-4.957107,2.498564,0.125,-4.957107,6.116599,-3.465175E-13,-4.957107,5.961244,0.125,-4.769607,3.548565,0.125,-4.769607,3.548565,1.001435,-4.894607,3.548565,0.125,-4.894607,3.548565,1.001435,-4.769607,3.298564,-1.001435,-4.769607,3.298564,-0.125,-4.769607,3.548565,-1.001435,-4.769607,3.548565,-0.125,-4.894607,3.298564,0.125,-4.894607,3.548565,0.125,-4.894607,3.298564,1.001435,-4.894607,3.548565,1.001435,-4.769607,3.548565,0.125,-4.769607,3.298564,0.125,-4.769607,3.548565,1.001435,-4.769607,3.298564,1.001435,-4.707107,2.00282,-1.49718,-4.707107,5.046651,-1.49718,-4.707107,2.00282,1.49718,-4.707107,6.90741,-3.17641E-13,-4.707107,5.046651,1.49718,-5.207107,5.046651,-1.49718,-5.207107,2.498564,-1.001435,-5.207107,2.00282,-1.49718,-5.207107,2.00282,1.49718,-5.207107,4.871972,-1.001435,-5.207107,2.498564,1.001435,-5.207107,6.90741,-3.17641E-13,-5.207107,6.116599,-3.17641E-13,-5.207107,4.871972,1.001435,-5.207107,5.046651,1.49718,-4.957107,5.961244,0.125,-4.894607,3.298564,0.125,-4.957107,2.498564,0.125,-4.707107,2.498564,0.125,-4.769607,3.298564,0.125,-4.707107,5.961244,0.125,-4.769607,3.548565,0.125,-4.894607,3.548565,0.125,-4.769607,4.448565,0.125,-4.894607,4.448565,0.125,-4.769607,4.698565,0.125,-4.894607,4.698565,0.125,-4.707107,2.498564,-0.125,-4.894607,3.298564,-0.125,-4.957107,2.498564,-0.125,-4.957107,5.961244,-0.125,-4.769607,3.298564,-0.125,-4.707107,5.961244,-0.125,-4.894607,3.548565,-0.125,-4.769607,3.548565,-0.125,-4.894607,4.448565,-0.125,-4.769607,4.448565,-0.125,-4.894607,4.698565,-0.125,-4.769607,4.698565,-0.125,-4.707107,8.507107,-3.465175E-13,-4.707107,5.4,-2.5,-5.207107,8.507107,-3.465175E-13,-5.207107,5.010443,-2.813441,-4.707107,5.010443,-2.813441,-0.6966642,5.010443,-2.813441,-0.3071068,5.4,-2.5,-0.3832236,5.323883,3.202998,-0.6966642,5.010443,2.813441,-5.207107,5.323883,3.202998,-4.707107,5.010443,2.813441,-5.207107,5.010443,2.813441,-5.207107,5.010443,2.813441,-4.707107,5.010443,2.813441,-5.207107,8.507107,-3.465175E-13,-4.707107,5.4,2.5,-4.707107,8.507107,-3.465175E-13,-0.6966642,5.010443,2.813441,-0.3071068,5.4,2.5,-5.353553,-0.3535534,-5,-5.707107,-3.609557E-15,-5,-4.707107,1,-5,4,9.707107,-5,4,10.40711,-5,5,11.40711,-5,4,10.40711,-5,5,11.40711,-5,4,10.40711,5,5,11.40711,5,-0.3832236,5.323883,-3.202998,-5.207107,5.323883,-3.202998,-0.6966642,5.010443,-2.813441,-4.707107,5.010443,-2.813441,-5.207107,5.010443,-2.813441,-0.3832236,5.323883,3.202998,-5.207107,5.323883,3.202998,3.597599,9.304707,-3.465175E-13,-5.207107,9.304707,-3.465175E-13,-5,0,-5,-5.353553,-0.3535534,-5,-5,0,5,-5.353553,-0.3535534,5,4,9,-5,-4,1,-5,4,9,-4.75,-4,1,-4.75,-5.353553,-0.3535534,5,-5.707107,-3.609557E-15,5,-4.707107,1,5,4,9.707107,5,4,10.40711,5,5,11.40711,5,-5.353553,-0.3535534,5,-5.353553,-0.3535534,-5,-5.707107,-3.609557E-15,5,-5.707107,-3.609557E-15,-5,-0.3071068,5.4,-2.5,-4.707107,1,-2.5,-0.6966642,5.010443,-2.813441,-4.707107,1,-5,-0.3832236,5.323883,-3.202998,4,9.707107,-5,3.597599,9.304707,-3.465175E-13,4,9.707107,5,-0.3832236,5.323883,3.202998,-4.707107,1,5,-0.6966642,5.010443,2.813441,-4.707107,1,2.5,-0.3071068,5.4,2.5,4,9.707107,-5,4,10.40711,-5,4,9.707107,5,4,10.40711,5,4,9,4.75,-4,1,4.75,4,9,5,-4,1,5,-5.207107,5.323883,-3.202998,-0.3832236,5.323883,-3.202998,-5.207107,9.304707,-3.465175E-13,3.597599,9.304707,-3.465175E-13,-5.207107,5.323883,-3.202998,-5.207107,9.304707,-3.465175E-13,-5.207107,5.010443,-2.813441,-5.207107,8.507107,-3.465175E-13,-5.207107,5.010443,2.813441,-5.207107,5.323883,3.202998,-5.707107,-3.609557E-15,-5,-5.707107,-3.609557E-15,5 + } + PolygonVertexIndex: *774 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,14,-14,15,13,-15,16,15,-15,17,16,-15,15,18,-14,19,13,-19,18,20,-20,19,20,-22,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,35,37,-34,38,33,-38,39,38,-38,40,42,-42,43,41,-43,44,43,-43,45,47,-47,48,46,-48,48,49,-47,50,48,-48,51,46,-50,52,50,-48,52,51,-50,53,51,-53,54,53,-53,54,52,-48,55,51,-54,47,51,-56,56,54,-48,55,56,-48,57,59,-59,60,58,-60,61,60,-60,60,62,-59,63,61,-60,64,58,-63,63,64,-63,59,64,-64,65,67,-67,68,66,-68,69,68,-68,68,70,-67,71,66,-71,72,71,-71,73,75,-75,76,73,-75,74,75,-78,74,78,-77,79,77,-76,76,78,-81,75,81,-80,78,82,-81,82,79,-82,80,82,-82,83,85,-85,86,83,-85,84,85,-88,88,87,-86,85,89,-89,90,88,-90,86,90,-90,91,90,-87,92,91,-87,92,86,-85,93,90,-92,84,90,-94,94,92,-85,93,94,-85,95,97,-97,98,100,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,148,-148,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,201,-201,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,218,216,-218,81,75,-220,73,219,-76,219,220,-82,221,219,-74,80,81,-221,222,80,-221,223,221,-74,223,80,-223,73,76,-224,76,80,-224,224,226,-226,227,225,-227,225,228,-225,229,225,-228,230,224,-229,231,230,-229,232,229,-228,232,230,-232,227,233,-233,233,230,-233,234,236,-236,237,235,-237,235,237,-239,239,238,-238,240,238,-240,241,234,-236,241,240,-243,242,240,-240,243,241,-243,243,234,-242,244,242,-240,245,234,-244,245,244,-240,239,234,-246,246,248,-248,249,247,-249,247,250,-247,251,246,-251,252,247,-250,253,251,-251,253,252,-255,254,252,-250,254,255,-254,255,251,-254,256,254,-250,257,251,-256,257,256,-250,251,257,-250,258,260,-260,260,261,-260,262,259,-262,262,263,-260,264,259,-264,265,267,-267,268,266,-268,269,268,-268,270,272,-272,273,271,-273,274,273,-273,271,273,-276,276,275,-274,277,278,-99,279,98,-279,100,98,-280,280,100,-280,103,100,-281,104,103,-281,281,104,-281,282,104,-282,283,285,-285,286,284,-286,287,289,-289,290,288,-290,291,288,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,96,-306,306,305,-97,97,306,-97,307,306,-98,112,307,-98,111,307,-113,308,307,-112,309,308,-112,310,312,-312,313,311,-313,314,316,-316,317,315,-317,316,318,-318,317,318,-320,318,320,-320,321,319,-321,320,322,-322,323,321,-323,324,323,-323,325,323,-325,326,325,-325,327,329,-329,330,328,-330,331,333,-333,334,332,-334,335,337,-337,338,336,-338,339,341,-341,342,340,-342,343,340,-343,344,340,-344,317,345,-316,325,315,-346,323,325,-346,346,323,-346 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2322 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.6268813,0.7791148,0,-0.7791148,0.6268813,0,-0.7791148,0.6268813,0,-0.7791148,0.6268813,0,-0.7791148,0.6268813,0,-0.7791148,0.6268813,0,-0.7791148,0.6268813,0,-0.7791148,0.6268813,0,-0.7791148,0.6268813,0,-0.7791148,0.6268813,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,-0.6268813,-0.7791148,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-0.7791148,-0.6268813,0,-0.7791148,-0.6268813,0,-0.7791148,-0.6268813,0,-0.7791148,-0.6268813,0,-0.7791148,-0.6268813,0,-0.7791148,-0.6268813,0,-0.7791148,-0.6268813,0,-0.7791148,-0.6268813,0,-0.7791148,-0.6268813,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0,0.6268813,0.7791148,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,0,0.6268813,-0.7791148,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *694 { + a: 18.53192,21.25984,18.53192,3.937008,1.209082,21.25984,-1.209082,21.25984,-18.53192,3.937008,-18.53192,21.25984,19.68504,44.90987,19.68504,39.37008,-19.68504,44.90987,19.68504,1.019945E-13,-19.68504,1.019945E-13,-19.68504,39.37008,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-18.70079,15.74803,18.70079,15.74803,-19.68504,15.74803,19.68504,19.68504,-19.68504,19.68504,19.68504,15.74803,0,-15.74803,0,15.74803,3.937008,-15.74803,35.43307,15.74803,0,-15.74803,0,15.74803,35.43307,-15.74803,3.937008,-14.59491,12.47262,-20.50042,12.47262,-14.59491,18.76194,-18.53192,17.9769,-18.53192,18.76194,-19.51617,17.9769,-20.50042,18.76194,-19.51617,18.76194,-3.942659,9.836868,-3.942659,19.18099,3.942659,9.836868,-1.040133E-12,24.0811,3.942659,19.18099,-14.59491,9.836868,-20.50042,9.836868,-14.59491,19.18099,-18.77798,12.98647,-19.27011,12.98647,-18.77798,13.97073,-20.50042,19.18099,-19.27011,13.97073,-19.27011,17.51403,-18.77798,17.51403,-19.27011,18.49829,-18.77798,18.49829,14.59491,-3.942659,14.59491,3.942659,20.50042,-3.942659,18.53192,-0.492126,19.51617,-0.492126,18.53192,0.492126,19.51617,0.492126,20.50042,3.942659,20.50042,12.47262,14.59491,12.47262,20.50042,18.76194,19.51617,17.9769,19.51617,18.76194,18.53192,17.9769,14.59491,18.76194,18.53192,18.76194,7.877433,5.902095,9.84252,3.937008,-7.877433,5.902095,7.877433,20.56743,-9.84252,3.937008,9.84252,21.25984,-9.84252,21.25984,-8.493773E-13,30.35784,-7.877433,20.56743,-1.04316E-12,33.49255,19.27011,13.97073,20.50042,19.18099,19.27011,12.98647,18.77798,13.97073,20.50042,9.836868,14.59491,9.836868,18.77798,12.98647,14.59491,19.18099,18.77798,17.51403,19.27011,17.51403,18.77798,18.49829,19.27011,18.49829,-15.74803,0,-19.68504,0,-15.74803,3.937008,19.68504,9.728794E-12,15.74803,0,15.74803,3.937008,-15.74803,0,-19.68504,0,-15.74803,35.43307,-19.68504,39.37008,19.68504,3.937008,19.68504,0,18.70079,3.937008,18.70079,0,19.68504,1.097019E-30,15.74803,1.097019E-30,19.68504,39.37008,15.74803,35.43307,18.70079,0,18.70079,35.43307,19.68504,0,19.68504,35.43307,-18.70079,3.937008,-18.70079,0,-19.68504,3.937008,-19.68504,0,-18.53192,7.885118,-20.50042,7.885118,-18.53192,19.8687,-20.50042,19.8687,-18.53192,11.78491,-20.50042,11.78491,-18.53192,21.18766,-20.50042,21.18766,20.50042,11.78491,18.53192,11.78491,20.50042,21.18766,18.53192,21.18766,20.50042,7.885118,18.53192,7.885118,20.50042,19.8687,18.53192,19.8687,-19.68504,0,-19.68504,35.43307,-18.70079,0,-18.70079,35.43307,-0.492126,18.49829,-0.492126,17.51403,-3.942659,18.49829,-3.942659,17.51403,0.492126,23.46946,0.492126,9.836868,1.364242E-12,24.0811,-0.492126,9.836868,-0.492126,23.46946,-18.77798,-0.4921263,-18.77798,-3.94266,-19.27011,-0.4921263,-19.27011,-3.94266,18.77798,-3.94266,18.77798,-0.4921263,19.27011,-3.94266,19.27011,-0.4921263,-18.53192,-5.894409,-20.50042,-5.894409,-18.53192,5.894409,-20.50042,5.894409,-3.942659,12.98647,-3.942659,13.97073,-0.492126,12.98647,-0.492126,13.97073,-3.942659,17.51403,-3.942659,18.49829,-0.492126,17.51403,-0.492126,18.49829,-18.77798,3.942659,-18.77798,0.4921258,-19.27011,3.942659,-19.27011,0.4921258,18.77798,-3.942659,18.77798,-0.4921262,19.27011,-3.942659,19.27011,-0.4921262,-18.77798,-0.4921262,-18.77798,-3.942659,-19.27011,-0.4921262,-19.27011,-3.942659,18.77798,0.4921257,18.77798,3.942659,19.27011,0.4921257,19.27011,3.942659,0.492126,17.51403,0.492126,18.49829,3.942659,17.51403,3.942659,18.49829,-18.77798,3.942659,-18.77798,0.4921257,-19.27011,3.942659,-19.27011,0.4921257,3.942659,17.51403,0.492126,17.51403,3.942659,18.49829,0.492126,18.49829,-0.492126,9.836868,-0.492126,23.46946,0.492126,9.836868,-1.364242E-12,24.0811,0.492126,23.46946,18.77798,0.4921258,18.77798,3.942659,19.27011,0.4921258,19.27011,3.942659,3.942659,12.98647,0.492126,12.98647,3.942659,13.97073,0.492126,13.97073,0.492126,12.98647,0.492126,13.97073,3.942659,12.98647,3.942659,13.97073,-0.492126,13.97073,-0.492126,12.98647,-3.942659,13.97073,-3.942659,12.98647,-5.894409,7.885118,-5.894409,19.8687,5.894409,7.885118,-8.493773E-13,27.19453,5.894409,19.8687,-5.894409,19.8687,-3.942659,9.836868,-5.894409,7.885118,5.894409,7.885118,-3.942659,19.18099,3.942659,9.836868,-8.551588E-13,27.19453,-8.551588E-13,24.0811,3.942659,19.18099,5.894409,19.8687,-19.51617,23.46946,-19.27011,12.98647,-19.51617,9.836868,-18.53192,9.836868,-18.77798,12.98647,-18.53192,23.46946,-18.77798,13.97073,-19.27011,13.97073,-18.77798,17.51403,-19.27011,17.51403,-18.77798,18.49829,-19.27011,18.49829,18.53192,9.836868,19.27011,12.98647,19.51617,9.836868,19.51617,23.46946,18.77798,12.98647,18.53192,23.46946,19.27011,13.97073,18.77798,13.97073,19.27011,17.51403,18.77798,17.51403,19.27011,18.49829,18.77798,18.49829,-18.53192,26.09454,-18.53192,10.39377,-20.50042,26.09454,-20.50042,8.425263,-18.53192,8.425263,-2.742772,8.425263,-1.209082,10.39377,-1.508754,22.96435,-2.742772,20.99585,-20.50042,22.96435,-18.53192,20.99585,-20.50042,20.99585,20.50042,8.425263,18.53192,8.425263,20.50042,26.09454,18.53192,10.39377,18.53192,26.09454,2.742772,8.425263,1.209082,10.39377,21.07698,-1.391943,22.46892,9.714583E-12,18.53192,3.937008,-15.74803,38.21696,-15.74803,40.97286,-19.68504,44.90987,-19.68504,40.10773,-19.68504,45.6755,19.68504,40.10773,19.68504,45.6755,1.508754,22.96435,20.50042,22.96435,2.742772,20.99585,18.53192,20.99585,20.50042,20.99585,-1.508754,8.425263,-20.50042,8.425263,14.16378,28.54108,-20.50042,28.54108,19.68504,-13.91943,19.68504,-15.88793,-19.68504,-13.91943,-19.68504,-15.88793,19.68504,36.19051,19.68504,-8.351655,18.70079,36.19051,18.70079,-8.351655,-21.07698,-1.391943,-22.46892,1.277255E-13,-18.53192,3.937008,15.74803,38.21696,15.74803,40.97286,19.68504,44.90987,19.68504,13.91943,-19.68504,13.91943,19.68504,15.88793,-19.68504,15.88793,-9.84252,14.17803,-9.84252,-10.32016,-11.07654,12.00906,-19.68504,-10.32016,-12.61023,13.75423,-19.68504,38.15901,-1.608133E-12,35.91853,19.68504,38.15901,12.61023,13.75423,19.68504,-10.32016,11.07654,12.00906,9.84252,-10.32016,9.84252,14.17803,-19.68504,38.21696,-19.68504,40.97286,19.68504,38.21696,19.68504,40.97286,-18.70079,36.19051,-18.70079,-8.351655,-19.68504,36.19051,-19.68504,-8.351655,20.50042,8.425263,1.508754,8.425263,20.50042,28.54108,-14.16378,28.54108,-12.61023,20.96017,-1.039031E-12,36.6327,-11.07654,19.72615,-1.039031E-12,33.49255,11.07654,19.72615,12.61023,20.96017,-19.68504,-15.88793,19.68504,-15.88793 + } + UVIndex: *774 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,9,8,11,10,8,12,14,13,15,13,14,16,15,14,17,16,14,15,18,13,19,13,18,18,20,19,19,20,21,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,35,37,33,38,33,37,39,38,37,40,42,41,43,41,42,44,43,42,45,47,46,48,46,47,48,49,46,50,48,47,51,46,49,52,50,47,52,51,49,53,51,52,54,53,52,54,52,47,55,51,53,47,51,55,56,54,47,55,56,47,57,59,58,60,58,59,61,60,59,60,62,58,63,61,59,64,58,62,63,64,62,59,64,63,65,67,66,68,66,67,69,68,67,68,70,66,71,66,70,72,71,70,73,75,74,76,73,74,74,75,77,74,78,76,79,77,75,76,78,80,75,81,79,78,82,80,82,79,81,80,82,81,83,85,84,86,83,84,84,85,87,88,87,85,85,89,88,90,88,89,86,90,89,91,90,86,92,91,86,92,86,84,93,90,91,84,90,93,94,92,84,93,94,84,95,97,96,98,100,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,127,126,128,126,127,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,148,147,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,201,200,203,205,204,206,204,205,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,218,216,217,81,75,219,73,219,75,219,220,81,221,219,73,80,81,220,222,80,220,223,221,73,223,80,222,73,76,223,76,80,223,224,226,225,227,225,226,225,228,224,229,225,227,230,224,228,231,230,228,232,229,227,232,230,231,227,233,232,233,230,232,234,236,235,237,235,236,235,237,238,239,238,237,240,238,239,241,234,235,241,240,242,242,240,239,243,241,242,243,234,241,244,242,239,245,234,243,245,244,239,239,234,245,246,248,247,249,247,248,247,250,246,251,246,250,252,247,249,253,251,250,253,252,254,254,252,249,254,255,253,255,251,253,256,254,249,257,251,255,257,256,249,251,257,249,258,260,259,260,261,259,262,259,261,262,263,259,264,259,263,265,267,266,268,266,267,269,268,267,270,272,271,273,271,272,274,273,272,271,273,275,276,275,273,277,278,98,279,98,278,100,98,279,280,100,279,103,100,280,104,103,280,281,104,280,282,104,281,283,285,284,286,284,285,287,289,288,290,288,289,291,288,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,96,305,306,305,96,97,306,96,307,306,97,112,307,97,111,307,112,308,307,111,309,308,111,310,312,311,313,311,312,314,316,315,317,315,316,316,318,317,317,318,319,318,320,319,321,319,320,320,322,321,323,321,322,324,323,322,325,323,324,326,325,324,327,329,328,330,328,329,331,333,332,334,332,333,335,337,336,338,336,337,339,341,340,342,340,341,343,340,342,344,340,343,317,345,315,325,315,345,323,325,345,346,323,345 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *258 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } + + Material: 7190, "Material::roofRedLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.4198113,0.5096469 + P: "DiffuseColor", "Color", "", "A",1,0.4198113,0.5096469 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofHighWindow, Model::RootNode + C: "OO",4896932562319038533,0 + + ;Geometry::, Model::Mesh roofHighWindow + C: "OO",4977563858949124812,4896932562319038533 + + ;Material::woodDark, Model::Mesh roofHighWindow + C: "OO",7186,4896932562319038533 + + ;Material::wood, Model::Mesh roofHighWindow + C: "OO",7178,4896932562319038533 + + ;Material::roofRed, Model::Mesh roofHighWindow + C: "OO",7188,4896932562319038533 + + ;Material::roofRedLight, Model::Mesh roofHighWindow + C: "OO",7190,4896932562319038533 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighWindow.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighWindow.fbx.import new file mode 100644 index 0000000..b61dd2f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighWindow.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dyk53twg1k6p8" +path="res://.godot/imported/roofHighWindow.fbx-b099da52150a95c295b7253f3d4d8031.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofHighWindow.fbx" +dest_files=["res://.godot/imported/roofHighWindow.fbx-b099da52150a95c295b7253f3d4d8031.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofLeft.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofLeft.fbx new file mode 100644 index 0000000..7f4bb6a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofLeft.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 269 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofLeft.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofLeft.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4772644498793111952, "Model::roofLeft", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4677520164009842803, "Geometry::", "Mesh" { + Vertices: *387 { + a: -4,7.219114E-15,5,-5,0,5,-4,0.5,5,-4,0.5,-5,-4,7.219114E-15,-5,-4,0.5,-4.75,-4,7.219114E-15,-4.75,4,7.219114E-15,-5,4,4.5,-5,4,7.219114E-15,-4.75,4,4.5,-4.75,5,0,5,4,7.219114E-15,5,5,5,5,4,4.5,5,-4,0.5,4.75,-4,7.219114E-15,4.75,-4,0.5,5,-4,7.219114E-15,5,4,7.219114E-15,4.75,4,4.5,4.75,4,7.219114E-15,5,4,4.5,5,-5.447214,-0.2236068,-4,-5.447214,-0.2236068,-5,-5.894427,-0.4472136,-4,-5.894427,-0.4472136,-5,-5.894427,-0.4472136,-5,-6.341641,0.4472136,-5,-5.894427,-0.4472136,-4,-6.341641,0.4472136,-4,-5.894427,-0.4472136,-5,-5.447214,-0.2236068,-5,-6.341641,0.4472136,-5,-5,0,-5,-4,7.219114E-15,-5,-4,0.5,-5,4,5.618034,-5,4,4.5,-5,5,6.759017,-5,4,6.259017,-5,4,7.219114E-15,-5,5,0,-5,4,5.618034,-5,4,5.618034,-4,-6.341641,0.4472136,-5,-6.341641,0.4472136,-4,5,6.759017,-5,5,6.759017,-4,4,6.259017,-5,4,6.259017,-4,4,6.259017,-5,4,6.259017,-4,4,5.618034,-5,4,5.618034,-4,4,5.759017,-4,-5.894427,-0.4472136,-4,-6.341641,0.4472136,-4,-5.447214,-0.2236068,-4,-5.67082,0.2236068,-4,-4.461968,0.8280331,-4,4,5.618034,-4,4,5.059017,-4,4,5.759017,-4,4,6.259017,-4,5,6.259017,-4,5,6.759017,-4,4,4.5,-4.75,4,4.5,-5,-4,0.5,-4.75,-4,0.5,-5,-4,7.219114E-15,5,-4,7.219114E-15,4.75,-5,0,5,-4,7.219114E-15,-4.75,-4,7.219114E-15,-5,-5,0,-5,4,7.219114E-15,-4.75,4,7.219114E-15,4.75,4,7.219114E-15,-5,4,7.219114E-15,5,5,0,-5,5,0,5,-4,7.219114E-15,-4.75,4,7.219114E-15,-4.75,-4,0.5,-4.75,4,4.5,-4.75,4,7.219114E-15,4.75,-4,7.219114E-15,4.75,4,4.5,4.75,-4,0.5,4.75,5,6.259017,-4,5,5,5,5,6.259017,5,5,0,5,5,0,-5,5,6.759017,-4,5,6.759017,-5,-5.447214,-0.2236068,5,-5.67082,0.2236068,5,-4.461968,0.8280331,5,4,5.059017,5,5,6.259017,5,4,5.759017,5,-5.447214,-0.2236068,-4,-5.67082,0.2236068,-4,-5.447214,-0.2236068,5,-5.67082,0.2236068,5,4,4.5,5,4,4.5,4.75,-4,0.5,5,-4,0.5,4.75,-5,0,5,-5,0,-5,-5.447214,-0.2236068,5,4,5.059017,-4,4,5.059017,5,-4.461968,0.8280331,-4,-4.461968,0.8280331,5,4,5.059017,-4,4,5.059017,5,4,5.759017,-4,4,5.759017,5,5,6.259017,5,4,5.759017,5,5,6.259017,-4,4,5.759017,-4,-5.67082,0.2236068,-4,-5.67082,0.2236068,5 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,10,8,-10,11,13,-13,14,12,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,34,-34,36,35,-34,37,36,-34,38,36,-38,37,39,-39,40,39,-38,38,39,-42,42,41,-40,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,52,-55,56,58,-58,59,57,-59,60,57,-60,61,57,-61,62,61,-61,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,74,-74,76,75,-74,74,77,-73,78,72,-78,77,79,-79,78,79,-81,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,92,94,-92,94,95,-92,91,95,-97,97,96,-96,98,1,-100,2,99,-2,100,99,-3,14,100,-3,101,100,-15,13,101,-15,102,101,-14,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,23,113,-115,24,113,-24,115,117,-117,118,116,-118,119,120,-55,121,54,-121,122,121,-121,123,125,-125,126,124,-126,117,127,-119,128,118,-128 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *258 { + a: -15.74803,2.842171E-14,-19.68504,0,-15.74803,1.968504,19.68504,1.968504,19.68504,2.842171E-14,18.70079,1.968504,18.70079,2.842171E-14,-19.68504,2.842171E-14,-19.68504,17.71654,-18.70079,2.842171E-14,-18.70079,17.71654,19.68504,3.65673E-30,15.74803,2.842171E-14,19.68504,19.68504,15.74803,17.71654,-18.70079,1.968504,-18.70079,2.842171E-14,-19.68504,1.968504,-19.68504,2.842171E-14,18.70079,2.842171E-14,18.70079,17.71654,19.68504,2.842171E-14,19.68504,17.71654,15.74803,-19.57534,19.68504,-19.57534,15.74803,-21.54384,19.68504,-21.54384,-19.68504,8.803417,-19.68504,12.74043,-15.74803,8.803417,-15.74803,12.74043,23.20641,-1.760683,21.44572,-0.8803417,24.96709,1.760683,19.68504,1.346124E-12,15.74803,1.374545E-12,15.74803,1.968504,-15.74803,22.11824,-15.74803,17.71654,-19.68504,26.6103,-15.74803,24.6418,-15.74803,1.374545E-12,-19.68504,1.346124E-12,-19.68504,23.97705,-15.74803,23.97705,-19.68504,-21.54384,-15.74803,-21.54384,-19.68504,29.50732,-15.74803,29.50732,-19.68504,25.10562,-15.74803,25.10562,-19.68504,24.6418,-15.74803,24.6418,-19.68504,22.11824,-15.74803,22.11824,-15.74803,22.6733,-23.20641,-1.760683,-24.96709,1.760683,-21.44572,-0.8803417,-22.32607,0.8803417,-17.5668,3.259973,15.74803,22.11824,15.74803,19.91739,15.74803,22.6733,15.74803,24.6418,19.68504,24.6418,19.68504,26.6103,18.70079,22.00854,19.68504,22.00854,18.70079,-13.20513,19.68504,-13.20513,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-18.70079,15.74803,18.70079,15.74803,-19.68504,15.74803,19.68504,19.68504,-19.68504,19.68504,19.68504,15.74803,2.842171E-14,-15.74803,2.842171E-14,15.74803,1.968504,-15.74803,17.71654,15.74803,2.842171E-14,-15.74803,2.842171E-14,15.74803,17.71654,-15.74803,1.968504,15.74803,24.6418,-19.68504,19.68504,-19.68504,24.6418,-19.68504,-4.784056E-12,19.68504,-4.784056E-12,15.74803,26.6103,19.68504,26.6103,-21.44572,-0.8803417,-22.32607,0.8803417,-17.5668,3.259973,15.74803,19.91739,19.68504,24.6418,15.74803,22.6733,-15.74803,8.803417,-15.74803,10.77192,19.68504,8.803417,19.68504,10.77192,-19.68504,22.00854,-18.70079,22.00854,-19.68504,-13.20513,-18.70079,-13.20513,-19.68504,-17.60683,19.68504,-17.60683,-19.68504,-19.57534,-15.74803,22.9928,19.68504,22.9928,-15.74803,-14.25432,19.68504,-14.25432,-15.74803,19.91739,19.68504,19.91739,-15.74803,22.6733,19.68504,22.6733,19.68504,28.62698,19.68504,24.22527,-15.74803,28.62698,-15.74803,24.22527,-15.74803,-19.57534,19.68504,-19.57534 + } + UVIndex: *252 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,10,8,9,11,13,12,14,12,13,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,34,33,36,35,33,37,36,33,38,36,37,37,39,38,40,39,37,38,39,41,42,41,39,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,52,54,56,58,57,59,57,58,60,57,59,61,57,60,62,61,60,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,74,73,76,75,73,74,77,72,78,72,77,77,79,78,78,79,80,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,92,94,91,94,95,91,91,95,96,97,96,95,98,1,99,2,99,1,100,99,2,14,100,2,101,100,14,13,101,14,102,101,13,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,23,113,114,24,113,23,115,117,116,118,116,117,119,120,54,121,54,120,122,121,120,123,125,124,126,124,125,117,127,118,128,118,127 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofLeft, Model::RootNode + C: "OO",4772644498793111952,0 + + ;Geometry::, Model::Mesh roofLeft + C: "OO",4677520164009842803,4772644498793111952 + + ;Material::wood, Model::Mesh roofLeft + C: "OO",7178,4772644498793111952 + + ;Material::stone, Model::Mesh roofLeft + C: "OO",7184,4772644498793111952 + + ;Material::roof, Model::Mesh roofLeft + C: "OO",7172,4772644498793111952 + + ;Material::roofLight, Model::Mesh roofLeft + C: "OO",7182,4772644498793111952 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofLeft.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofLeft.fbx.import new file mode 100644 index 0000000..0a68556 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofLeft.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bfbhwa6pdev46" +path="res://.godot/imported/roofLeft.fbx-b7a2c49fcd85de272119d917a874d874.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofLeft.fbx" +dest_files=["res://.godot/imported/roofLeft.fbx-b7a2c49fcd85de272119d917a874d874.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofPoint.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofPoint.fbx new file mode 100644 index 0000000..0925b92 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofPoint.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 313 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofPoint.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofPoint.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4880225703703880936, "Model::roofPoint", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4627186377525329146, "Geometry::", "Mesh" { + Vertices: *228 { + a: -4.546875,0.625,4.984375,-5,0,5.5,-4.984375,0.625,4.546875,-5.5,0,5,5.5,0,5,5,0,5.5,4.984375,0.625,4.546875,4.546875,0.625,4.984375,5.5,0,-5,5.5,0,5,4.984375,0.625,-4.546875,4.984375,0.625,4.546875,-5,0,-5.5,5,0,-5.5,-4.546875,0.625,-4.984375,4.546875,0.625,-4.984375,-4.546875,0.625,-4.984375,-4.984375,0.625,-4.546875,-5,0,-5.5,-5.5,0,-5,5,0,5.5,-5,0,5.5,4.546875,0.625,4.984375,-4.546875,0.625,4.984375,-5.5,0,-5,-4.984375,0.625,-4.546875,-5.5,0,5,-4.984375,0.625,4.546875,5.5,0,-5,4.984375,0.625,-4.546875,5,0,-5.5,4.546875,0.625,-4.984375,-1.375,5,1.375,1.375,5,-1.375,1.375,5,1.375,-1.375,5,-1.375,1.375,5,1.375,-1.375,5,1.375,-0.6875,4.5,-0.6875,-0.6875,4.5,0.6875,-1.375,5,-1.375,-1.375,5,1.375,1.375,5,-1.375,-1.375,5,-1.375,-1.375,5,-1.375,-1.375,5,1.375,1.375,5,1.375,-1.375,5,1.375,0.6875,4.5,0.6875,-0.6875,4.5,0.6875,-5.5,0,-5,-5.5,0,5,-5,0,-5.5,-5,0,-5,5,0,-5.5,-5,0,5,-5,0,5.5,5,0,-5,5,0,5,5,0,5.5,5.5,0,-5,5.5,0,5,1.375,5,-1.375,0.6875,4.5,-0.6875,-1.375,5,-1.375,-0.6875,4.5,-0.6875,1.375,5,-1.375,1.375,5,1.375,0.6875,4.5,-0.6875,0.6875,4.5,0.6875,0.6875,4.5,-0.6875,0.6875,4.5,0.6875,-0.6875,4.5,-0.6875,-0.6875,4.5,0.6875,1.375,5,-1.375,1.375,5,1.375 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,2,-1,31,33,-30,6,34,-8,16,17,-36,22,36,-24,37,23,-37,38,40,-40,41,39,-41,15,14,-43,43,42,-15,25,27,-45,45,44,-28,46,48,-48,49,47,-49,50,52,-52,52,53,-52,52,54,-54,53,55,-52,51,55,-57,53,57,-56,53,54,-58,55,58,-57,58,55,-58,57,54,-59,59,56,-59,58,54,-60,54,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,10,74,-12,75,11,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: -0.4765959,0.7387237,0.4765959,-0.4765959,0.7387237,0.4765959,-0.4765959,0.7387237,0.4765959,-0.4765959,0.7387237,0.4765959,-0.4765959,0.7387237,0.4765959,-0.4765959,0.7387237,0.4765959,0.4765959,0.7387237,0.4765959,0.4765959,0.7387237,0.4765959,0.4765959,0.7387237,0.4765959,0.4765959,0.7387237,0.4765959,0.4765959,0.7387237,0.4765959,0.4765959,0.7387237,0.4765959,0.7713733,0.636383,0,0.7713733,0.636383,0,0.7713733,0.636383,0,0.7713733,0.636383,0,0.7713733,0.636383,0,0.7713733,0.636383,0,0,0.636383,-0.7713733,0,0.636383,-0.7713733,0,0.636383,-0.7713733,0,0.636383,-0.7713733,0,0.636383,-0.7713733,0,0.636383,-0.7713733,-0.4765959,0.7387237,-0.4765959,-0.4765959,0.7387237,-0.4765959,-0.4765959,0.7387237,-0.4765959,-0.4765959,0.7387237,-0.4765959,-0.4765959,0.7387237,-0.4765959,-0.4765959,0.7387237,-0.4765959,0,0.636383,0.7713733,0,0.636383,0.7713733,0,0.636383,0.7713733,0,0.636383,0.7713733,0,0.636383,0.7713733,0,0.636383,0.7713733,-0.7713733,0.636383,0,-0.7713733,0.636383,0,-0.7713733,0.636383,0,-0.7713733,0.636383,0,-0.7713733,0.636383,0,-0.7713733,0.636383,0,0.4765959,0.7387237,-0.4765959,0.4765959,0.7387237,-0.4765959,0.4765959,0.7387237,-0.4765959,0.4765959,0.7387237,-0.4765959,0.4765959,0.7387237,-0.4765959,0.4765959,0.7387237,-0.4765959,-0.4765959,0.7387237,0.4765959,-0.4765959,0.7387237,0.4765959,-0.4765959,0.7387237,0.4765959,0.4765959,0.7387237,-0.4765959,0.4765959,0.7387237,-0.4765959,0.4765959,0.7387237,-0.4765959,0.4765959,0.7387237,0.4765959,0.4765959,0.7387237,0.4765959,0.4765959,0.7387237,0.4765959,-0.4765959,0.7387237,-0.4765959,-0.4765959,0.7387237,-0.4765959,-0.4765959,0.7387237,-0.4765959,0,0.636383,0.7713733,0,0.636383,0.7713733,0,0.636383,0.7713733,0,0.636383,0.7713733,0,0.636383,0.7713733,0,0.636383,0.7713733,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0.5881717,0.8087361,0,0,0.636383,-0.7713733,0,0.636383,-0.7713733,0,0.636383,-0.7713733,0,0.636383,-0.7713733,0,0.636383,-0.7713733,0,0.636383,-0.7713733,-0.7713733,0.636383,0,-0.7713733,0.636383,0,-0.7713733,0.636383,0,-0.7713733,0.636383,0,-0.7713733,0.636383,0,-0.7713733,0.636383,0,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,0.8087361,-0.5881717,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8087361,0.5881717,0,0.8087361,0.5881717,0,0.8087361,0.5881717,0,0.8087361,0.5881717,0,0.8087361,0.5881717,0,0.8087361,0.5881717,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,-0.5881717,0.8087361,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7713733,0.636383,0,0.7713733,0.636383,0,0.7713733,0.636383,0,0.7713733,0.636383,0,0.7713733,0.636383,0,0.7713733,0.636383,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *152 { + a: 1.21795,-17.94274,1.391943,-21.59348,-1.21795,-17.94274,-1.391943,-21.59348,1.391943,-21.59348,-1.391943,-21.59348,1.21795,-17.94274,-1.21795,-17.94274,19.68504,-13.77995,-19.68504,-13.77995,17.90108,-10.59001,-17.90108,-10.59001,19.68504,-13.77995,-19.68504,-13.77995,17.90108,-10.59001,-17.90108,-10.59001,-1.21795,-17.94274,1.21795,-17.94274,-1.391943,-21.59348,1.391943,-21.59348,19.68504,-13.77995,-19.68504,-13.77995,17.90108,-10.59001,-17.90108,-10.59001,-19.68504,-13.77995,-17.90108,-10.59001,19.68504,-13.77995,17.90108,-10.59001,-1.391943,-21.59348,-1.21795,-17.94274,1.391943,-21.59348,1.21795,-17.94274,-1.714229E-11,7.612447,1.705702E-11,7.612447,4.543477E-12,7.612447,-4.280576E-12,7.612447,5.413386,11.73953,-5.413386,11.73953,2.706693,12.60936,-2.706693,12.60936,5.413386,15.95618,-5.413386,15.95618,-5.413386,11.73953,5.413386,11.73953,-5.413386,11.73953,5.413386,11.73953,-5.413386,15.95618,5.413386,15.95618,-2.706693,12.60936,2.706693,12.60936,-21.65354,-19.68504,-21.65354,19.68504,-19.68504,-21.65354,-19.68504,-19.68504,19.68504,-21.65354,-19.68504,19.68504,-19.68504,21.65354,19.68504,-19.68504,19.68504,19.68504,19.68504,21.65354,21.65354,-19.68504,21.65354,19.68504,5.413386,15.95618,2.706693,12.60936,-5.413386,15.95618,-2.706693,12.60936,-5.413386,15.95618,5.413386,15.95618,-2.706693,12.60936,2.706693,12.60936,-2.706693,-2.706693,-2.706693,2.706693,2.706693,-2.706693,2.706693,2.706693,5.413386,11.73953,-5.413386,11.73953 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,2,0,31,33,29,6,34,7,16,17,35,22,36,23,37,23,36,38,40,39,41,39,40,15,14,42,43,42,14,25,27,44,45,44,27,46,48,47,49,47,48,50,52,51,52,53,51,52,54,53,53,55,51,51,55,56,53,57,55,53,54,57,55,58,56,58,55,57,57,54,58,59,56,58,58,54,59,54,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,10,74,11,75,11,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofPoint, Model::RootNode + C: "OO",4880225703703880936,0 + + ;Geometry::, Model::Mesh roofPoint + C: "OO",4627186377525329146,4880225703703880936 + + ;Material::roofLight, Model::Mesh roofPoint + C: "OO",7182,4880225703703880936 + + ;Material::roof, Model::Mesh roofPoint + C: "OO",7172,4880225703703880936 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofPoint.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofPoint.fbx.import new file mode 100644 index 0000000..9bfda2d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofPoint.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dkljbw5j5qfaw" +path="res://.godot/imported/roofPoint.fbx-f87c3a690dac7d20947417c2df315299.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofPoint.fbx" +dest_files=["res://.godot/imported/roofPoint.fbx-f87c3a690dac7d20947417c2df315299.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofRight.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofRight.fbx new file mode 100644 index 0000000..41ef69c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofRight.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 344 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofRight.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofRight.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5039170352878351406, "Model::roofRight", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5130973461310783955, "Geometry::", "Mesh" { + Vertices: *390 { + a: -5,0,-5,-4,7.219114E-15,-5,-4,0.5,-5,-4,0.5,4.75,-4,7.219114E-15,4.75,-4,0.5,5,-4,7.219114E-15,5,-5.894427,-0.4472136,4,-5.447214,-0.2236068,4,-6.341641,0.4472136,4,-5.67082,0.2236068,4,-4.461968,0.8280331,4,4,5.618034,4,4,5.059017,4,4,5.618034,5,-6.341641,0.4472136,5,4,5.618034,4,-6.341641,0.4472136,4,4,7.219114E-15,4.75,4,4.5,4.75,4,7.219114E-15,5,4,4.5,5,4,7.219114E-15,-5,4,4.5,-5,4,7.219114E-15,-4.75,4,4.5,-4.75,4,4.5,5,4,4.5,4.75,-4,0.5,5,-4,0.5,4.75,-6.341641,0.4472136,4,-6.341641,0.4472136,5,-5.894427,-0.4472136,4,-5.894427,-0.4472136,5,4,5.759017,4,4,6.259017,4,4,5.618034,4,4,6.259017,5,4,5.618034,5,-4,0.5,-5,-4,7.219114E-15,-5,-4,0.5,-4.75,-4,7.219114E-15,-4.75,-5.447214,-0.2236068,4,-5.894427,-0.4472136,4,-5.447214,-0.2236068,5,-5.894427,-0.4472136,5,4,5.759017,4,5,6.259017,4,4,6.259017,4,5,6.759017,4,5,0,-5,5,5,-5,4,7.219114E-15,-5,4,4.5,-5,5,6.759017,5,4,6.259017,5,5,6.759017,4,4,6.259017,4,5,0,5,4,7.219114E-15,5,5,6.759017,5,4,4.5,5,4,5.618034,5,4,6.259017,5,-4,0.5,5,-6.341641,0.4472136,5,-4,7.219114E-15,5,-5,0,5,-5.447214,-0.2236068,5,-5.894427,-0.4472136,5,-4,7.219114E-15,5,-4,7.219114E-15,4.75,-5,0,5,-4,7.219114E-15,-4.75,-4,7.219114E-15,-5,-5,0,-5,4,7.219114E-15,-4.75,4,7.219114E-15,4.75,4,7.219114E-15,-5,4,7.219114E-15,5,5,0,-5,5,0,5,-4,7.219114E-15,-4.75,4,7.219114E-15,-4.75,-4,0.5,-4.75,4,4.5,-4.75,5,6.759017,4,5,6.259017,4,5,6.759017,5,5,0,5,5,0,-5,5,5,-5,5,6.259017,-5,4,7.219114E-15,4.75,-4,7.219114E-15,4.75,4,4.5,4.75,-4,0.5,4.75,-5.447214,-0.2236068,-5,-5.67082,0.2236068,-5,-4.461968,0.8280331,-5,4,5.059017,-5,5,6.259017,-5,4,5.759017,-5,-5.447214,-0.2236068,-5,-5.67082,0.2236068,-5,-5.447214,-0.2236068,4,-5.67082,0.2236068,4,4,4.5,-4.75,4,4.5,-5,-4,0.5,-4.75,-4,0.5,-5,-5,0,5,-5,0,-5,-5.447214,-0.2236068,-5,5,6.259017,-5,5,6.259017,4,4,5.759017,-5,4,5.759017,4,4,5.059017,-5,4,5.759017,-5,4,5.059017,4,4,5.759017,4,4,5.618034,4,4,5.059017,4,-4.461968,0.8280331,4,4,5.059017,-5,-4.461968,0.8280331,-5,-5.67082,0.2236068,4,-5.67082,0.2236068,-5 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,10,8,-10,11,10,-10,12,11,-10,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,37,-37,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,62,-62,64,63,-62,62,63,-66,63,66,-66,65,66,-68,67,66,-69,68,66,-70,70,69,-67,71,73,-73,74,72,-74,75,74,-74,76,75,-74,74,77,-73,78,72,-78,77,79,-79,78,79,-81,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,90,91,-89,91,92,-89,93,88,-93,94,96,-96,97,95,-97,98,99,-1,2,0,-100,100,2,-100,54,2,-101,101,54,-101,52,54,-102,102,52,-102,103,102,-102,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,45,-114,43,113,-46,114,113,-44,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,122,-122,124,126,-126,127,125,-127,125,127,-129,129,128,-128 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *260 { + a: 19.68504,0,15.74803,2.842171E-14,15.74803,1.968504,-18.70079,1.968504,-18.70079,2.842171E-14,-19.68504,1.968504,-19.68504,2.842171E-14,23.20641,-1.760683,21.44572,-0.8803417,24.96709,1.760683,22.32607,0.8803417,17.5668,3.259973,-15.74803,22.11824,-15.74803,19.91739,19.68504,23.97705,19.68504,-21.54384,15.74803,23.97705,15.74803,-21.54384,18.70079,2.842171E-14,18.70079,17.71654,19.68504,2.842171E-14,19.68504,17.71654,-19.68504,2.842171E-14,-19.68504,17.71654,-18.70079,2.842171E-14,-18.70079,17.71654,-19.68504,22.00854,-18.70079,22.00854,-19.68504,-13.20513,-18.70079,-13.20513,15.74803,12.74043,19.68504,12.74043,15.74803,8.803417,19.68504,8.803417,15.74803,22.6733,15.74803,24.6418,15.74803,22.11824,19.68504,24.6418,19.68504,22.11824,19.68504,1.968504,19.68504,2.842171E-14,18.70079,1.968504,18.70079,2.842171E-14,-15.74803,-19.57534,-15.74803,-21.54384,-19.68504,-19.57534,-19.68504,-21.54384,-15.74803,22.6733,-19.68504,24.6418,-15.74803,24.6418,-19.68504,26.6103,-19.68504,3.65673E-30,-19.68504,19.68504,-15.74803,2.842171E-14,-15.74803,17.71654,19.68504,29.50732,19.68504,25.10562,15.74803,29.50732,15.74803,25.10562,19.68504,1.346124E-12,15.74803,1.374545E-12,19.68504,26.6103,15.74803,17.71654,15.74803,22.11824,15.74803,24.6418,-15.74803,1.968504,-24.96709,1.760683,-15.74803,1.374545E-12,-19.68504,1.346124E-12,-21.44572,-0.8803417,-23.20641,-1.760683,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-18.70079,15.74803,18.70079,15.74803,-19.68504,15.74803,19.68504,19.68504,-19.68504,19.68504,19.68504,15.74803,2.842171E-14,-15.74803,2.842171E-14,15.74803,1.968504,-15.74803,17.71654,-15.74803,26.6103,-15.74803,24.6418,-19.68504,26.6103,-19.68504,-4.784056E-12,19.68504,-4.784056E-12,19.68504,19.68504,19.68504,24.6418,15.74803,2.842171E-14,-15.74803,2.842171E-14,15.74803,17.71654,-15.74803,1.968504,21.44572,-0.8803417,22.32607,0.8803417,17.5668,3.259973,-15.74803,19.91739,-19.68504,24.6418,-15.74803,22.6733,-19.68504,8.803417,-19.68504,10.77192,15.74803,8.803417,15.74803,10.77192,18.70079,22.00854,19.68504,22.00854,18.70079,-13.20513,19.68504,-13.20513,-19.68504,-17.60683,19.68504,-17.60683,19.68504,-19.57534,-19.68504,28.62698,15.74803,28.62698,-19.68504,24.22527,15.74803,24.22527,-19.68504,19.91739,-19.68504,22.6733,15.74803,19.91739,15.74803,22.6733,15.74803,22.11824,15.74803,22.9928,15.74803,-14.25432,-19.68504,22.9928,-19.68504,-14.25432,15.74803,-19.57534,-19.68504,-19.57534 + } + UVIndex: *252 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,10,8,9,11,10,9,12,11,9,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,37,36,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,62,61,64,63,61,62,63,65,63,66,65,65,66,67,67,66,68,68,66,69,70,69,66,71,73,72,74,72,73,75,74,73,76,75,73,74,77,72,78,72,77,77,79,78,78,79,80,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,90,91,88,91,92,88,93,88,92,94,96,95,97,95,96,98,99,0,2,0,99,100,2,99,54,2,100,101,54,100,52,54,101,102,52,101,103,102,101,104,106,105,107,105,106,108,110,109,111,109,110,112,45,113,43,113,45,114,113,43,115,117,116,118,116,117,119,121,120,122,120,121,123,122,121,124,126,125,127,125,126,125,127,128,129,128,127 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofRight, Model::RootNode + C: "OO",5039170352878351406,0 + + ;Geometry::, Model::Mesh roofRight + C: "OO",5130973461310783955,5039170352878351406 + + ;Material::wood, Model::Mesh roofRight + C: "OO",7178,5039170352878351406 + + ;Material::stone, Model::Mesh roofRight + C: "OO",7184,5039170352878351406 + + ;Material::roof, Model::Mesh roofRight + C: "OO",7172,5039170352878351406 + + ;Material::roofLight, Model::Mesh roofRight + C: "OO",7182,5039170352878351406 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofRight.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofRight.fbx.import new file mode 100644 index 0000000..7eee7cf --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofRight.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bevsnhh86rv7r" +path="res://.godot/imported/roofRight.fbx-5417d10fd8bc4f821ecbd2ec8896d928.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofRight.fbx" +dest_files=["res://.godot/imported/roofRight.fbx-5417d10fd8bc4f821ecbd2ec8896d928.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofWindow.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofWindow.fbx new file mode 100644 index 0000000..0c38a94 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofWindow.fbx @@ -0,0 +1,379 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 391 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "roofWindow.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "roofWindow.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5515562115335222043, "Model::roofWindow", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5294859134877990206, "Geometry::", "Mesh" { + Vertices: *768 { + a: -4,7.219114E-15,5,-5,0,5,-4,0.5,5,-5,0,-5,-4,7.219114E-15,-5,-4,0.5,-5,5,0,-5,5,5,-5,4,7.219114E-15,-5,4,4.5,-5,-4,0.5,-5,-4,7.219114E-15,-5,-4,0.5,-4.75,-4,7.219114E-15,-4.75,4,7.219114E-15,-5,4,4.5,-5,4,7.219114E-15,-4.75,4,4.5,-4.75,5,0,5,4,7.219114E-15,5,5,5,5,4,4.5,5,-4,0.5,4.75,-4,7.219114E-15,4.75,-4,0.5,5,-4,7.219114E-15,5,4,7.219114E-15,4.75,4,4.5,4.75,4,7.219114E-15,5,4,4.5,5,-3.961968,1.334231,-1.993803,-4.461968,1.334231,-1.993803,-3.961968,3.000919,-1.993803,-4.461968,3.000919,-1.993803,-3.961968,1.334231,1.993803,-4.461968,1.334231,1.993803,-3.961968,1.334231,-1.993803,-4.461968,1.334231,-1.993803,-3.961968,1.334231,1.993803,-3.961968,3.000919,1.993803,-4.461968,1.334231,1.993803,-4.461968,3.000919,1.993803,-3.961968,3.899373,2.887646E-14,-4.461968,3.899373,2.887646E-14,-3.961968,3.000919,1.993803,-4.461968,3.000919,1.993803,-3.961968,3.899373,2.887646E-14,-3.961968,3.000919,-1.993803,-4.461968,3.899373,2.887646E-14,-4.461968,3.000919,-1.993803,-3.711968,1.833223,-0.125,-3.711968,3.295729,-0.125,-3.711968,1.833223,0.125,-3.711968,3.352057,5.775292E-14,-3.711968,3.295729,0.125,-3.711968,1.833223,0.125,-3.711968,3.295729,0.125,-3.461968,1.833223,0.125,-3.461968,3.295729,0.125,-3.461968,1.833223,-0.125,-3.461968,1.833223,0.125,-3.461968,3.295729,-0.125,-3.461968,3.352057,5.775292E-14,-3.461968,3.295729,0.125,-3.711968,1.833223,-0.125,-3.461968,1.833223,-0.125,-3.711968,3.295729,-0.125,-3.461968,3.295729,-0.125,-3.961968,3.000919,-1.993803,-3.961968,1.833223,-1.494811,-3.961968,1.334231,-1.993803,-3.961968,1.334231,1.993803,-3.961968,2.678461,-1.494811,-3.961968,1.833223,1.494811,-3.961968,3.899373,2.887646E-14,-3.961968,3.352057,0,-3.961968,2.678461,1.494811,-3.961968,3.000919,1.993803,-4,7.219114E-15,5,-4,7.219114E-15,4.75,-5,0,5,-4,7.219114E-15,-4.75,-4,7.219114E-15,-5,-5,0,-5,4,7.219114E-15,-4.75,4,7.219114E-15,4.75,4,7.219114E-15,-5,4,7.219114E-15,5,5,0,-5,5,0,5,5,6.259017,-5,5,5,-5,5,6.259017,5,5,0,-5,5,5,5,5,0,5,-4,7.219114E-15,-4.75,4,7.219114E-15,-4.75,-4,0.5,-4.75,4,4.5,-4.75,4,7.219114E-15,4.75,-4,7.219114E-15,4.75,4,4.5,4.75,-4,0.5,4.75,-5.447214,-0.2236068,5,-5.67082,0.2236068,5,-4.461968,0.8280331,5,4,5.059017,5,5,6.259017,5,4,5.759017,5,-5.447214,-0.2236068,-5,-5.67082,0.2236068,-5,-5.447214,-0.2236068,5,-5.67082,0.2236068,5,4,4.5,5,4,4.5,4.75,-4,0.5,5,-4,0.5,4.75,-5,0,5,-5,0,-5,-5.447214,-0.2236068,5,-5.447214,-0.2236068,-5,4,4.5,-4.75,4,4.5,-5,-4,0.5,-4.75,-4,0.5,-5,4,5.759017,-5,4,5.759017,5,4,5.059017,-5,4,5.059017,-3.75,4,5.059017,-2.74474,4,5.059017,2.74474,4,5.059017,3.75,4,5.059017,5,5,6.259017,-5,5,6.259017,5,4,5.759017,-5,4,5.759017,5,-5.447214,-0.2236068,-5,-5.67082,0.2236068,-5,-4.461968,0.8280331,-5,4,5.059017,-5,5,6.259017,-5,4,5.759017,-5,-4.961968,3.578469,-3.161273,-4.961968,5.003011,5.775292E-14,-4.961968,3.122615,-2.955854,-4.961968,4.45459,2.887646E-14,-4.961968,3.122615,2.955854,-4.961968,3.578469,3.161273,0.1271951,3.122615,2.955854,-4.461968,3.122615,2.955854,1.038904,3.578469,3.161273,-4.961968,3.122615,2.955854,-4.961968,3.578469,3.161273,-4.461968,4.45459,2.887646E-14,-4.461968,3.328033,-2.5,-4.961968,4.45459,2.887646E-14,-4.961968,3.122615,-2.955854,-4.461968,3.122615,-2.955854,0.1271951,3.122615,-2.955854,0.5380321,3.328033,-2.5,3.887989,5.003011,5.775292E-14,1.038904,3.578469,3.161273,-4.961968,5.003011,5.775292E-14,-4.961968,3.578469,3.161273,4,5.059017,-5,4,5.059017,-3.75,-4.461968,0.8280331,-5,4,5.059017,-2.74474,1.038904,3.578469,-3.161273,0.1271951,3.122615,-2.955854,-4.461968,0.8280331,-2.5,0.5380321,3.328033,-2.5,3.887989,5.003011,5.775292E-14,4,5.059017,2.74474,4,5.059017,3.75,1.038904,3.578469,3.161273,-4.461968,0.8280331,5,4,5.059017,5,0.1271951,3.122615,2.955854,-4.461968,0.8280331,2.5,0.5380321,3.328033,2.5,3.887989,5.003011,5.775292E-14,-4.961968,5.003011,5.775292E-14,1.038904,3.578469,-3.161273,-4.961968,3.578469,-3.161273,-4.461968,4.45459,2.887646E-14,-4.961968,4.45459,2.887646E-14,-4.461968,3.328033,2.5,-4.461968,3.122615,2.955854,-4.961968,3.122615,2.955854,0.1271951,3.122615,2.955854,0.5380321,3.328033,2.5,0.1271951,3.122615,-2.955854,1.038904,3.578469,-3.161273,-4.461968,3.122615,-2.955854,-4.961968,3.122615,-2.955854,-4.961968,3.578469,-3.161273,-4.461968,0.8280331,2.5,-4.461968,0.8280331,-2.5,-5.67082,0.2236068,5,-5.67082,0.2236068,-5,0.5380321,3.328033,2.5,-4.461968,0.8280331,2.5,-4.461968,3.328033,2.5,-4.461968,0.8280331,-2.5,0.5380321,3.328033,-2.5,-4.461968,3.328033,-2.5,-2.961968,1.833223,-1.494811,-2.961968,2.678461,-1.494811,-2.961968,1.833223,1.494811,-2.961968,3.352057,0,-2.961968,2.678461,1.494811,-2.961968,1.833223,-1.494811,-3.961968,1.833223,-1.494811,-2.961968,2.678461,-1.494811,-3.961968,2.678461,-1.494811,-2.961968,1.833223,1.494811,-2.961968,2.678461,1.494811,-3.961968,1.833223,1.494811,-3.961968,2.678461,1.494811,-3.711968,3.352057,5.775292E-14,-3.711968,3.295729,-0.125,-3.961968,3.352057,0,-3.961968,2.678461,-1.494811,-3.461968,3.295729,-0.125,-2.961968,2.678461,-1.494811,-3.461968,3.352057,5.775292E-14,-2.961968,3.352057,0,-3.961968,3.352057,0,-3.961968,2.678461,1.494811,-3.711968,3.352057,5.775292E-14,-3.711968,3.295729,0.125,-3.461968,3.295729,0.125,-2.961968,2.678461,1.494811,-3.461968,3.352057,5.775292E-14,-2.961968,3.352057,0,-4.461968,1.334231,1.993803,-4.461968,0.8280331,2.5,-4.461968,1.334231,-1.993803,-4.461968,3.000919,1.993803,-4.461968,0.8280331,-2.5,-4.461968,3.328033,2.5,-4.461968,3.328033,-2.5,-4.461968,3.000919,-1.993803,-4.461968,4.45459,2.887646E-14,-4.461968,3.899373,2.887646E-14,-3.711968,1.833223,-0.125,-3.961968,1.833223,-1.494811,-3.461968,1.833223,-0.125,-3.711968,1.833223,0.125,-2.961968,1.833223,-1.494811,-3.961968,1.833223,1.494811,-2.961968,1.833223,1.494811,-3.461968,1.833223,0.125 + } + PolygonVertexIndex: *528 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,53,-53,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,60,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,69,72,-69,73,69,-72,74,68,-73,75,74,-73,76,73,-72,76,74,-76,71,77,-77,77,74,-77,78,80,-80,81,79,-81,82,81,-81,83,82,-81,81,84,-80,85,79,-85,84,86,-86,85,86,-88,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,93,-93,94,95,-94,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,1,-106,2,105,-2,106,105,-3,21,106,-3,107,106,-22,20,107,-22,108,107,-21,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,127,-130,131,127,-131,132,127,-132,133,127,-133,134,136,-136,137,135,-137,138,139,-4,5,3,-140,140,5,-140,9,5,-141,141,9,-141,7,9,-142,142,7,-142,143,142,-142,144,146,-146,147,145,-147,148,145,-148,149,145,-149,150,152,-152,153,151,-153,154,153,-153,155,157,-157,157,158,-157,159,156,-159,159,160,-157,161,156,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,169,-169,171,170,-169,172,171,-169,171,172,-174,174,169,-171,175,169,-175,176,175,-175,174,177,-177,177,178,-177,179,176,-179,180,178,-178,181,178,-181,182,181,-181,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,188,-191,190,189,-193,193,192,-190,194,196,-196,197,195,-197,198,195,-198,199,200,-179,168,178,-201,201,178,-169,202,201,-169,203,205,-205,206,208,-208,209,211,-211,212,210,-212,213,212,-212,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,224,225,-224,223,225,-227,225,227,-227,226,227,-229,229,228,-228,230,232,-232,232,233,-232,233,234,-232,235,231,-235,234,236,-236,237,235,-237,238,240,-240,241,238,-240,239,240,-243,239,243,-242,244,242,-241,240,245,-245,243,246,-242,246,244,-246,241,246,-248,247,246,-246,248,250,-250,251,248,-250,249,250,-253,249,253,-252,254,252,-251,251,253,-256,253,254,-256,250,255,-255 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1584 { + a: 0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.410837,0.9117088,0,-0.410837,0.9117088,0,-0.410837,0.9117088,0,-0.410837,0.9117088,0,-0.410837,0.9117088,0,-0.410837,0.9117088,0,-0.410837,0.9117088,0,-0.410837,0.9117088,0,-0.410837,0.9117088,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,0.9117088,0.410837,0,0.9117088,0.410837,0,0.9117088,0.410837,0,0.9117088,0.410837,0,0.9117088,0.410837,0,0.9117088,0.410837,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0.9117088,-0.410837,0,0.9117088,-0.410837,0,0.9117088,-0.410837,0,0.9117088,-0.410837,0,0.9117088,-0.410837,0,0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.410837,-0.9117088,0,-0.410837,-0.9117088,0,-0.410837,-0.9117088,0,-0.410837,-0.9117088,0,-0.410837,-0.9117088,0,-0.410837,-0.9117088,0,-0.410837,-0.9117088,0,-0.410837,-0.9117088,0,-0.410837,-0.9117088,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,0,-0.9117088,-0.410837,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *512 { + a: -15.74803,2.842171E-14,-19.68504,0,-15.74803,1.968504,19.68504,0,15.74803,2.842171E-14,15.74803,1.968504,-19.68504,0,-19.68504,19.68504,-15.74803,2.842171E-14,-15.74803,17.71654,19.68504,1.968504,19.68504,2.842171E-14,18.70079,1.968504,18.70079,2.842171E-14,-19.68504,2.842171E-14,-19.68504,17.71654,-18.70079,2.842171E-14,-18.70079,17.71654,19.68504,3.65673E-30,15.74803,2.842171E-14,19.68504,19.68504,15.74803,17.71654,-18.70079,1.968504,-18.70079,2.842171E-14,-19.68504,1.968504,-19.68504,2.842171E-14,18.70079,2.842171E-14,18.70079,17.71654,19.68504,2.842171E-14,19.68504,17.71654,-15.5983,5.252876,-17.5668,5.252876,-15.5983,11.81464,-17.5668,11.81464,15.5983,7.849617,17.5668,7.849617,15.5983,-7.849617,17.5668,-7.849617,15.5983,5.252876,15.5983,11.81464,17.5668,5.252876,17.5668,11.81464,15.5983,6.307112,17.5668,6.307112,15.5983,-2.302672,17.5668,-2.302672,-15.5983,6.307112,-15.5983,-2.302672,-17.5668,6.307112,-17.5668,-2.302672,-0.492126,7.217412,-0.492126,12.97531,0.492126,7.217412,1.637273E-14,13.19708,0.492126,12.97531,-14.61405,7.217412,-14.61405,12.97531,-13.6298,7.217412,-13.6298,12.97531,0.492126,7.217412,-0.492126,7.217412,0.492126,12.97531,-3.058359E-14,13.19708,-0.492126,12.97531,14.61405,7.217412,13.6298,7.217412,14.61405,12.97531,13.6298,12.97531,-7.849617,11.81464,-5.885081,7.217412,-7.849617,5.252876,7.849617,5.252876,-5.885081,10.54512,5.885081,7.217412,1.485041E-14,15.35186,-9.883643E-14,13.19708,5.885081,10.54512,7.849617,11.81464,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,-18.70079,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-18.70079,15.74803,18.70079,15.74803,-19.68504,15.74803,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,24.6418,19.68504,19.68504,-19.68504,24.6418,19.68504,-2.631396E-12,-19.68504,19.68504,-19.68504,-2.631396E-12,15.74803,2.842171E-14,-15.74803,2.842171E-14,15.74803,1.968504,-15.74803,17.71654,15.74803,2.842171E-14,-15.74803,2.842171E-14,15.74803,17.71654,-15.74803,1.968504,-21.44572,-0.8803417,-22.32607,0.8803417,-17.5668,3.259973,15.74803,19.91739,19.68504,24.6418,15.74803,22.6733,-19.68504,8.803417,-19.68504,10.77192,19.68504,8.803417,19.68504,10.77192,-19.68504,22.00854,-18.70079,22.00854,-19.68504,-13.20513,-18.70079,-13.20513,-19.68504,-17.60683,19.68504,-17.60683,-19.68504,-19.57534,19.68504,-19.57534,18.70079,22.00854,19.68504,22.00854,18.70079,-13.20513,19.68504,-13.20513,-19.68504,22.6733,19.68504,22.6733,-19.68504,19.91739,-14.76378,19.91739,-10.80607,19.91739,10.80607,19.91739,14.76378,19.91739,19.68504,19.91739,-19.68504,28.62698,19.68504,28.62698,-19.68504,24.22527,19.68504,24.22527,21.44572,-0.8803417,22.32607,0.8803417,17.5668,3.259973,-15.74803,19.91739,-19.68504,24.6418,-15.74803,22.6733,-12.44596,14.08846,6.347636E-14,19.6969,-11.63722,12.29376,-5.021048E-14,17.53776,11.63722,12.29376,12.44596,14.08846,0.5007683,15.98933,-17.5668,15.98933,4.090173,17.95783,-19.53531,15.98933,-19.53531,17.95783,-17.5668,7.205161,-17.5668,-3.590523,-19.53531,7.205161,-19.53531,-5.559027,-17.5668,-5.559027,0.5007683,-5.559027,2.118237,-3.590523,15.30704,8.092214,4.090173,-5.559027,-19.53531,8.092214,-19.53531,-5.559027,-19.68504,22.9928,-14.76378,22.9928,-19.68504,-14.25432,-10.80607,22.9928,-12.44596,9.958913,-11.63722,5.945837,-9.84252,-14.25432,-9.84252,7.754221,7.700723E-14,22.49975,10.80607,22.9928,14.76378,22.9928,12.44596,9.958913,19.68504,-14.25432,19.68504,22.9928,11.63722,5.945837,9.84252,-14.25432,9.84252,7.754221,-15.30704,8.092214,19.53531,8.092214,-4.090173,-5.559027,19.53531,-5.559027,17.5668,7.205161,19.53531,7.205161,17.5668,-3.590523,17.5668,-5.559027,19.53531,-5.559027,-0.5007683,-5.559027,-2.118237,-3.590523,-0.5007683,15.98933,-4.090173,17.95783,17.5668,15.98933,19.53531,15.98933,19.53531,17.95783,9.84252,-14.25432,-9.84252,-14.25432,19.68504,-19.57534,-19.68504,-19.57534,2.118237,13.10249,-17.5668,3.259973,-17.5668,13.10249,17.5668,3.259973,-2.118237,13.10249,17.5668,13.10249,-5.885081,7.217412,-5.885081,10.54512,5.885081,7.217412,-5.631763E-14,13.19708,5.885081,10.54512,-11.66129,7.217412,-15.5983,7.217412,-11.66129,10.54512,-15.5983,10.54512,11.66129,7.217412,11.66129,10.54512,15.5983,7.217412,15.5983,10.54512,-14.61405,5.421847,-14.61405,4.882063,-15.5983,5.421847,-15.5983,-1.033153,-13.6298,4.882063,-11.66129,-1.033153,-13.6298,5.421847,-11.66129,5.421847,15.5983,5.421847,15.5983,-1.033153,14.61405,5.421847,14.61405,4.882063,13.6298,4.882063,11.66129,-1.033153,13.6298,5.421847,11.66129,5.421847,7.849617,5.252876,9.84252,3.259973,-7.849617,5.252876,7.849617,11.81464,-9.84252,3.259973,9.84252,13.10249,-9.84252,13.10249,-7.849617,11.81464,-3.849327E-14,17.53776,-3.849327E-14,15.35186,14.61405,-0.492126,15.5983,-5.885081,13.6298,-0.492126,14.61405,0.492126,11.66129,-5.885081,15.5983,5.885081,11.66129,5.885081,13.6298,0.492126 + } + UVIndex: *528 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,53,52,55,57,56,58,56,57,59,61,60,62,60,61,63,60,62,64,66,65,67,65,66,68,70,69,71,69,70,69,72,68,73,69,71,74,68,72,75,74,72,76,73,71,76,74,75,71,77,76,77,74,76,78,80,79,81,79,80,82,81,80,83,82,80,81,84,79,85,79,84,84,86,85,85,86,87,86,88,87,89,87,88,90,92,91,93,91,92,94,93,92,94,95,93,96,98,97,99,97,98,100,102,101,103,101,102,104,1,105,2,105,1,106,105,2,21,106,2,107,106,21,20,107,21,108,107,20,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,127,129,131,127,130,132,127,131,133,127,132,134,136,135,137,135,136,138,139,3,5,3,139,140,5,139,9,5,140,141,9,140,7,9,141,142,7,141,143,142,141,144,146,145,147,145,146,148,145,147,149,145,148,150,152,151,153,151,152,154,153,152,155,157,156,157,158,156,159,156,158,159,160,156,161,156,160,162,164,163,165,163,164,166,168,167,169,167,168,170,169,168,171,170,168,172,171,168,171,172,173,174,169,170,175,169,174,176,175,174,174,177,176,177,178,176,179,176,178,180,178,177,181,178,180,182,181,180,183,185,184,186,184,185,187,189,188,190,188,189,191,188,190,190,189,192,193,192,189,194,196,195,197,195,196,198,195,197,199,200,178,168,178,200,201,178,168,202,201,168,203,205,204,206,208,207,209,211,210,212,210,211,213,212,211,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,224,225,223,223,225,226,225,227,226,226,227,228,229,228,227,230,232,231,232,233,231,233,234,231,235,231,234,234,236,235,237,235,236,238,240,239,241,238,239,239,240,242,239,243,241,244,242,240,240,245,244,243,246,241,246,244,245,241,246,247,247,246,245,248,250,249,251,248,249,249,250,252,249,253,251,254,252,250,251,253,255,253,254,255,250,255,254 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *176 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } + + Material: 7182, "Material::roofLight", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.4100658,0.8962264,0.7246404 + P: "DiffuseColor", "Color", "", "A",0.4100658,0.8962264,0.7246404 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh roofWindow, Model::RootNode + C: "OO",5515562115335222043,0 + + ;Geometry::, Model::Mesh roofWindow + C: "OO",5294859134877990206,5515562115335222043 + + ;Material::wood, Model::Mesh roofWindow + C: "OO",7178,5515562115335222043 + + ;Material::stone, Model::Mesh roofWindow + C: "OO",7184,5515562115335222043 + + ;Material::roof, Model::Mesh roofWindow + C: "OO",7172,5515562115335222043 + + ;Material::roofLight, Model::Mesh roofWindow + C: "OO",7182,5515562115335222043 + + ;Material::woodDark, Model::Mesh roofWindow + C: "OO",7186,5515562115335222043 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofWindow.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofWindow.fbx.import new file mode 100644 index 0000000..640c777 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/roofWindow.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://wkjkqw4a5pvo" +path="res://.godot/imported/roofWindow.fbx-118bcfa7030ac9beb987afccbb1e1813.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/roofWindow.fbx" +dest_files=["res://.godot/imported/roofWindow.fbx-118bcfa7030ac9beb987afccbb1e1813.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFull.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFull.fbx new file mode 100644 index 0000000..ecdb54d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFull.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 499 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsFull.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsFull.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5718982940718079270, "Model::stairsFull", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5606437389970246297, "Geometry::", "Mesh" { + Vertices: *324 { + a: -1.45,4.625,-5,-1.45,5,-5,-1.45,4.625,5,-1.45,5,5,-3.75,2.125,5,-3.75,2.125,-5,-3.95,2.125,5,-3.95,2.125,-5,-2.5,2.5,-5,-2.5,3.375,-5,-2.5,2.5,5,-2.5,3.375,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5,-1.25,4.625,5,-1.25,4.625,-5,-1.45,4.625,5,-1.45,4.625,-5,-2.5,2.5,5,-3.95,2.5,5,-2.5,2.5,-5,-3.95,2.5,-5,-3.95,2.125,-5,-3.95,2.5,-5,-3.95,2.125,5,-3.95,2.5,5,-3.75,1.25,5,-5.2,1.25,5,-3.75,1.25,-5,-5.2,1.25,-5,5,0,-5,5,0,5,5,5,-5,5,5,5,-1.25,3.75,-5,-1.25,4.625,-5,-1.25,3.75,5,-1.25,4.625,5,-2.5,3.375,5,-2.5,3.375,-5,-2.7,3.375,5,-2.7,3.375,-5,-5.2,0.875,-5,-5.2,1.25,-5,-5.2,0.875,5,-5.2,1.25,5,-3.75,1.25,-5,-3.75,2.125,-5,-3.75,1.25,5,-3.75,2.125,5,-5,0,-5,-5,0.875,-5,-5,0,5,-5,0.875,5,-5.2,0.875,-5,-5,0.875,-5,-5.2,1.25,-5,-3.75,1.25,-5,5,0,-5,-5,0,-5,5,5,-5,-2.5,2.5,-5,-3.75,2.125,-5,-3.95,2.5,-5,-3.95,2.125,-5,-2.5,3.375,-5,-1.25,3.75,-5,-2.7,3.75,-5,-2.7,3.375,-5,-1.25,4.625,-5,-1.45,5,-5,-1.45,4.625,-5,-5,0.875,5,-5,0.875,-5,-5.2,0.875,5,-5.2,0.875,-5,5,0,5,-5,0,5,5,5,5,-3.75,1.25,5,-5,0.875,5,-5.2,1.25,5,-5.2,0.875,5,-2.5,2.5,5,-3.75,2.125,5,-3.95,2.5,5,-3.95,2.125,5,-2.5,3.375,5,-1.25,3.75,5,-2.7,3.75,5,-2.7,3.375,5,-1.25,4.625,5,-1.45,5,5,-1.45,4.625,5,-2.7,3.375,-5,-2.7,3.75,-5,-2.7,3.375,5,-2.7,3.75,5,-1.25,3.75,5,-2.7,3.75,5,-1.25,3.75,-5,-2.7,3.75,-5,5,5,-5,5,5,5,-1.45,5,-5,-1.45,5,5 + } + PolygonVertexIndex: *204 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,58,59,-58,59,60,-58,61,57,-61,62,60,-60,63,62,-60,64,63,-60,65,63,-65,66,65,-65,67,62,-64,68,62,-68,69,68,-68,70,69,-68,71,62,-69,62,71,-73,73,72,-72,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,79,-82,83,82,-82,82,83,-85,85,81,-81,86,81,-86,87,86,-86,86,87,-89,89,85,-81,90,89,-81,91,89,-91,89,91,-93,93,90,-81,94,93,-81,93,94,-96,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *612 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *216 { + a: -19.68504,18.20866,-19.68504,19.68504,19.68504,18.20866,19.68504,19.68504,-14.76378,19.68504,-14.76378,-19.68504,-15.55118,19.68504,-15.55118,-19.68504,-19.68504,9.84252,-19.68504,13.2874,19.68504,9.84252,19.68504,13.2874,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-4.92126,19.68504,-4.92126,-19.68504,-5.708662,19.68504,-5.708662,-19.68504,9.84252,19.68504,15.55118,19.68504,9.84252,-19.68504,15.55118,-19.68504,-19.68504,8.366141,-19.68504,9.84252,19.68504,8.366141,19.68504,9.84252,14.76378,19.68504,20.47244,19.68504,14.76378,-19.68504,20.47244,-19.68504,19.68504,0,-19.68504,0,19.68504,19.68504,-19.68504,19.68504,-19.68504,14.76378,-19.68504,18.20866,19.68504,14.76378,19.68504,18.20866,-9.84252,19.68504,-9.84252,-19.68504,-10.62992,19.68504,-10.62992,-19.68504,-19.68504,3.444882,-19.68504,4.92126,19.68504,3.444882,19.68504,4.92126,-19.68504,4.92126,-19.68504,8.366141,19.68504,4.92126,19.68504,8.366141,-19.68504,1.624098E-13,-19.68504,3.444882,19.68504,1.624098E-13,19.68504,3.444882,20.47244,3.444882,19.68504,3.444882,20.47244,4.92126,14.76378,4.92126,-19.68504,-1.882809E-13,19.68504,-1.882809E-13,-19.68504,19.68504,9.84252,9.84252,14.76378,8.366141,15.55118,9.84252,15.55118,8.366141,9.84252,13.2874,4.92126,14.76378,10.62992,14.76378,10.62992,13.2874,4.92126,18.20866,5.708662,19.68504,5.708662,18.20866,-19.68504,19.68504,-19.68504,-19.68504,-20.47244,19.68504,-20.47244,-19.68504,19.68504,3.118904E-14,-19.68504,3.118904E-14,19.68504,19.68504,-14.76378,4.92126,-19.68504,3.444882,-20.47244,4.92126,-20.47244,3.444882,-9.84252,9.84252,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,-9.84252,13.2874,-4.92126,14.76378,-10.62992,14.76378,-10.62992,13.2874,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,-19.68504,13.2874,-19.68504,14.76378,19.68504,13.2874,19.68504,14.76378,4.92126,19.68504,10.62992,19.68504,4.92126,-19.68504,10.62992,-19.68504,-19.68504,-19.68504,-19.68504,19.68504,5.708662,-19.68504,5.708662,19.68504 + } + UVIndex: *204 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,58,59,57,59,60,57,61,57,60,62,60,59,63,62,59,64,63,59,65,63,64,66,65,64,67,62,63,68,62,67,69,68,67,70,69,67,71,62,68,62,71,72,73,72,71,74,76,75,77,75,76,78,80,79,81,79,80,82,79,81,83,82,81,82,83,84,85,81,80,86,81,85,87,86,85,86,87,88,89,85,80,90,89,80,91,89,90,89,91,92,93,90,80,94,93,80,93,94,95,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *68 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsFull, Model::RootNode + C: "OO",5718982940718079270,0 + + ;Geometry::, Model::Mesh stairsFull + C: "OO",5606437389970246297,5718982940718079270 + + ;Material::stone, Model::Mesh stairsFull + C: "OO",7184,5718982940718079270 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFull.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFull.fbx.import new file mode 100644 index 0000000..79f9a0b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFull.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bfvh61mdnlokr" +path="res://.godot/imported/stairsFull.fbx-60fea4eaf9b0b28ddfe6063895e9671b.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFull.fbx" +dest_files=["res://.godot/imported/stairsFull.fbx-60fea4eaf9b0b28ddfe6063895e9671b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerInner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerInner.fbx new file mode 100644 index 0000000..476da63 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerInner.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 567 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsFullCornerInner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsFullCornerInner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5099131528096780482, "Model::stairsFullCornerInner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4675435993182199654, "Geometry::", "Mesh" { + Vertices: *396 { + a: -3.75,1.25,-5,-3.75,1.25,-3.75,-5,1.25,-5,-5,1.25,-3.75,5,0,5,5,0,-5,-5,0,5,-5,0,-5,-3.75,1.25,-5,-3.75,2.125,-5,-3.75,1.25,-3.75,-3.75,2.125,-3.75,-5,0,-5,5,0,-5,-5,1.25,-5,-3.75,1.25,-5,5,5,-5,-2.5,2.5,-5,-3.75,2.125,-5,-3.95,2.5,-5,-3.95,2.125,-5,-2.5,3.375,-5,-1.25,3.75,-5,-2.7,3.75,-5,-2.7,3.375,-5,-1.25,4.625,-5,-1.45,5,-5,-1.45,4.625,-5,5,0,5,-5,0,5,5,5,5,-5,5,5,5,5,-5,5,5,5,-1.45,5,-5,-1.45,5,-1.45,-5,5,5,-5,5,-1.45,5,0,-5,5,0,5,5,5,-5,5,5,5,-2.7,3.375,-5,-2.7,3.75,-5,-2.7,3.375,-2.7,-2.7,3.75,-2.7,-1.45,4.625,-5,-1.45,5,-5,-1.45,4.625,-1.45,-1.45,5,-1.45,-1.25,3.75,-5,-1.25,4.625,-5,-1.25,3.75,-1.25,-1.25,4.625,-1.25,-5,2.125,-3.95,-3.95,2.125,-3.95,-5,2.5,-3.95,-3.95,2.5,-3.95,-3.95,2.125,-5,-3.95,2.5,-5,-3.95,2.125,-3.95,-3.95,2.5,-3.95,-2.5,2.5,-5,-2.5,3.375,-5,-2.5,2.5,-2.5,-2.5,3.375,-2.5,-1.45,4.625,-1.45,-1.45,5,-1.45,-5,4.625,-1.45,-5,5,-1.45,-5,3.375,-2.7,-5,3.375,-2.5,-2.7,3.375,-2.7,-2.5,3.375,-2.5,-2.5,3.375,-5,-2.7,3.375,-5,-2.5,2.5,-2.5,-2.5,3.375,-2.5,-5,2.5,-2.5,-5,3.375,-2.5,-5,0,-5,-5,1.25,-5,-5,0,5,-5,1.25,-3.75,-5,2.125,-3.75,-5,2.5,-2.5,-5,2.125,-3.95,-5,2.5,-3.95,-5,3.75,-1.25,-5,3.375,-2.5,-5,3.375,-2.7,-5,3.75,-2.7,-5,4.625,-1.25,-5,5,5,-5,4.625,-1.45,-5,5,-1.45,-5,3.75,-1.25,-1.25,3.75,-1.25,-5,4.625,-1.25,-1.25,4.625,-1.25,-5,2.125,-3.95,-5,2.125,-3.75,-3.95,2.125,-3.95,-3.75,2.125,-3.75,-3.75,2.125,-5,-3.95,2.125,-5,-2.5,2.5,-5,-2.5,2.5,-2.5,-3.95,2.5,-5,-3.95,2.5,-3.95,-5,2.5,-2.5,-5,2.5,-3.95,-5,3.375,-2.7,-2.7,3.375,-2.7,-5,3.75,-2.7,-2.7,3.75,-2.7,-1.25,3.75,-5,-2.7,3.75,-2.7,-2.7,3.75,-5,-1.25,3.75,-1.25,-5,3.75,-1.25,-5,3.75,-2.7,-5,1.25,-3.75,-3.75,1.25,-3.75,-5,2.125,-3.75,-3.75,2.125,-3.75,-5,4.625,-1.45,-5,4.625,-1.25,-1.45,4.625,-1.45,-1.25,4.625,-1.25,-1.25,4.625,-5,-1.45,4.625,-5 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,13,15,-17,17,16,-16,18,17,-16,19,17,-19,20,19,-19,21,16,-18,22,16,-22,23,22,-22,24,23,-22,25,16,-23,26,16,-26,27,26,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,33,35,-37,37,36,-36,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,71,72,-74,74,73,-73,72,75,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,83,-83,85,84,-83,84,85,-87,87,86,-86,88,85,-83,85,88,-90,89,88,-91,91,90,-89,92,88,-83,82,93,-93,92,93,-95,95,94,-94,96,98,-98,99,97,-99,100,102,-102,101,102,-104,104,103,-103,102,105,-105,106,108,-108,109,107,-109,107,109,-111,111,110,-110,112,114,-114,115,113,-115,116,118,-118,116,117,-120,120,119,-118,121,120,-118,122,124,-124,125,123,-125,126,128,-128,127,128,-130,130,129,-129,128,131,-131 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: 14.76378,-19.68504,14.76378,-14.76378,19.68504,-19.68504,19.68504,-14.76378,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,4.92126,-19.68504,8.366141,-14.76378,4.92126,-14.76378,8.366141,19.68504,-9.916559E-13,-19.68504,-9.916559E-13,19.68504,4.92126,14.76378,4.92126,-19.68504,19.68504,9.84252,9.84252,14.76378,8.366141,15.55118,9.84252,15.55118,8.366141,9.84252,13.2874,4.92126,14.76378,10.62992,14.76378,10.62992,13.2874,4.92126,18.20866,5.708662,19.68504,5.708662,18.20866,19.68504,4.591199E-13,-19.68504,4.591199E-13,19.68504,19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,19.68504,5.708662,-19.68504,5.708662,-5.708662,19.68504,19.68504,19.68504,-5.708662,19.68504,0,-19.68504,0,19.68504,19.68504,-19.68504,19.68504,-19.68504,13.2874,-19.68504,14.76378,-10.62992,13.2874,-10.62992,14.76378,-19.68504,18.20866,-19.68504,19.68504,-5.708662,18.20866,-5.708662,19.68504,-19.68504,14.76378,-19.68504,18.20866,-4.92126,14.76378,-4.92126,18.20866,19.68504,8.366141,15.55118,8.366141,19.68504,9.84252,15.55118,9.84252,-19.68504,8.366141,-19.68504,9.84252,-15.55118,8.366141,-15.55118,9.84252,-19.68504,9.84252,-19.68504,13.2874,-9.84252,9.84252,-9.84252,13.2874,5.708662,18.20866,5.708662,19.68504,19.68504,18.20866,19.68504,19.68504,-19.68504,-10.62992,-19.68504,-9.84252,-10.62992,-10.62992,-9.84252,-9.84252,-9.84252,-19.68504,-10.62992,-19.68504,9.84252,9.84252,9.84252,13.2874,19.68504,9.84252,19.68504,13.2874,-19.68504,4.07351E-13,-19.68504,4.92126,19.68504,4.07351E-13,-14.76378,4.92126,-14.76378,8.366141,-9.84252,9.84252,-15.55118,8.366141,-15.55118,9.84252,-4.92126,14.76378,-9.84252,13.2874,-10.62992,13.2874,-10.62992,14.76378,-4.92126,18.20866,19.68504,19.68504,-5.708662,18.20866,-5.708662,19.68504,19.68504,14.76378,4.92126,14.76378,19.68504,18.20866,4.92126,18.20866,-19.68504,-15.55118,-19.68504,-14.76378,-15.55118,-15.55118,-14.76378,-14.76378,-14.76378,-19.68504,-15.55118,-19.68504,9.84252,-19.68504,9.84252,-9.84252,15.55118,-19.68504,15.55118,-15.55118,19.68504,-9.84252,19.68504,-15.55118,19.68504,13.2874,10.62992,13.2874,19.68504,14.76378,10.62992,14.76378,4.92126,-19.68504,10.62992,-10.62992,10.62992,-19.68504,4.92126,-4.92126,19.68504,-4.92126,19.68504,-10.62992,19.68504,4.92126,14.76378,4.92126,19.68504,8.366141,14.76378,8.366141,-19.68504,-5.708662,-19.68504,-4.92126,-5.708662,-5.708662,-4.92126,-4.92126,-4.92126,-19.68504,-5.708662,-19.68504 + } + UVIndex: *252 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,13,15,16,17,16,15,18,17,15,19,17,18,20,19,18,21,16,17,22,16,21,23,22,21,24,23,21,25,16,22,26,16,25,27,26,25,28,30,29,31,29,30,32,34,33,35,33,34,33,35,36,37,36,35,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,71,72,73,74,73,72,72,75,74,76,78,77,79,77,78,80,82,81,83,81,82,84,83,82,85,84,82,84,85,86,87,86,85,88,85,82,85,88,89,89,88,90,91,90,88,92,88,82,82,93,92,92,93,94,95,94,93,96,98,97,99,97,98,100,102,101,101,102,103,104,103,102,102,105,104,106,108,107,109,107,108,107,109,110,111,110,109,112,114,113,115,113,114,116,118,117,116,117,119,120,119,117,121,120,117,122,124,123,125,123,124,126,128,127,127,128,129,130,129,128,128,131,130 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsFullCornerInner, Model::RootNode + C: "OO",5099131528096780482,0 + + ;Geometry::, Model::Mesh stairsFullCornerInner + C: "OO",4675435993182199654,5099131528096780482 + + ;Material::stone, Model::Mesh stairsFullCornerInner + C: "OO",7184,5099131528096780482 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerInner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerInner.fbx.import new file mode 100644 index 0000000..d2c71b3 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerInner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://gkdmrqhjah37" +path="res://.godot/imported/stairsFullCornerInner.fbx-f3b5b832ebcf1b49a879c3b2c5ff67e8.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerInner.fbx" +dest_files=["res://.godot/imported/stairsFullCornerInner.fbx-f3b5b832ebcf1b49a879c3b2c5ff67e8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerOuter.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerOuter.fbx new file mode 100644 index 0000000..8cdec62 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerOuter.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 606 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsFullCornerOuter.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsFullCornerOuter.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5191303466569519223, "Model::stairsFullCornerOuter", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5275961289214357413, "Geometry::", "Mesh" { + Vertices: *462 { + a: 5,0.875,-5.2,5,1.25,-5.2,-5.2,0.875,-5.2,-5.2,1.25,-5.2,5,5,5,-1.45,5,5,5,5,-1.45,-1.45,5,-1.45,-1.25,3.75,-1.25,-1.25,4.625,-1.25,-1.25,3.75,5,-1.25,4.625,5,-1.45,4.625,-1.45,5,4.625,-1.45,-1.45,5,-1.45,5,5,-1.45,-1.45,4.625,-1.45,-1.45,5,-1.45,-1.45,4.625,5,-1.45,5,5,5,2.5,-2.5,-2.5,2.5,-2.5,5,2.5,-3.95,-3.95,2.5,-3.95,-3.95,2.5,5,-2.5,2.5,5,5,3.375,-2.7,5,3.75,-2.7,-2.7,3.375,-2.7,-2.7,3.75,-2.7,-3.95,2.125,-3.95,5,2.125,-3.95,-3.95,2.5,-3.95,5,2.5,-3.95,5,0,5,5,2.819967E-17,-4.25,-4.25,3.972574E-17,5,5,0,-5,-5,0,-5,-5,0,5,-2.5,3.375,5,-2.5,3.375,-2.5,-2.7,3.375,5,-2.7,3.375,-2.7,5,3.375,-2.7,5,3.375,-2.5,-5,0,-5,5,0,-5,-5,0.875,-5,5,0.875,-5,5,3.75,-1.25,-1.25,3.75,-1.25,5,3.75,-2.7,-2.7,3.75,-2.7,-2.7,3.75,5,-1.25,3.75,5,-5,0,-5,-5,0.875,-5,-5,0,5,-5,0.875,5,-5.2,0.875,-5.2,-5.2,1.25,-5.2,-5.2,0.875,5,-5.2,1.25,5,5,2.5,-3.95,5,2.125,-3.95,5,2.5,-2.5,5,2.125,-3.75,5,1.25,-3.75,5,0,5,5,3.75,-1.25,5,3.375,-2.5,5,3.375,-2.7,5,3.75,-2.7,5,4.625,-1.25,5,5,5,5,4.625,-1.45,5,5,-1.45,5,2.819967E-17,-4.25,5,0.875,-5,5,0,-5,5,0.875,-5.2,5,1.25,-5.2,-3.75,1.25,-3.75,5,1.25,-3.75,-3.75,2.125,-3.75,5,2.125,-3.75,-3.75,2.125,5,-3.75,2.125,-3.75,-3.95,2.125,5,-3.95,2.125,-3.95,5,2.125,-3.95,5,2.125,-3.75,-5,0.875,5,-5,0.875,-5,-5.2,0.875,5,-5.2,0.875,-5.2,5,0.875,-5.2,5,0.875,-5,-3.75,1.25,-3.75,-3.75,2.125,-3.75,-3.75,1.25,5,-3.75,2.125,5,-3.95,2.125,-3.95,-3.95,2.5,-3.95,-3.95,2.125,5,-3.95,2.5,5,-2.5,2.5,-2.5,5,2.5,-2.5,-2.5,3.375,-2.5,5,3.375,-2.5,-1.25,4.625,5,-1.25,4.625,-1.25,-1.45,4.625,5,-1.45,4.625,-1.45,5,4.625,-1.45,5,4.625,-1.25,5,1.25,-3.75,-3.75,1.25,-3.75,5,1.25,-5.2,-5.2,1.25,-5.2,-5.2,1.25,5,-3.75,1.25,5,-2.7,3.375,-2.7,-2.7,3.75,-2.7,-2.7,3.375,5,-2.7,3.75,5,5,0,5,-4.25,3.972574E-17,5,5,5,5,-3.75,1.25,5,-5,0.875,5,-5,0,5,-5.2,1.25,5,-5.2,0.875,5,-2.5,2.5,5,-3.75,2.125,5,-3.95,2.5,5,-3.95,2.125,5,-2.5,3.375,5,-1.25,3.75,5,-2.7,3.75,5,-2.7,3.375,5,-1.25,4.625,5,-1.45,5,5,-1.45,4.625,5,-1.25,3.75,-1.25,5,3.75,-1.25,-1.25,4.625,-1.25,5,4.625,-1.25,-2.5,3.375,-2.5,-2.5,3.375,5,-2.5,2.5,-2.5,-2.5,2.5,5 + } + PolygonVertexIndex: *300 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,21,-24,21,24,-26,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,37,-37,39,38,-37,40,42,-42,42,43,-42,43,44,-42,45,41,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,51,-54,51,54,-56,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,66,69,-69,70,69,-67,66,71,-71,71,72,-71,73,70,-73,74,69,-71,75,69,-75,74,76,-76,77,75,-77,69,78,-69,78,79,-69,79,78,-81,79,81,-69,82,68,-82,83,85,-85,86,84,-86,87,89,-89,89,90,-89,90,91,-89,92,88,-92,93,95,-95,95,96,-95,96,97,-95,98,94,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,113,-113,113,114,-113,114,115,-113,116,112,-116,117,119,-119,120,118,-120,121,118,-121,118,121,-123,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,128,-131,128,131,-133,133,131,-131,131,133,-135,135,130,-130,136,130,-136,137,136,-136,136,137,-139,139,135,-130,140,139,-130,141,139,-141,139,141,-143,143,140,-130,144,143,-130,143,144,-146,146,148,-148,149,147,-149,150,152,-152,153,151,-153 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *900 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *308 { + a: -19.68504,3.444882,-19.68504,4.92126,20.47244,3.444882,20.47244,4.92126,-19.68504,19.68504,5.708662,19.68504,-19.68504,-5.708662,5.708662,-5.708661,-4.921259,14.76378,-4.921259,18.20866,19.68504,14.76378,19.68504,18.20866,5.708662,18.20866,-19.68504,18.20866,5.708662,19.68504,-19.68504,19.68504,-5.708661,18.20866,-5.708661,19.68504,19.68504,18.20866,19.68504,19.68504,-19.68504,-9.84252,9.84252,-9.842519,-19.68504,-15.55118,15.55118,-15.55118,15.55118,19.68504,9.84252,19.68504,-19.68504,13.2874,-19.68504,14.76378,10.62992,13.2874,10.62992,14.76378,15.55118,8.366141,-19.68504,8.366141,15.55118,9.84252,-19.68504,9.84252,19.68504,19.68504,19.68504,-16.73228,-16.73228,19.68504,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,19.68504,-9.84252,19.68504,-9.84252,-9.842519,-10.62992,19.68504,-10.62992,-10.62992,19.68504,-10.62992,19.68504,-9.84252,19.68504,-1.948917E-12,-19.68504,-1.948917E-12,19.68504,3.444882,-19.68504,3.444882,-19.68504,-4.92126,4.92126,-4.921259,-19.68504,-10.62992,10.62992,-10.62992,10.62992,19.68504,4.92126,19.68504,-19.68504,-1.299278E-12,-19.68504,3.444882,19.68504,-1.299278E-12,19.68504,3.444882,-20.47244,3.444882,-20.47244,4.92126,19.68504,3.444882,19.68504,4.92126,15.55118,9.84252,15.55118,8.366141,9.84252,9.84252,14.76378,8.366141,14.76378,4.92126,-19.68504,-3.400172E-14,4.921259,14.76378,9.84252,13.2874,10.62992,13.2874,10.62992,14.76378,4.921259,18.20866,-19.68504,19.68504,5.708661,18.20866,5.708661,19.68504,16.73228,-3.38907E-14,19.68504,3.444882,19.68504,-3.400172E-14,20.47244,3.444882,20.47244,4.92126,14.76378,4.92126,-19.68504,4.92126,14.76378,8.366141,-19.68504,8.366141,-14.76378,19.68504,-14.76378,-14.76378,-15.55118,19.68504,-15.55118,-15.55118,19.68504,-15.55118,19.68504,-14.76378,-19.68504,19.68504,-19.68504,-19.68504,-20.47244,19.68504,-20.47244,-20.47244,19.68504,-20.47244,19.68504,-19.68504,-14.76378,4.92126,-14.76378,8.366141,19.68504,4.92126,19.68504,8.366141,-15.55118,8.366141,-15.55118,9.84252,19.68504,8.366141,19.68504,9.84252,9.84252,9.84252,-19.68504,9.84252,9.84252,13.2874,-19.68504,13.2874,-4.92126,19.68504,-4.92126,-4.921259,-5.708662,19.68504,-5.708662,-5.708661,19.68504,-5.708662,19.68504,-4.92126,-19.68504,-14.76378,14.76378,-14.76378,-19.68504,-20.47244,20.47244,-20.47244,20.47244,19.68504,14.76378,19.68504,-10.62992,13.2874,-10.62992,14.76378,19.68504,13.2874,19.68504,14.76378,19.68504,-1.211551E-07,-16.73228,-1.211551E-07,19.68504,19.68504,-14.76378,4.92126,-19.68504,3.444882,-19.68504,-1.211551E-07,-20.47244,4.92126,-20.47244,3.444882,-9.84252,9.84252,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,-9.84252,13.2874,-4.92126,14.76378,-10.62992,14.76378,-10.62992,13.2874,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,4.92126,14.76378,-19.68504,14.76378,4.92126,18.20866,-19.68504,18.20866,-9.84252,13.2874,19.68504,13.2874,-9.84252,9.84252,19.68504,9.84252 + } + UVIndex: *300 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,21,23,21,24,25,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,37,36,39,38,36,40,42,41,42,43,41,43,44,41,45,41,44,46,48,47,49,47,48,50,52,51,53,51,52,54,51,53,51,54,55,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,66,69,68,70,69,66,66,71,70,71,72,70,73,70,72,74,69,70,75,69,74,74,76,75,77,75,76,69,78,68,78,79,68,79,78,80,79,81,68,82,68,81,83,85,84,86,84,85,87,89,88,89,90,88,90,91,88,92,88,91,93,95,94,95,96,94,96,97,94,98,94,97,99,101,100,102,100,101,103,105,104,106,104,105,107,109,108,110,108,109,111,113,112,113,114,112,114,115,112,116,112,115,117,119,118,120,118,119,121,118,120,118,121,122,123,125,124,126,124,125,127,129,128,130,128,129,131,128,130,128,131,132,133,131,130,131,133,134,135,130,129,136,130,135,137,136,135,136,137,138,139,135,129,140,139,129,141,139,140,139,141,142,143,140,129,144,143,129,143,144,145,146,148,147,149,147,148,150,152,151,153,151,152 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *100 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsFullCornerOuter, Model::RootNode + C: "OO",5191303466569519223,0 + + ;Geometry::, Model::Mesh stairsFullCornerOuter + C: "OO",5275961289214357413,5191303466569519223 + + ;Material::stone, Model::Mesh stairsFullCornerOuter + C: "OO",7184,5191303466569519223 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerOuter.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerOuter.fbx.import new file mode 100644 index 0000000..e553ef8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerOuter.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bu1ovrh78kxlk" +path="res://.godot/imported/stairsFullCornerOuter.fbx-4b453b7835bf7da718df1792c5543b9c.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsFullCornerOuter.fbx" +dest_files=["res://.godot/imported/stairsFullCornerOuter.fbx-4b453b7835bf7da718df1792c5543b9c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStone.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStone.fbx new file mode 100644 index 0000000..5987c1c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 655 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsStone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsStone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5317039703333113134, "Model::stairsStone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5495710833873242895, "Geometry::", "Mesh" { + Vertices: *630 { + a: -1.45,4.625,-2.5,-1.45,5,-2.5,-1.45,4.625,2.5,-1.45,5,2.5,-3.75,2.125,2.5,-3.75,2.125,-2.5,-3.95,2.125,2.5,-3.95,2.125,-2.5,2.5,7.5,-2.5,2.5,8.375,-2.5,2.5,7.5,2.5,2.5,8.375,2.5,3.75,9.625,2.5,3.75,9.625,-2.5,3.55,9.625,2.5,3.55,9.625,-2.5,3.75,8.75,-2.5,3.75,9.625,-2.5,3.75,8.75,2.5,3.75,9.625,2.5,3.55,9.625,-2.5,3.55,10,-2.5,3.55,9.625,2.5,3.55,10,2.5,-2.5,2.5,-2.5,-2.5,3.375,-2.5,-2.5,2.5,2.5,-2.5,3.375,2.5,-4.25,2.819967E-17,2.5,-4.25,2.819967E-17,-2.5,-5,0,2.5,-5,0,-2.5,-1.25,4.625,2.5,-1.25,4.625,-2.5,-1.45,4.625,2.5,-1.45,4.625,-2.5,-0.2,5.875,-2.5,-0.2,6.25,-2.5,-0.2,5.875,2.5,-0.2,6.25,2.5,-2.5,2.5,-2.5,-2.5,2.5,2.5,-3.95,2.5,-2.5,-3.95,2.5,2.5,1.25,6.25,-2.5,1.25,6.25,2.5,-0.2,6.25,-2.5,-0.2,6.25,2.5,-3.95,2.125,-2.5,-3.95,2.5,-2.5,-3.95,2.125,2.5,-3.95,2.5,2.5,2.887646E-14,5,-2.5,2.887646E-14,5.875,-2.5,2.887646E-14,5,2.5,2.887646E-14,5.875,2.5,-3.75,1.25,-2.5,-3.75,1.25,2.5,-5.2,1.25,-2.5,-5.2,1.25,2.5,5,10,-2.5,5,9.25,-2.5,5,10,2.5,5,9.25,2.5,-1.25,3.75,-2.5,-1.25,4.625,-2.5,-1.25,3.75,2.5,-1.25,4.625,2.5,1.25,6.25,-2.5,1.25,7.125,-2.5,1.25,6.25,2.5,1.25,7.125,2.5,2.5,8.375,2.5,2.5,8.375,-2.5,2.3,8.375,2.5,2.3,8.375,-2.5,2.5,7.5,-2.5,2.5,7.5,2.5,1.05,7.5,-2.5,1.05,7.5,2.5,2.3,8.375,-2.5,2.3,8.75,-2.5,2.3,8.375,2.5,2.3,8.75,2.5,-2.5,3.375,2.5,-2.5,3.375,-2.5,-2.7,3.375,2.5,-2.7,3.375,-2.5,-5.2,0.875,-2.5,-5.2,1.25,-2.5,-5.2,0.875,2.5,-5.2,1.25,2.5,-3.75,1.25,-2.5,-3.75,2.125,-2.5,-3.75,1.25,2.5,-3.75,2.125,2.5,3.75,8.75,-2.5,3.75,8.75,2.5,2.3,8.75,-2.5,2.3,8.75,2.5,-5,0,-2.5,-5,0.875,-2.5,-5,0,2.5,-5,0.875,2.5,2.887646E-14,5,-2.5,2.887646E-14,5,2.5,-1.45,5,-2.5,-1.45,5,2.5,2.887646E-14,5.875,2.5,2.887646E-14,5.875,-2.5,-0.2,5.875,2.5,-0.2,5.875,-2.5,5,10,-2.5,5,10,2.5,3.55,10,-2.5,3.55,10,2.5,-5.2,0.875,-2.5,-5,0.875,-2.5,-5.2,1.25,-2.5,-3.75,1.25,-2.5,-4.25,2.819967E-17,-2.5,-5,0,-2.5,5,9.25,-2.5,-2.5,2.5,-2.5,-3.75,2.125,-2.5,-3.95,2.5,-2.5,-3.95,2.125,-2.5,-1.25,3.75,-2.5,-2.5,3.375,-2.5,-2.7,3.75,-2.5,-2.7,3.375,-2.5,2.887646E-14,5,-2.5,-1.25,4.625,-2.5,-1.45,5,-2.5,-1.45,4.625,-2.5,1.25,6.25,-2.5,2.887646E-14,5.875,-2.5,-0.2,6.25,-2.5,-0.2,5.875,-2.5,2.5,7.5,-2.5,1.25,7.125,-2.5,1.05,7.5,-2.5,1.05,7.125,-2.5,3.75,8.75,-2.5,2.5,8.375,-2.5,2.3,8.75,-2.5,2.3,8.375,-2.5,3.75,9.625,-2.5,5,10,-2.5,3.55,10,-2.5,3.55,9.625,-2.5,-5,0.875,2.5,-5,0.875,-2.5,-5.2,0.875,2.5,-5.2,0.875,-2.5,-5,0,2.5,-5,0.875,2.5,-4.25,2.819967E-17,2.5,-3.75,1.25,2.5,5,9.25,2.5,-2.5,2.5,2.5,-5.2,1.25,2.5,-5.2,0.875,2.5,-3.75,2.125,2.5,-3.95,2.5,2.5,-3.95,2.125,2.5,-1.25,3.75,2.5,-2.5,3.375,2.5,-2.7,3.75,2.5,-2.7,3.375,2.5,2.887646E-14,5,2.5,-1.25,4.625,2.5,-1.45,5,2.5,-1.45,4.625,2.5,1.25,6.25,2.5,2.887646E-14,5.875,2.5,-0.2,6.25,2.5,-0.2,5.875,2.5,2.5,7.5,2.5,1.25,7.125,2.5,1.05,7.5,2.5,1.05,7.125,2.5,3.75,8.75,2.5,2.5,8.375,2.5,2.3,8.75,2.5,2.3,8.375,2.5,3.75,9.625,2.5,5,10,2.5,3.55,10,2.5,3.55,9.625,2.5,-2.7,3.375,-2.5,-2.7,3.75,-2.5,-2.7,3.375,2.5,-2.7,3.75,2.5,-4.25,2.819967E-17,-2.5,-4.25,2.819967E-17,2.5,5,9.25,-2.5,5,9.25,2.5,-1.25,3.75,-2.5,-1.25,3.75,2.5,-2.7,3.75,-2.5,-2.7,3.75,2.5,1.25,7.125,2.5,1.25,7.125,-2.5,1.05,7.125,2.5,1.05,7.125,-2.5,1.05,7.125,-2.5,1.05,7.5,-2.5,1.05,7.125,2.5,1.05,7.5,2.5 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,118,119,-118,119,120,-118,121,117,-121,122,120,-120,123,122,-120,124,123,-120,125,123,-125,126,125,-125,127,122,-124,128,127,-124,129,127,-129,130,129,-129,131,122,-128,132,131,-128,133,131,-133,134,133,-133,135,122,-132,136,135,-132,137,135,-137,138,137,-137,139,122,-136,140,139,-136,141,139,-141,142,141,-141,143,122,-140,144,143,-140,145,143,-145,146,145,-145,147,122,-144,148,122,-148,149,148,-148,150,149,-148,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,158,-158,160,158,-160,161,156,-159,156,161,-163,163,158,-161,164,163,-161,163,164,-166,166,160,-160,167,160,-167,168,167,-167,167,168,-170,170,166,-160,171,166,-171,172,171,-171,171,172,-174,174,170,-160,175,170,-175,176,175,-175,175,176,-178,178,174,-160,179,174,-179,180,179,-179,179,180,-182,182,178,-160,183,178,-183,184,183,-183,183,184,-186,186,182,-160,187,186,-160,188,186,-188,186,188,-190,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *420 { + a: -9.84252,18.20866,-9.84252,19.68504,9.84252,18.20866,9.84252,19.68504,-14.76378,9.84252,-14.76378,-9.84252,-15.55118,9.84252,-15.55118,-9.84252,-9.84252,29.52756,-9.84252,32.97244,9.84252,29.52756,9.84252,32.97244,14.76378,9.84252,14.76378,-9.84252,13.97638,9.84252,13.97638,-9.84252,-9.84252,34.44882,-9.84252,37.8937,9.84252,34.44882,9.84252,37.8937,-9.84252,37.8937,-9.84252,39.37008,9.84252,37.8937,9.84252,39.37008,-9.84252,9.84252,-9.84252,13.2874,9.84252,9.84252,9.84252,13.2874,-16.73228,9.84252,-16.73228,-9.84252,-19.68504,9.84252,-19.68504,-9.84252,-4.92126,9.84252,-4.92126,-9.84252,-5.708662,9.84252,-5.708662,-9.84252,-9.84252,23.12992,-9.84252,24.6063,9.84252,23.12992,9.84252,24.6063,9.84252,-9.84252,9.84252,9.84252,15.55118,-9.84252,15.55118,9.84252,-4.92126,-9.84252,-4.92126,9.84252,0.7874016,-9.84252,0.7874016,9.84252,-9.84252,8.366141,-9.84252,9.84252,9.84252,8.366141,9.84252,9.84252,-9.84252,19.68504,-9.84252,23.12992,9.84252,19.68504,9.84252,23.12992,14.76378,-9.84252,14.76378,9.84252,20.47244,-9.84252,20.47244,9.84252,9.84252,39.37008,9.84252,36.41732,-9.84252,39.37008,-9.84252,36.41732,-9.84252,14.76378,-9.84252,18.20866,9.84252,14.76378,9.84252,18.20866,-9.84252,24.6063,-9.84252,28.05118,9.84252,24.6063,9.84252,28.05118,9.84252,9.84252,9.84252,-9.84252,9.055119,9.84252,9.055119,-9.84252,-9.84252,-9.84252,-9.84252,9.84252,-4.133858,-9.84252,-4.133858,9.84252,-9.84252,32.97244,-9.84252,34.44882,9.84252,32.97244,9.84252,34.44882,-9.84252,9.84252,-9.84252,-9.84252,-10.62992,9.84252,-10.62992,-9.84252,-9.84252,3.444882,-9.84252,4.92126,9.84252,3.444882,9.84252,4.92126,-9.84252,4.92126,-9.84252,8.366141,9.84252,4.92126,9.84252,8.366141,-14.76378,-9.84252,-14.76378,9.84252,-9.055119,-9.84252,-9.055119,9.84252,-9.84252,-3.248195E-13,-9.84252,3.444882,9.84252,-3.248195E-13,9.84252,3.444882,-1.136868E-13,-9.84252,-1.136868E-13,9.84252,5.708662,-9.84252,5.708662,9.84252,1.004234E-12,9.84252,1.004234E-12,-9.84252,-0.7874016,9.84252,-0.7874016,-9.84252,-19.68504,-9.84252,-19.68504,9.84252,-13.97638,-9.84252,-13.97638,9.84252,20.47244,3.444882,19.68504,3.444882,20.47244,4.92126,14.76378,4.92126,16.73228,-2.187387E-13,19.68504,-2.188497E-13,-19.68504,36.41732,9.84252,9.84252,14.76378,8.366141,15.55118,9.84252,15.55118,8.366141,4.92126,14.76378,9.84252,13.2874,10.62992,14.76378,10.62992,13.2874,-2.957264E-13,19.68504,4.92126,18.20866,5.708662,19.68504,5.708662,18.20866,-4.92126,24.6063,-2.957264E-13,23.12992,0.7874016,24.6063,0.7874016,23.12992,-9.84252,29.52756,-4.92126,28.05118,-4.133858,29.52756,-4.133858,28.05118,-14.76378,34.44882,-9.84252,32.97244,-9.055119,34.44882,-9.055119,32.97244,-14.76378,37.8937,-19.68504,39.37008,-13.97638,39.37008,-13.97638,37.8937,-19.68504,9.84252,-19.68504,-9.84252,-20.47244,9.84252,-20.47244,-9.84252,-19.68504,0,-19.68504,3.444882,-16.73228,1.110223E-16,-14.76378,4.92126,19.68504,36.41732,-9.84252,9.84252,-20.47244,4.92126,-20.47244,3.444882,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,-4.92126,14.76378,-9.84252,13.2874,-10.62992,14.76378,-10.62992,13.2874,1.136868E-13,19.68504,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,4.92126,24.6063,1.136868E-13,23.12992,-0.7874016,24.6063,-0.7874016,23.12992,9.84252,29.52756,4.92126,28.05118,4.133858,29.52756,4.133858,28.05118,14.76378,34.44882,9.84252,32.97244,9.055119,34.44882,9.055119,32.97244,14.76378,37.8937,19.68504,39.37008,13.97638,39.37008,13.97638,37.8937,-9.84252,13.2874,-9.84252,14.76378,9.84252,13.2874,9.84252,14.76378,9.84252,-11.83151,-9.84252,-11.83151,9.84252,39.67036,-9.84252,39.67036,4.92126,-9.84252,4.92126,9.84252,10.62992,-9.84252,10.62992,9.84252,4.92126,9.84252,4.92126,-9.84252,4.133858,9.84252,4.133858,-9.84252,-9.84252,28.05118,-9.84252,29.52756,9.84252,28.05118,9.84252,29.52756 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,118,119,117,119,120,117,121,117,120,122,120,119,123,122,119,124,123,119,125,123,124,126,125,124,127,122,123,128,127,123,129,127,128,130,129,128,131,122,127,132,131,127,133,131,132,134,133,132,135,122,131,136,135,131,137,135,136,138,137,136,139,122,135,140,139,135,141,139,140,142,141,140,143,122,139,144,143,139,145,143,144,146,145,144,147,122,143,148,122,147,149,148,147,150,149,147,151,153,152,154,152,153,155,157,156,158,156,157,159,158,157,160,158,159,161,156,158,156,161,162,163,158,160,164,163,160,163,164,165,166,160,159,167,160,166,168,167,166,167,168,169,170,166,159,171,166,170,172,171,170,171,172,173,174,170,159,175,170,174,176,175,174,175,176,177,178,174,159,179,174,178,180,179,178,179,180,181,182,178,159,183,178,182,184,183,182,183,184,185,186,182,159,187,186,159,188,186,187,186,188,189,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsStone, Model::RootNode + C: "OO",5317039703333113134,0 + + ;Geometry::, Model::Mesh stairsStone + C: "OO",5495710833873242895,5317039703333113134 + + ;Material::stone, Model::Mesh stairsStone + C: "OO",7184,5317039703333113134 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStone.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStone.fbx.import new file mode 100644 index 0000000..befbbbf --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bixujmu8i7uns" +path="res://.godot/imported/stairsStone.fbx-2c765a0509a1de6afbdfe70af67d2fa2.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStone.fbx" +dest_files=["res://.godot/imported/stairsStone.fbx-2c765a0509a1de6afbdfe70af67d2fa2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneCorner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneCorner.fbx new file mode 100644 index 0000000..2371a98 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneCorner.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 695 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsStoneCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsStoneCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4760063070802728215, "Model::stairsStoneCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5105338687627426055, "Geometry::", "Mesh" { + Vertices: *684 { + a: 5,0,5,0,0,5,5,10,5,-1.443823E-14,10,5,0,1.524306E-17,5.775292E-14,-4.25,2.819967E-17,1.155058E-13,6.35282E-13,5,-6.497203E-13,-3.75,1.25,1.155058E-13,-5,0.875,1.155058E-13,-5,0,1.155058E-13,-5.2,1.25,1.155058E-13,-5.2,0.875,1.155058E-13,-2.5,2.5,1.155058E-13,-3.75,2.125,1.155058E-13,-3.95,2.5,1.155058E-13,-3.95,2.125,1.155058E-13,-1.25,3.75,1.155058E-13,-2.5,3.375,1.155058E-13,-2.7,3.75,1.155058E-13,-2.7,3.375,1.155058E-13,-1.25,4.625,1.155058E-13,-1.45,5,1.155058E-13,-1.45,4.625,1.155058E-13,5,8.75,1.55,5,8.75,3,4.331468E-13,8.75,1.55,2.454499E-13,8.75,3,-3.75,1.25,-5,-3.75,1.25,1.155058E-13,-5.2,1.25,-5,-5.2,1.25,1.155058E-13,5,5.875,-0.95,7.652261E-13,5.875,-0.95,5,5.875,-0.75,7.363497E-13,5.875,-0.75,4.331468E-13,8.375,1.55,5,8.375,1.55,4.331468E-13,8.75,1.55,5,8.75,1.55,6.064056E-13,7.125,0.3,5,7.125,0.3,6.064056E-13,7.5,0.3,5,7.5,0.3,5.775291E-13,6.25,0.5,5,6.25,0.5,5.775291E-13,7.125,0.5,5,7.125,0.5,-2.5,2.5,-5,-2.5,3.375,-5,-2.5,2.5,1.155058E-13,-2.5,3.375,1.155058E-13,5,7.5,0.3,5,7.5,1.75,6.064056E-13,7.5,0.3,4.042704E-13,7.5,1.75,-1.25,3.75,-5,-1.25,3.75,1.155058E-13,-2.7,3.75,-5,-2.7,3.75,1.155058E-13,-1.45,4.625,-5,-1.45,5,-5,-1.45,4.625,1.155058E-13,-1.45,5,1.155058E-13,7.363497E-13,5,-0.75,5,5,-0.75,7.363497E-13,5.875,-0.75,5,5.875,-0.75,5,10,2.8,5,10,5,2.598881E-13,10,2.8,-1.443823E-14,10,5,5,5,-5,5,5,-0.75,-1.45,5,-5,7.363497E-13,5,-0.75,6.35282E-13,5,-6.497203E-13,-1.45,5,1.155058E-13,-3.95,2.125,-5,-3.95,2.5,-5,-3.95,2.125,1.155058E-13,-3.95,2.5,1.155058E-13,5,6.25,-0.95,5,6.25,0.5,7.652261E-13,6.25,-0.95,5.775291E-13,6.25,0.5,5,9.625,2.8,2.598881E-13,9.625,2.8,5,9.625,3,2.454499E-13,9.625,3,2.454499E-13,8.75,3,5,8.75,3,2.454499E-13,9.625,3,5,9.625,3,5,8.375,1.55,4.331468E-13,8.375,1.55,5,8.375,1.75,4.042704E-13,8.375,1.75,7.363497E-13,5,-0.75,7.363497E-13,5.875,-0.75,6.35282E-13,5,-6.497203E-13,5.775291E-13,6.25,0.5,0,1.524306E-17,5.775292E-14,7.652261E-13,5.875,-0.95,7.652261E-13,6.25,-0.95,0,0,5,5.775291E-13,7.125,0.5,4.042704E-13,7.5,1.75,6.064056E-13,7.125,0.3,6.064056E-13,7.5,0.3,2.454499E-13,8.75,3,4.042704E-13,8.375,1.75,4.331468E-13,8.375,1.55,4.331468E-13,8.75,1.55,2.454499E-13,9.625,3,-1.443823E-14,10,5,2.598881E-13,10,2.8,2.598881E-13,9.625,2.8,-3.75,1.25,-5,-3.75,2.125,-5,-3.75,1.25,1.155058E-13,-3.75,2.125,1.155058E-13,2.598881E-13,9.625,2.8,5,9.625,2.8,2.598881E-13,10,2.8,5,10,2.8,4.042704E-13,7.5,1.75,5,7.5,1.75,4.042704E-13,8.375,1.75,5,8.375,1.75,-1.25,4.625,1.155058E-13,-1.25,4.625,-5,-1.45,4.625,1.155058E-13,-1.45,4.625,-5,7.652261E-13,5.875,-0.95,5,5.875,-0.95,7.652261E-13,6.25,-0.95,5,6.25,-0.95,-1.25,3.75,-5,-1.25,4.625,-5,-1.25,3.75,1.155058E-13,-1.25,4.625,1.155058E-13,5,7.125,0.3,6.064056E-13,7.125,0.3,5,7.125,0.5,5.775291E-13,7.125,0.5,-3.75,2.125,1.155058E-13,-3.75,2.125,-5,-3.95,2.125,1.155058E-13,-3.95,2.125,-5,5,6.25,-0.95,5,5.875,-0.95,5,6.25,0.5,5,5.875,-0.75,5,0,5,5,5,-0.75,5,5,-5,5,0,-5,5,7.5,1.75,5,7.125,0.5,5,7.125,0.3,5,7.5,0.3,5,8.75,3,5,8.375,1.75,5,8.375,1.55,5,8.75,1.55,5,9.625,3,5,10,5,5,9.625,2.8,5,10,2.8,-5,0,-5,-4.25,2.819967E-17,-5,-5,0.875,-5,-3.75,1.25,-5,-5.2,1.25,-5,-5.2,0.875,-5,5,5,-5,5,0,-5,-2.5,2.5,-5,-3.75,2.125,-5,-3.95,2.5,-5,-3.95,2.125,-5,-2.5,3.375,-5,-1.25,3.75,-5,-2.7,3.75,-5,-2.7,3.375,-5,-1.25,4.625,-5,-1.45,5,-5,-1.45,4.625,-5,-5,0,-5,-5,0.875,-5,-5,0,1.155058E-13,-5,0.875,1.155058E-13,-2.5,2.5,-5,-2.5,2.5,1.155058E-13,-3.95,2.5,-5,-3.95,2.5,1.155058E-13,-4.25,2.819967E-17,1.155058E-13,-4.25,2.819967E-17,-5,-5,0,1.155058E-13,-5,0,-5,-5.2,0.875,-5,-5.2,1.25,-5,-5.2,0.875,1.155058E-13,-5.2,1.25,1.155058E-13,-2.5,3.375,1.155058E-13,-2.5,3.375,-5,-2.7,3.375,1.155058E-13,-2.7,3.375,-5,-2.7,3.375,-5,-2.7,3.75,-5,-2.7,3.375,1.155058E-13,-2.7,3.75,1.155058E-13,-5,0.875,1.155058E-13,-5,0.875,-5,-5.2,0.875,1.155058E-13,-5.2,0.875,-5,5,0,5,5,0,-5,0,0,5,0,1.524306E-17,5.775292E-14,0,0,5,5,0,-5,-4.25,2.819967E-17,-5,0,1.524306E-17,5.775292E-14,5,0,-5,-4.25,2.819967E-17,1.155058E-13,0,1.524306E-17,5.775292E-14,-4.25,2.819967E-17,-5 + } + PolygonVertexIndex: *432 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,5,8,-10,10,8,-8,8,10,-12,12,7,-7,13,7,-13,14,13,-13,13,14,-16,16,12,-7,17,12,-17,18,17,-17,17,18,-20,20,16,-7,21,20,-7,20,21,-23,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,74,-74,76,75,-74,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,99,100,-99,101,100,-100,98,100,-103,103,102,-101,104,100,-102,105,100,-105,106,105,-105,105,106,-108,108,107,-107,109,106,-105,106,109,-111,110,109,-112,112,111,-110,113,109,-105,114,113,-105,114,115,-114,116,113,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,151,153,-153,152,153,-155,154,153,-156,156,155,-154,157,153,-152,151,158,-158,158,159,-158,160,157,-160,161,153,-158,157,162,-162,162,163,-162,164,161,-164,165,153,-162,166,153,-166,165,167,-167,168,166,-168,169,171,-171,171,172,-171,173,172,-172,174,173,-172,172,175,-171,176,170,-176,177,175,-173,178,177,-173,179,177,-179,180,179,-179,181,175,-178,182,175,-182,183,182,-182,184,183,-182,185,175,-183,186,175,-186,187,186,-186,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,221,-221,222,224,-224,225,227,-227 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1296 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *456 { + a: 19.68504,-6.536993E-13,1.307399E-12,-6.536993E-13,19.68504,39.37008,1.250555E-12,39.37008,-1.160269E-26,6.001205E-17,-16.73228,1.110223E-16,2.50111E-12,19.68504,-14.76378,4.92126,-19.68504,3.444882,-19.68504,3.554828E-27,-20.47244,4.92126,-20.47244,3.444882,-9.84252,9.84252,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,-4.92126,14.76378,-9.84252,13.2874,-10.62992,14.76378,-10.62992,13.2874,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,-19.68504,6.102362,-19.68504,11.81102,-1.705303E-12,6.102362,-9.663381E-13,11.81102,14.76378,-19.68504,14.76378,4.547474E-13,20.47244,-19.68504,20.47244,4.547474E-13,19.68504,-3.740157,3.012701E-12,-3.740157,19.68504,-2.952756,2.899014E-12,-2.952756,-2.522281E-12,32.97244,-19.68504,32.97244,-2.522281E-12,34.44882,-19.68504,34.44882,-2.545548E-12,28.05118,-19.68504,28.05118,-2.545548E-12,29.52756,-19.68504,29.52756,-2.537278E-12,24.6063,-19.68504,24.6063,-2.537278E-12,28.05118,-19.68504,28.05118,-19.68504,9.84252,-19.68504,13.2874,4.547474E-13,9.84252,4.547474E-13,13.2874,-19.68504,1.181102,-19.68504,6.889764,-2.387424E-12,1.181102,-1.591616E-12,6.889764,4.92126,-19.68504,4.92126,4.547474E-13,10.62992,-19.68504,10.62992,4.547474E-13,-19.68504,18.20866,-19.68504,19.68504,4.547474E-13,18.20866,4.547474E-13,19.68504,-2.502578E-12,19.68504,-19.68504,19.68504,-2.502578E-12,23.12992,-19.68504,23.12992,-19.68504,11.02362,-19.68504,19.68504,-1.027919E-12,11.02362,5.210647E-14,19.68504,-19.68504,-19.68504,-19.68504,-2.952756,5.708662,-19.68504,-2.906561E-12,-2.952756,-2.508657E-12,-2.557886E-12,5.708662,4.54815E-13,-19.68504,8.366141,-19.68504,9.84252,4.547474E-13,8.366141,4.547474E-13,9.84252,-19.68504,-3.740157,-19.68504,1.968504,-3.012701E-12,-3.740157,-2.273737E-12,1.968504,19.68504,11.02362,1.023182E-12,11.02362,19.68504,11.81102,9.663381E-13,11.81102,-2.547586E-12,34.44882,-19.68504,34.44882,-2.547586E-12,37.8937,-19.68504,37.8937,19.68504,6.102362,1.705303E-12,6.102362,19.68504,6.889764,1.591616E-12,6.889764,-2.952756,19.68504,-2.952756,23.12992,-2.557954E-12,19.68504,1.968504,24.6063,2.273737E-13,6.001205E-17,-3.740157,23.12992,-3.740157,24.6063,19.68504,6.876372E-26,1.968504,28.05118,6.889764,29.52756,1.181102,28.05118,1.181102,29.52756,11.81102,34.44882,6.889764,32.97244,6.102362,32.97244,6.102362,34.44882,11.81102,37.8937,19.68504,39.37008,11.02362,39.37008,11.02362,37.8937,-19.68504,4.92126,-19.68504,8.366141,4.547474E-13,4.92126,4.547474E-13,8.366141,-2.499013E-12,37.8937,-19.68504,37.8937,-2.499013E-12,39.37008,-19.68504,39.37008,-2.51401E-12,29.52756,-19.68504,29.52756,-2.51401E-12,32.97244,-19.68504,32.97244,-4.92126,4.547474E-13,-4.92126,-19.68504,-5.708662,4.547474E-13,-5.708662,-19.68504,-2.511973E-12,23.12992,-19.68504,23.12992,-2.511973E-12,24.6063,-19.68504,24.6063,-19.68504,14.76378,-19.68504,18.20866,4.547474E-13,14.76378,4.547474E-13,18.20866,19.68504,1.181102,2.387424E-12,1.181102,19.68504,1.968504,2.273737E-12,1.968504,-14.76378,4.547474E-13,-14.76378,-19.68504,-15.55118,4.547474E-13,-15.55118,-19.68504,3.740157,24.6063,3.740157,23.12992,-1.968504,24.6063,2.952756,23.12992,-19.68504,8.237547E-13,2.952756,19.68504,19.68504,19.68504,19.68504,8.237547E-13,-6.889764,29.52756,-1.968504,28.05118,-1.181102,28.05118,-1.181102,29.52756,-11.81102,34.44882,-6.889764,32.97244,-6.102362,32.97244,-6.102362,34.44882,-11.81102,37.8937,-19.68504,39.37008,-11.02362,37.8937,-11.02362,39.37008,19.68504,-4.29302E-13,16.73228,-4.291909E-13,19.68504,3.444882,14.76378,4.92126,20.47244,4.92126,20.47244,3.444882,-19.68504,19.68504,-19.68504,-4.29302E-13,9.84252,9.84252,14.76378,8.366141,15.55118,9.84252,15.55118,8.366141,9.84252,13.2874,4.92126,14.76378,10.62992,14.76378,10.62992,13.2874,4.92126,18.20866,5.708662,19.68504,5.708662,18.20866,-19.68504,-3.072617E-13,-19.68504,3.444882,4.547474E-13,-3.072617E-13,4.547474E-13,3.444882,9.84252,-19.68504,9.84252,4.547474E-13,15.55118,-19.68504,15.55118,4.547474E-13,-16.73228,4.547474E-13,-16.73228,-19.68504,-19.68504,4.547474E-13,-19.68504,-19.68504,-19.68504,3.444882,-19.68504,4.92126,4.547474E-13,3.444882,4.547474E-13,4.92126,-9.84252,4.547474E-13,-9.84252,-19.68504,-10.62992,4.547474E-13,-10.62992,-19.68504,-19.68504,13.2874,-19.68504,14.76378,4.547474E-13,13.2874,4.547474E-13,14.76378,-19.68504,4.547474E-13,-19.68504,-19.68504,-20.47244,4.547474E-13,-20.47244,-19.68504,-19.68504,37.8937,-2.547586E-12,37.8937,-19.68504,34.44882,-19.68504,37.8937,-2.547586E-12,37.8937,-19.68504,34.44882,-19.68504,37.8937,-2.547586E-12,37.8937,-19.68504,34.44882,-19.68504,37.8937,-2.547586E-12,37.8937,-19.68504,34.44882 + } + UVIndex: *432 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,5,8,9,10,8,7,8,10,11,12,7,6,13,7,12,14,13,12,13,14,15,16,12,6,17,12,16,18,17,16,17,18,19,20,16,6,21,20,6,20,21,22,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,74,73,76,75,73,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,99,100,98,101,100,99,98,100,102,103,102,100,104,100,101,105,100,104,106,105,104,105,106,107,108,107,106,109,106,104,106,109,110,110,109,111,112,111,109,113,109,104,114,113,104,114,115,113,116,113,115,117,119,118,120,118,119,121,123,122,124,122,123,125,127,126,128,126,127,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,151,153,152,152,153,154,154,153,155,156,155,153,157,153,151,151,158,157,158,159,157,160,157,159,161,153,157,157,162,161,162,163,161,164,161,163,165,153,161,166,153,165,165,167,166,168,166,167,169,171,170,171,172,170,173,172,171,174,173,171,172,175,170,176,170,175,177,175,172,178,177,172,179,177,178,180,179,178,181,175,177,182,175,181,183,182,181,184,183,181,185,175,182,186,175,185,187,186,185,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,221,220,222,224,223,225,227,226 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *144 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsStoneCorner, Model::RootNode + C: "OO",4760063070802728215,0 + + ;Geometry::, Model::Mesh stairsStoneCorner + C: "OO",5105338687627426055,4760063070802728215 + + ;Material::stone, Model::Mesh stairsStoneCorner + C: "OO",7184,4760063070802728215 + + ;Material::_defaultMat, Model::Mesh stairsStoneCorner + C: "OO",7176,4760063070802728215 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneCorner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneCorner.fbx.import new file mode 100644 index 0000000..c00fa64 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d14hebt2eixw5" +path="res://.godot/imported/stairsStoneCorner.fbx-727bc3a5d497d9ec23a0ea404fb52921.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneCorner.fbx" +dest_files=["res://.godot/imported/stairsStoneCorner.fbx-727bc3a5d497d9ec23a0ea404fb52921.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneHandrail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneHandrail.fbx new file mode 100644 index 0000000..f21b5f0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneHandrail.fbx @@ -0,0 +1,420 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 742 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsStoneHandrail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsStoneHandrail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5610660997081218346, "Model::stairsStoneHandrail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4974072380312257591, "Geometry::", "Mesh" { + Vertices: *630 { + a: 2.5,8.375,2.5,2.5,8.375,-2.5,2.3,8.375,2.5,2.3,8.375,-2.5,2.3,8.375,-2.5,2.3,8.75,-2.5,2.3,8.375,2.5,2.3,8.75,2.5,-0.2,5.875,-2.5,-0.2,6.25,-2.5,-0.2,5.875,2.5,-0.2,6.25,2.5,-1.25,3.75,-2.5,-1.25,4.625,-2.5,-1.25,3.75,2.5,-1.25,4.625,2.5,-1.45,4.625,-2.5,-1.45,5,-2.5,-1.45,4.625,2.5,-1.45,5,2.5,2.887646E-14,5,-2.5,2.887646E-14,5,2.5,-1.45,5,-2.5,-1.45,5,2.5,-1.25,4.625,2.5,-1.25,4.625,-2.5,-1.45,4.625,2.5,-1.45,4.625,-2.5,3.75,8.75,-2.5,3.75,8.75,2.5,2.3,8.75,-2.5,2.3,8.75,2.5,2.5,7.5,-2.5,2.5,8.375,-2.5,2.5,7.5,2.5,2.5,8.375,2.5,2.887646E-14,5.875,2.5,2.887646E-14,5.875,-2.5,-0.2,5.875,2.5,-0.2,5.875,-2.5,1.25,6.25,-2.5,1.25,6.25,2.5,-0.2,6.25,-2.5,-0.2,6.25,2.5,2.887646E-14,5,-2.5,2.887646E-14,5.875,-2.5,2.887646E-14,5,2.5,2.887646E-14,5.875,2.5,-5.2,0.875,-2.5,-5,0.875,-2.5,-5.2,1.25,-2.5,-3.75,1.25,-2.5,-4.25,2.819967E-17,-2.5,-5,0,-2.5,5,9.25,-2.5,-2.5,2.5,-2.5,-3.75,2.125,-2.5,-3.95,2.5,-2.5,-3.95,2.125,-2.5,-1.25,3.75,-2.5,-2.5,3.375,-2.5,-2.7,3.75,-2.5,-2.7,3.375,-2.5,2.887646E-14,5,-2.5,-1.25,4.625,-2.5,-1.45,5,-2.5,-1.45,4.625,-2.5,1.25,6.25,-2.5,2.887646E-14,5.875,-2.5,-0.2,6.25,-2.5,-0.2,5.875,-2.5,2.5,7.5,-2.5,1.25,7.125,-2.5,1.05,7.5,-2.5,1.05,7.125,-2.5,3.75,8.75,-2.5,2.5,8.375,-2.5,2.3,8.75,-2.5,2.3,8.375,-2.5,3.75,9.625,-2.5,5,10,-2.5,3.55,10,-2.5,3.55,9.625,-2.5,-5,0,-2.5,-5,0.875,-2.5,-5,0,2.5,-5,0.875,2.5,3.55,9.625,-2.5,3.55,10,-2.5,3.55,9.625,2.5,3.55,10,2.5,1.05,7.125,-2.5,1.05,7.5,-2.5,1.05,7.125,2.5,1.05,7.5,2.5,-3.75,1.25,-2.5,-3.75,1.25,2.5,-5.2,1.25,-2.5,-5.2,1.25,2.5,-5.2,0.875,-2.5,-5.2,1.25,-2.5,-5.2,0.875,2.5,-5.2,1.25,2.5,-3.75,1.25,-2.5,-3.75,2.125,-2.5,-3.75,1.25,2.5,-3.75,2.125,2.5,3.75,9.625,2.5,3.75,9.625,-2.5,3.55,9.625,2.5,3.55,9.625,-2.5,-3.95,2.125,-2.5,-3.95,2.5,-2.5,-3.95,2.125,2.5,-3.95,2.5,2.5,2.5,7.5,-2.5,2.5,7.5,2.5,1.05,7.5,-2.5,1.05,7.5,2.5,-2.5,2.5,-2.5,-2.5,3.375,-2.5,-2.5,2.5,2.5,-2.5,3.375,2.5,-5,0.875,2.5,-5,0.875,-2.5,-5.2,0.875,2.5,-5.2,0.875,-2.5,5,10,-2.5,5,10,2.5,3.55,10,-2.5,3.55,10,2.5,-5,0,2.5,-5,0.875,2.5,-4.25,2.819967E-17,2.5,-3.75,1.25,2.5,5,9.25,2.5,-2.5,2.5,2.5,-5.2,1.25,2.5,-5.2,0.875,2.5,-3.75,2.125,2.5,-3.95,2.5,2.5,-3.95,2.125,2.5,-1.25,3.75,2.5,-2.5,3.375,2.5,-2.7,3.75,2.5,-2.7,3.375,2.5,2.887646E-14,5,2.5,-1.25,4.625,2.5,-1.45,5,2.5,-1.45,4.625,2.5,1.25,6.25,2.5,2.887646E-14,5.875,2.5,-0.2,6.25,2.5,-0.2,5.875,2.5,2.5,7.5,2.5,1.25,7.125,2.5,1.05,7.5,2.5,1.05,7.125,2.5,3.75,8.75,2.5,2.5,8.375,2.5,2.3,8.75,2.5,2.3,8.375,2.5,3.75,9.625,2.5,5,10,2.5,3.55,10,2.5,3.55,9.625,2.5,1.25,7.125,2.5,1.25,7.125,-2.5,1.05,7.125,2.5,1.05,7.125,-2.5,5,10,-2.5,5,9.25,-2.5,5,10,2.5,5,9.25,2.5,3.75,8.75,-2.5,3.75,9.625,-2.5,3.75,8.75,2.5,3.75,9.625,2.5,-2.7,3.375,-2.5,-2.7,3.75,-2.5,-2.7,3.375,2.5,-2.7,3.75,2.5,-2.5,3.375,2.5,-2.5,3.375,-2.5,-2.7,3.375,2.5,-2.7,3.375,-2.5,-2.5,2.5,-2.5,-2.5,2.5,2.5,-3.95,2.5,-2.5,-3.95,2.5,2.5,1.25,6.25,-2.5,1.25,7.125,-2.5,1.25,6.25,2.5,1.25,7.125,2.5,-1.25,3.75,-2.5,-1.25,3.75,2.5,-2.7,3.75,-2.5,-2.7,3.75,2.5,-4.25,2.819967E-17,-2.5,-4.25,2.819967E-17,2.5,5,9.25,-2.5,5,9.25,2.5,-3.75,2.125,2.5,-3.75,2.125,-2.5,-3.95,2.125,2.5,-3.95,2.125,-2.5,-4.25,2.819967E-17,2.5,-4.25,2.819967E-17,-2.5,-5,0,2.5,-5,0,-2.5 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,50,51,-50,51,52,-50,53,49,-53,54,52,-52,55,54,-52,56,55,-52,57,55,-57,58,57,-57,59,54,-56,60,59,-56,61,59,-61,62,61,-61,63,54,-60,64,63,-60,65,63,-65,66,65,-65,67,54,-64,68,67,-64,69,67,-69,70,69,-69,71,54,-68,72,71,-68,73,71,-73,74,73,-73,75,54,-72,76,75,-72,77,75,-77,78,77,-77,79,54,-76,80,54,-80,81,80,-80,82,81,-80,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,113,-113,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,134,-134,136,134,-136,137,132,-135,132,137,-139,139,134,-137,140,139,-137,139,140,-142,142,136,-136,143,136,-143,144,143,-143,143,144,-146,146,142,-136,147,142,-147,148,147,-147,147,148,-150,150,146,-136,151,146,-151,152,151,-151,151,152,-154,154,150,-136,155,150,-155,156,155,-155,155,156,-158,158,154,-136,159,154,-159,160,159,-159,159,160,-162,162,158,-136,163,162,-136,164,162,-164,162,164,-166,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *420 { + a: 9.84252,9.84252,9.84252,-9.84252,9.055119,9.84252,9.055119,-9.84252,-9.84252,32.97244,-9.84252,34.44882,9.84252,32.97244,9.84252,34.44882,-9.84252,23.12992,-9.84252,24.6063,9.84252,23.12992,9.84252,24.6063,-9.84252,14.76378,-9.84252,18.20866,9.84252,14.76378,9.84252,18.20866,-9.84252,18.20866,-9.84252,19.68504,9.84252,18.20866,9.84252,19.68504,-1.136868E-13,-9.84252,-1.136868E-13,9.84252,5.708662,-9.84252,5.708662,9.84252,-4.92126,9.84252,-4.92126,-9.84252,-5.708662,9.84252,-5.708662,-9.84252,-14.76378,-9.84252,-14.76378,9.84252,-9.055119,-9.84252,-9.055119,9.84252,-9.84252,29.52756,-9.84252,32.97244,9.84252,29.52756,9.84252,32.97244,1.004234E-12,9.84252,1.004234E-12,-9.84252,-0.7874016,9.84252,-0.7874016,-9.84252,-4.92126,-9.84252,-4.92126,9.84252,0.7874016,-9.84252,0.7874016,9.84252,-9.84252,19.68504,-9.84252,23.12992,9.84252,19.68504,9.84252,23.12992,20.47244,3.444882,19.68504,3.444882,20.47244,4.92126,14.76378,4.92126,16.73228,-2.187387E-13,19.68504,-2.188497E-13,-19.68504,36.41732,9.84252,9.84252,14.76378,8.366141,15.55118,9.84252,15.55118,8.366141,4.92126,14.76378,9.84252,13.2874,10.62992,14.76378,10.62992,13.2874,-2.957264E-13,19.68504,4.92126,18.20866,5.708662,19.68504,5.708662,18.20866,-4.92126,24.6063,-2.957264E-13,23.12992,0.7874016,24.6063,0.7874016,23.12992,-9.84252,29.52756,-4.92126,28.05118,-4.133858,29.52756,-4.133858,28.05118,-14.76378,34.44882,-9.84252,32.97244,-9.055119,34.44882,-9.055119,32.97244,-14.76378,37.8937,-19.68504,39.37008,-13.97638,39.37008,-13.97638,37.8937,-9.84252,-3.248195E-13,-9.84252,3.444882,9.84252,-3.248195E-13,9.84252,3.444882,-9.84252,37.8937,-9.84252,39.37008,9.84252,37.8937,9.84252,39.37008,-9.84252,28.05118,-9.84252,29.52756,9.84252,28.05118,9.84252,29.52756,14.76378,-9.84252,14.76378,9.84252,20.47244,-9.84252,20.47244,9.84252,-9.84252,3.444882,-9.84252,4.92126,9.84252,3.444882,9.84252,4.92126,-9.84252,4.92126,-9.84252,8.366141,9.84252,4.92126,9.84252,8.366141,14.76378,9.84252,14.76378,-9.84252,13.97638,9.84252,13.97638,-9.84252,-9.84252,8.366141,-9.84252,9.84252,9.84252,8.366141,9.84252,9.84252,-9.84252,-9.84252,-9.84252,9.84252,-4.133858,-9.84252,-4.133858,9.84252,-9.84252,9.84252,-9.84252,13.2874,9.84252,9.84252,9.84252,13.2874,-19.68504,9.84252,-19.68504,-9.84252,-20.47244,9.84252,-20.47244,-9.84252,-19.68504,-9.84252,-19.68504,9.84252,-13.97638,-9.84252,-13.97638,9.84252,-19.68504,0,-19.68504,3.444882,-16.73228,1.110223E-16,-14.76378,4.92126,19.68504,36.41732,-9.84252,9.84252,-20.47244,4.92126,-20.47244,3.444882,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,-4.92126,14.76378,-9.84252,13.2874,-10.62992,14.76378,-10.62992,13.2874,1.136868E-13,19.68504,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,4.92126,24.6063,1.136868E-13,23.12992,-0.7874016,24.6063,-0.7874016,23.12992,9.84252,29.52756,4.92126,28.05118,4.133858,29.52756,4.133858,28.05118,14.76378,34.44882,9.84252,32.97244,9.055119,34.44882,9.055119,32.97244,14.76378,37.8937,19.68504,39.37008,13.97638,39.37008,13.97638,37.8937,4.92126,9.84252,4.92126,-9.84252,4.133858,9.84252,4.133858,-9.84252,9.84252,39.37008,9.84252,36.41732,-9.84252,39.37008,-9.84252,36.41732,-9.84252,34.44882,-9.84252,37.8937,9.84252,34.44882,9.84252,37.8937,-9.84252,13.2874,-9.84252,14.76378,9.84252,13.2874,9.84252,14.76378,-9.84252,9.84252,-9.84252,-9.84252,-10.62992,9.84252,-10.62992,-9.84252,9.84252,-9.84252,9.84252,9.84252,15.55118,-9.84252,15.55118,9.84252,-9.84252,24.6063,-9.84252,28.05118,9.84252,24.6063,9.84252,28.05118,4.92126,-9.84252,4.92126,9.84252,10.62992,-9.84252,10.62992,9.84252,9.84252,-11.83151,-9.84252,-11.83151,9.84252,39.67036,-9.84252,39.67036,-14.76378,9.84252,-14.76378,-9.84252,-15.55118,9.84252,-15.55118,-9.84252,-16.73228,9.84252,-16.73228,-9.84252,-19.68504,9.84252,-19.68504,-9.84252 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,50,51,49,51,52,49,53,49,52,54,52,51,55,54,51,56,55,51,57,55,56,58,57,56,59,54,55,60,59,55,61,59,60,62,61,60,63,54,59,64,63,59,65,63,64,66,65,64,67,54,63,68,67,63,69,67,68,70,69,68,71,54,67,72,71,67,73,71,72,74,73,72,75,54,71,76,75,71,77,75,76,78,77,76,79,54,75,80,54,79,81,80,79,82,81,79,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,109,108,110,108,109,111,113,112,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,134,132,133,135,134,133,136,134,135,137,132,134,132,137,138,139,134,136,140,139,136,139,140,141,142,136,135,143,136,142,144,143,142,143,144,145,146,142,135,147,142,146,148,147,146,147,148,149,150,146,135,151,146,150,152,151,150,151,152,153,154,150,135,155,150,154,156,155,154,155,156,157,158,154,135,159,154,158,160,159,158,159,160,161,162,158,135,163,162,135,164,162,163,162,164,165,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5086070560927974156, "Model::rail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",5,2.5,-2.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5652187335978273316, "Geometry::", "Mesh" { + Vertices: *624 { + a: -10.2,0.95,0.4,-10.2,1.75,0.4,0,11.15,0.4,0,11.95,0.4,-0.525,7.5,0.3,-0.925,7.5,0.3,-0.525,10.625,0.3,-0.925,10.225,0.3,-0.925,7.5,0.09999999,-0.925,10.225,0.09999999,-0.925,7.5,0.3,-0.925,10.225,0.3,-3.025,5,0.3,-3.425,5,0.3,-3.025,8.125,0.3,-3.425,7.725,0.3,-5.525,2.5,0.3,-5.925,2.5,0.3,-5.525,5.625,0.3,-5.925,5.225,0.3,-5.525,5.625,0.09999999,-5.525,2.5,0.09999999,-5.525,5.625,0.3,-5.525,2.5,0.3,-3.425,5,0.09999999,-3.025,5,0.09999999,-3.425,7.725,0.09999999,-3.025,8.125,0.09999999,-8.425,0,0.09999999,-8.025,0,0.09999999,-8.425,2.725,0.09999999,-8.025,3.125,0.09999999,-5.925,2.5,0.09999999,-5.525,2.5,0.09999999,-5.925,5.225,0.09999999,-5.525,5.625,0.09999999,0,11.95,1.010676E-13,0,11.15,1.010676E-13,0,11.95,0.4,0,11.15,0.4,-8.025,3.125,0.09999999,-8.025,0,0.09999999,-8.025,3.125,0.3,-8.025,0,0.3,-10.2,1.75,2.887646E-14,0,11.95,1.010676E-13,-10.2,1.75,0.4,0,11.95,0.4,-8.425,0,0.09999999,-8.425,2.725,0.09999999,-8.425,0,0.3,-8.425,2.725,0.3,-3.425,5,0.09999999,-3.425,7.725,0.09999999,-3.425,5,0.3,-3.425,7.725,0.3,-5.925,2.5,0.09999999,-5.925,5.225,0.09999999,-5.925,2.5,0.3,-5.925,5.225,0.3,-3.025,8.125,0.09999999,-3.025,5,0.09999999,-3.025,8.125,0.3,-3.025,5,0.3,-8.025,0,0.3,-8.425,0,0.3,-8.025,3.125,0.3,-8.425,2.725,0.3,-0.525,10.625,0.09999999,-0.525,7.5,0.09999999,-0.525,10.625,0.3,-0.525,7.5,0.3,-10.2,0.95,0,0,11.15,1.010676E-13,-10.2,1.75,2.887646E-14,0,11.95,1.010676E-13,-10.2,0.95,0,-10.2,1.75,2.887646E-14,-10.2,0.95,0.4,-10.2,1.75,0.4,-0.925,7.5,0.09999999,-0.525,7.5,0.09999999,-0.925,10.225,0.09999999,-0.525,10.625,0.09999999,-8.025,3.125,4.7,-8.025,0,4.7,-8.025,3.125,4.9,-8.025,0,4.9,-5.925,2.5,4.7,-5.525,2.5,4.7,-5.925,5.225,4.7,-5.525,5.625,4.7,0,11.95,4.6,0,11.15,4.6,0,11.95,5,0,11.15,5,-8.425,0,4.7,-8.025,0,4.7,-8.425,2.725,4.7,-8.025,3.125,4.7,-10.2,1.75,4.6,0,11.95,4.6,-10.2,1.75,5,0,11.95,5,-0.525,10.625,4.7,-0.525,7.5,4.7,-0.525,10.625,4.9,-0.525,7.5,4.9,-5.925,2.5,4.7,-5.925,5.225,4.7,-5.925,2.5,4.9,-5.925,5.225,4.9,-10.2,0.95,4.6,-10.2,1.75,4.6,-10.2,0.95,5,-10.2,1.75,5,-8.425,0,4.7,-8.425,2.725,4.7,-8.425,0,4.9,-8.425,2.725,4.9,-3.025,8.125,4.7,-3.025,5,4.7,-3.025,8.125,4.9,-3.025,5,4.9,-3.425,5,4.7,-3.425,7.725,4.7,-3.425,5,4.9,-3.425,7.725,4.9,-3.425,5,4.7,-3.025,5,4.7,-3.425,7.725,4.7,-3.025,8.125,4.7,-3.025,5,4.9,-3.425,5,4.9,-3.025,8.125,4.9,-3.425,7.725,4.9,-0.925,7.5,4.7,-0.925,10.225,4.7,-0.925,7.5,4.9,-0.925,10.225,4.9,-5.525,2.5,4.9,-5.925,2.5,4.9,-5.525,5.625,4.9,-5.925,5.225,4.9,-5.525,5.625,4.7,-5.525,2.5,4.7,-5.525,5.625,4.9,-5.525,2.5,4.9,-10.2,0.95,5,-10.2,1.75,5,0,11.15,5,0,11.95,5,-10.2,0.95,4.6,0,11.15,4.6,-10.2,1.75,4.6,0,11.95,4.6,-0.525,7.5,4.9,-0.925,7.5,4.9,-0.525,10.625,4.9,-0.925,10.225,4.9,-8.025,0,4.9,-8.425,0,4.9,-8.025,3.125,4.9,-8.425,2.725,4.9,-0.925,7.5,4.7,-0.525,7.5,4.7,-0.925,10.225,4.7,-0.525,10.625,4.7,-10.2,0.95,0.4,-8.425,2.725,0.09999999,-10.2,0.95,0,0,11.15,1.010676E-13,-8.425,2.725,0.3,0,11.15,0.4,-8.025,3.125,0.3,-0.525,10.625,0.09999999,-0.525,10.625,0.3,-0.925,10.225,0.09999999,-0.925,10.225,0.3,-3.025,8.125,0.09999999,-3.025,8.125,0.3,-3.425,7.725,0.09999999,-3.425,7.725,0.3,-5.925,5.225,0.3,-8.025,3.125,0.09999999,-5.525,5.625,0.3,-5.925,5.225,0.09999999,-5.525,5.625,0.09999999,-0.525,10.625,4.9,0,11.15,5,-0.525,10.625,4.7,-0.925,10.225,4.9,0,11.15,4.6,-8.425,2.725,4.7,-10.2,0.95,4.6,-0.925,10.225,4.7,-10.2,0.95,5,-3.025,8.125,4.7,-3.025,8.125,4.9,-3.425,7.725,4.7,-3.425,7.725,4.9,-8.425,2.725,4.9,-8.025,3.125,4.9,-5.525,5.625,4.7,-5.925,5.225,4.7,-5.525,5.625,4.9,-8.025,3.125,4.7,-5.925,5.225,4.9 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,168,-170,168,172,-174,172,174,-174,171,173,-176,175,169,-172,176,175,-174,177,169,-176,178,176,-174,177,178,-180,179,169,-178,180,179,-179,180,178,-174,181,169,-180,182,180,-174,174,183,-174,174,184,-184,183,185,-174,185,182,-174,186,183,-185,184,169,-187,185,187,-183,181,182,-188,186,169,-188,187,169,-182,188,190,-190,191,188,-190,192,189,-191,190,193,-193,192,193,-195,195,193,-191,196,194,-194,195,191,-198,197,193,-196,198,197,-192,198,191,-190,199,193,-198,200,198,-190,196,201,-190,201,196,-194,201,202,-190,203,193,-200,199,200,-204,204,193,-204,205,203,-201,205,200,-190,206,193,-205,207,205,-190,202,207,-190,204,207,-207,202,206,-208 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: -40.15748,3.740157,-40.15748,6.889764,-7.166161E-16,43.89764,-7.166161E-16,47.04725,-2.066929,29.52756,-3.641732,29.52756,-2.066929,41.83071,-3.641732,40.25591,0.3937008,29.52756,0.3937008,40.25591,1.181102,29.52756,1.181102,40.25591,-11.90945,19.68504,-13.48425,19.68504,-11.90945,31.98819,-13.48425,30.41339,-21.75197,9.84252,-23.32677,9.84252,-21.75197,22.14567,-23.32677,20.57087,-0.3937008,22.14567,-0.3937008,9.84252,-1.181102,22.14567,-1.181102,9.84252,13.48425,19.68504,11.90945,19.68504,13.48425,30.41339,11.90945,31.98819,33.16929,0,31.59449,0,33.16929,10.72835,31.59449,12.30315,23.32677,9.84252,21.75197,9.84252,23.32677,20.57087,21.75197,22.14567,-3.979039E-13,47.04725,-3.979039E-13,43.89764,-1.574803,47.04725,-1.574803,43.89764,-0.3937008,12.30315,-0.3937008,0,-1.181102,12.30315,-1.181102,0,-1.075211E-12,-23.52383,3.979039E-13,33.26743,1.574803,-23.52383,1.574803,33.26743,0.3937008,-1.757453E-13,0.3937008,10.72835,1.181102,-1.757453E-13,1.181102,10.72835,0.3937008,19.68504,0.3937008,30.41339,1.181102,19.68504,1.181102,30.41339,0.3937008,9.84252,0.3937008,20.57087,1.181102,9.84252,1.181102,20.57087,-0.3937008,31.98819,-0.3937008,19.68504,-1.181102,31.98819,-1.181102,19.68504,-31.59449,0,-33.16929,0,-31.59449,12.30315,-33.16929,10.72835,-0.3937008,41.83071,-0.3937008,29.52756,-1.181102,41.83071,-1.181102,29.52756,40.15748,3.740157,3.989603E-27,43.89764,40.15748,6.889764,3.989603E-27,47.04725,-2.899014E-12,3.740157,-2.785328E-12,6.889764,1.574803,3.740157,1.574803,6.889764,3.641732,29.52756,2.066929,29.52756,3.641732,40.25591,2.066929,41.83071,-18.50394,12.30315,-18.50394,0,-19.29134,12.30315,-19.29134,0,23.32677,9.84252,21.75197,9.84252,23.32677,20.57087,21.75197,22.14567,-18.11024,47.04725,-18.11024,43.89764,-19.68504,47.04725,-19.68504,43.89764,33.16929,0,31.59449,0,33.16929,10.72835,31.59449,12.30315,18.11024,-23.52383,18.11024,33.26743,19.68504,-23.52383,19.68504,33.26743,-18.50394,41.83071,-18.50394,29.52756,-19.29134,41.83071,-19.29134,29.52756,18.50394,9.84252,18.50394,20.57087,19.29134,9.84252,19.29134,20.57087,18.11024,3.740157,18.11024,6.889764,19.68504,3.740157,19.68504,6.889764,18.50394,-1.757453E-13,18.50394,10.72835,19.29134,-1.757453E-13,19.29134,10.72835,-18.50394,31.98819,-18.50394,19.68504,-19.29134,31.98819,-19.29134,19.68504,18.50394,19.68504,18.50394,30.41339,19.29134,19.68504,19.29134,30.41339,13.48425,19.68504,11.90945,19.68504,13.48425,30.41339,11.90945,31.98819,-11.90945,19.68504,-13.48425,19.68504,-11.90945,31.98819,-13.48425,30.41339,18.50394,29.52756,18.50394,40.25591,19.29134,29.52756,19.29134,40.25591,-21.75197,9.84252,-23.32677,9.84252,-21.75197,22.14567,-23.32677,20.57087,-18.50394,22.14567,-18.50394,9.84252,-19.29134,22.14567,-19.29134,9.84252,-40.15748,3.740157,-40.15748,6.889764,-8.957701E-15,43.89764,-8.957701E-15,47.04725,40.15748,3.740157,1.815831E-13,43.89764,40.15748,6.889764,1.815831E-13,47.04725,-2.066929,29.52756,-3.641732,29.52756,-2.066929,41.83071,-3.641732,40.25591,-31.59449,0,-33.16929,0,-31.59449,12.30315,-33.16929,10.72835,3.641732,29.52756,2.066929,29.52756,3.641732,40.25591,2.066929,41.83071,-1.574803,-25.75094,-0.3937008,-15.86814,1.227249E-12,-25.75094,-3.979039E-13,31.04032,-1.181102,-15.86814,-1.574803,31.04032,-1.181102,-13.64104,-0.3937008,28.11724,-1.181102,28.11724,-0.3937008,25.89013,-1.181102,25.89013,-0.3937008,14.19781,-1.181102,14.19781,-0.3937008,11.97071,-1.181102,11.97071,-1.181102,-1.94872,-0.3937008,-13.64104,-1.181102,0.2783885,-0.3937008,-1.94872,-0.3937008,0.2783885,-19.29134,28.11724,-19.68504,31.04032,-18.50394,28.11724,-19.29134,25.89013,-18.11024,31.04032,-18.50394,-15.86814,-18.11024,-25.75094,-18.50394,25.89013,-19.68504,-25.75094,-18.50394,14.19781,-19.29134,14.19781,-18.50394,11.97071,-19.29134,11.97071,-19.29134,-15.86814,-19.29134,-13.64104,-18.50394,0.2783885,-18.50394,-1.94872,-19.29134,0.2783885,-18.50394,-13.64104,-19.29134,-1.94872 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,168,169,168,172,173,172,174,173,171,173,175,175,169,171,176,175,173,177,169,175,178,176,173,177,178,179,179,169,177,180,179,178,180,178,173,181,169,179,182,180,173,174,183,173,174,184,183,183,185,173,185,182,173,186,183,184,184,169,186,185,187,182,181,182,187,186,169,187,187,169,181,188,190,189,191,188,189,192,189,190,190,193,192,192,193,194,195,193,190,196,194,193,195,191,197,197,193,195,198,197,191,198,191,189,199,193,197,200,198,189,196,201,189,201,196,193,201,202,189,203,193,199,199,200,203,204,193,203,205,203,200,205,200,189,206,193,204,207,205,189,202,207,189,204,207,206,202,206,207 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsStoneHandrail, Model::RootNode + C: "OO",5610660997081218346,0 + + ;Geometry::, Model::Mesh stairsStoneHandrail + C: "OO",4974072380312257591,5610660997081218346 + + ;Material::stone, Model::Mesh stairsStoneHandrail + C: "OO",7184,5610660997081218346 + + ;Model::Mesh rail, Model::USING PARENT + C: "OO",5086070560927974156,5610660997081218346 + + ;Geometry::, Model::Mesh rail + C: "OO",5652187335978273316,5086070560927974156 + + ;Material::wood, Model::Mesh rail + C: "OO",7178,5086070560927974156 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneHandrail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneHandrail.fbx.import new file mode 100644 index 0000000..b58369b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneHandrail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cu56akdcu6ai1" +path="res://.godot/imported/stairsStoneHandrail.fbx-0ca5fb6a331084c486c1c90301bf4e24.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneHandrail.fbx" +dest_files=["res://.godot/imported/stairsStoneHandrail.fbx-0ca5fb6a331084c486c1c90301bf4e24.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneRound.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneRound.fbx new file mode 100644 index 0000000..838162c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneRound.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 790 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsStoneRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsStoneRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4999772628064829253, "Model::stairsStoneRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5613609307347212210, "Geometry::", "Mesh" { + Vertices: *924 { + a: 4.308016,9.230768,0.9543545,3.941682,9.230768,1.995549,0.5543277,9.230768,0.2296101,-1.911549,3.076923,3.857682,-0.2296101,3.076923,0.5543277,-2.8609,3.076923,3.269618,3.941682,8.461538,1.995549,4.308016,8.461538,0.9543545,0.5543277,8.461538,0.2296101,3.941682,8.461538,1.995549,3.353618,8.461538,2.9449,0.5543277,8.461538,0.2296101,2.396,6.923077,3.661661,1.400727,6.923077,4.13886,0.2296101,6.923077,0.5543277,-3.577661,1.538462,2.312,-0.5543277,1.538462,0.2296101,-4.05486,1.538462,1.316727,1.400727,6.153846,4.13886,0.3136101,6.153846,4.394328,0.2296101,6.153846,0.5543277,1.400727,6.153846,4.13886,2.396,6.153846,3.661661,0.2296101,6.153846,0.5543277,-4.05486,0.7692308,1.316727,-0.5543277,0.7692308,0.2296101,-4.310328,0.7692308,0.2296101,-0.8703545,3.846154,4.224016,-0.2296101,3.846154,0.5543277,-1.911549,3.846154,3.857682,0.3136101,5.384616,4.394328,1.400727,5.384616,4.13886,0.2296101,5.384616,0.5543277,-0.5543277,1.538462,0.2296101,-4.05486,1.538462,1.316727,-4.310328,1.538462,0.2296101,-0.2296101,3.846154,0.5543277,-1.911549,3.846154,3.857682,-2.8609,3.846154,3.269618,-0.5543277,2.307692,0.2296101,-3.577661,2.307692,2.312,-4.05486,2.307692,1.316727,3.353618,7.692307,2.9449,3.941682,7.692307,1.995549,0.5543277,7.692307,0.2296101,-0.2296101,4.615384,0.5543277,-0.8703545,4.615384,4.224016,-1.911549,4.615384,3.857682,-4.310328,0.7692308,0.2296101,-0.5543277,0.7692308,0.2296101,-4.310328,1.538462,0.2296101,-0.5543277,1.538462,0.2296101,0.2296101,5.384616,0.5543277,0.2296101,4.615384,0.5543277,0.3136101,5.384616,4.394328,0.3136101,4.615384,4.394328,-4.310328,0,-0.5543277,-0.5543277,0,-0.5543277,-4.310328,0.7692308,-0.5543277,-0.5543277,0.7692308,-0.5543277,0.2296101,5.384616,0.5543277,0.2296101,6.153846,0.5543277,0.3136101,5.384616,4.394328,0.3136101,6.153846,4.394328,3.941682,8.461538,1.995549,0.5543277,8.461538,0.2296101,3.941682,9.230768,1.995549,0.5543277,9.230768,0.2296101,0.2296101,6.923077,0.5543277,0.2296101,7.692307,0.5543277,2.396,6.923077,3.661661,2.396,7.692307,3.661661,0.5543277,8.461538,0.2296101,4.308016,8.461538,0.9543545,0.5543277,9.230768,0.2296101,4.308016,9.230768,0.9543545,0.5543277,9.230768,-0.5543277,4.308016,9.230768,-0.5543277,0.5543277,10,-0.5543277,4.308016,10,-0.5543277,2.396,6.923077,3.661661,2.396,7.692307,3.661661,3.353618,6.923077,2.9449,3.353618,7.692307,2.9449,0.3136101,5.384616,4.394328,-0.8703545,5.384616,4.224016,0.2296101,5.384616,0.5543277,-0.2296101,5.384616,0.5543277,-0.5543277,0,0.2296101,-4.310328,0,0.2296101,-0.5543277,0.7692308,0.2296101,-4.310328,0.7692308,0.2296101,3.353618,6.923077,2.9449,0.5543277,6.923077,0.2296101,2.396,6.923077,3.661661,0.2296101,6.923077,0.5543277,4.308016,10,-0.5543277,4.308016,9.230768,-0.5543277,4.308016,10,0.9543545,4.308016,9.230768,0.9543545,0.2296101,6.153846,0.5543277,0.2296101,5.384616,0.5543277,1.400727,6.153846,4.13886,1.400727,5.384616,4.13886,4.308016,9.230768,0.9543545,4.308016,8.461538,0.9543545,3.941682,9.230768,1.995549,3.941682,8.461538,1.995549,4.308016,10,-0.5543277,4.308016,10,0.9543545,0.5543277,10,-0.5543277,0.5543277,10,0.2296101,0.3136101,4.615384,4.394328,0.2296101,4.615384,0.5543277,-0.8703545,4.615384,4.224016,-0.2296101,4.615384,0.5543277,-4.05486,0.7692308,1.316727,-4.05486,1.538462,1.316727,-0.5543277,0.7692308,0.2296101,-0.5543277,1.538462,0.2296101,0.5543277,6.923077,0.2296101,3.353618,6.923077,2.9449,0.5543277,7.692307,0.2296101,3.353618,7.692307,2.9449,3.353618,7.692307,2.9449,0.5543277,7.692307,0.2296101,3.353618,8.461538,2.9449,0.5543277,8.461538,0.2296101,0.2296101,6.153846,0.5543277,0.2296101,6.923077,0.5543277,1.400727,6.153846,4.13886,1.400727,6.923077,4.13886,-0.5543277,1.538462,0.2296101,-3.577661,1.538462,2.312,-0.5543277,2.307692,0.2296101,-3.577661,2.307692,2.312,4.308016,9.230768,-0.5543277,0.5543277,9.230768,-0.5543277,4.308016,9.230768,0.9543545,0.5543277,9.230768,0.2296101,-0.2296101,4.615384,0.5543277,-0.2296101,5.384616,0.5543277,-0.8703545,4.615384,4.224016,-0.8703545,5.384616,4.224016,0.2296101,6.923077,0.5543277,0.2296101,6.153846,0.5543277,2.396,6.923077,3.661661,2.396,6.153846,3.661661,1.400727,5.384616,4.13886,0.3136101,5.384616,4.394328,1.400727,6.153846,4.13886,0.3136101,6.153846,4.394328,-4.310328,0,-0.5543277,-4.310328,0.7692308,-0.5543277,-4.310328,0,0.2296101,-4.310328,0.7692308,0.2296101,-4.05486,1.538462,1.316727,-4.05486,2.307692,1.316727,-3.577661,1.538462,2.312,-3.577661,2.307692,2.312,0.3136101,4.615384,4.394328,-0.8703545,4.615384,4.224016,0.3136101,5.384616,4.394328,-0.8703545,5.384616,4.224016,3.941682,8.461538,1.995549,3.941682,7.692307,1.995549,3.353618,8.461538,2.9449,3.353618,7.692307,2.9449,3.353618,7.692307,2.9449,2.396,7.692307,3.661661,0.5543277,7.692307,0.2296101,0.2296101,7.692307,0.5543277,-3.577661,3.076923,2.312,-2.8609,3.076923,3.269618,-3.577661,2.307692,2.312,-2.8609,2.307692,3.269618,-1.911549,3.076923,3.857682,-2.8609,3.076923,3.269618,-1.911549,3.846154,3.857682,-2.8609,3.846154,3.269618,-0.2296101,3.846154,0.5543277,-0.2296101,4.615384,0.5543277,-1.911549,3.846154,3.857682,-1.911549,4.615384,3.857682,-4.05486,1.538462,1.316727,-0.5543277,1.538462,0.2296101,-4.05486,2.307692,1.316727,-0.5543277,2.307692,0.2296101,-3.577661,2.307692,2.312,-0.5543277,2.307692,0.2296101,-3.577661,3.076923,2.312,-0.5543277,3.076923,0.2296101,-0.2296101,3.076923,0.5543277,-2.8609,3.076923,3.269618,-0.5543277,3.076923,0.2296101,-3.577661,3.076923,2.312,2.396,6.153846,3.661661,1.400727,6.153846,4.13886,2.396,6.923077,3.661661,1.400727,6.923077,4.13886,4.308016,9.230768,0.9543545,0.5543277,9.230768,0.2296101,4.308016,10,0.9543545,0.5543277,10,0.2296101,-4.310328,0.7692308,0.2296101,-4.310328,1.538462,0.2296101,-4.05486,0.7692308,1.316727,-4.05486,1.538462,1.316727,-0.2296101,2.307692,0.5543277,-0.5543277,2.307692,0.2296101,-2.8609,2.307692,3.269618,-3.577661,2.307692,2.312,-0.2296101,3.846154,0.5543277,-0.2296101,3.076923,0.5543277,-1.911549,3.846154,3.857682,-1.911549,3.076923,3.857682,-0.8703545,3.846154,4.224016,-1.911549,3.846154,3.857682,-0.8703545,4.615384,4.224016,-1.911549,4.615384,3.857682,-0.2296101,4.615384,0.5543277,-0.2296101,3.846154,0.5543277,-0.8703545,4.615384,4.224016,-0.8703545,3.846154,4.224016,-0.2296101,3.076923,0.5543277,-0.2296101,3.846154,0.5543277,-2.8609,3.076923,3.269618,-2.8609,3.846154,3.269618,0.5543277,7.692307,0.2296101,3.941682,7.692307,1.995549,0.5543277,8.461538,0.2296101,3.941682,8.461538,1.995549,-0.2296101,3.076923,0.5543277,-0.2296101,2.307692,0.5543277,-2.8609,3.076923,3.269618,-2.8609,2.307692,3.269618,-0.5543277,0,0.2296101,-0.5543277,0,-0.5543277,-4.310328,0,0.2296101,-4.310328,0,-0.5543277,-0.5543277,0.7692308,0.2296101,-4.310328,0.7692308,0.2296101,-0.5543277,0.7692308,-0.5543277,-4.310328,0.7692308,-0.5543277,-0.2296101,0,0.5543277,-0.5543277,0,0.2296101,-0.2296101,2.307692,0.5543277,-0.5543277,0.7692308,0.2296101,-0.5543277,1.538462,0.2296101,-0.5543277,2.307692,0.2296101,0.5543277,0,-0.5543277,0.5543277,0,0.2296101,0.5543277,9.230768,-0.5543277,0.5543277,7.692307,0.2296101,0.5543277,6.923077,0.2296101,0.5543277,9.230768,0.2296101,0.5543277,8.461538,0.2296101,0.5543277,9.230768,0.2296101,0.5543277,8.461538,0.2296101,0.5543277,10,0.2296101,0.5543277,7.692307,0.2296101,0.2296101,7.692307,0.5543277,0.2296101,10,0.5543277,0.2296101,5.384616,0.5543277,-0.2296101,5.384616,0.5543277,0.2296101,6.153846,0.5543277,-0.2296101,10,0.5543277,0.2296101,6.923077,0.5543277,0.2296101,7.692307,0.5543277,0.2296101,10,0.5543277,0.5543277,0,0.2296101,0.2296101,0,0.5543277,0.5543277,6.923077,0.2296101,0.2296101,4.615384,0.5543277,0.2296101,5.384616,0.5543277,0.2296101,6.153846,0.5543277,0.2296101,6.923077,0.5543277,-0.5543277,0.7692308,-0.5543277,-0.5543277,10,-0.5543277,-0.5543277,0.7692308,0.2296101,-0.5543277,3.076923,0.2296101,-0.5543277,10,0.2296101,-0.5543277,2.307692,0.2296101,-0.5543277,1.538462,0.2296101,-0.5543277,10,-0.5543277,0.2296101,10,0.5543277,-0.2296101,10,0.5543277,-0.5543277,10,0.2296101,-0.5543277,3.076923,0.2296101,-0.5543277,10,0.2296101,-0.2296101,3.076923,0.5543277,-0.2296101,3.846154,0.5543277,-0.2296101,4.615384,0.5543277,-0.2296101,5.384616,0.5543277,-0.2296101,10,0.5543277,0.2296101,0,0.5543277,-0.2296101,0,0.5543277,0.2296101,4.615384,0.5543277,-0.2296101,2.307692,0.5543277,-0.2296101,3.076923,0.5543277,-0.2296101,3.846154,0.5543277,-0.2296101,4.615384,0.5543277,0.5543277,0,0.2296101,0.5543277,0,-0.5543277,0.2296101,0,0.5543277,-0.2296101,0,0.5543277,0.5543277,0,-0.5543277,-0.5543277,10,-0.5543277 + } + PolygonVertexIndex: *492 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,247,-247,249,248,-247,250,252,-252,253,251,-253,254,251,-254,255,253,-253,256,253,-256,257,259,-259,260,258,-260,261,260,-260,262,261,-260,263,265,-265,266,264,-266,267,266,-266,268,266,-268,269,266,-269,270,272,-272,273,271,-273,274,273,-273,275,274,-273,276,275,-273,277,279,-279,280,278,-280,280,281,-279,282,280,-280,283,282,-280,110,284,-112,285,111,-285,286,285,-285,287,286,-285,288,290,-290,291,289,-291,292,289,-292,293,289,-293,294,289,-294,295,297,-297,298,296,-298,299,298,-298,300,299,-298,301,300,-298,302,304,-304,237,303,-305,305,237,-305,236,237,-306,57,59,-307,76,306,-60,307,76,-60,78,76,-308 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1476 { + a: 0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9997608,0,-0.02186977,0.9997608,0,-0.02186977,0.9997608,0,-0.02186977,0.9997608,0,-0.02186977,0.9997608,0,-0.02186977,0.9997608,0,-0.02186977,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9997608,0,0.02186977,-0.9997608,0,0.02186977,-0.9997608,0,0.02186977,-0.9997608,0,0.02186977,-0.9997608,0,0.02186977,-0.9997608,0,0.02186977,-0.4622829,0,0.8867326,-0.4622829,0,0.8867326,-0.4622829,0,0.8867326,-0.4622829,0,0.8867326,-0.4622829,0,0.8867326,-0.4622829,0,0.8867326,-0.8203149,0,0.5719122,-0.8203149,0,0.5719122,-0.8203149,0,0.5719122,-0.8203149,0,0.5719122,-0.8203149,0,0.5719122,-0.8203149,0,0.5719122,0.1895742,0,-0.9818664,0.1895742,0,-0.9818664,0.1895742,0,-0.9818664,0.1895742,0,-0.9818664,0.1895742,0,-0.9818664,0.1895742,0,-0.9818664,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.5992224,0,0.8005827,0.5992224,0,0.8005827,0.5992224,0,0.8005827,0.5992224,0,0.8005827,0.5992224,0,0.8005827,0.5992224,0,0.8005827,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.950554,0,-0.3105593,0.950554,0,-0.3105593,0.950554,0,-0.3105593,0.950554,0,-0.3105593,0.950554,0,-0.3105593,0.950554,0,-0.3105593,0.9433161,0,0.3318959,0.9433161,0,0.3318959,0.9433161,0,0.3318959,0.9433161,0,0.3318959,0.9433161,0,0.3318959,0.9433161,0,0.3318959,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.2965845,0,0.9550066,0.2965845,0,0.9550066,0.2965845,0,0.9550066,0.2965845,0,0.9550066,0.2965845,0,0.9550066,0.2965845,0,0.9550066,0.6962551,0,-0.7177944,0.6962551,0,-0.7177944,0.6962551,0,-0.7177944,0.6962551,0,-0.7177944,0.6962551,0,-0.7177944,0.6962551,0,-0.7177944,-0.6962551,0,0.7177944,-0.6962551,0,0.7177944,-0.6962551,0,0.7177944,-0.6962551,0,0.7177944,-0.6962551,0,0.7177944,-0.6962551,0,0.7177944,-0.950554,0,0.3105593,-0.950554,0,0.3105593,-0.950554,0,0.3105593,-0.950554,0,0.3105593,-0.950554,0,0.3105593,-0.950554,0,0.3105593,0.5672405,0,0.8235523,0.5672405,0,0.8235523,0.5672405,0,0.8235523,0.5672405,0,0.8235523,0.5672405,0,0.8235523,0.5672405,0,0.8235523,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9850965,0,-0.1720024,-0.9850965,0,-0.1720024,-0.9850965,0,-0.1720024,-0.9850965,0,-0.1720024,-0.9850965,0,-0.1720024,-0.9850965,0,-0.1720024,0.8203149,0,-0.5719122,0.8203149,0,-0.5719122,0.8203149,0,-0.5719122,0.8203149,0,-0.5719122,0.8203149,0,-0.5719122,0.8203149,0,-0.5719122,0.2287642,0,0.9734818,0.2287642,0,0.9734818,0.2287642,0,0.9734818,0.2287642,0,0.9734818,0.2287642,0,0.9734818,0.2287642,0,0.9734818,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9017109,0,0.4323393,-0.9017109,0,0.4323393,-0.9017109,0,0.4323393,-0.9017109,0,0.4323393,-0.9017109,0,0.4323393,-0.9017109,0,0.4323393,-0.1423833,0,0.9898116,-0.1423833,0,0.9898116,-0.1423833,0,0.9898116,-0.1423833,0,0.9898116,-0.1423833,0,0.9898116,-0.1423833,0,0.9898116,0.8501163,0,0.5265949,0.8501163,0,0.5265949,0.8501163,0,0.5265949,0.8501163,0,0.5265949,0.8501163,0,0.5265949,0.8501163,0,0.5265949,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8005827,0,0.5992224,-0.8005827,0,0.5992224,-0.8005827,0,0.5992224,-0.8005827,0,0.5992224,-0.8005827,0,0.5992224,-0.8005827,0,0.5992224,-0.5265949,0,0.8501163,-0.5265949,0,0.8501163,-0.5265949,0,0.8501163,-0.5265949,0,0.8501163,-0.5265949,0,0.8501163,-0.5265949,0,0.8501163,-0.8911379,0,-0.4537327,-0.8911379,0,-0.4537327,-0.8911379,0,-0.4537327,-0.8911379,0,-0.4537327,-0.8911379,0,-0.4537327,-0.8911379,0,-0.4537327,-0.2965845,0,-0.9550066,-0.2965845,0,-0.9550066,-0.2965845,0,-0.9550066,-0.2965845,0,-0.9550066,-0.2965845,0,-0.9550066,-0.2965845,0,-0.9550066,-0.5672405,0,-0.8235523,-0.5672405,0,-0.8235523,-0.5672405,0,-0.8235523,-0.5672405,0,-0.8235523,-0.5672405,0,-0.8235523,-0.5672405,0,-0.8235523,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4323393,0,0.9017109,0.4323393,0,0.9017109,0.4323393,0,0.9017109,0.4323393,0,0.9017109,0.4323393,0,0.9017109,0.4323393,0,0.9017109,-0.1895742,0,0.9818664,-0.1895742,0,0.9818664,-0.1895742,0,0.9818664,-0.1895742,0,0.9818664,-0.1895742,0,0.9818664,-0.1895742,0,0.9818664,-0.9734818,0,0.2287642,-0.9734818,0,0.2287642,-0.9734818,0,0.2287642,-0.9734818,0,0.2287642,-0.9734818,0,0.2287642,-0.9734818,0,0.2287642,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8911379,0,0.4537327,0.8911379,0,0.4537327,0.8911379,0,0.4537327,0.8911379,0,0.4537327,0.8911379,0,0.4537327,0.8911379,0,0.4537327,-0.3318959,0,0.9433161,-0.3318959,0,0.9433161,-0.3318959,0,0.9433161,-0.3318959,0,0.9433161,-0.3318959,0,0.9433161,-0.3318959,0,0.9433161,0.9850965,0,0.1720024,0.9850965,0,0.1720024,0.9850965,0,0.1720024,0.9850965,0,0.1720024,0.9850965,0,0.1720024,0.9850965,0,0.1720024,-0.7181275,0,-0.6959116,-0.7181275,0,-0.6959116,-0.7181275,0,-0.6959116,-0.7181275,0,-0.6959116,-0.7181275,0,-0.6959116,-0.7181275,0,-0.6959116,0.4622829,0,-0.8867326,0.4622829,0,-0.8867326,0.4622829,0,-0.8867326,0.4622829,0,-0.8867326,0.4622829,0,-0.8867326,0.4622829,0,-0.8867326,0.7181275,0,0.6959116,0.7181275,0,0.6959116,0.7181275,0,0.6959116,0.7181275,0,0.6959116,0.7181275,0,0.6959116,0.7181275,0,0.6959116,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *616 { + a: -16.96069,3.757302,-15.51843,7.856493,-2.182393,0.9039766,-7.525785,15.18773,-0.9039766,2.182393,-11.26339,12.87251,15.51843,7.856493,16.96069,3.757302,2.182393,0.9039766,-15.51843,7.856493,-13.20322,11.5941,-2.182393,0.9039766,-9.433069,14.41599,-5.514673,16.29472,-0.9039766,2.182393,-14.08528,9.102361,-2.182393,0.9039766,-15.96402,5.183964,-5.514673,16.29472,-1.234685,17.3005,-0.9039766,2.182393,5.514673,16.29472,9.433069,14.41599,0.9039766,2.182393,-15.96402,5.183964,-2.182393,0.9039766,-16.96979,0.9039766,-3.426593,16.62998,-0.9039766,2.182393,-7.525785,15.18773,1.234685,17.3005,5.514673,16.29472,0.9039766,2.182393,2.182393,0.9039766,15.96402,5.183964,16.96979,0.9039766,0.9039766,2.182393,7.525785,15.18773,11.26339,12.87251,2.182393,0.9039766,14.08528,9.102361,15.96402,5.183964,13.20322,11.5941,15.51843,7.856493,2.182393,0.9039766,0.9039766,2.182393,3.426593,16.62998,7.525785,15.18773,16.96979,3.028468,2.182393,3.028468,16.96979,6.056935,2.182393,6.056935,-2.20164,21.19927,-2.20164,18.1708,-17.32337,21.19927,-17.32337,18.1708,16.96979,0,2.182393,0,16.96979,3.028468,2.182393,3.028468,2.20164,21.19927,2.20164,24.22774,17.32337,21.19927,17.32337,24.22774,17.39262,33.31314,2.353091,33.31314,17.39262,36.34161,2.353091,36.34161,2.307244,27.25621,2.307244,30.28468,17.22054,27.25621,17.22054,30.28468,-2.314188,33.31314,-17.36542,33.31314,-2.314188,36.34161,-17.36542,36.34161,-2.182393,36.34161,-16.96069,36.34161,-2.182393,39.37008,-16.96069,39.37008,-1.08643,27.25621,-1.08643,30.28468,3.622828,27.25621,3.622828,30.28468,-1.234685,17.3005,3.426593,16.62998,-0.9039766,2.182393,0.9039766,2.182393,-2.182393,4.479385E-14,-16.96979,4.479385E-14,-2.182393,3.028468,-16.96979,3.028468,13.20322,11.5941,2.182393,0.9039766,9.433069,14.41599,0.9039766,2.182393,2.182393,39.37008,2.182393,36.34161,-3.757302,39.37008,-3.757302,36.34161,-2.35522,24.22774,-2.35522,21.19927,-17.20165,24.22774,-17.20165,21.19927,2.084861,36.34161,2.084861,33.31314,-2.260652,36.34161,-2.260652,33.31314,-16.96069,-2.182393,-16.96069,3.757302,-2.182393,-2.182393,-2.182393,0.9039766,1.234685,17.3005,0.9039766,2.182393,-3.426593,16.62998,-0.9039766,2.182393,-16.78322,3.028468,-16.78322,6.056935,-2.352305,3.028468,-2.352305,6.056935,-2.195908,27.25621,-17.54964,27.25621,-2.195908,30.28468,-17.54964,30.28468,17.54964,30.28468,2.195908,30.28468,17.54964,33.31314,2.195908,33.31314,2.35522,24.22774,2.35522,27.25621,17.20165,24.22774,17.20165,27.25621,-2.310086,6.056935,-16.76319,6.056935,-2.310086,9.085402,-16.76319,9.085402,16.96069,-2.182393,2.182393,-2.182393,16.96069,3.757302,2.182393,0.9039766,2.305354,18.1708,2.305354,21.19927,16.97152,18.1708,16.97152,21.19927,-2.307244,27.25621,-2.307244,24.22774,-17.22054,27.25621,-17.22054,24.22774,1.640785,21.19927,-2.755792,21.19927,1.640785,24.22774,-2.755792,24.22774,-2.182393,3.057772E-13,-2.182393,3.028468,0.9039766,3.057772E-13,0.9039766,3.028468,-2.227435,6.056935,-2.227435,9.085402,2.118078,6.056935,2.118078,9.085402,3.685408,18.1708,-1.02385,18.1708,3.685408,21.19927,-1.02385,21.19927,1.492995,33.31314,1.492995,30.28468,-2.903581,33.31314,-2.903581,30.28468,-13.20322,11.5941,-9.433069,14.41599,-2.182393,0.9039766,-0.9039766,2.182393,-1.153021,12.11387,3.556237,12.11387,-1.153021,9.085402,3.556237,9.085402,1.599987,12.11387,-2.79659,12.11387,1.599987,15.14234,-2.79659,15.14234,2.354976,15.14234,2.354976,18.1708,16.94905,15.14234,16.94905,18.1708,16.78322,6.056935,2.352305,6.056935,16.78322,9.085402,2.352305,9.085402,16.76319,9.085402,2.310086,9.085402,16.76319,12.11387,2.310086,12.11387,0.9039766,2.182393,11.26339,12.87251,2.182393,0.9039766,14.08528,9.102361,2.273304,24.22774,-2.072209,24.22774,2.273304,27.25621,-2.072209,27.25621,17.36542,36.34161,2.314188,36.34161,17.36542,39.37008,2.314188,39.37008,-3.002076,3.028468,-3.002076,6.056935,1.3945,3.028468,1.3945,6.056935,-0.9039766,2.182393,-2.182393,0.9039766,-11.26339,12.87251,-14.08528,9.102361,-2.354976,15.14234,-2.354976,12.11387,-16.94905,15.14234,-16.94905,12.11387,2.287063,15.14234,-2.05845,15.14234,2.287063,18.1708,-2.05845,18.1708,-2.305354,18.1708,-2.305354,15.14234,-16.97152,18.1708,-16.97152,15.14234,2.196324,12.11387,2.196324,15.14234,17.08242,12.11387,17.08242,15.14234,-2.353091,30.28468,-17.39262,30.28468,-2.353091,33.31314,-17.39262,33.31314,-2.196324,12.11387,-2.196324,9.085402,-17.08242,12.11387,-17.08242,9.085402,-2.182393,0.9039766,-2.182393,-2.182393,-16.96979,0.9039766,-16.96979,-2.182393,2.182393,0.9039766,16.96979,0.9039766,2.182393,-2.182393,16.96979,-2.182393,0.9039766,-1.185525E-13,-0.9039766,-1.185525E-13,0.9039766,9.085402,-0.9039766,3.028468,-0.9039766,6.056935,-0.9039766,9.085402,2.182393,-8.569468E-14,-0.9039766,-8.569468E-14,2.182393,36.34161,-0.9039766,30.28468,-0.9039766,27.25621,-0.9039766,36.34161,-0.9039766,33.31314,0.9039766,36.34161,0.9039766,33.31314,0.9039766,39.37008,0.9039766,30.28468,-0.9039766,30.28468,-0.9039766,39.37008,0.9039766,21.19927,-0.9039766,21.19927,0.9039766,24.22774,-0.9039766,39.37008,0.9039766,27.25621,0.9039766,30.28468,0.9039766,39.37008,0.9039766,-9.402018E-14,-0.9039766,-9.402018E-14,0.9039766,27.25621,-0.9039766,18.1708,-0.9039766,21.19927,-0.9039766,24.22774,-0.9039766,27.25621,-2.182393,3.028468,-2.182393,39.37008,0.9039766,3.028468,0.9039766,12.11387,0.9039766,39.37008,0.9039766,9.085402,0.9039766,6.056935,2.182393,-2.182393,-0.9039766,2.182393,0.9039766,2.182393,2.182393,0.9039766,-0.9039766,12.11387,-0.9039766,39.37008,0.9039766,12.11387,0.9039766,15.14234,0.9039766,18.1708,0.9039766,21.19927,0.9039766,39.37008,0.9039766,-6.786457E-14,-0.9039766,-6.786457E-14,0.9039766,18.1708,-0.9039766,9.085402,-0.9039766,12.11387,-0.9039766,15.14234,-0.9039766,18.1708,2.182393,0.9039766,2.182393,-2.182393,0.9039766,2.182393,-0.9039766,2.182393,-2.182393,-4.422422E-14,2.182393,39.37008 + } + UVIndex: *492 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,29,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,247,246,249,248,246,250,252,251,253,251,252,254,251,253,255,253,252,256,253,255,257,259,258,260,258,259,261,260,259,262,261,259,263,265,264,266,264,265,267,266,265,268,266,267,269,266,268,270,272,271,273,271,272,274,273,272,275,274,272,276,275,272,277,279,278,280,278,279,280,281,278,282,280,279,283,282,279,110,284,111,285,111,284,286,285,284,287,286,284,288,290,289,291,289,290,292,289,291,293,289,292,294,289,293,295,297,296,298,296,297,299,298,297,300,299,297,301,300,297,302,304,303,237,303,304,305,237,304,236,237,305,57,59,306,76,306,59,307,76,59,78,76,307 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *164 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsStoneRound, Model::RootNode + C: "OO",4999772628064829253,0 + + ;Geometry::, Model::Mesh stairsStoneRound + C: "OO",5613609307347212210,4999772628064829253 + + ;Material::stone, Model::Mesh stairsStoneRound + C: "OO",7184,4999772628064829253 + + ;Material::stoneDark, Model::Mesh stairsStoneRound + C: "OO",7174,4999772628064829253 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneRound.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneRound.fbx.import new file mode 100644 index 0000000..15fa39f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://7nfu7be68yov" +path="res://.godot/imported/stairsStoneRound.fbx-53f289156861d483abfdb9dde4facfdc.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsStoneRound.fbx" +dest_files=["res://.godot/imported/stairsStoneRound.fbx-53f289156861d483abfdb9dde4facfdc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStone.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStone.fbx new file mode 100644 index 0000000..6209f6e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 842 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsWideStone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsWideStone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4966511606186706855, "Model::stairsWideStone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5526981880364397311, "Geometry::", "Mesh" { + Vertices: *630 { + a: -1.45,4.625,-5,-1.45,5,-5,-1.45,4.625,5,-1.45,5,5,-3.75,2.125,5,-3.75,2.125,-5,-3.95,2.125,5,-3.95,2.125,-5,2.5,7.5,-5,2.5,8.375,-5,2.5,7.5,5,2.5,8.375,5,3.75,9.625,5,3.75,9.625,-5,3.55,9.625,5,3.55,9.625,-5,3.75,8.75,-5,3.75,9.625,-5,3.75,8.75,5,3.75,9.625,5,3.55,9.625,-5,3.55,10,-5,3.55,9.625,5,3.55,10,5,-2.5,2.5,-5,-2.5,3.375,-5,-2.5,2.5,5,-2.5,3.375,5,-4.25,2.819967E-17,5,-4.25,5.561603E-14,-5,-5,0,5,-5,0,-5,-1.25,4.625,5,-1.25,4.625,-5,-1.45,4.625,5,-1.45,4.625,-5,-0.2,5.875,-5,-0.2,6.25,-5,-0.2,5.875,5,-0.2,6.25,5,-2.5,2.5,5,-3.95,2.5,5,-2.5,2.5,-5,-3.95,2.5,-5,1.25,6.25,5,-0.2,6.25,5,1.25,6.25,-5,-0.2,6.25,-5,-3.95,2.125,-5,-3.95,2.5,-5,-3.95,2.125,5,-3.95,2.5,5,-1.443823E-14,5,-5,-1.443823E-14,5.875,-5,2.887646E-14,5,5,2.887646E-14,5.875,5,-3.75,1.25,5,-5.2,1.25,5,-3.75,1.25,-5,-5.2,1.25,-5,5,10,-5,5,9.25,-5,5,10,5,5,9.25,5,-1.25,3.75,-5,-1.25,4.625,-5,-1.25,3.75,5,-1.25,4.625,5,1.25,6.25,-5,1.25,7.125,-5,1.25,6.25,5,1.25,7.125,5,2.5,8.375,5,2.5,8.375,-5,2.3,8.375,5,2.3,8.375,-5,2.5,7.5,5,1.05,7.5,5,2.5,7.5,-5,1.05,7.5,-5,2.3,8.375,-5,2.3,8.75,-5,2.3,8.375,5,2.3,8.75,5,-2.5,3.375,5,-2.5,3.375,-5,-2.7,3.375,5,-2.7,3.375,-5,-5.2,0.875,-5,-5.2,1.25,-5,-5.2,0.875,5,-5.2,1.25,5,-3.75,1.25,-5,-3.75,2.125,-5,-3.75,1.25,5,-3.75,2.125,5,3.75,8.75,5,2.3,8.75,5,3.75,8.75,-5,2.3,8.75,-5,-5,0,-5,-5,0.875,-5,-5,0,5,-5,0.875,5,2.887646E-14,5,5,-1.45,5,5,-1.443823E-14,5,-5,-1.45,5,-5,2.887646E-14,5.875,5,-1.443823E-14,5.875,-5,-0.2,5.875,5,-0.2,5.875,-5,5,10,5,3.55,10,5,5,10,-5,3.55,10,-5,-5.2,0.875,-5,-5,0.875,-5,-5.2,1.25,-5,-3.75,1.25,-5,-4.25,5.561603E-14,-5,-5,0,-5,5,9.25,-5,-2.5,2.5,-5,-3.75,2.125,-5,-3.95,2.5,-5,-3.95,2.125,-5,-1.25,3.75,-5,-2.5,3.375,-5,-2.7,3.75,-5,-2.7,3.375,-5,-1.443823E-14,5,-5,-1.25,4.625,-5,-1.45,5,-5,-1.45,4.625,-5,1.25,6.25,-5,-1.443823E-14,5.875,-5,-0.2,6.25,-5,-0.2,5.875,-5,2.5,7.5,-5,1.25,7.125,-5,1.05,7.5,-5,1.05,7.125,-5,3.75,8.75,-5,2.5,8.375,-5,2.3,8.75,-5,2.3,8.375,-5,3.75,9.625,-5,5,10,-5,3.55,10,-5,3.55,9.625,-5,-5,0.875,5,-5,0.875,-5,-5.2,0.875,5,-5.2,0.875,-5,-5,0,5,-5,0.875,5,-4.25,2.819967E-17,5,-3.75,1.25,5,5,9.25,5,-2.5,2.5,5,-5.2,1.25,5,-5.2,0.875,5,-3.75,2.125,5,-3.95,2.5,5,-3.95,2.125,5,-1.25,3.75,5,-2.5,3.375,5,-2.7,3.75,5,-2.7,3.375,5,2.887646E-14,5,5,-1.25,4.625,5,-1.45,5,5,-1.45,4.625,5,1.25,6.25,5,2.887646E-14,5.875,5,-0.2,6.25,5,-0.2,5.875,5,2.5,7.5,5,1.25,7.125,5,1.05,7.5,5,1.05,7.125,5,3.75,8.75,5,2.5,8.375,5,2.3,8.75,5,2.3,8.375,5,3.75,9.625,5,5,10,5,3.55,10,5,3.55,9.625,5,-2.7,3.375,-5,-2.7,3.75,-5,-2.7,3.375,5,-2.7,3.75,5,-4.25,5.561603E-14,-5,-4.25,2.819967E-17,5,5,9.25,-5,5,9.25,5,-1.25,3.75,5,-2.7,3.75,5,-1.25,3.75,-5,-2.7,3.75,-5,1.25,7.125,5,1.25,7.125,-5,1.05,7.125,5,1.05,7.125,-5,1.05,7.125,-5,1.05,7.5,-5,1.05,7.125,5,1.05,7.5,5 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,118,119,-118,119,120,-118,121,117,-121,122,120,-120,123,122,-120,124,123,-120,125,123,-125,126,125,-125,127,122,-124,128,127,-124,129,127,-129,130,129,-129,131,122,-128,132,131,-128,133,131,-133,134,133,-133,135,122,-132,136,135,-132,137,135,-137,138,137,-137,139,122,-136,140,139,-136,141,139,-141,142,141,-141,143,122,-140,144,143,-140,145,143,-145,146,145,-145,147,122,-144,148,122,-148,149,148,-148,150,149,-148,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,158,-158,160,158,-160,161,156,-159,156,161,-163,163,158,-161,164,163,-161,163,164,-166,166,160,-160,167,160,-167,168,167,-167,167,168,-170,170,166,-160,171,166,-171,172,171,-171,171,172,-174,174,170,-160,175,170,-175,176,175,-175,175,176,-178,178,174,-160,179,174,-179,180,179,-179,179,180,-182,182,178,-160,183,178,-183,184,183,-183,183,184,-186,186,182,-160,187,186,-160,188,186,-188,186,188,-190,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *420 { + a: -19.68504,18.20866,-19.68504,19.68504,19.68504,18.20866,19.68504,19.68504,-14.76378,19.68504,-14.76378,-19.68504,-15.55118,19.68504,-15.55118,-19.68504,-19.68504,29.52756,-19.68504,32.97244,19.68504,29.52756,19.68504,32.97244,14.76378,19.68504,14.76378,-19.68504,13.97638,19.68504,13.97638,-19.68504,-19.68504,34.44882,-19.68504,37.8937,19.68504,34.44882,19.68504,37.8937,-19.68504,37.8937,-19.68504,39.37008,19.68504,37.8937,19.68504,39.37008,-19.68504,9.84252,-19.68504,13.2874,19.68504,9.84252,19.68504,13.2874,-16.73228,19.68504,-16.73228,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-4.92126,19.68504,-4.92126,-19.68504,-5.708662,19.68504,-5.708662,-19.68504,-19.68504,23.12992,-19.68504,24.6063,19.68504,23.12992,19.68504,24.6063,9.84252,19.68504,15.55118,19.68504,9.84252,-19.68504,15.55118,-19.68504,-4.92126,19.68504,0.7874016,19.68504,-4.92126,-19.68504,0.7874016,-19.68504,-19.68504,8.366141,-19.68504,9.84252,19.68504,8.366141,19.68504,9.84252,-19.68504,19.68504,-19.68504,23.12992,19.68504,19.68504,19.68504,23.12992,14.76378,19.68504,20.47244,19.68504,14.76378,-19.68504,20.47244,-19.68504,19.68504,39.37008,19.68504,36.41732,-19.68504,39.37008,-19.68504,36.41732,-19.68504,14.76378,-19.68504,18.20866,19.68504,14.76378,19.68504,18.20866,-19.68504,24.6063,-19.68504,28.05118,19.68504,24.6063,19.68504,28.05118,9.84252,19.68504,9.84252,-19.68504,9.055119,19.68504,9.055119,-19.68504,-9.84252,19.68504,-4.133858,19.68504,-9.84252,-19.68504,-4.133858,-19.68504,-19.68504,32.97244,-19.68504,34.44882,19.68504,32.97244,19.68504,34.44882,-9.84252,19.68504,-9.84252,-19.68504,-10.62992,19.68504,-10.62992,-19.68504,-19.68504,3.444882,-19.68504,4.92126,19.68504,3.444882,19.68504,4.92126,-19.68504,4.92126,-19.68504,8.366141,19.68504,4.92126,19.68504,8.366141,-14.76378,19.68504,-9.055119,19.68504,-14.76378,-19.68504,-9.055119,-19.68504,-19.68504,1.624098E-13,-19.68504,3.444882,19.68504,1.624098E-13,19.68504,3.444882,-1.136868E-13,19.68504,5.708662,19.68504,5.684342E-14,-19.68504,5.708662,-19.68504,1.004234E-12,19.68504,8.337035E-13,-19.68504,-0.7874016,19.68504,-0.7874016,-19.68504,-19.68504,19.68504,-13.97638,19.68504,-19.68504,-19.68504,-13.97638,-19.68504,20.47244,3.444882,19.68504,3.444882,20.47244,4.92126,14.76378,4.92126,16.73228,-9.964265E-14,19.68504,-3.186034E-13,-19.68504,36.41732,9.84252,9.84252,14.76378,8.366141,15.55118,9.84252,15.55118,8.366141,4.92126,14.76378,9.84252,13.2874,10.62992,14.76378,10.62992,13.2874,-2.176452E-13,19.68504,4.92126,18.20866,5.708662,19.68504,5.708662,18.20866,-4.92126,24.6063,-2.176452E-13,23.12992,0.7874016,24.6063,0.7874016,23.12992,-9.84252,29.52756,-4.92126,28.05118,-4.133858,29.52756,-4.133858,28.05118,-14.76378,34.44882,-9.84252,32.97244,-9.055119,34.44882,-9.055119,32.97244,-14.76378,37.8937,-19.68504,39.37008,-13.97638,39.37008,-13.97638,37.8937,-19.68504,19.68504,-19.68504,-19.68504,-20.47244,19.68504,-20.47244,-19.68504,-19.68504,1.701372E-14,-19.68504,3.444882,-16.73228,1.712474E-14,-14.76378,4.92126,19.68504,36.41732,-9.84252,9.84252,-20.47244,4.92126,-20.47244,3.444882,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,-4.92126,14.76378,-9.84252,13.2874,-10.62992,14.76378,-10.62992,13.2874,1.008882E-13,19.68504,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,4.92126,24.6063,1.008882E-13,23.12992,-0.7874016,24.6063,-0.7874016,23.12992,9.84252,29.52756,4.92126,28.05118,4.133858,29.52756,4.133858,28.05118,14.76378,34.44882,9.84252,32.97244,9.055119,34.44882,9.055119,32.97244,14.76378,37.8937,19.68504,39.37008,13.97638,39.37008,13.97638,37.8937,-19.68504,13.2874,-19.68504,14.76378,19.68504,13.2874,19.68504,14.76378,19.68504,-11.83151,-19.68504,-11.83151,19.68504,39.67036,-19.68504,39.67036,4.92126,19.68504,10.62992,19.68504,4.92126,-19.68504,10.62992,-19.68504,4.92126,19.68504,4.92126,-19.68504,4.133858,19.68504,4.133858,-19.68504,-19.68504,28.05118,-19.68504,29.52756,19.68504,28.05118,19.68504,29.52756 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,118,119,117,119,120,117,121,117,120,122,120,119,123,122,119,124,123,119,125,123,124,126,125,124,127,122,123,128,127,123,129,127,128,130,129,128,131,122,127,132,131,127,133,131,132,134,133,132,135,122,131,136,135,131,137,135,136,138,137,136,139,122,135,140,139,135,141,139,140,142,141,140,143,122,139,144,143,139,145,143,144,146,145,144,147,122,143,148,122,147,149,148,147,150,149,147,151,153,152,154,152,153,155,157,156,158,156,157,159,158,157,160,158,159,161,156,158,156,161,162,163,158,160,164,163,160,163,164,165,166,160,159,167,160,166,168,167,166,167,168,169,170,166,159,171,166,170,172,171,170,171,172,173,174,170,159,175,170,174,176,175,174,175,176,177,178,174,159,179,174,178,180,179,178,179,180,181,182,178,159,183,178,182,184,183,182,183,184,185,186,182,159,187,186,159,188,186,187,186,188,189,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsWideStone, Model::RootNode + C: "OO",4966511606186706855,0 + + ;Geometry::, Model::Mesh stairsWideStone + C: "OO",5526981880364397311,4966511606186706855 + + ;Material::stone, Model::Mesh stairsWideStone + C: "OO",7184,4966511606186706855 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStone.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStone.fbx.import new file mode 100644 index 0000000..0019b63 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b4sb6v34x4vhj" +path="res://.godot/imported/stairsWideStone.fbx-67e4bf276c6f623003a7a698fe822df3.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStone.fbx" +dest_files=["res://.godot/imported/stairsWideStone.fbx-67e4bf276c6f623003a7a698fe822df3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStoneHandrail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStoneHandrail.fbx new file mode 100644 index 0000000..feac097 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStoneHandrail.fbx @@ -0,0 +1,420 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 877 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsWideStoneHandrail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsWideStoneHandrail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5742511097874131481, "Model::stairsWideStoneHandrail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4833255923253977856, "Geometry::", "Mesh" { + Vertices: *630 { + a: -1.45,4.625,-5,-1.45,5,-5,-1.45,4.625,5,-1.45,5,5,-3.75,2.125,5,-3.75,2.125,-5,-3.95,2.125,5,-3.95,2.125,-5,2.5,7.5,-5,2.5,8.375,-5,2.5,7.5,5,2.5,8.375,5,3.75,9.625,5,3.75,9.625,-5,3.55,9.625,5,3.55,9.625,-5,3.75,8.75,-5,3.75,9.625,-5,3.75,8.75,5,3.75,9.625,5,3.55,9.625,-5,3.55,10,-5,3.55,9.625,5,3.55,10,5,-2.5,2.5,-5,-2.5,3.375,-5,-2.5,2.5,5,-2.5,3.375,5,-4.25,2.819967E-17,5,-4.25,5.561603E-14,-5,-5,0,5,-5,0,-5,-1.25,4.625,5,-1.25,4.625,-5,-1.45,4.625,5,-1.45,4.625,-5,-0.2,5.875,-5,-0.2,6.25,-5,-0.2,5.875,5,-0.2,6.25,5,-2.5,2.5,5,-3.95,2.5,5,-2.5,2.5,-5,-3.95,2.5,-5,1.25,6.25,5,-0.2,6.25,5,1.25,6.25,-5,-0.2,6.25,-5,-3.95,2.125,-5,-3.95,2.5,-5,-3.95,2.125,5,-3.95,2.5,5,-1.443823E-14,5,-5,-1.443823E-14,5.875,-5,2.887646E-14,5,5,2.887646E-14,5.875,5,-3.75,1.25,5,-5.2,1.25,5,-3.75,1.25,-5,-5.2,1.25,-5,5,10,-5,5,9.25,-5,5,10,5,5,9.25,5,-1.25,3.75,-5,-1.25,4.625,-5,-1.25,3.75,5,-1.25,4.625,5,1.25,6.25,-5,1.25,7.125,-5,1.25,6.25,5,1.25,7.125,5,2.5,8.375,5,2.5,8.375,-5,2.3,8.375,5,2.3,8.375,-5,2.5,7.5,5,1.05,7.5,5,2.5,7.5,-5,1.05,7.5,-5,2.3,8.375,-5,2.3,8.75,-5,2.3,8.375,5,2.3,8.75,5,-2.5,3.375,5,-2.5,3.375,-5,-2.7,3.375,5,-2.7,3.375,-5,-5.2,0.875,-5,-5.2,1.25,-5,-5.2,0.875,5,-5.2,1.25,5,-3.75,1.25,-5,-3.75,2.125,-5,-3.75,1.25,5,-3.75,2.125,5,3.75,8.75,5,2.3,8.75,5,3.75,8.75,-5,2.3,8.75,-5,-5,0,-5,-5,0.875,-5,-5,0,5,-5,0.875,5,2.887646E-14,5,5,-1.45,5,5,-1.443823E-14,5,-5,-1.45,5,-5,2.887646E-14,5.875,5,-1.443823E-14,5.875,-5,-0.2,5.875,5,-0.2,5.875,-5,5,10,5,3.55,10,5,5,10,-5,3.55,10,-5,-5.2,0.875,-5,-5,0.875,-5,-5.2,1.25,-5,-3.75,1.25,-5,-4.25,5.561603E-14,-5,-5,0,-5,5,9.25,-5,-2.5,2.5,-5,-3.75,2.125,-5,-3.95,2.5,-5,-3.95,2.125,-5,-1.25,3.75,-5,-2.5,3.375,-5,-2.7,3.75,-5,-2.7,3.375,-5,-1.443823E-14,5,-5,-1.25,4.625,-5,-1.45,5,-5,-1.45,4.625,-5,1.25,6.25,-5,-1.443823E-14,5.875,-5,-0.2,6.25,-5,-0.2,5.875,-5,2.5,7.5,-5,1.25,7.125,-5,1.05,7.5,-5,1.05,7.125,-5,3.75,8.75,-5,2.5,8.375,-5,2.3,8.75,-5,2.3,8.375,-5,3.75,9.625,-5,5,10,-5,3.55,10,-5,3.55,9.625,-5,-5,0.875,5,-5,0.875,-5,-5.2,0.875,5,-5.2,0.875,-5,-5,0,5,-5,0.875,5,-4.25,2.819967E-17,5,-3.75,1.25,5,5,9.25,5,-2.5,2.5,5,-5.2,1.25,5,-5.2,0.875,5,-3.75,2.125,5,-3.95,2.5,5,-3.95,2.125,5,-1.25,3.75,5,-2.5,3.375,5,-2.7,3.75,5,-2.7,3.375,5,2.887646E-14,5,5,-1.25,4.625,5,-1.45,5,5,-1.45,4.625,5,1.25,6.25,5,2.887646E-14,5.875,5,-0.2,6.25,5,-0.2,5.875,5,2.5,7.5,5,1.25,7.125,5,1.05,7.5,5,1.05,7.125,5,3.75,8.75,5,2.5,8.375,5,2.3,8.75,5,2.3,8.375,5,3.75,9.625,5,5,10,5,3.55,10,5,3.55,9.625,5,-2.7,3.375,-5,-2.7,3.75,-5,-2.7,3.375,5,-2.7,3.75,5,-4.25,5.561603E-14,-5,-4.25,2.819967E-17,5,5,9.25,-5,5,9.25,5,-1.25,3.75,5,-2.7,3.75,5,-1.25,3.75,-5,-2.7,3.75,-5,1.25,7.125,5,1.25,7.125,-5,1.05,7.125,5,1.05,7.125,-5,1.05,7.125,-5,1.05,7.5,-5,1.05,7.125,5,1.05,7.5,5 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,118,119,-118,119,120,-118,121,117,-121,122,120,-120,123,122,-120,124,123,-120,125,123,-125,126,125,-125,127,122,-124,128,127,-124,129,127,-129,130,129,-129,131,122,-128,132,131,-128,133,131,-133,134,133,-133,135,122,-132,136,135,-132,137,135,-137,138,137,-137,139,122,-136,140,139,-136,141,139,-141,142,141,-141,143,122,-140,144,143,-140,145,143,-145,146,145,-145,147,122,-144,148,122,-148,149,148,-148,150,149,-148,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,158,-158,160,158,-160,161,156,-159,156,161,-163,163,158,-161,164,163,-161,163,164,-166,166,160,-160,167,160,-167,168,167,-167,167,168,-170,170,166,-160,171,166,-171,172,171,-171,171,172,-174,174,170,-160,175,170,-175,176,175,-175,175,176,-178,178,174,-160,179,174,-179,180,179,-179,179,180,-182,182,178,-160,183,178,-183,184,183,-183,183,184,-186,186,182,-160,187,186,-160,188,186,-188,186,188,-190,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *420 { + a: -19.68504,18.20866,-19.68504,19.68504,19.68504,18.20866,19.68504,19.68504,-14.76378,19.68504,-14.76378,-19.68504,-15.55118,19.68504,-15.55118,-19.68504,-19.68504,29.52756,-19.68504,32.97244,19.68504,29.52756,19.68504,32.97244,14.76378,19.68504,14.76378,-19.68504,13.97638,19.68504,13.97638,-19.68504,-19.68504,34.44882,-19.68504,37.8937,19.68504,34.44882,19.68504,37.8937,-19.68504,37.8937,-19.68504,39.37008,19.68504,37.8937,19.68504,39.37008,-19.68504,9.84252,-19.68504,13.2874,19.68504,9.84252,19.68504,13.2874,-16.73228,19.68504,-16.73228,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,-4.92126,19.68504,-4.92126,-19.68504,-5.708662,19.68504,-5.708662,-19.68504,-19.68504,23.12992,-19.68504,24.6063,19.68504,23.12992,19.68504,24.6063,9.84252,19.68504,15.55118,19.68504,9.84252,-19.68504,15.55118,-19.68504,-4.92126,19.68504,0.7874016,19.68504,-4.92126,-19.68504,0.7874016,-19.68504,-19.68504,8.366141,-19.68504,9.84252,19.68504,8.366141,19.68504,9.84252,-19.68504,19.68504,-19.68504,23.12992,19.68504,19.68504,19.68504,23.12992,14.76378,19.68504,20.47244,19.68504,14.76378,-19.68504,20.47244,-19.68504,19.68504,39.37008,19.68504,36.41732,-19.68504,39.37008,-19.68504,36.41732,-19.68504,14.76378,-19.68504,18.20866,19.68504,14.76378,19.68504,18.20866,-19.68504,24.6063,-19.68504,28.05118,19.68504,24.6063,19.68504,28.05118,9.84252,19.68504,9.84252,-19.68504,9.055119,19.68504,9.055119,-19.68504,-9.84252,19.68504,-4.133858,19.68504,-9.84252,-19.68504,-4.133858,-19.68504,-19.68504,32.97244,-19.68504,34.44882,19.68504,32.97244,19.68504,34.44882,-9.84252,19.68504,-9.84252,-19.68504,-10.62992,19.68504,-10.62992,-19.68504,-19.68504,3.444882,-19.68504,4.92126,19.68504,3.444882,19.68504,4.92126,-19.68504,4.92126,-19.68504,8.366141,19.68504,4.92126,19.68504,8.366141,-14.76378,19.68504,-9.055119,19.68504,-14.76378,-19.68504,-9.055119,-19.68504,-19.68504,1.624098E-13,-19.68504,3.444882,19.68504,1.624098E-13,19.68504,3.444882,-1.136868E-13,19.68504,5.708662,19.68504,5.684342E-14,-19.68504,5.708662,-19.68504,1.004234E-12,19.68504,8.337035E-13,-19.68504,-0.7874016,19.68504,-0.7874016,-19.68504,-19.68504,19.68504,-13.97638,19.68504,-19.68504,-19.68504,-13.97638,-19.68504,20.47244,3.444882,19.68504,3.444882,20.47244,4.92126,14.76378,4.92126,16.73228,-9.964265E-14,19.68504,-3.186034E-13,-19.68504,36.41732,9.84252,9.84252,14.76378,8.366141,15.55118,9.84252,15.55118,8.366141,4.92126,14.76378,9.84252,13.2874,10.62992,14.76378,10.62992,13.2874,-2.176452E-13,19.68504,4.92126,18.20866,5.708662,19.68504,5.708662,18.20866,-4.92126,24.6063,-2.176452E-13,23.12992,0.7874016,24.6063,0.7874016,23.12992,-9.84252,29.52756,-4.92126,28.05118,-4.133858,29.52756,-4.133858,28.05118,-14.76378,34.44882,-9.84252,32.97244,-9.055119,34.44882,-9.055119,32.97244,-14.76378,37.8937,-19.68504,39.37008,-13.97638,39.37008,-13.97638,37.8937,-19.68504,19.68504,-19.68504,-19.68504,-20.47244,19.68504,-20.47244,-19.68504,-19.68504,1.701372E-14,-19.68504,3.444882,-16.73228,1.712474E-14,-14.76378,4.92126,19.68504,36.41732,-9.84252,9.84252,-20.47244,4.92126,-20.47244,3.444882,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,-4.92126,14.76378,-9.84252,13.2874,-10.62992,14.76378,-10.62992,13.2874,1.008882E-13,19.68504,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,4.92126,24.6063,1.008882E-13,23.12992,-0.7874016,24.6063,-0.7874016,23.12992,9.84252,29.52756,4.92126,28.05118,4.133858,29.52756,4.133858,28.05118,14.76378,34.44882,9.84252,32.97244,9.055119,34.44882,9.055119,32.97244,14.76378,37.8937,19.68504,39.37008,13.97638,39.37008,13.97638,37.8937,-19.68504,13.2874,-19.68504,14.76378,19.68504,13.2874,19.68504,14.76378,19.68504,-11.83151,-19.68504,-11.83151,19.68504,39.67036,-19.68504,39.67036,4.92126,19.68504,10.62992,19.68504,4.92126,-19.68504,10.62992,-19.68504,4.92126,19.68504,4.92126,-19.68504,4.133858,19.68504,4.133858,-19.68504,-19.68504,28.05118,-19.68504,29.52756,19.68504,28.05118,19.68504,29.52756 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,118,119,117,119,120,117,121,117,120,122,120,119,123,122,119,124,123,119,125,123,124,126,125,124,127,122,123,128,127,123,129,127,128,130,129,128,131,122,127,132,131,127,133,131,132,134,133,132,135,122,131,136,135,131,137,135,136,138,137,136,139,122,135,140,139,135,141,139,140,142,141,140,143,122,139,144,143,139,145,143,144,146,145,144,147,122,143,148,122,147,149,148,147,150,149,147,151,153,152,154,152,153,155,157,156,158,156,157,159,158,157,160,158,159,161,156,158,156,161,162,163,158,160,164,163,160,163,164,165,166,160,159,167,160,166,168,167,166,167,168,169,170,166,159,171,166,170,172,171,170,171,172,173,174,170,159,175,170,174,176,175,174,175,176,177,178,174,159,179,174,178,180,179,178,179,180,181,182,178,159,183,178,182,184,183,182,183,184,185,186,182,159,187,186,159,188,186,187,186,188,189,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4763215101754637483, "Model::rail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",5,2.5,-2.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5329856414929316292, "Geometry::", "Mesh" { + Vertices: *624 { + a: -5.925,2.5,-1.9,-5.925,5.225,-1.9,-5.925,2.5,-1.7,-5.925,5.225,-1.7,0,11.95,-2,0,11.15,-2,0,11.95,-1.6,0,11.15,-1.6,-8.425,0,-1.9,-8.025,0,-1.9,-8.425,2.725,-1.9,-8.025,3.125,-1.9,-3.425,5,-1.9,-3.025,5,-1.9,-3.425,7.725,-1.9,-3.025,8.125,-1.9,-8.025,0,-1.7,-8.425,0,-1.7,-8.025,3.125,-1.7,-8.425,2.725,-1.7,-3.025,5,-1.7,-3.425,5,-1.7,-3.025,8.125,-1.7,-3.425,7.725,-1.7,-10.2,0.95,-2,-10.2,1.75,-2,-10.2,0.95,-1.6,-10.2,1.75,-1.6,-0.925,7.5,-1.9,-0.525,7.5,-1.9,-0.925,10.225,-1.9,-0.525,10.625,-1.9,-0.525,10.625,-1.9,-0.525,7.5,-1.9,-0.525,10.625,-1.7,-0.525,7.5,-1.7,-10.2,0.95,-1.6,-10.2,1.75,-1.6,0,11.15,-1.6,0,11.95,-1.6,-3.025,8.125,-1.9,-3.025,5,-1.9,-3.025,8.125,-1.7,-3.025,5,-1.7,-3.425,5,-1.9,-3.425,7.725,-1.9,-3.425,5,-1.7,-3.425,7.725,-1.7,-10.2,0.95,-2,0,11.15,-2,-10.2,1.75,-2,0,11.95,-2,-8.425,0,-1.9,-8.425,2.725,-1.9,-8.425,0,-1.7,-8.425,2.725,-1.7,-0.525,7.5,-1.7,-0.925,7.5,-1.7,-0.525,10.625,-1.7,-0.925,10.225,-1.7,-5.925,2.5,-1.9,-5.525,2.5,-1.9,-5.925,5.225,-1.9,-5.525,5.625,-1.9,-8.025,3.125,-1.9,-8.025,0,-1.9,-8.025,3.125,-1.7,-8.025,0,-1.7,-0.925,7.5,-1.9,-0.925,10.225,-1.9,-0.925,7.5,-1.7,-0.925,10.225,-1.7,-10.2,1.75,-2,0,11.95,-2,-10.2,1.75,-1.6,0,11.95,-1.6,-5.525,2.5,-1.7,-5.925,2.5,-1.7,-5.525,5.625,-1.7,-5.925,5.225,-1.7,-5.525,5.625,-1.9,-5.525,2.5,-1.9,-5.525,5.625,-1.7,-5.525,2.5,-1.7,-10.2,0.95,6.599999,0,11.15,6.599999,-10.2,1.75,6.599999,0,11.95,6.599999,-10.2,0.95,7,-10.2,1.75,7,0,11.15,7,0,11.95,7,-8.025,0,6.9,-8.425,0,6.9,-8.025,3.125,6.9,-8.425,2.725,6.9,-3.025,5,6.9,-3.425,5,6.9,-3.025,8.125,6.9,-3.425,7.725,6.9,0,11.95,6.599999,0,11.15,6.599999,0,11.95,7,0,11.15,7,-3.425,5,6.7,-3.025,5,6.7,-3.425,7.725,6.7,-3.025,8.125,6.7,-8.425,0,6.7,-8.025,0,6.7,-8.425,2.725,6.7,-8.025,3.125,6.7,-8.425,0,6.7,-8.425,2.725,6.7,-8.425,0,6.9,-8.425,2.725,6.9,-0.925,7.5,6.7,-0.525,7.5,6.7,-0.925,10.225,6.7,-0.525,10.625,6.7,-10.2,1.75,6.599999,0,11.95,6.599999,-10.2,1.75,7,0,11.95,7,-5.525,2.5,6.9,-5.925,2.5,6.9,-5.525,5.625,6.9,-5.925,5.225,6.9,-5.525,5.625,6.7,-5.525,2.5,6.7,-5.525,5.625,6.9,-5.525,2.5,6.9,-0.925,7.5,6.7,-0.925,10.225,6.7,-0.925,7.5,6.9,-0.925,10.225,6.9,-10.2,0.95,6.599999,-10.2,1.75,6.599999,-10.2,0.95,7,-10.2,1.75,7,-5.925,2.5,6.7,-5.925,5.225,6.7,-5.925,2.5,6.9,-5.925,5.225,6.9,-0.525,7.5,6.9,-0.925,7.5,6.9,-0.525,10.625,6.9,-0.925,10.225,6.9,-3.425,5,6.7,-3.425,7.725,6.7,-3.425,5,6.9,-3.425,7.725,6.9,-8.025,3.125,6.7,-8.025,0,6.7,-8.025,3.125,6.9,-8.025,0,6.9,-5.925,2.5,6.7,-5.525,2.5,6.7,-5.925,5.225,6.7,-5.525,5.625,6.7,-3.025,8.125,6.7,-3.025,5,6.7,-3.025,8.125,6.9,-3.025,5,6.9,-0.525,10.625,6.7,-0.525,7.5,6.7,-0.525,10.625,6.9,-0.525,7.5,6.9,-0.525,10.625,-1.7,0,11.15,-1.6,-0.525,10.625,-1.9,-0.925,10.225,-1.7,0,11.15,-2,-8.425,2.725,-1.9,-10.2,0.95,-2,-0.925,10.225,-1.9,-10.2,0.95,-1.6,-3.025,8.125,-1.9,-3.025,8.125,-1.7,-3.425,7.725,-1.9,-3.425,7.725,-1.7,-8.425,2.725,-1.7,-8.025,3.125,-1.7,-5.525,5.625,-1.9,-5.925,5.225,-1.9,-5.525,5.625,-1.7,-8.025,3.125,-1.9,-5.925,5.225,-1.7,-0.525,10.625,6.9,0,11.15,7,-0.525,10.625,6.7,-0.925,10.225,6.9,0,11.15,6.599999,-8.425,2.725,6.7,-10.2,0.95,6.599999,-0.925,10.225,6.7,-10.2,0.95,7,-3.025,8.125,6.7,-3.025,8.125,6.9,-3.425,7.725,6.7,-3.425,7.725,6.9,-8.425,2.725,6.9,-8.025,3.125,6.9,-5.525,5.625,6.7,-5.925,5.225,6.7,-5.525,5.625,6.9,-8.025,3.125,6.7,-5.925,5.225,6.9 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,168,-170,172,169,-171,170,173,-173,172,173,-175,175,173,-171,176,174,-174,175,171,-178,177,173,-176,178,177,-172,178,171,-170,179,173,-178,180,178,-170,176,181,-170,181,176,-174,181,182,-170,183,173,-180,179,180,-184,184,173,-184,185,183,-181,185,180,-170,186,173,-185,187,185,-170,182,187,-170,184,187,-187,182,186,-188,188,190,-190,191,188,-190,192,189,-191,190,193,-193,192,193,-195,195,193,-191,196,194,-194,195,191,-198,197,193,-196,198,197,-192,198,191,-190,199,193,-198,200,198,-190,196,201,-190,201,196,-194,201,202,-190,203,193,-200,199,200,-204,204,193,-204,205,203,-201,205,200,-190,206,193,-205,207,205,-190,202,207,-190,204,207,-207,202,206,-208 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: -7.480315,9.84252,-7.480315,20.57087,-6.692914,9.84252,-6.692914,20.57087,7.874016,47.04725,7.874016,43.89764,6.299212,47.04725,6.299212,43.89764,33.16929,0,31.59449,0,33.16929,10.72835,31.59449,12.30315,13.48425,19.68504,11.90945,19.68504,13.48425,30.41339,11.90945,31.98819,-31.59449,0,-33.16929,0,-31.59449,12.30315,-33.16929,10.72835,-11.90945,19.68504,-13.48425,19.68504,-11.90945,31.98819,-13.48425,30.41339,-7.874016,3.740157,-7.874016,6.889764,-6.299212,3.740157,-6.299212,6.889764,3.641732,29.52756,2.066929,29.52756,3.641732,40.25591,2.066929,41.83071,7.480315,41.83071,7.480315,29.52756,6.692914,41.83071,6.692914,29.52756,-40.15748,3.740157,-40.15748,6.889764,5.127053E-14,43.89764,5.127053E-14,47.04725,7.480315,31.98819,7.480315,19.68504,6.692914,31.98819,6.692914,19.68504,-7.480315,19.68504,-7.480315,30.41339,-6.692914,19.68504,-6.692914,30.41339,40.15748,3.740157,-7.523393E-14,43.89764,40.15748,6.889764,-7.523393E-14,47.04725,-7.480315,-1.757453E-13,-7.480315,10.72835,-6.692914,-1.757453E-13,-6.692914,10.72835,-2.066929,29.52756,-3.641732,29.52756,-2.066929,41.83071,-3.641732,40.25591,23.32677,9.84252,21.75197,9.84252,23.32677,20.57087,21.75197,22.14567,7.480315,12.30315,7.480315,0,6.692914,12.30315,6.692914,0,-7.480315,29.52756,-7.480315,40.25591,-6.692914,29.52756,-6.692914,40.25591,-7.874016,-23.52383,-7.874016,33.26743,-6.299212,-23.52383,-6.299212,33.26743,-21.75197,9.84252,-23.32677,9.84252,-21.75197,22.14567,-23.32677,20.57087,7.480315,22.14567,7.480315,9.84252,6.692914,22.14567,6.692914,9.84252,40.15748,3.740157,2.85053E-13,43.89764,40.15748,6.889764,2.85053E-13,47.04725,-40.15748,3.740157,-40.15748,6.889764,-2.243086E-13,43.89764,-2.243086E-13,47.04725,-31.59449,0,-33.16929,0,-31.59449,12.30315,-33.16929,10.72835,-11.90945,19.68504,-13.48425,19.68504,-11.90945,31.98819,-13.48425,30.41339,-25.98425,47.04725,-25.98425,43.89764,-27.55906,47.04725,-27.55906,43.89764,13.48425,19.68504,11.90945,19.68504,13.48425,30.41339,11.90945,31.98819,33.16929,0,31.59449,0,33.16929,10.72835,31.59449,12.30315,26.37795,-1.757453E-13,26.37795,10.72835,27.16535,-1.757453E-13,27.16535,10.72835,3.641732,29.52756,2.066929,29.52756,3.641732,40.25591,2.066929,41.83071,25.98425,-23.52383,25.98425,33.26743,27.55906,-23.52383,27.55906,33.26743,-21.75197,9.84252,-23.32677,9.84252,-21.75197,22.14567,-23.32677,20.57087,-26.37795,22.14567,-26.37795,9.84252,-27.16535,22.14567,-27.16535,9.84252,26.37795,29.52756,26.37795,40.25591,27.16535,29.52756,27.16535,40.25591,25.98425,3.740157,25.98425,6.889764,27.55906,3.740157,27.55906,6.889764,26.37795,9.84252,26.37795,20.57087,27.16535,9.84252,27.16535,20.57087,-2.066929,29.52756,-3.641732,29.52756,-2.066929,41.83071,-3.641732,40.25591,26.37795,19.68504,26.37795,30.41339,27.16535,19.68504,27.16535,30.41339,-26.37795,12.30315,-26.37795,0,-27.16535,12.30315,-27.16535,0,23.32677,9.84252,21.75197,9.84252,23.32677,20.57087,21.75197,22.14567,-26.37795,31.98819,-26.37795,19.68504,-27.16535,31.98819,-27.16535,19.68504,-26.37795,41.83071,-26.37795,29.52756,-27.16535,41.83071,-27.16535,29.52756,6.692914,28.11724,6.299212,31.04032,7.480315,28.11724,6.692914,25.89013,7.874016,31.04032,7.480315,-15.86814,7.874016,-25.75094,7.480315,25.89013,6.299212,-25.75094,7.480315,14.19781,6.692914,14.19781,7.480315,11.97071,6.692914,11.97071,6.692914,-15.86814,6.692914,-13.64104,7.480315,0.2783885,7.480315,-1.94872,6.692914,0.2783885,7.480315,-13.64104,6.692914,-1.94872,-27.16535,28.11724,-27.55906,31.04032,-26.37795,28.11724,-27.16535,25.89013,-25.98425,31.04032,-26.37795,-15.86814,-25.98425,-25.75094,-26.37795,25.89013,-27.55906,-25.75094,-26.37795,14.19781,-27.16535,14.19781,-26.37795,11.97071,-27.16535,11.97071,-27.16535,-15.86814,-27.16535,-13.64104,-26.37795,0.2783885,-26.37795,-1.94872,-27.16535,0.2783885,-26.37795,-13.64104,-27.16535,-1.94872 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,168,169,172,169,170,170,173,172,172,173,174,175,173,170,176,174,173,175,171,177,177,173,175,178,177,171,178,171,169,179,173,177,180,178,169,176,181,169,181,176,173,181,182,169,183,173,179,179,180,183,184,173,183,185,183,180,185,180,169,186,173,184,187,185,169,182,187,169,184,187,186,182,186,187,188,190,189,191,188,189,192,189,190,190,193,192,192,193,194,195,193,190,196,194,193,195,191,197,197,193,195,198,197,191,198,191,189,199,193,197,200,198,189,196,201,189,201,196,193,201,202,189,203,193,199,199,200,203,204,193,203,205,203,200,205,200,189,206,193,204,207,205,189,202,207,189,204,207,206,202,206,207 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsWideStoneHandrail, Model::RootNode + C: "OO",5742511097874131481,0 + + ;Geometry::, Model::Mesh stairsWideStoneHandrail + C: "OO",4833255923253977856,5742511097874131481 + + ;Material::stone, Model::Mesh stairsWideStoneHandrail + C: "OO",7184,5742511097874131481 + + ;Model::Mesh rail, Model::USING PARENT + C: "OO",4763215101754637483,5742511097874131481 + + ;Geometry::, Model::Mesh rail + C: "OO",5329856414929316292,4763215101754637483 + + ;Material::wood, Model::Mesh rail + C: "OO",7178,4763215101754637483 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStoneHandrail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStoneHandrail.fbx.import new file mode 100644 index 0000000..f74a08a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStoneHandrail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b3xa7bdmcfsa3" +path="res://.godot/imported/stairsWideStoneHandrail.fbx-869e1933a8a978c007cd9bcea318df9a.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideStoneHandrail.fbx" +dest_files=["res://.godot/imported/stairsWideStoneHandrail.fbx-869e1933a8a978c007cd9bcea318df9a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWood.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWood.fbx new file mode 100644 index 0000000..41847d1 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWood.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 46 + Millisecond: 940 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsWideWood.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsWideWood.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4962394249969719094, "Model::stairsWideWood", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4995245575787144179, "Geometry::", "Mesh" { + Vertices: *1800 { + a: -2.7,3.375,-5,-2.5,3.375,-5,-2.7,3.75,-5,-1.25,3.75,-5,-1.25,3,-5,-2.5,3,-5,-2.7,3.375,-5,-2.7,3.75,-5,-2.7,3.375,5,-2.7,3.75,5,-2.5,3.375,5,-2.5,3.375,-5,-2.7,3.375,5,-2.7,3.375,-5,-1.25,3.75,-5,-1.25,3.75,5,-2.7,3.75,-5,-2.7,3.75,5,-2.5,3,-5,-2.5,3.375,-5,-2.5,3,5,-2.5,3.375,5,-1.25,3,5,-2.5,3,5,-1.25,3.75,5,-2.5,3.375,5,-2.7,3.75,5,-2.7,3.375,5,5,9.25,5,3.75,9.25,5,5,10,5,3.75,9.625,5,3.55,10,5,3.55,9.625,5,3.55,9.625,-5,3.55,10,-5,3.55,9.625,5,3.55,10,5,3.75,9.25,-5,3.75,9.625,-5,3.75,9.25,5,3.75,9.625,5,5,10,-5,5,10,5,3.55,10,-5,3.55,10,5,3.75,9.625,5,3.75,9.625,-5,3.55,9.625,5,3.55,9.625,-5,3.55,9.625,-5,3.75,9.625,-5,3.55,10,-5,5,10,-5,5,9.25,-5,3.75,9.25,-5,-5,0.5,-5,-5,0.875,-5,-5,0.5,5,-5,0.875,5,-3.75,0.5,5,-5,0.5,5,-3.75,1.25,5,-5,0.875,5,-5.2,1.25,5,-5.2,0.875,5,-5,0.875,5,-5,0.875,-5,-5.2,0.875,5,-5.2,0.875,-5,-5.2,0.875,-5,-5,0.875,-5,-5.2,1.25,-5,-3.75,1.25,-5,-3.75,0.5,-5,-5,0.5,-5,-5.2,0.875,-5,-5.2,1.25,-5,-5.2,0.875,5,-5.2,1.25,5,2.3,8.375,-5,2.3,8.75,-5,2.3,8.375,5,2.3,8.75,5,3.75,8,5,2.5,8,5,3.75,8.75,5,2.5,8.375,5,2.3,8.75,5,2.3,8.375,5,3.75,8.75,-5,3.75,8.75,5,2.3,8.75,-5,2.3,8.75,5,2.3,8.375,-5,2.5,8.375,-5,2.3,8.75,-5,3.75,8.75,-5,3.75,8,-5,2.5,8,-5,2.5,8,-5,2.5,8.375,-5,2.5,8,5,2.5,8.375,5,2.5,8.375,5,2.5,8.375,-5,2.3,8.375,5,2.3,8.375,-5,2.165734E-14,5.5,-5,3.609557E-14,5.875,-5,2.165734E-14,5.5,5,3.609557E-14,5.875,5,-0.2,5.875,-5,-0.2,6.25,-5,-0.2,5.875,5,-0.2,6.25,5,1.25,5.5,5,2.165734E-14,5.5,5,1.25,6.25,5,3.609557E-14,5.875,5,-0.2,6.25,5,-0.2,5.875,5,3.609557E-14,5.875,5,3.609557E-14,5.875,-5,-0.2,5.875,5,-0.2,5.875,-5,-0.2,5.875,-5,3.609557E-14,5.875,-5,-0.2,6.25,-5,1.25,6.25,-5,1.25,5.5,-5,2.165734E-14,5.5,-5,1.25,6.25,-5,1.25,6.25,5,-0.2,6.25,-5,-0.2,6.25,5,3.75,8.4,3.381982,4.6,9.25,3.381982,3.75,8.4,3.940991,4.6,9.25,3.940991,5,8.942893,3.381982,-3.942893,3.367565E-16,3.381982,5,8.942893,3.940991,-3.942893,3.367565E-16,3.940991,-3.942893,3.367565E-16,3.940991,-3.942893,3.367565E-16,3.381982,-4.65,-1.639515E-18,3.940991,-4.65,-1.639515E-18,3.381982,5,8.942893,3.940991,5,9.25,3.940991,5,8.942893,3.381982,5,9.25,3.381982,5,10,5,5,9.25,5,5,9.25,-3.381982,5,9.25,-3.940991,5,8.942893,-3.940991,5,8.942893,-3.381982,5,9.25,-5,5,10,-5,3.75,8.4,-3.940991,4.6,9.25,-3.940991,3.75,8.4,-3.381982,4.6,9.25,-3.381982,-3.942893,3.367565E-16,-3.381982,-3.942893,3.367565E-16,-3.940991,-4.65,-1.639515E-18,-3.381982,-4.65,-1.639515E-18,-3.940991,5,8.942893,-3.940991,-3.942893,3.367565E-16,-3.940991,5,8.942893,-3.381982,-3.942893,3.367565E-16,-3.381982,2.5,7.5,-5,2.5,7.5,5,1.05,7.5,-5,1.05,7.5,5,1.05,7.125,-5,1.25,7.125,-5,1.05,7.5,-5,2.5,7.5,-5,2.5,6.75,-5,1.25,6.75,-5,1.25,6.75,-5,1.25,7.125,-5,1.25,6.75,5,1.25,7.125,5,1.05,7.125,-5,1.05,7.5,-5,1.05,7.125,5,1.05,7.5,5,1.25,7.125,5,1.25,7.125,-5,1.05,7.125,5,1.05,7.125,-5,2.5,6.75,5,1.25,6.75,5,2.5,7.5,5,1.25,7.125,5,1.05,7.5,5,1.05,7.125,5,2.887646E-14,5,-5,2.887646E-14,5,5,-1.45,5,-5,-1.45,5,5,-1.45,4.625,-5,-1.25,4.625,-5,-1.45,5,-5,2.887646E-14,5,-5,2.887646E-14,4.25,-5,-1.25,4.25,-5,-1.25,4.25,-5,-1.25,4.625,-5,-1.25,4.25,5,-1.25,4.625,5,-1.25,4.625,5,-1.25,4.625,-5,-1.45,4.625,5,-1.45,4.625,-5,-1.45,4.625,-5,-1.45,5,-5,-1.45,4.625,5,-1.45,5,5,-3.75,2.125,5,-3.75,2.125,-5,-3.95,2.125,5,-3.95,2.125,-5,-2.5,1.75,5,-3.75,1.75,5,-2.5,2.5,5,-3.75,2.125,5,-3.95,2.5,5,-3.95,2.125,5,-3.95,2.125,-5,-3.75,2.125,-5,-3.95,2.5,-5,-2.5,2.5,-5,-2.5,1.75,-5,-3.75,1.75,-5,-3.75,1.75,-5,-3.75,2.125,-5,-3.75,1.75,5,-3.75,2.125,5,-3.95,2.125,-5,-3.95,2.5,-5,-3.95,2.125,5,-3.95,2.5,5,-2.5,2.5,-5,-2.5,2.5,5,-3.95,2.5,-5,-3.95,2.5,5,-1.25,3,5,-1.25,3,3.940991,-2.5,3,5,-1.65,3,3.940991,-1.65,3,3.381982,-1.65,3,-3.381982,-2.5,3,-5,-1.25,3,-3.381982,-1.25,3,3.381982,-1.65,3,-3.940991,-1.25,3,-5,-1.25,3,-3.940991,1.25,5.5,5,1.25,5.5,3.940991,2.165734E-14,5.5,5,0.85,5.5,3.940991,0.85,5.5,3.381982,0.85,5.5,-3.381982,2.165734E-14,5.5,-5,1.25,5.5,-3.381982,1.25,5.5,3.381982,0.85,5.5,-3.940991,1.25,5.5,-5,1.25,5.5,-3.940991,-4.15,0.5,3.940991,-4.65,-1.639515E-18,3.940991,-4.15,0.5,3.381982,-4.65,-1.639515E-18,3.381982,1.25,5.5,5,1.25,6.25,5,1.25,5.5,3.940991,1.25,5.9,3.940991,1.25,5.9,3.381982,1.25,5.5,-3.381982,1.25,5.5,3.381982,1.25,5.9,-3.381982,1.25,5.9,-3.940991,1.25,6.25,-5,1.25,5.5,-5,1.25,5.5,-3.940991,2.1,6.75,3.381982,2.1,6.75,3.940991,1.25,5.9,3.381982,1.25,5.9,3.940991,3.75,8,5,3.75,8.75,5,3.75,8,3.940991,3.75,8.4,3.940991,3.75,8.4,3.381982,3.75,8,-3.381982,3.75,8,3.381982,3.75,8.4,-3.381982,3.75,8.4,-3.940991,3.75,8.75,-5,3.75,8,-5,3.75,8,-3.940991,-3.75,0.5,5,-3.75,0.5,3.940991,-5,0.5,5,-4.15,0.5,3.940991,-4.15,0.5,3.381982,-4.15,0.5,-3.381982,-5,0.5,-5,-3.75,0.5,-3.381982,-3.75,0.5,3.381982,-4.15,0.5,-3.940991,-3.75,0.5,-5,-3.75,0.5,-3.940991,-2.9,1.75,3.381982,-2.9,1.75,3.940991,-3.75,0.9,3.381982,-3.75,0.9,3.940991,5,9.25,5,5,9.25,3.940991,3.75,9.25,5,4.6,9.25,3.940991,4.6,9.25,3.381982,4.6,9.25,-3.381982,3.75,9.25,-5,5,9.25,-3.381982,5,9.25,3.381982,4.6,9.25,-3.940991,5,9.25,-3.940991,5,9.25,-5,2.887646E-14,4.65,3.381982,0.85,5.5,3.381982,2.887646E-14,4.65,3.940991,0.85,5.5,3.940991,-2.5,2.15,3.381982,-1.65,3,3.381982,-2.5,2.15,3.940991,-1.65,3,3.940991,3.75,8,5,3.75,8,3.940991,2.5,8,5,3.35,8,3.940991,3.35,8,3.381982,3.35,8,-3.381982,2.5,8,-5,3.75,8,-3.381982,3.75,8,3.381982,3.35,8,-3.940991,3.75,8,-3.940991,3.75,8,-5,2.5,7.15,3.381982,3.35,8,3.381982,2.5,7.15,3.940991,3.35,8,3.940991,-1.25,3,5,-1.25,3.75,5,-1.25,3,3.940991,-1.25,3.4,3.940991,-1.25,3.4,3.381982,-1.25,3,-3.381982,-1.25,3,3.381982,-1.25,3.4,-3.381982,-1.25,3.4,-3.940991,-1.25,3.75,-5,-1.25,3,-5,-1.25,3,-3.940991,-0.4,4.25,3.381982,-0.4,4.25,3.940991,-1.25,3.4,3.381982,-1.25,3.4,3.940991,1.25,5.9,-3.940991,2.1,6.75,-3.940991,1.25,5.9,-3.381982,2.1,6.75,-3.381982,2.5,6.75,5,2.5,6.75,3.940991,1.25,6.75,5,2.1,6.75,3.940991,2.1,6.75,3.381982,2.1,6.75,-3.381982,1.25,6.75,-5,2.5,6.75,-3.381982,2.5,6.75,3.381982,2.1,6.75,-3.940991,2.5,6.75,-5,2.5,6.75,-3.940991,2.887646E-14,4.25,5,2.887646E-14,4.25,3.940991,-1.25,4.25,5,-0.4,4.25,3.940991,-0.4,4.25,3.381982,-0.4,4.25,-3.381982,-1.25,4.25,-5,2.887646E-14,4.25,-3.381982,2.887646E-14,4.25,3.381982,-0.4,4.25,-3.940991,2.887646E-14,4.25,-5,2.887646E-14,4.25,-3.940991,2.887646E-14,4.25,5,2.887646E-14,5,5,2.887646E-14,4.25,3.940991,2.887646E-14,4.65,3.940991,2.887646E-14,4.65,3.381982,2.887646E-14,4.25,-3.381982,2.887646E-14,4.25,3.381982,2.887646E-14,4.65,-3.381982,2.887646E-14,4.65,-3.940991,2.887646E-14,5,-5,2.887646E-14,4.25,-5,2.887646E-14,4.25,-3.940991,3.35,8,-3.940991,3.35,8,-3.381982,2.5,7.15,-3.940991,2.5,7.15,-3.381982,-1.25,3.4,-3.940991,-0.4,4.25,-3.940991,-1.25,3.4,-3.381982,-0.4,4.25,-3.381982,2.887646E-14,4.65,-3.940991,0.85,5.5,-3.940991,2.887646E-14,4.65,-3.381982,0.85,5.5,-3.381982,-2.5,1.75,5,-2.5,1.75,3.940991,-3.75,1.75,5,-2.9,1.75,3.940991,-2.9,1.75,3.381982,-2.9,1.75,-3.381982,-3.75,1.75,-5,-2.5,1.75,-3.381982,-2.5,1.75,3.381982,-2.9,1.75,-3.940991,-2.5,1.75,-5,-2.5,1.75,-3.940991,-2.5,1.75,5,-2.5,2.5,5,-2.5,1.75,3.940991,-2.5,2.15,3.940991,-2.5,2.15,3.381982,-2.5,1.75,-3.381982,-2.5,1.75,3.381982,-2.5,2.15,-3.381982,-2.5,2.15,-3.940991,-2.5,2.5,-5,-2.5,1.75,-5,-2.5,1.75,-3.940991,-3.75,0.9,-3.940991,-2.9,1.75,-3.940991,-3.75,0.9,-3.381982,-2.9,1.75,-3.381982,-2.5,2.15,-3.940991,-1.65,3,-3.940991,-2.5,2.15,-3.381982,-1.65,3,-3.381982,-4.15,0.5,-3.940991,-4.15,0.5,-3.381982,-4.65,-1.639515E-18,-3.940991,-4.65,-1.639515E-18,-3.381982,-3.75,0.5,5,-3.75,1.25,5,-3.75,0.5,3.940991,-3.75,0.9,3.940991,-3.75,0.9,3.381982,-3.75,0.5,-3.381982,-3.75,0.5,3.381982,-3.75,0.9,-3.381982,-3.75,0.9,-3.940991,-3.75,1.25,-5,-3.75,0.5,-5,-3.75,0.5,-3.940991,-3.75,1.25,-5,-3.75,1.25,5,-5.2,1.25,-5,-5.2,1.25,5,2.887646E-14,4.25,5,-1.25,4.25,5,2.887646E-14,5,5,-1.25,4.625,5,-1.45,5,5,-1.45,4.625,5,-4.65,-1.639515E-18,3.940991,-4.15,0.5,3.940991,-3.942893,3.367565E-16,3.940991,-3.75,0.5,3.940991,5,8.942893,3.940991,-2.5,1.75,3.940991,-1.25,3,3.940991,-3.75,0.9,3.940991,-2.9,1.75,3.940991,-2.5,2.15,3.940991,-1.65,3,3.940991,2.887646E-14,4.25,3.940991,-1.25,3.4,3.940991,-0.4,4.25,3.940991,1.25,5.5,3.940991,2.887646E-14,4.65,3.940991,0.85,5.5,3.940991,2.5,6.75,3.940991,1.25,5.9,3.940991,2.1,6.75,3.940991,3.75,8,3.940991,2.5,7.15,3.940991,3.35,8,3.940991,3.75,8.4,3.940991,4.6,9.25,3.940991,5,9.25,3.940991,2.5,6.75,5,2.5,7.5,5,2.5,6.75,3.940991,2.5,7.15,3.940991,2.5,7.15,3.381982,2.5,6.75,-3.381982,2.5,6.75,3.381982,2.5,7.15,-3.381982,2.5,7.15,-3.940991,2.5,7.5,-5,2.5,6.75,-5,2.5,6.75,-3.940991,1.25,5.9,3.381982,2.5,6.75,3.381982,2.1,6.75,3.381982,1.25,5.5,3.381982,5,8.942893,3.381982,3.75,8,3.381982,3.75,8.4,3.381982,2.5,7.15,3.381982,3.35,8,3.381982,4.6,9.25,3.381982,5,9.25,3.381982,2.887646E-14,4.25,3.381982,2.887646E-14,4.65,3.381982,0.85,5.5,3.381982,-1.25,3,3.381982,-1.25,3.4,3.381982,-0.4,4.25,3.381982,-2.5,1.75,3.381982,-2.5,2.15,3.381982,-1.65,3,3.381982,-3.75,0.5,3.381982,-3.942893,3.367565E-16,3.381982,-3.75,0.9,3.381982,-2.9,1.75,3.381982,-4.15,0.5,3.381982,-4.65,-1.639515E-18,3.381982,1.25,5.9,-3.940991,2.5,6.75,-3.940991,2.1,6.75,-3.940991,1.25,5.5,-3.940991,5,8.942893,-3.940991,3.75,8,-3.940991,3.75,8.4,-3.940991,2.5,7.15,-3.940991,3.35,8,-3.940991,4.6,9.25,-3.940991,5,9.25,-3.940991,2.887646E-14,4.25,-3.940991,2.887646E-14,4.65,-3.940991,0.85,5.5,-3.940991,-1.25,3,-3.940991,-1.25,3.4,-3.940991,-0.4,4.25,-3.940991,-2.5,1.75,-3.940991,-2.5,2.15,-3.940991,-1.65,3,-3.940991,-3.75,0.5,-3.940991,-3.942893,3.367565E-16,-3.940991,-3.75,0.9,-3.940991,-2.9,1.75,-3.940991,-4.15,0.5,-3.940991,-4.65,-1.639515E-18,-3.940991,-4.65,-1.639515E-18,-3.381982,-4.15,0.5,-3.381982,-3.942893,3.367565E-16,-3.381982,-3.75,0.5,-3.381982,5,8.942893,-3.381982,-2.5,1.75,-3.381982,-1.25,3,-3.381982,-3.75,0.9,-3.381982,-2.9,1.75,-3.381982,-2.5,2.15,-3.381982,-1.65,3,-3.381982,2.887646E-14,4.25,-3.381982,-1.25,3.4,-3.381982,-0.4,4.25,-3.381982,1.25,5.5,-3.381982,2.887646E-14,4.65,-3.381982,0.85,5.5,-3.381982,2.5,6.75,-3.381982,1.25,5.9,-3.381982,2.1,6.75,-3.381982,3.75,8,-3.381982,2.5,7.15,-3.381982,3.35,8,-3.381982,3.75,8.4,-3.381982,4.6,9.25,-3.381982,5,9.25,-3.381982 + } + PolygonVertexIndex: *1272 { + a: 0,2,-2,2,3,-2,3,4,-2,5,1,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,25,26,-28,28,30,-30,31,29,-31,32,31,-31,31,32,-34,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,52,53,-52,53,54,-52,55,51,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,63,-63,63,64,-66,66,68,-68,69,67,-69,70,72,-72,72,73,-72,73,74,-72,75,71,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,87,88,-90,90,92,-92,93,91,-93,94,96,-96,96,97,-96,97,98,-96,99,95,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,119,-119,119,120,-122,122,124,-124,125,123,-125,126,128,-128,128,129,-128,129,130,-128,131,127,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,149,151,-153,153,149,-153,151,154,-153,154,155,-153,155,154,-157,157,156,-155,155,158,-153,159,152,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,178,179,-178,179,180,-178,181,177,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,197,-197,197,198,-200,200,202,-202,203,201,-203,204,206,-206,206,207,-206,207,208,-206,209,205,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,229,-229,229,230,-232,232,234,-234,234,235,-234,235,236,-234,237,233,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,253,-253,255,254,-253,252,256,-256,255,257,-255,258,254,-258,255,256,-260,256,260,-260,261,259,-261,262,264,-264,265,263,-265,266,265,-265,267,266,-265,264,268,-268,267,269,-267,270,266,-270,267,268,-272,268,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,280,281,-280,281,282,-280,282,283,-280,282,284,-284,283,285,-280,285,286,-280,279,286,-288,288,287,-287,286,289,-289,290,292,-292,293,291,-293,294,296,-296,296,297,-296,297,298,-296,298,299,-296,298,300,-300,299,301,-296,301,302,-296,295,302,-304,304,303,-303,302,305,-305,306,308,-308,309,307,-309,310,309,-309,311,310,-309,308,312,-312,311,313,-311,314,310,-314,311,312,-316,312,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,325,-325,327,326,-325,324,328,-328,327,329,-327,330,326,-330,327,328,-332,331,328,-333,333,332,-329,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,345,-345,347,346,-345,344,348,-348,347,349,-347,350,346,-350,347,348,-352,351,348,-353,353,352,-349,354,356,-356,357,355,-357,358,360,-360,360,361,-360,361,362,-360,362,363,-360,362,364,-364,363,365,-360,365,366,-360,359,366,-368,368,367,-367,366,369,-369,370,372,-372,373,371,-373,374,376,-376,377,375,-377,378,380,-380,381,379,-381,382,381,-381,383,382,-381,380,384,-384,383,385,-383,386,382,-386,383,384,-388,384,388,-388,389,387,-389,390,392,-392,393,391,-393,394,393,-393,395,394,-393,392,396,-396,395,397,-395,398,394,-398,395,396,-400,396,400,-400,401,399,-401,402,404,-404,404,405,-404,405,406,-404,406,407,-404,406,408,-408,407,409,-404,409,410,-404,403,410,-412,412,411,-411,410,413,-413,414,416,-416,417,415,-417,418,420,-420,421,419,-421,422,424,-424,425,423,-425,426,428,-428,429,427,-429,430,429,-429,431,430,-429,428,432,-432,431,433,-431,434,430,-434,431,432,-436,432,436,-436,437,435,-437,438,440,-440,440,441,-440,441,442,-440,442,443,-440,442,444,-444,443,445,-440,445,446,-440,439,446,-448,448,447,-447,446,449,-449,450,452,-452,453,451,-453,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,464,465,-464,465,466,-464,466,467,-464,466,468,-468,467,469,-464,469,470,-464,463,470,-472,472,471,-471,470,473,-473,474,476,-476,477,475,-477,478,480,-480,481,479,-481,482,481,-481,481,482,-484,484,486,-486,487,485,-487,488,487,-487,489,487,-489,490,489,-489,491,487,-490,489,492,-492,493,489,-491,490,494,-494,495,490,-489,496,490,-496,495,497,-497,498,495,-489,499,495,-499,498,500,-500,501,498,-489,502,498,-502,501,503,-503,504,501,-489,505,501,-505,504,506,-506,507,504,-489,508,507,-489,509,508,-489,510,512,-512,512,513,-512,513,514,-512,514,515,-512,514,516,-516,515,517,-512,517,518,-512,511,518,-520,520,519,-519,518,521,-521,522,524,-524,522,523,-526,523,526,-526,527,526,-524,528,526,-528,529,527,-524,529,530,-528,531,526,-529,532,526,-532,525,526,-534,534,525,-534,535,525,-535,533,526,-537,537,533,-537,538,533,-538,536,526,-540,540,536,-540,541,536,-541,539,526,-543,526,543,-543,544,539,-543,545,539,-545,542,543,-547,547,546,-544,548,550,-550,548,549,-552,549,552,-552,553,552,-550,554,552,-554,555,553,-550,555,556,-554,557,552,-555,558,552,-558,551,552,-560,560,551,-560,561,551,-561,559,552,-563,563,559,-563,564,559,-564,562,552,-566,566,562,-566,567,562,-567,565,552,-569,552,569,-569,570,565,-569,571,565,-571,568,569,-573,573,572,-570,574,576,-576,577,575,-577,578,577,-577,579,577,-579,580,579,-579,581,577,-580,579,582,-582,583,579,-581,580,584,-584,585,580,-579,586,580,-586,585,587,-587,588,585,-579,589,585,-589,588,590,-590,591,588,-579,592,588,-592,591,593,-593,594,591,-579,595,591,-595,594,596,-596,597,594,-579,598,597,-579,599,598,-579 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3816 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1200 { + a: 10.62992,13.2874,9.84252,13.2874,10.62992,14.76378,4.92126,14.76378,4.92126,11.81102,9.84252,11.81102,-19.68504,13.2874,-19.68504,14.76378,19.68504,13.2874,19.68504,14.76378,-9.84252,19.68504,-9.84252,-19.68504,-10.62992,19.68504,-10.62992,-19.68504,4.92126,-19.68504,4.92126,19.68504,10.62992,-19.68504,10.62992,19.68504,-19.68504,11.81102,-19.68504,13.2874,19.68504,11.81102,19.68504,13.2874,-4.92126,11.81102,-9.84252,11.81102,-4.92126,14.76378,-9.84252,13.2874,-10.62992,14.76378,-10.62992,13.2874,19.68504,36.41732,14.76378,36.41732,19.68504,39.37008,14.76378,37.8937,13.97638,39.37008,13.97638,37.8937,-19.68504,37.8937,-19.68504,39.37008,19.68504,37.8937,19.68504,39.37008,-19.68504,36.41732,-19.68504,37.8937,19.68504,36.41732,19.68504,37.8937,-19.68504,-19.68504,-19.68504,19.68504,-13.97638,-19.68504,-13.97638,19.68504,14.76378,19.68504,14.76378,-19.68504,13.97638,19.68504,13.97638,-19.68504,-13.97638,37.8937,-14.76378,37.8937,-13.97638,39.37008,-19.68504,39.37008,-19.68504,36.41732,-14.76378,36.41732,-19.68504,1.968504,-19.68504,3.444882,19.68504,1.968504,19.68504,3.444882,-14.76378,1.968504,-19.68504,1.968504,-14.76378,4.92126,-19.68504,3.444882,-20.47244,4.92126,-20.47244,3.444882,-19.68504,19.68504,-19.68504,-19.68504,-20.47244,19.68504,-20.47244,-19.68504,20.47244,3.444882,19.68504,3.444882,20.47244,4.92126,14.76378,4.92126,14.76378,1.968504,19.68504,1.968504,-19.68504,3.444882,-19.68504,4.92126,19.68504,3.444882,19.68504,4.92126,-19.68504,32.97244,-19.68504,34.44882,19.68504,32.97244,19.68504,34.44882,14.76378,31.49606,9.84252,31.49606,14.76378,34.44882,9.84252,32.97244,9.055119,34.44882,9.055119,32.97244,-14.76378,-19.68504,-14.76378,19.68504,-9.055119,-19.68504,-9.055119,19.68504,-9.055119,32.97244,-9.84252,32.97244,-9.055119,34.44882,-14.76378,34.44882,-14.76378,31.49606,-9.84252,31.49606,-19.68504,31.49606,-19.68504,32.97244,19.68504,31.49606,19.68504,32.97244,9.84252,19.68504,9.84252,-19.68504,9.055119,19.68504,9.055119,-19.68504,-19.68504,21.65354,-19.68504,23.12992,19.68504,21.65354,19.68504,23.12992,-19.68504,23.12992,-19.68504,24.6063,19.68504,23.12992,19.68504,24.6063,4.92126,21.65354,8.526513E-14,21.65354,4.92126,24.6063,1.421085E-13,23.12992,-0.7874016,24.6063,-0.7874016,23.12992,1.032655E-12,19.68504,1.032655E-12,-19.68504,-0.7874016,19.68504,-0.7874016,-19.68504,0.7874016,23.12992,-1.421085E-13,23.12992,0.7874016,24.6063,-4.92126,24.6063,-4.92126,21.65354,-8.526513E-14,21.65354,-4.92126,-19.68504,-4.92126,19.68504,0.7874016,-19.68504,0.7874016,19.68504,13.31489,33.8242,13.31489,38.55681,15.51571,33.8242,15.51571,38.55681,-13.31489,38.81541,-13.31489,-10.97656,-15.51571,38.81541,-15.51571,-10.97656,-15.5232,15.51571,-15.5232,13.31489,-18.30709,15.51571,-18.30709,13.31489,-15.51571,35.20824,-15.51571,36.41732,-13.31489,35.20824,-13.31489,36.41732,-19.68504,39.37008,-19.68504,36.41732,13.31489,36.41732,15.51571,36.41732,15.51571,35.20824,13.31489,35.20824,19.68504,36.41732,19.68504,39.37008,-15.51571,33.8242,-15.51571,38.55681,-13.31489,33.8242,-13.31489,38.55681,-15.5232,-13.31489,-15.5232,-15.51571,-18.30709,-13.31489,-18.30709,-15.51571,15.51571,38.81541,15.51571,-10.97656,13.31489,38.81541,13.31489,-10.97656,-9.84252,-19.68504,-9.84252,19.68504,-4.133858,-19.68504,-4.133858,19.68504,-4.133858,28.05118,-4.92126,28.05118,-4.133858,29.52756,-9.84252,29.52756,-9.84252,26.5748,-4.92126,26.5748,-19.68504,26.5748,-19.68504,28.05118,19.68504,26.5748,19.68504,28.05118,-19.68504,28.05118,-19.68504,29.52756,19.68504,28.05118,19.68504,29.52756,4.92126,19.68504,4.92126,-19.68504,4.133858,19.68504,4.133858,-19.68504,9.84252,26.5748,4.92126,26.5748,9.84252,29.52756,4.92126,28.05118,4.133858,29.52756,4.133858,28.05118,-1.136868E-13,-19.68504,-1.136868E-13,19.68504,5.708662,-19.68504,5.708662,19.68504,5.708662,18.20866,4.92126,18.20866,5.708662,19.68504,-1.136868E-13,19.68504,-1.136868E-13,16.73228,4.92126,16.73228,-19.68504,16.73228,-19.68504,18.20866,19.68504,16.73228,19.68504,18.20866,-4.92126,19.68504,-4.92126,-19.68504,-5.708662,19.68504,-5.708662,-19.68504,-19.68504,18.20866,-19.68504,19.68504,19.68504,18.20866,19.68504,19.68504,-14.76378,19.68504,-14.76378,-19.68504,-15.55118,19.68504,-15.55118,-19.68504,-9.84252,6.889764,-14.76378,6.889764,-9.84252,9.84252,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,15.55118,8.366141,14.76378,8.366141,15.55118,9.84252,9.84252,9.84252,9.84252,6.889764,14.76378,6.889764,-19.68504,6.889764,-19.68504,8.366141,19.68504,6.889764,19.68504,8.366141,-19.68504,8.366141,-19.68504,9.84252,19.68504,8.366141,19.68504,9.84252,9.84252,-19.68504,9.84252,19.68504,15.55118,-19.68504,15.55118,19.68504,-4.92126,19.68504,-4.92126,15.51571,-9.84252,19.68504,-6.496063,15.51571,-6.496063,13.31489,-6.496063,-13.31489,-9.84252,-19.68504,-4.92126,-13.31489,-4.92126,13.31489,-6.496063,-15.51571,-4.92126,-19.68504,-4.92126,-15.51571,4.92126,19.68504,4.92126,15.51571,8.526513E-14,19.68504,3.346457,15.51571,3.346457,13.31489,3.346457,-13.31489,8.526513E-14,-19.68504,4.92126,-13.31489,4.92126,13.31489,3.346457,-15.51571,4.92126,-19.68504,4.92126,-15.51571,15.51571,-10.16118,15.51571,-12.94507,13.31489,-10.16118,13.31489,-12.94507,-19.68504,21.65354,-19.68504,24.6063,-15.51571,21.65354,-15.51571,23.22835,-13.31489,23.22835,13.31489,21.65354,-13.31489,21.65354,13.31489,23.22835,15.51571,23.22835,19.68504,24.6063,19.68504,21.65354,15.51571,21.65354,13.31489,24.63738,15.51571,24.63738,13.31489,19.90478,15.51571,19.90478,-19.68504,31.49606,-19.68504,34.44882,-15.51571,31.49606,-15.51571,33.07087,-13.31489,33.07087,13.31489,31.49606,-13.31489,31.49606,13.31489,33.07087,15.51571,33.07087,19.68504,34.44882,19.68504,31.49606,15.51571,31.49606,-14.76378,19.68504,-14.76378,15.51571,-19.68504,19.68504,-16.33858,15.51571,-16.33858,13.31489,-16.33858,-13.31489,-19.68504,-19.68504,-14.76378,-13.31489,-14.76378,13.31489,-16.33858,-15.51571,-14.76378,-19.68504,-14.76378,-15.51571,13.31489,-3.201468,15.51571,-3.201468,13.31489,-7.934072,15.51571,-7.934072,19.68504,19.68504,19.68504,15.51571,14.76378,19.68504,18.11024,15.51571,18.11024,13.31489,18.11024,-13.31489,14.76378,-19.68504,19.68504,-13.31489,19.68504,13.31489,18.11024,-15.51571,19.68504,-15.51571,19.68504,-19.68504,13.31489,12.94507,13.31489,17.67767,15.51571,12.94507,15.51571,17.67767,13.31489,-0.9743598,13.31489,3.758245,15.51571,-0.9743598,15.51571,3.758245,14.76378,19.68504,14.76378,15.51571,9.84252,19.68504,13.18898,15.51571,13.18898,13.31489,13.18898,-13.31489,9.84252,-19.68504,14.76378,-13.31489,14.76378,13.31489,13.18898,-15.51571,14.76378,-15.51571,14.76378,-19.68504,13.31489,26.86449,13.31489,31.59709,15.51571,26.86449,15.51571,31.59709,-19.68504,11.81102,-19.68504,14.76378,-15.51571,11.81102,-15.51571,13.38583,-13.31489,13.38583,13.31489,11.81102,-13.31489,11.81102,13.31489,13.38583,15.51571,13.38583,19.68504,14.76378,19.68504,11.81102,15.51571,11.81102,13.31489,10.71796,15.51571,10.71796,13.31489,5.985353,15.51571,5.985353,-15.51571,19.90478,-15.51571,24.63738,-13.31489,19.90478,-13.31489,24.63738,9.84252,19.68504,9.84252,15.51571,4.92126,19.68504,8.267716,15.51571,8.267716,13.31489,8.267716,-13.31489,4.92126,-19.68504,9.84252,-13.31489,9.84252,13.31489,8.267716,-15.51571,9.84252,-19.68504,9.84252,-15.51571,1.136868E-13,19.68504,1.136868E-13,15.51571,-4.92126,19.68504,-1.574803,15.51571,-1.574803,13.31489,-1.574803,-13.31489,-4.92126,-19.68504,1.136868E-13,-13.31489,1.136868E-13,13.31489,-1.574803,-15.51571,1.136868E-13,-19.68504,1.136868E-13,-15.51571,-19.68504,16.73228,-19.68504,19.68504,-15.51571,16.73228,-15.51571,18.30709,-13.31489,18.30709,13.31489,16.73228,-13.31489,16.73228,13.31489,18.30709,15.51571,18.30709,19.68504,19.68504,19.68504,16.73228,15.51571,16.73228,-15.51571,31.59709,-13.31489,31.59709,-15.51571,26.86449,-13.31489,26.86449,-15.51571,5.985353,-15.51571,10.71796,-13.31489,5.985353,-13.31489,10.71796,-15.51571,12.94507,-15.51571,17.67767,-13.31489,12.94507,-13.31489,17.67767,-9.84252,19.68504,-9.84252,15.51571,-14.76378,19.68504,-11.41732,15.51571,-11.41732,13.31489,-11.41732,-13.31489,-14.76378,-19.68504,-9.84252,-13.31489,-9.84252,13.31489,-11.41732,-15.51571,-9.84252,-19.68504,-9.84252,-15.51571,-19.68504,6.889764,-19.68504,9.84252,-15.51571,6.889764,-15.51571,8.464567,-13.31489,8.464567,13.31489,6.889764,-13.31489,6.889764,13.31489,8.464567,15.51571,8.464567,19.68504,9.84252,19.68504,6.889764,15.51571,6.889764,-15.51571,-7.934072,-15.51571,-3.201468,-13.31489,-7.934072,-13.31489,-3.201468,-15.51571,-0.9743598,-15.51571,3.758245,-13.31489,-0.9743598,-13.31489,3.758245,-15.51571,-10.16118,-13.31489,-10.16118,-15.51571,-12.94507,-13.31489,-12.94507,-19.68504,1.968504,-19.68504,4.92126,-15.51571,1.968504,-15.51571,3.543307,-13.31489,3.543307,13.31489,1.968504,-13.31489,1.968504,13.31489,3.543307,15.51571,3.543307,19.68504,4.92126,19.68504,1.968504,15.51571,1.968504,14.76378,-19.68504,14.76378,19.68504,20.47244,-19.68504,20.47244,19.68504,1.136868E-13,16.73228,-4.92126,16.73228,1.136868E-13,19.68504,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,-18.30709,-6.454785E-18,-16.33858,1.968504,-15.5232,1.325813E-15,-14.76378,1.968504,19.68504,35.20824,-9.84252,6.889764,-4.92126,11.81102,-14.76378,3.543307,-11.41732,6.889764,-9.84252,8.464567,-6.496063,11.81102,1.136868E-13,16.73228,-4.92126,13.38583,-1.574803,16.73228,4.92126,21.65354,1.136868E-13,18.30709,3.346457,21.65354,9.84252,26.5748,4.92126,23.22835,8.267716,26.5748,14.76378,31.49606,9.84252,28.14961,13.18898,31.49606,14.76378,33.07087,18.11024,36.41732,19.68504,36.41732,-19.68504,26.5748,-19.68504,29.52756,-15.51571,26.5748,-15.51571,28.14961,-13.31489,28.14961,13.31489,26.5748,-13.31489,26.5748,13.31489,28.14961,15.51571,28.14961,19.68504,29.52756,19.68504,26.5748,15.51571,26.5748,-4.92126,23.22835,-9.84252,26.5748,-8.267716,26.5748,-4.92126,21.65354,-19.68504,35.20824,-14.76378,31.49606,-14.76378,33.07087,-9.84252,28.14961,-13.18898,31.49606,-18.11024,36.41732,-19.68504,36.41732,-1.136868E-13,16.73228,-1.136868E-13,18.30709,-3.346457,21.65354,4.92126,11.81102,4.92126,13.38583,1.574803,16.73228,9.84252,6.889764,9.84252,8.464567,6.496063,11.81102,14.76378,1.968504,15.5232,1.325813E-15,14.76378,3.543307,11.41732,6.889764,16.33858,1.968504,18.30709,-6.454785E-18,-4.92126,23.22835,-9.84252,26.5748,-8.267716,26.5748,-4.92126,21.65354,-19.68504,35.20824,-14.76378,31.49606,-14.76378,33.07087,-9.84252,28.14961,-13.18898,31.49606,-18.11024,36.41732,-19.68504,36.41732,-1.136868E-13,16.73228,-1.136868E-13,18.30709,-3.346457,21.65354,4.92126,11.81102,4.92126,13.38583,1.574803,16.73228,9.84252,6.889764,9.84252,8.464567,6.496063,11.81102,14.76378,1.968504,15.5232,1.325813E-15,14.76378,3.543307,11.41732,6.889764,16.33858,1.968504,18.30709,-6.454785E-18,-18.30709,-6.454785E-18,-16.33858,1.968504,-15.5232,1.325813E-15,-14.76378,1.968504,19.68504,35.20824,-9.84252,6.889764,-4.92126,11.81102,-14.76378,3.543307,-11.41732,6.889764,-9.84252,8.464567,-6.496063,11.81102,1.136868E-13,16.73228,-4.92126,13.38583,-1.574803,16.73228,4.92126,21.65354,1.136868E-13,18.30709,3.346457,21.65354,9.84252,26.5748,4.92126,23.22835,8.267716,26.5748,14.76378,31.49606,9.84252,28.14961,13.18898,31.49606,14.76378,33.07087,18.11024,36.41732,19.68504,36.41732 + } + UVIndex: *1272 { + a: 0,2,1,2,3,1,3,4,1,5,1,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,25,26,27,28,30,29,31,29,30,32,31,30,31,32,33,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,52,53,51,53,54,51,55,51,54,56,58,57,59,57,58,60,62,61,63,61,62,64,63,62,63,64,65,66,68,67,69,67,68,70,72,71,72,73,71,73,74,71,75,71,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,87,88,89,90,92,91,93,91,92,94,96,95,96,97,95,97,98,95,99,95,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,119,118,119,120,121,122,124,123,125,123,124,126,128,127,128,129,127,129,130,127,131,127,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,149,151,152,153,149,152,151,154,152,154,155,152,155,154,156,157,156,154,155,158,152,159,152,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,178,179,177,179,180,177,181,177,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,197,196,197,198,199,200,202,201,203,201,202,204,206,205,206,207,205,207,208,205,209,205,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,229,228,229,230,231,232,234,233,234,235,233,235,236,233,237,233,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,253,252,255,254,252,252,256,255,255,257,254,258,254,257,255,256,259,256,260,259,261,259,260,262,264,263,265,263,264,266,265,264,267,266,264,264,268,267,267,269,266,270,266,269,267,268,271,268,272,271,273,271,272,274,276,275,277,275,276,278,280,279,280,281,279,281,282,279,282,283,279,282,284,283,283,285,279,285,286,279,279,286,287,288,287,286,286,289,288,290,292,291,293,291,292,294,296,295,296,297,295,297,298,295,298,299,295,298,300,299,299,301,295,301,302,295,295,302,303,304,303,302,302,305,304,306,308,307,309,307,308,310,309,308,311,310,308,308,312,311,311,313,310,314,310,313,311,312,315,312,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,325,324,327,326,324,324,328,327,327,329,326,330,326,329,327,328,331,331,328,332,333,332,328,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,345,344,347,346,344,344,348,347,347,349,346,350,346,349,347,348,351,351,348,352,353,352,348,354,356,355,357,355,356,358,360,359,360,361,359,361,362,359,362,363,359,362,364,363,363,365,359,365,366,359,359,366,367,368,367,366,366,369,368,370,372,371,373,371,372,374,376,375,377,375,376,378,380,379,381,379,380,382,381,380,383,382,380,380,384,383,383,385,382,386,382,385,383,384,387,384,388,387,389,387,388,390,392,391,393,391,392,394,393,392,395,394,392,392,396,395,395,397,394,398,394,397,395,396,399,396,400,399,401,399,400,402,404,403,404,405,403,405,406,403,406,407,403,406,408,407,407,409,403,409,410,403,403,410,411,412,411,410,410,413,412,414,416,415,417,415,416,418,420,419,421,419,420,422,424,423,425,423,424,426,428,427,429,427,428,430,429,428,431,430,428,428,432,431,431,433,430,434,430,433,431,432,435,432,436,435,437,435,436,438,440,439,440,441,439,441,442,439,442,443,439,442,444,443,443,445,439,445,446,439,439,446,447,448,447,446,446,449,448,450,452,451,453,451,452,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,464,465,463,465,466,463,466,467,463,466,468,467,467,469,463,469,470,463,463,470,471,472,471,470,470,473,472,474,476,475,477,475,476,478,480,479,481,479,480,482,481,480,481,482,483,484,486,485,487,485,486,488,487,486,489,487,488,490,489,488,491,487,489,489,492,491,493,489,490,490,494,493,495,490,488,496,490,495,495,497,496,498,495,488,499,495,498,498,500,499,501,498,488,502,498,501,501,503,502,504,501,488,505,501,504,504,506,505,507,504,488,508,507,488,509,508,488,510,512,511,512,513,511,513,514,511,514,515,511,514,516,515,515,517,511,517,518,511,511,518,519,520,519,518,518,521,520,522,524,523,522,523,525,523,526,525,527,526,523,528,526,527,529,527,523,529,530,527,531,526,528,532,526,531,525,526,533,534,525,533,535,525,534,533,526,536,537,533,536,538,533,537,536,526,539,540,536,539,541,536,540,539,526,542,526,543,542,544,539,542,545,539,544,542,543,546,547,546,543,548,550,549,548,549,551,549,552,551,553,552,549,554,552,553,555,553,549,555,556,553,557,552,554,558,552,557,551,552,559,560,551,559,561,551,560,559,552,562,563,559,562,564,559,563,562,552,565,566,562,565,567,562,566,565,552,568,552,569,568,570,565,568,571,565,570,568,569,572,573,572,569,574,576,575,577,575,576,578,577,576,579,577,578,580,579,578,581,577,579,579,582,581,583,579,580,580,584,583,585,580,578,586,580,585,585,587,586,588,585,578,589,585,588,588,590,589,591,588,578,592,588,591,591,593,592,594,591,578,595,591,594,594,596,595,597,594,578,598,597,578,599,598,578 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *424 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsWideWood, Model::RootNode + C: "OO",4962394249969719094,0 + + ;Geometry::, Model::Mesh stairsWideWood + C: "OO",4995245575787144179,4962394249969719094 + + ;Material::wood, Model::Mesh stairsWideWood + C: "OO",7178,4962394249969719094 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWood.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWood.fbx.import new file mode 100644 index 0000000..d594991 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWood.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bxp3igv8d63ry" +path="res://.godot/imported/stairsWideWood.fbx-f304f784d00d5b138ef7c9dae34f2d96.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWood.fbx" +dest_files=["res://.godot/imported/stairsWideWood.fbx-f304f784d00d5b138ef7c9dae34f2d96.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWoodHandrail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWoodHandrail.fbx new file mode 100644 index 0000000..805525a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWoodHandrail.fbx @@ -0,0 +1,410 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 21 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsWideWoodHandrail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsWideWoodHandrail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5701172152903227326, "Model::stairsWideWoodHandrail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5186599540109908595, "Geometry::", "Mesh" { + Vertices: *1800 { + a: -2.7,3.375,-5,-2.5,3.375,-5,-2.7,3.75,-5,-1.25,3.75,-5,-1.25,3,-5,-2.5,3,-5,-2.7,3.375,-5,-2.7,3.75,-5,-2.7,3.375,5,-2.7,3.75,5,-2.5,3.375,5,-2.5,3.375,-5,-2.7,3.375,5,-2.7,3.375,-5,-1.25,3.75,-5,-1.25,3.75,5,-2.7,3.75,-5,-2.7,3.75,5,-2.5,3,-5,-2.5,3.375,-5,-2.5,3,5,-2.5,3.375,5,-1.25,3,5,-2.5,3,5,-1.25,3.75,5,-2.5,3.375,5,-2.7,3.75,5,-2.7,3.375,5,5,9.25,5,3.75,9.25,5,5,10,5,3.75,9.625,5,3.55,10,5,3.55,9.625,5,3.55,9.625,-5,3.55,10,-5,3.55,9.625,5,3.55,10,5,3.75,9.25,-5,3.75,9.625,-5,3.75,9.25,5,3.75,9.625,5,5,10,-5,5,10,5,3.55,10,-5,3.55,10,5,3.75,9.625,5,3.75,9.625,-5,3.55,9.625,5,3.55,9.625,-5,3.55,9.625,-5,3.75,9.625,-5,3.55,10,-5,5,10,-5,5,9.25,-5,3.75,9.25,-5,-5,0.5,-5,-5,0.875,-5,-5,0.5,5,-5,0.875,5,-3.75,0.5,5,-5,0.5,5,-3.75,1.25,5,-5,0.875,5,-5.2,1.25,5,-5.2,0.875,5,-5,0.875,5,-5,0.875,-5,-5.2,0.875,5,-5.2,0.875,-5,-5.2,0.875,-5,-5,0.875,-5,-5.2,1.25,-5,-3.75,1.25,-5,-3.75,0.5,-5,-5,0.5,-5,-5.2,0.875,-5,-5.2,1.25,-5,-5.2,0.875,5,-5.2,1.25,5,2.3,8.375,-5,2.3,8.75,-5,2.3,8.375,5,2.3,8.75,5,3.75,8,5,2.5,8,5,3.75,8.75,5,2.5,8.375,5,2.3,8.75,5,2.3,8.375,5,3.75,8.75,-5,3.75,8.75,5,2.3,8.75,-5,2.3,8.75,5,2.3,8.375,-5,2.5,8.375,-5,2.3,8.75,-5,3.75,8.75,-5,3.75,8,-5,2.5,8,-5,2.5,8,-5,2.5,8.375,-5,2.5,8,5,2.5,8.375,5,2.5,8.375,5,2.5,8.375,-5,2.3,8.375,5,2.3,8.375,-5,2.165734E-14,5.5,-5,3.609557E-14,5.875,-5,2.165734E-14,5.5,5,3.609557E-14,5.875,5,-0.2,5.875,-5,-0.2,6.25,-5,-0.2,5.875,5,-0.2,6.25,5,1.25,5.5,5,2.165734E-14,5.5,5,1.25,6.25,5,3.609557E-14,5.875,5,-0.2,6.25,5,-0.2,5.875,5,3.609557E-14,5.875,5,3.609557E-14,5.875,-5,-0.2,5.875,5,-0.2,5.875,-5,-0.2,5.875,-5,3.609557E-14,5.875,-5,-0.2,6.25,-5,1.25,6.25,-5,1.25,5.5,-5,2.165734E-14,5.5,-5,1.25,6.25,-5,1.25,6.25,5,-0.2,6.25,-5,-0.2,6.25,5,3.75,8.4,3.381982,4.6,9.25,3.381982,3.75,8.4,3.940991,4.6,9.25,3.940991,5,8.942893,3.381982,-3.942893,3.367565E-16,3.381982,5,8.942893,3.940991,-3.942893,3.367565E-16,3.940991,-3.942893,3.367565E-16,3.940991,-3.942893,3.367565E-16,3.381982,-4.65,-1.639515E-18,3.940991,-4.65,-1.639515E-18,3.381982,5,8.942893,3.940991,5,9.25,3.940991,5,8.942893,3.381982,5,9.25,3.381982,5,10,5,5,9.25,5,5,9.25,-3.381982,5,9.25,-3.940991,5,8.942893,-3.940991,5,8.942893,-3.381982,5,9.25,-5,5,10,-5,3.75,8.4,-3.940991,4.6,9.25,-3.940991,3.75,8.4,-3.381982,4.6,9.25,-3.381982,-3.942893,3.367565E-16,-3.381982,-3.942893,3.367565E-16,-3.940991,-4.65,-1.639515E-18,-3.381982,-4.65,-1.639515E-18,-3.940991,5,8.942893,-3.940991,-3.942893,3.367565E-16,-3.940991,5,8.942893,-3.381982,-3.942893,3.367565E-16,-3.381982,2.5,7.5,-5,2.5,7.5,5,1.05,7.5,-5,1.05,7.5,5,1.05,7.125,-5,1.25,7.125,-5,1.05,7.5,-5,2.5,7.5,-5,2.5,6.75,-5,1.25,6.75,-5,1.25,6.75,-5,1.25,7.125,-5,1.25,6.75,5,1.25,7.125,5,1.05,7.125,-5,1.05,7.5,-5,1.05,7.125,5,1.05,7.5,5,1.25,7.125,5,1.25,7.125,-5,1.05,7.125,5,1.05,7.125,-5,2.5,6.75,5,1.25,6.75,5,2.5,7.5,5,1.25,7.125,5,1.05,7.5,5,1.05,7.125,5,2.887646E-14,5,-5,2.887646E-14,5,5,-1.45,5,-5,-1.45,5,5,-1.45,4.625,-5,-1.25,4.625,-5,-1.45,5,-5,2.887646E-14,5,-5,2.887646E-14,4.25,-5,-1.25,4.25,-5,-1.25,4.25,-5,-1.25,4.625,-5,-1.25,4.25,5,-1.25,4.625,5,-1.25,4.625,5,-1.25,4.625,-5,-1.45,4.625,5,-1.45,4.625,-5,-1.45,4.625,-5,-1.45,5,-5,-1.45,4.625,5,-1.45,5,5,-3.75,2.125,5,-3.75,2.125,-5,-3.95,2.125,5,-3.95,2.125,-5,-2.5,1.75,5,-3.75,1.75,5,-2.5,2.5,5,-3.75,2.125,5,-3.95,2.5,5,-3.95,2.125,5,-3.95,2.125,-5,-3.75,2.125,-5,-3.95,2.5,-5,-2.5,2.5,-5,-2.5,1.75,-5,-3.75,1.75,-5,-3.75,1.75,-5,-3.75,2.125,-5,-3.75,1.75,5,-3.75,2.125,5,-3.95,2.125,-5,-3.95,2.5,-5,-3.95,2.125,5,-3.95,2.5,5,-2.5,2.5,-5,-2.5,2.5,5,-3.95,2.5,-5,-3.95,2.5,5,-1.25,3,5,-1.25,3,3.940991,-2.5,3,5,-1.65,3,3.940991,-1.65,3,3.381982,-1.65,3,-3.381982,-2.5,3,-5,-1.25,3,-3.381982,-1.25,3,3.381982,-1.65,3,-3.940991,-1.25,3,-5,-1.25,3,-3.940991,1.25,5.5,5,1.25,5.5,3.940991,2.165734E-14,5.5,5,0.85,5.5,3.940991,0.85,5.5,3.381982,0.85,5.5,-3.381982,2.165734E-14,5.5,-5,1.25,5.5,-3.381982,1.25,5.5,3.381982,0.85,5.5,-3.940991,1.25,5.5,-5,1.25,5.5,-3.940991,-4.15,0.5,3.940991,-4.65,-1.639515E-18,3.940991,-4.15,0.5,3.381982,-4.65,-1.639515E-18,3.381982,1.25,5.5,5,1.25,6.25,5,1.25,5.5,3.940991,1.25,5.9,3.940991,1.25,5.9,3.381982,1.25,5.5,-3.381982,1.25,5.5,3.381982,1.25,5.9,-3.381982,1.25,5.9,-3.940991,1.25,6.25,-5,1.25,5.5,-5,1.25,5.5,-3.940991,2.1,6.75,3.381982,2.1,6.75,3.940991,1.25,5.9,3.381982,1.25,5.9,3.940991,3.75,8,5,3.75,8.75,5,3.75,8,3.940991,3.75,8.4,3.940991,3.75,8.4,3.381982,3.75,8,-3.381982,3.75,8,3.381982,3.75,8.4,-3.381982,3.75,8.4,-3.940991,3.75,8.75,-5,3.75,8,-5,3.75,8,-3.940991,-3.75,0.5,5,-3.75,0.5,3.940991,-5,0.5,5,-4.15,0.5,3.940991,-4.15,0.5,3.381982,-4.15,0.5,-3.381982,-5,0.5,-5,-3.75,0.5,-3.381982,-3.75,0.5,3.381982,-4.15,0.5,-3.940991,-3.75,0.5,-5,-3.75,0.5,-3.940991,-2.9,1.75,3.381982,-2.9,1.75,3.940991,-3.75,0.9,3.381982,-3.75,0.9,3.940991,5,9.25,5,5,9.25,3.940991,3.75,9.25,5,4.6,9.25,3.940991,4.6,9.25,3.381982,4.6,9.25,-3.381982,3.75,9.25,-5,5,9.25,-3.381982,5,9.25,3.381982,4.6,9.25,-3.940991,5,9.25,-3.940991,5,9.25,-5,2.887646E-14,4.65,3.381982,0.85,5.5,3.381982,2.887646E-14,4.65,3.940991,0.85,5.5,3.940991,-2.5,2.15,3.381982,-1.65,3,3.381982,-2.5,2.15,3.940991,-1.65,3,3.940991,3.75,8,5,3.75,8,3.940991,2.5,8,5,3.35,8,3.940991,3.35,8,3.381982,3.35,8,-3.381982,2.5,8,-5,3.75,8,-3.381982,3.75,8,3.381982,3.35,8,-3.940991,3.75,8,-3.940991,3.75,8,-5,2.5,7.15,3.381982,3.35,8,3.381982,2.5,7.15,3.940991,3.35,8,3.940991,-1.25,3,5,-1.25,3.75,5,-1.25,3,3.940991,-1.25,3.4,3.940991,-1.25,3.4,3.381982,-1.25,3,-3.381982,-1.25,3,3.381982,-1.25,3.4,-3.381982,-1.25,3.4,-3.940991,-1.25,3.75,-5,-1.25,3,-5,-1.25,3,-3.940991,-0.4,4.25,3.381982,-0.4,4.25,3.940991,-1.25,3.4,3.381982,-1.25,3.4,3.940991,1.25,5.9,-3.940991,2.1,6.75,-3.940991,1.25,5.9,-3.381982,2.1,6.75,-3.381982,2.5,6.75,5,2.5,6.75,3.940991,1.25,6.75,5,2.1,6.75,3.940991,2.1,6.75,3.381982,2.1,6.75,-3.381982,1.25,6.75,-5,2.5,6.75,-3.381982,2.5,6.75,3.381982,2.1,6.75,-3.940991,2.5,6.75,-5,2.5,6.75,-3.940991,2.887646E-14,4.25,5,2.887646E-14,4.25,3.940991,-1.25,4.25,5,-0.4,4.25,3.940991,-0.4,4.25,3.381982,-0.4,4.25,-3.381982,-1.25,4.25,-5,2.887646E-14,4.25,-3.381982,2.887646E-14,4.25,3.381982,-0.4,4.25,-3.940991,2.887646E-14,4.25,-5,2.887646E-14,4.25,-3.940991,2.887646E-14,4.25,5,2.887646E-14,5,5,2.887646E-14,4.25,3.940991,2.887646E-14,4.65,3.940991,2.887646E-14,4.65,3.381982,2.887646E-14,4.25,-3.381982,2.887646E-14,4.25,3.381982,2.887646E-14,4.65,-3.381982,2.887646E-14,4.65,-3.940991,2.887646E-14,5,-5,2.887646E-14,4.25,-5,2.887646E-14,4.25,-3.940991,3.35,8,-3.940991,3.35,8,-3.381982,2.5,7.15,-3.940991,2.5,7.15,-3.381982,-1.25,3.4,-3.940991,-0.4,4.25,-3.940991,-1.25,3.4,-3.381982,-0.4,4.25,-3.381982,2.887646E-14,4.65,-3.940991,0.85,5.5,-3.940991,2.887646E-14,4.65,-3.381982,0.85,5.5,-3.381982,-2.5,1.75,5,-2.5,1.75,3.940991,-3.75,1.75,5,-2.9,1.75,3.940991,-2.9,1.75,3.381982,-2.9,1.75,-3.381982,-3.75,1.75,-5,-2.5,1.75,-3.381982,-2.5,1.75,3.381982,-2.9,1.75,-3.940991,-2.5,1.75,-5,-2.5,1.75,-3.940991,-2.5,1.75,5,-2.5,2.5,5,-2.5,1.75,3.940991,-2.5,2.15,3.940991,-2.5,2.15,3.381982,-2.5,1.75,-3.381982,-2.5,1.75,3.381982,-2.5,2.15,-3.381982,-2.5,2.15,-3.940991,-2.5,2.5,-5,-2.5,1.75,-5,-2.5,1.75,-3.940991,-3.75,0.9,-3.940991,-2.9,1.75,-3.940991,-3.75,0.9,-3.381982,-2.9,1.75,-3.381982,-2.5,2.15,-3.940991,-1.65,3,-3.940991,-2.5,2.15,-3.381982,-1.65,3,-3.381982,-4.15,0.5,-3.940991,-4.15,0.5,-3.381982,-4.65,-1.639515E-18,-3.940991,-4.65,-1.639515E-18,-3.381982,-3.75,0.5,5,-3.75,1.25,5,-3.75,0.5,3.940991,-3.75,0.9,3.940991,-3.75,0.9,3.381982,-3.75,0.5,-3.381982,-3.75,0.5,3.381982,-3.75,0.9,-3.381982,-3.75,0.9,-3.940991,-3.75,1.25,-5,-3.75,0.5,-5,-3.75,0.5,-3.940991,-3.75,1.25,-5,-3.75,1.25,5,-5.2,1.25,-5,-5.2,1.25,5,2.887646E-14,4.25,5,-1.25,4.25,5,2.887646E-14,5,5,-1.25,4.625,5,-1.45,5,5,-1.45,4.625,5,-4.65,-1.639515E-18,3.940991,-4.15,0.5,3.940991,-3.942893,3.367565E-16,3.940991,-3.75,0.5,3.940991,5,8.942893,3.940991,-2.5,1.75,3.940991,-1.25,3,3.940991,-3.75,0.9,3.940991,-2.9,1.75,3.940991,-2.5,2.15,3.940991,-1.65,3,3.940991,2.887646E-14,4.25,3.940991,-1.25,3.4,3.940991,-0.4,4.25,3.940991,1.25,5.5,3.940991,2.887646E-14,4.65,3.940991,0.85,5.5,3.940991,2.5,6.75,3.940991,1.25,5.9,3.940991,2.1,6.75,3.940991,3.75,8,3.940991,2.5,7.15,3.940991,3.35,8,3.940991,3.75,8.4,3.940991,4.6,9.25,3.940991,5,9.25,3.940991,2.5,6.75,5,2.5,7.5,5,2.5,6.75,3.940991,2.5,7.15,3.940991,2.5,7.15,3.381982,2.5,6.75,-3.381982,2.5,6.75,3.381982,2.5,7.15,-3.381982,2.5,7.15,-3.940991,2.5,7.5,-5,2.5,6.75,-5,2.5,6.75,-3.940991,1.25,5.9,3.381982,2.5,6.75,3.381982,2.1,6.75,3.381982,1.25,5.5,3.381982,5,8.942893,3.381982,3.75,8,3.381982,3.75,8.4,3.381982,2.5,7.15,3.381982,3.35,8,3.381982,4.6,9.25,3.381982,5,9.25,3.381982,2.887646E-14,4.25,3.381982,2.887646E-14,4.65,3.381982,0.85,5.5,3.381982,-1.25,3,3.381982,-1.25,3.4,3.381982,-0.4,4.25,3.381982,-2.5,1.75,3.381982,-2.5,2.15,3.381982,-1.65,3,3.381982,-3.75,0.5,3.381982,-3.942893,3.367565E-16,3.381982,-3.75,0.9,3.381982,-2.9,1.75,3.381982,-4.15,0.5,3.381982,-4.65,-1.639515E-18,3.381982,1.25,5.9,-3.940991,2.5,6.75,-3.940991,2.1,6.75,-3.940991,1.25,5.5,-3.940991,5,8.942893,-3.940991,3.75,8,-3.940991,3.75,8.4,-3.940991,2.5,7.15,-3.940991,3.35,8,-3.940991,4.6,9.25,-3.940991,5,9.25,-3.940991,2.887646E-14,4.25,-3.940991,2.887646E-14,4.65,-3.940991,0.85,5.5,-3.940991,-1.25,3,-3.940991,-1.25,3.4,-3.940991,-0.4,4.25,-3.940991,-2.5,1.75,-3.940991,-2.5,2.15,-3.940991,-1.65,3,-3.940991,-3.75,0.5,-3.940991,-3.942893,3.367565E-16,-3.940991,-3.75,0.9,-3.940991,-2.9,1.75,-3.940991,-4.15,0.5,-3.940991,-4.65,-1.639515E-18,-3.940991,-4.65,-1.639515E-18,-3.381982,-4.15,0.5,-3.381982,-3.942893,3.367565E-16,-3.381982,-3.75,0.5,-3.381982,5,8.942893,-3.381982,-2.5,1.75,-3.381982,-1.25,3,-3.381982,-3.75,0.9,-3.381982,-2.9,1.75,-3.381982,-2.5,2.15,-3.381982,-1.65,3,-3.381982,2.887646E-14,4.25,-3.381982,-1.25,3.4,-3.381982,-0.4,4.25,-3.381982,1.25,5.5,-3.381982,2.887646E-14,4.65,-3.381982,0.85,5.5,-3.381982,2.5,6.75,-3.381982,1.25,5.9,-3.381982,2.1,6.75,-3.381982,3.75,8,-3.381982,2.5,7.15,-3.381982,3.35,8,-3.381982,3.75,8.4,-3.381982,4.6,9.25,-3.381982,5,9.25,-3.381982 + } + PolygonVertexIndex: *1272 { + a: 0,2,-2,2,3,-2,3,4,-2,5,1,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,25,26,-28,28,30,-30,31,29,-31,32,31,-31,31,32,-34,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,52,53,-52,53,54,-52,55,51,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,63,-63,63,64,-66,66,68,-68,69,67,-69,70,72,-72,72,73,-72,73,74,-72,75,71,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,87,88,-90,90,92,-92,93,91,-93,94,96,-96,96,97,-96,97,98,-96,99,95,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,119,-119,119,120,-122,122,124,-124,125,123,-125,126,128,-128,128,129,-128,129,130,-128,131,127,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,149,151,-153,153,149,-153,151,154,-153,154,155,-153,155,154,-157,157,156,-155,155,158,-153,159,152,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,178,179,-178,179,180,-178,181,177,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,197,-197,197,198,-200,200,202,-202,203,201,-203,204,206,-206,206,207,-206,207,208,-206,209,205,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,229,-229,229,230,-232,232,234,-234,234,235,-234,235,236,-234,237,233,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,253,-253,255,254,-253,252,256,-256,255,257,-255,258,254,-258,255,256,-260,256,260,-260,261,259,-261,262,264,-264,265,263,-265,266,265,-265,267,266,-265,264,268,-268,267,269,-267,270,266,-270,267,268,-272,268,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,280,281,-280,281,282,-280,282,283,-280,282,284,-284,283,285,-280,285,286,-280,279,286,-288,288,287,-287,286,289,-289,290,292,-292,293,291,-293,294,296,-296,296,297,-296,297,298,-296,298,299,-296,298,300,-300,299,301,-296,301,302,-296,295,302,-304,304,303,-303,302,305,-305,306,308,-308,309,307,-309,310,309,-309,311,310,-309,308,312,-312,311,313,-311,314,310,-314,311,312,-316,312,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,325,-325,327,326,-325,324,328,-328,327,329,-327,330,326,-330,327,328,-332,331,328,-333,333,332,-329,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,345,-345,347,346,-345,344,348,-348,347,349,-347,350,346,-350,347,348,-352,351,348,-353,353,352,-349,354,356,-356,357,355,-357,358,360,-360,360,361,-360,361,362,-360,362,363,-360,362,364,-364,363,365,-360,365,366,-360,359,366,-368,368,367,-367,366,369,-369,370,372,-372,373,371,-373,374,376,-376,377,375,-377,378,380,-380,381,379,-381,382,381,-381,383,382,-381,380,384,-384,383,385,-383,386,382,-386,383,384,-388,384,388,-388,389,387,-389,390,392,-392,393,391,-393,394,393,-393,395,394,-393,392,396,-396,395,397,-395,398,394,-398,395,396,-400,396,400,-400,401,399,-401,402,404,-404,404,405,-404,405,406,-404,406,407,-404,406,408,-408,407,409,-404,409,410,-404,403,410,-412,412,411,-411,410,413,-413,414,416,-416,417,415,-417,418,420,-420,421,419,-421,422,424,-424,425,423,-425,426,428,-428,429,427,-429,430,429,-429,431,430,-429,428,432,-432,431,433,-431,434,430,-434,431,432,-436,432,436,-436,437,435,-437,438,440,-440,440,441,-440,441,442,-440,442,443,-440,442,444,-444,443,445,-440,445,446,-440,439,446,-448,448,447,-447,446,449,-449,450,452,-452,453,451,-453,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,464,465,-464,465,466,-464,466,467,-464,466,468,-468,467,469,-464,469,470,-464,463,470,-472,472,471,-471,470,473,-473,474,476,-476,477,475,-477,478,480,-480,481,479,-481,482,481,-481,481,482,-484,484,486,-486,487,485,-487,488,487,-487,489,487,-489,490,489,-489,491,487,-490,489,492,-492,493,489,-491,490,494,-494,495,490,-489,496,490,-496,495,497,-497,498,495,-489,499,495,-499,498,500,-500,501,498,-489,502,498,-502,501,503,-503,504,501,-489,505,501,-505,504,506,-506,507,504,-489,508,507,-489,509,508,-489,510,512,-512,512,513,-512,513,514,-512,514,515,-512,514,516,-516,515,517,-512,517,518,-512,511,518,-520,520,519,-519,518,521,-521,522,524,-524,522,523,-526,523,526,-526,527,526,-524,528,526,-528,529,527,-524,529,530,-528,531,526,-529,532,526,-532,525,526,-534,534,525,-534,535,525,-535,533,526,-537,537,533,-537,538,533,-538,536,526,-540,540,536,-540,541,536,-541,539,526,-543,526,543,-543,544,539,-543,545,539,-545,542,543,-547,547,546,-544,548,550,-550,548,549,-552,549,552,-552,553,552,-550,554,552,-554,555,553,-550,555,556,-554,557,552,-555,558,552,-558,551,552,-560,560,551,-560,561,551,-561,559,552,-563,563,559,-563,564,559,-564,562,552,-566,566,562,-566,567,562,-567,565,552,-569,552,569,-569,570,565,-569,571,565,-571,568,569,-573,573,572,-570,574,576,-576,577,575,-577,578,577,-577,579,577,-579,580,579,-579,581,577,-580,579,582,-582,583,579,-581,580,584,-584,585,580,-579,586,580,-586,585,587,-587,588,585,-579,589,585,-589,588,590,-590,591,588,-579,592,588,-592,591,593,-593,594,591,-579,595,591,-595,594,596,-596,597,594,-579,598,597,-579,599,598,-579 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3816 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1200 { + a: 10.62992,13.2874,9.84252,13.2874,10.62992,14.76378,4.92126,14.76378,4.92126,11.81102,9.84252,11.81102,-19.68504,13.2874,-19.68504,14.76378,19.68504,13.2874,19.68504,14.76378,-9.84252,19.68504,-9.84252,-19.68504,-10.62992,19.68504,-10.62992,-19.68504,4.92126,-19.68504,4.92126,19.68504,10.62992,-19.68504,10.62992,19.68504,-19.68504,11.81102,-19.68504,13.2874,19.68504,11.81102,19.68504,13.2874,-4.92126,11.81102,-9.84252,11.81102,-4.92126,14.76378,-9.84252,13.2874,-10.62992,14.76378,-10.62992,13.2874,19.68504,36.41732,14.76378,36.41732,19.68504,39.37008,14.76378,37.8937,13.97638,39.37008,13.97638,37.8937,-19.68504,37.8937,-19.68504,39.37008,19.68504,37.8937,19.68504,39.37008,-19.68504,36.41732,-19.68504,37.8937,19.68504,36.41732,19.68504,37.8937,-19.68504,-19.68504,-19.68504,19.68504,-13.97638,-19.68504,-13.97638,19.68504,14.76378,19.68504,14.76378,-19.68504,13.97638,19.68504,13.97638,-19.68504,-13.97638,37.8937,-14.76378,37.8937,-13.97638,39.37008,-19.68504,39.37008,-19.68504,36.41732,-14.76378,36.41732,-19.68504,1.968504,-19.68504,3.444882,19.68504,1.968504,19.68504,3.444882,-14.76378,1.968504,-19.68504,1.968504,-14.76378,4.92126,-19.68504,3.444882,-20.47244,4.92126,-20.47244,3.444882,-19.68504,19.68504,-19.68504,-19.68504,-20.47244,19.68504,-20.47244,-19.68504,20.47244,3.444882,19.68504,3.444882,20.47244,4.92126,14.76378,4.92126,14.76378,1.968504,19.68504,1.968504,-19.68504,3.444882,-19.68504,4.92126,19.68504,3.444882,19.68504,4.92126,-19.68504,32.97244,-19.68504,34.44882,19.68504,32.97244,19.68504,34.44882,14.76378,31.49606,9.84252,31.49606,14.76378,34.44882,9.84252,32.97244,9.055119,34.44882,9.055119,32.97244,-14.76378,-19.68504,-14.76378,19.68504,-9.055119,-19.68504,-9.055119,19.68504,-9.055119,32.97244,-9.84252,32.97244,-9.055119,34.44882,-14.76378,34.44882,-14.76378,31.49606,-9.84252,31.49606,-19.68504,31.49606,-19.68504,32.97244,19.68504,31.49606,19.68504,32.97244,9.84252,19.68504,9.84252,-19.68504,9.055119,19.68504,9.055119,-19.68504,-19.68504,21.65354,-19.68504,23.12992,19.68504,21.65354,19.68504,23.12992,-19.68504,23.12992,-19.68504,24.6063,19.68504,23.12992,19.68504,24.6063,4.92126,21.65354,8.526513E-14,21.65354,4.92126,24.6063,1.421085E-13,23.12992,-0.7874016,24.6063,-0.7874016,23.12992,1.032655E-12,19.68504,1.032655E-12,-19.68504,-0.7874016,19.68504,-0.7874016,-19.68504,0.7874016,23.12992,-1.421085E-13,23.12992,0.7874016,24.6063,-4.92126,24.6063,-4.92126,21.65354,-8.526513E-14,21.65354,-4.92126,-19.68504,-4.92126,19.68504,0.7874016,-19.68504,0.7874016,19.68504,13.31489,33.8242,13.31489,38.55681,15.51571,33.8242,15.51571,38.55681,-13.31489,38.81541,-13.31489,-10.97656,-15.51571,38.81541,-15.51571,-10.97656,-15.5232,15.51571,-15.5232,13.31489,-18.30709,15.51571,-18.30709,13.31489,-15.51571,35.20824,-15.51571,36.41732,-13.31489,35.20824,-13.31489,36.41732,-19.68504,39.37008,-19.68504,36.41732,13.31489,36.41732,15.51571,36.41732,15.51571,35.20824,13.31489,35.20824,19.68504,36.41732,19.68504,39.37008,-15.51571,33.8242,-15.51571,38.55681,-13.31489,33.8242,-13.31489,38.55681,-15.5232,-13.31489,-15.5232,-15.51571,-18.30709,-13.31489,-18.30709,-15.51571,15.51571,38.81541,15.51571,-10.97656,13.31489,38.81541,13.31489,-10.97656,-9.84252,-19.68504,-9.84252,19.68504,-4.133858,-19.68504,-4.133858,19.68504,-4.133858,28.05118,-4.92126,28.05118,-4.133858,29.52756,-9.84252,29.52756,-9.84252,26.5748,-4.92126,26.5748,-19.68504,26.5748,-19.68504,28.05118,19.68504,26.5748,19.68504,28.05118,-19.68504,28.05118,-19.68504,29.52756,19.68504,28.05118,19.68504,29.52756,4.92126,19.68504,4.92126,-19.68504,4.133858,19.68504,4.133858,-19.68504,9.84252,26.5748,4.92126,26.5748,9.84252,29.52756,4.92126,28.05118,4.133858,29.52756,4.133858,28.05118,-1.136868E-13,-19.68504,-1.136868E-13,19.68504,5.708662,-19.68504,5.708662,19.68504,5.708662,18.20866,4.92126,18.20866,5.708662,19.68504,-1.136868E-13,19.68504,-1.136868E-13,16.73228,4.92126,16.73228,-19.68504,16.73228,-19.68504,18.20866,19.68504,16.73228,19.68504,18.20866,-4.92126,19.68504,-4.92126,-19.68504,-5.708662,19.68504,-5.708662,-19.68504,-19.68504,18.20866,-19.68504,19.68504,19.68504,18.20866,19.68504,19.68504,-14.76378,19.68504,-14.76378,-19.68504,-15.55118,19.68504,-15.55118,-19.68504,-9.84252,6.889764,-14.76378,6.889764,-9.84252,9.84252,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,15.55118,8.366141,14.76378,8.366141,15.55118,9.84252,9.84252,9.84252,9.84252,6.889764,14.76378,6.889764,-19.68504,6.889764,-19.68504,8.366141,19.68504,6.889764,19.68504,8.366141,-19.68504,8.366141,-19.68504,9.84252,19.68504,8.366141,19.68504,9.84252,9.84252,-19.68504,9.84252,19.68504,15.55118,-19.68504,15.55118,19.68504,-4.92126,19.68504,-4.92126,15.51571,-9.84252,19.68504,-6.496063,15.51571,-6.496063,13.31489,-6.496063,-13.31489,-9.84252,-19.68504,-4.92126,-13.31489,-4.92126,13.31489,-6.496063,-15.51571,-4.92126,-19.68504,-4.92126,-15.51571,4.92126,19.68504,4.92126,15.51571,8.526513E-14,19.68504,3.346457,15.51571,3.346457,13.31489,3.346457,-13.31489,8.526513E-14,-19.68504,4.92126,-13.31489,4.92126,13.31489,3.346457,-15.51571,4.92126,-19.68504,4.92126,-15.51571,15.51571,-10.16118,15.51571,-12.94507,13.31489,-10.16118,13.31489,-12.94507,-19.68504,21.65354,-19.68504,24.6063,-15.51571,21.65354,-15.51571,23.22835,-13.31489,23.22835,13.31489,21.65354,-13.31489,21.65354,13.31489,23.22835,15.51571,23.22835,19.68504,24.6063,19.68504,21.65354,15.51571,21.65354,13.31489,24.63738,15.51571,24.63738,13.31489,19.90478,15.51571,19.90478,-19.68504,31.49606,-19.68504,34.44882,-15.51571,31.49606,-15.51571,33.07087,-13.31489,33.07087,13.31489,31.49606,-13.31489,31.49606,13.31489,33.07087,15.51571,33.07087,19.68504,34.44882,19.68504,31.49606,15.51571,31.49606,-14.76378,19.68504,-14.76378,15.51571,-19.68504,19.68504,-16.33858,15.51571,-16.33858,13.31489,-16.33858,-13.31489,-19.68504,-19.68504,-14.76378,-13.31489,-14.76378,13.31489,-16.33858,-15.51571,-14.76378,-19.68504,-14.76378,-15.51571,13.31489,-3.201468,15.51571,-3.201468,13.31489,-7.934072,15.51571,-7.934072,19.68504,19.68504,19.68504,15.51571,14.76378,19.68504,18.11024,15.51571,18.11024,13.31489,18.11024,-13.31489,14.76378,-19.68504,19.68504,-13.31489,19.68504,13.31489,18.11024,-15.51571,19.68504,-15.51571,19.68504,-19.68504,13.31489,12.94507,13.31489,17.67767,15.51571,12.94507,15.51571,17.67767,13.31489,-0.9743598,13.31489,3.758245,15.51571,-0.9743598,15.51571,3.758245,14.76378,19.68504,14.76378,15.51571,9.84252,19.68504,13.18898,15.51571,13.18898,13.31489,13.18898,-13.31489,9.84252,-19.68504,14.76378,-13.31489,14.76378,13.31489,13.18898,-15.51571,14.76378,-15.51571,14.76378,-19.68504,13.31489,26.86449,13.31489,31.59709,15.51571,26.86449,15.51571,31.59709,-19.68504,11.81102,-19.68504,14.76378,-15.51571,11.81102,-15.51571,13.38583,-13.31489,13.38583,13.31489,11.81102,-13.31489,11.81102,13.31489,13.38583,15.51571,13.38583,19.68504,14.76378,19.68504,11.81102,15.51571,11.81102,13.31489,10.71796,15.51571,10.71796,13.31489,5.985353,15.51571,5.985353,-15.51571,19.90478,-15.51571,24.63738,-13.31489,19.90478,-13.31489,24.63738,9.84252,19.68504,9.84252,15.51571,4.92126,19.68504,8.267716,15.51571,8.267716,13.31489,8.267716,-13.31489,4.92126,-19.68504,9.84252,-13.31489,9.84252,13.31489,8.267716,-15.51571,9.84252,-19.68504,9.84252,-15.51571,1.136868E-13,19.68504,1.136868E-13,15.51571,-4.92126,19.68504,-1.574803,15.51571,-1.574803,13.31489,-1.574803,-13.31489,-4.92126,-19.68504,1.136868E-13,-13.31489,1.136868E-13,13.31489,-1.574803,-15.51571,1.136868E-13,-19.68504,1.136868E-13,-15.51571,-19.68504,16.73228,-19.68504,19.68504,-15.51571,16.73228,-15.51571,18.30709,-13.31489,18.30709,13.31489,16.73228,-13.31489,16.73228,13.31489,18.30709,15.51571,18.30709,19.68504,19.68504,19.68504,16.73228,15.51571,16.73228,-15.51571,31.59709,-13.31489,31.59709,-15.51571,26.86449,-13.31489,26.86449,-15.51571,5.985353,-15.51571,10.71796,-13.31489,5.985353,-13.31489,10.71796,-15.51571,12.94507,-15.51571,17.67767,-13.31489,12.94507,-13.31489,17.67767,-9.84252,19.68504,-9.84252,15.51571,-14.76378,19.68504,-11.41732,15.51571,-11.41732,13.31489,-11.41732,-13.31489,-14.76378,-19.68504,-9.84252,-13.31489,-9.84252,13.31489,-11.41732,-15.51571,-9.84252,-19.68504,-9.84252,-15.51571,-19.68504,6.889764,-19.68504,9.84252,-15.51571,6.889764,-15.51571,8.464567,-13.31489,8.464567,13.31489,6.889764,-13.31489,6.889764,13.31489,8.464567,15.51571,8.464567,19.68504,9.84252,19.68504,6.889764,15.51571,6.889764,-15.51571,-7.934072,-15.51571,-3.201468,-13.31489,-7.934072,-13.31489,-3.201468,-15.51571,-0.9743598,-15.51571,3.758245,-13.31489,-0.9743598,-13.31489,3.758245,-15.51571,-10.16118,-13.31489,-10.16118,-15.51571,-12.94507,-13.31489,-12.94507,-19.68504,1.968504,-19.68504,4.92126,-15.51571,1.968504,-15.51571,3.543307,-13.31489,3.543307,13.31489,1.968504,-13.31489,1.968504,13.31489,3.543307,15.51571,3.543307,19.68504,4.92126,19.68504,1.968504,15.51571,1.968504,14.76378,-19.68504,14.76378,19.68504,20.47244,-19.68504,20.47244,19.68504,1.136868E-13,16.73228,-4.92126,16.73228,1.136868E-13,19.68504,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,-18.30709,-6.454785E-18,-16.33858,1.968504,-15.5232,1.325813E-15,-14.76378,1.968504,19.68504,35.20824,-9.84252,6.889764,-4.92126,11.81102,-14.76378,3.543307,-11.41732,6.889764,-9.84252,8.464567,-6.496063,11.81102,1.136868E-13,16.73228,-4.92126,13.38583,-1.574803,16.73228,4.92126,21.65354,1.136868E-13,18.30709,3.346457,21.65354,9.84252,26.5748,4.92126,23.22835,8.267716,26.5748,14.76378,31.49606,9.84252,28.14961,13.18898,31.49606,14.76378,33.07087,18.11024,36.41732,19.68504,36.41732,-19.68504,26.5748,-19.68504,29.52756,-15.51571,26.5748,-15.51571,28.14961,-13.31489,28.14961,13.31489,26.5748,-13.31489,26.5748,13.31489,28.14961,15.51571,28.14961,19.68504,29.52756,19.68504,26.5748,15.51571,26.5748,-4.92126,23.22835,-9.84252,26.5748,-8.267716,26.5748,-4.92126,21.65354,-19.68504,35.20824,-14.76378,31.49606,-14.76378,33.07087,-9.84252,28.14961,-13.18898,31.49606,-18.11024,36.41732,-19.68504,36.41732,-1.136868E-13,16.73228,-1.136868E-13,18.30709,-3.346457,21.65354,4.92126,11.81102,4.92126,13.38583,1.574803,16.73228,9.84252,6.889764,9.84252,8.464567,6.496063,11.81102,14.76378,1.968504,15.5232,1.325813E-15,14.76378,3.543307,11.41732,6.889764,16.33858,1.968504,18.30709,-6.454785E-18,-4.92126,23.22835,-9.84252,26.5748,-8.267716,26.5748,-4.92126,21.65354,-19.68504,35.20824,-14.76378,31.49606,-14.76378,33.07087,-9.84252,28.14961,-13.18898,31.49606,-18.11024,36.41732,-19.68504,36.41732,-1.136868E-13,16.73228,-1.136868E-13,18.30709,-3.346457,21.65354,4.92126,11.81102,4.92126,13.38583,1.574803,16.73228,9.84252,6.889764,9.84252,8.464567,6.496063,11.81102,14.76378,1.968504,15.5232,1.325813E-15,14.76378,3.543307,11.41732,6.889764,16.33858,1.968504,18.30709,-6.454785E-18,-18.30709,-6.454785E-18,-16.33858,1.968504,-15.5232,1.325813E-15,-14.76378,1.968504,19.68504,35.20824,-9.84252,6.889764,-4.92126,11.81102,-14.76378,3.543307,-11.41732,6.889764,-9.84252,8.464567,-6.496063,11.81102,1.136868E-13,16.73228,-4.92126,13.38583,-1.574803,16.73228,4.92126,21.65354,1.136868E-13,18.30709,3.346457,21.65354,9.84252,26.5748,4.92126,23.22835,8.267716,26.5748,14.76378,31.49606,9.84252,28.14961,13.18898,31.49606,14.76378,33.07087,18.11024,36.41732,19.68504,36.41732 + } + UVIndex: *1272 { + a: 0,2,1,2,3,1,3,4,1,5,1,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,25,26,27,28,30,29,31,29,30,32,31,30,31,32,33,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,52,53,51,53,54,51,55,51,54,56,58,57,59,57,58,60,62,61,63,61,62,64,63,62,63,64,65,66,68,67,69,67,68,70,72,71,72,73,71,73,74,71,75,71,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,87,88,89,90,92,91,93,91,92,94,96,95,96,97,95,97,98,95,99,95,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,119,118,119,120,121,122,124,123,125,123,124,126,128,127,128,129,127,129,130,127,131,127,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,149,151,152,153,149,152,151,154,152,154,155,152,155,154,156,157,156,154,155,158,152,159,152,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,178,179,177,179,180,177,181,177,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,197,196,197,198,199,200,202,201,203,201,202,204,206,205,206,207,205,207,208,205,209,205,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,229,228,229,230,231,232,234,233,234,235,233,235,236,233,237,233,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,253,252,255,254,252,252,256,255,255,257,254,258,254,257,255,256,259,256,260,259,261,259,260,262,264,263,265,263,264,266,265,264,267,266,264,264,268,267,267,269,266,270,266,269,267,268,271,268,272,271,273,271,272,274,276,275,277,275,276,278,280,279,280,281,279,281,282,279,282,283,279,282,284,283,283,285,279,285,286,279,279,286,287,288,287,286,286,289,288,290,292,291,293,291,292,294,296,295,296,297,295,297,298,295,298,299,295,298,300,299,299,301,295,301,302,295,295,302,303,304,303,302,302,305,304,306,308,307,309,307,308,310,309,308,311,310,308,308,312,311,311,313,310,314,310,313,311,312,315,312,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,325,324,327,326,324,324,328,327,327,329,326,330,326,329,327,328,331,331,328,332,333,332,328,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,345,344,347,346,344,344,348,347,347,349,346,350,346,349,347,348,351,351,348,352,353,352,348,354,356,355,357,355,356,358,360,359,360,361,359,361,362,359,362,363,359,362,364,363,363,365,359,365,366,359,359,366,367,368,367,366,366,369,368,370,372,371,373,371,372,374,376,375,377,375,376,378,380,379,381,379,380,382,381,380,383,382,380,380,384,383,383,385,382,386,382,385,383,384,387,384,388,387,389,387,388,390,392,391,393,391,392,394,393,392,395,394,392,392,396,395,395,397,394,398,394,397,395,396,399,396,400,399,401,399,400,402,404,403,404,405,403,405,406,403,406,407,403,406,408,407,407,409,403,409,410,403,403,410,411,412,411,410,410,413,412,414,416,415,417,415,416,418,420,419,421,419,420,422,424,423,425,423,424,426,428,427,429,427,428,430,429,428,431,430,428,428,432,431,431,433,430,434,430,433,431,432,435,432,436,435,437,435,436,438,440,439,440,441,439,441,442,439,442,443,439,442,444,443,443,445,439,445,446,439,439,446,447,448,447,446,446,449,448,450,452,451,453,451,452,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,464,465,463,465,466,463,466,467,463,466,468,467,467,469,463,469,470,463,463,470,471,472,471,470,470,473,472,474,476,475,477,475,476,478,480,479,481,479,480,482,481,480,481,482,483,484,486,485,487,485,486,488,487,486,489,487,488,490,489,488,491,487,489,489,492,491,493,489,490,490,494,493,495,490,488,496,490,495,495,497,496,498,495,488,499,495,498,498,500,499,501,498,488,502,498,501,501,503,502,504,501,488,505,501,504,504,506,505,507,504,488,508,507,488,509,508,488,510,512,511,512,513,511,513,514,511,514,515,511,514,516,515,515,517,511,517,518,511,511,518,519,520,519,518,518,521,520,522,524,523,522,523,525,523,526,525,527,526,523,528,526,527,529,527,523,529,530,527,531,526,528,532,526,531,525,526,533,534,525,533,535,525,534,533,526,536,537,533,536,538,533,537,536,526,539,540,536,539,541,536,540,539,526,542,526,543,542,544,539,542,545,539,544,542,543,546,547,546,543,548,550,549,548,549,551,549,552,551,553,552,549,554,552,553,555,553,549,555,556,553,557,552,554,558,552,557,551,552,559,560,551,559,561,551,560,559,552,562,563,559,562,564,559,563,562,552,565,566,562,565,567,562,566,565,552,568,552,569,568,570,565,568,571,565,570,568,569,572,573,572,569,574,576,575,577,575,576,578,577,576,579,577,578,580,579,578,581,577,579,579,582,581,583,579,580,580,584,583,585,580,578,586,580,585,585,587,586,588,585,578,589,585,588,588,590,589,591,588,578,592,588,591,591,593,592,594,591,578,595,591,594,594,596,595,597,594,578,598,597,578,599,598,578 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *424 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5020660314978386003, "Model::rail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",5,2.5,-2.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4615854512811034905, "Geometry::", "Mesh" { + Vertices: *624 { + a: -5.925,2.5,-1.9,-5.925,5.225,-1.9,-5.925,2.5,-1.7,-5.925,5.225,-1.7,0,11.95,-2,0,11.15,-2,0,11.95,-1.6,0,11.15,-1.6,-8.425,0,-1.9,-8.025,0,-1.9,-8.425,2.725,-1.9,-8.025,3.125,-1.9,-3.425,5,-1.9,-3.025,5,-1.9,-3.425,7.725,-1.9,-3.025,8.125,-1.9,-8.025,0,-1.7,-8.425,0,-1.7,-8.025,3.125,-1.7,-8.425,2.725,-1.7,-3.025,5,-1.7,-3.425,5,-1.7,-3.025,8.125,-1.7,-3.425,7.725,-1.7,-10.2,0.95,-2,-10.2,1.75,-2,-10.2,0.95,-1.6,-10.2,1.75,-1.6,-0.925,7.5,-1.9,-0.525,7.5,-1.9,-0.925,10.225,-1.9,-0.525,10.625,-1.9,-0.525,10.625,-1.9,-0.525,7.5,-1.9,-0.525,10.625,-1.7,-0.525,7.5,-1.7,-10.2,0.95,-1.6,-10.2,1.75,-1.6,0,11.15,-1.6,0,11.95,-1.6,-3.025,8.125,-1.9,-3.025,5,-1.9,-3.025,8.125,-1.7,-3.025,5,-1.7,-3.425,5,-1.9,-3.425,7.725,-1.9,-3.425,5,-1.7,-3.425,7.725,-1.7,-10.2,0.95,-2,0,11.15,-2,-10.2,1.75,-2,0,11.95,-2,-8.425,0,-1.9,-8.425,2.725,-1.9,-8.425,0,-1.7,-8.425,2.725,-1.7,-0.525,7.5,-1.7,-0.925,7.5,-1.7,-0.525,10.625,-1.7,-0.925,10.225,-1.7,-5.925,2.5,-1.9,-5.525,2.5,-1.9,-5.925,5.225,-1.9,-5.525,5.625,-1.9,-8.025,3.125,-1.9,-8.025,0,-1.9,-8.025,3.125,-1.7,-8.025,0,-1.7,-0.925,7.5,-1.9,-0.925,10.225,-1.9,-0.925,7.5,-1.7,-0.925,10.225,-1.7,-10.2,1.75,-2,0,11.95,-2,-10.2,1.75,-1.6,0,11.95,-1.6,-5.525,2.5,-1.7,-5.925,2.5,-1.7,-5.525,5.625,-1.7,-5.925,5.225,-1.7,-5.525,5.625,-1.9,-5.525,2.5,-1.9,-5.525,5.625,-1.7,-5.525,2.5,-1.7,-10.2,0.95,6.599999,0,11.15,6.599999,-10.2,1.75,6.599999,0,11.95,6.599999,-10.2,0.95,7,-10.2,1.75,7,0,11.15,7,0,11.95,7,-8.025,0,6.9,-8.425,0,6.9,-8.025,3.125,6.9,-8.425,2.725,6.9,-3.025,5,6.9,-3.425,5,6.9,-3.025,8.125,6.9,-3.425,7.725,6.9,0,11.95,6.599999,0,11.15,6.599999,0,11.95,7,0,11.15,7,-3.425,5,6.7,-3.025,5,6.7,-3.425,7.725,6.7,-3.025,8.125,6.7,-8.425,0,6.7,-8.025,0,6.7,-8.425,2.725,6.7,-8.025,3.125,6.7,-8.425,0,6.7,-8.425,2.725,6.7,-8.425,0,6.9,-8.425,2.725,6.9,-0.925,7.5,6.7,-0.525,7.5,6.7,-0.925,10.225,6.7,-0.525,10.625,6.7,-10.2,1.75,6.599999,0,11.95,6.599999,-10.2,1.75,7,0,11.95,7,-5.525,2.5,6.9,-5.925,2.5,6.9,-5.525,5.625,6.9,-5.925,5.225,6.9,-5.525,5.625,6.7,-5.525,2.5,6.7,-5.525,5.625,6.9,-5.525,2.5,6.9,-0.925,7.5,6.7,-0.925,10.225,6.7,-0.925,7.5,6.9,-0.925,10.225,6.9,-10.2,0.95,6.599999,-10.2,1.75,6.599999,-10.2,0.95,7,-10.2,1.75,7,-5.925,2.5,6.7,-5.925,5.225,6.7,-5.925,2.5,6.9,-5.925,5.225,6.9,-0.525,7.5,6.9,-0.925,7.5,6.9,-0.525,10.625,6.9,-0.925,10.225,6.9,-3.425,5,6.7,-3.425,7.725,6.7,-3.425,5,6.9,-3.425,7.725,6.9,-8.025,3.125,6.7,-8.025,0,6.7,-8.025,3.125,6.9,-8.025,0,6.9,-5.925,2.5,6.7,-5.525,2.5,6.7,-5.925,5.225,6.7,-5.525,5.625,6.7,-3.025,8.125,6.7,-3.025,5,6.7,-3.025,8.125,6.9,-3.025,5,6.9,-0.525,10.625,6.7,-0.525,7.5,6.7,-0.525,10.625,6.9,-0.525,7.5,6.9,-0.525,10.625,-1.7,0,11.15,-1.6,-0.525,10.625,-1.9,-0.925,10.225,-1.7,0,11.15,-2,-8.425,2.725,-1.9,-10.2,0.95,-2,-0.925,10.225,-1.9,-10.2,0.95,-1.6,-3.025,8.125,-1.9,-3.025,8.125,-1.7,-3.425,7.725,-1.9,-3.425,7.725,-1.7,-8.425,2.725,-1.7,-8.025,3.125,-1.7,-5.525,5.625,-1.9,-5.925,5.225,-1.9,-5.525,5.625,-1.7,-8.025,3.125,-1.9,-5.925,5.225,-1.7,-0.525,10.625,6.9,0,11.15,7,-0.525,10.625,6.7,-0.925,10.225,6.9,0,11.15,6.599999,-8.425,2.725,6.7,-10.2,0.95,6.599999,-0.925,10.225,6.7,-10.2,0.95,7,-3.025,8.125,6.7,-3.025,8.125,6.9,-3.425,7.725,6.7,-3.425,7.725,6.9,-8.425,2.725,6.9,-8.025,3.125,6.9,-5.525,5.625,6.7,-5.925,5.225,6.7,-5.525,5.625,6.9,-8.025,3.125,6.7,-5.925,5.225,6.9 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,168,-170,172,169,-171,170,173,-173,172,173,-175,175,173,-171,176,174,-174,175,171,-178,177,173,-176,178,177,-172,178,171,-170,179,173,-178,180,178,-170,176,181,-170,181,176,-174,181,182,-170,183,173,-180,179,180,-184,184,173,-184,185,183,-181,185,180,-170,186,173,-185,187,185,-170,182,187,-170,184,187,-187,182,186,-188,188,190,-190,191,188,-190,192,189,-191,190,193,-193,192,193,-195,195,193,-191,196,194,-194,195,191,-198,197,193,-196,198,197,-192,198,191,-190,199,193,-198,200,198,-190,196,201,-190,201,196,-194,201,202,-190,203,193,-200,199,200,-204,204,193,-204,205,203,-201,205,200,-190,206,193,-205,207,205,-190,202,207,-190,204,207,-207,202,206,-208 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: -7.480315,9.84252,-7.480315,20.57087,-6.692914,9.84252,-6.692914,20.57087,7.874016,47.04725,7.874016,43.89764,6.299212,47.04725,6.299212,43.89764,33.16929,0,31.59449,0,33.16929,10.72835,31.59449,12.30315,13.48425,19.68504,11.90945,19.68504,13.48425,30.41339,11.90945,31.98819,-31.59449,0,-33.16929,0,-31.59449,12.30315,-33.16929,10.72835,-11.90945,19.68504,-13.48425,19.68504,-11.90945,31.98819,-13.48425,30.41339,-7.874016,3.740157,-7.874016,6.889764,-6.299212,3.740157,-6.299212,6.889764,3.641732,29.52756,2.066929,29.52756,3.641732,40.25591,2.066929,41.83071,7.480315,41.83071,7.480315,29.52756,6.692914,41.83071,6.692914,29.52756,-40.15748,3.740157,-40.15748,6.889764,5.127053E-14,43.89764,5.127053E-14,47.04725,7.480315,31.98819,7.480315,19.68504,6.692914,31.98819,6.692914,19.68504,-7.480315,19.68504,-7.480315,30.41339,-6.692914,19.68504,-6.692914,30.41339,40.15748,3.740157,-7.523393E-14,43.89764,40.15748,6.889764,-7.523393E-14,47.04725,-7.480315,-1.757453E-13,-7.480315,10.72835,-6.692914,-1.757453E-13,-6.692914,10.72835,-2.066929,29.52756,-3.641732,29.52756,-2.066929,41.83071,-3.641732,40.25591,23.32677,9.84252,21.75197,9.84252,23.32677,20.57087,21.75197,22.14567,7.480315,12.30315,7.480315,0,6.692914,12.30315,6.692914,0,-7.480315,29.52756,-7.480315,40.25591,-6.692914,29.52756,-6.692914,40.25591,-7.874016,-23.52383,-7.874016,33.26743,-6.299212,-23.52383,-6.299212,33.26743,-21.75197,9.84252,-23.32677,9.84252,-21.75197,22.14567,-23.32677,20.57087,7.480315,22.14567,7.480315,9.84252,6.692914,22.14567,6.692914,9.84252,40.15748,3.740157,2.85053E-13,43.89764,40.15748,6.889764,2.85053E-13,47.04725,-40.15748,3.740157,-40.15748,6.889764,-2.243086E-13,43.89764,-2.243086E-13,47.04725,-31.59449,0,-33.16929,0,-31.59449,12.30315,-33.16929,10.72835,-11.90945,19.68504,-13.48425,19.68504,-11.90945,31.98819,-13.48425,30.41339,-25.98425,47.04725,-25.98425,43.89764,-27.55906,47.04725,-27.55906,43.89764,13.48425,19.68504,11.90945,19.68504,13.48425,30.41339,11.90945,31.98819,33.16929,0,31.59449,0,33.16929,10.72835,31.59449,12.30315,26.37795,-1.757453E-13,26.37795,10.72835,27.16535,-1.757453E-13,27.16535,10.72835,3.641732,29.52756,2.066929,29.52756,3.641732,40.25591,2.066929,41.83071,25.98425,-23.52383,25.98425,33.26743,27.55906,-23.52383,27.55906,33.26743,-21.75197,9.84252,-23.32677,9.84252,-21.75197,22.14567,-23.32677,20.57087,-26.37795,22.14567,-26.37795,9.84252,-27.16535,22.14567,-27.16535,9.84252,26.37795,29.52756,26.37795,40.25591,27.16535,29.52756,27.16535,40.25591,25.98425,3.740157,25.98425,6.889764,27.55906,3.740157,27.55906,6.889764,26.37795,9.84252,26.37795,20.57087,27.16535,9.84252,27.16535,20.57087,-2.066929,29.52756,-3.641732,29.52756,-2.066929,41.83071,-3.641732,40.25591,26.37795,19.68504,26.37795,30.41339,27.16535,19.68504,27.16535,30.41339,-26.37795,12.30315,-26.37795,0,-27.16535,12.30315,-27.16535,0,23.32677,9.84252,21.75197,9.84252,23.32677,20.57087,21.75197,22.14567,-26.37795,31.98819,-26.37795,19.68504,-27.16535,31.98819,-27.16535,19.68504,-26.37795,41.83071,-26.37795,29.52756,-27.16535,41.83071,-27.16535,29.52756,6.692914,28.11724,6.299212,31.04032,7.480315,28.11724,6.692914,25.89013,7.874016,31.04032,7.480315,-15.86814,7.874016,-25.75094,7.480315,25.89013,6.299212,-25.75094,7.480315,14.19781,6.692914,14.19781,7.480315,11.97071,6.692914,11.97071,6.692914,-15.86814,6.692914,-13.64104,7.480315,0.2783885,7.480315,-1.94872,6.692914,0.2783885,7.480315,-13.64104,6.692914,-1.94872,-27.16535,28.11724,-27.55906,31.04032,-26.37795,28.11724,-27.16535,25.89013,-25.98425,31.04032,-26.37795,-15.86814,-25.98425,-25.75094,-26.37795,25.89013,-27.55906,-25.75094,-26.37795,14.19781,-27.16535,14.19781,-26.37795,11.97071,-27.16535,11.97071,-27.16535,-15.86814,-27.16535,-13.64104,-26.37795,0.2783885,-26.37795,-1.94872,-27.16535,0.2783885,-26.37795,-13.64104,-27.16535,-1.94872 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,168,169,172,169,170,170,173,172,172,173,174,175,173,170,176,174,173,175,171,177,177,173,175,178,177,171,178,171,169,179,173,177,180,178,169,176,181,169,181,176,173,181,182,169,183,173,179,179,180,183,184,173,183,185,183,180,185,180,169,186,173,184,187,185,169,182,187,169,184,187,186,182,186,187,188,190,189,191,188,189,192,189,190,190,193,192,192,193,194,195,193,190,196,194,193,195,191,197,197,193,195,198,197,191,198,191,189,199,193,197,200,198,189,196,201,189,201,196,193,201,202,189,203,193,199,199,200,203,204,193,203,205,203,200,205,200,189,206,193,204,207,205,189,202,207,189,204,207,206,202,206,207 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsWideWoodHandrail, Model::RootNode + C: "OO",5701172152903227326,0 + + ;Geometry::, Model::Mesh stairsWideWoodHandrail + C: "OO",5186599540109908595,5701172152903227326 + + ;Material::wood, Model::Mesh stairsWideWoodHandrail + C: "OO",7178,5701172152903227326 + + ;Model::Mesh rail, Model::USING PARENT + C: "OO",5020660314978386003,5701172152903227326 + + ;Geometry::, Model::Mesh rail + C: "OO",4615854512811034905,5020660314978386003 + + ;Material::wood, Model::Mesh rail + C: "OO",7178,5020660314978386003 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWoodHandrail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWoodHandrail.fbx.import new file mode 100644 index 0000000..c2c57d2 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWoodHandrail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://15fbe3gubies" +path="res://.godot/imported/stairsWideWoodHandrail.fbx-6d6f89eda06cc2efbf15e4cf45aa8f1c.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWideWoodHandrail.fbx" +dest_files=["res://.godot/imported/stairsWideWoodHandrail.fbx-6d6f89eda06cc2efbf15e4cf45aa8f1c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWood.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWood.fbx new file mode 100644 index 0000000..31e2928 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWood.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 110 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsWood.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsWood.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4754271448849554906, "Model::stairsWood", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5049492983846669985, "Geometry::", "Mesh" { + Vertices: *1818 { + a: -2.7,3.375,-2.5,-2.5,3.375,-2.5,-2.7,3.75,-2.5,-1.25,3.75,-2.5,-1.25,3,-2.5,-2.5,3,-2.5,-2.7,3.375,-2.5,-2.7,3.75,-2.5,-2.7,3.375,2.5,-2.7,3.75,2.5,-2.5,3.375,2.5,-2.5,3.375,-2.5,-2.7,3.375,2.5,-2.7,3.375,-2.5,-1.25,3.75,-2.5,-1.25,3.75,2.5,-2.7,3.75,-2.5,-2.7,3.75,2.5,-2.5,3,-2.5,-2.5,3.375,-2.5,-2.5,3,2.5,-2.5,3.375,2.5,-1.25,3,2.5,-2.5,3,2.5,-1.25,3.75,2.5,-2.5,3.375,2.5,-2.7,3.75,2.5,-2.7,3.375,2.5,5,9.25,2.5,3.75,9.25,2.5,5,10,2.5,3.75,9.625,2.5,3.55,10,2.5,3.55,9.625,2.5,3.55,9.625,-2.5,3.55,10,-2.5,3.55,9.625,2.5,3.55,10,2.5,3.75,9.25,-2.5,3.75,9.625,-2.5,3.75,9.25,2.5,3.75,9.625,2.5,5,10,-2.5,5,10,2.5,3.55,10,-2.5,3.55,10,2.5,3.75,9.625,2.5,3.75,9.625,-2.5,3.55,9.625,2.5,3.55,9.625,-2.5,3.55,9.625,-2.5,3.75,9.625,-2.5,3.55,10,-2.5,5,10,-2.5,5,9.25,-2.5,3.75,9.25,-2.5,-5,0.5,-2.5,-5,0.875,-2.5,-5,0.5,2.5,-5,0.875,2.5,-3.75,0.5,2.5,-5,0.5,2.5,-3.75,1.25,2.5,-5,0.875,2.5,-5.2,1.25,2.5,-5.2,0.875,2.5,-5,0.875,2.5,-5,0.875,-2.5,-5.2,0.875,2.5,-5.2,0.875,-2.5,-5.2,0.875,-2.5,-5,0.875,-2.5,-5.2,1.25,-2.5,-3.75,1.25,-2.5,-3.75,0.5,-2.5,-5,0.5,-2.5,-5.2,0.875,-2.5,-5.2,1.25,-2.5,-5.2,0.875,2.5,-5.2,1.25,2.5,2.3,8.375,-2.5,2.3,8.75,-2.5,2.3,8.375,2.5,2.3,8.75,2.5,3.75,8,2.5,2.5,8,2.5,3.75,8.75,2.5,2.5,8.375,2.5,2.3,8.75,2.5,2.3,8.375,2.5,3.75,8.75,-2.5,3.75,8.75,2.5,2.3,8.75,-2.5,2.3,8.75,2.5,2.3,8.375,-2.5,2.5,8.375,-2.5,2.3,8.75,-2.5,3.75,8.75,-2.5,3.75,8,-2.5,2.5,8,-2.5,2.5,8,-2.5,2.5,8.375,-2.5,2.5,8,2.5,2.5,8.375,2.5,2.5,8.375,2.5,2.5,8.375,-2.5,2.3,8.375,2.5,2.3,8.375,-2.5,2.165734E-14,5.5,-2.5,3.609557E-14,5.875,-2.5,2.165734E-14,5.5,2.5,3.609557E-14,5.875,2.5,-0.2,5.875,-2.5,-0.2,6.25,-2.5,-0.2,5.875,2.5,-0.2,6.25,2.5,1.25,5.5,2.5,2.165734E-14,5.5,2.5,1.25,6.25,2.5,3.609557E-14,5.875,2.5,-0.2,6.25,2.5,-0.2,5.875,2.5,3.609557E-14,5.875,2.5,3.609557E-14,5.875,-2.5,-0.2,5.875,2.5,-0.2,5.875,-2.5,-0.2,5.875,-2.5,3.609557E-14,5.875,-2.5,-0.2,6.25,-2.5,1.25,6.25,-2.5,1.25,5.5,-2.5,2.165734E-14,5.5,-2.5,1.25,6.25,-2.5,1.25,6.25,2.5,-0.2,6.25,-2.5,-0.2,6.25,2.5,3.75,8.4,1.381982,4.6,9.25,1.381982,3.75,8.4,1.940991,4.6,9.25,1.940991,5,8.942893,1.381982,-3.942893,3.367565E-16,1.381982,5,8.942893,1.940991,-3.942893,3.367565E-16,1.940991,-3.942893,3.367565E-16,1.940991,-3.942893,3.367565E-16,1.381982,-4.65,-1.639515E-18,1.940991,-4.65,-1.639515E-18,1.381982,5,9.25,1.940991,5,9.65,1.940991,5,8.942893,1.940991,5,8.942893,1.381982,5,9.25,1.381982,5,9.65,1.381982,5,9.25,-1.381982,5,10,2.5,5,9.25,1.940991,5,9.25,2.5,5,9.65,-1.381982,5,9.65,-1.940991,5,10,-2.5,5,9.25,-2.5,5,9.25,-1.940991,5,8.942893,-1.940991,5,8.942893,-1.381982,5,9.25,-1.381982,3.75,8.4,-1.940991,4.6,9.25,-1.940991,3.75,8.4,-1.381982,4.6,9.25,-1.381982,-3.942893,3.367565E-16,-1.381982,-3.942893,3.367565E-16,-1.940991,-4.65,-1.639515E-18,-1.381982,-4.65,-1.639515E-18,-1.940991,5,8.942893,-1.940991,-3.942893,3.367565E-16,-1.940991,5,8.942893,-1.381982,-3.942893,3.367565E-16,-1.381982,2.5,7.5,-2.5,2.5,7.5,2.5,1.05,7.5,-2.5,1.05,7.5,2.5,1.05,7.125,-2.5,1.25,7.125,-2.5,1.05,7.5,-2.5,2.5,7.5,-2.5,2.5,6.75,-2.5,1.25,6.75,-2.5,1.25,6.75,-2.5,1.25,7.125,-2.5,1.25,6.75,2.5,1.25,7.125,2.5,1.05,7.125,-2.5,1.05,7.5,-2.5,1.05,7.125,2.5,1.05,7.5,2.5,1.25,7.125,2.5,1.25,7.125,-2.5,1.05,7.125,2.5,1.05,7.125,-2.5,2.5,6.75,2.5,1.25,6.75,2.5,2.5,7.5,2.5,1.25,7.125,2.5,1.05,7.5,2.5,1.05,7.125,2.5,2.887646E-14,4.25,2.5,-1.25,4.25,2.5,2.887646E-14,5,2.5,-1.25,4.625,2.5,-1.45,5,2.5,-1.45,4.625,2.5,2.887646E-14,5,-2.5,2.887646E-14,5,2.5,-1.45,5,-2.5,-1.45,5,2.5,-1.45,4.625,-2.5,-1.25,4.625,-2.5,-1.45,5,-2.5,2.887646E-14,5,-2.5,2.887646E-14,4.25,-2.5,-1.25,4.25,-2.5,-1.25,4.25,-2.5,-1.25,4.625,-2.5,-1.25,4.25,2.5,-1.25,4.625,2.5,-1.25,4.625,2.5,-1.25,4.625,-2.5,-1.45,4.625,2.5,-1.45,4.625,-2.5,-1.45,4.625,-2.5,-1.45,5,-2.5,-1.45,4.625,2.5,-1.45,5,2.5,-3.75,2.125,2.5,-3.75,2.125,-2.5,-3.95,2.125,2.5,-3.95,2.125,-2.5,-2.5,1.75,2.5,-3.75,1.75,2.5,-2.5,2.5,2.5,-3.75,2.125,2.5,-3.95,2.5,2.5,-3.95,2.125,2.5,-3.95,2.125,-2.5,-3.75,2.125,-2.5,-3.95,2.5,-2.5,-2.5,2.5,-2.5,-2.5,1.75,-2.5,-3.75,1.75,-2.5,-3.75,1.75,-2.5,-3.75,2.125,-2.5,-3.75,1.75,2.5,-3.75,2.125,2.5,-3.95,2.125,-2.5,-3.95,2.5,-2.5,-3.95,2.125,2.5,-3.95,2.5,2.5,-2.5,2.5,-2.5,-2.5,2.5,2.5,-3.95,2.5,-2.5,-3.95,2.5,2.5,-1.25,3,2.5,-1.25,3,1.940991,-2.5,3,2.5,-1.65,3,1.940991,-1.65,3,1.381982,-1.65,3,-1.381982,-2.5,3,-2.5,-1.25,3,-1.381982,-1.25,3,1.381982,-1.65,3,-1.940991,-1.25,3,-2.5,-1.25,3,-1.940991,1.25,5.5,2.5,1.25,5.5,1.940991,2.165734E-14,5.5,2.5,0.85,5.5,1.940991,0.85,5.5,1.381982,0.85,5.5,-1.381982,2.165734E-14,5.5,-2.5,1.25,5.5,-1.381982,1.25,5.5,1.381982,0.85,5.5,-1.940991,1.25,5.5,-2.5,1.25,5.5,-1.940991,-4.15,0.5,1.940991,-4.65,-1.639515E-18,1.940991,-4.15,0.5,1.381982,-4.65,-1.639515E-18,1.381982,1.25,5.5,2.5,1.25,6.25,2.5,1.25,5.5,1.940991,1.25,5.9,1.940991,1.25,5.9,1.381982,1.25,5.5,-1.381982,1.25,5.5,1.381982,1.25,5.9,-1.381982,1.25,5.9,-1.940991,1.25,6.25,-2.5,1.25,5.5,-2.5,1.25,5.5,-1.940991,2.1,6.75,1.381982,2.1,6.75,1.940991,1.25,5.9,1.381982,1.25,5.9,1.940991,3.75,8,2.5,3.75,8.75,2.5,3.75,8,1.940991,3.75,8.4,1.940991,3.75,8.4,1.381982,3.75,8,-1.381982,3.75,8,1.381982,3.75,8.4,-1.381982,3.75,8.4,-1.940991,3.75,8.75,-2.5,3.75,8,-2.5,3.75,8,-1.940991,-3.75,0.5,2.5,-3.75,0.5,1.940991,-5,0.5,2.5,-4.15,0.5,1.940991,-4.15,0.5,1.381982,-4.15,0.5,-1.381982,-5,0.5,-2.5,-3.75,0.5,-1.381982,-3.75,0.5,1.381982,-4.15,0.5,-1.940991,-3.75,0.5,-2.5,-3.75,0.5,-1.940991,-2.9,1.75,1.381982,-2.9,1.75,1.940991,-3.75,0.9,1.381982,-3.75,0.9,1.940991,5,9.25,2.5,5,9.25,1.940991,3.75,9.25,2.5,4.6,9.25,1.940991,4.6,9.25,1.381982,4.6,9.25,-1.381982,3.75,9.25,-2.5,5,9.25,-1.381982,5,9.25,1.381982,4.6,9.25,-1.940991,5,9.25,-1.940991,5,9.25,-2.5,2.887646E-14,4.65,1.381982,0.85,5.5,1.381982,2.887646E-14,4.65,1.940991,0.85,5.5,1.940991,-2.5,2.15,1.381982,-1.65,3,1.381982,-2.5,2.15,1.940991,-1.65,3,1.940991,3.75,8,2.5,3.75,8,1.940991,2.5,8,2.5,3.35,8,1.940991,3.35,8,1.381982,3.35,8,-1.381982,2.5,8,-2.5,3.75,8,-1.381982,3.75,8,1.381982,3.35,8,-1.940991,3.75,8,-1.940991,3.75,8,-2.5,2.5,7.15,1.381982,3.35,8,1.381982,2.5,7.15,1.940991,3.35,8,1.940991,-1.25,3,2.5,-1.25,3.75,2.5,-1.25,3,1.940991,-1.25,3.4,1.940991,-1.25,3.4,1.381982,-1.25,3,-1.381982,-1.25,3,1.381982,-1.25,3.4,-1.381982,-1.25,3.4,-1.940991,-1.25,3.75,-2.5,-1.25,3,-2.5,-1.25,3,-1.940991,-4.65,-1.639515E-18,-1.381982,-4.15,0.5,-1.381982,-3.942893,3.367565E-16,-1.381982,-3.75,0.5,-1.381982,5,8.942893,-1.381982,-2.5,1.75,-1.381982,-1.25,3,-1.381982,-3.75,0.9,-1.381982,-2.9,1.75,-1.381982,-2.5,2.15,-1.381982,-1.65,3,-1.381982,2.887646E-14,4.25,-1.381982,-1.25,3.4,-1.381982,-0.4,4.25,-1.381982,1.25,5.5,-1.381982,2.887646E-14,4.65,-1.381982,0.85,5.5,-1.381982,2.5,6.75,-1.381982,1.25,5.9,-1.381982,2.1,6.75,-1.381982,3.75,8,-1.381982,2.5,7.15,-1.381982,3.35,8,-1.381982,3.75,8.4,-1.381982,4.6,9.25,-1.381982,5,9.25,-1.381982,-4.65,-1.639515E-18,1.940991,-4.15,0.5,1.940991,-3.942893,3.367565E-16,1.940991,-3.75,0.5,1.940991,5,8.942893,1.940991,-2.5,1.75,1.940991,-1.25,3,1.940991,-3.75,0.9,1.940991,-2.9,1.75,1.940991,-2.5,2.15,1.940991,-1.65,3,1.940991,2.887646E-14,4.25,1.940991,-1.25,3.4,1.940991,-0.4,4.25,1.940991,1.25,5.5,1.940991,2.887646E-14,4.65,1.940991,0.85,5.5,1.940991,2.5,6.75,1.940991,1.25,5.9,1.940991,2.1,6.75,1.940991,3.75,8,1.940991,2.5,7.15,1.940991,3.35,8,1.940991,3.75,8.4,1.940991,4.6,9.25,1.940991,5,9.25,1.940991,1.25,5.9,1.381982,2.5,6.75,1.381982,2.1,6.75,1.381982,1.25,5.5,1.381982,5,8.942893,1.381982,3.75,8,1.381982,3.75,8.4,1.381982,2.5,7.15,1.381982,3.35,8,1.381982,4.6,9.25,1.381982,5,9.25,1.381982,2.887646E-14,4.25,1.381982,2.887646E-14,4.65,1.381982,0.85,5.5,1.381982,-1.25,3,1.381982,-1.25,3.4,1.381982,-0.4,4.25,1.381982,-2.5,1.75,1.381982,-2.5,2.15,1.381982,-1.65,3,1.381982,-3.75,0.5,1.381982,-3.942893,3.367565E-16,1.381982,-3.75,0.9,1.381982,-2.9,1.75,1.381982,-4.15,0.5,1.381982,-4.65,-1.639515E-18,1.381982,-0.4,4.25,1.381982,-0.4,4.25,1.940991,-1.25,3.4,1.381982,-1.25,3.4,1.940991,1.25,5.9,-1.940991,2.1,6.75,-1.940991,1.25,5.9,-1.381982,2.1,6.75,-1.381982,2.5,6.75,2.5,2.5,6.75,1.940991,1.25,6.75,2.5,2.1,6.75,1.940991,2.1,6.75,1.381982,2.1,6.75,-1.381982,1.25,6.75,-2.5,2.5,6.75,-1.381982,2.5,6.75,1.381982,2.1,6.75,-1.940991,2.5,6.75,-2.5,2.5,6.75,-1.940991,2.5,6.75,2.5,2.5,7.5,2.5,2.5,6.75,1.940991,2.5,7.15,1.940991,2.5,7.15,1.381982,2.5,6.75,-1.381982,2.5,6.75,1.381982,2.5,7.15,-1.381982,2.5,7.15,-1.940991,2.5,7.5,-2.5,2.5,6.75,-2.5,2.5,6.75,-1.940991,2.887646E-14,4.25,2.5,2.887646E-14,4.25,1.940991,-1.25,4.25,2.5,-0.4,4.25,1.940991,-0.4,4.25,1.381982,-0.4,4.25,-1.381982,-1.25,4.25,-2.5,2.887646E-14,4.25,-1.381982,2.887646E-14,4.25,1.381982,-0.4,4.25,-1.940991,2.887646E-14,4.25,-2.5,2.887646E-14,4.25,-1.940991,2.887646E-14,4.25,2.5,2.887646E-14,5,2.5,2.887646E-14,4.25,1.940991,2.887646E-14,4.65,1.940991,2.887646E-14,4.65,1.381982,2.887646E-14,4.25,-1.381982,2.887646E-14,4.25,1.381982,2.887646E-14,4.65,-1.381982,2.887646E-14,4.65,-1.940991,2.887646E-14,5,-2.5,2.887646E-14,4.25,-2.5,2.887646E-14,4.25,-1.940991,3.35,8,-1.940991,3.35,8,-1.381982,2.5,7.15,-1.940991,2.5,7.15,-1.381982,1.25,5.9,-1.940991,2.5,6.75,-1.940991,2.1,6.75,-1.940991,1.25,5.5,-1.940991,5,8.942893,-1.940991,3.75,8,-1.940991,3.75,8.4,-1.940991,2.5,7.15,-1.940991,3.35,8,-1.940991,4.6,9.25,-1.940991,5,9.25,-1.940991,2.887646E-14,4.25,-1.940991,2.887646E-14,4.65,-1.940991,0.85,5.5,-1.940991,-1.25,3,-1.940991,-1.25,3.4,-1.940991,-0.4,4.25,-1.940991,-2.5,1.75,-1.940991,-2.5,2.15,-1.940991,-1.65,3,-1.940991,-3.75,0.5,-1.940991,-3.942893,3.367565E-16,-1.940991,-3.75,0.9,-1.940991,-2.9,1.75,-1.940991,-4.15,0.5,-1.940991,-4.65,-1.639515E-18,-1.940991,-1.25,3.4,-1.940991,-0.4,4.25,-1.940991,-1.25,3.4,-1.381982,-0.4,4.25,-1.381982,2.887646E-14,4.65,-1.940991,0.85,5.5,-1.940991,2.887646E-14,4.65,-1.381982,0.85,5.5,-1.381982,-2.5,1.75,2.5,-2.5,1.75,1.940991,-3.75,1.75,2.5,-2.9,1.75,1.940991,-2.9,1.75,1.381982,-2.9,1.75,-1.381982,-3.75,1.75,-2.5,-2.5,1.75,-1.381982,-2.5,1.75,1.381982,-2.9,1.75,-1.940991,-2.5,1.75,-2.5,-2.5,1.75,-1.940991,-2.5,1.75,2.5,-2.5,2.5,2.5,-2.5,1.75,1.940991,-2.5,2.15,1.940991,-2.5,2.15,1.381982,-2.5,1.75,-1.381982,-2.5,1.75,1.381982,-2.5,2.15,-1.381982,-2.5,2.15,-1.940991,-2.5,2.5,-2.5,-2.5,1.75,-2.5,-2.5,1.75,-1.940991,-3.75,0.9,-1.940991,-2.9,1.75,-1.940991,-3.75,0.9,-1.381982,-2.9,1.75,-1.381982,-2.5,2.15,-1.940991,-1.65,3,-1.940991,-2.5,2.15,-1.381982,-1.65,3,-1.381982,-4.15,0.5,-1.940991,-4.15,0.5,-1.381982,-4.65,-1.639515E-18,-1.940991,-4.65,-1.639515E-18,-1.381982,-3.75,0.5,2.5,-3.75,1.25,2.5,-3.75,0.5,1.940991,-3.75,0.9,1.940991,-3.75,0.9,1.381982,-3.75,0.5,-1.381982,-3.75,0.5,1.381982,-3.75,0.9,-1.381982,-3.75,0.9,-1.940991,-3.75,1.25,-2.5,-3.75,0.5,-2.5,-3.75,0.5,-1.940991,-3.75,1.25,-2.5,-3.75,1.25,2.5,-5.2,1.25,-2.5,-5.2,1.25,2.5 + } + PolygonVertexIndex: *1296 { + a: 0,2,-2,2,3,-2,3,4,-2,5,1,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,25,26,-28,28,30,-30,31,29,-31,32,31,-31,31,32,-34,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,52,53,-52,53,54,-52,55,51,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,63,-63,63,64,-66,66,68,-68,69,67,-69,70,72,-72,72,73,-72,73,74,-72,75,71,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,87,88,-90,90,92,-92,93,91,-93,94,96,-96,96,97,-96,97,98,-96,99,95,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,119,-119,119,120,-122,122,124,-124,125,123,-125,126,128,-128,128,129,-128,129,130,-128,131,127,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,150,151,-150,151,152,-150,153,149,-153,153,152,-155,149,153,-156,153,154,-156,156,149,-156,157,156,-156,154,158,-156,158,159,-156,155,159,-161,161,160,-160,159,162,-162,159,158,-163,163,162,-159,164,163,-159,165,164,-159,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,184,185,-184,185,186,-184,187,183,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,203,-203,203,204,-206,206,208,-208,209,207,-209,210,209,-209,209,210,-212,212,214,-214,215,213,-215,216,218,-218,218,219,-218,219,220,-218,221,217,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,241,-241,241,242,-244,244,246,-246,246,247,-246,247,248,-246,249,245,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,265,-265,267,266,-265,264,268,-268,267,269,-267,270,266,-270,267,268,-272,268,272,-272,273,271,-273,274,276,-276,277,275,-277,278,277,-277,279,278,-277,276,280,-280,279,281,-279,282,278,-282,279,280,-284,280,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,292,293,-292,293,294,-292,294,295,-292,294,296,-296,295,297,-292,297,298,-292,291,298,-300,300,299,-299,298,301,-301,302,304,-304,305,303,-305,306,308,-308,308,309,-308,309,310,-308,310,311,-308,310,312,-312,311,313,-308,313,314,-308,307,314,-316,316,315,-315,314,317,-317,318,320,-320,321,319,-321,322,321,-321,323,322,-321,320,324,-324,323,325,-323,326,322,-326,323,324,-328,324,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,337,-337,339,338,-337,336,340,-340,339,341,-339,342,338,-342,339,340,-344,343,340,-345,345,344,-341,346,348,-348,349,347,-349,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,357,-357,359,358,-357,356,360,-360,359,361,-359,362,358,-362,359,360,-364,363,360,-365,365,364,-361,366,368,-368,369,367,-369,370,372,-372,372,373,-372,373,374,-372,374,375,-372,374,376,-376,375,377,-372,377,378,-372,371,378,-380,380,379,-379,378,381,-381,382,384,-384,385,383,-385,386,385,-385,387,385,-387,388,387,-387,389,385,-388,387,390,-390,391,387,-389,388,392,-392,393,388,-387,394,388,-394,393,395,-395,396,393,-387,397,393,-397,396,398,-398,399,396,-387,400,396,-400,399,401,-401,402,399,-387,403,399,-403,402,404,-404,405,402,-387,406,405,-387,407,406,-387,408,410,-410,411,409,-411,412,411,-411,413,411,-413,414,413,-413,415,411,-414,413,416,-416,417,413,-415,414,418,-418,419,414,-413,420,414,-420,419,421,-421,422,419,-413,423,419,-423,422,424,-424,425,422,-413,426,422,-426,425,427,-427,428,425,-413,429,425,-429,428,430,-430,431,428,-413,432,431,-413,433,432,-413,434,436,-436,434,435,-438,435,438,-438,439,438,-436,440,438,-440,441,439,-436,441,442,-440,443,438,-441,444,438,-444,437,438,-446,446,437,-446,447,437,-447,445,438,-449,449,445,-449,450,445,-450,448,438,-452,452,448,-452,453,448,-453,451,438,-455,438,455,-455,456,451,-455,457,451,-457,454,455,-459,459,458,-456,460,462,-462,463,461,-463,464,466,-466,467,465,-467,468,470,-470,471,469,-471,472,471,-471,473,472,-471,470,474,-474,473,475,-473,476,472,-476,473,474,-478,474,478,-478,479,477,-479,480,482,-482,482,483,-482,483,484,-482,484,485,-482,484,486,-486,485,487,-482,487,488,-482,481,488,-490,490,489,-489,488,491,-491,492,494,-494,495,493,-495,496,495,-495,497,496,-495,494,498,-498,497,499,-497,500,496,-500,497,498,-502,498,502,-502,503,501,-503,504,506,-506,506,507,-506,507,508,-506,508,509,-506,508,510,-510,509,511,-506,511,512,-506,505,512,-514,514,513,-513,512,515,-515,516,518,-518,519,517,-519,520,522,-522,520,521,-524,521,524,-524,525,524,-522,526,524,-526,527,525,-522,527,528,-526,529,524,-527,530,524,-530,523,524,-532,532,523,-532,533,523,-533,531,524,-535,535,531,-535,536,531,-536,534,524,-538,538,534,-538,539,534,-539,537,524,-541,524,541,-541,542,537,-541,543,537,-543,540,541,-545,545,544,-542,546,548,-548,549,547,-549,550,552,-552,553,551,-553,554,556,-556,557,555,-557,558,557,-557,559,558,-557,556,560,-560,559,561,-559,562,558,-562,559,560,-564,560,564,-564,565,563,-565,566,568,-568,568,569,-568,569,570,-568,570,571,-568,570,572,-572,571,573,-568,573,574,-568,567,574,-576,576,575,-575,574,577,-577,578,580,-580,581,579,-581,582,584,-584,585,583,-585,586,588,-588,589,587,-589,590,592,-592,592,593,-592,593,594,-592,594,595,-592,594,596,-596,595,597,-592,597,598,-592,591,598,-600,600,599,-599,598,601,-601,602,604,-604,605,603,-605 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3888 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1212 { + a: 10.62992,13.2874,9.84252,13.2874,10.62992,14.76378,4.92126,14.76378,4.92126,11.81102,9.84252,11.81102,-9.84252,13.2874,-9.84252,14.76378,9.84252,13.2874,9.84252,14.76378,-9.84252,9.84252,-9.84252,-9.84252,-10.62992,9.84252,-10.62992,-9.84252,4.92126,-9.84252,4.92126,9.84252,10.62992,-9.84252,10.62992,9.84252,-9.84252,11.81102,-9.84252,13.2874,9.84252,11.81102,9.84252,13.2874,-4.92126,11.81102,-9.84252,11.81102,-4.92126,14.76378,-9.84252,13.2874,-10.62992,14.76378,-10.62992,13.2874,19.68504,36.41732,14.76378,36.41732,19.68504,39.37008,14.76378,37.8937,13.97638,39.37008,13.97638,37.8937,-9.84252,37.8937,-9.84252,39.37008,9.84252,37.8937,9.84252,39.37008,-9.84252,36.41732,-9.84252,37.8937,9.84252,36.41732,9.84252,37.8937,-19.68504,-9.84252,-19.68504,9.84252,-13.97638,-9.84252,-13.97638,9.84252,14.76378,9.84252,14.76378,-9.84252,13.97638,9.84252,13.97638,-9.84252,-13.97638,37.8937,-14.76378,37.8937,-13.97638,39.37008,-19.68504,39.37008,-19.68504,36.41732,-14.76378,36.41732,-9.84252,1.968504,-9.84252,3.444882,9.84252,1.968504,9.84252,3.444882,-14.76378,1.968504,-19.68504,1.968504,-14.76378,4.92126,-19.68504,3.444882,-20.47244,4.92126,-20.47244,3.444882,-19.68504,9.84252,-19.68504,-9.84252,-20.47244,9.84252,-20.47244,-9.84252,20.47244,3.444882,19.68504,3.444882,20.47244,4.92126,14.76378,4.92126,14.76378,1.968504,19.68504,1.968504,-9.84252,3.444882,-9.84252,4.92126,9.84252,3.444882,9.84252,4.92126,-9.84252,32.97244,-9.84252,34.44882,9.84252,32.97244,9.84252,34.44882,14.76378,31.49606,9.84252,31.49606,14.76378,34.44882,9.84252,32.97244,9.055119,34.44882,9.055119,32.97244,-14.76378,-9.84252,-14.76378,9.84252,-9.055119,-9.84252,-9.055119,9.84252,-9.055119,32.97244,-9.84252,32.97244,-9.055119,34.44882,-14.76378,34.44882,-14.76378,31.49606,-9.84252,31.49606,-9.84252,31.49606,-9.84252,32.97244,9.84252,31.49606,9.84252,32.97244,9.84252,9.84252,9.84252,-9.84252,9.055119,9.84252,9.055119,-9.84252,-9.84252,21.65354,-9.84252,23.12992,9.84252,21.65354,9.84252,23.12992,-9.84252,23.12992,-9.84252,24.6063,9.84252,23.12992,9.84252,24.6063,4.92126,21.65354,8.526513E-14,21.65354,4.92126,24.6063,1.421085E-13,23.12992,-0.7874016,24.6063,-0.7874016,23.12992,1.032655E-12,9.84252,1.032655E-12,-9.84252,-0.7874016,9.84252,-0.7874016,-9.84252,0.7874016,23.12992,-1.421085E-13,23.12992,0.7874016,24.6063,-4.92126,24.6063,-4.92126,21.65354,-8.526513E-14,21.65354,-4.92126,-9.84252,-4.92126,9.84252,0.7874016,-9.84252,0.7874016,9.84252,5.440875,33.8242,5.440875,38.55681,7.641697,33.8242,7.641697,38.55681,-5.440875,38.81541,-5.440875,-10.97656,-7.641697,38.81541,-7.641697,-10.97656,-15.5232,7.641697,-15.5232,5.440875,-18.30709,7.641697,-18.30709,5.440875,-7.641697,36.41732,-7.641697,37.99213,-7.641697,35.20824,-5.440875,35.20824,-5.440875,36.41732,-5.440875,37.99213,5.440875,36.41732,-9.84252,39.37008,-7.641697,36.41732,-9.84252,36.41732,5.440875,37.99213,7.641697,37.99213,9.84252,39.37008,9.84252,36.41732,7.641697,36.41732,7.641697,35.20824,5.440875,35.20824,5.440875,36.41732,-7.641697,33.8242,-7.641697,38.55681,-5.440875,33.8242,-5.440875,38.55681,-15.5232,-5.440875,-15.5232,-7.641697,-18.30709,-5.440875,-18.30709,-7.641697,7.641697,38.81541,7.641697,-10.97656,5.440875,38.81541,5.440875,-10.97656,-9.84252,-9.84252,-9.84252,9.84252,-4.133858,-9.84252,-4.133858,9.84252,-4.133858,28.05118,-4.92126,28.05118,-4.133858,29.52756,-9.84252,29.52756,-9.84252,26.5748,-4.92126,26.5748,-9.84252,26.5748,-9.84252,28.05118,9.84252,26.5748,9.84252,28.05118,-9.84252,28.05118,-9.84252,29.52756,9.84252,28.05118,9.84252,29.52756,4.92126,9.84252,4.92126,-9.84252,4.133858,9.84252,4.133858,-9.84252,9.84252,26.5748,4.92126,26.5748,9.84252,29.52756,4.92126,28.05118,4.133858,29.52756,4.133858,28.05118,1.136868E-13,16.73228,-4.92126,16.73228,1.136868E-13,19.68504,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,-1.136868E-13,-9.84252,-1.136868E-13,9.84252,5.708662,-9.84252,5.708662,9.84252,5.708662,18.20866,4.92126,18.20866,5.708662,19.68504,-1.136868E-13,19.68504,-1.136868E-13,16.73228,4.92126,16.73228,-9.84252,16.73228,-9.84252,18.20866,9.84252,16.73228,9.84252,18.20866,-4.92126,9.84252,-4.92126,-9.84252,-5.708662,9.84252,-5.708662,-9.84252,-9.84252,18.20866,-9.84252,19.68504,9.84252,18.20866,9.84252,19.68504,-14.76378,9.84252,-14.76378,-9.84252,-15.55118,9.84252,-15.55118,-9.84252,-9.84252,6.889764,-14.76378,6.889764,-9.84252,9.84252,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,15.55118,8.366141,14.76378,8.366141,15.55118,9.84252,9.84252,9.84252,9.84252,6.889764,14.76378,6.889764,-9.84252,6.889764,-9.84252,8.366141,9.84252,6.889764,9.84252,8.366141,-9.84252,8.366141,-9.84252,9.84252,9.84252,8.366141,9.84252,9.84252,9.84252,-9.84252,9.84252,9.84252,15.55118,-9.84252,15.55118,9.84252,-4.92126,9.84252,-4.92126,7.641697,-9.84252,9.84252,-6.496063,7.641697,-6.496063,5.440875,-6.496063,-5.440875,-9.84252,-9.84252,-4.92126,-5.440875,-4.92126,5.440875,-6.496063,-7.641697,-4.92126,-9.84252,-4.92126,-7.641697,4.92126,9.84252,4.92126,7.641697,8.526513E-14,9.84252,3.346457,7.641697,3.346457,5.440875,3.346457,-5.440875,8.526513E-14,-9.84252,4.92126,-5.440875,4.92126,5.440875,3.346457,-7.641697,4.92126,-9.84252,4.92126,-7.641697,7.641697,-10.16118,7.641697,-12.94507,5.440875,-10.16118,5.440875,-12.94507,-9.84252,21.65354,-9.84252,24.6063,-7.641697,21.65354,-7.641697,23.22835,-5.440875,23.22835,5.440875,21.65354,-5.440875,21.65354,5.440875,23.22835,7.641697,23.22835,9.84252,24.6063,9.84252,21.65354,7.641697,21.65354,5.440875,24.63738,7.641697,24.63738,5.440875,19.90478,7.641697,19.90478,-9.84252,31.49606,-9.84252,34.44882,-7.641697,31.49606,-7.641697,33.07087,-5.440875,33.07087,5.440875,31.49606,-5.440875,31.49606,5.440875,33.07087,7.641697,33.07087,9.84252,34.44882,9.84252,31.49606,7.641697,31.49606,-14.76378,9.84252,-14.76378,7.641697,-19.68504,9.84252,-16.33858,7.641697,-16.33858,5.440875,-16.33858,-5.440875,-19.68504,-9.84252,-14.76378,-5.440875,-14.76378,5.440875,-16.33858,-7.641697,-14.76378,-9.84252,-14.76378,-7.641697,5.440875,-3.201468,7.641697,-3.201468,5.440875,-7.934072,7.641697,-7.934072,19.68504,9.84252,19.68504,7.641697,14.76378,9.84252,18.11024,7.641697,18.11024,5.440875,18.11024,-5.440875,14.76378,-9.84252,19.68504,-5.440875,19.68504,5.440875,18.11024,-7.641697,19.68504,-7.641697,19.68504,-9.84252,5.440875,12.94507,5.440875,17.67767,7.641697,12.94507,7.641697,17.67767,5.440875,-0.9743598,5.440875,3.758245,7.641697,-0.9743598,7.641697,3.758245,14.76378,9.84252,14.76378,7.641697,9.84252,9.84252,13.18898,7.641697,13.18898,5.440875,13.18898,-5.440875,9.84252,-9.84252,14.76378,-5.440875,14.76378,5.440875,13.18898,-7.641697,14.76378,-7.641697,14.76378,-9.84252,5.440875,26.86449,5.440875,31.59709,7.641697,26.86449,7.641697,31.59709,-9.84252,11.81102,-9.84252,14.76378,-7.641697,11.81102,-7.641697,13.38583,-5.440875,13.38583,5.440875,11.81102,-5.440875,11.81102,5.440875,13.38583,7.641697,13.38583,9.84252,14.76378,9.84252,11.81102,7.641697,11.81102,-18.30709,-6.454785E-18,-16.33858,1.968504,-15.5232,1.325813E-15,-14.76378,1.968504,19.68504,35.20824,-9.84252,6.889764,-4.92126,11.81102,-14.76378,3.543307,-11.41732,6.889764,-9.84252,8.464567,-6.496063,11.81102,1.136868E-13,16.73228,-4.92126,13.38583,-1.574803,16.73228,4.92126,21.65354,1.136868E-13,18.30709,3.346457,21.65354,9.84252,26.5748,4.92126,23.22835,8.267716,26.5748,14.76378,31.49606,9.84252,28.14961,13.18898,31.49606,14.76378,33.07087,18.11024,36.41732,19.68504,36.41732,-18.30709,-6.454785E-18,-16.33858,1.968504,-15.5232,1.325813E-15,-14.76378,1.968504,19.68504,35.20824,-9.84252,6.889764,-4.92126,11.81102,-14.76378,3.543307,-11.41732,6.889764,-9.84252,8.464567,-6.496063,11.81102,1.136868E-13,16.73228,-4.92126,13.38583,-1.574803,16.73228,4.92126,21.65354,1.136868E-13,18.30709,3.346457,21.65354,9.84252,26.5748,4.92126,23.22835,8.267716,26.5748,14.76378,31.49606,9.84252,28.14961,13.18898,31.49606,14.76378,33.07087,18.11024,36.41732,19.68504,36.41732,-4.92126,23.22835,-9.84252,26.5748,-8.267716,26.5748,-4.92126,21.65354,-19.68504,35.20824,-14.76378,31.49606,-14.76378,33.07087,-9.84252,28.14961,-13.18898,31.49606,-18.11024,36.41732,-19.68504,36.41732,-1.136868E-13,16.73228,-1.136868E-13,18.30709,-3.346457,21.65354,4.92126,11.81102,4.92126,13.38583,1.574803,16.73228,9.84252,6.889764,9.84252,8.464567,6.496063,11.81102,14.76378,1.968504,15.5232,1.325813E-15,14.76378,3.543307,11.41732,6.889764,16.33858,1.968504,18.30709,-6.454785E-18,5.440875,10.71796,7.641697,10.71796,5.440875,5.985353,7.641697,5.985353,-7.641697,19.90478,-7.641697,24.63738,-5.440875,19.90478,-5.440875,24.63738,9.84252,9.84252,9.84252,7.641697,4.92126,9.84252,8.267716,7.641697,8.267716,5.440875,8.267716,-5.440875,4.92126,-9.84252,9.84252,-5.440875,9.84252,5.440875,8.267716,-7.641697,9.84252,-9.84252,9.84252,-7.641697,-9.84252,26.5748,-9.84252,29.52756,-7.641697,26.5748,-7.641697,28.14961,-5.440875,28.14961,5.440875,26.5748,-5.440875,26.5748,5.440875,28.14961,7.641697,28.14961,9.84252,29.52756,9.84252,26.5748,7.641697,26.5748,1.136868E-13,9.84252,1.136868E-13,7.641697,-4.92126,9.84252,-1.574803,7.641697,-1.574803,5.440875,-1.574803,-5.440875,-4.92126,-9.84252,1.136868E-13,-5.440875,1.136868E-13,5.440875,-1.574803,-7.641697,1.136868E-13,-9.84252,1.136868E-13,-7.641697,-9.84252,16.73228,-9.84252,19.68504,-7.641697,16.73228,-7.641697,18.30709,-5.440875,18.30709,5.440875,16.73228,-5.440875,16.73228,5.440875,18.30709,7.641697,18.30709,9.84252,19.68504,9.84252,16.73228,7.641697,16.73228,-7.641697,31.59709,-5.440875,31.59709,-7.641697,26.86449,-5.440875,26.86449,-4.92126,23.22835,-9.84252,26.5748,-8.267716,26.5748,-4.92126,21.65354,-19.68504,35.20824,-14.76378,31.49606,-14.76378,33.07087,-9.84252,28.14961,-13.18898,31.49606,-18.11024,36.41732,-19.68504,36.41732,-1.136868E-13,16.73228,-1.136868E-13,18.30709,-3.346457,21.65354,4.92126,11.81102,4.92126,13.38583,1.574803,16.73228,9.84252,6.889764,9.84252,8.464567,6.496063,11.81102,14.76378,1.968504,15.5232,1.325813E-15,14.76378,3.543307,11.41732,6.889764,16.33858,1.968504,18.30709,-6.454785E-18,-7.641697,5.985353,-7.641697,10.71796,-5.440875,5.985353,-5.440875,10.71796,-7.641697,12.94507,-7.641697,17.67767,-5.440875,12.94507,-5.440875,17.67767,-9.84252,9.84252,-9.84252,7.641697,-14.76378,9.84252,-11.41732,7.641697,-11.41732,5.440875,-11.41732,-5.440875,-14.76378,-9.84252,-9.84252,-5.440875,-9.84252,5.440875,-11.41732,-7.641697,-9.84252,-9.84252,-9.84252,-7.641697,-9.84252,6.889764,-9.84252,9.84252,-7.641697,6.889764,-7.641697,8.464567,-5.440875,8.464567,5.440875,6.889764,-5.440875,6.889764,5.440875,8.464567,7.641697,8.464567,9.84252,9.84252,9.84252,6.889764,7.641697,6.889764,-7.641697,-7.934072,-7.641697,-3.201468,-5.440875,-7.934072,-5.440875,-3.201468,-7.641697,-0.9743598,-7.641697,3.758245,-5.440875,-0.9743598,-5.440875,3.758245,-7.641697,-10.16118,-5.440875,-10.16118,-7.641697,-12.94507,-5.440875,-12.94507,-9.84252,1.968504,-9.84252,4.92126,-7.641697,1.968504,-7.641697,3.543307,-5.440875,3.543307,5.440875,1.968504,-5.440875,1.968504,5.440875,3.543307,7.641697,3.543307,9.84252,4.92126,9.84252,1.968504,7.641697,1.968504,14.76378,-9.84252,14.76378,9.84252,20.47244,-9.84252,20.47244,9.84252 + } + UVIndex: *1296 { + a: 0,2,1,2,3,1,3,4,1,5,1,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,25,26,27,28,30,29,31,29,30,32,31,30,31,32,33,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,52,53,51,53,54,51,55,51,54,56,58,57,59,57,58,60,62,61,63,61,62,64,63,62,63,64,65,66,68,67,69,67,68,70,72,71,72,73,71,73,74,71,75,71,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,87,88,89,90,92,91,93,91,92,94,96,95,96,97,95,97,98,95,99,95,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,119,118,119,120,121,122,124,123,125,123,124,126,128,127,128,129,127,129,130,127,131,127,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,150,151,149,151,152,149,153,149,152,153,152,154,149,153,155,153,154,155,156,149,155,157,156,155,154,158,155,158,159,155,155,159,160,161,160,159,159,162,161,159,158,162,163,162,158,164,163,158,165,164,158,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,184,185,183,185,186,183,187,183,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,203,202,203,204,205,206,208,207,209,207,208,210,209,208,209,210,211,212,214,213,215,213,214,216,218,217,218,219,217,219,220,217,221,217,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,241,240,241,242,243,244,246,245,246,247,245,247,248,245,249,245,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,265,264,267,266,264,264,268,267,267,269,266,270,266,269,267,268,271,268,272,271,273,271,272,274,276,275,277,275,276,278,277,276,279,278,276,276,280,279,279,281,278,282,278,281,279,280,283,280,284,283,285,283,284,286,288,287,289,287,288,290,292,291,292,293,291,293,294,291,294,295,291,294,296,295,295,297,291,297,298,291,291,298,299,300,299,298,298,301,300,302,304,303,305,303,304,306,308,307,308,309,307,309,310,307,310,311,307,310,312,311,311,313,307,313,314,307,307,314,315,316,315,314,314,317,316,318,320,319,321,319,320,322,321,320,323,322,320,320,324,323,323,325,322,326,322,325,323,324,327,324,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,337,336,339,338,336,336,340,339,339,341,338,342,338,341,339,340,343,343,340,344,345,344,340,346,348,347,349,347,348,350,352,351,353,351,352,354,356,355,357,355,356,358,357,356,359,358,356,356,360,359,359,361,358,362,358,361,359,360,363,363,360,364,365,364,360,366,368,367,369,367,368,370,372,371,372,373,371,373,374,371,374,375,371,374,376,375,375,377,371,377,378,371,371,378,379,380,379,378,378,381,380,382,384,383,385,383,384,386,385,384,387,385,386,388,387,386,389,385,387,387,390,389,391,387,388,388,392,391,393,388,386,394,388,393,393,395,394,396,393,386,397,393,396,396,398,397,399,396,386,400,396,399,399,401,400,402,399,386,403,399,402,402,404,403,405,402,386,406,405,386,407,406,386,408,410,409,411,409,410,412,411,410,413,411,412,414,413,412,415,411,413,413,416,415,417,413,414,414,418,417,419,414,412,420,414,419,419,421,420,422,419,412,423,419,422,422,424,423,425,422,412,426,422,425,425,427,426,428,425,412,429,425,428,428,430,429,431,428,412,432,431,412,433,432,412,434,436,435,434,435,437,435,438,437,439,438,435,440,438,439,441,439,435,441,442,439,443,438,440,444,438,443,437,438,445,446,437,445,447,437,446,445,438,448,449,445,448,450,445,449,448,438,451,452,448,451,453,448,452,451,438,454,438,455,454,456,451,454,457,451,456,454,455,458,459,458,455,460,462,461,463,461,462,464,466,465,467,465,466,468,470,469,471,469,470,472,471,470,473,472,470,470,474,473,473,475,472,476,472,475,473,474,477,474,478,477,479,477,478,480,482,481,482,483,481,483,484,481,484,485,481,484,486,485,485,487,481,487,488,481,481,488,489,490,489,488,488,491,490,492,494,493,495,493,494,496,495,494,497,496,494,494,498,497,497,499,496,500,496,499,497,498,501,498,502,501,503,501,502,504,506,505,506,507,505,507,508,505,508,509,505,508,510,509,509,511,505,511,512,505,505,512,513,514,513,512,512,515,514,516,518,517,519,517,518,520,522,521,520,521,523,521,524,523,525,524,521,526,524,525,527,525,521,527,528,525,529,524,526,530,524,529,523,524,531,532,523,531,533,523,532,531,524,534,535,531,534,536,531,535,534,524,537,538,534,537,539,534,538,537,524,540,524,541,540,542,537,540,543,537,542,540,541,544,545,544,541,546,548,547,549,547,548,550,552,551,553,551,552,554,556,555,557,555,556,558,557,556,559,558,556,556,560,559,559,561,558,562,558,561,559,560,563,560,564,563,565,563,564,566,568,567,568,569,567,569,570,567,570,571,567,570,572,571,571,573,567,573,574,567,567,574,575,576,575,574,574,577,576,578,580,579,581,579,580,582,584,583,585,583,584,586,588,587,589,587,588,590,592,591,592,593,591,593,594,591,594,595,591,594,596,595,595,597,591,597,598,591,591,598,599,600,599,598,598,601,600,602,604,603,605,603,604 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *432 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsWood, Model::RootNode + C: "OO",4754271448849554906,0 + + ;Geometry::, Model::Mesh stairsWood + C: "OO",5049492983846669985,4754271448849554906 + + ;Material::wood, Model::Mesh stairsWood + C: "OO",7178,4754271448849554906 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWood.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWood.fbx.import new file mode 100644 index 0000000..edf5590 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWood.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dqqntqwfvt783" +path="res://.godot/imported/stairsWood.fbx-1b5c96c706697c72e937654624deebaf.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWood.fbx" +dest_files=["res://.godot/imported/stairsWood.fbx-1b5c96c706697c72e937654624deebaf.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWoodHandrail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWoodHandrail.fbx new file mode 100644 index 0000000..bb2764b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWoodHandrail.fbx @@ -0,0 +1,423 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 179 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stairsWoodHandrail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stairsWoodHandrail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4865128757738570425, "Model::stairsWoodHandrail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5309085917197888482, "Geometry::", "Mesh" { + Vertices: *1824 { + a: -3.942893,3.367565E-16,1.940991,-3.942893,3.367565E-16,1.381982,-4.65,-1.639515E-18,1.940991,-4.65,-1.639515E-18,1.381982,-4.65,-1.639515E-18,1.940991,-3.942893,3.367565E-16,1.381982,-3.942893,3.367565E-16,-1.381982,-3.942893,3.367565E-16,-1.940991,-4.65,-1.639515E-18,-1.381982,-4.65,-1.639515E-18,-1.940991,-2.5,3,-2.5,-2.5,3.375,-2.5,-2.5,3,2.5,-2.5,3.375,2.5,2.5,7.5,-2.5,2.5,7.5,2.5,1.05,7.5,-2.5,1.05,7.5,2.5,1.25,6.75,-2.5,1.25,7.125,-2.5,1.25,6.75,2.5,1.25,7.125,2.5,1.05,7.125,-2.5,1.25,7.125,-2.5,1.05,7.5,-2.5,2.5,7.5,-2.5,2.5,6.75,-2.5,1.25,6.75,-2.5,3.75,9.625,2.5,3.75,9.625,-2.5,3.55,9.625,2.5,3.55,9.625,-2.5,5,9.25,2.5,3.75,9.25,2.5,5,10,2.5,3.75,9.625,2.5,3.55,10,2.5,3.55,9.625,2.5,2.3,8.375,-2.5,2.3,8.75,-2.5,2.3,8.375,2.5,2.3,8.75,2.5,3.75,8.4,-1.940991,4.6,9.25,-1.940991,3.75,8.4,-1.381982,4.6,9.25,-1.381982,-2.7,3.375,-2.5,-2.5,3.375,-2.5,-2.7,3.75,-2.5,-1.25,3.75,-2.5,-1.25,3,-2.5,-2.5,3,-2.5,-2.7,3.375,-2.5,-2.7,3.75,-2.5,-2.7,3.375,2.5,-2.7,3.75,2.5,-2.5,3.375,2.5,-2.5,3.375,-2.5,-2.7,3.375,2.5,-2.7,3.375,-2.5,5,10,-2.5,5,10,2.5,3.55,10,-2.5,3.55,10,2.5,2.5,8,-2.5,2.5,8.375,-2.5,2.5,8,2.5,2.5,8.375,2.5,-0.2,5.875,-2.5,3.609557E-14,5.875,-2.5,-0.2,6.25,-2.5,1.25,6.25,-2.5,1.25,5.5,-2.5,2.165734E-14,5.5,-2.5,5,9.25,-1.381982,5,9.65,-1.381982,5,8.942893,-1.381982,5,8.942893,-1.940991,5,9.25,-1.940991,5,9.65,-1.940991,5,9.25,-2.5,5,10,-2.5,5,10,2.5,5,9.25,-1.381982,5,9.65,1.381982,5,9.25,1.381982,5,9.65,1.940991,5,8.942893,1.381982,5,8.942893,1.940991,5,9.25,1.940991,5,9.25,1.940991,5,9.25,2.5,3.609557E-14,5.875,2.5,3.609557E-14,5.875,-2.5,-0.2,5.875,2.5,-0.2,5.875,-2.5,-1.25,3,2.5,-2.5,3,2.5,-1.25,3.75,2.5,-2.5,3.375,2.5,-2.7,3.75,2.5,-2.7,3.375,2.5,1.05,7.125,-2.5,1.05,7.5,-2.5,1.05,7.125,2.5,1.05,7.5,2.5,1.25,7.125,2.5,1.25,7.125,-2.5,1.05,7.125,2.5,1.05,7.125,-2.5,3.75,9.25,-2.5,3.75,9.625,-2.5,3.75,9.25,2.5,3.75,9.625,2.5,2.5,6.75,2.5,1.25,6.75,2.5,2.5,7.5,2.5,1.25,7.125,2.5,1.05,7.5,2.5,1.05,7.125,2.5,-5.2,0.875,-2.5,-5,0.875,-2.5,-5.2,1.25,-2.5,-3.75,1.25,-2.5,-3.75,0.5,-2.5,-5,0.5,-2.5,3.75,8,2.5,2.5,8,2.5,3.75,8.75,2.5,2.5,8.375,2.5,2.3,8.75,2.5,2.3,8.375,2.5,2.3,8.375,-2.5,2.5,8.375,-2.5,2.3,8.75,-2.5,3.75,8.75,-2.5,3.75,8,-2.5,2.5,8,-2.5,3.75,8.4,1.381982,4.6,9.25,1.381982,3.75,8.4,1.940991,4.6,9.25,1.940991,-1.25,3.75,-2.5,-1.25,3.75,2.5,-2.7,3.75,-2.5,-2.7,3.75,2.5,3.55,9.625,-2.5,3.75,9.625,-2.5,3.55,10,-2.5,5,10,-2.5,5,9.25,-2.5,3.75,9.25,-2.5,-3.75,0.5,2.5,-5,0.5,2.5,-3.75,1.25,2.5,-5,0.875,2.5,-5.2,1.25,2.5,-5.2,0.875,2.5,2.5,8.375,2.5,2.5,8.375,-2.5,2.3,8.375,2.5,2.3,8.375,-2.5,-0.2,5.875,-2.5,-0.2,6.25,-2.5,-0.2,5.875,2.5,-0.2,6.25,2.5,-5,0.875,2.5,-5,0.875,-2.5,-5.2,0.875,2.5,-5.2,0.875,-2.5,-5.2,0.875,-2.5,-5.2,1.25,-2.5,-5.2,0.875,2.5,-5.2,1.25,2.5,1.25,6.25,-2.5,1.25,6.25,2.5,-0.2,6.25,-2.5,-0.2,6.25,2.5,2.165734E-14,5.5,-2.5,3.609557E-14,5.875,-2.5,2.165734E-14,5.5,2.5,3.609557E-14,5.875,2.5,3.75,8.75,-2.5,3.75,8.75,2.5,2.3,8.75,-2.5,2.3,8.75,2.5,-5,0.5,-2.5,-5,0.875,-2.5,-5,0.5,2.5,-5,0.875,2.5,1.25,5.5,2.5,2.165734E-14,5.5,2.5,1.25,6.25,2.5,3.609557E-14,5.875,2.5,-0.2,6.25,2.5,-0.2,5.875,2.5,5,8.942893,1.381982,-3.942893,3.367565E-16,1.381982,5,8.942893,1.940991,-3.942893,3.367565E-16,1.940991,3.55,9.625,-2.5,3.55,10,-2.5,3.55,9.625,2.5,3.55,10,2.5,5,8.942893,-1.940991,-3.942893,3.367565E-16,-1.940991,5,8.942893,-1.381982,-3.942893,3.367565E-16,-1.381982,-1.25,4.625,2.5,-1.25,4.625,-2.5,-1.45,4.625,2.5,-1.45,4.625,-2.5,-2.9,1.75,1.381982,-2.9,1.75,1.940991,-3.75,0.9,1.381982,-3.75,0.9,1.940991,-1.25,4.25,-2.5,-1.25,4.625,-2.5,-1.25,4.25,2.5,-1.25,4.625,2.5,2.887646E-14,4.25,2.5,2.887646E-14,4.25,1.940991,-1.25,4.25,2.5,-0.4,4.25,1.940991,-0.4,4.25,1.381982,-0.4,4.25,-1.381982,-1.25,4.25,-2.5,2.887646E-14,4.25,-1.381982,2.887646E-14,4.25,1.381982,-0.4,4.25,-1.940991,2.887646E-14,4.25,-2.5,2.887646E-14,4.25,-1.940991,2.5,6.75,2.5,2.5,6.75,1.940991,1.25,6.75,2.5,2.1,6.75,1.940991,2.1,6.75,1.381982,2.1,6.75,-1.381982,1.25,6.75,-2.5,2.5,6.75,-1.381982,2.5,6.75,1.381982,2.1,6.75,-1.940991,2.5,6.75,-2.5,2.5,6.75,-1.940991,1.25,5.5,2.5,1.25,5.5,1.940991,2.165734E-14,5.5,2.5,0.85,5.5,1.940991,0.85,5.5,1.381982,0.85,5.5,-1.381982,2.165734E-14,5.5,-2.5,1.25,5.5,-1.381982,1.25,5.5,1.381982,0.85,5.5,-1.940991,1.25,5.5,-2.5,1.25,5.5,-1.940991,-4.65,-1.639515E-18,1.940991,-4.15,0.5,1.940991,-3.942893,3.367565E-16,1.940991,-3.75,0.5,1.940991,5,8.942893,1.940991,-2.5,1.75,1.940991,-1.25,3,1.940991,-3.75,0.9,1.940991,-2.9,1.75,1.940991,-2.5,2.15,1.940991,-1.65,3,1.940991,2.887646E-14,4.25,1.940991,-1.25,3.4,1.940991,-0.4,4.25,1.940991,1.25,5.5,1.940991,2.887646E-14,4.65,1.940991,0.85,5.5,1.940991,2.5,6.75,1.940991,1.25,5.9,1.940991,2.1,6.75,1.940991,3.75,8,1.940991,2.5,7.15,1.940991,3.35,8,1.940991,3.75,8.4,1.940991,4.6,9.25,1.940991,5,9.25,1.940991,3.35,8,-1.940991,3.35,8,-1.381982,2.5,7.15,-1.940991,2.5,7.15,-1.381982,5,9.25,2.5,5,9.25,1.940991,3.75,9.25,2.5,4.6,9.25,1.940991,4.6,9.25,1.381982,4.6,9.25,-1.381982,3.75,9.25,-2.5,5,9.25,-1.381982,5,9.25,1.381982,4.6,9.25,-1.940991,5,9.25,-1.940991,5,9.25,-2.5,1.25,5.9,-1.940991,2.5,6.75,-1.940991,2.1,6.75,-1.940991,1.25,5.5,-1.940991,5,8.942893,-1.940991,3.75,8,-1.940991,3.75,8.4,-1.940991,2.5,7.15,-1.940991,3.35,8,-1.940991,4.6,9.25,-1.940991,5,9.25,-1.940991,2.887646E-14,4.25,-1.940991,2.887646E-14,4.65,-1.940991,0.85,5.5,-1.940991,-1.25,3,-1.940991,-1.25,3.4,-1.940991,-0.4,4.25,-1.940991,-2.5,1.75,-1.940991,-2.5,2.15,-1.940991,-1.65,3,-1.940991,-3.75,0.5,-1.940991,-3.942893,3.367565E-16,-1.940991,-3.75,0.9,-1.940991,-2.9,1.75,-1.940991,-4.15,0.5,-1.940991,-4.65,-1.639515E-18,-1.940991,-1.25,3.4,-1.940991,-0.4,4.25,-1.940991,-1.25,3.4,-1.381982,-0.4,4.25,-1.381982,-2.5,1.75,2.5,-2.5,1.75,1.940991,-3.75,1.75,2.5,-2.9,1.75,1.940991,-2.9,1.75,1.381982,-2.9,1.75,-1.381982,-3.75,1.75,-2.5,-2.5,1.75,-1.381982,-2.5,1.75,1.381982,-2.9,1.75,-1.940991,-2.5,1.75,-2.5,-2.5,1.75,-1.940991,-3.75,0.9,-1.940991,-2.9,1.75,-1.940991,-3.75,0.9,-1.381982,-2.9,1.75,-1.381982,-2.5,2.15,-1.940991,-1.65,3,-1.940991,-2.5,2.15,-1.381982,-1.65,3,-1.381982,-4.15,0.5,-1.940991,-4.15,0.5,-1.381982,-4.65,-1.639515E-18,-1.940991,-4.65,-1.639515E-18,-1.381982,-3.75,0.5,2.5,-3.75,1.25,2.5,-3.75,0.5,1.940991,-3.75,0.9,1.940991,-3.75,0.9,1.381982,-3.75,0.5,-1.381982,-3.75,0.5,1.381982,-3.75,0.9,-1.381982,-3.75,0.9,-1.940991,-3.75,1.25,-2.5,-3.75,0.5,-2.5,-3.75,0.5,-1.940991,-1.45,4.625,-2.5,-1.45,5,-2.5,-1.45,4.625,2.5,-1.45,5,2.5,-3.75,1.25,-2.5,-3.75,1.25,2.5,-5.2,1.25,-2.5,-5.2,1.25,2.5,-2.5,1.75,2.5,-2.5,2.5,2.5,-2.5,1.75,1.940991,-2.5,2.15,1.940991,-2.5,2.15,1.381982,-2.5,1.75,-1.381982,-2.5,1.75,1.381982,-2.5,2.15,-1.381982,-2.5,2.15,-1.940991,-2.5,2.5,-2.5,-2.5,1.75,-2.5,-2.5,1.75,-1.940991,-4.15,0.5,1.940991,-4.65,-1.639515E-18,1.940991,-4.15,0.5,1.381982,-4.65,-1.639515E-18,1.381982,2.5,7.15,1.381982,3.35,8,1.381982,2.5,7.15,1.940991,3.35,8,1.940991,2.887646E-14,4.65,-1.940991,0.85,5.5,-1.940991,2.887646E-14,4.65,-1.381982,0.85,5.5,-1.381982,-4.65,-1.639515E-18,-1.381982,-4.15,0.5,-1.381982,-3.942893,3.367565E-16,-1.381982,-3.75,0.5,-1.381982,5,8.942893,-1.381982,-2.5,1.75,-1.381982,-1.25,3,-1.381982,-3.75,0.9,-1.381982,-2.9,1.75,-1.381982,-2.5,2.15,-1.381982,-1.65,3,-1.381982,2.887646E-14,4.25,-1.381982,-1.25,3.4,-1.381982,-0.4,4.25,-1.381982,1.25,5.5,-1.381982,2.887646E-14,4.65,-1.381982,0.85,5.5,-1.381982,2.5,6.75,-1.381982,1.25,5.9,-1.381982,2.1,6.75,-1.381982,3.75,8,-1.381982,2.5,7.15,-1.381982,3.35,8,-1.381982,3.75,8.4,-1.381982,4.6,9.25,-1.381982,5,9.25,-1.381982,-2.5,1.75,2.5,-3.75,1.75,2.5,-2.5,2.5,2.5,-3.75,2.125,2.5,-3.95,2.5,2.5,-3.95,2.125,2.5,2.5,6.75,2.5,2.5,7.5,2.5,2.5,6.75,1.940991,2.5,7.15,1.940991,2.5,7.15,1.381982,2.5,6.75,-1.381982,2.5,6.75,1.381982,2.5,7.15,-1.381982,2.5,7.15,-1.940991,2.5,7.5,-2.5,2.5,6.75,-2.5,2.5,6.75,-1.940991,2.887646E-14,4.25,2.5,-1.25,4.25,2.5,2.887646E-14,5,2.5,-1.25,4.625,2.5,-1.45,5,2.5,-1.45,4.625,2.5,-1.45,4.625,-2.5,-1.25,4.625,-2.5,-1.45,5,-2.5,2.887646E-14,5,-2.5,2.887646E-14,4.25,-2.5,-1.25,4.25,-2.5,-2.5,2.5,-2.5,-2.5,2.5,2.5,-3.95,2.5,-2.5,-3.95,2.5,2.5,-2.5,2.15,1.381982,-1.65,3,1.381982,-2.5,2.15,1.940991,-1.65,3,1.940991,-3.95,2.125,-2.5,-3.95,2.5,-2.5,-3.95,2.125,2.5,-3.95,2.5,2.5,1.25,5.5,2.5,1.25,6.25,2.5,1.25,5.5,1.940991,1.25,5.9,1.940991,1.25,5.9,1.381982,1.25,5.5,-1.381982,1.25,5.5,1.381982,1.25,5.9,-1.381982,1.25,5.9,-1.940991,1.25,6.25,-2.5,1.25,5.5,-2.5,1.25,5.5,-1.940991,3.75,8,2.5,3.75,8,1.940991,2.5,8,2.5,3.35,8,1.940991,3.35,8,1.381982,3.35,8,-1.381982,2.5,8,-2.5,3.75,8,-1.381982,3.75,8,1.381982,3.35,8,-1.940991,3.75,8,-1.940991,3.75,8,-2.5,-0.4,4.25,1.381982,-0.4,4.25,1.940991,-1.25,3.4,1.381982,-1.25,3.4,1.940991,-3.75,1.75,-2.5,-3.75,2.125,-2.5,-3.75,1.75,2.5,-3.75,2.125,2.5,2.887646E-14,5,-2.5,2.887646E-14,5,2.5,-1.45,5,-2.5,-1.45,5,2.5,2.1,6.75,1.381982,2.1,6.75,1.940991,1.25,5.9,1.381982,1.25,5.9,1.940991,-3.75,2.125,2.5,-3.75,2.125,-2.5,-3.95,2.125,2.5,-3.95,2.125,-2.5,-3.95,2.125,-2.5,-3.75,2.125,-2.5,-3.95,2.5,-2.5,-2.5,2.5,-2.5,-2.5,1.75,-2.5,-3.75,1.75,-2.5,-3.75,0.5,2.5,-3.75,0.5,1.940991,-5,0.5,2.5,-4.15,0.5,1.940991,-4.15,0.5,1.381982,-4.15,0.5,-1.381982,-5,0.5,-2.5,-3.75,0.5,-1.381982,-3.75,0.5,1.381982,-4.15,0.5,-1.940991,-3.75,0.5,-2.5,-3.75,0.5,-1.940991,3.75,8,2.5,3.75,8.75,2.5,3.75,8,1.940991,3.75,8.4,1.940991,3.75,8.4,1.381982,3.75,8,-1.381982,3.75,8,1.381982,3.75,8.4,-1.381982,3.75,8.4,-1.940991,3.75,8.75,-2.5,3.75,8,-2.5,3.75,8,-1.940991,2.887646E-14,4.65,1.381982,0.85,5.5,1.381982,2.887646E-14,4.65,1.940991,0.85,5.5,1.940991,-1.25,3,2.5,-1.25,3.75,2.5,-1.25,3,1.940991,-1.25,3.4,1.940991,-1.25,3.4,1.381982,-1.25,3,-1.381982,-1.25,3,1.381982,-1.25,3.4,-1.381982,-1.25,3.4,-1.940991,-1.25,3.75,-2.5,-1.25,3,-2.5,-1.25,3,-1.940991,1.25,5.9,1.381982,2.5,6.75,1.381982,2.1,6.75,1.381982,1.25,5.5,1.381982,5,8.942893,1.381982,3.75,8,1.381982,3.75,8.4,1.381982,2.5,7.15,1.381982,3.35,8,1.381982,4.6,9.25,1.381982,5,9.25,1.381982,2.887646E-14,4.25,1.381982,2.887646E-14,4.65,1.381982,0.85,5.5,1.381982,-1.25,3,1.381982,-1.25,3.4,1.381982,-0.4,4.25,1.381982,-2.5,1.75,1.381982,-2.5,2.15,1.381982,-1.65,3,1.381982,-3.75,0.5,1.381982,-3.942893,3.367565E-16,1.381982,-3.75,0.9,1.381982,-2.9,1.75,1.381982,-4.15,0.5,1.381982,-4.65,-1.639515E-18,1.381982,1.25,5.9,-1.940991,2.1,6.75,-1.940991,1.25,5.9,-1.381982,2.1,6.75,-1.381982,2.887646E-14,4.25,2.5,2.887646E-14,5,2.5,2.887646E-14,4.25,1.940991,2.887646E-14,4.65,1.940991,2.887646E-14,4.65,1.381982,2.887646E-14,4.25,-1.381982,2.887646E-14,4.25,1.381982,2.887646E-14,4.65,-1.381982,2.887646E-14,4.65,-1.940991,2.887646E-14,5,-2.5,2.887646E-14,4.25,-2.5,2.887646E-14,4.25,-1.940991,-1.25,3,2.5,-1.25,3,1.940991,-2.5,3,2.5,-1.65,3,1.940991,-1.65,3,1.381982,-1.65,3,-1.381982,-2.5,3,-2.5,-1.25,3,-1.381982,-1.25,3,1.381982,-1.65,3,-1.940991,-1.25,3,-2.5,-1.25,3,-1.940991 + } + PolygonVertexIndex: *1296 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,24,25,-24,25,26,-24,27,23,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,35,36,-38,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,48,49,-48,49,50,-48,51,47,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,70,71,-70,71,72,-70,73,69,-73,74,76,-76,76,77,-76,77,78,-76,79,75,-79,79,78,-81,80,81,-80,82,79,-82,75,79,-83,83,75,-83,84,83,-83,84,85,-84,84,86,-86,86,84,-83,87,85,-87,88,87,-87,89,88,-87,90,86,-83,91,90,-83,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,99,-99,99,100,-102,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,117,-117,117,118,-120,120,122,-122,122,123,-122,123,124,-122,125,121,-125,126,128,-128,129,127,-129,130,129,-129,129,130,-132,132,134,-134,134,135,-134,135,136,-134,137,133,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,148,149,-148,149,150,-148,151,147,-151,152,154,-154,155,153,-155,156,155,-155,155,156,-158,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,193,-193,193,194,-196,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,223,-223,225,224,-223,222,226,-226,225,227,-225,228,224,-228,225,226,-230,226,230,-230,231,229,-231,232,234,-234,235,233,-235,236,235,-235,237,236,-235,234,238,-238,237,239,-237,240,236,-240,237,238,-242,238,242,-242,243,241,-243,244,246,-246,247,245,-247,248,247,-247,249,248,-247,246,250,-250,249,251,-249,252,248,-252,249,250,-254,250,254,-254,255,253,-255,256,258,-258,259,257,-259,260,259,-259,261,259,-261,262,261,-261,263,259,-262,261,264,-264,265,261,-263,262,266,-266,267,262,-261,268,262,-268,267,269,-269,270,267,-261,271,267,-271,270,272,-272,273,270,-261,274,270,-274,273,275,-275,276,273,-261,277,273,-277,276,278,-278,279,276,-261,280,279,-261,281,280,-261,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,289,-289,291,290,-289,288,292,-292,291,293,-291,294,290,-294,291,292,-296,295,292,-297,297,296,-293,298,300,-300,298,299,-302,299,302,-302,303,302,-300,304,302,-304,305,303,-300,305,306,-304,307,302,-305,308,302,-308,301,302,-310,310,301,-310,311,301,-311,309,302,-313,313,309,-313,314,309,-314,312,302,-316,316,312,-316,317,312,-317,315,302,-319,302,319,-319,320,315,-319,321,315,-321,318,319,-323,323,322,-320,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,331,-331,333,332,-331,330,334,-334,333,335,-333,336,332,-336,333,334,-338,334,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,354,355,-354,355,356,-354,356,357,-354,356,358,-358,357,359,-354,359,360,-354,353,360,-362,362,361,-361,360,363,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,374,375,-374,375,376,-374,376,377,-374,376,378,-378,377,379,-374,379,380,-374,373,380,-382,382,381,-381,380,383,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,399,-399,401,399,-401,402,401,-401,403,399,-402,401,404,-404,405,401,-403,402,406,-406,407,402,-401,408,402,-408,407,409,-409,410,407,-401,411,407,-411,410,412,-412,413,410,-401,414,410,-414,413,415,-415,416,413,-401,417,413,-417,416,418,-418,419,416,-401,420,419,-401,421,420,-401,422,424,-424,425,423,-425,426,425,-425,425,426,-428,428,430,-430,430,431,-430,431,432,-430,432,433,-430,432,434,-434,433,435,-430,435,436,-430,429,436,-438,438,437,-437,436,439,-439,440,442,-442,443,441,-443,444,443,-443,443,444,-446,446,448,-448,448,449,-448,449,450,-448,451,447,-451,452,454,-454,455,453,-455,456,458,-458,459,457,-459,460,462,-462,463,461,-463,464,466,-466,466,467,-466,467,468,-466,468,469,-466,468,470,-470,469,471,-466,471,472,-466,465,472,-474,474,473,-473,472,475,-475,476,478,-478,479,477,-479,480,479,-479,481,480,-479,478,482,-482,481,483,-481,484,480,-484,481,482,-486,485,482,-487,487,486,-483,488,490,-490,491,489,-491,492,494,-494,495,493,-495,496,498,-498,499,497,-499,500,502,-502,503,501,-503,504,506,-506,507,505,-507,508,510,-510,510,511,-510,511,512,-510,513,509,-513,514,516,-516,517,515,-517,518,517,-517,519,518,-517,516,520,-520,519,521,-519,522,518,-522,519,520,-524,520,524,-524,525,523,-525,526,528,-528,528,529,-528,529,530,-528,530,531,-528,530,532,-532,531,533,-528,533,534,-528,527,534,-536,536,535,-535,534,537,-537,538,540,-540,541,539,-541,542,544,-544,544,545,-544,545,546,-544,546,547,-544,546,548,-548,547,549,-544,549,550,-544,543,550,-552,552,551,-551,550,553,-553,554,556,-556,554,555,-558,555,558,-558,559,558,-556,560,558,-560,561,559,-556,561,562,-560,563,558,-561,564,558,-564,557,558,-566,566,557,-566,567,557,-567,565,558,-569,569,565,-569,570,565,-570,568,558,-572,572,568,-572,573,568,-573,571,558,-575,558,575,-575,576,571,-575,577,571,-577,574,575,-579,579,578,-576,580,582,-582,583,581,-583,584,586,-586,586,587,-586,587,588,-586,588,589,-586,588,590,-590,589,591,-586,591,592,-586,585,592,-594,594,593,-593,592,595,-595,596,598,-598,599,597,-599,600,599,-599,601,600,-599,598,602,-602,601,603,-601,604,600,-604,601,602,-606,602,606,-606,607,605,-607 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3888 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1216 { + a: 9.055119,-9.84252,9.055119,9.84252,9.84252,-9.84252,9.055119,-9.84252,9.055119,9.84252,9.84252,-9.84252,0,0,0,0,0,0,0,0,-9.84252,11.81102,-9.84252,13.2874,9.84252,11.81102,9.84252,13.2874,-9.84252,-9.84252,-9.84252,9.84252,-4.133858,-9.84252,-4.133858,9.84252,-9.84252,26.5748,-9.84252,28.05118,9.84252,26.5748,9.84252,28.05118,-4.133858,28.05118,-4.92126,28.05118,-4.133858,29.52756,-9.84252,29.52756,-9.84252,26.5748,-4.92126,26.5748,14.76378,9.84252,14.76378,-9.84252,13.97638,9.84252,13.97638,-9.84252,19.68504,36.41732,14.76378,36.41732,19.68504,39.37008,14.76378,37.8937,13.97638,39.37008,13.97638,37.8937,-9.84252,32.97244,-9.84252,34.44882,9.84252,32.97244,9.84252,34.44882,-7.641697,33.8242,-7.641697,38.55681,-5.440875,33.8242,-5.440875,38.55681,10.62992,13.2874,9.84252,13.2874,10.62992,14.76378,4.92126,14.76378,4.92126,11.81102,9.84252,11.81102,-9.84252,13.2874,-9.84252,14.76378,9.84252,13.2874,9.84252,14.76378,-9.84252,9.84252,-9.84252,-9.84252,-10.62992,9.84252,-10.62992,-9.84252,-19.68504,-9.84252,-19.68504,9.84252,-13.97638,-9.84252,-13.97638,9.84252,-9.84252,31.49606,-9.84252,32.97244,9.84252,31.49606,9.84252,32.97244,0.7874016,23.12992,-1.421085E-13,23.12992,0.7874016,24.6063,-4.92126,24.6063,-4.92126,21.65354,-8.526513E-14,21.65354,5.440875,36.41732,5.440875,37.99213,5.440875,35.20824,7.641697,35.20824,7.641697,36.41732,7.641697,37.99213,9.84252,36.41732,9.84252,39.37008,-9.84252,39.37008,5.440875,36.41732,-5.440875,37.99213,-5.440875,36.41732,-7.641697,37.99213,-5.440875,35.20824,-7.641697,35.20824,-7.641697,36.41732,-7.641697,36.41732,-9.84252,36.41732,1.032655E-12,9.84252,1.032655E-12,-9.84252,-0.7874016,9.84252,-0.7874016,-9.84252,-4.92126,11.81102,-9.84252,11.81102,-4.92126,14.76378,-9.84252,13.2874,-10.62992,14.76378,-10.62992,13.2874,-9.84252,28.05118,-9.84252,29.52756,9.84252,28.05118,9.84252,29.52756,4.92126,9.84252,4.92126,-9.84252,4.133858,9.84252,4.133858,-9.84252,-9.84252,36.41732,-9.84252,37.8937,9.84252,36.41732,9.84252,37.8937,9.84252,26.5748,4.92126,26.5748,9.84252,29.52756,4.92126,28.05118,4.133858,29.52756,4.133858,28.05118,20.47244,3.444882,19.68504,3.444882,20.47244,4.92126,14.76378,4.92126,14.76378,1.968504,19.68504,1.968504,14.76378,31.49606,9.84252,31.49606,14.76378,34.44882,9.84252,32.97244,9.055119,34.44882,9.055119,32.97244,-9.055119,32.97244,-9.84252,32.97244,-9.055119,34.44882,-14.76378,34.44882,-14.76378,31.49606,-9.84252,31.49606,5.440875,33.8242,5.440875,38.55681,7.641697,33.8242,7.641697,38.55681,4.92126,-9.84252,4.92126,9.84252,10.62992,-9.84252,10.62992,9.84252,-13.97638,37.8937,-14.76378,37.8937,-13.97638,39.37008,-19.68504,39.37008,-19.68504,36.41732,-14.76378,36.41732,-14.76378,1.968504,-19.68504,1.968504,-14.76378,4.92126,-19.68504,3.444882,-20.47244,4.92126,-20.47244,3.444882,9.84252,9.84252,9.84252,-9.84252,9.055119,9.84252,9.055119,-9.84252,-9.84252,23.12992,-9.84252,24.6063,9.84252,23.12992,9.84252,24.6063,-19.68504,9.84252,-19.68504,-9.84252,-20.47244,9.84252,-20.47244,-9.84252,-9.84252,3.444882,-9.84252,4.92126,9.84252,3.444882,9.84252,4.92126,-4.92126,-9.84252,-4.92126,9.84252,0.7874016,-9.84252,0.7874016,9.84252,-9.84252,21.65354,-9.84252,23.12992,9.84252,21.65354,9.84252,23.12992,-14.76378,-9.84252,-14.76378,9.84252,-9.055119,-9.84252,-9.055119,9.84252,-9.84252,1.968504,-9.84252,3.444882,9.84252,1.968504,9.84252,3.444882,4.92126,21.65354,8.526513E-14,21.65354,4.92126,24.6063,1.421085E-13,23.12992,-0.7874016,24.6063,-0.7874016,23.12992,-5.440875,38.81541,-5.440875,-10.97656,-7.641697,38.81541,-7.641697,-10.97656,-9.84252,37.8937,-9.84252,39.37008,9.84252,37.8937,9.84252,39.37008,7.641697,38.81541,7.641697,-10.97656,5.440875,38.81541,5.440875,-10.97656,-4.92126,9.84252,-4.92126,-9.84252,-5.708662,9.84252,-5.708662,-9.84252,5.440875,-3.201468,7.641697,-3.201468,5.440875,-7.934072,7.641697,-7.934072,-9.84252,16.73228,-9.84252,18.20866,9.84252,16.73228,9.84252,18.20866,1.136868E-13,9.84252,1.136868E-13,7.641697,-4.92126,9.84252,-1.574803,7.641697,-1.574803,5.440875,-1.574803,-5.440875,-4.92126,-9.84252,1.136868E-13,-5.440875,1.136868E-13,5.440875,-1.574803,-7.641697,1.136868E-13,-9.84252,1.136868E-13,-7.641697,9.84252,9.84252,9.84252,7.641697,4.92126,9.84252,8.267716,7.641697,8.267716,5.440875,8.267716,-5.440875,4.92126,-9.84252,9.84252,-5.440875,9.84252,5.440875,8.267716,-7.641697,9.84252,-9.84252,9.84252,-7.641697,4.92126,9.84252,4.92126,7.641697,8.526513E-14,9.84252,3.346457,7.641697,3.346457,5.440875,3.346457,-5.440875,8.526513E-14,-9.84252,4.92126,-5.440875,4.92126,5.440875,3.346457,-7.641697,4.92126,-9.84252,4.92126,-7.641697,-18.30709,-6.454785E-18,-16.33858,1.968504,-15.5232,1.325813E-15,-14.76378,1.968504,19.68504,35.20824,-9.84252,6.889764,-4.92126,11.81102,-14.76378,3.543307,-11.41732,6.889764,-9.84252,8.464567,-6.496063,11.81102,1.136868E-13,16.73228,-4.92126,13.38583,-1.574803,16.73228,4.92126,21.65354,1.136868E-13,18.30709,3.346457,21.65354,9.84252,26.5748,4.92126,23.22835,8.267716,26.5748,14.76378,31.49606,9.84252,28.14961,13.18898,31.49606,14.76378,33.07087,18.11024,36.41732,19.68504,36.41732,-7.641697,31.59709,-5.440875,31.59709,-7.641697,26.86449,-5.440875,26.86449,19.68504,9.84252,19.68504,7.641697,14.76378,9.84252,18.11024,7.641697,18.11024,5.440875,18.11024,-5.440875,14.76378,-9.84252,19.68504,-5.440875,19.68504,5.440875,18.11024,-7.641697,19.68504,-7.641697,19.68504,-9.84252,-4.92126,23.22835,-9.84252,26.5748,-8.267716,26.5748,-4.92126,21.65354,-19.68504,35.20824,-14.76378,31.49606,-14.76378,33.07087,-9.84252,28.14961,-13.18898,31.49606,-18.11024,36.41732,-19.68504,36.41732,-1.136868E-13,16.73228,-1.136868E-13,18.30709,-3.346457,21.65354,4.92126,11.81102,4.92126,13.38583,1.574803,16.73228,9.84252,6.889764,9.84252,8.464567,6.496063,11.81102,14.76378,1.968504,15.5232,1.325813E-15,14.76378,3.543307,11.41732,6.889764,16.33858,1.968504,18.30709,-6.454785E-18,-7.641697,5.985353,-7.641697,10.71796,-5.440875,5.985353,-5.440875,10.71796,-9.84252,9.84252,-9.84252,7.641697,-14.76378,9.84252,-11.41732,7.641697,-11.41732,5.440875,-11.41732,-5.440875,-14.76378,-9.84252,-9.84252,-5.440875,-9.84252,5.440875,-11.41732,-7.641697,-9.84252,-9.84252,-9.84252,-7.641697,-7.641697,-7.934072,-7.641697,-3.201468,-5.440875,-7.934072,-5.440875,-3.201468,-7.641697,-0.9743598,-7.641697,3.758245,-5.440875,-0.9743598,-5.440875,3.758245,-7.641697,-10.16118,-5.440875,-10.16118,-7.641697,-12.94507,-5.440875,-12.94507,-9.84252,1.968504,-9.84252,4.92126,-7.641697,1.968504,-7.641697,3.543307,-5.440875,3.543307,5.440875,1.968504,-5.440875,1.968504,5.440875,3.543307,7.641697,3.543307,9.84252,4.92126,9.84252,1.968504,7.641697,1.968504,-9.84252,18.20866,-9.84252,19.68504,9.84252,18.20866,9.84252,19.68504,14.76378,-9.84252,14.76378,9.84252,20.47244,-9.84252,20.47244,9.84252,-9.84252,6.889764,-9.84252,9.84252,-7.641697,6.889764,-7.641697,8.464567,-5.440875,8.464567,5.440875,6.889764,-5.440875,6.889764,5.440875,8.464567,7.641697,8.464567,9.84252,9.84252,9.84252,6.889764,7.641697,6.889764,7.641697,-10.16118,7.641697,-12.94507,5.440875,-10.16118,5.440875,-12.94507,5.440875,26.86449,5.440875,31.59709,7.641697,26.86449,7.641697,31.59709,-7.641697,12.94507,-7.641697,17.67767,-5.440875,12.94507,-5.440875,17.67767,-18.30709,-6.454785E-18,-16.33858,1.968504,-15.5232,1.325813E-15,-14.76378,1.968504,19.68504,35.20824,-9.84252,6.889764,-4.92126,11.81102,-14.76378,3.543307,-11.41732,6.889764,-9.84252,8.464567,-6.496063,11.81102,1.136868E-13,16.73228,-4.92126,13.38583,-1.574803,16.73228,4.92126,21.65354,1.136868E-13,18.30709,3.346457,21.65354,9.84252,26.5748,4.92126,23.22835,8.267716,26.5748,14.76378,31.49606,9.84252,28.14961,13.18898,31.49606,14.76378,33.07087,18.11024,36.41732,19.68504,36.41732,-9.84252,6.889764,-14.76378,6.889764,-9.84252,9.84252,-14.76378,8.366141,-15.55118,9.84252,-15.55118,8.366141,-9.84252,26.5748,-9.84252,29.52756,-7.641697,26.5748,-7.641697,28.14961,-5.440875,28.14961,5.440875,26.5748,-5.440875,26.5748,5.440875,28.14961,7.641697,28.14961,9.84252,29.52756,9.84252,26.5748,7.641697,26.5748,1.136868E-13,16.73228,-4.92126,16.73228,1.136868E-13,19.68504,-4.92126,18.20866,-5.708662,19.68504,-5.708662,18.20866,5.708662,18.20866,4.92126,18.20866,5.708662,19.68504,-1.136868E-13,19.68504,-1.136868E-13,16.73228,4.92126,16.73228,9.84252,-9.84252,9.84252,9.84252,15.55118,-9.84252,15.55118,9.84252,5.440875,-0.9743598,5.440875,3.758245,7.641697,-0.9743598,7.641697,3.758245,-9.84252,8.366141,-9.84252,9.84252,9.84252,8.366141,9.84252,9.84252,-9.84252,21.65354,-9.84252,24.6063,-7.641697,21.65354,-7.641697,23.22835,-5.440875,23.22835,5.440875,21.65354,-5.440875,21.65354,5.440875,23.22835,7.641697,23.22835,9.84252,24.6063,9.84252,21.65354,7.641697,21.65354,14.76378,9.84252,14.76378,7.641697,9.84252,9.84252,13.18898,7.641697,13.18898,5.440875,13.18898,-5.440875,9.84252,-9.84252,14.76378,-5.440875,14.76378,5.440875,13.18898,-7.641697,14.76378,-7.641697,14.76378,-9.84252,5.440875,10.71796,7.641697,10.71796,5.440875,5.985353,7.641697,5.985353,-9.84252,6.889764,-9.84252,8.366141,9.84252,6.889764,9.84252,8.366141,-1.136868E-13,-9.84252,-1.136868E-13,9.84252,5.708662,-9.84252,5.708662,9.84252,5.440875,24.63738,7.641697,24.63738,5.440875,19.90478,7.641697,19.90478,-14.76378,9.84252,-14.76378,-9.84252,-15.55118,9.84252,-15.55118,-9.84252,15.55118,8.366141,14.76378,8.366141,15.55118,9.84252,9.84252,9.84252,9.84252,6.889764,14.76378,6.889764,-14.76378,9.84252,-14.76378,7.641697,-19.68504,9.84252,-16.33858,7.641697,-16.33858,5.440875,-16.33858,-5.440875,-19.68504,-9.84252,-14.76378,-5.440875,-14.76378,5.440875,-16.33858,-7.641697,-14.76378,-9.84252,-14.76378,-7.641697,-9.84252,31.49606,-9.84252,34.44882,-7.641697,31.49606,-7.641697,33.07087,-5.440875,33.07087,5.440875,31.49606,-5.440875,31.49606,5.440875,33.07087,7.641697,33.07087,9.84252,34.44882,9.84252,31.49606,7.641697,31.49606,5.440875,12.94507,5.440875,17.67767,7.641697,12.94507,7.641697,17.67767,-9.84252,11.81102,-9.84252,14.76378,-7.641697,11.81102,-7.641697,13.38583,-5.440875,13.38583,5.440875,11.81102,-5.440875,11.81102,5.440875,13.38583,7.641697,13.38583,9.84252,14.76378,9.84252,11.81102,7.641697,11.81102,-4.92126,23.22835,-9.84252,26.5748,-8.267716,26.5748,-4.92126,21.65354,-19.68504,35.20824,-14.76378,31.49606,-14.76378,33.07087,-9.84252,28.14961,-13.18898,31.49606,-18.11024,36.41732,-19.68504,36.41732,-1.136868E-13,16.73228,-1.136868E-13,18.30709,-3.346457,21.65354,4.92126,11.81102,4.92126,13.38583,1.574803,16.73228,9.84252,6.889764,9.84252,8.464567,6.496063,11.81102,14.76378,1.968504,15.5232,1.325813E-15,14.76378,3.543307,11.41732,6.889764,16.33858,1.968504,18.30709,-6.454785E-18,-7.641697,19.90478,-7.641697,24.63738,-5.440875,19.90478,-5.440875,24.63738,-9.84252,16.73228,-9.84252,19.68504,-7.641697,16.73228,-7.641697,18.30709,-5.440875,18.30709,5.440875,16.73228,-5.440875,16.73228,5.440875,18.30709,7.641697,18.30709,9.84252,19.68504,9.84252,16.73228,7.641697,16.73228,-4.92126,9.84252,-4.92126,7.641697,-9.84252,9.84252,-6.496063,7.641697,-6.496063,5.440875,-6.496063,-5.440875,-9.84252,-9.84252,-4.92126,-5.440875,-4.92126,5.440875,-6.496063,-7.641697,-4.92126,-9.84252,-4.92126,-7.641697 + } + UVIndex: *1296 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,24,25,23,25,26,23,27,23,26,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,35,36,37,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,48,49,47,49,50,47,51,47,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,70,71,69,71,72,69,73,69,72,74,76,75,76,77,75,77,78,75,79,75,78,79,78,80,80,81,79,82,79,81,75,79,82,83,75,82,84,83,82,84,85,83,84,86,85,86,84,82,87,85,86,88,87,86,89,88,86,90,86,82,91,90,82,92,94,93,95,93,94,96,98,97,99,97,98,100,99,98,99,100,101,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,117,116,117,118,119,120,122,121,122,123,121,123,124,121,125,121,124,126,128,127,129,127,128,130,129,128,129,130,131,132,134,133,134,135,133,135,136,133,137,133,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,148,149,147,149,150,147,151,147,150,152,154,153,155,153,154,156,155,154,155,156,157,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,193,192,193,194,195,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,223,222,225,224,222,222,226,225,225,227,224,228,224,227,225,226,229,226,230,229,231,229,230,232,234,233,235,233,234,236,235,234,237,236,234,234,238,237,237,239,236,240,236,239,237,238,241,238,242,241,243,241,242,244,246,245,247,245,246,248,247,246,249,248,246,246,250,249,249,251,248,252,248,251,249,250,253,250,254,253,255,253,254,256,258,257,259,257,258,260,259,258,261,259,260,262,261,260,263,259,261,261,264,263,265,261,262,262,266,265,267,262,260,268,262,267,267,269,268,270,267,260,271,267,270,270,272,271,273,270,260,274,270,273,273,275,274,276,273,260,277,273,276,276,278,277,279,276,260,280,279,260,281,280,260,282,284,283,285,283,284,286,288,287,289,287,288,290,289,288,291,290,288,288,292,291,291,293,290,294,290,293,291,292,295,295,292,296,297,296,292,298,300,299,298,299,301,299,302,301,303,302,299,304,302,303,305,303,299,305,306,303,307,302,304,308,302,307,301,302,309,310,301,309,311,301,310,309,302,312,313,309,312,314,309,313,312,302,315,316,312,315,317,312,316,315,302,318,302,319,318,320,315,318,321,315,320,318,319,322,323,322,319,324,326,325,327,325,326,328,330,329,331,329,330,332,331,330,333,332,330,330,334,333,333,335,332,336,332,335,333,334,337,334,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,354,355,353,355,356,353,356,357,353,356,358,357,357,359,353,359,360,353,353,360,361,362,361,360,360,363,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,374,375,373,375,376,373,376,377,373,376,378,377,377,379,373,379,380,373,373,380,381,382,381,380,380,383,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,399,398,401,399,400,402,401,400,403,399,401,401,404,403,405,401,402,402,406,405,407,402,400,408,402,407,407,409,408,410,407,400,411,407,410,410,412,411,413,410,400,414,410,413,413,415,414,416,413,400,417,413,416,416,418,417,419,416,400,420,419,400,421,420,400,422,424,423,425,423,424,426,425,424,425,426,427,428,430,429,430,431,429,431,432,429,432,433,429,432,434,433,433,435,429,435,436,429,429,436,437,438,437,436,436,439,438,440,442,441,443,441,442,444,443,442,443,444,445,446,448,447,448,449,447,449,450,447,451,447,450,452,454,453,455,453,454,456,458,457,459,457,458,460,462,461,463,461,462,464,466,465,466,467,465,467,468,465,468,469,465,468,470,469,469,471,465,471,472,465,465,472,473,474,473,472,472,475,474,476,478,477,479,477,478,480,479,478,481,480,478,478,482,481,481,483,480,484,480,483,481,482,485,485,482,486,487,486,482,488,490,489,491,489,490,492,494,493,495,493,494,496,498,497,499,497,498,500,502,501,503,501,502,504,506,505,507,505,506,508,510,509,510,511,509,511,512,509,513,509,512,514,516,515,517,515,516,518,517,516,519,518,516,516,520,519,519,521,518,522,518,521,519,520,523,520,524,523,525,523,524,526,528,527,528,529,527,529,530,527,530,531,527,530,532,531,531,533,527,533,534,527,527,534,535,536,535,534,534,537,536,538,540,539,541,539,540,542,544,543,544,545,543,545,546,543,546,547,543,546,548,547,547,549,543,549,550,543,543,550,551,552,551,550,550,553,552,554,556,555,554,555,557,555,558,557,559,558,555,560,558,559,561,559,555,561,562,559,563,558,560,564,558,563,557,558,565,566,557,565,567,557,566,565,558,568,569,565,568,570,565,569,568,558,571,572,568,571,573,568,572,571,558,574,558,575,574,576,571,574,577,571,576,574,575,578,579,578,575,580,582,581,583,581,582,584,586,585,586,587,585,587,588,585,588,589,585,588,590,589,589,591,585,591,592,585,585,592,593,594,593,592,592,595,594,596,598,597,599,597,598,600,599,598,601,600,598,598,602,601,601,603,600,604,600,603,601,602,605,602,606,605,607,605,606 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *432 { + a: 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4849177401901759873, "Model::rail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",5,2.5,-2.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5123880583498301050, "Geometry::", "Mesh" { + Vertices: *624 { + a: -5.925,2.5,0.09999999,-5.925,5.225,0.09999999,-5.925,2.5,0.3,-5.925,5.225,0.3,0,11.95,1.010676E-13,0,11.15,1.010676E-13,0,11.95,0.4,0,11.15,0.4,-8.425,0,0.09999999,-8.025,0,0.09999999,-8.425,2.725,0.09999999,-8.025,3.125,0.09999999,-3.425,5,0.09999999,-3.025,5,0.09999999,-3.425,7.725,0.09999999,-3.025,8.125,0.09999999,-8.025,0,0.3,-8.425,0,0.3,-8.025,3.125,0.3,-8.425,2.725,0.3,-3.025,5,0.3,-3.425,5,0.3,-3.025,8.125,0.3,-3.425,7.725,0.3,-10.2,0.95,0,-10.2,1.75,2.887646E-14,-10.2,0.95,0.4,-10.2,1.75,0.4,-0.925,7.5,0.09999999,-0.525,7.5,0.09999999,-0.925,10.225,0.09999999,-0.525,10.625,0.09999999,-0.525,10.625,0.09999999,-0.525,7.5,0.09999999,-0.525,10.625,0.3,-0.525,7.5,0.3,-10.2,0.95,0.4,-10.2,1.75,0.4,0,11.15,0.4,0,11.95,0.4,-3.025,8.125,0.09999999,-3.025,5,0.09999999,-3.025,8.125,0.3,-3.025,5,0.3,-3.425,5,0.09999999,-3.425,7.725,0.09999999,-3.425,5,0.3,-3.425,7.725,0.3,-10.2,0.95,0,0,11.15,1.010676E-13,-10.2,1.75,2.887646E-14,0,11.95,1.010676E-13,-8.425,0,0.09999999,-8.425,2.725,0.09999999,-8.425,0,0.3,-8.425,2.725,0.3,-0.525,7.5,0.3,-0.925,7.5,0.3,-0.525,10.625,0.3,-0.925,10.225,0.3,-5.925,2.5,0.09999999,-5.525,2.5,0.09999999,-5.925,5.225,0.09999999,-5.525,5.625,0.09999999,-8.025,3.125,0.09999999,-8.025,0,0.09999999,-8.025,3.125,0.3,-8.025,0,0.3,-0.925,7.5,0.09999999,-0.925,10.225,0.09999999,-0.925,7.5,0.3,-0.925,10.225,0.3,-10.2,1.75,2.887646E-14,0,11.95,1.010676E-13,-10.2,1.75,0.4,0,11.95,0.4,-5.525,2.5,0.3,-5.925,2.5,0.3,-5.525,5.625,0.3,-5.925,5.225,0.3,-5.525,5.625,0.09999999,-5.525,2.5,0.09999999,-5.525,5.625,0.3,-5.525,2.5,0.3,-10.2,0.95,4.6,0,11.15,4.6,-10.2,1.75,4.6,0,11.95,4.6,-10.2,0.95,5,-10.2,1.75,5,0,11.15,5,0,11.95,5,-8.025,0,4.9,-8.425,0,4.9,-8.025,3.125,4.9,-8.425,2.725,4.9,-3.025,5,4.9,-3.425,5,4.9,-3.025,8.125,4.9,-3.425,7.725,4.9,0,11.95,4.6,0,11.15,4.6,0,11.95,5,0,11.15,5,-3.425,5,4.7,-3.025,5,4.7,-3.425,7.725,4.7,-3.025,8.125,4.7,-8.425,0,4.7,-8.025,0,4.7,-8.425,2.725,4.7,-8.025,3.125,4.7,-8.425,0,4.7,-8.425,2.725,4.7,-8.425,0,4.9,-8.425,2.725,4.9,-0.925,7.5,4.7,-0.525,7.5,4.7,-0.925,10.225,4.7,-0.525,10.625,4.7,-10.2,1.75,4.6,0,11.95,4.6,-10.2,1.75,5,0,11.95,5,-5.525,2.5,4.9,-5.925,2.5,4.9,-5.525,5.625,4.9,-5.925,5.225,4.9,-5.525,5.625,4.7,-5.525,2.5,4.7,-5.525,5.625,4.9,-5.525,2.5,4.9,-0.925,7.5,4.7,-0.925,10.225,4.7,-0.925,7.5,4.9,-0.925,10.225,4.9,-10.2,0.95,4.6,-10.2,1.75,4.6,-10.2,0.95,5,-10.2,1.75,5,-5.925,2.5,4.7,-5.925,5.225,4.7,-5.925,2.5,4.9,-5.925,5.225,4.9,-0.525,7.5,4.9,-0.925,7.5,4.9,-0.525,10.625,4.9,-0.925,10.225,4.9,-3.425,5,4.7,-3.425,7.725,4.7,-3.425,5,4.9,-3.425,7.725,4.9,-8.025,3.125,4.7,-8.025,0,4.7,-8.025,3.125,4.9,-8.025,0,4.9,-5.925,2.5,4.7,-5.525,2.5,4.7,-5.925,5.225,4.7,-5.525,5.625,4.7,-3.025,8.125,4.7,-3.025,5,4.7,-3.025,8.125,4.9,-3.025,5,4.9,-0.525,10.625,4.7,-0.525,7.5,4.7,-0.525,10.625,4.9,-0.525,7.5,4.9,-0.525,10.625,0.3,0,11.15,0.4,-0.525,10.625,0.09999999,-0.925,10.225,0.3,0,11.15,1.010676E-13,-8.425,2.725,0.09999999,-10.2,0.95,0,-0.925,10.225,0.09999999,-10.2,0.95,0.4,-3.025,8.125,0.09999999,-3.025,8.125,0.3,-3.425,7.725,0.09999999,-3.425,7.725,0.3,-8.425,2.725,0.3,-8.025,3.125,0.3,-5.525,5.625,0.09999999,-5.925,5.225,0.09999999,-5.525,5.625,0.3,-8.025,3.125,0.09999999,-5.925,5.225,0.3,-0.525,10.625,4.9,0,11.15,5,-0.525,10.625,4.7,-0.925,10.225,4.9,0,11.15,4.6,-8.425,2.725,4.7,-10.2,0.95,4.6,-0.925,10.225,4.7,-10.2,0.95,5,-3.025,8.125,4.7,-3.025,8.125,4.9,-3.425,7.725,4.7,-3.425,7.725,4.9,-8.425,2.725,4.9,-8.025,3.125,4.9,-5.525,5.625,4.7,-5.925,5.225,4.7,-5.525,5.625,4.9,-8.025,3.125,4.7,-5.925,5.225,4.9 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,168,-170,172,169,-171,170,173,-173,172,173,-175,175,173,-171,176,174,-174,175,171,-178,177,173,-176,178,177,-172,178,171,-170,179,173,-178,180,178,-170,176,181,-170,181,176,-174,181,182,-170,183,173,-180,179,180,-184,184,173,-184,185,183,-181,185,180,-170,186,173,-185,187,185,-170,182,187,-170,184,187,-187,182,186,-188,188,190,-190,191,188,-190,192,189,-191,190,193,-193,192,193,-195,195,193,-191,196,194,-194,195,191,-198,197,193,-196,198,197,-192,198,191,-190,199,193,-198,200,198,-190,196,201,-190,201,196,-194,201,202,-190,203,193,-200,199,200,-204,204,193,-204,205,203,-201,205,200,-190,206,193,-205,207,205,-190,202,207,-190,204,207,-207,202,206,-208 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: 0.3937008,9.84252,0.3937008,20.57087,1.181102,9.84252,1.181102,20.57087,-3.979039E-13,47.04725,-3.979039E-13,43.89764,-1.574803,47.04725,-1.574803,43.89764,33.16929,0,31.59449,0,33.16929,10.72835,31.59449,12.30315,13.48425,19.68504,11.90945,19.68504,13.48425,30.41339,11.90945,31.98819,-31.59449,0,-33.16929,0,-31.59449,12.30315,-33.16929,10.72835,-11.90945,19.68504,-13.48425,19.68504,-11.90945,31.98819,-13.48425,30.41339,-2.899014E-12,3.740157,-2.785328E-12,6.889764,1.574803,3.740157,1.574803,6.889764,3.641732,29.52756,2.066929,29.52756,3.641732,40.25591,2.066929,41.83071,-0.3937008,41.83071,-0.3937008,29.52756,-1.181102,41.83071,-1.181102,29.52756,-40.15748,3.740157,-40.15748,6.889764,-7.166161E-16,43.89764,-7.166161E-16,47.04725,-0.3937008,31.98819,-0.3937008,19.68504,-1.181102,31.98819,-1.181102,19.68504,0.3937008,19.68504,0.3937008,30.41339,1.181102,19.68504,1.181102,30.41339,40.15748,3.740157,3.989603E-27,43.89764,40.15748,6.889764,3.989603E-27,47.04725,0.3937008,-1.757453E-13,0.3937008,10.72835,1.181102,-1.757453E-13,1.181102,10.72835,-2.066929,29.52756,-3.641732,29.52756,-2.066929,41.83071,-3.641732,40.25591,23.32677,9.84252,21.75197,9.84252,23.32677,20.57087,21.75197,22.14567,-0.3937008,12.30315,-0.3937008,0,-1.181102,12.30315,-1.181102,0,0.3937008,29.52756,0.3937008,40.25591,1.181102,29.52756,1.181102,40.25591,-1.075211E-12,-23.52383,3.979039E-13,33.26743,1.574803,-23.52383,1.574803,33.26743,-21.75197,9.84252,-23.32677,9.84252,-21.75197,22.14567,-23.32677,20.57087,-0.3937008,22.14567,-0.3937008,9.84252,-1.181102,22.14567,-1.181102,9.84252,40.15748,3.740157,1.815831E-13,43.89764,40.15748,6.889764,1.815831E-13,47.04725,-40.15748,3.740157,-40.15748,6.889764,-8.957701E-15,43.89764,-8.957701E-15,47.04725,-31.59449,0,-33.16929,0,-31.59449,12.30315,-33.16929,10.72835,-11.90945,19.68504,-13.48425,19.68504,-11.90945,31.98819,-13.48425,30.41339,-18.11024,47.04725,-18.11024,43.89764,-19.68504,47.04725,-19.68504,43.89764,13.48425,19.68504,11.90945,19.68504,13.48425,30.41339,11.90945,31.98819,33.16929,0,31.59449,0,33.16929,10.72835,31.59449,12.30315,18.50394,-1.757453E-13,18.50394,10.72835,19.29134,-1.757453E-13,19.29134,10.72835,3.641732,29.52756,2.066929,29.52756,3.641732,40.25591,2.066929,41.83071,18.11024,-23.52383,18.11024,33.26743,19.68504,-23.52383,19.68504,33.26743,-21.75197,9.84252,-23.32677,9.84252,-21.75197,22.14567,-23.32677,20.57087,-18.50394,22.14567,-18.50394,9.84252,-19.29134,22.14567,-19.29134,9.84252,18.50394,29.52756,18.50394,40.25591,19.29134,29.52756,19.29134,40.25591,18.11024,3.740157,18.11024,6.889764,19.68504,3.740157,19.68504,6.889764,18.50394,9.84252,18.50394,20.57087,19.29134,9.84252,19.29134,20.57087,-2.066929,29.52756,-3.641732,29.52756,-2.066929,41.83071,-3.641732,40.25591,18.50394,19.68504,18.50394,30.41339,19.29134,19.68504,19.29134,30.41339,-18.50394,12.30315,-18.50394,0,-19.29134,12.30315,-19.29134,0,23.32677,9.84252,21.75197,9.84252,23.32677,20.57087,21.75197,22.14567,-18.50394,31.98819,-18.50394,19.68504,-19.29134,31.98819,-19.29134,19.68504,-18.50394,41.83071,-18.50394,29.52756,-19.29134,41.83071,-19.29134,29.52756,-1.181102,28.11724,-1.574803,31.04032,-0.3937008,28.11724,-1.181102,25.89013,-3.979039E-13,31.04032,-0.3937008,-15.86814,1.227249E-12,-25.75094,-0.3937008,25.89013,-1.574803,-25.75094,-0.3937008,14.19781,-1.181102,14.19781,-0.3937008,11.97071,-1.181102,11.97071,-1.181102,-15.86814,-1.181102,-13.64104,-0.3937008,0.2783885,-0.3937008,-1.94872,-1.181102,0.2783885,-0.3937008,-13.64104,-1.181102,-1.94872,-19.29134,28.11724,-19.68504,31.04032,-18.50394,28.11724,-19.29134,25.89013,-18.11024,31.04032,-18.50394,-15.86814,-18.11024,-25.75094,-18.50394,25.89013,-19.68504,-25.75094,-18.50394,14.19781,-19.29134,14.19781,-18.50394,11.97071,-19.29134,11.97071,-19.29134,-15.86814,-19.29134,-13.64104,-18.50394,0.2783885,-18.50394,-1.94872,-19.29134,0.2783885,-18.50394,-13.64104,-19.29134,-1.94872 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,168,169,172,169,170,170,173,172,172,173,174,175,173,170,176,174,173,175,171,177,177,173,175,178,177,171,178,171,169,179,173,177,180,178,169,176,181,169,181,176,173,181,182,169,183,173,179,179,180,183,184,173,183,185,183,180,185,180,169,186,173,184,187,185,169,182,187,169,184,187,186,182,186,187,188,190,189,191,188,189,192,189,190,190,193,192,192,193,194,195,193,190,196,194,193,195,191,197,197,193,195,198,197,191,198,191,189,199,193,197,200,198,189,196,201,189,201,196,193,201,202,189,203,193,199,199,200,203,204,193,203,205,203,200,205,200,189,206,193,204,207,205,189,202,207,189,204,207,206,202,206,207 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stairsWoodHandrail, Model::RootNode + C: "OO",4865128757738570425,0 + + ;Geometry::, Model::Mesh stairsWoodHandrail + C: "OO",5309085917197888482,4865128757738570425 + + ;Material::_defaultMat, Model::Mesh stairsWoodHandrail + C: "OO",7176,4865128757738570425 + + ;Material::wood, Model::Mesh stairsWoodHandrail + C: "OO",7178,4865128757738570425 + + ;Model::Mesh rail, Model::USING PARENT + C: "OO",4849177401901759873,4865128757738570425 + + ;Geometry::, Model::Mesh rail + C: "OO",5123880583498301050,4849177401901759873 + + ;Material::wood, Model::Mesh rail + C: "OO",7178,4849177401901759873 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWoodHandrail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWoodHandrail.fbx.import new file mode 100644 index 0000000..dd2f221 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWoodHandrail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4xt31utuju51" +path="res://.godot/imported/stairsWoodHandrail.fbx-dad83406364bde9f647891a787d64ef9.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stairsWoodHandrail.fbx" +dest_files=["res://.godot/imported/stairsWoodHandrail.fbx-dad83406364bde9f647891a787d64ef9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stall.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stall.fbx new file mode 100644 index 0000000..c3508ac --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stall.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 254 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5008730422737029712, "Model::stall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5166647800789070693, "Geometry::", "Mesh" { + Vertices: *672 { + a: 2.5,3.155014,4,2.5,6.979798E-15,4,2.5,3.155014,4.5,2.5,7.264503E-15,4.5,3.25,3.655014,-5,3.25,3.155014,-5,3.25,3.655014,5,3.25,3.155014,5,2.5,7.264503E-15,4.5,2.5,6.979798E-15,4,2,7.264503E-15,4.5,2,7.264503E-15,4,2,0,4.1,-2,2.48703E-12,4.5,-2.5,2.48703E-12,4.5,-2,3.155014,4.5,-2.5,3.155014,4.5,2.5,7.882187E-15,-4.5,2.5,3.155014,-4.5,2,8.166893E-15,-4.5,2,3.155014,-4.5,3.25,3.655014,-5,3.25,3.655014,5,-3.25,3.655014,-5,-3.25,3.655014,5,-2,3.155014,-4.1,-2,3.155014,-4,-2,3.155014,-4.5,-2,3.155014,4,-2.5,3.155014,4,-2,3.155014,4.1,-2.5,3.155014,-4,-3.25,3.155014,5,-2.5,3.155014,4.5,-2.5,3.155014,-4.5,-2,3.155014,4.5,-3.25,3.155014,-5,2,3.155014,-4.5,2.5,3.155014,-4.5,2,3.155014,-4,3.25,3.155014,-5,2,3.155014,4,2.5,3.155014,-4,2,3.155014,4.5,2.5,3.155014,4,2.5,3.155014,4.5,3.25,3.155014,5,3.25,3.155014,5,-3.25,3.155014,5,3.25,3.655014,5,-3.25,3.655014,5,2,7.264503E-15,4,2,3.155014,4,2,0,4.1,2,1.827507,4.125,2,3.155014,4.5,2,1.327507,4.125,2,1.827507,4.375,2,7.264503E-15,4.5,2,1.327507,4.375,-2,2.487933E-12,-4,-2,2.487648E-12,-4.5,-2.5,2.487933E-12,-4,-2.5,2.487933E-12,-4.5,-2.125,1.827507,-4,-2.125,1.327507,-4,-2.125,1.827507,4,-2.125,1.327507,4,-2.5,2.487933E-12,-4.5,-2.5,3.155014,-4.5,-2.5,2.487933E-12,-4,-2.5,3.155014,-4,2.5,7.264503E-15,4.5,2,7.264503E-15,4.5,2.5,3.155014,4.5,2,3.155014,4.5,-2,2.48703E-12,4.5,-2,2.486746E-12,4,-2.5,2.48703E-12,4.5,-2.5,2.48703E-12,4,-2,3.155014,-4,-2,3.155014,-4.1,-2,2.487933E-12,-4,-2,1.327507,-4.125,-2,1.827507,-4.125,-2,1.327507,-4.375,-2,2.487648E-12,-4.5,-2,1.827507,-4.375,-2,3.155014,-4.5,-2.125,1.827507,-4,-2.125,1.827507,4,-2.375,1.827507,-4,-2.375,1.827507,4,-3.25,3.155014,-5,-3.25,3.655014,-5,-3.25,3.155014,5,-3.25,3.655014,5,2.375,1.827507,-4,2.375,1.327507,-4,2.375,1.827507,4,2.375,1.327507,4,2.5,8.166893E-15,-4,2.5,7.882187E-15,-4.5,2,8.166893E-15,-4,2,8.166893E-15,-4.5,2,1.54314E-14,-4.1,-2,2.487648E-12,-4.5,-2,3.155014,-4.5,-2.5,2.487933E-12,-4.5,-2.5,3.155014,-4.5,3.25,3.155014,-5,3.25,3.655014,-5,-3.25,3.155014,-5,-3.25,3.655014,-5,-2,3.155014,4,-2,2.486746E-12,4,-2,3.155014,4.1,-2,1.327507,4.125,-2,2.48703E-12,4.5,-2,1.827507,4.125,-2,1.327507,4.375,-2,3.155014,4.5,-2,1.827507,4.375,2.375,1.327507,4,2.375,1.327507,-4,2.125,1.327507,4,2.125,1.327507,-4,2.125,1.827507,-4,2.125,1.827507,4,2.125,1.327507,-4,2.125,1.327507,4,2,8.166893E-15,-4,2,1.54314E-14,-4.1,2,3.155014,-4,2,1.827507,-4.125,2,1.327507,-4.125,2,1.827507,-4.375,2,3.155014,-4.5,2,1.327507,-4.375,2,8.166893E-15,-4.5,2.5,3.155014,-4.5,2.5,7.882187E-15,-4.5,2.5,3.155014,-4,2.5,8.166893E-15,-4,2.375,1.827507,-4,2.375,1.827507,4,2.125,1.827507,-4,2.125,1.827507,4,-2.375,1.827507,-4,-2.375,1.827507,4,-2.375,1.327507,-4,-2.375,1.327507,4,-2.125,1.327507,4,-2.125,1.327507,-4,-2.375,1.327507,4,-2.375,1.327507,-4,-2.5,2.48703E-12,4,-2.5,3.155014,4,-2.5,2.48703E-12,4.5,-2.5,3.155014,4.5,2,1.327507,-4.125,-2,1.327507,-4.125,2,1.827507,-4.125,-2,1.827507,-4.125,2,1.327507,-4.375,2,1.827507,-4.375,-2,1.327507,-4.375,-2,1.827507,-4.375,2,1.827507,-4.125,-2,1.827507,-4.125,2,1.827507,-4.375,-2,1.827507,-4.375,2,1.327507,-4.125,2,1.327507,-4.375,-2,1.327507,-4.125,-2,1.327507,-4.375,2,1.827507,4.375,-2,1.827507,4.375,2,1.827507,4.125,-2,1.827507,4.125,2,1.327507,4.125,2,1.827507,4.125,-2,1.327507,4.125,-2,1.827507,4.125,2,1.327507,4.375,2,1.327507,4.125,-2,1.327507,4.375,-2,1.327507,4.125,2,1.327507,4.375,-2,1.327507,4.375,2,1.827507,4.375,-2,1.827507,4.375,-2.375,1.827507,4,-2.5,3.155014,4,-2.375,1.327507,4,-2.125,1.827507,4,-2.5,2.48703E-12,4,-2,3.155014,4,-2.125,1.327507,4,-2,2.486746E-12,4,2.125,1.827507,4,2,3.155014,4,2.125,1.327507,4,2.375,1.827507,4,2,7.264503E-15,4,2.5,3.155014,4,2.375,1.327507,4,2.5,6.979798E-15,4,-2.5,2.487933E-12,-4,-2.125,1.327507,-4,-2,2.487933E-12,-4,-2,3.155014,-4,-2.375,1.327507,-4,-2.125,1.827507,-4,-2.5,3.155014,-4,-2.375,1.827507,-4,2,8.166893E-15,-4,2.375,1.327507,-4,2.5,8.166893E-15,-4,2.5,3.155014,-4,2.125,1.327507,-4,2.375,1.827507,-4,2,3.155014,-4,2.125,1.827507,-4 + } + PolygonVertexIndex: *492 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,26,27,-29,28,29,-27,28,27,-31,31,26,-30,31,29,-33,29,33,-33,34,31,-33,30,27,-36,33,35,-33,34,36,-28,32,36,-35,27,36,-38,35,27,-38,37,36,-39,37,39,-36,36,40,-39,39,41,-36,35,41,-33,39,42,-42,41,43,-33,44,41,-43,42,38,-45,43,45,-33,44,38,-46,45,38,-41,32,45,-47,40,46,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,52,-55,56,54,-54,57,55,-55,53,58,-57,58,55,-58,59,56,-59,57,59,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,81,82,-84,83,84,-82,83,82,-86,82,86,-86,84,87,-82,87,85,-87,81,87,-89,86,88,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,104,-104,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,115,-118,119,117,-117,120,118,-118,116,121,-120,121,118,-121,122,119,-122,120,122,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,132,133,-135,134,135,-133,134,133,-137,133,137,-137,135,138,-133,138,136,-138,132,138,-140,137,139,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,192,-194,196,193,-195,193,197,-196,194,198,-197,195,197,-199,196,198,-200,197,199,-199,200,202,-202,203,200,-202,204,201,-203,201,205,-204,202,206,-205,203,205,-207,204,206,-208,205,207,-207,208,210,-210,211,209,-211,209,212,-209,213,209,-212,214,208,-213,215,213,-212,215,214,-213,211,214,-216,216,218,-218,219,217,-219,217,220,-217,221,217,-220,222,216,-221,223,221,-220,223,222,-221,219,222,-224 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1476 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *448 { + a: -15.74803,12.42132,-15.74803,2.747952E-14,-17.71654,12.42132,-17.71654,2.860041E-14,19.68504,14.38982,19.68504,12.42132,-19.68504,14.38982,-19.68504,12.42132,9.84252,17.71654,9.84252,15.74803,7.874016,17.71654,7.874016,15.74803,7.874016,16.14173,-7.874016,9.791458E-12,-9.84252,9.791458E-12,-7.874016,12.42132,-9.84252,12.42132,-9.84252,3.103223E-14,-9.84252,12.42132,-7.874016,3.215312E-14,-7.874016,12.42132,-12.79528,-19.68504,-12.79528,19.68504,12.79528,-19.68504,12.79528,19.68504,-7.874016,-16.14173,-7.874016,-15.74803,-7.874016,-17.71654,-7.874016,15.74803,-9.84252,15.74803,-7.874016,16.14173,-9.84252,-15.74803,-12.79528,19.68504,-9.84252,17.71654,-9.84252,-17.71654,-7.874016,17.71654,-12.79528,-19.68504,7.874016,-17.71654,9.84252,-17.71654,7.874016,-15.74803,12.79528,-19.68504,7.874016,15.74803,9.84252,-15.74803,7.874016,17.71654,9.84252,15.74803,9.84252,17.71654,12.79528,19.68504,12.79528,12.42132,-12.79528,12.42132,12.79528,14.38982,-12.79528,14.38982,15.74803,2.860041E-14,15.74803,12.42132,16.14173,0,16.24016,7.19491,17.71654,12.42132,16.24016,5.226406,17.22441,7.19491,17.71654,2.860041E-14,17.22441,5.226406,-7.874016,-15.74803,-7.874016,-17.71654,-9.84252,-15.74803,-9.84252,-17.71654,15.74803,7.19491,15.74803,5.226406,-15.74803,7.19491,-15.74803,5.226406,-17.71654,9.79501E-12,-17.71654,12.42132,-15.74803,9.79501E-12,-15.74803,12.42132,9.84252,2.860041E-14,7.874016,2.860041E-14,9.84252,12.42132,7.874016,12.42132,-7.874016,17.71654,-7.874016,15.74803,-9.84252,17.71654,-9.84252,15.74803,15.74803,12.42132,16.14173,12.42132,15.74803,9.79501E-12,16.24016,5.226406,16.24016,7.19491,17.22441,5.226406,17.71654,9.79389E-12,17.22441,7.19491,17.71654,12.42132,8.366141,-15.74803,8.366141,15.74803,9.350393,-15.74803,9.350393,15.74803,-19.68504,12.42132,-19.68504,14.38982,19.68504,12.42132,19.68504,14.38982,15.74803,7.19491,15.74803,5.226406,-15.74803,7.19491,-15.74803,5.226406,9.84252,-15.74803,9.84252,-17.71654,7.874016,-15.74803,7.874016,-17.71654,7.874016,-16.14173,7.874016,9.79389E-12,7.874016,12.42132,9.84252,9.79501E-12,9.84252,12.42132,-12.79528,12.42132,-12.79528,14.38982,12.79528,12.42132,12.79528,14.38982,-15.74803,12.42132,-15.74803,9.790337E-12,-16.14173,12.42132,-16.24016,5.226406,-17.71654,9.791458E-12,-16.24016,7.19491,-17.22441,5.226406,-17.71654,12.42132,-17.22441,7.19491,9.350393,15.74803,9.350393,-15.74803,8.366141,15.74803,8.366141,-15.74803,-15.74803,7.19491,15.74803,7.19491,-15.74803,5.226406,15.74803,5.226406,-15.74803,3.215312E-14,-16.14173,6.075353E-14,-15.74803,12.42132,-16.24016,7.19491,-16.24016,5.226406,-17.22441,7.19491,-17.71654,12.42132,-17.22441,5.226406,-17.71654,3.215312E-14,17.71654,12.42132,17.71654,3.103223E-14,15.74803,12.42132,15.74803,3.215312E-14,-9.350393,-15.74803,-9.350393,15.74803,-8.366141,-15.74803,-8.366141,15.74803,-15.74803,7.19491,15.74803,7.19491,-15.74803,5.226406,15.74803,5.226406,-8.366141,15.74803,-8.366141,-15.74803,-9.350393,15.74803,-9.350393,-15.74803,15.74803,9.791458E-12,15.74803,12.42132,17.71654,9.791458E-12,17.71654,12.42132,7.874016,5.226406,-7.874016,5.226406,7.874016,7.19491,-7.874016,7.19491,-7.874016,5.226406,-7.874016,7.19491,7.874016,5.226406,7.874016,7.19491,-7.874016,-16.24016,7.874016,-16.24016,-7.874016,-17.22441,7.874016,-17.22441,7.874016,-16.24016,7.874016,-17.22441,-7.874016,-16.24016,-7.874016,-17.22441,-7.874016,17.22441,7.874016,17.22441,-7.874016,16.24016,7.874016,16.24016,-7.874016,5.226406,-7.874016,7.19491,7.874016,5.226406,7.874016,7.19491,7.874016,17.22441,7.874016,16.24016,-7.874016,17.22441,-7.874016,16.24016,7.874016,5.226406,-7.874016,5.226406,7.874016,7.19491,-7.874016,7.19491,9.350393,7.19491,9.84252,12.42132,9.350393,5.226406,8.366141,7.19491,9.84252,9.791458E-12,7.874016,12.42132,8.366141,5.226406,7.874016,9.790337E-12,-8.366141,7.19491,-7.874016,12.42132,-8.366141,5.226406,-9.350393,7.19491,-7.874016,2.860041E-14,-9.84252,12.42132,-9.350393,5.226406,-9.84252,2.747952E-14,-9.84252,9.79501E-12,-8.366141,5.226406,-7.874016,9.79501E-12,-7.874016,12.42132,-9.350393,5.226406,-8.366141,7.19491,-9.84252,12.42132,-9.350393,7.19491,7.874016,3.215312E-14,9.350393,5.226406,9.84252,3.215312E-14,9.84252,12.42132,8.366141,5.226406,9.350393,7.19491,7.874016,12.42132,8.366141,7.19491 + } + UVIndex: *492 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,26,27,28,28,29,26,28,27,30,31,26,29,31,29,32,29,33,32,34,31,32,30,27,35,33,35,32,34,36,27,32,36,34,27,36,37,35,27,37,37,36,38,37,39,35,36,40,38,39,41,35,35,41,32,39,42,41,41,43,32,44,41,42,42,38,44,43,45,32,44,38,45,45,38,40,32,45,46,40,46,45,47,49,48,50,48,49,51,53,52,54,52,53,55,52,54,56,54,53,57,55,54,53,58,56,58,55,57,59,56,58,57,59,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,81,82,83,83,84,81,83,82,85,82,86,85,84,87,81,87,85,86,81,87,88,86,88,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,104,103,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,115,117,119,117,116,120,118,117,116,121,119,121,118,120,122,119,121,120,122,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,132,133,134,134,135,132,134,133,136,133,137,136,135,138,132,138,136,137,132,138,139,137,139,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,192,193,196,193,194,193,197,195,194,198,196,195,197,198,196,198,199,197,199,198,200,202,201,203,200,201,204,201,202,201,205,203,202,206,204,203,205,206,204,206,207,205,207,206,208,210,209,211,209,210,209,212,208,213,209,211,214,208,212,215,213,211,215,214,212,211,214,215,216,218,217,219,217,218,217,220,216,221,217,219,222,216,220,223,221,219,223,222,220,219,222,223 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *164 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stall, Model::RootNode + C: "OO",5008730422737029712,0 + + ;Geometry::, Model::Mesh stall + C: "OO",5166647800789070693,5008730422737029712 + + ;Material::wood, Model::Mesh stall + C: "OO",7178,5008730422737029712 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stall.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stall.fbx.import new file mode 100644 index 0000000..5f374cc --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dxtbkgay2585h" +path="res://.godot/imported/stall.fbx-4984b8b770d3c9482eb801bbc2ed738a.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stall.fbx" +dest_files=["res://.godot/imported/stall.fbx-4984b8b770d3c9482eb801bbc2ed738a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallBench.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallBench.fbx new file mode 100644 index 0000000..981b15a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallBench.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 299 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stallBench.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stallBench.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4755846826661364549, "Model::stallBench", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5582320074391347185, "Geometry::", "Mesh" { + Vertices: *672 { + a: 1.1,1.755014,4,1.1,6.979798E-15,4,1.1,1.755014,4.5,1.1,7.264503E-15,4.5,1.3,2.255014,-4.7,1.3,1.755014,-4.7,1.3,2.255014,4.7,1.3,1.755014,4.7,1.1,7.264503E-15,4.5,1.1,6.979798E-15,4,0.6,7.264503E-15,4.5,0.6,7.264503E-15,4,0.6,0,4.1,-0.6,2.48703E-12,4.5,-1.1,2.48703E-12,4.5,-0.6,1.755014,4.5,-1.1,1.755014,4.5,1.1,7.882187E-15,-4.5,1.1,1.755014,-4.5,0.6,8.166893E-15,-4.5,0.6,1.755014,-4.5,1.3,2.255014,-4.7,1.3,2.255014,4.7,-1.3,2.255014,-4.7,-1.3,2.255014,4.7,-0.6,1.755014,-4.1,-0.6,1.755014,-4,-0.6,1.755014,-4.5,-0.6,1.755014,4,-1.1,1.755014,4,-0.6,1.755014,4.1,-1.1,1.755014,-4,-1.3,1.755014,4.7,-1.1,1.755014,4.5,-1.1,1.755014,-4.5,-0.6,1.755014,4.5,-1.3,1.755014,-4.7,0.6,1.755014,-4.5,1.1,1.755014,-4.5,0.6,1.755014,-4,1.3,1.755014,-4.7,0.6,1.755014,4,1.1,1.755014,-4,0.6,1.755014,4.5,1.1,1.755014,4,1.1,1.755014,4.5,1.3,1.755014,4.7,1.3,1.755014,4.7,-1.3,1.755014,4.7,1.3,2.255014,4.7,-1.3,2.255014,4.7,0.6,7.264503E-15,4,0.6,1.755014,4,0.6,0,4.1,0.6,1.327507,4.125,0.6,1.755014,4.5,0.6,0.8275071,4.125,0.6,1.327507,4.375,0.6,7.264503E-15,4.5,0.6,0.8275071,4.375,-0.6,2.487933E-12,-4,-0.6,2.487648E-12,-4.5,-1.1,2.487933E-12,-4,-1.1,2.487933E-12,-4.5,-0.725,1.327507,-4,-0.725,0.8275071,-4,-0.725,1.327507,4,-0.725,0.8275071,4,-1.1,2.487933E-12,-4.5,-1.1,1.755014,-4.5,-1.1,2.487933E-12,-4,-1.1,1.755014,-4,1.1,7.264503E-15,4.5,0.6,7.264503E-15,4.5,1.1,1.755014,4.5,0.6,1.755014,4.5,-0.6,2.48703E-12,4.5,-0.6,2.486746E-12,4,-1.1,2.48703E-12,4.5,-1.1,2.48703E-12,4,-0.6,1.755014,-4,-0.6,1.755014,-4.1,-0.6,2.487933E-12,-4,-0.6,0.8275071,-4.125,-0.6,1.327507,-4.125,-0.6,0.8275071,-4.375,-0.6,2.487648E-12,-4.5,-0.6,1.327507,-4.375,-0.6,1.755014,-4.5,-0.725,1.327507,-4,-0.725,1.327507,4,-0.975,1.327507,-4,-0.975,1.327507,4,-1.3,1.755014,-4.7,-1.3,2.255014,-4.7,-1.3,1.755014,4.7,-1.3,2.255014,4.7,0.975,1.327507,-4,0.975,0.8275071,-4,0.975,1.327507,4,0.975,0.8275071,4,1.1,8.166893E-15,-4,1.1,7.882187E-15,-4.5,0.6,8.166893E-15,-4,0.6,8.166893E-15,-4.5,0.6,1.54314E-14,-4.1,-0.6,2.487648E-12,-4.5,-0.6,1.755014,-4.5,-1.1,2.487933E-12,-4.5,-1.1,1.755014,-4.5,1.3,1.755014,-4.7,1.3,2.255014,-4.7,-1.3,1.755014,-4.7,-1.3,2.255014,-4.7,-0.6,1.755014,4,-0.6,2.486746E-12,4,-0.6,1.755014,4.1,-0.6,0.8275071,4.125,-0.6,2.48703E-12,4.5,-0.6,1.327507,4.125,-0.6,0.8275071,4.375,-0.6,1.755014,4.5,-0.6,1.327507,4.375,0.975,0.8275071,4,0.975,0.8275071,-4,0.725,0.8275071,4,0.725,0.8275071,-4,0.725,1.327507,-4,0.725,1.327507,4,0.725,0.8275071,-4,0.725,0.8275071,4,0.6,8.166893E-15,-4,0.6,1.54314E-14,-4.1,0.6,1.755014,-4,0.6,1.327507,-4.125,0.6,0.8275071,-4.125,0.6,1.327507,-4.375,0.6,1.755014,-4.5,0.6,0.8275071,-4.375,0.6,8.166893E-15,-4.5,1.1,1.755014,-4.5,1.1,7.882187E-15,-4.5,1.1,1.755014,-4,1.1,8.166893E-15,-4,0.975,1.327507,-4,0.975,1.327507,4,0.725,1.327507,-4,0.725,1.327507,4,-0.975,1.327507,-4,-0.975,1.327507,4,-0.975,0.8275071,-4,-0.975,0.8275071,4,-0.725,0.8275071,4,-0.725,0.8275071,-4,-0.975,0.8275071,4,-0.975,0.8275071,-4,-1.1,2.48703E-12,4,-1.1,1.755014,4,-1.1,2.48703E-12,4.5,-1.1,1.755014,4.5,0.6,0.8275071,-4.125,-0.6,0.8275071,-4.125,0.6,1.327507,-4.125,-0.6,1.327507,-4.125,0.6,0.8275071,-4.375,0.6,1.327507,-4.375,-0.6,0.8275071,-4.375,-0.6,1.327507,-4.375,0.6,1.327507,-4.125,-0.6,1.327507,-4.125,0.6,1.327507,-4.375,-0.6,1.327507,-4.375,0.6,0.8275071,-4.125,0.6,0.8275071,-4.375,-0.6,0.8275071,-4.125,-0.6,0.8275071,-4.375,0.6,1.327507,4.375,-0.6,1.327507,4.375,0.6,1.327507,4.125,-0.6,1.327507,4.125,0.6,0.8275071,4.125,0.6,1.327507,4.125,-0.6,0.8275071,4.125,-0.6,1.327507,4.125,0.6,0.8275071,4.375,0.6,0.8275071,4.125,-0.6,0.8275071,4.375,-0.6,0.8275071,4.125,0.6,0.8275071,4.375,-0.6,0.8275071,4.375,0.6,1.327507,4.375,-0.6,1.327507,4.375,-0.975,1.327507,4,-1.1,1.755014,4,-0.975,0.8275071,4,-0.725,1.327507,4,-1.1,2.48703E-12,4,-0.6,1.755014,4,-0.725,0.8275071,4,-0.6,2.486746E-12,4,0.725,1.327507,4,0.6,1.755014,4,0.725,0.8275071,4,0.975,1.327507,4,0.6,7.264503E-15,4,1.1,1.755014,4,0.975,0.8275071,4,1.1,6.979798E-15,4,-1.1,2.487933E-12,-4,-0.725,0.8275071,-4,-0.6,2.487933E-12,-4,-0.6,1.755014,-4,-0.975,0.8275071,-4,-0.725,1.327507,-4,-1.1,1.755014,-4,-0.975,1.327507,-4,0.6,8.166893E-15,-4,0.975,0.8275071,-4,1.1,8.166893E-15,-4,1.1,1.755014,-4,0.725,0.8275071,-4,0.975,1.327507,-4,0.6,1.755014,-4,0.725,1.327507,-4 + } + PolygonVertexIndex: *492 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,26,27,-29,28,29,-27,28,27,-31,31,26,-30,31,29,-33,29,33,-33,34,31,-33,30,27,-36,33,35,-33,34,36,-28,32,36,-35,27,36,-38,35,27,-38,37,36,-39,37,39,-36,36,40,-39,39,41,-36,39,42,-42,41,43,-36,35,43,-33,44,41,-43,42,38,-45,43,45,-33,44,38,-46,45,38,-41,32,45,-47,40,46,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,52,-55,56,54,-54,57,55,-55,53,58,-57,58,55,-58,59,56,-59,57,59,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,81,82,-84,83,84,-82,83,82,-86,82,86,-86,84,87,-82,87,85,-87,81,87,-89,86,88,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,104,-104,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,115,-118,119,117,-117,120,118,-118,116,121,-120,121,118,-121,122,119,-122,120,122,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,132,133,-135,134,135,-133,134,133,-137,133,137,-137,135,138,-133,138,136,-138,132,138,-140,137,139,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,192,-194,196,193,-195,193,197,-196,194,198,-197,195,197,-199,196,198,-200,197,199,-199,200,202,-202,203,200,-202,204,201,-203,201,205,-204,202,206,-205,203,205,-207,204,206,-208,205,207,-207,208,210,-210,211,209,-211,209,212,-209,213,209,-212,214,208,-213,215,213,-212,215,214,-213,211,214,-216,216,218,-218,219,217,-219,217,220,-217,221,217,-220,222,216,-221,223,221,-220,223,222,-221,219,222,-224 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1476 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *448 { + a: -15.74803,6.909504,-15.74803,2.747952E-14,-17.71654,6.909504,-17.71654,2.860041E-14,18.50394,8.878009,18.50394,6.909504,-18.50394,8.878009,-18.50394,6.909504,4.330709,17.71654,4.330709,15.74803,2.362205,17.71654,2.362205,15.74803,2.362205,16.14173,-2.362205,9.791458E-12,-4.330709,9.791458E-12,-2.362205,6.909504,-4.330709,6.909504,-4.330709,3.103223E-14,-4.330709,6.909504,-2.362205,3.215312E-14,-2.362205,6.909504,-5.11811,-18.50394,-5.11811,18.50394,5.11811,-18.50394,5.11811,18.50394,-2.362205,-16.14173,-2.362205,-15.74803,-2.362205,-17.71654,-2.362205,15.74803,-4.330709,15.74803,-2.362205,16.14173,-4.330709,-15.74803,-5.11811,18.50394,-4.330709,17.71654,-4.330709,-17.71654,-2.362205,17.71654,-5.11811,-18.50394,2.362205,-17.71654,4.330709,-17.71654,2.362205,-15.74803,5.11811,-18.50394,2.362205,15.74803,4.330709,-15.74803,2.362205,17.71654,4.330709,15.74803,4.330709,17.71654,5.11811,18.50394,5.11811,6.909504,-5.11811,6.909504,5.11811,8.878009,-5.11811,8.878009,15.74803,2.860041E-14,15.74803,6.909504,16.14173,0,16.24016,5.226406,17.71654,6.909504,16.24016,3.257902,17.22441,5.226406,17.71654,2.860041E-14,17.22441,3.257902,-2.362205,-15.74803,-2.362205,-17.71654,-4.330709,-15.74803,-4.330709,-17.71654,15.74803,5.226406,15.74803,3.257902,-15.74803,5.226406,-15.74803,3.257902,-17.71654,9.79501E-12,-17.71654,6.909504,-15.74803,9.79501E-12,-15.74803,6.909504,4.330709,2.860041E-14,2.362205,2.860041E-14,4.330709,6.909504,2.362205,6.909504,-2.362205,17.71654,-2.362205,15.74803,-4.330709,17.71654,-4.330709,15.74803,15.74803,6.909504,16.14173,6.909504,15.74803,9.79501E-12,16.24016,3.257902,16.24016,5.226406,17.22441,3.257902,17.71654,9.79389E-12,17.22441,5.226406,17.71654,6.909504,2.854331,-15.74803,2.854331,15.74803,3.838583,-15.74803,3.838583,15.74803,-18.50394,6.909504,-18.50394,8.878009,18.50394,6.909504,18.50394,8.878009,15.74803,5.226406,15.74803,3.257902,-15.74803,5.226406,-15.74803,3.257902,4.330709,-15.74803,4.330709,-17.71654,2.362205,-15.74803,2.362205,-17.71654,2.362205,-16.14173,2.362205,9.79389E-12,2.362205,6.909504,4.330709,9.79501E-12,4.330709,6.909504,-5.11811,6.909504,-5.11811,8.878009,5.11811,6.909504,5.11811,8.878009,-15.74803,6.909504,-15.74803,9.790337E-12,-16.14173,6.909504,-16.24016,3.257902,-17.71654,9.791458E-12,-16.24016,5.226406,-17.22441,3.257902,-17.71654,6.909504,-17.22441,5.226406,3.838583,15.74803,3.838583,-15.74803,2.854331,15.74803,2.854331,-15.74803,-15.74803,5.226406,15.74803,5.226406,-15.74803,3.257902,15.74803,3.257902,-15.74803,3.215312E-14,-16.14173,6.075353E-14,-15.74803,6.909504,-16.24016,5.226406,-16.24016,3.257902,-17.22441,5.226406,-17.71654,6.909504,-17.22441,3.257902,-17.71654,3.215312E-14,17.71654,6.909504,17.71654,3.103223E-14,15.74803,6.909504,15.74803,3.215312E-14,-3.838583,-15.74803,-3.838583,15.74803,-2.854331,-15.74803,-2.854331,15.74803,-15.74803,5.226406,15.74803,5.226406,-15.74803,3.257902,15.74803,3.257902,-2.854331,15.74803,-2.854331,-15.74803,-3.838583,15.74803,-3.838583,-15.74803,15.74803,9.791458E-12,15.74803,6.909504,17.71654,9.791458E-12,17.71654,6.909504,2.362205,3.257902,-2.362205,3.257902,2.362205,5.226406,-2.362205,5.226406,-2.362205,3.257902,-2.362205,5.226406,2.362205,3.257902,2.362205,5.226406,-2.362205,-16.24016,2.362205,-16.24016,-2.362205,-17.22441,2.362205,-17.22441,2.362205,-16.24016,2.362205,-17.22441,-2.362205,-16.24016,-2.362205,-17.22441,-2.362205,17.22441,2.362205,17.22441,-2.362205,16.24016,2.362205,16.24016,-2.362205,3.257902,-2.362205,5.226406,2.362205,3.257902,2.362205,5.226406,2.362205,17.22441,2.362205,16.24016,-2.362205,17.22441,-2.362205,16.24016,2.362205,3.257902,-2.362205,3.257902,2.362205,5.226406,-2.362205,5.226406,3.838583,5.226406,4.330709,6.909504,3.838583,3.257902,2.854331,5.226406,4.330709,9.791458E-12,2.362205,6.909504,2.854331,3.257902,2.362205,9.790337E-12,-2.854331,5.226406,-2.362205,6.909504,-2.854331,3.257902,-3.838583,5.226406,-2.362205,2.860041E-14,-4.330709,6.909504,-3.838583,3.257902,-4.330709,2.747952E-14,-4.330709,9.79501E-12,-2.854331,3.257902,-2.362205,9.79501E-12,-2.362205,6.909504,-3.838583,3.257902,-2.854331,5.226406,-4.330709,6.909504,-3.838583,5.226406,2.362205,3.215312E-14,3.838583,3.257902,4.330709,3.215312E-14,4.330709,6.909504,2.854331,3.257902,3.838583,5.226406,2.362205,6.909504,2.854331,5.226406 + } + UVIndex: *492 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,26,27,28,28,29,26,28,27,30,31,26,29,31,29,32,29,33,32,34,31,32,30,27,35,33,35,32,34,36,27,32,36,34,27,36,37,35,27,37,37,36,38,37,39,35,36,40,38,39,41,35,39,42,41,41,43,35,35,43,32,44,41,42,42,38,44,43,45,32,44,38,45,45,38,40,32,45,46,40,46,45,47,49,48,50,48,49,51,53,52,54,52,53,55,52,54,56,54,53,57,55,54,53,58,56,58,55,57,59,56,58,57,59,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,81,82,83,83,84,81,83,82,85,82,86,85,84,87,81,87,85,86,81,87,88,86,88,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,104,103,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,115,117,119,117,116,120,118,117,116,121,119,121,118,120,122,119,121,120,122,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,132,133,134,134,135,132,134,133,136,133,137,136,135,138,132,138,136,137,132,138,139,137,139,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,192,193,196,193,194,193,197,195,194,198,196,195,197,198,196,198,199,197,199,198,200,202,201,203,200,201,204,201,202,201,205,203,202,206,204,203,205,206,204,206,207,205,207,206,208,210,209,211,209,210,209,212,208,213,209,211,214,208,212,215,213,211,215,214,212,211,214,215,216,218,217,219,217,218,217,220,216,221,217,219,222,216,220,223,221,219,223,222,220,219,222,223 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *164 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stallBench, Model::RootNode + C: "OO",4755846826661364549,0 + + ;Geometry::, Model::Mesh stallBench + C: "OO",5582320074391347185,4755846826661364549 + + ;Material::wood, Model::Mesh stallBench + C: "OO",7178,4755846826661364549 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallBench.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallBench.fbx.import new file mode 100644 index 0000000..8554a8b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallBench.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cbm136swjukfb" +path="res://.godot/imported/stallBench.fbx-3de43222943aa3e4b2da7f6c77e37ce0.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stallBench.fbx" +dest_files=["res://.godot/imported/stallBench.fbx-3de43222943aa3e4b2da7f6c77e37ce0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallGreen.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallGreen.fbx new file mode 100644 index 0000000..bda1b9f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallGreen.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 372 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stallGreen.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stallGreen.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4666013690374989306, "Model::stallGreen", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5383806434596639053, "Geometry::", "Mesh" { + Vertices: *3084 { + a: 2.5,3.155014,4,2.5,6.979798E-15,4,2.5,3.155014,4.5,2.5,7.264503E-15,4.5,3.25,3.655014,-5,3.25,3.155014,-5,3.25,3.655014,5,3.25,3.155014,5,2.5,7.264503E-15,4.5,2.5,6.979798E-15,4,2,7.264503E-15,4.5,2,7.264503E-15,4,2,0,4.1,-2,2.48703E-12,4.5,-2.5,2.48703E-12,4.5,-2,3.155014,4.5,-2.5,3.155014,4.5,2.5,7.882187E-15,-4.5,2.5,3.155014,-4.5,2,8.166893E-15,-4.5,2,3.155014,-4.5,-2,3.155014,-4.1,-2,3.155014,-4,-2,3.155014,-4.5,-2,3.155014,4,-2.5,3.155014,4,-2,3.155014,4.1,-2.5,3.155014,-4,-3.25,3.155014,5,-2.5,3.155014,4.5,-2.5,3.155014,-4.5,-2,3.155014,4.5,-3.25,3.155014,-5,2,3.155014,-4.5,2.5,3.155014,-4.5,2,3.155014,-4,3.25,3.155014,-5,2,3.155014,4,2.5,3.155014,-4,2,3.155014,4.5,2.5,3.155014,4,2.5,3.155014,4.5,3.25,3.155014,5,3.25,3.155014,5,-3.25,3.155014,5,3.25,3.655014,5,-0.25,3.655014,5,-3.25,3.655014,5,0.25,3.655014,5,0.25,11.73423,5,-0.25,11.73423,5,0.25,12.36983,5,-0.25,12.36983,5,2,7.264503E-15,4,2,3.155014,4,2,0,4.1,2,1.827507,4.125,2,3.155014,4.5,2,1.327507,4.125,2,1.827507,4.375,2,7.264503E-15,4.5,2,1.327507,4.375,-2,2.487933E-12,-4,-2,2.487648E-12,-4.5,-2.5,2.487933E-12,-4,-2.5,2.487933E-12,-4.5,-2.125,1.827507,-4,-2.125,1.327507,-4,-2.125,1.827507,4,-2.125,1.327507,4,-2.5,2.487933E-12,-4.5,-2.5,3.155014,-4.5,-2.5,2.487933E-12,-4,-2.5,3.155014,-4,2.5,7.264503E-15,4.5,2,7.264503E-15,4.5,2.5,3.155014,4.5,2,3.155014,4.5,-2,2.48703E-12,4.5,-2,2.486746E-12,4,-2.5,2.48703E-12,4.5,-2.5,2.48703E-12,4,-2,3.155014,-4,-2,3.155014,-4.1,-2,2.487933E-12,-4,-2,1.327507,-4.125,-2,1.827507,-4.125,-2,1.327507,-4.375,-2,2.487648E-12,-4.5,-2,1.827507,-4.375,-2,3.155014,-4.5,-2.125,1.827507,-4,-2.125,1.827507,4,-2.375,1.827507,-4,-2.375,1.827507,4,-3.25,3.155014,-5,-3.25,3.655014,-5,-3.25,3.155014,5,-3.25,3.655014,5,2.375,1.827507,-4,2.375,1.327507,-4,2.375,1.827507,4,2.375,1.327507,4,2.5,8.166893E-15,-4,2.5,7.882187E-15,-4.5,2,8.166893E-15,-4,2,8.166893E-15,-4.5,2,1.54314E-14,-4.1,-2,2.487648E-12,-4.5,-2,3.155014,-4.5,-2.5,2.487933E-12,-4.5,-2.5,3.155014,-4.5,3.25,3.155014,-5,3.25,3.655014,-5,-3.25,3.155014,-5,-0.25,3.655014,-5,-3.25,3.655014,-5,0.25,3.655014,-5,0.25,11.73423,-5,-0.25,11.73423,-5,-0.25,12.36983,-5,0.25,12.36983,-5,-2,3.155014,4,-2,2.486746E-12,4,-2,3.155014,4.1,-2,1.327507,4.125,-2,2.48703E-12,4.5,-2,1.827507,4.125,-2,1.327507,4.375,-2,3.155014,4.5,-2,1.827507,4.375,2.375,1.327507,4,2.375,1.327507,-4,2.125,1.327507,4,2.125,1.327507,-4,2.125,1.827507,-4,2.125,1.827507,4,2.125,1.327507,-4,2.125,1.327507,4,2,8.166893E-15,-4,2,1.54314E-14,-4.1,2,3.155014,-4,2,1.827507,-4.125,2,1.327507,-4.125,2,1.827507,-4.375,2,3.155014,-4.5,2,1.327507,-4.375,2,8.166893E-15,-4.5,2.5,3.155014,-4.5,2.5,7.882187E-15,-4.5,2.5,3.155014,-4,2.5,8.166893E-15,-4,2.375,1.827507,-4,2.375,1.827507,4,2.125,1.827507,-4,2.125,1.827507,4,-2.375,1.827507,-4,-2.375,1.827507,4,-2.375,1.327507,-4,-2.375,1.327507,4,-2.125,1.327507,4,-2.125,1.327507,-4,-2.375,1.327507,4,-2.375,1.327507,-4,-2.5,2.48703E-12,4,-2.5,3.155014,4,-2.5,2.48703E-12,4.5,-2.5,3.155014,4.5,2,1.327507,-4.125,-2,1.327507,-4.125,2,1.827507,-4.125,-2,1.827507,-4.125,2,1.327507,-4.375,2,1.827507,-4.375,-2,1.327507,-4.375,-2,1.827507,-4.375,2,1.827507,-4.125,-2,1.827507,-4.125,2,1.827507,-4.375,-2,1.827507,-4.375,2,1.327507,-4.125,2,1.327507,-4.375,-2,1.327507,-4.125,-2,1.327507,-4.375,2,1.827507,4.375,-2,1.827507,4.375,2,1.827507,4.125,-2,1.827507,4.125,2,1.327507,4.125,2,1.827507,4.125,-2,1.327507,4.125,-2,1.827507,4.125,2,1.327507,4.375,2,1.327507,4.125,-2,1.327507,4.375,-2,1.327507,4.125,2,1.327507,4.375,-2,1.327507,4.375,2,1.827507,4.375,-2,1.827507,4.375,0.25,3.655014,5,0.25,11.73423,5,0.25,3.655014,4.5,0.25,8.4,4.5,0.25,8.9,4.5,0.25,11.73423,4.5,0.25,12.36983,5,0.25,12.36983,4.5,-0.25,3.655014,-5,-0.25,11.73423,-5,-0.25,3.655014,-4.5,-0.25,11.73423,-4.5,-0.25,8.4,-4.5,-0.25,8.900001,-4.5,-0.25,12.36983,-5,-0.25,12.36983,-4.5,4.5,8.4,-4,4.5,8.4,-4.5,-4.5,8.4,-4,0.25,8.4,-4.5,-0.25,8.4,-4.5,-4.5,8.4,-4.5,0.25,8.9,-4.5,-0.25,8.900001,-4.5,0.25,11.73423,-4.5,-0.25,11.73423,-4.5,0.2376958,11.74998,-4.5,0.25,12.36983,-4.5,-0.2376958,11.74998,-4.5,-0.25,12.36983,-4.5,1.443823E-13,12.116,-4.5,0.25,8.4,-4.5,0.25,8.9,-4.5,0.25,3.655014,-4.5,0.25,11.73423,-4.5,0.25,3.655014,-5,0.25,11.73423,-5,0.25,12.36983,-4.5,0.25,12.36983,-5,-0.25,3.655014,4.5,-0.25,8.4,4.5,-0.25,3.655014,5,-0.25,8.9,4.5,-0.25,11.73423,4.5,-0.25,11.73423,5,-0.25,12.36983,4.5,-0.25,12.36983,5,4.5,8.4,4.5,4.5,8.4,4,0.25,8.4,4.5,-4.5,8.4,4,-0.25,8.4,4.5,-4.5,8.4,4.5,4.5,8.9,4,4.5,8.9,4.5,-4.5,8.900001,4,0.25,8.9,4.5,-0.25,8.9,4.5,-4.5,8.900001,4.5,0.25,8.9,4.5,0.25,11.73423,4.5,-0.25,8.9,4.5,-0.25,11.73423,4.5,-0.2376958,11.74998,4.5,-0.25,12.36983,4.5,0.2376958,11.74998,4.5,0.25,12.36983,4.5,1.443823E-13,12.116,4.5,4.5,8.4,4.5,0.25,8.4,4.5,4.5,8.9,4.5,0.25,8.9,4.5,4.5,8.4,4,4.5,8.9,4,-4.5,8.4,4,-4.5,8.900001,4,4.5,8.4,-4,-4.5,8.4,-4,4.5,8.9,-4,-4.5,8.900001,-4,-0.25,8.4,4.5,-4.5,8.4,4.5,-0.25,8.9,4.5,-4.5,8.900001,4.5,0.25,12.36983,4.5,0.25,12.36983,5,-0.25,12.36983,4.5,-0.25,12.36983,5,0.25,12.36983,-5,0.25,12.36983,-4.5,-0.25,12.36983,-5,-0.25,12.36983,-4.5,0.25,3.655014,-4.5,-0.25,3.655014,-4.5,0.25,8.4,-4.5,-0.25,8.4,-4.5,4.5,8.4,-4.5,4.5,8.9,-4.5,0.25,8.4,-4.5,0.25,8.9,-4.5,-0.25,3.655014,4.5,0.25,3.655014,4.5,-0.25,8.4,4.5,0.25,8.4,4.5,-0.25,8.4,-4.5,-0.25,8.900001,-4.5,-4.5,8.4,-4.5,-4.5,8.900001,-4.5,4.5,8.9,-4.5,4.5,8.9,-4,0.25,8.9,-4.5,-4.5,8.900001,-4,-0.25,8.900001,-4.5,-4.5,8.900001,-4.5,-0.25,3.655014,-5,-0.25,3.655014,-4.5,-3.25,3.655014,-5,-0.25,3.655014,4.5,-0.25,3.655014,5,-3.25,3.655014,5,0.25,3.655014,4.5,0.25,3.655014,-4.5,0.25,3.655014,5,0.25,3.655014,-5,3.25,3.655014,5,3.25,3.655014,-5,-4.5,8.4,-4.5,-4.5,8.900001,-4.5,-4.5,8.4,-4,-4.5,8.900001,-4,-4.5,8.4,4,-4.5,8.900001,4,-4.5,8.4,4.5,-4.5,8.900001,4.5,4.5,8.9,4,4.5,8.4,4,4.5,8.9,4.5,4.5,8.4,4.5,4.5,8.9,-4.5,4.5,8.4,-4.5,4.5,8.9,-4,4.5,8.4,-4,-2.375,1.827507,4,-2.5,3.155014,4,-2.375,1.327507,4,-2.125,1.827507,4,-2.5,2.48703E-12,4,-2,3.155014,4,-2.125,1.327507,4,-2,2.486746E-12,4,2.125,1.827507,4,2,3.155014,4,2.125,1.327507,4,2.375,1.827507,4,2,7.264503E-15,4,2.5,3.155014,4,2.375,1.327507,4,2.5,6.979798E-15,4,-2.5,2.487933E-12,-4,-2.125,1.327507,-4,-2,2.487933E-12,-4,-2,3.155014,-4,-2.375,1.327507,-4,-2.125,1.827507,-4,-2.5,3.155014,-4,-2.375,1.827507,-4,2,8.166893E-15,-4,2.375,1.327507,-4,2.5,8.166893E-15,-4,2.5,3.155014,-4,2.125,1.327507,-4,2.375,1.827507,-4,2,3.155014,-4,2.125,1.827507,-4,3.905808,9.214744,-5,3.905808,9.214744,5,3.386836,9.410781,-5,3.386836,9.410781,5,3.386836,9.410781,-5,3.905808,9.214744,5,3.905808,9.214744,-5,3.386836,9.410781,5,4.444457,9.04419,-5,4.444457,9.04419,5,3.905808,9.214744,-5,3.905808,9.214744,5,3.905808,9.214744,-5,4.444457,9.04419,5,4.444457,9.04419,-5,3.905808,9.214744,5,-1.55952,10.42764,-5,-1.55952,10.42764,5,-1.974197,10.14103,-5,-1.974197,10.14103,5,-1.974197,10.14103,-5,-1.55952,10.42764,5,-1.55952,10.42764,-5,-1.974197,10.14103,5,-0.8275408,11.05692,-5,-0.5140187,11.39634,-5,-0.8275408,11.05692,5,-0.5140187,11.39634,5,-0.8275408,11.05692,5,-0.5140187,11.39634,-5,-0.8275408,11.05692,-5,-0.5140187,11.39634,5,-4.444457,9.04419,-5,-4.444457,9.04419,5,-5,8.900001,-5,-5,8.900001,5,-5,8.900001,-5,-4.444457,9.04419,5,-4.444457,9.04419,-5,-5,8.900001,5,-0.5140187,11.39634,-5,-0.25,11.73423,-5,-0.5140187,11.39634,5,-0.25,11.73423,-4.5,-0.2376958,11.74998,-4.5,-0.25,11.73423,4.5,-0.25,11.73423,5,-0.2376958,11.74998,4.5,-0.5140187,11.39634,5,-0.25,11.73423,-5,-0.5140187,11.39634,-5,-0.25,11.73423,-4.5,-0.2376958,11.74998,-4.5,-0.25,11.73423,4.5,-0.2376958,11.74998,4.5,-0.25,11.73423,5,-0.2376958,11.74998,-4.5,1.443823E-13,12.116,-4.5,-0.2376958,11.74998,4.5,1.443823E-13,12.116,4.5,-0.2376958,11.74998,4.5,1.443823E-13,12.116,-4.5,-0.2376958,11.74998,-4.5,1.443823E-13,12.116,4.5,1.443823E-13,12.116,-4.5,0.2376958,11.74998,-4.5,1.443823E-13,12.116,4.5,0.2376958,11.74998,4.5,1.443823E-13,12.116,4.5,0.2376958,11.74998,-4.5,1.443823E-13,12.116,-4.5,0.2376958,11.74998,4.5,-1.176643,10.73346,-5,-1.176643,10.73346,5,-1.55952,10.42764,-5,-1.55952,10.42764,5,-1.55952,10.42764,-5,-1.176643,10.73346,5,-1.176643,10.73346,-5,-1.55952,10.42764,5,0.2376958,11.74998,-4.5,0.25,11.73423,-4.5,0.2376958,11.74998,4.5,0.25,11.73423,4.5,0.5140187,11.39634,5,0.25,11.73423,5,0.5140187,11.39634,-5,0.25,11.73423,-5,0.2376958,11.74998,4.5,0.25,11.73423,-4.5,0.2376958,11.74998,-4.5,0.25,11.73423,4.5,0.5140187,11.39634,5,0.25,11.73423,5,0.5140187,11.39634,-5,0.25,11.73423,-5,-1.974197,10.14103,-5,-1.974197,10.14103,5,-2.418528,9.875125,-5,-2.418528,9.875125,5,-2.418528,9.875125,-5,-1.974197,10.14103,5,-1.974197,10.14103,-5,-2.418528,9.875125,5,1.55952,10.42764,-5,1.55952,10.42764,5,1.176643,10.73346,-5,1.176643,10.73346,5,1.176643,10.73346,-5,1.55952,10.42764,5,1.55952,10.42764,-5,1.176643,10.73346,5,-2.418528,9.875125,-5,-2.418528,9.875125,5,-2.89022,9.631287,-5,-2.89022,9.631287,5,-2.89022,9.631287,-5,-2.418528,9.875125,5,-2.418528,9.875125,-5,-2.89022,9.631287,5,-3.905808,9.214744,-5,-3.905808,9.214744,5,-4.444457,9.04419,-5,-4.444457,9.04419,5,-4.444457,9.04419,-5,-3.905808,9.214744,5,-3.905808,9.214744,-5,-4.444457,9.04419,5,2.418528,9.875125,-5,2.418528,9.875125,5,1.974197,10.14103,-5,1.974197,10.14103,5,1.974197,10.14103,-5,2.418528,9.875125,5,2.418528,9.875125,-5,1.974197,10.14103,5,0.5140187,11.39634,-5,0.8275408,11.05692,-5,0.5140187,11.39634,5,0.8275408,11.05692,5,0.5140187,11.39634,5,0.8275408,11.05692,-5,0.5140187,11.39634,-5,0.8275408,11.05692,5,5,8.900001,-5,5,8.900001,5,4.444457,9.04419,-5,4.444457,9.04419,5,4.444457,9.04419,-5,5,8.900001,5,5,8.900001,-5,4.444457,9.04419,5,-2.89022,9.631287,-5,-2.89022,9.631287,5,-3.386836,9.410781,-5,-3.386836,9.410781,5,-3.386836,9.410781,-5,-2.89022,9.631287,5,-2.89022,9.631287,-5,-3.386836,9.410781,5,-3.386836,9.410781,-5,-3.386836,9.410781,5,-3.905808,9.214744,-5,-3.905808,9.214744,5,-3.905808,9.214744,-5,-3.386836,9.410781,5,-3.386836,9.410781,-5,-3.905808,9.214744,5,1.176643,10.73346,-5,1.176643,10.73346,5,0.8275408,11.05692,-5,0.8275408,11.05692,5,0.8275408,11.05692,-5,1.176643,10.73346,5,1.176643,10.73346,-5,0.8275408,11.05692,5,2.89022,9.631287,-5,2.89022,9.631287,5,2.418528,9.875125,-5,2.418528,9.875125,5,2.418528,9.875125,-5,2.89022,9.631287,5,2.89022,9.631287,-5,2.418528,9.875125,5,-0.8275408,11.05692,-5,-0.8275408,11.05692,5,-1.176643,10.73346,-5,-1.176643,10.73346,5,-1.176643,10.73346,-5,-0.8275408,11.05692,5,-0.8275408,11.05692,-5,-1.176643,10.73346,5,1.974197,10.14103,-5,1.974197,10.14103,5,1.55952,10.42764,-5,1.55952,10.42764,5,1.55952,10.42764,-5,1.974197,10.14103,5,1.974197,10.14103,-5,1.55952,10.42764,5,3.386836,9.410781,-5,3.386836,9.410781,5,2.89022,9.631287,-5,2.89022,9.631287,5,2.89022,9.631287,-5,3.386836,9.410781,5,3.386836,9.410781,-5,2.89022,9.631287,5,-5,8.349999,-5,-5,8.625,-5,-5,8.207649,-4.98107,-5,8.900001,-5,-5,8.349999,-3.888889,-5,8.900001,5,-5,8.349999,-2.777778,-5,8.075,-4.92557,-5,7.961091,-4.837282,-5,7.873686,-4.722222,-5,7.818741,-4.588233,-5,7.8,-4.444444,-5,7.818741,-4.300656,-5,7.873686,-4.166667,-5,7.961091,-4.051607,-5,8.075,-3.963319,-5,8.207649,-3.907819,-5,8.207649,-3.869959,-5,8.075,-3.814459,-5,7.961091,-3.72617,-5,7.873686,-3.611111,-5,7.818741,-3.477122,-5,7.8,-3.333333,-5,7.818741,-3.189545,-5,7.873686,-3.055556,-5,7.961091,-2.940496,-5,8.075,-2.852208,-5,8.207649,-2.796708,-5,8.207649,-2.758847,-5,8.349999,-1.666667,-5,8.075,-2.703347,-5,7.961091,-2.615059,-5,7.873686,-2.5,-5,7.818741,-2.366011,-5,7.8,-2.222222,-5,7.818741,-2.078434,-5,7.873686,-1.944444,-5,7.961091,-1.829385,-5,8.075,-1.741097,-5,8.207649,-1.685597,-5,8.349999,-0.5555555,-5,8.207649,-1.647736,-5,8.075,-1.592236,-5,7.961091,-1.503948,-5,7.873686,-1.388889,-5,7.818741,-1.254899,-5,7.8,-1.111111,-5,7.818741,-0.9673227,-5,7.873686,-0.8333334,-5,7.961091,-0.718274,-5,8.075,-0.6299859,-5,8.207649,-0.5744856,-5,8.349999,0.5555555,-5,8.207649,-0.5366254,-5,8.075,-0.4811252,-5,7.961091,-0.3928371,-5,7.873686,-0.2777778,-5,7.818741,-0.1437884,-5,7.8,1.299441E-13,-5,7.818741,0.1437884,-5,7.873686,0.2777778,-5,7.961091,0.3928371,-5,8.075,0.4811252,-5,8.207649,0.5366254,-5,8.207649,0.5744856,-5,8.349999,1.666667,-5,8.075,0.6299859,-5,7.961091,0.718274,-5,7.873686,0.8333334,-5,7.818741,0.9673227,-5,7.8,1.111111,-5,7.818741,1.254899,-5,7.873686,1.388889,-5,7.961091,1.503948,-5,8.075,1.592236,-5,8.207649,1.647736,-5,8.207649,1.685597,-5,8.349999,2.777778,-5,8.207649,2.796708,-5,8.075,1.741097,-5,7.961091,1.829385,-5,7.873686,1.944444,-5,8.075,2.852208,-5,7.818741,2.078434,-5,7.8,2.222222,-5,7.818741,2.366011,-5,7.873686,2.5,-5,7.961091,2.615059,-5,8.075,2.703347,-5,8.207649,2.758847,-5,7.961091,2.940496,-5,8.349999,3.888889,-5,7.873686,3.055556,-5,7.818741,3.189545,-5,7.8,3.333333,-5,7.818741,3.477122,-5,7.873686,3.611111,-5,7.961091,3.72617,-5,8.075,3.814459,-5,8.207649,3.869959,-5,8.207649,3.907819,-5,8.075,3.963319,-5,7.961091,4.051607,-5,7.873686,4.166667,-5,7.818741,4.300656,-5,7.8,4.444444,-5,7.818741,4.588233,-5,7.873686,4.722222,-5,7.961091,4.837282,-5,8.075,4.92557,-5,8.207649,4.98107,-5,8.349999,5,-5,8.207649,-4.98107,-5,8.625,-5,-5,8.349999,-5,-5,8.900001,-5,-5,8.349999,-3.888889,-5,8.900001,5,-5,8.349999,-2.777778,-5,8.075,-4.92557,-5,7.961091,-4.837282,-5,7.873686,-4.722222,-5,7.818741,-4.588233,-5,7.8,-4.444444,-5,7.818741,-4.300656,-5,7.873686,-4.166667,-5,7.961091,-4.051607,-5,8.075,-3.963319,-5,8.207649,-3.907819,-5,8.207649,-3.869959,-5,8.075,-3.814459,-5,7.961091,-3.72617,-5,7.873686,-3.611111,-5,7.818741,-3.477122,-5,7.8,-3.333333,-5,7.818741,-3.189545,-5,7.873686,-3.055556,-5,7.961091,-2.940496,-5,8.075,-2.852208,-5,8.207649,-2.796708,-5,8.349999,-1.666667,-5,8.207649,-2.758847,-5,8.075,-2.703347,-5,7.961091,-2.615059,-5,7.873686,-2.5,-5,7.818741,-2.366011,-5,7.8,-2.222222,-5,7.818741,-2.078434,-5,7.873686,-1.944444,-5,7.961091,-1.829385,-5,8.075,-1.741097,-5,8.207649,-1.685597,-5,8.349999,-0.5555555,-5,8.207649,-1.647736,-5,8.075,-1.592236,-5,7.961091,-1.503948,-5,7.873686,-1.388889,-5,7.818741,-1.254899,-5,7.8,-1.111111,-5,7.818741,-0.9673227,-5,7.873686,-0.8333334,-5,7.961091,-0.718274,-5,8.075,-0.6299859,-5,8.207649,-0.5744856,-5,8.349999,0.5555555,-5,8.207649,-0.5366254,-5,8.075,-0.4811252,-5,7.961091,-0.3928371,-5,7.873686,-0.2777778,-5,7.818741,-0.1437884,-5,7.8,1.299441E-13,-5,7.818741,0.1437884,-5,7.873686,0.2777778,-5,7.961091,0.3928371,-5,8.075,0.4811252,-5,8.207649,0.5366254,-5,8.207649,0.5744856,-5,8.349999,1.666667,-5,8.075,0.6299859,-5,7.961091,0.718274,-5,7.873686,0.8333334,-5,7.818741,0.9673227,-5,7.8,1.111111,-5,7.818741,1.254899,-5,7.873686,1.388889,-5,7.961091,1.503948,-5,8.075,1.592236,-5,8.207649,1.647736,-5,8.207649,1.685597,-5,8.349999,2.777778,-5,8.207649,2.796708,-5,8.075,1.741097,-5,7.961091,1.829385,-5,7.873686,1.944444,-5,8.075,2.852208,-5,7.818741,2.078434,-5,7.8,2.222222,-5,7.818741,2.366011,-5,7.873686,2.5,-5,7.961091,2.615059,-5,8.075,2.703347,-5,8.207649,2.758847,-5,7.961091,2.940496,-5,8.349999,3.888889,-5,7.873686,3.055556,-5,7.818741,3.189545,-5,7.8,3.333333,-5,7.818741,3.477122,-5,7.873686,3.611111,-5,7.961091,3.72617,-5,8.075,3.814459,-5,8.207649,3.869959,-5,8.207649,3.907819,-5,8.075,3.963319,-5,7.961091,4.051607,-5,7.873686,4.166667,-5,7.818741,4.300656,-5,7.8,4.444444,-5,7.818741,4.588233,-5,7.873686,4.722222,-5,7.961091,4.837282,-5,8.075,4.92557,-5,8.207649,4.98107,-5,8.349999,5,5,8.900001,-5,5,8.349999,-5,5,8.900001,5,5,8.349999,-3.888889,5,8.349999,-2.777778,5,8.207649,-4.98107,5,8.075,-4.92557,5,7.961091,-4.837282,5,7.873686,-4.722222,5,7.818741,-4.588233,5,7.8,-4.444444,5,7.818741,-4.300656,5,7.873686,-4.166667,5,7.961091,-4.051607,5,8.075,-3.963319,5,8.207649,-3.907819,5,8.207649,-3.869959,5,8.075,-3.814459,5,7.961091,-3.72617,5,7.873686,-3.611111,5,7.818741,-3.477122,5,7.8,-3.333333,5,7.818741,-3.189545,5,7.873686,-3.055556,5,7.961091,-2.940496,5,8.075,-2.852208,5,8.207649,-2.796708,5,8.207649,-2.758847,5,8.349999,-1.666667,5,8.075,-2.703347,5,7.961091,-2.615059,5,7.873686,-2.5,5,7.818741,-2.366011,5,7.8,-2.222222,5,7.818741,-2.078434,5,7.873686,-1.944444,5,7.961091,-1.829385,5,8.075,-1.741097,5,8.207649,-1.685597,5,8.349999,-0.5555555,5,8.207649,-1.647736,5,8.075,-1.592236,5,7.961091,-1.503948,5,7.873686,-1.388889,5,7.818741,-1.254899,5,7.8,-1.111111,5,7.818741,-0.9673227,5,7.873686,-0.8333334,5,7.961091,-0.718274,5,8.075,-0.6299859,5,8.207649,-0.5744856,5,8.349999,0.5555555,5,8.207649,-0.5366254,5,8.075,-0.4811252,5,7.961091,-0.3928371,5,7.873686,-0.2777778,5,7.818741,-0.1437884,5,7.8,1.299441E-13,5,7.818741,0.1437884,5,7.873686,0.2777778,5,7.961091,0.3928371,5,8.075,0.4811252,5,8.207649,0.5366254,5,8.207649,0.5744856,5,8.349999,1.666667,5,8.075,0.6299859,5,7.961091,0.718274,5,7.873686,0.8333334,5,7.818741,0.9673227,5,7.8,1.111111,5,7.818741,1.254899,5,7.873686,1.388889,5,7.961091,1.503948,5,8.075,1.592236,5,8.207649,1.647736,5,8.207649,1.685597,5,8.349999,2.777778,5,8.207649,2.796708,5,8.075,1.741097,5,7.961091,1.829385,5,7.873686,1.944444,5,8.075,2.852208,5,7.818741,2.078434,5,7.8,2.222222,5,7.818741,2.366011,5,7.873686,2.5,5,7.961091,2.615059,5,8.075,2.703347,5,8.207649,2.758847,5,7.961091,2.940496,5,8.349999,3.888889,5,7.873686,3.055556,5,7.818741,3.189545,5,7.8,3.333333,5,7.818741,3.477122,5,7.873686,3.611111,5,7.961091,3.72617,5,8.075,3.814459,5,8.207649,3.869959,5,8.207649,3.907819,5,8.075,3.963319,5,7.961091,4.051607,5,7.873686,4.166667,5,7.818741,4.300656,5,7.8,4.444444,5,7.818741,4.588233,5,7.873686,4.722222,5,7.961091,4.837282,5,8.075,4.92557,5,8.207649,4.98107,5,8.349999,5,5,8.900001,5,5,8.349999,-5,5,8.900001,-5,5,8.349999,-3.888889,5,8.349999,-2.777778,5,8.207649,-4.98107,5,8.075,-4.92557,5,7.961091,-4.837282,5,7.873686,-4.722222,5,7.818741,-4.588233,5,7.8,-4.444444,5,7.818741,-4.300656,5,7.873686,-4.166667,5,7.961091,-4.051607,5,8.075,-3.963319,5,8.207649,-3.907819,5,8.207649,-3.869959,5,8.075,-3.814459,5,7.961091,-3.72617,5,7.873686,-3.611111,5,7.818741,-3.477122,5,7.8,-3.333333,5,7.818741,-3.189545,5,7.873686,-3.055556,5,7.961091,-2.940496,5,8.075,-2.852208,5,8.207649,-2.796708,5,8.349999,-1.666667,5,8.207649,-2.758847,5,8.075,-2.703347,5,7.961091,-2.615059,5,7.873686,-2.5,5,7.818741,-2.366011,5,7.8,-2.222222,5,7.818741,-2.078434,5,7.873686,-1.944444,5,7.961091,-1.829385,5,8.075,-1.741097,5,8.207649,-1.685597,5,8.349999,-0.5555555,5,8.207649,-1.647736,5,8.075,-1.592236,5,7.961091,-1.503948,5,7.873686,-1.388889,5,7.818741,-1.254899,5,7.8,-1.111111,5,7.818741,-0.9673227,5,7.873686,-0.8333334,5,7.961091,-0.718274,5,8.075,-0.6299859,5,8.207649,-0.5744856,5,8.349999,0.5555555,5,8.207649,-0.5366254,5,8.075,-0.4811252,5,7.961091,-0.3928371,5,7.873686,-0.2777778,5,7.818741,-0.1437884,5,7.8,1.299441E-13,5,7.818741,0.1437884,5,7.873686,0.2777778,5,7.961091,0.3928371,5,8.075,0.4811252,5,8.207649,0.5366254,5,8.207649,0.5744856,5,8.349999,1.666667,5,8.075,0.6299859,5,7.961091,0.718274,5,7.873686,0.8333334,5,7.818741,0.9673227,5,7.8,1.111111,5,7.818741,1.254899,5,7.873686,1.388889,5,7.961091,1.503948,5,8.075,1.592236,5,8.207649,1.647736,5,8.207649,1.685597,5,8.349999,2.777778,5,8.207649,2.796708,5,8.075,1.741097,5,7.961091,1.829385,5,7.873686,1.944444,5,8.075,2.852208,5,7.818741,2.078434,5,7.8,2.222222,5,7.818741,2.366011,5,7.873686,2.5,5,7.961091,2.615059,5,8.075,2.703347,5,8.207649,2.758847,5,7.961091,2.940496,5,8.349999,3.888889,5,7.873686,3.055556,5,7.818741,3.189545,5,7.8,3.333333,5,7.818741,3.477122,5,7.873686,3.611111,5,7.961091,3.72617,5,8.075,3.814459,5,8.207649,3.869959,5,8.207649,3.907819,5,8.075,3.963319,5,7.961091,4.051607,5,7.873686,4.166667,5,7.818741,4.300656,5,7.8,4.444444,5,7.818741,4.588233,5,7.873686,4.722222,5,7.961091,4.837282,5,8.075,4.92557,5,8.207649,4.98107,5,8.349999,5 + } + PolygonVertexIndex: *2466 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,22,23,-25,24,25,-23,24,23,-27,27,22,-26,27,25,-29,25,29,-29,30,27,-29,26,23,-32,29,31,-29,30,32,-24,28,32,-31,23,32,-34,31,23,-34,33,32,-35,33,35,-32,32,36,-35,35,37,-32,31,37,-29,35,38,-38,37,39,-29,40,37,-39,38,34,-41,39,41,-29,40,34,-42,41,34,-37,28,41,-43,36,42,-42,43,45,-45,46,44,-46,47,44,-47,48,46,-46,48,49,-47,50,46,-50,51,50,-50,52,50,-52,53,55,-55,56,54,-56,57,54,-57,58,56,-56,59,57,-57,55,60,-59,60,57,-60,61,58,-61,59,61,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,83,84,-86,85,86,-84,85,84,-88,84,88,-88,86,89,-84,89,87,-89,83,89,-91,88,90,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,106,-106,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,115,-115,117,113,-116,117,115,-119,119,118,-116,120,118,-120,121,118,-121,122,124,-124,125,123,-125,126,123,-126,127,125,-125,128,126,-126,124,129,-128,129,126,-129,130,127,-130,128,130,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,140,141,-143,142,143,-141,142,141,-145,141,145,-145,143,146,-141,146,144,-146,140,146,-148,145,147,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,202,203,-202,203,204,-202,205,201,-205,201,205,-207,207,206,-206,208,210,-210,211,209,-211,212,211,-211,213,211,-213,209,211,-215,215,214,-212,216,218,-218,219,217,-219,220,219,-219,221,220,-219,222,224,-224,225,223,-225,226,225,-225,224,227,-227,228,225,-227,225,228,-230,230,226,-228,227,229,-231,230,228,-227,230,229,-229,231,233,-233,232,233,-235,233,235,-235,236,234,-236,234,236,-238,238,237,-237,239,241,-241,242,240,-242,243,242,-242,244,243,-242,243,244,-246,246,245,-245,247,249,-249,250,248,-250,251,250,-250,252,250,-252,253,255,-255,256,254,-256,257,256,-256,258,257,-256,259,261,-261,262,260,-262,263,260,-263,262,264,-264,265,260,-264,260,265,-267,267,263,-265,264,266,-268,267,265,-264,267,266,-266,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,311,-311,313,311,-313,314,316,-316,317,315,-317,318,317,-317,319,318,-317,317,320,-316,321,315,-321,320,322,-322,321,322,-324,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,342,-344,346,343,-345,343,347,-346,344,348,-347,345,347,-349,346,348,-350,347,349,-349,350,352,-352,353,350,-352,354,351,-353,351,355,-354,352,356,-355,353,355,-357,354,356,-358,355,357,-357,358,360,-360,361,359,-361,359,362,-359,363,359,-362,364,358,-363,365,363,-362,365,364,-363,361,364,-366,366,368,-368,369,367,-369,367,370,-367,371,367,-370,372,366,-371,373,371,-370,373,372,-371,369,372,-374,374,376,-376,377,375,-377,378,380,-380,379,381,-379,382,384,-384,385,383,-385,386,388,-388,387,389,-387,390,392,-392,393,391,-393,394,396,-396,395,397,-395,398,400,-400,401,399,-401,402,404,-404,403,405,-403,406,408,-408,409,407,-409,410,412,-412,411,413,-411,414,416,-416,417,415,-417,418,417,-417,419,418,-417,420,419,-417,419,421,-419,422,424,-424,423,425,-423,425,426,-423,426,427,-423,428,427,-427,427,429,-423,430,432,-432,433,431,-433,434,436,-436,435,437,-435,438,440,-440,441,439,-441,442,444,-444,443,445,-443,446,448,-448,449,447,-449,450,452,-452,451,453,-451,454,456,-456,456,457,-456,457,458,-456,459,458,-458,458,460,-456,461,455,-461,462,464,-464,465,462,-464,466,465,-464,466,467,-466,468,466,-464,463,469,-469,470,472,-472,473,471,-473,474,476,-476,475,477,-475,478,480,-480,481,479,-481,482,484,-484,483,485,-483,486,488,-488,489,487,-489,490,492,-492,491,493,-491,494,496,-496,497,495,-497,498,500,-500,499,501,-499,502,504,-504,505,503,-505,506,508,-508,507,509,-507,510,512,-512,513,511,-513,514,516,-516,515,517,-515,518,520,-520,521,519,-521,522,524,-524,523,525,-523,526,528,-528,529,527,-529,530,532,-532,531,533,-531,534,536,-536,537,535,-537,538,540,-540,539,541,-539,542,544,-544,545,543,-545,546,548,-548,547,549,-547,550,552,-552,553,551,-553,554,556,-556,555,557,-555,558,560,-560,561,559,-561,562,564,-564,563,565,-563,566,568,-568,569,567,-569,570,572,-572,571,573,-571,574,576,-576,577,575,-577,578,580,-580,579,581,-579,582,584,-584,585,583,-585,586,585,-585,587,585,-587,588,587,-587,589,586,-585,590,586,-590,591,586,-591,592,586,-592,593,586,-593,594,586,-594,595,586,-595,596,586,-596,597,586,-597,598,586,-598,599,588,-587,600,588,-600,601,588,-601,602,588,-602,603,588,-603,604,588,-604,605,588,-605,606,588,-606,607,588,-607,608,588,-608,609,588,-609,610,611,-589,612,611,-611,613,611,-613,614,611,-614,615,611,-615,616,611,-616,617,611,-617,618,611,-618,619,611,-619,620,611,-620,621,611,-621,611,587,-589,622,587,-612,623,622,-612,624,622,-624,625,622,-625,626,622,-626,627,622,-627,628,622,-628,629,622,-629,630,622,-630,631,622,-631,632,622,-632,633,622,-633,634,587,-623,635,634,-623,636,634,-636,637,634,-637,638,634,-638,639,634,-639,640,634,-640,641,634,-641,642,634,-642,643,634,-643,644,634,-644,645,634,-645,646,587,-635,647,587,-647,648,647,-647,649,647,-649,650,647,-650,651,647,-651,652,647,-652,653,647,-653,654,647,-654,655,647,-655,656,647,-656,657,647,-657,658,587,-648,659,587,-659,660,587,-660,661,659,-659,662,659,-662,663,659,-663,664,587,-661,665,659,-664,666,659,-666,667,659,-667,668,659,-668,669,659,-669,670,659,-670,671,659,-671,672,587,-665,673,587,-673,674,673,-673,675,673,-675,676,673,-676,677,673,-677,678,673,-678,679,673,-679,680,673,-680,681,673,-681,682,587,-674,683,587,-683,684,587,-684,685,587,-685,686,587,-686,687,587,-687,688,587,-688,689,587,-689,690,587,-690,691,587,-691,692,587,-692,693,587,-693,694,696,-696,695,697,-695,697,698,-695,697,699,-699,699,700,-699,698,701,-695,698,702,-702,698,703,-703,698,704,-704,698,705,-705,698,706,-706,698,707,-707,698,708,-708,698,709,-709,698,710,-710,700,711,-699,700,712,-712,700,713,-713,700,714,-714,700,715,-715,700,716,-716,700,717,-717,700,718,-718,700,719,-719,700,720,-720,700,721,-721,722,723,-701,722,724,-724,722,725,-725,722,726,-726,722,727,-727,722,728,-728,722,729,-729,722,730,-730,722,731,-731,722,732,-732,722,733,-733,699,722,-701,699,734,-723,734,735,-723,734,736,-736,734,737,-737,734,738,-738,734,739,-739,734,740,-740,734,741,-741,734,742,-742,734,743,-743,734,744,-744,734,745,-745,699,746,-735,746,747,-735,746,748,-748,746,749,-749,746,750,-750,746,751,-751,746,752,-752,746,753,-753,746,754,-754,746,755,-755,746,756,-756,746,757,-757,699,758,-747,699,759,-759,759,760,-759,759,761,-761,759,762,-762,759,763,-763,759,764,-764,759,765,-765,759,766,-766,759,767,-767,759,768,-768,759,769,-769,699,770,-760,699,771,-771,699,772,-772,771,773,-771,771,774,-774,771,775,-775,699,776,-773,771,777,-776,771,778,-778,771,779,-779,771,780,-780,771,781,-781,771,782,-782,771,783,-783,699,784,-777,699,785,-785,785,786,-785,785,787,-787,785,788,-788,785,789,-789,785,790,-790,785,791,-791,785,792,-792,785,793,-793,699,794,-786,699,795,-795,699,796,-796,699,797,-797,699,798,-798,699,799,-799,699,800,-800,699,801,-801,699,802,-802,699,803,-803,699,804,-804,699,805,-805,806,808,-808,809,807,-809,810,809,-809,811,807,-810,812,811,-810,813,812,-810,814,813,-810,815,814,-810,816,815,-810,817,816,-810,818,817,-810,819,818,-810,820,819,-810,821,820,-810,822,809,-811,823,822,-811,824,823,-811,825,824,-811,826,825,-811,827,826,-811,828,827,-811,829,828,-811,830,829,-811,831,830,-811,832,831,-811,833,810,-835,835,833,-835,836,835,-835,837,836,-835,838,837,-835,839,838,-835,840,839,-835,841,840,-835,842,841,-835,843,842,-835,844,843,-835,834,810,-809,845,834,-809,846,834,-846,847,846,-846,848,847,-846,849,848,-846,850,849,-846,851,850,-846,852,851,-846,853,852,-846,854,853,-846,855,854,-846,856,855,-846,857,845,-809,858,845,-858,859,858,-858,860,859,-858,861,860,-858,862,861,-858,863,862,-858,864,863,-858,865,864,-858,866,865,-858,867,866,-858,868,867,-858,869,857,-809,870,869,-809,871,869,-871,872,871,-871,873,872,-871,874,873,-871,875,874,-871,876,875,-871,877,876,-871,878,877,-871,879,878,-871,880,879,-871,881,870,-809,882,881,-809,883,882,-809,884,881,-883,885,884,-883,886,885,-883,887,883,-809,888,886,-883,889,888,-883,890,889,-883,891,890,-883,892,891,-883,893,892,-883,894,893,-883,895,887,-809,896,895,-809,897,895,-897,898,897,-897,899,898,-897,900,899,-897,901,900,-897,902,901,-897,903,902,-897,904,903,-897,905,896,-809,906,905,-809,907,906,-809,908,907,-809,909,908,-809,910,909,-809,911,910,-809,912,911,-809,913,912,-809,914,913,-809,915,914,-809,916,915,-809,917,919,-919,918,920,-918,920,921,-918,918,922,-921,922,923,-921,923,924,-921,924,925,-921,925,926,-921,926,927,-921,927,928,-921,928,929,-921,929,930,-921,930,931,-921,931,932,-921,920,933,-922,933,934,-922,934,935,-922,935,936,-922,936,937,-922,937,938,-922,938,939,-922,939,940,-922,940,941,-922,941,942,-922,942,943,-922,921,945,-945,945,946,-945,946,947,-945,947,948,-945,948,949,-945,949,950,-945,950,951,-945,951,952,-945,952,953,-945,953,954,-945,954,955,-945,921,944,-918,944,956,-918,944,957,-957,957,958,-957,958,959,-957,959,960,-957,960,961,-957,961,962,-957,962,963,-957,963,964,-957,964,965,-957,965,966,-957,966,967,-957,956,968,-918,956,969,-969,969,970,-969,970,971,-969,971,972,-969,972,973,-969,973,974,-969,974,975,-969,975,976,-969,976,977,-969,977,978,-969,978,979,-969,968,980,-918,980,981,-918,980,982,-982,982,983,-982,983,984,-982,984,985,-982,985,986,-982,986,987,-982,987,988,-982,988,989,-982,989,990,-982,990,991,-982,981,992,-918,992,993,-918,993,994,-918,992,995,-994,995,996,-994,996,997,-994,994,998,-918,997,999,-994,999,1000,-994,1000,1001,-994,1001,1002,-994,1002,1003,-994,1003,1004,-994,1004,1005,-994,998,1006,-918,1006,1007,-918,1006,1008,-1008,1008,1009,-1008,1009,1010,-1008,1010,1011,-1008,1011,1012,-1008,1012,1013,-1008,1013,1014,-1008,1014,1015,-1008,1007,1016,-918,1016,1017,-918,1017,1018,-918,1018,1019,-918,1019,1020,-918,1020,1021,-918,1021,1022,-918,1022,1023,-918,1023,1024,-918,1024,1025,-918,1025,1026,-918,1026,1027,-918 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *7398 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.3277377,0.9447687,0,0.3797443,0.9250916,0,0.3277377,0.9447687,0,0.3797443,0.9250916,0,0.3277377,0.9447687,0,0.3797443,0.9250916,0,-0.3797443,-0.9250916,0,-0.3277377,-0.9447687,0,-0.3277377,-0.9447687,0,-0.3277377,-0.9447687,0,-0.3797443,-0.9250916,0,-0.3797443,-0.9250916,0,0.2766396,0.9609737,0,0.3277377,0.9447687,0,0.2766396,0.9609737,0,0.3277377,0.9447687,0,0.2766396,0.9609737,0,0.3277377,0.9447687,0,-0.3277377,-0.9447687,0,-0.2766396,-0.9609737,0,-0.2766396,-0.9609737,0,-0.2766396,-0.9609737,0,-0.3277377,-0.9447687,0,-0.3277377,-0.9447687,0,-0.5966902,0.8024716,0,-0.5413319,0.8408089,0,-0.5966902,0.8024716,0,-0.5413319,0.8408089,0,-0.5966902,0.8024716,0,-0.5413319,0.8408089,0,0.5413319,-0.8408089,0,0.5966902,-0.8024716,0,0.5966902,-0.8024716,0,0.5966902,-0.8024716,0,0.5413319,-0.8408089,0,0.5413319,-0.8408089,0,-0.7076507,0.7065625,0,-0.7076507,0.7065625,0,-0.7619254,0.6476648,0,-0.7619254,0.6476648,0,-0.7619254,0.6476648,0,-0.7076507,0.7065625,0,0.7076507,-0.7065625,0,0.7076507,-0.7065625,0,0.7619254,-0.6476648,0,0.7619254,-0.6476648,0,0.7619254,-0.6476648,0,0.7076507,-0.7065625,0,-0.2766394,0.9609737,0,-0.2512243,0.9679289,0,-0.2766394,0.9609737,0,-0.2512243,0.9679289,0,-0.2766394,0.9609737,0,-0.2512243,0.9679289,0,0.2512243,-0.9679289,0,0.2766394,-0.9609737,0,0.2766394,-0.9609737,0,0.2766394,-0.9609737,0,0.2512243,-0.9679289,0,0.2512243,-0.9679289,0,-0.7619254,0.6476648,0,-0.7619254,0.6476648,0,-0.787976,0.6157059,0,-0.787976,0.6157059,0,-0.787976,0.6157059,0,-0.7619254,0.6476648,0,-0.8140996,0.5807252,0,-0.787976,0.6157059,0,-0.7619254,0.6476648,0,-0.787976,0.6157059,0,-0.8140996,0.5807252,0,-0.7619254,0.6476648,0,-0.787976,0.6157059,0,-0.787976,0.6157059,0,-0.7619254,0.6476648,0,-0.787976,0.6157059,0,-0.8140996,0.5807252,0,-0.8140996,0.5807252,0,0.7619254,-0.6476648,0,0.7619254,-0.6476648,0,0.787976,-0.6157059,0,0.787976,-0.6157059,0,0.787976,-0.6157059,0,0.7619254,-0.6476648,0,0.787976,-0.6157059,0,0.8140996,-0.5807252,0,0.7619254,-0.6476648,0,0.8140996,-0.5807252,0,0.787976,-0.6157059,0,0.7619254,-0.6476648,0,0.8140996,-0.5807252,0,0.787976,-0.6157059,0,0.8140996,-0.5807252,0,0.787976,-0.6157059,0,0.787976,-0.6157059,0,0.7619254,-0.6476648,0,-0.8140996,0.5807252,0,-0.8140996,0.5807252,0,-0.8386715,0.5446376,0,-0.8386715,0.5446376,0,-0.8386715,0.5446376,0,-0.8140996,0.5807252,0,0.8140996,-0.5807252,0,0.8140996,-0.5807252,0,0.8386715,-0.5446376,0,0.8386715,-0.5446376,0,0.8386715,-0.5446376,0,0.8140996,-0.5807252,0,0.8386715,0.5446376,0,0.8386715,0.5446376,0,0.8140996,0.5807252,0,0.8140996,0.5807252,0,0.8140996,0.5807252,0,0.8386715,0.5446376,0,-0.8386715,-0.5446376,0,-0.8386715,-0.5446376,0,-0.8140996,-0.5807252,0,-0.8140996,-0.5807252,0,-0.8140996,-0.5807252,0,-0.8386715,-0.5446376,0,-0.6523129,0.7579497,0,-0.5966902,0.8024716,0,-0.6523129,0.7579497,0,-0.5966902,0.8024716,0,-0.6523129,0.7579497,0,-0.5966902,0.8024716,0,0.5966902,-0.8024716,0,0.6523129,-0.7579497,0,0.6523129,-0.7579497,0,0.6523129,-0.7579497,0,0.5966902,-0.8024716,0,0.5966902,-0.8024716,0,0.8140996,0.5807252,0,0.8140996,0.5807252,0,0.787976,0.6157059,0,0.8140996,0.5807252,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.7619254,0.6476648,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.7619254,0.6476648,0,0.787976,0.6157059,0,0.7619254,0.6476648,0,0.7619254,0.6476648,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.7619254,0.6476648,0,-0.8140996,-0.5807252,0,-0.8140996,-0.5807252,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.8140996,-0.5807252,0,-0.787976,-0.6157059,0,-0.7619254,-0.6476648,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.7619254,-0.6476648,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.7619254,-0.6476648,0,-0.7619254,-0.6476648,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.7619254,-0.6476648,0,-0.5413319,0.8408089,0,-0.4865988,0.8736255,0,-0.5413319,0.8408089,0,-0.4865988,0.8736255,0,-0.5413319,0.8408089,0,-0.4865988,0.8736255,0,0.4865988,-0.8736255,0,0.5413319,-0.8408089,0,0.5413319,-0.8408089,0,0.5413319,-0.8408089,0,0.4865988,-0.8736255,0,0.4865988,-0.8736255,0,0.5966902,0.8024716,0,0.6523129,0.7579497,0,0.5966902,0.8024716,0,0.6523129,0.7579497,0,0.5966902,0.8024716,0,0.6523129,0.7579497,0,-0.6523129,-0.7579497,0,-0.5966902,-0.8024716,0,-0.5966902,-0.8024716,0,-0.5966902,-0.8024716,0,-0.6523129,-0.7579497,0,-0.6523129,-0.7579497,0,-0.4865988,0.8736255,0,-0.4327032,0.9015364,0,-0.4865988,0.8736255,0,-0.4327032,0.9015364,0,-0.4865988,0.8736255,0,-0.4327032,0.9015364,0,0.4327032,-0.9015364,0,0.4865988,-0.8736255,0,0.4865988,-0.8736255,0,0.4865988,-0.8736255,0,0.4327032,-0.9015364,0,0.4327032,-0.9015364,0,-0.3277377,0.9447687,0,-0.2766394,0.9609737,0,-0.3277377,0.9447687,0,-0.2766394,0.9609737,0,-0.3277377,0.9447687,0,-0.2766394,0.9609737,0,0.2766394,-0.9609737,0,0.3277377,-0.9447687,0,0.3277377,-0.9447687,0,0.3277377,-0.9447687,0,0.2766394,-0.9609737,0,0.2766394,-0.9609737,0,0.4865988,0.8736255,0,0.5413319,0.8408089,0,0.4865988,0.8736255,0,0.5413319,0.8408089,0,0.4865988,0.8736255,0,0.5413319,0.8408089,0,-0.5413319,-0.8408089,0,-0.4865988,-0.8736255,0,-0.4865988,-0.8736255,0,-0.4865988,-0.8736255,0,-0.5413319,-0.8408089,0,-0.5413319,-0.8408089,0,0.7619254,0.6476648,0,0.7619254,0.6476648,0,0.7076507,0.7065625,0,0.7076507,0.7065625,0,0.7076507,0.7065625,0,0.7619254,0.6476648,0,-0.7619254,-0.6476648,0,-0.7619254,-0.6476648,0,-0.7076507,-0.7065625,0,-0.7076507,-0.7065625,0,-0.7076507,-0.7065625,0,-0.7619254,-0.6476648,0,0.2512246,0.9679288,0,0.2766396,0.9609737,0,0.2512246,0.9679288,0,0.2766396,0.9609737,0,0.2512246,0.9679288,0,0.2766396,0.9609737,0,-0.2766396,-0.9609737,0,-0.2512246,-0.9679288,0,-0.2512246,-0.9679288,0,-0.2512246,-0.9679288,0,-0.2766396,-0.9609737,0,-0.2766396,-0.9609737,0,-0.4327032,0.9015364,0,-0.3797443,0.9250916,0,-0.4327032,0.9015364,0,-0.3797443,0.9250916,0,-0.4327032,0.9015364,0,-0.3797443,0.9250916,0,0.3797443,-0.9250916,0,0.4327032,-0.9015364,0,0.4327032,-0.9015364,0,0.4327032,-0.9015364,0,0.3797443,-0.9250916,0,0.3797443,-0.9250916,0,-0.3797443,0.9250916,0,-0.3277377,0.9447687,0,-0.3797443,0.9250916,0,-0.3277377,0.9447687,0,-0.3797443,0.9250916,0,-0.3277377,0.9447687,0,0.3277377,-0.9447687,0,0.3797443,-0.9250916,0,0.3797443,-0.9250916,0,0.3797443,-0.9250916,0,0.3277377,-0.9447687,0,0.3277377,-0.9447687,0,0.6523129,0.7579497,0,0.7076507,0.7065625,0,0.6523129,0.7579497,0,0.7076507,0.7065625,0,0.6523129,0.7579497,0,0.7076507,0.7065625,0,-0.7076507,-0.7065625,0,-0.6523129,-0.7579497,0,-0.6523129,-0.7579497,0,-0.6523129,-0.7579497,0,-0.7076507,-0.7065625,0,-0.7076507,-0.7065625,0,0.4327032,0.9015364,0,0.4865988,0.8736255,0,0.4327032,0.9015364,0,0.4865988,0.8736255,0,0.4327032,0.9015364,0,0.4865988,0.8736255,0,-0.4865988,-0.8736255,0,-0.4327032,-0.9015364,0,-0.4327032,-0.9015364,0,-0.4327032,-0.9015364,0,-0.4865988,-0.8736255,0,-0.4865988,-0.8736255,0,-0.7076507,0.7065625,0,-0.6523129,0.7579497,0,-0.7076507,0.7065625,0,-0.6523129,0.7579497,0,-0.7076507,0.7065625,0,-0.6523129,0.7579497,0,0.6523129,-0.7579497,0,0.7076507,-0.7065625,0,0.7076507,-0.7065625,0,0.7076507,-0.7065625,0,0.6523129,-0.7579497,0,0.6523129,-0.7579497,0,0.5413319,0.8408089,0,0.5966902,0.8024716,0,0.5413319,0.8408089,0,0.5966902,0.8024716,0,0.5413319,0.8408089,0,0.5966902,0.8024716,0,-0.5966902,-0.8024716,0,-0.5413319,-0.8408089,0,-0.5413319,-0.8408089,0,-0.5413319,-0.8408089,0,-0.5966902,-0.8024716,0,-0.5966902,-0.8024716,0,0.3797443,0.9250916,0,0.4327032,0.9015364,0,0.3797443,0.9250916,0,0.4327032,0.9015364,0,0.3797443,0.9250916,0,0.4327032,0.9015364,0,-0.4327032,-0.9015364,0,-0.3797443,-0.9250916,0,-0.3797443,-0.9250916,0,-0.3797443,-0.9250916,0,-0.4327032,-0.9015364,0,-0.4327032,-0.9015364,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *2056 { + a: -15.74803,12.42132,-15.74803,2.747952E-14,-17.71654,12.42132,-17.71654,2.860041E-14,19.68504,14.38982,19.68504,12.42132,-19.68504,14.38982,-19.68504,12.42132,9.84252,17.71654,9.84252,15.74803,7.874016,17.71654,7.874016,15.74803,7.874016,16.14173,-7.874016,9.791458E-12,-9.84252,9.791458E-12,-7.874016,12.42132,-9.84252,12.42132,-9.84252,3.103223E-14,-9.84252,12.42132,-7.874016,3.215312E-14,-7.874016,12.42132,-7.874016,-16.14173,-7.874016,-15.74803,-7.874016,-17.71654,-7.874016,15.74803,-9.84252,15.74803,-7.874016,16.14173,-9.84252,-15.74803,-12.79528,19.68504,-9.84252,17.71654,-9.84252,-17.71654,-7.874016,17.71654,-12.79528,-19.68504,7.874016,-17.71654,9.84252,-17.71654,7.874016,-15.74803,12.79528,-19.68504,7.874016,15.74803,9.84252,-15.74803,7.874016,17.71654,9.84252,15.74803,9.84252,17.71654,12.79528,19.68504,12.79528,12.42132,-12.79528,12.42132,12.79528,14.38982,-0.984252,14.38982,-12.79528,14.38982,0.984252,14.38982,0.984252,46.19777,-0.984252,46.19777,0.984252,48.70012,-0.984252,48.70012,15.74803,2.860041E-14,15.74803,12.42132,16.14173,0,16.24016,7.19491,17.71654,12.42132,16.24016,5.226406,17.22441,7.19491,17.71654,2.860041E-14,17.22441,5.226406,-7.874016,-15.74803,-7.874016,-17.71654,-9.84252,-15.74803,-9.84252,-17.71654,15.74803,7.19491,15.74803,5.226406,-15.74803,7.19491,-15.74803,5.226406,-17.71654,9.79501E-12,-17.71654,12.42132,-15.74803,9.79501E-12,-15.74803,12.42132,9.84252,2.860041E-14,7.874016,2.860041E-14,9.84252,12.42132,7.874016,12.42132,-7.874016,17.71654,-7.874016,15.74803,-9.84252,17.71654,-9.84252,15.74803,15.74803,12.42132,16.14173,12.42132,15.74803,9.79501E-12,16.24016,5.226406,16.24016,7.19491,17.22441,5.226406,17.71654,9.79389E-12,17.22441,7.19491,17.71654,12.42132,8.366141,-15.74803,8.366141,15.74803,9.350393,-15.74803,9.350393,15.74803,-19.68504,12.42132,-19.68504,14.38982,19.68504,12.42132,19.68504,14.38982,15.74803,7.19491,15.74803,5.226406,-15.74803,7.19491,-15.74803,5.226406,9.84252,-15.74803,9.84252,-17.71654,7.874016,-15.74803,7.874016,-17.71654,7.874016,-16.14173,7.874016,9.79389E-12,7.874016,12.42132,9.84252,9.79501E-12,9.84252,12.42132,-12.79528,12.42132,-12.79528,14.38982,12.79528,12.42132,0.984252,14.38982,12.79528,14.38982,-0.984252,14.38982,-0.984252,46.19777,0.984252,46.19777,0.984252,48.70012,-0.984252,48.70012,-15.74803,12.42132,-15.74803,9.790337E-12,-16.14173,12.42132,-16.24016,5.226406,-17.71654,9.791458E-12,-16.24016,7.19491,-17.22441,5.226406,-17.71654,12.42132,-17.22441,7.19491,9.350393,15.74803,9.350393,-15.74803,8.366141,15.74803,8.366141,-15.74803,-15.74803,7.19491,15.74803,7.19491,-15.74803,5.226406,15.74803,5.226406,-15.74803,3.215312E-14,-16.14173,6.075353E-14,-15.74803,12.42132,-16.24016,7.19491,-16.24016,5.226406,-17.22441,7.19491,-17.71654,12.42132,-17.22441,5.226406,-17.71654,3.215312E-14,17.71654,12.42132,17.71654,3.103223E-14,15.74803,12.42132,15.74803,3.215312E-14,-9.350393,-15.74803,-9.350393,15.74803,-8.366141,-15.74803,-8.366141,15.74803,-15.74803,7.19491,15.74803,7.19491,-15.74803,5.226406,15.74803,5.226406,-8.366141,15.74803,-8.366141,-15.74803,-9.350393,15.74803,-9.350393,-15.74803,15.74803,9.791458E-12,15.74803,12.42132,17.71654,9.791458E-12,17.71654,12.42132,7.874016,5.226406,-7.874016,5.226406,7.874016,7.19491,-7.874016,7.19491,-7.874016,5.226406,-7.874016,7.19491,7.874016,5.226406,7.874016,7.19491,-7.874016,-16.24016,7.874016,-16.24016,-7.874016,-17.22441,7.874016,-17.22441,7.874016,-16.24016,7.874016,-17.22441,-7.874016,-16.24016,-7.874016,-17.22441,-7.874016,17.22441,7.874016,17.22441,-7.874016,16.24016,7.874016,16.24016,-7.874016,5.226406,-7.874016,7.19491,7.874016,5.226406,7.874016,7.19491,7.874016,17.22441,7.874016,16.24016,-7.874016,17.22441,-7.874016,16.24016,7.874016,5.226406,-7.874016,5.226406,7.874016,7.19491,-7.874016,7.19491,-19.68504,14.38982,-19.68504,46.19777,-17.71654,14.38982,-17.71654,33.07087,-17.71654,35.03937,-17.71654,46.19777,-19.68504,48.70012,-17.71654,48.70012,-19.68504,14.38982,-19.68504,46.19777,-17.71654,14.38982,-17.71654,46.19777,-17.71654,33.07087,-17.71654,35.03937,-19.68504,48.70012,-17.71654,48.70012,17.71653,-15.74803,17.71653,-17.71654,-17.71654,-15.74803,0.984251,-17.71654,-0.9842529,-17.71654,-17.71654,-17.71654,0.984252,35.03937,-0.984252,35.03937,0.984252,46.19777,-0.984252,46.19777,0.9358104,46.25976,0.984252,48.70012,-0.9358104,46.25976,-0.984252,48.70012,5.684342E-13,47.70079,17.71654,33.07087,17.71654,35.03937,17.71654,14.38982,17.71654,46.19777,19.68504,14.38982,19.68504,46.19777,17.71654,48.70012,19.68504,48.70012,17.71654,14.38982,17.71654,33.07087,19.68504,14.38982,17.71654,35.03937,17.71654,46.19777,19.68504,46.19777,17.71654,48.70012,19.68504,48.70012,17.71654,17.71654,17.71654,15.74803,0.984251,17.71654,-17.71654,15.74803,-0.9842529,17.71654,-17.71654,17.71654,-17.71654,15.74803,-17.71654,17.71654,17.71654,15.74803,-0.9842509,17.71654,0.984253,17.71654,17.71654,17.71654,-0.984252,35.03937,-0.984252,46.19777,0.984252,35.03937,0.984252,46.19777,0.9358104,46.25976,0.984252,48.70012,-0.9358104,46.25976,-0.984252,48.70012,-5.684342E-13,47.70079,17.71654,33.07087,0.984252,33.07087,17.71654,35.03937,0.984252,35.03937,-17.71654,33.07087,-17.71654,35.03937,17.71654,33.07087,17.71654,35.03937,17.71654,33.07087,-17.71654,33.07087,17.71654,35.03937,-17.71654,35.03937,-0.984252,33.07087,-17.71654,33.07087,-0.984252,35.03937,-17.71654,35.03937,-0.984252,17.71654,-0.984252,19.68504,0.984252,17.71654,0.984252,19.68504,-0.984252,-19.68504,-0.984252,-17.71654,0.984252,-19.68504,0.984252,-17.71654,0.984252,14.38982,-0.984252,14.38982,0.984252,33.07087,-0.984252,33.07087,-17.71654,33.07087,-17.71654,35.03937,-0.984252,33.07087,-0.984252,35.03937,0.984252,14.38982,-0.984252,14.38982,0.984252,33.07087,-0.984252,33.07087,0.984252,33.07087,0.984252,35.03937,17.71654,33.07087,17.71654,35.03937,-17.71653,-17.71654,-17.71653,-15.74803,-0.9842509,-17.71654,17.71654,-15.74803,0.984253,-17.71654,17.71654,-17.71654,0.984252,-19.68504,0.984252,-17.71654,12.79528,-19.68504,0.984252,17.71654,0.984252,19.68504,12.79528,19.68504,-0.984252,17.71654,-0.984252,-17.71654,-0.984252,19.68504,-0.984252,-19.68504,-12.79528,19.68504,-12.79528,-19.68504,-17.71654,33.07087,-17.71654,35.03937,-15.74803,33.07087,-15.74803,35.03937,15.74803,33.07087,15.74803,35.03937,17.71654,33.07087,17.71654,35.03937,-15.74803,35.03937,-15.74803,33.07087,-17.71654,35.03937,-17.71654,33.07087,17.71654,35.03937,17.71654,33.07087,15.74803,35.03937,15.74803,33.07087,9.350393,7.19491,9.84252,12.42132,9.350393,5.226406,8.366141,7.19491,9.84252,9.791458E-12,7.874016,12.42132,8.366141,5.226406,7.874016,9.790337E-12,-8.366141,7.19491,-7.874016,12.42132,-8.366141,5.226406,-9.350393,7.19491,-7.874016,2.860041E-14,-9.84252,12.42132,-9.350393,5.226406,-9.84252,2.747952E-14,-9.84252,9.79501E-12,-8.366141,5.226406,-7.874016,9.79501E-12,-7.874016,12.42132,-9.350393,5.226406,-8.366141,7.19491,-9.84252,12.42132,-9.350393,7.19491,7.874016,3.215312E-14,9.350393,5.226406,9.84252,3.215312E-14,9.84252,12.42132,8.366141,5.226406,9.350393,7.19491,7.874016,12.42132,8.366141,7.19491,19.68504,-1.565394,-19.68504,-1.565394,19.68504,0.6187158,-19.68504,0.6187158,19.68504,0.6187158,-19.68504,-1.565394,19.68504,-1.565394,-19.68504,0.6187158,19.68504,-5.933186,-19.68504,-5.933186,19.68504,-3.708753,-19.68504,-3.708753,19.68504,-3.708753,-19.68504,-5.933186,19.68504,-5.933186,-19.68504,-3.708753,-19.68504,18.291,19.68504,18.291,-19.68504,16.30642,19.68504,16.30642,-19.68504,16.30642,19.68504,18.291,-19.68504,18.291,19.68504,16.30642,-19.68504,29.76645,-19.68504,31.58561,19.68504,29.76645,19.68504,31.58561,19.68504,29.76645,-19.68504,31.58561,-19.68504,29.76645,19.68504,31.58561,-19.68504,-7.991331,19.68504,-7.991331,-19.68504,-10.25098,19.68504,-10.25098,-19.68504,-10.25098,19.68504,-7.991331,-19.68504,-7.991331,19.68504,-10.25098,-19.68504,34.10851,-19.68504,35.79672,19.68504,34.10851,-17.71654,35.79672,-17.71654,35.8754,17.71654,35.79672,19.68504,35.79672,17.71654,35.8754,19.68504,34.10851,-19.68504,35.79672,-19.68504,34.10851,-17.71654,35.79672,-17.71654,35.8754,17.71654,35.79672,17.71654,35.8754,19.68504,35.79672,-17.71654,38.28707,-17.71654,40.00529,17.71654,38.28707,17.71654,40.00529,17.71654,38.28707,-17.71654,40.00529,-17.71654,38.28707,17.71654,40.00529,17.71654,40.00529,17.71654,38.28707,-17.71654,40.00529,-17.71654,38.28707,-17.71654,40.00529,17.71654,38.28707,17.71654,40.00529,-17.71654,38.28707,-19.68504,22.75337,19.68504,22.75337,-19.68504,20.82414,19.68504,20.82414,-19.68504,20.82414,19.68504,22.75337,-19.68504,22.75337,19.68504,20.82414,17.71654,35.8754,17.71654,35.79672,-17.71654,35.8754,-17.71654,35.79672,-19.68504,34.10851,-19.68504,35.79672,19.68504,34.10851,19.68504,35.79672,-17.71654,35.8754,17.71654,35.79672,17.71654,35.8754,-17.71654,35.79672,-19.68504,34.10851,-19.68504,35.79672,19.68504,34.10851,19.68504,35.79672,-19.68504,13.83287,19.68504,13.83287,-19.68504,11.7942,19.68504,11.7942,-19.68504,11.7942,19.68504,13.83287,-19.68504,13.83287,19.68504,11.7942,19.68504,20.82414,-19.68504,20.82414,19.68504,22.75337,-19.68504,22.75337,19.68504,22.75337,-19.68504,20.82414,19.68504,20.82414,-19.68504,22.75337,-19.68504,9.395056,19.68504,9.395056,-19.68504,7.304546,19.68504,7.304546,-19.68504,7.304546,19.68504,9.395056,-19.68504,9.395056,19.68504,7.304546,-19.68504,-3.708753,19.68504,-3.708753,-19.68504,-5.933186,19.68504,-5.933186,-19.68504,-5.933186,19.68504,-3.708753,-19.68504,-3.708753,19.68504,-5.933186,19.68504,11.7942,-19.68504,11.7942,19.68504,13.83287,-19.68504,13.83287,19.68504,13.83287,-19.68504,11.7942,19.68504,11.7942,-19.68504,13.83287,19.68504,31.58561,19.68504,29.76645,-19.68504,31.58561,-19.68504,29.76645,-19.68504,31.58561,19.68504,29.76645,19.68504,31.58561,-19.68504,29.76645,19.68504,-10.25096,-19.68504,-10.25096,19.68504,-7.991319,-19.68504,-7.991319,19.68504,-7.991319,-19.68504,-10.25096,19.68504,-10.25096,-19.68504,-7.991319,-19.68504,4.988095,19.68504,4.988095,-19.68504,2.848848,19.68504,2.848848,-19.68504,2.848848,19.68504,4.988095,-19.68504,4.988095,19.68504,2.848848,-19.68504,0.6187158,19.68504,0.6187158,-19.68504,-1.565394,19.68504,-1.565394,-19.68504,-1.565394,19.68504,0.6187158,-19.68504,0.6187158,19.68504,-1.565394,19.68504,25.3225,-19.68504,25.3225,19.68504,27.19619,-19.68504,27.19619,19.68504,27.19619,-19.68504,25.3225,19.68504,25.3225,-19.68504,27.19619,19.68504,7.304546,-19.68504,7.304546,19.68504,9.395056,-19.68504,9.395056,19.68504,9.395056,-19.68504,7.304546,19.68504,7.304546,-19.68504,9.395056,-19.68504,27.19619,19.68504,27.19619,-19.68504,25.3225,19.68504,25.3225,-19.68504,25.3225,19.68504,27.19619,-19.68504,27.19619,19.68504,25.3225,19.68504,16.30642,-19.68504,16.30642,19.68504,18.291,-19.68504,18.291,19.68504,18.291,-19.68504,16.30642,19.68504,16.30642,-19.68504,18.291,19.68504,2.848848,-19.68504,2.848848,19.68504,4.988095,-19.68504,4.988095,19.68504,4.988095,-19.68504,2.848848,19.68504,2.848848,-19.68504,4.988095,-19.68504,32.87402,-19.68504,33.95669,-19.61051,32.31358,-19.68504,35.03937,-15.31059,32.87402,19.68504,35.03937,-10.93613,32.87402,-19.39201,31.79134,-19.04442,31.34288,-18.59143,30.99876,-18.06391,30.78244,-17.49781,30.70866,-16.93172,30.78244,-16.4042,30.99876,-15.95121,31.34288,-15.60362,31.79134,-15.38511,32.31358,-15.23606,32.31358,-15.01755,31.79134,-14.66996,31.34288,-14.21697,30.99876,-13.68946,30.78244,-13.12336,30.70866,-12.55726,30.78244,-12.02975,30.99876,-11.57676,31.34288,-11.22917,31.79134,-11.01066,32.31358,-10.8616,32.31358,-6.56168,32.87402,-10.6431,31.79134,-10.29551,31.34288,-9.84252,30.99876,-9.315002,30.78244,-8.748906,30.70866,-8.182811,30.78244,-7.655293,30.99876,-7.202303,31.34288,-6.854712,31.79134,-6.636208,32.31358,-2.187227,32.87402,-6.487152,32.31358,-6.268647,31.79134,-5.921056,31.34288,-5.468067,30.99876,-4.940549,30.78244,-4.374453,30.70866,-3.808357,30.78244,-3.28084,30.99876,-2.82785,31.34288,-2.480259,31.79134,-2.261755,32.31358,2.187227,32.87402,-2.112699,32.31358,-1.894194,31.79134,-1.546603,31.34288,-1.093613,30.99876,-0.5660959,30.78244,5.115908E-13,30.70866,0.5660959,30.78244,1.093613,30.99876,1.546603,31.34288,1.894194,31.79134,2.112699,32.31358,2.261755,32.31358,6.56168,32.87402,2.480259,31.79134,2.82785,31.34288,3.28084,30.99876,3.808357,30.78244,4.374453,30.70866,4.940549,30.78244,5.468067,30.99876,5.921056,31.34288,6.268647,31.79134,6.487152,32.31358,6.636208,32.31358,10.93613,32.87402,11.01066,32.31358,6.854712,31.79134,7.202303,31.34288,7.655293,30.99876,11.22917,31.79134,8.182811,30.78244,8.748906,30.70866,9.315002,30.78244,9.84252,30.99876,10.29551,31.34288,10.6431,31.79134,10.8616,32.31358,11.57676,31.34288,15.31059,32.87402,12.02975,30.99876,12.55726,30.78244,13.12336,30.70866,13.68946,30.78244,14.21697,30.99876,14.66996,31.34288,15.01755,31.79134,15.23606,32.31358,15.38511,32.31358,15.60362,31.79134,15.95121,31.34288,16.4042,30.99876,16.93172,30.78244,17.49781,30.70866,18.06391,30.78244,18.59143,30.99876,19.04442,31.34288,19.39201,31.79134,19.61051,32.31358,19.68504,32.87402,-19.61051,32.31358,-19.68504,33.95669,-19.68504,32.87402,-19.68504,35.03937,-15.31059,32.87402,19.68504,35.03937,-10.93613,32.87402,-19.39201,31.79134,-19.04442,31.34288,-18.59143,30.99876,-18.06391,30.78244,-17.49781,30.70866,-16.93172,30.78244,-16.4042,30.99876,-15.95121,31.34288,-15.60362,31.79134,-15.38511,32.31358,-15.23606,32.31358,-15.01755,31.79134,-14.66996,31.34288,-14.21697,30.99876,-13.68946,30.78244,-13.12336,30.70866,-12.55726,30.78244,-12.02975,30.99876,-11.57676,31.34288,-11.22917,31.79134,-11.01066,32.31358,-6.56168,32.87402,-10.8616,32.31358,-10.6431,31.79134,-10.29551,31.34288,-9.84252,30.99876,-9.315002,30.78244,-8.748906,30.70866,-8.182811,30.78244,-7.655293,30.99876,-7.202303,31.34288,-6.854712,31.79134,-6.636208,32.31358,-2.187227,32.87402,-6.487152,32.31358,-6.268647,31.79134,-5.921056,31.34288,-5.468067,30.99876,-4.940549,30.78244,-4.374453,30.70866,-3.808357,30.78244,-3.28084,30.99876,-2.82785,31.34288,-2.480259,31.79134,-2.261755,32.31358,2.187227,32.87402,-2.112699,32.31358,-1.894194,31.79134,-1.546603,31.34288,-1.093613,30.99876,-0.5660959,30.78244,5.115908E-13,30.70866,0.5660959,30.78244,1.093613,30.99876,1.546603,31.34288,1.894194,31.79134,2.112699,32.31358,2.261755,32.31358,6.56168,32.87402,2.480259,31.79134,2.82785,31.34288,3.28084,30.99876,3.808357,30.78244,4.374453,30.70866,4.940549,30.78244,5.468067,30.99876,5.921056,31.34288,6.268647,31.79134,6.487152,32.31358,6.636208,32.31358,10.93613,32.87402,11.01066,32.31358,6.854712,31.79134,7.202303,31.34288,7.655293,30.99876,11.22917,31.79134,8.182811,30.78244,8.748906,30.70866,9.315002,30.78244,9.84252,30.99876,10.29551,31.34288,10.6431,31.79134,10.8616,32.31358,11.57676,31.34288,15.31059,32.87402,12.02975,30.99876,12.55726,30.78244,13.12336,30.70866,13.68946,30.78244,14.21697,30.99876,14.66996,31.34288,15.01755,31.79134,15.23606,32.31358,15.38511,32.31358,15.60362,31.79134,15.95121,31.34288,16.4042,30.99876,16.93172,30.78244,17.49781,30.70866,18.06391,30.78244,18.59143,30.99876,19.04442,31.34288,19.39201,31.79134,19.61051,32.31358,19.68504,32.87402,19.68504,35.03937,19.68504,32.87402,-19.68504,35.03937,15.31059,32.87402,10.93613,32.87402,19.61051,32.31358,19.39201,31.79134,19.04442,31.34288,18.59143,30.99876,18.06391,30.78244,17.49781,30.70866,16.93172,30.78244,16.4042,30.99876,15.95121,31.34288,15.60362,31.79134,15.38511,32.31358,15.23606,32.31358,15.01755,31.79134,14.66996,31.34288,14.21697,30.99876,13.68946,30.78244,13.12336,30.70866,12.55726,30.78244,12.02975,30.99876,11.57676,31.34288,11.22917,31.79134,11.01066,32.31358,10.8616,32.31358,6.56168,32.87402,10.6431,31.79134,10.29551,31.34288,9.84252,30.99876,9.315002,30.78244,8.748906,30.70866,8.182811,30.78244,7.655293,30.99876,7.202303,31.34288,6.854712,31.79134,6.636208,32.31358,2.187227,32.87402,6.487152,32.31358,6.268647,31.79134,5.921056,31.34288,5.468067,30.99876,4.940549,30.78244,4.374453,30.70866,3.808357,30.78244,3.28084,30.99876,2.82785,31.34288,2.480259,31.79134,2.261755,32.31358,-2.187227,32.87402,2.112699,32.31358,1.894194,31.79134,1.546603,31.34288,1.093613,30.99876,0.5660959,30.78244,-5.115908E-13,30.70866,-0.5660959,30.78244,-1.093613,30.99876,-1.546603,31.34288,-1.894194,31.79134,-2.112699,32.31358,-2.261755,32.31358,-6.56168,32.87402,-2.480259,31.79134,-2.82785,31.34288,-3.28084,30.99876,-3.808357,30.78244,-4.374453,30.70866,-4.940549,30.78244,-5.468067,30.99876,-5.921056,31.34288,-6.268647,31.79134,-6.487152,32.31358,-6.636208,32.31358,-10.93613,32.87402,-11.01066,32.31358,-6.854712,31.79134,-7.202303,31.34288,-7.655293,30.99876,-11.22917,31.79134,-8.182811,30.78244,-8.748906,30.70866,-9.315002,30.78244,-9.84252,30.99876,-10.29551,31.34288,-10.6431,31.79134,-10.8616,32.31358,-11.57676,31.34288,-15.31059,32.87402,-12.02975,30.99876,-12.55726,30.78244,-13.12336,30.70866,-13.68946,30.78244,-14.21697,30.99876,-14.66996,31.34288,-15.01755,31.79134,-15.23606,32.31358,-15.38511,32.31358,-15.60362,31.79134,-15.95121,31.34288,-16.4042,30.99876,-16.93172,30.78244,-17.49781,30.70866,-18.06391,30.78244,-18.59143,30.99876,-19.04442,31.34288,-19.39201,31.79134,-19.61051,32.31358,-19.68504,32.87402,-19.68504,35.03937,19.68504,32.87402,19.68504,35.03937,15.31059,32.87402,10.93613,32.87402,19.61051,32.31358,19.39201,31.79134,19.04442,31.34288,18.59143,30.99876,18.06391,30.78244,17.49781,30.70866,16.93172,30.78244,16.4042,30.99876,15.95121,31.34288,15.60362,31.79134,15.38511,32.31358,15.23606,32.31358,15.01755,31.79134,14.66996,31.34288,14.21697,30.99876,13.68946,30.78244,13.12336,30.70866,12.55726,30.78244,12.02975,30.99876,11.57676,31.34288,11.22917,31.79134,11.01066,32.31358,6.56168,32.87402,10.8616,32.31358,10.6431,31.79134,10.29551,31.34288,9.84252,30.99876,9.315002,30.78244,8.748906,30.70866,8.182811,30.78244,7.655293,30.99876,7.202303,31.34288,6.854712,31.79134,6.636208,32.31358,2.187227,32.87402,6.487152,32.31358,6.268647,31.79134,5.921056,31.34288,5.468067,30.99876,4.940549,30.78244,4.374453,30.70866,3.808357,30.78244,3.28084,30.99876,2.82785,31.34288,2.480259,31.79134,2.261755,32.31358,-2.187227,32.87402,2.112699,32.31358,1.894194,31.79134,1.546603,31.34288,1.093613,30.99876,0.5660959,30.78244,-5.115908E-13,30.70866,-0.5660959,30.78244,-1.093613,30.99876,-1.546603,31.34288,-1.894194,31.79134,-2.112699,32.31358,-2.261755,32.31358,-6.56168,32.87402,-2.480259,31.79134,-2.82785,31.34288,-3.28084,30.99876,-3.808357,30.78244,-4.374453,30.70866,-4.940549,30.78244,-5.468067,30.99876,-5.921056,31.34288,-6.268647,31.79134,-6.487152,32.31358,-6.636208,32.31358,-10.93613,32.87402,-11.01066,32.31358,-6.854712,31.79134,-7.202303,31.34288,-7.655293,30.99876,-11.22917,31.79134,-8.182811,30.78244,-8.748906,30.70866,-9.315002,30.78244,-9.84252,30.99876,-10.29551,31.34288,-10.6431,31.79134,-10.8616,32.31358,-11.57676,31.34288,-15.31059,32.87402,-12.02975,30.99876,-12.55726,30.78244,-13.12336,30.70866,-13.68946,30.78244,-14.21697,30.99876,-14.66996,31.34288,-15.01755,31.79134,-15.23606,32.31358,-15.38511,32.31358,-15.60362,31.79134,-15.95121,31.34288,-16.4042,30.99876,-16.93172,30.78244,-17.49781,30.70866,-18.06391,30.78244,-18.59143,30.99876,-19.04442,31.34288,-19.39201,31.79134,-19.61051,32.31358,-19.68504,32.87402 + } + UVIndex: *2466 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,22,23,24,24,25,22,24,23,26,27,22,25,27,25,28,25,29,28,30,27,28,26,23,31,29,31,28,30,32,23,28,32,30,23,32,33,31,23,33,33,32,34,33,35,31,32,36,34,35,37,31,31,37,28,35,38,37,37,39,28,40,37,38,38,34,40,39,41,28,40,34,41,41,34,36,28,41,42,36,42,41,43,45,44,46,44,45,47,44,46,48,46,45,48,49,46,50,46,49,51,50,49,52,50,51,53,55,54,56,54,55,57,54,56,58,56,55,59,57,56,55,60,58,60,57,59,61,58,60,59,61,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,83,84,85,85,86,83,85,84,87,84,88,87,86,89,83,89,87,88,83,89,90,88,90,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,106,105,108,110,109,111,109,110,112,114,113,115,113,114,116,115,114,117,113,115,117,115,118,119,118,115,120,118,119,121,118,120,122,124,123,125,123,124,126,123,125,127,125,124,128,126,125,124,129,127,129,126,128,130,127,129,128,130,129,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,140,141,142,142,143,140,142,141,144,141,145,144,143,146,140,146,144,145,140,146,147,145,147,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,202,203,201,203,204,201,205,201,204,201,205,206,207,206,205,208,210,209,211,209,210,212,211,210,213,211,212,209,211,214,215,214,211,216,218,217,219,217,218,220,219,218,221,220,218,222,224,223,225,223,224,226,225,224,224,227,226,228,225,226,225,228,229,230,226,227,227,229,230,230,228,226,230,229,228,231,233,232,232,233,234,233,235,234,236,234,235,234,236,237,238,237,236,239,241,240,242,240,241,243,242,241,244,243,241,243,244,245,246,245,244,247,249,248,250,248,249,251,250,249,252,250,251,253,255,254,256,254,255,257,256,255,258,257,255,259,261,260,262,260,261,263,260,262,262,264,263,265,260,263,260,265,266,267,263,264,264,266,267,267,265,263,267,266,265,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,311,310,313,311,312,314,316,315,317,315,316,318,317,316,319,318,316,317,320,315,321,315,320,320,322,321,321,322,323,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,342,343,346,343,344,343,347,345,344,348,346,345,347,348,346,348,349,347,349,348,350,352,351,353,350,351,354,351,352,351,355,353,352,356,354,353,355,356,354,356,357,355,357,356,358,360,359,361,359,360,359,362,358,363,359,361,364,358,362,365,363,361,365,364,362,361,364,365,366,368,367,369,367,368,367,370,366,371,367,369,372,366,370,373,371,369,373,372,370,369,372,373,374,376,375,377,375,376,378,380,379,379,381,378,382,384,383,385,383,384,386,388,387,387,389,386,390,392,391,393,391,392,394,396,395,395,397,394,398,400,399,401,399,400,402,404,403,403,405,402,406,408,407,409,407,408,410,412,411,411,413,410,414,416,415,417,415,416,418,417,416,419,418,416,420,419,416,419,421,418,422,424,423,423,425,422,425,426,422,426,427,422,428,427,426,427,429,422,430,432,431,433,431,432,434,436,435,435,437,434,438,440,439,441,439,440,442,444,443,443,445,442,446,448,447,449,447,448,450,452,451,451,453,450,454,456,455,456,457,455,457,458,455,459,458,457,458,460,455,461,455,460,462,464,463,465,462,463,466,465,463,466,467,465,468,466,463,463,469,468,470,472,471,473,471,472,474,476,475,475,477,474,478,480,479,481,479,480,482,484,483,483,485,482,486,488,487,489,487,488,490,492,491,491,493,490,494,496,495,497,495,496,498,500,499,499,501,498,502,504,503,505,503,504,506,508,507,507,509,506,510,512,511,513,511,512,514,516,515,515,517,514,518,520,519,521,519,520,522,524,523,523,525,522,526,528,527,529,527,528,530,532,531,531,533,530,534,536,535,537,535,536,538,540,539,539,541,538,542,544,543,545,543,544,546,548,547,547,549,546,550,552,551,553,551,552,554,556,555,555,557,554,558,560,559,561,559,560,562,564,563,563,565,562,566,568,567,569,567,568,570,572,571,571,573,570,574,576,575,577,575,576,578,580,579,579,581,578,582,584,583,585,583,584,586,585,584,587,585,586,588,587,586,589,586,584,590,586,589,591,586,590,592,586,591,593,586,592,594,586,593,595,586,594,596,586,595,597,586,596,598,586,597,599,588,586,600,588,599,601,588,600,602,588,601,603,588,602,604,588,603,605,588,604,606,588,605,607,588,606,608,588,607,609,588,608,610,611,588,612,611,610,613,611,612,614,611,613,615,611,614,616,611,615,617,611,616,618,611,617,619,611,618,620,611,619,621,611,620,611,587,588,622,587,611,623,622,611,624,622,623,625,622,624,626,622,625,627,622,626,628,622,627,629,622,628,630,622,629,631,622,630,632,622,631,633,622,632,634,587,622,635,634,622,636,634,635,637,634,636,638,634,637,639,634,638,640,634,639,641,634,640,642,634,641,643,634,642,644,634,643,645,634,644,646,587,634,647,587,646,648,647,646,649,647,648,650,647,649,651,647,650,652,647,651,653,647,652,654,647,653,655,647,654,656,647,655,657,647,656,658,587,647,659,587,658,660,587,659,661,659,658,662,659,661,663,659,662,664,587,660,665,659,663,666,659,665,667,659,666,668,659,667,669,659,668,670,659,669,671,659,670,672,587,664,673,587,672,674,673,672,675,673,674,676,673,675,677,673,676,678,673,677,679,673,678,680,673,679,681,673,680,682,587,673,683,587,682,684,587,683,685,587,684,686,587,685,687,587,686,688,587,687,689,587,688,690,587,689,691,587,690,692,587,691,693,587,692,694,696,695,695,697,694,697,698,694,697,699,698,699,700,698,698,701,694,698,702,701,698,703,702,698,704,703,698,705,704,698,706,705,698,707,706,698,708,707,698,709,708,698,710,709,700,711,698,700,712,711,700,713,712,700,714,713,700,715,714,700,716,715,700,717,716,700,718,717,700,719,718,700,720,719,700,721,720,722,723,700,722,724,723,722,725,724,722,726,725,722,727,726,722,728,727,722,729,728,722,730,729,722,731,730,722,732,731,722,733,732,699,722,700,699,734,722,734,735,722,734,736,735,734,737,736,734,738,737,734,739,738,734,740,739,734,741,740,734,742,741,734,743,742,734,744,743,734,745,744,699,746,734,746,747,734,746,748,747,746,749,748,746,750,749,746,751,750,746,752,751,746,753,752,746,754,753,746,755,754,746,756,755,746,757,756,699,758,746,699,759,758,759,760,758,759,761,760,759,762,761,759,763,762,759,764,763,759,765,764,759,766,765,759,767,766,759,768,767,759,769,768,699,770,759,699,771,770,699,772,771,771,773,770,771,774,773,771,775,774,699,776,772,771,777,775,771,778,777,771,779,778,771,780,779,771,781,780,771,782,781,771,783,782,699,784,776,699,785,784,785,786,784,785,787,786,785,788,787,785,789,788,785,790,789,785,791,790,785,792,791,785,793,792,699,794,785,699,795,794,699,796,795,699,797,796,699,798,797,699,799,798,699,800,799,699,801,800,699,802,801,699,803,802,699,804,803,699,805,804,806,808,807,809,807,808,810,809,808,811,807,809,812,811,809,813,812,809,814,813,809,815,814,809,816,815,809,817,816,809,818,817,809,819,818,809,820,819,809,821,820,809,822,809,810,823,822,810,824,823,810,825,824,810,826,825,810,827,826,810,828,827,810,829,828,810,830,829,810,831,830,810,832,831,810,833,810,834,835,833,834,836,835,834,837,836,834,838,837,834,839,838,834,840,839,834,841,840,834,842,841,834,843,842,834,844,843,834,834,810,808,845,834,808,846,834,845,847,846,845,848,847,845,849,848,845,850,849,845,851,850,845,852,851,845,853,852,845,854,853,845,855,854,845,856,855,845,857,845,808,858,845,857,859,858,857,860,859,857,861,860,857,862,861,857,863,862,857,864,863,857,865,864,857,866,865,857,867,866,857,868,867,857,869,857,808,870,869,808,871,869,870,872,871,870,873,872,870,874,873,870,875,874,870,876,875,870,877,876,870,878,877,870,879,878,870,880,879,870,881,870,808,882,881,808,883,882,808,884,881,882,885,884,882,886,885,882,887,883,808,888,886,882,889,888,882,890,889,882,891,890,882,892,891,882,893,892,882,894,893,882,895,887,808,896,895,808,897,895,896,898,897,896,899,898,896,900,899,896,901,900,896,902,901,896,903,902,896,904,903,896,905,896,808,906,905,808,907,906,808,908,907,808,909,908,808,910,909,808,911,910,808,912,911,808,913,912,808,914,913,808,915,914,808,916,915,808,917,919,918,918,920,917,920,921,917,918,922,920,922,923,920,923,924,920,924,925,920,925,926,920,926,927,920,927,928,920,928,929,920,929,930,920,930,931,920,931,932,920,920,933,921,933,934,921,934,935,921,935,936,921,936,937,921,937,938,921,938,939,921,939,940,921,940,941,921,941,942,921,942,943,921,921,945,944,945,946,944,946,947,944,947,948,944,948,949,944,949,950,944,950,951,944,951,952,944,952,953,944,953,954,944,954,955,944,921,944,917,944,956,917,944,957,956,957,958,956,958,959,956,959,960,956,960,961,956,961,962,956,962,963,956,963,964,956,964,965,956,965,966,956,966,967,956,956,968,917,956,969,968,969,970,968,970,971,968,971,972,968,972,973,968,973,974,968,974,975,968,975,976,968,976,977,968,977,978,968,978,979,968,968,980,917,980,981,917,980,982,981,982,983,981,983,984,981,984,985,981,985,986,981,986,987,981,987,988,981,988,989,981,989,990,981,990,991,981,981,992,917,992,993,917,993,994,917,992,995,993,995,996,993,996,997,993,994,998,917,997,999,993,999,1000,993,1000,1001,993,1001,1002,993,1002,1003,993,1003,1004,993,1004,1005,993,998,1006,917,1006,1007,917,1006,1008,1007,1008,1009,1007,1009,1010,1007,1010,1011,1007,1011,1012,1007,1012,1013,1007,1013,1014,1007,1014,1015,1007,1007,1016,917,1016,1017,917,1017,1018,917,1018,1019,917,1019,1020,917,1020,1021,917,1021,1022,917,1022,1023,917,1023,1024,917,1024,1025,917,1025,1026,917,1026,1027,917 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *822 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7172, "Material::roof", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6039216 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6039216 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stallGreen, Model::RootNode + C: "OO",4666013690374989306,0 + + ;Geometry::, Model::Mesh stallGreen + C: "OO",5383806434596639053,4666013690374989306 + + ;Material::wood, Model::Mesh stallGreen + C: "OO",7178,4666013690374989306 + + ;Material::roof, Model::Mesh stallGreen + C: "OO",7172,4666013690374989306 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallGreen.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallGreen.fbx.import new file mode 100644 index 0000000..27bd34a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallGreen.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c0evfwjrpjcv" +path="res://.godot/imported/stallGreen.fbx-a207f56fa504ae0165c40e36cedcf970.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stallGreen.fbx" +dest_files=["res://.godot/imported/stallGreen.fbx-a207f56fa504ae0165c40e36cedcf970.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallRed.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallRed.fbx new file mode 100644 index 0000000..5ad077b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallRed.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 460 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stallRed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stallRed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5595240799910505239, "Model::stallRed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5407270833445608420, "Geometry::", "Mesh" { + Vertices: *3216 { + a: 2.5,3.155014,4,2.5,6.979798E-15,4,2.5,3.155014,4.5,2.5,7.264503E-15,4.5,3.25,3.655014,-5,3.25,3.155014,-5,3.25,3.655014,5,3.25,3.155014,5,2.5,7.264503E-15,4.5,2.5,6.979798E-15,4,2,7.264503E-15,4.5,2,7.264503E-15,4,2,0,4.1,-2,2.48703E-12,4.5,-2.5,2.48703E-12,4.5,-2,3.155014,4.5,-2.5,3.155014,4.5,2.5,7.882187E-15,-4.5,2.5,3.155014,-4.5,2,8.166893E-15,-4.5,2,3.155014,-4.5,-2,3.155014,-4.1,-2,3.155014,-4,-2,3.155014,-4.5,-2,3.155014,4,-2.5,3.155014,4,-2,3.155014,4.1,-2.5,3.155014,-4,-3.25,3.155014,5,-2.5,3.155014,4.5,-2.5,3.155014,-4.5,-2,3.155014,4.5,-3.25,3.155014,-5,2,3.155014,-4.5,2.5,3.155014,-4.5,2,3.155014,-4,3.25,3.155014,-5,2,3.155014,4,2.5,3.155014,-4,2,3.155014,4.5,2.5,3.155014,4,2.5,3.155014,4.5,3.25,3.155014,5,3.25,3.155014,5,-3.25,3.155014,5,3.25,3.655014,5,-0.25,3.655014,5,-3.25,3.655014,5,0.25,3.655014,5,0.25,11.73423,5,-0.25,11.73423,5,0.25,12.36983,5,-0.25,12.36983,5,2,7.264503E-15,4,2,3.155014,4,2,0,4.1,2,1.827507,4.125,2,3.155014,4.5,2,1.327507,4.125,2,1.827507,4.375,2,7.264503E-15,4.5,2,1.327507,4.375,-2,2.487933E-12,-4,-2,2.487648E-12,-4.5,-2.5,2.487933E-12,-4,-2.5,2.487933E-12,-4.5,-2.125,1.827507,-4,-2.125,1.327507,-4,-2.125,1.827507,4,-2.125,1.327507,4,-2.5,2.487933E-12,-4.5,-2.5,3.155014,-4.5,-2.5,2.487933E-12,-4,-2.5,3.155014,-4,2.5,7.264503E-15,4.5,2,7.264503E-15,4.5,2.5,3.155014,4.5,2,3.155014,4.5,-2,2.48703E-12,4.5,-2,2.486746E-12,4,-2.5,2.48703E-12,4.5,-2.5,2.48703E-12,4,-2,3.155014,-4,-2,3.155014,-4.1,-2,2.487933E-12,-4,-2,1.327507,-4.125,-2,1.827507,-4.125,-2,1.327507,-4.375,-2,2.487648E-12,-4.5,-2,1.827507,-4.375,-2,3.155014,-4.5,-2.125,1.827507,-4,-2.125,1.827507,4,-2.375,1.827507,-4,-2.375,1.827507,4,-3.25,3.155014,-5,-3.25,3.655014,-5,-3.25,3.155014,5,-3.25,3.655014,5,2.375,1.827507,-4,2.375,1.327507,-4,2.375,1.827507,4,2.375,1.327507,4,2.5,8.166893E-15,-4,2.5,7.882187E-15,-4.5,2,8.166893E-15,-4,2,8.166893E-15,-4.5,2,1.54314E-14,-4.1,-2,2.487648E-12,-4.5,-2,3.155014,-4.5,-2.5,2.487933E-12,-4.5,-2.5,3.155014,-4.5,3.25,3.155014,-5,3.25,3.655014,-5,-3.25,3.155014,-5,-0.25,3.655014,-5,-3.25,3.655014,-5,0.25,3.655014,-5,0.25,11.73423,-5,-0.25,11.73423,-5,-0.25,12.36983,-5,0.25,12.36983,-5,-2,3.155014,4,-2,2.486746E-12,4,-2,3.155014,4.1,-2,1.327507,4.125,-2,2.48703E-12,4.5,-2,1.827507,4.125,-2,1.327507,4.375,-2,3.155014,4.5,-2,1.827507,4.375,2.375,1.327507,4,2.375,1.327507,-4,2.125,1.327507,4,2.125,1.327507,-4,2.125,1.827507,-4,2.125,1.827507,4,2.125,1.327507,-4,2.125,1.327507,4,2,8.166893E-15,-4,2,1.54314E-14,-4.1,2,3.155014,-4,2,1.827507,-4.125,2,1.327507,-4.125,2,1.827507,-4.375,2,3.155014,-4.5,2,1.327507,-4.375,2,8.166893E-15,-4.5,2.5,3.155014,-4.5,2.5,7.882187E-15,-4.5,2.5,3.155014,-4,2.5,8.166893E-15,-4,2.375,1.827507,-4,2.375,1.827507,4,2.125,1.827507,-4,2.125,1.827507,4,-2.375,1.827507,-4,-2.375,1.827507,4,-2.375,1.327507,-4,-2.375,1.327507,4,-2.125,1.327507,4,-2.125,1.327507,-4,-2.375,1.327507,4,-2.375,1.327507,-4,-2.5,2.48703E-12,4,-2.5,3.155014,4,-2.5,2.48703E-12,4.5,-2.5,3.155014,4.5,2,1.327507,-4.125,-2,1.327507,-4.125,2,1.827507,-4.125,-2,1.827507,-4.125,2,1.327507,-4.375,2,1.827507,-4.375,-2,1.327507,-4.375,-2,1.827507,-4.375,2,1.827507,-4.125,-2,1.827507,-4.125,2,1.827507,-4.375,-2,1.827507,-4.375,2,1.327507,-4.125,2,1.327507,-4.375,-2,1.327507,-4.125,-2,1.327507,-4.375,2,1.827507,4.375,-2,1.827507,4.375,2,1.827507,4.125,-2,1.827507,4.125,2,1.327507,4.125,2,1.827507,4.125,-2,1.327507,4.125,-2,1.827507,4.125,2,1.327507,4.375,2,1.327507,4.125,-2,1.327507,4.375,-2,1.327507,4.125,2,1.327507,4.375,-2,1.327507,4.375,2,1.827507,4.375,-2,1.827507,4.375,0.25,3.655014,5,0.25,11.73423,5,0.25,3.655014,4.5,0.25,8.4,4.5,0.25,8.9,4.5,0.25,11.73423,4.5,0.25,12.36983,5,0.25,12.36983,4.5,-0.25,3.655014,-5,-0.25,11.73423,-5,-0.25,3.655014,-4.5,-0.25,11.73423,-4.5,-0.25,8.4,-4.5,-0.25,8.900001,-4.5,-0.25,12.36983,-5,-0.25,12.36983,-4.5,4.5,8.4,-4,4.5,8.4,-4.5,-4.5,8.4,-4,0.25,8.4,-4.5,-0.25,8.4,-4.5,-4.5,8.4,-4.5,0.25,8.9,-4.5,-0.25,8.900001,-4.5,0.25,11.73423,-4.5,-0.25,11.73423,-4.5,0.2376958,11.74998,-4.5,0.25,12.36983,-4.5,-0.2376958,11.74998,-4.5,-0.25,12.36983,-4.5,1.443823E-13,12.116,-4.5,0.25,8.4,-4.5,0.25,8.9,-4.5,0.25,3.655014,-4.5,0.25,11.73423,-4.5,0.25,3.655014,-5,0.25,11.73423,-5,0.25,12.36983,-4.5,0.25,12.36983,-5,-0.25,3.655014,4.5,-0.25,8.4,4.5,-0.25,3.655014,5,-0.25,8.9,4.5,-0.25,11.73423,4.5,-0.25,11.73423,5,-0.25,12.36983,4.5,-0.25,12.36983,5,4.5,8.4,4.5,4.5,8.4,4,0.25,8.4,4.5,-4.5,8.4,4,-0.25,8.4,4.5,-4.5,8.4,4.5,4.5,8.9,4,4.5,8.9,4.5,-4.5,8.900001,4,0.25,8.9,4.5,-0.25,8.9,4.5,-4.5,8.900001,4.5,0.25,8.9,4.5,0.25,11.73423,4.5,-0.25,8.9,4.5,-0.25,11.73423,4.5,-0.2376958,11.74998,4.5,-0.25,12.36983,4.5,0.2376958,11.74998,4.5,0.25,12.36983,4.5,1.443823E-13,12.116,4.5,4.5,8.4,4.5,0.25,8.4,4.5,4.5,8.9,4.5,0.25,8.9,4.5,4.5,8.4,4,4.5,8.9,4,-4.5,8.4,4,-4.5,8.900001,4,4.5,8.4,-4,-4.5,8.4,-4,4.5,8.9,-4,-4.5,8.900001,-4,-0.25,8.4,4.5,-4.5,8.4,4.5,-0.25,8.9,4.5,-4.5,8.900001,4.5,0.25,12.36983,4.5,0.25,12.36983,5,-0.25,12.36983,4.5,-0.25,12.36983,5,0.25,12.36983,-5,0.25,12.36983,-4.5,-0.25,12.36983,-5,-0.25,12.36983,-4.5,0.25,3.655014,-4.5,-0.25,3.655014,-4.5,0.25,8.4,-4.5,-0.25,8.4,-4.5,4.5,8.4,-4.5,4.5,8.9,-4.5,0.25,8.4,-4.5,0.25,8.9,-4.5,-0.25,3.655014,4.5,0.25,3.655014,4.5,-0.25,8.4,4.5,0.25,8.4,4.5,-0.25,8.4,-4.5,-0.25,8.900001,-4.5,-4.5,8.4,-4.5,-4.5,8.900001,-4.5,4.5,8.9,-4.5,4.5,8.9,-4,0.25,8.9,-4.5,-4.5,8.900001,-4,-0.25,8.900001,-4.5,-4.5,8.900001,-4.5,-0.25,3.655014,-5,-0.25,3.655014,-4.5,-3.25,3.655014,-5,-0.25,3.655014,4.5,-0.25,3.655014,5,-3.25,3.655014,5,0.25,3.655014,4.5,0.25,3.655014,-4.5,0.25,3.655014,5,0.25,3.655014,-5,3.25,3.655014,5,3.25,3.655014,-5,-4.5,8.4,-4.5,-4.5,8.900001,-4.5,-4.5,8.4,-4,-4.5,8.900001,-4,-4.5,8.4,4,-4.5,8.900001,4,-4.5,8.4,4.5,-4.5,8.900001,4.5,4.5,8.9,-4.5,4.5,8.4,-4.5,4.5,8.9,-4,4.5,8.4,-4,4.5,8.9,4,4.5,8.4,4,4.5,8.9,4.5,4.5,8.4,4.5,-2.375,1.827507,4,-2.5,3.155014,4,-2.375,1.327507,4,-2.125,1.827507,4,-2.5,2.48703E-12,4,-2,3.155014,4,-2.125,1.327507,4,-2,2.486746E-12,4,2.125,1.827507,4,2,3.155014,4,2.125,1.327507,4,2.375,1.827507,4,2,7.264503E-15,4,2.5,3.155014,4,2.375,1.327507,4,2.5,6.979798E-15,4,-2.5,2.487933E-12,-4,-2.125,1.327507,-4,-2,2.487933E-12,-4,-2,3.155014,-4,-2.375,1.327507,-4,-2.125,1.827507,-4,-2.5,3.155014,-4,-2.375,1.827507,-4,2,8.166893E-15,-4,2.375,1.327507,-4,2.5,8.166893E-15,-4,2.5,3.155014,-4,2.125,1.327507,-4,2.375,1.827507,-4,2,3.155014,-4,2.125,1.827507,-4,2.5,3.155014,4.5,2.5,6.979798E-15,4,2.5,3.155014,4,2.5,7.264503E-15,4.5,3.25,3.655014,5,3.25,3.155014,-5,3.25,3.655014,-5,3.25,3.155014,5,2,7.264503E-15,4.5,2.5,6.979798E-15,4,2.5,7.264503E-15,4.5,2,7.264503E-15,4,2,0,4.1,-2,3.155014,4.5,-2.5,2.48703E-12,4.5,-2,2.48703E-12,4.5,-2.5,3.155014,4.5,2,8.166893E-15,-4.5,2.5,3.155014,-4.5,2.5,7.882187E-15,-4.5,2,3.155014,-4.5,-2,3.155014,-4.5,-2,3.155014,-4,-2,3.155014,-4.1,-2,3.155014,4,-2,3.155014,4.1,-2.5,3.155014,4,-2.5,3.155014,-4,-3.25,3.155014,5,-2.5,3.155014,4.5,-2.5,3.155014,-4.5,-2,3.155014,4.5,-3.25,3.155014,-5,2,3.155014,-4.5,2.5,3.155014,-4.5,2,3.155014,-4,3.25,3.155014,-5,2,3.155014,4,2.5,3.155014,-4,2,3.155014,4.5,2.5,3.155014,4,2.5,3.155014,4.5,3.25,3.155014,5,3.25,3.655014,5,-3.25,3.155014,5,3.25,3.155014,5,-0.25,3.655014,5,-3.25,3.655014,5,0.25,3.655014,5,0.25,11.73423,5,-0.25,11.73423,5,0.25,12.36983,5,-0.25,12.36983,5,2,0,4.1,2,3.155014,4,2,7.264503E-15,4,2,1.827507,4.125,2,3.155014,4.5,2,1.327507,4.125,2,1.827507,4.375,2,7.264503E-15,4.5,2,1.327507,4.375,-2.5,2.487933E-12,-4,-2,2.487648E-12,-4.5,-2,2.487933E-12,-4,-2.5,2.487933E-12,-4.5,-2.125,1.827507,4,-2.125,1.327507,-4,-2.125,1.827507,-4,-2.125,1.327507,4,-2.5,2.487933E-12,-4,-2.5,3.155014,-4.5,-2.5,2.487933E-12,-4.5,-2.5,3.155014,-4,2.5,3.155014,4.5,2,7.264503E-15,4.5,2.5,7.264503E-15,4.5,2,3.155014,4.5,-2.5,2.48703E-12,4.5,-2,2.486746E-12,4,-2,2.48703E-12,4.5,-2.5,2.48703E-12,4,-2,2.487933E-12,-4,-2,3.155014,-4.1,-2,3.155014,-4,-2,1.327507,-4.125,-2,1.327507,-4.375,-2,1.827507,-4.125,-2,2.487648E-12,-4.5,-2,1.827507,-4.375,-2,3.155014,-4.5,-2.375,1.827507,-4,-2.125,1.827507,4,-2.125,1.827507,-4,-2.375,1.827507,4,-3.25,3.155014,5,-3.25,3.655014,-5,-3.25,3.155014,-5,-3.25,3.655014,5,2.375,1.827507,4,2.375,1.327507,-4,2.375,1.827507,-4,2.375,1.327507,4,2,8.166893E-15,-4,2.5,7.882187E-15,-4.5,2.5,8.166893E-15,-4,2,8.166893E-15,-4.5,2,1.54314E-14,-4.1,-2.5,2.487933E-12,-4.5,-2,3.155014,-4.5,-2,2.487648E-12,-4.5,-2.5,3.155014,-4.5,-3.25,3.155014,-5,3.25,3.655014,-5,3.25,3.155014,-5,-0.25,3.655014,-5,-3.25,3.655014,-5,0.25,3.655014,-5,0.25,11.73423,-5,-0.25,11.73423,-5,-0.25,12.36983,-5,0.25,12.36983,-5,-2,3.155014,4.1,-2,2.486746E-12,4,-2,3.155014,4,-2,1.327507,4.125,-2,2.48703E-12,4.5,-2,1.827507,4.125,-2,1.327507,4.375,-2,3.155014,4.5,-2,1.827507,4.375,2.125,1.327507,4,2.375,1.327507,-4,2.375,1.327507,4,2.125,1.327507,-4,2.125,1.327507,-4,2.125,1.827507,4,2.125,1.827507,-4,2.125,1.327507,4,2,3.155014,-4,2,1.54314E-14,-4.1,2,8.166893E-15,-4,2,1.827507,-4.125,2,1.827507,-4.375,2,1.327507,-4.125,2,3.155014,-4.5,2,1.327507,-4.375,2,8.166893E-15,-4.5,2.5,3.155014,-4,2.5,7.882187E-15,-4.5,2.5,3.155014,-4.5,2.5,8.166893E-15,-4,2.125,1.827507,-4,2.375,1.827507,4,2.375,1.827507,-4,2.125,1.827507,4,-2.375,1.327507,-4,-2.375,1.827507,4,-2.375,1.827507,-4,-2.375,1.327507,4,-2.375,1.327507,4,-2.125,1.327507,-4,-2.125,1.327507,4,-2.375,1.327507,-4,-2.5,2.48703E-12,4.5,-2.5,3.155014,4,-2.5,2.48703E-12,4,-2.5,3.155014,4.5,2,1.827507,-4.125,-2,1.327507,-4.125,2,1.327507,-4.125,-2,1.827507,-4.125,-2,1.327507,-4.375,2,1.827507,-4.375,2,1.327507,-4.375,-2,1.827507,-4.375,2,1.827507,-4.375,-2,1.827507,-4.125,2,1.827507,-4.125,-2,1.827507,-4.375,-2,1.327507,-4.125,2,1.327507,-4.375,2,1.327507,-4.125,-2,1.327507,-4.375,2,1.827507,4.125,-2,1.827507,4.375,2,1.827507,4.375,-2,1.827507,4.125,-2,1.327507,4.125,2,1.827507,4.125,2,1.327507,4.125,-2,1.827507,4.125,-2,1.327507,4.375,2,1.327507,4.125,2,1.327507,4.375,-2,1.327507,4.125,2,1.827507,4.375,-2,1.327507,4.375,2,1.327507,4.375,-2,1.827507,4.375,3.905808,9.214744,-5,3.905808,9.214744,5,3.386836,9.410781,-5,3.386836,9.410781,5,3.386836,9.410781,-5,3.905808,9.214744,5,3.905808,9.214744,-5,3.386836,9.410781,5,4.444457,9.04419,-5,4.444457,9.04419,5,3.905808,9.214744,-5,3.905808,9.214744,5,3.905808,9.214744,-5,4.444457,9.04419,5,4.444457,9.04419,-5,3.905808,9.214744,5,-1.55952,10.42764,-5,-1.55952,10.42764,5,-1.974197,10.14103,-5,-1.974197,10.14103,5,-1.974197,10.14103,-5,-1.55952,10.42764,5,-1.55952,10.42764,-5,-1.974197,10.14103,5,-0.8275408,11.05692,-5,-0.5140187,11.39634,-5,-0.8275408,11.05692,5,-0.5140187,11.39634,5,-0.8275408,11.05692,5,-0.5140187,11.39634,-5,-0.8275408,11.05692,-5,-0.5140187,11.39634,5,-0.5140187,11.39634,-5,-0.25,11.73423,-5,-0.5140187,11.39634,5,-0.25,11.73423,-4.5,-0.2376958,11.74998,-4.5,-0.25,11.73423,4.5,-0.25,11.73423,5,-0.2376958,11.74998,4.5,-0.5140187,11.39634,5,-0.25,11.73423,-5,-0.5140187,11.39634,-5,-0.25,11.73423,-4.5,-0.2376958,11.74998,-4.5,-0.25,11.73423,4.5,-0.2376958,11.74998,4.5,-0.25,11.73423,5,0.25,3.655014,4.5,0.25,11.73423,5,0.25,3.655014,5,0.25,8.4,4.5,0.25,8.9,4.5,0.25,11.73423,4.5,0.25,12.36983,5,0.25,12.36983,4.5,-0.2376958,11.74998,-4.5,1.443823E-13,12.116,-4.5,-0.2376958,11.74998,4.5,1.443823E-13,12.116,4.5,-0.2376958,11.74998,4.5,1.443823E-13,12.116,-4.5,-0.2376958,11.74998,-4.5,1.443823E-13,12.116,4.5,1.443823E-13,12.116,-4.5,0.2376958,11.74998,-4.5,1.443823E-13,12.116,4.5,0.2376958,11.74998,4.5,1.443823E-13,12.116,4.5,0.2376958,11.74998,-4.5,1.443823E-13,12.116,-4.5,0.2376958,11.74998,4.5,-0.25,3.655014,-4.5,-0.25,11.73423,-5,-0.25,3.655014,-5,-0.25,11.73423,-4.5,-0.25,12.36983,-5,-0.25,12.36983,-4.5,-0.25,8.4,-4.5,-0.25,8.900001,-4.5,-4.5,8.4,-4,4.5,8.4,-4.5,4.5,8.4,-4,0.25,8.4,-4.5,-0.25,8.4,-4.5,-4.5,8.4,-4.5,-1.176643,10.73346,-5,-1.176643,10.73346,5,-1.55952,10.42764,-5,-1.55952,10.42764,5,-1.55952,10.42764,-5,-1.176643,10.73346,5,-1.176643,10.73346,-5,-1.55952,10.42764,5,0.25,11.73423,-4.5,-0.25,8.900001,-4.5,0.25,8.9,-4.5,-0.25,11.73423,-4.5,0.2376958,11.74998,-4.5,0.25,12.36983,-4.5,-0.2376958,11.74998,-4.5,-0.25,12.36983,-4.5,1.443823E-13,12.116,-4.5,0.25,3.655014,-4.5,0.25,8.9,-4.5,0.25,8.4,-4.5,0.25,11.73423,-4.5,0.25,3.655014,-5,0.25,11.73423,-5,0.25,12.36983,-4.5,0.25,12.36983,-5,-0.25,3.655014,5,-0.25,8.4,4.5,-0.25,3.655014,4.5,-0.25,8.9,4.5,-0.25,11.73423,4.5,-0.25,11.73423,5,-0.25,12.36983,4.5,-0.25,12.36983,5,0.2376958,11.74998,-4.5,0.25,11.73423,-4.5,0.2376958,11.74998,4.5,0.25,11.73423,4.5,0.5140187,11.39634,5,0.25,11.73423,5,0.5140187,11.39634,-5,0.25,11.73423,-5,0.2376958,11.74998,4.5,0.25,11.73423,-4.5,0.2376958,11.74998,-4.5,0.25,11.73423,4.5,0.5140187,11.39634,5,0.25,11.73423,5,0.5140187,11.39634,-5,0.25,11.73423,-5,-1.974197,10.14103,-5,-1.974197,10.14103,5,-2.418528,9.875125,-5,-2.418528,9.875125,5,-2.418528,9.875125,-5,-1.974197,10.14103,5,-1.974197,10.14103,-5,-2.418528,9.875125,5,0.25,8.4,4.5,4.5,8.4,4,4.5,8.4,4.5,-4.5,8.4,4,-0.25,8.4,4.5,-4.5,8.4,4.5,1.55952,10.42764,-5,1.55952,10.42764,5,1.176643,10.73346,-5,1.176643,10.73346,5,1.176643,10.73346,-5,1.55952,10.42764,5,1.55952,10.42764,-5,1.176643,10.73346,5,-2.418528,9.875125,-5,-2.418528,9.875125,5,-2.89022,9.631287,-5,-2.89022,9.631287,5,-2.89022,9.631287,-5,-2.418528,9.875125,5,-2.418528,9.875125,-5,-2.89022,9.631287,5,-3.905808,9.214744,-5,-3.905808,9.214744,5,-4.444457,9.04419,-5,-4.444457,9.04419,5,-4.444457,9.04419,-5,-3.905808,9.214744,5,-3.905808,9.214744,-5,-4.444457,9.04419,5,-4.5,8.900001,4,4.5,8.9,4.5,4.5,8.9,4,0.25,8.9,4.5,-0.25,8.9,4.5,-4.5,8.900001,4.5,-0.25,8.9,4.5,0.25,11.73423,4.5,0.25,8.9,4.5,-0.25,11.73423,4.5,-0.2376958,11.74998,4.5,-0.25,12.36983,4.5,0.2376958,11.74998,4.5,0.25,12.36983,4.5,1.443823E-13,12.116,4.5,4.5,8.9,4.5,0.25,8.4,4.5,4.5,8.4,4.5,0.25,8.9,4.5,2.418528,9.875125,-5,2.418528,9.875125,5,1.974197,10.14103,-5,1.974197,10.14103,5,1.974197,10.14103,-5,2.418528,9.875125,5,2.418528,9.875125,-5,1.974197,10.14103,5,0.5140187,11.39634,-5,0.8275408,11.05692,-5,0.5140187,11.39634,5,0.8275408,11.05692,5,0.5140187,11.39634,5,0.8275408,11.05692,-5,0.5140187,11.39634,-5,0.8275408,11.05692,5,-4.5,8.4,4,4.5,8.9,4,4.5,8.4,4,-4.5,8.900001,4,5,8.900001,-5,5,8.900001,5,4.444457,9.04419,-5,4.444457,9.04419,5,4.444457,9.04419,-5,5,8.900001,5,5,8.900001,-5,4.444457,9.04419,5,-2.89022,9.631287,-5,-2.89022,9.631287,5,-3.386836,9.410781,-5,-3.386836,9.410781,5,-3.386836,9.410781,-5,-2.89022,9.631287,5,-2.89022,9.631287,-5,-3.386836,9.410781,5,-3.386836,9.410781,-5,-3.386836,9.410781,5,-3.905808,9.214744,-5,-3.905808,9.214744,5,-3.905808,9.214744,-5,-3.386836,9.410781,5,-3.386836,9.410781,-5,-3.905808,9.214744,5,1.176643,10.73346,-5,1.176643,10.73346,5,0.8275408,11.05692,-5,0.8275408,11.05692,5,0.8275408,11.05692,-5,1.176643,10.73346,5,1.176643,10.73346,-5,0.8275408,11.05692,5,2.89022,9.631287,-5,2.89022,9.631287,5,2.418528,9.875125,-5,2.418528,9.875125,5,2.418528,9.875125,-5,2.89022,9.631287,5,2.89022,9.631287,-5,2.418528,9.875125,5,-0.8275408,11.05692,-5,-0.8275408,11.05692,5,-1.176643,10.73346,-5,-1.176643,10.73346,5,-1.176643,10.73346,-5,-0.8275408,11.05692,5,-0.8275408,11.05692,-5,-1.176643,10.73346,5,1.974197,10.14103,-5,1.974197,10.14103,5,1.55952,10.42764,-5,1.55952,10.42764,5,1.55952,10.42764,-5,1.974197,10.14103,5,1.974197,10.14103,-5,1.55952,10.42764,5,4.5,8.9,-4,-4.5,8.4,-4,4.5,8.4,-4,-4.5,8.900001,-4,-0.25,8.9,4.5,-4.5,8.4,4.5,-0.25,8.4,4.5,-4.5,8.900001,4.5,-0.25,12.36983,4.5,0.25,12.36983,5,0.25,12.36983,4.5,-0.25,12.36983,5,-0.25,12.36983,-5,0.25,12.36983,-4.5,0.25,12.36983,-5,-0.25,12.36983,-4.5,0.25,8.4,-4.5,-0.25,3.655014,-4.5,0.25,3.655014,-4.5,-0.25,8.4,-4.5,0.25,8.4,-4.5,4.5,8.9,-4.5,4.5,8.4,-4.5,0.25,8.9,-4.5,-0.25,8.4,4.5,0.25,3.655014,4.5,-0.25,3.655014,4.5,0.25,8.4,4.5,-4.5,8.4,-4.5,-0.25,8.900001,-4.5,-0.25,8.4,-4.5,-4.5,8.900001,-4.5,3.386836,9.410781,-5,3.386836,9.410781,5,2.89022,9.631287,-5,2.89022,9.631287,5,2.89022,9.631287,-5,3.386836,9.410781,5,3.386836,9.410781,-5,2.89022,9.631287,5,0.25,8.9,-4.5,4.5,8.9,-4,4.5,8.9,-4.5,-4.5,8.900001,-4,-0.25,8.900001,-4.5,-4.5,8.900001,-4.5,-3.25,3.655014,-5,-0.25,3.655014,-4.5,-0.25,3.655014,-5,-0.25,3.655014,4.5,-0.25,3.655014,5,-3.25,3.655014,5,0.25,3.655014,4.5,0.25,3.655014,-4.5,0.25,3.655014,5,0.25,3.655014,-5,3.25,3.655014,5,3.25,3.655014,-5,-4.444457,9.04419,-5,-4.444457,9.04419,5,-5,8.900001,-5,-5,8.900001,-1.17368,-5,8.900001,5,-5,8.900001,-2.12168,-5,8.900001,-3.06968,-5,8.900001,-5,-4.444457,9.04419,5,-4.444457,9.04419,-5,-5,8.900001,-1.17368,-5,8.900001,5,-5,8.900001,-2.12168,-5,8.900001,-3.06968,-4.5,8.4,-4,-4.5,8.900001,-4.5,-4.5,8.4,-4.5,-4.5,8.900001,-4,-4.5,8.4,4.5,-4.5,8.900001,4,-4.5,8.4,4,-4.5,8.900001,4.5,4.5,8.9,-4,4.5,8.4,-4.5,4.5,8.9,-4.5,4.5,8.4,-4,4.5,8.9,4.5,4.5,8.4,4,4.5,8.9,4,4.5,8.4,4.5,5,8.11632,-2.777778,5,8.50816,-2.777778,5,7.72448,-2.222222,5,8.50816,-1.666667,5,8.11632,-1.666667,5,8.900001,5,5,8.50816,-0.5555555,5,8.50816,-3.888889,5,8.50816,0.5555555,5,8.11632,-0.5555555,5,7.72448,7.219114E-14,5,8.11632,0.5555555,5,8.50816,1.666667,5,8.900001,-5,5,7.72448,-4.444444,5,8.11632,-3.888889,5,8.11632,-5,5,8.50816,2.777778,5,7.72448,2.222222,5,8.11632,1.666667,5,8.11632,2.777778,5,8.50816,3.888889,5,7.72448,4.444444,5,8.11632,3.888889,5,8.50816,5,5,8.11632,5,5,7.72448,-2.222222,5,8.50816,-2.777778,5,8.11632,-2.777778,5,8.50816,-1.666667,5,8.11632,-1.666667,5,8.900001,5,5,8.50816,-0.5555555,5,8.50816,-3.888889,5,8.50816,0.5555555,5,8.11632,-0.5555555,5,7.72448,7.219114E-14,5,8.11632,0.5555555,5,8.50816,1.666667,5,8.900001,-5,5,7.72448,-4.444444,5,8.11632,-5,5,8.11632,-3.888889,5,8.50816,2.777778,5,7.72448,2.222222,5,8.11632,1.666667,5,8.11632,2.777778,5,8.50816,3.888889,5,7.72448,4.444444,5,8.11632,3.888889,5,8.50816,5,5,8.11632,5,-5,8.11632,-2.777778,-5,8.50816,-2.777778,-5,7.72448,-2.222222,-5,8.900001,-2.12168,-5,8.11632,-1.666667,-5,8.50816,-1.666667,-5,8.900001,-3.06968,-5,8.900001,-1.17368,-5,8.50816,-3.888889,-5,8.50816,-0.5555555,-5,8.900001,-5,-5,8.900001,5,-5,7.72448,-4.444444,-5,8.11632,-3.888889,-5,8.11632,-5,-5,8.50816,0.5555555,-5,8.11632,-0.5555555,-5,7.72448,7.219114E-14,-5,8.11632,0.5555555,-5,8.50816,1.666667,-5,8.50816,2.777778,-5,7.72448,2.222222,-5,8.11632,1.666667,-5,8.11632,2.777778,-5,8.50816,3.888889,-5,7.72448,4.444444,-5,8.11632,3.888889,-5,8.50816,5,-5,8.11632,5,-5,7.72448,-2.222222,-5,8.50816,-2.777778,-5,8.11632,-2.777778,-5,8.900001,-2.12168,-5,8.11632,-1.666667,-5,8.50816,-1.666667,-5,8.900001,-3.06968,-5,8.900001,-1.17368,-5,8.50816,-3.888889,-5,8.50816,-0.5555555,-5,8.900001,-5,-5,8.900001,5,-5,7.72448,-4.444444,-5,8.11632,-5,-5,8.11632,-3.888889,-5,8.50816,0.5555555,-5,8.11632,-0.5555555,-5,7.72448,7.219114E-14,-5,8.11632,0.5555555,-5,8.50816,1.666667,-5,8.50816,2.777778,-5,7.72448,2.222222,-5,8.11632,1.666667,-5,8.11632,2.777778,-5,8.50816,3.888889,-5,7.72448,4.444444,-5,8.11632,3.888889,-5,8.50816,5,-5,8.11632,5,-2.375,1.327507,4,-2.5,3.155014,4,-2.375,1.827507,4,-2.125,1.827507,4,-2.5,2.48703E-12,4,-2,3.155014,4,-2.125,1.327507,4,-2,2.486746E-12,4,2.125,1.327507,4,2,3.155014,4,2.125,1.827507,4,2.375,1.827507,4,2,7.264503E-15,4,2.5,3.155014,4,2.375,1.327507,4,2.5,6.979798E-15,4,-2,2.487933E-12,-4,-2.125,1.327507,-4,-2.5,2.487933E-12,-4,-2,3.155014,-4,-2.375,1.327507,-4,-2.125,1.827507,-4,-2.5,3.155014,-4,-2.375,1.827507,-4,2.5,8.166893E-15,-4,2.375,1.327507,-4,2,8.166893E-15,-4,2.5,3.155014,-4,2.125,1.327507,-4,2.375,1.827507,-4,2,3.155014,-4,2.125,1.827507,-4 + } + PolygonVertexIndex: *2292 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,22,23,-25,24,25,-23,24,23,-27,27,22,-26,27,25,-29,25,29,-29,30,27,-29,26,23,-32,29,31,-29,30,32,-24,28,32,-31,23,32,-34,31,23,-34,33,32,-35,33,35,-32,32,36,-35,35,37,-32,31,37,-29,35,38,-38,37,39,-29,40,37,-39,38,34,-41,39,41,-29,40,34,-42,41,34,-37,28,41,-43,36,42,-42,43,45,-45,46,44,-46,47,44,-47,48,46,-46,48,49,-47,50,46,-50,51,50,-50,52,50,-52,53,55,-55,56,54,-56,57,54,-57,58,56,-56,59,57,-57,55,60,-59,60,57,-60,61,58,-61,59,61,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,83,84,-86,85,86,-84,85,84,-88,84,88,-88,86,89,-84,89,87,-89,83,89,-91,88,90,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,106,-106,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,115,-115,117,113,-116,117,115,-119,119,118,-116,120,118,-120,121,118,-121,122,124,-124,125,123,-125,126,123,-126,127,125,-125,128,126,-126,124,129,-128,129,126,-129,130,127,-130,128,130,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,140,141,-143,142,143,-141,142,141,-145,141,145,-145,143,146,-141,146,144,-146,140,146,-148,145,147,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,202,203,-202,203,204,-202,205,201,-205,201,205,-207,207,206,-206,208,210,-210,211,209,-211,212,211,-211,213,211,-213,209,211,-215,215,214,-212,216,218,-218,219,217,-219,220,219,-219,221,220,-219,222,224,-224,225,223,-225,226,225,-225,224,227,-227,228,225,-227,225,228,-230,230,226,-228,227,229,-231,230,228,-227,230,229,-229,231,233,-233,232,233,-235,233,235,-235,236,234,-236,234,236,-238,238,237,-237,239,241,-241,242,240,-242,243,242,-242,244,243,-242,243,244,-246,246,245,-245,247,249,-249,250,248,-250,251,250,-250,252,250,-252,253,255,-255,256,254,-256,257,256,-256,258,257,-256,259,261,-261,262,260,-262,263,260,-263,262,264,-264,265,260,-264,260,265,-267,267,263,-265,264,266,-268,267,265,-264,267,266,-266,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,311,-311,313,311,-313,314,316,-316,317,315,-317,318,317,-317,319,318,-317,317,320,-316,321,315,-321,320,322,-322,321,322,-324,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,342,-344,346,343,-345,343,347,-346,344,348,-347,345,347,-349,346,348,-350,347,349,-349,350,352,-352,353,350,-352,354,351,-353,351,355,-354,352,356,-355,353,355,-357,354,356,-358,355,357,-357,358,360,-360,361,359,-361,359,362,-359,363,359,-362,364,358,-363,365,363,-362,365,364,-363,361,364,-366,366,368,-368,369,367,-369,367,370,-367,371,367,-370,372,366,-371,373,371,-370,373,372,-371,369,372,-374,374,376,-376,375,377,-375,378,380,-380,379,381,-379,382,384,-384,383,385,-383,385,386,-383,387,389,-389,388,390,-388,391,393,-393,392,394,-392,395,397,-397,395,396,-399,395,398,-400,400,398,-397,396,401,-401,400,401,-403,403,400,-403,401,404,-403,395,399,-406,405,403,-403,406,404,-396,406,402,-405,406,395,-408,395,405,-408,406,407,-409,409,407,-406,410,406,-409,411,409,-406,411,405,-403,412,409,-412,413,411,-403,411,414,-413,408,412,-415,415,413,-403,408,414,-416,408,415,-411,415,402,-417,416,410,-416,417,419,-419,418,420,-418,418,421,-421,420,422,-418,423,422,-421,420,424,-424,424,425,-424,424,426,-426,427,429,-429,428,430,-428,428,431,-431,430,432,-428,431,433,-431,434,427,-433,431,434,-434,432,435,-435,435,433,-435,436,438,-438,437,439,-437,440,442,-442,441,443,-441,444,446,-446,445,447,-445,448,450,-450,449,451,-449,452,454,-454,453,455,-453,456,458,-458,456,457,-460,456,459,-461,461,459,-458,462,456,-461,463,461,-458,460,463,-463,463,457,-465,464,462,-464,465,467,-467,466,468,-466,469,471,-471,470,472,-470,473,475,-475,474,476,-474,477,479,-479,478,480,-478,480,481,-478,482,484,-484,483,485,-483,486,488,-488,487,489,-487,489,490,-487,487,491,-490,489,491,-493,492,493,-490,492,494,-494,492,495,-495,496,498,-498,497,499,-497,497,500,-500,499,501,-497,500,502,-500,503,496,-502,500,503,-503,501,504,-504,504,502,-504,505,507,-507,506,508,-506,509,511,-511,510,512,-510,513,515,-515,513,514,-517,513,516,-518,518,516,-515,519,513,-518,520,518,-515,517,520,-520,520,514,-522,521,519,-521,522,524,-524,523,525,-523,526,528,-528,527,529,-527,530,532,-532,531,533,-531,534,536,-536,535,537,-535,538,540,-540,539,541,-539,542,544,-544,543,545,-543,546,548,-548,547,549,-547,550,552,-552,551,553,-551,554,556,-556,555,557,-555,558,560,-560,559,561,-559,562,564,-564,563,565,-563,566,568,-568,567,569,-567,570,572,-572,571,573,-571,574,576,-576,577,575,-577,578,580,-580,579,581,-579,582,584,-584,585,583,-585,586,588,-588,587,589,-587,590,592,-592,593,591,-593,594,596,-596,595,597,-595,598,600,-600,601,599,-601,602,604,-604,603,605,-603,606,608,-608,609,607,-609,610,609,-609,611,610,-609,612,611,-609,611,613,-611,614,616,-616,615,617,-615,617,618,-615,618,619,-615,620,619,-619,619,621,-615,622,624,-624,625,622,-624,626,625,-624,623,627,-627,627,623,-629,628,629,-628,630,632,-632,633,631,-633,634,636,-636,635,637,-635,638,640,-640,641,639,-641,642,644,-644,643,645,-643,646,648,-648,647,649,-647,649,647,-651,650,651,-650,649,652,-647,649,653,-653,654,656,-656,655,657,-655,657,658,-655,658,659,-655,660,662,-662,663,661,-663,664,666,-666,665,667,-665,668,670,-670,669,671,-669,671,672,-669,673,668,-673,671,674,-673,674,671,-676,672,676,-674,674,676,-673,675,676,-675,675,673,-677,677,679,-679,677,678,-681,681,677,-681,680,682,-682,682,680,-684,683,684,-683,685,687,-687,686,688,-686,688,689,-686,689,690,-686,690,689,-692,691,692,-691,693,695,-695,695,696,-695,696,697,-695,698,697,-697,697,699,-695,700,694,-700,701,703,-703,704,701,-703,705,704,-703,705,706,-705,707,705,-703,702,708,-708,709,711,-711,712,710,-712,713,715,-715,714,716,-714,717,719,-719,718,720,-718,720,721,-718,720,722,-722,723,725,-725,726,724,-726,727,729,-729,728,730,-728,731,733,-733,734,732,-734,735,737,-737,736,738,-736,739,741,-741,742,740,-742,743,745,-745,744,746,-744,747,749,-749,748,750,-748,750,751,-748,751,752,-748,753,755,-755,754,756,-754,754,757,-757,758,756,-758,754,759,-758,759,754,-761,757,761,-759,759,761,-758,760,761,-760,760,758,-762,762,764,-764,763,765,-763,766,768,-768,769,767,-769,770,772,-772,771,773,-771,774,776,-776,777,775,-777,778,780,-780,779,781,-779,782,784,-784,783,785,-783,786,788,-788,789,787,-789,790,792,-792,791,793,-791,794,796,-796,797,795,-797,798,800,-800,799,801,-799,802,804,-804,805,803,-805,806,808,-808,807,809,-807,810,812,-812,813,811,-813,814,816,-816,815,817,-815,818,820,-820,821,819,-821,822,824,-824,823,825,-823,826,828,-828,829,827,-829,830,832,-832,831,833,-831,834,836,-836,837,835,-837,838,840,-840,839,841,-839,842,844,-844,843,845,-843,846,848,-848,847,849,-847,850,852,-852,851,853,-851,854,856,-856,855,857,-855,858,860,-860,859,861,-859,862,864,-864,863,865,-863,866,868,-868,867,869,-867,870,872,-872,871,873,-871,874,876,-876,877,875,-877,878,880,-880,879,881,-879,882,884,-884,883,885,-883,885,886,-883,885,887,-887,888,890,-890,889,891,-889,891,892,-889,892,893,-889,894,891,-890,889,895,-895,896,894,-896,896,895,-898,898,896,-898,897,899,-899,900,902,-902,903,901,-903,903,904,-902,905,903,-903,906,905,-903,907,909,-909,908,910,-908,911,910,-909,910,912,-908,912,913,-908,914,916,-916,915,917,-915,918,920,-920,919,921,-919,922,924,-924,923,925,-923,926,928,-928,927,929,-927,930,932,-932,932,933,-932,934,933,-933,933,935,-932,936,935,-934,931,935,-938,938,935,-937,939,938,-937,940,938,-940,941,938,-941,942,935,-939,935,943,-938,937,943,-945,945,937,-945,946,944,-944,947,935,-943,948,947,-943,949,948,-943,950,947,-949,951,935,-948,952,935,-952,953,952,-952,954,935,-953,955,954,-953,956,958,-958,959,956,-958,959,960,-957,961,959,-958,961,962,-960,961,957,-964,961,964,-963,964,965,-963,964,966,-966,964,967,-967,961,968,-965,969,961,-964,969,963,-971,970,971,-970,963,972,-971,961,973,-969,973,974,-969,974,975,-969,973,976,-975,961,977,-974,961,978,-978,978,979,-978,961,980,-979,980,981,-979,982,984,-984,984,985,-984,986,985,-985,987,985,-987,985,988,-984,989,985,-988,983,988,-991,991,989,-988,988,992,-991,993,989,-992,990,992,-995,995,990,-995,996,994,-993,997,993,-992,998,997,-992,999,997,-999,1000,997,-1000,1001,993,-998,1002,993,-1002,1003,1002,-1002,1004,1003,-1002,1005,1002,-1004,1006,993,-1003,1007,993,-1007,1008,1007,-1007,1009,993,-1008,1010,1009,-1008,1011,1013,-1013,1014,1011,-1013,1014,1015,-1012,1014,1016,-1016,1017,1014,-1013,1014,1018,-1017,1017,1012,-1020,1018,1020,-1017,1021,1017,-1020,1018,1022,-1021,1021,1019,-1024,1023,1024,-1022,1019,1025,-1024,1022,1026,-1021,1026,1027,-1021,1026,1028,-1028,1026,1029,-1029,1022,1030,-1027,1022,1031,-1031,1031,1032,-1031,1032,1033,-1031,1031,1034,-1033,1022,1035,-1032,1022,1036,-1036,1036,1037,-1036,1022,1038,-1037,1038,1039,-1037,1040,1042,-1042,1042,1043,-1042,1041,1044,-1041,1045,1041,-1044,1046,1040,-1045,1045,1043,-1047,1046,1044,-1048,1047,1045,-1047,1048,1050,-1050,1050,1051,-1050,1049,1052,-1049,1053,1049,-1052,1054,1048,-1053,1053,1051,-1055,1054,1052,-1056,1055,1053,-1055,1056,1058,-1058,1057,1059,-1057,1060,1057,-1059,1057,1061,-1060,1058,1062,-1061,1061,1063,-1060,1062,1063,-1061,1062,1059,-1064,1064,1066,-1066,1065,1067,-1065,1068,1065,-1067,1065,1069,-1068,1066,1070,-1069,1069,1071,-1068,1070,1071,-1069,1070,1067,-1072 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *6876 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.3277377,0.9447687,0,0.3797443,0.9250916,0,0.3277377,0.9447687,0,0.3797443,0.9250916,0,0.3277377,0.9447687,0,0.3797443,0.9250916,0,-0.3797443,-0.9250916,0,-0.3277377,-0.9447687,0,-0.3277377,-0.9447687,0,-0.3277377,-0.9447687,0,-0.3797443,-0.9250916,0,-0.3797443,-0.9250916,0,0.2766394,0.9609737,0,0.3277377,0.9447687,0,0.2766394,0.9609737,0,0.3277377,0.9447687,0,0.2766394,0.9609737,0,0.3277377,0.9447687,0,-0.3277377,-0.9447687,0,-0.2766394,-0.9609737,0,-0.2766394,-0.9609737,0,-0.2766394,-0.9609737,0,-0.3277377,-0.9447687,0,-0.3277377,-0.9447687,0,-0.5966902,0.8024716,0,-0.5413319,0.8408089,0,-0.5966902,0.8024716,0,-0.5413319,0.8408089,0,-0.5966902,0.8024716,0,-0.5413319,0.8408089,0,0.5413319,-0.8408089,0,0.5966902,-0.8024716,0,0.5966902,-0.8024716,0,0.5966902,-0.8024716,0,0.5413319,-0.8408089,0,0.5413319,-0.8408089,0,-0.7076507,0.7065625,0,-0.7076507,0.7065625,0,-0.7619254,0.6476648,0,-0.7619254,0.6476648,0,-0.7619254,0.6476648,0,-0.7076507,0.7065625,0,0.7076507,-0.7065625,0,0.7076507,-0.7065625,0,0.7619254,-0.6476648,0,0.7619254,-0.6476648,0,0.7619254,-0.6476648,0,0.7076507,-0.7065625,0,-0.7619254,0.6476648,0,-0.7619254,0.6476648,0,-0.787976,0.6157059,0,-0.787976,0.6157059,0,-0.787976,0.6157059,0,-0.7619254,0.6476648,0,-0.8140996,0.5807252,0,-0.787976,0.6157059,0,-0.7619254,0.6476648,0,-0.787976,0.6157059,0,-0.8140996,0.5807252,0,-0.7619254,0.6476648,0,-0.787976,0.6157059,0,-0.787976,0.6157059,0,-0.7619254,0.6476648,0,-0.787976,0.6157059,0,-0.8140996,0.5807252,0,-0.8140996,0.5807252,0,0.7619254,-0.6476648,0,0.7619254,-0.6476648,0,0.787976,-0.6157059,0,0.787976,-0.6157059,0,0.787976,-0.6157059,0,0.7619254,-0.6476648,0,0.787976,-0.6157059,0,0.8140996,-0.5807252,0,0.7619254,-0.6476648,0,0.8140996,-0.5807252,0,0.787976,-0.6157059,0,0.7619254,-0.6476648,0,0.8140996,-0.5807252,0,0.787976,-0.6157059,0,0.8140996,-0.5807252,0,0.787976,-0.6157059,0,0.787976,-0.6157059,0,0.7619254,-0.6476648,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.8140996,0.5807252,0,-0.8140996,0.5807252,0,-0.8386715,0.5446376,0,-0.8386715,0.5446376,0,-0.8386715,0.5446376,0,-0.8140996,0.5807252,0,0.8140996,-0.5807252,0,0.8140996,-0.5807252,0,0.8386715,-0.5446376,0,0.8386715,-0.5446376,0,0.8386715,-0.5446376,0,0.8140996,-0.5807252,0,0.8386715,0.5446376,0,0.8386715,0.5446376,0,0.8140996,0.5807252,0,0.8140996,0.5807252,0,0.8140996,0.5807252,0,0.8386715,0.5446376,0,-0.8386715,-0.5446376,0,-0.8386715,-0.5446376,0,-0.8140996,-0.5807252,0,-0.8140996,-0.5807252,0,-0.8140996,-0.5807252,0,-0.8386715,-0.5446376,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6523129,0.7579497,0,-0.5966902,0.8024716,0,-0.6523129,0.7579497,0,-0.5966902,0.8024716,0,-0.6523129,0.7579497,0,-0.5966902,0.8024716,0,0.5966902,-0.8024716,0,0.6523129,-0.7579497,0,0.6523129,-0.7579497,0,0.6523129,-0.7579497,0,0.5966902,-0.8024716,0,0.5966902,-0.8024716,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8140996,0.5807252,0,0.8140996,0.5807252,0,0.787976,0.6157059,0,0.8140996,0.5807252,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.7619254,0.6476648,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.7619254,0.6476648,0,0.787976,0.6157059,0,0.7619254,0.6476648,0,0.7619254,0.6476648,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.787976,0.6157059,0,0.7619254,0.6476648,0,-0.8140996,-0.5807252,0,-0.8140996,-0.5807252,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.8140996,-0.5807252,0,-0.787976,-0.6157059,0,-0.7619254,-0.6476648,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.7619254,-0.6476648,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.7619254,-0.6476648,0,-0.7619254,-0.6476648,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.787976,-0.6157059,0,-0.7619254,-0.6476648,0,-0.5413319,0.8408089,0,-0.4865988,0.8736255,0,-0.5413319,0.8408089,0,-0.4865988,0.8736255,0,-0.5413319,0.8408089,0,-0.4865988,0.8736255,0,0.4865988,-0.8736255,0,0.5413319,-0.8408089,0,0.5413319,-0.8408089,0,0.5413319,-0.8408089,0,0.4865988,-0.8736255,0,0.4865988,-0.8736255,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.5966902,0.8024716,0,0.6523129,0.7579497,0,0.5966902,0.8024716,0,0.6523129,0.7579497,0,0.5966902,0.8024716,0,0.6523129,0.7579497,0,-0.6523129,-0.7579497,0,-0.5966902,-0.8024716,0,-0.5966902,-0.8024716,0,-0.5966902,-0.8024716,0,-0.6523129,-0.7579497,0,-0.6523129,-0.7579497,0,-0.4865988,0.8736255,0,-0.4327032,0.9015364,0,-0.4865988,0.8736255,0,-0.4327032,0.9015364,0,-0.4865988,0.8736255,0,-0.4327032,0.9015364,0,0.4327032,-0.9015364,0,0.4865988,-0.8736255,0,0.4865988,-0.8736255,0,0.4865988,-0.8736255,0,0.4327032,-0.9015364,0,0.4327032,-0.9015364,0,-0.3277377,0.9447687,0,-0.2766394,0.9609737,0,-0.3277377,0.9447687,0,-0.2766394,0.9609737,0,-0.3277377,0.9447687,0,-0.2766394,0.9609737,0,0.2766394,-0.9609737,0,0.3277377,-0.9447687,0,0.3277377,-0.9447687,0,0.3277377,-0.9447687,0,0.2766394,-0.9609737,0,0.2766394,-0.9609737,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.4865988,0.8736255,0,0.5413319,0.8408089,0,0.4865988,0.8736255,0,0.5413319,0.8408089,0,0.4865988,0.8736255,0,0.5413319,0.8408089,0,-0.5413319,-0.8408089,0,-0.4865988,-0.8736255,0,-0.4865988,-0.8736255,0,-0.4865988,-0.8736255,0,-0.5413319,-0.8408089,0,-0.5413319,-0.8408089,0,0.7619254,0.6476648,0,0.7619254,0.6476648,0,0.7076507,0.7065625,0,0.7076507,0.7065625,0,0.7076507,0.7065625,0,0.7619254,0.6476648,0,-0.7619254,-0.6476648,0,-0.7619254,-0.6476648,0,-0.7076507,-0.7065625,0,-0.7076507,-0.7065625,0,-0.7076507,-0.7065625,0,-0.7619254,-0.6476648,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.2512243,0.9679289,0,0.2766394,0.9609737,0,0.2512243,0.9679289,0,0.2766394,0.9609737,0,0.2512243,0.9679289,0,0.2766394,0.9609737,0,-0.2766394,-0.9609737,0,-0.2512243,-0.9679289,0,-0.2512243,-0.9679289,0,-0.2512243,-0.9679289,0,-0.2766394,-0.9609737,0,-0.2766394,-0.9609737,0,-0.4327032,0.9015364,0,-0.3797443,0.9250916,0,-0.4327032,0.9015364,0,-0.3797443,0.9250916,0,-0.4327032,0.9015364,0,-0.3797443,0.9250916,0,0.3797443,-0.9250916,0,0.4327032,-0.9015364,0,0.4327032,-0.9015364,0,0.4327032,-0.9015364,0,0.3797443,-0.9250916,0,0.3797443,-0.9250916,0,-0.3797443,0.9250916,0,-0.3277377,0.9447687,0,-0.3797443,0.9250916,0,-0.3277377,0.9447687,0,-0.3797443,0.9250916,0,-0.3277377,0.9447687,0,0.3277377,-0.9447687,0,0.3797443,-0.9250916,0,0.3797443,-0.9250916,0,0.3797443,-0.9250916,0,0.3277377,-0.9447687,0,0.3277377,-0.9447687,0,0.6523129,0.7579497,0,0.7076507,0.7065625,0,0.6523129,0.7579497,0,0.7076507,0.7065625,0,0.6523129,0.7579497,0,0.7076507,0.7065625,0,-0.7076507,-0.7065625,0,-0.6523129,-0.7579497,0,-0.6523129,-0.7579497,0,-0.6523129,-0.7579497,0,-0.7076507,-0.7065625,0,-0.7076507,-0.7065625,0,0.4327032,0.9015364,0,0.4865988,0.8736255,0,0.4327032,0.9015364,0,0.4865988,0.8736255,0,0.4327032,0.9015364,0,0.4865988,0.8736255,0,-0.4865988,-0.8736255,0,-0.4327032,-0.9015364,0,-0.4327032,-0.9015364,0,-0.4327032,-0.9015364,0,-0.4865988,-0.8736255,0,-0.4865988,-0.8736255,0,-0.7076507,0.7065625,0,-0.6523129,0.7579497,0,-0.7076507,0.7065625,0,-0.6523129,0.7579497,0,-0.7076507,0.7065625,0,-0.6523129,0.7579497,0,0.6523129,-0.7579497,0,0.7076507,-0.7065625,0,0.7076507,-0.7065625,0,0.7076507,-0.7065625,0,0.6523129,-0.7579497,0,0.6523129,-0.7579497,0,0.5413319,0.8408089,0,0.5966902,0.8024716,0,0.5413319,0.8408089,0,0.5966902,0.8024716,0,0.5413319,0.8408089,0,0.5966902,0.8024716,0,-0.5966902,-0.8024716,0,-0.5413319,-0.8408089,0,-0.5413319,-0.8408089,0,-0.5413319,-0.8408089,0,-0.5966902,-0.8024716,0,-0.5966902,-0.8024716,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.3797443,0.9250916,0,0.4327032,0.9015364,0,0.3797443,0.9250916,0,0.4327032,0.9015364,0,0.3797443,0.9250916,0,0.4327032,0.9015364,0,-0.4327032,-0.9015364,0,-0.3797443,-0.9250916,0,-0.3797443,-0.9250916,0,-0.3797443,-0.9250916,0,-0.4327032,-0.9015364,0,-0.4327032,-0.9015364,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2766394,0.9609737,0,-0.2512243,0.9679289,0,-0.2766394,0.9609737,0,-0.2512243,0.9679289,0,-0.2766394,0.9609737,0,-0.2512243,0.9679289,0,-0.2512243,0.9679289,0,-0.2512243,0.9679289,0,-0.2766394,0.9609737,0,-0.2512243,0.9679289,0,-0.2512243,0.9679289,0,-0.2512243,0.9679289,0,-0.2512243,0.9679289,0,-0.2512243,0.9679289,0,-0.2512243,0.9679289,0,0.2512243,-0.9679289,0,0.2766394,-0.9609737,0,0.2766394,-0.9609737,0,0.2766394,-0.9609737,0,0.2512243,-0.9679289,0,0.2512243,-0.9679289,0,0.2512243,-0.9679289,0,0.2512243,-0.9679289,0,0.2766394,-0.9609737,0,0.2512243,-0.9679289,0,0.2512243,-0.9679289,0,0.2512243,-0.9679289,0,0.2512243,-0.9679289,0,0.2512243,-0.9679289,0,0.2512243,-0.9679289,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *2144 { + a: -15.74803,12.42132,-15.74803,2.747952E-14,-17.71654,12.42132,-17.71654,2.860041E-14,19.68504,14.38982,19.68504,12.42132,-19.68504,14.38982,-19.68504,12.42132,9.84252,17.71654,9.84252,15.74803,7.874016,17.71654,7.874016,15.74803,7.874016,16.14173,-7.874016,9.791458E-12,-9.84252,9.791458E-12,-7.874016,12.42132,-9.84252,12.42132,-9.84252,3.103223E-14,-9.84252,12.42132,-7.874016,3.215312E-14,-7.874016,12.42132,-7.874016,-16.14173,-7.874016,-15.74803,-7.874016,-17.71654,-7.874016,15.74803,-9.84252,15.74803,-7.874016,16.14173,-9.84252,-15.74803,-12.79528,19.68504,-9.84252,17.71654,-9.84252,-17.71654,-7.874016,17.71654,-12.79528,-19.68504,7.874016,-17.71654,9.84252,-17.71654,7.874016,-15.74803,12.79528,-19.68504,7.874016,15.74803,9.84252,-15.74803,7.874016,17.71654,9.84252,15.74803,9.84252,17.71654,12.79528,19.68504,12.79528,12.42132,-12.79528,12.42132,12.79528,14.38982,-0.984252,14.38982,-12.79528,14.38982,0.984252,14.38982,0.984252,46.19777,-0.984252,46.19777,0.984252,48.70012,-0.984252,48.70012,15.74803,2.860041E-14,15.74803,12.42132,16.14173,0,16.24016,7.19491,17.71654,12.42132,16.24016,5.226406,17.22441,7.19491,17.71654,2.860041E-14,17.22441,5.226406,-7.874016,-15.74803,-7.874016,-17.71654,-9.84252,-15.74803,-9.84252,-17.71654,15.74803,7.19491,15.74803,5.226406,-15.74803,7.19491,-15.74803,5.226406,-17.71654,9.79501E-12,-17.71654,12.42132,-15.74803,9.79501E-12,-15.74803,12.42132,9.84252,2.860041E-14,7.874016,2.860041E-14,9.84252,12.42132,7.874016,12.42132,-7.874016,17.71654,-7.874016,15.74803,-9.84252,17.71654,-9.84252,15.74803,15.74803,12.42132,16.14173,12.42132,15.74803,9.79501E-12,16.24016,5.226406,16.24016,7.19491,17.22441,5.226406,17.71654,9.79389E-12,17.22441,7.19491,17.71654,12.42132,8.366141,-15.74803,8.366141,15.74803,9.350393,-15.74803,9.350393,15.74803,-19.68504,12.42132,-19.68504,14.38982,19.68504,12.42132,19.68504,14.38982,15.74803,7.19491,15.74803,5.226406,-15.74803,7.19491,-15.74803,5.226406,9.84252,-15.74803,9.84252,-17.71654,7.874016,-15.74803,7.874016,-17.71654,7.874016,-16.14173,7.874016,9.79389E-12,7.874016,12.42132,9.84252,9.79501E-12,9.84252,12.42132,-12.79528,12.42132,-12.79528,14.38982,12.79528,12.42132,0.984252,14.38982,12.79528,14.38982,-0.984252,14.38982,-0.984252,46.19777,0.984252,46.19777,0.984252,48.70012,-0.984252,48.70012,-15.74803,12.42132,-15.74803,9.790337E-12,-16.14173,12.42132,-16.24016,5.226406,-17.71654,9.791458E-12,-16.24016,7.19491,-17.22441,5.226406,-17.71654,12.42132,-17.22441,7.19491,9.350393,15.74803,9.350393,-15.74803,8.366141,15.74803,8.366141,-15.74803,-15.74803,7.19491,15.74803,7.19491,-15.74803,5.226406,15.74803,5.226406,-15.74803,3.215312E-14,-16.14173,6.075353E-14,-15.74803,12.42132,-16.24016,7.19491,-16.24016,5.226406,-17.22441,7.19491,-17.71654,12.42132,-17.22441,5.226406,-17.71654,3.215312E-14,17.71654,12.42132,17.71654,3.103223E-14,15.74803,12.42132,15.74803,3.215312E-14,-9.350393,-15.74803,-9.350393,15.74803,-8.366141,-15.74803,-8.366141,15.74803,-15.74803,7.19491,15.74803,7.19491,-15.74803,5.226406,15.74803,5.226406,-8.366141,15.74803,-8.366141,-15.74803,-9.350393,15.74803,-9.350393,-15.74803,15.74803,9.791458E-12,15.74803,12.42132,17.71654,9.791458E-12,17.71654,12.42132,7.874016,5.226406,-7.874016,5.226406,7.874016,7.19491,-7.874016,7.19491,-7.874016,5.226406,-7.874016,7.19491,7.874016,5.226406,7.874016,7.19491,-7.874016,-16.24016,7.874016,-16.24016,-7.874016,-17.22441,7.874016,-17.22441,7.874016,-16.24016,7.874016,-17.22441,-7.874016,-16.24016,-7.874016,-17.22441,-7.874016,17.22441,7.874016,17.22441,-7.874016,16.24016,7.874016,16.24016,-7.874016,5.226406,-7.874016,7.19491,7.874016,5.226406,7.874016,7.19491,7.874016,17.22441,7.874016,16.24016,-7.874016,17.22441,-7.874016,16.24016,7.874016,5.226406,-7.874016,5.226406,7.874016,7.19491,-7.874016,7.19491,-19.68504,14.38982,-19.68504,46.19777,-17.71654,14.38982,-17.71654,33.07087,-17.71654,35.03937,-17.71654,46.19777,-19.68504,48.70012,-17.71654,48.70012,-19.68504,14.38982,-19.68504,46.19777,-17.71654,14.38982,-17.71654,46.19777,-17.71654,33.07087,-17.71654,35.03937,-19.68504,48.70012,-17.71654,48.70012,17.71653,-15.74803,17.71653,-17.71654,-17.71654,-15.74803,0.984251,-17.71654,-0.9842529,-17.71654,-17.71654,-17.71654,0.984252,35.03937,-0.984252,35.03937,0.984252,46.19777,-0.984252,46.19777,0.9358104,46.25976,0.984252,48.70012,-0.9358104,46.25976,-0.984252,48.70012,5.684342E-13,47.70079,17.71654,33.07087,17.71654,35.03937,17.71654,14.38982,17.71654,46.19777,19.68504,14.38982,19.68504,46.19777,17.71654,48.70012,19.68504,48.70012,17.71654,14.38982,17.71654,33.07087,19.68504,14.38982,17.71654,35.03937,17.71654,46.19777,19.68504,46.19777,17.71654,48.70012,19.68504,48.70012,17.71654,17.71654,17.71654,15.74803,0.984251,17.71654,-17.71654,15.74803,-0.9842529,17.71654,-17.71654,17.71654,-17.71654,15.74803,-17.71654,17.71654,17.71654,15.74803,-0.9842509,17.71654,0.984253,17.71654,17.71654,17.71654,-0.984252,35.03937,-0.984252,46.19777,0.984252,35.03937,0.984252,46.19777,0.9358104,46.25976,0.984252,48.70012,-0.9358104,46.25976,-0.984252,48.70012,-5.684342E-13,47.70079,17.71654,33.07087,0.984252,33.07087,17.71654,35.03937,0.984252,35.03937,-17.71654,33.07087,-17.71654,35.03937,17.71654,33.07087,17.71654,35.03937,17.71654,33.07087,-17.71654,33.07087,17.71654,35.03937,-17.71654,35.03937,-0.984252,33.07087,-17.71654,33.07087,-0.984252,35.03937,-17.71654,35.03937,-0.984252,17.71654,-0.984252,19.68504,0.984252,17.71654,0.984252,19.68504,-0.984252,-19.68504,-0.984252,-17.71654,0.984252,-19.68504,0.984252,-17.71654,0.984252,14.38982,-0.984252,14.38982,0.984252,33.07087,-0.984252,33.07087,-17.71654,33.07087,-17.71654,35.03937,-0.984252,33.07087,-0.984252,35.03937,0.984252,14.38982,-0.984252,14.38982,0.984252,33.07087,-0.984252,33.07087,0.984252,33.07087,0.984252,35.03937,17.71654,33.07087,17.71654,35.03937,-17.71653,-17.71654,-17.71653,-15.74803,-0.9842509,-17.71654,17.71654,-15.74803,0.984253,-17.71654,17.71654,-17.71654,0.984252,-19.68504,0.984252,-17.71654,12.79528,-19.68504,0.984252,17.71654,0.984252,19.68504,12.79528,19.68504,-0.984252,17.71654,-0.984252,-17.71654,-0.984252,19.68504,-0.984252,-19.68504,-12.79528,19.68504,-12.79528,-19.68504,-17.71654,33.07087,-17.71654,35.03937,-15.74803,33.07087,-15.74803,35.03937,15.74803,33.07087,15.74803,35.03937,17.71654,33.07087,17.71654,35.03937,17.71654,35.03937,17.71654,33.07087,15.74803,35.03937,15.74803,33.07087,-15.74803,35.03937,-15.74803,33.07087,-17.71654,35.03937,-17.71654,33.07087,9.350393,7.19491,9.84252,12.42132,9.350393,5.226406,8.366141,7.19491,9.84252,9.791458E-12,7.874016,12.42132,8.366141,5.226406,7.874016,9.790337E-12,-8.366141,7.19491,-7.874016,12.42132,-8.366141,5.226406,-9.350393,7.19491,-7.874016,2.860041E-14,-9.84252,12.42132,-9.350393,5.226406,-9.84252,2.747952E-14,-9.84252,9.79501E-12,-8.366141,5.226406,-7.874016,9.79501E-12,-7.874016,12.42132,-9.350393,5.226406,-8.366141,7.19491,-9.84252,12.42132,-9.350393,7.19491,7.874016,3.215312E-14,9.350393,5.226406,9.84252,3.215312E-14,9.84252,12.42132,8.366141,5.226406,9.350393,7.19491,7.874016,12.42132,8.366141,7.19491,-17.71654,12.42132,-15.74803,2.747952E-14,-15.74803,12.42132,-17.71654,2.860041E-14,-19.68504,14.38982,19.68504,12.42132,19.68504,14.38982,-19.68504,12.42132,7.874016,17.71654,9.84252,15.74803,9.84252,17.71654,7.874016,15.74803,7.874016,16.14173,-7.874016,12.42132,-9.84252,9.791458E-12,-7.874016,9.791458E-12,-9.84252,12.42132,-7.874016,3.215312E-14,-9.84252,12.42132,-9.84252,3.103223E-14,-7.874016,12.42132,-7.874016,-17.71654,-7.874016,-15.74803,-7.874016,-16.14173,-7.874016,15.74803,-7.874016,16.14173,-9.84252,15.74803,-9.84252,-15.74803,-12.79528,19.68504,-9.84252,17.71654,-9.84252,-17.71654,-7.874016,17.71654,-12.79528,-19.68504,7.874016,-17.71654,9.84252,-17.71654,7.874016,-15.74803,12.79528,-19.68504,7.874016,15.74803,9.84252,-15.74803,7.874016,17.71654,9.84252,15.74803,9.84252,17.71654,12.79528,19.68504,12.79528,14.38982,-12.79528,12.42132,12.79528,12.42132,-0.984252,14.38982,-12.79528,14.38982,0.984252,14.38982,0.984252,46.19777,-0.984252,46.19777,0.984252,48.70012,-0.984252,48.70012,16.14173,0,15.74803,12.42132,15.74803,2.860041E-14,16.24016,7.19491,17.71654,12.42132,16.24016,5.226406,17.22441,7.19491,17.71654,2.860041E-14,17.22441,5.226406,-9.84252,-15.74803,-7.874016,-17.71654,-7.874016,-15.74803,-9.84252,-17.71654,-15.74803,7.19491,15.74803,5.226406,15.74803,7.19491,-15.74803,5.226406,-15.74803,9.79501E-12,-17.71654,12.42132,-17.71654,9.79501E-12,-15.74803,12.42132,9.84252,12.42132,7.874016,2.860041E-14,9.84252,2.860041E-14,7.874016,12.42132,-9.84252,17.71654,-7.874016,15.74803,-7.874016,17.71654,-9.84252,15.74803,15.74803,9.79501E-12,16.14173,12.42132,15.74803,12.42132,16.24016,5.226406,17.22441,5.226406,16.24016,7.19491,17.71654,9.79389E-12,17.22441,7.19491,17.71654,12.42132,9.350393,-15.74803,8.366141,15.74803,8.366141,-15.74803,9.350393,15.74803,19.68504,12.42132,-19.68504,14.38982,-19.68504,12.42132,19.68504,14.38982,-15.74803,7.19491,15.74803,5.226406,15.74803,7.19491,-15.74803,5.226406,7.874016,-15.74803,9.84252,-17.71654,9.84252,-15.74803,7.874016,-17.71654,7.874016,-16.14173,9.84252,9.79501E-12,7.874016,12.42132,7.874016,9.79389E-12,9.84252,12.42132,12.79528,12.42132,-12.79528,14.38982,-12.79528,12.42132,0.984252,14.38982,12.79528,14.38982,-0.984252,14.38982,-0.984252,46.19777,0.984252,46.19777,0.984252,48.70012,-0.984252,48.70012,-16.14173,12.42132,-15.74803,9.790337E-12,-15.74803,12.42132,-16.24016,5.226406,-17.71654,9.791458E-12,-16.24016,7.19491,-17.22441,5.226406,-17.71654,12.42132,-17.22441,7.19491,8.366141,15.74803,9.350393,-15.74803,9.350393,15.74803,8.366141,-15.74803,-15.74803,5.226406,15.74803,7.19491,-15.74803,7.19491,15.74803,5.226406,-15.74803,12.42132,-16.14173,6.075353E-14,-15.74803,3.215312E-14,-16.24016,7.19491,-17.22441,7.19491,-16.24016,5.226406,-17.71654,12.42132,-17.22441,5.226406,-17.71654,3.215312E-14,15.74803,12.42132,17.71654,3.103223E-14,17.71654,12.42132,15.74803,3.215312E-14,-8.366141,-15.74803,-9.350393,15.74803,-9.350393,-15.74803,-8.366141,15.74803,-15.74803,5.226406,15.74803,7.19491,-15.74803,7.19491,15.74803,5.226406,-9.350393,15.74803,-8.366141,-15.74803,-8.366141,15.74803,-9.350393,-15.74803,17.71654,9.791458E-12,15.74803,12.42132,15.74803,9.791458E-12,17.71654,12.42132,7.874016,7.19491,-7.874016,5.226406,7.874016,5.226406,-7.874016,7.19491,7.874016,5.226406,-7.874016,7.19491,-7.874016,5.226406,7.874016,7.19491,-7.874016,-17.22441,7.874016,-16.24016,-7.874016,-16.24016,7.874016,-17.22441,-7.874016,-16.24016,7.874016,-17.22441,7.874016,-16.24016,-7.874016,-17.22441,-7.874016,16.24016,7.874016,17.22441,-7.874016,17.22441,7.874016,16.24016,7.874016,5.226406,-7.874016,7.19491,-7.874016,5.226406,7.874016,7.19491,-7.874016,17.22441,7.874016,16.24016,7.874016,17.22441,-7.874016,16.24016,7.874016,7.19491,-7.874016,5.226406,7.874016,5.226406,-7.874016,7.19491,19.68504,-1.565394,-19.68504,-1.565394,19.68504,0.6187158,-19.68504,0.6187158,19.68504,0.6187158,-19.68504,-1.565394,19.68504,-1.565394,-19.68504,0.6187158,19.68504,-5.933186,-19.68504,-5.933186,19.68504,-3.708753,-19.68504,-3.708753,19.68504,-3.708753,-19.68504,-5.933186,19.68504,-5.933186,-19.68504,-3.708753,-19.68504,18.291,19.68504,18.291,-19.68504,16.30642,19.68504,16.30642,-19.68504,16.30642,19.68504,18.291,-19.68504,18.291,19.68504,16.30642,-19.68504,29.76645,-19.68504,31.58561,19.68504,29.76645,19.68504,31.58561,19.68504,29.76645,-19.68504,31.58561,-19.68504,29.76645,19.68504,31.58561,-19.68504,34.10851,-19.68504,35.79672,19.68504,34.10851,-17.71654,35.79672,-17.71654,35.8754,17.71654,35.79672,19.68504,35.79672,17.71654,35.8754,19.68504,34.10851,-19.68504,35.79672,-19.68504,34.10851,-17.71654,35.79672,-17.71654,35.8754,17.71654,35.79672,17.71654,35.8754,19.68504,35.79672,-17.71654,14.38982,-19.68504,46.19777,-19.68504,14.38982,-17.71654,33.07087,-17.71654,35.03937,-17.71654,46.19777,-19.68504,48.70012,-17.71654,48.70012,-17.71654,38.28707,-17.71654,40.00529,17.71654,38.28707,17.71654,40.00529,17.71654,38.28707,-17.71654,40.00529,-17.71654,38.28707,17.71654,40.00529,17.71654,40.00529,17.71654,38.28707,-17.71654,40.00529,-17.71654,38.28707,-17.71654,40.00529,17.71654,38.28707,17.71654,40.00529,-17.71654,38.28707,-17.71654,14.38982,-19.68504,46.19777,-19.68504,14.38982,-17.71654,46.19777,-19.68504,48.70012,-17.71654,48.70012,-17.71654,33.07087,-17.71654,35.03937,-17.71654,-15.74803,17.71653,-17.71654,17.71653,-15.74803,0.984251,-17.71654,-0.9842529,-17.71654,-17.71654,-17.71654,-19.68504,22.75337,19.68504,22.75337,-19.68504,20.82414,19.68504,20.82414,-19.68504,20.82414,19.68504,22.75337,-19.68504,22.75337,19.68504,20.82414,0.984252,46.19777,-0.984252,35.03937,0.984252,35.03937,-0.984252,46.19777,0.9358104,46.25976,0.984252,48.70012,-0.9358104,46.25976,-0.984252,48.70012,5.684342E-13,47.70079,17.71654,14.38982,17.71654,35.03937,17.71654,33.07087,17.71654,46.19777,19.68504,14.38982,19.68504,46.19777,17.71654,48.70012,19.68504,48.70012,19.68504,14.38982,17.71654,33.07087,17.71654,14.38982,17.71654,35.03937,17.71654,46.19777,19.68504,46.19777,17.71654,48.70012,19.68504,48.70012,17.71654,35.8754,17.71654,35.79672,-17.71654,35.8754,-17.71654,35.79672,-19.68504,34.10851,-19.68504,35.79672,19.68504,34.10851,19.68504,35.79672,-17.71654,35.8754,17.71654,35.79672,17.71654,35.8754,-17.71654,35.79672,-19.68504,34.10851,-19.68504,35.79672,19.68504,34.10851,19.68504,35.79672,-19.68504,13.83287,19.68504,13.83287,-19.68504,11.7942,19.68504,11.7942,-19.68504,11.7942,19.68504,13.83287,-19.68504,13.83287,19.68504,11.7942,0.984251,17.71654,17.71654,15.74803,17.71654,17.71654,-17.71654,15.74803,-0.9842529,17.71654,-17.71654,17.71654,19.68504,20.82414,-19.68504,20.82414,19.68504,22.75337,-19.68504,22.75337,19.68504,22.75337,-19.68504,20.82414,19.68504,20.82414,-19.68504,22.75337,-19.68504,9.395056,19.68504,9.395056,-19.68504,7.304546,19.68504,7.304546,-19.68504,7.304546,19.68504,9.395056,-19.68504,9.395056,19.68504,7.304546,-19.68504,-3.708753,19.68504,-3.708753,-19.68504,-5.933186,19.68504,-5.933186,-19.68504,-5.933186,19.68504,-3.708753,-19.68504,-3.708753,19.68504,-5.933186,17.71654,15.74803,-17.71654,17.71654,-17.71654,15.74803,-0.9842509,17.71654,0.984253,17.71654,17.71654,17.71654,0.984252,35.03937,-0.984252,46.19777,-0.984252,35.03937,0.984252,46.19777,0.9358104,46.25976,0.984252,48.70012,-0.9358104,46.25976,-0.984252,48.70012,-5.684342E-13,47.70079,17.71654,35.03937,0.984252,33.07087,17.71654,33.07087,0.984252,35.03937,19.68504,11.7942,-19.68504,11.7942,19.68504,13.83287,-19.68504,13.83287,19.68504,13.83287,-19.68504,11.7942,19.68504,11.7942,-19.68504,13.83287,19.68504,31.58561,19.68504,29.76645,-19.68504,31.58561,-19.68504,29.76645,-19.68504,31.58561,19.68504,29.76645,19.68504,31.58561,-19.68504,29.76645,17.71654,33.07087,-17.71654,35.03937,-17.71654,33.07087,17.71654,35.03937,19.68504,-10.25098,-19.68504,-10.25098,19.68504,-7.991331,-19.68504,-7.991331,19.68504,-7.991331,-19.68504,-10.25098,19.68504,-10.25098,-19.68504,-7.991331,-19.68504,4.988095,19.68504,4.988095,-19.68504,2.848848,19.68504,2.848848,-19.68504,2.848848,19.68504,4.988095,-19.68504,4.988095,19.68504,2.848848,-19.68504,0.6187158,19.68504,0.6187158,-19.68504,-1.565394,19.68504,-1.565394,-19.68504,-1.565394,19.68504,0.6187158,-19.68504,0.6187158,19.68504,-1.565394,19.68504,25.3225,-19.68504,25.3225,19.68504,27.19619,-19.68504,27.19619,19.68504,27.19619,-19.68504,25.3225,19.68504,25.3225,-19.68504,27.19619,19.68504,7.304546,-19.68504,7.304546,19.68504,9.395056,-19.68504,9.395056,19.68504,9.395056,-19.68504,7.304546,19.68504,7.304546,-19.68504,9.395056,-19.68504,27.19619,19.68504,27.19619,-19.68504,25.3225,19.68504,25.3225,-19.68504,25.3225,19.68504,27.19619,-19.68504,27.19619,19.68504,25.3225,19.68504,16.30642,-19.68504,16.30642,19.68504,18.291,-19.68504,18.291,19.68504,18.291,-19.68504,16.30642,19.68504,16.30642,-19.68504,18.291,17.71654,35.03937,-17.71654,33.07087,17.71654,33.07087,-17.71654,35.03937,-0.984252,35.03937,-17.71654,33.07087,-0.984252,33.07087,-17.71654,35.03937,0.984252,17.71654,-0.984252,19.68504,-0.984252,17.71654,0.984252,19.68504,0.984252,-19.68504,-0.984252,-17.71654,-0.984252,-19.68504,0.984252,-17.71654,0.984252,33.07087,-0.984252,14.38982,0.984252,14.38982,-0.984252,33.07087,-0.984252,33.07087,-17.71654,35.03937,-17.71654,33.07087,-0.984252,35.03937,0.984252,33.07087,-0.984252,14.38982,0.984252,14.38982,-0.984252,33.07087,17.71654,33.07087,0.984252,35.03937,0.984252,33.07087,17.71654,35.03937,19.68504,2.848848,-19.68504,2.848848,19.68504,4.988095,-19.68504,4.988095,19.68504,4.988095,-19.68504,2.848848,19.68504,2.848848,-19.68504,4.988095,-0.9842509,-17.71654,-17.71653,-15.74803,-17.71653,-17.71654,17.71654,-15.74803,0.984253,-17.71654,17.71654,-17.71654,12.79528,-19.68504,0.984252,-17.71654,0.984252,-19.68504,0.984252,17.71654,0.984252,19.68504,12.79528,19.68504,-0.984252,17.71654,-0.984252,-17.71654,-0.984252,19.68504,-0.984252,-19.68504,-12.79528,19.68504,-12.79528,-19.68504,-19.68504,-7.991331,19.68504,-7.991332,-19.68504,-10.25098,-4.620789,-10.25098,19.68504,-10.25098,-8.353072,-10.25098,-12.08536,-10.25098,-19.68504,-10.25098,19.68504,-7.991332,-19.68504,-7.991331,-4.620789,-10.25098,19.68504,-10.25098,-8.353072,-10.25098,-12.08536,-10.25098,-15.74803,33.07087,-17.71654,35.03937,-17.71654,33.07087,-15.74803,35.03937,17.71654,33.07087,15.74803,35.03937,15.74803,33.07087,17.71654,35.03937,15.74803,35.03937,17.71654,33.07087,17.71654,35.03937,15.74803,33.07087,-17.71654,35.03937,-15.74803,33.07087,-15.74803,35.03937,-17.71654,33.07087,-10.93613,31.95402,-10.93613,33.49669,-8.748906,30.41134,-6.56168,33.49669,-6.56168,31.95402,19.68504,35.03937,-2.187227,33.49669,-15.31059,33.49669,2.187227,33.49669,-2.187227,31.95402,6.52472E-08,30.41134,2.187227,31.95402,6.56168,33.49669,-19.68504,35.03937,-17.49781,30.41134,-15.31059,31.95402,-19.68504,31.95402,10.93613,33.49669,8.748906,30.41134,6.56168,31.95402,10.93613,31.95402,15.31059,33.49669,17.49781,30.41134,15.31059,31.95402,19.68504,33.49669,19.68504,31.95402,-8.748906,30.41134,-10.93613,33.49669,-10.93613,31.95402,-6.56168,33.49669,-6.56168,31.95402,19.68504,35.03937,-2.187227,33.49669,-15.31059,33.49669,2.187227,33.49669,-2.187227,31.95402,6.52472E-08,30.41134,2.187227,31.95402,6.56168,33.49669,-19.68504,35.03937,-17.49781,30.41134,-19.68504,31.95402,-15.31059,31.95402,10.93613,33.49669,8.748906,30.41134,6.56168,31.95402,10.93613,31.95402,15.31059,33.49669,17.49781,30.41134,15.31059,31.95402,19.68504,33.49669,19.68504,31.95402,-10.93613,31.95402,-10.93613,33.49669,-8.748906,30.41134,-8.353072,35.03937,-6.56168,31.95402,-6.56168,33.49669,-12.08536,35.03937,-4.620789,35.03937,-15.31059,33.49669,-2.187227,33.49669,-19.68504,35.03937,19.68504,35.03937,-17.49781,30.41134,-15.31059,31.95402,-19.68504,31.95402,2.187227,33.49669,-2.187227,31.95402,-6.309384E-08,30.41134,2.187227,31.95402,6.56168,33.49669,10.93613,33.49669,8.748906,30.41134,6.56168,31.95402,10.93613,31.95402,15.31059,33.49669,17.49781,30.41134,15.31059,31.95402,19.68504,33.49669,19.68504,31.95402,-8.748906,30.41134,-10.93613,33.49669,-10.93613,31.95402,-8.353072,35.03937,-6.56168,31.95402,-6.56168,33.49669,-12.08536,35.03937,-4.620789,35.03937,-15.31059,33.49669,-2.187227,33.49669,-19.68504,35.03937,19.68504,35.03937,-17.49781,30.41134,-19.68504,31.95402,-15.31059,31.95402,2.187227,33.49669,-2.187227,31.95402,-6.309384E-08,30.41134,2.187227,31.95402,6.56168,33.49669,10.93613,33.49669,8.748906,30.41134,6.56168,31.95402,10.93613,31.95402,15.31059,33.49669,17.49781,30.41134,15.31059,31.95402,19.68504,33.49669,19.68504,31.95402,9.350393,5.226406,9.84252,12.42132,9.350393,7.19491,8.366141,7.19491,9.84252,9.791458E-12,7.874016,12.42132,8.366141,5.226406,7.874016,9.790337E-12,-8.366141,5.226406,-7.874016,12.42132,-8.366141,7.19491,-9.350393,7.19491,-7.874016,2.860041E-14,-9.84252,12.42132,-9.350393,5.226406,-9.84252,2.747952E-14,-7.874016,9.79501E-12,-8.366141,5.226406,-9.84252,9.79501E-12,-7.874016,12.42132,-9.350393,5.226406,-8.366141,7.19491,-9.84252,12.42132,-9.350393,7.19491,9.84252,3.215312E-14,9.350393,5.226406,7.874016,3.215312E-14,9.84252,12.42132,8.366141,5.226406,9.350393,7.19491,7.874016,12.42132,8.366141,7.19491 + } + UVIndex: *2292 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,22,23,24,24,25,22,24,23,26,27,22,25,27,25,28,25,29,28,30,27,28,26,23,31,29,31,28,30,32,23,28,32,30,23,32,33,31,23,33,33,32,34,33,35,31,32,36,34,35,37,31,31,37,28,35,38,37,37,39,28,40,37,38,38,34,40,39,41,28,40,34,41,41,34,36,28,41,42,36,42,41,43,45,44,46,44,45,47,44,46,48,46,45,48,49,46,50,46,49,51,50,49,52,50,51,53,55,54,56,54,55,57,54,56,58,56,55,59,57,56,55,60,58,60,57,59,61,58,60,59,61,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,83,84,85,85,86,83,85,84,87,84,88,87,86,89,83,89,87,88,83,89,90,88,90,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,106,105,108,110,109,111,109,110,112,114,113,115,113,114,116,115,114,117,113,115,117,115,118,119,118,115,120,118,119,121,118,120,122,124,123,125,123,124,126,123,125,127,125,124,128,126,125,124,129,127,129,126,128,130,127,129,128,130,129,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,140,141,142,142,143,140,142,141,144,141,145,144,143,146,140,146,144,145,140,146,147,145,147,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,202,203,201,203,204,201,205,201,204,201,205,206,207,206,205,208,210,209,211,209,210,212,211,210,213,211,212,209,211,214,215,214,211,216,218,217,219,217,218,220,219,218,221,220,218,222,224,223,225,223,224,226,225,224,224,227,226,228,225,226,225,228,229,230,226,227,227,229,230,230,228,226,230,229,228,231,233,232,232,233,234,233,235,234,236,234,235,234,236,237,238,237,236,239,241,240,242,240,241,243,242,241,244,243,241,243,244,245,246,245,244,247,249,248,250,248,249,251,250,249,252,250,251,253,255,254,256,254,255,257,256,255,258,257,255,259,261,260,262,260,261,263,260,262,262,264,263,265,260,263,260,265,266,267,263,264,264,266,267,267,265,263,267,266,265,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,311,310,313,311,312,314,316,315,317,315,316,318,317,316,319,318,316,317,320,315,321,315,320,320,322,321,321,322,323,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,342,343,346,343,344,343,347,345,344,348,346,345,347,348,346,348,349,347,349,348,350,352,351,353,350,351,354,351,352,351,355,353,352,356,354,353,355,356,354,356,357,355,357,356,358,360,359,361,359,360,359,362,358,363,359,361,364,358,362,365,363,361,365,364,362,361,364,365,366,368,367,369,367,368,367,370,366,371,367,369,372,366,370,373,371,369,373,372,370,369,372,373,374,376,375,375,377,374,378,380,379,379,381,378,382,384,383,383,385,382,385,386,382,387,389,388,388,390,387,391,393,392,392,394,391,395,397,396,395,396,398,395,398,399,400,398,396,396,401,400,400,401,402,403,400,402,401,404,402,395,399,405,405,403,402,406,404,395,406,402,404,406,395,407,395,405,407,406,407,408,409,407,405,410,406,408,411,409,405,411,405,402,412,409,411,413,411,402,411,414,412,408,412,414,415,413,402,408,414,415,408,415,410,415,402,416,416,410,415,417,419,418,418,420,417,418,421,420,420,422,417,423,422,420,420,424,423,424,425,423,424,426,425,427,429,428,428,430,427,428,431,430,430,432,427,431,433,430,434,427,432,431,434,433,432,435,434,435,433,434,436,438,437,437,439,436,440,442,441,441,443,440,444,446,445,445,447,444,448,450,449,449,451,448,452,454,453,453,455,452,456,458,457,456,457,459,456,459,460,461,459,457,462,456,460,463,461,457,460,463,462,463,457,464,464,462,463,465,467,466,466,468,465,469,471,470,470,472,469,473,475,474,474,476,473,477,479,478,478,480,477,480,481,477,482,484,483,483,485,482,486,488,487,487,489,486,489,490,486,487,491,489,489,491,492,492,493,489,492,494,493,492,495,494,496,498,497,497,499,496,497,500,499,499,501,496,500,502,499,503,496,501,500,503,502,501,504,503,504,502,503,505,507,506,506,508,505,509,511,510,510,512,509,513,515,514,513,514,516,513,516,517,518,516,514,519,513,517,520,518,514,517,520,519,520,514,521,521,519,520,522,524,523,523,525,522,526,528,527,527,529,526,530,532,531,531,533,530,534,536,535,535,537,534,538,540,539,539,541,538,542,544,543,543,545,542,546,548,547,547,549,546,550,552,551,551,553,550,554,556,555,555,557,554,558,560,559,559,561,558,562,564,563,563,565,562,566,568,567,567,569,566,570,572,571,571,573,570,574,576,575,577,575,576,578,580,579,579,581,578,582,584,583,585,583,584,586,588,587,587,589,586,590,592,591,593,591,592,594,596,595,595,597,594,598,600,599,601,599,600,602,604,603,603,605,602,606,608,607,609,607,608,610,609,608,611,610,608,612,611,608,611,613,610,614,616,615,615,617,614,617,618,614,618,619,614,620,619,618,619,621,614,622,624,623,625,622,623,626,625,623,623,627,626,627,623,628,628,629,627,630,632,631,633,631,632,634,636,635,635,637,634,638,640,639,641,639,640,642,644,643,643,645,642,646,648,647,647,649,646,649,647,650,650,651,649,649,652,646,649,653,652,654,656,655,655,657,654,657,658,654,658,659,654,660,662,661,663,661,662,664,666,665,665,667,664,668,670,669,669,671,668,671,672,668,673,668,672,671,674,672,674,671,675,672,676,673,674,676,672,675,676,674,675,673,676,677,679,678,677,678,680,681,677,680,680,682,681,682,680,683,683,684,682,685,687,686,686,688,685,688,689,685,689,690,685,690,689,691,691,692,690,693,695,694,695,696,694,696,697,694,698,697,696,697,699,694,700,694,699,701,703,702,704,701,702,705,704,702,705,706,704,707,705,702,702,708,707,709,711,710,712,710,711,713,715,714,714,716,713,717,719,718,718,720,717,720,721,717,720,722,721,723,725,724,726,724,725,727,729,728,728,730,727,731,733,732,734,732,733,735,737,736,736,738,735,739,741,740,742,740,741,743,745,744,744,746,743,747,749,748,748,750,747,750,751,747,751,752,747,753,755,754,754,756,753,754,757,756,758,756,757,754,759,757,759,754,760,757,761,758,759,761,757,760,761,759,760,758,761,762,764,763,763,765,762,766,768,767,769,767,768,770,772,771,771,773,770,774,776,775,777,775,776,778,780,779,779,781,778,782,784,783,783,785,782,786,788,787,789,787,788,790,792,791,791,793,790,794,796,795,797,795,796,798,800,799,799,801,798,802,804,803,805,803,804,806,808,807,807,809,806,810,812,811,813,811,812,814,816,815,815,817,814,818,820,819,821,819,820,822,824,823,823,825,822,826,828,827,829,827,828,830,832,831,831,833,830,834,836,835,837,835,836,838,840,839,839,841,838,842,844,843,843,845,842,846,848,847,847,849,846,850,852,851,851,853,850,854,856,855,855,857,854,858,860,859,859,861,858,862,864,863,863,865,862,866,868,867,867,869,866,870,872,871,871,873,870,874,876,875,877,875,876,878,880,879,879,881,878,882,884,883,883,885,882,885,886,882,885,887,886,888,890,889,889,891,888,891,892,888,892,893,888,894,891,889,889,895,894,896,894,895,896,895,897,898,896,897,897,899,898,900,902,901,903,901,902,903,904,901,905,903,902,906,905,902,907,909,908,908,910,907,911,910,908,910,912,907,912,913,907,914,916,915,915,917,914,918,920,919,919,921,918,922,924,923,923,925,922,926,928,927,927,929,926,930,932,931,932,933,931,934,933,932,933,935,931,936,935,933,931,935,937,938,935,936,939,938,936,940,938,939,941,938,940,942,935,938,935,943,937,937,943,944,945,937,944,946,944,943,947,935,942,948,947,942,949,948,942,950,947,948,951,935,947,952,935,951,953,952,951,954,935,952,955,954,952,956,958,957,959,956,957,959,960,956,961,959,957,961,962,959,961,957,963,961,964,962,964,965,962,964,966,965,964,967,966,961,968,964,969,961,963,969,963,970,970,971,969,963,972,970,961,973,968,973,974,968,974,975,968,973,976,974,961,977,973,961,978,977,978,979,977,961,980,978,980,981,978,982,984,983,984,985,983,986,985,984,987,985,986,985,988,983,989,985,987,983,988,990,991,989,987,988,992,990,993,989,991,990,992,994,995,990,994,996,994,992,997,993,991,998,997,991,999,997,998,1000,997,999,1001,993,997,1002,993,1001,1003,1002,1001,1004,1003,1001,1005,1002,1003,1006,993,1002,1007,993,1006,1008,1007,1006,1009,993,1007,1010,1009,1007,1011,1013,1012,1014,1011,1012,1014,1015,1011,1014,1016,1015,1017,1014,1012,1014,1018,1016,1017,1012,1019,1018,1020,1016,1021,1017,1019,1018,1022,1020,1021,1019,1023,1023,1024,1021,1019,1025,1023,1022,1026,1020,1026,1027,1020,1026,1028,1027,1026,1029,1028,1022,1030,1026,1022,1031,1030,1031,1032,1030,1032,1033,1030,1031,1034,1032,1022,1035,1031,1022,1036,1035,1036,1037,1035,1022,1038,1036,1038,1039,1036,1040,1042,1041,1042,1043,1041,1041,1044,1040,1045,1041,1043,1046,1040,1044,1045,1043,1046,1046,1044,1047,1047,1045,1046,1048,1050,1049,1050,1051,1049,1049,1052,1048,1053,1049,1051,1054,1048,1052,1053,1051,1054,1054,1052,1055,1055,1053,1054,1056,1058,1057,1057,1059,1056,1060,1057,1058,1057,1061,1059,1058,1062,1060,1061,1063,1059,1062,1063,1060,1062,1059,1063,1064,1066,1065,1065,1067,1064,1068,1065,1066,1065,1069,1067,1066,1070,1068,1069,1071,1067,1070,1071,1068,1070,1067,1071 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *764 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7188, "Material::roofRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8666667,0.2588235,0.3492543 + P: "DiffuseColor", "Color", "", "A",0.8666667,0.2588235,0.3492543 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stallRed, Model::RootNode + C: "OO",5595240799910505239,0 + + ;Geometry::, Model::Mesh stallRed + C: "OO",5407270833445608420,5595240799910505239 + + ;Material::wood, Model::Mesh stallRed + C: "OO",7178,5595240799910505239 + + ;Material::roofRed, Model::Mesh stallRed + C: "OO",7188,5595240799910505239 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallRed.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallRed.fbx.import new file mode 100644 index 0000000..e26e39e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallRed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://jom5sfn4ei6v" +path="res://.godot/imported/stallRed.fbx-a7221ac4cade0475b9da72460ef87438.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stallRed.fbx" +dest_files=["res://.godot/imported/stallRed.fbx-a7221ac4cade0475b9da72460ef87438.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallStool.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallStool.fbx new file mode 100644 index 0000000..d312ada --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallStool.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 554 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stallStool.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stallStool.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5287515958814891595, "Model::stallStool", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5248742859975960734, "Geometry::", "Mesh" { + Vertices: *672 { + a: 1.1,1.755014,0.6,1.1,6.979798E-15,0.6,1.1,1.755014,1.1,1.1,7.264503E-15,1.1,1.3,2.255014,-1.3,1.3,1.755014,-1.3,1.3,2.255014,1.3,1.3,1.755014,1.3,1.1,7.264503E-15,1.1,1.1,6.979798E-15,0.6,0.6,7.264503E-15,1.1,0.6,7.264503E-15,0.6,0.6,0,0.7,-0.6,2.48703E-12,1.1,-1.1,2.48703E-12,1.1,-0.6,1.755014,1.1,-1.1,1.755014,1.1,1.1,7.882187E-15,-1.1,1.1,1.755014,-1.1,0.6,8.166893E-15,-1.1,0.6,1.755014,-1.1,1.3,2.255014,-1.3,1.3,2.255014,1.3,-1.3,2.255014,-1.3,-1.3,2.255014,1.3,-0.6,1.755014,-0.7,-0.6,1.755014,-0.6,-0.6,1.755014,-1.1,-0.6,1.755014,0.6,-1.1,1.755014,0.6,-0.6,1.755014,0.7,-1.1,1.755014,-0.6,-1.3,1.755014,1.3,-1.1,1.755014,1.1,-1.1,1.755014,-1.1,-0.6,1.755014,1.1,-1.3,1.755014,-1.3,0.6,1.755014,-1.1,1.1,1.755014,-1.1,0.6,1.755014,-0.6,1.3,1.755014,-1.3,0.6,1.755014,0.6,1.1,1.755014,-0.6,0.6,1.755014,1.1,1.1,1.755014,0.6,1.1,1.755014,1.1,1.3,1.755014,1.3,1.3,1.755014,1.3,-1.3,1.755014,1.3,1.3,2.255014,1.3,-1.3,2.255014,1.3,0.6,7.264503E-15,0.6,0.6,1.755014,0.6,0.6,0,0.7,0.6,1.327507,0.725,0.6,1.755014,1.1,0.6,0.8275071,0.725,0.6,1.327507,0.975,0.6,7.264503E-15,1.1,0.6,0.8275071,0.975,-0.6,2.487933E-12,-0.6,-0.6,2.487648E-12,-1.1,-1.1,2.487933E-12,-0.6,-1.1,2.487933E-12,-1.1,-0.725,1.327507,-0.6,-0.725,0.8275071,-0.6,-0.725,1.327507,0.6,-0.725,0.8275071,0.6,-1.1,2.487933E-12,-1.1,-1.1,1.755014,-1.1,-1.1,2.487933E-12,-0.6,-1.1,1.755014,-0.6,1.1,7.264503E-15,1.1,0.6,7.264503E-15,1.1,1.1,1.755014,1.1,0.6,1.755014,1.1,-0.6,2.48703E-12,1.1,-0.6,2.486746E-12,0.6,-1.1,2.48703E-12,1.1,-1.1,2.48703E-12,0.6,-0.6,1.755014,-0.6,-0.6,1.755014,-0.7,-0.6,2.487933E-12,-0.6,-0.6,0.8275071,-0.725,-0.6,1.327507,-0.725,-0.6,0.8275071,-0.975,-0.6,2.487648E-12,-1.1,-0.6,1.327507,-0.975,-0.6,1.755014,-1.1,-0.725,1.327507,-0.6,-0.725,1.327507,0.6,-0.975,1.327507,-0.6,-0.975,1.327507,0.6,-1.3,1.755014,-1.3,-1.3,2.255014,-1.3,-1.3,1.755014,1.3,-1.3,2.255014,1.3,0.975,1.327507,-0.6,0.975,0.8275071,-0.6,0.975,1.327507,0.6,0.975,0.8275071,0.6,1.1,8.166893E-15,-0.6,1.1,7.882187E-15,-1.1,0.6,8.166893E-15,-0.6,0.6,8.166893E-15,-1.1,0.6,1.54314E-14,-0.7,-0.6,2.487648E-12,-1.1,-0.6,1.755014,-1.1,-1.1,2.487933E-12,-1.1,-1.1,1.755014,-1.1,1.3,1.755014,-1.3,1.3,2.255014,-1.3,-1.3,1.755014,-1.3,-1.3,2.255014,-1.3,-0.6,1.755014,0.6,-0.6,2.486746E-12,0.6,-0.6,1.755014,0.7,-0.6,0.8275071,0.725,-0.6,2.48703E-12,1.1,-0.6,1.327507,0.725,-0.6,0.8275071,0.975,-0.6,1.755014,1.1,-0.6,1.327507,0.975,0.975,0.8275071,0.6,0.975,0.8275071,-0.6,0.725,0.8275071,0.6,0.725,0.8275071,-0.6,0.725,1.327507,-0.6,0.725,1.327507,0.6,0.725,0.8275071,-0.6,0.725,0.8275071,0.6,0.6,8.166893E-15,-0.6,0.6,1.54314E-14,-0.7,0.6,1.755014,-0.6,0.6,1.327507,-0.725,0.6,0.8275071,-0.725,0.6,1.327507,-0.975,0.6,1.755014,-1.1,0.6,0.8275071,-0.975,0.6,8.166893E-15,-1.1,1.1,1.755014,-1.1,1.1,7.882187E-15,-1.1,1.1,1.755014,-0.6,1.1,8.166893E-15,-0.6,0.975,1.327507,-0.6,0.975,1.327507,0.6,0.725,1.327507,-0.6,0.725,1.327507,0.6,-0.975,1.327507,-0.6,-0.975,1.327507,0.6,-0.975,0.8275071,-0.6,-0.975,0.8275071,0.6,-0.725,0.8275071,0.6,-0.725,0.8275071,-0.6,-0.975,0.8275071,0.6,-0.975,0.8275071,-0.6,-1.1,2.48703E-12,0.6,-1.1,1.755014,0.6,-1.1,2.48703E-12,1.1,-1.1,1.755014,1.1,0.6,0.8275071,-0.725,-0.6,0.8275071,-0.725,0.6,1.327507,-0.725,-0.6,1.327507,-0.725,0.6,0.8275071,-0.975,0.6,1.327507,-0.975,-0.6,0.8275071,-0.975,-0.6,1.327507,-0.975,0.6,1.327507,-0.725,-0.6,1.327507,-0.725,0.6,1.327507,-0.975,-0.6,1.327507,-0.975,0.6,0.8275071,-0.725,0.6,0.8275071,-0.975,-0.6,0.8275071,-0.725,-0.6,0.8275071,-0.975,0.6,1.327507,0.975,-0.6,1.327507,0.975,0.6,1.327507,0.725,-0.6,1.327507,0.725,0.6,0.8275071,0.725,0.6,1.327507,0.725,-0.6,0.8275071,0.725,-0.6,1.327507,0.725,0.6,0.8275071,0.975,0.6,0.8275071,0.725,-0.6,0.8275071,0.975,-0.6,0.8275071,0.725,0.6,0.8275071,0.975,-0.6,0.8275071,0.975,0.6,1.327507,0.975,-0.6,1.327507,0.975,-0.975,1.327507,0.6,-1.1,1.755014,0.6,-0.975,0.8275071,0.6,-0.725,1.327507,0.6,-1.1,2.48703E-12,0.6,-0.6,1.755014,0.6,-0.725,0.8275071,0.6,-0.6,2.486746E-12,0.6,0.725,1.327507,0.6,0.6,1.755014,0.6,0.725,0.8275071,0.6,0.975,1.327507,0.6,0.6,7.264503E-15,0.6,1.1,1.755014,0.6,0.975,0.8275071,0.6,1.1,6.979798E-15,0.6,-1.1,2.487933E-12,-0.6,-0.725,0.8275071,-0.6,-0.6,2.487933E-12,-0.6,-0.6,1.755014,-0.6,-0.975,0.8275071,-0.6,-0.725,1.327507,-0.6,-1.1,1.755014,-0.6,-0.975,1.327507,-0.6,0.6,8.166893E-15,-0.6,0.975,0.8275071,-0.6,1.1,8.166893E-15,-0.6,1.1,1.755014,-0.6,0.725,0.8275071,-0.6,0.975,1.327507,-0.6,0.6,1.755014,-0.6,0.725,1.327507,-0.6 + } + PolygonVertexIndex: *492 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,26,27,-29,28,29,-27,28,27,-31,31,26,-30,31,29,-33,29,33,-33,34,31,-33,30,27,-36,33,35,-33,34,36,-28,32,36,-35,27,36,-38,35,27,-38,37,36,-39,37,39,-36,36,40,-39,39,41,-36,39,42,-42,41,43,-36,35,43,-33,44,41,-43,42,38,-45,43,45,-33,44,38,-46,45,38,-41,32,45,-47,40,46,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,52,-55,56,54,-54,57,55,-55,53,58,-57,58,55,-58,59,56,-59,57,59,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,81,82,-84,83,84,-82,83,82,-86,82,86,-86,84,87,-82,87,85,-87,81,87,-89,86,88,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,104,-104,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,115,-118,119,117,-117,120,118,-118,116,121,-120,121,118,-121,122,119,-122,120,122,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,132,133,-135,134,135,-133,134,133,-137,133,137,-137,135,138,-133,138,136,-138,132,138,-140,137,139,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,192,-194,196,193,-195,193,197,-196,194,198,-197,195,197,-199,196,198,-200,197,199,-199,200,202,-202,203,200,-202,204,201,-203,201,205,-204,202,206,-205,203,205,-207,204,206,-208,205,207,-207,208,210,-210,211,209,-211,209,212,-209,213,209,-212,214,208,-213,215,213,-212,215,214,-213,211,214,-216,216,218,-218,219,217,-219,217,220,-217,221,217,-220,222,216,-221,223,221,-220,223,222,-221,219,222,-224 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1476 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *448 { + a: -2.362205,6.909504,-2.362205,2.747952E-14,-4.330709,6.909504,-4.330709,2.860041E-14,5.11811,8.878009,5.11811,6.909504,-5.11811,8.878009,-5.11811,6.909504,4.330709,4.330709,4.330709,2.362205,2.362205,4.330709,2.362205,2.362205,2.362205,2.755906,-2.362205,9.791458E-12,-4.330709,9.791458E-12,-2.362205,6.909504,-4.330709,6.909504,-4.330709,3.103223E-14,-4.330709,6.909504,-2.362205,3.215312E-14,-2.362205,6.909504,-5.11811,-5.11811,-5.11811,5.11811,5.11811,-5.11811,5.11811,5.11811,-2.362205,-2.755906,-2.362205,-2.362205,-2.362205,-4.330709,-2.362205,2.362205,-4.330709,2.362205,-2.362205,2.755906,-4.330709,-2.362205,-5.11811,5.11811,-4.330709,4.330709,-4.330709,-4.330709,-2.362205,4.330709,-5.11811,-5.11811,2.362205,-4.330709,4.330709,-4.330709,2.362205,-2.362205,5.11811,-5.11811,2.362205,2.362205,4.330709,-2.362205,2.362205,4.330709,4.330709,2.362205,4.330709,4.330709,5.11811,5.11811,5.11811,6.909504,-5.11811,6.909504,5.11811,8.878009,-5.11811,8.878009,2.362205,2.860041E-14,2.362205,6.909504,2.755906,0,2.854331,5.226406,4.330709,6.909504,2.854331,3.257902,3.838583,5.226406,4.330709,2.860041E-14,3.838583,3.257902,-2.362205,-2.362205,-2.362205,-4.330709,-4.330709,-2.362205,-4.330709,-4.330709,2.362205,5.226406,2.362205,3.257902,-2.362205,5.226406,-2.362205,3.257902,-4.330709,9.79501E-12,-4.330709,6.909504,-2.362205,9.79501E-12,-2.362205,6.909504,4.330709,2.860041E-14,2.362205,2.860041E-14,4.330709,6.909504,2.362205,6.909504,-2.362205,4.330709,-2.362205,2.362205,-4.330709,4.330709,-4.330709,2.362205,2.362205,6.909504,2.755906,6.909504,2.362205,9.79501E-12,2.854331,3.257902,2.854331,5.226406,3.838583,3.257902,4.330709,9.79389E-12,3.838583,5.226406,4.330709,6.909504,2.854331,-2.362205,2.854331,2.362205,3.838583,-2.362205,3.838583,2.362205,-5.11811,6.909504,-5.11811,8.878009,5.11811,6.909504,5.11811,8.878009,2.362205,5.226406,2.362205,3.257902,-2.362205,5.226406,-2.362205,3.257902,4.330709,-2.362205,4.330709,-4.330709,2.362205,-2.362205,2.362205,-4.330709,2.362205,-2.755906,2.362205,9.79389E-12,2.362205,6.909504,4.330709,9.79501E-12,4.330709,6.909504,-5.11811,6.909504,-5.11811,8.878009,5.11811,6.909504,5.11811,8.878009,-2.362205,6.909504,-2.362205,9.790337E-12,-2.755906,6.909504,-2.854331,3.257902,-4.330709,9.791458E-12,-2.854331,5.226406,-3.838583,3.257902,-4.330709,6.909504,-3.838583,5.226406,3.838583,2.362205,3.838583,-2.362205,2.854331,2.362205,2.854331,-2.362205,-2.362205,5.226406,2.362205,5.226406,-2.362205,3.257902,2.362205,3.257902,-2.362205,3.215312E-14,-2.755906,6.075353E-14,-2.362205,6.909504,-2.854331,5.226406,-2.854331,3.257902,-3.838583,5.226406,-4.330709,6.909504,-3.838583,3.257902,-4.330709,3.215312E-14,4.330709,6.909504,4.330709,3.103223E-14,2.362205,6.909504,2.362205,3.215312E-14,-3.838583,-2.362205,-3.838583,2.362205,-2.854331,-2.362205,-2.854331,2.362205,-2.362205,5.226406,2.362205,5.226406,-2.362205,3.257902,2.362205,3.257902,-2.854331,2.362205,-2.854331,-2.362205,-3.838583,2.362205,-3.838583,-2.362205,2.362205,9.791458E-12,2.362205,6.909504,4.330709,9.791458E-12,4.330709,6.909504,2.362205,3.257902,-2.362205,3.257902,2.362205,5.226406,-2.362205,5.226406,-2.362205,3.257902,-2.362205,5.226406,2.362205,3.257902,2.362205,5.226406,-2.362205,-2.854331,2.362205,-2.854331,-2.362205,-3.838583,2.362205,-3.838583,2.362205,-2.854331,2.362205,-3.838583,-2.362205,-2.854331,-2.362205,-3.838583,-2.362205,3.838583,2.362205,3.838583,-2.362205,2.854331,2.362205,2.854331,-2.362205,3.257902,-2.362205,5.226406,2.362205,3.257902,2.362205,5.226406,2.362205,3.838583,2.362205,2.854331,-2.362205,3.838583,-2.362205,2.854331,2.362205,3.257902,-2.362205,3.257902,2.362205,5.226406,-2.362205,5.226406,3.838583,5.226406,4.330709,6.909504,3.838583,3.257902,2.854331,5.226406,4.330709,9.791458E-12,2.362205,6.909504,2.854331,3.257902,2.362205,9.790337E-12,-2.854331,5.226406,-2.362205,6.909504,-2.854331,3.257902,-3.838583,5.226406,-2.362205,2.860041E-14,-4.330709,6.909504,-3.838583,3.257902,-4.330709,2.747952E-14,-4.330709,9.79501E-12,-2.854331,3.257902,-2.362205,9.79501E-12,-2.362205,6.909504,-3.838583,3.257902,-2.854331,5.226406,-4.330709,6.909504,-3.838583,5.226406,2.362205,3.215312E-14,3.838583,3.257902,4.330709,3.215312E-14,4.330709,6.909504,2.854331,3.257902,3.838583,5.226406,2.362205,6.909504,2.854331,5.226406 + } + UVIndex: *492 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,26,27,28,28,29,26,28,27,30,31,26,29,31,29,32,29,33,32,34,31,32,30,27,35,33,35,32,34,36,27,32,36,34,27,36,37,35,27,37,37,36,38,37,39,35,36,40,38,39,41,35,39,42,41,41,43,35,35,43,32,44,41,42,42,38,44,43,45,32,44,38,45,45,38,40,32,45,46,40,46,45,47,49,48,50,48,49,51,53,52,54,52,53,55,52,54,56,54,53,57,55,54,53,58,56,58,55,57,59,56,58,57,59,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,81,82,83,83,84,81,83,82,85,82,86,85,84,87,81,87,85,86,81,87,88,86,88,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,104,103,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,115,117,119,117,116,120,118,117,116,121,119,121,118,120,122,119,121,120,122,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,132,133,134,134,135,132,134,133,136,133,137,136,135,138,132,138,136,137,132,138,139,137,139,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,192,193,196,193,194,193,197,195,194,198,196,195,197,198,196,198,199,197,199,198,200,202,201,203,200,201,204,201,202,201,205,203,202,206,204,203,205,206,204,206,207,205,207,206,208,210,209,211,209,210,209,212,208,213,209,211,214,208,212,215,213,211,215,214,212,211,214,215,216,218,217,219,217,218,217,220,216,221,217,219,222,216,220,223,221,219,223,222,220,219,222,223 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *164 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stallStool, Model::RootNode + C: "OO",5287515958814891595,0 + + ;Geometry::, Model::Mesh stallStool + C: "OO",5248742859975960734,5287515958814891595 + + ;Material::wood, Model::Mesh stallStool + C: "OO",7178,5287515958814891595 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallStool.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallStool.fbx.import new file mode 100644 index 0000000..9cb6dbc --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/stallStool.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d3hylewhffjgi" +path="res://.godot/imported/stallStool.fbx-65983dd37277183b034490b6b88aec12.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/stallStool.fbx" +dest_files=["res://.godot/imported/stallStool.fbx-65983dd37277183b034490b6b88aec12.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/tree.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/tree.fbx new file mode 100644 index 0000000..f6d504b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/tree.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 604 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4695698114206919248, "Model::tree", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5236796504107802396, "Geometry::", "Mesh" { + Vertices: *1032 { + a: 1.006437,18.92416,1.006437,4.331469E-14,18.92416,1.423316,2.887646E-14,24.12761,-1.443823E-14,-1.423316,18.92416,-1.443823E-14,2.887646E-14,24.12761,-1.443823E-14,-1.006437,18.92416,1.006437,-1.006437,18.92416,-1.006437,4.331469E-14,18.92416,-1.423316,2.887646E-14,24.12761,-1.443823E-14,4.331469E-14,18.92416,1.423316,-1.006437,18.92416,1.006437,2.887646E-14,24.12761,-1.443823E-14,2.887646E-14,24.12761,-1.443823E-14,1.006437,18.92416,-1.006437,1.423316,18.92416,-1.443823E-14,2.887646E-14,24.12761,-1.443823E-14,1.423316,18.92416,-1.443823E-14,1.006437,18.92416,1.006437,4.331469E-14,18.92416,-1.423316,1.006437,18.92416,-1.006437,2.887646E-14,24.12761,-1.443823E-14,-1.423316,18.92416,-1.443823E-14,-1.006437,18.92416,-1.006437,2.887646E-14,24.12761,-1.443823E-14,1.996502,13.3816,-1.996502,2.82348,13.3816,1.443823E-14,1.417516,15.46551,-1.417516,2.004671,15.46551,-1.443823E-14,-3.63165,7.7144,-1.443823E-14,-2.567965,7.7144,2.567965,-5.115,4.8544,2.887646E-14,-3.616851,4.8544,3.616851,-2.887646E-14,9.5954,-4.092,2.893481,9.5954,-2.893481,2.887646E-14,11.8834,-2.90532,2.054371,11.8834,-2.054371,5.115,4.8544,2.887646E-14,3.616851,4.8544,-3.616851,3.616851,4.8544,3.616851,-2.887646E-14,4.8544,5.115,0.7410831,4.8544,0.7410831,-0.7410831,4.8544,0.7410831,0.7410831,4.8544,-0.7410831,-2.887646E-14,4.8544,-5.115,-3.616851,4.8544,3.616851,-0.7410831,4.8544,-0.7410831,-3.616851,4.8544,-3.616851,-5.115,4.8544,2.887646E-14,2.887646E-14,11.8834,2.90532,-2.054371,11.8834,2.054371,4.331469E-14,13.3816,2.325408,-1.644312,13.3816,1.644312,1.417516,17.5408,-1.417516,2.004671,17.5408,1.443823E-14,1.006437,18.92416,-1.006437,1.423316,18.92416,-1.443823E-14,2.893481,9.5954,-2.893481,4.092,9.5954,4.331469E-14,2.054371,11.8834,-2.054371,2.90532,11.8834,1.443823E-14,2.893481,9.5954,2.893481,-2.887646E-14,9.5954,4.092,2.054371,11.8834,2.054371,2.887646E-14,11.8834,2.90532,3.63165,7.7144,-1.443823E-14,5.115,4.8544,2.887646E-14,2.567965,7.7144,2.567965,3.616851,4.8544,3.616851,-1.417516,17.5408,-1.417516,-1.006437,18.92416,-1.006437,-2.004671,17.5408,1.443823E-14,-1.423316,18.92416,-1.443823E-14,2.887646E-14,17.5408,-2.004671,1.417516,17.5408,-1.417516,4.331469E-14,18.92416,-1.423316,1.006437,18.92416,-1.006437,-2.893481,9.5954,-2.893481,-2.887646E-14,9.5954,-4.092,-2.054371,11.8834,-2.054371,2.887646E-14,11.8834,-2.90532,3.616851,4.8544,-3.616851,5.115,4.8544,2.887646E-14,2.567965,7.7144,-2.567965,3.63165,7.7144,-1.443823E-14,-3.63165,7.7144,-1.443823E-14,-2.903567,9.5954,-1.443823E-14,-2.567965,7.7144,2.567965,-2.053132,9.5954,2.053132,-1.417516,17.5408,-1.417516,2.887646E-14,17.5408,-2.004671,-1.006437,18.92416,-1.006437,4.331469E-14,18.92416,-1.423316,4.331469E-14,7.7144,3.63165,-2.567965,7.7144,2.567965,7.219114E-14,9.5954,2.903567,-2.053132,9.5954,2.053132,-3.616851,4.8544,-3.616851,-2.887646E-14,4.8544,-5.115,-2.567965,7.7144,-2.567965,4.331469E-14,7.7144,-3.63165,-2.567965,7.7144,-2.567965,-2.053132,9.5954,-2.053132,-3.63165,7.7144,-1.443823E-14,-2.903567,9.5954,-1.443823E-14,1.996502,13.3816,1.996502,1.443823E-14,13.3816,2.82348,1.417516,15.46551,1.417516,4.331469E-14,15.46551,2.004671,1.417516,15.46551,1.417516,4.331469E-14,15.46551,2.004671,0.9872058,17.5408,0.9872058,8.662937E-14,17.5408,1.39612,4.331469E-14,15.46551,-2.004671,1.417516,15.46551,-1.417516,1.443823E-14,17.5408,-1.39612,0.9872058,17.5408,-0.9872058,3.616851,4.8544,3.616851,-2.887646E-14,4.8544,5.115,2.567965,7.7144,2.567965,4.331469E-14,7.7144,3.63165,1.443823E-14,13.3816,2.82348,-1.996502,13.3816,1.996502,4.331469E-14,15.46551,2.004671,-1.417516,15.46551,1.417516,-2.887646E-14,4.8544,5.115,-3.616851,4.8544,3.616851,4.331469E-14,7.7144,3.63165,-2.567965,7.7144,2.567965,-2.325408,13.3816,-1.443823E-14,-1.644312,13.3816,1.644312,-2.90532,11.8834,1.443823E-14,-2.054371,11.8834,2.054371,4.331469E-14,7.7144,-3.63165,2.567965,7.7144,-2.567965,5.775292E-14,9.5954,-2.903567,2.053132,9.5954,-2.053132,2.90532,11.8834,1.443823E-14,4.092,9.5954,4.331469E-14,2.054371,11.8834,2.054371,2.893481,9.5954,2.893481,-2.004671,15.46551,-1.443823E-14,-1.417516,15.46551,1.417516,-2.82348,13.3816,1.443823E-14,-1.996502,13.3816,1.996502,-2.887646E-14,4.8544,-5.115,3.616851,4.8544,-3.616851,4.331469E-14,7.7144,-3.63165,2.567965,7.7144,-2.567965,-2.90532,11.8834,1.443823E-14,-2.054371,11.8834,2.054371,-4.092,9.5954,4.331469E-14,-2.893481,9.5954,2.893481,-1.996502,13.3816,-1.996502,-1.417516,15.46551,-1.417516,-2.82348,13.3816,1.443823E-14,-2.004671,15.46551,-1.443823E-14,2.054371,11.8834,2.054371,2.887646E-14,11.8834,2.90532,1.644312,13.3816,1.644312,4.331469E-14,13.3816,2.325408,4.331469E-14,15.46551,2.004671,-1.417516,15.46551,1.417516,8.662937E-14,17.5408,1.39612,-0.9872058,17.5408,0.9872058,-2.567965,7.7144,-2.567965,4.331469E-14,7.7144,-3.63165,-2.053132,9.5954,-2.053132,5.775292E-14,9.5954,-2.903567,1.417516,15.46551,-1.417516,2.004671,15.46551,-1.443823E-14,0.9872058,17.5408,-0.9872058,1.39612,17.5408,-1.443823E-14,-2.893481,9.5954,-2.893481,-2.054371,11.8834,-2.054371,-4.092,9.5954,4.331469E-14,-2.90532,11.8834,1.443823E-14,2.903567,9.5954,-1.443823E-14,3.63165,7.7144,-1.443823E-14,2.053132,9.5954,2.053132,2.567965,7.7144,2.567965,-2.887646E-14,9.5954,4.092,-2.893481,9.5954,2.893481,2.887646E-14,11.8834,2.90532,-2.054371,11.8834,2.054371,1.443823E-14,13.3816,-2.82348,1.996502,13.3816,-1.996502,4.331469E-14,15.46551,-2.004671,1.417516,15.46551,-1.417516,-2.054371,11.8834,-2.054371,2.887646E-14,11.8834,-2.90532,-1.644312,13.3816,-1.644312,4.331469E-14,13.3816,-2.325408,-2.054371,11.8834,-2.054371,-1.644312,13.3816,-1.644312,-2.90532,11.8834,1.443823E-14,-2.325408,13.3816,-1.443823E-14,2.004671,17.5408,1.443823E-14,1.417516,17.5408,-1.417516,1.417516,17.5408,1.417516,1.39612,17.5408,-1.443823E-14,0.9872058,17.5408,0.9872058,0.9872058,17.5408,-0.9872058,2.887646E-14,17.5408,-2.004671,1.443823E-14,17.5408,-1.39612,2.887646E-14,17.5408,2.004671,8.662937E-14,17.5408,1.39612,-0.9872058,17.5408,0.9872058,-1.417516,17.5408,-1.417516,-1.417516,17.5408,1.417516,-0.9872058,17.5408,-0.9872058,-1.39612,17.5408,-1.443823E-14,-2.004671,17.5408,1.443823E-14,2.054371,11.8834,-2.054371,2.90532,11.8834,1.443823E-14,1.644312,13.3816,-1.644312,2.325408,13.3816,1.443823E-14,2.887646E-14,17.5408,2.004671,-1.417516,17.5408,1.417516,4.331469E-14,18.92416,1.423316,-1.006437,18.92416,1.006437,-3.616851,4.8544,-3.616851,-2.567965,7.7144,-2.567965,-5.115,4.8544,2.887646E-14,-3.63165,7.7144,-1.443823E-14,-1.996502,13.3816,-1.996502,1.443823E-14,13.3816,-2.82348,-1.417516,15.46551,-1.417516,4.331469E-14,15.46551,-2.004671,-1.423316,18.92416,-1.443823E-14,-1.006437,18.92416,1.006437,-2.004671,17.5408,1.443823E-14,-1.417516,17.5408,1.417516,2.567965,7.7144,-2.567965,3.63165,7.7144,-1.443823E-14,2.053132,9.5954,-2.053132,2.903567,9.5954,-1.443823E-14,2.567965,7.7144,2.567965,4.331469E-14,7.7144,3.63165,2.053132,9.5954,2.053132,7.219114E-14,9.5954,2.903567,2.887646E-14,11.8834,-2.90532,2.054371,11.8834,-2.054371,4.331469E-14,13.3816,-2.325408,1.644312,13.3816,-1.644312,1.423316,18.92416,-1.443823E-14,2.004671,17.5408,1.443823E-14,1.006437,18.92416,1.006437,1.417516,17.5408,1.417516,1.39612,17.5408,-1.443823E-14,2.004671,15.46551,-1.443823E-14,0.9872058,17.5408,0.9872058,1.417516,15.46551,1.417516,2.004671,15.46551,-1.443823E-14,2.82348,13.3816,1.443823E-14,1.417516,15.46551,1.417516,1.996502,13.3816,1.996502,-1.417516,15.46551,-1.417516,4.331469E-14,15.46551,-2.004671,-0.9872058,17.5408,-0.9872058,1.443823E-14,17.5408,-1.39612,1.417516,17.5408,1.417516,2.887646E-14,17.5408,2.004671,1.006437,18.92416,1.006437,4.331469E-14,18.92416,1.423316,-2.004671,15.46551,-1.443823E-14,-1.39612,17.5408,-1.443823E-14,-1.417516,15.46551,1.417516,-0.9872058,17.5408,0.9872058,-1.417516,15.46551,-1.417516,-0.9872058,17.5408,-0.9872058,-2.004671,15.46551,-1.443823E-14,-1.39612,17.5408,-1.443823E-14,2.325408,13.3816,1.443823E-14,2.90532,11.8834,1.443823E-14,1.644312,13.3816,1.644312,2.054371,11.8834,2.054371,-2.82348,13.3816,1.443823E-14,-1.996502,13.3816,1.996502,-2.325408,13.3816,-1.443823E-14,-1.996502,13.3816,-1.996502,-1.644312,13.3816,1.644312,-1.644312,13.3816,-1.644312,1.443823E-14,13.3816,2.82348,4.331469E-14,13.3816,2.325408,1.644312,13.3816,1.644312,1.996502,13.3816,1.996502,1.443823E-14,13.3816,-2.82348,4.331469E-14,13.3816,-2.325408,1.644312,13.3816,-1.644312,1.996502,13.3816,-1.996502,2.325408,13.3816,1.443823E-14,2.82348,13.3816,1.443823E-14,-4.092,9.5954,4.331469E-14,-2.893481,9.5954,2.893481,-2.903567,9.5954,-1.443823E-14,-2.893481,9.5954,-2.893481,-2.053132,9.5954,2.053132,-2.053132,9.5954,-2.053132,-2.887646E-14,9.5954,4.092,7.219114E-14,9.5954,2.903567,2.053132,9.5954,2.053132,2.893481,9.5954,2.893481,-2.887646E-14,9.5954,-4.092,5.775292E-14,9.5954,-2.903567,2.053132,9.5954,-2.053132,2.893481,9.5954,-2.893481,2.903567,9.5954,-1.443823E-14,4.092,9.5954,4.331469E-14,1.4432,-1.722364E-16,-1.4432,1.4432,-1.722364E-16,1.4432,0.93808,1.3648,-0.93808,0.93808,1.3648,0.93808,1.4432,-1.722364E-16,1.4432,1.4432,-1.722364E-16,-1.4432,-1.4432,-1.722364E-16,1.4432,-1.4432,-1.722364E-16,-1.4432,-1.4432,-1.722364E-16,-1.4432,1.4432,-1.722364E-16,-1.4432,-0.93808,1.3648,-0.93808,0.93808,1.3648,-0.93808,0.93808,1.3648,0.93808,-0.93808,1.3648,0.93808,0.7410831,4.8544,0.7410831,-0.7410831,4.8544,0.7410831,-0.93808,1.3648,-0.93808,0.93808,1.3648,-0.93808,-0.7410831,4.8544,-0.7410831,0.7410831,4.8544,-0.7410831,0.93808,1.3648,-0.93808,0.93808,1.3648,0.93808,0.7410831,4.8544,-0.7410831,0.7410831,4.8544,0.7410831,1.4432,-1.722364E-16,1.4432,-1.4432,-1.722364E-16,1.4432,0.93808,1.3648,0.93808,-0.93808,1.3648,0.93808,-1.4432,-1.722364E-16,-1.4432,-0.93808,1.3648,-0.93808,-1.4432,-1.722364E-16,1.4432,-0.93808,1.3648,0.93808,-0.93808,1.3648,-0.93808,-0.7410831,4.8544,-0.7410831,-0.93808,1.3648,0.93808,-0.7410831,4.8544,0.7410831 + } + PolygonVertexIndex: *594 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,37,-40,41,40,-40,40,42,-38,43,37,-43,44,41,-40,45,43,-43,45,41,-45,46,43,-46,44,46,-46,47,46,-45,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,199,-199,199,201,-198,202,197,-202,203,202,-202,204,200,-199,205,200,-205,206,205,-205,207,202,-204,208,206,-205,209,207,-204,210,206,-209,210,207,-210,208,207,-211,211,207,-209,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,276,279,-279,278,280,-278,278,279,-282,277,280,-283,280,283,-283,283,284,-283,282,284,-286,279,286,-282,281,286,-288,287,286,-289,286,289,-289,284,290,-286,288,289,-291,291,285,-291,291,290,-290,292,294,-294,292,295,-295,294,296,-294,294,295,-298,293,296,-299,296,299,-299,299,300,-299,298,300,-302,295,302,-298,297,302,-304,303,302,-305,302,305,-305,300,306,-302,304,305,-307,307,301,-307,307,306,-306,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1782 { + a: 0.6671573,0.3313643,0.6671573,0.3710195,0.2450095,0.8957203,0,0.3313643,0.9435029,-0.9435029,0.3313643,0,-0.6671573,0.3313643,0.6671573,-0.8957203,0.2450095,0.3710195,-0.6671573,0.3313643,-0.6671573,-0.3710195,0.2450095,-0.8957203,0,0.3313643,-0.9435029,0,0.3313643,0.9435029,-0.3710195,0.2450095,0.8957203,-0.6671573,0.3313643,0.6671573,0.8957203,0.2450095,-0.3710195,0.9435029,0.3313643,0,0.6671573,0.3313643,-0.6671573,0.8957203,0.2450095,0.3710195,0.6671573,0.3313643,0.6671573,0.9435029,0.3313643,0,0,0.3313643,-0.9435029,0.3710195,0.2450095,-0.8957203,0.6671573,0.3313643,-0.6671573,-0.9435029,0.3313643,0,-0.8957203,0.2450095,-0.3710195,-0.6671573,0.3313643,-0.6671573,0.6581267,0.3657027,-0.6581267,0.6681716,0.3272512,-0.6681716,0.9307318,0.3657027,0,0.9449374,0.3272512,0,0.9307318,0.3657027,0,0.6681716,0.3272512,-0.6681716,-0.9091846,0.4163931,0,-0.8877054,0.4604119,0,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.8877054,0.4604119,0,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.6277025,0.4604119,-0.6277025,0,0.4163931,-0.9091846,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.4163931,0.9091846,0,0.3609743,0.9325757,-0.6428906,0.4163931,0.6428906,-0.6594306,0.3609743,0.6594306,-0.6428906,0.4163931,0.6428906,0,0.3609743,0.9325757,0.6518824,0.3874259,-0.6518824,0.6671573,0.3313643,-0.6671573,0.9219008,0.3874258,0,0.9435029,0.3313643,0,0.9219008,0.3874258,0,0.6671573,0.3313643,-0.6671573,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.8877054,0.4604119,0,0.9091846,0.4163931,0,0.8877054,0.4604119,0,0.6428906,0.4163931,-0.6428906,0.6277025,0.4604119,0.6277025,0.6428906,0.4163931,0.6428906,0,0.4604119,0.8877054,0,0.4163931,0.9091846,0,0.4604119,0.8877054,0.6428906,0.4163931,0.6428906,0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.8877054,0.4604119,0,0.6277025,0.4604119,0.6277025,0.8877054,0.4604119,0,0.6428906,0.4163931,0.6428906,-0.6518824,0.3874259,-0.6518824,-0.9219008,0.3874258,0,-0.6671573,0.3313643,-0.6671573,-0.9435029,0.3313643,0,-0.6671573,0.3313643,-0.6671573,-0.9219008,0.3874258,0,0,0.3874258,-0.9219008,0,0.3313643,-0.9435029,0.6518824,0.3874259,-0.6518824,0.6671573,0.3313643,-0.6671573,0.6518824,0.3874259,-0.6518824,0,0.3313643,-0.9435029,-0.6277025,0.4604119,-0.6277025,-0.6428906,0.4163931,-0.6428906,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0,0.4604119,-0.8877054,-0.6428906,0.4163931,-0.6428906,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.8877054,0.4604119,0,0.9091846,0.4163931,0,0.8877054,0.4604119,0,0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6428906,0.4163931,0.6428906,-0.9325757,0.3609743,0,-0.6594306,0.3609743,0.6594306,-0.9325757,0.3609743,0,-0.6428906,0.4163931,0.6428906,-0.6518824,0.3874259,-0.6518824,-0.6671573,0.3313643,-0.6671573,0,0.3874258,-0.9219008,0,0.3313643,-0.9435029,0,0.3874258,-0.9219008,-0.6671573,0.3313643,-0.6671573,0,0.4163931,0.9091846,0,0.3609743,0.9325757,-0.6428906,0.4163931,0.6428906,-0.6594306,0.3609743,0.6594306,-0.6428906,0.4163931,0.6428906,0,0.3609743,0.9325757,-0.6277025,0.4604119,-0.6277025,-0.6428906,0.4163931,-0.6428906,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0,0.4604119,-0.8877054,-0.6428906,0.4163931,-0.6428906,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6594306,0.3609743,-0.6594306,-0.9325757,0.3609743,0,-0.6594306,0.3609743,-0.6594306,-0.9091846,0.4163931,0,0.6581267,0.3657027,0.6581267,0.6681716,0.3272512,0.6681716,0,0.3657027,0.9307318,0,0.3272512,0.9449374,0,0.3657027,0.9307318,0.6681716,0.3272512,0.6681716,0.6681716,0.3272512,0.6681716,0.6785354,0.2813881,0.6785354,0,0.3272512,0.9449374,0,0.2813882,0.9595941,0,0.3272512,0.9449374,0.6785354,0.2813881,0.6785354,0,0.3272512,-0.9449374,0,0.2813882,-0.9595941,0.6681716,0.3272512,-0.6681716,0.6785354,0.2813881,-0.6785354,0.6681716,0.3272512,-0.6681716,0,0.2813882,-0.9595941,0.6277025,0.4604119,0.6277025,0.6428906,0.4163931,0.6428906,0,0.4604119,0.8877054,0,0.4163931,0.9091846,0,0.4604119,0.8877054,0.6428906,0.4163931,0.6428906,0,0.3657027,0.9307318,0,0.3272512,0.9449374,-0.6581267,0.3657027,0.6581267,-0.6681716,0.3272512,0.6681716,-0.6581267,0.3657027,0.6581267,0,0.3272512,0.9449374,0,0.4604119,0.8877054,0,0.4163931,0.9091846,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,0,0.4163931,0.9091846,-0.9325757,0.3609743,0,-0.9091846,0.4163931,0,-0.6594306,0.3609743,0.6594306,-0.6428906,0.4163931,0.6428906,-0.6594306,0.3609743,0.6594306,-0.9091846,0.4163931,0,0,0.4163931,-0.9091846,0,0.3609743,-0.9325757,0.6428906,0.4163931,-0.6428906,0.6594306,0.3609743,-0.6594306,0.6428906,0.4163931,-0.6428906,0,0.3609743,-0.9325757,0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.8877054,0.4604119,0,0.6277025,0.4604119,0.6277025,0.8877054,0.4604119,0,0.6428906,0.4163931,0.6428906,-0.9449374,0.3272512,0,-0.9307318,0.3657027,0,-0.6681716,0.3272512,0.6681716,-0.6581267,0.3657027,0.6581267,-0.6681716,0.3272512,0.6681716,-0.9307318,0.3657027,0,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.6277025,0.4604119,-0.6277025,0,0.4163931,-0.9091846,-0.9091846,0.4163931,0,-0.8877054,0.4604119,0,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.8877054,0.4604119,0,-0.6581267,0.3657027,-0.6581267,-0.9307318,0.3657027,0,-0.6681716,0.3272512,-0.6681716,-0.9449374,0.3272512,0,-0.6681716,0.3272512,-0.6681716,-0.9307318,0.3657027,0,0.6428906,0.4163931,0.6428906,0.6594306,0.3609743,0.6594306,0,0.4163931,0.9091846,0,0.3609743,0.9325757,0,0.4163931,0.9091846,0.6594306,0.3609743,0.6594306,0,0.3272512,0.9449374,0,0.2813882,0.9595941,-0.6681716,0.3272512,0.6681716,-0.6785354,0.2813881,0.6785354,-0.6681716,0.3272512,0.6681716,0,0.2813882,0.9595941,-0.6428906,0.4163931,-0.6428906,-0.6594306,0.3609743,-0.6594306,0,0.4163931,-0.9091846,0,0.3609743,-0.9325757,0,0.4163931,-0.9091846,-0.6594306,0.3609743,-0.6594306,0.6681716,0.3272512,-0.6681716,0.6785354,0.2813881,-0.6785354,0.9449374,0.3272512,0,0.9595941,0.2813882,0,0.9449374,0.3272512,0,0.6785354,0.2813881,-0.6785354,-0.6277025,0.4604119,-0.6277025,-0.8877054,0.4604119,0,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6428906,0.4163931,-0.6428906,-0.8877054,0.4604119,0,0.9325757,0.3609743,0,0.6594306,0.3609743,0.6594306,0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.9091846,0.4163931,0,0.6594306,0.3609743,0.6594306,0,0.4604119,0.8877054,0,0.4163931,0.9091846,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,0,0.4163931,0.9091846,0,0.3657027,-0.9307318,0,0.3272512,-0.9449374,0.6581267,0.3657027,-0.6581267,0.6681716,0.3272512,-0.6681716,0.6581267,0.3657027,-0.6581267,0,0.3272512,-0.9449374,-0.6428906,0.4163931,-0.6428906,-0.6594306,0.3609743,-0.6594306,0,0.4163931,-0.9091846,0,0.3609743,-0.9325757,0,0.4163931,-0.9091846,-0.6594306,0.3609743,-0.6594306,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6594306,0.3609743,-0.6594306,-0.9325757,0.3609743,0,-0.6594306,0.3609743,-0.6594306,-0.9091846,0.4163931,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6428906,0.4163931,-0.6428906,0.6594306,0.3609743,-0.6594306,0.9091846,0.4163931,0,0.9325757,0.3609743,0,0.9091846,0.4163931,0,0.6594306,0.3609743,-0.6594306,0,0.3874258,0.9219008,0,0.3313643,0.9435029,-0.6518824,0.3874259,0.6518824,-0.6671573,0.3313643,0.6671573,-0.6518824,0.3874259,0.6518824,0,0.3313643,0.9435029,-0.6277025,0.4604119,-0.6277025,-0.8877054,0.4604119,0,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6428906,0.4163931,-0.6428906,-0.8877054,0.4604119,0,-0.6581267,0.3657027,-0.6581267,-0.6681716,0.3272512,-0.6681716,0,0.3657027,-0.9307318,0,0.3272512,-0.9449374,0,0.3657027,-0.9307318,-0.6681716,0.3272512,-0.6681716,-0.9435029,0.3313643,0,-0.9219008,0.3874258,0,-0.6671573,0.3313643,0.6671573,-0.6518824,0.3874259,0.6518824,-0.6671573,0.3313643,0.6671573,-0.9219008,0.3874258,0,0.6428906,0.4163931,-0.6428906,0.6594306,0.3609743,-0.6594306,0.9091846,0.4163931,0,0.9325757,0.3609743,0,0.9091846,0.4163931,0,0.6594306,0.3609743,-0.6594306,0.6428906,0.4163931,0.6428906,0.6594306,0.3609743,0.6594306,0,0.4163931,0.9091846,0,0.3609743,0.9325757,0,0.4163931,0.9091846,0.6594306,0.3609743,0.6594306,0,0.4163931,-0.9091846,0,0.3609743,-0.9325757,0.6428906,0.4163931,-0.6428906,0.6594306,0.3609743,-0.6594306,0.6428906,0.4163931,-0.6428906,0,0.3609743,-0.9325757,0.9435029,0.3313643,0,0.6671573,0.3313643,0.6671573,0.9219008,0.3874258,0,0.6518824,0.3874259,0.6518824,0.9219008,0.3874258,0,0.6671573,0.3313643,0.6671573,0.9595941,0.2813882,0,0.6785354,0.2813881,0.6785354,0.9449374,0.3272512,0,0.6681716,0.3272512,0.6681716,0.9449374,0.3272512,0,0.6785354,0.2813881,0.6785354,0.9449374,0.3272512,0,0.6681716,0.3272512,0.6681716,0.9307318,0.3657027,0,0.6581267,0.3657027,0.6581267,0.9307318,0.3657027,0,0.6681716,0.3272512,0.6681716,-0.6681716,0.3272512,-0.6681716,-0.6785354,0.2813881,-0.6785354,0,0.3272512,-0.9449374,0,0.2813882,-0.9595941,0,0.3272512,-0.9449374,-0.6785354,0.2813881,-0.6785354,0.6518824,0.3874259,0.6518824,0.6671573,0.3313643,0.6671573,0,0.3874258,0.9219008,0,0.3313643,0.9435029,0,0.3874258,0.9219008,0.6671573,0.3313643,0.6671573,-0.9449374,0.3272512,0,-0.6681716,0.3272512,0.6681716,-0.9595941,0.2813882,0,-0.6785354,0.2813881,0.6785354,-0.9595941,0.2813882,0,-0.6681716,0.3272512,0.6681716,-0.6681716,0.3272512,-0.6681716,-0.9449374,0.3272512,0,-0.6785354,0.2813881,-0.6785354,-0.9595941,0.2813882,0,-0.6785354,0.2813881,-0.6785354,-0.9449374,0.3272512,0,0.9325757,0.3609743,0,0.6594306,0.3609743,0.6594306,0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.9091846,0.4163931,0,0.6594306,0.3609743,0.6594306,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9378296,0.3470959,0,0.9753324,0.2207408,0,0.9378296,0.3470959,0,0.9753324,0.2207408,0,0.9378296,0.3470959,0,0.9753324,0.2207408,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3470959,-0.9378296,0,0.2207408,-0.9753324,0,0.3470959,-0.9378296,0,0.2207408,-0.9753324,0,0.3470959,-0.9378296,0,0.2207408,-0.9753324,0,0.2207408,0.9753324,0,0.05636281,0.9984103,0,0.2207408,0.9753324,0,0.05636281,0.9984103,0,0.2207408,0.9753324,0,0.05636281,0.9984103,0,0.2207408,-0.9753324,0,0.05636281,-0.9984103,0,0.2207408,-0.9753324,0,0.05636281,-0.9984103,0,0.2207408,-0.9753324,0,0.05636281,-0.9984103,0.9753324,0.2207408,0,0.9984103,0.05636281,0,0.9753324,0.2207408,0,0.9984103,0.05636281,0,0.9753324,0.2207408,0,0.9984103,0.05636281,0,0,0.3470959,0.9378296,0,0.2207408,0.9753324,0,0.3470959,0.9378296,0,0.2207408,0.9753324,0,0.3470959,0.9378296,0,0.2207408,0.9753324,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9753324,0.2207408,0,-0.9753324,0.2207408,0,-0.9753324,0.2207408,0,-0.9378296,0.3470959,0,-0.9753324,0.2207408,0,-0.9753324,0.2207408,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9753324,0.2207408,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *688 { + a: 2.144408,70.96531,-2.144408,70.96531,1.26786E-13,92.09534,-2.144408,70.96531,-9.010402E-15,92.09534,2.144408,70.96531,2.144408,70.96531,-2.144408,70.96531,-1.276742E-13,92.09534,2.144408,70.96531,-2.144408,70.96531,8.327991E-14,92.09534,9.89858E-15,92.09534,2.144408,70.96531,-2.144408,70.96531,9.691072E-14,92.09534,2.144408,70.96531,-2.144408,70.96531,2.144408,70.96531,-2.144408,70.96531,-8.150355E-14,92.09534,2.144408,70.96531,-2.144408,70.96531,-9.691072E-14,92.09534,4.253933,46.01719,-4.253933,46.01719,3.020293,54.74541,-3.020293,54.74541,-5.471544,21.68142,5.471544,21.68142,-7.7064,9.195643,7.7064,9.195643,6.165121,27.63624,-6.165121,27.63624,4.377235,37.62486,-4.377235,37.62486,20.13779,1.136868E-13,14.23957,-14.23957,14.23957,14.23957,-1.136868E-13,20.13779,2.91765,2.91765,-2.91765,2.91765,2.91765,-2.91765,-1.136868E-13,-20.13779,-14.23957,14.23957,-2.91765,-2.91765,-14.23957,-14.23957,-20.13779,1.136868E-13,4.377235,40.49456,-4.377235,40.49456,3.503524,46.7588,-3.503524,46.7588,3.020293,61.73725,-3.020293,61.73725,2.144408,67.57967,-2.144408,67.57967,6.165121,27.63624,-6.165121,27.63624,4.377235,37.62486,-4.377235,37.62486,6.165121,27.63624,-6.165121,27.63624,4.377235,37.62486,-4.377235,37.62486,5.471544,21.68142,7.7064,9.195643,-5.471544,21.68142,-7.7064,9.195643,-3.020293,61.73725,-2.144408,67.57967,3.020293,61.73725,2.144408,67.57967,3.020293,61.73725,-3.020293,61.73725,2.144408,67.57967,-2.144408,67.57967,6.165121,27.63624,-6.165121,27.63624,4.377235,37.62486,-4.377235,37.62486,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,-5.471544,24.15008,-4.374594,32.01487,5.471544,24.15008,4.374594,32.01487,3.020293,61.73725,-3.020293,61.73725,2.144408,67.57967,-2.144408,67.57967,5.471544,24.15008,-5.471544,24.15008,4.374594,32.01487,-4.374594,32.01487,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,-5.471544,24.15008,-4.374594,32.01487,5.471544,24.15008,4.374594,32.01487,4.253933,46.01719,-4.253933,46.01719,3.020293,54.74541,-3.020293,54.74541,3.020293,56.86264,-3.020293,56.86264,2.103433,65.3276,-2.103433,65.3276,3.020293,56.86264,-3.020293,56.86264,2.103433,65.3276,-2.103433,65.3276,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,4.253933,46.01719,-4.253933,46.01719,3.020293,54.74541,-3.020293,54.74541,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,-3.503524,46.7588,3.503524,46.7588,-4.377235,40.49456,4.377235,40.49456,5.471544,24.15008,-5.471544,24.15008,4.374594,32.01487,-4.374594,32.01487,4.377235,37.62486,6.165121,27.63624,-4.377235,37.62486,-6.165121,27.63624,-3.020293,54.74541,3.020293,54.74541,-4.253933,46.01719,4.253933,46.01719,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,-4.377235,37.62486,4.377235,37.62486,-6.165121,27.63624,6.165121,27.63624,-4.253933,46.01719,-3.020293,54.74541,4.253933,46.01719,3.020293,54.74541,4.377235,40.49456,-4.377235,40.49456,3.503524,46.7588,-3.503524,46.7588,3.020293,56.86264,-3.020293,56.86264,2.103433,65.3276,-2.103433,65.3276,5.471544,24.15008,-5.471544,24.15008,4.374594,32.01487,-4.374594,32.01487,3.020293,56.86264,-3.020293,56.86264,2.103433,65.3276,-2.103433,65.3276,-6.165121,27.63624,-4.377235,37.62486,6.165121,27.63624,4.377235,37.62486,4.374594,32.01487,5.471544,24.15008,-4.374594,32.01487,-5.471544,24.15008,6.165121,27.63624,-6.165121,27.63624,4.377235,37.62486,-4.377235,37.62486,4.253933,46.01719,-4.253933,46.01719,3.020293,54.74541,-3.020293,54.74541,4.377235,40.49456,-4.377235,40.49456,3.503524,46.7588,-3.503524,46.7588,-4.377235,40.49456,-3.503524,46.7588,4.377235,40.49456,3.503524,46.7588,7.892405,5.684342E-14,5.580773,-5.580773,5.580773,5.580773,5.496535,-5.684342E-14,3.886637,3.886637,3.886637,-3.886637,1.136868E-13,-7.892405,5.684342E-14,-5.496535,1.136868E-13,7.892405,3.410605E-13,5.496535,-3.886637,3.886637,-5.580773,-5.580773,-5.580773,5.580773,-3.886637,-3.886637,-5.496535,-5.684342E-14,-7.892405,5.684342E-14,4.377235,40.49456,-4.377235,40.49456,3.503524,46.7588,-3.503524,46.7588,3.020293,61.73725,-3.020293,61.73725,2.144408,67.57967,-2.144408,67.57967,-7.7064,9.195643,-5.471544,21.68142,7.7064,9.195643,5.471544,21.68142,4.253933,46.01719,-4.253933,46.01719,3.020293,54.74541,-3.020293,54.74541,-2.144408,67.57967,2.144408,67.57967,-3.020293,61.73725,3.020293,61.73725,5.471544,24.15008,-5.471544,24.15008,4.374594,32.01487,-4.374594,32.01487,5.471544,24.15008,-5.471544,24.15008,4.374594,32.01487,-4.374594,32.01487,4.377235,40.49456,-4.377235,40.49456,3.503524,46.7588,-3.503524,46.7588,2.144408,67.57967,3.020293,61.73725,-2.144408,67.57967,-3.020293,61.73725,2.103433,65.3276,3.020293,56.86264,-2.103433,65.3276,-3.020293,56.86264,3.020293,54.74541,4.253933,46.01719,-3.020293,54.74541,-4.253933,46.01719,3.020293,56.86264,-3.020293,56.86264,2.103433,65.3276,-2.103433,65.3276,3.020293,61.73725,-3.020293,61.73725,2.144408,67.57967,-2.144408,67.57967,-3.020293,56.86264,-2.103433,65.3276,3.020293,56.86264,2.103433,65.3276,-3.020293,56.86264,-2.103433,65.3276,3.020293,56.86264,2.103433,65.3276,3.503524,46.7588,4.377235,40.49456,-3.503524,46.7588,-4.377235,40.49456,-11.11606,5.684342E-14,-7.860243,7.860243,-9.15515,-5.684342E-14,-7.860243,-7.860243,-6.473669,6.473669,-6.473669,-6.473669,5.684342E-14,11.11606,1.705303E-13,9.15515,6.473669,6.473669,7.860243,7.860243,5.684342E-14,-11.11606,1.705303E-13,-9.15515,6.473669,-6.473669,7.860243,-7.860243,9.15515,5.684342E-14,11.11606,5.684342E-14,-16.11024,1.705303E-13,-11.39166,11.39166,-11.43137,-5.684342E-14,-11.39166,-11.39166,-8.083196,8.083196,-8.083196,-8.083196,-1.136868E-13,16.11024,2.842171E-13,11.43137,8.083196,8.083196,11.39166,11.39166,-1.136868E-13,-16.11024,2.273737E-13,-11.43137,8.083196,-8.083196,11.39166,-11.39166,11.43137,-5.684342E-14,16.11024,1.705303E-13,5.68189,-1.972161,-5.68189,-1.972161,3.693228,3.757268,-3.693228,3.757268,5.68189,5.68189,5.68189,-5.68189,-5.68189,5.68189,-5.68189,-5.68189,5.68189,-1.972161,-5.68189,-1.972161,3.693228,3.757268,-3.693228,3.757268,3.693228,5.156526,-3.693228,5.156526,2.91765,18.91698,-2.91765,18.91698,3.693228,5.156526,-3.693228,5.156526,2.91765,18.91698,-2.91765,18.91698,3.693228,5.156526,-3.693228,5.156526,2.91765,18.91698,-2.91765,18.91698,5.68189,-1.972161,-5.68189,-1.972161,3.693228,3.757268,-3.693228,3.757268,-5.68189,-1.972161,-3.693228,3.757268,5.68189,-1.972161,3.693228,3.757268,-3.693228,5.156526,-2.91765,18.91698,3.693228,5.156526,2.91765,18.91698 + } + UVIndex: *594 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,37,39,41,40,39,40,42,37,43,37,42,44,41,39,45,43,42,45,41,44,46,43,45,44,46,45,47,46,44,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,199,198,199,201,197,202,197,201,203,202,201,204,200,198,205,200,204,206,205,204,207,202,203,208,206,204,209,207,203,210,206,208,210,207,209,208,207,210,211,207,208,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,276,279,278,278,280,277,278,279,281,277,280,282,280,283,282,283,284,282,282,284,285,279,286,281,281,286,287,287,286,288,286,289,288,284,290,285,288,289,290,291,285,290,291,290,289,292,294,293,292,295,294,294,296,293,294,295,297,293,296,298,296,299,298,299,300,298,298,300,301,295,302,297,297,302,303,303,302,304,302,305,304,300,306,301,304,305,306,307,301,306,307,306,305,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *198 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree, Model::RootNode + C: "OO",4695698114206919248,0 + + ;Geometry::, Model::Mesh tree + C: "OO",5236796504107802396,4695698114206919248 + + ;Material::foliage, Model::Mesh tree + C: "OO",7192,4695698114206919248 + + ;Material::wood, Model::Mesh tree + C: "OO",7178,4695698114206919248 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/tree.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/tree.fbx.import new file mode 100644 index 0000000..adb053b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/tree.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dllht0d8fxovp" +path="res://.godot/imported/tree.fbx-814d22d6ede4273fd7ef9d304da63d1c.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/tree.fbx" +dest_files=["res://.godot/imported/tree.fbx-814d22d6ede4273fd7ef9d304da63d1c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeCrooked.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeCrooked.fbx new file mode 100644 index 0000000..db52ad7 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeCrooked.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 656 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "treeCrooked.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "treeCrooked.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4972339291103822071, "Model::treeCrooked", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5141254646642953321, "Geometry::", "Mesh" { + Vertices: *1104 { + a: 4.331469E-14,18.9724,1.485861,-1.006437,18.95858,1.069211,2.887646E-14,24.1258,-0.1091935,-1.006437,18.89185,-0.9425555,4.331469E-14,18.87802,-1.359206,2.887646E-14,24.1258,-0.1091935,2.887646E-14,24.1258,-0.1091935,1.006437,18.89185,-0.9425555,1.423316,18.92521,0.06332775,4.331469E-14,18.87802,-1.359206,1.006437,18.89185,-0.9425555,2.887646E-14,24.1258,-0.1091935,-1.006437,18.89185,-0.9425555,2.887646E-14,24.1258,-0.1091935,-1.423316,18.92521,0.06332775,-1.423316,18.92521,0.06332775,2.887646E-14,24.1258,-0.1091935,-1.006437,18.95858,1.069211,1.006437,18.95858,1.069211,4.331469E-14,18.9724,1.485861,2.887646E-14,24.1258,-0.1091935,2.887646E-14,24.1258,-0.1091935,1.423316,18.92521,0.06332775,1.006437,18.95858,1.069211,-3.616851,4.8544,-3.616851,-2.567965,7.7144,-2.567965,-5.115,4.8544,0,-3.63165,7.7144,-5.775292E-14,-1.402066,15.34487,1.417516,-1.136065,17.57091,0.9623454,0.0102693,15.46595,2.004671,-0.1713804,17.5848,1.381066,-1.423316,18.92521,0.06332775,-1.006437,18.95858,1.069211,-2.004671,17.54261,0.1091935,-1.417516,17.58961,1.52593,2.887646E-14,17.47614,-1.894375,1.417516,17.49561,-1.307544,4.331469E-14,18.87802,-1.359206,1.006437,18.89185,-0.9425555,-0.2613584,10.00532,-4.30025,-0.01425591,12.15817,-2.904776,-3.137915,10.20364,-3.077641,-2.056611,12.29897,-2.036724,-3.137915,10.20364,-3.077641,-2.056611,12.29897,-2.036724,-4.329424,10.0602,-0.1848204,-2.902583,12.19713,0.01717898,-3.63165,7.7144,-5.775292E-14,-2.567965,7.7144,2.567965,-5.115,4.8544,0,-3.616851,4.8544,3.616851,1.417516,17.58961,1.52593,2.887646E-14,17.60907,2.112762,1.006437,18.95858,1.069211,4.331469E-14,18.9724,1.485861,3.806707,9.180259,-0.2679996,2.615199,9.036824,2.624821,2.874071,11.57237,-0.04187826,2.0281,11.47054,2.012024,-1.443823E-14,4.8544,-5.115,3.616851,4.8544,-3.616851,4.331469E-14,7.7144,-3.63165,2.567965,7.7144,-2.567965,-1.800935,13.21912,1.996502,-1.402066,15.34487,1.417516,0.1882705,13.38966,2.82348,0.0102693,15.46595,2.004671,2.615199,9.581425,-3.136458,3.806707,9.180259,-0.2679996,2.0281,11.8572,-2.078484,2.874071,11.57237,-0.04187826,0.1882705,13.38966,2.82348,0.0102693,15.46595,2.004671,2.177475,13.56019,1.996502,1.422605,15.58703,1.417516,3.616851,4.8544,3.616851,-1.443823E-14,4.8544,5.115,2.567965,7.7144,2.567965,4.331469E-14,7.7144,3.63165,2.007614,15.63718,-4.331469E-14,1.422605,15.58703,1.417516,1.268307,17.53899,-2.887646E-14,0.8303039,17.57206,0.9969349,-1.987075,15.29472,-4.331469E-14,-1.532795,17.53899,-2.887646E-14,-1.402066,15.34487,1.417516,-1.136065,17.57091,0.9623454,2.0281,11.8572,-2.078484,1.752797,13.52378,-1.459727,-0.01425591,12.15817,-2.904776,0.1246394,13.3842,-2.288858,0.0102693,15.46595,-2.004671,1.422605,15.58703,-1.417516,-0.1634476,17.49227,-1.4083,0.8501797,17.50545,-1.011048,1.423316,18.92521,0.06332775,2.004671,17.54261,0.1091935,1.006437,18.95858,1.069211,1.417516,17.58961,1.52593,0.0102693,15.46595,2.004671,-0.1713804,17.5848,1.381066,1.422605,15.58703,1.417516,0.8303039,17.57206,0.9969349,-1.443823E-14,4.8544,5.115,-3.616851,4.8544,3.616851,4.331469E-14,7.7144,3.63165,-2.567965,7.7144,2.567965,2.615199,9.036824,2.624821,-0.2613584,9.235141,3.84743,2.0281,11.47054,2.012024,-0.01425591,11.61134,2.880076,-1.800935,13.21912,-1.996502,-1.402066,15.34487,-1.417516,-2.624891,13.14848,-1.443823E-14,-1.987075,15.29472,-4.331469E-14,-1.402066,15.34487,-1.417516,-1.143747,17.50663,-0.97549,-1.987075,15.29472,-4.331469E-14,-1.532795,17.53899,-2.887646E-14,2.887646E-14,17.47614,-1.894375,4.331469E-14,18.87802,-1.359206,-1.417516,17.49561,-1.307544,-1.006437,18.89185,-0.9425555,-1.800935,13.21912,-1.996502,0.1882705,13.38966,-2.82348,-1.402066,15.34487,-1.417516,0.0102693,15.46595,-2.004671,-1.417516,17.58961,1.52593,-1.006437,18.95858,1.069211,2.887646E-14,17.60907,2.112762,4.331469E-14,18.9724,1.485861,2.0281,11.47054,2.012024,-0.01425591,11.61134,2.880076,1.706271,13.51979,1.666573,0.172764,13.38833,2.374779,-0.01425591,11.61134,2.880076,-2.056611,11.91231,2.053784,0.172764,13.38833,2.374779,-1.544396,13.24111,1.808914,2.567965,7.7144,2.567965,4.331469E-14,7.7144,3.63165,2.181598,9.126035,2.181598,5.775292E-14,9.284466,3.023921,2.004671,17.54261,0.1091935,1.417516,17.49561,-1.307544,1.417516,17.58961,1.52593,1.268307,17.53899,-2.887646E-14,0.8303039,17.57206,0.9969349,0.8501797,17.50545,-1.011048,2.887646E-14,17.60907,2.112762,2.887646E-14,17.47614,-1.894375,-0.1713804,17.5848,1.381066,-0.1634476,17.49227,-1.4083,-1.417516,17.58961,1.52593,-1.136065,17.57091,0.9623454,-1.417516,17.49561,-1.307544,-1.143747,17.50663,-0.97549,-1.532795,17.53899,-2.887646E-14,-2.004671,17.54261,0.1091935,2.007614,15.63718,-4.331469E-14,3.001431,13.63083,-1.443823E-14,1.422605,15.58703,1.417516,2.177475,13.56019,1.996502,2.615199,9.581425,-3.136458,2.0281,11.8572,-2.078484,-0.2613584,10.00532,-4.30025,-0.01425591,12.15817,-2.904776,-3.616851,4.8544,-3.616851,-1.443823E-14,4.8544,-5.115,-2.567965,7.7144,-2.567965,4.331469E-14,7.7144,-3.63165,1.417516,17.49561,-1.307544,2.004671,17.54261,0.1091935,1.006437,18.89185,-0.9425555,1.423316,18.92521,0.06332775,-4.329424,10.0602,-0.1848204,-2.902583,12.19713,0.01717898,-3.137915,9.659039,2.683638,-2.056611,11.91231,2.053784,-0.01425591,12.15817,-2.904776,0.1246394,13.3842,-2.288858,-2.056611,12.29897,-2.036724,-1.678087,13.22965,-1.674967,2.567965,7.7144,-2.567965,3.63165,7.7144,-5.775292E-14,2.068259,9.540132,-2.068259,3.041753,9.238398,-4.331469E-14,-2.902583,12.19713,0.01717898,-2.397987,13.16793,0.1089466,-2.056611,11.91231,2.053784,-1.544396,13.24111,1.808914,-1.402066,15.34487,-1.417516,0.0102693,15.46595,-2.004671,-1.143747,17.50663,-0.97549,-0.1634476,17.49227,-1.4083,-3.63165,7.7144,-5.775292E-14,-2.795217,9.875321,-1.443823E-14,-2.567965,7.7144,2.567965,-2.051805,9.600249,2.051805,3.63165,7.7144,-5.775292E-14,5.115,4.8544,0,2.567965,7.7144,2.567965,3.616851,4.8544,3.616851,5.115,4.8544,0,3.616851,4.8544,-3.616851,3.616851,4.8544,3.616851,-1.443823E-14,4.8544,5.115,0.7410831,4.8544,0.7410831,-0.7410831,4.8544,0.7410831,0.7410831,4.8544,-0.7410831,-1.443823E-14,4.8544,-5.115,-3.616851,4.8544,3.616851,-0.7410831,4.8544,-0.7410831,-3.616851,4.8544,-3.616851,-5.115,4.8544,0,2.177475,13.56019,-1.996502,3.001431,13.63083,-1.443823E-14,1.422605,15.58703,-1.417516,2.007614,15.63718,-4.331469E-14,-1.987075,15.29472,-4.331469E-14,-1.402066,15.34487,1.417516,-2.624891,13.14848,-1.443823E-14,-1.800935,13.21912,1.996502,2.0281,11.8572,-2.078484,2.874071,11.57237,-0.04187826,1.752797,13.52378,-1.459727,2.336887,13.57386,0.1473175,-1.417516,17.49561,-1.307544,-1.006437,18.89185,-0.9425555,-2.004671,17.54261,0.1091935,-1.423316,18.92521,0.06332775,0.1882705,13.38966,-2.82348,2.177475,13.56019,-1.996502,0.0102693,15.46595,-2.004671,1.422605,15.58703,-1.417516,3.616851,4.8544,-3.616851,5.115,4.8544,0,2.567965,7.7144,-2.567965,3.63165,7.7144,-5.775292E-14,-2.567965,7.7144,-2.567965,4.331469E-14,7.7144,-3.63165,-1.95124,9.967674,-1.95124,7.219114E-14,9.835976,-2.810446,4.331469E-14,7.7144,3.63165,-2.567965,7.7144,2.567965,5.775292E-14,9.284466,3.023921,-2.051805,9.600249,2.051805,2.874071,11.57237,-0.04187826,2.0281,11.47054,2.012024,2.336887,13.57386,0.1473175,1.706271,13.51979,1.666573,-4.329424,10.0602,-0.1848204,-3.137915,9.659039,2.683638,-3.137915,10.20364,-3.077641,-2.795217,9.875321,-1.443823E-14,-2.051805,9.600249,2.051805,-1.95124,9.967674,-1.95124,-0.2613584,9.235141,3.84743,5.775292E-14,9.284466,3.023921,2.181598,9.126035,2.181598,2.615199,9.036824,2.624821,-0.2613584,10.00532,-4.30025,7.219114E-14,9.835976,-2.810446,2.068259,9.540132,-2.068259,2.615199,9.581425,-3.136458,3.041753,9.238398,-4.331469E-14,3.806707,9.180259,-0.2679996,3.63165,7.7144,-5.775292E-14,2.567965,7.7144,2.567965,3.041753,9.238398,-4.331469E-14,2.181598,9.126035,2.181598,-2.567965,7.7144,-2.567965,-1.95124,9.967674,-1.95124,-3.63165,7.7144,-5.775292E-14,-2.795217,9.875321,-1.443823E-14,-0.2613584,9.235141,3.84743,-3.137915,9.659039,2.683638,-0.01425591,11.61134,2.880076,-2.056611,11.91231,2.053784,-2.056611,12.29897,-2.036724,-1.678087,13.22965,-1.674967,-2.902583,12.19713,0.01717898,-2.397987,13.16793,0.1089466,1.422605,15.58703,-1.417516,2.007614,15.63718,-4.331469E-14,0.8501797,17.50545,-1.011048,1.268307,17.53899,-2.887646E-14,4.331469E-14,7.7144,-3.63165,2.567965,7.7144,-2.567965,7.219114E-14,9.835976,-2.810446,2.068259,9.540132,-2.068259,-1.678087,13.22965,-1.674967,0.1246394,13.3842,-2.288858,-1.800935,13.21912,-1.996502,-2.397987,13.16793,0.1089466,0.1882705,13.38966,-2.82348,-2.624891,13.14848,-1.443823E-14,1.752797,13.52378,-1.459727,2.177475,13.56019,-1.996502,-1.800935,13.21912,1.996502,-1.544396,13.24111,1.808914,0.172764,13.38833,2.374779,0.1882705,13.38966,2.82348,1.706271,13.51979,1.666573,2.177475,13.56019,1.996502,2.336887,13.57386,0.1473175,3.001431,13.63083,-1.443823E-14,1.4432,-1.722364E-16,1.4432,1.4432,-1.722364E-16,-1.4432,-1.4432,-1.722364E-16,1.4432,-1.4432,-1.722364E-16,-1.4432,-1.4432,-1.722364E-16,-1.4432,1.4432,-1.722364E-16,-1.4432,-0.93808,1.3648,-0.93808,0.93808,1.3648,-0.93808,1.4432,-1.722364E-16,-1.4432,1.4432,-1.722364E-16,1.4432,0.93808,1.3648,-0.93808,0.93808,1.3648,0.93808,-0.93808,1.3648,-0.93808,0.93808,1.3648,-0.93808,-0.7410831,4.8544,-0.7410831,0.7410831,4.8544,-0.7410831,1.4432,-1.722364E-16,1.4432,-1.4432,-1.722364E-16,1.4432,0.93808,1.3648,0.93808,-0.93808,1.3648,0.93808,0.93808,1.3648,-0.93808,0.93808,1.3648,0.93808,0.7410831,4.8544,-0.7410831,0.7410831,4.8544,0.7410831,-1.4432,-1.722364E-16,-1.4432,-0.93808,1.3648,-0.93808,-1.4432,-1.722364E-16,1.4432,-0.93808,1.3648,0.93808,-0.93808,1.3648,-0.93808,-0.7410831,4.8544,-0.7410831,-0.93808,1.3648,0.93808,-0.7410831,4.8544,0.7410831,0.305736,2.909025,0.8509046,0.305736,2.030424,0.9005039,0.134136,2.805333,2.058669,0.134136,2.269386,2.088924,-0.574264,2.909025,0.8509046,-0.402664,2.805333,2.058669,-0.574264,2.030424,0.9005039,-0.402664,2.269386,2.088924,0.305736,2.030424,0.9005039,-0.574264,2.030424,0.9005039,0.134136,2.269386,2.088924,-0.402664,2.269386,2.088924,0.305736,2.909025,0.8509046,0.134136,2.805333,2.058669,-0.574264,2.909025,0.8509046,-0.402664,2.805333,2.058669,0.134136,2.269386,2.088924,-0.402664,2.269386,2.088924,0.134136,2.805333,2.058669,-0.402664,2.805333,2.058669,0.305736,2.909025,0.8509046,0.7410831,4.8544,0.7410831,0.305736,2.030424,0.9005039,-0.574264,2.909025,0.8509046,0.93808,1.3648,0.93808,-0.7410831,4.8544,0.7410831,-0.93808,1.3648,0.93808,-0.574264,2.030424,0.9005039 + } + PolygonVertexIndex: *642 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,147,-147,147,149,-146,150,148,-147,151,145,-150,152,148,-151,153,151,-150,154,152,-151,155,152,-155,156,151,-154,157,156,-154,158,155,-155,158,156,-158,159,158,-155,159,156,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,205,-208,209,208,-208,208,210,-206,211,205,-211,212,209,-208,213,211,-211,213,209,-213,214,211,-214,212,214,-214,215,214,-213,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,253,254,-256,255,256,-254,255,254,-258,253,256,-259,256,259,-259,259,260,-259,258,260,-262,254,262,-258,257,262,-264,263,262,-265,262,265,-265,260,266,-262,264,265,-267,267,261,-267,267,266,-266,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,294,-293,294,296,-294,297,294,-296,293,296,-299,296,299,-299,297,295,-301,295,301,-301,301,302,-301,300,302,-304,302,304,-304,303,304,-306,298,299,-307,304,306,-306,307,306,-300,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,360,-362,361,362,-365,361,365,-364,366,364,-363,363,365,-368,365,366,-368,362,367,-367 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1926 { + a: 0,0.3624641,0.9319977,-0.3710195,0.2745726,0.8871045,-0.6671573,0.3533018,0.6558041,-0.6671573,0.3090624,-0.6777769,-0.3710195,0.215177,-0.9033512,0,0.2999001,-0.9539706,0.8957203,0.2325735,-0.3789389,0.9435029,0.3311821,-0.01098645,0.6671573,0.3090624,-0.6777769,0,0.2999001,-0.9539706,0.3710195,0.215177,-0.9033512,0.6671573,0.3090624,-0.6777769,-0.6671573,0.3090624,-0.6777769,-0.9435029,0.3311821,-0.01098645,-0.8957203,0.2325735,-0.3789389,-0.9435029,0.3311821,-0.01098645,-0.6671573,0.3533018,0.6558041,-0.8957203,0.257176,0.3626922,0.6671573,0.3533018,0.6558041,0.3710195,0.2745726,0.8871045,0,0.3624641,0.9319977,0.8957203,0.257176,0.3626922,0.6671573,0.3533018,0.6558041,0.9435029,0.3311821,-0.01098645,-0.6277025,0.4604119,-0.6277025,-0.8877054,0.4604119,0,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6428906,0.4163931,-0.6428906,-0.8877054,0.4604119,0,-0.6936824,0.2689821,0.6681717,-0.02795279,0.3260553,0.9449374,-0.7059917,0.2218855,0.6725641,-0.04336679,0.2786493,0.9594133,-0.7059917,0.2218855,0.6725641,-0.02795279,0.3260553,0.9449374,-0.9435029,0.3311821,-0.01098645,-0.9219008,0.3872128,-0.01284518,-0.6671573,0.3533018,0.6558041,-0.6518824,0.4088261,0.6386788,-0.6671573,0.3533018,0.6558041,-0.9219008,0.3872128,-0.01284518,0,0.3566471,-0.9342393,0,0.2999001,-0.9539706,0.6518824,0.3655996,-0.6643691,0.6671573,0.3090624,-0.6777769,0.6518824,0.3655996,-0.6643691,0,0.2999001,-0.9539706,0.04972418,0.539228,-0.8406907,-0.5743069,0.5822501,-0.5754619,0.04497019,0.4976823,-0.8661928,-0.5941601,0.5417455,-0.5945465,0.04497019,0.4976823,-0.8661928,-0.5743069,0.5822501,-0.5754619,-0.5743069,0.5822501,-0.5754619,-0.832789,0.5511337,0.05209747,-0.5941601,0.5417455,-0.5945465,-0.8588966,0.5098761,0.04819748,-0.5941601,0.5417455,-0.5945465,-0.832789,0.5511337,0.05209747,-0.9091846,0.4163931,0,-0.8877054,0.4604119,0,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.8877054,0.4604119,0,0.6518824,0.4088261,0.6386788,0.6671573,0.3533018,0.6558041,0,0.4177787,0.9085488,0,0.3624641,0.9319977,0,0.4177787,0.9085488,0.6671573,0.3533018,0.6558041,0.9322374,0.3602414,0.03405284,0.948837,0.3143649,0.02971623,0.6737553,0.3291249,0.6616122,0.6841006,0.2824955,0.6724602,0.6737553,0.3291249,0.6616122,0.948837,0.3143649,0.02971623,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.6277025,0.4604119,-0.6277025,0,0.4163931,-0.9091846,-0.6869587,0.3081511,0.6581268,-0.0312372,0.3643662,0.9307318,-0.6936824,0.2689821,0.6681717,-0.02795279,0.3260553,0.9449374,-0.6936824,0.2689821,0.6681717,-0.0312372,0.3643662,0.9307318,0.6737553,0.4472689,-0.5882214,0.6841006,0.4034982,-0.6076147,0.9322374,0.3602414,0.03405284,0.948837,0.3143649,0.02971623,0.9322374,0.3602414,0.03405284,0.6841006,0.4034982,-0.6076147,-0.0312372,0.3643662,0.9307318,0.6244842,0.4205813,0.6581267,-0.02795279,0.3260553,0.9449374,0.6377769,0.3831284,0.6681716,-0.02795279,0.3260553,0.9449374,0.6244842,0.4205813,0.6581267,0.6277025,0.4604119,0.6277025,0.6428906,0.4163931,0.6428906,0,0.4604119,0.8877054,0,0.4163931,0.9091846,0,0.4604119,0.8877054,0.6428906,0.4163931,0.6428906,0.9135311,0.4067689,0,0.9320253,0.3623151,0.007515698,0.6377769,0.3831284,0.6681716,0.6385053,0.3371084,0.6918589,0.6377769,0.3831284,0.6681716,0.9320253,0.3623151,0.007515698,-0.9694366,0.2453416,0,-0.6936824,0.2689821,0.6681717,-0.9800944,0.1983886,0.007553337,-0.7059917,0.2218855,0.6725641,-0.9800944,0.1983886,0.007553337,-0.6936824,0.2689821,0.6681717,0.6841006,0.4034982,-0.6076147,0.04497019,0.4976823,-0.8661928,0.7256306,0.3416241,-0.5972882,0.08198084,0.4399623,-0.8942663,0.7256306,0.3416241,-0.5972882,0.04497019,0.4976823,-0.8661928,-0.02795279,0.3260553,-0.9449374,-0.04333138,0.2786525,-0.9594139,0.6377769,0.3831284,-0.6681716,0.6461009,0.3378008,-0.6844299,0.6377769,0.3831284,-0.6681716,-0.04333138,0.2786525,-0.9594139,0.9435029,0.3311821,-0.01098645,0.6671573,0.3533018,0.6558041,0.9219008,0.3872128,-0.01284518,0.6518824,0.4088261,0.6386788,0.9219008,0.3872128,-0.01284518,0.6671573,0.3533018,0.6558041,-0.02795279,0.3260553,0.9449374,0.6377769,0.3831284,0.6681716,-0.04336679,0.2786493,0.9594133,0.6385053,0.3371084,0.6918589,-0.04336679,0.2786493,0.9594133,0.6377769,0.3831284,0.6681716,0,0.4604119,0.8877054,0,0.4163931,0.9091846,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,0,0.4163931,0.9091846,0.6737553,0.3291249,0.6616122,0.6841006,0.2824955,0.6724602,0.04972418,0.3721471,0.9268409,0.04497019,0.3265586,0.9441065,0.04972418,0.3721471,0.9268409,0.6841006,0.2824955,0.6724602,-0.6869587,0.3081511,-0.6581268,-0.9585674,0.2848659,0,-0.6936824,0.2689821,-0.6681717,-0.9694366,0.2453416,0,-0.6936824,0.2689821,-0.6681717,-0.9585674,0.2848659,0,-0.6936824,0.2689821,-0.6681717,-0.9694366,0.2453416,0,-0.7133883,0.2212101,-0.6649384,-0.9800944,0.1983886,0.007553337,-0.7133883,0.2212101,-0.6649384,-0.9694366,0.2453416,0,0,0.3566471,-0.9342393,-0.6518824,0.3655996,-0.6643691,0,0.2999001,-0.9539706,-0.6671573,0.3090624,-0.6777769,0,0.2999001,-0.9539706,-0.6518824,0.3655996,-0.6643691,-0.6869587,0.3081511,-0.6581268,-0.6936824,0.2689821,-0.6681717,-0.0312372,0.3643662,-0.9307318,-0.02795279,0.3260553,-0.9449374,-0.0312372,0.3643662,-0.9307318,-0.6936824,0.2689821,-0.6681717,-0.6518824,0.4088261,0.6386788,0,0.4177787,0.9085488,-0.6671573,0.3533018,0.6558041,0,0.3624641,0.9319977,-0.6671573,0.3533018,0.6558041,0,0.4177787,0.9085488,0.6841006,0.2824955,0.6724602,0.7053901,0.2241362,0.6724492,0.04497019,0.3265586,0.9441065,0.08163232,0.2646424,0.9608853,0.04497019,0.3265586,0.9441065,0.7053901,0.2241362,0.6724492,0.04497019,0.3265586,0.9441065,0.08163232,0.2646424,0.9608853,-0.5941601,0.4207428,0.6855285,-0.5839704,0.3592494,0.727955,-0.5941601,0.4207428,0.6855285,0.08163232,0.2646424,0.9608853,0.6428906,0.4163931,0.6428906,0.6578095,0.3609734,0.6610483,0,0.4163931,0.9091846,-0.02417072,0.3608688,0.9323033,0,0.4163931,0.9091846,0.6578095,0.3609734,0.6610483,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0.9135311,0.4067689,0,0.6377769,0.3831284,0.6681716,0.8960929,0.4438664,0,0.6244842,0.4205813,0.6581267,0.8960929,0.4438664,0,0.6377769,0.3831284,0.6681716,0.6737553,0.4472689,-0.5882214,0.04972418,0.539228,-0.8406907,0.6841006,0.4034982,-0.6076147,0.04497019,0.4976823,-0.8661928,0.6841006,0.4034982,-0.6076147,0.04972418,0.539228,-0.8406907,-0.6277025,0.4604119,-0.6277025,-0.6428906,0.4163931,-0.6428906,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0,0.4604119,-0.8877054,-0.6428906,0.4163931,-0.6428906,0.6518824,0.3655996,-0.6643691,0.6671573,0.3090624,-0.6777769,0.9219008,0.3872128,-0.01284518,0.9435029,0.3311821,-0.01098645,0.9219008,0.3872128,-0.01284518,0.6671573,0.3090624,-0.6777769,-0.832789,0.5511337,0.05209747,-0.5743069,0.4641061,0.6743717,-0.8588966,0.5098761,0.04819748,-0.5941601,0.4207428,0.6855285,-0.8588966,0.5098761,0.04819748,-0.5743069,0.4641061,0.6743717,0.04497019,0.4976823,-0.8661928,-0.5941601,0.5417455,-0.5945465,0.08198084,0.4399623,-0.8942663,-0.6054488,0.4900203,-0.6271458,0.08198084,0.4399623,-0.8942663,-0.5941601,0.5417455,-0.5945465,0.6428906,0.4163931,-0.6428906,0.6366273,0.360792,-0.681568,0.9091846,0.4163931,0,0.932371,0.3608951,-0.02095214,0.9091846,0.4163931,0,0.6366273,0.360792,-0.681568,-0.8588966,0.5098761,0.04819748,-0.5941601,0.4207428,0.6855285,-0.8879359,0.4554401,0.06437476,-0.5839704,0.3592494,0.727955,-0.8879359,0.4554401,0.06437476,-0.5941601,0.4207428,0.6855285,-0.6936824,0.2689821,-0.6681717,-0.7133883,0.2212101,-0.6649384,-0.02795279,0.3260553,-0.9449374,-0.04333138,0.2786525,-0.9594139,-0.02795279,0.3260553,-0.9449374,-0.7133883,0.2212101,-0.6649384,-0.9091846,0.4163931,0,-0.6428906,0.4163931,0.6428906,-0.9323742,0.3608963,-0.02078578,-0.68155,0.3607924,0.6366463,-0.9323742,0.3608963,-0.02078578,-0.6428906,0.4163931,0.6428906,0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.8877054,0.4604119,0,0.6277025,0.4604119,0.6277025,0.8877054,0.4604119,0,0.6428906,0.4163931,0.6428906,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6244842,0.4205813,-0.6581267,0.6377769,0.3831284,-0.6681716,0.8960929,0.4438664,0,0.9135311,0.4067689,0,0.8960929,0.4438664,0,0.6377769,0.3831284,-0.6681716,-0.9694366,0.2453416,0,-0.9585674,0.2848659,0,-0.6936824,0.2689821,0.6681717,-0.6869587,0.3081511,0.6581268,-0.6936824,0.2689821,0.6681717,-0.9585674,0.2848659,0,0.6841006,0.4034982,-0.6076147,0.7256306,0.3416241,-0.5972882,0.948837,0.3143649,0.02971623,0.9658942,0.254972,0.04514262,0.948837,0.3143649,0.02971623,0.7256306,0.3416241,-0.5972882,-0.6518824,0.3655996,-0.6643691,-0.9219008,0.3872128,-0.01284518,-0.6671573,0.3090624,-0.6777769,-0.9435029,0.3311821,-0.01098645,-0.6671573,0.3090624,-0.6777769,-0.9219008,0.3872128,-0.01284518,-0.0312372,0.3643662,-0.9307318,-0.02795279,0.3260553,-0.9449374,0.6244842,0.4205813,-0.6581267,0.6377769,0.3831284,-0.6681716,0.6244842,0.4205813,-0.6581267,-0.02795279,0.3260553,-0.9449374,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.8877054,0.4604119,0,0.9091846,0.4163931,0,0.8877054,0.4604119,0,0.6428906,0.4163931,-0.6428906,-0.6428906,0.4163931,-0.6428906,-0.6610326,0.3609734,-0.6578253,0,0.4163931,-0.9091846,-0.02400036,0.3608704,-0.9323072,0,0.4163931,-0.9091846,-0.6610326,0.3609734,-0.6578253,0,0.4163931,0.9091846,-0.02417072,0.3608688,0.9323033,-0.6428906,0.4163931,0.6428906,-0.68155,0.3607924,0.6366463,-0.6428906,0.4163931,0.6428906,-0.02417072,0.3608688,0.9323033,0.948837,0.3143649,0.02971623,0.9658942,0.254972,0.04514262,0.6841006,0.2824955,0.6724602,0.7053901,0.2241362,0.6724492,0.6841006,0.2824955,0.6724602,0.9658942,0.254972,0.04514262,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,0.9091846,0.4163931,0,0.932371,0.3608951,-0.02095214,0.6428906,0.4163931,0.6428906,0.6578095,0.3609734,0.6610483,0.6428906,0.4163931,0.6428906,0.932371,0.3608951,-0.02095214,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6610326,0.3609734,-0.6578253,-0.9323742,0.3608963,-0.02078578,-0.6610326,0.3609734,-0.6578253,-0.9091846,0.4163931,0,0.04972418,0.3721471,0.9268409,0.04497019,0.3265586,0.9441065,-0.5743069,0.4641061,0.6743717,-0.5941601,0.4207428,0.6855285,-0.5743069,0.4641061,0.6743717,0.04497019,0.3265586,0.9441065,-0.5941601,0.5417455,-0.5945465,-0.8588966,0.5098761,0.04819748,-0.6054488,0.4900203,-0.6271458,-0.8879359,0.4554401,0.06437476,-0.6054488,0.4900203,-0.6271458,-0.8588966,0.5098761,0.04819748,0.6377769,0.3831284,-0.6681716,0.6461009,0.3378008,-0.6844299,0.9135311,0.4067689,0,0.9320253,0.3623151,0.007515698,0.9135311,0.4067689,0,0.6461009,0.3378008,-0.6844299,0,0.4163931,-0.9091846,-0.02400036,0.3608704,-0.9323072,0.6428906,0.4163931,-0.6428906,0.6366273,0.360792,-0.681568,0.6428906,0.4163931,-0.6428906,-0.02400036,0.3608704,-0.9323072,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3470959,-0.9378296,0,0.2207408,-0.9753324,0,0.3470959,-0.9378296,0,0.2207408,-0.9753324,0,0.3470959,-0.9378296,0,0.2207408,-0.9753324,0.9378296,0.3470959,0,0.9753324,0.2207408,0,0.9378296,0.3470959,0,0.9753324,0.2207408,0,0.9378296,0.3470959,0,0.9753324,0.2207408,0,0,0.2207408,-0.9753324,0,0.05636281,-0.9984103,0,0.2207408,-0.9753324,0,0.05636281,-0.9984103,0,0.2207408,-0.9753324,0,0.05636281,-0.9984103,0,0.3470959,0.9378296,0,0.2207408,0.9753324,0,0.3470959,0.9378296,0,0.2207408,0.9753324,0,0.3470959,0.9378296,0,0.2207408,0.9753324,0.9753324,0.2207408,0,0.9984103,0.05636281,0,0.9753324,0.2207408,0,0.9984103,0.05636281,0,0.9753324,0.2207408,0,0.9984103,0.05636281,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9753324,0.2207408,0,-0.9753324,0.2207408,0,-0.9753324,0.2207408,0,-0.9378296,0.3470959,0,-0.9753324,0.2207408,0,-0.9753324,0.2207408,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9753324,0.2207408,0,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.2207408,0.9753324,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.2207408,0.9753324,0,0.2207408,0.9753324,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.2207408,0.9753324,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.2207408,0.9753324 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *736 { + a: 2.257159,70.3419,-2.031283,70.28531,-0.1658748,91.4418,2.255429,71.57252,-2.033025,71.5168,-0.1633255,92.67291,0.3959229,92.33994,1.873776,71.15285,-2.412912,71.28793,2.033025,71.5168,-2.255429,71.57252,0.1633255,92.67291,-1.873776,71.15285,-0.3959229,92.33994,2.412912,71.28793,-1.872028,70.64275,-0.3984689,91.83015,2.414632,70.7787,2.031283,70.28531,-2.257159,70.3419,0.1658748,91.4418,0.3984689,91.83015,1.872028,70.64275,-2.414632,70.7787,-7.7064,9.195643,-5.471544,21.68142,7.7064,9.195643,5.471544,21.68142,-2.818741,57.13021,-2.577995,66.13336,3.201961,57.61991,1.562294,66.18954,-1.849877,67.13648,2.436599,67.27811,-2.532356,61.26833,3.504935,61.4678,2.821851,62.57228,-3.218187,62.65356,2.024666,68.42595,-2.263761,68.48366,-5.01448,24.27106,-3.98502,34.36608,7.280643,25.201,4.744517,35.02633,-6.979558,24.8518,-4.646716,34.72738,5.332137,24.17577,4.094588,34.24739,-5.471544,21.68142,5.471544,21.68142,-7.7064,9.195643,7.7064,9.195643,2.817066,60.75279,-3.222946,60.83604,2.021778,66.60672,-2.26663,66.66582,6.880632,30.33132,-5.435337,29.73824,4.614362,40.22239,-4.129976,39.80129,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,-3.271582,46.37928,-2.766488,55.17977,5.20694,47.08529,3.253263,55.68103,8.178149,29.90652,-4.034273,28.20605,5.029813,39.55313,-3.641006,38.34579,-3.24771,45.0088,-2.760157,53.81028,5.229389,45.7317,3.258583,54.32354,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,3.100522,55.52108,-2.936423,55.31138,1.95875,63.47279,-2.328046,63.61107,-2.940016,57.84663,-2.267876,66.83644,3.097228,58.04752,1.830145,66.96432,-3.73893,39.18216,-3.795841,46.26433,4.921613,40.46113,3.394068,45.67117,2.81497,56.08067,-3.205017,56.5791,2.604015,64.42206,-1.682142,64.4763,1.849877,67.13648,2.532356,61.26833,-2.436599,67.27811,-3.504935,61.4678,-2.81497,56.08067,-2.594382,64.80297,3.205017,56.5791,1.629265,64.75051,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,5.15003,29.53931,-7.152791,30.36115,4.031892,39.62488,-4.703111,40.20839,-4.646888,47.64367,-3.118006,56.32504,3.856086,47.35519,2.919106,56.12022,-3.097228,58.04752,-1.866736,66.70682,2.940016,57.84663,2.267876,66.83644,-2.821851,62.57228,-2.024666,68.42595,3.218187,62.65356,2.263761,68.48366,3.271582,46.37928,-5.20694,47.08529,2.766488,55.17977,-3.253263,55.68103,-2.817066,60.75279,-2.021778,66.60672,3.222946,60.83604,2.26663,66.66582,4.105726,41.89984,-4.630343,42.46716,3.495826,50.15665,-3.153386,49.62694,3.760754,40.64369,-4.905715,41.88186,3.785077,47.95417,-3.330838,47.34855,5.471544,24.15008,-5.471544,24.15008,4.648315,30.05237,-4.555923,30.7148,7.892405,2.719536,5.580773,-2.861237,5.580773,8.300308,4.993334,2.289404,3.268913,6.216504,3.347164,-1.693292,1.136868E-13,10.61194,1.136868E-13,-5.172869,-0.6747261,7.729664,-0.6434943,-3.258134,-5.580773,8.300308,-4.472697,6.080249,-5.580773,-2.861237,-4.50294,-1.553221,-6.034625,2.289404,-7.892405,2.719536,3.123675,53.02869,4.669971,44.3504,-2.913013,52.81176,-3.832408,44.04486,-3.789923,25.98849,-3.553897,36.13311,8.39467,27.87808,5.097163,37.47472,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,2.537153,62.02209,-3.500201,62.21961,1.852775,67.89002,-2.433747,68.03026,-8.298912,27.41509,-5.067451,37.03418,3.898382,25.6093,3.592628,35.75206,-4.078526,37.80293,-3.712545,43.21994,4.653812,38.42505,3.778628,42.5371,5.471544,24.15008,-5.471544,24.15008,4.406825,31.78379,-4.582788,30.52218,-4.898377,40.10213,-3.710738,44.25841,3.770749,38.8827,3.777375,44.5717,2.818741,57.13021,-3.201961,57.61991,2.584948,65.87337,-1.6339,65.81529,-5.471544,24.15008,-4.211351,33.18528,5.471544,24.15008,4.371766,32.03514,5.471544,21.68142,7.7064,9.195643,-5.471544,21.68142,-7.7064,9.195643,20.13779,0,14.23957,-14.23957,14.23957,14.23957,-5.684342E-14,20.13779,2.91765,2.91765,-2.91765,2.91765,2.91765,-2.91765,-5.684342E-14,-20.13779,-14.23957,14.23957,-2.91765,-2.91765,-14.23957,-14.23957,-20.13779,0,3.832408,44.04486,-4.669971,44.3504,2.913013,52.81176,-3.123675,53.02869,-2.919106,56.12022,3.118006,56.32504,-3.856086,47.35519,4.646888,47.64367,4.877295,42.07041,-3.799196,40.90454,2.973507,48.89214,-3.758142,49.0971,-2.537153,62.02209,-1.852775,67.89002,3.500201,62.21961,2.433747,68.03026,3.24771,45.0088,-5.229389,45.7317,2.760157,53.81028,-3.258583,54.32354,7.7064,9.195643,-7.7064,9.195643,5.471544,21.68142,-5.471544,21.68142,5.471544,24.15008,-5.471544,24.15008,4.157493,33.57141,-4.234296,33.02076,5.471544,24.15008,-5.471544,24.15008,4.555923,30.7148,-4.371766,32.03514,4.561874,42.45346,-4.183004,42.04375,3.051643,50.50573,-3.424325,50.28822,10.61047,18.88188,16.07471,7.828514,-1.069244,22.83398,7.205544,13.7878,11.39476,6.208678,-0.7764142,16.3324,12.12261,-3.8512,8.998343,-2.492133,0.8680755,-6.857399,1.069244,-9.315444,-12.12261,17.36974,-8.363104,12.7037,-11.48614,4.552274,-16.07471,5.690026,-7.841068,-3.761463,-10.61047,-5.363338,5.471544,24.15008,-5.471544,24.15008,4.582788,30.52218,-4.648315,30.05237,-5.471544,24.15008,-4.157493,33.57141,5.471544,24.15008,4.211351,33.18528,3.893692,27.86497,-8.303063,29.67439,3.590955,38.00783,-5.068742,39.29251,-4.580271,38.16877,-3.785429,42.2971,4.162537,37.71703,3.787124,42.02333,2.936423,55.31138,-3.100522,55.52108,2.348462,63.33256,-1.95875,63.47279,5.471544,24.15008,-5.471544,24.15008,4.234296,33.02076,-4.406825,31.78379,6.594358,-2.133537,9.011253,4.989846,7.860243,-2.618963,-0.4289238,-4.978182,11.11606,5.241281,5.684342E-14,-5.874782,5.746955,11.42343,7.860243,13.10152,-7.860243,-2.618963,-7.12171,-1.605262,-9.349524,5.180008,-11.11606,5.241281,-6.56131,11.23958,-7.860243,13.10152,-0.5799903,13.73143,5.684342E-14,16.35734,5.68189,5.68189,5.68189,-5.68189,-5.68189,5.68189,-5.68189,-5.68189,5.68189,-1.972161,-5.68189,-1.972161,3.693228,3.757268,-3.693228,3.757268,5.68189,-1.972161,-5.68189,-1.972161,3.693228,3.757268,-3.693228,3.757268,3.693228,5.156526,-3.693228,5.156526,2.91765,18.91698,-2.91765,18.91698,5.68189,-1.972161,-5.68189,-1.972161,3.693228,3.757268,-3.693228,3.757268,3.693228,5.156526,-3.693228,5.156526,2.91765,18.91698,-2.91765,18.91698,-5.68189,-1.972161,-3.693228,3.757268,5.68189,-1.972161,3.693228,3.757268,-3.693228,5.156526,-2.91765,18.91698,3.693228,5.156526,2.91765,18.91698,-3.14626,11.4392,-3.339572,7.980035,-7.94899,11.03096,-8.066911,8.920862,2.996836,11.43085,7.799567,11.02261,3.190149,7.971684,7.917488,8.912512,1.203685,5.05154,-2.260882,5.05154,0.5280946,9.82401,-1.585291,9.82401,1.203685,-2.358066,0.5280946,-7.130536,-2.260882,-2.358066,-1.585291,-7.130536,0.5280946,8.456856,-1.585291,8.456856,0.5280946,10.57024,-1.585291,10.57024,1.203685,11.24583,2.91765,18.91698,1.203685,7.781265,-2.260882,11.24583,3.693228,5.156526,-2.91765,18.91698,-3.693228,5.156526,-2.260882,7.781265 + } + UVIndex: *642 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,147,146,147,149,145,150,148,146,151,145,149,152,148,150,153,151,149,154,152,150,155,152,154,156,151,153,157,156,153,158,155,154,158,156,157,159,158,154,159,156,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,205,207,209,208,207,208,210,205,211,205,210,212,209,207,213,211,210,213,209,212,214,211,213,212,214,213,215,214,212,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,253,254,255,255,256,253,255,254,257,253,256,258,256,259,258,259,260,258,258,260,261,254,262,257,257,262,263,263,262,264,262,265,264,260,266,261,264,265,266,267,261,266,267,266,265,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,294,292,294,296,293,297,294,295,293,296,298,296,299,298,297,295,300,295,301,300,301,302,300,300,302,303,302,304,303,303,304,305,298,299,306,304,306,305,307,306,299,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,360,361,361,362,364,361,365,363,366,364,362,363,365,367,365,366,367,362,367,366 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *214 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh treeCrooked, Model::RootNode + C: "OO",4972339291103822071,0 + + ;Geometry::, Model::Mesh treeCrooked + C: "OO",5141254646642953321,4972339291103822071 + + ;Material::foliage, Model::Mesh treeCrooked + C: "OO",7192,4972339291103822071 + + ;Material::wood, Model::Mesh treeCrooked + C: "OO",7178,4972339291103822071 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeCrooked.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeCrooked.fbx.import new file mode 100644 index 0000000..58b6bbc --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeCrooked.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://wjca55qen4kg" +path="res://.godot/imported/treeCrooked.fbx-ebfd67da19534797847247fdfde33331.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/treeCrooked.fbx" +dest_files=["res://.godot/imported/treeCrooked.fbx-ebfd67da19534797847247fdfde33331.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHigh.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHigh.fbx new file mode 100644 index 0000000..7383ed4 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHigh.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 710 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "treeHigh.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "treeHigh.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4748231109180108935, "Model::treeHigh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4795598556341714983, "Geometry::", "Mesh" { + Vertices: *1176 { + a: -1.423316,24.52416,-2.887646E-14,3.609557E-14,29.72761,-2.887646E-14,-1.006437,24.52416,1.006437,1.006437,24.52416,1.006437,5.05338E-14,24.52416,1.423316,3.609557E-14,29.72761,-2.887646E-14,3.609557E-14,29.72761,-2.887646E-14,1.423316,24.52416,-2.887646E-14,1.006437,24.52416,1.006437,3.609557E-14,29.72761,-2.887646E-14,1.006437,24.52416,-1.006437,1.423316,24.52416,-2.887646E-14,5.05338E-14,24.52416,-1.423316,1.006437,24.52416,-1.006437,3.609557E-14,29.72761,-2.887646E-14,5.05338E-14,24.52416,1.423316,-1.006437,24.52416,1.006437,3.609557E-14,29.72761,-2.887646E-14,-1.423316,24.52416,-2.887646E-14,-1.006437,24.52416,-1.006437,3.609557E-14,29.72761,-2.887646E-14,-1.006437,24.52416,-1.006437,5.05338E-14,24.52416,-1.423316,3.609557E-14,29.72761,-2.887646E-14,-7.219114E-15,10.4544,-5.115,3.616851,10.4544,-3.616851,5.05338E-14,13.3144,-3.63165,2.567965,13.3144,-2.567965,-2.90532,17.4834,-1.443823E-14,-2.054371,17.4834,2.054371,-4.092,15.1954,1.443823E-14,-2.893481,15.1954,2.893481,-1.423316,24.52416,-2.887646E-14,-1.006437,24.52416,1.006437,-2.004671,23.1408,-1.443823E-14,-1.417516,23.1408,1.417516,-1.39612,23.1408,-4.331469E-14,-0.9872058,23.1408,0.9872058,-2.004671,21.06551,-2.887646E-14,-1.417516,21.06551,1.417516,5.05338E-14,21.06551,2.004671,-1.417516,21.06551,1.417516,9.384848E-14,23.1408,1.39612,-0.9872058,23.1408,0.9872058,3.609557E-14,23.1408,-2.004671,1.417516,23.1408,-1.417516,5.05338E-14,24.52416,-1.423316,1.006437,24.52416,-1.006437,2.165734E-14,18.9816,2.82348,-1.996502,18.9816,1.996502,5.05338E-14,21.06551,2.004671,-1.417516,21.06551,1.417516,1.417516,23.1408,1.417516,3.609557E-14,23.1408,2.004671,1.006437,24.52416,1.006437,5.05338E-14,24.52416,1.423316,-7.219114E-15,10.4544,5.115,-3.616851,10.4544,3.616851,5.05338E-14,13.3144,3.63165,-2.567965,13.3144,2.567965,-7.219114E-15,15.1954,4.092,-2.893481,15.1954,2.893481,3.609557E-14,17.4834,2.90532,-2.054371,17.4834,2.054371,2.893481,15.1954,2.893481,-7.219114E-15,15.1954,4.092,2.054371,17.4834,2.054371,3.609557E-14,17.4834,2.90532,-7.219114E-15,15.1954,-4.092,2.893481,15.1954,-2.893481,3.609557E-14,17.4834,-2.90532,2.054371,17.4834,-2.054371,2.054371,17.4834,-2.054371,2.90532,17.4834,-1.443823E-14,1.644312,18.9816,-1.644312,2.325408,18.9816,-1.443823E-14,-1.417516,21.06551,-1.417516,-0.9872058,23.1408,-0.9872058,-2.004671,21.06551,-2.887646E-14,-1.39612,23.1408,-4.331469E-14,-1.417516,23.1408,-1.417516,3.609557E-14,23.1408,-2.004671,-1.006437,24.52416,-1.006437,5.05338E-14,24.52416,-1.423316,3.63165,13.3144,-4.331469E-14,5.115,10.4544,1.443823E-14,2.567965,13.3144,2.567965,3.616851,10.4544,3.616851,-1.417516,23.1408,-1.417516,-1.006437,24.52416,-1.006437,-2.004671,23.1408,-1.443823E-14,-1.423316,24.52416,-2.887646E-14,3.609557E-14,17.4834,2.90532,-2.054371,17.4834,2.054371,5.05338E-14,18.9816,2.325408,-1.644312,18.9816,1.644312,1.996502,18.9816,-1.996502,2.82348,18.9816,-1.443823E-14,1.417516,21.06551,-1.417516,2.004671,21.06551,-2.887646E-14,1.417516,23.1408,-1.417516,2.004671,23.1408,-1.443823E-14,1.006437,24.52416,-1.006437,1.423316,24.52416,-2.887646E-14,2.893481,15.1954,-2.893481,4.092,15.1954,1.443823E-14,2.054371,17.4834,-2.054371,2.90532,17.4834,-1.443823E-14,-3.63165,13.3144,-4.331469E-14,-2.567965,13.3144,2.567965,-5.115,10.4544,1.443823E-14,-3.616851,10.4544,3.616851,-2.893481,15.1954,-2.893481,-2.054371,17.4834,-2.054371,-4.092,15.1954,1.443823E-14,-2.90532,17.4834,-1.443823E-14,1.417516,21.06551,-1.417516,2.004671,21.06551,-2.887646E-14,0.9872058,23.1408,-0.9872058,1.39612,23.1408,-2.887646E-14,5.05338E-14,13.3144,-3.63165,2.567965,13.3144,-2.567965,6.497203E-14,15.1954,-2.903567,2.053132,15.1954,-2.053132,1.417516,21.06551,1.417516,5.05338E-14,21.06551,2.004671,0.9872058,23.1408,0.9872058,9.384848E-14,23.1408,1.39612,3.616851,10.4544,3.616851,-7.219114E-15,10.4544,5.115,2.567965,13.3144,2.567965,5.05338E-14,13.3144,3.63165,2.054371,17.4834,2.054371,3.609557E-14,17.4834,2.90532,1.644312,18.9816,1.644312,5.05338E-14,18.9816,2.325408,-2.054371,17.4834,-2.054371,-1.644312,18.9816,-1.644312,-2.90532,17.4834,-1.443823E-14,-2.325408,18.9816,-4.331469E-14,1.39612,23.1408,-2.887646E-14,2.004671,21.06551,-2.887646E-14,0.9872058,23.1408,0.9872058,1.417516,21.06551,1.417516,-2.004671,21.06551,-2.887646E-14,-1.417516,21.06551,1.417516,-2.82348,18.9816,-1.443823E-14,-1.996502,18.9816,1.996502,1.423316,24.52416,-2.887646E-14,2.004671,23.1408,-1.443823E-14,1.006437,24.52416,1.006437,1.417516,23.1408,1.417516,-2.567965,13.3144,-2.567965,-2.053132,15.1954,-2.053132,-3.63165,13.3144,-4.331469E-14,-2.903567,15.1954,-2.887646E-14,-3.616851,10.4544,-3.616851,-2.567965,13.3144,-2.567965,-5.115,10.4544,1.443823E-14,-3.63165,13.3144,-4.331469E-14,3.609557E-14,23.1408,2.004671,-1.417516,23.1408,1.417516,5.05338E-14,24.52416,1.423316,-1.006437,24.52416,1.006437,2.90532,17.4834,-1.443823E-14,4.092,15.1954,1.443823E-14,2.054371,17.4834,2.054371,2.893481,15.1954,2.893481,2.567965,13.3144,2.567965,5.05338E-14,13.3144,3.63165,2.053132,15.1954,2.053132,7.941025E-14,15.1954,2.903567,-1.996502,18.9816,-1.996502,-1.417516,21.06551,-1.417516,-2.82348,18.9816,-1.443823E-14,-2.004671,21.06551,-2.887646E-14,2.165734E-14,18.9816,-2.82348,1.996502,18.9816,-1.996502,5.05338E-14,21.06551,-2.004671,1.417516,21.06551,-1.417516,2.325408,18.9816,-1.443823E-14,2.90532,17.4834,-1.443823E-14,1.644312,18.9816,1.644312,2.054371,17.4834,2.054371,1.996502,18.9816,1.996502,2.165734E-14,18.9816,2.82348,1.417516,21.06551,1.417516,5.05338E-14,21.06551,2.004671,-3.63165,13.3144,-4.331469E-14,-2.903567,15.1954,-2.887646E-14,-2.567965,13.3144,2.567965,-2.053132,15.1954,2.053132,-1.996502,18.9816,-1.996502,2.165734E-14,18.9816,-2.82348,-1.417516,21.06551,-1.417516,5.05338E-14,21.06551,-2.004671,3.609557E-14,17.4834,-2.90532,2.054371,17.4834,-2.054371,5.05338E-14,18.9816,-2.325408,1.644312,18.9816,-1.644312,-2.567965,13.3144,-2.567965,5.05338E-14,13.3144,-3.63165,-2.053132,15.1954,-2.053132,6.497203E-14,15.1954,-2.903567,-2.325408,18.9816,-4.331469E-14,-1.644312,18.9816,1.644312,-2.90532,17.4834,-1.443823E-14,-2.054371,17.4834,2.054371,3.616851,10.4544,-3.616851,5.115,10.4544,1.443823E-14,2.567965,13.3144,-2.567965,3.63165,13.3144,-4.331469E-14,2.004671,23.1408,-1.443823E-14,1.417516,23.1408,-1.417516,1.417516,23.1408,1.417516,1.39612,23.1408,-2.887646E-14,0.9872058,23.1408,0.9872058,0.9872058,23.1408,-0.9872058,3.609557E-14,23.1408,-2.004671,2.165734E-14,23.1408,-1.39612,3.609557E-14,23.1408,2.004671,9.384848E-14,23.1408,1.39612,-0.9872058,23.1408,0.9872058,-1.417516,23.1408,-1.417516,-1.417516,23.1408,1.417516,-0.9872058,23.1408,-0.9872058,-1.39612,23.1408,-4.331469E-14,-2.004671,23.1408,-1.443823E-14,-3.616851,10.4544,-3.616851,-7.219114E-15,10.4544,-5.115,-2.567965,13.3144,-2.567965,5.05338E-14,13.3144,-3.63165,3.63165,13.3144,-4.331469E-14,2.567965,13.3144,2.567965,2.903567,15.1954,-2.887646E-14,2.053132,15.1954,2.053132,2.567965,13.3144,-2.567965,3.63165,13.3144,-4.331469E-14,2.053132,15.1954,-2.053132,2.903567,15.1954,-2.887646E-14,-1.417516,21.06551,-1.417516,5.05338E-14,21.06551,-2.004671,-0.9872058,23.1408,-0.9872058,2.165734E-14,23.1408,-1.39612,-2.054371,17.4834,-2.054371,3.609557E-14,17.4834,-2.90532,-1.644312,18.9816,-1.644312,5.05338E-14,18.9816,-2.325408,2.004671,21.06551,-2.887646E-14,2.82348,18.9816,-1.443823E-14,1.417516,21.06551,1.417516,1.996502,18.9816,1.996502,-2.893481,15.1954,-2.893481,-7.219114E-15,15.1954,-4.092,-2.054371,17.4834,-2.054371,3.609557E-14,17.4834,-2.90532,5.05338E-14,21.06551,-2.004671,1.417516,21.06551,-1.417516,2.165734E-14,23.1408,-1.39612,0.9872058,23.1408,-0.9872058,5.05338E-14,13.3144,3.63165,-2.567965,13.3144,2.567965,7.941025E-14,15.1954,2.903567,-2.053132,15.1954,2.053132,5.115,10.4544,1.443823E-14,3.616851,10.4544,-3.616851,3.616851,10.4544,3.616851,-7.219114E-15,10.4544,5.115,0.5558124,10.4544,0.5558124,-0.5558124,10.4544,0.5558124,0.5558124,10.4544,-0.5558124,-7.219114E-15,10.4544,-5.115,-3.616851,10.4544,3.616851,-0.5558124,10.4544,-0.5558124,-3.616851,10.4544,-3.616851,-5.115,10.4544,1.443823E-14,2.82348,18.9816,-1.443823E-14,2.325408,18.9816,-1.443823E-14,1.996502,18.9816,1.996502,1.996502,18.9816,-1.996502,1.644312,18.9816,1.644312,1.644312,18.9816,-1.644312,2.165734E-14,18.9816,2.82348,5.05338E-14,18.9816,2.325408,-1.644312,18.9816,1.644312,-1.996502,18.9816,1.996502,2.165734E-14,18.9816,-2.82348,5.05338E-14,18.9816,-2.325408,-1.644312,18.9816,-1.644312,-1.996502,18.9816,-1.996502,-2.325408,18.9816,-4.331469E-14,-2.82348,18.9816,-1.443823E-14,7.941025E-14,15.1954,2.903567,-7.219114E-15,15.1954,4.092,2.053132,15.1954,2.053132,-2.053132,15.1954,2.053132,2.893481,15.1954,2.893481,-2.893481,15.1954,2.893481,2.903567,15.1954,-2.887646E-14,4.092,15.1954,1.443823E-14,2.893481,15.1954,-2.893481,2.053132,15.1954,-2.053132,-2.903567,15.1954,-2.887646E-14,-4.092,15.1954,1.443823E-14,-2.893481,15.1954,-2.893481,-2.053132,15.1954,-2.053132,-7.219114E-15,15.1954,-4.092,6.497203E-14,15.1954,-2.903567,1.4432,0,1.4432,-1.4432,0,1.4432,0.93808,1.7648,0.93808,-0.93808,1.7648,0.93808,-1.4432,0,-1.4432,-0.93808,1.7648,-0.93808,-1.4432,0,1.4432,-0.93808,1.7648,0.93808,-1.4432,0,-1.4432,1.4432,0,-1.4432,-0.93808,1.7648,-0.93808,0.93808,1.7648,-0.93808,1.4432,0,-1.4432,1.4432,0,1.4432,0.93808,1.7648,-0.93808,0.93808,1.7648,0.93808,1.4432,0,1.4432,1.4432,0,-1.4432,-1.4432,0,1.4432,-1.4432,0,-1.4432,-1.825202,3.442548,-0.4459999,-1.803403,3.938069,-0.4459999,-1.825202,3.442548,-0.04919992,-1.803403,3.938069,-0.04919992,-0.8728098,3.248504,-0.5675999,-0.8376507,4.047731,-0.5675999,-1.825202,3.442548,-0.4459999,-1.803403,3.938069,-0.4459999,-0.8376507,4.047731,-0.5675999,-0.8376507,4.047731,0.07240008,-1.803403,3.938069,-0.4459999,-1.803403,3.938069,-0.04919992,-0.8728098,3.248504,0.07240008,-1.825202,3.442548,-0.04919992,-0.8376507,4.047731,0.07240008,-1.803403,3.938069,-0.04919992,-0.8728098,3.248504,0.07240008,-0.8728098,3.248504,-0.5675999,-1.825202,3.442548,-0.04919992,-1.825202,3.442548,-0.4459999,-0.93808,1.7648,-0.93808,0.93808,1.7648,-0.93808,-0.5558124,10.4544,-0.5558124,0.5558124,10.4544,-0.5558124,0.93808,1.7648,-0.93808,0.93808,1.7648,0.93808,0.5558124,10.4544,-0.5558124,0.5558124,10.4544,0.5558124,0.3548573,7.464569,0.6873392,-0.2851427,7.464569,0.6873392,0.2268573,7.641668,1.800632,-0.1571427,7.641668,1.800632,0.3548573,8.103951,0.6592119,0.2268573,8.025297,1.783755,-0.2851427,8.103951,0.6592119,-0.1571427,8.025297,1.783755,-0.2851427,8.103951,0.6592119,-0.1571427,8.025297,1.783755,-0.2851427,7.464569,0.6873392,-0.1571427,7.641668,1.800632,0.3548573,8.103951,0.6592119,0.3548573,7.464569,0.6873392,0.2268573,8.025297,1.783755,0.2268573,7.641668,1.800632,0.2268573,7.641668,1.800632,-0.1571427,7.641668,1.800632,0.2268573,8.025297,1.783755,-0.1571427,8.025297,1.783755,-0.5558124,10.4544,0.5558124,-0.93808,1.7648,0.93808,-0.8376507,4.047731,0.07240008,-0.5558124,10.4544,-0.5558124,-0.8728098,3.248504,0.07240008,-0.8376507,4.047731,-0.5675999,-0.8728098,3.248504,-0.5675999,-0.93808,1.7648,-0.93808,0.3548573,8.103951,0.6592119,0.5558124,10.4544,0.5558124,0.3548573,7.464569,0.6873392,-0.2851427,8.103951,0.6592119,0.93808,1.7648,0.93808,-0.5558124,10.4544,0.5558124,-0.93808,1.7648,0.93808,-0.2851427,7.464569,0.6873392 + } + PolygonVertexIndex: *690 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,215,-215,215,217,-214,218,213,-218,219,218,-218,220,216,-215,221,216,-221,222,221,-221,223,218,-220,224,222,-221,225,223,-220,226,222,-225,226,223,-226,224,223,-227,227,223,-225,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,265,-268,269,268,-268,268,270,-266,271,265,-271,272,269,-268,273,271,-271,273,269,-273,274,271,-274,272,274,-274,275,274,-273,276,278,-278,276,277,-280,280,277,-279,281,279,-278,282,280,-279,283,280,-283,284,283,-283,285,284,-283,286,279,-282,287,286,-282,288,286,-288,289,286,-289,290,284,-286,290,289,-289,291,290,-286,291,289,-291,292,294,-294,295,292,-294,293,294,-297,297,295,-294,294,298,-297,299,296,-299,299,298,-301,301,300,-299,302,295,-298,303,302,-298,303,304,-303,302,304,-306,306,300,-302,304,306,-306,307,306,-302,305,306,-308,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,376,379,-379,378,380,-378,378,379,-382,380,382,-378,379,383,-382,383,377,-383,382,381,-384,384,386,-386,387,384,-386,385,386,-389,385,389,-388,390,388,-387,387,389,-392,389,390,-392,386,391,-391 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2070 { + a: -0.9435029,0.3313643,0,-0.6671573,0.3313643,0.6671573,-0.8957203,0.2450095,0.3710195,0.6671573,0.3313643,0.6671573,0.3710195,0.2450095,0.8957203,0,0.3313643,0.9435029,0.8957203,0.2450095,0.3710195,0.6671573,0.3313643,0.6671573,0.9435029,0.3313643,0,0.8957203,0.2450095,-0.3710195,0.9435029,0.3313643,0,0.6671573,0.3313643,-0.6671573,0,0.3313643,-0.9435029,0.3710195,0.2450095,-0.8957203,0.6671573,0.3313643,-0.6671573,0,0.3313643,0.9435029,-0.3710195,0.2450095,0.8957203,-0.6671573,0.3313643,0.6671573,-0.9435029,0.3313643,0,-0.8957203,0.2450095,-0.3710195,-0.6671573,0.3313643,-0.6671573,-0.6671573,0.3313643,-0.6671573,-0.3710195,0.2450095,-0.8957203,0,0.3313643,-0.9435029,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.6277025,0.4604119,-0.6277025,0,0.4163931,-0.9091846,-0.9091846,0.4163931,0,-0.8877054,0.4604119,0,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.8877054,0.4604119,0,-0.9435029,0.3313643,0,-0.9219008,0.3874258,0,-0.6671573,0.3313643,0.6671573,-0.6518824,0.3874259,0.6518824,-0.6671573,0.3313643,0.6671573,-0.9219008,0.3874258,0,-0.9595941,0.2813882,0,-0.9449374,0.3272512,0,-0.6785354,0.2813881,0.6785354,-0.6681716,0.3272512,0.6681716,-0.6785354,0.2813881,0.6785354,-0.9449374,0.3272512,0,0,0.3272512,0.9449374,0,0.2813882,0.9595941,-0.6681716,0.3272512,0.6681716,-0.6785354,0.2813881,0.6785354,-0.6681716,0.3272512,0.6681716,0,0.2813882,0.9595941,0,0.3874258,-0.9219008,0,0.3313643,-0.9435029,0.6518824,0.3874259,-0.6518824,0.6671573,0.3313643,-0.6671573,0.6518824,0.3874259,-0.6518824,0,0.3313643,-0.9435029,0,0.3657027,0.9307318,0,0.3272512,0.9449374,-0.6581267,0.3657027,0.6581267,-0.6681716,0.3272512,0.6681716,-0.6581267,0.3657027,0.6581267,0,0.3272512,0.9449374,0.6518824,0.3874259,0.6518824,0.6671573,0.3313643,0.6671573,0,0.3874258,0.9219008,0,0.3313643,0.9435029,0,0.3874258,0.9219008,0.6671573,0.3313643,0.6671573,0,0.4604119,0.8877054,0,0.4163931,0.9091846,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,0,0.4163931,0.9091846,0,0.4604119,0.8877054,0,0.4163931,0.9091846,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,0,0.4163931,0.9091846,0.6277025,0.4604119,0.6277025,0.6428906,0.4163931,0.6428906,0,0.4604119,0.8877054,0,0.4163931,0.9091846,0,0.4604119,0.8877054,0.6428906,0.4163931,0.6428906,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.6277025,0.4604119,-0.6277025,0,0.4163931,-0.9091846,0.6428906,0.4163931,-0.6428906,0.6594306,0.3609743,-0.6594306,0.9091846,0.4163931,0,0.9325757,0.3609743,0,0.9091846,0.4163931,0,0.6594306,0.3609743,-0.6594306,-0.6681716,0.3272512,-0.6681716,-0.9449374,0.3272512,0,-0.6785354,0.2813881,-0.6785354,-0.9595941,0.2813882,0,-0.6785354,0.2813881,-0.6785354,-0.9449374,0.3272512,0,-0.6518824,0.3874259,-0.6518824,-0.6671573,0.3313643,-0.6671573,0,0.3874258,-0.9219008,0,0.3313643,-0.9435029,0,0.3874258,-0.9219008,-0.6671573,0.3313643,-0.6671573,0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.8877054,0.4604119,0,0.6277025,0.4604119,0.6277025,0.8877054,0.4604119,0,0.6428906,0.4163931,0.6428906,-0.6518824,0.3874259,-0.6518824,-0.9219008,0.3874258,0,-0.6671573,0.3313643,-0.6671573,-0.9435029,0.3313643,0,-0.6671573,0.3313643,-0.6671573,-0.9219008,0.3874258,0,0,0.4163931,0.9091846,0,0.3609743,0.9325757,-0.6428906,0.4163931,0.6428906,-0.6594306,0.3609743,0.6594306,-0.6428906,0.4163931,0.6428906,0,0.3609743,0.9325757,0.6581267,0.3657027,-0.6581267,0.6681716,0.3272512,-0.6681716,0.9307318,0.3657027,0,0.9449374,0.3272512,0,0.9307318,0.3657027,0,0.6681716,0.3272512,-0.6681716,0.6518824,0.3874259,-0.6518824,0.6671573,0.3313643,-0.6671573,0.9219008,0.3874258,0,0.9435029,0.3313643,0,0.9219008,0.3874258,0,0.6671573,0.3313643,-0.6671573,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.8877054,0.4604119,0,0.9091846,0.4163931,0,0.8877054,0.4604119,0,0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.8877054,0.4604119,0,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.8877054,0.4604119,0,-0.6277025,0.4604119,-0.6277025,-0.8877054,0.4604119,0,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6428906,0.4163931,-0.6428906,-0.8877054,0.4604119,0,0.6681716,0.3272512,-0.6681716,0.6785354,0.2813881,-0.6785354,0.9449374,0.3272512,0,0.9595941,0.2813882,0,0.9449374,0.3272512,0,0.6785354,0.2813881,-0.6785354,0,0.4163931,-0.9091846,0,0.3609743,-0.9325757,0.6428906,0.4163931,-0.6428906,0.6594306,0.3609743,-0.6594306,0.6428906,0.4163931,-0.6428906,0,0.3609743,-0.9325757,0.6681716,0.3272512,0.6681716,0.6785354,0.2813881,0.6785354,0,0.3272512,0.9449374,0,0.2813882,0.9595941,0,0.3272512,0.9449374,0.6785354,0.2813881,0.6785354,0.6277025,0.4604119,0.6277025,0.6428906,0.4163931,0.6428906,0,0.4604119,0.8877054,0,0.4163931,0.9091846,0,0.4604119,0.8877054,0.6428906,0.4163931,0.6428906,0.6428906,0.4163931,0.6428906,0.6594306,0.3609743,0.6594306,0,0.4163931,0.9091846,0,0.3609743,0.9325757,0,0.4163931,0.9091846,0.6594306,0.3609743,0.6594306,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6594306,0.3609743,-0.6594306,-0.9325757,0.3609743,0,-0.6594306,0.3609743,-0.6594306,-0.9091846,0.4163931,0,0.9595941,0.2813882,0,0.6785354,0.2813881,0.6785354,0.9449374,0.3272512,0,0.6681716,0.3272512,0.6681716,0.9449374,0.3272512,0,0.6785354,0.2813881,0.6785354,-0.9449374,0.3272512,0,-0.9307318,0.3657027,0,-0.6681716,0.3272512,0.6681716,-0.6581267,0.3657027,0.6581267,-0.6681716,0.3272512,0.6681716,-0.9307318,0.3657027,0,0.9435029,0.3313643,0,0.6671573,0.3313643,0.6671573,0.9219008,0.3874258,0,0.6518824,0.3874259,0.6518824,0.9219008,0.3874258,0,0.6671573,0.3313643,0.6671573,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6594306,0.3609743,-0.6594306,-0.9325757,0.3609743,0,-0.6594306,0.3609743,-0.6594306,-0.9091846,0.4163931,0,-0.6277025,0.4604119,-0.6277025,-0.8877054,0.4604119,0,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6428906,0.4163931,-0.6428906,-0.8877054,0.4604119,0,0,0.3874258,0.9219008,0,0.3313643,0.9435029,-0.6518824,0.3874259,0.6518824,-0.6671573,0.3313643,0.6671573,-0.6518824,0.3874259,0.6518824,0,0.3313643,0.9435029,0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.8877054,0.4604119,0,0.6277025,0.4604119,0.6277025,0.8877054,0.4604119,0,0.6428906,0.4163931,0.6428906,0.6428906,0.4163931,0.6428906,0.6594306,0.3609743,0.6594306,0,0.4163931,0.9091846,0,0.3609743,0.9325757,0,0.4163931,0.9091846,0.6594306,0.3609743,0.6594306,-0.6581267,0.3657027,-0.6581267,-0.9307318,0.3657027,0,-0.6681716,0.3272512,-0.6681716,-0.9449374,0.3272512,0,-0.6681716,0.3272512,-0.6681716,-0.9307318,0.3657027,0,0,0.3657027,-0.9307318,0,0.3272512,-0.9449374,0.6581267,0.3657027,-0.6581267,0.6681716,0.3272512,-0.6681716,0.6581267,0.3657027,-0.6581267,0,0.3272512,-0.9449374,0.9325757,0.3609743,0,0.6594306,0.3609743,0.6594306,0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.9091846,0.4163931,0,0.6594306,0.3609743,0.6594306,0.6581267,0.3657027,0.6581267,0.6681716,0.3272512,0.6681716,0,0.3657027,0.9307318,0,0.3272512,0.9449374,0,0.3657027,0.9307318,0.6681716,0.3272512,0.6681716,-0.9091846,0.4163931,0,-0.6428906,0.4163931,0.6428906,-0.9325757,0.3609743,0,-0.6594306,0.3609743,0.6594306,-0.9325757,0.3609743,0,-0.6428906,0.4163931,0.6428906,-0.6581267,0.3657027,-0.6581267,-0.6681716,0.3272512,-0.6681716,0,0.3657027,-0.9307318,0,0.3272512,-0.9449374,0,0.3657027,-0.9307318,-0.6681716,0.3272512,-0.6681716,0,0.4163931,-0.9091846,0,0.3609743,-0.9325757,0.6428906,0.4163931,-0.6428906,0.6594306,0.3609743,-0.6594306,0.6428906,0.4163931,-0.6428906,0,0.3609743,-0.9325757,-0.6428906,0.4163931,-0.6428906,-0.6594306,0.3609743,-0.6594306,0,0.4163931,-0.9091846,0,0.3609743,-0.9325757,0,0.4163931,-0.9091846,-0.6594306,0.3609743,-0.6594306,-0.9325757,0.3609743,0,-0.9091846,0.4163931,0,-0.6594306,0.3609743,0.6594306,-0.6428906,0.4163931,0.6428906,-0.6594306,0.3609743,0.6594306,-0.9091846,0.4163931,0,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.8877054,0.4604119,0,0.9091846,0.4163931,0,0.8877054,0.4604119,0,0.6428906,0.4163931,-0.6428906,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6277025,0.4604119,-0.6277025,-0.6428906,0.4163931,-0.6428906,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0,0.4604119,-0.8877054,-0.6428906,0.4163931,-0.6428906,0.9091846,0.4163931,0,0.9325757,0.3609743,0,0.6428906,0.4163931,0.6428906,0.6594306,0.3609743,0.6594306,0.6428906,0.4163931,0.6428906,0.9325757,0.3609743,0,0.6428906,0.4163931,-0.6428906,0.6594306,0.3609743,-0.6594306,0.9091846,0.4163931,0,0.9325757,0.3609743,0,0.9091846,0.4163931,0,0.6594306,0.3609743,-0.6594306,-0.6681716,0.3272512,-0.6681716,-0.6785354,0.2813881,-0.6785354,0,0.3272512,-0.9449374,0,0.2813882,-0.9595941,0,0.3272512,-0.9449374,-0.6785354,0.2813881,-0.6785354,-0.6428906,0.4163931,-0.6428906,-0.6594306,0.3609743,-0.6594306,0,0.4163931,-0.9091846,0,0.3609743,-0.9325757,0,0.4163931,-0.9091846,-0.6594306,0.3609743,-0.6594306,0.9449374,0.3272512,0,0.6681716,0.3272512,0.6681716,0.9307318,0.3657027,0,0.6581267,0.3657027,0.6581267,0.9307318,0.3657027,0,0.6681716,0.3272512,0.6681716,-0.6277025,0.4604119,-0.6277025,-0.6428906,0.4163931,-0.6428906,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0,0.4604119,-0.8877054,-0.6428906,0.4163931,-0.6428906,0,0.3272512,-0.9449374,0,0.2813882,-0.9595941,0.6681716,0.3272512,-0.6681716,0.6785354,0.2813881,-0.6785354,0.6681716,0.3272512,-0.6681716,0,0.2813882,-0.9595941,0,0.4163931,0.9091846,0,0.3609743,0.9325757,-0.6428906,0.4163931,0.6428906,-0.6594306,0.3609743,0.6594306,-0.6428906,0.4163931,0.6428906,0,0.3609743,0.9325757,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2751701,0.9613956,0,0.1714603,0.985191,0,0.2751701,0.9613956,0,0.1714603,0.985191,0,0.2751701,0.9613956,0,0.1714603,0.985191,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.985191,0.1714603,0,-0.985191,0.1714603,0,-0.985191,0.1714603,0,-0.9613956,0.2751701,0,0,0.2751701,-0.9613956,0,0.1714603,-0.985191,0,0.2751701,-0.9613956,0,0.1714603,-0.985191,0,0.2751701,-0.9613956,0,0.1714603,-0.985191,0.9613956,0.2751701,0,0.985191,0.1714603,0,0.9613956,0.2751701,0,0.985191,0.1714603,0,0.9613956,0.2751701,0,0.985191,0.1714603,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,0,0.1714603,-0.985191,0,0.04394889,-0.9990338,0,0.1714603,-0.985191,0,0.04394889,-0.9990338,0,0.1714603,-0.985191,0,0.04394889,-0.9990338,0.985191,0.1714603,0,0.9990338,0.04394889,0,0.985191,0.1714603,0,0.9990338,0.04394889,0,0.985191,0.1714603,0,0.9990338,0.04394889,0,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.1714603,0.985191,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *784 { + a: -2.144408,92.34057,-5.065035E-14,113.4706,2.144408,92.34057,2.144408,92.34057,-2.144408,92.34057,1.747972E-13,113.4706,1.576392E-13,113.4706,2.144408,92.34057,-2.144408,92.34057,4.8874E-14,113.4706,2.144408,92.34057,-2.144408,92.34057,2.144408,92.34057,-2.144408,92.34057,-8.600875E-14,113.4706,2.144408,92.34057,-2.144408,92.34057,8.778511E-14,113.4706,2.144408,92.34057,-2.144408,92.34057,-1.594155E-13,113.4706,2.144408,92.34057,-2.144408,92.34057,-1.747972E-13,113.4706,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,-4.377235,57.50737,4.377235,57.50737,-6.165121,47.51875,6.165121,47.51875,-2.144408,88.13218,2.144408,88.13218,-3.020293,82.28977,3.020293,82.28977,-2.103433,86.60774,2.103433,86.60774,-3.020293,78.14278,3.020293,78.14278,3.020293,78.14278,-3.020293,78.14278,2.103433,86.60774,-2.103433,86.60774,3.020293,82.28977,-3.020293,82.28977,2.144408,88.13218,-2.144408,88.13218,4.253933,66.74121,-4.253933,66.74121,3.020293,75.46943,-3.020293,75.46943,3.020293,82.28977,-3.020293,82.28977,2.144408,88.13218,-2.144408,88.13218,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,6.165121,47.51875,-6.165121,47.51875,4.377235,57.50737,-4.377235,57.50737,6.165121,47.51875,-6.165121,47.51875,4.377235,57.50737,-4.377235,57.50737,6.165121,47.51875,-6.165121,47.51875,4.377235,57.50737,-4.377235,57.50737,4.377235,61.25432,-4.377235,61.25432,3.503524,67.51855,-3.503524,67.51855,-3.020293,78.14278,-2.103433,86.60774,3.020293,78.14278,2.103433,86.60774,3.020293,82.28977,-3.020293,82.28977,2.144408,88.13218,-2.144408,88.13218,5.471544,41.56392,7.7064,29.07815,-5.471544,41.56392,-7.7064,29.07815,-3.020293,82.28977,-2.144408,88.13218,3.020293,82.28977,2.144408,88.13218,4.377235,61.25432,-4.377235,61.25432,3.503524,67.51855,-3.503524,67.51855,4.253933,66.74121,-4.253933,66.74121,3.020293,75.46943,-3.020293,75.46943,3.020293,82.28977,-3.020293,82.28977,2.144408,88.13218,-2.144408,88.13218,6.165121,47.51875,-6.165121,47.51875,4.377235,57.50737,-4.377235,57.50737,-5.471544,41.56392,5.471544,41.56392,-7.7064,29.07815,7.7064,29.07815,-6.165121,47.51875,-4.377235,57.50737,6.165121,47.51875,4.377235,57.50737,3.020293,78.14278,-3.020293,78.14278,2.103433,86.60774,-2.103433,86.60774,5.471544,44.90983,-5.471544,44.90983,4.374594,52.77462,-4.374594,52.77462,3.020293,78.14278,-3.020293,78.14278,2.103433,86.60774,-2.103433,86.60774,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,4.377235,61.25432,-4.377235,61.25432,3.503524,67.51855,-3.503524,67.51855,-4.377235,61.25432,-3.503524,67.51855,4.377235,61.25432,3.503524,67.51855,2.103433,86.60774,3.020293,78.14278,-2.103433,86.60774,-3.020293,78.14278,-3.020293,75.46943,3.020293,75.46943,-4.253933,66.74121,4.253933,66.74121,2.144408,88.13218,3.020293,82.28977,-2.144408,88.13218,-3.020293,82.28977,-5.471544,44.90983,-4.374594,52.77462,5.471544,44.90983,4.374594,52.77462,-7.7064,29.07815,-5.471544,41.56392,7.7064,29.07815,5.471544,41.56392,3.020293,82.28977,-3.020293,82.28977,2.144408,88.13218,-2.144408,88.13218,4.377235,57.50737,6.165121,47.51875,-4.377235,57.50737,-6.165121,47.51875,5.471544,44.90983,-5.471544,44.90983,4.374594,52.77462,-4.374594,52.77462,-4.253933,66.74121,-3.020293,75.46943,4.253933,66.74121,3.020293,75.46943,4.253933,66.74121,-4.253933,66.74121,3.020293,75.46943,-3.020293,75.46943,3.503524,67.51855,4.377235,61.25432,-3.503524,67.51855,-4.377235,61.25432,4.253933,66.74121,-4.253933,66.74121,3.020293,75.46943,-3.020293,75.46943,-5.471544,44.90983,-4.374594,52.77462,5.471544,44.90983,4.374594,52.77462,4.253933,66.74121,-4.253933,66.74121,3.020293,75.46943,-3.020293,75.46943,4.377235,61.25432,-4.377235,61.25432,3.503524,67.51855,-3.503524,67.51855,5.471544,44.90983,-5.471544,44.90983,4.374594,52.77462,-4.374594,52.77462,-3.503524,67.51855,3.503524,67.51855,-4.377235,61.25432,4.377235,61.25432,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,7.892405,-5.684342E-14,5.580773,-5.580773,5.580773,5.580773,5.496535,-1.136868E-13,3.886637,3.886637,3.886637,-3.886637,1.421085E-13,-7.892405,8.526513E-14,-5.496535,1.421085E-13,7.892405,3.694822E-13,5.496535,-3.886637,3.886637,-5.580773,-5.580773,-5.580773,5.580773,-3.886637,-3.886637,-5.496535,-1.705303E-13,-7.892405,-5.684342E-14,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,5.471544,44.90983,-5.471544,44.90983,4.374594,52.77462,-4.374594,52.77462,5.471544,44.90983,-5.471544,44.90983,4.374594,52.77462,-4.374594,52.77462,3.020293,78.14278,-3.020293,78.14278,2.103433,86.60774,-2.103433,86.60774,4.377235,61.25432,-4.377235,61.25432,3.503524,67.51855,-3.503524,67.51855,3.020293,75.46943,4.253933,66.74121,-3.020293,75.46943,-4.253933,66.74121,6.165121,47.51875,-6.165121,47.51875,4.377235,57.50737,-4.377235,57.50737,3.020293,78.14278,-3.020293,78.14278,2.103433,86.60774,-2.103433,86.60774,5.471544,44.90983,-5.471544,44.90983,4.374594,52.77462,-4.374594,52.77462,20.13779,5.818649E-14,14.23957,-14.23957,14.23957,14.23957,-2.882274E-14,20.13779,2.188238,2.188238,-2.188238,2.188238,2.188238,-2.188238,-2.882274E-14,-20.13779,-14.23957,14.23957,-2.188238,-2.188238,-14.23957,-14.23957,-20.13779,5.818649E-14,11.11606,-5.684342E-14,9.15515,-5.684342E-14,7.860243,7.860243,7.860243,-7.860243,6.473669,6.473669,6.473669,-6.473669,8.526513E-14,11.11606,1.98952E-13,9.15515,-6.473669,6.473669,-7.860243,7.860243,8.526513E-14,-11.11606,1.98952E-13,-9.15515,-6.473669,-6.473669,-7.860243,-7.860243,-9.15515,-1.705303E-13,-11.11606,-5.684342E-14,3.126388E-13,11.43137,-2.842171E-14,16.11024,8.083196,8.083196,-8.083196,8.083196,11.39166,11.39166,-11.39166,11.39166,11.43137,-1.136868E-13,16.11024,5.684342E-14,11.39166,-11.39166,8.083196,-8.083196,-11.43137,-1.136868E-13,-16.11024,5.684342E-14,-11.39166,-11.39166,-8.083196,-8.083196,-2.842171E-14,-16.11024,2.557954E-13,-11.43137,5.68189,-1.563486,-5.68189,-1.563486,3.693228,5.663541,-3.693228,5.663541,-5.68189,-1.563486,-3.693228,5.663541,5.68189,-1.563486,3.693228,5.663541,5.68189,-1.563486,-5.68189,-1.563486,3.693228,5.663541,-3.693228,5.663541,5.68189,-1.563486,-5.68189,-1.563486,3.693228,5.663541,-3.693228,5.663541,5.68189,5.68189,5.68189,-5.68189,-5.68189,5.68189,-5.68189,-5.68189,-1.755905,13.22443,-1.755905,15.17719,-0.1937005,13.22443,-0.1937005,15.17719,3.128528,12.77456,2.991201,15.92118,6.90854,13.53853,6.823397,15.48943,-2.234645,-1.478791,0.2850397,-1.478791,-1.755905,-5.305401,-0.1937005,-5.305401,-3.373287,12.78525,-7.153299,13.54921,-3.235961,15.93186,-7.068157,15.50011,0.2850397,5.920385,-2.234645,5.920385,-0.1937005,9.746995,-1.755905,9.746995,3.693228,6.779005,-3.693228,6.779005,2.188238,41.02312,-2.188238,41.02312,3.693228,6.779005,-3.693228,6.779005,2.188238,41.02312,-2.188238,41.02312,1.397076,7.289368,-1.122609,7.289368,0.8931391,11.72752,-0.618672,11.72752,1.397076,-0.3628928,0.8931391,-4.801044,-1.122609,-0.3628928,-0.618672,-4.801044,2.451223,31.89788,6.907146,31.58822,2.561246,29.3806,6.97316,30.07785,-2.420088,31.89652,-2.530111,29.37924,-6.876011,31.58686,-6.942025,30.07649,0.8931391,29.74468,-0.618672,29.74468,0.8931391,31.25649,-0.618672,31.25649,2.188238,41.02312,3.693228,6.779005,0.2850397,15.77561,-2.188238,41.02312,0.2850397,12.62601,-2.234645,15.77561,-2.234645,12.62601,-3.693228,6.779005,1.397076,31.76043,2.188238,41.02312,1.397076,29.24074,-1.122609,31.76043,3.693228,6.779005,-2.188238,41.02312,-3.693228,6.779005,-1.122609,29.24074 + } + UVIndex: *690 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,215,214,215,217,213,218,213,217,219,218,217,220,216,214,221,216,220,222,221,220,223,218,219,224,222,220,225,223,219,226,222,224,226,223,225,224,223,226,227,223,224,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,265,267,269,268,267,268,270,265,271,265,270,272,269,267,273,271,270,273,269,272,274,271,273,272,274,273,275,274,272,276,278,277,276,277,279,280,277,278,281,279,277,282,280,278,283,280,282,284,283,282,285,284,282,286,279,281,287,286,281,288,286,287,289,286,288,290,284,285,290,289,288,291,290,285,291,289,290,292,294,293,295,292,293,293,294,296,297,295,293,294,298,296,299,296,298,299,298,300,301,300,298,302,295,297,303,302,297,303,304,302,302,304,305,306,300,301,304,306,305,307,306,301,305,306,307,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,376,379,378,378,380,377,378,379,381,380,382,377,379,383,381,383,377,382,382,381,383,384,386,385,387,384,385,385,386,388,385,389,387,390,388,386,387,389,391,389,390,391,386,391,390 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *230 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh treeHigh, Model::RootNode + C: "OO",4748231109180108935,0 + + ;Geometry::, Model::Mesh treeHigh + C: "OO",4795598556341714983,4748231109180108935 + + ;Material::foliage, Model::Mesh treeHigh + C: "OO",7192,4748231109180108935 + + ;Material::wood, Model::Mesh treeHigh + C: "OO",7178,4748231109180108935 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHigh.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHigh.fbx.import new file mode 100644 index 0000000..ba224e8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHigh.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dmiaqfryfntv2" +path="res://.godot/imported/treeHigh.fbx-0119c808301514b4c23e1c9a576cd193.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHigh.fbx" +dest_files=["res://.godot/imported/treeHigh.fbx-0119c808301514b4c23e1c9a576cd193.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighCrooked.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighCrooked.fbx new file mode 100644 index 0000000..630d53d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighCrooked.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 765 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "treeHighCrooked.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "treeHighCrooked.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4792048517432813164, "Model::treeHighCrooked", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5039426232353558854, "Geometry::", "Mesh" { + Vertices: *1248 { + a: 1.584724,8.909026,-0.1937343,1.604343,8.463057,-0.1937343,1.584724,8.909026,0.2526656,1.604343,8.463057,0.2526656,1.584724,8.909026,-0.1937343,1.584724,8.909026,0.2526656,0.6196394,9.003503,-0.3305343,0.6196394,9.003503,0.3894656,-1.4432,0,-1.4432,1.4432,0,-1.4432,-0.93808,1.7648,-0.93808,0.93808,1.7648,-0.93808,-1.4432,0,-1.4432,-0.93808,1.7648,-0.93808,-1.4432,0,1.4432,-0.93808,1.7648,0.93808,1.4432,0,1.4432,-1.4432,0,1.4432,0.93808,1.7648,0.93808,-0.93808,1.7648,0.93808,1.4432,0,-1.4432,1.4432,0,1.4432,0.93808,1.7648,-0.93808,0.93808,1.7648,0.93808,1.4432,0,1.4432,1.4432,0,-1.4432,-1.4432,0,1.4432,-1.4432,0,-1.4432,0.6512826,8.284198,0.3894656,0.6196394,9.003503,0.3894656,1.604343,8.463057,0.2526656,1.584724,8.909026,0.2526656,0.6512826,8.284198,-0.3305343,1.604343,8.463057,-0.1937343,0.6196394,9.003503,-0.3305343,1.584724,8.909026,-0.1937343,1.604343,8.463057,0.2526656,1.604343,8.463057,-0.1937343,0.6512826,8.284198,0.3894656,0.6512826,8.284198,-0.3305343,-0.93808,1.7648,-0.93808,-0.5558124,10.4544,-0.5558124,-0.93808,1.7648,0.93808,-0.5558124,10.4544,0.5558124,0.2980023,5.85065,1.879421,-0.0619977,5.85065,1.879421,0.2980023,6.290225,1.860083,-0.0619977,6.290225,1.860083,0.4780023,6.46079,0.7314969,0.2980023,6.290225,1.860083,-0.2419977,6.46079,0.7314969,-0.0619977,6.290225,1.860083,-0.2419977,6.46079,0.7314969,-0.0619977,6.290225,1.860083,-0.2419977,5.58164,0.7701719,-0.0619977,5.85065,1.879421,0.4780023,6.46079,0.7314969,0.4780023,5.58164,0.7701719,0.2980023,6.290225,1.860083,0.2980023,5.85065,1.879421,0.4780023,5.58164,0.7701719,-0.2419977,5.58164,0.7701719,0.2980023,5.85065,1.879421,-0.0619977,5.85065,1.879421,-0.1226793,3.175712,-1.576689,0.3813207,3.175712,-1.576689,-0.1226793,3.679225,-1.554539,0.3813207,3.679225,-1.554539,0.3813207,3.175712,-1.576689,0.5293207,2.997091,-0.8838698,0.3813207,3.679225,-1.554539,0.5293207,3.796318,-0.8487107,-0.1226793,3.175712,-1.576689,-0.1226793,3.679225,-1.554539,-0.2706793,2.997091,-0.8838698,-0.2706793,3.796318,-0.8487107,0.5293207,3.796318,-0.8487107,-0.2706793,3.796318,-0.8487107,0.3813207,3.679225,-1.554539,-0.1226793,3.679225,-1.554539,0.5293207,2.997091,-0.8838698,0.3813207,3.175712,-1.576689,-0.2706793,2.997091,-0.8838698,-0.1226793,3.175712,-1.576689,0.4780023,6.46079,0.7314969,0.5558124,10.4544,0.5558124,0.4780023,5.58164,0.7701719,-0.2419977,6.46079,0.7314969,0.93808,1.7648,0.93808,-0.5558124,10.4544,0.5558124,-0.93808,1.7648,0.93808,-0.2419977,5.58164,0.7701719,-0.2706793,3.796318,-0.8487107,-0.5558124,10.4544,-0.5558124,-0.2706793,2.997091,-0.8838698,0.5293207,3.796318,-0.8487107,-0.93808,1.7648,-0.93808,0.5558124,10.4544,-0.5558124,0.93808,1.7648,-0.93808,0.5293207,2.997091,-0.8838698,0.6196394,9.003503,0.3894656,0.5558124,10.4544,0.5558124,0.6196394,9.003503,-0.3305343,0.6512826,8.284198,0.3894656,0.5558124,10.4544,-0.5558124,0.93808,1.7648,0.93808,0.6512826,8.284198,-0.3305343,0.93808,1.7648,-0.93808,-1.006437,24.49185,-0.9425555,5.775292E-14,29.7258,-0.1091935,-1.423316,24.52521,0.06332775,-1.006437,24.49185,-0.9425555,6.497203E-14,24.47802,-1.359206,5.775292E-14,29.7258,-0.1091935,5.775292E-14,29.7258,-0.1091935,1.423316,24.52521,0.06332775,1.006437,24.55858,1.069211,-1.423316,24.52521,0.06332775,5.775292E-14,29.7258,-0.1091935,-1.006437,24.55858,1.069211,6.497203E-14,24.47802,-1.359206,1.006437,24.49185,-0.9425555,5.775292E-14,29.7258,-0.1091935,5.775292E-14,29.7258,-0.1091935,1.006437,24.49185,-0.9425555,1.423316,24.52521,0.06332775,1.006437,24.55858,1.069211,6.497203E-14,24.57241,1.485861,5.775292E-14,29.7258,-0.1091935,6.497203E-14,24.57241,1.485861,-1.006437,24.55858,1.069211,5.775292E-14,29.7258,-0.1091935,3.806707,14.78026,-0.2679996,2.615199,14.63682,2.624821,2.874071,17.17237,-0.04187826,2.0281,17.07054,2.012024,0.0102693,21.06595,2.004671,-0.1713804,23.1848,1.381066,1.422605,21.18703,1.417516,0.8303039,23.17206,0.9969349,2.007614,21.23718,-2.887646E-14,1.422605,21.18703,1.417516,1.268307,23.13898,-7.219114E-15,0.8303039,23.17206,0.9969349,-1.800935,18.81912,-1.996502,-1.402066,20.94487,-1.417516,-2.624891,18.74848,-7.219114E-15,-1.987075,20.89472,-2.887646E-14,2.177475,19.16019,-1.996502,3.001431,19.23083,-7.219114E-15,1.422605,21.18703,-1.417516,2.007614,21.23718,-2.887646E-14,-3.616851,10.4544,-3.616851,7.219114E-15,10.4544,-5.115,-2.567965,13.3144,-2.567965,6.497203E-14,13.3144,-3.63165,2.615199,15.18143,-3.136458,3.806707,14.78026,-0.2679996,2.0281,17.4572,-2.078484,2.874071,17.17237,-0.04187826,-3.63165,13.3144,-4.331469E-14,-2.567965,13.3144,2.567965,-5.115,10.4544,-7.219114E-15,-3.616851,10.4544,3.616851,-1.987075,20.89472,-2.887646E-14,-1.402066,20.94487,1.417516,-2.624891,18.74848,-7.219114E-15,-1.800935,18.81912,1.996502,3.616851,10.4544,3.616851,7.219114E-15,10.4544,5.115,2.567965,13.3144,2.567965,6.497203E-14,13.3144,3.63165,-1.987075,20.89472,-2.887646E-14,-1.532795,23.13898,-7.219114E-15,-1.402066,20.94487,1.417516,-1.136065,23.17091,0.9623454,5.775292E-14,23.07615,-1.894375,1.417516,23.09561,-1.307544,6.497203E-14,24.47802,-1.359206,1.006437,24.49185,-0.9425555,2.615199,14.63682,2.624821,-0.2613584,14.83514,3.84743,2.0281,17.07054,2.012024,-0.01425591,17.21134,2.880076,-1.417516,23.18961,1.52593,-1.006437,24.55858,1.069211,5.775292E-14,23.20908,2.112762,6.497203E-14,24.57241,1.485861,0.1882705,18.98965,2.82348,0.0102693,21.06595,2.004671,2.177475,19.16019,1.996502,1.422605,21.18703,1.417516,2.004671,23.14261,0.1091935,1.417516,23.09561,-1.307544,1.417516,23.18961,1.52593,1.268307,23.13898,-7.219114E-15,0.8303039,23.17206,0.9969349,0.8501797,23.10545,-1.011048,5.775292E-14,23.20908,2.112762,5.775292E-14,23.07615,-1.894375,-0.1713804,23.1848,1.381066,-0.1634476,23.09227,-1.4083,-1.417516,23.18961,1.52593,-1.136065,23.17091,0.9623454,-1.417516,23.09561,-1.307544,-1.143747,23.10663,-0.97549,-1.532795,23.13898,-7.219114E-15,-2.004671,23.14261,0.1091935,-1.417516,23.09561,-1.307544,-1.006437,24.49185,-0.9425555,-2.004671,23.14261,0.1091935,-1.423316,24.52521,0.06332775,3.63165,13.3144,-4.331469E-14,5.115,10.4544,-7.219114E-15,2.567965,13.3144,2.567965,3.616851,10.4544,3.616851,-1.402066,20.94487,1.417516,-1.136065,23.17091,0.9623454,0.0102693,21.06595,2.004671,-0.1713804,23.1848,1.381066,-3.137915,15.80364,-3.077641,-2.056611,17.89897,-2.036724,-4.329424,15.6602,-0.1848204,-2.902583,17.79713,0.01717898,-3.616851,10.4544,-3.616851,-2.567965,13.3144,-2.567965,-5.115,10.4544,-7.219114E-15,-3.63165,13.3144,-4.331469E-14,1.423316,24.52521,0.06332775,2.004671,23.14261,0.1091935,1.006437,24.55858,1.069211,1.417516,23.18961,1.52593,-1.402066,20.94487,-1.417516,-1.143747,23.10663,-0.97549,-1.987075,20.89472,-2.887646E-14,-1.532795,23.13898,-7.219114E-15,-1.800935,18.81912,1.996502,-1.402066,20.94487,1.417516,0.1882705,18.98965,2.82348,0.0102693,21.06595,2.004671,0.0102693,21.06595,-2.004671,1.422605,21.18703,-1.417516,-0.1634476,23.09227,-1.4083,0.8501797,23.10545,-1.011048,7.219114E-15,10.4544,-5.115,3.616851,10.4544,-3.616851,6.497203E-14,13.3144,-3.63165,2.567965,13.3144,-2.567965,-1.423316,24.52521,0.06332775,-1.006437,24.55858,1.069211,-2.004671,23.14261,0.1091935,-1.417516,23.18961,1.52593,5.775292E-14,23.07615,-1.894375,6.497203E-14,24.47802,-1.359206,-1.417516,23.09561,-1.307544,-1.006437,24.49185,-0.9425555,2.0281,17.4572,-2.078484,1.752797,19.12378,-1.459727,-0.01425591,17.75817,-2.904776,0.1246394,18.9842,-2.288858,1.417516,23.18961,1.52593,5.775292E-14,23.20908,2.112762,1.006437,24.55858,1.069211,6.497203E-14,24.57241,1.485861,-0.2613584,15.60532,-4.30025,-0.01425591,17.75817,-2.904776,-3.137915,15.80364,-3.077641,-2.056611,17.89897,-2.036724,1.417516,23.09561,-1.307544,2.004671,23.14261,0.1091935,1.006437,24.49185,-0.9425555,1.423316,24.52521,0.06332775,-1.800935,18.81912,-1.996502,0.1882705,18.98965,-2.82348,-1.402066,20.94487,-1.417516,0.0102693,21.06595,-2.004671,7.219114E-15,10.4544,5.115,-3.616851,10.4544,3.616851,6.497203E-14,13.3144,3.63165,-2.567965,13.3144,2.567965,2.0281,17.4572,-2.078484,2.874071,17.17237,-0.04187826,1.752797,19.12378,-1.459727,2.336887,19.17386,0.1473175,0.1882705,18.98965,-2.82348,2.177475,19.16019,-1.996502,0.0102693,21.06595,-2.004671,1.422605,21.18703,-1.417516,3.616851,10.4544,-3.616851,5.115,10.4544,-7.219114E-15,2.567965,13.3144,-2.567965,3.63165,13.3144,-4.331469E-14,-2.567965,13.3144,-2.567965,-1.95124,15.56767,-1.95124,-3.63165,13.3144,-4.331469E-14,-2.795217,15.47532,-7.219114E-15,2.567965,13.3144,2.567965,6.497203E-14,13.3144,3.63165,2.181598,14.72604,2.181598,7.941025E-14,14.88447,3.023921,6.497203E-14,13.3144,3.63165,-2.567965,13.3144,2.567965,7.941025E-14,14.88447,3.023921,-2.051805,15.20025,2.051805,-0.01425591,17.75817,-2.904776,0.1246394,18.9842,-2.288858,-2.056611,17.89897,-2.036724,-1.678087,18.82965,-1.674967,-4.329424,15.6602,-0.1848204,-2.902583,17.79713,0.01717898,-3.137915,15.25904,2.683638,-2.056611,17.51231,2.053784,2.567965,13.3144,-2.567965,3.63165,13.3144,-4.331469E-14,2.068259,15.14013,-2.068259,3.041753,14.8384,-2.887646E-14,1.422605,21.18703,-1.417516,2.007614,21.23718,-2.887646E-14,0.8501797,23.10545,-1.011048,1.268307,23.13898,-7.219114E-15,-4.329424,15.6602,-0.1848204,-3.137915,15.25904,2.683638,-3.137915,15.80364,-3.077641,-2.795217,15.47532,-7.219114E-15,-2.051805,15.20025,2.051805,-1.95124,15.56767,-1.95124,-0.2613584,14.83514,3.84743,7.941025E-14,14.88447,3.023921,2.181598,14.72604,2.181598,2.615199,14.63682,2.624821,-0.2613584,15.60532,-4.30025,8.662937E-14,15.43598,-2.810446,2.068259,15.14013,-2.068259,2.615199,15.18143,-3.136458,3.041753,14.8384,-2.887646E-14,3.806707,14.78026,-0.2679996,2.007614,21.23718,-2.887646E-14,3.001431,19.23083,-7.219114E-15,1.422605,21.18703,1.417516,2.177475,19.16019,1.996502,-0.2613584,14.83514,3.84743,-3.137915,15.25904,2.683638,-0.01425591,17.21134,2.880076,-2.056611,17.51231,2.053784,-1.402066,20.94487,-1.417516,0.0102693,21.06595,-2.004671,-1.143747,23.10663,-0.97549,-0.1634476,23.09227,-1.4083,6.497203E-14,13.3144,-3.63165,2.567965,13.3144,-2.567965,8.662937E-14,15.43598,-2.810446,2.068259,15.14013,-2.068259,-0.01425591,17.21134,2.880076,-2.056611,17.51231,2.053784,0.172764,18.98833,2.374779,-1.544396,18.84111,1.808914,2.874071,17.17237,-0.04187826,2.0281,17.07054,2.012024,2.336887,19.17386,0.1473175,1.706271,19.11979,1.666573,2.0281,17.07054,2.012024,-0.01425591,17.21134,2.880076,1.706271,19.11979,1.666573,0.172764,18.98833,2.374779,3.63165,13.3144,-4.331469E-14,2.567965,13.3144,2.567965,3.041753,14.8384,-2.887646E-14,2.181598,14.72604,2.181598,-2.902583,17.79713,0.01717898,-2.397987,18.76793,0.1089466,-2.056611,17.51231,2.053784,-1.544396,18.84111,1.808914,2.615199,15.18143,-3.136458,2.0281,17.4572,-2.078484,-0.2613584,15.60532,-4.30025,-0.01425591,17.75817,-2.904776,-2.567965,13.3144,-2.567965,6.497203E-14,13.3144,-3.63165,-1.95124,15.56767,-1.95124,8.662937E-14,15.43598,-2.810446,-2.056611,17.89897,-2.036724,-1.678087,18.82965,-1.674967,-2.902583,17.79713,0.01717898,-2.397987,18.76793,0.1089466,-3.63165,13.3144,-4.331469E-14,-2.795217,15.47532,-7.219114E-15,-2.567965,13.3144,2.567965,-2.051805,15.20025,2.051805,5.115,10.4544,-7.219114E-15,3.616851,10.4544,-3.616851,3.616851,10.4544,3.616851,7.219114E-15,10.4544,5.115,0.5558124,10.4544,0.5558124,-0.5558124,10.4544,0.5558124,0.5558124,10.4544,-0.5558124,7.219114E-15,10.4544,-5.115,-3.616851,10.4544,3.616851,-0.5558124,10.4544,-0.5558124,-3.616851,10.4544,-3.616851,-5.115,10.4544,-7.219114E-15,-1.544396,18.84111,1.808914,-1.800935,18.81912,1.996502,0.172764,18.98833,2.374779,-2.397987,18.76793,0.1089466,0.1882705,18.98965,2.82348,-2.624891,18.74848,-7.219114E-15,1.706271,19.11979,1.666573,2.177475,19.16019,1.996502,-1.800935,18.81912,-1.996502,-1.678087,18.82965,-1.674967,0.1246394,18.9842,-2.288858,0.1882705,18.98965,-2.82348,1.752797,19.12378,-1.459727,2.177475,19.16019,-1.996502,2.336887,19.17386,0.1473175,3.001431,19.23083,-7.219114E-15 + } + PolygonVertexIndex: *738 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,84,-86,85,86,-89,85,89,-88,90,88,-87,87,89,-92,89,90,-92,86,91,-91,92,94,-94,95,92,-94,93,94,-97,93,97,-96,98,96,-95,95,97,-100,97,98,-100,94,99,-99,100,102,-102,103,100,-102,104,101,-103,101,105,-104,102,106,-105,103,105,-107,104,106,-108,105,107,-107,108,110,-110,111,113,-113,114,116,-116,117,119,-119,120,122,-122,123,125,-125,126,128,-128,129,131,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,195,-195,195,197,-194,198,196,-195,199,193,-198,200,196,-199,201,199,-198,202,200,-199,203,200,-203,204,199,-202,205,204,-202,206,203,-203,206,204,-206,207,206,-203,207,204,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,321,322,-324,323,324,-322,323,322,-326,321,324,-327,324,327,-327,327,328,-327,326,328,-330,322,330,-326,325,330,-332,331,330,-333,330,333,-333,328,334,-330,332,333,-335,335,329,-335,335,334,-334,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,389,-392,393,392,-392,392,394,-390,395,389,-395,396,393,-392,397,395,-395,397,393,-397,398,395,-398,396,398,-398,399,398,-397,400,402,-402,403,400,-402,401,402,-405,405,403,-402,402,406,-405,404,406,-408,405,408,-404,403,408,-410,409,408,-411,408,411,-411,410,411,-413,411,413,-413,406,414,-408,412,413,-415,415,407,-415,415,414,-414 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2214 { + a: 0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0,0.2751701,-0.9613956,0,0.1714603,-0.985191,0,0.2751701,-0.9613956,0,0.1714603,-0.985191,0,0.2751701,-0.9613956,0,0.1714603,-0.985191,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.985191,0.1714603,0,-0.985191,0.1714603,0,-0.985191,0.1714603,0,-0.9613956,0.2751701,0,0,0.2751701,0.9613956,0,0.1714603,0.985191,0,0.2751701,0.9613956,0,0.1714603,0.985191,0,0.2751701,0.9613956,0,0.1714603,0.985191,0.9613956,0.2751701,0,0.985191,0.1714603,0,0.9613956,0.2751701,0,0.985191,0.1714603,0,0.9613956,0.2751701,0,0.985191,0.1714603,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,-0.985191,0.1714603,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.9887716,0.1494343,0,0.9887716,0.1494343,0,0.9887716,0.1494343,0,0.9887716,0.1494343,0,0.9887716,0.1494343,0,0.9887716,0.1494343,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.1714603,0.985191,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.1714603,-0.985191,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.1714603,-0.985191,0,0.1714603,-0.985191,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.1714603,-0.985191,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.1714603,-0.985191,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.985191,0.1714603,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.985191,0.1714603,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.985191,0.1714603,0,0.985191,0.1714603,0,0.985191,0.1714603,0,0.9990338,0.04394889,0,-0.6671573,0.3090624,-0.6777769,-0.9435029,0.3311821,-0.01098645,-0.8957203,0.2325735,-0.3789389,-0.6671573,0.3090624,-0.6777769,-0.3710195,0.215177,-0.9033512,0,0.2999001,-0.9539706,0.8957203,0.257176,0.3626922,0.6671573,0.3533018,0.6558041,0.9435029,0.3311821,-0.01098645,-0.9435029,0.3311821,-0.01098645,-0.6671573,0.3533018,0.6558041,-0.8957203,0.257176,0.3626922,0,0.2999001,-0.9539706,0.3710195,0.215177,-0.9033512,0.6671573,0.3090624,-0.6777769,0.8957203,0.2325735,-0.3789389,0.9435029,0.3311821,-0.01098645,0.6671573,0.3090624,-0.6777769,0.6671573,0.3533018,0.6558041,0.3710195,0.2745726,0.8871045,0,0.3624641,0.9319977,0,0.3624641,0.9319977,-0.3710195,0.2745726,0.8871045,-0.6671573,0.3533018,0.6558041,0.9322374,0.3602414,0.03405284,0.948837,0.3143649,0.02971623,0.6737553,0.3291249,0.6616122,0.6841006,0.2824955,0.6724602,0.6737553,0.3291249,0.6616122,0.948837,0.3143649,0.02971623,-0.02795279,0.3260553,0.9449374,0.6377769,0.3831284,0.6681716,-0.04336679,0.2786493,0.9594133,0.6385053,0.3371084,0.6918589,-0.04336679,0.2786493,0.9594133,0.6377769,0.3831284,0.6681716,0.9135311,0.4067689,0,0.9320253,0.3623151,0.007515698,0.6377769,0.3831284,0.6681716,0.6385053,0.3371084,0.6918589,0.6377769,0.3831284,0.6681716,0.9320253,0.3623151,0.007515698,-0.6869587,0.3081511,-0.6581268,-0.9585674,0.2848659,0,-0.6936824,0.2689821,-0.6681717,-0.9694366,0.2453416,0,-0.6936824,0.2689821,-0.6681717,-0.9585674,0.2848659,0,0.6244842,0.4205813,-0.6581267,0.6377769,0.3831284,-0.6681716,0.8960929,0.4438664,0,0.9135311,0.4067689,0,0.8960929,0.4438664,0,0.6377769,0.3831284,-0.6681716,-0.6277025,0.4604119,-0.6277025,-0.6428906,0.4163931,-0.6428906,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0,0.4604119,-0.8877054,-0.6428906,0.4163931,-0.6428906,0.6737553,0.4472689,-0.5882214,0.6841006,0.4034982,-0.6076147,0.9322374,0.3602414,0.03405284,0.948837,0.3143649,0.02971623,0.9322374,0.3602414,0.03405284,0.6841006,0.4034982,-0.6076147,-0.9091846,0.4163931,0,-0.8877054,0.4604119,0,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.8877054,0.4604119,0,-0.9694366,0.2453416,0,-0.9585674,0.2848659,0,-0.6936824,0.2689821,0.6681717,-0.6869587,0.3081511,0.6581268,-0.6936824,0.2689821,0.6681717,-0.9585674,0.2848659,0,0.6277025,0.4604119,0.6277025,0.6428906,0.4163931,0.6428906,0,0.4604119,0.8877054,0,0.4163931,0.9091846,0,0.4604119,0.8877054,0.6428906,0.4163931,0.6428906,-0.9694366,0.2453416,0,-0.6936824,0.2689821,0.6681717,-0.9800944,0.1983886,0.007553337,-0.7059917,0.2218855,0.6725641,-0.9800944,0.1983886,0.007553337,-0.6936824,0.2689821,0.6681717,0,0.3566471,-0.9342393,0,0.2999001,-0.9539706,0.6518824,0.3655996,-0.6643691,0.6671573,0.3090624,-0.6777769,0.6518824,0.3655996,-0.6643691,0,0.2999001,-0.9539706,0.6737553,0.3291249,0.6616122,0.6841006,0.2824955,0.6724602,0.04972418,0.3721471,0.9268409,0.04497019,0.3265586,0.9441065,0.04972418,0.3721471,0.9268409,0.6841006,0.2824955,0.6724602,-0.6518824,0.4088261,0.6386788,0,0.4177787,0.9085488,-0.6671573,0.3533018,0.6558041,0,0.3624641,0.9319977,-0.6671573,0.3533018,0.6558041,0,0.4177787,0.9085488,-0.0312372,0.3643662,0.9307318,0.6244842,0.4205813,0.6581267,-0.02795279,0.3260553,0.9449374,0.6377769,0.3831284,0.6681716,-0.02795279,0.3260553,0.9449374,0.6244842,0.4205813,0.6581267,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,-0.6518824,0.3655996,-0.6643691,-0.9219008,0.3872128,-0.01284518,-0.6671573,0.3090624,-0.6777769,-0.9435029,0.3311821,-0.01098645,-0.6671573,0.3090624,-0.6777769,-0.9219008,0.3872128,-0.01284518,0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.8877054,0.4604119,0,0.6277025,0.4604119,0.6277025,0.8877054,0.4604119,0,0.6428906,0.4163931,0.6428906,-0.6936824,0.2689821,0.6681717,-0.02795279,0.3260553,0.9449374,-0.7059917,0.2218855,0.6725641,-0.04336679,0.2786493,0.9594133,-0.7059917,0.2218855,0.6725641,-0.02795279,0.3260553,0.9449374,-0.5743069,0.5822501,-0.5754619,-0.832789,0.5511337,0.05209747,-0.5941601,0.5417455,-0.5945465,-0.8588966,0.5098761,0.04819748,-0.5941601,0.5417455,-0.5945465,-0.832789,0.5511337,0.05209747,-0.6277025,0.4604119,-0.6277025,-0.8877054,0.4604119,0,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6428906,0.4163931,-0.6428906,-0.8877054,0.4604119,0,0.9435029,0.3311821,-0.01098645,0.6671573,0.3533018,0.6558041,0.9219008,0.3872128,-0.01284518,0.6518824,0.4088261,0.6386788,0.9219008,0.3872128,-0.01284518,0.6671573,0.3533018,0.6558041,-0.6936824,0.2689821,-0.6681717,-0.9694366,0.2453416,0,-0.7133883,0.2212101,-0.6649384,-0.9800944,0.1983886,0.007553337,-0.7133883,0.2212101,-0.6649384,-0.9694366,0.2453416,0,-0.6869587,0.3081511,0.6581268,-0.0312372,0.3643662,0.9307318,-0.6936824,0.2689821,0.6681717,-0.02795279,0.3260553,0.9449374,-0.6936824,0.2689821,0.6681717,-0.0312372,0.3643662,0.9307318,-0.02795279,0.3260553,-0.9449374,-0.04333138,0.2786525,-0.9594139,0.6377769,0.3831284,-0.6681716,0.6461009,0.3378008,-0.6844299,0.6377769,0.3831284,-0.6681716,-0.04333138,0.2786525,-0.9594139,0,0.4604119,-0.8877054,0,0.4163931,-0.9091846,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.6277025,0.4604119,-0.6277025,0,0.4163931,-0.9091846,-0.9435029,0.3311821,-0.01098645,-0.9219008,0.3872128,-0.01284518,-0.6671573,0.3533018,0.6558041,-0.6518824,0.4088261,0.6386788,-0.6671573,0.3533018,0.6558041,-0.9219008,0.3872128,-0.01284518,0,0.3566471,-0.9342393,-0.6518824,0.3655996,-0.6643691,0,0.2999001,-0.9539706,-0.6671573,0.3090624,-0.6777769,0,0.2999001,-0.9539706,-0.6518824,0.3655996,-0.6643691,0.6841006,0.4034982,-0.6076147,0.04497019,0.4976823,-0.8661928,0.7256306,0.3416241,-0.5972882,0.08198084,0.4399623,-0.8942663,0.7256306,0.3416241,-0.5972882,0.04497019,0.4976823,-0.8661928,0.6518824,0.4088261,0.6386788,0.6671573,0.3533018,0.6558041,0,0.4177787,0.9085488,0,0.3624641,0.9319977,0,0.4177787,0.9085488,0.6671573,0.3533018,0.6558041,0.04972418,0.539228,-0.8406907,-0.5743069,0.5822501,-0.5754619,0.04497019,0.4976823,-0.8661928,-0.5941601,0.5417455,-0.5945465,0.04497019,0.4976823,-0.8661928,-0.5743069,0.5822501,-0.5754619,0.6518824,0.3655996,-0.6643691,0.6671573,0.3090624,-0.6777769,0.9219008,0.3872128,-0.01284518,0.9435029,0.3311821,-0.01098645,0.9219008,0.3872128,-0.01284518,0.6671573,0.3090624,-0.6777769,-0.6869587,0.3081511,-0.6581268,-0.6936824,0.2689821,-0.6681717,-0.0312372,0.3643662,-0.9307318,-0.02795279,0.3260553,-0.9449374,-0.0312372,0.3643662,-0.9307318,-0.6936824,0.2689821,-0.6681717,0,0.4604119,0.8877054,0,0.4163931,0.9091846,-0.6277025,0.4604119,0.6277025,-0.6428906,0.4163931,0.6428906,-0.6277025,0.4604119,0.6277025,0,0.4163931,0.9091846,0.6841006,0.4034982,-0.6076147,0.7256306,0.3416241,-0.5972882,0.948837,0.3143649,0.02971623,0.9658942,0.254972,0.04514262,0.948837,0.3143649,0.02971623,0.7256306,0.3416241,-0.5972882,-0.0312372,0.3643662,-0.9307318,-0.02795279,0.3260553,-0.9449374,0.6244842,0.4205813,-0.6581267,0.6377769,0.3831284,-0.6681716,0.6244842,0.4205813,-0.6581267,-0.02795279,0.3260553,-0.9449374,0.6277025,0.4604119,-0.6277025,0.6428906,0.4163931,-0.6428906,0.8877054,0.4604119,0,0.9091846,0.4163931,0,0.8877054,0.4604119,0,0.6428906,0.4163931,-0.6428906,-0.6428906,0.4163931,-0.6428906,-0.9091846,0.4163931,0,-0.6610326,0.3609734,-0.6578253,-0.9323742,0.3608963,-0.02078578,-0.6610326,0.3609734,-0.6578253,-0.9091846,0.4163931,0,0.6428906,0.4163931,0.6428906,0.6578095,0.3609734,0.6610483,0,0.4163931,0.9091846,-0.02417072,0.3608688,0.9323033,0,0.4163931,0.9091846,0.6578095,0.3609734,0.6610483,0,0.4163931,0.9091846,-0.02417072,0.3608688,0.9323033,-0.6428906,0.4163931,0.6428906,-0.68155,0.3607924,0.6366463,-0.6428906,0.4163931,0.6428906,-0.02417072,0.3608688,0.9323033,0.04497019,0.4976823,-0.8661928,-0.5941601,0.5417455,-0.5945465,0.08198084,0.4399623,-0.8942663,-0.6054488,0.4900203,-0.6271458,0.08198084,0.4399623,-0.8942663,-0.5941601,0.5417455,-0.5945465,-0.832789,0.5511337,0.05209747,-0.5743069,0.4641061,0.6743717,-0.8588966,0.5098761,0.04819748,-0.5941601,0.4207428,0.6855285,-0.8588966,0.5098761,0.04819748,-0.5743069,0.4641061,0.6743717,0.6428906,0.4163931,-0.6428906,0.6366273,0.360792,-0.681568,0.9091846,0.4163931,0,0.932371,0.3608951,-0.02095214,0.9091846,0.4163931,0,0.6366273,0.360792,-0.681568,0.6377769,0.3831284,-0.6681716,0.6461009,0.3378008,-0.6844299,0.9135311,0.4067689,0,0.9320253,0.3623151,0.007515698,0.9135311,0.4067689,0,0.6461009,0.3378008,-0.6844299,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,0.9135311,0.4067689,0,0.6377769,0.3831284,0.6681716,0.8960929,0.4438664,0,0.6244842,0.4205813,0.6581267,0.8960929,0.4438664,0,0.6377769,0.3831284,0.6681716,0.04972418,0.3721471,0.9268409,0.04497019,0.3265586,0.9441065,-0.5743069,0.4641061,0.6743717,-0.5941601,0.4207428,0.6855285,-0.5743069,0.4641061,0.6743717,0.04497019,0.3265586,0.9441065,-0.6936824,0.2689821,-0.6681717,-0.7133883,0.2212101,-0.6649384,-0.02795279,0.3260553,-0.9449374,-0.04333138,0.2786525,-0.9594139,-0.02795279,0.3260553,-0.9449374,-0.7133883,0.2212101,-0.6649384,0,0.4163931,-0.9091846,-0.02400036,0.3608704,-0.9323072,0.6428906,0.4163931,-0.6428906,0.6366273,0.360792,-0.681568,0.6428906,0.4163931,-0.6428906,-0.02400036,0.3608704,-0.9323072,0.04497019,0.3265586,0.9441065,0.08163232,0.2646424,0.9608853,-0.5941601,0.4207428,0.6855285,-0.5839704,0.3592494,0.727955,-0.5941601,0.4207428,0.6855285,0.08163232,0.2646424,0.9608853,0.948837,0.3143649,0.02971623,0.9658942,0.254972,0.04514262,0.6841006,0.2824955,0.6724602,0.7053901,0.2241362,0.6724492,0.6841006,0.2824955,0.6724602,0.9658942,0.254972,0.04514262,0.6841006,0.2824955,0.6724602,0.7053901,0.2241362,0.6724492,0.04497019,0.3265586,0.9441065,0.08163232,0.2646424,0.9608853,0.04497019,0.3265586,0.9441065,0.7053901,0.2241362,0.6724492,0.9091846,0.4163931,0,0.932371,0.3608951,-0.02095214,0.6428906,0.4163931,0.6428906,0.6578095,0.3609734,0.6610483,0.6428906,0.4163931,0.6428906,0.932371,0.3608951,-0.02095214,-0.8588966,0.5098761,0.04819748,-0.5941601,0.4207428,0.6855285,-0.8879359,0.4554401,0.06437476,-0.5839704,0.3592494,0.727955,-0.8879359,0.4554401,0.06437476,-0.5941601,0.4207428,0.6855285,0.6737553,0.4472689,-0.5882214,0.04972418,0.539228,-0.8406907,0.6841006,0.4034982,-0.6076147,0.04497019,0.4976823,-0.8661928,0.6841006,0.4034982,-0.6076147,0.04972418,0.539228,-0.8406907,-0.6428906,0.4163931,-0.6428906,-0.6610326,0.3609734,-0.6578253,0,0.4163931,-0.9091846,-0.02400036,0.3608704,-0.9323072,0,0.4163931,-0.9091846,-0.6610326,0.3609734,-0.6578253,-0.5941601,0.5417455,-0.5945465,-0.8588966,0.5098761,0.04819748,-0.6054488,0.4900203,-0.6271458,-0.8879359,0.4554401,0.06437476,-0.6054488,0.4900203,-0.6271458,-0.8588966,0.5098761,0.04819748,-0.9091846,0.4163931,0,-0.6428906,0.4163931,0.6428906,-0.9323742,0.3608963,-0.02078578,-0.68155,0.3607924,0.6366463,-0.9323742,0.3608963,-0.02078578,-0.6428906,0.4163931,0.6428906,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *832 { + a: 0.7627337,34.76682,0.7627337,33.00933,-0.9947466,34.76682,-0.9947466,33.00933,0.7627337,-2.792069,-0.9947466,-2.792069,1.301316,1.02564,-1.533329,1.02564,5.68189,-1.563486,-5.68189,-1.563486,3.693228,5.663541,-3.693228,5.663541,-5.68189,-1.563486,-3.693228,5.663541,5.68189,-1.563486,3.693228,5.663541,5.68189,-1.563486,-5.68189,-1.563486,3.693228,5.663541,-3.693228,5.663541,5.68189,-1.563486,-5.68189,-1.563486,3.693228,5.663541,-3.693228,5.663541,5.68189,5.68189,5.68189,-5.68189,-5.68189,5.68189,-5.68189,-5.68189,2.3224,32.60268,2.199064,35.43464,6.11306,33.30686,6.036592,35.06267,-2.355101,32.6041,-6.14576,33.30828,-2.231765,35.43606,-6.069292,35.0641,-0.9947466,12.35358,0.7627337,12.35358,-1.533329,8.53587,1.301316,8.53587,-3.693228,6.779005,-2.188238,41.02312,3.693228,6.779005,2.188238,41.02312,1.173237,22.68661,-0.2440854,22.68661,1.173237,24.41889,-0.2440854,24.41889,1.881899,0.9534647,1.173237,-3.540246,-0.9527469,0.9534647,-0.2440854,-3.540246,2.692453,25.42582,7.191863,24.75429,2.842792,21.96451,7.267032,23.02363,-2.545156,25.41942,-2.695494,21.95812,-7.044566,24.74789,-7.119735,23.01724,1.881899,8.125899,-0.9527469,8.125899,1.173237,12.61961,-0.2440854,12.61961,0.4829892,12.21791,-1.501263,12.21791,0.4829892,14.20217,-1.501263,14.20217,5.763173,12.47727,2.974004,11.77401,5.67785,14.45969,2.838571,14.9207,-5.973614,12.48633,-5.88829,14.46875,-3.184445,11.78307,-3.049011,14.92976,-2.08394,-0.850283,1.065666,-0.850283,-1.501263,-3.667112,0.4829892,-3.667112,-2.08394,6.315426,-1.501263,9.132256,1.065666,6.315426,0.4829892,9.132256,1.881899,25.28503,2.188238,41.02312,1.881899,21.82047,-0.9527469,25.28503,3.693228,6.779005,-2.188238,41.02312,-3.693228,6.779005,-0.9527469,21.82047,1.065666,14.78484,2.188238,41.02312,1.065666,11.63524,-2.08394,14.78484,3.693228,6.779005,-2.188238,41.02312,-3.693228,6.779005,-2.08394,11.63524,-1.533329,35.3054,-2.188238,41.02312,1.301316,35.3054,-1.533329,32.47075,2.188238,41.02312,-3.693228,6.779005,1.301316,32.47075,3.693228,6.779005,-1.873776,92.59554,-0.3959229,113.7826,2.412912,92.73061,2.255429,93.10331,-2.033025,93.04758,-0.1633255,114.2037,0.3984689,113.1358,1.872028,91.94843,-2.414632,92.08438,-1.872028,91.94843,-0.3984689,113.1358,2.414632,92.08438,2.033025,93.04758,-2.255429,93.10331,0.1633255,114.2037,0.3959229,113.7826,1.873776,92.59554,-2.412912,92.73061,2.031283,91.4852,-2.257159,91.54179,0.1658748,112.6417,2.257159,91.54179,-2.031283,91.4852,-0.1658748,112.6417,6.880632,51.3236,-5.435337,50.73052,4.614362,61.21466,-4.129976,60.79358,-2.81497,77.1665,-2.594382,85.88879,3.205017,77.66492,1.629265,85.83633,3.100522,76.28101,-2.936423,76.0713,1.95875,84.23272,-2.328046,84.37099,-4.646888,68.89784,-3.118006,77.57922,3.856086,68.60937,2.919106,77.3744,3.832408,64.11241,-4.669971,64.41795,2.913013,72.8793,-3.123675,73.09623,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,8.178149,50.38395,-4.034273,48.68348,5.029813,60.03056,-3.641006,58.82323,-5.471544,41.56392,5.471544,41.56392,-7.7064,29.07815,7.7064,29.07815,-2.919106,77.3744,3.118006,77.57922,-3.856086,68.60937,4.646888,68.89784,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,-2.940016,79.51594,-2.267876,88.50575,3.097228,79.71684,1.830145,88.63363,2.821851,83.3598,-3.218187,83.44109,2.024666,89.21348,-2.263761,89.27119,5.15003,50.48471,-7.152791,51.30656,4.031892,60.57029,-4.703111,61.1538,-2.817066,81.05151,-2.021778,86.90543,3.222946,81.13475,2.26663,86.96454,-3.24771,65.48522,-2.760157,74.2867,5.229389,66.20812,3.258583,74.79996,7.892405,3.450516,5.580773,-2.130257,5.580773,9.031289,4.993334,3.020384,3.268913,6.947484,3.347164,-0.962311,2.273737E-13,11.34292,2.273737E-13,-4.441888,-0.6747261,8.460645,-0.6434943,-2.527154,-5.580773,9.031289,-4.472697,6.81123,-5.580773,-2.130257,-4.50294,-0.8222401,-6.034625,3.020384,-7.892405,3.450516,-2.537153,82.6756,-1.852775,88.54353,3.500201,82.87312,2.433747,88.68376,5.471544,41.56392,7.7064,29.07815,-5.471544,41.56392,-7.7064,29.07815,-2.818741,78.59166,-2.577995,87.59482,3.201961,79.08137,1.562294,87.651,-6.979558,43.26849,-4.646716,53.14407,5.332137,42.59246,4.094588,52.66409,-7.7064,29.07815,-5.471544,41.56392,7.7064,29.07815,5.471544,41.56392,1.849877,87.58761,2.532356,81.71946,-2.436599,87.72923,-3.504935,81.91893,-3.097228,79.71684,-1.866736,88.37613,2.940016,79.51594,2.267876,88.50575,-3.271582,67.34579,-2.766488,76.14627,5.20694,68.05179,3.253263,76.64754,2.81497,77.1665,-3.205017,77.66492,2.604015,85.50788,-1.682142,85.56213,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,-1.849877,87.58761,2.436599,87.72923,-2.532356,81.71946,3.504935,81.91893,-2.821851,83.3598,-2.024666,89.21348,3.218187,83.44109,2.263761,89.27119,-3.73893,59.60804,-3.795841,66.69021,4.921613,60.88701,3.394068,66.09705,2.817066,81.05151,-3.222946,81.13475,2.021778,86.90543,-2.26663,86.96454,-5.01448,42.78193,-3.98502,52.87694,7.280643,43.71186,4.744517,53.53719,2.537153,82.6756,-3.500201,82.87312,1.852775,88.54353,-2.433747,88.68376,3.271582,67.34579,-5.20694,68.05179,2.766488,76.14627,-3.253263,76.64754,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,4.877295,63.27612,-3.799196,62.11026,2.973507,70.09785,-3.758142,70.30281,3.24771,65.48522,-5.229389,66.20812,2.760157,74.2867,-3.258583,74.79996,7.7064,29.07815,-7.7064,29.07815,5.471544,41.56392,-5.471544,41.56392,-5.471544,44.90983,-4.157493,54.33117,5.471544,44.90983,4.211351,53.94503,5.471544,44.90983,-5.471544,44.90983,4.648315,50.81213,-4.555923,51.47455,5.471544,44.90983,-5.471544,44.90983,4.555923,51.47455,-4.371766,52.7949,-4.078526,57.44841,-3.712545,62.86541,4.653812,58.07053,3.778628,62.18257,-8.298912,46.69822,-5.067451,56.3173,3.898382,44.89243,3.592628,55.03519,5.471544,44.90983,-5.471544,44.90983,4.406825,52.54354,-4.582788,51.28193,2.936423,76.0713,-3.100522,76.28101,2.348462,84.09248,-1.95875,84.23272,10.61047,22.03216,16.07471,10.9788,-1.069244,25.98427,7.205544,16.93809,11.39476,9.358961,-0.7764142,19.48269,12.12261,-0.7009166,8.998343,0.6581504,0.8680755,-3.707116,1.069244,-6.165161,-12.12261,20.52002,-8.363104,15.85398,-11.48614,7.702558,-16.07471,8.84031,-7.841068,-0.6111796,-10.61047,-2.213055,3.123675,73.09623,4.669971,64.41795,-2.913013,72.8793,-3.832408,64.11241,3.893692,48.19994,-8.303063,50.00935,3.590955,58.34279,-5.068742,59.62747,2.818741,78.59166,-3.201961,79.08137,2.584948,87.33482,-1.6339,87.27675,5.471544,44.90983,-5.471544,44.90983,4.234296,53.78051,-4.406825,52.54354,3.760754,61.74251,-4.905715,62.98069,3.785077,69.053,-3.330838,68.44737,4.561874,64.02866,-4.183004,63.61894,3.051643,72.08091,-3.424325,71.86341,4.105726,63.44278,-4.630343,64.01011,3.495826,71.69959,-3.153386,71.16988,5.471544,44.90983,-5.471544,44.90983,4.582788,51.28193,-4.648315,50.81213,-4.898377,60.37642,-3.710738,64.5327,3.770749,59.15699,3.777375,64.84599,-3.789923,45.46066,-3.553897,55.60528,8.39467,47.35025,5.097163,56.94689,5.471544,44.90983,-5.471544,44.90983,4.157493,54.33117,-4.234296,53.78051,-4.580271,57.73676,-3.785429,61.86509,4.162537,57.28502,3.787124,61.59132,-5.471544,44.90983,-4.211351,53.94503,5.471544,44.90983,4.371766,52.7949,20.13779,-2.842171E-14,14.23957,-14.23957,14.23957,14.23957,2.842171E-14,20.13779,2.188238,2.188238,-2.188238,2.188238,2.188238,-2.188238,2.842171E-14,-20.13779,-14.23957,14.23957,-2.188238,-2.188238,-14.23957,-14.23957,-20.13779,-2.842171E-14,-7.12171,0.2779455,-7.860243,-0.7357551,-9.349524,7.063215,-0.4289238,-3.094975,-11.11606,7.124488,2.834444E-14,-3.991575,-6.56131,13.12279,-7.860243,14.98473,7.860243,-0.7357551,6.594358,-0.2503293,9.011253,6.873054,11.11606,7.124488,5.746955,13.30664,7.860243,14.98473,-0.5799903,15.61464,2.851007E-14,18.24055 + } + UVIndex: *738 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,84,85,85,86,88,85,89,87,90,88,86,87,89,91,89,90,91,86,91,90,92,94,93,95,92,93,93,94,96,93,97,95,98,96,94,95,97,99,97,98,99,94,99,98,100,102,101,103,100,101,104,101,102,101,105,103,102,106,104,103,105,106,104,106,107,105,107,106,108,110,109,111,113,112,114,116,115,117,119,118,120,122,121,123,125,124,126,128,127,129,131,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,195,194,195,197,193,198,196,194,199,193,197,200,196,198,201,199,197,202,200,198,203,200,202,204,199,201,205,204,201,206,203,202,206,204,205,207,206,202,207,204,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,321,322,323,323,324,321,323,322,325,321,324,326,324,327,326,327,328,326,326,328,329,322,330,325,325,330,331,331,330,332,330,333,332,328,334,329,332,333,334,335,329,334,335,334,333,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,389,391,393,392,391,392,394,389,395,389,394,396,393,391,397,395,394,397,393,396,398,395,397,396,398,397,399,398,396,400,402,401,403,400,401,401,402,404,405,403,401,402,406,404,404,406,407,405,408,403,403,408,409,409,408,410,408,411,410,410,411,412,411,413,412,406,414,407,412,413,414,415,407,414,415,414,413 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *246 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh treeHighCrooked, Model::RootNode + C: "OO",4792048517432813164,0 + + ;Geometry::, Model::Mesh treeHighCrooked + C: "OO",5039426232353558854,4792048517432813164 + + ;Material::wood, Model::Mesh treeHighCrooked + C: "OO",7178,4792048517432813164 + + ;Material::foliage, Model::Mesh treeHighCrooked + C: "OO",7192,4792048517432813164 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighCrooked.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighCrooked.fbx.import new file mode 100644 index 0000000..30a0558 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighCrooked.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bnd1akqr0wo4g" +path="res://.godot/imported/treeHighCrooked.fbx-929068f2d485a4c2cb96650f31de18aa.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighCrooked.fbx" +dest_files=["res://.godot/imported/treeHighCrooked.fbx-929068f2d485a4c2cb96650f31de18aa.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighRound.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighRound.fbx new file mode 100644 index 0000000..0f81029 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighRound.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 819 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "treeHighRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "treeHighRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4613770242370246384, "Model::treeHighRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5749446406175901017, "Geometry::", "Mesh" { + Vertices: *696 { + a: 1.4432,0,1.4432,-1.4432,0,1.4432,0.93808,1.7648,0.93808,-0.93808,1.7648,0.93808,-1.4432,0,-1.4432,-0.93808,1.7648,-0.93808,-1.4432,0,1.4432,-0.93808,1.7648,0.93808,-1.4432,0,-1.4432,1.4432,0,-1.4432,-0.93808,1.7648,-0.93808,0.93808,1.7648,-0.93808,1.4432,0,-1.4432,1.4432,0,1.4432,0.93808,1.7648,-0.93808,0.93808,1.7648,0.93808,1.4432,0,1.4432,1.4432,0,-1.4432,-1.4432,0,1.4432,-1.4432,0,-1.4432,-1.825202,3.442548,-0.1459999,-1.803403,3.938069,-0.1459999,-1.825202,3.442548,0.2508001,-1.803403,3.938069,0.2508001,-0.8728098,3.248504,-0.2675999,-0.8376507,4.047731,-0.2675999,-1.825202,3.442548,-0.1459999,-1.803403,3.938069,-0.1459999,-0.8376507,4.047731,-0.2675999,-0.8376507,4.047731,0.3724,-1.803403,3.938069,-0.1459999,-1.803403,3.938069,0.2508001,-0.8728098,3.248504,0.3724,-1.825202,3.442548,0.2508001,-0.8376507,4.047731,0.3724,-1.803403,3.938069,0.2508001,-0.8728098,3.248504,0.3724,-0.8728098,3.248504,-0.2675999,-1.825202,3.442548,0.2508001,-1.825202,3.442548,-0.1459999,-0.93808,1.7648,-0.93808,0.93808,1.7648,-0.93808,-0.5558124,10.4544,-0.5558124,0.5558124,10.4544,-0.5558124,0.93808,1.7648,-0.93808,0.93808,1.7648,0.93808,0.5558124,10.4544,-0.5558124,0.5558124,10.4544,0.5558124,0.2954531,6.86171,0.7138598,-0.3445469,6.86171,0.7138598,0.1674531,7.038808,1.827152,-0.2165469,7.038808,1.827152,0.2954531,7.501091,0.6857325,0.1674531,7.422437,1.810276,-0.3445469,7.501091,0.6857325,-0.2165469,7.422437,1.810276,-0.3445469,7.501091,0.6857325,-0.2165469,7.422437,1.810276,-0.3445469,6.86171,0.7138598,-0.2165469,7.038808,1.827152,0.2954531,7.501091,0.6857325,0.2954531,6.86171,0.7138598,0.1674531,7.422437,1.810276,0.1674531,7.038808,1.827152,0.1674531,7.038808,1.827152,-0.2165469,7.038808,1.827152,0.1674531,7.422437,1.810276,-0.2165469,7.422437,1.810276,0.2954531,7.501091,0.6857325,0.5558124,10.4544,0.5558124,0.2954531,6.86171,0.7138598,-0.3445469,7.501091,0.6857325,0.93808,1.7648,0.93808,-0.5558124,10.4544,0.5558124,-0.93808,1.7648,0.93808,-0.3445469,6.86171,0.7138598,-0.5558124,10.4544,-0.5558124,-0.8728098,3.248504,-0.2675999,-0.93808,1.7648,-0.93808,-0.93808,1.7648,0.93808,-0.8376507,4.047731,-0.2675999,-0.8728098,3.248504,0.3724,-0.5558124,10.4544,0.5558124,-0.8376507,4.047731,0.3724,-3.601238,13.3944,-3.601238,-2.887646E-14,13.3944,-5.09292,-2.621701,22.1304,-2.621701,-2.887646E-14,22.1304,-3.707646,-1.443823E-14,10.4544,-3.948,2.791657,10.4544,-2.791657,-2.887646E-14,13.3944,-5.09292,3.601238,13.3944,-3.601238,-2.887646E-14,13.3944,-5.09292,3.601238,13.3944,-3.601238,-2.887646E-14,22.1304,-3.707646,2.621701,22.1304,-2.621701,5.09292,13.3944,-5.775292E-14,3.948,10.4544,-1.443823E-14,3.601238,13.3944,3.601238,2.791657,10.4544,2.791657,-1.443823E-14,10.4544,3.948,-2.791657,10.4544,2.791657,-2.887646E-14,13.3944,5.09292,-3.601238,13.3944,3.601238,2.791657,10.4544,2.791657,-1.443823E-14,10.4544,3.948,3.601238,13.3944,3.601238,-2.887646E-14,13.3944,5.09292,3.948,10.4544,-1.443823E-14,2.791657,10.4544,-2.791657,2.791657,10.4544,2.791657,-1.443823E-14,10.4544,3.948,0.5558124,10.4544,0.5558124,-0.5558124,10.4544,0.5558124,0.5558124,10.4544,-0.5558124,-1.443823E-14,10.4544,-3.948,-2.791657,10.4544,2.791657,-0.5558124,10.4544,-0.5558124,-2.791657,10.4544,-2.791657,-3.948,10.4544,-1.443823E-14,0.8342203,27.5064,-1.010676E-13,0.5898829,27.5064,0.5898829,0.5898829,27.5064,-0.5898829,0,27.5064,-0.8342203,0,27.5064,0.8342203,-0.5898829,27.5064,-0.5898829,-0.5898829,27.5064,0.5898829,-0.8342203,27.5064,-1.010676E-13,3.707646,22.1304,-8.662937E-14,5.09292,13.3944,-5.775292E-14,2.621701,22.1304,2.621701,3.601238,13.3944,3.601238,-2.791657,10.4544,-2.791657,-1.443823E-14,10.4544,-3.948,-3.601238,13.3944,-3.601238,-2.887646E-14,13.3944,-5.09292,-3.601238,13.3944,-3.601238,-5.09292,13.3944,-5.775292E-14,-2.791657,10.4544,-2.791657,-3.948,10.4544,-1.443823E-14,-5.09292,13.3944,-5.775292E-14,-3.601238,13.3944,3.601238,-3.948,10.4544,-1.443823E-14,-2.791657,10.4544,2.791657,3.601238,13.3944,-3.601238,2.791657,10.4544,-2.791657,5.09292,13.3944,-5.775292E-14,3.948,10.4544,-1.443823E-14,1.321337,26.5824,-1.321337,0.5898829,27.5064,-0.5898829,-2.887646E-14,26.5824,-1.868653,0,27.5064,-0.8342203,-3.707646,22.1304,-8.662937E-14,-2.621701,22.1304,2.621701,-5.09292,13.3944,-5.775292E-14,-3.601238,13.3944,3.601238,3.601238,13.3944,3.601238,-2.887646E-14,13.3944,5.09292,2.621701,22.1304,2.621701,-2.887646E-14,22.1304,3.707646,-2.621701,22.1304,-2.621701,-2.887646E-14,22.1304,-3.707646,-1.321337,26.5824,-1.321337,-2.887646E-14,26.5824,-1.868653,1.321337,26.5824,1.321337,-2.887646E-14,26.5824,1.868653,0.5898829,27.5064,0.5898829,0,27.5064,0.8342203,-2.887646E-14,22.1304,3.707646,-2.621701,22.1304,2.621701,-2.887646E-14,26.5824,1.868653,-1.321337,26.5824,1.321337,2.621701,22.1304,2.621701,-2.887646E-14,22.1304,3.707646,1.321337,26.5824,1.321337,-2.887646E-14,26.5824,1.868653,-3.601238,13.3944,-3.601238,-2.621701,22.1304,-2.621701,-5.09292,13.3944,-5.775292E-14,-3.707646,22.1304,-8.662937E-14,-0.5898829,27.5064,0.5898829,-1.321337,26.5824,1.321337,-0.8342203,27.5064,-1.010676E-13,-1.868653,26.5824,-1.010676E-13,-2.621701,22.1304,-2.621701,-1.321337,26.5824,-1.321337,-3.707646,22.1304,-8.662937E-14,-1.868653,26.5824,-1.010676E-13,1.868653,26.5824,-1.010676E-13,1.321337,26.5824,1.321337,0.8342203,27.5064,-1.010676E-13,0.5898829,27.5064,0.5898829,0,27.5064,-0.8342203,-0.5898829,27.5064,-0.5898829,-2.887646E-14,26.5824,-1.868653,-1.321337,26.5824,-1.321337,-1.868653,26.5824,-1.010676E-13,-1.321337,26.5824,1.321337,-3.707646,22.1304,-8.662937E-14,-2.621701,22.1304,2.621701,1.868653,26.5824,-1.010676E-13,3.707646,22.1304,-8.662937E-14,1.321337,26.5824,1.321337,2.621701,22.1304,2.621701,1.868653,26.5824,-1.010676E-13,0.8342203,27.5064,-1.010676E-13,1.321337,26.5824,-1.321337,0.5898829,27.5064,-0.5898829,-0.5898829,27.5064,-0.5898829,-0.8342203,27.5064,-1.010676E-13,-1.321337,26.5824,-1.321337,-1.868653,26.5824,-1.010676E-13,3.601238,13.3944,-3.601238,5.09292,13.3944,-5.775292E-14,2.621701,22.1304,-2.621701,3.707646,22.1304,-8.662937E-14,-2.887646E-14,22.1304,-3.707646,2.621701,22.1304,-2.621701,-2.887646E-14,26.5824,-1.868653,1.321337,26.5824,-1.321337,0,27.5064,0.8342203,-2.887646E-14,26.5824,1.868653,-0.5898829,27.5064,0.5898829,-1.321337,26.5824,1.321337,-2.887646E-14,13.3944,5.09292,-3.601238,13.3944,3.601238,-2.887646E-14,22.1304,3.707646,-2.621701,22.1304,2.621701,2.621701,22.1304,-2.621701,3.707646,22.1304,-8.662937E-14,1.321337,26.5824,-1.321337,1.868653,26.5824,-1.010676E-13 + } + PolygonVertexIndex: *396 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,68,-70,69,70,-73,69,73,-72,74,72,-71,71,73,-76,73,74,-76,70,75,-75,76,78,-78,79,77,-79,77,80,-77,81,77,-80,82,76,-81,83,81,-80,82,83,-80,83,82,-81,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,109,-112,113,112,-112,112,114,-110,115,109,-115,116,113,-112,117,115,-115,117,113,-117,118,115,-118,116,118,-118,119,118,-117,120,122,-122,123,121,-123,124,121,-124,125,124,-124,126,124,-126,127,126,-126,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1188 { + a: 0,0.2751701,0.9613956,0,0.1714603,0.985191,0,0.2751701,0.9613956,0,0.1714603,0.985191,0,0.2751701,0.9613956,0,0.1714603,0.985191,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.985191,0.1714603,0,-0.985191,0.1714603,0,-0.985191,0.1714603,0,-0.9613956,0.2751701,0,0,0.2751701,-0.9613956,0,0.1714603,-0.985191,0,0.2751701,-0.9613956,0,0.1714603,-0.985191,0,0.2751701,-0.9613956,0,0.1714603,-0.985191,0.9613956,0.2751701,0,0.985191,0.1714603,0,0.9613956,0.2751701,0,0.985191,0.1714603,0,0.9613956,0.2751701,0,0.985191,0.1714603,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,0,0.1714603,-0.985191,0,0.04394889,-0.9990338,0,0.1714603,-0.985191,0,0.04394889,-0.9990338,0,0.1714603,-0.985191,0,0.04394889,-0.9990338,0.985191,0.1714603,0,0.9990338,0.04394889,0,0.985191,0.1714603,0,0.9990338,0.04394889,0,0.985191,0.1714603,0,0.9990338,0.04394889,0,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.1714603,0.985191,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.1714603,0.985191,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.985191,0.1714603,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.7035158,-0.1006532,-0.7035158,-0.6820414,0.2638921,-0.6820414,0,-0.1006532,-0.9949216,0,0.2638921,-0.9645522,0,-0.1006532,-0.9949216,-0.6820414,0.2638921,-0.6820414,0,-0.3628831,-0.9318347,0,-0.1006532,-0.9949216,0.6589066,-0.3628831,-0.6589066,0.7035158,-0.1006532,-0.7035158,0.6589066,-0.3628831,-0.6589066,0,-0.1006532,-0.9949216,0,-0.1006532,-0.9949216,0,0.2638921,-0.9645522,0.7035158,-0.1006532,-0.7035158,0.6820414,0.2638921,-0.6820414,0.7035158,-0.1006532,-0.7035158,0,0.2638921,-0.9645522,0.9949216,-0.1006532,0,0.7035158,-0.1006532,0.7035158,0.9318347,-0.3628831,0,0.6589066,-0.3628831,0.6589066,0.9318347,-0.3628831,0,0.7035158,-0.1006532,0.7035158,0,-0.3628831,0.9318347,0,-0.1006532,0.9949216,-0.6589066,-0.3628831,0.6589066,-0.7035158,-0.1006532,0.7035158,-0.6589066,-0.3628831,0.6589066,0,-0.1006532,0.9949216,0.6589066,-0.3628831,0.6589066,0.7035158,-0.1006532,0.7035158,0,-0.3628831,0.9318347,0,-0.1006532,0.9949216,0,-0.3628831,0.9318347,0.7035158,-0.1006532,0.7035158,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4289826,0.9033128,0,0.3033365,0.9033128,-0.3033365,0.3033365,0.9033128,0.3033365,0,0.9033128,-0.4289826,0.3033365,0.9033128,0.3033365,0.3033365,0.9033128,-0.3033365,0,0.9033128,0.4289826,0.3033365,0.9033128,0.3033365,0,0.9033128,-0.4289826,-0.3033365,0.9033128,-0.3033365,0,0.9033128,0.4289826,0,0.9033128,-0.4289826,-0.3033365,0.9033128,0.3033365,0,0.9033128,0.4289826,-0.3033365,0.9033128,-0.3033365,-0.4289826,0.9033128,0,-0.3033365,0.9033128,0.3033365,-0.3033365,0.9033128,-0.3033365,0.9645522,0.2638921,0,0.6820414,0.2638921,0.6820414,0.9949216,-0.1006532,0,0.7035158,-0.1006532,0.7035158,0.9949216,-0.1006532,0,0.6820414,0.2638921,0.6820414,-0.6589066,-0.3628831,-0.6589066,-0.7035158,-0.1006532,-0.7035158,0,-0.3628831,-0.9318347,0,-0.1006532,-0.9949216,0,-0.3628831,-0.9318347,-0.7035158,-0.1006532,-0.7035158,-0.7035158,-0.1006532,-0.7035158,-0.6589066,-0.3628831,-0.6589066,-0.9949216,-0.1006532,0,-0.9318347,-0.3628831,0,-0.9949216,-0.1006532,0,-0.6589066,-0.3628831,-0.6589066,-0.9949216,-0.1006532,0,-0.9318347,-0.3628831,0,-0.7035158,-0.1006532,0.7035158,-0.6589066,-0.3628831,0.6589066,-0.7035158,-0.1006532,0.7035158,-0.9318347,-0.3628831,0,0.7035158,-0.1006532,-0.7035158,0.9949216,-0.1006532,0,0.6589066,-0.3628831,-0.6589066,0.9318347,-0.3628831,0,0.6589066,-0.3628831,-0.6589066,0.9949216,-0.1006532,0,0.588737,0.553875,-0.588737,0,0.553875,-0.8325998,0.3033365,0.9033128,-0.3033365,0,0.9033128,-0.4289826,0.3033365,0.9033128,-0.3033365,0,0.553875,-0.8325998,-0.9645522,0.2638921,0,-0.9949216,-0.1006532,0,-0.6820414,0.2638921,0.6820414,-0.7035158,-0.1006532,0.7035158,-0.6820414,0.2638921,0.6820414,-0.9949216,-0.1006532,0,0.7035158,-0.1006532,0.7035158,0.6820414,0.2638921,0.6820414,0,-0.1006532,0.9949216,0,0.2638921,0.9645522,0,-0.1006532,0.9949216,0.6820414,0.2638921,0.6820414,-0.6820414,0.2638921,-0.6820414,-0.588737,0.553875,-0.588737,0,0.2638921,-0.9645522,0,0.553875,-0.8325998,0,0.2638921,-0.9645522,-0.588737,0.553875,-0.588737,0.588737,0.553875,0.588737,0.3033365,0.9033128,0.3033365,0,0.553875,0.8325998,0,0.9033128,0.4289826,0,0.553875,0.8325998,0.3033365,0.9033128,0.3033365,0,0.2638921,0.9645522,0,0.553875,0.8325998,-0.6820414,0.2638921,0.6820414,-0.588737,0.553875,0.588737,-0.6820414,0.2638921,0.6820414,0,0.553875,0.8325998,0.6820414,0.2638921,0.6820414,0.588737,0.553875,0.588737,0,0.2638921,0.9645522,0,0.553875,0.8325998,0,0.2638921,0.9645522,0.588737,0.553875,0.588737,-0.7035158,-0.1006532,-0.7035158,-0.9949216,-0.1006532,0,-0.6820414,0.2638921,-0.6820414,-0.9645522,0.2638921,0,-0.6820414,0.2638921,-0.6820414,-0.9949216,-0.1006532,0,-0.3033365,0.9033128,0.3033365,-0.4289826,0.9033128,0,-0.588737,0.553875,0.588737,-0.8325998,0.553875,0,-0.588737,0.553875,0.588737,-0.4289826,0.9033128,0,-0.6820414,0.2638921,-0.6820414,-0.9645522,0.2638921,0,-0.588737,0.553875,-0.588737,-0.8325998,0.553875,0,-0.588737,0.553875,-0.588737,-0.9645522,0.2638921,0,0.8325998,0.553875,0,0.4289826,0.9033128,0,0.588737,0.553875,0.588737,0.3033365,0.9033128,0.3033365,0.588737,0.553875,0.588737,0.4289826,0.9033128,0,0,0.9033128,-0.4289826,0,0.553875,-0.8325998,-0.3033365,0.9033128,-0.3033365,-0.588737,0.553875,-0.588737,-0.3033365,0.9033128,-0.3033365,0,0.553875,-0.8325998,-0.8325998,0.553875,0,-0.9645522,0.2638921,0,-0.588737,0.553875,0.588737,-0.6820414,0.2638921,0.6820414,-0.588737,0.553875,0.588737,-0.9645522,0.2638921,0,0.8325998,0.553875,0,0.588737,0.553875,0.588737,0.9645522,0.2638921,0,0.6820414,0.2638921,0.6820414,0.9645522,0.2638921,0,0.588737,0.553875,0.588737,0.8325998,0.553875,0,0.588737,0.553875,-0.588737,0.4289826,0.9033128,0,0.3033365,0.9033128,-0.3033365,0.4289826,0.9033128,0,0.588737,0.553875,-0.588737,-0.3033365,0.9033128,-0.3033365,-0.588737,0.553875,-0.588737,-0.4289826,0.9033128,0,-0.8325998,0.553875,0,-0.4289826,0.9033128,0,-0.588737,0.553875,-0.588737,0.7035158,-0.1006532,-0.7035158,0.6820414,0.2638921,-0.6820414,0.9949216,-0.1006532,0,0.9645522,0.2638921,0,0.9949216,-0.1006532,0,0.6820414,0.2638921,-0.6820414,0,0.2638921,-0.9645522,0,0.553875,-0.8325998,0.6820414,0.2638921,-0.6820414,0.588737,0.553875,-0.588737,0.6820414,0.2638921,-0.6820414,0,0.553875,-0.8325998,0,0.9033128,0.4289826,-0.3033365,0.9033128,0.3033365,0,0.553875,0.8325998,-0.588737,0.553875,0.588737,0,0.553875,0.8325998,-0.3033365,0.9033128,0.3033365,0,-0.1006532,0.9949216,0,0.2638921,0.9645522,-0.7035158,-0.1006532,0.7035158,-0.6820414,0.2638921,0.6820414,-0.7035158,-0.1006532,0.7035158,0,0.2638921,0.9645522,0.6820414,0.2638921,-0.6820414,0.588737,0.553875,-0.588737,0.9645522,0.2638921,0,0.8325998,0.553875,0,0.9645522,0.2638921,0,0.588737,0.553875,-0.588737 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *464 { + a: 5.68189,-1.563486,-5.68189,-1.563486,3.693228,5.663541,-3.693228,5.663541,-5.68189,-1.563486,-3.693228,5.663541,5.68189,-1.563486,3.693228,5.663541,5.68189,-1.563486,-5.68189,-1.563486,3.693228,5.663541,-3.693228,5.663541,5.68189,-1.563486,-5.68189,-1.563486,3.693228,5.663541,-3.693228,5.663541,5.68189,5.68189,5.68189,-5.68189,-5.68189,5.68189,-5.68189,-5.68189,-0.5748028,13.22443,-0.5748028,15.17719,0.9874019,13.22443,0.9874019,15.17719,3.276807,12.78104,3.13948,15.92765,7.056819,13.545,6.971676,15.4959,-1.053543,-1.478791,1.466142,-1.478791,-0.5748028,-5.305401,0.9874019,-5.305401,-3.225008,12.77878,-7.00502,13.54274,-3.087682,15.92539,-6.919878,15.49364,1.466142,5.920385,-1.053543,5.920385,0.9874019,9.746995,-0.5748028,9.746995,3.693228,6.779005,-3.693228,6.779005,2.188238,41.02312,-2.188238,41.02312,3.693228,6.779005,-3.693228,6.779005,2.188238,41.02312,-2.188238,41.02312,1.163201,7.019608,-1.356484,7.019608,0.6592643,11.45776,-0.8525467,11.45776,1.163201,-0.6326519,0.6592643,-5.070804,-1.356484,-0.6326519,-0.8525467,-5.070804,2.528431,29.52323,6.984354,29.21357,2.638453,27.00595,7.050367,27.7032,-2.550356,29.52419,-2.660379,27.00691,-7.006279,29.21453,-7.072293,27.70416,0.6592643,27.36892,-0.8525467,27.36892,0.6592643,28.88073,-0.8525467,28.88073,1.163201,29.38467,2.188238,41.02312,1.163201,26.86498,-1.356484,29.38467,3.693228,6.779005,-2.188238,41.02312,-3.693228,6.779005,-1.356484,26.86498,-2.188238,41.02312,-1.053543,12.62601,-3.693228,6.779005,3.693228,6.779005,-1.053543,15.77561,1.466142,12.62601,2.188238,41.02312,1.466142,15.77561,7.673134,49.49172,-7.673134,49.49172,5.586042,84.25254,-5.586042,84.25254,5.948166,43.59018,-5.948166,43.59018,7.673134,55.89134,-7.673134,55.89134,7.673134,49.49172,-7.673134,49.49172,5.586042,84.25254,-5.586042,84.25254,7.673134,55.89134,5.948166,43.59018,-7.673134,55.89134,-5.948166,43.59018,5.948166,43.59018,-5.948166,43.59018,7.673134,55.89134,-7.673134,55.89134,5.948166,43.59018,-5.948166,43.59018,7.673134,55.89134,-7.673134,55.89134,15.54331,-5.684342E-14,10.99078,-10.99078,10.99078,10.99078,-5.684342E-14,15.54331,2.188238,2.188238,-2.188238,2.188238,2.188238,-2.188238,-5.684342E-14,-15.54331,-10.99078,10.99078,-2.188238,-2.188238,-10.99078,-10.99078,-15.54331,-5.684342E-14,-3.284332,-3.979039E-13,-2.322373,2.322373,-2.322373,-2.322373,0,-3.284332,0,3.284332,2.322373,-2.322373,2.322373,2.322373,3.284332,-3.979039E-13,5.586042,84.25254,7.673134,49.49172,-5.586042,84.25254,-7.673134,49.49172,5.948166,43.59018,-5.948166,43.59018,7.673134,55.89134,-7.673134,55.89134,-7.673134,55.89134,7.673134,55.89134,-5.948166,43.59018,5.948166,43.59018,-7.673134,55.89134,7.673134,55.89134,-5.948166,43.59018,5.948166,43.59018,7.673134,55.89134,5.948166,43.59018,-7.673134,55.89134,-5.948166,43.59018,-2.815365,67.85786,-1.256859,73.09145,2.815365,67.85786,1.256859,73.09145,-5.586042,84.25254,5.586042,84.25254,-7.673134,49.49172,7.673134,49.49172,7.673134,49.49172,-7.673134,49.49172,5.586042,84.25254,-5.586042,84.25254,5.586042,76.59298,-5.586042,76.59298,2.815365,95.35353,-2.815365,95.35353,2.815365,67.85786,-2.815365,67.85786,1.256859,73.09145,-1.256859,73.09145,5.586042,76.59298,-5.586042,76.59298,2.815365,95.35353,-2.815365,95.35353,5.586042,76.59298,-5.586042,76.59298,2.815365,95.35353,-2.815365,95.35353,-7.673134,49.49172,-5.586042,84.25254,7.673134,49.49172,5.586042,84.25254,1.256859,73.09145,2.815365,67.85786,-1.256859,73.09145,-2.815365,67.85786,-5.586042,76.59298,-2.815365,95.35353,5.586042,76.59298,2.815365,95.35353,2.815365,67.85786,-2.815365,67.85786,1.256859,73.09145,-1.256859,73.09145,-1.256859,73.09145,1.256859,73.09145,-2.815365,67.85786,2.815365,67.85786,-2.815365,95.35353,2.815365,95.35353,-5.586042,76.59298,5.586042,76.59298,2.815365,95.35353,5.586042,76.59298,-2.815365,95.35353,-5.586042,76.59298,-2.815365,67.85786,-1.256859,73.09145,2.815365,67.85786,1.256859,73.09145,-1.256859,73.09145,1.256859,73.09145,-2.815365,67.85786,2.815365,67.85786,7.673134,49.49172,-7.673134,49.49172,5.586042,84.25254,-5.586042,84.25254,5.586042,76.59298,-5.586042,76.59298,2.815365,95.35353,-2.815365,95.35353,1.256859,73.09145,2.815365,67.85786,-1.256859,73.09145,-2.815365,67.85786,7.673134,49.49172,-7.673134,49.49172,5.586042,84.25254,-5.586042,84.25254,5.586042,76.59298,-5.586042,76.59298,2.815365,95.35353,-2.815365,95.35353 + } + UVIndex: *396 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,68,69,69,70,72,69,73,71,74,72,70,71,73,75,73,74,75,70,75,74,76,78,77,79,77,78,77,80,76,81,77,79,82,76,80,83,81,79,82,83,79,83,82,80,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,109,111,113,112,111,112,114,109,115,109,114,116,113,111,117,115,114,117,113,116,118,115,117,116,118,117,119,118,116,120,122,121,123,121,122,124,121,123,125,124,123,126,124,125,127,126,125,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *132 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7192, "Material::foliage", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.2588235,0.7921569,0.6034038 + P: "DiffuseColor", "Color", "", "A",0.2588235,0.7921569,0.6034038 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh treeHighRound, Model::RootNode + C: "OO",4613770242370246384,0 + + ;Geometry::, Model::Mesh treeHighRound + C: "OO",5749446406175901017,4613770242370246384 + + ;Material::wood, Model::Mesh treeHighRound + C: "OO",7178,4613770242370246384 + + ;Material::foliage, Model::Mesh treeHighRound + C: "OO",7192,4613770242370246384 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighRound.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighRound.fbx.import new file mode 100644 index 0000000..7d11dce --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cie3m0txo5qp1" +path="res://.godot/imported/treeHighRound.fbx-9f2acb0dbb65eee92da502da7bd9c6c4.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/treeHighRound.fbx" +dest_files=["res://.godot/imported/treeHighRound.fbx-9f2acb0dbb65eee92da502da7bd9c6c4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wall.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wall.fbx new file mode 100644 index 0000000..03f7a92 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 871 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5460808693404874237, "Model::wall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5529088087895338055, "Geometry::", "Mesh" { + Vertices: *216 { + a: 5,10,4,5,0,4,5,10,5,5,0,5,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,0,5,4,0,5,5,10,5,4,10,5,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4,0,4,4,10,4,4,0,5,4,10,5,4.25,0,-4,4.25,10,-4,4.25,0,4,4.25,10,4,4.75,10,-4,4.75,0,-4,4.75,10,4,4.75,0,4 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,17,-17,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,53,52,-51,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,62,-62,63,61,-63,51,52,-17,18,16,-53,64,66,-66,67,65,-67,68,70,-70,71,69,-71,57,58,-7,8,6,-59 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: -15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,0,-15.74803,39.37008,15.74803,0,15.74803,39.37008,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-15.74803,0 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,17,16,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,53,52,50,54,56,55,57,55,56,58,57,56,59,58,56,60,62,61,63,61,62,51,52,16,18,16,52,64,66,65,67,65,66,68,70,69,71,69,70,57,58,6,8,6,58 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wall, Model::RootNode + C: "OO",5460808693404874237,0 + + ;Geometry::, Model::Mesh wall + C: "OO",5529088087895338055,5460808693404874237 + + ;Material::wood, Model::Mesh wall + C: "OO",7178,5460808693404874237 + + ;Material::stone, Model::Mesh wall + C: "OO",7184,5460808693404874237 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wall.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wall.fbx.import new file mode 100644 index 0000000..b6f5f64 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://retl3fmgp5r2" +path="res://.godot/imported/wall.fbx-71b9dbc287ca1d1bd542e4257dc7ee98.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wall.fbx" +dest_files=["res://.godot/imported/wall.fbx-71b9dbc287ca1d1bd542e4257dc7ee98.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArch.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArch.fbx new file mode 100644 index 0000000..8f9a245 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArch.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 47 + Millisecond: 947 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallArch.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallArch.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5606570154641859560, "Model::wallArch", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4897473979726651909, "Geometry::", "Mesh" { + Vertices: *216 { + a: 4.25,0,3,4.25,10,3,4.25,0,4,4.25,10,4,4.75,0,4,4.75,0,3,4.25,0,4,4.25,0,3,4,0,2,4,0,3,5,0,2,5,0,3,4.75,10,3,4.75,0,3,4.75,10,4,4.75,0,4,4.75,10,3,4.75,10,4,4.25,10,3,4.25,10,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,0,5,4,0,5,5,10,5,4,10,5,5,0,5,5,0,4,4,0,5,4,0,4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,10,5,4,10,5,4,10,4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,0,3,4.75,0,3,5,10,3,4.75,10,3,4.25,0,3,4,0,3,4.25,10,3,4,10,3,5,10,2,5,10,3,4,10,2,4,10,3,5,10,2,5,0,2,5,10,3,5,0,3,4,0,2,4,10,2,4,0,3,4,10,3,4,0,2,5,0,2,4,10,2,5,10,2 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,6,7,-6,7,8,-6,9,8,-8,8,10,-6,11,5,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,4,29,-31,6,4,-31,31,6,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,17,-42,42,41,-18,19,42,-18,43,42,-20,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,16,57,-59,18,16,-59,59,18,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 11.81102,0,11.81102,39.37008,15.74803,0,15.74803,39.37008,18.70079,15.74803,18.70079,11.81102,16.73228,15.74803,16.73228,11.81102,15.74803,7.874016,15.74803,11.81102,19.68504,7.874016,19.68504,11.81102,-11.81102,39.37008,-11.81102,0,-15.74803,39.37008,-15.74803,0,-18.70079,11.81102,-18.70079,15.74803,-16.73228,11.81102,-16.73228,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-15.74803,19.68504,-15.74803,15.74803,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,7.874016,-19.68504,11.81102,-15.74803,7.874016,-15.74803,11.81102,-7.874016,39.37008,-7.874016,0,-11.81102,39.37008,-11.81102,0,7.874016,0,7.874016,39.37008,11.81102,0,11.81102,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,6,7,5,7,8,5,9,8,7,8,10,5,11,5,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,4,29,30,6,4,30,31,6,30,32,34,33,35,33,34,36,38,37,39,37,38,40,17,41,42,41,17,19,42,17,43,42,19,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,16,57,58,18,16,58,59,18,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallArch, Model::RootNode + C: "OO",5606570154641859560,0 + + ;Geometry::, Model::Mesh wallArch + C: "OO",4897473979726651909,5606570154641859560 + + ;Material::stone, Model::Mesh wallArch + C: "OO",7184,5606570154641859560 + + ;Material::wood, Model::Mesh wallArch + C: "OO",7178,5606570154641859560 + + ;Material::stoneDark, Model::Mesh wallArch + C: "OO",7174,5606570154641859560 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArch.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArch.fbx.import new file mode 100644 index 0000000..e52ed06 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArch.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c03vss2csyuhi" +path="res://.godot/imported/wallArch.fbx-e80daa1d4ca78be8527d782e8341a0e9.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArch.fbx" +dest_files=["res://.godot/imported/wallArch.fbx-e80daa1d4ca78be8527d782e8341a0e9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTop.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTop.fbx new file mode 100644 index 0000000..c07af51 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTop.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 5 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallArchTop.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallArchTop.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5763124049249688759, "Model::wallArchTop", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5115575933329553877, "Geometry::", "Mesh" { + Vertices: *852 { + a: 4,1.811733,1.761481,5,1.811733,1.761481,4,2.678784,1.467157,5,2.678784,1.467157,4,3.5,1.062178,5,3.5,1.062178,4,4.26133,0.5534734,5,4.26133,0.5534734,5,3.061467,2.391036,4.75,3.061467,2.391036,5,4,1.928203,4.75,4,1.928203,4.25,7.931559,-3.955791,4.25,7.727407,-2.929448,4,7.931559,-3.955791,4,7.727407,-2.929448,5,5.553473,-0.7386699,5,6.062178,-1.5,4,5.553473,-0.7386699,4,6.062178,-1.5,4.75,7.931559,-3.955791,4.75,7.934456,-4,5,7.931559,-3.955791,5,7.934456,-4,4.75,8,-5,5,8,-5,4.25,3.061467,2.391036,4,3.061467,2.391036,4.25,4,1.928203,4,4,1.928203,5,8,-5,5,7,-5,5,7.934456,-4,5,6.940114,-4.086317,5,6.76148,-3.188267,5,7.931559,-3.955791,5,7.727407,-2.929448,5,6.467156,-2.321216,5,7.391036,-1.938533,5,6.062178,-1.5,5,6.928203,-1,5,5.553473,-0.7386699,5,6.346827,-0.1299086,5,4.949747,-0.05025253,5,5.656855,0.6568542,5,4.26133,0.5534734,5,3.5,1.062178,5,4.870091,1.346827,5,2.678784,1.467157,5,4,1.928203,5,1.811733,1.761481,5,0.9136833,1.940114,5,3.061467,2.391036,5,-4.23431E-15,2,5,-1.564134E-15,3,5,2.070552,2.727407,5,1.044209,2.931559,5,7.931559,-3.955791,5,7.727407,-2.929448,4.75,7.931559,-3.955791,4.75,7.727407,-2.929448,5,7.727407,-2.929448,5,7.391036,-1.938533,4.75,7.727407,-2.929448,4.75,7.391036,-1.938533,4,7.931559,-3.955791,4,7.934456,-4,4.25,7.931559,-3.955791,4.25,7.934456,-4,4,8,-5,4.25,8,-5,4,-4.23431E-15,2,5,-4.23431E-15,2,4,0.9136833,1.940114,5,0.9136833,1.940114,5,6.062178,-1.5,5,6.467156,-2.321216,4,6.062178,-1.5,4,6.467156,-2.321216,5,6.76148,-3.188267,5,6.940114,-4.086317,4,6.76148,-3.188267,4,6.940114,-4.086317,5,6.467156,-2.321216,5,6.76148,-3.188267,4,6.467156,-2.321216,4,6.76148,-3.188267,4.25,4,1.928203,4,4,1.928203,4.25,4.870091,1.346827,4,4.870091,1.346827,4.25,6.928203,-1,4.25,6.346827,-0.1299086,4,6.928203,-1,4,6.346827,-0.1299086,5,6.940114,-4.086317,5,7,-5,4,6.940114,-4.086317,4,7,-5,4.25,-1.286498E-15,3,4,-1.286498E-15,3,4.25,1.044209,2.931559,4,1.044209,2.931559,4,4.26133,0.5534734,5,4.26133,0.5534734,4,4.949747,-0.05025253,5,4.949747,-0.05025253,4.25,1.044209,2.931559,4,1.044209,2.931559,4.25,2.070552,2.727407,4,2.070552,2.727407,4.25,7.391036,-1.938533,4.25,6.928203,-1,4,7.391036,-1.938533,4,6.928203,-1,5,6.928203,-1,5,6.346827,-0.1299086,4.75,6.928203,-1,4.75,6.346827,-0.1299086,4.25,7.727407,-2.929448,4.25,7.391036,-1.938533,4,7.727407,-2.929448,4,7.391036,-1.938533,5,6.346827,-0.1299086,5,5.656855,0.6568542,4.75,6.346827,-0.1299086,4.75,5.656855,0.6568542,5,7.391036,-1.938533,5,6.928203,-1,4.75,7.391036,-1.938533,4.75,6.928203,-1,4,0.9136833,1.940114,5,0.9136833,1.940114,4,1.811733,1.761481,5,1.811733,1.761481,5,4.949747,-0.05025253,5,5.553473,-0.7386699,4,4.949747,-0.05025253,4,5.553473,-0.7386699,4.25,4.870091,1.346827,4,4.870091,1.346827,4.25,5.656855,0.6568542,4,5.656855,0.6568542,4.25,6.346827,-0.1299086,4.25,5.656855,0.6568542,4,6.346827,-0.1299086,4,5.656855,0.6568542,5,4.870091,1.346827,4.75,4.870091,1.346827,5,5.656855,0.6568542,4.75,5.656855,0.6568542,5,4,1.928203,4.75,4,1.928203,5,4.870091,1.346827,4.75,4.870091,1.346827,5,2.070552,2.727407,4.75,2.070552,2.727407,5,3.061467,2.391036,4.75,3.061467,2.391036,5,1.044209,2.931559,4.75,1.044209,2.931559,5,2.070552,2.727407,4.75,2.070552,2.727407,4,7,-5,4,8,-5,4,6.940114,-4.086317,4,7.934456,-4,4,6.76148,-3.188267,4,7.931559,-3.955791,4,7.727407,-2.929448,4,6.467156,-2.321216,4,7.391036,-1.938533,4,6.062178,-1.5,4,6.928203,-1,4,5.553473,-0.7386699,4,6.346827,-0.1299086,4,4.949747,-0.05025253,4,5.656855,0.6568542,4,4.26133,0.5534734,4,3.5,1.062178,4,4.870091,1.346827,4,2.678784,1.467157,4,4,1.928203,4,1.811733,1.761481,4,0.9136833,1.940114,4,3.061467,2.391036,4,-4.23431E-15,2,4,-1.286498E-15,3,4,2.070552,2.727407,4,1.044209,2.931559,4,2.678784,1.467157,5,2.678784,1.467157,4,3.5,1.062178,5,3.5,1.062178,4.25,2.070552,2.727407,4,2.070552,2.727407,4.25,3.061467,2.391036,4,3.061467,2.391036,5,-1.564134E-15,3,4.75,-1.564134E-15,3,5,1.044209,2.931559,4.75,1.044209,2.931559,4.75,10,-5,4.75,10,4,4.25,10,-5,4.25,10,4,4.75,0,4,4.75,-1.564134E-15,3,4.25,0,4,4.25,-1.286498E-15,3,4,-4.23431E-15,2,4,-1.286498E-15,3,5,-4.23431E-15,2,5,-1.564134E-15,3,4.25,8,-5,4.25,10,-5,4.25,7.934456,-4,4.25,10,4,4.25,7.931559,-3.955791,4.25,7.727407,-2.929448,4.25,7.391036,-1.938533,4.25,6.928203,-1,4.25,6.346827,-0.1299086,4.25,5.656855,0.6568542,4.25,4.870091,1.346827,4.25,4,1.928203,4.25,3.061467,2.391036,4.25,2.070552,2.727407,4.25,1.044209,2.931559,4.25,-1.286498E-15,3,4.25,0,4,4.75,10,-5,4.25,10,-5,4.75,8,-5,4.25,8,-5,5,8,-5,4,8,-5,5,7,-5,4,7,-5,4.75,10,-5,4.75,8,-5,4.75,10,4,4.75,7.934456,-4,4.75,7.931559,-3.955791,4.75,7.727407,-2.929448,4.75,7.391036,-1.938533,4.75,6.928203,-1,4.75,6.346827,-0.1299086,4.75,5.656855,0.6568542,4.75,4.870091,1.346827,4.75,4,1.928203,4.75,3.061467,2.391036,4.75,2.070552,2.727407,4.75,1.044209,2.931559,4.75,-1.564134E-15,3,4.75,0,4,5,10,4,5,10,5,4,10,5,4,10,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4,0,4,4,10,4,4,0,5,4,10,5,5,0,5,5,0,4,4,0,5,4,0,4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,10,4,5,0,4,5,10,5,5,0,5,5,0,5,4,0,5,5,10,5,4,10,5 + } + PolygonVertexIndex: *564 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,21,23,-25,25,24,-24,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,34,-33,36,34,-36,37,34,-37,38,37,-37,39,37,-39,40,39,-39,41,39,-41,42,41,-41,43,41,-43,44,43,-43,45,43,-45,46,45,-45,47,46,-45,48,46,-48,49,48,-48,50,48,-50,51,50,-50,52,51,-50,53,51,-53,54,53,-53,55,54,-53,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,66,68,-70,70,69,-69,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,113,-113,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,145,-145,146,144,-146,147,149,-149,150,148,-150,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,166,-166,168,166,-168,169,168,-168,170,169,-168,171,169,-171,172,171,-171,173,171,-173,174,173,-173,175,173,-175,176,175,-175,177,175,-177,178,177,-177,179,177,-179,180,177,-180,181,180,-180,182,180,-182,183,182,-182,184,182,-184,185,182,-185,186,185,-185,187,185,-187,188,185,-188,189,188,-188,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,208,209,-208,209,210,-208,211,210,-210,210,212,-208,213,207,-213,214,216,-216,217,215,-217,218,217,-217,219,217,-219,220,217,-220,221,217,-221,222,217,-222,223,217,-223,224,217,-224,225,217,-225,226,217,-226,227,217,-227,228,217,-228,229,217,-229,230,217,-230,231,233,-233,234,232,-234,233,235,-235,234,235,-237,235,237,-237,238,236,-238,239,241,-241,242,240,-242,243,242,-242,244,243,-242,245,244,-242,246,245,-242,247,246,-242,248,247,-242,249,248,-242,250,249,-242,251,250,-242,252,251,-242,253,252,-242,254,253,-242,255,254,-242,256,203,-258,258,257,-204,205,258,-204,259,258,-206,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,206,269,-271,208,206,-271,271,208,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1692 { + a: 0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9914449,0.1305262,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.7933533,-0.6087614,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9914449,0.1305262,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.3826834,0.9238795,0,0.5,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9914449,0.1305262,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9659258,0.258819,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9914449,0.1305262,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9659258,-0.258819,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9238795,-0.3826834,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9914449,-0.1305262,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9238795,0.3826834,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9659258,0.258819,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9238795,0.3826834,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7071068,-0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *568 { + a: -15.74803,4.5251,-19.68504,4.5251,-15.74803,8.129997,-19.68504,8.129997,-15.74803,9.133973,-19.68504,9.133973,-15.74803,12.73887,-19.68504,12.73887,19.68504,6.646529,18.70079,6.646529,19.68504,10.76641,18.70079,10.76641,16.73228,21.36674,16.73228,17.24686,15.74803,21.36674,15.74803,17.24686,-19.68504,14.56506,-19.68504,18.16996,-15.74803,14.56506,-15.74803,18.16996,18.70079,17.58295,18.70079,17.75738,19.68504,17.58295,19.68504,17.75738,18.70079,21.70283,19.68504,21.70283,16.73228,6.646529,15.74803,6.646529,16.73228,10.76641,15.74803,10.76641,19.68504,31.49606,19.68504,27.55906,15.74803,31.23802,16.08786,27.32328,12.55223,26.62,15.57398,31.22661,11.53326,30.42286,9.138645,25.46125,7.632018,29.09857,5.905512,23.86684,3.937008,27.27639,2.908149,21.86407,0.5114511,24.98751,0.1978446,19.48719,-2.58604,22.27108,-2.179029,16.77689,-4.181802,13.77953,-5.302467,19.17359,-5.776207,10.54639,-7.591352,15.74803,-6.934964,7.132808,-7.638244,3.597178,-9.413528,12.05302,-7.874016,-1.667051E-14,-11.81102,-6.158009E-15,-10.73782,8.151781,-11.54157,4.111061,19.68504,21.36674,19.68504,17.24686,18.70079,21.36674,18.70079,17.24686,19.68504,20.7003,19.68504,16.58042,18.70079,20.7003,18.70079,16.58042,15.74803,17.58295,15.74803,17.75738,16.73228,17.58295,16.73228,17.75738,15.74803,21.70283,16.73228,21.70283,-15.74803,-0.5149853,-19.68504,-0.5149853,-15.74803,3.089912,-19.68504,3.089912,-19.68504,15.85253,-19.68504,19.45742,-15.74803,15.85253,-15.74803,19.45742,-19.68504,17.50435,-19.68504,21.10925,-15.74803,17.50435,-15.74803,21.10925,-19.68504,16.83791,-19.68504,20.44281,-15.74803,16.83791,-15.74803,20.44281,16.73228,8.876481,15.74803,8.876481,16.73228,12.99636,15.74803,12.99636,16.73228,18.42745,16.73228,14.30757,15.74803,18.42745,15.74803,14.30757,-19.68504,17.84044,-19.68504,21.44534,-15.74803,17.84044,-15.74803,21.44534,16.73228,-0.7724779,15.74803,-0.7724779,16.73228,3.347404,15.74803,3.347404,-15.74803,11.1768,-19.68504,11.1768,-15.74803,14.7817,-19.68504,14.7817,16.73228,1.78042,15.74803,1.78042,16.73228,5.900302,15.74803,5.900302,16.73228,19.71492,16.73228,15.59503,15.74803,19.71492,15.74803,15.59503,19.68504,18.42745,19.68504,14.30757,18.70079,18.42745,18.70079,14.30757,16.73228,20.7003,16.73228,16.58042,15.74803,20.7003,15.74803,16.58042,19.68504,16.85994,19.68504,12.74006,18.70079,16.85994,18.70079,12.74006,19.68504,19.71492,19.68504,15.59503,18.70079,19.71492,18.70079,15.59503,-15.74803,2.037912,-19.68504,2.037912,-15.74803,5.642809,-19.68504,5.642809,-19.68504,12.99755,-19.68504,16.60245,-15.74803,12.99755,-15.74803,16.60245,16.73228,10.91931,15.74803,10.91931,16.73228,15.03919,15.74803,15.03919,16.73228,16.85994,16.73228,12.74006,15.74803,16.85994,15.74803,12.74006,19.68504,10.91931,18.70079,10.91931,19.68504,15.03919,18.70079,15.03919,19.68504,8.876481,18.70079,8.876481,19.68504,12.99636,18.70079,12.99636,19.68504,4.267608,18.70079,4.267608,19.68504,8.387489,18.70079,8.387489,19.68504,1.78042,18.70079,1.78042,19.68504,5.900302,18.70079,5.900302,-19.68504,27.55906,-19.68504,31.49606,-16.08786,27.32328,-15.74803,31.23802,-12.55223,26.62,-15.57398,31.22661,-11.53326,30.42286,-9.138645,25.46125,-7.632018,29.09857,-5.905512,23.86684,-3.937008,27.27639,-2.908149,21.86407,-0.5114511,24.98751,-0.1978446,19.48719,2.58604,22.27108,2.179029,16.77689,4.181802,13.77953,5.302467,19.17359,5.776207,10.54639,7.591352,15.74803,6.934964,7.132808,7.638244,3.597178,9.413528,12.05302,7.874016,-1.667051E-14,11.81102,-5.064953E-15,10.73782,8.151781,11.54157,4.111061,-15.74803,6.904022,-19.68504,6.904022,-15.74803,10.50892,-19.68504,10.50892,16.73228,4.267608,15.74803,4.267608,16.73228,8.387489,15.74803,8.387489,19.68504,-0.7724779,18.70079,-0.7724779,19.68504,3.347404,18.70079,3.347404,-18.70079,-19.68504,-18.70079,15.74803,-16.73228,-19.68504,-16.73228,15.74803,18.70079,15.74803,18.70079,11.81102,16.73228,15.74803,16.73228,11.81102,15.74803,7.874016,15.74803,11.81102,19.68504,7.874016,19.68504,11.81102,-19.68504,31.49606,-19.68504,39.37008,-15.74803,31.23802,15.74803,39.37008,-15.57398,31.22661,-11.53326,30.42286,-7.632018,29.09857,-3.937008,27.27639,-0.5114511,24.98751,2.58604,22.27108,5.302467,19.17359,7.591352,15.74803,9.413528,12.05302,10.73782,8.151781,11.54157,4.111061,11.81102,-5.064953E-15,15.74803,0,-18.70079,39.37008,-16.73228,39.37008,-18.70079,31.49606,-16.73228,31.49606,-19.68504,31.49606,-15.74803,31.49606,-19.68504,27.55906,-15.74803,27.55906,19.68504,39.37008,19.68504,31.49606,-15.74803,39.37008,15.74803,31.23802,15.57398,31.22661,11.53326,30.42286,7.632018,29.09857,3.937008,27.27639,0.5114511,24.98751,-2.58604,22.27108,-5.302467,19.17359,-7.591352,15.74803,-9.413528,12.05302,-10.73782,8.151781,-11.54157,4.111061,-11.81102,-6.158009E-15,-15.74803,1.189679E-29,-19.68504,15.74803,-19.68504,19.68504,-15.74803,19.68504,-15.74803,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,-1.196147E-30,-16.73228,-1.196147E-30,-15.74803,39.37008,-16.73228,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008 + } + UVIndex: *564 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,21,23,24,25,24,23,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,34,32,36,34,35,37,34,36,38,37,36,39,37,38,40,39,38,41,39,40,42,41,40,43,41,42,44,43,42,45,43,44,46,45,44,47,46,44,48,46,47,49,48,47,50,48,49,51,50,49,52,51,49,53,51,52,54,53,52,55,54,52,56,54,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,66,68,69,70,69,68,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,109,108,110,108,109,111,113,112,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,142,140,141,143,145,144,146,144,145,147,149,148,150,148,149,151,153,152,154,152,153,155,157,156,158,156,157,159,161,160,162,160,161,163,165,164,166,164,165,167,166,165,168,166,167,169,168,167,170,169,167,171,169,170,172,171,170,173,171,172,174,173,172,175,173,174,176,175,174,177,175,176,178,177,176,179,177,178,180,177,179,181,180,179,182,180,181,183,182,181,184,182,183,185,182,184,186,185,184,187,185,186,188,185,187,189,188,187,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,208,209,207,209,210,207,211,210,209,210,212,207,213,207,212,214,216,215,217,215,216,218,217,216,219,217,218,220,217,219,221,217,220,222,217,221,223,217,222,224,217,223,225,217,224,226,217,225,227,217,226,228,217,227,229,217,228,230,217,229,231,233,232,234,232,233,233,235,234,234,235,236,235,237,236,238,236,237,239,241,240,242,240,241,243,242,241,244,243,241,245,244,241,246,245,241,247,246,241,248,247,241,249,248,241,250,249,241,251,250,241,252,251,241,253,252,241,254,253,241,255,254,241,256,203,257,258,257,203,205,258,203,259,258,205,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,206,269,270,208,206,270,271,208,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *188 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallArchTop, Model::RootNode + C: "OO",5763124049249688759,0 + + ;Geometry::, Model::Mesh wallArchTop + C: "OO",5115575933329553877,5763124049249688759 + + ;Material::stoneDark, Model::Mesh wallArchTop + C: "OO",7174,5763124049249688759 + + ;Material::stone, Model::Mesh wallArchTop + C: "OO",7184,5763124049249688759 + + ;Material::wood, Model::Mesh wallArchTop + C: "OO",7178,5763124049249688759 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTop.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTop.fbx.import new file mode 100644 index 0000000..f4fcdb0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTop.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b7rt1yjphty5a" +path="res://.godot/imported/wallArchTop.fbx-8424b862163b33fcdf8fb39170db8e40.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTop.fbx" +dest_files=["res://.godot/imported/wallArchTop.fbx-8424b862163b33fcdf8fb39170db8e40.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTopDetail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTopDetail.fbx new file mode 100644 index 0000000..280784a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTopDetail.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 140 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallArchTopDetail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallArchTopDetail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5236481465593596392, "Model::wallArchTopDetail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5722320329356184300, "Geometry::", "Mesh" { + Vertices: *1128 { + a: 5,10,4,5,0,4,5,10,5,5,0,5,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4,0,4,4,10,4,4,0,5,4,10,5,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4.75,10,-5,4.25,10,-5,4.75,10,-5,4.25,10,-5,4.75,9,-5,4.25,9,-5,5.3,9,-5,3.7,9,-5,5.3,7,-5,3.7,7,-5,4.25,7.931559,-3.955791,4.25,8.923004,-3.825264,4.25,7.727407,-2.929448,4.25,10,4,4.25,7.391036,-1.938533,4.25,10,-5,4.25,9,-5,4.25,7.794229,-0.5,4.25,7.14018,0.4788528,4.25,6.928203,-1,4.25,5.656855,0.6568542,4.25,6.346827,-0.1299086,4.25,4.870091,1.346827,4.25,4,1.928203,4.25,3.061467,2.391036,4.25,3.444151,3.314916,4.25,2.329371,3.693332,4.25,0,4,4.25,-1.286498E-15,3,4.25,1.044209,2.931559,4.25,2.070552,2.727407,5,-2.230676E-15,3,5,-5.178488E-15,2,4.75,-1.286498E-15,3,4,-5.178488E-15,2,4.25,-1.286498E-15,3,4,-2.230676E-15,3,4.75,10,-5,4.75,9,-5,4.75,10,4,4.75,8.923004,-3.825264,4.75,7.727407,-2.929448,4.75,7.931559,-3.955791,4.75,7.391036,-1.938533,4.75,7.794229,-0.5,4.75,7.14018,0.4788528,4.75,6.928203,-1,4.75,5.656855,0.6568542,4.75,6.346827,-0.1299086,4.75,4.870091,1.346827,4.75,4,1.928203,4.75,3.061467,2.391036,4.75,3.444151,3.314916,4.75,2.329371,3.693332,4.75,0,4,4.75,-1.286498E-15,3,4.75,1.044209,2.931559,4.75,2.070552,2.727407,5,6.76148,-3.188267,5,6.940114,-4.086317,4,6.76148,-3.188267,4,6.940114,-4.086317,4.25,7.931559,-3.955791,4.25,7.727407,-2.929448,4,7.931559,-3.955791,4,7.727407,-2.929448,5,1.044209,2.931559,4.75,1.044209,2.931559,5,2.070552,2.727407,4.75,2.070552,2.727407,5,2.070552,2.727407,5.3,1.811733,1.761481,5,1.811733,1.761481,4.75,2.329371,3.693332,4.75,2.070552,2.727407,5.3,2.329371,3.693332,5,4,1.928203,4.75,4,1.928203,5,4.870091,1.346827,4.75,4.870091,1.346827,4,4,1.928203,4,4.870091,1.346827,4.25,4,1.928203,4.25,4.870091,1.346827,4,3.5,1.062178,5,3.5,1.062178,4,4.26133,0.5534734,5,4.26133,0.5534734,3.7,2.329371,3.693332,3.7,3.444151,3.314916,4.25,2.329371,3.693332,4.25,3.444151,3.314916,4.25,7.727407,-2.929448,4.25,7.391036,-1.938533,4,7.727407,-2.929448,4,7.391036,-1.938533,4.25,9,-5,4.25,8.923004,-3.825264,3.7,9,-5,3.7,8.923004,-3.825264,5,5.553473,-0.7386699,5,4.949747,-0.05025253,5,6.346827,-0.1299086,5,5.656855,0.6568542,5,4.26133,0.5534734,5,3.5,1.062178,5,4.870091,1.346827,5,2.678784,1.467157,5,4,1.928203,5,3.061467,2.391036,3.7,6.062178,-1.5,3.7,7.794229,-0.5,3.7,5.553473,-0.7386699,3.7,7.14018,0.4788528,4,5.553473,-0.7386699,4,6.346827,-0.1299086,4,4.949747,-0.05025253,4,5.656855,0.6568542,4,4.26133,0.5534734,4,3.5,1.062178,4,4.870091,1.346827,4,2.678784,1.467157,4,4,1.928203,4,3.061467,2.391036,3.7,6.062178,-1.5,4,6.062178,-1.5,3.7,7.794229,-0.5,4,6.928203,-1,4.25,6.928203,-1,4.25,7.794229,-0.5,5,4.949747,-0.05025253,5,5.553473,-0.7386699,4,4.949747,-0.05025253,4,5.553473,-0.7386699,4,3.061467,2.391036,4,4,1.928203,4.25,3.061467,2.391036,4.25,4,1.928203,4,-2.230676E-15,3,4,1.044209,2.931559,4.25,-1.286498E-15,3,4.25,1.044209,2.931559,4,1.811733,1.761481,4,2.070552,2.727407,4,0.9136833,1.940114,4,-5.178488E-15,2,4,-2.230676E-15,3,4,1.044209,2.931559,4,6.940114,-4.086317,4,7.931559,-3.955791,4,6.76148,-3.188267,4,7.727407,-2.929448,4,6.467156,-2.321216,4,7.391036,-1.938533,4,6.062178,-1.5,4,6.928203,-1,3.7,5.553473,-0.7386699,3.7,7.14018,0.4788528,4,5.553473,-0.7386699,4,6.346827,-0.1299086,4.25,6.346827,-0.1299086,4.25,7.14018,0.4788528,5,6.062178,-1.5,5,6.467156,-2.321216,4,6.062178,-1.5,4,6.467156,-2.321216,3.7,2.678784,1.467157,3.7,3.444151,3.314916,3.7,1.811733,1.761481,3.7,2.329371,3.693332,5,7.391036,-1.938533,5,6.928203,-1,4.75,7.391036,-1.938533,4.75,6.928203,-1,5,6.346827,-0.1299086,5,5.656855,0.6568542,4.75,6.346827,-0.1299086,4.75,5.656855,0.6568542,5,7.931559,-3.955791,5,7.727407,-2.929448,4.75,7.931559,-3.955791,4.75,7.727407,-2.929448,4.25,7.794229,-0.5,4.25,7.14018,0.4788528,3.7,7.794229,-0.5,3.7,7.14018,0.4788528,4,2.678784,1.467157,4,3.061467,2.391036,3.7,2.678784,1.467157,3.7,3.444151,3.314916,4.25,3.444151,3.314916,4.25,3.061467,2.391036,4,-5.178488E-15,2,5,-5.178488E-15,2,4,0.9136833,1.940114,5,0.9136833,1.940114,4.25,6.346827,-0.1299086,4.25,5.656855,0.6568542,4,6.346827,-0.1299086,4,5.656855,0.6568542,4,4.26133,0.5534734,5,4.26133,0.5534734,4,4.949747,-0.05025253,5,4.949747,-0.05025253,4.25,7.391036,-1.938533,4.25,6.928203,-1,4,7.391036,-1.938533,4,6.928203,-1,5,6.467156,-2.321216,5,6.76148,-3.188267,4,6.467156,-2.321216,4,6.76148,-3.188267,4,2.678784,1.467157,5,2.678784,1.467157,4,3.5,1.062178,5,3.5,1.062178,5.3,6.940114,-4.086317,5.3,7,-5,5,6.940114,-4.086317,3.7,7,-5,4,6.940114,-4.086317,3.7,6.940114,-4.086317,4,4.870091,1.346827,4,5.656855,0.6568542,4.25,4.870091,1.346827,4.25,5.656855,0.6568542,4,1.044209,2.931559,4,2.070552,2.727407,4.25,1.044209,2.931559,4.25,2.070552,2.727407,4.25,2.329371,3.693332,4.25,2.070552,2.727407,3.7,2.329371,3.693332,4,2.070552,2.727407,3.7,1.811733,1.761481,4,1.811733,1.761481,5.3,5.553473,-0.7386699,5.3,6.062178,-1.5,5,5.553473,-0.7386699,5,6.062178,-1.5,4,5.553473,-0.7386699,4,6.062178,-1.5,3.7,5.553473,-0.7386699,3.7,6.062178,-1.5,5,7.727407,-2.929448,5,7.391036,-1.938533,4.75,7.727407,-2.929448,4.75,7.391036,-1.938533,3.7,1.811733,1.761481,4,1.811733,1.761481,3.7,2.678784,1.467157,5,1.811733,1.761481,5.3,2.678784,1.467157,5.3,1.811733,1.761481,4,2.678784,1.467157,5,2.678784,1.467157,4,6.940114,-4.086317,3.7,6.940114,-4.086317,4,7.931559,-3.955791,3.7,8.923004,-3.825264,4.25,7.931559,-3.955791,4.25,8.923004,-3.825264,5.3,6.062178,-1.5,5.3,5.553473,-0.7386699,5.3,7.794229,-0.5,5.3,7.14018,0.4788528,5.3,5.553473,-0.7386699,5,5.553473,-0.7386699,5.3,7.14018,0.4788528,5,6.346827,-0.1299086,4.75,6.346827,-0.1299086,4.75,7.14018,0.4788528,5.3,2.678784,1.467157,5.3,1.811733,1.761481,5.3,3.444151,3.314916,5.3,2.329371,3.693332,3.7,9,-5,3.7,8.923004,-3.825264,3.7,7,-5,3.7,6.940114,-4.086317,5,3.061467,2.391036,4.75,3.061467,2.391036,5,4,1.928203,4.75,4,1.928203,4,0.9136833,1.940114,5,0.9136833,1.940114,4,1.811733,1.761481,5,1.811733,1.761481,5.3,9,-5,5.3,7,-5,5.3,8.923004,-3.825264,5.3,6.940114,-4.086317,5,4.870091,1.346827,4.75,4.870091,1.346827,5,5.656855,0.6568542,4.75,5.656855,0.6568542,5.3,7.794229,-0.5,5.3,7.14018,0.4788528,4.75,7.794229,-0.5,4.75,7.14018,0.4788528,5.3,2.329371,3.693332,4.75,2.329371,3.693332,5.3,3.444151,3.314916,4.75,3.444151,3.314916,5,6.940114,-4.086317,5,7.931559,-3.955791,5.3,6.940114,-4.086317,5.3,8.923004,-3.825264,4.75,7.931559,-3.955791,4.75,8.923004,-3.825264,5,-2.230676E-15,3,4.75,-1.286498E-15,3,5,1.044209,2.931559,4.75,1.044209,2.931559,5,6.940114,-4.086317,5,6.76148,-3.188267,5,7.931559,-3.955791,5,7.727407,-2.929448,5,6.467156,-2.321216,5,7.391036,-1.938533,5,6.062178,-1.5,5,6.928203,-1,5.3,6.062178,-1.5,5.3,7.794229,-0.5,5,6.062178,-1.5,5,6.928203,-1,4.75,6.928203,-1,4.75,7.794229,-0.5,5.3,2.678784,1.467157,5,3.061467,2.391036,5,2.678784,1.467157,4.75,3.444151,3.314916,4.75,3.061467,2.391036,5.3,3.444151,3.314916,5.3,9,-5,5.3,8.923004,-3.825264,4.75,9,-5,4.75,8.923004,-3.825264,5,1.811733,1.761481,5,0.9136833,1.940114,5,2.070552,2.727407,5,-5.178488E-15,2,5,-2.230676E-15,3,5,1.044209,2.931559 + } + PolygonVertexIndex: *720 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,21,-21,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,33,-21,22,20,-34,34,36,-36,37,35,-37,36,38,-38,37,38,-40,38,40,-40,41,39,-41,42,44,-44,44,45,-44,46,45,-45,45,47,-44,48,43,-48,49,45,-47,50,45,-50,51,49,-47,52,45,-51,53,52,-51,54,45,-53,55,45,-55,56,45,-56,57,45,-57,58,45,-58,59,45,-59,59,58,-61,60,58,-62,62,61,-59,63,65,-65,66,64,-66,7,66,-66,67,66,-8,8,67,-8,68,66,-68,69,71,-71,72,70,-72,73,72,-72,72,73,-75,75,73,-72,76,75,-72,77,76,-72,78,75,-77,79,77,-72,77,79,-81,81,79,-72,82,81,-72,83,82,-72,84,83,-72,85,84,-72,71,86,-86,86,87,-86,87,88,-86,89,85,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,102,103,-106,106,102,-106,107,105,-104,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,133,-136,137,136,-136,138,137,-136,139,137,-139,140,139,-139,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,149,-149,151,149,-151,152,149,-152,153,152,-152,154,152,-154,155,154,-154,156,158,-158,159,157,-159,160,159,-159,161,160,-159,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,175,-178,179,175,-179,180,182,-182,183,181,-183,184,183,-183,185,183,-185,186,185,-185,187,185,-187,188,190,-190,191,189,-191,192,189,-192,193,189,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,220,221,-220,221,222,-220,223,219,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,251,-251,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,265,-265,265,266,-268,268,270,-270,271,269,-271,272,271,-271,273,271,-273,274,273,-273,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,282,284,-284,285,283,-285,286,284,-283,287,284,-287,288,290,-290,291,289,-291,292,291,-291,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,301,-301,303,302,-301,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,337,-340,341,340,-340,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,347,-350,351,350,-350,352,350,-352,353,352,-352,354,356,-356,357,355,-357,358,355,-358,359,355,-359,360,362,-362,361,363,-361,364,363,-362,365,360,-364,366,368,-368,369,367,-369,370,372,-372,373,371,-373,374,373,-373,375,374,-373 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2160 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9940593,-0.1088393,0,-0.9940593,-0.1088393,0,-0.9940593,-0.1088393,0,-0.9659258,-0.258819,0,0.9807853,0.1950903,0,0.9807853,0.1950903,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9807853,0.1950903,0,0.1305262,0.9914449,0,0.1950903,0.9807853,0,0.1305262,0.9914449,0,0.1950903,0.9807853,0,0.1305262,0.9914449,0,0.1950903,0.9807853,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.5,0.8660254,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9659258,0.258819,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.806461,-0.5912873,0,-0.806461,-0.5912873,0,-0.806461,-0.5912873,0,-0.7071068,-0.7071068,0,0.4422887,0.8968728,0,0.4422887,0.8968728,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.4422887,0.8968728,0,0.06540313,0.9978589,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.06540313,0.9978589,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.8548975,-0.518797,0,-0.8548975,-0.518797,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.8548975,-0.518797,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.9238795,0.3826834,0,0.7518399,0.6593459,0,0.7518399,0.6593459,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7518399,0.6593459,0,0.9807853,0.1950903,0,0.9807853,0.1950903,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9807853,0.1950903,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,0.7518399,0.6593459,0,0.7518399,0.6593459,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7518399,0.6593459,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.9238795,0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9238795,-0.3826834,0,-0.3624122,-0.9320179,0,-0.5,-0.8660254,0,-0.3624122,-0.9320179,0,-0.5,-0.8660254,0,-0.3624122,-0.9320179,0,-0.5,-0.8660254,0,-0.9978589,-0.06540313,0,-0.9940593,-0.1088393,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9940593,-0.1088393,0,-0.9940593,-0.1088393,0,-0.9978589,-0.06540313,0,-0.9940593,-0.1088393,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9940593,-0.1088393,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1950903,0.9807853,0,0.1950903,0.9807853,0,0.1950903,0.9807853,0,0.1305262,0.9914449,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.8314696,-0.5555702,0,-0.806461,-0.5912873,0,-0.8314696,-0.5555702,0,-0.8548975,-0.518797,0,-0.8314696,-0.5555702,0,-0.806461,-0.5912873,0,-0.806461,-0.5912873,0,-0.8548975,-0.518797,0,-0.806461,-0.5912873,0,-0.8548975,-0.518797,0,-0.8548975,-0.518797,0,-0.806461,-0.5912873,0,-0.8314696,-0.5555702,0,-0.8548975,-0.518797,0,-0.806461,-0.5912873,0,-0.8314696,-0.5555702,0,-0.8548975,-0.518797,0,-0.8314696,-0.5555702,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9659258,0.258819,0,-0.3214395,-0.9469302,0,-0.3214395,-0.9469302,0,-0.2798557,-0.9600421,0,-0.2798557,-0.9600421,0,-0.2798557,-0.9600421,0,-0.3214395,-0.9469302,0,-0.3214395,-0.9469302,0,-0.3214395,-0.9469302,0,-0.2798557,-0.9600421,0,-0.3214395,-0.9469302,0,-0.2798557,-0.9600421,0,-0.3214395,-0.9469302,0,-0.3624122,-0.9320179,0,-0.3214395,-0.9469302,0,-0.3214395,-0.9469302,0,-0.3624122,-0.9320179,0,-0.3214395,-0.9469302,0,-0.3624122,-0.9320179,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.4422887,0.8968728,0,0.5,0.8660254,0,0.4422887,0.8968728,0,0.5,0.8660254,0,0.4422887,0.8968728,0,0.5,0.8660254,0,-0.1305262,-0.9914449,0,-0.2798557,-0.9600421,0,-0.1305262,-0.9914449,0,-0.2798557,-0.9600421,0,-0.1305262,-0.9914449,0,-0.2798557,-0.9600421,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *752 { + a: -15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,19.68504,-7.105427E-15,15.74803,-7.105427E-15,19.68504,39.37008,15.74803,39.37008,-15.74803,5.129489E-31,-16.73228,5.129489E-31,-15.74803,39.37008,-16.73228,39.37008,-18.70079,-19.68504,-16.73228,-19.68504,-18.70079,39.37008,-16.73228,39.37008,-18.70079,35.43307,-16.73228,35.43307,-20.86614,35.43307,-14.56693,35.43307,-20.86614,27.55906,-14.56693,27.55906,-15.57398,31.22661,-15.0601,35.12994,-11.53326,30.42286,15.74803,39.37008,-7.632018,29.09857,-19.68504,39.37008,-19.68504,35.43307,-1.968504,30.68594,1.885247,28.11094,-3.937008,27.27639,2.58604,22.27108,-0.5114511,24.98751,5.302467,19.17359,7.591352,15.74803,9.413528,12.05302,13.05085,13.55965,14.54068,9.170753,15.74803,6.617689E-15,11.81102,1.552735E-15,11.54157,4.111061,10.73782,8.151781,19.68504,11.81102,19.68504,7.874016,18.70079,11.81102,15.74803,7.874016,16.73228,11.81102,15.74803,11.81102,19.68504,39.37008,19.68504,35.43307,-15.74803,39.37008,15.0601,35.12994,11.53326,30.42286,15.57398,31.22661,7.632018,29.09857,1.968504,30.68594,-1.885247,28.11094,3.937008,27.27639,-2.58604,22.27108,0.5114511,24.98751,-5.302467,19.17359,-7.591352,15.74803,-9.413528,12.05302,-13.05085,13.55965,-14.54068,9.170753,-15.74803,-2.277991E-14,-11.81102,-2.784486E-14,-11.54157,4.111061,-10.73782,8.151781,-19.68504,17.50435,-19.68504,21.10925,-15.74803,17.50435,-15.74803,21.10925,16.73228,21.36674,16.73228,17.24686,15.74803,21.36674,15.74803,17.24686,19.68504,1.78042,18.70079,1.78042,19.68504,5.900302,18.70079,5.900302,19.68504,12.48178,20.86614,8.544767,19.68504,8.544767,18.70079,16.41878,18.70079,12.48178,20.86614,16.41878,19.68504,8.876481,18.70079,8.876481,19.68504,12.99636,18.70079,12.99636,15.74803,8.876481,15.74803,12.99636,16.73228,8.876481,16.73228,12.99636,-15.74803,9.133973,-19.68504,9.133973,-15.74803,12.73887,-19.68504,12.73887,14.56693,4.010115,14.56693,8.644982,16.73228,4.010115,16.73228,8.644982,16.73228,20.7003,16.73228,16.58042,15.74803,20.7003,15.74803,16.58042,16.73228,21.96033,16.73228,17.32546,14.56693,21.96033,14.56693,17.32546,2.908149,21.86407,0.1978446,19.48719,0.5114511,24.98751,-2.58604,22.27108,-2.179029,16.77689,-4.181802,13.77953,-5.302467,19.17359,-5.776207,10.54639,-7.591352,15.74803,-9.413528,12.05302,-5.905512,23.86684,-1.968504,30.68594,-2.908149,21.86407,1.885247,28.11094,-2.908149,21.86407,-0.5114511,24.98751,-0.1978446,19.48719,2.58604,22.27108,2.179029,16.77689,4.181802,13.77953,5.302467,19.17359,5.776207,10.54639,7.591352,15.74803,9.413528,12.05302,-14.56693,17.71654,-15.74803,17.71654,-14.56693,25.59055,-15.74803,21.65354,-16.73228,21.65354,-16.73228,25.59055,-19.68504,12.99755,-19.68504,16.60245,-15.74803,12.99755,-15.74803,16.60245,15.74803,6.646529,15.74803,10.76641,16.73228,6.646529,16.73228,10.76641,15.74803,-0.7724779,15.74803,3.347404,16.73228,-0.7724779,16.73228,3.347404,6.934964,7.132808,10.73782,8.151781,7.638244,3.597178,7.874016,-7.986353E-14,11.81102,-6.825797E-14,11.54157,4.111061,-16.08786,27.32328,-15.57398,31.22661,-12.55223,26.62,-11.53326,30.42286,-9.138645,25.46125,-7.632018,29.09857,-5.905512,23.86684,-3.937008,27.27639,14.56693,15.57556,14.56693,23.44958,15.74803,15.57556,15.74803,19.51257,16.73228,19.51257,16.73228,23.44958,-19.68504,15.85253,-19.68504,19.45742,-15.74803,15.85253,-15.74803,19.45742,5.776207,10.54639,13.05085,13.55965,6.934964,7.132808,14.54068,9.170753,19.68504,19.71492,19.68504,15.59503,18.70079,19.71492,18.70079,15.59503,19.68504,16.85994,19.68504,12.74006,18.70079,16.85994,18.70079,12.74006,19.68504,21.36674,19.68504,17.24686,18.70079,21.36674,18.70079,17.24686,16.73228,18.68495,16.73228,14.05008,14.56693,18.68495,14.56693,14.05008,-15.74803,9.37245,-15.74803,13.30946,-14.56693,9.37245,-14.56693,17.24647,-16.73228,17.24647,-16.73228,13.30946,-15.74803,-0.5149853,-19.68504,-0.5149853,-15.74803,3.089912,-19.68504,3.089912,16.73228,16.85994,16.73228,12.74006,15.74803,16.85994,15.74803,12.74006,-15.74803,11.1768,-19.68504,11.1768,-15.74803,14.7817,-19.68504,14.7817,16.73228,19.71492,16.73228,15.59503,15.74803,19.71492,15.74803,15.59503,-19.68504,16.83791,-19.68504,20.44281,-15.74803,16.83791,-15.74803,20.44281,-15.74803,6.904022,-19.68504,6.904022,-15.74803,10.50892,-19.68504,10.50892,-20.86614,17.84044,-20.86614,21.44534,-19.68504,17.84044,-14.56693,21.44534,-15.74803,17.84044,-14.56693,17.84044,15.74803,10.91931,15.74803,15.03919,16.73228,10.91931,16.73228,15.03919,15.74803,1.78042,15.74803,5.900302,16.73228,1.78042,16.73228,5.900302,16.73228,16.41878,16.73228,12.48178,14.56693,16.41878,15.74803,12.48178,14.56693,8.544767,15.74803,8.544767,-20.86614,14.56506,-20.86614,18.16996,-19.68504,14.56506,-19.68504,18.16996,-15.74803,14.56506,-15.74803,18.16996,-14.56693,14.56506,-14.56693,18.16996,19.68504,20.7003,19.68504,16.58042,18.70079,20.7003,18.70079,16.58042,-14.56693,4.5251,-15.74803,4.5251,-14.56693,8.129997,-19.68504,4.5251,-20.86614,8.129997,-20.86614,4.5251,-15.74803,8.129997,-19.68504,8.129997,15.74803,24.98964,14.56693,24.98964,15.74803,28.92665,14.56693,32.86366,16.73228,28.92665,16.73228,32.86366,5.905512,23.86684,2.908149,21.86407,1.968504,30.68594,-1.885247,28.11094,20.86614,15.57556,19.68504,15.57556,20.86614,23.44958,19.68504,19.51257,18.70079,19.51257,18.70079,23.44958,-5.776207,10.54639,-6.934964,7.132808,-13.05085,13.55965,-14.54068,9.170753,-19.68504,35.43307,-15.0601,35.12994,-19.68504,27.55906,-16.08786,27.32328,19.68504,6.646529,18.70079,6.646529,19.68504,10.76641,18.70079,10.76641,-15.74803,2.037912,-19.68504,2.037912,-15.74803,5.642809,-19.68504,5.642809,19.68504,35.43307,19.68504,27.55906,15.0601,35.12994,16.08786,27.32328,19.68504,10.91931,18.70079,10.91931,19.68504,15.03919,18.70079,15.03919,20.86614,18.68495,20.86614,14.05008,18.70079,18.68495,18.70079,14.05008,20.86614,4.010115,18.70079,4.010115,20.86614,8.644982,18.70079,8.644982,19.68504,24.98964,19.68504,28.92665,20.86614,24.98964,20.86614,32.86366,18.70079,28.92665,18.70079,32.86366,19.68504,-0.7724779,18.70079,-0.7724779,19.68504,3.347404,18.70079,3.347404,16.08786,27.32328,12.55223,26.62,15.57398,31.22661,11.53326,30.42286,9.138645,25.46125,7.632018,29.09857,5.905512,23.86684,3.937008,27.27639,-20.86614,17.71654,-20.86614,25.59055,-19.68504,17.71654,-19.68504,21.65354,-18.70079,21.65354,-18.70079,25.59055,-20.86614,9.37245,-19.68504,13.30946,-19.68504,9.37245,-18.70079,17.24647,-18.70079,13.30946,-20.86614,17.24647,20.86614,21.96033,20.86614,17.32546,18.70079,21.96033,18.70079,17.32546,-6.934964,7.132808,-7.638244,3.597178,-10.73782,8.151781,-7.874016,5.395698E-14,-11.81102,6.556254E-14,-11.54157,4.111061 + } + UVIndex: *720 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,21,20,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,33,20,22,20,33,34,36,35,37,35,36,36,38,37,37,38,39,38,40,39,41,39,40,42,44,43,44,45,43,46,45,44,45,47,43,48,43,47,49,45,46,50,45,49,51,49,46,52,45,50,53,52,50,54,45,52,55,45,54,56,45,55,57,45,56,58,45,57,59,45,58,59,58,60,60,58,61,62,61,58,63,65,64,66,64,65,7,66,65,67,66,7,8,67,7,68,66,67,69,71,70,72,70,71,73,72,71,72,73,74,75,73,71,76,75,71,77,76,71,78,75,76,79,77,71,77,79,80,81,79,71,82,81,71,83,82,71,84,83,71,85,84,71,71,86,85,86,87,85,87,88,85,89,85,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,102,103,105,106,102,105,107,105,103,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,133,135,137,136,135,138,137,135,139,137,138,140,139,138,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,149,148,151,149,150,152,149,151,153,152,151,154,152,153,155,154,153,156,158,157,159,157,158,160,159,158,161,160,158,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,175,177,179,175,178,180,182,181,183,181,182,184,183,182,185,183,184,186,185,184,187,185,186,188,190,189,191,189,190,192,189,191,193,189,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,220,221,219,221,222,219,223,219,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,251,250,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,265,264,265,266,267,268,270,269,271,269,270,272,271,270,273,271,272,274,273,272,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,282,284,283,285,283,284,286,284,282,287,284,286,288,290,289,291,289,290,292,291,290,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,301,300,303,302,300,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,337,339,341,340,339,342,344,343,345,343,344,346,348,347,349,347,348,350,347,349,351,350,349,352,350,351,353,352,351,354,356,355,357,355,356,358,355,357,359,355,358,360,362,361,361,363,360,364,363,361,365,360,363,366,368,367,369,367,368,370,372,371,373,371,372,374,373,372,375,374,372 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *240 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallArchTopDetail, Model::RootNode + C: "OO",5236481465593596392,0 + + ;Geometry::, Model::Mesh wallArchTopDetail + C: "OO",5722320329356184300,5236481465593596392 + + ;Material::wood, Model::Mesh wallArchTopDetail + C: "OO",7178,5236481465593596392 + + ;Material::stone, Model::Mesh wallArchTopDetail + C: "OO",7184,5236481465593596392 + + ;Material::stoneDark, Model::Mesh wallArchTopDetail + C: "OO",7174,5236481465593596392 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTopDetail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTopDetail.fbx.import new file mode 100644 index 0000000..3e24b00 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTopDetail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cju67f3slxp5x" +path="res://.godot/imported/wallArchTopDetail.fbx-76020f22ede78b100e05285017f5a988.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallArchTopDetail.fbx" +dest_files=["res://.godot/imported/wallArchTopDetail.fbx-76020f22ede78b100e05285017f5a988.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlock.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlock.fbx new file mode 100644 index 0000000..1bca30c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlock.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 219 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallBlock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallBlock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4764582586430189421, "Model::wallBlock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4771635584499932169, "Geometry::", "Mesh" { + Vertices: *378 { + a: 5,0,5,5,0,4,4,0,5,4.75,0,4,4,0,4.75,5,10,4,5,0,4,5,10,5,5,0,5,-4,0,5,-5,0,5,-4,10,5,-5,10,5,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,-5,0,4,-5,10,4,-5,0,5,-5,10,5,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4.75,4,10,4.75,4,0,5,4,10,5,-5,0,-5,-5,10,-5,-5,0,-4,-5,10,-4,-4,10,-5,-4,0,-5,-4,10,-4.75,-4,0,-4.75,-4,0,4.75,-4.75,0,4,-4,0,5,-5,0,5,-5,0,4,5,10,4,5,10,5,4.75,10,4,4,10,5,4,10,4.75,-4,10,4.75,-4,10,5,-4.75,10,4,-5,10,5,-5,10,4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4,10,-4.75,-5,0,-5,-4,0,-5,-5,10,-5,-4,10,-5,-4,10,-5,-4,10,-4.75,-5,10,-5,-4.75,10,-4,-5,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4,0,-4.75,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,-4.75,0,-4,-5,0,-4,-4.75,10,-4,-5,10,-4,-5,0,4,-4.75,0,4,-5,10,4,-4.75,10,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4,0,-5,4,10,-5,4,0,-4.75,4,10,-4.75,-4,0,-5,-5,0,-5,-4,0,-4.75,-4.75,0,-4,-5,0,-4,-4,0,-4.75,4,0,-4.75,-4,10,-4.75,4,10,-4.75,4,0,4.75,-4,0,4.75,4,10,4.75,-4,10,4.75,4.75,10,-4,4.75,0,-4,4.75,10,4,4.75,0,4,-4.75,0,-4,-4.75,10,-4,-4.75,0,4,-4.75,10,4,4,0,-4.75,4.75,0,-4,4,10,-4.75,4.75,10,-4,4,10,-4.75,4.75,0,-4 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,38,-41,42,44,-44,45,43,-45,46,45,-45,47,49,-49,50,48,-50,51,50,-50,52,54,-54,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,64,-64,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,73,-73,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,100,-103,55,56,-45,46,44,-57,47,46,-57,62,47,-57,49,47,-63,64,49,-63,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,3,4,-73,74,72,-5,37,74,-5,101,74,-38,38,101,-38,102,101,-39,120,122,-122,123,125,-125 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *252 { + a: 19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,15.74803,18.70079,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,18.70079,0,18.70079,39.37008,19.68504,0,19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,39.37008,19.68504,0,18.70079,39.37008,18.70079,0,-15.74803,18.70079,-18.70079,15.74803,-15.74803,19.68504,-19.68504,19.68504,-19.68504,15.74803,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-15.74803,18.70079,15.74803,18.70079,15.74803,19.68504,18.70079,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-15.74803,-18.70079,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,15.74803,-19.68504,15.74803,-18.70079,19.68504,-19.68504,18.70079,-15.74803,19.68504,-15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,15.74803,-18.70079,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-18.70079,0,-18.70079,39.37008,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-18.70079,-18.70079,-15.74803,-19.68504,-15.74803,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-15.74803,0,-15.74803,0,-15.74803,39.37008,15.74803,0,15.74803,39.37008,-15.74803,0,-15.74803,39.37008,15.74803,0,-15.74803,0,-15.74803,39.37008,15.74803,0 + } + UVIndex: *234 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,38,40,42,44,43,45,43,44,46,45,44,47,49,48,50,48,49,51,50,49,52,54,53,55,53,54,56,55,54,57,59,58,60,58,59,61,63,62,64,62,63,65,64,63,66,68,67,69,67,68,70,72,71,73,71,72,74,73,72,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,100,102,55,56,44,46,44,56,47,46,56,62,47,56,49,47,62,64,49,62,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,3,4,72,74,72,4,37,74,4,101,74,37,38,101,37,102,101,38,120,122,121,123,125,124 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallBlock, Model::RootNode + C: "OO",4764582586430189421,0 + + ;Geometry::, Model::Mesh wallBlock + C: "OO",4771635584499932169,4764582586430189421 + + ;Material::wood, Model::Mesh wallBlock + C: "OO",7178,4764582586430189421 + + ;Material::stone, Model::Mesh wallBlock + C: "OO",7184,4764582586430189421 + + ;Material::_defaultMat, Model::Mesh wallBlock + C: "OO",7176,4764582586430189421 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlock.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlock.fbx.import new file mode 100644 index 0000000..ae87053 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dgcto0v6cix0x" +path="res://.godot/imported/wallBlock.fbx-0136deae5905f7a0dc91377546ca1ef9.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlock.fbx" +dest_files=["res://.godot/imported/wallBlock.fbx-0136deae5905f7a0dc91377546ca1ef9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlockHalf.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlockHalf.fbx new file mode 100644 index 0000000..8414b19 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlockHalf.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 282 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallBlockHalf.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallBlockHalf.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4993205929010585689, "Model::wallBlockHalf", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4635302843988916915, "Geometry::", "Mesh" { + Vertices: *378 { + a: 5,0,5,5,0,4,4,0,5,4.75,0,4,4,0,4.75,5,5,4,5,0,4,5,5,5,5,0,5,-4,0,5,-5,0,5,-4,5,5,-5,5,5,-4,5,4.75,-4,0,4.75,-4,5,5,-4,0,5,-5,0,4,-5,5,4,-5,0,5,-5,5,5,5,0,5,4,0,5,5,5,5,4,5,5,4,0,4.75,4,5,4.75,4,0,5,4,5,5,-5,0,-5,-5,5,-5,-5,0,-4,-5,5,-4,-4,5,-5,-4,0,-5,-4,5,-4.75,-4,0,-4.75,-4,0,4.75,-4.75,0,4,-4,0,5,-5,0,5,-5,0,4,5,5,4,5,5,5,4.75,5,4,4,5,5,4,5,4.75,-4,5,4.75,-4,5,5,-4.75,5,4,-5,5,5,-5,5,4,5,5,-5,5,5,-4,4,5,-5,4.75,5,-4,4,5,-4.75,-5,0,-5,-4,0,-5,-5,5,-5,-4,5,-5,-4,5,-5,-4,5,-4.75,-5,5,-5,-4.75,5,-4,-5,5,-4,5,5,-5,5,0,-5,5,5,-4,5,0,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4,0,-4.75,4.75,0,4,5,0,4,4.75,5,4,5,5,4,5,0,-4,4.75,0,-4,5,5,-4,4.75,5,-4,-4.75,0,-4,-5,0,-4,-4.75,5,-4,-5,5,-4,-5,0,4,-4.75,0,4,-5,5,4,-4.75,5,4,4,0,-5,5,0,-5,4,5,-5,5,5,-5,4,0,-5,4,5,-5,4,0,-4.75,4,5,-4.75,-4,0,-5,-5,0,-5,-4,0,-4.75,-4.75,0,-4,-5,0,-4,-4,0,-4.75,4,0,-4.75,-4,5,-4.75,4,5,-4.75,4,0,4.75,-4,0,4.75,4,5,4.75,-4,5,4.75,4.75,5,-4,4.75,0,-4,4.75,5,4,4.75,0,4,-4.75,0,-4,-4.75,5,-4,-4.75,0,4,-4.75,5,4,4,0,-4.75,4.75,0,-4,4,5,-4.75,4.75,5,-4,4,5,-4.75,4.75,0,-4 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,38,-41,42,44,-44,45,43,-45,46,45,-45,47,49,-49,50,48,-50,51,50,-50,52,54,-54,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,64,-64,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,73,-73,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,100,-103,55,56,-45,46,44,-57,47,46,-57,62,47,-57,49,47,-63,64,49,-63,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,3,4,-73,74,72,-5,37,74,-5,101,74,-38,38,101,-38,102,101,-39,120,122,-122,123,125,-125 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *252 { + a: 19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,15.74803,18.70079,-15.74803,19.68504,-15.74803,0,-19.68504,19.68504,-19.68504,0,-15.74803,0,-19.68504,0,-15.74803,19.68504,-19.68504,19.68504,-18.70079,19.68504,-18.70079,-1.136868E-14,-19.68504,19.68504,-19.68504,-1.136868E-14,15.74803,-4.263256E-14,15.74803,19.68504,19.68504,-4.263256E-14,19.68504,19.68504,19.68504,0,15.74803,0,19.68504,19.68504,15.74803,19.68504,18.70079,0,18.70079,19.68504,19.68504,0,19.68504,19.68504,-19.68504,-4.263256E-14,-19.68504,19.68504,-15.74803,-4.263256E-14,-15.74803,19.68504,19.68504,19.68504,19.68504,-1.136868E-14,18.70079,19.68504,18.70079,-1.136868E-14,-15.74803,18.70079,-18.70079,15.74803,-15.74803,19.68504,-19.68504,19.68504,-19.68504,15.74803,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-15.74803,18.70079,15.74803,18.70079,15.74803,19.68504,18.70079,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-15.74803,-18.70079,19.68504,0,15.74803,0,19.68504,19.68504,15.74803,19.68504,15.74803,-19.68504,15.74803,-18.70079,19.68504,-19.68504,18.70079,-15.74803,19.68504,-15.74803,19.68504,19.68504,19.68504,0,15.74803,19.68504,15.74803,0,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,15.74803,-18.70079,-18.70079,0,-19.68504,0,-18.70079,19.68504,-19.68504,19.68504,19.68504,0,18.70079,0,19.68504,19.68504,18.70079,19.68504,-18.70079,-1.96997E-27,-19.68504,-1.96997E-27,-18.70079,19.68504,-19.68504,19.68504,19.68504,1.96997E-27,18.70079,1.96997E-27,19.68504,19.68504,18.70079,19.68504,-15.74803,0,-19.68504,0,-15.74803,19.68504,-19.68504,19.68504,-19.68504,0,-19.68504,19.68504,-18.70079,0,-18.70079,19.68504,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-18.70079,-18.70079,-15.74803,-19.68504,-15.74803,15.74803,-1.36152E-28,-15.74803,-1.36152E-28,15.74803,19.68504,-15.74803,19.68504,15.74803,1.36152E-28,-15.74803,1.36152E-28,15.74803,19.68504,-15.74803,19.68504,15.74803,19.68504,15.74803,0,-15.74803,19.68504,-15.74803,0,-15.74803,-4.050093E-14,-15.74803,19.68504,15.74803,-4.050093E-14,15.74803,19.68504,-15.74803,0,-15.74803,19.68504,15.74803,0,-15.74803,0,-15.74803,19.68504,15.74803,0 + } + UVIndex: *234 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,38,40,42,44,43,45,43,44,46,45,44,47,49,48,50,48,49,51,50,49,52,54,53,55,53,54,56,55,54,57,59,58,60,58,59,61,63,62,64,62,63,65,64,63,66,68,67,69,67,68,70,72,71,73,71,72,74,73,72,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,100,102,55,56,44,46,44,56,47,46,56,62,47,56,49,47,62,64,49,62,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,3,4,72,74,72,4,37,74,4,101,74,37,38,101,37,102,101,38,120,122,121,123,125,124 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallBlockHalf, Model::RootNode + C: "OO",4993205929010585689,0 + + ;Geometry::, Model::Mesh wallBlockHalf + C: "OO",4635302843988916915,4993205929010585689 + + ;Material::wood, Model::Mesh wallBlockHalf + C: "OO",7178,4993205929010585689 + + ;Material::stone, Model::Mesh wallBlockHalf + C: "OO",7184,4993205929010585689 + + ;Material::_defaultMat, Model::Mesh wallBlockHalf + C: "OO",7176,4993205929010585689 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlockHalf.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlockHalf.fbx.import new file mode 100644 index 0000000..e2afdf7 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlockHalf.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://demb5xjapopta" +path="res://.godot/imported/wallBlockHalf.fbx-389e8ee690fa236cd40bc9c906db73e5.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBlockHalf.fbx" +dest_files=["res://.godot/imported/wallBlockHalf.fbx-389e8ee690fa236cd40bc9c906db73e5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBroken.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBroken.fbx new file mode 100644 index 0000000..7deaace --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBroken.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 319 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallBroken.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallBroken.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5261916380965101138, "Model::wallBroken", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5338861252178096637, "Geometry::", "Mesh" { + Vertices: *834 { + a: 4.75,6.666667,1.526579,4.95,6.666667,1.472989,4.75,6.666667,0.7265788,4.25,6.666667,0.7924051,4.25,6.666667,0.4685391,4.169033,6.666667,0.490234,4.25,4.166667,-0.7112079,4.25,4.166667,-1.259889,3.97566,4.166667,-0.9855482,4.75,2.5,-1.745092,4.890483,2.5,-1.782734,4.75,2.5,-2.307025,4.25,2.5,-2.241199,4.25,2.5,-2.803131,4.109517,2.5,-2.765489,4.75,0,4,4.75,0,-5,4.25,0,4,4.25,0,-5,4.25,0,-5,4.75,0,-5,4.25,0.8333334,-5,4.75,0.8333334,-5,4.25,0.8333334,-4.25,4.75,0.8333334,-4.25,4.25,1.666667,-4.25,4.75,1.666667,-4.25,4.75,1.666667,-4.25,4.75,1.666667,-3.5,4.25,1.666667,-4.25,4.25,1.666667,-3.5,4.75,2.5,-1.745092,4.75,2.5,-0.8486027,4.40752,2.5,-1.653325,4.25,2.5,-0.8486027,4.25,2.5,-2.241199,4.75,0.8333334,-5,4.75,0.8333334,-4.25,4.25,0.8333334,-5,4.25,0.8333334,-4.25,4.25,1.666667,-3.5,4.75,1.666667,-3.5,4.25,2.5,-3.5,4.75,2.5,-3.5,4.25,3.333333,-2,4.75,3.333333,-2,4.25,4.166667,-2,4.75,4.166667,-2,4.75,4.166667,-1.052782,4.75,4.166667,-0.5,4.329213,4.166667,-0.6319947,4.25,4.166667,-0.5,4.25,4.166667,-0.7112079,4.25,5.948657,-0.5,4.75,5.948657,-0.5,4.25,6.666667,-0.5,4.75,6.666667,-0.5,4.75,1.666667,-4.25,4.75,0.8333334,-4.25,4.75,1.666667,-3.5,4.75,0,4,4.75,0.8333334,-5,4.75,0,-5,4.75,2.5,-2.307025,4.75,2.5,-3.5,4.75,2.5,-1.745092,4.75,2.5,-0.8486027,4.75,4.166667,-0.5,4.75,3.333333,-0.8486027,4.75,4.166667,-1.052782,4.75,4.166667,-1.759889,4.75,3.333333,-2,4.75,4.166667,-2,4.75,4.977836,0.09999999,4.75,4.977836,-0.5,4.75,6.666667,0.7265788,4.75,5.948657,0.09999999,4.75,5.948657,-0.5,4.75,6.666667,-0.5,4.75,6.666667,1.526579,4.75,6.666667,1.75,4.75,7.5,3.25,4.75,7.5,1.75,4.75,9.166666,4,4.75,9.166666,3.25,4.25,4.977836,0.09999999,4.75,4.977836,0.09999999,4.25,5.948657,0.09999999,4.75,5.948657,0.09999999,4.651997,7.183333,0.3608245,4.651997,6.666667,0.3608245,4.95,7.183333,1.472989,4.75,6.666667,0.7265788,4.95,6.666667,1.472989,4.59248,3.016666,-2.894899,4.59248,2.5,-2.894899,4.890483,3.016666,-1.782734,4.75,2.5,-2.307025,4.890483,2.5,-1.782734,4.109517,2.5,-2.765489,4.109517,3.016666,-2.765489,4.25,2.5,-2.241199,4.40752,3.016666,-1.653325,4.40752,2.5,-1.653325,5.143374,4.166667,-1.446156,4.789821,4.166667,-1.799709,4.75,4.166667,-1.052782,4.75,4.166667,-1.759889,4.75,6.666667,0.7265788,4.651997,6.666667,0.3608245,4.75,6.666667,-0.5,4.25,6.666667,-0.5,4.25,6.666667,0.4685391,4.25,7.5,3.25,4.75,7.5,3.25,4.25,9.166666,3.25,4.75,9.166666,3.25,4.75,6.666667,1.526579,4.75,6.666667,1.75,4.467037,6.666667,1.602399,4.25,6.666667,1.75,4.25,6.666667,0.7924051,3.97566,4.166667,-0.9855482,3.97566,4.683333,-0.9855482,4.25,4.166667,-0.7112079,4.329213,4.683333,-0.6319947,4.329213,4.166667,-0.6319947,4.25,2.5,-0.8486027,4.75,2.5,-0.8486027,4.25,3.333333,-0.8486027,4.75,3.333333,-0.8486027,4.75,4.977836,-0.5,4.75,4.977836,0.09999999,4.25,4.977836,-0.5,4.25,4.977836,0.09999999,4.75,7.5,1.75,4.75,7.5,3.25,4.25,7.5,1.75,4.25,7.5,3.25,4.25,4.166667,-0.5,4.75,4.166667,-0.5,4.25,4.977836,-0.5,4.75,4.977836,-0.5,4.25,0,-5,4.25,0.8333334,-5,4.25,0,4,4.25,0.8333334,-4.25,4.25,1.666667,-4.25,4.25,1.666667,-3.5,4.25,2.5,-3.5,4.25,2.5,-2.803131,4.25,2.5,-2.241199,4.25,2.5,-0.8486027,4.25,3.333333,-0.8486027,4.25,4.166667,-0.7112079,4.25,4.166667,-0.5,4.25,4.977836,-0.5,4.25,4.977836,0.09999999,4.25,5.948657,0.09999999,4.25,4.166667,-1.259889,4.25,4.166667,-2,4.25,3.333333,-2,4.25,6.666667,0.4685391,4.25,6.666667,-0.5,4.25,5.948657,-0.5,4.25,6.666667,0.7924051,4.25,6.666667,1.75,4.25,7.5,1.75,4.25,7.5,3.25,4.25,9.166666,3.25,4.25,9.166666,4,4.75,3.333333,-0.8486027,4.75,3.333333,-2,4.25,3.333333,-0.8486027,4.25,3.333333,-2,4.25,6.666667,1.75,4.75,6.666667,1.75,4.25,7.5,1.75,4.75,7.5,1.75,4.75,6.666667,1.526579,4.467037,6.666667,1.602399,4.95,6.666667,1.472989,4.467037,7.183333,1.602399,4.95,7.183333,1.472989,4.169033,6.666667,0.490234,4.25,6.666667,0.4685391,4.169033,7.183333,0.490234,4.651997,6.666667,0.3608245,4.651997,7.183333,0.3608245,4.890483,3.016666,-1.782734,4.40752,3.016666,-1.653325,4.59248,3.016666,-2.894899,4.109517,3.016666,-2.765489,3.97566,4.166667,-0.9855482,4.25,4.166667,-1.259889,3.97566,4.683333,-0.9855482,4.75,4.166667,-1.759889,4.789821,4.166667,-1.799709,4.789821,4.683333,-1.799709,4.75,2.5,-2.307025,4.59248,2.5,-2.894899,4.75,2.5,-3.5,4.25,2.5,-3.5,4.25,2.5,-2.803131,4.75,9.166666,3.25,4.75,9.166666,4,4.25,9.166666,3.25,4.25,9.166666,4,4.169033,6.666667,0.490234,4.169033,7.183333,0.490234,4.25,6.666667,0.7924051,4.467037,7.183333,1.602399,4.467037,6.666667,1.602399,4.95,7.183333,1.472989,4.467037,7.183333,1.602399,4.651997,7.183333,0.3608245,4.169033,7.183333,0.490234,4.40752,2.5,-1.653325,4.40752,3.016666,-1.653325,4.75,2.5,-1.745092,4.890483,2.5,-1.782734,4.890483,3.016666,-1.782734,5.143374,4.683333,-1.446156,4.329213,4.683333,-0.6319947,4.789821,4.683333,-1.799709,3.97566,4.683333,-0.9855482,4.75,4.166667,-2,4.75,4.166667,-1.759889,4.25,4.166667,-2,4.25,4.166667,-1.259889,4.789821,4.683333,-1.799709,4.789821,4.166667,-1.799709,5.143374,4.683333,-1.446156,5.143374,4.166667,-1.446156,4.75,4.166667,-1.052782,4.329213,4.166667,-0.6319947,5.143374,4.166667,-1.446156,5.143374,4.683333,-1.446156,4.329213,4.683333,-0.6319947,4.75,5.948657,0.09999999,4.75,5.948657,-0.5,4.25,5.948657,0.09999999,4.25,5.948657,-0.5,4.109517,2.5,-2.765489,4.25,2.5,-2.803131,4.109517,3.016666,-2.765489,4.59248,2.5,-2.894899,4.59248,3.016666,-2.894899,4,0,4,4.25,0,4,4,10,4,4.25,9.166666,4,4.75,9.166666,4,4.75,10,4,5,10,4,5,0,4,4.75,0,4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,4,4,10,4,4,0,5,4,10,5,5,0,5,5,0,4,4,0,5,4,0,4,5,10,4,5,10,5,4.75,10,4,4,10,5,4,10,4,5,0,5,4,0,5,5,10,5,4,10,5 + } + PolygonVertexIndex: *522 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,34,-34,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,53,55,-55,56,54,-56,57,59,-59,59,60,-59,58,60,-62,62,61,-61,63,60,-60,64,63,-60,65,60,-64,66,60,-66,67,60,-67,66,68,-68,67,68,-70,69,68,-71,68,71,-71,72,70,-72,73,60,-68,74,73,-68,75,60,-74,73,76,-76,76,77,-76,78,75,-78,79,60,-76,80,60,-80,81,60,-81,82,81,-81,60,81,-84,84,83,-82,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,92,-92,94,96,-96,97,95,-97,98,97,-97,99,101,-101,102,100,-102,103,102,-102,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,109,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,120,-120,122,124,-124,125,123,-125,126,125,-125,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,145,-145,146,144,-146,147,146,-146,148,147,-146,149,148,-146,150,149,-146,151,150,-146,152,151,-146,153,152,-146,154,153,-146,155,154,-146,156,155,-146,157,156,-146,158,157,-146,154,159,-154,159,160,-154,161,153,-161,162,158,-146,162,163,-159,164,158,-164,165,162,-146,166,165,-146,167,166,-146,168,167,-146,169,168,-146,170,169,-146,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,180,-182,183,182,-182,184,186,-186,187,185,-187,188,187,-187,189,191,-191,192,190,-192,193,195,-195,196,194,-196,197,196,-196,198,197,-196,199,201,-201,202,200,-202,203,200,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,211,-211,213,215,-215,216,214,-216,217,219,-219,220,218,-220,221,218,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,235,-238,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,246,-246,248,250,-250,251,249,-251,252,251,-251,253,252,-251,253,254,-253,254,255,-253,256,252,-256,257,259,-259,260,258,-260,261,263,-263,264,262,-264,265,267,-267,15,266,-268,17,15,-268,268,17,-268,269,271,-271,272,270,-272,273,272,-272,274,276,-276,277,275,-277 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1566 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,0.9659258,0,-0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.258819,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *556 { + a: 18.70079,6.010153,19.48819,5.799169,18.70079,2.860547,16.73228,3.119705,16.73228,1.844642,16.41352,1.930055,16.73228,-2.800031,16.73228,-4.960191,15.6522,-3.880111,18.70079,-6.87044,19.25387,-7.018639,18.70079,-9.082775,16.73228,-8.823617,16.73228,-11.03595,16.1792,-10.88775,18.70079,15.74803,18.70079,-19.68504,16.73228,15.74803,16.73228,-19.68504,-16.73228,-6.82121E-13,-18.70079,-6.82121E-13,-16.73228,3.28084,-18.70079,3.28084,-16.73228,3.28084,-18.70079,3.28084,-16.73228,6.56168,-18.70079,6.56168,-18.70079,-16.73228,-18.70079,-13.77953,-16.73228,-16.73228,-16.73228,-13.77953,-18.70079,-6.87044,-18.70079,-3.340955,-17.35244,-6.509153,-16.73228,-3.340955,-16.73228,-8.823617,-18.70079,-19.68504,-18.70079,-16.73228,-16.73228,-19.68504,-16.73228,-16.73228,-16.73228,6.56168,-18.70079,6.56168,-16.73228,9.84252,-18.70079,9.84252,-16.73228,13.12336,-18.70079,13.12336,-16.73228,16.4042,-18.70079,16.4042,-18.70079,-4.14481,-18.70079,-1.968504,-17.04415,-2.488168,-16.73228,-1.968504,-16.73228,-2.800031,-16.73228,23.41991,-18.70079,23.41991,-16.73228,26.24672,-18.70079,26.24672,16.73228,6.56168,16.73228,3.28084,13.77953,6.56168,-15.74803,-3.272658E-15,19.68504,3.28084,19.68504,-3.272658E-15,9.082775,9.84252,13.77953,9.84252,6.87044,9.84252,3.340955,9.84252,1.968504,16.4042,3.340955,13.12336,4.14481,16.4042,6.928695,16.4042,7.874016,13.12336,7.874016,16.4042,-0.3937008,19.59778,1.968504,19.59778,-2.860547,26.24672,-0.3937008,23.41991,1.968504,23.41991,1.968504,26.24672,-6.010153,26.24672,-6.889764,26.24672,-12.79528,29.52756,-6.889764,29.52756,-15.74803,36.08924,-12.79528,36.08924,-16.73228,19.59778,-18.70079,19.59778,-16.73228,23.41991,-18.70079,23.41991,-6.112422,28.28084,-6.112422,26.24672,-10.64548,28.28084,-7.603196,26.24672,-10.64548,26.24672,6.329277,11.87664,6.329277,9.84252,1.796216,11.87664,3.933167,9.84252,1.796216,9.84252,-6.329277,9.84252,-6.329277,11.87664,-4.192326,9.84252,-1.796216,11.87664,-1.796216,9.84252,20.2495,-5.693526,18.85756,-7.085469,18.70079,-4.14481,18.70079,-6.928695,-18.70079,2.860547,-18.31495,1.420569,-18.70079,-1.968504,-16.73228,-1.968504,-16.73228,1.844642,-16.73228,29.52756,-18.70079,29.52756,-16.73228,36.08924,-18.70079,36.08924,-18.70079,6.010153,-18.70079,6.889764,-17.58676,6.308656,-16.73228,6.889764,-16.73228,3.119705,8.324126,16.4042,8.324126,18.43832,9.85159,16.4042,10.29263,18.43832,10.29263,16.4042,-16.73228,9.84252,-18.70079,9.84252,-16.73228,13.12336,-18.70079,13.12336,-18.70079,-1.968504,-18.70079,0.3937008,-16.73228,-1.968504,-16.73228,0.3937008,-18.70079,6.889764,-18.70079,12.79528,-16.73228,6.889764,-16.73228,12.79528,-16.73228,16.4042,-18.70079,16.4042,-16.73228,19.59778,-18.70079,19.59778,-19.68504,6.019899E-15,-19.68504,3.28084,15.74803,6.019899E-15,-16.73228,3.28084,-16.73228,6.56168,-13.77953,6.56168,-13.77953,9.84252,-11.03595,9.84252,-8.823617,9.84252,-3.340955,9.84252,-3.340955,13.12336,-2.800031,16.4042,-1.968504,16.4042,-1.968504,19.59778,0.3937008,19.59778,0.3937008,23.41991,-4.960191,16.4042,-7.874016,16.4042,-7.874016,13.12336,1.844642,26.24672,-1.968504,26.24672,-1.968504,23.41991,3.119705,26.24672,6.889764,26.24672,6.889764,29.52756,12.79528,29.52756,12.79528,36.08924,15.74803,36.08924,18.70079,-3.340955,18.70079,-7.874016,16.73228,-3.340955,16.73228,-7.874016,-16.73228,26.24672,-18.70079,26.24672,-16.73228,29.52756,-18.70079,29.52756,16.50803,26.24672,15.35471,26.24672,17.32321,26.24672,15.35471,28.28084,17.32321,28.28084,-15.35471,26.24672,-15.68472,26.24672,-15.35471,28.28084,-17.32321,26.24672,-17.32321,28.28084,-19.25387,-7.018639,-17.35244,-6.509153,-18.08063,-11.39724,-16.1792,-10.88775,-13.81143,16.4042,-15.3389,16.4042,-13.81143,18.43832,-18.12278,16.4042,-18.34449,16.4042,-18.34449,18.43832,-18.70079,-9.082775,-18.08063,-11.39724,-18.70079,-13.77953,-16.73228,-13.77953,-16.73228,-11.03595,-18.70079,12.79528,-18.70079,15.74803,-16.73228,12.79528,-16.73228,15.74803,6.112422,26.24672,6.112422,28.28084,7.344037,26.24672,10.64548,28.28084,10.64548,26.24672,-19.48819,5.799169,-17.58676,6.308656,-18.31495,1.420569,-16.41352,1.930055,18.44587,9.84252,18.44587,11.87664,19.84177,9.84252,20.41437,9.84252,20.41437,11.87664,-20.2495,-5.693526,-17.04415,-2.488168,-18.85756,-7.085469,-15.6522,-3.880111,-18.70079,-7.874016,-18.70079,-6.928695,-16.73228,-7.874016,-16.73228,-4.960191,-8.324126,18.43832,-8.324126,16.4042,-10.29263,18.43832,-10.29263,16.4042,16.15428,16.4042,13.81143,16.4042,18.34449,16.4042,18.34449,18.43832,13.81143,18.43832,18.70079,0.3937008,18.70079,-1.968504,16.73228,0.3937008,16.73228,-1.968504,-18.44587,9.84252,-19.01846,9.84252,-18.44587,11.87664,-20.41437,9.84252,-20.41437,11.87664,-15.74803,1.948917E-14,-16.73228,1.948917E-14,-15.74803,39.37008,-16.73228,36.08924,-18.70079,36.08924,-18.70079,39.37008,-19.68504,39.37008,-19.68504,1.132151E-14,-18.70079,1.132151E-14,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-15.74803,15.74803,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008 + } + UVIndex: *522 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,34,33,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,53,55,54,56,54,55,57,59,58,59,60,58,58,60,61,62,61,60,63,60,59,64,63,59,65,60,63,66,60,65,67,60,66,66,68,67,67,68,69,69,68,70,68,71,70,72,70,71,73,60,67,74,73,67,75,60,73,73,76,75,76,77,75,78,75,77,79,60,75,80,60,79,81,60,80,82,81,80,60,81,83,84,83,81,85,87,86,88,86,87,89,91,90,92,90,91,93,92,91,94,96,95,97,95,96,98,97,96,99,101,100,102,100,101,103,102,101,104,106,105,107,105,106,108,110,109,111,109,110,112,109,111,113,115,114,116,114,115,117,119,118,120,118,119,121,120,119,122,124,123,125,123,124,126,125,124,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,142,140,141,143,145,144,146,144,145,147,146,145,148,147,145,149,148,145,150,149,145,151,150,145,152,151,145,153,152,145,154,153,145,155,154,145,156,155,145,157,156,145,158,157,145,154,159,153,159,160,153,161,153,160,162,158,145,162,163,158,164,158,163,165,162,145,166,165,145,167,166,145,168,167,145,169,168,145,170,169,145,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,180,181,183,182,181,184,186,185,187,185,186,188,187,186,189,191,190,192,190,191,193,195,194,196,194,195,197,196,195,198,197,195,199,201,200,202,200,201,203,200,202,204,206,205,207,205,206,208,210,209,211,209,210,212,211,210,213,215,214,216,214,215,217,219,218,220,218,219,221,218,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,235,237,239,241,240,242,240,241,243,245,244,246,244,245,247,246,245,248,250,249,251,249,250,252,251,250,253,252,250,253,254,252,254,255,252,256,252,255,257,259,258,260,258,259,261,263,262,264,262,263,265,267,266,15,266,267,17,15,267,268,17,267,269,271,270,272,270,271,273,272,271,274,276,275,277,275,276 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *174 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallBroken, Model::RootNode + C: "OO",5261916380965101138,0 + + ;Geometry::, Model::Mesh wallBroken + C: "OO",5338861252178096637,5261916380965101138 + + ;Material::stone, Model::Mesh wallBroken + C: "OO",7184,5261916380965101138 + + ;Material::wood, Model::Mesh wallBroken + C: "OO",7178,5261916380965101138 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBroken.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBroken.fbx.import new file mode 100644 index 0000000..ed3b081 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBroken.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dcdaqaoqwjhlc" +path="res://.godot/imported/wallBroken.fbx-967fa6fff6b556ec28b026b380a6fb71.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallBroken.fbx" +dest_files=["res://.godot/imported/wallBroken.fbx-967fa6fff6b556ec28b026b380a6fb71.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCorner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCorner.fbx new file mode 100644 index 0000000..5c03407 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCorner.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 362 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5014494316805752716, "Model::wallCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5271726829447026812, "Geometry::", "Mesh" { + Vertices: *360 { + a: -4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,-4,0,5,-5,0,5,-4,10,5,-5,10,5,4.75,0,4,5,0,4,4.75,10,4,5,10,4,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,4,0,4,4,10,4,4,0,4.25,4,10,4.25,-4,0,5,-4,0,4.75,-5,0,5,-4,0,4.25,-4,0,4,-5,0,4,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4.75,4,0,4.25,4,0,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,4.75,4,10,4.75,4,0,5,4,10,5,-5,0,4,-4,0,4,-5,10,4,-4,10,4,-4,10,5,-5,10,5,-4,10,4.75,-4,10,4.25,-4,10,4,-5,10,4,-5,0,4,-5,10,4,-5,0,5,-5,10,5,5,10,5,4,10,5,5,10,4,4.75,10,4,4.25,10,4,4,10,4.75,4,10,4.25,4,10,4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4.75,10,-4,4.75,0,-4,4.75,10,4,4.75,0,4,4,0,4.75,-4,0,4.75,4,10,4.75,-4,10,4.75,-4,0,4.25,4,0,4.25,-4,10,4.25,4,10,4.25,4.25,0,-4,4.25,10,-4,4.25,0,4,4.25,10,4 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,24,-23,26,28,-28,29,27,-29,30,29,-29,31,30,-29,32,30,-32,33,30,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,41,-41,43,42,-41,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,61,-64,65,61,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,71,-74,75,71,-75,76,75,-75,77,76,-75,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,97,-97,99,97,-99,100,102,-102,103,101,-103,41,42,-74,74,73,-43,75,76,-63,63,62,-77,104,106,-106,107,105,-107,31,21,-33,23,32,-22,108,110,-110,111,109,-111,29,30,-97,98,96,-31,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: -15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,-15.74803,9.663381E-13,-19.68504,9.663381E-13,-15.74803,39.37008,-19.68504,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,15.74803,0,15.74803,39.37008,16.73228,0,16.73228,39.37008,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,16.73228,-15.74803,15.74803,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,18.70079,15.74803,16.73228,15.74803,15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,18.70079,0,18.70079,39.37008,19.68504,0,19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,15.74803,19.68504,19.68504,19.68504,15.74803,18.70079,15.74803,16.73228,15.74803,15.74803,19.68504,15.74803,15.74803,7.105427E-15,15.74803,39.37008,19.68504,7.105427E-15,19.68504,39.37008,-19.68504,19.68504,-15.74803,19.68504,-19.68504,15.74803,-18.70079,15.74803,-16.73228,15.74803,-15.74803,18.70079,-15.74803,16.73228,-15.74803,15.74803,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-15.74803,0,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,-15.74803,0,-15.74803,39.37008,15.74803,0,15.74803,39.37008 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,24,22,26,28,27,29,27,28,30,29,28,31,30,28,32,30,31,33,30,32,34,36,35,37,35,36,38,40,39,41,39,40,42,41,40,43,42,40,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,61,63,65,61,64,66,68,67,69,67,68,70,72,71,73,71,72,74,71,73,75,71,74,76,75,74,77,76,74,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,97,96,99,97,98,100,102,101,103,101,102,41,42,73,74,73,42,75,76,62,63,62,76,104,106,105,107,105,106,31,21,32,23,32,21,108,110,109,111,109,110,29,30,96,98,96,30,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallCorner, Model::RootNode + C: "OO",5014494316805752716,0 + + ;Geometry::, Model::Mesh wallCorner + C: "OO",5271726829447026812,5014494316805752716 + + ;Material::wood, Model::Mesh wallCorner + C: "OO",7178,5014494316805752716 + + ;Material::stone, Model::Mesh wallCorner + C: "OO",7184,5014494316805752716 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCorner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCorner.fbx.import new file mode 100644 index 0000000..25a1ec1 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://jvh4xspwi5yu" +path="res://.godot/imported/wallCorner.fbx-fd2eefceaad284538a9a98b17e6bac45.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCorner.fbx" +dest_files=["res://.godot/imported/wallCorner.fbx-fd2eefceaad284538a9a98b17e6bac45.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDetail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDetail.fbx new file mode 100644 index 0000000..0f88b02 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDetail.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 397 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallCornerDetail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallCornerDetail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5247269360763288004, "Model::wallCornerDetail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5552284457141579230, "Geometry::", "Mesh" { + Vertices: *810 { + a: 3.7,8,4,3.7,10,4,3.7,8,5,3.7,10,5,5.3,2.52669E-14,4.75,5,2.52669E-14,4.75,5.3,2.52669E-14,5,5,2.52669E-14,5.3,5,0,5,4,2.52669E-14,5.3,4,2.52669E-14,5,3.7,1.263345E-14,5,3.7,1.263345E-14,4,4,1.263345E-14,4,4,1.263345E-14,3.7,4.25,1.263345E-14,4,4.25,1.263345E-14,3.7,5.15,6,5,5,6,5.15,5.15,8,5,5,8,5.15,5,6,5.15,4,6,5.15,5,8,5.15,4,8,5.15,4.25,10,3.7,4.25,8,3.7,4.25,10,4,4.25,8,3.85,4.25,6,3.85,4.25,4,3.85,4.25,4,3.7,4.25,6,3.7,4.25,2,3.85,4.25,1.263345E-14,4,4.25,1.263345E-14,3.7,4.25,2,3.7,3.7,4,5,3.7,6,5,4,4,5.3,4,6,5.3,4.25,1.263345E-14,4,4,1.263345E-14,4,4.25,10,4,4,10,4,5.3,4,5,5,4,5.3,5.3,6,5,5,6,5.3,4.25,10,3.7,4.25,10,4,4,10,3.7,4,10,4,3.7,10,4,4,10,5,3.7,10,5,4,10,5.3,5,10,5.3,5,10,5,5,10,4.75,5.3,10,5,5.3,10,4.75,5,8,5.3,4,8,5.3,5,10,5.3,4,10,5.3,5.3,2,4.75,5.3,2.52669E-14,4.75,5.3,2,5,5.3,2.52669E-14,5,5.3,6,4.75,5.3,4,4.75,5.3,6,5,5.3,4,5,3.7,1.263345E-14,5,3.7,2,5,4,2.52669E-14,5.3,4,2,5.3,5,0,5,5,10,5,4,2.52669E-14,5,4,10,5,5.3,2,4.75,5.3,2,5,5.15,2,4.75,5.15,2,5,5,2,5.3,5,2,5.15,4,2,5.15,4,2,5.3,3.85,2,5,3.7,2,5,3.7,2,4,3.85,2,4,4,2,3.85,4,2,3.7,4.25,2,3.85,4.25,2,3.7,3.7,1.263345E-14,4,3.7,2,4,3.7,1.263345E-14,5,3.7,2,5,5.3,8,5,5,8,5.3,5.3,10,5,5,10,5.3,4,8,3.7,4.25,8,3.7,4,10,3.7,4.25,10,3.7,3.85,6,4,4,6,3.85,3.85,8,4,4,8,3.85,4,10,4,4,1.263345E-14,4,4,10,5,4,2.52669E-14,5,4,6,3.85,4.25,6,3.85,4,8,3.85,4.25,8,3.85,3.7,8,4,4,8,3.7,3.7,10,4,4,10,3.7,3.85,6,5,3.85,8,5,4,6,5.15,4,8,5.15,3.7,8,5,3.7,10,5,4,8,5.3,4,10,5.3,5,2,5.15,4,2,5.15,5,4,5.15,4,4,5.15,4,1.263345E-14,3.7,4.25,1.263345E-14,3.7,4,2,3.7,4.25,2,3.7,4.25,4,3.7,4,4,3.7,4.25,4,3.85,4,4,3.85,3.85,4,4,3.7,4,4,3.7,4,5,3.85,4,5,4,4,5.15,4,4,5.3,5,4,5.15,5,4,5.3,5.15,4,5,5.3,4,5,5.15,4,4.75,5.3,4,4.75,3.85,2,4,3.85,4,4,3.85,2,5,3.85,4,5,5.3,6,4.75,5.3,6,5,5.15,6,4.75,5.15,6,5,5,6,5.3,5,6,5.15,4,6,5.15,4,6,5.3,3.85,6,5,3.7,6,5,3.7,6,4,3.85,6,4,4,6,3.85,4,6,3.7,4.25,6,3.85,4.25,6,3.7,4.25,8,3.7,4,8,3.7,4.25,8,3.85,4,8,3.85,3.85,8,4,3.7,8,4,3.7,8,5,3.85,8,5,4,8,5.15,4,8,5.3,5,8,5.15,5,8,5.3,5.15,8,5,5.3,8,5,5.15,8,4.75,5.3,8,4.75,3.7,4,4,3.7,6,4,3.7,4,5,3.7,6,5,5.15,2,5,5,2,5.15,5.15,4,5,5,4,5.15,5.15,4,4.75,5.15,2,4.75,5.15,4,5,5.15,2,5,5,4,5.3,4,4,5.3,5,6,5.3,4,6,5.3,3.7,1.263345E-14,4,4,1.263345E-14,3.7,3.7,2,4,4,2,3.7,5.3,8,4.75,5.3,10,4.75,5.15,8,4.75,5,10,4.75,5.15,6,4.75,5.15,4,4.75,5.3,6,4.75,5.3,4,4.75,5.15,2,4.75,5,2.52669E-14,4.75,5.3,2.52669E-14,4.75,5.3,2,4.75,5,2.52669E-14,5.3,4,2.52669E-14,5.3,5,2,5.3,4,2,5.3,5,2.52669E-14,4.75,5,10,4.75,5,0,5,5,10,5,4,2,3.85,4.25,2,3.85,4,4,3.85,4.25,4,3.85,3.85,2,4,4,2,3.85,3.85,4,4,4,4,3.85,5.3,2.52669E-14,5,5,2.52669E-14,5.3,5.3,2,5,5,2,5.3,4,4,3.7,4.25,4,3.7,4,6,3.7,4.25,6,3.7,3.7,4,4,4,4,3.7,3.7,6,4,4,6,3.7,3.85,6,4,3.85,8,4,3.85,6,5,3.85,8,5,3.85,2,5,3.85,4,5,4,2,5.15,4,4,5.15,5.15,8,4.75,5.15,6,4.75,5.15,8,5,5.15,6,5,5.3,10,4.75,5.3,8,4.75,5.3,10,5,5.3,8,5 + } + PolygonVertexIndex: *528 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,8,-8,10,8,-10,11,10,-10,11,12,-11,10,12,-14,12,14,-14,13,14,-16,16,15,-15,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,28,-28,30,29,-28,30,31,-30,32,29,-32,33,30,-28,27,34,-34,34,35,-34,36,33,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,52,-52,54,52,-54,53,55,-55,55,56,-55,56,57,-55,54,57,-59,58,57,-60,57,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,83,-86,87,86,-86,88,86,-88,89,86,-89,90,89,-89,91,89,-91,92,91,-91,93,92,-91,93,94,-93,92,94,-96,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,143,-146,147,143,-147,147,146,-149,146,149,-149,149,150,-149,148,150,-152,150,152,-152,151,152,-154,152,154,-154,153,154,-156,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,163,-166,167,166,-166,168,166,-168,169,166,-169,170,169,-169,171,169,-171,172,171,-171,173,172,-171,173,174,-173,172,174,-176,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,179,-182,183,179,-183,183,182,-185,182,185,-185,185,186,-185,184,186,-188,186,188,-188,187,188,-190,188,190,-190,189,190,-192,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,216,218,-218,218,219,-218,220,219,-219,219,220,-222,219,222,-218,217,222,-224,224,223,-223,222,225,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1584 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *540 { + a: 15.74803,31.49606,15.74803,39.37008,19.68504,31.49606,19.68504,39.37008,20.86614,18.70079,19.68504,18.70079,20.86614,19.68504,19.68504,20.86614,19.68504,19.68504,15.74803,20.86614,15.74803,19.68504,14.56693,19.68504,14.56693,15.74803,15.74803,15.74803,15.74803,14.56693,16.73228,15.74803,16.73228,14.56693,0.417583,23.62205,-0.4175825,23.62205,0.417583,31.49606,-0.4175825,31.49606,19.68504,23.62205,15.74803,23.62205,19.68504,31.49606,15.74803,31.49606,-14.56693,39.37008,-14.56693,31.49606,-15.74803,39.37008,-15.15748,31.49606,-15.15748,23.62205,-15.15748,15.74803,-14.56693,15.74803,-14.56693,23.62205,-15.15748,7.874016,-15.74803,4.863988E-14,-14.56693,4.863988E-14,-14.56693,7.874016,24.2198,15.74803,24.2198,23.62205,25.89013,15.74803,25.89013,23.62205,16.73228,4.973799E-14,15.74803,4.973799E-14,16.73228,39.37008,15.74803,39.37008,0.8351657,15.74803,-0.8351653,15.74803,0.8351657,23.62205,-0.8351653,23.62205,-16.73228,14.56693,-16.73228,15.74803,-15.74803,14.56693,-15.74803,15.74803,-14.56693,15.74803,-15.74803,19.68504,-14.56693,19.68504,-15.74803,20.86614,-19.68504,20.86614,-19.68504,19.68504,-19.68504,18.70079,-20.86614,19.68504,-20.86614,18.70079,19.68504,31.49606,15.74803,31.49606,19.68504,39.37008,15.74803,39.37008,-18.70079,7.874016,-18.70079,9.947598E-14,-19.68504,7.874016,-19.68504,9.947598E-14,-18.70079,23.62205,-18.70079,15.74803,-19.68504,23.62205,-19.68504,15.74803,24.2198,4.973799E-14,24.2198,7.874016,25.89013,9.947598E-14,25.89013,7.874016,-19.68504,-4.263256E-14,-19.68504,39.37008,-15.74803,5.684342E-14,-15.74803,39.37008,-20.86614,18.70079,-20.86614,19.68504,-20.27559,18.70079,-20.27559,19.68504,-19.68504,20.86614,-19.68504,20.27559,-15.74803,20.27559,-15.74803,20.86614,-15.15748,19.68504,-14.56693,19.68504,-14.56693,15.74803,-15.15748,15.74803,-15.74803,15.15748,-15.74803,14.56693,-16.73228,15.15748,-16.73228,14.56693,15.74803,4.973799E-14,15.74803,7.874016,19.68504,4.973799E-14,19.68504,7.874016,0.8351657,31.49606,-0.8351653,31.49606,0.8351657,39.37008,-0.8351653,39.37008,-15.74803,31.49606,-16.73228,31.49606,-15.74803,39.37008,-16.73228,39.37008,0.4175827,23.62205,-0.4175828,23.62205,0.4175827,31.49606,-0.4175828,31.49606,-15.74803,39.37008,-15.74803,3.836931E-14,-19.68504,39.37008,-19.68504,8.81073E-14,-15.74803,23.62205,-16.73228,23.62205,-15.74803,31.49606,-16.73228,31.49606,0.8351654,31.49606,-0.8351656,31.49606,0.8351654,39.37008,-0.8351656,39.37008,24.63738,23.62205,24.63738,31.49606,25.47255,23.62205,25.47255,31.49606,24.2198,31.49606,24.2198,39.37008,25.89013,31.49606,25.89013,39.37008,19.68504,7.874016,15.74803,7.874016,19.68504,15.74803,15.74803,15.74803,-15.74803,4.973799E-14,-16.73228,4.973799E-14,-15.74803,7.874016,-16.73228,7.874016,16.73228,14.56693,15.74803,14.56693,16.73228,15.15748,15.74803,15.15748,15.15748,15.74803,14.56693,15.74803,14.56693,19.68504,15.15748,19.68504,15.74803,20.27559,15.74803,20.86614,19.68504,20.27559,19.68504,20.86614,20.27559,19.68504,20.86614,19.68504,20.27559,18.70079,20.86614,18.70079,15.74803,7.874016,15.74803,15.74803,19.68504,7.874016,19.68504,15.74803,-20.86614,18.70079,-20.86614,19.68504,-20.27559,18.70079,-20.27559,19.68504,-19.68504,20.86614,-19.68504,20.27559,-15.74803,20.27559,-15.74803,20.86614,-15.15748,19.68504,-14.56693,19.68504,-14.56693,15.74803,-15.15748,15.74803,-15.74803,15.15748,-15.74803,14.56693,-16.73228,15.15748,-16.73228,14.56693,16.73228,14.56693,15.74803,14.56693,16.73228,15.15748,15.74803,15.15748,15.15748,15.74803,14.56693,15.74803,14.56693,19.68504,15.15748,19.68504,15.74803,20.27559,15.74803,20.86614,19.68504,20.27559,19.68504,20.86614,20.27559,19.68504,20.86614,19.68504,20.27559,18.70079,20.86614,18.70079,15.74803,15.74803,15.74803,23.62205,19.68504,15.74803,19.68504,23.62205,0.417583,7.874016,-0.4175825,7.874016,0.417583,15.74803,-0.4175825,15.74803,-18.70079,15.74803,-18.70079,7.874016,-19.68504,15.74803,-19.68504,7.874016,19.68504,15.74803,15.74803,15.74803,19.68504,23.62205,15.74803,23.62205,0.8351654,4.973799E-14,-0.8351656,4.973799E-14,0.8351654,7.874016,-0.8351656,7.874016,-20.86614,31.49606,-20.86614,39.37008,-20.27559,31.49606,-19.68504,39.37008,-20.27559,23.62205,-20.27559,15.74803,-20.86614,23.62205,-20.86614,15.74803,-20.27559,7.874016,-19.68504,9.947598E-14,-20.86614,9.947598E-14,-20.86614,7.874016,19.68504,9.947598E-14,15.74803,9.947598E-14,19.68504,7.874016,15.74803,7.874016,18.70079,1.466688E-08,18.70079,39.37008,19.68504,1.466678E-08,19.68504,39.37008,-15.74803,7.874016,-16.73228,7.874016,-15.74803,15.74803,-16.73228,15.74803,0.4175827,7.874016,-0.4175828,7.874016,0.4175827,15.74803,-0.4175828,15.74803,0.8351657,9.947598E-14,-0.8351653,9.947598E-14,0.8351657,7.874016,-0.8351653,7.874016,-15.74803,15.74803,-16.73228,15.74803,-15.74803,23.62205,-16.73228,23.62205,0.8351654,15.74803,-0.8351656,15.74803,0.8351654,23.62205,-0.8351656,23.62205,15.74803,23.62205,15.74803,31.49606,19.68504,23.62205,19.68504,31.49606,24.63738,7.874016,24.63738,15.74803,25.47255,7.874016,25.47255,15.74803,-18.70079,31.49606,-18.70079,23.62205,-19.68504,31.49606,-19.68504,23.62205,-18.70079,39.37008,-18.70079,31.49606,-19.68504,39.37008,-19.68504,31.49606 + } + UVIndex: *528 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,8,7,10,8,9,11,10,9,11,12,10,10,12,13,12,14,13,13,14,15,16,15,14,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,28,27,30,29,27,30,31,29,32,29,31,33,30,27,27,34,33,34,35,33,36,33,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,52,51,54,52,53,53,55,54,55,56,54,56,57,54,54,57,58,58,57,59,57,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,83,85,87,86,85,88,86,87,89,86,88,90,89,88,91,89,90,92,91,90,93,92,90,93,94,92,92,94,95,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,143,145,147,143,146,147,146,148,146,149,148,149,150,148,148,150,151,150,152,151,151,152,153,152,154,153,153,154,155,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,163,165,167,166,165,168,166,167,169,166,168,170,169,168,171,169,170,172,171,170,173,172,170,173,174,172,172,174,175,174,176,175,177,175,176,178,180,179,181,179,180,182,179,181,183,179,182,183,182,184,182,185,184,185,186,184,184,186,187,186,188,187,187,188,189,188,190,189,189,190,191,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,216,218,217,218,219,217,220,219,218,219,220,221,219,222,217,217,222,223,224,223,222,222,225,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *176 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallCornerDetail, Model::RootNode + C: "OO",5247269360763288004,0 + + ;Geometry::, Model::Mesh wallCornerDetail + C: "OO",5552284457141579230,5247269360763288004 + + ;Material::stoneDark, Model::Mesh wallCornerDetail + C: "OO",7174,5247269360763288004 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDetail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDetail.fbx.import new file mode 100644 index 0000000..214fe13 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDetail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dkb7be185axki" +path="res://.godot/imported/wallCornerDetail.fbx-49b33efb22964f83ef44f5ecb4af0fe3.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDetail.fbx" +dest_files=["res://.godot/imported/wallCornerDetail.fbx-49b33efb22964f83ef44f5ecb4af0fe3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonal.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonal.fbx new file mode 100644 index 0000000..2b823c7 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonal.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 439 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallCornerDiagonal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallCornerDiagonal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5620202191093723568, "Model::wallCornerDiagonal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5410251295521375307, "Geometry::", "Mesh" { + Vertices: *288 { + a: -4,0,5,-4,0,4.75,-5,0,5,-4,0,4.25,-4,0,4,-5,0,4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,-5,0,4,-4,0,4,-5,10,4,-4,10,4,-4,10,5,-5,10,5,-4,10,4.75,-4,10,4.25,-4,10,4,-5,10,4,-4,0,5,-5,0,5,-4,10,5,-5,10,5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,-5,0,4,-5,10,4,-5,0,5,-5,10,5,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,-4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.75,10,-1.443823E-14,4.25,10,-0.5,-1.443823E-14,10,4.75,-0.5,10,4.25,-1.443823E-14,0,4.75,-4,0,4.75,-1.443823E-14,10,4.75,-4,10,4.75,-4,0,4.25,-0.5,2.255973E-16,4.25,-4,10,4.25,-0.5,10,4.25,4.75,10,-4,4.75,0,-4,4.75,10,-1.443823E-14,4.75,0,-1.443823E-14,4.25,0,-4,4.25,10,-4,4.25,2.255973E-16,-0.5,4.25,10,-0.5,-0.5,2.255973E-16,4.25,-1.443823E-14,0,4.75,4.25,2.255973E-16,-0.5,4.75,0,-1.443823E-14,4.25,2.255973E-16,-0.5,4.25,10,-0.5,-0.5,2.255973E-16,4.25,-0.5,10,4.25,4.75,10,-1.443823E-14,4.75,0,-1.443823E-14,-1.443823E-14,10,4.75,-1.443823E-14,0,4.75 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,17,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,49,-49,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,9,10,-65,65,64,-11,66,64,-66,67,66,-66,18,66,-68,19,18,-68,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,3,84,-2,1,84,-86,84,86,-86,85,86,-88,48,87,-87,86,50,-49,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: -15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,16.73228,-15.74803,15.74803,-19.68504,15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,15.74803,19.68504,19.68504,19.68504,15.74803,18.70079,15.74803,16.73228,15.74803,15.74803,19.68504,15.74803,-15.74803,9.521273E-13,-19.68504,9.521273E-13,-15.74803,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,15.74803,9.623669E-26,15.74803,39.37008,19.68504,9.623669E-26,19.68504,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-18.70079,-5.684342E-14,-16.73228,-1.968504,5.684342E-14,18.70079,1.968504,16.73228,-1.885171E-12,-3.085785E-15,-15.74803,-3.085785E-15,-1.885171E-12,39.37008,-15.74803,39.37008,15.74803,-2.887609E-30,1.968504,8.881784E-16,15.74803,39.37008,1.968504,39.37008,15.74803,39.37008,15.74803,0,5.684342E-14,39.37008,5.684342E-14,0,-15.74803,0,-15.74803,39.37008,-1.968504,8.881784E-16,-1.968504,39.37008,-1.968504,16.73228,-5.684342E-14,18.70079,16.73228,-1.968504,18.70079,-5.684342E-14,-13.22345,1.023537E-15,-13.22345,39.37008,13.22345,1.023537E-15,13.22345,39.37008,13.22345,39.37008,13.22345,1.218254E-30,-13.22345,39.37008,-13.22345,1.218254E-30 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,9,8,11,10,8,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,17,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,49,48,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,9,10,64,65,64,10,66,64,65,67,66,65,18,66,67,19,18,67,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,3,84,1,1,84,85,84,86,85,85,86,87,48,87,86,86,50,48,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallCornerDiagonal, Model::RootNode + C: "OO",5620202191093723568,0 + + ;Geometry::, Model::Mesh wallCornerDiagonal + C: "OO",5410251295521375307,5620202191093723568 + + ;Material::wood, Model::Mesh wallCornerDiagonal + C: "OO",7178,5620202191093723568 + + ;Material::stone, Model::Mesh wallCornerDiagonal + C: "OO",7184,5620202191093723568 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonal.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonal.fbx.import new file mode 100644 index 0000000..f7e19ef --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://kesp1amgee70" +path="res://.godot/imported/wallCornerDiagonal.fbx-10a9ae1ef2463fc16752360541d940c4.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonal.fbx" +dest_files=["res://.godot/imported/wallCornerDiagonal.fbx-10a9ae1ef2463fc16752360541d940c4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonalHalf.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonalHalf.fbx new file mode 100644 index 0000000..245b3dc --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonalHalf.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 470 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallCornerDiagonalHalf.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallCornerDiagonalHalf.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5725954959833705389, "Model::wallCornerDiagonalHalf", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5336512737009781034, "Geometry::", "Mesh" { + Vertices: *198 { + a: 5,0,-5,5,0,-4,5,10,-5,5,10,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.25,0,-4,4.25,10,-4,4.25,2.255973E-16,-0.5,4.25,10,-0.5,-0.5,2.255973E-16,4.25,-0.5,10,4.25,-0.5,0,4.75,-0.5,10,4.75,4.75,10,7.219114E-15,4.75,0,7.219114E-15,0,10,4.75,0,0,4.75,4.75,10,-4,4.75,0,-4,4.75,10,7.219114E-15,4.75,0,7.219114E-15,4.25,2.255973E-16,-0.5,4.25,10,-0.5,-0.5,2.255973E-16,4.25,-0.5,10,4.25,0,0,4.75,-0.5,0,4.75,0,10,4.75,-0.5,10,4.75,4.75,10,7.219114E-15,4.25,10,-0.5,0,10,4.75,-0.5,10,4.25,-0.5,10,4.75,-0.5,0,4.75,0,0,4.75,-0.5,2.255973E-16,4.25,4.25,2.255973E-16,-0.5,4.75,0,7.219114E-15 + } + PolygonVertexIndex: *120 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,20,-20,21,19,-21,22,21,-21,23,22,-21,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,21,22,-57,57,56,-23,58,56,-58,59,58,-58,60,58,-60,61,63,-63,63,64,-63,62,64,-66,14,65,-65,64,16,-15 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *360 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *132 { + a: 19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-15.74803,-4.263256E-14,-19.68504,-4.263256E-14,-15.74803,39.37008,-19.68504,39.37008,19.68504,-1.705303E-14,18.70079,-1.705303E-14,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-15.74803,39.37008,-1.968504,8.881784E-16,-1.968504,39.37008,16.73228,8.881784E-16,16.73228,39.37008,18.70079,0,18.70079,39.37008,13.22345,39.37008,13.22345,1.218254E-30,-13.22345,39.37008,-13.22345,1.218254E-30,15.74803,39.37008,15.74803,0,-2.842171E-14,39.37008,-2.842171E-14,0,-13.22345,8.881784E-16,-13.22345,39.37008,13.22345,8.881784E-16,13.22345,39.37008,-1.890044E-12,0,-1.968504,0,-1.890044E-12,39.37008,-1.968504,39.37008,-18.70079,2.842171E-14,-16.73228,-1.968504,0,18.70079,1.968504,16.73228,1.968504,18.70079,-1.968504,18.70079,0,18.70079,-1.968504,16.73228,16.73228,-1.968504,18.70079,2.842171E-14 + } + UVIndex: *120 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,15,16,18,20,19,21,19,20,22,21,20,23,22,20,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,21,22,56,57,56,22,58,56,57,59,58,57,60,58,59,61,63,62,63,64,62,62,64,65,14,65,64,64,16,14 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *40 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallCornerDiagonalHalf, Model::RootNode + C: "OO",5725954959833705389,0 + + ;Geometry::, Model::Mesh wallCornerDiagonalHalf + C: "OO",5336512737009781034,5725954959833705389 + + ;Material::wood, Model::Mesh wallCornerDiagonalHalf + C: "OO",7178,5725954959833705389 + + ;Material::stone, Model::Mesh wallCornerDiagonalHalf + C: "OO",7184,5725954959833705389 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonalHalf.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonalHalf.fbx.import new file mode 100644 index 0000000..3581296 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonalHalf.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d3shnqhnt326k" +path="res://.godot/imported/wallCornerDiagonalHalf.fbx-eeb8680da73d17f6b38e71695d06a25c.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerDiagonalHalf.fbx" +dest_files=["res://.godot/imported/wallCornerDiagonalHalf.fbx-eeb8680da73d17f6b38e71695d06a25c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerEdge.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerEdge.fbx new file mode 100644 index 0000000..bf0b3a0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerEdge.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 506 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallCornerEdge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallCornerEdge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5114115342277048345, "Model::wallCornerEdge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5364760403877281489, "Geometry::", "Mesh" { + Vertices: *252 { + a: -5,0,4,-4,0,4,-5,10,4,-4,10,4,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,-4,0,5,-4,0,4.75,-5,0,5,-4,0,4.25,-4,0,4,-5,0,4,-4,0,5,-5,0,5,-4,10,5,-5,10,5,-4,10,5,-5,10,5,-4,10,4.75,-4,10,4.25,-4,10,4,-5,10,4,-5,0,4,-5,10,4,-5,0,5,-5,10,5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,-4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,2.187184,10,2.187184,1.833631,10,1.833631,-4,0,4.25,1.833631,0,1.833631,-4,10,4.25,1.833631,10,1.833631,4.25,0,-4,4.25,10,-4,1.833631,0,1.833631,1.833631,10,1.833631,4.75,10,-4,4.75,0,-4,2.187184,10,2.187184,2.187184,0,2.187184,2.187184,0,2.187184,-4,0,4.75,2.187184,10,2.187184,-4,10,4.75,2.187184,0,2.187184,1.833631,0,1.833631 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,19,-22,23,19,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,43,-43,45,44,-43,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,57,-57,59,57,-59,60,62,-62,63,61,-63,43,44,-65,65,64,-45,20,64,-66,21,20,-66,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,56,82,-59,83,58,-83,9,83,-83,11,83,-10 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: 19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,16.73228,-15.74803,15.74803,-19.68504,15.74803,-15.74803,9.947598E-13,-19.68504,9.947598E-13,-15.74803,39.37008,-19.68504,39.37008,15.74803,19.68504,19.68504,19.68504,15.74803,18.70079,15.74803,16.73228,15.74803,15.74803,19.68504,15.74803,15.74803,7.105427E-15,15.74803,39.37008,19.68504,7.105427E-15,19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-8.610962,8.610962,-7.219019,7.219019,20.95245,0,-3.906905,0,20.95245,39.37008,-3.906905,39.37008,-20.95245,0,-20.95245,39.37008,3.906905,0,3.906905,39.37008,21.70576,39.37008,21.70576,0,-4.660219,39.37008,-4.660219,0,4.660219,0,-21.70576,0,4.660219,39.37008,-21.70576,39.37008,8.610962,8.610962,7.219019,7.219019 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,16,15,17,15,16,18,20,19,21,19,20,22,19,21,23,19,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,43,42,45,44,42,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,57,56,59,57,58,60,62,61,63,61,62,43,44,64,65,64,44,20,64,65,21,20,65,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,56,82,58,83,58,82,9,83,82,11,83,9 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallCornerEdge, Model::RootNode + C: "OO",5114115342277048345,0 + + ;Geometry::, Model::Mesh wallCornerEdge + C: "OO",5364760403877281489,5114115342277048345 + + ;Material::wood, Model::Mesh wallCornerEdge + C: "OO",7178,5114115342277048345 + + ;Material::stone, Model::Mesh wallCornerEdge + C: "OO",7184,5114115342277048345 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerEdge.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerEdge.fbx.import new file mode 100644 index 0000000..179699a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerEdge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dr4gbdl4t28da" +path="res://.godot/imported/wallCornerEdge.fbx-22ff12953aa9d1ab52a7b50d7703e04a.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCornerEdge.fbx" +dest_files=["res://.godot/imported/wallCornerEdge.fbx-22ff12953aa9d1ab52a7b50d7703e04a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCurved.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCurved.fbx new file mode 100644 index 0000000..1cf2166 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCurved.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 536 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallCurved.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallCurved.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4838840257435710403, "Model::wallCurved", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5441286814335364025, "Geometry::", "Mesh" { + Vertices: *612 { + a: -4,0,4.25,-2.923159,0,4.17942,-4,10,4.25,-2.923159,10,4.17942,-2.857896,0,4.675142,-4,0,4.75,-2.857896,10,4.675142,-4,10,4.75,-2.923159,0,4.17942,-1.864743,0,3.968888,-2.923159,10,4.17942,-1.864743,10,3.968888,4.25,0,-4,4.25,10,-4,4.17942,0,-2.923159,4.17942,10,-2.923159,4.75,10,-4,4.75,0,-4,4.675142,10,-2.857896,4.675142,0,-2.857896,2.941842,10,1.326662,2.941842,0,1.326662,2.187184,10,2.187184,2.187184,0,2.187184,-1.735333,0,4.451851,-2.857896,0,4.675142,-1.735333,10,4.451851,-2.857896,10,4.675142,3.577722,10,0.375,3.577722,0,0.375,2.941842,10,1.326662,2.941842,0,1.326662,3.14471,0,0.125,3.14471,10,0.125,2.545165,0,1.022282,2.545165,10,1.022282,4.451851,10,-1.735333,4.451851,0,-1.735333,4.083946,10,-0.65152,4.083946,0,-0.65152,4.75,0,-4,4.25,0,-4,4.675142,0,-2.857896,4.451851,0,-1.735333,4.083946,0,-0.65152,4.17942,0,-2.923159,3.968888,0,-1.864743,3.577722,0,0.375,3.622006,0,-0.8428617,3.14471,0,0.125,2.941842,0,1.326662,2.545165,0,1.022282,2.187184,0,2.187184,1.833631,0,1.833631,1.326662,0,2.941842,1.022282,0,2.545165,0.375,0,3.577722,0.125,0,3.14471,-0.65152,0,4.083946,-0.8428617,0,3.622006,-1.735333,0,4.451851,-1.864743,0,3.968888,-2.857896,0,4.675142,-2.923159,0,4.17942,-4,0,4.75,-4,0,4.25,1.326662,0,2.941842,0.375,0,3.577722,1.326662,10,2.941842,0.375,10,3.577722,-1.864743,0,3.968888,-0.8428617,0,3.622006,-1.864743,10,3.968888,-0.8428617,10,3.622006,4.17942,0,-2.923159,4.17942,10,-2.923159,3.968888,0,-1.864743,3.968888,10,-1.864743,2.545165,0,1.022282,2.545165,10,1.022282,1.833631,0,1.833631,1.833631,10,1.833631,2.187184,0,2.187184,1.326662,0,2.941842,2.187184,10,2.187184,1.326662,10,2.941842,-0.8428617,0,3.622006,0.125,0,3.14471,-0.8428617,10,3.622006,0.125,10,3.14471,-0.65152,0,4.083946,-1.735333,0,4.451851,-0.65152,10,4.083946,-1.735333,10,4.451851,3.622006,0,-0.8428617,3.622006,10,-0.8428617,3.14471,0,0.125,3.14471,10,0.125,4.75,10,-4,4.675142,10,-2.857896,4.25,10,-4,4.451851,10,-1.735333,4.083946,10,-0.65152,4.17942,10,-2.923159,3.968888,10,-1.864743,3.577722,10,0.375,3.622006,10,-0.8428617,3.14471,10,0.125,2.941842,10,1.326662,2.545165,10,1.022282,2.187184,10,2.187184,1.833631,10,1.833631,1.326662,10,2.941842,1.022282,10,2.545165,0.375,10,3.577722,0.125,10,3.14471,-0.65152,10,4.083946,-0.8428617,10,3.622006,-1.735333,10,4.451851,-1.864743,10,3.968888,-2.857896,10,4.675142,-2.923159,10,4.17942,-4,10,4.75,-4,10,4.25,4.675142,10,-2.857896,4.675142,0,-2.857896,4.451851,10,-1.735333,4.451851,0,-1.735333,0.375,0,3.577722,-0.65152,0,4.083946,0.375,10,3.577722,-0.65152,10,4.083946,3.968888,0,-1.864743,3.968888,10,-1.864743,3.622006,0,-0.8428617,3.622006,10,-0.8428617,4.083946,10,-0.65152,4.083946,0,-0.65152,3.577722,10,0.375,3.577722,0,0.375,0.125,0,3.14471,1.022282,0,2.545165,0.125,10,3.14471,1.022282,10,2.545165,1.022282,0,2.545165,1.833631,0,1.833631,1.022282,10,2.545165,1.833631,10,1.833631,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,-4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,5,10,-5,5,0,-5,5,10,-4,5,0,-4,-4,10,4,-5,10,4,-5,10,5,-4,10,5,-5,0,4,-5,10,4,-5,0,5,-5,10,5,-5,0,4,-4,0,4,-5,10,4,-4,10,4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,-4,0,5,-5,0,5,-5,0,4,-4,0,4,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,5,0,-4,5,0,-5,4,0,-5,4,0,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,-4,0,5,-5,0,5,-4,10,5,-5,10,5 + } + PolygonVertexIndex: *396 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,41,-45,46,45,-45,47,46,-45,48,46,-48,49,48,-48,50,49,-48,51,49,-51,52,51,-51,53,51,-53,54,53,-53,55,53,-55,56,55,-55,57,55,-57,58,57,-57,59,57,-59,60,59,-59,61,59,-61,62,61,-61,63,61,-63,64,63,-63,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,101,-101,103,102,-101,104,102,-104,105,102,-105,106,105,-105,107,105,-107,108,105,-108,109,108,-108,110,108,-110,111,110,-110,112,110,-112,113,112,-112,114,112,-114,115,114,-114,116,114,-116,117,116,-116,118,116,-118,119,118,-118,120,118,-120,121,120,-120,122,120,-122,123,122,-122,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,161,-124,122,123,-162,161,162,-123,163,122,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,98,173,-175,100,98,-175,175,100,-175,176,178,-178,179,177,-179,180,181,-65,182,64,-182,64,182,-66,183,65,-183,184,186,-186,187,185,-187,188,40,-190,190,189,-41,41,190,-41,191,190,-42,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1188 { + a: -0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.06540313,0,-0.9978589,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.1305262,0,0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *408 { + a: 16.80866,-8.724216E-19,12.56003,-8.724216E-19,16.80866,39.37008,12.56003,39.37008,-12.43128,-1.227259E-18,-16.9374,-1.227259E-18,-12.43128,39.37008,-16.9374,39.37008,14.49746,0,10.24883,0,14.49746,39.37008,10.24883,39.37008,-16.80866,-8.724216E-19,-16.80866,39.37008,-12.56003,-8.724216E-19,-12.56003,39.37008,16.9374,39.37008,16.9374,-9.818072E-19,12.43128,39.37008,12.43128,-9.818072E-19,3.709659,39.37008,3.709659,0,-0.7964622,39.37008,-0.7964622,0,-10.12009,0,-14.62621,0,-10.12009,39.37008,-14.62621,39.37008,6.597933,39.37008,6.597933,0,2.091812,39.37008,2.091812,0,-6.469186,0,-6.469186,39.37008,-2.220558,0,-2.220558,39.37008,12.10331,39.37008,12.10331,0,7.597186,39.37008,7.597186,0,18.70079,-15.74803,16.73228,-15.74803,18.40607,-11.25156,17.52697,-6.832021,16.07853,-2.565039,16.45441,-11.5085,15.62554,-7.341507,14.08552,1.476378,14.25987,-3.318353,12.38075,0.492126,11.58205,5.223081,10.02034,4.024732,8.610962,8.610962,7.219019,7.219019,5.223081,11.58205,4.024732,10.02034,1.476378,14.08552,0.492126,12.38075,-2.565039,16.07853,-3.318353,14.25987,-6.832021,17.52697,-7.341507,15.62554,-11.25156,18.40607,-11.5085,16.45441,-15.74803,18.70079,-15.74803,16.73228,-2.091812,0,-6.597933,0,-2.091812,39.37008,-6.597933,39.37008,11.97456,0,7.725933,0,11.97456,39.37008,7.725933,39.37008,-14.49746,0,-14.49746,39.37008,-10.24883,0,-10.24883,39.37008,-3.580913,0,-3.580913,39.37008,0.6677159,0,0.6677159,39.37008,0.7964622,0,-3.709659,0,0.7964622,39.37008,-3.709659,39.37008,9.283118,0,5.03449,0,9.283118,39.37008,5.03449,39.37008,-7.597186,0,-12.10331,0,-7.597186,39.37008,-12.10331,39.37008,-9.283118,0,-9.283118,39.37008,-5.03449,0,-5.03449,39.37008,-18.70079,-15.74803,-18.40607,-11.25156,-16.73228,-15.74803,-17.52697,-6.832021,-16.07853,-2.565039,-16.45441,-11.5085,-15.62554,-7.341507,-14.08552,1.476378,-14.25987,-3.318353,-12.38075,0.492126,-11.58205,5.223081,-10.02034,4.024732,-8.610962,8.610962,-7.219019,7.219019,-5.223081,11.58205,-4.024732,10.02034,-1.476378,14.08552,-0.492126,12.38075,2.565039,16.07853,3.318353,14.25987,6.832021,17.52697,7.341507,15.62554,11.25156,18.40607,11.5085,16.45441,15.74803,18.70079,15.74803,16.73228,14.62621,39.37008,14.62621,0,10.12009,39.37008,10.12009,0,-4.905744,0,-9.411864,0,-4.905744,39.37008,-9.411864,39.37008,-11.97456,0,-11.97456,39.37008,-7.725933,0,-7.725933,39.37008,9.411864,39.37008,9.411864,0,4.905744,39.37008,4.905744,0,6.469186,0,2.220558,0,6.469186,39.37008,2.220558,39.37008,3.580913,0,-0.6677159,0,3.580913,39.37008,-0.6677159,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,15.74803,15.74803,19.68504,15.74803,19.68504,19.68504,15.74803,19.68504,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-15.74803,19.68504,-19.68504,19.68504,-19.68504,15.74803,-15.74803,15.74803,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008 + } + UVIndex: *396 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,41,44,46,45,44,47,46,44,48,46,47,49,48,47,50,49,47,51,49,50,52,51,50,53,51,52,54,53,52,55,53,54,56,55,54,57,55,56,58,57,56,59,57,58,60,59,58,61,59,60,62,61,60,63,61,62,64,63,62,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,101,100,103,102,100,104,102,103,105,102,104,106,105,104,107,105,106,108,105,107,109,108,107,110,108,109,111,110,109,112,110,111,113,112,111,114,112,113,115,114,113,116,114,115,117,116,115,118,116,117,119,118,117,120,118,119,121,120,119,122,120,121,123,122,121,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,161,123,122,123,161,161,162,122,163,122,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,98,173,174,100,98,174,175,100,174,176,178,177,179,177,178,180,181,64,182,64,181,64,182,65,183,65,182,184,186,185,187,185,186,188,40,189,190,189,40,41,190,40,191,190,41,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *132 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallCurved, Model::RootNode + C: "OO",4838840257435710403,0 + + ;Geometry::, Model::Mesh wallCurved + C: "OO",5441286814335364025,4838840257435710403 + + ;Material::stone, Model::Mesh wallCurved + C: "OO",7184,4838840257435710403 + + ;Material::wood, Model::Mesh wallCurved + C: "OO",7178,4838840257435710403 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCurved.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCurved.fbx.import new file mode 100644 index 0000000..ab17267 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCurved.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b744cltb4k5qg" +path="res://.godot/imported/wallCurved.fbx-90322a4e358752d56d7023eb88cbf335.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallCurved.fbx" +dest_files=["res://.godot/imported/wallCurved.fbx-90322a4e358752d56d7023eb88cbf335.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailCross.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailCross.fbx new file mode 100644 index 0000000..46b4793 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailCross.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 576 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDetailCross.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDetailCross.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5188101480663910429, "Model::wallDetailCross", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4703618843272040228, "Geometry::", "Mesh" { + Vertices: *648 { + a: 4.75,9.199609,4,4.75,5,0.6403124,4.75,0.8003905,4,4.75,9.199609,-4,4.75,0.8003905,-4,4.75,5,-0.6403124,4.75,4.199609,-1.443823E-14,4.75,-4.760103E-14,-3.359688,4.75,-4.692552E-14,3.359688,4.25,0.8003905,4,4.25,5,0.6403124,4.25,9.199609,4,4.25,-1.331024E-14,-3.359688,4.25,4.199609,-1.443823E-14,4.25,-1.263472E-14,3.359688,4.75,10,-3.359688,4.75,5.800391,-1.443823E-14,4.75,10,3.359688,4.25,5.800391,-1.443823E-14,4.25,10,-3.359688,4.25,10,3.359688,4.25,0.8003905,-4,4.25,9.199609,-4,4.25,5,-0.6403124,4.75,-4.692552E-14,3.359688,4.75,-4.760103E-14,-3.359688,4.25,-1.263472E-14,3.359688,4.25,-1.331024E-14,-3.359688,4.75,10,-3.359688,4.75,10,3.359688,4.25,10,-3.359688,4.25,10,3.359688,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.125,5,-0.6403124,4.25,5,-0.6403124,4.125,9.199609,-4,4.25,9.199609,-4,4.875,-4.760103E-14,-3.359688,4.75,-4.760103E-14,-3.359688,4.875,4.199609,-1.443823E-14,4.75,4.199609,-1.443823E-14,4.875,-3.429079E-14,-4,4.875,0.8003905,-4,5,0,-4,5,10,-4,4.75,0.8003905,-4,4.875,9.199609,-4,4.875,10,-4,4.75,9.199609,-4,4.75,5,-0.6403124,4.875,5,-0.6403124,4.75,9.199609,-4,4.875,9.199609,-4,4.125,-4.34402E-15,4,4.125,0.8003905,4,4,0,4,4,10,4,4.25,0.8003905,4,4.125,9.199609,4,4.125,10,4,4.25,9.199609,4,4.125,5.800391,-1.443823E-14,4.25,5.800391,-1.443823E-14,4.125,10,3.359688,4.25,10,3.359688,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4.875,-4.760103E-14,-3.359688,4.875,-3.429079E-14,-4,4,0,-5,5,0,-5,5,0,-4,4.125,-5.019541E-15,-4,4.125,-1.331024E-14,-3.359688,4,0,-4,4.75,0.8003905,-4,4.875,0.8003905,-4,4.75,5,-0.6403124,4.875,5,-0.6403124,4.25,5,0.6403124,4.125,5,0.6403124,4.25,9.199609,4,4.125,9.199609,4,4.25,5.800391,-1.443823E-14,4.125,5.800391,-1.443823E-14,4.25,10,-3.359688,4.125,10,-3.359688,4.875,5,0.6403124,4.75,5,0.6403124,4.875,9.199609,4,4.75,9.199609,4,4,0,4,4,10,4,4,0,5,4,10,5,4.125,-1.263472E-14,3.359688,4.25,-1.263472E-14,3.359688,4.125,4.199609,-1.443823E-14,4.25,4.199609,-1.443823E-14,4.75,5.800391,-1.443823E-14,4.875,5.800391,-1.443823E-14,4.75,10,3.359688,4.875,10,3.359688,5,10,-5,5,10,-4,4,10,-5,4.875,10,-4,4.875,10,-3.359688,4.125,10,-4,4,10,-4,4.125,10,-3.359688,4.125,-5.019541E-15,-4,4.125,0.8003905,-4,4.125,-1.331024E-14,-3.359688,4.125,5,-0.6403124,4.125,4.199609,-1.443823E-14,4.125,5.800391,-1.443823E-14,4.125,-1.263472E-14,3.359688,4.125,10,-3.359688,4.125,9.199609,-4,4.125,10,-4,4.125,5,0.6403124,4.125,10,3.359688,4.125,0.8003905,4,4.125,-4.34402E-15,4,4.125,9.199609,4,4.125,10,4,4.25,-1.331024E-14,-3.359688,4.125,-1.331024E-14,-3.359688,4.25,4.199609,-1.443823E-14,4.125,4.199609,-1.443823E-14,4.25,0.8003905,-4,4.125,0.8003905,-4,4.25,9.199609,-4,4.125,9.199609,-4,4,10,-4,4.125,10,-4,4,0,-4,4.125,-5.019541E-15,-4,5,0,5,4,0,5,5,10,5,4,10,5,4.875,-3.361528E-14,4,4.875,-4.692552E-14,3.359688,4,0,5,5,0,4,5,0,5,4.125,-4.34402E-15,4,4,0,4,4.125,-1.263472E-14,3.359688,5,10,4,5,0,4,5,10,5,5,0,5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4.875,10,-4,4.875,9.199609,-4,4.875,10,-3.359688,4.875,5,-0.6403124,4.875,5.800391,-1.443823E-14,4.875,4.199609,-1.443823E-14,4.875,10,3.359688,4.875,-4.760103E-14,-3.359688,4.875,-3.429079E-14,-4,4.875,0.8003905,-4,4.875,5,0.6403124,4.875,-4.692552E-14,3.359688,4.875,9.199609,4,4.875,10,4,4.875,0.8003905,4,4.875,-3.361528E-14,4,4.75,0.8003905,4,4.875,0.8003905,4,4.75,9.199609,4,4.875,9.199609,4,5,10,4,4.875,10,4,5,0,4,4.875,-3.361528E-14,4,4.75,-4.692552E-14,3.359688,4.875,-4.692552E-14,3.359688,4.75,4.199609,-1.443823E-14,4.875,4.199609,-1.443823E-14,4.875,10,3.359688,4.875,10,4,4,10,5,5,10,5,5,10,4,4.125,10,4,4.125,10,3.359688,4,10,4,4.125,0.8003905,-4,4.25,0.8003905,-4,4.125,5,-0.6403124,4.25,5,-0.6403124,4.875,5.800391,-1.443823E-14,4.75,5.800391,-1.443823E-14,4.875,10,-3.359688,4.75,10,-3.359688,4.875,0.8003905,4,4.75,0.8003905,4,4.875,5,0.6403124,4.75,5,0.6403124,4.25,0.8003905,4,4.125,0.8003905,4,4.25,5,0.6403124,4.125,5,0.6403124 + } + PolygonVertexIndex: *420 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,45,-48,49,48,-48,50,49,-48,49,51,-49,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,60,-60,62,61,-60,61,63,-61,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,25,-74,25,74,-74,27,74,-26,74,75,-74,76,73,-76,77,74,-28,78,77,-28,79,74,-78,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,111,-111,28,112,-111,30,28,-111,113,30,-111,114,113,-111,113,115,-31,116,118,-118,119,117,-119,120,119,-119,120,121,-120,122,121,-121,121,123,-120,119,123,-125,125,124,-124,126,121,-123,121,126,-128,128,126,-123,129,128,-123,130,127,-127,131,127,-131,132,134,-134,135,133,-135,136,138,-138,138,139,-138,139,140,-138,141,140,-140,140,142,-138,143,137,-143,144,146,-146,147,145,-147,148,24,-150,24,148,-151,148,151,-151,152,150,-152,26,24,-151,153,26,-151,154,153,-151,153,155,-27,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,167,-167,168,169,-168,170,169,-169,169,171,-168,171,172,-168,173,167,-173,174,169,-171,169,174,-176,176,174,-171,177,176,-171,178,175,-175,179,175,-179,180,182,-182,182,183,-182,183,184,-182,185,184,-184,184,186,-182,187,181,-187,188,190,-190,191,189,-191,192,29,-194,29,194,-194,31,194,-30,194,195,-194,196,193,-196,197,194,-32,198,197,-32,199,194,-198,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1260 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,-0.6246951,-0.7808689,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689,0,0.6246951,0.7808689 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *432 { + a: -15.74803,36.21893,-2.520915,19.68504,-15.74803,3.151144,15.74803,36.21893,15.74803,3.151144,2.520915,19.68504,1.666018E-14,16.5339,13.22712,-1.874056E-13,-13.22712,-1.847461E-13,15.74803,3.151144,2.520915,19.68504,15.74803,36.21893,-13.22712,-9.554663E-14,-7.482013E-14,16.5339,13.22712,-9.28871E-14,13.22712,39.37008,9.702666E-14,22.83618,-13.22712,39.37008,-3.886671E-14,22.83618,-13.22712,39.37008,13.22712,39.37008,-15.74803,3.151144,-15.74803,36.21893,-2.520915,19.68504,18.70079,13.22712,18.70079,-13.22712,16.73228,13.22712,16.73228,-13.22712,-18.70079,-13.22712,-18.70079,13.22712,-16.73228,-13.22712,-16.73228,13.22712,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-16.24016,16.94624,-16.73228,16.94624,-16.24016,38.11995,-16.73228,38.11995,19.19291,-8.262914,18.70079,-8.262914,19.19291,12.9108,18.70079,12.9108,19.19291,-1.885948E-13,19.19291,3.151144,19.68504,-5.359165E-14,19.68504,39.37008,18.70079,3.151144,19.19291,36.21893,19.19291,39.37008,18.70079,36.21893,-18.70079,16.94624,-19.19291,16.94624,-18.70079,38.11995,-19.19291,38.11995,-16.24016,-1.603536E-14,-16.24016,3.151144,-15.74803,1.067083E-15,-15.74803,39.37008,-16.73228,3.151144,-16.24016,36.21893,-16.24016,39.37008,-16.73228,36.21893,-16.24016,17.83206,-16.73228,17.83206,-16.24016,39.00578,-16.73228,39.00578,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.19291,-13.22712,19.19291,-15.74803,15.74803,-19.68504,19.68504,-19.68504,19.68504,-15.74803,16.24016,-15.74803,16.24016,-13.22712,15.74803,-15.74803,-18.70079,-7.377088,-19.19291,-7.377088,-18.70079,13.79663,-19.19291,13.79663,16.73228,16.94624,16.24016,16.94624,16.73228,38.11995,16.24016,38.11995,16.73228,17.83206,16.24016,17.83206,16.73228,39.00578,16.24016,39.00578,19.19291,16.94624,18.70079,16.94624,19.19291,38.11995,18.70079,38.11995,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-16.24016,-8.262914,-16.73228,-8.262914,-16.24016,12.9108,-16.73228,12.9108,-18.70079,17.83206,-19.19291,17.83206,-18.70079,39.00578,-19.19291,39.00578,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-19.19291,-15.74803,-19.19291,-13.22712,-16.24016,-15.74803,-15.74803,-15.74803,-16.24016,-13.22712,-15.74803,-3.270098E-14,-15.74803,3.151144,-13.22712,-6.534154E-14,-2.520915,19.68504,-5.684342E-14,16.5339,-5.684342E-14,22.83618,13.22712,-6.268201E-14,-13.22712,39.37008,-15.74803,36.21893,-15.74803,39.37008,2.520915,19.68504,13.22712,39.37008,15.74803,3.151144,15.74803,-3.004145E-14,15.74803,36.21893,15.74803,39.37008,16.73228,-8.262914,16.24016,-8.262914,16.73228,12.9108,16.24016,12.9108,16.73228,3.151144,16.24016,3.151144,16.73228,36.21893,16.24016,36.21893,15.74803,39.37008,16.24016,39.37008,15.74803,1.067083E-15,16.24016,-1.869489E-14,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.19291,15.74803,19.19291,13.22712,15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,16.24016,15.74803,15.74803,15.74803,16.24016,13.22712,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,15.74803,39.37008,15.74803,36.21893,13.22712,39.37008,2.520915,19.68504,5.684342E-14,22.83618,5.684342E-14,16.5339,-13.22712,39.37008,13.22712,-2.061625E-13,15.74803,-1.5376E-13,15.74803,3.151144,-2.520915,19.68504,-13.22712,-2.03503E-13,-15.74803,36.21893,-15.74803,39.37008,-15.74803,3.151144,-15.74803,-1.511004E-13,-18.70079,3.151144,-19.19291,3.151144,-18.70079,36.21893,-19.19291,36.21893,-19.68504,39.37008,-19.19291,39.37008,-19.68504,-6.478952E-14,-19.19291,-1.971331E-13,-18.70079,-8.262914,-19.19291,-8.262914,-18.70079,12.9108,-19.19291,12.9108,-19.19291,13.22712,-19.19291,15.74803,-15.74803,19.68504,-19.68504,19.68504,-19.68504,15.74803,-16.24016,15.74803,-16.24016,13.22712,-15.74803,15.74803,-16.24016,-7.377088,-16.73228,-7.377088,-16.24016,13.79663,-16.73228,13.79663,19.19291,17.83206,18.70079,17.83206,19.19291,39.00578,18.70079,39.00578,19.19291,-7.377088,18.70079,-7.377088,19.19291,13.79663,18.70079,13.79663,16.73228,-7.377088,16.24016,-7.377088,16.73228,13.79663,16.24016,13.79663 + } + UVIndex: *420 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,45,47,49,48,47,50,49,47,49,51,48,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,60,59,62,61,59,61,63,60,64,66,65,67,65,66,68,70,69,71,69,70,72,25,73,25,74,73,27,74,25,74,75,73,76,73,75,77,74,27,78,77,27,79,74,77,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,111,110,28,112,110,30,28,110,113,30,110,114,113,110,113,115,30,116,118,117,119,117,118,120,119,118,120,121,119,122,121,120,121,123,119,119,123,124,125,124,123,126,121,122,121,126,127,128,126,122,129,128,122,130,127,126,131,127,130,132,134,133,135,133,134,136,138,137,138,139,137,139,140,137,141,140,139,140,142,137,143,137,142,144,146,145,147,145,146,148,24,149,24,148,150,148,151,150,152,150,151,26,24,150,153,26,150,154,153,150,153,155,26,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,167,166,168,169,167,170,169,168,169,171,167,171,172,167,173,167,172,174,169,170,169,174,175,176,174,170,177,176,170,178,175,174,179,175,178,180,182,181,182,183,181,183,184,181,185,184,183,184,186,181,187,181,186,188,190,189,191,189,190,192,29,193,29,194,193,31,194,29,194,195,193,196,193,195,197,194,31,198,197,31,199,194,197,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *140 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDetailCross, Model::RootNode + C: "OO",5188101480663910429,0 + + ;Geometry::, Model::Mesh wallDetailCross + C: "OO",4703618843272040228,5188101480663910429 + + ;Material::stone, Model::Mesh wallDetailCross + C: "OO",7184,5188101480663910429 + + ;Material::wood, Model::Mesh wallDetailCross + C: "OO",7178,5188101480663910429 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailCross.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailCross.fbx.import new file mode 100644 index 0000000..163d0ec --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailCross.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bgwrl7utn5pm5" +path="res://.godot/imported/wallDetailCross.fbx-45800a356c0af159e9f2aba268d6abb9.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailCross.fbx" +dest_files=["res://.godot/imported/wallDetailCross.fbx-45800a356c0af159e9f2aba268d6abb9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailDiagonal.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailDiagonal.fbx new file mode 100644 index 0000000..b68e706 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailDiagonal.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 612 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDetailDiagonal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDetailDiagonal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4942563588339960898, "Model::wallDetailDiagonal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5234751640016054061, "Geometry::", "Mesh" { + Vertices: *360 { + a: 5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4,0,4,4,10,4,4,0,5,4,10,5,4.125,0.8003905,-4,4.25,0.8003905,-4,4.125,10,3.359688,4.25,10,3.359688,5,10,4,5,0,4,5,10,5,5,0,5,4.75,0,4,5,0,4,4.75,9.199609,4,4.875,9.199609,4,5,10,4,4.875,10,4,4,0,4,4.25,0,4,4,10,4,4.125,9.199609,4,4.125,10,4,4.25,9.199609,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4.25,0.8003905,-4,4.125,0.8003905,-4,4.25,10,-4,4,10,-4,4,0,-4,4.125,-5.019541E-15,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.25,-1.331024E-14,-3.359688,4.125,-1.331024E-14,-3.359688,4.25,9.199609,4,4.125,9.199609,4,4.875,10,3.359688,4.875,10,4,4.75,10,3.359688,4,10,5,4.25,10,3.359688,5,10,5,5,10,4,4.125,10,4,4.125,10,3.359688,4,10,4,4.125,-5.019541E-15,-4,4.125,0.8003905,-4,4.125,-1.331024E-14,-3.359688,4.125,10,3.359688,4.125,9.199609,4,4.125,10,4,4.875,-4.760103E-14,-3.359688,4.875,-3.429079E-14,-4,4.75,-4.760103E-14,-3.359688,4,0,-5,4.25,-1.331024E-14,-3.359688,5,0,-5,5,0,-4,4.125,-5.019541E-15,-4,4.125,-1.331024E-14,-3.359688,4,0,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.875,0.8003905,-4,4.875,-3.429079E-14,-4,4.875,10,3.359688,4.875,-4.760103E-14,-3.359688,4.875,9.199609,4,4.875,10,4,4.75,0.8003905,-4,4.875,0.8003905,-4,4.75,10,3.359688,4.875,10,3.359688,4.875,-4.760103E-14,-3.359688,4.75,-4.760103E-14,-3.359688,4.875,9.199609,4,4.75,9.199609,4,5,0,5,4,0,5,5,10,5,4,10,5,4.875,-3.429079E-14,-4,4.875,0.8003905,-4,5,0,-4,5,10,-4,4.75,0.8003905,-4,4.75,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4.25,0.8003905,-4,4.25,10,-4,4.25,10,3.359688,4.75,9.199609,4,4.75,-4.760103E-14,-3.359688,4.75,0,4,4.25,0,4,4.25,-1.331024E-14,-3.359688,4.25,9.199609,4,4.75,10,-4,4.75,0.8003905,-4,4.75,10,3.359688 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,19,-22,23,22,-22,24,26,-26,27,25,-27,28,27,-27,27,29,-26,30,32,-32,33,31,-33,34,36,-36,36,37,-36,37,38,-36,39,35,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,50,51,-50,52,51,-51,51,53,-50,54,49,-54,55,51,-53,56,55,-53,57,51,-56,58,60,-60,61,59,-61,62,61,-61,63,61,-63,64,66,-66,66,67,-66,68,67,-67,67,69,-66,70,65,-70,71,67,-69,72,71,-69,73,67,-72,74,76,-76,77,75,-77,78,77,-77,79,78,-77,80,82,-82,83,81,-83,84,83,-83,85,84,-83,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,99,-102,103,102,-102,104,106,-106,107,105,-107,108,110,-110,111,113,-113,114,116,-116,117,119,-119,77,78,-51,52,50,-79,66,3,-69,4,68,-4 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,0.6246951,-0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,-0.6246951,0.7808689,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: 19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-16.24016,-7.377088,-16.73228,-7.377088,-16.24016,39.00578,-16.73228,39.00578,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-18.70079,-3.391417E-14,-19.68504,-3.391417E-14,-18.70079,36.21893,-19.19291,36.21893,-19.68504,39.37008,-19.19291,39.37008,-15.74803,1.659725E-15,-16.73228,1.659725E-15,-15.74803,39.37008,-16.24016,36.21893,-16.24016,39.37008,-16.73228,36.21893,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,16.73228,3.151144,16.24016,3.151144,16.73228,39.37008,15.74803,39.37008,15.74803,-7.349944E-15,16.24016,-2.711191E-14,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,16.73228,-8.262914,16.24016,-8.262914,16.73228,38.11995,16.24016,38.11995,-19.19291,13.22712,-19.19291,15.74803,-18.70079,13.22712,-15.74803,19.68504,-16.73228,13.22712,-19.68504,19.68504,-19.68504,15.74803,-16.24016,15.74803,-16.24016,13.22712,-15.74803,15.74803,-15.74803,-2.594455E-14,-15.74803,3.151144,-13.22712,-5.858511E-14,13.22712,39.37008,15.74803,36.21893,15.74803,39.37008,19.19291,-13.22712,19.19291,-15.74803,18.70079,-13.22712,15.74803,-19.68504,16.73228,-13.22712,19.68504,-19.68504,19.68504,-15.74803,16.24016,-15.74803,16.24016,-13.22712,15.74803,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,15.74803,3.151144,15.74803,-1.444708E-13,-13.22712,39.37008,13.22712,-1.968733E-13,-15.74803,36.21893,-15.74803,39.37008,-18.70079,-7.377088,-19.19291,-7.377088,-18.70079,39.00578,-19.19291,39.00578,19.19291,-8.262914,18.70079,-8.262914,19.19291,38.11995,18.70079,38.11995,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.19291,-1.635723E-13,19.19291,3.151144,19.68504,-2.856916E-14,19.68504,39.37008,18.70079,3.151144,18.70079,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,3.151144,-15.74803,39.37008,13.22712,39.37008,-15.74803,36.21893,13.22712,-1.874056E-13,-15.74803,-6.188804E-29,15.74803,-2.827583E-29,-13.22712,-5.240253E-14,15.74803,36.21893,15.74803,39.37008,15.74803,3.151144,-13.22712,39.37008 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,19,21,23,22,21,24,26,25,27,25,26,28,27,26,27,29,25,30,32,31,33,31,32,34,36,35,36,37,35,37,38,35,39,35,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,50,51,49,52,51,50,51,53,49,54,49,53,55,51,52,56,55,52,57,51,55,58,60,59,61,59,60,62,61,60,63,61,62,64,66,65,66,67,65,68,67,66,67,69,65,70,65,69,71,67,68,72,71,68,73,67,71,74,76,75,77,75,76,78,77,76,79,78,76,80,82,81,83,81,82,84,83,82,85,84,82,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,99,101,103,102,101,104,106,105,107,105,106,108,110,109,111,113,112,114,116,115,117,119,118,77,78,50,52,50,78,66,3,68,4,68,3 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDetailDiagonal, Model::RootNode + C: "OO",4942563588339960898,0 + + ;Geometry::, Model::Mesh wallDetailDiagonal + C: "OO",5234751640016054061,4942563588339960898 + + ;Material::wood, Model::Mesh wallDetailDiagonal + C: "OO",7178,4942563588339960898 + + ;Material::stone, Model::Mesh wallDetailDiagonal + C: "OO",7184,4942563588339960898 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailDiagonal.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailDiagonal.fbx.import new file mode 100644 index 0000000..0c347f0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailDiagonal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4grjjkxnkne4" +path="res://.godot/imported/wallDetailDiagonal.fbx-a7ca7bc6491f6f5818f566c5f46ff7f6.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailDiagonal.fbx" +dest_files=["res://.godot/imported/wallDetailDiagonal.fbx-a7ca7bc6491f6f5818f566c5f46ff7f6.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailHorizontal.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailHorizontal.fbx new file mode 100644 index 0000000..b30a873 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailHorizontal.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 649 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDetailHorizontal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDetailHorizontal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5761818578476792292, "Model::wallDetailHorizontal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4622182391977108046, "Geometry::", "Mesh" { + Vertices: *432 { + a: 5,0,5,5,0,4,4,0,5,4.875,0,4,4.125,0,4,4,0,4,4.875,0,-4,4.125,0,-4,4,0,-5,4,0,-4,5,0,-5,5,0,-4,4.25,1.5,-4,4.125,1.5,-4,4.25,4.25,-4,4.125,4.25,-4,4,10,-4,4.125,5.75,-4,4,0,-4,4.125,0,-4,4.25,10,-4,4.25,5.75,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,4,5,0,4,5,10,5,5,0,5,5,0,-4,4.875,0,-4,5,10,-4,4.875,1.5,-4,4.875,4.25,-4,4.75,1.5,-4,4.75,4.25,-4,4.875,5.75,-4,4.75,5.75,-4,4.75,10,-4,4.875,1.5,-4,4.875,1.5,4,4.75,1.5,-4,4.75,1.5,4,4.25,4.25,4,4.25,4.25,-4,4.125,4.25,4,4.125,4.25,-4,4.125,4.25,-4,4.125,5.75,-4,4.125,4.25,4,4.125,5.75,4,4.875,1.5,-4,4.875,0,-4,4.875,1.5,4,4.875,0,4,4.25,5.75,-4,4.25,5.75,4,4.125,5.75,-4,4.125,5.75,4,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4.875,5.75,-4,4.875,4.25,-4,4.875,5.75,4,4.875,4.25,4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.75,1.5,4,4.875,1.5,4,4.75,4.25,4,4.875,4.25,4,5,10,4,4.875,5.75,4,5,0,4,4.875,0,4,4.75,10,4,4.75,5.75,4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4,4.125,0,4,4,10,4,4.125,1.5,4,4.125,4.25,4,4.25,1.5,4,4.25,4.25,4,4.125,5.75,4,4.25,5.75,4,4.25,10,4,4.875,5.75,-4,4.875,5.75,4,4.75,5.75,-4,4.75,5.75,4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,1.5,-4,4.25,1.5,4,4.125,1.5,-4,4.125,1.5,4,4.125,0,-4,4.125,1.5,-4,4.125,0,4,4.125,1.5,4,4.875,4.25,4,4.875,4.25,-4,4.75,4.25,4,4.75,4.25,-4,4.25,5.75,-4,4.25,10,-4,4.25,5.75,4,4.25,10,4,4.75,10,-4,4.75,5.75,-4,4.75,10,4,4.75,5.75,4,4.75,4.25,-4,4.75,1.5,-4,4.75,4.25,4,4.75,1.5,4,4.25,1.5,-4,4.25,4.25,-4,4.25,1.5,4,4.25,4.25,4 + } + PolygonVertexIndex: *276 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,3,-5,4,7,-7,7,8,-7,9,8,-8,8,10,-7,11,6,-11,12,14,-14,14,15,-14,15,16,-14,17,16,-16,16,18,-14,19,13,-19,20,16,-18,21,20,-18,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,37,-37,39,37,-39,38,40,-40,41,38,-37,42,41,-37,43,42,-37,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,71,-71,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,84,85,-84,85,86,-84,87,86,-86,86,88,-84,89,83,-89,90,86,-88,91,90,-88,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,99,-99,101,99,-101,100,102,-102,103,100,-99,104,103,-99,105,104,-99,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,113,-113,115,114,-113,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,113,114,-71,72,70,-115,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *828 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *288 { + a: 19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,19.19291,15.74803,16.24016,15.74803,15.74803,15.74803,19.19291,-15.74803,16.24016,-15.74803,15.74803,-19.68504,15.74803,-15.74803,19.68504,-19.68504,19.68504,-15.74803,16.73228,5.905512,16.24016,5.905512,16.73228,16.73228,16.24016,16.73228,15.74803,39.37008,16.24016,22.63779,15.74803,-1.462564E-15,16.24016,-1.462564E-15,16.73228,39.37008,16.73228,22.63779,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,-4.993145E-15,19.19291,-4.993145E-15,19.68504,39.37008,19.19291,5.905512,19.19291,16.73228,18.70079,5.905512,18.70079,16.73228,19.19291,22.63779,18.70079,22.63779,18.70079,39.37008,-19.19291,-15.74803,-19.19291,15.74803,-18.70079,-15.74803,-18.70079,15.74803,16.73228,15.74803,16.73228,-15.74803,16.24016,15.74803,16.24016,-15.74803,-15.74803,16.73228,-15.74803,22.63779,15.74803,16.73228,15.74803,22.63779,15.74803,5.905512,15.74803,0,-15.74803,5.905512,-15.74803,0,-16.73228,-15.74803,-16.73228,15.74803,-16.24016,-15.74803,-16.24016,15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,15.74803,22.63779,15.74803,16.73228,-15.74803,22.63779,-15.74803,16.73228,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-18.70079,5.905512,-19.19291,5.905512,-18.70079,16.73228,-19.19291,16.73228,-19.68504,39.37008,-19.19291,22.63779,-19.68504,4.993145E-15,-19.19291,4.993145E-15,-18.70079,39.37008,-18.70079,22.63779,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-15.74803,1.392919E-15,-16.24016,1.392919E-15,-15.74803,39.37008,-16.24016,5.905512,-16.24016,16.73228,-16.73228,5.905512,-16.73228,16.73228,-16.24016,22.63779,-16.73228,22.63779,-16.73228,39.37008,-19.19291,-15.74803,-19.19291,15.74803,-18.70079,-15.74803,-18.70079,15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-16.73228,-15.74803,-16.73228,15.74803,-16.24016,-15.74803,-16.24016,15.74803,-15.74803,0,-15.74803,5.905512,15.74803,0,15.74803,5.905512,19.19291,15.74803,19.19291,-15.74803,18.70079,15.74803,18.70079,-15.74803,-15.74803,22.63779,-15.74803,39.37008,15.74803,22.63779,15.74803,39.37008,15.74803,39.37008,15.74803,22.63779,-15.74803,39.37008,-15.74803,22.63779,15.74803,16.73228,15.74803,5.905512,-15.74803,16.73228,-15.74803,5.905512,-15.74803,5.905512,-15.74803,16.73228,15.74803,5.905512,15.74803,16.73228 + } + UVIndex: *276 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,3,4,4,7,6,7,8,6,9,8,7,8,10,6,11,6,10,12,14,13,14,15,13,15,16,13,17,16,15,16,18,13,19,13,18,20,16,17,21,20,17,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,37,36,39,37,38,38,40,39,41,38,36,42,41,36,43,42,36,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,71,70,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,84,85,83,85,86,83,87,86,85,86,88,83,89,83,88,90,86,87,91,90,87,92,94,93,95,93,94,96,98,97,99,97,98,100,99,98,101,99,100,100,102,101,103,100,98,104,103,98,105,104,98,106,108,107,109,107,108,110,112,111,113,111,112,114,113,112,115,114,112,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,113,114,70,72,70,114,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *92 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDetailHorizontal, Model::RootNode + C: "OO",5761818578476792292,0 + + ;Geometry::, Model::Mesh wallDetailHorizontal + C: "OO",4622182391977108046,5761818578476792292 + + ;Material::wood, Model::Mesh wallDetailHorizontal + C: "OO",7178,5761818578476792292 + + ;Material::stone, Model::Mesh wallDetailHorizontal + C: "OO",7184,5761818578476792292 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailHorizontal.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailHorizontal.fbx.import new file mode 100644 index 0000000..fd3105a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailHorizontal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cf1mmvsy0tquy" +path="res://.godot/imported/wallDetailHorizontal.fbx-33ecca2616e864c6bcb631636165bf31.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDetailHorizontal.fbx" +dest_files=["res://.godot/imported/wallDetailHorizontal.fbx-33ecca2616e864c6bcb631636165bf31.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDiagonal.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDiagonal.fbx new file mode 100644 index 0000000..7d913d7 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDiagonal.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 681 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDiagonal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDiagonal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5193989471683026705, "Model::wallDiagonal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5502836254410679661, "Geometry::", "Mesh" { + Vertices: *180 { + a: -5,0,4,-4.5,9.023893E-16,4,-5,10,4,-4.5,10,4,-4,0,5,-4,9.023893E-16,4.5,-5,0,5,-4.5,9.023893E-16,4,-5,0,4,-4,10,4.5,-4,9.023893E-16,4.5,-4,10,5,-4,0,5,4,0,-5,4,10,-5,4,0,-4.5,4,10,-4.5,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,-5,5,10,-4,4,10,-5,4.5,10,-4,4,10,-4.5,-4,10,4.5,-4,10,5,-4.5,10,4,-5,10,5,-5,10,4,5,0,-4,5,0,-5,4.5,0,-4,4,0,-5,4,0,-4.5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,-4,4.5,0,-4,5,10,-4,4.5,10,-4,-5,0,4,-5,10,4,-5,0,5,-5,10,5,-4,0,5,-5,0,5,-4,10,5,-5,10,5,4,0,-4.5,4,10,-4.5,-4.5,9.023893E-16,4,-4.5,10,4,4.5,10,-4,4.5,0,-4,-4,10,4.5,-4,9.023893E-16,4.5 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,26,28,-28,29,27,-29,30,29,-29,31,33,-33,34,32,-34,35,34,-34,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,33,5,-36,7,35,-6,24,25,-27,28,26,-26,52,54,-54,55,53,-55,56,58,-58,59,57,-59 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *120 { + a: 19.68504,0,17.71654,3.552714E-15,19.68504,39.37008,17.71654,39.37008,-15.74803,19.68504,-15.74803,17.71654,-19.68504,19.68504,-17.71654,15.74803,-19.68504,15.74803,-17.71654,39.37008,-17.71654,3.552714E-15,-19.68504,39.37008,-19.68504,0,-19.68504,0,-19.68504,39.37008,-17.71654,0,-17.71654,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-17.71654,-15.74803,-15.74803,-17.71654,15.74803,17.71654,15.74803,19.68504,17.71654,15.74803,19.68504,19.68504,19.68504,15.74803,19.68504,-15.74803,19.68504,-19.68504,17.71654,-15.74803,15.74803,-19.68504,15.74803,-17.71654,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,0,17.71654,0,19.68504,39.37008,17.71654,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-23.66302,6.59578E-32,-23.66302,39.37008,23.66302,3.552714E-15,23.66302,39.37008,23.66302,39.37008,23.66302,-2.931458E-32,-23.66302,39.37008,-23.66302,3.552714E-15 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,26,28,27,29,27,28,30,29,28,31,33,32,34,32,33,35,34,33,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,33,5,35,7,35,5,24,25,26,28,26,25,52,54,53,55,53,54,56,58,57,59,57,58 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDiagonal, Model::RootNode + C: "OO",5193989471683026705,0 + + ;Geometry::, Model::Mesh wallDiagonal + C: "OO",5502836254410679661,5193989471683026705 + + ;Material::wood, Model::Mesh wallDiagonal + C: "OO",7178,5193989471683026705 + + ;Material::stone, Model::Mesh wallDiagonal + C: "OO",7184,5193989471683026705 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDiagonal.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDiagonal.fbx.import new file mode 100644 index 0000000..ce1552c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDiagonal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://q8iah8xh37v" +path="res://.godot/imported/wallDiagonal.fbx-292e4ed936c4359d5cec8fb4d914f5ff.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDiagonal.fbx" +dest_files=["res://.godot/imported/wallDiagonal.fbx-292e4ed936c4359d5cec8fb4d914f5ff.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoor.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoor.fbx new file mode 100644 index 0000000..e1ccf84 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoor.fbx @@ -0,0 +1,439 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 722 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDoor.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDoor.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4966979344435667333, "Model::wallDoor", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4697440800789178782, "Geometry::", "Mesh" { + Vertices: *1086 { + a: 5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,0,4,5,10,5,5,0,5,4.25,8.098077,-1.5,4.25,8.397778,-0.7764571,4,8.098077,-1.5,4,8.397778,-0.7764571,4.25,8.397778,-0.7764571,4.25,8.5,-1.443823E-14,4,8.397778,-0.7764571,4,8.5,-1.443823E-14,4.25,0,3,4,0,3,4.25,5.5,3,4,5.5,3,5,-3.6136E-20,-2,5,-3.6136E-20,-3,4,0,-2,4.75,0,-3,4.25,0,-3,4,0,-3,4,0,2,4,5.5,2,4,0,3,4,7.714413,2,4,6.017638,1.931852,4,6.5,1.732051,4,7.62132,2.12132,4,7,2.598076,4,6.276457,2.897778,4,5.5,3,4,8.098077,1.5,4,6.914213,1.414214,4,7.232051,1,4,8.397778,0.7764571,4,7.431851,0.5176381,4,8.5,-1.443823E-14,4,7.5,-1.443823E-14,4,7.431851,-0.5176381,4,8.397778,-0.7764571,4,7.232051,-1,4,6.914213,-1.414214,4,8.098077,-1.5,4,6.5,-1.732051,4,6.017638,-1.931852,4,7.714413,-2,4,5.5,-2,4,7.62132,-2.12132,4,0,-2,4,7,-2.598076,4,6.276457,-2.897778,4,0,-3,4,5.5,-3,4,0,-3,4.25,0,-3,4,5.5,-3,4.25,5.5,-3,4,8.098077,-1.5,4,7.714413,-2,4.25,8.098077,-1.5,4.25,7.714413,-2,4,7.62132,-2.12132,4.25,7.62132,-2.12132,5,-3.6136E-20,3,5,-3.6136E-20,2,4.75,0,3,4,0,2,4.25,0,3,4,0,3,4,6.5,1.732051,5,6.5,1.732051,4,6.914213,1.414214,5,6.914213,1.414214,5,6.5,-1.732051,4,6.5,-1.732051,5,6.914213,-1.414214,4,6.914213,-1.414214,4.75,6.276457,-2.897778,5,6.276457,-2.897778,4.75,7,-2.598076,5,7,-2.598076,5,6.017638,-1.931852,4,6.017638,-1.931852,5,6.5,-1.732051,4,6.5,-1.732051,4.75,5.5,-3,5,5.5,-3,4.75,6.276457,-2.897778,5,6.276457,-2.897778,4.25,6.276457,2.897778,4,6.276457,2.897778,4.25,7,2.598076,4,7,2.598076,5,7.62132,-2.12132,5,7.714413,-2,4.75,7.62132,-2.12132,4.75,7.714413,-2,5,8.098077,-1.5,4.75,8.098077,-1.5,5,-3.6136E-20,-3,5,5.5,-3,4.75,0,-3,4.75,5.5,-3,4.75,7,-2.598076,5,7,-2.598076,4.75,7.62132,-2.12132,5,7.62132,-2.12132,4.75,7.62132,2.12132,4.75,7.714413,2,5,7.62132,2.12132,5,7.714413,2,4.75,8.098077,1.5,5,8.098077,1.5,4.25,8.397778,0.7764571,4.25,8.098077,1.5,4,8.397778,0.7764571,4,8.098077,1.5,5,-3.6136E-20,2,5,5.5,2,4,0,2,4,5.5,2,5,8.098077,-1.5,5,8.397778,-0.7764571,4.75,8.098077,-1.5,4.75,8.397778,-0.7764571,4.25,8.5,-1.443823E-14,4.25,8.397778,0.7764571,4,8.5,-1.443823E-14,4,8.397778,0.7764571,4,5.5,2,5,5.5,2,4,6.017638,1.931852,5,6.017638,1.931852,5,7,2.598076,4.75,7,2.598076,5,7.62132,2.12132,4.75,7.62132,2.12132,4,7,-2.598076,4.25,7,-2.598076,4,7.62132,-2.12132,4.25,7.62132,-2.12132,5,-3.6136E-20,-2,4,0,-2,5,5.5,-2,4,5.5,-2,4,5.5,-3,4.25,5.5,-3,4,6.276457,-2.897778,4.25,6.276457,-2.897778,4.25,7,2.598076,4,7,2.598076,4.25,7.62132,2.12132,4,7.62132,2.12132,4,6.276457,-2.897778,4.25,6.276457,-2.897778,4,7,-2.598076,4.25,7,-2.598076,4,6.017638,1.931852,5,6.017638,1.931852,4,6.5,1.732051,5,6.5,1.732051,5,7.5,-1.443823E-14,5,7.431851,-0.5176381,4,7.5,-1.443823E-14,4,7.431851,-0.5176381,5,5.5,3,5,6.276457,2.897778,5,-3.6136E-20,3,5,7,2.598076,5,7.62132,2.12132,5,7.714413,2,5,-3.6136E-20,2,5,5.5,2,5,6.017638,1.931852,5,6.5,1.732051,5,8.098077,1.5,5,6.914213,1.414214,5,7.232051,1,5,8.397778,0.7764571,5,7.431851,0.5176381,5,7.5,-1.443823E-14,5,8.5,-1.443823E-14,5,7.431851,-0.5176381,5,8.397778,-0.7764571,5,7.232051,-1,5,6.914213,-1.414214,5,8.098077,-1.5,5,6.5,-1.732051,5,6.017638,-1.931852,5,7.714413,-2,5,5.5,-2,5,7.62132,-2.12132,5,-3.6136E-20,-2,5,7,-2.598076,5,6.276457,-2.897778,5,-3.6136E-20,-3,5,5.5,-3,4,7.62132,2.12132,4,7.714413,2,4.25,7.62132,2.12132,4.25,7.714413,2,4,8.098077,1.5,4.25,8.098077,1.5,5,8.397778,-0.7764571,5,8.5,-1.443823E-14,4.75,8.397778,-0.7764571,4.75,8.5,-1.443823E-14,5,6.914213,1.414214,5,7.232051,1,4,6.914213,1.414214,4,7.232051,1,5,6.276457,2.897778,4.75,6.276457,2.897778,5,7,2.598076,4.75,7,2.598076,5,8.397778,0.7764571,5,8.098077,1.5,4.75,8.397778,0.7764571,4.75,8.098077,1.5,5,-3.6136E-20,3,4.75,0,3,5,5.5,3,4.75,5.5,3,5,7.431851,-0.5176381,5,7.232051,-1,4,7.431851,-0.5176381,4,7.232051,-1,5,8.5,-1.443823E-14,5,8.397778,0.7764571,4.75,8.5,-1.443823E-14,4.75,8.397778,0.7764571,5,5.5,3,4.75,5.5,3,5,6.276457,2.897778,4.75,6.276457,2.897778,5,7.232051,1,5,7.431851,0.5176381,4,7.232051,1,4,7.431851,0.5176381,5,7.431851,0.5176381,5,7.5,-1.443823E-14,4,7.431851,0.5176381,4,7.5,-1.443823E-14,5,7.232051,-1,5,6.914213,-1.414214,4,7.232051,-1,4,6.914213,-1.414214,4.25,5.5,3,4,5.5,3,4.25,6.276457,2.897778,4,6.276457,2.897778,5,5.5,-2,4,5.5,-2,5,6.017638,-1.931852,4,6.017638,-1.931852,4.75,7.714413,-2,4.75,8.098077,-1.5,4.75,7.62132,-2.12132,4.25,7.714413,-2,4.25,7.62132,-2.12132,4.25,8.098077,-1.5,4.75,0,3,4.75,0,4,4.75,5.5,3,4.75,10,4,4.75,6.276457,2.897778,4.75,7,2.598076,4.75,7.62132,2.12132,4.75,7.714413,2,4.75,8.098077,1.5,4.75,8.397778,0.7764571,4.75,8.5,-1.443823E-14,4.75,8.397778,-0.7764571,4.75,10,-4,4.75,8.098077,-1.5,4.75,7.62132,-2.12132,4.75,7,-2.598076,4.75,6.276457,-2.897778,4.75,0,-4,4.75,5.5,-3,4.75,0,-3,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,5.5,-3,4.25,6.276457,-2.897778,4.25,7,-2.598076,4.25,7.62132,-2.12132,4.25,8.098077,-1.5,4.25,8.397778,-0.7764571,4.25,10,4,4.25,8.5,-1.443823E-14,4.25,8.397778,0.7764571,4.25,8.098077,1.5,4.25,7.714413,2,4.25,7.62132,2.12132,4.25,7,2.598076,4.25,6.276457,2.897778,4.25,5.5,3,4.25,0,4,4.25,0,3 + } + PolygonVertexIndex: *720 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,13,-13,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,20,-19,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,29,-29,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,79,-79,81,80,-79,82,84,-84,85,83,-85,83,85,-87,86,85,-88,88,85,-85,89,88,-85,90,89,-85,91,90,-85,85,92,-88,87,92,-94,93,92,-95,92,95,-95,94,95,-97,95,97,-97,96,97,-99,98,97,-100,97,100,-100,99,100,-102,101,100,-103,100,103,-103,102,103,-105,104,103,-106,103,106,-106,105,106,-108,106,108,-108,107,108,-110,108,110,-110,110,111,-110,109,111,-113,113,112,-112,114,116,-116,117,115,-117,118,120,-120,121,119,-121,119,121,-123,123,122,-122,124,126,-126,127,125,-127,128,127,-127,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,155,157,-159,159,158,-158,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,169,171,-173,173,172,-172,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,227,228,-230,229,228,-231,230,228,-232,228,232,-232,232,233,-232,233,234,-232,234,235,-232,231,235,-237,235,237,-237,237,238,-237,236,238,-240,238,240,-240,240,241,-240,239,241,-243,241,243,-243,242,243,-245,243,245,-245,245,246,-245,244,246,-248,246,248,-248,248,249,-248,247,249,-251,249,251,-251,252,250,-252,251,253,-253,252,253,-255,254,253,-256,253,256,-256,257,255,-257,258,260,-260,261,259,-261,259,261,-263,263,262,-262,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,321,-321,19,20,-13,14,12,-21,79,80,-29,30,28,-81,3,4,-127,128,126,-5,322,324,-324,325,323,-325,324,326,-326,326,327,-326,327,328,-326,328,329,-326,329,330,-326,330,331,-326,331,332,-326,332,333,-326,325,333,-335,333,335,-335,335,336,-335,336,337,-335,337,338,-335,339,334,-339,340,339,-339,340,341,-340,342,344,-344,345,343,-345,345,346,-344,346,347,-344,347,348,-344,348,349,-344,349,350,-344,351,343,-351,352,351,-351,353,351,-353,354,351,-354,355,351,-355,356,351,-356,357,351,-357,358,351,-358,359,351,-359,360,351,-360,361,360,-360 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2160 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,1,0,0,1,0,0,1,0,0,0.9659258,-0.258819,0,0,1,0,0.06540313,0.9978589,0,0,1,0,0.06540313,0.9978589,0,0,1,0,0.06540313,0.9978589,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0.06540313,-0.9978589,0,0,-1,0,0.06540313,-0.9978589,0,0,-1,0,0.06540313,-0.9978589,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.5,0.8660254,0,-0.7071068,0.7071068,0,-0.5,0.8660254,0,-0.7071068,0.7071068,0,-0.5,0.8660254,0,-0.7071068,0.7071068,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,0,-1,0,0,-1,0,0.06540313,-0.9978589,0,0.06540313,-0.9978589,0,0.06540313,-0.9978589,0,0,-1,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9659258,0.258819,0,0,-1,0,0,-1,0,-0.06540313,-0.9978589,0,-0.06540313,-0.9978589,0,-0.06540313,-0.9978589,0,0,-1,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,1,0,0,1,0,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,1,0,0,-0.06540313,-0.9978589,0,-0.258819,-0.9659258,0,-0.06540313,-0.9978589,0,-0.258819,-0.9659258,0,-0.06540313,-0.9978589,0,-0.258819,-0.9659258,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0,1,0,-0.06540313,0.9978589,0,0,1,0,-0.06540313,0.9978589,0,0,1,0,-0.06540313,0.9978589,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,-1,0,0,-1,0,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,1,0,0,1,0,0,1,0,0,0.9659258,-0.258819,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.7071068,-0.7071068,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9659258,0.258819,0,0,1,0,0.06540313,0.9978589,0,0,1,0,0.06540313,0.9978589,0,0,1,0,0.06540313,0.9978589,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.9659258,0.258819,0,1,0,0,1,0,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,1,0,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-1,0,0,-1,0,0,-1,0,0,-0.9659258,-0.258819,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.8660254,0.5,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,-0.06540313,0.9978589,0,-0.258819,0.9659258,0,-0.06540313,0.9978589,0,-0.258819,0.9659258,0,-0.06540313,0.9978589,0,-0.258819,0.9659258,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *724 { + a: 19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-16.73228,6.744804,-16.73228,9.8281,-15.74803,6.744804,-15.74803,9.8281,-16.73228,1.284707,-16.73228,4.368002,-15.74803,1.284707,-15.74803,4.368002,16.73228,1.550275E-14,15.74803,1.550275E-14,16.73228,21.65354,15.74803,21.65354,19.68504,-7.874016,19.68504,-11.81102,15.74803,-7.874016,18.70079,-11.81102,16.73228,-11.81102,15.74803,-11.81102,7.874016,-1.157193E-17,7.874016,21.65354,11.81102,-1.157193E-17,7.874016,30.3717,7.605715,23.69149,6.819098,25.59055,8.351655,30.0052,10.22865,27.55906,11.40857,24.71046,11.81102,21.65354,5.905512,31.88219,5.56777,27.22131,3.937008,28.47264,3.056918,33.06211,2.037945,29.25926,-5.684342E-14,33.46457,-5.684342E-14,29.52756,-2.037945,29.25926,-3.056918,33.06211,-3.937008,28.47264,-5.56777,27.22131,-5.905512,31.88219,-6.819098,25.59055,-7.605715,23.69149,-7.874016,30.3717,-7.874016,21.65354,-8.351655,30.0052,-7.874016,-1.157193E-17,-10.22865,27.55906,-11.40857,24.71046,-11.81102,-1.157193E-17,-11.81102,21.65354,-15.74803,2.325413E-14,-16.73228,2.325413E-14,-15.74803,21.65354,-16.73228,21.65354,-15.74803,14.72349,-15.74803,12.24224,-16.73228,14.72349,-16.73228,12.24224,-15.74803,11.64019,-16.73228,11.64019,19.68504,11.81102,19.68504,7.874016,18.70079,11.81102,15.74803,7.874016,16.73228,11.81102,15.74803,11.81102,-15.74803,16.15115,-19.68504,16.15115,-15.74803,18.20668,-19.68504,18.20668,19.68504,16.15115,15.74803,16.15115,19.68504,18.20668,15.74803,18.20668,-18.70079,18.46362,-19.68504,18.46362,-18.70079,21.54691,-19.68504,21.54691,19.68504,18.9775,15.74803,18.9775,19.68504,21.03303,15.74803,21.03303,-18.70079,19.92665,-19.68504,19.92665,-18.70079,23.00994,-19.68504,23.00994,16.73228,18.46362,15.74803,18.46362,16.73228,21.54691,15.74803,21.54691,-19.68504,11.64019,-19.68504,12.24224,-18.70079,11.64019,-18.70079,12.24224,-19.68504,14.72349,-18.70079,14.72349,-19.68504,3.100536E-14,-19.68504,21.65354,-18.70079,3.10055E-14,-18.70079,21.65354,-18.70079,15.63726,-19.68504,15.63726,-18.70079,18.72056,-19.68504,18.72056,18.70079,11.64019,18.70079,12.24224,19.68504,11.64019,19.68504,12.24224,18.70079,14.72349,19.68504,14.72349,16.73228,9.8281,16.73228,6.744804,15.74803,9.8281,15.74803,6.744804,-19.68504,-1.422677E-19,-19.68504,21.65354,-15.74803,0,-15.74803,21.65354,-19.68504,6.744804,-19.68504,9.8281,-18.70079,6.744804,-18.70079,9.8281,16.73228,4.368002,16.73228,1.284707,15.74803,4.368002,15.74803,1.284707,-15.74803,20.44053,-19.68504,20.44053,-15.74803,22.49606,-19.68504,22.49606,19.68504,15.63726,18.70079,15.63726,19.68504,18.72056,18.70079,18.72056,-15.74803,15.63726,-16.73228,15.63726,-15.74803,18.72056,-16.73228,18.72056,19.68504,-1.422677E-19,15.74803,0,19.68504,21.65354,15.74803,21.65354,-15.74803,19.92665,-16.73228,19.92665,-15.74803,23.00994,-16.73228,23.00994,16.73228,15.63726,15.74803,15.63726,16.73228,18.72056,15.74803,18.72056,-15.74803,18.46362,-16.73228,18.46362,-15.74803,21.54691,-16.73228,21.54691,-15.74803,18.9775,-19.68504,18.9775,-15.74803,21.03303,-19.68504,21.03303,19.68504,3.85412,19.68504,1.798589,15.74803,3.85412,15.74803,1.798589,-11.81102,21.65354,-11.40857,24.71046,-11.81102,-1.422677E-19,-10.22865,27.55906,-8.351655,30.0052,-7.874016,30.3717,-7.874016,-1.422677E-19,-7.874016,21.65354,-7.605715,23.69149,-6.819098,25.59055,-5.905512,31.88219,-5.56777,27.22131,-3.937008,28.47264,-3.056918,33.06211,-2.037945,29.25926,5.684342E-14,29.52756,5.684342E-14,33.46457,2.037945,29.25926,3.056918,33.06211,3.937008,28.47264,5.56777,27.22131,5.905512,31.88219,6.819098,25.59055,7.605715,23.69149,7.874016,30.3717,7.874016,21.65354,8.351655,30.0052,7.874016,-1.422677E-19,10.22865,27.55906,11.40857,24.71046,11.81102,-1.422677E-19,11.81102,21.65354,15.74803,11.64019,15.74803,12.24224,16.73228,11.64019,16.73228,12.24224,15.74803,14.72349,16.73228,14.72349,-19.68504,1.284707,-19.68504,4.368002,-18.70079,1.284707,-18.70079,4.368002,-19.68504,12.15408,-19.68504,14.20961,-15.74803,12.15408,-15.74803,14.20961,19.68504,18.46362,18.70079,18.46362,19.68504,21.54691,18.70079,21.54691,19.68504,9.8281,19.68504,6.744804,18.70079,9.8281,18.70079,6.744804,19.68504,3.100536E-14,18.70079,3.10055E-14,19.68504,21.65354,18.70079,21.65354,19.68504,9.314218,19.68504,7.258687,15.74803,9.314218,15.74803,7.258687,19.68504,4.368002,19.68504,1.284707,18.70079,4.368002,18.70079,1.284707,19.68504,19.92665,18.70079,19.92665,19.68504,23.00994,18.70079,23.00994,-19.68504,7.258687,-19.68504,9.314218,-15.74803,7.258687,-15.74803,9.314218,-19.68504,1.798589,-19.68504,3.85412,-15.74803,1.798589,-15.74803,3.85412,19.68504,14.20961,19.68504,12.15408,15.74803,14.20961,15.74803,12.15408,16.73228,19.92665,15.74803,19.92665,16.73228,23.00994,15.74803,23.00994,19.68504,20.44053,15.74803,20.44053,19.68504,22.49606,15.74803,22.49606,7.874016,30.3717,5.905512,31.88219,8.351655,30.0052,-7.874016,30.3717,-8.351655,30.0052,-5.905512,31.88219,-11.81102,2.499498E-16,-15.74803,2.499498E-16,-11.81102,21.65354,-15.74803,39.37008,-11.40857,24.71046,-10.22865,27.55906,-8.351655,30.0052,-7.874016,30.3717,-5.905512,31.88219,-3.056918,33.06211,5.684342E-14,33.46457,3.056918,33.06211,15.74803,39.37008,5.905512,31.88219,8.351655,30.0052,10.22865,27.55906,11.40857,24.71046,15.74803,2.499498E-16,11.81102,21.65354,11.81102,2.499498E-16,-15.74803,-3.163753E-16,-15.74803,39.37008,-11.81102,-3.163753E-16,-11.81102,21.65354,-11.40857,24.71046,-10.22865,27.55906,-8.351655,30.0052,-5.905512,31.88219,-3.056918,33.06211,15.74803,39.37008,-5.688042E-14,33.46457,3.056918,33.06211,5.905512,31.88219,7.874016,30.3717,8.351655,30.0052,10.22865,27.55906,11.40857,24.71046,11.81102,21.65354,15.74803,-3.163753E-16,11.81102,-3.163753E-16 + } + UVIndex: *720 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,12,11,13,11,12,14,13,12,15,13,14,16,18,17,19,17,18,20,19,18,21,20,18,22,24,23,25,23,24,26,28,27,29,27,28,30,29,28,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,79,78,81,80,78,82,84,83,85,83,84,83,85,86,86,85,87,88,85,84,89,88,84,90,89,84,91,90,84,85,92,87,87,92,93,93,92,94,92,95,94,94,95,96,95,97,96,96,97,98,98,97,99,97,100,99,99,100,101,101,100,102,100,103,102,102,103,104,104,103,105,103,106,105,105,106,107,106,108,107,107,108,109,108,110,109,110,111,109,109,111,112,113,112,111,114,116,115,117,115,116,118,120,119,121,119,120,119,121,122,123,122,121,124,126,125,127,125,126,128,127,126,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,155,157,158,159,158,157,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,169,171,172,173,172,171,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,227,228,229,229,228,230,230,228,231,228,232,231,232,233,231,233,234,231,234,235,231,231,235,236,235,237,236,237,238,236,236,238,239,238,240,239,240,241,239,239,241,242,241,243,242,242,243,244,243,245,244,245,246,244,244,246,247,246,248,247,248,249,247,247,249,250,249,251,250,252,250,251,251,253,252,252,253,254,254,253,255,253,256,255,257,255,256,258,260,259,261,259,260,259,261,262,263,262,261,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,321,320,19,20,12,14,12,20,79,80,28,30,28,80,3,4,126,128,126,4,322,324,323,325,323,324,324,326,325,326,327,325,327,328,325,328,329,325,329,330,325,330,331,325,331,332,325,332,333,325,325,333,334,333,335,334,335,336,334,336,337,334,337,338,334,339,334,338,340,339,338,340,341,339,342,344,343,345,343,344,345,346,343,346,347,343,347,348,343,348,349,343,349,350,343,351,343,350,352,351,350,353,351,352,354,351,353,355,351,354,356,351,355,357,351,356,358,351,357,359,351,358,360,351,359,361,360,359 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *240 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4654024774472488648, "Model::door", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",4.5,-1.8068E-20,-2 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5681102194479193181, "Geometry::", "Mesh" { + Vertices: *480 { + a: -0.25,1.004802,1.004802,-0.25,4.412571,1.004802,-0.25,2.708687,2,-0.25,1.004802,2.995198,-0.25,4.412571,2.995198,0.25,4.412571,1.004802,0.25,1.004802,1.004802,0.25,2.708687,2,0.25,1.004802,2.995198,0.25,4.412571,2.995198,-0.25,5.5,4,-0.25,0,4,-0.25,6.017638,3.931851,-0.25,6.5,3.732051,-0.25,5.466845,3.494153,-0.25,5.885586,3.439024,-0.25,0.5058476,3.494153,-0.25,6.914213,3.414214,-0.25,6.244894,3.290194,-0.25,6.553438,3.053439,-0.25,7.232051,3,-0.25,6.790194,2.744894,-0.25,7.431851,2.517638,-0.25,6.939024,2.385586,-0.25,0.5058476,0.5058476,-0.25,7.5,2,-0.25,6.989787,2,-0.25,6.939024,1.614415,-0.25,7.431851,1.482362,-0.25,6.790194,1.255106,-0.25,0,0,-0.25,7.232051,1,-0.25,6.553438,0.9465612,-0.25,6.244894,0.7098061,-0.25,5.5,0,-0.25,6.017638,0.06814835,-0.25,6.5,0.2679492,-0.25,5.466845,0.5058476,-0.25,6.914213,0.5857865,-0.25,5.885586,0.5609758,0.25,0,4,0.25,0,0,-0.25,0,4,-0.25,0,0,0.25,0,4,-0.25,0,4,0.25,5.5,4,-0.25,5.5,4,0.25,5.5,4,-0.25,5.5,4,0.25,6.017638,3.931851,-0.25,6.017638,3.931851,0.25,6.017638,3.931851,-0.25,6.017638,3.931851,0.25,6.5,3.732051,-0.25,6.5,3.732051,0.25,6.5,3.732051,-0.25,6.5,3.732051,0.25,6.914213,3.414214,-0.25,6.914213,3.414214,0.25,7.232051,3,0.25,6.914213,3.414214,-0.25,7.232051,3,-0.25,6.914213,3.414214,0.25,7.431851,2.517638,0.25,7.232051,3,-0.25,7.431851,2.517638,-0.25,7.232051,3,0.25,7.5,2,0.25,7.431851,2.517638,-0.25,7.5,2,-0.25,7.431851,2.517638,0.25,7.431851,1.482362,0.25,7.5,2,-0.25,7.431851,1.482362,-0.25,7.5,2,0.25,7.232051,1,0.25,7.431851,1.482362,-0.25,7.232051,1,-0.25,7.431851,1.482362,0.25,6.914213,0.5857865,0.25,7.232051,1,-0.25,6.914213,0.5857865,-0.25,7.232051,1,-0.25,6.5,0.2679492,0.25,6.5,0.2679492,-0.25,6.914213,0.5857865,0.25,6.914213,0.5857865,-0.25,6.017638,0.06814835,0.25,6.017638,0.06814835,-0.25,6.5,0.2679492,0.25,6.5,0.2679492,-0.25,5.5,0,0.25,5.5,0,-0.25,6.017638,0.06814835,0.25,6.017638,0.06814835,-0.25,0,0,0.25,0,0,-0.25,5.5,0,0.25,5.5,0,-0.25,4.911526,1.004802,-0.25,5.434142,1.004802,-0.25,4.911526,2.995198,-0.25,5.755332,1.047088,-0.25,5.993264,1.145642,-0.25,6.19758,1.30242,-0.25,6.354358,1.506736,-0.25,6.452912,1.744668,-0.25,6.486527,2,-0.25,6.452912,2.255332,-0.25,6.354358,2.493264,-0.25,6.19758,2.69758,-0.25,5.993264,2.854358,-0.25,5.755332,2.952912,-0.25,5.434142,2.995198,0.25,5.434142,1.004802,0.25,4.911526,1.004802,0.25,5.755332,1.047088,0.25,4.911526,2.995198,0.25,5.993264,1.145642,0.25,6.19758,1.30242,0.25,6.354358,1.506736,0.25,6.452912,1.744668,0.25,6.486527,2,0.25,6.452912,2.255332,0.25,6.354358,2.493264,0.25,6.19758,2.69758,0.25,5.993264,2.854358,0.25,5.755332,2.952912,0.25,5.434142,2.995198,0.25,5.5,0,0.25,0,0,0.25,6.017638,0.06814835,0.25,0.5058476,0.5058476,0.25,6.5,0.2679492,0.25,0,4,0.25,5.466845,0.5058476,0.25,6.914213,0.5857865,0.25,5.885586,0.5609758,0.25,6.244894,0.7098061,0.25,7.232051,1,0.25,6.553438,0.9465612,0.25,6.790194,1.255106,0.25,7.431851,1.482362,0.25,6.939024,1.614415,0.25,7.5,2,0.25,6.989787,2,0.25,7.431851,2.517638,0.25,6.939024,2.385586,0.25,6.790194,2.744894,0.25,7.232051,3,0.25,6.553438,3.053439,0.25,6.914213,3.414214,0.25,6.244894,3.290194,0.25,5.885586,3.439024,0.25,6.5,3.732051,0.25,5.466845,3.494153,0.25,0.5058476,3.494153,0.25,6.017638,3.931851,0.25,5.5,4 + } + PolygonVertexIndex: *588 { + a: 0,2,-2,3,4,-3,5,7,-7,7,9,-9,10,12,-12,12,13,-12,13,14,-12,14,13,-16,14,16,-12,13,17,-16,15,17,-19,18,17,-20,17,20,-20,19,20,-22,20,22,-22,21,22,-24,16,24,-12,22,25,-24,23,25,-27,26,25,-28,25,28,-28,27,28,-30,11,24,-31,28,31,-30,29,31,-33,32,31,-34,34,30,-25,35,34,-25,36,35,-25,24,37,-37,31,38,-34,38,36,-38,33,38,-40,39,38,-38,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,103,-103,105,104,-103,106,105,-103,107,106,-103,108,107,-103,109,108,-103,110,109,-103,111,110,-103,112,111,-103,113,112,-103,114,113,-103,115,117,-117,118,116,-118,119,118,-118,120,118,-120,121,118,-121,122,118,-122,123,118,-123,124,118,-124,125,118,-125,126,118,-126,127,118,-127,128,118,-128,129,118,-129,130,132,-132,133,131,-133,134,133,-133,135,131,-134,136,133,-135,134,137,-137,138,136,-138,139,138,-138,140,139,-138,141,139,-141,142,141,-141,143,142,-141,144,142,-144,145,144,-144,146,144,-146,147,146,-146,148,146,-148,149,148,-148,150,149,-148,151,149,-151,152,151,-151,153,151,-153,154,153,-153,155,154,-153,156,154,-156,157,156,-156,155,135,-158,157,135,-134,158,135,-156,159,135,-159,14,15,-17,15,18,-17,18,19,-17,19,114,-17,114,19,-114,113,19,-113,19,21,-113,112,21,-112,111,21,-111,21,23,-111,110,23,-110,23,26,-110,109,26,-109,108,26,-108,26,27,-108,107,27,-107,106,27,-106,27,29,-106,105,29,-105,104,29,-104,29,32,-104,101,103,-33,0,101,-33,32,33,-1,33,39,-1,39,37,-1,37,24,-1,16,0,-25,1,101,-1,100,101,-2,3,0,-17,1,4,-101,4,3,-17,102,100,-5,102,4,-17,114,102,-17,136,138,-134,6,133,-139,139,6,-139,157,133,-7,141,6,-140,8,157,-7,9,157,-9,115,6,-142,115,141,-118,116,6,-116,5,6,-117,142,117,-142,119,117,-143,120,119,-143,116,118,-6,9,5,-119,144,120,-143,121,120,-145,122,121,-145,146,122,-145,123,122,-147,148,123,-147,124,123,-149,125,124,-149,149,125,-149,126,125,-150,127,126,-150,151,127,-150,128,127,-152,129,128,-152,118,129,-152,9,118,-152,151,157,-10,153,157,-152,154,157,-154,156,157,-155,2,4,-2,0,3,-3,5,9,-8,7,8,-7 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1764 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.8660254,0.5,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9659258,0.258819,0,1,0,0,1,0,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,1,0,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,1,0,0,1,0,0,1,0,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *320 { + a: 3.955914,3.955914,3.955914,17.37233,7.874016,10.66412,11.79212,3.955914,11.79212,17.37233,-3.955914,17.37233,-3.955914,3.955914,-7.874016,10.66412,-11.79212,3.955914,-11.79212,17.37233,15.74803,21.65354,15.74803,0,15.47973,23.69149,14.69311,25.59055,13.75651,21.52301,13.53946,23.1716,13.75651,1.991526,13.44179,27.22131,12.95352,24.58619,12.02141,25.80094,11.81102,28.47264,10.80667,26.73305,9.911961,29.25926,9.392069,27.31899,1.991526,1.991526,7.874016,29.52756,7.874016,27.51885,6.355963,27.31899,5.836071,29.25926,4.941363,26.73305,0,0,3.937008,28.47264,3.726619,25.80094,2.794513,24.58619,0,21.65354,0.2683006,23.69149,1.054918,25.59055,1.991526,21.52301,2.306246,27.22131,2.208566,23.1716,0.984252,15.74803,0.984252,0,-0.984252,15.74803,-0.984252,0,0.984252,0,-0.984252,0,0.984252,21.65354,-0.984252,21.65354,0.984252,19.41276,-0.984252,19.41276,0.984252,21.46829,-0.984252,21.46829,0.984252,15.96424,-0.984252,15.96424,0.984252,18.01978,-0.984252,18.01978,0.984252,11.35775,-0.984252,11.35775,0.984252,13.41328,-0.984252,13.41328,0.984252,7.96273,0.984252,5.9072,-0.984252,7.96273,-0.984252,5.9072,0.984252,2.039576,0.984252,-0.015955,-0.984252,2.039576,-0.984252,-0.015955,0.984252,-3.952533,0.984252,-6.008063,-0.984252,-3.952533,-0.984252,-6.008063,-0.984252,9.605242,-0.984252,11.66077,0.984252,9.605242,0.984252,11.66077,-0.984252,14.53333,-0.984252,16.58886,0.984252,14.53333,0.984252,16.58886,-0.984252,18.40095,-0.984252,20.45648,0.984252,18.40095,0.984252,20.45648,0.984252,20.94454,-0.984252,20.94454,0.984252,23.00007,-0.984252,23.00007,0.984252,21.99076,-0.984252,21.99076,0.984252,24.04629,-0.984252,24.04629,0.984252,21.46829,-0.984252,21.46829,0.984252,23.52382,-0.984252,23.52382,0.984252,0,-0.984252,0,0.984252,21.65354,-0.984252,21.65354,3.955914,19.33672,3.955914,21.39426,11.79212,19.33672,4.122392,22.65879,4.510402,23.59553,5.127637,24.39992,5.932033,25.01716,6.868771,25.40517,7.874016,25.53751,8.87926,25.40517,9.815999,25.01716,10.62039,24.39992,11.23763,23.59553,11.62564,22.65879,11.79212,21.39426,-3.955914,21.39426,-3.955914,19.33672,-4.122392,22.65879,-11.79212,19.33672,-4.510402,23.59553,-5.127637,24.39992,-5.932033,25.01716,-6.868771,25.40517,-7.874016,25.53751,-8.87926,25.40517,-9.815999,25.01716,-10.62039,24.39992,-11.23763,23.59553,-11.62564,22.65879,-11.79212,21.39426,0,21.65354,0,0,-0.2683006,23.69149,-1.991526,1.991526,-1.054918,25.59055,-15.74803,0,-1.991526,21.52301,-2.306246,27.22131,-2.208566,23.1716,-2.794513,24.58619,-3.937008,28.47264,-3.726619,25.80094,-4.941363,26.73305,-5.836071,29.25926,-6.355963,27.31899,-7.874016,29.52756,-7.874016,27.51885,-9.911961,29.25926,-9.392069,27.31899,-10.80667,26.73305,-11.81102,28.47264,-12.02141,25.80094,-13.44179,27.22131,-12.95352,24.58619,-13.53946,23.1716,-14.69311,25.59055,-13.75651,21.52301,-13.75651,1.991526,-15.47973,23.69149,-15.74803,21.65354 + } + UVIndex: *588 { + a: 0,2,1,3,4,2,5,7,6,7,9,8,10,12,11,12,13,11,13,14,11,14,13,15,14,16,11,13,17,15,15,17,18,18,17,19,17,20,19,19,20,21,20,22,21,21,22,23,16,24,11,22,25,23,23,25,26,26,25,27,25,28,27,27,28,29,11,24,30,28,31,29,29,31,32,32,31,33,34,30,24,35,34,24,36,35,24,24,37,36,31,38,33,38,36,37,33,38,39,39,38,37,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,103,102,105,104,102,106,105,102,107,106,102,108,107,102,109,108,102,110,109,102,111,110,102,112,111,102,113,112,102,114,113,102,115,117,116,118,116,117,119,118,117,120,118,119,121,118,120,122,118,121,123,118,122,124,118,123,125,118,124,126,118,125,127,118,126,128,118,127,129,118,128,130,132,131,133,131,132,134,133,132,135,131,133,136,133,134,134,137,136,138,136,137,139,138,137,140,139,137,141,139,140,142,141,140,143,142,140,144,142,143,145,144,143,146,144,145,147,146,145,148,146,147,149,148,147,150,149,147,151,149,150,152,151,150,153,151,152,154,153,152,155,154,152,156,154,155,157,156,155,155,135,157,157,135,133,158,135,155,159,135,158,14,15,16,15,18,16,18,19,16,19,114,16,114,19,113,113,19,112,19,21,112,112,21,111,111,21,110,21,23,110,110,23,109,23,26,109,109,26,108,108,26,107,26,27,107,107,27,106,106,27,105,27,29,105,105,29,104,104,29,103,29,32,103,101,103,32,0,101,32,32,33,0,33,39,0,39,37,0,37,24,0,16,0,24,1,101,0,100,101,1,3,0,16,1,4,100,4,3,16,102,100,4,102,4,16,114,102,16,136,138,133,6,133,138,139,6,138,157,133,6,141,6,139,8,157,6,9,157,8,115,6,141,115,141,117,116,6,115,5,6,116,142,117,141,119,117,142,120,119,142,116,118,5,9,5,118,144,120,142,121,120,144,122,121,144,146,122,144,123,122,146,148,123,146,124,123,148,125,124,148,149,125,148,126,125,149,127,126,149,151,127,149,128,127,151,129,128,151,118,129,151,9,118,151,151,157,9,153,157,151,154,157,153,156,157,154,2,4,1,0,3,2,5,9,7,7,8,6 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *196 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDoor, Model::RootNode + C: "OO",4966979344435667333,0 + + ;Geometry::, Model::Mesh wallDoor + C: "OO",4697440800789178782,4966979344435667333 + + ;Material::wood, Model::Mesh wallDoor + C: "OO",7178,4966979344435667333 + + ;Material::stone, Model::Mesh wallDoor + C: "OO",7184,4966979344435667333 + + ;Model::Mesh door, Model::USING PARENT + C: "OO",4654024774472488648,4966979344435667333 + + ;Geometry::, Model::Mesh door + C: "OO",5681102194479193181,4654024774472488648 + + ;Material::wood, Model::Mesh door + C: "OO",7178,4654024774472488648 + + ;Material::woodDark, Model::Mesh door + C: "OO",7186,4654024774472488648 + + ;Material::stone, Model::Mesh door + C: "OO",7184,4654024774472488648 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoor.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoor.fbx.import new file mode 100644 index 0000000..3d4ef64 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoor.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b0pack70l3vsx" +path="res://.godot/imported/wallDoor.fbx-10f6befa5b30d227cab7a1824d9a5896.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoor.fbx" +dest_files=["res://.godot/imported/wallDoor.fbx-10f6befa5b30d227cab7a1824d9a5896.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayBase.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayBase.fbx new file mode 100644 index 0000000..120a88b --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayBase.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 781 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDoorwayBase.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDoorwayBase.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4751335016647480553, "Model::wallDoorwayBase", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4784418576302470788, "Geometry::", "Mesh" { + Vertices: *468 { + a: 5,10,4,5,0,4,5,10,5,5,0,5,5,-1.639515E-18,-3,5,10,-3,4.75,0,-3,4.75,10,-3,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4,0,-3,4,10,-3,4,0,-2,4,10,-2,5,10,2,5,-1.639515E-18,2,5,10,3,5,-1.639515E-18,3,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,-1.639515E-18,-3,4.75,0,-3,5,-1.639515E-18,-2,4,0,-2,4.25,0,-3,4,0,-3,5,0,5,4,0,5,5,10,5,4,10,5,5,10,3,4.75,10,3,5,10,2,4,10,2,4.25,10,3,4,10,3,5,-1.639515E-18,2,5,10,2,4,0,2,4,10,2,5,-1.639515E-18,3,5,-1.639515E-18,2,4.75,0,3,4,0,2,4.25,0,3,4,0,3,5,-1.639515E-18,3,4.75,0,3,5,10,3,4.75,10,3,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4.25,0,3,4,0,3,4.25,10,3,4,10,3,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,4,4,10,4,4,0,5,4,10,5,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4,0,2,4,10,2,4,0,3,4,10,3,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4,0,-3,4.25,0,-3,4,10,-3,4.25,10,-3,5,10,-3,5,10,-2,4.75,10,-3,4,10,-2,4.25,10,-3,4,10,-3,5,-1.639515E-18,-2,4,0,-2,5,10,-2,4,10,-2,5,10,-3,5,-1.639515E-18,-3,5,10,-2,5,-1.639515E-18,-2,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,10,-3,4.75,10,-4,4.75,0,-4,4.75,10,-3,4.75,0,-3,4.25,0,3,4.25,10,3,4.25,0,4,4.25,10,4,4.75,10,3,4.75,0,3,4.75,10,4,4.75,0,4,4.75,0,3,4.25,0,3,4.75,10,3,4.25,10,3,4.75,10,3,4.25,0,3,4.25,0,-3,4.75,0,-3,4.25,10,-3,4.75,10,-3,4.25,10,-3,4.75,0,-3 + } + PolygonVertexIndex: *276 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,47,-50,51,50,-50,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,60,-60,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,69,-69,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,95,-95,97,96,-95,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,117,-117,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,11,12,-69,70,68,-13,47,50,-25,26,24,-51,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,95,96,-117,118,116,-97,57,60,-35,36,34,-61,144,146,-146,147,149,-149,150,152,-152,153,155,-155 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *828 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *312 { + a: -15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-19.68504,-6.454785E-18,-19.68504,39.37008,-18.70079,0,-18.70079,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-11.81102,0,-11.81102,39.37008,-7.874016,0,-7.874016,39.37008,-7.874016,39.37008,-7.874016,-6.454785E-18,-11.81102,39.37008,-11.81102,-6.454785E-18,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,-11.81102,18.70079,-11.81102,19.68504,-7.874016,15.74803,-7.874016,16.73228,-11.81102,15.74803,-11.81102,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,11.81102,-18.70079,11.81102,-19.68504,7.874016,-15.74803,7.874016,-16.73228,11.81102,-15.74803,11.81102,-19.68504,-6.454785E-18,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,11.81102,19.68504,7.874016,18.70079,11.81102,15.74803,7.874016,16.73228,11.81102,15.74803,11.81102,19.68504,-6.454785E-18,18.70079,0,19.68504,39.37008,18.70079,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,7.874016,0,7.874016,39.37008,11.81102,0,11.81102,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-19.68504,-11.81102,-19.68504,-7.874016,-18.70079,-11.81102,-15.74803,-7.874016,-16.73228,-11.81102,-15.74803,-11.81102,19.68504,-6.454785E-18,15.74803,0,19.68504,39.37008,15.74803,39.37008,11.81102,39.37008,11.81102,-6.454785E-18,7.874016,39.37008,7.874016,-6.454785E-18,-15.74803,0,-15.74803,39.37008,-11.81102,0,-11.81102,39.37008,15.74803,39.37008,15.74803,0,11.81102,39.37008,11.81102,0,11.81102,0,11.81102,39.37008,15.74803,0,15.74803,39.37008,-11.81102,39.37008,-11.81102,0,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-15.74803,39.37008,-16.73228,0,-16.73228,39.37008,-15.74803,39.37008,-16.73228,0,7.874016,-6.454785E-18,7.874016,39.37008,11.81102,-6.454785E-18,7.874016,-6.454785E-18,7.874016,39.37008,11.81102,-6.454785E-18 + } + UVIndex: *276 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,47,49,51,50,49,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,60,59,62,64,63,65,63,64,66,68,67,69,67,68,70,69,68,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,95,94,97,96,94,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,117,116,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,11,12,68,70,68,12,47,50,24,26,24,50,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,95,96,116,118,116,96,57,60,34,36,34,60,144,146,145,147,149,148,150,152,151,153,155,154 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *92 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDoorwayBase, Model::RootNode + C: "OO",4751335016647480553,0 + + ;Geometry::, Model::Mesh wallDoorwayBase + C: "OO",4784418576302470788,4751335016647480553 + + ;Material::wood, Model::Mesh wallDoorwayBase + C: "OO",7178,4751335016647480553 + + ;Material::stone, Model::Mesh wallDoorwayBase + C: "OO",7184,4751335016647480553 + + ;Material::_defaultMat, Model::Mesh wallDoorwayBase + C: "OO",7176,4751335016647480553 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayBase.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayBase.fbx.import new file mode 100644 index 0000000..71d5265 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayBase.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://edfd2x1y5jlx" +path="res://.godot/imported/wallDoorwayBase.fbx-ff51a4eb143fb17e99be9e0ff9d6ac0b.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayBase.fbx" +dest_files=["res://.godot/imported/wallDoorwayBase.fbx-ff51a4eb143fb17e99be9e0ff9d6ac0b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayRound.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayRound.fbx new file mode 100644 index 0000000..a2180b6 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayRound.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 825 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDoorwayRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDoorwayRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4970888491123524215, "Model::wallDoorwayRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5538556151605148974, "Geometry::", "Mesh" { + Vertices: *1674 { + a: 5,0,5,4,0,5,5,10,5,4,10,5,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,10,4,5,0,4,5,10,5,5,0,5,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,0,4,4,10,4,4,0,5,4,10,5,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,1.619236E-16,-2,5,1.619236E-16,-3,4,-1.07146E-16,-2,4.75,0,-3,4.25,0,-3,4,-1.073297E-16,-3,4.75,0,3,4.75,0,4,4.75,5.5,3,4.75,10,4,4.75,5.83919,2.864484,4.75,6.16748,2.704364,4.75,6.483092,2.520508,4.75,6.78431,2.313914,4.75,7.069501,2.085705,4.75,7.337117,1.837117,4.75,7.585704,1.569502,4.75,7.813914,1.284311,4.75,8.020508,0.9830917,4.75,8.204364,0.6674802,4.75,8.364485,0.3391889,4.75,8.5,-7.219114E-15,4.75,10,-4,4.75,8.364485,-0.3391889,4.75,8.204364,-0.6674802,4.75,8.020508,-0.9830917,4.75,7.813914,-1.284311,4.75,7.585704,-1.569502,4.75,7.337117,-1.837117,4.75,7.069501,-2.085705,4.75,6.78431,-2.313914,4.75,6.483092,-2.520508,4.75,6.16748,-2.704364,4.75,5.83919,-2.864484,4.75,5.5,-3,4.75,0,-4,4.75,0,-3,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,5.5,-3,4.25,5.83919,-2.864484,4.25,6.16748,-2.704364,4.25,6.483092,-2.520508,4.25,6.78431,-2.313914,4.25,7.069501,-2.085705,4.25,7.337117,-1.837117,4.25,7.585704,-1.569502,4.25,7.813914,-1.284311,4.25,8.020508,-0.9830917,4.25,8.204364,-0.6674802,4.25,8.364485,-0.3391889,4.25,8.5,-7.219114E-15,4.25,10,4,4.25,8.364485,0.3391889,4.25,8.204364,0.6674802,4.25,8.020508,0.9830917,4.25,7.813914,1.284311,4.25,7.585704,1.569502,4.25,7.337117,1.837117,4.25,7.069501,2.085705,4.25,6.78431,2.313914,4.25,6.483092,2.520508,4.25,6.16748,2.704364,4.25,5.83919,2.864484,4.25,5.5,3,4.25,0,4,4.25,0,3,4.75,0,3,4.25,0,3,4,-1.07146E-16,2,4,-1.073297E-16,3,5,1.619236E-16,2,5,1.619236E-16,3,4,5.726126,1.909656,5,5.726126,1.909656,4,5.944987,1.802909,5,5.944987,1.802909,5,7.180338,0.6553945,5,7.302909,0.4449868,4,7.180338,0.6553945,4,7.302909,0.4449868,5,5.5,3,5,5.83919,2.864484,5,1.619236E-16,3,5,6.16748,2.704364,5,6.483092,2.520508,5,6.78431,2.313914,5,7.069501,2.085705,5,1.619236E-16,2,5,5.5,2,5,5.726126,1.909656,5,7.337117,1.837117,5,5.944987,1.802909,5,6.155395,1.680339,5,7.585704,1.569502,5,6.356207,1.542609,5,6.546335,1.39047,5,7.813914,1.284311,5,6.724745,1.224745,5,6.89047,1.046335,5,8.020508,0.9830917,5,7.042609,0.8562071,5,8.204364,0.6674802,5,7.180338,0.6553945,5,7.302909,0.4449868,5,8.364485,0.3391889,5,7.409656,0.226126,5,7.5,-7.219114E-15,5,8.5,-7.219114E-15,5,7.409656,-0.226126,5,8.364485,-0.3391889,5,7.302909,-0.4449868,5,7.180338,-0.6553945,5,8.204364,-0.6674802,5,7.042609,-0.8562071,5,8.020508,-0.9830917,5,6.89047,-1.046335,5,6.724745,-1.224745,5,7.813914,-1.284311,5,6.546335,-1.39047,5,6.356207,-1.542609,5,7.585704,-1.569502,5,6.155395,-1.680339,5,5.944987,-1.802909,5,7.337117,-1.837117,5,5.726126,-1.909656,5,5.5,-2,5,7.069501,-2.085705,5,1.619236E-16,-2,5,6.78431,-2.313914,5,6.483092,-2.520508,5,6.16748,-2.704364,5,5.83919,-2.864484,5,1.619236E-16,-3,5,5.5,-3,4.75,6.483092,2.520508,4.75,6.78431,2.313914,5,6.483092,2.520508,5,6.78431,2.313914,4.75,5.5,3,4.75,5.83919,2.864484,5,5.5,3,5,5.83919,2.864484,4.75,7.069501,-2.085705,5,7.069501,-2.085705,4.75,7.337117,-1.837117,5,7.337117,-1.837117,5,8.204364,0.6674802,5,8.020508,0.9830917,4.75,8.204364,0.6674802,4.75,8.020508,0.9830917,4.25,8.364485,-0.3391889,4.25,8.5,-7.219114E-15,4,8.364485,-0.3391889,4,8.5,-7.219114E-15,4.25,8.204364,-0.6674802,4.25,8.364485,-0.3391889,4,8.204364,-0.6674802,4,8.364485,-0.3391889,4,-1.07146E-16,-2,4,5.5,-2,5,1.619236E-16,-2,5,5.5,-2,5,7.302909,-0.4449868,5,7.180338,-0.6553945,4,7.302909,-0.4449868,4,7.180338,-0.6553945,4.25,8.020508,-0.9830917,4.25,8.204364,-0.6674802,4,8.020508,-0.9830917,4,8.204364,-0.6674802,4.25,7.813914,-1.284311,4.25,8.020508,-0.9830917,4,7.813914,-1.284311,4,8.020508,-0.9830917,4.75,6.16748,-2.704364,5,6.16748,-2.704364,4.75,6.483092,-2.520508,5,6.483092,-2.520508,5,8.020508,0.9830917,5,7.813914,1.284311,4.75,8.020508,0.9830917,4.75,7.813914,1.284311,4.75,6.78431,-2.313914,5,6.78431,-2.313914,4.75,7.069501,-2.085705,5,7.069501,-2.085705,4,6.356207,1.542609,5,6.356207,1.542609,4,6.546335,1.39047,5,6.546335,1.39047,4.75,7.069501,2.085705,4.75,7.337117,1.837117,5,7.069501,2.085705,5,7.337117,1.837117,4,-1.07146E-16,2,5,1.619236E-16,2,4,5.5,2,5,5.5,2,4,6.155395,1.680339,5,6.155395,1.680339,4,6.356207,1.542609,5,6.356207,1.542609,4,6.356207,-1.542609,4,6.546335,-1.39047,5,6.356207,-1.542609,5,6.546335,-1.39047,4,5.944987,1.802909,5,5.944987,1.802909,4,6.155395,1.680339,5,6.155395,1.680339,5,7.302909,0.4449868,5,7.409656,0.226126,4,7.302909,0.4449868,4,7.409656,0.226126,5,7.585704,1.569502,5,7.337117,1.837117,4.75,7.585704,1.569502,4.75,7.337117,1.837117,4,5.726126,-1.909656,4,5.944987,-1.802909,5,5.726126,-1.909656,5,5.944987,-1.802909,5,7.409656,0.226126,5,7.5,-7.219114E-15,4,7.409656,0.226126,4,7.5,-7.219114E-15,5,7.042609,-0.8562071,5,6.89047,-1.046335,4,7.042609,-0.8562071,4,6.89047,-1.046335,4.75,6.16748,2.704364,4.75,6.483092,2.520508,5,6.16748,2.704364,5,6.483092,2.520508,5,6.89047,1.046335,5,7.042609,0.8562071,4,6.89047,1.046335,4,7.042609,0.8562071,4,5.5,2,5,5.5,2,4,5.726126,1.909656,5,5.726126,1.909656,4,6.155395,-1.680339,4,6.356207,-1.542609,5,6.155395,-1.680339,5,6.356207,-1.542609,5,6.724745,1.224745,5,6.89047,1.046335,4,6.724745,1.224745,4,6.89047,1.046335,4.75,0,3,4.75,5.5,3,5,1.619236E-16,3,5,5.5,3,4.75,5.83919,-2.864484,5,5.83919,-2.864484,4.75,6.16748,-2.704364,5,6.16748,-2.704364,5,7.813914,1.284311,5,7.585704,1.569502,4.75,7.813914,1.284311,4.75,7.585704,1.569502,5,8.5,-7.219114E-15,5,8.364485,0.3391889,4.75,8.5,-7.219114E-15,4.75,8.364485,0.3391889,4,6.546335,1.39047,5,6.546335,1.39047,4,6.724745,1.224745,5,6.724745,1.224745,5,7.5,-7.219114E-15,5,7.409656,-0.226126,4,7.5,-7.219114E-15,4,7.409656,-0.226126,5,7.409656,-0.226126,5,7.302909,-0.4449868,4,7.409656,-0.226126,4,7.302909,-0.4449868,5,8.364485,0.3391889,5,8.204364,0.6674802,4.75,8.364485,0.3391889,4.75,8.204364,0.6674802,4.75,6.78431,2.313914,4.75,7.069501,2.085705,5,6.78431,2.313914,5,7.069501,2.085705,4.75,0,-3,5,1.619236E-16,-3,4.75,5.5,-3,5,5.5,-3,4.75,5.83919,2.864484,4.75,6.16748,2.704364,5,5.83919,2.864484,5,6.16748,2.704364,5,6.89047,-1.046335,5,6.724745,-1.224745,4,6.89047,-1.046335,4,6.724745,-1.224745,4.75,5.5,-3,5,5.5,-3,4.75,5.83919,-2.864484,5,5.83919,-2.864484,4.75,6.483092,-2.520508,5,6.483092,-2.520508,4.75,6.78431,-2.313914,5,6.78431,-2.313914,5,7.337117,-1.837117,5,7.585704,-1.569502,4.75,7.337117,-1.837117,4.75,7.585704,-1.569502,5,7.585704,-1.569502,5,7.813914,-1.284311,4.75,7.585704,-1.569502,4.75,7.813914,-1.284311,4,5.944987,-1.802909,4,6.155395,-1.680339,5,5.944987,-1.802909,5,6.155395,-1.680339,5,7.042609,0.8562071,5,7.180338,0.6553945,4,7.042609,0.8562071,4,7.180338,0.6553945,5,8.020508,-0.9830917,5,8.204364,-0.6674802,4.75,8.020508,-0.9830917,4.75,8.204364,-0.6674802,5,8.204364,-0.6674802,5,8.364485,-0.3391889,4.75,8.204364,-0.6674802,4.75,8.364485,-0.3391889,5,8.364485,-0.3391889,5,8.5,-7.219114E-15,4.75,8.364485,-0.3391889,4.75,8.5,-7.219114E-15,4,-1.07146E-16,2,4,5.5,2,4,-1.073297E-16,3,4,7.069501,2.085705,4,5.726126,1.909656,4,6.78431,2.313914,4,7.337117,1.837117,4,5.944987,1.802909,4,6.155395,1.680339,4,6.483092,2.520508,4,6.16748,2.704364,4,5.83919,2.864484,4,5.5,3,4,7.585704,1.569502,4,6.356207,1.542609,4,6.546335,1.39047,4,7.813914,1.284311,4,6.724745,1.224745,4,6.89047,1.046335,4,8.020508,0.9830917,4,7.042609,0.8562071,4,8.204364,0.6674802,4,7.180338,0.6553945,4,7.302909,0.4449868,4,8.364485,0.3391889,4,7.409656,0.226126,4,8.5,-7.219114E-15,4,7.5,-7.219114E-15,4,7.409656,-0.226126,4,8.364485,-0.3391889,4,7.302909,-0.4449868,4,7.180338,-0.6553945,4,8.204364,-0.6674802,4,7.042609,-0.8562071,4,8.020508,-0.9830917,4,6.89047,-1.046335,4,6.724745,-1.224745,4,7.813914,-1.284311,4,6.546335,-1.39047,4,6.356207,-1.542609,4,7.585704,-1.569502,4,6.155395,-1.680339,4,5.944987,-1.802909,4,7.337117,-1.837117,4,5.726126,-1.909656,4,5.5,-2,4,7.069501,-2.085705,4,-1.07146E-16,-2,4,6.78431,-2.313914,4,6.483092,-2.520508,4,6.16748,-2.704364,4,5.83919,-2.864484,4,-1.073297E-16,-3,4,5.5,-3,5,7.813914,-1.284311,5,8.020508,-0.9830917,4.75,7.813914,-1.284311,4.75,8.020508,-0.9830917,4.25,8.5,-7.219114E-15,4.25,8.364485,0.3391889,4,8.5,-7.219114E-15,4,8.364485,0.3391889,4,5.5,-2,4,5.726126,-1.909656,5,5.5,-2,5,5.726126,-1.909656,5,7.180338,-0.6553945,5,7.042609,-0.8562071,4,7.180338,-0.6553945,4,7.042609,-0.8562071,4,6.546335,-1.39047,4,6.724745,-1.224745,5,6.546335,-1.39047,5,6.724745,-1.224745,4,6.78431,-2.313914,4.25,6.78431,-2.313914,4,7.069501,-2.085705,4.25,7.069501,-2.085705,4,5.5,-3,4.25,5.5,-3,4,5.83919,-2.864484,4.25,5.83919,-2.864484,4.25,5.83919,2.864484,4,5.83919,2.864484,4.25,6.16748,2.704364,4,6.16748,2.704364,4.25,6.16748,2.704364,4,6.16748,2.704364,4.25,6.483092,2.520508,4,6.483092,2.520508,4.25,7.585704,-1.569502,4.25,7.813914,-1.284311,4,7.585704,-1.569502,4,7.813914,-1.284311,4,7.069501,-2.085705,4.25,7.069501,-2.085705,4,7.337117,-1.837117,4.25,7.337117,-1.837117,4.25,6.78431,2.313914,4,6.78431,2.313914,4.25,7.069501,2.085705,4,7.069501,2.085705,4,-1.073297E-16,-3,4.25,0,-3,4,5.5,-3,4.25,5.5,-3,4.25,7.337117,-1.837117,4.25,7.585704,-1.569502,4,7.337117,-1.837117,4,7.585704,-1.569502,4.25,8.020508,0.9830917,4.25,7.813914,1.284311,4,8.020508,0.9830917,4,7.813914,1.284311,4.25,5.5,3,4,5.5,3,4.25,5.83919,2.864484,4,5.83919,2.864484,4.25,6.483092,2.520508,4,6.483092,2.520508,4.25,6.78431,2.313914,4,6.78431,2.313914,4.25,7.813914,1.284311,4.25,7.585704,1.569502,4,7.813914,1.284311,4,7.585704,1.569502,4,6.483092,-2.520508,4.25,6.483092,-2.520508,4,6.78431,-2.313914,4.25,6.78431,-2.313914,4.25,8.204364,0.6674802,4.25,8.020508,0.9830917,4,8.204364,0.6674802,4,8.020508,0.9830917,4.25,8.364485,0.3391889,4.25,8.204364,0.6674802,4,8.364485,0.3391889,4,8.204364,0.6674802,4,5.83919,-2.864484,4.25,5.83919,-2.864484,4,6.16748,-2.704364,4.25,6.16748,-2.704364,4,6.16748,-2.704364,4.25,6.16748,-2.704364,4,6.483092,-2.520508,4.25,6.483092,-2.520508,4.25,7.585704,1.569502,4.25,7.337117,1.837117,4,7.585704,1.569502,4,7.337117,1.837117,4,-1.073297E-16,3,4,5.5,3,4.25,0,3,4.25,5.5,3,4.25,7.069501,2.085705,4,7.069501,2.085705,4.25,7.337117,1.837117,4,7.337117,1.837117 + } + PolygonVertexIndex: *1104 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,21,-21,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,48,-47,50,52,-52,53,51,-53,54,53,-53,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,47,48,-53,54,52,-49,64,66,-66,67,65,-67,20,67,-67,68,20,-67,69,68,-67,68,22,-21,70,72,-72,73,71,-73,72,74,-74,74,75,-74,75,76,-74,76,77,-74,77,78,-74,78,79,-74,79,80,-74,80,81,-74,81,82,-74,82,83,-74,83,84,-74,84,85,-74,73,85,-87,85,87,-87,87,88,-87,88,89,-87,89,90,-87,90,91,-87,91,92,-87,92,93,-87,93,94,-87,94,95,-87,95,96,-87,96,97,-87,97,98,-87,99,86,-99,98,100,-100,101,103,-103,104,102,-104,104,105,-103,105,106,-103,106,107,-103,107,108,-103,108,109,-103,109,110,-103,110,111,-103,111,112,-103,112,113,-103,113,114,-103,114,115,-103,115,116,-103,117,102,-117,118,117,-117,119,117,-119,120,117,-120,121,117,-121,122,117,-122,123,117,-123,124,117,-124,125,117,-125,126,117,-126,127,117,-127,128,117,-128,129,117,-129,130,117,-130,131,130,-130,11,12,-133,12,133,-133,133,134,-133,135,134,-134,134,136,-133,137,132,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,147,148,-150,149,148,-151,150,148,-152,151,148,-153,148,153,-153,153,154,-153,154,155,-153,152,155,-157,155,157,-157,157,158,-157,156,158,-160,158,160,-160,160,161,-160,159,161,-163,161,163,-163,163,164,-163,162,164,-166,164,166,-166,165,166,-168,166,168,-168,168,169,-168,167,169,-171,169,171,-171,171,172,-171,170,172,-174,172,174,-174,173,174,-176,174,176,-176,176,177,-176,175,177,-179,177,179,-179,178,179,-181,179,181,-181,181,182,-181,180,182,-184,182,184,-184,184,185,-184,183,185,-187,185,187,-187,187,188,-187,186,188,-190,188,190,-190,190,191,-190,192,189,-192,191,193,-193,192,193,-195,194,193,-196,195,193,-197,196,193,-198,193,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,401,403,-405,405,403,-403,403,406,-405,404,406,-408,407,406,-409,409,405,-403,410,409,-403,411,410,-403,412,411,-403,406,413,-409,408,413,-415,414,413,-416,413,416,-416,415,416,-418,417,416,-419,416,419,-419,418,419,-421,419,421,-421,420,421,-423,422,421,-424,421,424,-424,423,424,-426,424,426,-426,425,426,-428,427,426,-429,426,429,-429,428,429,-431,430,429,-432,429,432,-432,431,432,-434,432,434,-434,433,434,-436,435,434,-437,434,437,-437,436,437,-439,438,437,-440,437,440,-440,439,440,-442,441,440,-443,440,443,-443,442,443,-445,444,443,-446,443,446,-446,445,446,-448,446,448,-448,448,449,-448,449,450,-448,450,451,-448,447,451,-453,453,452,-452,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,465,463,-465,466,468,-468,469,467,-469,470,472,-472,473,471,-473,474,476,-476,477,475,-477,478,480,-480,481,479,-481,482,484,-484,485,483,-485,486,488,-488,489,487,-489,490,492,-492,493,491,-493,494,496,-496,497,495,-497,498,500,-500,501,499,-501,502,504,-504,505,503,-505,506,508,-508,509,507,-509,510,512,-512,513,511,-513,514,516,-516,517,515,-517,518,520,-520,521,519,-521,522,524,-524,525,523,-525,526,528,-528,529,527,-529,530,532,-532,533,531,-533,534,536,-536,537,535,-537,538,540,-540,541,539,-541,542,544,-544,545,543,-545,546,548,-548,549,547,-549,550,552,-552,553,551,-553,554,556,-556,557,555,-557 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3312 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4049695,-0.9143302,0,-0.471187,-0.8820333,0,-0.4049695,-0.9143302,0,-0.471187,-0.8820333,0,-0.4049695,-0.9143302,0,-0.471187,-0.8820333,0,-0.844949,-0.534847,0,-0.844949,-0.534847,0,-0.8820333,-0.471187,0,-0.8820333,-0.471187,0,-0.8820333,-0.471187,0,-0.844949,-0.534847,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.534847,0.844949,0,0.534847,0.844949,0,0.5956038,0.8032784,0,0.5956038,0.8032784,0,0.5956038,0.8032784,0,0.534847,0.844949,0,0.3710136,0.9286274,0,0.3710136,0.9286274,0,0.4049695,0.9143302,0,0.4049695,0.9143302,0,0.4049695,0.9143302,0,0.3710136,0.9286274,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.844949,0.534847,0,0.844949,0.534847,0,0.844949,0.534847,0,0.8820333,0.471187,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.9286274,-0.3710136,0,0.9286274,-0.3710136,0,0.9286274,-0.3710136,0,0.9143302,-0.4049695,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.8820333,-0.471187,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8820333,0.471187,0,-0.8820333,0.471187,0,-0.844949,0.534847,0,-0.844949,0.534847,0,-0.844949,0.534847,0,-0.8820333,0.471187,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.844949,-0.534847,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.8032784,-0.5956038,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.844949,0.534847,0,0.844949,0.534847,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.844949,0.534847,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,-0.5956038,-0.8032784,0,-0.6531278,-0.7572476,0,-0.5956038,-0.8032784,0,-0.6531278,-0.7572476,0,-0.5956038,-0.8032784,0,-0.6531278,-0.7572476,0,0.6531278,0.7572476,0,0.6531278,0.7572476,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.6531278,0.7572476,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.534847,-0.844949,0,-0.5956038,-0.8032784,0,-0.534847,-0.844949,0,-0.5956038,-0.8032784,0,-0.534847,-0.844949,0,-0.5956038,-0.8032784,0,-0.5956038,0.8032784,0,-0.5956038,0.8032784,0,-0.6531278,0.7572476,0,-0.6531278,0.7572476,0,-0.6531278,0.7572476,0,-0.5956038,0.8032784,0,-0.471187,-0.8820333,0,-0.534847,-0.844949,0,-0.471187,-0.8820333,0,-0.534847,-0.844949,0,-0.471187,-0.8820333,0,-0.534847,-0.844949,0,-0.8820333,-0.471187,0,-0.8820333,-0.471187,0,-0.9143302,-0.4049695,0,-0.9143302,-0.4049695,0,-0.9143302,-0.4049695,0,-0.8820333,-0.471187,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7572476,0.6531278,0,-0.4049695,0.9143302,0,-0.4049695,0.9143302,0,-0.471187,0.8820333,0,-0.471187,0.8820333,0,-0.471187,0.8820333,0,-0.4049695,0.9143302,0,-0.9143302,-0.4049695,0,-0.9143302,-0.4049695,0,-0.9286274,-0.3710136,0,-0.9286274,-0.3710136,0,-0.9286274,-0.3710136,0,-0.9143302,-0.4049695,0,-0.8032784,0.5956038,0,-0.8032784,0.5956038,0,-0.7572476,0.6531278,0,-0.7572476,0.6531278,0,-0.7572476,0.6531278,0,-0.8032784,0.5956038,0,0.471187,0.8820333,0,0.471187,0.8820333,0,0.534847,0.844949,0,0.534847,0.844949,0,0.534847,0.844949,0,0.471187,0.8820333,0,-0.7572476,-0.6531278,0,-0.7572476,-0.6531278,0,-0.8032784,-0.5956038,0,-0.8032784,-0.5956038,0,-0.8032784,-0.5956038,0,-0.7572476,-0.6531278,0,-0.3710136,-0.9286274,0,-0.4049695,-0.9143302,0,-0.3710136,-0.9286274,0,-0.4049695,-0.9143302,0,-0.3710136,-0.9286274,0,-0.4049695,-0.9143302,0,-0.534847,0.844949,0,-0.534847,0.844949,0,-0.5956038,0.8032784,0,-0.5956038,0.8032784,0,-0.5956038,0.8032784,0,-0.534847,0.844949,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7572476,-0.6531278,0,-0.7572476,-0.6531278,0,-0.7572476,-0.6531278,0,-0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.8032784,0.5956038,0,0.9286274,0.3710136,0,0.9286274,0.3710136,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.9286274,0.3710136,0,-0.6531278,-0.7572476,0,-0.7071068,-0.7071068,0,-0.6531278,-0.7572476,0,-0.7071068,-0.7071068,0,-0.6531278,-0.7572476,0,-0.7071068,-0.7071068,0,-0.9286274,0.3710136,0,-0.9286274,0.3710136,0,-0.9143302,0.4049695,0,-0.9143302,0.4049695,0,-0.9143302,0.4049695,0,-0.9286274,0.3710136,0,-0.9143302,0.4049695,0,-0.9143302,0.4049695,0,-0.8820333,0.471187,0,-0.8820333,0.471187,0,-0.8820333,0.471187,0,-0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.9143302,0.4049695,0,0.5956038,0.8032784,0,0.5956038,0.8032784,0,0.6531278,0.7572476,0,0.6531278,0.7572476,0,0.6531278,0.7572476,0,0.5956038,0.8032784,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4049695,0.9143302,0,0.4049695,0.9143302,0,0.471187,0.8820333,0,0.471187,0.8820333,0,0.471187,0.8820333,0,0.4049695,0.9143302,0,-0.7572476,0.6531278,0,-0.7572476,0.6531278,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7572476,0.6531278,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.7071068,-0.7071068,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.7572476,-0.6531278,0,-0.471187,0.8820333,0,-0.471187,0.8820333,0,-0.534847,0.844949,0,-0.534847,0.844949,0,-0.534847,0.844949,0,-0.471187,0.8820333,0,-0.8032784,-0.5956038,0,-0.8032784,-0.5956038,0,-0.844949,-0.534847,0,-0.844949,-0.534847,0,-0.844949,-0.534847,0,-0.8032784,-0.5956038,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.844949,-0.534847,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.8820333,-0.471187,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.9286274,-0.3710136,0,0.9286274,-0.3710136,0,0.9286274,-0.3710136,0,0.9143302,-0.4049695,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.8032784,-0.5956038,0,0.9286274,0.3710136,0,0.9286274,0.3710136,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.9286274,0.3710136,0,-0.3710136,0.9286274,0,-0.3710136,0.9286274,0,-0.4049695,0.9143302,0,-0.4049695,0.9143302,0,-0.4049695,0.9143302,0,-0.3710136,0.9286274,0,-0.844949,0.534847,0,-0.844949,0.534847,0,-0.8032784,0.5956038,0,-0.8032784,0.5956038,0,-0.8032784,0.5956038,0,-0.844949,0.534847,0,-0.6531278,0.7572476,0,-0.6531278,0.7572476,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.6531278,0.7572476,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.4049695,0.9143302,0,0.471187,0.8820333,0,0.4049695,0.9143302,0,0.471187,0.8820333,0,0.4049695,0.9143302,0,0.471187,0.8820333,0,0.471187,0.8820333,0,0.534847,0.844949,0,0.471187,0.8820333,0,0.534847,0.844949,0,0.471187,0.8820333,0,0.534847,0.844949,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.7572476,-0.6531278,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.5956038,0.8032784,0,0.6531278,0.7572476,0,0.5956038,0.8032784,0,0.6531278,0.7572476,0,0.5956038,0.8032784,0,0.6531278,0.7572476,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.7071068,-0.7071068,0,0.844949,0.534847,0,0.844949,0.534847,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.844949,0.534847,0,0.3710136,0.9286274,0,0.4049695,0.9143302,0,0.3710136,0.9286274,0,0.4049695,0.9143302,0,0.3710136,0.9286274,0,0.4049695,0.9143302,0,0.534847,0.844949,0,0.5956038,0.8032784,0,0.534847,0.844949,0,0.5956038,0.8032784,0,0.534847,0.844949,0,0.5956038,0.8032784,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.8032784,0.5956038,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.844949,0.534847,0,0.844949,0.534847,0,0.844949,0.534847,0,0.8820333,0.471187,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.9143302,0.4049695,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7572476,0.6531278,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6531278,0.7572476,0,0.7071068,0.7071068,0,0.6531278,0.7572476,0,0.7071068,0.7071068,0,0.6531278,0.7572476,0,0.7071068,0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1116 { + a: 19.68504,7.105427E-15,15.74803,7.105427E-15,19.68504,39.37008,15.74803,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,19.68504,-7.874016,19.68504,-11.81102,15.74803,-7.874016,18.70079,-11.81102,16.73228,-11.81102,15.74803,-11.81102,-11.81102,-1.19784E-14,-15.74803,-1.19784E-14,-11.81102,21.65354,-15.74803,39.37008,-11.2775,22.98893,-10.6471,24.28142,-9.923259,25.52398,-9.109899,26.70988,-8.211435,27.83268,-7.232745,28.88629,-6.179141,29.86498,-5.056341,30.76344,-3.87044,31.5768,-2.627875,32.30064,-1.33539,32.93104,2.842171E-14,33.46457,15.74803,39.37008,1.33539,32.93104,2.627875,32.30064,3.87044,31.5768,5.056341,30.76344,6.179141,29.86498,7.232745,28.88629,8.211435,27.83268,9.109899,26.70988,9.923259,25.52398,10.6471,24.28142,11.2775,22.98893,11.81102,21.65354,15.74803,-1.19784E-14,11.81102,-1.19784E-14,-15.74803,-5.638651E-15,-15.74803,39.37008,-11.81102,-5.638651E-15,-11.81102,21.65354,-11.2775,22.98893,-10.6471,24.28142,-9.923259,25.52398,-9.109899,26.70988,-8.211435,27.83268,-7.232745,28.88629,-6.179141,29.86498,-5.056341,30.76344,-3.87044,31.5768,-2.627875,32.30064,-1.33539,32.93104,-2.842171E-14,33.46457,15.74803,39.37008,1.33539,32.93104,2.627875,32.30064,3.87044,31.5768,5.056341,30.76344,6.179141,29.86498,7.232745,28.88629,8.211435,27.83268,9.109899,26.70988,9.923259,25.52398,10.6471,24.28142,11.2775,22.98893,11.81102,21.65354,15.74803,-5.638651E-15,11.81102,-5.638651E-15,18.70079,11.81102,16.73228,11.81102,15.74803,7.874016,15.74803,11.81102,19.68504,7.874016,19.68504,11.81102,-15.74803,16.96633,-19.68504,16.96633,-15.74803,17.92501,-19.68504,17.92501,-19.68504,11.9999,-19.68504,12.95858,-15.74803,11.9999,-15.74803,12.95858,-11.81102,21.65354,-11.2775,22.98893,-11.81102,-1.21124E-14,-10.6471,24.28142,-9.923259,25.52398,-9.109899,26.70988,-8.211435,27.83268,-7.874016,-1.21124E-14,-7.874016,21.65354,-7.518331,22.5438,-7.232745,28.88629,-7.098068,23.40546,-6.615506,24.23384,-6.179141,29.86498,-6.073266,25.02444,-5.47429,25.77297,-5.056341,30.76344,-4.82183,26.47537,-4.119427,27.12783,-3.87044,31.5768,-3.370894,27.72681,-2.627875,32.30064,-2.580293,28.26905,-1.751917,28.75161,-1.33539,32.93104,-0.8902597,29.17188,2.842171E-14,29.52756,2.842171E-14,33.46457,0.8902597,29.17188,1.33539,32.93104,1.751917,28.75161,2.580293,28.26905,2.627875,32.30064,3.370894,27.72681,3.87044,31.5768,4.119427,27.12783,4.82183,26.47537,5.056341,30.76344,5.47429,25.77297,6.073266,25.02444,6.179141,29.86498,6.615506,24.23384,7.098068,23.40546,7.232745,28.88629,7.518331,22.5438,7.874016,21.65354,8.211435,27.83268,7.874016,-1.21124E-14,9.109899,26.70988,9.923259,25.52398,10.6471,24.28142,11.2775,22.98893,11.81102,-1.21124E-14,11.81102,21.65354,18.70079,15.43626,18.70079,16.87429,19.68504,15.43626,19.68504,16.87429,18.70079,15.72602,18.70079,17.16405,19.68504,15.72602,19.68504,17.16405,-18.70079,14.80377,-19.68504,14.80377,-18.70079,16.24179,-19.68504,16.24179,19.68504,13.98812,19.68504,12.55009,18.70079,13.98812,18.70079,12.55009,-16.73228,10.97778,-16.73228,12.41581,-15.74803,10.97778,-15.74803,12.41581,-16.73228,11.79791,-16.73228,13.23593,-15.74803,11.79791,-15.74803,13.23593,15.74803,-4.218347E-16,15.74803,21.65354,19.68504,6.374945E-16,19.68504,21.65354,19.68504,12.95858,19.68504,11.9999,15.74803,12.95858,15.74803,11.9999,-16.73228,12.55009,-16.73228,13.98812,-15.74803,12.55009,-15.74803,13.98812,-16.73228,13.23026,-16.73228,14.66828,-15.74803,13.23026,-15.74803,14.66828,-18.70079,15.62172,-19.68504,15.62172,-18.70079,17.05975,-19.68504,17.05975,19.68504,14.66828,19.68504,13.23026,18.70079,14.66828,18.70079,13.23026,-18.70079,15.16312,-19.68504,15.16312,-18.70079,16.60114,-19.68504,16.60114,-15.74803,15.74439,-19.68504,15.74439,-15.74803,16.70307,-19.68504,16.70307,18.70079,14.80377,18.70079,16.24179,19.68504,14.80377,19.68504,16.24179,-15.74803,-4.218347E-16,-19.68504,6.374945E-16,-15.74803,21.65354,-19.68504,21.65354,-15.74803,16.24321,-19.68504,16.24321,-15.74803,17.20189,-19.68504,17.20189,15.74803,15.74439,15.74803,16.70307,19.68504,15.74439,19.68504,16.70307,-15.74803,16.65126,-19.68504,16.65126,-15.74803,17.60994,-19.68504,17.60994,-19.68504,11.0294,-19.68504,11.98809,-15.74803,11.0294,-15.74803,11.98809,19.68504,15.79818,19.68504,14.36016,18.70079,15.79818,18.70079,14.36016,15.74803,16.96633,15.74803,17.92501,19.68504,16.96633,19.68504,17.92501,-19.68504,9.996441,-19.68504,10.95512,-15.74803,9.996441,-15.74803,10.95512,19.68504,14.69146,19.68504,13.73278,15.74803,14.69146,15.74803,13.73278,18.70079,15.62172,18.70079,17.05975,19.68504,15.62172,19.68504,17.05975,-19.68504,13.73278,-19.68504,14.69146,-15.74803,13.73278,-15.74803,14.69146,-15.74803,17.18671,-19.68504,17.18671,-15.74803,18.14539,-19.68504,18.14539,15.74803,16.24321,15.74803,17.20189,19.68504,16.24321,19.68504,17.20189,-19.68504,14.48576,-19.68504,15.44444,-15.74803,14.48576,-15.74803,15.44444,18.70079,1.550275E-14,18.70079,21.65354,19.68504,1.614024E-14,19.68504,21.65354,-18.70079,15.71848,-19.68504,15.71848,-18.70079,17.15651,-19.68504,17.15651,19.68504,15.27273,19.68504,13.83471,18.70079,15.27273,18.70079,13.83471,19.68504,12.41581,19.68504,10.97778,18.70079,12.41581,18.70079,10.97778,-15.74803,15.15751,-19.68504,15.15751,-15.74803,16.11619,-19.68504,16.11619,19.68504,10.95512,19.68504,9.996441,15.74803,10.95512,15.74803,9.996441,19.68504,11.98809,19.68504,11.0294,15.74803,11.98809,15.74803,11.0294,19.68504,13.23593,19.68504,11.79791,18.70079,13.23593,18.70079,11.79791,18.70079,15.16312,18.70079,16.60114,19.68504,15.16312,19.68504,16.60114,-18.70079,2.325413E-14,-19.68504,2.389162E-14,-18.70079,21.65354,-19.68504,21.65354,18.70079,15.71848,18.70079,17.15651,19.68504,15.71848,19.68504,17.15651,19.68504,15.44444,19.68504,14.48576,15.74803,15.44444,15.74803,14.48576,-18.70079,15.72602,-19.68504,15.72602,-18.70079,17.16405,-19.68504,17.16405,-18.70079,15.43626,-19.68504,15.43626,-18.70079,16.87429,-19.68504,16.87429,-19.68504,14.36016,-19.68504,15.79818,-18.70079,14.36016,-18.70079,15.79818,-19.68504,13.83471,-19.68504,15.27273,-18.70079,13.83471,-18.70079,15.27273,15.74803,16.65126,15.74803,17.60994,19.68504,16.65126,19.68504,17.60994,-19.68504,12.90265,-19.68504,13.86134,-15.74803,12.90265,-15.74803,13.86134,-19.68504,12.55009,-19.68504,13.98812,-18.70079,12.55009,-18.70079,13.98812,-19.68504,11.79791,-19.68504,13.23593,-18.70079,11.79791,-18.70079,13.23593,-19.68504,10.97778,-19.68504,12.41581,-18.70079,10.97778,-18.70079,12.41581,7.874016,-7.182761E-15,7.874016,21.65354,11.81102,-7.183484E-15,8.211435,27.83268,7.518331,22.5438,9.109899,26.70988,7.232745,28.88629,7.098068,23.40546,6.615506,24.23384,9.923259,25.52398,10.6471,24.28142,11.2775,22.98893,11.81102,21.65354,6.179141,29.86498,6.073266,25.02444,5.47429,25.77297,5.056341,30.76344,4.82183,26.47537,4.119427,27.12783,3.87044,31.5768,3.370894,27.72681,2.627875,32.30064,2.580293,28.26905,1.751917,28.75161,1.33539,32.93104,0.8902597,29.17188,-2.842171E-14,33.46457,-2.842171E-14,29.52756,-0.8902597,29.17188,-1.33539,32.93104,-1.751917,28.75161,-2.580293,28.26905,-2.627875,32.30064,-3.370894,27.72681,-3.87044,31.5768,-4.119427,27.12783,-4.82183,26.47537,-5.056341,30.76344,-5.47429,25.77297,-6.073266,25.02444,-6.179141,29.86498,-6.615506,24.23384,-7.098068,23.40546,-7.232745,28.88629,-7.518331,22.5438,-7.874016,21.65354,-8.211435,27.83268,-7.874016,-7.182761E-15,-9.109899,26.70988,-9.923259,25.52398,-10.6471,24.28142,-11.2775,22.98893,-11.81102,-7.183484E-15,-11.81102,21.65354,-19.68504,13.23026,-19.68504,14.66828,-18.70079,13.23026,-18.70079,14.66828,16.73228,12.41581,16.73228,10.97778,15.74803,12.41581,15.74803,10.97778,15.74803,17.18671,15.74803,18.14539,19.68504,17.18671,19.68504,18.14539,19.68504,13.86134,19.68504,12.90265,15.74803,13.86134,15.74803,12.90265,15.74803,15.15751,15.74803,16.11619,19.68504,15.15751,19.68504,16.11619,-15.74803,15.16312,-16.73228,15.16312,-15.74803,16.60114,-16.73228,16.60114,-15.74803,15.72602,-16.73228,15.72602,-15.74803,17.16405,-16.73228,17.16405,16.73228,15.71848,15.74803,15.71848,16.73228,17.15651,15.74803,17.15651,16.73228,15.62172,15.74803,15.62172,16.73228,17.05975,15.74803,17.05975,-16.73228,13.83471,-16.73228,15.27273,-15.74803,13.83471,-15.74803,15.27273,-15.74803,14.80377,-16.73228,14.80377,-15.74803,16.24179,-16.73228,16.24179,16.73228,15.16312,15.74803,15.16312,16.73228,16.60114,15.74803,16.60114,-15.74803,2.283157E-14,-16.73228,2.325413E-14,-15.74803,21.65354,-16.73228,21.65354,-16.73228,14.36016,-16.73228,15.79818,-15.74803,14.36016,-15.74803,15.79818,16.73228,14.66828,16.73228,13.23026,15.74803,14.66828,15.74803,13.23026,16.73228,15.72602,15.74803,15.72602,16.73228,17.16405,15.74803,17.16405,16.73228,15.43626,15.74803,15.43626,16.73228,16.87429,15.74803,16.87429,16.73228,15.27273,16.73228,13.83471,15.74803,15.27273,15.74803,13.83471,-15.74803,15.43626,-16.73228,15.43626,-15.74803,16.87429,-16.73228,16.87429,16.73228,13.98812,16.73228,12.55009,15.74803,13.98812,15.74803,12.55009,16.73228,13.23593,16.73228,11.79791,15.74803,13.23593,15.74803,11.79791,-15.74803,15.71848,-16.73228,15.71848,-15.74803,17.15651,-16.73228,17.15651,-15.74803,15.62172,-16.73228,15.62172,-15.74803,17.05975,-16.73228,17.05975,16.73228,15.79818,16.73228,14.36016,15.74803,15.79818,15.74803,14.36016,15.74803,1.508019E-14,15.74803,21.65354,16.73228,1.550275E-14,16.73228,21.65354,16.73228,14.80377,15.74803,14.80377,16.73228,16.24179,15.74803,16.24179 + } + UVIndex: *1104 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,16,15,17,15,16,18,20,19,21,19,20,22,21,20,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,48,46,50,52,51,53,51,52,54,53,52,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,47,48,52,54,52,48,64,66,65,67,65,66,20,67,66,68,20,66,69,68,66,68,22,20,70,72,71,73,71,72,72,74,73,74,75,73,75,76,73,76,77,73,77,78,73,78,79,73,79,80,73,80,81,73,81,82,73,82,83,73,83,84,73,84,85,73,73,85,86,85,87,86,87,88,86,88,89,86,89,90,86,90,91,86,91,92,86,92,93,86,93,94,86,94,95,86,95,96,86,96,97,86,97,98,86,99,86,98,98,100,99,101,103,102,104,102,103,104,105,102,105,106,102,106,107,102,107,108,102,108,109,102,109,110,102,110,111,102,111,112,102,112,113,102,113,114,102,114,115,102,115,116,102,117,102,116,118,117,116,119,117,118,120,117,119,121,117,120,122,117,121,123,117,122,124,117,123,125,117,124,126,117,125,127,117,126,128,117,127,129,117,128,130,117,129,131,130,129,11,12,132,12,133,132,133,134,132,135,134,133,134,136,132,137,132,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,147,148,149,149,148,150,150,148,151,151,148,152,148,153,152,153,154,152,154,155,152,152,155,156,155,157,156,157,158,156,156,158,159,158,160,159,160,161,159,159,161,162,161,163,162,163,164,162,162,164,165,164,166,165,165,166,167,166,168,167,168,169,167,167,169,170,169,171,170,171,172,170,170,172,173,172,174,173,173,174,175,174,176,175,176,177,175,175,177,178,177,179,178,178,179,180,179,181,180,181,182,180,180,182,183,182,184,183,184,185,183,183,185,186,185,187,186,187,188,186,186,188,189,188,190,189,190,191,189,192,189,191,191,193,192,192,193,194,194,193,195,195,193,196,196,193,197,193,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,401,403,404,405,403,402,403,406,404,404,406,407,407,406,408,409,405,402,410,409,402,411,410,402,412,411,402,406,413,408,408,413,414,414,413,415,413,416,415,415,416,417,417,416,418,416,419,418,418,419,420,419,421,420,420,421,422,422,421,423,421,424,423,423,424,425,424,426,425,425,426,427,427,426,428,426,429,428,428,429,430,430,429,431,429,432,431,431,432,433,432,434,433,433,434,435,435,434,436,434,437,436,436,437,438,438,437,439,437,440,439,439,440,441,441,440,442,440,443,442,442,443,444,444,443,445,443,446,445,445,446,447,446,448,447,448,449,447,449,450,447,450,451,447,447,451,452,453,452,451,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,465,463,464,466,468,467,469,467,468,470,472,471,473,471,472,474,476,475,477,475,476,478,480,479,481,479,480,482,484,483,485,483,484,486,488,487,489,487,488,490,492,491,493,491,492,494,496,495,497,495,496,498,500,499,501,499,500,502,504,503,505,503,504,506,508,507,509,507,508,510,512,511,513,511,512,514,516,515,517,515,516,518,520,519,521,519,520,522,524,523,525,523,524,526,528,527,529,527,528,530,532,531,533,531,532,534,536,535,537,535,536,538,540,539,541,539,540,542,544,543,545,543,544,546,548,547,549,547,548,550,552,551,553,551,552,554,556,555,557,555,556 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *368 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDoorwayRound, Model::RootNode + C: "OO",4970888491123524215,0 + + ;Geometry::, Model::Mesh wallDoorwayRound + C: "OO",5538556151605148974,4970888491123524215 + + ;Material::wood, Model::Mesh wallDoorwayRound + C: "OO",7178,4970888491123524215 + + ;Material::stone, Model::Mesh wallDoorwayRound + C: "OO",7184,4970888491123524215 + + ;Material::stoneDark, Model::Mesh wallDoorwayRound + C: "OO",7174,4970888491123524215 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayRound.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayRound.fbx.import new file mode 100644 index 0000000..7f27b25 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dfmoeve4nukgb" +path="res://.godot/imported/wallDoorwayRound.fbx-bc909e8b2259000faa433900b3098140.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwayRound.fbx" +dest_files=["res://.godot/imported/wallDoorwayRound.fbx-bc909e8b2259000faa433900b3098140.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquare.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquare.fbx new file mode 100644 index 0000000..ab6c24c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquare.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 891 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDoorwaySquare.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDoorwaySquare.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4724047982501536679, "Model::wallDoorwaySquare", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5280546934260505696, "Geometry::", "Mesh" { + Vertices: *432 { + a: 4.25,0,3,4.25,8.5,3,4.25,0,4,4.25,10,4,4.25,8.5,-3,4.25,10,-4,4.25,0,-3,4.25,0,-4,4.75,0,-3,4.75,0,-4,4.25,0,-3,4.25,0,-4,4.75,0,4,4.75,10,4,4.75,0,3,4.75,8.5,3,4.75,8.5,-3,4.75,10,-4,4.75,0,-4,4.75,0,-3,4.75,10,-4,4.75,10,4,4.25,10,-4,4.25,10,4,4.75,0,4,4.75,0,3,4.25,0,4,4.25,0,3,5,-1.639515E-18,-2,4,0,-2,5,7.5,-2,4,7.5,-2,5,10,4,5,10,5,4,10,5,4,10,4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,8.5,-3,5,8.5,3,4.75,8.5,-3,4.75,8.5,3,5,-1.639515E-18,-3,5,-1.639515E-18,-2,4,0,-2,4,0,-3,5,10,4,5,0,4,5,10,5,5,0,5,4,0,2,4,7.5,2,4,0,3,4,8.5,3,4,7.5,-2,4,8.5,-3,4,0,-2,4,0,-3,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4.25,0,3,4,0,3,4.25,8.5,3,4,8.5,3,5,0,5,5,0,4,4,0,5,4,0,4,4,0,-3,4.25,0,-3,4,8.5,-3,4.25,8.5,-3,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,-1.639515E-18,2,5,7.5,2,4,0,2,4,7.5,2,4.25,8.5,-3,4.25,8.5,3,4,8.5,-3,4,8.5,3,5,0,-4,5,0,-5,4,0,-5,4,0,-4,5,-1.639515E-18,3,5,-1.639515E-18,2,4,0,2,4,0,3,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4,4,10,4,4,0,5,4,10,5,5,7.5,2,5,7.5,-2,4,7.5,2,4,7.5,-2,5,10,-5,5,10,-4,4,10,-5,4,10,-4,5,-1.639515E-18,3,5,8.5,3,5,-1.639515E-18,2,5,7.5,2,5,7.5,-2,5,8.5,-3,5,-1.639515E-18,-3,5,-1.639515E-18,-2,5,-1.639515E-18,-3,5,8.5,-3,4.75,0,-3,4.75,8.5,-3,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,-1.639515E-18,3,4.75,0,3,5,8.5,3,4.75,8.5,3,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5 + } + PolygonVertexIndex: *276 { + a: 0,2,-2,2,3,-2,1,3,-5,3,5,-5,4,5,-7,7,6,-6,8,10,-10,11,9,-11,12,14,-14,14,15,-14,15,16,-14,13,16,-18,18,17,-17,16,19,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,21,-34,34,33,-22,23,34,-22,35,34,-24,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,45,-9,46,8,-46,10,8,-47,47,10,-47,48,50,-50,51,49,-51,52,54,-54,54,55,-54,53,55,-57,55,57,-57,56,57,-59,59,58,-58,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,24,73,-75,26,24,-75,75,26,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,9,-94,94,93,-10,11,94,-10,95,94,-12,96,25,-98,98,97,-26,27,98,-26,99,98,-28,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,20,113,-115,22,20,-115,115,22,-115,116,118,-118,118,119,-118,119,120,-118,117,120,-122,122,121,-121,120,123,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *828 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *288 { + a: 11.81102,0,11.81102,33.46457,15.74803,0,15.74803,39.37008,-11.81102,33.46457,-15.74803,39.37008,-11.81102,0,-15.74803,0,18.70079,-11.81102,18.70079,-15.74803,16.73228,-11.81102,16.73228,-15.74803,-15.74803,4.163336E-16,-15.74803,39.37008,-11.81102,4.163336E-16,-11.81102,33.46457,11.81102,33.46457,15.74803,39.37008,15.74803,4.163336E-16,11.81102,4.163336E-16,-18.70079,-15.74803,-18.70079,15.74803,-16.73228,-15.74803,-16.73228,15.74803,18.70079,15.74803,18.70079,11.81102,16.73228,15.74803,16.73228,11.81102,19.68504,-6.454785E-18,15.74803,0,19.68504,29.52756,15.74803,29.52756,-19.68504,15.74803,-19.68504,19.68504,-15.74803,19.68504,-15.74803,15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-19.68504,-11.81102,-19.68504,11.81102,-18.70079,-11.81102,-18.70079,11.81102,19.68504,-11.81102,19.68504,-7.874016,15.74803,-7.874016,15.74803,-11.81102,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,7.874016,0,7.874016,29.52756,11.81102,0,11.81102,33.46457,-7.874016,29.52756,-11.81102,33.46457,-7.874016,0,-11.81102,0,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,16.73228,0,15.74803,0,16.73228,33.46457,15.74803,33.46457,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,0,-16.73228,0,-15.74803,33.46457,-16.73228,33.46457,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-19.68504,-6.454785E-18,-19.68504,29.52756,-15.74803,0,-15.74803,29.52756,-16.73228,-11.81102,-16.73228,11.81102,-15.74803,-11.81102,-15.74803,11.81102,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,19.68504,11.81102,19.68504,7.874016,15.74803,7.874016,15.74803,11.81102,19.68504,7.105427E-15,15.74803,7.105427E-15,19.68504,39.37008,15.74803,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,7.874016,19.68504,-7.874016,15.74803,7.874016,15.74803,-7.874016,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,-11.81102,2.689494E-16,-11.81102,33.46457,-7.874016,2.689494E-16,-7.874016,29.52756,7.874016,29.52756,11.81102,33.46457,11.81102,2.689494E-16,7.874016,2.689494E-16,-19.68504,-6.454785E-18,-19.68504,33.46457,-18.70079,0,-18.70079,33.46457,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,-6.454785E-18,18.70079,0,19.68504,33.46457,18.70079,33.46457,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008 + } + UVIndex: *276 { + a: 0,2,1,2,3,1,1,3,4,3,5,4,4,5,6,7,6,5,8,10,9,11,9,10,12,14,13,14,15,13,15,16,13,13,16,17,18,17,16,16,19,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,21,33,34,33,21,23,34,21,35,34,23,36,38,37,39,37,38,40,42,41,43,41,42,44,45,8,46,8,45,10,8,46,47,10,46,48,50,49,51,49,50,52,54,53,54,55,53,53,55,56,55,57,56,56,57,58,59,58,57,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,24,73,74,26,24,74,75,26,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,9,93,94,93,9,11,94,9,95,94,11,96,25,97,98,97,25,27,98,25,99,98,27,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,20,113,114,22,20,114,115,22,114,116,118,117,118,119,117,119,120,117,117,120,121,122,121,120,120,123,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *92 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDoorwaySquare, Model::RootNode + C: "OO",4724047982501536679,0 + + ;Geometry::, Model::Mesh wallDoorwaySquare + C: "OO",5280546934260505696,4724047982501536679 + + ;Material::stone, Model::Mesh wallDoorwaySquare + C: "OO",7184,4724047982501536679 + + ;Material::wood, Model::Mesh wallDoorwaySquare + C: "OO",7178,4724047982501536679 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquare.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquare.fbx.import new file mode 100644 index 0000000..cf1a3b3 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquare.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://mfy18kp8i7qd" +path="res://.godot/imported/wallDoorwaySquare.fbx-332634440d4cba1bb3df501d4163fc59.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquare.fbx" +dest_files=["res://.godot/imported/wallDoorwaySquare.fbx-332634440d4cba1bb3df501d4163fc59.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWide.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWide.fbx new file mode 100644 index 0000000..8602a15 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWide.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 944 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDoorwaySquareWide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDoorwaySquareWide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5197282818130659150, "Model::wallDoorwaySquareWide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5717097677666962001, "Geometry::", "Mesh" { + Vertices: *288 { + a: 5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.75,10,5,4.25,10,5,4.75,8.5,5,4.75,10,5,4.75,8.5,-3,4.75,10,-4,4.75,0,-4,4.75,0,-3,5,-1.639515E-18,-3,4.75,0,-3,5,-1.639515E-18,-2,4,0,-2,4.25,0,-3,4,0,-3,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,8.5,-3,4.25,10,5,4.25,8.5,5,4.25,10,5,4.75,10,5,4.25,8.5,5,4.75,8.5,5,4,8.5,5,5,8.5,5,4,7.5,5,5,7.5,5,4,0,-3,4.25,0,-3,4,8.5,-3,4.25,8.5,-3,5,8.5,-3,5,8.5,5,4.75,8.5,-3,4.75,8.5,5,5,-1.639515E-18,-2,4,0,-2,5,7.5,-2,4,7.5,-2,5,7.5,5,5,8.5,5,5,7.5,-2,5,8.5,-3,5,-1.639515E-18,-3,5,-1.639515E-18,-2,4.25,8.5,-3,4.25,8.5,5,4,8.5,-3,4,8.5,5,4,0,-3,4,8.5,-3,4,0,-2,4,7.5,-2,4,8.5,5,4,7.5,5,5,7.5,5,5,7.5,-2,4,7.5,5,4,7.5,-2,5,-1.639515E-18,-3,5,8.5,-3,4.75,0,-3,4.75,8.5,-3 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,26,-25,28,30,-30,31,29,-31,25,26,-33,33,32,-27,34,36,-36,35,36,-38,38,37,-37,36,39,-39,40,42,-42,43,41,-43,2,41,-44,44,2,-44,45,44,-44,44,4,-3,46,48,-48,49,47,-49,50,47,-50,51,50,-50,52,54,-54,55,53,-55,54,56,-56,55,56,-58,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,73,74,-76,76,75,-75,74,77,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,83,-86,87,86,-86,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: 19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-18.70079,19.68504,-16.73228,19.68504,-19.68504,33.46457,-19.68504,39.37008,11.81102,33.46457,15.74803,39.37008,15.74803,-3.133137E-16,11.81102,-3.133137E-16,19.68504,-11.81102,18.70079,-11.81102,19.68504,-7.874016,15.74803,-7.874016,16.73228,-11.81102,15.74803,-11.81102,-15.74803,-2.803333E-16,-15.74803,39.37008,-11.81102,-2.803333E-16,-11.81102,33.46457,19.68504,39.37008,19.68504,33.46457,16.73228,39.37008,18.70079,39.37008,16.73228,33.46457,18.70079,33.46457,15.74803,33.46457,19.68504,33.46457,15.74803,29.52756,19.68504,29.52756,-15.74803,0,-16.73228,0,-15.74803,33.46457,-16.73228,33.46457,-19.68504,-11.81102,-19.68504,19.68504,-18.70079,-11.81102,-18.70079,19.68504,19.68504,-6.454785E-18,15.74803,0,19.68504,29.52756,15.74803,29.52756,-19.68504,29.52756,-19.68504,33.46457,7.874016,29.52756,11.81102,33.46457,11.81102,8.140443E-16,7.874016,8.140443E-16,-16.73228,-11.81102,-16.73228,19.68504,-15.74803,-11.81102,-15.74803,19.68504,-11.81102,0,-11.81102,33.46457,-7.874016,0,-7.874016,29.52756,19.68504,33.46457,19.68504,29.52756,19.68504,19.68504,19.68504,-7.874016,15.74803,19.68504,15.74803,-7.874016,-19.68504,-6.454785E-18,-19.68504,33.46457,-18.70079,0,-18.70079,33.46457 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,27,26,24,28,30,29,31,29,30,25,26,32,33,32,26,34,36,35,35,36,37,38,37,36,36,39,38,40,42,41,43,41,42,2,41,43,44,2,43,45,44,43,44,4,2,46,48,47,49,47,48,50,47,49,51,50,49,52,54,53,55,53,54,54,56,55,55,56,57,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,73,74,75,76,75,74,74,77,76,78,80,79,81,79,80,82,84,83,85,83,84,86,83,85,87,86,85,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDoorwaySquareWide, Model::RootNode + C: "OO",5197282818130659150,0 + + ;Geometry::, Model::Mesh wallDoorwaySquareWide + C: "OO",5717097677666962001,5197282818130659150 + + ;Material::wood, Model::Mesh wallDoorwaySquareWide + C: "OO",7178,5197282818130659150 + + ;Material::stone, Model::Mesh wallDoorwaySquareWide + C: "OO",7184,5197282818130659150 + + ;Material::stoneDark, Model::Mesh wallDoorwaySquareWide + C: "OO",7174,5197282818130659150 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWide.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWide.fbx.import new file mode 100644 index 0000000..f2c5efc --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://3syo3um7pnry" +path="res://.godot/imported/wallDoorwaySquareWide.fbx-282c3941faa1d51157a1d885790b37bf.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWide.fbx" +dest_files=["res://.godot/imported/wallDoorwaySquareWide.fbx-282c3941faa1d51157a1d885790b37bf.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWideCurved.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWideCurved.fbx new file mode 100644 index 0000000..8beecac --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWideCurved.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 48 + Millisecond: 995 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallDoorwaySquareWideCurved.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallDoorwaySquareWideCurved.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4677584386494880284, "Model::wallDoorwaySquareWideCurved", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5019234745248415301, "Geometry::", "Mesh" { + Vertices: *936 { + a: 5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4.25,8.232051,-2,4.25,8.347758,-1.765367,4,8.232051,-2,4,8.347758,-1.765367,4.25,8.431851,-1.517638,4.25,8.48289,-1.261052,4,8.431851,-1.517638,4,8.48289,-1.261052,4,0,-3,4,6.5,-3,4,0,-2,4,6.761053,-2.98289,4,7.017638,-2.931851,4,7.265367,-2.847759,4,7.5,-2.732051,4,7.717523,-2.586707,4,7.914214,-2.414214,4,8.086706,-2.217523,4,8.232051,-2,4,6.5,-2,4,6.630526,-1.991445,4,8.347758,-1.765367,4,6.758819,-1.965926,4,6.882684,-1.92388,4,7,-1.866025,4,7.108761,-1.793353,4,7.207107,-1.707107,4,8.431851,-1.517638,4,7.293353,-1.608761,4,7.366025,-1.5,4,8.48289,-1.261052,4,7.42388,-1.382683,4,7.465925,-1.258819,4,8.5,-1,4,7.491445,-1.130526,4,7.5,-1,4,7.5,5,4,8.5,5,4.75,7.5,-2.732051,5,7.5,-2.732051,4.75,7.717523,-2.586707,5,7.717523,-2.586707,5,7.5,5,5,8.5,5,5,7.5,-1,5,8.5,-1,5,7.491445,-1.130526,5,7.465925,-1.258819,5,8.48289,-1.261052,5,7.42388,-1.382683,5,7.366025,-1.5,5,8.431851,-1.517638,5,7.293353,-1.608761,5,7.207107,-1.707107,5,8.347758,-1.765367,5,7.108761,-1.793353,5,7,-1.866025,5,6.882684,-1.92388,5,6.758819,-1.965926,5,6.630526,-1.991445,5,8.232051,-2,5,6.5,-2,5,-1.639515E-18,-2,5,8.086706,-2.217523,5,7.914214,-2.414214,5,7.717523,-2.586707,5,7.5,-2.732051,5,7.265367,-2.847759,5,7.017638,-2.931851,5,6.761053,-2.98289,5,-1.639515E-18,-3,5,6.5,-3,4,7.017638,-2.931851,4.25,7.017638,-2.931851,4,7.265367,-2.847759,4.25,7.265367,-2.847759,4,7.265367,-2.847759,4.25,7.265367,-2.847759,4,7.5,-2.732051,4.25,7.5,-2.732051,4.25,7.914214,-2.414214,4.25,8.086706,-2.217523,4,7.914214,-2.414214,4,8.086706,-2.217523,4.75,6.5,-3,5,6.5,-3,4.75,6.761053,-2.98289,5,6.761053,-2.98289,5,-1.639515E-18,-2,4,0,-2,5,6.5,-2,4,6.5,-2,5,7.491445,-1.130526,5,7.465925,-1.258819,4,7.491445,-1.130526,4,7.465925,-1.258819,4,0,-3,4.25,0,-3,4,6.5,-3,4.25,6.5,-3,5,7.42388,-1.382683,5,7.366025,-1.5,4,7.42388,-1.382683,4,7.366025,-1.5,5,7.108761,-1.793353,4,7.108761,-1.793353,5,7.207107,-1.707107,4,7.207107,-1.707107,5,6.630526,-1.991445,4,6.630526,-1.991445,5,6.758819,-1.965926,4,6.758819,-1.965926,5,7.366025,-1.5,5,7.293353,-1.608761,4,7.366025,-1.5,4,7.293353,-1.608761,4,6.761053,-2.98289,4.25,6.761053,-2.98289,4,7.017638,-2.931851,4.25,7.017638,-2.931851,4.75,7.265367,-2.847759,5,7.265367,-2.847759,4.75,7.5,-2.732051,5,7.5,-2.732051,5,8.431851,-1.517638,5,8.48289,-1.261052,4.75,8.431851,-1.517638,4.75,8.48289,-1.261052,4.25,8.5,5,4,8.5,5,4.25,8.5,-1,4,8.5,-1,5,6.5,-2,4,6.5,-2,5,6.630526,-1.991445,4,6.630526,-1.991445,4.75,7.017638,-2.931851,5,7.017638,-2.931851,4.75,7.265367,-2.847759,5,7.265367,-2.847759,5,7.293353,-1.608761,5,7.207107,-1.707107,4,7.293353,-1.608761,4,7.207107,-1.707107,5,7,-1.866025,4,7,-1.866025,5,7.108761,-1.793353,4,7.108761,-1.793353,4,7.5,-2.732051,4.25,7.5,-2.732051,4,7.717523,-2.586707,4.25,7.717523,-2.586707,5,7.5,5,5,7.5,-1,4,7.5,5,4,7.5,-1,5,8.5,5,4.75,8.5,5,5,8.5,-1,4.75,8.5,-1,5,6.758819,-1.965926,4,6.758819,-1.965926,5,6.882684,-1.92388,4,6.882684,-1.92388,5,6.882684,-1.92388,4,6.882684,-1.92388,5,7,-1.866025,4,7,-1.866025,4.25,8.086706,-2.217523,4.25,8.232051,-2,4,8.086706,-2.217523,4,8.232051,-2,4.25,8.347758,-1.765367,4.25,8.431851,-1.517638,4,8.347758,-1.765367,4,8.431851,-1.517638,5,7.42388,-1.382683,4,7.42388,-1.382683,5,7.465925,-1.258819,4,7.465925,-1.258819,4,6.5,-3,4.25,6.5,-3,4,6.761053,-2.98289,4.25,6.761053,-2.98289,5,8.48289,-1.261052,5,8.5,-1,4.75,8.48289,-1.261052,4.75,8.5,-1,5,-1.639515E-18,-3,5,6.5,-3,4.75,0,-3,4.75,6.5,-3,5,8.232051,-2,5,8.347758,-1.765367,4.75,8.232051,-2,4.75,8.347758,-1.765367,5,7.5,-1,5,7.491445,-1.130526,4,7.5,-1,4,7.491445,-1.130526,5,8.086706,-2.217523,5,8.232051,-2,4.75,8.086706,-2.217523,4.75,8.232051,-2,5,7.914214,-2.414214,5,8.086706,-2.217523,4.75,7.914214,-2.414214,4.75,8.086706,-2.217523,4.75,7.717523,-2.586707,5,7.717523,-2.586707,4.75,7.914214,-2.414214,5,7.914214,-2.414214,4.25,8.48289,-1.261052,4.25,8.5,-1,4,8.48289,-1.261052,4,8.5,-1,4.75,6.761053,-2.98289,5,6.761053,-2.98289,4.75,7.017638,-2.931851,5,7.017638,-2.931851,4,7.717523,-2.586707,4.25,7.717523,-2.586707,4,7.914214,-2.414214,4.25,7.914214,-2.414214,5,8.347758,-1.765367,5,8.431851,-1.517638,4.75,8.347758,-1.765367,4.75,8.431851,-1.517638,4.25,10,5,4.75,10,5,4.25,8.5,5,4.75,8.5,5,4,8.5,5,5,8.5,5,4,7.5,5,5,7.5,5,4.75,8.5,5,4.75,10,5,4.75,8.5,-1,4.75,8.48289,-1.261052,4.75,8.431851,-1.517638,4.75,10,-4,4.75,8.347758,-1.765367,4.75,8.232051,-2,4.75,8.086706,-2.217523,4.75,7.914214,-2.414214,4.75,7.717523,-2.586707,4.75,7.5,-2.732051,4.75,7.265367,-2.847759,4.75,7.017638,-2.931851,4.75,6.761053,-2.98289,4.75,0,-4,4.75,6.5,-3,4.75,0,-3,4.75,10,5,4.25,10,5,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,6.5,-3,4.25,6.761053,-2.98289,4.25,7.017638,-2.931851,4.25,7.265367,-2.847759,4.25,7.5,-2.732051,4.25,7.717523,-2.586707,4.25,7.914214,-2.414214,4.25,8.086706,-2.217523,4.25,8.232051,-2,4.25,8.347758,-1.765367,4.25,8.431851,-1.517638,4.25,10,5,4.25,8.48289,-1.261052,4.25,8.5,-1,4.25,8.5,5,5,-1.639515E-18,-3,4.75,0,-3,5,-1.639515E-18,-2,4,0,-2,4.25,0,-3,4,0,-3 + } + PolygonVertexIndex: *612 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,21,-21,23,22,-21,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,43,-43,45,44,-43,46,45,-43,47,46,-43,48,47,-43,49,48,-43,50,49,-43,51,50,-43,52,50,-52,53,50,-53,54,53,-53,55,53,-55,56,53,-56,57,53,-57,58,53,-58,59,53,-59,60,59,-59,61,59,-61,62,59,-62,63,62,-62,64,62,-64,65,62,-65,66,65,-65,67,65,-67,68,65,-68,69,65,-69,70,72,-72,73,71,-73,74,76,-76,75,76,-78,76,78,-78,78,79,-78,77,79,-81,79,81,-81,81,82,-81,80,82,-84,82,84,-84,84,85,-84,83,85,-87,85,87,-87,87,88,-87,88,89,-87,89,90,-87,90,91,-87,86,91,-93,93,92,-92,93,94,-93,92,94,-96,95,94,-97,96,94,-98,97,94,-99,98,94,-100,99,94,-101,100,94,-102,94,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,262,264,-264,263,264,-266,264,266,-266,267,265,-267,268,270,-270,270,271,-270,271,272,-270,269,272,-274,272,274,-274,274,275,-274,275,276,-274,276,277,-274,277,278,-274,278,279,-274,279,280,-274,280,281,-274,281,282,-274,283,273,-283,284,283,-283,284,285,-284,21,22,-287,287,286,-23,288,290,-290,291,289,-291,292,289,-292,293,289,-293,294,289,-294,295,289,-295,296,289,-296,297,289,-297,298,289,-298,299,289,-299,300,289,-300,301,289,-301,302,289,-302,303,302,-302,304,302,-304,305,302,-305,306,308,-308,309,307,-309,2,307,-310,310,2,-310,311,310,-310,310,4,-3 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1836 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9659258,-0.258819,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,0.5,-0.8660254,0,0.6087614,-0.7933533,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7071068,-0.7071068,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0,1,0,-0.03271909,0.9994646,0,0,1,0,-0.03271909,0.9994646,0,0,1,0,-0.03271909,0.9994646,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9914449,0.1305262,0,0,-1,0,0.03271909,-0.9994646,0,0,-1,0,0.03271909,-0.9994646,0,0,-1,0,0.03271909,-0.9994646,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.9238795,0.3826834,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.8660254,0.5,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9659258,-0.258819,0,1,0,0,0.9994646,-0.03271909,0,1,0,0,0.9994646,-0.03271909,0,1,0,0,0.9994646,-0.03271909,0,-0.03271909,0.9994646,0,-0.1305262,0.9914449,0,-0.03271909,0.9994646,0,-0.1305262,0.9914449,0,-0.03271909,0.9994646,0,-0.1305262,0.9914449,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7933533,0.6087614,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,-1,0,0,-1,0,0,-0.9994646,0.03271909,0,-0.9994646,0.03271909,0,-0.9994646,0.03271909,0,-1,0,0,1,0,0,0.9994646,-0.03271909,0,1,0,0,0.9994646,-0.03271909,0,1,0,0,0.9994646,-0.03271909,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,-0.5,0.8660254,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9238795,-0.3826834,0,-0.9238795,0.3826834,0,-0.9659258,0.258819,0,-0.9238795,0.3826834,0,-0.9659258,0.258819,0,-0.9238795,0.3826834,0,-0.9659258,0.258819,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9914449,-0.1305262,0,0,-1,0,0,-1,0,0.03271909,-0.9994646,0,0.03271909,-0.9994646,0,0.03271909,-0.9994646,0,0,-1,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.8660254,-0.5,0,-0.9994646,0.03271909,0,-0.9994646,0.03271909,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9994646,0.03271909,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7071068,-0.7071068,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9914449,-0.1305262,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9238795,-0.3826834,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *624 { + a: 19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-16.73228,7.272431,-16.73228,8.302402,-15.74803,7.272431,-15.74803,8.302402,-16.73228,0.6161242,-16.73228,1.646095,-15.74803,0.6161242,-15.74803,1.646095,-11.81102,-2.871451E-15,-11.81102,25.59055,-7.874016,-2.871451E-15,-11.74366,26.61832,-11.54272,27.6285,-11.21165,28.60381,-10.75611,29.52756,-10.18388,30.38395,-9.504778,31.15832,-8.730405,31.83743,-7.874016,32.40965,-7.874016,25.59055,-7.840334,26.10443,-6.950263,32.86519,-7.739865,26.60952,-7.574329,27.09718,-7.346557,27.55906,-7.060446,27.98725,-6.720893,28.37444,-5.974953,33.19627,-6.333706,28.71399,-5.905512,29.0001,-4.964773,33.39721,-5.443635,29.22787,-4.95598,29.39341,-3.937008,33.46457,-4.450891,29.49388,-3.937008,29.52756,19.68504,29.52756,19.68504,33.46457,-18.70079,18.5755,-19.68504,18.5755,-18.70079,19.60547,-19.68504,19.60547,-19.68504,29.52756,-19.68504,33.46457,3.937008,29.52756,3.937008,33.46457,4.450891,29.49388,4.95598,29.39341,4.964773,33.39721,5.443635,29.22787,5.905512,29.0001,5.974953,33.19627,6.333706,28.71399,6.720893,28.37444,6.950263,32.86519,7.060446,27.98725,7.346557,27.55906,7.574329,27.09718,7.739865,26.60952,7.840334,26.10443,7.874016,32.40965,7.874016,25.59055,7.874016,-1.344873E-15,8.730405,31.83743,9.504778,31.15832,10.18388,30.38395,10.75611,29.52756,11.21165,28.60381,11.54272,27.6285,11.74366,26.61832,11.81102,-1.344873E-15,11.81102,25.59055,-15.74803,22.45197,-16.73228,22.45197,-15.74803,23.48194,-16.73228,23.48194,-15.74803,20.69519,-16.73228,20.69519,-15.74803,21.72516,-16.73228,21.72516,-16.73228,13.39804,-16.73228,14.42801,-15.74803,13.39804,-15.74803,14.42801,-18.70079,24.76328,-19.68504,24.76328,-18.70079,25.79325,-19.68504,25.79325,19.68504,-6.454785E-18,15.74803,0,19.68504,25.59055,15.74803,25.59055,19.68504,1.388602,19.68504,0.8736169,15.74803,1.388602,15.74803,0.8736169,-15.74803,0,-16.73228,0,-15.74803,25.59055,-16.73228,25.59055,19.68504,8.044909,19.68504,7.529924,15.74803,8.044909,15.74803,7.529924,19.68504,16.38665,15.74803,16.38665,19.68504,16.90164,15.74803,16.90164,19.68504,24.07327,15.74803,24.07327,19.68504,24.58826,15.74803,24.58826,19.68504,11.20134,19.68504,10.68635,15.74803,11.20134,15.74803,10.68635,-15.74803,23.81578,-16.73228,23.81578,-15.74803,24.84575,-16.73228,24.84575,-18.70079,20.69519,-19.68504,20.69519,-18.70079,21.72516,-19.68504,21.72516,-19.68504,0.6161242,-19.68504,1.646095,-18.70079,0.6161242,-18.70079,1.646095,-16.73228,19.68504,-15.74803,19.68504,-16.73228,-3.937008,-15.74803,-3.937008,19.68504,25.02077,15.74803,25.02077,19.68504,25.53576,15.74803,25.53576,-18.70079,22.45197,-19.68504,22.45197,-18.70079,23.48194,-19.68504,23.48194,19.68504,14.17052,19.68504,13.65553,15.74803,14.17052,15.74803,13.65553,19.68504,18.83299,15.74803,18.83299,19.68504,19.34797,15.74803,19.34797,-15.74803,18.5755,-16.73228,18.5755,-15.74803,19.60547,-16.73228,19.60547,19.68504,19.68504,19.68504,-3.937008,15.74803,19.68504,15.74803,-3.937008,-19.68504,19.68504,-18.70079,19.68504,-19.68504,-3.937008,-18.70079,-3.937008,19.68504,22.70946,15.74803,22.70946,19.68504,23.22445,15.74803,23.22445,19.68504,20.95268,15.74803,20.95268,19.68504,21.46767,15.74803,21.46767,-16.73228,10.42886,-16.73228,11.45883,-15.74803,10.42886,-15.74803,11.45883,-16.73228,3.982756,-16.73228,5.012727,-15.74803,3.982756,-15.74803,5.012727,19.68504,4.240249,15.74803,4.240249,19.68504,4.755234,15.74803,4.755234,-15.74803,24.76328,-16.73228,24.76328,-15.74803,25.79325,-16.73228,25.79325,-19.68504,-2.769862,-19.68504,-1.739891,-18.70079,-2.769862,-18.70079,-1.739891,-19.68504,-6.454785E-18,-19.68504,25.59055,-18.70079,0,-18.70079,25.59055,-19.68504,7.272431,-19.68504,8.302402,-18.70079,7.272431,-18.70079,8.302402,19.68504,-1.997384,19.68504,-2.512369,15.74803,-1.997384,15.74803,-2.512369,-19.68504,10.42886,-19.68504,11.45883,-18.70079,10.42886,-18.70079,11.45883,-19.68504,13.39804,-19.68504,14.42801,-18.70079,13.39804,-18.70079,14.42801,-18.70079,16.12916,-19.68504,16.12916,-18.70079,17.15913,-19.68504,17.15913,-16.73228,-2.769862,-16.73228,-1.739891,-15.74803,-2.769862,-15.74803,-1.739891,-18.70079,23.81578,-19.68504,23.81578,-18.70079,24.84575,-19.68504,24.84575,-15.74803,16.12916,-16.73228,16.12916,-15.74803,17.15913,-16.73228,17.15913,-19.68504,3.982756,-19.68504,5.012727,-18.70079,3.982756,-18.70079,5.012727,16.73228,39.37008,18.70079,39.37008,16.73228,33.46457,18.70079,33.46457,15.74803,33.46457,19.68504,33.46457,15.74803,29.52756,19.68504,29.52756,-19.68504,33.46457,-19.68504,39.37008,3.937008,33.46457,4.964773,33.39721,5.974953,33.19627,15.74803,39.37008,6.950263,32.86519,7.874016,32.40965,8.730405,31.83743,9.504778,31.15832,10.18388,30.38395,10.75611,29.52756,11.21165,28.60381,11.54272,27.6285,11.74366,26.61832,15.74803,-2.358037E-12,11.81102,25.59055,11.81102,-2.358037E-12,-18.70079,19.68504,-16.73228,19.68504,-15.74803,-2.173E-15,-15.74803,39.37008,-11.81102,-2.173E-15,-11.81102,25.59055,-11.74366,26.61832,-11.54272,27.6285,-11.21165,28.60381,-10.75611,29.52756,-10.18388,30.38395,-9.504778,31.15832,-8.730405,31.83743,-7.874016,32.40965,-6.950263,32.86519,-5.974953,33.19627,19.68504,39.37008,-4.964773,33.39721,-3.937008,33.46457,19.68504,33.46457,19.68504,-11.81102,18.70079,-11.81102,19.68504,-7.874016,15.74803,-7.874016,16.73228,-11.81102,15.74803,-11.81102 + } + UVIndex: *612 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,21,20,23,22,20,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,43,42,45,44,42,46,45,42,47,46,42,48,47,42,49,48,42,50,49,42,51,50,42,52,50,51,53,50,52,54,53,52,55,53,54,56,53,55,57,53,56,58,53,57,59,53,58,60,59,58,61,59,60,62,59,61,63,62,61,64,62,63,65,62,64,66,65,64,67,65,66,68,65,67,69,65,68,70,72,71,73,71,72,74,76,75,75,76,77,76,78,77,78,79,77,77,79,80,79,81,80,81,82,80,80,82,83,82,84,83,84,85,83,83,85,86,85,87,86,87,88,86,88,89,86,89,90,86,90,91,86,86,91,92,93,92,91,93,94,92,92,94,95,95,94,96,96,94,97,97,94,98,98,94,99,99,94,100,100,94,101,94,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,262,264,263,263,264,265,264,266,265,267,265,266,268,270,269,270,271,269,271,272,269,269,272,273,272,274,273,274,275,273,275,276,273,276,277,273,277,278,273,278,279,273,279,280,273,280,281,273,281,282,273,283,273,282,284,283,282,284,285,283,21,22,286,287,286,22,288,290,289,291,289,290,292,289,291,293,289,292,294,289,293,295,289,294,296,289,295,297,289,296,298,289,297,299,289,298,300,289,299,301,289,300,302,289,301,303,302,301,304,302,303,305,302,304,306,308,307,309,307,308,2,307,309,310,2,309,311,310,309,310,4,2 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *204 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallDoorwaySquareWideCurved, Model::RootNode + C: "OO",4677584386494880284,0 + + ;Geometry::, Model::Mesh wallDoorwaySquareWideCurved + C: "OO",5019234745248415301,4677584386494880284 + + ;Material::wood, Model::Mesh wallDoorwaySquareWideCurved + C: "OO",7178,4677584386494880284 + + ;Material::stoneDark, Model::Mesh wallDoorwaySquareWideCurved + C: "OO",7174,4677584386494880284 + + ;Material::stone, Model::Mesh wallDoorwaySquareWideCurved + C: "OO",7184,4677584386494880284 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWideCurved.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWideCurved.fbx.import new file mode 100644 index 0000000..a8c6b92 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWideCurved.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bbvv4omsesh8l" +path="res://.godot/imported/wallDoorwaySquareWideCurved.fbx-62482db3fa5780768e34269bba5051df.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallDoorwaySquareWideCurved.fbx" +dest_files=["res://.godot/imported/wallDoorwaySquareWideCurved.fbx-62482db3fa5780768e34269bba5051df.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallHalf.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallHalf.fbx new file mode 100644 index 0000000..4a690a3 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallHalf.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 59 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallHalf.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallHalf.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4857752247254149798, "Model::wallHalf", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5638373929610745333, "Geometry::", "Mesh" { + Vertices: *216 { + a: 4.75,0,4,4.75,0,-4,4.25,0,4,4.25,0,-4,4.75,5,-4,4.75,5,4,4.25,5,-4,4.25,5,4,4.25,0,-4,4.25,5,-4,4.25,0,4,4.25,5,4,4.75,5,-4,4.75,0,-4,4.75,5,4,4.75,0,4,5,0,-4,4.75,0,-4,5,5,-4,4.75,5,-4,4,0,4,4.25,0,4,4,5,4,4.25,5,4,5,0,5,4,0,5,5,5,5,4,5,5,5,5,-5,5,5,-4,4,5,-5,4,5,-4,4.75,0,4,5,0,4,4.75,5,4,5,5,4,5,5,4,5,5,5,4,5,5,4,5,4,4.25,0,-4,4,0,-4,4.25,5,-4,4,5,-4,5,0,-4,5,0,-5,4,0,-5,4,0,-4,5,5,4,5,0,4,5,5,5,5,0,5,4,0,-5,4,5,-5,4,0,-4,4,5,-4,5,0,5,5,0,4,4,0,5,4,0,4,4,0,4,4,5,4,4,0,5,4,5,5,5,5,-5,5,0,-5,5,5,-4,5,0,-4,4,0,-5,5,0,-5,4,5,-5,5,5,-5 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,4,29,-31,6,4,-31,31,6,-31,32,34,-34,35,33,-35,36,5,-38,38,37,-6,7,38,-6,39,38,-8,40,42,-42,43,41,-43,44,1,-46,46,45,-2,3,46,-2,47,46,-4,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,0,57,-59,2,0,-59,59,2,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 18.70079,15.74803,18.70079,-15.74803,16.73228,15.74803,16.73228,-15.74803,-18.70079,-15.74803,-18.70079,15.74803,-16.73228,-15.74803,-16.73228,15.74803,-15.74803,0,-15.74803,19.68504,15.74803,0,15.74803,19.68504,15.74803,19.68504,15.74803,0,-15.74803,19.68504,-15.74803,0,19.68504,-6.565746E-31,18.70079,-6.565746E-31,19.68504,19.68504,18.70079,19.68504,-15.74803,0,-16.73228,0,-15.74803,19.68504,-16.73228,19.68504,19.68504,-2.842171E-14,15.74803,-2.842171E-14,19.68504,19.68504,15.74803,19.68504,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,-18.70079,0,-19.68504,0,-18.70079,19.68504,-19.68504,19.68504,-19.68504,15.74803,-19.68504,19.68504,-15.74803,19.68504,-15.74803,15.74803,16.73228,0,15.74803,0,16.73228,19.68504,15.74803,19.68504,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,-15.74803,19.68504,-15.74803,0,-19.68504,19.68504,-19.68504,0,-19.68504,0,-19.68504,19.68504,-15.74803,0,-15.74803,19.68504,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,15.74803,0,15.74803,19.68504,19.68504,0,19.68504,19.68504,19.68504,19.68504,19.68504,0,15.74803,19.68504,15.74803,0,-15.74803,0,-19.68504,0,-15.74803,19.68504,-19.68504,19.68504 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,4,29,30,6,4,30,31,6,30,32,34,33,35,33,34,36,5,37,38,37,5,7,38,5,39,38,7,40,42,41,43,41,42,44,1,45,46,45,1,3,46,1,47,46,3,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,0,57,58,2,0,58,59,2,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallHalf, Model::RootNode + C: "OO",4857752247254149798,0 + + ;Geometry::, Model::Mesh wallHalf + C: "OO",5638373929610745333,4857752247254149798 + + ;Material::stone, Model::Mesh wallHalf + C: "OO",7184,4857752247254149798 + + ;Material::wood, Model::Mesh wallHalf + C: "OO",7178,4857752247254149798 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallHalf.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallHalf.fbx.import new file mode 100644 index 0000000..b33a9c4 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallHalf.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://3gl4pqymasx5" +path="res://.godot/imported/wallHalf.fbx-d52f17322228d88a424e6054f4631e7e.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallHalf.fbx" +dest_files=["res://.godot/imported/wallHalf.fbx-d52f17322228d88a424e6054f4631e7e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallRounded.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallRounded.fbx new file mode 100644 index 0000000..8fd9811 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallRounded.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 94 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallRounded.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallRounded.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5451015274380748280, "Model::wallRounded", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4885532549716483099, "Geometry::", "Mesh" { + Vertices: *684 { + a: -4,0,4.25,-4,0,4.75,-7.219114E-14,0,4.25,-1.804779E-14,0,4.75,0.5547363,0,4.21364,0.6199994,0,4.709363,1.099981,0,4.105185,1.22939,0,4.588148,1.626405,0,3.926488,1.817746,0,4.388428,2.125,0,3.680608,2.375,0,4.113621,2.587236,0,3.371752,2.891617,0,3.768428,3.005204,0,3.005204,3.358757,0,3.358757,3.371752,0,2.587236,3.680608,0,2.125,3.768428,0,2.891617,3.926488,0,1.626405,4.105185,0,1.099981,4.113621,0,2.375,4.21364,0,0.5547363,4.25,0,-1.443823E-14,4.388428,0,1.817746,4.25,0,-4,4.588148,0,1.22939,4.709363,0,0.6199994,4.75,0,-4,4.75,0,-1.443823E-14,-4,0,4.25,-7.219114E-14,0,4.25,-4,10,4.25,-7.219114E-14,10,4.25,1.099981,0,4.105185,1.626405,0,3.926488,1.099981,10,4.105185,1.626405,10,3.926488,2.375,0,4.113621,1.817746,0,4.388428,2.375,10,4.113621,1.817746,10,4.388428,2.125,0,3.680608,2.587236,0,3.371752,2.125,10,3.680608,2.587236,10,3.371752,4.709363,10,0.6199994,4.709363,0,0.6199994,4.588148,10,1.22939,4.588148,0,1.22939,3.768428,10,2.891617,3.768428,0,2.891617,3.358757,10,3.358757,3.358757,0,3.358757,4.588148,10,1.22939,4.588148,0,1.22939,4.388428,10,1.817746,4.388428,0,1.817746,4.75,10,-4,4.75,10,-1.443823E-14,4.25,10,-4,4.709363,10,0.6199994,4.588148,10,1.22939,4.388428,10,1.817746,4.25,10,-1.443823E-14,4.113621,10,2.375,4.21364,10,0.5547363,4.105185,10,1.099981,3.768428,10,2.891617,3.926488,10,1.626405,3.680608,10,2.125,3.358757,10,3.358757,3.371752,10,2.587236,3.005204,10,3.005204,2.891617,10,3.768428,2.587236,10,3.371752,2.375,10,4.113621,2.125,10,3.680608,1.817746,10,4.388428,1.626405,10,3.926488,1.22939,10,4.588148,1.099981,10,4.105185,0.6199994,10,4.709363,0.5547363,10,4.21364,-1.804779E-14,10,4.75,-7.219114E-14,10,4.25,-4,10,4.75,-4,10,4.25,4.25,0,-4,4.25,10,-4,4.25,0,-1.443823E-14,4.25,10,-1.443823E-14,3.680608,0,2.125,3.680608,10,2.125,3.371752,0,2.587236,3.371752,10,2.587236,4.388428,10,1.817746,4.388428,0,1.817746,4.113621,10,2.375,4.113621,0,2.375,0.5547363,0,4.21364,1.099981,0,4.105185,0.5547363,10,4.21364,1.099981,10,4.105185,3.926488,0,1.626405,3.926488,10,1.626405,3.680608,0,2.125,3.680608,10,2.125,4.105185,0,1.099981,4.105185,10,1.099981,3.926488,0,1.626405,3.926488,10,1.626405,4.25,0,-1.443823E-14,4.25,10,-1.443823E-14,4.21364,0,0.5547363,4.21364,10,0.5547363,2.891617,0,3.768428,2.375,0,4.113621,2.891617,10,3.768428,2.375,10,4.113621,1.626405,0,3.926488,2.125,0,3.680608,1.626405,10,3.926488,2.125,10,3.680608,4.113621,10,2.375,4.113621,0,2.375,3.768428,10,2.891617,3.768428,0,2.891617,1.22939,0,4.588148,0.6199994,0,4.709363,1.22939,10,4.588148,0.6199994,10,4.709363,-1.804779E-14,0,4.75,-4,0,4.75,-1.804779E-14,10,4.75,-4,10,4.75,2.587236,0,3.371752,3.005204,0,3.005204,2.587236,10,3.371752,3.005204,10,3.005204,4.75,10,-1.443823E-14,4.75,0,-1.443823E-14,4.709363,10,0.6199994,4.709363,0,0.6199994,4.21364,0,0.5547363,4.21364,10,0.5547363,4.105185,0,1.099981,4.105185,10,1.099981,0.6199994,0,4.709363,-1.804779E-14,0,4.75,0.6199994,10,4.709363,-1.804779E-14,10,4.75,3.371752,0,2.587236,3.371752,10,2.587236,3.005204,0,3.005204,3.005204,10,3.005204,4.75,10,-4,4.75,0,-4,4.75,10,-1.443823E-14,4.75,0,-1.443823E-14,3.358757,0,3.358757,2.891617,0,3.768428,3.358757,10,3.358757,2.891617,10,3.768428,-7.219114E-14,0,4.25,0.5547363,0,4.21364,-7.219114E-14,10,4.25,0.5547363,10,4.21364,1.817746,0,4.388428,1.22939,0,4.588148,1.817746,10,4.388428,1.22939,10,4.588148,-5,0,4,-4,0,4,-5,10,4,-4,10,4,-4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,5,10,-5,5,10,-4,4,10,-5,4,10,-4,-4,0,5,-5,0,5,-4,0,4,-5,0,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,-5,0,4,-5,10,4,-5,0,5,-5,10,5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,0,-4,5,0,-5,4,0,-5,4,0,-4,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,-4,0,5,-5,0,5,-4,10,5,-5,10,5,-4,10,5,-5,10,5,-4,10,4,-5,10,4,5,10,-5,5,0,-5,5,10,-4,5,0,-4 + } + PolygonVertexIndex: *444 { + a: 0,2,-2,1,2,-4,2,4,-4,3,4,-6,4,6,-6,5,6,-8,6,8,-8,7,8,-10,8,10,-10,9,10,-12,10,12,-12,11,12,-14,12,14,-14,13,14,-16,14,16,-16,16,17,-16,15,17,-19,17,19,-19,19,20,-19,18,20,-22,20,22,-22,22,23,-22,24,21,-24,23,25,-25,24,25,-27,26,25,-28,25,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,62,-61,64,63,-61,65,63,-65,66,65,-65,67,65,-67,68,65,-68,69,68,-68,70,68,-70,71,68,-71,72,71,-71,73,71,-73,74,71,-74,75,74,-74,76,74,-76,77,76,-76,78,76,-78,79,78,-78,80,78,-80,81,80,-80,82,80,-82,83,82,-82,84,82,-84,85,84,-84,86,84,-86,87,86,-86,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,58,181,-183,60,58,-183,183,60,-183,184,185,-2,0,1,-186,186,0,-186,187,186,-186,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,28,-210,210,209,-29,25,210,-29,211,210,-26,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,86,-222,87,221,-87,222,221,-88,223,221,-223,224,226,-226,227,225,-227 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1332 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,-0.03271909,0,-0.9994646,-0.03271909,0,-0.9994646,-0.03271909,0,-0.9994646,0,0,-1,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-0.9994646,0,-0.03271909,-1,0,0,-0.9994646,0,-0.03271909,-1,0,0,-0.9994646,0,-0.03271909,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9994646,0,-0.03271909,-0.9914449,0,-0.1305262,-0.9994646,0,-0.03271909,-0.9914449,0,-0.1305262,-0.9994646,0,-0.03271909,-0.9914449,0,-0.1305262,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.03271909,0,0.9994646,0.03271909,0,0.9994646,0,0,1,0,0,1,0,0,1,0.03271909,0,0.9994646,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,0.9994646,0,0.03271909,0.9914449,0,0.1305262,0.9994646,0,0.03271909,0.9914449,0,0.1305262,0.9994646,0,0.03271909,0.9914449,0,0.1305262,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.03271909,0,0.9994646,0.03271909,0,0.9994646,0.03271909,0,0.9994646,0.1305262,0,0.9914449,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,1,0,0,0.9994646,0,0.03271909,1,0,0,0.9994646,0,0.03271909,1,0,0,0.9994646,0,0.03271909,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,-0.03271909,0,-0.9994646,-0.03271909,0,-0.9994646,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.03271909,0,-0.9994646,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *456 { + a: -15.74803,16.73228,-15.74803,18.70079,-2.842171E-13,16.73228,-7.105427E-14,18.70079,2.184001,16.58914,2.440943,18.5408,4.330634,16.16215,4.84012,18.06357,6.403168,15.45861,7.156482,17.27728,8.366141,14.49058,9.350393,16.19536,10.18597,13.27461,11.38432,14.83633,11.83151,11.83151,13.22345,13.22345,13.27461,10.18597,14.49058,8.366141,14.83633,11.38432,15.45861,6.403168,16.16215,4.330634,16.19536,9.350393,16.58914,2.184001,16.73228,-5.684342E-14,17.27728,7.156482,16.73228,-15.74803,18.06357,4.84012,18.5408,2.440943,18.70079,-15.74803,18.70079,-5.684342E-14,15.74803,0,1.914913E-12,0,15.74803,39.37008,1.914913E-12,39.37008,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,-18.70079,-15.74803,-18.70079,-5.684342E-14,-16.73228,-15.74803,-18.5408,2.440943,-18.06357,4.84012,-17.27728,7.156482,-16.73228,-5.684342E-14,-16.19536,9.350393,-16.58914,2.184001,-16.16215,4.330634,-14.83633,11.38432,-15.45861,6.403168,-14.49058,8.366141,-13.22345,13.22345,-13.27461,10.18597,-11.83151,11.83151,-11.38432,14.83633,-10.18597,13.27461,-9.350393,16.19536,-8.366141,14.49058,-7.156482,17.27728,-6.403168,15.45861,-4.84012,18.06357,-4.330634,16.16215,-2.440943,18.5408,-2.184001,16.58914,7.105427E-14,18.70079,2.842171E-13,16.73228,15.74803,18.70079,15.74803,16.73228,-15.74803,0,-15.74803,39.37008,-5.684342E-14,0,-5.684342E-14,39.37008,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,-1.893596E-12,0,-15.74803,0,-1.893596E-12,39.37008,-15.74803,39.37008,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,15.74803,39.37008,15.74803,0,5.684342E-14,39.37008,5.684342E-14,0,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,-15.74803,19.68504,-19.68504,19.68504,-15.74803,15.74803,-19.68504,15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,15.74803,9.622756E-26,15.74803,39.37008,19.68504,9.622756E-26,19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,-15.74803,9.521273E-13,-19.68504,9.521273E-13,-15.74803,39.37008,-19.68504,39.37008,15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0 + } + UVIndex: *444 { + a: 0,2,1,1,2,3,2,4,3,3,4,5,4,6,5,5,6,7,6,8,7,7,8,9,8,10,9,9,10,11,10,12,11,11,12,13,12,14,13,13,14,15,14,16,15,16,17,15,15,17,18,17,19,18,19,20,18,18,20,21,20,22,21,22,23,21,24,21,23,23,25,24,24,25,26,26,25,27,25,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,62,60,64,63,60,65,63,64,66,65,64,67,65,66,68,65,67,69,68,67,70,68,69,71,68,70,72,71,70,73,71,72,74,71,73,75,74,73,76,74,75,77,76,75,78,76,77,79,78,77,80,78,79,81,80,79,82,80,81,83,82,81,84,82,83,85,84,83,86,84,85,87,86,85,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,58,181,182,60,58,182,183,60,182,184,185,1,0,1,185,186,0,185,187,186,185,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,28,209,210,209,28,25,210,28,211,210,25,212,214,213,215,213,214,216,218,217,219,217,218,220,86,221,87,221,86,222,221,87,223,221,222,224,226,225,227,225,226 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *148 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallRounded, Model::RootNode + C: "OO",5451015274380748280,0 + + ;Geometry::, Model::Mesh wallRounded + C: "OO",4885532549716483099,5451015274380748280 + + ;Material::stone, Model::Mesh wallRounded + C: "OO",7184,5451015274380748280 + + ;Material::wood, Model::Mesh wallRounded + C: "OO",7178,5451015274380748280 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallRounded.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallRounded.fbx.import new file mode 100644 index 0000000..0397722 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallRounded.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b6886inp0lnbn" +path="res://.godot/imported/wallRounded.fbx-52bdedb9c9a90ab4322fdfb1e572ab64.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallRounded.fbx" +dest_files=["res://.godot/imported/wallRounded.fbx-52bdedb9c9a90ab4322fdfb1e572ab64.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSide.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSide.fbx new file mode 100644 index 0000000..78bbcd7 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSide.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 142 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallSide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallSide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5732599303293883985, "Model::wallSide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4748455589119134810, "Geometry::", "Mesh" { + Vertices: *144 { + a: 4.75,0,4,4.75,4.511946E-14,2.4,4.25,0,4,4.25,4.511946E-14,2.4,4.25,4.511946E-14,2.4,4.25,10,2.4,4.25,0,4,4.25,10,4,4.25,4.511946E-14,2.4,4.75,4.511946E-14,2.4,4.25,10,2.4,4.75,10,2.4,4.75,10,2.4,4.75,4.511946E-14,2.4,4.75,10,4,4.75,0,4,4.75,10,2.4,4.75,10,4,4.25,10,2.4,4.25,10,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,0,5,4,0,5,5,10,5,4,10,5,5,10,4,5,10,5,4,10,5,4,10,4,5,0,5,5,0,4,4,0,5,4,0,4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,0,4,5,10,5,5,0,5 + } + PolygonVertexIndex: *84 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,17,-30,30,29,-18,19,30,-18,31,30,-20,32,34,-34,0,33,-35,2,0,-35,35,2,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *252 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: 18.70079,15.74803,18.70079,9.448819,16.73228,15.74803,16.73228,9.448819,9.448819,1.776357E-13,9.448819,39.37008,15.74803,-2.072394E-29,15.74803,39.37008,-16.73228,1.776357E-13,-18.70079,1.776357E-13,-16.73228,39.37008,-18.70079,39.37008,-9.448819,39.37008,-9.448819,1.776357E-13,-15.74803,39.37008,-15.74803,1.338556E-29,-18.70079,9.448819,-18.70079,15.74803,-16.73228,9.448819,-16.73228,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,15.74803,-19.68504,19.68504,-15.74803,19.68504,-15.74803,15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0 + } + UVIndex: *84 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,17,29,30,29,17,19,30,17,31,30,19,32,34,33,0,33,34,2,0,34,35,2,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *28 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallSide, Model::RootNode + C: "OO",5732599303293883985,0 + + ;Geometry::, Model::Mesh wallSide + C: "OO",4748455589119134810,5732599303293883985 + + ;Material::stone, Model::Mesh wallSide + C: "OO",7184,5732599303293883985 + + ;Material::wood, Model::Mesh wallSide + C: "OO",7178,5732599303293883985 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSide.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSide.fbx.import new file mode 100644 index 0000000..5b6e615 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://pom8xfwt8ovc" +path="res://.godot/imported/wallSide.fbx-cf4114fe0ace8bcc0e50bd1f47a14bae.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSide.fbx" +dest_files=["res://.godot/imported/wallSide.fbx-cf4114fe0ace8bcc0e50bd1f47a14bae.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSlope.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSlope.fbx new file mode 100644 index 0000000..4ab13af --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSlope.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 177 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallSlope.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallSlope.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5190019482823313202, "Model::wallSlope", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5611191277377256850, "Geometry::", "Mesh" { + Vertices: *228 { + a: 4.25,0,-4,4.25,5,-4,4.25,0,4,4.25,10,4,4.75,5,-4,4.75,0,-4,4.75,10,4,4.75,0,4,4.75,0,4,4.75,0,-4,4.25,0,4,4.25,0,-4,4.75,5,-4,4.75,10,4,4.25,5,-4,4.25,10,4,4,0,-5,5,0,-5,4,5,-5,5,5,-5,5,5,-5,5,0,-5,5,5,-4,5,0,-4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4.25,0,-4,4,0,-4,4.25,5,-4,4,5,-4,5,0,-4,5,0,-5,4,0,-5,4,0,-4,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,0,4,5,10,5,5,0,5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,5,-5,5,5,-4,4,5,-5,4.75,5,-4,4.25,5,-4,4,5,-4,4,0,-5,4,5,-5,4,0,-4,4,5,-4,5,0,-4,4.75,0,-4,5,5,-4,4.75,5,-4,5,0,5,4,0,5,5,10,5,4,10,5,5,0,5,5,0,4,4,0,5,4,0,4 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,9,-34,34,33,-10,11,34,-10,35,34,-12,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,8,73,-75,10,8,-75,75,10,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8479983,-0.529999,0,0.8479983,-0.529999,0,0.8479983,-0.529999,0,0.8479983,-0.529999,0,0.8479983,-0.529999,0,0.8479983,-0.529999,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *152 { + a: -15.74803,0,-15.74803,19.68504,15.74803,0,15.74803,39.37008,15.74803,19.68504,15.74803,0,-15.74803,39.37008,-15.74803,0,18.70079,15.74803,18.70079,-15.74803,16.73228,15.74803,16.73228,-15.74803,-18.70079,-2.921254,-18.70079,34.22041,-16.73228,-2.921254,-16.73228,34.22041,-15.74803,0,-19.68504,0,-15.74803,19.68504,-19.68504,19.68504,19.68504,19.68504,19.68504,0,15.74803,19.68504,15.74803,0,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,16.73228,-6.155387E-31,15.74803,-6.155387E-31,16.73228,19.68504,15.74803,19.68504,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-19.68504,0,-19.68504,19.68504,-15.74803,0,-15.74803,19.68504,19.68504,-9.848619E-31,18.70079,-9.848619E-31,19.68504,19.68504,18.70079,19.68504,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,9,33,34,33,9,11,34,9,35,34,11,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,57,56,59,58,56,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,8,73,74,10,8,74,75,10,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallSlope, Model::RootNode + C: "OO",5190019482823313202,0 + + ;Geometry::, Model::Mesh wallSlope + C: "OO",5611191277377256850,5190019482823313202 + + ;Material::stone, Model::Mesh wallSlope + C: "OO",7184,5190019482823313202 + + ;Material::wood, Model::Mesh wallSlope + C: "OO",7178,5190019482823313202 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSlope.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSlope.fbx.import new file mode 100644 index 0000000..492226f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSlope.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://wawydb1gb4su" +path="res://.godot/imported/wallSlope.fbx-6b6410d277b750314eddf19f58f47a77.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallSlope.fbx" +dest_files=["res://.godot/imported/wallSlope.fbx-6b6410d277b750314eddf19f58f47a77.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowGlass.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowGlass.fbx new file mode 100644 index 0000000..51a28e7 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowGlass.fbx @@ -0,0 +1,423 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 217 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWindowGlass.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWindowGlass.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4838938971434669600, "Model::wallWindowGlass", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5692009278012675382, "Geometry::", "Mesh" { + Vertices: *462 { + a: 4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,3,-1,5,3,1,4,3,-1,4,3,1,4.75,2.5,-1.5,5,2.5,-1.5,4.75,7.5,-1.5,5,7.5,-1.5,4.25,2.5,2,4.25,2,2,4.25,8,2,4.25,7.5,1.5,4.25,2.5,1.5,4.25,7.5,-1.5,4.25,8,-2,4.25,2.5,-1.5,4.25,2,-2,4.75,2.5,2,4.75,8,2,4.75,2,2,4.75,2.5,1.5,4.75,7.5,1.5,4.75,2.5,-1.5,4.75,2,-2,4.75,7.5,-1.5,4.75,8,-2,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4,0,4,4,10,4,4,0,5,4,10,5,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,7,1,5,7,-1,4,7,1,4,7,-1,4.75,2.5,1.5,4.75,7.5,1.5,5,2.5,1.5,5,7.5,1.5,4.25,2.5,1.5,4.25,2.5,-1.5,4,2.5,1.5,4,2.5,-1.5,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,2.5,-1.5,4.25,7.5,-1.5,4,2.5,-1.5,4,7.5,-1.5,5,7.5,-1.5,5,7.5,1.5,4.75,7.5,-1.5,4.75,7.5,1.5,4,3,-1,4,7,-1,5,3,-1,5,7,-1,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,10,4,5,0,4,5,10,5,5,0,5,4.25,2.5,1.5,4,2.5,1.5,4.25,7.5,1.5,4,7.5,1.5,4,3,1,5,3,1,4,7,1,5,7,1,5,2.5,1.5,5,2.5,-1.5,4.75,2.5,1.5,4.75,2.5,-1.5,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,5,4,0,5,5,10,5,4,10,5,4.25,7.5,-1.5,4.25,7.5,1.5,4,7.5,-1.5,4,7.5,1.5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,2.5,-1.5,5,7,-1,5,7.5,-1.5,5,7.5,1.5,5,3,-1,5,7,1,5,2.5,1.5,5,3,1,4,7.5,-1.5,4,3,-1,4,2.5,-1.5,4,2.5,1.5,4,7,-1,4,3,1,4,7.5,1.5,4,7,1,4.25,0,4,4.25,0,-4,4.25,10,4,4.25,10,-4,4.75,10,4,4.75,10,-4,4.75,0,4,4.75,0,-4 + } + PolygonVertexIndex: *348 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,31,32,-34,33,34,-32,33,32,-36,32,36,-36,34,37,-32,37,35,-37,31,37,-39,36,38,-38,39,41,-41,40,41,-43,42,43,-41,42,41,-45,41,45,-45,43,46,-41,46,44,-46,40,46,-48,45,47,-47,48,50,-50,51,49,-51,52,51,-51,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,78,-77,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,127,-127,129,127,-129,130,132,-132,133,131,-133,131,134,-131,135,131,-134,136,130,-135,137,135,-134,137,136,-135,133,136,-138,138,140,-140,141,139,-141,139,142,-139,143,139,-142,144,138,-143,145,143,-142,145,144,-143,141,144,-146,7,8,-51,52,50,-9,77,78,-127,128,126,-79,31,38,-147,30,31,-147,32,30,-147,146,38,-148,146,148,-33,149,147,-39,32,148,-37,148,149,-37,38,36,-150,40,47,-151,39,40,-151,41,39,-151,150,47,-152,150,152,-42,153,151,-48,41,152,-46,152,153,-46,47,45,-154 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1044 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *308 { + a: 16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-19.68504,-3.937008,-19.68504,3.937008,-15.74803,-3.937008,-15.74803,3.937008,-18.70079,9.84252,-19.68504,9.84252,-18.70079,29.52756,-19.68504,29.52756,7.874016,9.84252,7.874016,7.874016,7.874016,31.49606,5.905512,29.52756,5.905512,9.84252,-5.905512,29.52756,-7.874016,31.49606,-5.905512,9.84252,-7.874016,7.874016,-7.874016,9.84252,-7.874016,31.49606,-7.874016,7.874016,-5.905512,9.84252,-5.905512,29.52756,5.905512,9.84252,7.874016,7.874016,5.905512,29.52756,7.874016,31.49606,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,19.68504,3.937008,19.68504,-3.937008,15.74803,3.937008,15.74803,-3.937008,18.70079,9.84252,18.70079,29.52756,19.68504,9.84252,19.68504,29.52756,16.73228,5.905512,16.73228,-5.905512,15.74803,5.905512,15.74803,-5.905512,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-16.73228,9.84252,-16.73228,29.52756,-15.74803,9.84252,-15.74803,29.52756,-19.68504,-5.905512,-19.68504,5.905512,-18.70079,-5.905512,-18.70079,5.905512,15.74803,11.81102,15.74803,27.55906,19.68504,11.81102,19.68504,27.55906,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,16.73228,9.84252,15.74803,9.84252,16.73228,29.52756,15.74803,29.52756,-15.74803,11.81102,-19.68504,11.81102,-15.74803,27.55906,-19.68504,27.55906,19.68504,5.905512,19.68504,-5.905512,18.70079,5.905512,18.70079,-5.905512,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,1.776357E-15,15.74803,1.776357E-15,19.68504,39.37008,15.74803,39.37008,-16.73228,-5.905512,-16.73228,5.905512,-15.74803,-5.905512,-15.74803,5.905512,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,5.905512,9.84252,3.937008,27.55906,5.905512,29.52756,-5.905512,29.52756,3.937008,11.81102,-3.937008,27.55906,-5.905512,9.84252,-3.937008,11.81102,-5.905512,29.52756,-3.937008,11.81102,-5.905512,9.84252,5.905512,9.84252,-3.937008,27.55906,3.937008,11.81102,5.905512,29.52756,3.937008,27.55906,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,-15.74803,39.37008,15.74803,39.37008,-15.74803,0,15.74803,0 + } + UVIndex: *348 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,31,32,33,33,34,31,33,32,35,32,36,35,34,37,31,37,35,36,31,37,38,36,38,37,39,41,40,40,41,42,42,43,40,42,41,44,41,45,44,43,46,40,46,44,45,40,46,47,45,47,46,48,50,49,51,49,50,52,51,50,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,78,76,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,127,126,129,127,128,130,132,131,133,131,132,131,134,130,135,131,133,136,130,134,137,135,133,137,136,134,133,136,137,138,140,139,141,139,140,139,142,138,143,139,141,144,138,142,145,143,141,145,144,142,141,144,145,7,8,50,52,50,8,77,78,126,128,126,78,31,38,146,30,31,146,32,30,146,146,38,147,146,148,32,149,147,38,32,148,36,148,149,36,38,36,149,40,47,150,39,40,150,41,39,150,150,47,151,150,152,41,153,151,47,41,152,45,152,153,45,47,45,153 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *116 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5493553859599526840, "Model::detail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",4.625,3,-0.925 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5617506758915522384, "Geometry::", "Mesh" { + Vertices: *336 { + a: -0.0625,1.3,0,-0.0625,1.3,0.8,-0.0625,1.55,3.725045E-09,-0.0625,1.55,0.8,-0.1875,2.45,1.713521E-08,-0.0625,2.45,1.713521E-08,-0.1875,2.7,2.086026E-08,-0.0625,2.7,2.086026E-08,-0.0625,2.45,0.8,-0.0625,2.45,1.713521E-08,-0.1875,2.45,0.8,-0.1875,2.45,1.713521E-08,0,9.023893E-16,0.8,0,9.023893E-16,1.05,-0.25,0,0.8,-0.25,0,1.05,-0.0625,2.45,1.713521E-08,-0.0625,2.45,0.8,-0.0625,2.7,2.086026E-08,-0.0625,2.7,0.8,0,4,0.8,0,9.023893E-16,0.8,0,4,1.05,0,9.023893E-16,1.05,-0.0625,1.3,1.925,-0.0625,1.3,1.05,-0.1875,1.3,1.925,-0.1875,1.3,1.05,-0.0625,2.7,2.086026E-08,-0.0625,2.7,0.8,-0.1875,2.7,2.086026E-08,-0.1875,2.7,0.8,-0.0625,2.7,1.05,-0.0625,2.45,1.05,-0.0625,2.7,1.925,-0.0625,2.45,1.925,-0.0625,1.55,1.05,-0.0625,1.3,1.05,-0.0625,1.55,1.925,-0.0625,1.3,1.925,-0.25,0,0.8,-0.25,4,0.8,-0.25,0,1.05,-0.25,4,1.05,-0.1875,1.3,1.05,-0.1875,1.55,1.05,-0.1875,1.3,1.925,-0.1875,1.55,1.925,-0.0625,1.55,1.05,-0.0625,1.55,1.925,-0.1875,1.55,1.05,-0.1875,1.55,1.925,-0.1875,2.45,1.05,-0.1875,2.7,1.05,-0.1875,2.45,1.925,-0.1875,2.7,1.925,0,4,1.05,0,4,0.8,-0.25,4,1.05,-0.25,4,0.8,-0.1875,1.3,0,-0.1875,1.55,3.725045E-09,-0.1875,1.3,0.8,-0.1875,1.55,0.8,-0.0625,2.7,1.05,-0.0625,2.7,1.925,-0.1875,2.7,1.05,-0.1875,2.7,1.925,-0.1875,1.3,0,-0.0625,1.3,0,-0.1875,1.55,3.725045E-09,-0.0625,1.55,3.725045E-09,-0.0625,2.45,1.925,-0.0625,2.45,1.05,-0.1875,2.45,1.925,-0.1875,2.45,1.05,-0.1875,2.45,1.713521E-08,-0.1875,2.7,2.086026E-08,-0.1875,2.45,0.8,-0.1875,2.7,0.8,-0.0625,1.3,0.8,-0.0625,1.3,0,-0.1875,1.3,0.8,-0.1875,1.3,0,-0.0625,1.55,3.725045E-09,-0.0625,1.55,0.8,-0.1875,1.55,3.725045E-09,-0.1875,1.55,0.8,0,9.023893E-16,0.8,-0.1875,1.3,0.8,-0.25,0,0.8,-0.25,4,0.8,-0.0625,1.3,0.8,0,4,0.8,-0.1875,1.55,0.8,-0.0625,1.55,0.8,-0.1875,2.45,0.8,-0.0625,2.45,0.8,-0.1875,2.7,0.8,-0.0625,2.7,0.8,-0.0625,2.7,1.05,0,4,1.05,-0.0625,2.45,1.05,-0.1875,2.7,1.05,-0.25,4,1.05,-0.1875,2.45,1.05,-0.1875,1.55,1.05,-0.0625,1.55,1.05,-0.0625,1.3,1.05,0,9.023893E-16,1.05,-0.1875,1.3,1.05,-0.25,0,1.05 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,89,92,-89,93,88,-93,94,89,-92,95,93,-93,95,94,-97,96,94,-92,96,97,-96,97,93,-96,98,96,-92,99,93,-98,99,98,-92,91,93,-100,100,102,-102,103,100,-102,101,104,-104,103,104,-106,105,106,-103,105,104,-107,106,107,-103,102,107,-102,107,108,-102,101,108,-110,106,104,-111,110,109,-109,104,111,-111,109,110,-112 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *224 { + a: -6.938894E-17,5.11811,-3.149606,5.11811,-1.466553E-08,6.102362,-3.149606,6.102362,0.738189,9.645669,0.246063,9.645669,0.738189,10.62992,0.246063,10.62992,-0.246063,3.149606,-0.246063,-7.62608E-08,-0.738189,3.149606,-0.738189,-7.62608E-08,-6.411862E-30,3.149606,-6.411862E-30,4.133858,0.984252,3.149606,0.984252,4.133858,-6.746146E-08,9.645669,-3.149606,9.645669,-8.212699E-08,10.62992,-3.149606,10.62992,-3.149606,15.74803,-3.149606,3.552714E-15,-4.133858,15.74803,-4.133858,3.552714E-15,-0.246063,7.57874,-0.246063,4.133858,-0.738189,7.57874,-0.738189,4.133858,0.246063,-7.62608E-08,0.246063,3.149606,0.738189,-7.62608E-08,0.738189,3.149606,-4.133858,10.62992,-4.133858,9.645669,-7.57874,10.62992,-7.57874,9.645669,-4.133858,6.102362,-4.133858,5.11811,-7.57874,6.102362,-7.57874,5.11811,3.149606,4.440892E-16,3.149606,15.74803,4.133858,4.440892E-16,4.133858,15.74803,4.133858,5.11811,4.133858,6.102362,7.57874,5.11811,7.57874,6.102362,0.246063,4.133858,0.246063,7.57874,0.738189,4.133858,0.738189,7.57874,4.133858,9.645669,4.133858,10.62992,7.57874,9.645669,7.57874,10.62992,2.842171E-14,4.133858,2.842171E-14,3.149606,-0.984252,4.133858,-0.984252,3.149606,0,5.11811,1.466553E-08,6.102362,3.149606,5.11811,3.149606,6.102362,0.246063,4.133858,0.246063,7.57874,0.738189,4.133858,0.738189,7.57874,0.738189,5.11811,0.246063,5.11811,0.738189,6.102362,0.246063,6.102362,-0.246063,7.57874,-0.246063,4.133858,-0.738189,7.57874,-0.738189,4.133858,6.746146E-08,9.645669,8.212699E-08,10.62992,3.149606,9.645669,3.149606,10.62992,-0.246063,3.149606,-0.246063,-7.626078E-08,-0.738189,3.149606,-0.738189,-7.626078E-08,0.246063,-7.62608E-08,0.246063,3.149606,0.738189,-7.62608E-08,0.738189,3.149606,0,3.552714E-15,0.738189,5.11811,0.984252,4.071532E-32,0.984252,15.74803,0.246063,5.11811,0,15.74803,0.738189,6.102362,0.246063,6.102362,0.738189,9.645669,0.246063,9.645669,0.738189,10.62992,0.246063,10.62992,-0.246063,10.62992,0,15.74803,-0.246063,9.645669,-0.738189,10.62992,-0.984252,15.74803,-0.738189,9.645669,-0.738189,6.102362,-0.246063,6.102362,-0.246063,5.11811,0,3.552714E-15,-0.738189,5.11811,-0.984252,5.343885E-32 + } + UVIndex: *216 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,89,92,88,93,88,92,94,89,91,95,93,92,95,94,96,96,94,91,96,97,95,97,93,95,98,96,91,99,93,97,99,98,91,91,93,99,100,102,101,103,100,101,101,104,103,103,104,105,105,106,102,105,104,106,106,107,102,102,107,101,107,108,101,101,108,109,106,104,110,110,109,108,104,111,110,109,110,111 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWindowGlass, Model::RootNode + C: "OO",4838938971434669600,0 + + ;Geometry::, Model::Mesh wallWindowGlass + C: "OO",5692009278012675382,4838938971434669600 + + ;Material::wood, Model::Mesh wallWindowGlass + C: "OO",7178,4838938971434669600 + + ;Material::stone, Model::Mesh wallWindowGlass + C: "OO",7184,4838938971434669600 + + ;Model::Mesh detail, Model::USING PARENT + C: "OO",5493553859599526840,4838938971434669600 + + ;Geometry::, Model::Mesh detail + C: "OO",5617506758915522384,5493553859599526840 + + ;Material::wood, Model::Mesh detail + C: "OO",7178,5493553859599526840 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowGlass.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowGlass.fbx.import new file mode 100644 index 0000000..b48a14f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowGlass.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dgyoq7fgfwh1i" +path="res://.godot/imported/wallWindowGlass.fbx-3db10b461840493029352395bd8d1bc5.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowGlass.fbx" +dest_files=["res://.godot/imported/wallWindowGlass.fbx-3db10b461840493029352395bd8d1bc5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowRound.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowRound.fbx new file mode 100644 index 0000000..c0f4605 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowRound.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 272 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWindowRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWindowRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4941924740735411261, "Model::wallWindowRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5161106906201089393, "Geometry::", "Mesh" { + Vertices: *1128 { + a: 5,7.007061,0.9200034,4.75,7.007061,0.9200034,5,7.212634,0.7433034,4.75,7.212634,0.7433034,4.25,7.369,-0.5218704,4.25,7.46675,-0.2690305,4,7.369,-0.5218704,4,7.46675,-0.2690305,5,7.369,-0.5218704,4.75,7.369,-0.5218704,5,7.212634,-0.7433034,4.75,7.212634,-0.7433034,5,7.46675,-0.2690305,5,7.5,-3.609557E-15,4.75,7.46675,-0.2690305,4.75,7.5,-3.609557E-15,4,6.5,1.1,4,2.5,1.1,4,6.764653,1.041336,4,7.007061,0.9200034,4,7.212634,0.7433034,4,6.5,0.6,4,6.634773,0.5587364,4,3,0.6,4,7.369,0.5218704,4,3,-0.6,4,6.756477,0.487642,4,6.858615,0.3905125,4,6.935734,0.2725336,4,7.46675,0.2690305,4,6.983716,0.1400042,4,2.5,-1.1,4,7.5,-3.609557E-15,4,7,-7.219114E-15,4,6.983716,-0.1400042,4,6.5,-1.1,4,7.46675,-0.2690305,4,6.764653,-1.041336,4,7.007061,-0.9200034,4,7.212634,-0.7433034,4,6.5,-0.6,4,6.935734,-0.2725336,4,6.858615,-0.3905125,4,6.756477,-0.487642,4,7.369,-0.5218704,4,6.634773,-0.5587364,4.25,7.46675,-0.2690305,4.25,7.5,-3.609557E-15,4,7.46675,-0.2690305,4,7.5,-3.609557E-15,5,6.764653,1.041336,4.75,6.764653,1.041336,5,7.007061,0.9200034,4.75,7.007061,0.9200034,4.25,7.5,-3.609557E-15,4.25,7.46675,0.2690305,4,7.5,-3.609557E-15,4,7.46675,0.2690305,4.25,6.5,1.1,4,6.5,1.1,4.25,6.764653,1.041336,4,6.764653,1.041336,4,6.5,-1.1,4.25,6.5,-1.1,4,6.764653,-1.041336,4.25,6.764653,-1.041336,5,6.5,-1.1,5,6.764653,-1.041336,4.75,6.5,-1.1,4.75,6.764653,-1.041336,5,7.007061,-0.9200034,5,7.212634,-0.7433034,4.75,7.007061,-0.9200034,4.75,7.212634,-0.7433034,5,7.369,-0.5218704,5,7.46675,-0.2690305,4.75,7.369,-0.5218704,4.75,7.46675,-0.2690305,4.25,7.46675,0.2690305,4.25,7.369,0.5218704,4,7.46675,0.2690305,4,7.369,0.5218704,4.25,2.5,1.1,4,2.5,1.1,4.25,6.5,1.1,4,6.5,1.1,5,6.5,1.1,4.75,6.5,1.1,5,6.764653,1.041336,4.75,6.764653,1.041336,4.25,7.369,0.5218704,4.25,7.212634,0.7433034,4,7.369,0.5218704,4,7.212634,0.7433034,5,7.46675,0.2690305,5,7.369,0.5218704,4.75,7.46675,0.2690305,4.75,7.369,0.5218704,5,7.5,-3.609557E-15,5,7.46675,0.2690305,4.75,7.5,-3.609557E-15,4.75,7.46675,0.2690305,4.25,7.369,-0.5218704,4,7.369,-0.5218704,4.25,7.212634,-0.7433034,4,7.212634,-0.7433034,4.25,6.764653,1.041336,4,6.764653,1.041336,4.25,7.007061,0.9200034,4,7.007061,0.9200034,4,6.764653,-1.041336,4.25,6.764653,-1.041336,4,7.007061,-0.9200034,4.25,7.007061,-0.9200034,5,7.369,0.5218704,5,7.212634,0.7433034,4.75,7.369,0.5218704,4.75,7.212634,0.7433034,4.25,7.007061,0.9200034,4,7.007061,0.9200034,4.25,7.212634,0.7433034,4,7.212634,0.7433034,5,6.764653,-1.041336,5,7.007061,-0.9200034,4.75,6.764653,-1.041336,4.75,7.007061,-0.9200034,4,7.007061,-0.9200034,4.25,7.007061,-0.9200034,4,7.212634,-0.7433034,4.25,7.212634,-0.7433034,4.25,2.5,1.1,4.25,2.5,-1.1,4,2.5,1.1,4,2.5,-1.1,4.25,2.5,-1.1,4.25,6.5,-1.1,4,2.5,-1.1,4,6.5,-1.1,5,6.756477,-0.487642,4,6.756477,-0.487642,5,6.858615,-0.3905125,4,6.858615,-0.3905125,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.25,2.5,1.6,4.25,2,1.6,4.25,6.5,1.6,4.25,6.894235,1.524173,4.25,7.257275,1.352786,4.25,6.5,1.1,4.25,7.566358,1.096586,4.25,2.5,1.1,4.25,6.764653,1.041336,4.25,7.007061,0.9200034,4.25,2.5,-1.1,4.25,7.802106,0.7716333,4.25,7.212634,0.7433034,4.25,7.369,0.5218704,4.25,2,-1.6,4.25,7.949739,0.3983026,4.25,7.46675,0.2690305,4.25,7.5,-3.609557E-15,4.25,8,-7.219114E-15,4.25,7.46675,-0.2690305,4.25,6.5,-1.6,4.25,6.894235,-1.524173,4.25,7.257275,-1.352786,4.25,6.5,-1.1,4.25,7.566358,-1.096586,4.25,6.764653,-1.041336,4.25,7.949739,-0.3983026,4.25,7.369,-0.5218704,4.25,7.212634,-0.7433034,4.25,7.802106,-0.7716333,4.25,7.007061,-0.9200034,5,6.634773,-0.5587364,4,6.634773,-0.5587364,5,6.756477,-0.487642,4,6.756477,-0.487642,4.75,6.5,-1.6,4.75,2,-1.6,4.75,6.894235,-1.524173,4.75,2.5,-1.1,4.75,7.257275,-1.352786,4.75,2,1.6,4.75,6.5,-1.1,4.75,7.566358,-1.096586,4.75,6.764653,-1.041336,4.75,7.802106,-0.7716333,4.75,7.007061,-0.9200034,4.75,7.212634,-0.7433034,4.75,7.949739,-0.3983026,4.75,7.369,-0.5218704,4.75,7.46675,-0.2690305,4.75,8,-7.219114E-15,4.75,7.5,-3.609557E-15,4.75,7.949739,0.3983026,4.75,7.46675,0.2690305,4.75,7.369,0.5218704,4.75,7.802106,0.7716333,4.75,7.212634,0.7433034,4.75,7.007061,0.9200034,4.75,7.566358,1.096586,4.75,6.764653,1.041336,4.75,6.5,1.1,4.75,7.257275,1.352786,4.75,2.5,1.1,4.75,6.894235,1.524173,4.75,6.5,1.6,4.75,2.5,1.6,5,6.5,-1.1,5,2.5,-1.1,5,6.764653,-1.041336,5,3,-0.6,5,7.007061,-0.9200034,5,7.212634,-0.7433034,5,2.5,1.1,5,6.5,-0.6,5,7.369,-0.5218704,5,6.634773,-0.5587364,5,6.756477,-0.487642,5,7.46675,-0.2690305,5,6.858615,-0.3905125,5,6.935734,-0.2725336,5,6.983716,-0.1400042,5,7.5,-3.609557E-15,5,7,-7.219114E-15,5,6.983716,0.1400042,5,7.46675,0.2690305,5,6.935734,0.2725336,5,7.369,0.5218704,5,6.858615,0.3905125,5,6.756477,0.487642,5,6.634773,0.5587364,5,7.212634,0.7433034,5,6.5,0.6,5,3,0.6,5,7.007061,0.9200034,5,6.764653,1.041336,5,6.5,1.1,5,2.5,1.1,4.75,2.5,1.1,5,6.5,1.1,4.75,6.5,1.1,5,2.5,-1.1,5,6.5,-1.1,4.75,2.5,-1.1,4.75,6.5,-1.1,5,2.5,1.1,5,2.5,-1.1,4.75,2.5,1.1,4.75,2.5,-1.1,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,6.634773,0.5587364,5,6.756477,0.487642,4,6.634773,0.5587364,4,6.756477,0.487642,5,6.756477,0.487642,5,6.858615,0.3905125,4,6.756477,0.487642,4,6.858615,0.3905125,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,4,5,0,4,5,10,5,5,0,5,5,6.5,-0.6,4,6.5,-0.6,5,6.634773,-0.5587364,4,6.634773,-0.5587364,5,3,-0.6,5,3,0.6,4,3,-0.6,4,3,0.6,5,6.5,0.6,5,6.634773,0.5587364,4,6.5,0.6,4,6.634773,0.5587364,5,6.983716,0.1400042,5,7,-7.219114E-15,4,6.983716,0.1400042,4,7,-7.219114E-15,5,6.935734,-0.2725336,5,6.858615,-0.3905125,4,6.935734,-0.2725336,4,6.858615,-0.3905125,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,6.858615,0.3905125,5,6.935734,0.2725336,4,6.858615,0.3905125,4,6.935734,0.2725336,5,0,5,4,0,5,5,10,5,4,10,5,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,6.983716,-0.1400042,5,6.935734,-0.2725336,4,6.983716,-0.1400042,4,6.935734,-0.2725336,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,5,3,0.6,5,6.5,0.6,4,3,0.6,4,6.5,0.6,5,6.935734,0.2725336,5,6.983716,0.1400042,4,6.935734,0.2725336,4,6.983716,0.1400042,5,3,-0.6,4,3,-0.6,5,6.5,-0.6,4,6.5,-0.6,5,7,-7.219114E-15,5,6.983716,-0.1400042,4,7,-7.219114E-15,4,6.983716,-0.1400042,4.25,10,-4,4.25,0,-4,4.25,0,4,4.25,2.5,1.6,4.25,10,4,4.75,10,-4,4.75,10,4,4.75,0,-4,4.75,0,4,4.75,2.5,1.6 + } + PolygonVertexIndex: *876 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,18,19,-18,19,20,-18,20,21,-18,21,20,-23,21,23,-18,20,24,-23,23,25,-18,22,24,-27,26,24,-28,27,24,-29,24,29,-29,28,29,-31,17,25,-32,29,32,-31,30,32,-34,33,32,-35,35,31,-26,32,36,-35,37,35,-26,38,37,-26,39,38,-26,25,40,-40,34,36,-42,41,36,-43,42,36,-44,44,39,-41,36,44,-44,45,44,-41,43,44,-46,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,145,-145,147,146,-145,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,162,163,-162,163,164,-162,164,165,-162,164,166,-166,165,167,-162,165,166,-169,168,166,-170,167,170,-162,166,171,-170,169,171,-173,172,171,-174,161,170,-175,171,175,-174,173,175,-177,176,175,-178,175,178,-178,177,178,-180,180,174,-171,181,180,-171,182,181,-171,170,183,-183,184,182,-184,185,184,-184,178,186,-180,179,186,-188,187,186,-189,189,184,-186,186,189,-189,190,189,-186,188,189,-191,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,198,-198,200,196,-199,201,198,-200,199,202,-202,203,201,-203,204,203,-203,205,203,-205,206,205,-205,207,206,-205,208,206,-208,209,208,-208,210,209,-208,211,209,-211,212,211,-211,213,211,-213,214,213,-213,215,214,-213,216,214,-216,217,216,-216,218,217,-216,219,217,-219,220,219,-219,221,220,-219,222,220,-222,221,200,-223,222,200,-199,223,200,-222,224,200,-224,225,200,-225,226,228,-228,229,227,-229,230,229,-229,231,229,-231,232,227,-230,233,229,-232,231,234,-234,235,233,-235,236,235,-235,237,236,-235,238,236,-238,239,238,-238,240,239,-238,241,240,-238,242,240,-242,243,242,-242,244,243,-242,245,243,-245,246,245,-245,247,245,-247,248,247,-247,249,248,-247,250,249,-247,251,249,-251,252,251,-251,250,232,-253,252,232,-230,253,232,-251,254,232,-254,255,232,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,319,-319,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,333,-333,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,347,-347,349,348,-347,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,360,-360,361,359,-361,362,364,-364,365,363,-365,145,146,-319,320,318,-147,347,348,-333,334,332,-349,366,367,-175,368,174,-368,174,180,-367,161,174,-369,369,161,-369,162,369,-369,368,370,-163,162,370,-164,163,370,-165,180,181,-367,164,370,-167,181,182,-367,182,184,-367,184,189,-367,370,366,-190,166,370,-172,186,370,-190,171,370,-176,178,370,-187,175,370,-179,202,199,-372,204,202,-372,199,197,-372,372,204,-372,207,204,-373,210,207,-373,212,210,-373,215,212,-373,373,371,-198,195,373,-198,195,196,-374,374,373,-197,200,374,-197,372,374,-201,218,215,-373,200,375,-373,221,218,-373,375,224,-373,223,221,-373,224,223,-373 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2628 { + a: 0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.881448,-0.4722809,0,0.881448,-0.4722809,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,0.881448,-0.4722809,0,0.881448,-0.4722809,0,0.73994,-0.6726728,0,0.881448,-0.4722809,0,0.73994,-0.6726728,0,0.881448,-0.4722809,0,0.73994,-0.6726728,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,1,0,0,1,0,0,1,0,0,0.9699093,-0.2434666,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,1,0,0,1,0,0,1,0,0,0.9699093,-0.2434666,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,1,0,0,1,0,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,1,0,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.1088516,-0.994058,0,0.3345282,-0.9423857,0,0.1088516,-0.994058,0,0.3345282,-0.9423857,0,0.1088516,-0.994058,0,0.3345282,-0.9423857,0,0.1088516,-0.994058,0,0.1088516,-0.994058,0,0.3345282,-0.9423857,0,0.3345282,-0.9423857,0,0.3345282,-0.9423857,0,0.1088516,-0.994058,0,0.5539015,-0.8325822,0,0.5539015,-0.8325822,0,0.73994,-0.6726728,0,0.73994,-0.6726728,0,0.73994,-0.6726728,0,0.5539015,-0.8325822,0,0.881448,-0.4722809,0,0.881448,-0.4722809,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,0.881448,-0.4722809,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.9699093,0.2434666,0,0,1,0,0.1088516,0.994058,0,0,1,0,0.1088516,0.994058,0,0,1,0,0.1088516,0.994058,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.73994,0.6726728,0,0.73994,0.6726728,0,0.73994,0.6726728,0,0.881448,0.4722809,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.9699093,0.2434666,0,1,0,0,1,0,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,1,0,0,0.881448,-0.4722809,0,0.73994,-0.6726728,0,0.881448,-0.4722809,0,0.73994,-0.6726728,0,0.881448,-0.4722809,0,0.73994,-0.6726728,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.3345282,-0.9423857,0,0.5539015,-0.8325822,0,0.3345282,-0.9423857,0,0.5539015,-0.8325822,0,0.3345282,-0.9423857,0,0.5539015,-0.8325822,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.73994,0.6726728,0,0.73994,0.6726728,0,0.73994,0.6726728,0,0.881448,0.4722809,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.3345282,-0.9423857,0,0.3345282,-0.9423857,0,0.5539015,-0.8325822,0,0.5539015,-0.8325822,0,0.5539015,-0.8325822,0,0.3345282,-0.9423857,0,0.5539015,-0.8325822,0,0.73994,-0.6726728,0,0.5539015,-0.8325822,0,0.73994,-0.6726728,0,0.5539015,-0.8325822,0,0.73994,-0.6726728,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0.1088516,-0.994058,0,0.1088516,-0.994058,0,0.1088516,-0.994058,0,0,-1,0,-0.6007817,0.799413,0,-0.7682213,0.6401844,0,-0.6007817,0.799413,0,-0.7682213,0.6401844,0,-0.6007817,0.799413,0,-0.7682213,0.6401844,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.4012665,0.9159613,0,-0.6007817,0.799413,0,-0.4012665,0.9159613,0,-0.6007817,0.799413,0,-0.4012665,0.9159613,0,-0.6007817,0.799413,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0.1088516,0.994058,0,0,1,0,0.1088516,0.994058,0,0,1,0,0.1088516,0.994058,0,0,-1,0,0,-1,0,0.1088516,-0.994058,0,0.1088516,-0.994058,0,0.1088516,-0.994058,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.4012665,-0.9159613,0,-0.4012665,-0.9159613,0,-0.6007817,-0.799413,0,-0.6007817,-0.799413,0,-0.6007817,-0.799413,0,-0.4012665,-0.9159613,0,-0.6007817,-0.799413,0,-0.6007817,-0.799413,0,-0.7682213,-0.6401844,0,-0.7682213,-0.6401844,0,-0.7682213,-0.6401844,0,-0.6007817,-0.799413,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.1480089,0.988986,0,-0.4012665,0.9159613,0,-0.1480089,0.988986,0,-0.4012665,0.9159613,0,-0.1480089,0.988986,0,-0.4012665,0.9159613,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.1480089,-0.988986,0,-0.1480089,-0.988986,0,-0.4012665,-0.9159613,0,-0.4012665,-0.9159613,0,-0.4012665,-0.9159613,0,-0.1480089,-0.988986,0,-0.9733051,-0.2295151,0,-0.9733051,-0.2295151,0,-1,0,0,-1,0,0,-1,0,0,-0.9733051,-0.2295151,0,-0.8946456,0.4467764,0,-0.8946456,0.4467764,0,-0.7682213,0.6401844,0,-0.7682213,0.6401844,0,-0.7682213,0.6401844,0,-0.8946456,0.4467764,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7682213,-0.6401844,0,-0.7682213,-0.6401844,0,-0.8946456,-0.4467764,0,-0.8946456,-0.4467764,0,-0.8946456,-0.4467764,0,-0.7682213,-0.6401844,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.9733051,0.2295151,0,-0.9733051,0.2295151,0,-0.8946456,0.4467764,0,-0.8946456,0.4467764,0,-0.8946456,0.4467764,0,-0.9733051,0.2295151,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,-0.1480089,-0.988986,0,-0.1480089,-0.988986,0,-0.1480089,-0.988986,0,0,-1,0,-0.8946456,-0.4467764,0,-0.8946456,-0.4467764,0,-0.9733051,-0.2295151,0,-0.9733051,-0.2295151,0,-0.9733051,-0.2295151,0,-0.8946456,-0.4467764,0,0,1,0,-0.1480089,0.988986,0,0,1,0,-0.1480089,0.988986,0,0,1,0,-0.1480089,0.988986,0,-1,0,0,-1,0,0,-0.9733051,0.2295151,0,-0.9733051,0.2295151,0,-0.9733051,0.2295151,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *752 { + a: 19.68504,18.55959,18.70079,18.55959,19.68504,19.62682,18.70079,19.62682,-16.73228,8.545185,-16.73228,9.612419,-15.74803,8.545185,-15.74803,9.612419,-19.68504,15.05663,-18.70079,15.05663,-19.68504,13.98939,-18.70079,13.98939,-19.68504,2.554601,-19.68504,3.621836,-18.70079,2.554601,-18.70079,3.621836,4.330709,25.59055,4.330709,9.84252,4.099749,26.63249,3.622061,27.58685,2.926392,28.3962,2.362205,25.59055,2.19975,26.12115,2.362205,11.81102,2.054608,29.01181,-2.362205,11.81102,1.91985,26.6003,1.537451,27.00242,1.072967,27.30604,1.059175,29.39665,0.5511976,27.49495,-4.330709,9.84252,-1.357408E-14,29.52756,-2.778494E-14,27.55906,-0.5511976,27.49495,-4.330709,25.59055,-1.059175,29.39665,-4.099749,26.63249,-3.622061,27.58685,-2.926392,28.3962,-2.362205,25.59055,-1.072967,27.30604,-1.537451,27.00242,-1.91985,26.6003,-2.054608,29.01181,-2.19975,26.12115,-16.73228,2.554601,-16.73228,3.621836,-15.74803,2.554601,-15.74803,3.621836,19.68504,21.98072,18.70079,21.98072,19.68504,23.04796,18.70079,23.04796,16.73228,3.621836,16.73228,2.554601,15.74803,3.621836,15.74803,2.554601,16.73228,24.04692,15.74803,24.04692,16.73228,25.11415,15.74803,25.11415,-15.74803,24.04692,-16.73228,24.04692,-15.74803,25.11415,-16.73228,25.11415,-19.68504,24.04692,-19.68504,25.11415,-18.70079,24.04692,-18.70079,25.11415,-19.68504,18.55959,-19.68504,19.62682,-18.70079,18.55959,-18.70079,19.62682,-19.68504,8.545185,-19.68504,9.612419,-18.70079,8.545185,-18.70079,9.612419,16.73228,9.612419,16.73228,8.545185,15.74803,9.612419,15.74803,8.545185,16.73228,9.84252,15.74803,9.84252,16.73228,25.59055,15.74803,25.59055,19.68504,24.04692,18.70079,24.04692,19.68504,25.11415,18.70079,25.11415,16.73228,15.05663,16.73228,13.98939,15.74803,15.05663,15.74803,13.98939,19.68504,9.612419,19.68504,8.545185,18.70079,9.612419,18.70079,8.545185,19.68504,3.621836,19.68504,2.554601,18.70079,3.621836,18.70079,2.554601,-16.73228,15.05663,-15.74803,15.05663,-16.73228,13.98939,-15.74803,13.98939,16.73228,21.98072,15.74803,21.98072,16.73228,23.04796,15.74803,23.04796,-15.74803,21.98072,-16.73228,21.98072,-15.74803,23.04796,-16.73228,23.04796,19.68504,15.05663,19.68504,13.98939,18.70079,15.05663,18.70079,13.98939,16.73228,18.55959,15.74803,18.55959,16.73228,19.62682,15.74803,19.62682,-19.68504,21.98072,-19.68504,23.04796,-18.70079,21.98072,-18.70079,23.04796,-15.74803,18.55959,-16.73228,18.55959,-15.74803,19.62682,-16.73228,19.62682,16.73228,4.330709,16.73228,-4.330709,15.74803,4.330709,15.74803,-4.330709,-16.73228,9.84252,-16.73228,25.59055,-15.74803,9.84252,-15.74803,25.59055,19.68504,17.95294,15.74803,17.95294,19.68504,18.50785,15.74803,18.50785,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,6.299212,9.84252,6.299212,7.874016,6.299212,25.59055,6.000681,27.14266,5.325931,28.57195,4.330709,25.59055,4.317266,29.78881,4.330709,9.84252,4.099749,26.63249,3.622061,27.58685,-4.330709,9.84252,3.037926,30.71695,2.926392,28.3962,2.054608,29.01181,-6.299212,7.874016,1.568121,31.29818,1.059175,29.39665,-1.536743E-14,29.52756,-2.842171E-14,31.49606,-1.059175,29.39665,-6.299212,25.59055,-6.000681,27.14266,-5.325931,28.57195,-4.330709,25.59055,-4.317266,29.78881,-4.099749,26.63249,-1.568121,31.29818,-2.054608,29.01181,-2.926392,28.3962,-3.037926,30.71695,-3.622061,27.58685,19.68504,21.44525,15.74803,21.44525,19.68504,22.00016,15.74803,22.00016,6.299212,25.59055,6.299212,7.874016,6.000681,27.14266,4.330709,9.84252,5.325931,28.57195,-6.299212,7.874016,4.330709,25.59055,4.317266,29.78881,4.099749,26.63249,3.037926,30.71695,3.622061,27.58685,2.926392,28.3962,1.568121,31.29818,2.054608,29.01181,1.059175,29.39665,2.971435E-14,31.49606,1.550349E-14,29.52756,-1.568121,31.29818,-1.059175,29.39665,-2.054608,29.01181,-3.037926,30.71695,-2.926392,28.3962,-3.622061,27.58685,-4.317266,29.78881,-4.099749,26.63249,-4.330709,25.59055,-5.325931,28.57195,-4.330709,9.84252,-6.000681,27.14266,-6.299212,25.59055,-6.299212,9.84252,4.330709,25.59055,4.330709,9.84252,4.099749,26.63249,2.362205,11.81102,3.622061,27.58685,2.926392,28.3962,-4.330709,9.84252,2.362205,25.59055,2.054608,29.01181,2.19975,26.12115,1.91985,26.6003,1.059175,29.39665,1.537451,27.00242,1.072967,27.30604,0.5511976,27.49495,1.169491E-14,29.52756,2.590576E-14,27.55906,-0.5511976,27.49495,-1.059175,29.39665,-1.072967,27.30604,-2.054608,29.01181,-1.537451,27.00242,-1.91985,26.6003,-2.19975,26.12115,-2.926392,28.3962,-2.362205,25.59055,-2.362205,11.81102,-3.622061,27.58685,-4.099749,26.63249,-4.330709,25.59055,19.68504,9.84252,18.70079,9.84252,19.68504,25.59055,18.70079,25.59055,-19.68504,9.84252,-19.68504,25.59055,-18.70079,9.84252,-18.70079,25.59055,19.68504,4.330709,19.68504,-4.330709,18.70079,4.330709,18.70079,-4.330709,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-19.68504,21.44525,-19.68504,22.00016,-15.74803,21.44525,-15.74803,22.00016,-19.68504,17.95294,-19.68504,18.50785,-15.74803,17.95294,-15.74803,18.50785,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,23.77779,15.74803,23.77779,19.68504,24.3327,15.74803,24.3327,-19.68504,-2.362205,-19.68504,2.362205,-15.74803,-2.362205,-15.74803,2.362205,-19.68504,23.77779,-19.68504,24.3327,-15.74803,23.77779,-15.74803,24.3327,-19.68504,2.629016,-19.68504,3.183929,-15.74803,2.629016,-15.74803,3.183929,19.68504,14.04222,19.68504,13.48731,15.74803,14.04222,15.74803,13.48731,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-19.68504,13.48731,-19.68504,14.04222,-15.74803,13.48731,-15.74803,14.04222,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,8.841699,19.68504,8.286785,15.74803,8.841699,15.74803,8.286785,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-19.68504,11.81102,-19.68504,25.59055,-15.74803,11.81102,-15.74803,25.59055,-19.68504,8.286785,-19.68504,8.841699,-15.74803,8.286785,-15.74803,8.841699,19.68504,11.81102,15.74803,11.81102,19.68504,25.59055,15.74803,25.59055,19.68504,3.183929,19.68504,2.629016,15.74803,3.183929,15.74803,2.629016,-15.74803,39.37008,-15.74803,0,15.74803,0,6.299212,9.84252,15.74803,39.37008,15.74803,39.37008,-15.74803,39.37008,15.74803,0,-15.74803,0,-6.299212,9.84252 + } + UVIndex: *876 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,18,19,17,19,20,17,20,21,17,21,20,22,21,23,17,20,24,22,23,25,17,22,24,26,26,24,27,27,24,28,24,29,28,28,29,30,17,25,31,29,32,30,30,32,33,33,32,34,35,31,25,32,36,34,37,35,25,38,37,25,39,38,25,25,40,39,34,36,41,41,36,42,42,36,43,44,39,40,36,44,43,45,44,40,43,44,45,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,145,144,147,146,144,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,162,163,161,163,164,161,164,165,161,164,166,165,165,167,161,165,166,168,168,166,169,167,170,161,166,171,169,169,171,172,172,171,173,161,170,174,171,175,173,173,175,176,176,175,177,175,178,177,177,178,179,180,174,170,181,180,170,182,181,170,170,183,182,184,182,183,185,184,183,178,186,179,179,186,187,187,186,188,189,184,185,186,189,188,190,189,185,188,189,190,191,193,192,194,192,193,195,197,196,198,196,197,199,198,197,200,196,198,201,198,199,199,202,201,203,201,202,204,203,202,205,203,204,206,205,204,207,206,204,208,206,207,209,208,207,210,209,207,211,209,210,212,211,210,213,211,212,214,213,212,215,214,212,216,214,215,217,216,215,218,217,215,219,217,218,220,219,218,221,220,218,222,220,221,221,200,222,222,200,198,223,200,221,224,200,223,225,200,224,226,228,227,229,227,228,230,229,228,231,229,230,232,227,229,233,229,231,231,234,233,235,233,234,236,235,234,237,236,234,238,236,237,239,238,237,240,239,237,241,240,237,242,240,241,243,242,241,244,243,241,245,243,244,246,245,244,247,245,246,248,247,246,249,248,246,250,249,246,251,249,250,252,251,250,250,232,252,252,232,229,253,232,250,254,232,253,255,232,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,319,318,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,333,332,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,347,346,349,348,346,350,352,351,353,351,352,354,356,355,357,355,356,358,360,359,361,359,360,362,364,363,365,363,364,145,146,318,320,318,146,347,348,332,334,332,348,366,367,174,368,174,367,174,180,366,161,174,368,369,161,368,162,369,368,368,370,162,162,370,163,163,370,164,180,181,366,164,370,166,181,182,366,182,184,366,184,189,366,370,366,189,166,370,171,186,370,189,171,370,175,178,370,186,175,370,178,202,199,371,204,202,371,199,197,371,372,204,371,207,204,372,210,207,372,212,210,372,215,212,372,373,371,197,195,373,197,195,196,373,374,373,196,200,374,196,372,374,200,218,215,372,200,375,372,221,218,372,375,224,372,223,221,372,224,223,372 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *292 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWindowRound, Model::RootNode + C: "OO",4941924740735411261,0 + + ;Geometry::, Model::Mesh wallWindowRound + C: "OO",5161106906201089393,4941924740735411261 + + ;Material::wood, Model::Mesh wallWindowRound + C: "OO",7178,4941924740735411261 + + ;Material::stone, Model::Mesh wallWindowRound + C: "OO",7184,4941924740735411261 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowRound.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowRound.fbx.import new file mode 100644 index 0000000..11aa702 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dvtykt02eyqrg" +path="res://.godot/imported/wallWindowRound.fbx-ffad91add225812e72e410cff18788c7.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowRound.fbx" +dest_files=["res://.godot/imported/wallWindowRound.fbx-ffad91add225812e72e410cff18788c7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowShutters.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowShutters.fbx new file mode 100644 index 0000000..03ff708 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowShutters.fbx @@ -0,0 +1,595 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 326 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWindowShutters.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWindowShutters.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5362882573425942654, "Model::wallWindowShutters", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4947160143941565663, "Geometry::", "Mesh" { + Vertices: *465 { + a: 4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,5,0,5,4,0,5,5,10,5,4,10,5,5,2.5,2,5,2.5,-2,4.75,2.5,2,4.75,2.5,-2,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4.25,2.5,2,4,2.5,2,4.25,7.5,2,4,7.5,2,4.25,2.5,2,4.25,2.5,-2,4,2.5,2,4,2.5,-2,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4,0,4,4,10,4,4,0,5,4,10,5,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,10,4,5,0,4,5,10,5,5,0,5,5,7,1.5,5,7,-1.5,4,7,1.5,4,7,-1.5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4,3,-1.5,4,7,-1.5,5,3,-1.5,5,7,-1.5,4.25,2.5,-2,4.25,7.5,-2,4,2.5,-2,4,7.5,-2,4.25,7.5,-2,4.25,7.5,2,4,7.5,-2,4,7.5,2,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4.25,2.5,2.5,4.25,2,2.5,4.25,8,2.5,4.25,7.5,2,4.25,2.5,2,4.25,7.5,-2,4.25,8,-2.5,4.25,2.5,-2,4.25,2,-2.5,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4.75,2.5,2,4.75,7.5,2,5,2.5,2,5,7.5,2,4.75,2.5,2.5,4.75,8,2.5,4.75,2,2.5,4.75,2.5,2,4.75,7.5,2,4.75,2.5,-2,4.75,2,-2.5,4.75,7.5,-2,4.75,8,-2.5,5,3,-1.5,5,3,1.5,4,3,-1.5,4,3,1.5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,3,1.5,5,3,1.5,4,7,1.5,5,7,1.5,4.75,2.5,-2,5,2.5,-2,4.75,7.5,-2,5,7.5,-2,5,7.5,-2,5,7.5,2,4.75,7.5,-2,4.75,7.5,2,5,2.5,-2,5,7,-1.5,5,7.5,-2,5,7.5,2,5,3,-1.5,5,7,1.5,5,2.5,2,5,3,1.5,4,3,1.5,4,2.5,2,4,3,-1.5,4,7,1.5,4,2.5,-2,4,7.5,2,4,7.5,-2,4,7,-1.5,4.25,0,4,4.25,2.5,2.5,4.25,0,-4,4.25,10,4,4.25,10,-4,4.75,10,4,4.75,10,-4,4.75,0,4,4.75,0,-4 + } + PolygonVertexIndex: *348 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,21,-21,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,40,-39,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,49,-49,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,85,86,-88,87,88,-86,87,86,-90,86,90,-90,88,91,-86,91,89,-91,85,91,-93,90,92,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,102,103,-105,104,105,-103,104,103,-107,103,107,-107,105,108,-103,108,106,-108,102,108,-110,107,109,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,131,134,-131,135,131,-134,136,130,-135,137,135,-134,137,136,-135,133,136,-138,138,140,-140,141,138,-140,139,140,-143,139,143,-142,144,142,-141,141,143,-146,143,144,-146,140,145,-145,7,8,-49,50,48,-9,39,40,-21,22,20,-41,85,92,-147,147,85,-147,86,147,-147,146,92,-149,146,149,-87,150,148,-93,86,149,-91,149,150,-91,92,90,-151,102,109,-152,101,102,-152,103,101,-152,151,109,-153,151,153,-104,154,152,-110,103,153,-108,153,154,-108,109,107,-155 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1044 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *310 { + a: -15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.68504,7.874016,19.68504,-7.874016,18.70079,7.874016,18.70079,-7.874016,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,16.73228,9.84252,15.74803,9.84252,16.73228,29.52756,15.74803,29.52756,16.73228,7.874016,16.73228,-7.874016,15.74803,7.874016,15.74803,-7.874016,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,5.905512,19.68504,-5.905512,15.74803,5.905512,15.74803,-5.905512,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,15.74803,11.81102,15.74803,27.55906,19.68504,11.81102,19.68504,27.55906,-16.73228,9.84252,-16.73228,29.52756,-15.74803,9.84252,-15.74803,29.52756,-16.73228,-7.874016,-16.73228,7.874016,-15.74803,-7.874016,-15.74803,7.874016,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,9.84252,9.84252,9.84252,7.874016,9.84252,31.49606,7.874016,29.52756,7.874016,9.84252,-7.874016,29.52756,-9.84252,31.49606,-7.874016,9.84252,-9.84252,7.874016,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,18.70079,9.84252,18.70079,29.52756,19.68504,9.84252,19.68504,29.52756,-9.84252,9.84252,-9.84252,31.49606,-9.84252,7.874016,-7.874016,9.84252,-7.874016,29.52756,7.874016,9.84252,9.84252,7.874016,7.874016,29.52756,9.84252,31.49606,-19.68504,-5.905512,-19.68504,5.905512,-15.74803,-5.905512,-15.74803,5.905512,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,11.81102,-19.68504,11.81102,-15.74803,27.55906,-19.68504,27.55906,-18.70079,9.84252,-19.68504,9.84252,-18.70079,29.52756,-19.68504,29.52756,-19.68504,-7.874016,-19.68504,7.874016,-18.70079,-7.874016,-18.70079,7.874016,7.874016,9.84252,5.905512,27.55906,7.874016,29.52756,-7.874016,29.52756,5.905512,11.81102,-5.905512,27.55906,-7.874016,9.84252,-5.905512,11.81102,5.905512,11.81102,7.874016,9.84252,-5.905512,11.81102,5.905512,27.55906,-7.874016,9.84252,7.874016,29.52756,-7.874016,29.52756,-5.905512,27.55906,15.74803,0,9.84252,9.84252,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,-15.74803,39.37008,15.74803,39.37008,-15.74803,0,15.74803,0 + } + UVIndex: *348 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,21,20,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,40,38,42,44,43,45,43,44,46,48,47,49,47,48,50,49,48,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,85,86,87,87,88,85,87,86,89,86,90,89,88,91,85,91,89,90,85,91,92,90,92,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,102,103,104,104,105,102,104,103,106,103,107,106,105,108,102,108,106,107,102,108,109,107,109,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,131,134,130,135,131,133,136,130,134,137,135,133,137,136,134,133,136,137,138,140,139,141,138,139,139,140,142,139,143,141,144,142,140,141,143,145,143,144,145,140,145,144,7,8,48,50,48,8,39,40,20,22,20,40,85,92,146,147,85,146,86,147,146,146,92,148,146,149,86,150,148,92,86,149,90,149,150,90,92,90,150,102,109,151,101,102,151,103,101,151,151,109,152,151,153,103,154,152,109,103,153,107,153,154,107,109,107,154 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *116 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4840801820567611023, "Model::detail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",4.625,3,-1.5 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5005040423624065141, "Geometry::", "Mesh" { + Vertices: *576 { + a: -0.0625,1.3,2.2,-0.1875,1.3,2.2,-0.0625,1.3,3,-0.1875,1.3,3,-0.0625,2.7,2.2,-0.0625,2.45,2.2,-0.0625,2.7,3,-0.0625,2.45,3,-0.0625,1.55,1.05,-0.0625,1.3,1.05,-0.0625,1.55,1.95,-0.0625,1.3,1.95,-0.0625,1.55,2.2,-0.0625,1.55,3,-0.1875,1.55,2.2,-0.1875,1.55,3,-0.0625,1.55,1.05,-0.0625,1.55,1.95,-0.1875,1.55,1.05,-0.1875,1.55,1.95,-0.0625,2.45,2.2,-0.1875,2.45,2.2,-0.0625,2.45,3,-0.1875,2.45,3,-0.0625,2.45,1.05,-0.1875,2.45,1.05,-0.0625,2.45,1.95,-0.1875,2.45,1.95,-0.0625,2.45,1.713521E-08,-0.1875,2.45,1.713521E-08,-0.0625,2.45,0.8,-0.1875,2.45,0.8,0,9.023893E-16,1.05,0,9.023893E-16,0.8,-0.25,0,1.05,-0.25,0,0.8,-0.25,0,1.95,-0.25,4,1.95,-0.25,0,2.2,-0.25,4,2.2,-0.25,0,0.8,-0.25,4,0.8,-0.25,0,1.05,-0.25,4,1.05,-1.804779E-15,4,1.95,-1.804779E-15,4,2.2,-0.25,4,1.95,-0.25,4,2.2,-1.804779E-15,4,1.95,0,9.023893E-16,1.95,-1.804779E-15,4,2.2,0,9.023893E-16,2.2,-1.804779E-15,4,0.8,-1.804779E-15,4,1.05,-0.25,4,0.8,-0.25,4,1.05,-1.804779E-15,4,0.8,0,9.023893E-16,0.8,-1.804779E-15,4,1.05,0,9.023893E-16,1.05,0,9.023893E-16,2.2,0,9.023893E-16,1.95,-0.25,0,2.2,-0.25,0,1.95,-0.0625,1.3,0,-0.1875,1.3,0,-0.0625,1.3,0.8,-0.1875,1.3,0.8,-0.1875,2.45,2.2,-0.1875,2.7,2.2,-0.1875,2.45,3,-0.1875,2.7,3,-0.0625,2.7,1.05,-0.0625,2.7,1.95,-0.1875,2.7,1.05,-0.1875,2.7,1.95,-0.0625,2.7,1.05,-0.0625,2.45,1.05,-0.0625,2.7,1.95,-0.0625,2.45,1.95,-0.0625,1.3,3,-0.1875,1.3,3,-0.0625,1.55,3,-0.1875,1.55,3,-0.0625,1.55,3.725045E-09,-0.0625,1.55,0.8,-0.1875,1.55,3.725045E-09,-0.1875,1.55,0.8,-0.1875,2.45,1.713521E-08,-0.0625,2.45,1.713521E-08,-0.1875,2.7,2.086026E-08,-0.0625,2.7,2.086026E-08,-0.0625,1.3,0,-0.0625,1.3,0.8,-0.0625,1.55,3.725045E-09,-0.0625,1.55,0.8,-0.1875,1.3,0,-0.0625,1.3,0,-0.1875,1.55,3.725045E-09,-0.0625,1.55,3.725045E-09,-0.0625,2.45,3,-0.1875,2.45,3,-0.0625,2.7,3,-0.1875,2.7,3,-0.1875,1.3,1.05,-0.1875,1.55,1.05,-0.1875,1.3,1.95,-0.1875,1.55,1.95,-0.1875,2.45,1.05,-0.1875,2.7,1.05,-0.1875,2.45,1.95,-0.1875,2.7,1.95,-0.0625,1.3,1.05,-0.1875,1.3,1.05,-0.0625,1.3,1.95,-0.1875,1.3,1.95,-0.1875,1.3,0,-0.1875,1.55,3.725045E-09,-0.1875,1.3,0.8,-0.1875,1.55,0.8,-0.1875,1.3,2.2,-0.1875,1.55,2.2,-0.1875,1.3,3,-0.1875,1.55,3,-0.0625,1.55,2.2,-0.0625,1.3,2.2,-0.0625,1.55,3,-0.0625,1.3,3,-0.1875,2.45,1.713521E-08,-0.1875,2.7,2.086026E-08,-0.1875,2.45,0.8,-0.1875,2.7,0.8,-0.0625,2.45,1.713521E-08,-0.0625,2.45,0.8,-0.0625,2.7,2.086026E-08,-0.0625,2.7,0.8,-0.0625,2.7,2.086026E-08,-0.0625,2.7,0.8,-0.1875,2.7,2.086026E-08,-0.1875,2.7,0.8,-0.0625,2.7,2.2,-0.0625,2.7,3,-0.1875,2.7,2.2,-0.1875,2.7,3,0,9.023893E-16,0.8,-0.1875,1.3,0.8,-0.25,0,0.8,-0.25,4,0.8,-0.0625,1.3,0.8,-1.804779E-15,4,0.8,-0.1875,1.55,0.8,-0.0625,1.55,0.8,-0.1875,2.45,0.8,-0.0625,2.45,0.8,-0.1875,2.7,0.8,-0.0625,2.7,0.8,-0.0625,2.7,1.05,-1.804779E-15,4,1.05,-0.0625,2.45,1.05,-0.1875,2.7,1.05,-0.25,4,1.05,-0.1875,2.45,1.05,-0.1875,1.55,1.05,-0.0625,1.55,1.05,-0.0625,1.3,1.05,0,9.023893E-16,1.05,-0.1875,1.3,1.05,-0.25,0,1.05,-0.1875,2.7,1.95,-0.25,4,1.95,-0.1875,2.45,1.95,-0.0625,2.7,1.95,-1.804779E-15,4,1.95,-0.0625,2.45,1.95,-0.0625,1.55,1.95,-0.1875,1.55,1.95,-0.0625,1.3,1.95,0,9.023893E-16,1.95,-0.1875,1.3,1.95,-0.25,0,1.95,-0.0625,2.7,2.2,-1.804779E-15,4,2.2,-0.0625,2.45,2.2,-0.1875,2.7,2.2,-0.25,4,2.2,-0.1875,2.45,2.2,-0.1875,1.55,2.2,-0.0625,1.55,2.2,-0.0625,1.3,2.2,0,9.023893E-16,2.2,-0.1875,1.3,2.2,-0.25,0,2.2 + } + PolygonVertexIndex: *384 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,145,148,-145,149,144,-149,150,145,-148,151,149,-149,151,150,-153,152,150,-148,152,153,-152,153,149,-152,154,152,-148,155,149,-154,155,154,-148,147,149,-156,156,158,-158,159,156,-158,157,160,-160,159,160,-162,161,162,-159,161,160,-163,162,163,-159,158,163,-158,163,164,-158,157,164,-166,162,160,-167,166,165,-165,160,167,-167,165,166,-168,168,170,-170,171,168,-170,169,172,-172,171,172,-174,170,173,-175,173,172,-175,174,175,-171,170,175,-170,174,172,-177,172,177,-177,175,178,-170,178,176,-178,169,178,-180,177,179,-179,180,182,-182,183,180,-182,181,184,-184,183,184,-186,185,186,-183,185,184,-187,186,187,-183,182,187,-182,187,188,-182,181,188,-190,186,184,-191,190,189,-189,184,191,-191,189,190,-192 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1152 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *384 { + a: -0.246063,8.661417,-0.738189,8.661417,-0.246063,11.81102,-0.738189,11.81102,-8.661417,10.62992,-8.661417,9.645669,-11.81102,10.62992,-11.81102,9.645669,-4.133858,6.102362,-4.133858,5.11811,-7.677166,6.102362,-7.677166,5.11811,0.246063,8.661417,0.246063,11.81102,0.738189,8.661417,0.738189,11.81102,0.246063,4.133858,0.246063,7.677165,0.738189,4.133858,0.738189,7.677165,-0.246063,8.661417,-0.738189,8.661417,-0.246063,11.81102,-0.738189,11.81102,-0.246063,4.133858,-0.738189,4.133858,-0.246063,7.677165,-0.738189,7.677165,-0.246063,-7.62608E-08,-0.738189,-7.62608E-08,-0.246063,3.149606,-0.738189,3.149606,6.411862E-30,4.133858,6.411862E-30,3.149606,-0.984252,4.133858,-0.984252,3.149606,7.677166,4.440892E-16,7.677166,15.74803,8.661417,4.440892E-16,8.661417,15.74803,3.149606,4.440892E-16,3.149606,15.74803,4.133858,4.440892E-16,4.133858,15.74803,-2.131628E-14,7.677166,-2.131628E-14,8.661417,0.984252,7.677166,0.984252,8.661417,-7.677166,15.74803,-7.677166,3.552714E-15,-8.661417,15.74803,-8.661417,3.552714E-15,-2.131628E-14,3.149606,-2.131628E-14,4.133858,0.984252,3.149606,0.984252,4.133858,-3.149606,15.74803,-3.149606,3.552714E-15,-4.133858,15.74803,-4.133858,3.552714E-15,6.411862E-30,8.661417,6.411862E-30,7.677166,-0.984252,8.661417,-0.984252,7.677166,-0.246063,-7.626078E-08,-0.738189,-7.626078E-08,-0.246063,3.149606,-0.738189,3.149606,8.661417,9.645669,8.661417,10.62992,11.81102,9.645669,11.81102,10.62992,0.246063,4.133858,0.246063,7.677165,0.738189,4.133858,0.738189,7.677165,-4.133858,10.62992,-4.133858,9.645669,-7.677166,10.62992,-7.677166,9.645669,-0.246063,5.11811,-0.738189,5.11811,-0.246063,6.102362,-0.738189,6.102362,0.246063,-7.62608E-08,0.246063,3.149606,0.738189,-7.62608E-08,0.738189,3.149606,0.738189,9.645669,0.246063,9.645669,0.738189,10.62992,0.246063,10.62992,-6.938894E-17,5.11811,-3.149606,5.11811,-1.466553E-08,6.102362,-3.149606,6.102362,0.738189,5.11811,0.246063,5.11811,0.738189,6.102362,0.246063,6.102362,-0.246063,9.645669,-0.738189,9.645669,-0.246063,10.62992,-0.738189,10.62992,4.133858,5.11811,4.133858,6.102362,7.677166,5.11811,7.677166,6.102362,4.133858,9.645669,4.133858,10.62992,7.677166,9.645669,7.677166,10.62992,-0.246063,4.133858,-0.738189,4.133858,-0.246063,7.677165,-0.738189,7.677165,0,5.11811,1.466553E-08,6.102362,3.149606,5.11811,3.149606,6.102362,8.661417,5.11811,8.661417,6.102362,11.81102,5.11811,11.81102,6.102362,-8.661417,6.102362,-8.661417,5.11811,-11.81102,6.102362,-11.81102,5.11811,6.746146E-08,9.645669,8.212699E-08,10.62992,3.149606,9.645669,3.149606,10.62992,-6.746146E-08,9.645669,-3.149606,9.645669,-8.212699E-08,10.62992,-3.149606,10.62992,0.246063,-7.62608E-08,0.246063,3.149606,0.738189,-7.62608E-08,0.738189,3.149606,0.246063,8.661417,0.246063,11.81102,0.738189,8.661417,0.738189,11.81102,0,3.552714E-15,0.738189,5.11811,0.984252,4.071532E-32,0.984252,15.74803,0.246063,5.11811,7.105427E-15,15.74803,0.738189,6.102362,0.246063,6.102362,0.738189,9.645669,0.246063,9.645669,0.738189,10.62992,0.246063,10.62992,-0.246063,10.62992,-7.105427E-15,15.74803,-0.246063,9.645669,-0.738189,10.62992,-0.984252,15.74803,-0.738189,9.645669,-0.738189,6.102362,-0.246063,6.102362,-0.246063,5.11811,0,3.552714E-15,-0.738189,5.11811,-0.984252,5.343885E-32,0.738189,10.62992,0.984252,15.74803,0.738189,9.645669,0.246063,10.62992,7.105427E-15,15.74803,0.246063,9.645669,0.246063,6.102362,0.738189,6.102362,0.246063,5.11811,0,3.552714E-15,0.738189,5.11811,0.984252,9.924359E-32,-0.246063,10.62992,-7.105427E-15,15.74803,-0.246063,9.645669,-0.738189,10.62992,-0.984252,15.74803,-0.738189,9.645669,-0.738189,6.102362,-0.246063,6.102362,-0.246063,5.11811,0,3.552714E-15,-0.738189,5.11811,-0.984252,1.119671E-31 + } + UVIndex: *384 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,145,148,144,149,144,148,150,145,147,151,149,148,151,150,152,152,150,147,152,153,151,153,149,151,154,152,147,155,149,153,155,154,147,147,149,155,156,158,157,159,156,157,157,160,159,159,160,161,161,162,158,161,160,162,162,163,158,158,163,157,163,164,157,157,164,165,162,160,166,166,165,164,160,167,166,165,166,167,168,170,169,171,168,169,169,172,171,171,172,173,170,173,174,173,172,174,174,175,170,170,175,169,174,172,176,172,177,176,175,178,169,178,176,177,169,178,179,177,179,178,180,182,181,183,180,181,181,184,183,183,184,185,185,186,182,185,184,186,186,187,182,182,187,181,187,188,181,181,188,189,186,184,190,190,189,188,184,191,190,189,190,191 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *128 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5334070092421471789, "Model::shutter", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",3.466506,2.5,3.424038 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-120,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,0.5 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4881393944741176455, "Geometry::", "Mesh" { + Vertices: *117 { + a: -1.3125,0.625,0.5,-3.609557E-15,5,0.5,-1.5,0,0.5,-3.609557E-15,0,-3.609557E-15,-3.609557E-15,0,0.5,0,5,0,-3.609557E-15,5,0.5,-1.5,0,0,-1.5,5,0,-1.5,0,0.5,-1.5,0.625,0.5,-1.5,4.375,0.5,-1.5,5,0.5,-1.5,1.25,0.5,-1.5,3.75,0.5,-3.609557E-15,0,0.5,-3.609557E-15,0,-3.609557E-15,-1.5,0,0.5,-1.5,0,0,0,5,0,-3.609557E-15,5,0.5,-1.5,5,0,-1.5,5,0.5,-1.5,0,0,-3.609557E-15,0,-3.609557E-15,-1.5,5,0,0,5,0,-3.609557E-15,0,0.5,-1.5,0,0.5,-3.609557E-15,5,0.5,-1.3125,0.625,0.5,-1.5,0.625,0.5,-1.3125,1.25,0.5,-1.5,1.25,0.5,-1.3125,3.75,0.5,-1.5,3.75,0.5,-1.3125,4.375,0.5,-1.5,4.375,0.5,-1.5,5,0.5 + } + PolygonVertexIndex: *84 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,10,8,-10,10,11,-9,12,8,-12,13,11,-11,14,11,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,31,-29,32,30,-30,33,32,-30,34,33,-30,34,35,-34,36,34,-30,37,36,-30,38,37,-30,34,36,-36,37,35,-37,30,32,-32,33,31,-33 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *252 { + a: 0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *78 { + a: -5.167323,2.46063,-1.421085E-14,19.68504,-5.905512,1.205366E-16,1.421085E-14,-4.95462E-30,-1.968504,-4.95462E-30,0,19.68504,-1.968504,19.68504,-2.016104E-14,-1.431868E-15,-2.016104E-14,19.68504,1.968504,-1.431868E-15,1.968504,2.46063,1.968504,17.22441,1.968504,19.68504,1.968504,4.92126,1.968504,14.76378,-1.421085E-14,1.968504,-1.421085E-14,-1.421085E-14,-5.905512,1.968504,-5.905512,0,0,0,1.421085E-14,1.968504,5.905512,0,5.905512,1.968504,5.905512,0,1.421085E-14,5.044674E-44,5.905512,19.68504,0,19.68504,-1.421085E-14,1.205366E-16,-5.905512,1.205366E-16,-1.421085E-14,19.68504,-5.167323,2.46063,-5.905512,2.46063,-5.167323,4.92126,-5.905512,4.92126,-5.167323,14.76378,-5.905512,14.76378,-5.167323,17.22441,-5.905512,17.22441,-5.905512,19.68504 + } + UVIndex: *84 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,10,8,9,10,11,8,12,8,11,13,11,10,14,11,13,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,31,28,32,30,29,33,32,29,34,33,29,34,35,33,36,34,29,37,36,29,38,37,29,34,36,35,37,35,36,30,32,31,33,31,32 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *28 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5241859866004814568, "Model::shutter", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",4.216506,2.5,-2 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-180,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",-1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5642842058303368621, "Geometry::", "Mesh" { + Vertices: *108 { + a: -0.75,0,1.424038,-0.9665064,0,1.299038,-0.75,5,1.424038,-0.9665064,5,1.299038,-0.2165063,0,0,0,0,0.125,-0.2165063,0.625,3.609557E-15,0,5,0.125,-0.2165063,1.25,3.609557E-15,-0.2165063,3.75,3.609557E-15,-0.2165063,4.375,3.609557E-15,-0.2165063,5,3.609557E-15,0,0,0.125,-0.2165063,0,0,-0.75,0,1.424038,-0.9665064,0,1.299038,0,5,0.125,-0.75,5,1.424038,-0.2165063,5,3.609557E-15,-0.9665064,5,1.299038,0,5,0.125,0,0,0.125,-0.75,5,1.424038,-0.75,0,1.424038,-0.2165063,0,0,-0.2165063,0.625,3.609557E-15,-0.9665064,0,1.299038,-0.3102564,0.625,0.1623798,-0.3102564,1.25,0.1623798,-0.3102564,3.75,0.1623798,-0.2165063,3.75,3.609557E-15,-0.2165063,1.25,3.609557E-15,-0.3102564,4.375,0.1623798,-0.9665064,5,1.299038,-0.2165063,5,3.609557E-15,-0.2165063,4.375,3.609557E-15 + } + PolygonVertexIndex: *84 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,7,-10,11,7,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,27,-27,29,28,-27,29,30,-29,31,28,-31,32,29,-27,26,33,-33,33,34,-33,35,32,-35,30,29,-36,32,35,-30,25,27,-32,28,31,-28 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *252 { + a: -0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *72 { + a: 0.246063,1.77235E-15,-0.738189,1.77235E-15,0.246063,19.68504,-0.738189,19.68504,0.738189,1.319617E-16,-0.246063,1.319617E-16,0.738189,2.46063,-0.246063,19.68504,0.738189,4.92126,0.738189,14.76378,0.738189,17.22441,0.738189,19.68504,0,0.492126,-0.8523872,0,-2.952756,5.606449,-3.805143,5.114323,0,0.492126,2.952756,5.606449,0.8523872,1.421085E-14,3.805143,5.114323,-0.4261936,19.68504,-0.4261936,-1.651487E-17,-6.331706,19.68504,-6.331706,-1.651487E-17,0.4261936,-3.604293E-17,0.4261936,2.46063,6.331706,-3.604293E-17,1.164383,2.46063,1.164383,4.92126,1.164383,14.76378,0.4261936,14.76378,0.4261936,4.92126,1.164383,17.22441,6.331706,19.68504,0.4261936,19.68504,0.4261936,17.22441 + } + UVIndex: *84 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,7,9,11,7,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,27,26,29,28,26,29,30,28,31,28,30,32,29,26,26,33,32,33,34,32,35,32,34,30,29,35,32,35,29,25,27,31,28,31,27 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *28 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWindowShutters, Model::RootNode + C: "OO",5362882573425942654,0 + + ;Geometry::, Model::Mesh wallWindowShutters + C: "OO",4947160143941565663,5362882573425942654 + + ;Material::wood, Model::Mesh wallWindowShutters + C: "OO",7178,5362882573425942654 + + ;Material::stone, Model::Mesh wallWindowShutters + C: "OO",7184,5362882573425942654 + + ;Model::Mesh detail, Model::USING PARENT + C: "OO",4840801820567611023,5362882573425942654 + + ;Geometry::, Model::Mesh detail + C: "OO",5005040423624065141,4840801820567611023 + + ;Material::wood, Model::Mesh detail + C: "OO",7178,4840801820567611023 + + ;Model::Mesh shutter, Model::USING PARENT + C: "OO",5334070092421471789,5362882573425942654 + + ;Geometry::, Model::Mesh shutter + C: "OO",4881393944741176455,5334070092421471789 + + ;Material::wood, Model::Mesh shutter + C: "OO",7178,5334070092421471789 + + ;Material::stone, Model::Mesh shutter + C: "OO",7184,5334070092421471789 + + ;Model::Mesh shutter, Model::USING PARENT + C: "OO",5241859866004814568,5362882573425942654 + + ;Geometry::, Model::Mesh shutter + C: "OO",5642842058303368621,5241859866004814568 + + ;Material::wood, Model::Mesh shutter + C: "OO",7178,5241859866004814568 + + ;Material::stone, Model::Mesh shutter + C: "OO",7184,5241859866004814568 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowShutters.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowShutters.fbx.import new file mode 100644 index 0000000..fe27cdb --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowShutters.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cwdpvdu4h3cv1" +path="res://.godot/imported/wallWindowShutters.fbx-62fb565378fcd7982961a106f3c7745b.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowShutters.fbx" +dest_files=["res://.godot/imported/wallWindowShutters.fbx-62fb565378fcd7982961a106f3c7745b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowSmall.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowSmall.fbx new file mode 100644 index 0000000..493e5c8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowSmall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 392 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWindowSmall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWindowSmall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4821845420829831364, "Model::wallWindowSmall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5566454566909125403, "Geometry::", "Mesh" { + Vertices: *462 { + a: 5,0,5,4,0,5,5,10,5,4,10,5,5,7.5,-1.1,5,7.5,1.1,4.75,7.5,-1.1,4.75,7.5,1.1,4.25,2.5,1.1,4.25,2.5,-1.1,4,2.5,1.1,4,2.5,-1.1,4.75,2.5,1.6,4.75,8,1.6,4.75,2,1.6,4.75,2.5,1.1,4.75,7.5,1.1,4.75,2.5,-1.1,4.75,2,-1.6,4.75,7.5,-1.1,4.75,8,-1.6,4.25,7.5,-1.1,4.25,7.5,1.1,4,7.5,-1.1,4,7.5,1.1,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,2.5,-1.1,4.25,7.5,-1.1,4,2.5,-1.1,4,7.5,-1.1,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4.25,2.5,1.6,4.25,2,1.6,4.25,8,1.6,4.25,7.5,1.1,4.25,2.5,1.1,4.25,7.5,-1.1,4.25,8,-1.6,4.25,2.5,-1.1,4.25,2,-1.6,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,10,4,5,0,4,5,10,5,5,0,5,4,3,0.6,5,3,0.6,4,7,0.6,5,7,0.6,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4,3,-0.6,4,7,-0.6,5,3,-0.6,5,7,-0.6,5,3,-0.6,5,3,0.6,4,3,-0.6,4,3,0.6,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4.75,2.5,-1.1,5,2.5,-1.1,4.75,7.5,-1.1,5,7.5,-1.1,4.75,2.5,1.1,4.75,7.5,1.1,5,2.5,1.1,5,7.5,1.1,4,0,4,4,10,4,4,0,5,4,10,5,5,2.5,1.1,5,2.5,-1.1,4.75,2.5,1.1,4.75,2.5,-1.1,4.25,2.5,1.1,4,2.5,1.1,4.25,7.5,1.1,4,7.5,1.1,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,7,0.6,5,7,-0.6,4,7,0.6,4,7,-0.6,4,3,0.6,4,2.5,1.1,4,3,-0.6,4,7,0.6,4,2.5,-1.1,4,7.5,1.1,4,7.5,-1.1,4,7,-0.6,5,2.5,-1.1,5,7,-0.6,5,7.5,-1.1,5,7.5,1.1,5,3,-0.6,5,7,0.6,5,2.5,1.1,5,3,0.6,4.75,10,4,4.75,10,-4,4.75,0,4,4.75,0,-4,4.25,0,4,4.25,0,-4,4.25,10,4,4.25,10,-4 + } + PolygonVertexIndex: *348 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,13,14,-16,15,16,-14,15,14,-18,14,18,-18,16,19,-14,19,17,-19,13,19,-21,18,20,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,28,-28,30,29,-28,31,33,-33,34,32,-34,35,34,-34,36,35,-34,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,58,59,-61,60,61,-59,60,59,-63,59,63,-63,61,64,-59,64,62,-64,58,64,-66,63,65,-65,66,68,-68,69,67,-69,70,69,-69,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,83,-83,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,130,-132,131,132,-135,131,135,-134,136,134,-133,133,135,-138,135,136,-138,132,137,-137,138,140,-140,141,139,-141,139,142,-139,143,139,-142,144,138,-143,145,143,-142,145,144,-143,141,144,-146,34,35,-83,84,82,-36,28,29,-69,70,68,-30,13,20,-147,12,13,-147,14,12,-147,146,20,-148,146,148,-15,149,147,-21,14,148,-19,148,149,-19,20,18,-150,58,65,-151,57,58,-151,59,57,-151,150,65,-152,150,152,-60,153,151,-66,59,152,-64,152,153,-64,65,63,-154 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1044 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *308 { + a: 19.68504,1.776357E-15,15.74803,1.776357E-15,19.68504,39.37008,15.74803,39.37008,-19.68504,-4.330709,-19.68504,4.330709,-18.70079,-4.330709,-18.70079,4.330709,16.73228,4.330709,16.73228,-4.330709,15.74803,4.330709,15.74803,-4.330709,-6.299212,9.84252,-6.299212,31.49606,-6.299212,7.874016,-4.330709,9.84252,-4.330709,29.52756,4.330709,9.84252,6.299212,7.874016,4.330709,29.52756,6.299212,31.49606,-16.73228,-4.330709,-16.73228,4.330709,-15.74803,-4.330709,-15.74803,4.330709,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-16.73228,9.84252,-16.73228,29.52756,-15.74803,9.84252,-15.74803,29.52756,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,6.299212,9.84252,6.299212,7.874016,6.299212,31.49606,4.330709,29.52756,4.330709,9.84252,-4.330709,29.52756,-6.299212,31.49606,-4.330709,9.84252,-6.299212,7.874016,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-15.74803,11.81102,-19.68504,11.81102,-15.74803,27.55906,-19.68504,27.55906,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,15.74803,11.81102,15.74803,27.55906,19.68504,11.81102,19.68504,27.55906,-19.68504,-2.362205,-19.68504,2.362205,-15.74803,-2.362205,-15.74803,2.362205,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-18.70079,9.84252,-19.68504,9.84252,-18.70079,29.52756,-19.68504,29.52756,18.70079,9.84252,18.70079,29.52756,19.68504,9.84252,19.68504,29.52756,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,4.330709,19.68504,-4.330709,18.70079,4.330709,18.70079,-4.330709,16.73228,9.84252,15.74803,9.84252,16.73228,29.52756,15.74803,29.52756,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,2.362205,19.68504,-2.362205,15.74803,2.362205,15.74803,-2.362205,2.362205,11.81102,4.330709,9.84252,-2.362205,11.81102,2.362205,27.55906,-4.330709,9.84252,4.330709,29.52756,-4.330709,29.52756,-2.362205,27.55906,4.330709,9.84252,2.362205,27.55906,4.330709,29.52756,-4.330709,29.52756,2.362205,11.81102,-2.362205,27.55906,-4.330709,9.84252,-2.362205,11.81102,-15.74803,39.37008,15.74803,39.37008,-15.74803,0,15.74803,0,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008 + } + UVIndex: *348 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,13,14,15,15,16,13,15,14,17,14,18,17,16,19,13,19,17,18,13,19,20,18,20,19,21,23,22,24,22,23,25,27,26,28,26,27,29,28,27,30,29,27,31,33,32,34,32,33,35,34,33,36,35,33,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,58,59,60,60,61,58,60,59,62,59,63,62,61,64,58,64,62,63,58,64,65,63,65,64,66,68,67,69,67,68,70,69,68,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,83,82,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,130,131,131,132,134,131,135,133,136,134,132,133,135,137,135,136,137,132,137,136,138,140,139,141,139,140,139,142,138,143,139,141,144,138,142,145,143,141,145,144,142,141,144,145,34,35,82,84,82,35,28,29,68,70,68,29,13,20,146,12,13,146,14,12,146,146,20,147,146,148,14,149,147,20,14,148,18,148,149,18,20,18,149,58,65,150,57,58,150,59,57,150,150,65,151,150,152,59,153,151,65,59,152,63,152,153,63,65,63,153 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *116 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWindowSmall, Model::RootNode + C: "OO",4821845420829831364,0 + + ;Geometry::, Model::Mesh wallWindowSmall + C: "OO",5566454566909125403,4821845420829831364 + + ;Material::wood, Model::Mesh wallWindowSmall + C: "OO",7178,4821845420829831364 + + ;Material::stone, Model::Mesh wallWindowSmall + C: "OO",7184,4821845420829831364 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowSmall.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowSmall.fbx.import new file mode 100644 index 0000000..cee041d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowSmall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b6v6vaydcwafu" +path="res://.godot/imported/wallWindowSmall.fbx-d537c4efd8eaf746c07b589f11a58088.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowSmall.fbx" +dest_files=["res://.godot/imported/wallWindowSmall.fbx-d537c4efd8eaf746c07b589f11a58088.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowStone.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowStone.fbx new file mode 100644 index 0000000..6c0af21 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowStone.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 438 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWindowStone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWindowStone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5434081392479824621, "Model::wallWindowStone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5501652049892042876, "Geometry::", "Mesh" { + Vertices: *1008 { + a: 4.25,7.5,-1.1,4.25,7.5,-0.55,4,7.5,-1.1,4.125,7.5,-0.55,4.125,7.5,0.55,4,7.5,1.1,4.25,7.5,1.1,4.25,7.5,0.55,5,3,-0.6,4,3,-0.6,5,7,-0.6,4,7,-0.6,4.125,7.5,-0.55,4.125,8,-0.55,4.125,7.5,0.55,4.125,8,0.55,4.125,2,-0.55,4.25,2,-0.55,4.125,2.5,-0.55,4.25,2.5,-0.55,4.25,5.75,1.1,4.125,5.75,1.1,4.25,7.5,1.1,4,7.5,1.1,4.125,4.375,1.1,4,2.5,1.1,4.25,4.375,1.1,4.25,2.5,1.1,4.75,5.75,-1.1,4.875,5.75,-1.1,4.75,7.5,-1.1,5,7.5,-1.1,4.875,4.375,-1.1,5,2.5,-1.1,4.75,4.375,-1.1,4.75,2.5,-1.1,4.25,8,-0.55,4.25,8,0.55,4.125,8,-0.55,4.125,8,0.55,4.75,7.5,-0.55,4.875,7.5,-0.55,4.75,8,-0.55,4.875,8,-0.55,4.75,4.375,-1.6,4.875,4.375,-1.6,4.75,5.75,-1.6,4.875,5.75,-1.6,4.25,5.75,-1.6,4.25,5.75,-1.1,4.125,5.75,-1.6,4.125,5.75,-1.1,4.875,8,0.55,4.75,8,0.55,4.875,8,-0.55,4.75,8,-0.55,4.875,2,0.55,4.75,2,0.55,4.875,2.5,0.55,4.75,2.5,0.55,4.875,2.5,-0.55,4.875,2,-0.55,4.875,2.5,0.55,4.875,2,0.55,4.125,4.375,1.1,4.125,5.75,1.1,4.125,4.375,1.6,4.125,5.75,1.6,4.75,7.5,1.1,5,7.5,1.1,4.75,5.75,1.1,4.875,5.75,1.1,4.875,4.25,1.1,5,2.5,1.1,4.75,4.25,1.1,4.75,2.5,1.1,5,3,0.6,4,3,0.6,5,3,-0.6,4,3,-0.6,4.25,2.5,1.1,4.25,2.5,0.55,4,2.5,1.1,4.125,2.5,0.55,4.125,2.5,-0.55,4,2.5,-1.1,4.25,2.5,-1.1,4.25,2.5,-0.55,4.75,2,-0.55,4.875,2,-0.55,4.75,2.5,-0.55,4.875,2.5,-0.55,4.25,7.5,-1.1,4,7.5,-1.1,4.25,5.75,-1.1,4.125,5.75,-1.1,4.125,4.25,-1.1,4,2.5,-1.1,4.25,4.25,-1.1,4.25,2.5,-1.1,4.25,5.75,1.1,4.25,5.75,1.6,4.125,5.75,1.1,4.125,5.75,1.6,4.25,2,0.55,4.125,2,0.55,4.25,2.5,0.55,4.125,2.5,0.55,4.25,7.5,0.55,4.125,7.5,0.55,4.25,8,0.55,4.125,8,0.55,4.25,2,0.55,4.25,2,-0.55,4.125,2,0.55,4.125,2,-0.55,4.25,4.375,1.6,4.125,4.375,1.6,4.25,5.75,1.6,4.125,5.75,1.6,4.875,5.75,-1.6,4.875,4.375,-1.6,4.875,5.75,-1.1,4.875,4.375,-1.1,4.25,4.25,-1.1,4.25,4.25,-1.6,4.125,4.25,-1.1,4.125,4.25,-1.6,4,3,0.6,5,3,0.6,4,7,0.6,5,7,0.6,5,7,0.6,5,7,-0.6,4,7,0.6,4,7,-0.6,4.125,4.25,-1.6,4.125,5.75,-1.6,4.125,4.25,-1.1,4.125,5.75,-1.1,4.125,4.25,-1.6,4.25,4.25,-1.6,4.125,5.75,-1.6,4.25,5.75,-1.6,4.125,7.5,-0.55,4.25,7.5,-0.55,4.125,8,-0.55,4.25,8,-0.55,4.25,4.375,1.6,4.25,4.375,1.1,4.125,4.375,1.6,4.125,4.375,1.1,4.125,2,-0.55,4.125,2.5,-0.55,4.125,2,0.55,4.125,2.5,0.55,4.875,5.75,-1.1,4.75,5.75,-1.1,4.875,5.75,-1.6,4.75,5.75,-1.6,4.875,5.75,1.6,4.75,5.75,1.6,4.875,5.75,1.1,4.75,5.75,1.1,4.875,5.75,1.1,4.875,4.25,1.1,4.875,5.75,1.6,4.875,4.25,1.6,4.75,7.5,-0.55,4.75,7.5,-1.1,4.875,7.5,-0.55,5,7.5,-1.1,4.875,7.5,0.55,5,7.5,1.1,4.75,7.5,1.1,4.75,7.5,0.55,4.875,4.375,-1.1,4.875,4.375,-1.6,4.75,4.375,-1.1,4.75,4.375,-1.6,4.875,8,-0.55,4.875,7.5,-0.55,4.875,8,0.55,4.875,7.5,0.55,4.875,4.25,1.6,4.75,4.25,1.6,4.875,5.75,1.6,4.75,5.75,1.6,4.875,2,0.55,4.875,2,-0.55,4.75,2,0.55,4.75,2,-0.55,4.875,4.25,1.6,4.875,4.25,1.1,4.75,4.25,1.6,4.75,4.25,1.1,4.75,2.5,0.55,4.75,2.5,1.1,4.875,2.5,0.55,5,2.5,1.1,5,2.5,-1.1,4.875,2.5,-0.55,4.75,2.5,-1.1,4.75,2.5,-0.55,4.875,7.5,0.55,4.75,7.5,0.55,4.875,8,0.55,4.75,8,0.55,5,7,0.6,5,7.5,1.1,5,7,-0.6,5,3,0.6,5,7.5,-1.1,5,2.5,1.1,5,2.5,-1.1,5,3,-0.6,4,7.5,-1.1,4,3,-0.6,4,2.5,-1.1,4,2.5,1.1,4,7,-0.6,4,3,0.6,4,7.5,1.1,4,7,0.6,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4,0,4,4,10,4,4,0,5,4,10,5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,10,4,5,0,4,5,10,5,5,0,5,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,5,0,5,4,0,5,5,10,5,4,10,5,4.75,2.5,0.55,4.75,2,0.55,4.75,2.5,1.1,4.75,0,4,4.75,2,-0.55,4.75,4.25,1.6,4.75,10,4,4.75,4.25,1.1,4.75,5.75,1.6,4.75,5.75,1.1,4.75,7.5,1.1,4.75,7.5,0.55,4.75,8,0.55,4.75,8,-0.55,4.75,10,-4,4.75,0,-4,4.75,7.5,-1.1,4.75,7.5,-0.55,4.75,5.75,-1.6,4.75,5.75,-1.1,4.75,4.375,-1.6,4.75,2.5,-1.1,4.75,2.5,-0.55,4.75,4.375,-1.1,4.25,7.5,0.55,4.25,8,0.55,4.25,7.5,1.1,4.25,10,4,4.25,8,-0.55,4.25,5.75,1.6,4.25,0,4,4.25,5.75,1.1,4.25,4.375,1.6,4.25,4.375,1.1,4.25,2.5,1.1,4.25,2.5,0.55,4.25,2,0.55,4.25,2,-0.55,4.25,0,-4,4.25,10,-4,4.25,2.5,-1.1,4.25,2.5,-0.55,4.25,4.25,-1.6,4.25,4.25,-1.1,4.25,5.75,-1.6,4.25,7.5,-1.1,4.25,7.5,-0.55,4.25,5.75,-1.1 + } + PolygonVertexIndex: *672 { + a: 0,2,-2,3,1,-3,4,3,-3,2,5,-5,5,6,-5,7,4,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,22,23,-22,21,23,-25,23,25,-25,24,25,-27,27,26,-26,28,30,-30,30,31,-30,29,31,-33,31,33,-33,32,33,-35,35,34,-34,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,70,71,-70,71,72,-70,73,69,-73,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,83,-83,82,85,-85,85,86,-85,87,84,-87,88,90,-90,91,89,-91,92,94,-94,94,95,-94,95,96,-94,97,93,-97,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,169,170,-172,172,171,-171,171,172,-174,174,173,-173,175,174,-173,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,197,198,-200,200,199,-199,198,201,-201,202,200,-202,203,202,-202,204,206,-206,207,205,-207,208,210,-210,211,208,-210,209,210,-213,209,213,-212,214,212,-211,211,213,-216,213,214,-216,210,215,-215,216,218,-218,219,217,-219,217,220,-217,221,217,-220,222,216,-221,223,221,-220,223,222,-221,219,222,-224,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,247,-247,249,248,-247,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,261,-261,263,261,-263,264,266,-266,267,265,-267,268,267,-267,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,281,-281,283,282,-281,284,286,-286,287,285,-287,281,282,-261,262,260,-283,288,290,-290,290,291,-290,289,291,-293,293,291,-291,294,291,-294,295,293,-291,293,296,-295,296,297,-295,297,298,-295,298,299,-295,299,300,-295,300,301,-295,294,301,-303,291,303,-293,301,304,-303,303,302,-305,301,305,-305,306,303,-305,304,307,-307,306,308,-304,309,292,-304,308,309,-304,310,292,-310,311,309,-309,312,314,-314,314,315,-314,313,315,-317,317,315,-315,318,315,-318,319,317,-315,317,320,-319,320,321,-319,321,322,-319,322,323,-319,323,324,-319,324,325,-319,318,325,-327,315,327,-317,325,328,-327,327,326,-329,325,329,-329,330,327,-329,328,331,-331,330,332,-328,333,316,-328,332,333,-328,334,316,-334,335,333,-333,247,248,-267,268,266,-249 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2016 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *672 { + a: -16.73228,-4.330709,-16.73228,-2.165354,-15.74803,-4.330709,-16.24016,-2.165354,-16.24016,2.165354,-15.74803,4.330709,-16.73228,4.330709,-16.73228,2.165354,19.68504,11.81102,15.74803,11.81102,19.68504,27.55906,15.74803,27.55906,-2.165354,29.52756,-2.165354,31.49606,2.165354,29.52756,2.165354,31.49606,-16.24016,7.874016,-16.73228,7.874016,-16.24016,9.84252,-16.73228,9.84252,16.73228,22.63779,16.24016,22.63779,16.73228,29.52756,15.74803,29.52756,16.24016,17.22441,15.74803,9.84252,16.73228,17.22441,16.73228,9.84252,-18.70079,22.63779,-19.19291,22.63779,-18.70079,29.52756,-19.68504,29.52756,-19.19291,17.22441,-19.68504,9.84252,-18.70079,17.22441,-18.70079,9.84252,-16.73228,-2.165354,-16.73228,2.165354,-16.24016,-2.165354,-16.24016,2.165354,-18.70079,29.52756,-19.19291,29.52756,-18.70079,31.49606,-19.19291,31.49606,-18.70079,17.22441,-19.19291,17.22441,-18.70079,22.63779,-19.19291,22.63779,-16.73228,-6.299212,-16.73228,-4.330709,-16.24016,-6.299212,-16.24016,-4.330709,-19.19291,2.165354,-18.70079,2.165354,-19.19291,-2.165354,-18.70079,-2.165354,19.19291,7.874016,18.70079,7.874016,19.19291,9.84252,18.70079,9.84252,2.165354,9.84252,2.165354,7.874016,-2.165354,9.84252,-2.165354,7.874016,4.330709,17.22441,4.330709,22.63779,6.299212,17.22441,6.299212,22.63779,18.70079,29.52756,19.68504,29.52756,18.70079,22.63779,19.19291,22.63779,19.19291,16.73228,19.68504,9.84252,18.70079,16.73228,18.70079,9.84252,-19.68504,2.362205,-15.74803,2.362205,-19.68504,-2.362205,-15.74803,-2.362205,16.73228,4.330709,16.73228,2.165354,15.74803,4.330709,16.24016,2.165354,16.24016,-2.165354,15.74803,-4.330709,16.73228,-4.330709,16.73228,-2.165354,-18.70079,7.874016,-19.19291,7.874016,-18.70079,9.84252,-19.19291,9.84252,-16.73228,29.52756,-15.74803,29.52756,-16.73228,22.63779,-16.24016,22.63779,-16.24016,16.73228,-15.74803,9.84252,-16.73228,16.73228,-16.73228,9.84252,-16.73228,4.330709,-16.73228,6.299212,-16.24016,4.330709,-16.24016,6.299212,16.73228,7.874016,16.24016,7.874016,16.73228,9.84252,16.24016,9.84252,16.73228,29.52756,16.24016,29.52756,16.73228,31.49606,16.24016,31.49606,16.73228,2.165354,16.73228,-2.165354,16.24016,2.165354,16.24016,-2.165354,16.73228,17.22441,16.24016,17.22441,16.73228,22.63779,16.24016,22.63779,6.299212,22.63779,6.299212,17.22441,4.330709,22.63779,4.330709,17.22441,16.73228,-4.330709,16.73228,-6.299212,16.24016,-4.330709,16.24016,-6.299212,-15.74803,11.81102,-19.68504,11.81102,-15.74803,27.55906,-19.68504,27.55906,19.68504,2.362205,19.68504,-2.362205,15.74803,2.362205,15.74803,-2.362205,-6.299212,16.73228,-6.299212,22.63779,-4.330709,16.73228,-4.330709,22.63779,-16.24016,16.73228,-16.73228,16.73228,-16.24016,22.63779,-16.73228,22.63779,-16.24016,29.52756,-16.73228,29.52756,-16.24016,31.49606,-16.73228,31.49606,16.73228,6.299212,16.73228,4.330709,16.24016,6.299212,16.24016,4.330709,-2.165354,7.874016,-2.165354,9.84252,2.165354,7.874016,2.165354,9.84252,-19.19291,-4.330709,-18.70079,-4.330709,-19.19291,-6.299212,-18.70079,-6.299212,-19.19291,6.299212,-18.70079,6.299212,-19.19291,4.330709,-18.70079,4.330709,-4.330709,22.63779,-4.330709,16.73228,-6.299212,22.63779,-6.299212,16.73228,-18.70079,-2.165354,-18.70079,-4.330709,-19.19291,-2.165354,-19.68504,-4.330709,-19.19291,2.165354,-19.68504,4.330709,-18.70079,4.330709,-18.70079,2.165354,19.19291,-4.330709,19.19291,-6.299212,18.70079,-4.330709,18.70079,-6.299212,2.165354,31.49606,2.165354,29.52756,-2.165354,31.49606,-2.165354,29.52756,19.19291,16.73228,18.70079,16.73228,19.19291,22.63779,18.70079,22.63779,19.19291,2.165354,19.19291,-2.165354,18.70079,2.165354,18.70079,-2.165354,19.19291,6.299212,19.19291,4.330709,18.70079,6.299212,18.70079,4.330709,18.70079,2.165354,18.70079,4.330709,19.19291,2.165354,19.68504,4.330709,19.68504,-4.330709,19.19291,-2.165354,18.70079,-4.330709,18.70079,-2.165354,19.19291,29.52756,18.70079,29.52756,19.19291,31.49606,18.70079,31.49606,-2.362205,27.55906,-4.330709,29.52756,2.362205,27.55906,-2.362205,11.81102,4.330709,29.52756,-4.330709,9.84252,4.330709,9.84252,2.362205,11.81102,-4.330709,29.52756,-2.362205,11.81102,-4.330709,9.84252,4.330709,9.84252,-2.362205,27.55906,2.362205,11.81102,4.330709,29.52756,2.362205,27.55906,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-2.165354,9.84252,-2.165354,7.874016,-4.330709,9.84252,-15.74803,0,2.165354,7.874016,-6.299212,16.73228,-15.74803,39.37008,-4.330709,16.73228,-6.299212,22.63779,-4.330709,22.63779,-4.330709,29.52756,-2.165354,29.52756,-2.165354,31.49606,2.165354,31.49606,15.74803,39.37008,15.74803,0,4.330709,29.52756,2.165354,29.52756,6.299212,22.63779,4.330709,22.63779,6.299212,17.22441,4.330709,9.84252,2.165354,9.84252,4.330709,17.22441,2.165354,29.52756,2.165354,31.49606,4.330709,29.52756,15.74803,39.37008,-2.165354,31.49606,6.299212,22.63779,15.74803,0,4.330709,22.63779,6.299212,17.22441,4.330709,17.22441,4.330709,9.84252,2.165354,9.84252,2.165354,7.874016,-2.165354,7.874016,-15.74803,0,-15.74803,39.37008,-4.330709,9.84252,-2.165354,9.84252,-6.299212,16.73228,-4.330709,16.73228,-6.299212,22.63779,-4.330709,29.52756,-2.165354,29.52756,-4.330709,22.63779 + } + UVIndex: *672 { + a: 0,2,1,3,1,2,4,3,2,2,5,4,5,6,4,7,4,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,22,23,21,21,23,24,23,25,24,24,25,26,27,26,25,28,30,29,30,31,29,29,31,32,31,33,32,32,33,34,35,34,33,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,70,71,69,71,72,69,73,69,72,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,83,82,82,85,84,85,86,84,87,84,86,88,90,89,91,89,90,92,94,93,94,95,93,95,96,93,97,93,96,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,169,170,171,172,171,170,171,172,173,174,173,172,175,174,172,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,197,198,199,200,199,198,198,201,200,202,200,201,203,202,201,204,206,205,207,205,206,208,210,209,211,208,209,209,210,212,209,213,211,214,212,210,211,213,215,213,214,215,210,215,214,216,218,217,219,217,218,217,220,216,221,217,219,222,216,220,223,221,219,223,222,220,219,222,223,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,247,246,249,248,246,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,261,260,263,261,262,264,266,265,267,265,266,268,267,266,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,281,280,283,282,280,284,286,285,287,285,286,281,282,260,262,260,282,288,290,289,290,291,289,289,291,292,293,291,290,294,291,293,295,293,290,293,296,294,296,297,294,297,298,294,298,299,294,299,300,294,300,301,294,294,301,302,291,303,292,301,304,302,303,302,304,301,305,304,306,303,304,304,307,306,306,308,303,309,292,303,308,309,303,310,292,309,311,309,308,312,314,313,314,315,313,313,315,316,317,315,314,318,315,317,319,317,314,317,320,318,320,321,318,321,322,318,322,323,318,323,324,318,324,325,318,318,325,326,315,327,316,325,328,326,327,326,328,325,329,328,330,327,328,328,331,330,330,332,327,333,316,327,332,333,327,334,316,333,335,333,332,247,248,266,268,266,248 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *224 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWindowStone, Model::RootNode + C: "OO",5434081392479824621,0 + + ;Geometry::, Model::Mesh wallWindowStone + C: "OO",5501652049892042876,5434081392479824621 + + ;Material::stoneDark, Model::Mesh wallWindowStone + C: "OO",7174,5434081392479824621 + + ;Material::wood, Model::Mesh wallWindowStone + C: "OO",7178,5434081392479824621 + + ;Material::stone, Model::Mesh wallWindowStone + C: "OO",7184,5434081392479824621 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowStone.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowStone.fbx.import new file mode 100644 index 0000000..7fc5a02 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowStone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://322wojsaw21d" +path="res://.godot/imported/wallWindowStone.fbx-23de847e58191fb957202c2d46d38b62.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWindowStone.fbx" +dest_files=["res://.godot/imported/wallWindowStone.fbx-23de847e58191fb957202c2d46d38b62.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWood.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWood.fbx new file mode 100644 index 0000000..07533f9 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWood.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 490 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWood.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWood.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5477602175946179290, "Model::wallWood", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5180541372476589525, "Geometry::", "Mesh" { + Vertices: *216 { + a: 4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,0,5,4,0,5,5,10,5,4,10,5,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4,0,4,4,10,4,4,0,5,4,10,5,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,10,4,5,0,4,5,10,5,5,0,5,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,0,-4,4.25,10,-4,4.25,0,4,4.25,10,4,4.75,10,-4,4.75,0,-4,4.75,10,4,4.75,0,4 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,34,-33,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,43,-43,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,62,-61,61,62,-43,44,42,-63,64,66,-66,67,65,-67,33,34,-15,16,14,-35,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: -19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-15.74803,0,-15.74803,39.37008,15.74803,0,15.74803,39.37008,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-15.74803,0 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,34,32,36,38,37,39,37,38,40,42,41,43,41,42,44,43,42,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,62,60,61,62,42,44,42,62,64,66,65,67,65,66,33,34,14,16,14,34,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWood, Model::RootNode + C: "OO",5477602175946179290,0 + + ;Geometry::, Model::Mesh wallWood + C: "OO",5180541372476589525,5477602175946179290 + + ;Material::wood, Model::Mesh wallWood + C: "OO",7178,5477602175946179290 + + ;Material::woodDark, Model::Mesh wallWood + C: "OO",7186,5477602175946179290 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWood.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWood.fbx.import new file mode 100644 index 0000000..f4f1b68 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWood.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bfp81yar5qnaq" +path="res://.godot/imported/wallWood.fbx-d89e625570863a3ed1efb038f139d475.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWood.fbx" +dest_files=["res://.godot/imported/wallWood.fbx-d89e625570863a3ed1efb038f139d475.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArch.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArch.fbx new file mode 100644 index 0000000..3fc5616 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArch.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 540 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodArch.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodArch.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5173040544462305574, "Model::wallWoodArch", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5066443841350966186, "Geometry::", "Mesh" { + Vertices: *216 { + a: 5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4,0,4,4,10,4,4,0,5,4,10,5,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,0,5,4,0,5,5,10,5,4,10,5,5,10,4,5,0,4,5,10,5,5,0,5,4.75,10,3,4.25,10,3,4.75,10,3,4.75,0,3,4.75,10,4,4.75,0,4,4.25,0,3,4.25,10,3,4.25,0,4,4.25,10,4,4.75,0,3,4.25,0,3,4,0,2,4,0,3,5,0,2,5,0,3,4,0,2,5,0,2,4,10,2,5,10,2,4,0,2,4,10,2,4,0,3,4,10,3,4.25,0,3,4,0,3,4.25,10,3,4,10,3,5,10,2,5,0,2,5,10,3,5,0,3,5,0,3,4.75,0,3,5,10,3,4.75,10,3,5,10,2,5,10,3,4,10,2,4,10,3 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,13,-13,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,33,-13,14,12,-34,34,36,-36,37,35,-37,38,40,-40,41,39,-41,3,4,-43,4,43,-43,43,44,-43,45,44,-44,44,46,-43,47,42,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,32,69,-71,33,32,-71,71,33,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-18.70079,11.81102,-16.73228,11.81102,-11.81102,39.37008,-11.81102,0,-15.74803,39.37008,-15.74803,0,11.81102,0,11.81102,39.37008,15.74803,0,15.74803,39.37008,18.70079,11.81102,16.73228,11.81102,15.74803,7.874016,15.74803,11.81102,19.68504,7.874016,19.68504,11.81102,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,7.874016,0,7.874016,39.37008,11.81102,0,11.81102,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-7.874016,39.37008,-7.874016,0,-11.81102,39.37008,-11.81102,0,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-19.68504,7.874016,-19.68504,11.81102,-15.74803,7.874016,-15.74803,11.81102 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,12,11,13,11,12,14,13,12,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,33,12,14,12,33,34,36,35,37,35,36,38,40,39,41,39,40,3,4,42,4,43,42,43,44,42,45,44,43,44,46,42,47,42,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,32,69,70,33,32,70,71,33,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodArch, Model::RootNode + C: "OO",5173040544462305574,0 + + ;Geometry::, Model::Mesh wallWoodArch + C: "OO",5066443841350966186,5173040544462305574 + + ;Material::wood, Model::Mesh wallWoodArch + C: "OO",7178,5173040544462305574 + + ;Material::woodDark, Model::Mesh wallWoodArch + C: "OO",7186,5173040544462305574 + + ;Material::stoneDark, Model::Mesh wallWoodArch + C: "OO",7174,5173040544462305574 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArch.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArch.fbx.import new file mode 100644 index 0000000..d3ba0f6 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArch.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://btudjueofbafg" +path="res://.godot/imported/wallWoodArch.fbx-e4b1ea042c2525d35dfb2131f6caac9d.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArch.fbx" +dest_files=["res://.godot/imported/wallWoodArch.fbx-e4b1ea042c2525d35dfb2131f6caac9d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTop.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTop.fbx new file mode 100644 index 0000000..dd47b4a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTop.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 570 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodArchTop.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodArchTop.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5326421082151178836, "Model::wallWoodArchTop", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5685743780915259812, "Geometry::", "Mesh" { + Vertices: *852 { + a: 4.25,1.044209,2.931559,4,1.044209,2.931559,4.25,2.070552,2.727407,4,2.070552,2.727407,4,3.5,1.062178,5,3.5,1.062178,4,4.26133,0.5534734,5,4.26133,0.5534734,5,7.727407,-2.929448,5,7.391036,-1.938533,4.75,7.727407,-2.929448,4.75,7.391036,-1.938533,5,7.391036,-1.938533,5,6.928203,-1,4.75,7.391036,-1.938533,4.75,6.928203,-1,4.25,7.931559,-3.955791,4.25,7.727407,-2.929448,4,7.931559,-3.955791,4,7.727407,-2.929448,4.25,4.870091,1.346827,4,4.870091,1.346827,4.25,5.656855,0.6568542,4,5.656855,0.6568542,5,3.061467,2.391036,4.75,3.061467,2.391036,5,4,1.928203,4.75,4,1.928203,4,2.678784,1.467157,5,2.678784,1.467157,4,3.5,1.062178,5,3.5,1.062178,4,0.9136833,1.940114,5,0.9136833,1.940114,4,1.811733,1.761481,5,1.811733,1.761481,5,6.062178,-1.5,5,6.467156,-2.321216,4,6.062178,-1.5,4,6.467156,-2.321216,4,4.26133,0.5534734,5,4.26133,0.5534734,4,4.949747,-0.05025253,5,4.949747,-0.05025253,5,6.76148,-3.188267,5,6.940114,-4.086317,4,6.76148,-3.188267,4,6.940114,-4.086317,4.25,-1.286498E-15,3,4,-1.286498E-15,3,4.25,1.044209,2.931559,4,1.044209,2.931559,4.25,2.070552,2.727407,4,2.070552,2.727407,4.25,3.061467,2.391036,4,3.061467,2.391036,4,-4.23431E-15,2,5,-4.23431E-15,2,4,0.9136833,1.940114,5,0.9136833,1.940114,4.25,6.346827,-0.1299086,4.25,5.656855,0.6568542,4,6.346827,-0.1299086,4,5.656855,0.6568542,4.75,7.931559,-3.955791,4.75,7.934456,-4,5,7.931559,-3.955791,5,7.934456,-4,4.75,8,-5,5,8,-5,5,6.928203,-1,5,6.346827,-0.1299086,4.75,6.928203,-1,4.75,6.346827,-0.1299086,5,6.346827,-0.1299086,5,5.656855,0.6568542,4.75,6.346827,-0.1299086,4.75,5.656855,0.6568542,5,1.044209,2.931559,4.75,1.044209,2.931559,5,2.070552,2.727407,4.75,2.070552,2.727407,5,6.940114,-4.086317,5,7,-5,4,6.940114,-4.086317,4,7,-5,5,4.870091,1.346827,4.75,4.870091,1.346827,5,5.656855,0.6568542,4.75,5.656855,0.6568542,5,2.070552,2.727407,4.75,2.070552,2.727407,5,3.061467,2.391036,4.75,3.061467,2.391036,4,1.811733,1.761481,5,1.811733,1.761481,4,2.678784,1.467157,5,2.678784,1.467157,5,5.553473,-0.7386699,5,6.062178,-1.5,4,5.553473,-0.7386699,4,6.062178,-1.5,5,6.467156,-2.321216,5,6.76148,-3.188267,4,6.467156,-2.321216,4,6.76148,-3.188267,4.25,3.061467,2.391036,4,3.061467,2.391036,4.25,4,1.928203,4,4,1.928203,5,-1.564134E-15,3,4.75,-1.564134E-15,3,5,1.044209,2.931559,4.75,1.044209,2.931559,4,7.931559,-3.955791,4,7.934456,-4,4.25,7.931559,-3.955791,4.25,7.934456,-4,4,8,-5,4.25,8,-5,5,4.949747,-0.05025253,5,5.553473,-0.7386699,4,4.949747,-0.05025253,4,5.553473,-0.7386699,4.25,4,1.928203,4,4,1.928203,4.25,4.870091,1.346827,4,4.870091,1.346827,4.25,6.928203,-1,4.25,6.346827,-0.1299086,4,6.928203,-1,4,6.346827,-0.1299086,4.25,7.391036,-1.938533,4.25,6.928203,-1,4,7.391036,-1.938533,4,6.928203,-1,5,4,1.928203,4.75,4,1.928203,5,4.870091,1.346827,4.75,4.870091,1.346827,4.25,7.727407,-2.929448,4.25,7.391036,-1.938533,4,7.727407,-2.929448,4,7.391036,-1.938533,4,7,-5,4,8,-5,4,6.940114,-4.086317,4,7.934456,-4,4,6.76148,-3.188267,4,7.931559,-3.955791,4,7.727407,-2.929448,4,6.467156,-2.321216,4,7.391036,-1.938533,4,6.062178,-1.5,4,6.928203,-1,4,5.553473,-0.7386699,4,6.346827,-0.1299086,4,4.949747,-0.05025253,4,5.656855,0.6568542,4,4.26133,0.5534734,4,3.5,1.062178,4,4.870091,1.346827,4,2.678784,1.467157,4,4,1.928203,4,1.811733,1.761481,4,0.9136833,1.940114,4,3.061467,2.391036,4,-4.23431E-15,2,4,-1.286498E-15,3,4,2.070552,2.727407,4,1.044209,2.931559,5,8,-5,5,7,-5,5,7.934456,-4,5,6.940114,-4.086317,5,6.76148,-3.188267,5,7.931559,-3.955791,5,7.727407,-2.929448,5,6.467156,-2.321216,5,7.391036,-1.938533,5,6.062178,-1.5,5,6.928203,-1,5,5.553473,-0.7386699,5,6.346827,-0.1299086,5,4.949747,-0.05025253,5,5.656855,0.6568542,5,4.26133,0.5534734,5,3.5,1.062178,5,4.870091,1.346827,5,2.678784,1.467157,5,4,1.928203,5,1.811733,1.761481,5,0.9136833,1.940114,5,3.061467,2.391036,5,-4.23431E-15,2,5,-1.564134E-15,3,5,2.070552,2.727407,5,1.044209,2.931559,5,7.931559,-3.955791,5,7.727407,-2.929448,4.75,7.931559,-3.955791,4.75,7.727407,-2.929448,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,0,5,4,0,5,5,10,5,4,10,5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4,0,4,4,10,4,4,0,5,4,10,5,4.75,10,-5,4.25,10,-5,4.75,-1.564134E-15,3,4.25,-1.286498E-15,3,4,-4.23431E-15,2,4,-1.286498E-15,3,5,-4.23431E-15,2,5,-1.564134E-15,3,4.75,10,-5,4.25,10,-5,4.75,8,-5,4.25,8,-5,5,8,-5,4,8,-5,5,7,-5,4,7,-5,4.25,8,-5,4.25,10,-5,4.25,7.934456,-4,4.25,10,4,4.25,7.931559,-3.955791,4.25,7.727407,-2.929448,4.25,7.391036,-1.938533,4.25,6.928203,-1,4.25,6.346827,-0.1299086,4.25,5.656855,0.6568542,4.25,4.870091,1.346827,4.25,4,1.928203,4.25,3.061467,2.391036,4.25,2.070552,2.727407,4.25,1.044209,2.931559,4.25,-1.286498E-15,3,4.25,0,4,4.75,10,-5,4.75,8,-5,4.75,10,4,4.75,7.934456,-4,4.75,7.931559,-3.955791,4.75,7.727407,-2.929448,4.75,7.391036,-1.938533,4.75,6.928203,-1,4.75,6.346827,-0.1299086,4.75,5.656855,0.6568542,4.75,4.870091,1.346827,4.75,4,1.928203,4.75,3.061467,2.391036,4.75,2.070552,2.727407,4.75,1.044209,2.931559,4.75,-1.564134E-15,3,4.75,0,4 + } + PolygonVertexIndex: *564 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,65,67,-69,69,68,-68,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,115,117,-119,119,118,-118,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,147,-147,149,147,-149,150,149,-149,151,150,-149,152,150,-152,153,152,-152,154,152,-154,155,154,-154,156,154,-156,157,156,-156,158,156,-158,159,158,-158,160,158,-160,161,158,-161,162,161,-161,163,161,-163,164,163,-163,165,163,-165,166,163,-166,167,166,-166,168,166,-168,169,166,-169,170,169,-169,171,173,-173,174,172,-174,175,174,-174,176,175,-174,177,175,-177,178,175,-178,179,178,-178,180,178,-180,181,180,-180,182,180,-182,183,182,-182,184,182,-184,185,184,-184,186,184,-186,187,186,-186,188,187,-186,189,187,-189,190,189,-189,191,189,-191,192,191,-191,193,192,-191,194,192,-194,195,194,-194,196,195,-194,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,205,-205,207,206,-205,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,219,-219,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,235,-219,220,218,-236,205,206,-237,206,237,-237,237,238,-237,239,238,-238,238,240,-237,241,236,-241,242,244,-244,245,243,-245,244,246,-246,245,246,-248,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,253,-253,255,253,-255,256,253,-256,257,253,-257,258,253,-258,259,253,-259,260,253,-260,261,253,-261,262,253,-262,263,253,-263,264,253,-264,265,253,-265,266,253,-266,267,269,-269,270,268,-270,271,270,-270,272,271,-270,273,272,-270,274,273,-270,275,274,-270,276,275,-270,277,276,-270,278,277,-270,279,278,-270,280,279,-270,281,280,-270,282,281,-270,283,282,-270 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1692 { + a: 0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9659258,0.258819,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9238795,0.3826834,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9914449,0.1305262,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.3826834,0.9238795,0,0.5,0.8660254,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.8660254,-0.5,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9659258,-0.258819,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9914449,0.1305262,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9914449,-0.1305262,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,0.258819,0.9659258,0,0.3826834,0.9238795,0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.7933533,-0.6087614,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9238795,-0.3826834,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.3826834,0.9238795,0,0.5,0.8660254,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9914449,0.1305262,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7071068,-0.7071068,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9238795,0.3826834,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9659258,0.258819,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9914449,0.1305262,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *568 { + a: 16.73228,1.78042,15.74803,1.78042,16.73228,5.900302,15.74803,5.900302,-15.74803,9.133973,-19.68504,9.133973,-15.74803,12.73887,-19.68504,12.73887,19.68504,20.7003,19.68504,16.58042,18.70079,20.7003,18.70079,16.58042,19.68504,19.71492,19.68504,15.59503,18.70079,19.71492,18.70079,15.59503,16.73228,21.36674,16.73228,17.24686,15.74803,21.36674,15.74803,17.24686,16.73228,10.91931,15.74803,10.91931,16.73228,15.03919,15.74803,15.03919,19.68504,6.646529,18.70079,6.646529,19.68504,10.76641,18.70079,10.76641,-15.74803,6.904022,-19.68504,6.904022,-15.74803,10.50892,-19.68504,10.50892,-15.74803,2.037912,-19.68504,2.037912,-15.74803,5.642809,-19.68504,5.642809,-19.68504,15.85253,-19.68504,19.45742,-15.74803,15.85253,-15.74803,19.45742,-15.74803,11.1768,-19.68504,11.1768,-15.74803,14.7817,-19.68504,14.7817,-19.68504,17.50435,-19.68504,21.10925,-15.74803,17.50435,-15.74803,21.10925,16.73228,-0.7724779,15.74803,-0.7724779,16.73228,3.347404,15.74803,3.347404,16.73228,4.267608,15.74803,4.267608,16.73228,8.387489,15.74803,8.387489,-15.74803,-0.5149853,-19.68504,-0.5149853,-15.74803,3.089912,-19.68504,3.089912,16.73228,16.85994,16.73228,12.74006,15.74803,16.85994,15.74803,12.74006,18.70079,17.58295,18.70079,17.75738,19.68504,17.58295,19.68504,17.75738,18.70079,21.70283,19.68504,21.70283,19.68504,18.42745,19.68504,14.30757,18.70079,18.42745,18.70079,14.30757,19.68504,16.85994,19.68504,12.74006,18.70079,16.85994,18.70079,12.74006,19.68504,1.78042,18.70079,1.78042,19.68504,5.900302,18.70079,5.900302,-19.68504,17.84044,-19.68504,21.44534,-15.74803,17.84044,-15.74803,21.44534,19.68504,10.91931,18.70079,10.91931,19.68504,15.03919,18.70079,15.03919,19.68504,4.267608,18.70079,4.267608,19.68504,8.387489,18.70079,8.387489,-15.74803,4.5251,-19.68504,4.5251,-15.74803,8.129997,-19.68504,8.129997,-19.68504,14.56506,-19.68504,18.16996,-15.74803,14.56506,-15.74803,18.16996,-19.68504,16.83791,-19.68504,20.44281,-15.74803,16.83791,-15.74803,20.44281,16.73228,6.646529,15.74803,6.646529,16.73228,10.76641,15.74803,10.76641,19.68504,-0.7724779,18.70079,-0.7724779,19.68504,3.347404,18.70079,3.347404,15.74803,17.58295,15.74803,17.75738,16.73228,17.58295,16.73228,17.75738,15.74803,21.70283,16.73228,21.70283,-19.68504,12.99755,-19.68504,16.60245,-15.74803,12.99755,-15.74803,16.60245,16.73228,8.876481,15.74803,8.876481,16.73228,12.99636,15.74803,12.99636,16.73228,18.42745,16.73228,14.30757,15.74803,18.42745,15.74803,14.30757,16.73228,19.71492,16.73228,15.59503,15.74803,19.71492,15.74803,15.59503,19.68504,8.876481,18.70079,8.876481,19.68504,12.99636,18.70079,12.99636,16.73228,20.7003,16.73228,16.58042,15.74803,20.7003,15.74803,16.58042,-19.68504,27.55906,-19.68504,31.49606,-16.08786,27.32328,-15.74803,31.23802,-12.55223,26.62,-15.57398,31.22661,-11.53326,30.42286,-9.138645,25.46125,-7.632018,29.09857,-5.905512,23.86684,-3.937008,27.27639,-2.908149,21.86407,-0.5114511,24.98751,-0.1978446,19.48719,2.58604,22.27108,2.179029,16.77689,4.181802,13.77953,5.302467,19.17359,5.776207,10.54639,7.591352,15.74803,6.934964,7.132808,7.638244,3.597178,9.413528,12.05302,7.874016,-1.667051E-14,11.81102,-5.064953E-15,10.73782,8.151781,11.54157,4.111061,19.68504,31.49606,19.68504,27.55906,15.74803,31.23802,16.08786,27.32328,12.55223,26.62,15.57398,31.22661,11.53326,30.42286,9.138645,25.46125,7.632018,29.09857,5.905512,23.86684,3.937008,27.27639,2.908149,21.86407,0.5114511,24.98751,0.1978446,19.48719,-2.58604,22.27108,-2.179029,16.77689,-4.181802,13.77953,-5.302467,19.17359,-5.776207,10.54639,-7.591352,15.74803,-6.934964,7.132808,-7.638244,3.597178,-9.413528,12.05302,-7.874016,-1.667051E-14,-11.81102,-6.158009E-15,-10.73782,8.151781,-11.54157,4.111061,19.68504,21.36674,19.68504,17.24686,18.70079,21.36674,18.70079,17.24686,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-18.70079,-5.129489E-31,-19.68504,-5.129489E-31,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-15.74803,-1.196147E-30,-16.73228,-1.196147E-30,-15.74803,39.37008,-16.73228,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-18.70079,-19.68504,-16.73228,-19.68504,18.70079,11.81102,16.73228,11.81102,15.74803,7.874016,15.74803,11.81102,19.68504,7.874016,19.68504,11.81102,-18.70079,39.37008,-16.73228,39.37008,-18.70079,31.49606,-16.73228,31.49606,-19.68504,31.49606,-15.74803,31.49606,-19.68504,27.55906,-15.74803,27.55906,-19.68504,31.49606,-19.68504,39.37008,-15.74803,31.23802,15.74803,39.37008,-15.57398,31.22661,-11.53326,30.42286,-7.632018,29.09857,-3.937008,27.27639,-0.5114511,24.98751,2.58604,22.27108,5.302467,19.17359,7.591352,15.74803,9.413528,12.05302,10.73782,8.151781,11.54157,4.111061,11.81102,-5.064953E-15,15.74803,0,19.68504,39.37008,19.68504,31.49606,-15.74803,39.37008,15.74803,31.23802,15.57398,31.22661,11.53326,30.42286,7.632018,29.09857,3.937008,27.27639,0.5114511,24.98751,-2.58604,22.27108,-5.302467,19.17359,-7.591352,15.74803,-9.413528,12.05302,-10.73782,8.151781,-11.54157,4.111061,-11.81102,-6.158009E-15,-15.74803,1.189679E-29 + } + UVIndex: *564 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,65,67,68,69,68,67,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,115,117,118,119,118,117,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,147,146,149,147,148,150,149,148,151,150,148,152,150,151,153,152,151,154,152,153,155,154,153,156,154,155,157,156,155,158,156,157,159,158,157,160,158,159,161,158,160,162,161,160,163,161,162,164,163,162,165,163,164,166,163,165,167,166,165,168,166,167,169,166,168,170,169,168,171,173,172,174,172,173,175,174,173,176,175,173,177,175,176,178,175,177,179,178,177,180,178,179,181,180,179,182,180,181,183,182,181,184,182,183,185,184,183,186,184,185,187,186,185,188,187,185,189,187,188,190,189,188,191,189,190,192,191,190,193,192,190,194,192,193,195,194,193,196,195,193,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,205,204,207,206,204,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,219,218,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,235,218,220,218,235,205,206,236,206,237,236,237,238,236,239,238,237,238,240,236,241,236,240,242,244,243,245,243,244,244,246,245,245,246,247,246,248,247,249,247,248,250,252,251,253,251,252,254,253,252,255,253,254,256,253,255,257,253,256,258,253,257,259,253,258,260,253,259,261,253,260,262,253,261,263,253,262,264,253,263,265,253,264,266,253,265,267,269,268,270,268,269,271,270,269,272,271,269,273,272,269,274,273,269,275,274,269,276,275,269,277,276,269,278,277,269,279,278,269,280,279,269,281,280,269,282,281,269,283,282,269 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *188 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodArchTop, Model::RootNode + C: "OO",5326421082151178836,0 + + ;Geometry::, Model::Mesh wallWoodArchTop + C: "OO",5685743780915259812,5326421082151178836 + + ;Material::stoneDark, Model::Mesh wallWoodArchTop + C: "OO",7174,5326421082151178836 + + ;Material::wood, Model::Mesh wallWoodArchTop + C: "OO",7178,5326421082151178836 + + ;Material::woodDark, Model::Mesh wallWoodArchTop + C: "OO",7186,5326421082151178836 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTop.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTop.fbx.import new file mode 100644 index 0000000..c9a46c6 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTop.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bimmg1ttsvw1q" +path="res://.godot/imported/wallWoodArchTop.fbx-a22314abfa2978c3061d6230f10b1944.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTop.fbx" +dest_files=["res://.godot/imported/wallWoodArchTop.fbx-a22314abfa2978c3061d6230f10b1944.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTopDetail.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTopDetail.fbx new file mode 100644 index 0000000..0ccc089 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTopDetail.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 621 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodArchTopDetail.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodArchTopDetail.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4715242578728501334, "Model::wallWoodArchTopDetail", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5481936816254776341, "Geometry::", "Mesh" { + Vertices: *1128 { + a: 4,2.678784,1.467157,4,3.061467,2.391036,3.7,2.678784,1.467157,3.7,3.444151,3.314916,4.25,3.444151,3.314916,4.25,3.061467,2.391036,4,1.044209,2.931559,4,2.070552,2.727407,4.25,1.044209,2.931559,4.25,2.070552,2.727407,4.25,9,-5,4.25,8.923004,-3.825264,3.7,9,-5,3.7,8.923004,-3.825264,5.3,5.553473,-0.7386699,5.3,6.062178,-1.5,5,5.553473,-0.7386699,5,6.062178,-1.5,4,5.553473,-0.7386699,4,6.062178,-1.5,3.7,5.553473,-0.7386699,3.7,6.062178,-1.5,4,5.553473,-0.7386699,4,6.346827,-0.1299086,4,4.949747,-0.05025253,4,5.656855,0.6568542,4,4.26133,0.5534734,4,3.5,1.062178,4,4.870091,1.346827,4,2.678784,1.467157,4,4,1.928203,4,3.061467,2.391036,4,6.940114,-4.086317,3.7,6.940114,-4.086317,4,7.931559,-3.955791,3.7,8.923004,-3.825264,4.25,7.931559,-3.955791,4.25,8.923004,-3.825264,5,6.062178,-1.5,5,6.467156,-2.321216,4,6.062178,-1.5,4,6.467156,-2.321216,5,6.76148,-3.188267,5,6.940114,-4.086317,4,6.76148,-3.188267,4,6.940114,-4.086317,4,0.9136833,1.940114,5,0.9136833,1.940114,4,1.811733,1.761481,5,1.811733,1.761481,5.3,6.940114,-4.086317,5.3,7,-5,5,6.940114,-4.086317,3.7,7,-5,4,6.940114,-4.086317,3.7,6.940114,-4.086317,4,3.061467,2.391036,4,4,1.928203,4.25,3.061467,2.391036,4.25,4,1.928203,4,4,1.928203,4,4.870091,1.346827,4.25,4,1.928203,4.25,4.870091,1.346827,4,4.870091,1.346827,4,5.656855,0.6568542,4.25,4.870091,1.346827,4.25,5.656855,0.6568542,4,3.5,1.062178,5,3.5,1.062178,4,4.26133,0.5534734,5,4.26133,0.5534734,5,6.467156,-2.321216,5,6.76148,-3.188267,4,6.467156,-2.321216,4,6.76148,-3.188267,4.25,6.346827,-0.1299086,4.25,5.656855,0.6568542,4,6.346827,-0.1299086,4,5.656855,0.6568542,4.25,7.794229,-0.5,4.25,7.14018,0.4788528,3.7,7.794229,-0.5,3.7,7.14018,0.4788528,3.7,2.329371,3.693332,3.7,3.444151,3.314916,4.25,2.329371,3.693332,4.25,3.444151,3.314916,4,2.678784,1.467157,5,2.678784,1.467157,4,3.5,1.062178,5,3.5,1.062178,4,-2.230676E-15,3,4,1.044209,2.931559,4.25,-1.286498E-15,3,4.25,1.044209,2.931559,4,6.940114,-4.086317,4,7.931559,-3.955791,4,6.76148,-3.188267,4,7.727407,-2.929448,4,6.467156,-2.321216,4,7.391036,-1.938533,4,6.062178,-1.5,4,6.928203,-1,4.25,7.391036,-1.938533,4.25,6.928203,-1,4,7.391036,-1.938533,4,6.928203,-1,4.25,7.727407,-2.929448,4.25,7.391036,-1.938533,4,7.727407,-2.929448,4,7.391036,-1.938533,4,1.811733,1.761481,4,2.070552,2.727407,4,0.9136833,1.940114,4,-5.178488E-15,2,4,-2.230676E-15,3,4,1.044209,2.931559,4.25,7.931559,-3.955791,4.25,7.727407,-2.929448,4,7.931559,-3.955791,4,7.727407,-2.929448,3.7,9,-5,3.7,8.923004,-3.825264,3.7,7,-5,3.7,6.940114,-4.086317,4,-5.178488E-15,2,5,-5.178488E-15,2,4,0.9136833,1.940114,5,0.9136833,1.940114,3.7,1.811733,1.761481,4,1.811733,1.761481,3.7,2.678784,1.467157,5,1.811733,1.761481,5.3,2.678784,1.467157,5.3,1.811733,1.761481,4,2.678784,1.467157,5,2.678784,1.467157,3.7,6.062178,-1.5,4,6.062178,-1.5,3.7,7.794229,-0.5,4,6.928203,-1,4.25,6.928203,-1,4.25,7.794229,-0.5,5,4.949747,-0.05025253,5,5.553473,-0.7386699,4,4.949747,-0.05025253,4,5.553473,-0.7386699,4,4.26133,0.5534734,5,4.26133,0.5534734,4,4.949747,-0.05025253,5,4.949747,-0.05025253,3.7,6.062178,-1.5,3.7,7.794229,-0.5,3.7,5.553473,-0.7386699,3.7,7.14018,0.4788528,5.3,5.553473,-0.7386699,5,5.553473,-0.7386699,5.3,7.14018,0.4788528,5,6.346827,-0.1299086,4.75,6.346827,-0.1299086,4.75,7.14018,0.4788528,5,6.940114,-4.086317,5,7.931559,-3.955791,5.3,6.940114,-4.086317,5.3,8.923004,-3.825264,4.75,7.931559,-3.955791,4.75,8.923004,-3.825264,3.7,5.553473,-0.7386699,3.7,7.14018,0.4788528,4,5.553473,-0.7386699,4,6.346827,-0.1299086,4.25,6.346827,-0.1299086,4.25,7.14018,0.4788528,5,7.727407,-2.929448,5,7.391036,-1.938533,4.75,7.727407,-2.929448,4.75,7.391036,-1.938533,5,4.870091,1.346827,4.75,4.870091,1.346827,5,5.656855,0.6568542,4.75,5.656855,0.6568542,5,6.346827,-0.1299086,5,5.656855,0.6568542,4.75,6.346827,-0.1299086,4.75,5.656855,0.6568542,5,6.940114,-4.086317,5,6.76148,-3.188267,5,7.931559,-3.955791,5,7.727407,-2.929448,5,6.467156,-2.321216,5,7.391036,-1.938533,5,6.062178,-1.5,5,6.928203,-1,5.3,7.794229,-0.5,5.3,7.14018,0.4788528,4.75,7.794229,-0.5,4.75,7.14018,0.4788528,5,1.044209,2.931559,4.75,1.044209,2.931559,5,2.070552,2.727407,4.75,2.070552,2.727407,5,4,1.928203,4.75,4,1.928203,5,4.870091,1.346827,4.75,4.870091,1.346827,5.3,9,-5,5.3,8.923004,-3.825264,4.75,9,-5,4.75,8.923004,-3.825264,5,5.553473,-0.7386699,5,4.949747,-0.05025253,5,6.346827,-0.1299086,5,5.656855,0.6568542,5,4.26133,0.5534734,5,3.5,1.062178,5,4.870091,1.346827,5,2.678784,1.467157,5,4,1.928203,5,3.061467,2.391036,5,2.070552,2.727407,5.3,1.811733,1.761481,5,1.811733,1.761481,4.75,2.329371,3.693332,4.75,2.070552,2.727407,5.3,2.329371,3.693332,5,3.061467,2.391036,4.75,3.061467,2.391036,5,4,1.928203,4.75,4,1.928203,5.3,2.678784,1.467157,5,3.061467,2.391036,5,2.678784,1.467157,4.75,3.444151,3.314916,4.75,3.061467,2.391036,5.3,3.444151,3.314916,3.7,2.678784,1.467157,3.7,3.444151,3.314916,3.7,1.811733,1.761481,3.7,2.329371,3.693332,5.3,2.329371,3.693332,4.75,2.329371,3.693332,5.3,3.444151,3.314916,4.75,3.444151,3.314916,5,-2.230676E-15,3,4.75,-1.286498E-15,3,5,1.044209,2.931559,4.75,1.044209,2.931559,5.3,2.678784,1.467157,5.3,1.811733,1.761481,5.3,3.444151,3.314916,5.3,2.329371,3.693332,5,1.811733,1.761481,5,0.9136833,1.940114,5,2.070552,2.727407,5,-5.178488E-15,2,5,-2.230676E-15,3,5,1.044209,2.931559,5.3,9,-5,5.3,7,-5,5.3,8.923004,-3.825264,5.3,6.940114,-4.086317,5.3,6.062178,-1.5,5.3,7.794229,-0.5,5,6.062178,-1.5,5,6.928203,-1,4.75,6.928203,-1,4.75,7.794229,-0.5,4.25,2.329371,3.693332,4.25,2.070552,2.727407,3.7,2.329371,3.693332,4,2.070552,2.727407,3.7,1.811733,1.761481,4,1.811733,1.761481,5,7.931559,-3.955791,5,7.727407,-2.929448,4.75,7.931559,-3.955791,4.75,7.727407,-2.929448,5,7.391036,-1.938533,5,6.928203,-1,4.75,7.391036,-1.938533,4.75,6.928203,-1,5.3,6.062178,-1.5,5.3,5.553473,-0.7386699,5.3,7.794229,-0.5,5.3,7.14018,0.4788528,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,0,5,4,0,5,5,10,5,4,10,5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,4,4,10,4,4,0,5,4,10,5,4.75,10,-5,4.25,10,-5,4.75,10,-5,4.25,10,-5,4.75,9,-5,4.25,9,-5,5.3,9,-5,3.7,9,-5,5.3,7,-5,3.7,7,-5,5,-2.230676E-15,3,5,-5.178488E-15,2,4.75,-1.286498E-15,3,4,-5.178488E-15,2,4.25,-1.286498E-15,3,4,-2.230676E-15,3,4.25,7.931559,-3.955791,4.25,8.923004,-3.825264,4.25,7.727407,-2.929448,4.25,10,4,4.25,7.391036,-1.938533,4.25,10,-5,4.25,9,-5,4.25,7.794229,-0.5,4.25,7.14018,0.4788528,4.25,6.928203,-1,4.25,5.656855,0.6568542,4.25,6.346827,-0.1299086,4.25,4.870091,1.346827,4.25,4,1.928203,4.25,3.061467,2.391036,4.25,3.444151,3.314916,4.25,2.329371,3.693332,4.25,0,4,4.25,-1.286498E-15,3,4.25,1.044209,2.931559,4.25,2.070552,2.727407,4.75,10,-5,4.75,9,-5,4.75,10,4,4.75,8.923004,-3.825264,4.75,7.727407,-2.929448,4.75,7.931559,-3.955791,4.75,7.391036,-1.938533,4.75,7.794229,-0.5,4.75,7.14018,0.4788528,4.75,6.928203,-1,4.75,5.656855,0.6568542,4.75,6.346827,-0.1299086,4.75,4.870091,1.346827,4.75,4,1.928203,4.75,3.061467,2.391036,4.75,3.444151,3.314916,4.75,2.329371,3.693332,4.75,0,4,4.75,-1.286498E-15,3,4.75,1.044209,2.931559,4.75,2.070552,2.727407 + } + PolygonVertexIndex: *720 { + a: 0,2,-2,2,3,-2,3,4,-2,5,1,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,17,-17,19,17,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,25,-27,28,25,-28,29,28,-28,30,28,-30,31,30,-30,32,34,-34,35,33,-35,36,35,-35,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,53,-53,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,99,-99,101,99,-101,102,101,-101,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,113,-116,117,113,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,132,134,-134,135,133,-135,136,134,-133,137,134,-137,138,140,-140,141,139,-141,142,141,-141,143,142,-141,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,159,-159,161,160,-159,162,164,-164,165,163,-165,166,163,-166,167,166,-166,168,170,-170,171,169,-171,172,169,-172,173,169,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,187,-190,191,190,-190,192,190,-192,193,192,-192,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,211,-214,215,214,-214,216,215,-214,217,215,-217,218,217,-217,219,217,-219,220,222,-222,220,221,-224,224,220,-224,225,223,-222,226,228,-228,229,227,-229,230,232,-232,231,233,-231,234,233,-232,235,230,-234,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,255,-255,257,256,-255,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,263,-266,267,263,-267,268,270,-270,271,269,-271,272,271,-271,271,272,-274,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,297,-297,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,307,-307,309,308,-307,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,319,-297,298,296,-320,320,322,-322,323,321,-323,322,324,-324,323,324,-326,324,326,-326,327,325,-327,328,330,-330,331,329,-331,307,331,-331,332,331,-308,308,332,-308,333,331,-333,334,336,-336,336,337,-336,338,337,-337,337,339,-336,340,335,-340,341,337,-339,342,337,-342,343,341,-339,344,337,-343,345,344,-343,346,337,-345,347,337,-347,348,337,-348,349,337,-349,350,337,-350,351,337,-351,351,350,-353,352,350,-354,354,353,-351,355,357,-357,358,356,-358,359,358,-358,358,359,-361,361,359,-358,362,361,-358,363,362,-358,364,361,-363,365,363,-358,363,365,-367,367,365,-358,368,367,-358,369,368,-358,370,369,-358,371,370,-358,357,372,-372,372,373,-372,373,374,-372,375,371,-375 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2160 { + a: 0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1950903,0.9807853,0,0.1950903,0.9807853,0,0.1950903,0.9807853,0,0.1305262,0.9914449,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,-0.8314696,-0.5555702,0,-0.806461,-0.5912873,0,-0.8314696,-0.5555702,0,-0.8548975,-0.518797,0,-0.8314696,-0.5555702,0,-0.806461,-0.5912873,0,-0.806461,-0.5912873,0,-0.8548975,-0.518797,0,-0.806461,-0.5912873,0,-0.8548975,-0.518797,0,-0.8548975,-0.518797,0,-0.806461,-0.5912873,0,-0.8314696,-0.5555702,0,-0.8548975,-0.518797,0,-0.806461,-0.5912873,0,-0.8314696,-0.5555702,0,-0.8548975,-0.518797,0,-0.8314696,-0.5555702,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.8548975,-0.518797,0,-0.8548975,-0.518797,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.8548975,-0.518797,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9940593,-0.1088393,0,-0.9940593,-0.1088393,0,-0.9940593,-0.1088393,0,-0.9659258,-0.258819,0,-0.1305262,-0.9914449,0,-0.2798557,-0.9600421,0,-0.1305262,-0.9914449,0,-0.2798557,-0.9600421,0,-0.1305262,-0.9914449,0,-0.2798557,-0.9600421,0,-0.9978589,-0.06540313,0,-0.9940593,-0.1088393,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9940593,-0.1088393,0,-0.9940593,-0.1088393,0,-0.9978589,-0.06540313,0,-0.9940593,-0.1088393,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9940593,-0.1088393,0,0.4422887,0.8968728,0,0.4422887,0.8968728,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.4422887,0.8968728,0,0.5,0.8660254,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9238795,-0.3826834,0,0.7518399,0.6593459,0,0.7518399,0.6593459,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7518399,0.6593459,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,-0.3624122,-0.9320179,0,-0.5,-0.8660254,0,-0.3624122,-0.9320179,0,-0.5,-0.8660254,0,-0.3624122,-0.9320179,0,-0.5,-0.8660254,0,0.06540313,0.9978589,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.1305262,0.9914449,0,0.06540313,0.9978589,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.9238795,0.3826834,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9659258,0.258819,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9807853,0.1950903,0,0.9807853,0.1950903,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9807853,0.1950903,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.3214395,-0.9469302,0,-0.3214395,-0.9469302,0,-0.2798557,-0.9600421,0,-0.2798557,-0.9600421,0,-0.2798557,-0.9600421,0,-0.3214395,-0.9469302,0,-0.3214395,-0.9469302,0,-0.3214395,-0.9469302,0,-0.2798557,-0.9600421,0,-0.3214395,-0.9469302,0,-0.2798557,-0.9600421,0,-0.3214395,-0.9469302,0,-0.3624122,-0.9320179,0,-0.3214395,-0.9469302,0,-0.3214395,-0.9469302,0,-0.3624122,-0.9320179,0,-0.3214395,-0.9469302,0,-0.3624122,-0.9320179,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.806461,-0.5912873,0,-0.806461,-0.5912873,0,-0.806461,-0.5912873,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.1305262,0.9914449,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,-0.6087614,0.7933533,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9659258,0.258819,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.6087614,0.7933533,0,0.7071068,0.7071068,0,0.7518399,0.6593459,0,0.7518399,0.6593459,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7518399,0.6593459,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.8314696,0.5555702,0,0.1305262,0.9914449,0,0.1950903,0.9807853,0,0.1305262,0.9914449,0,0.1950903,0.9807853,0,0.1305262,0.9914449,0,0.1950903,0.9807853,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.5,0.8660254,0,0.6087614,0.7933533,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,0.4422887,0.8968728,0,0.5,0.8660254,0,0.4422887,0.8968728,0,0.5,0.8660254,0,0.4422887,0.8968728,0,0.5,0.8660254,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.3214395,0.9469302,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,0,0.06540313,0.9978589,0,0.1305262,0.9914449,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,0.9807853,0.1950903,0,0.9807853,0.1950903,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9807853,0.1950903,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.8968728,0.4422887,0,0.9238795,0.3826834,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *752 { + a: -15.74803,9.37245,-15.74803,13.30946,-14.56693,9.37245,-14.56693,17.24647,-16.73228,17.24647,-16.73228,13.30946,15.74803,1.78042,15.74803,5.900302,16.73228,1.78042,16.73228,5.900302,16.73228,21.96033,16.73228,17.32546,14.56693,21.96033,14.56693,17.32546,-20.86614,14.56506,-20.86614,18.16996,-19.68504,14.56506,-19.68504,18.16996,-15.74803,14.56506,-15.74803,18.16996,-14.56693,14.56506,-14.56693,18.16996,-2.908149,21.86407,-0.5114511,24.98751,-0.1978446,19.48719,2.58604,22.27108,2.179029,16.77689,4.181802,13.77953,5.302467,19.17359,5.776207,10.54639,7.591352,15.74803,9.413528,12.05302,15.74803,24.98964,14.56693,24.98964,15.74803,28.92665,14.56693,32.86366,16.73228,28.92665,16.73228,32.86366,-19.68504,15.85253,-19.68504,19.45742,-15.74803,15.85253,-15.74803,19.45742,-19.68504,17.50435,-19.68504,21.10925,-15.74803,17.50435,-15.74803,21.10925,-15.74803,2.037912,-19.68504,2.037912,-15.74803,5.642809,-19.68504,5.642809,-20.86614,17.84044,-20.86614,21.44534,-19.68504,17.84044,-14.56693,21.44534,-15.74803,17.84044,-14.56693,17.84044,15.74803,6.646529,15.74803,10.76641,16.73228,6.646529,16.73228,10.76641,15.74803,8.876481,15.74803,12.99636,16.73228,8.876481,16.73228,12.99636,15.74803,10.91931,15.74803,15.03919,16.73228,10.91931,16.73228,15.03919,-15.74803,9.133973,-19.68504,9.133973,-15.74803,12.73887,-19.68504,12.73887,-19.68504,16.83791,-19.68504,20.44281,-15.74803,16.83791,-15.74803,20.44281,16.73228,16.85994,16.73228,12.74006,15.74803,16.85994,15.74803,12.74006,16.73228,18.68495,16.73228,14.05008,14.56693,18.68495,14.56693,14.05008,14.56693,4.010115,14.56693,8.644982,16.73228,4.010115,16.73228,8.644982,-15.74803,6.904022,-19.68504,6.904022,-15.74803,10.50892,-19.68504,10.50892,15.74803,-0.7724779,15.74803,3.347404,16.73228,-0.7724779,16.73228,3.347404,-16.08786,27.32328,-15.57398,31.22661,-12.55223,26.62,-11.53326,30.42286,-9.138645,25.46125,-7.632018,29.09857,-5.905512,23.86684,-3.937008,27.27639,16.73228,19.71492,16.73228,15.59503,15.74803,19.71492,15.74803,15.59503,16.73228,20.7003,16.73228,16.58042,15.74803,20.7003,15.74803,16.58042,6.934964,7.132808,10.73782,8.151781,7.638244,3.597178,7.874016,-7.986353E-14,11.81102,-6.825797E-14,11.54157,4.111061,16.73228,21.36674,16.73228,17.24686,15.74803,21.36674,15.74803,17.24686,-19.68504,35.43307,-15.0601,35.12994,-19.68504,27.55906,-16.08786,27.32328,-15.74803,-0.5149853,-19.68504,-0.5149853,-15.74803,3.089912,-19.68504,3.089912,-14.56693,4.5251,-15.74803,4.5251,-14.56693,8.129997,-19.68504,4.5251,-20.86614,8.129997,-20.86614,4.5251,-15.74803,8.129997,-19.68504,8.129997,-14.56693,17.71654,-15.74803,17.71654,-14.56693,25.59055,-15.74803,21.65354,-16.73228,21.65354,-16.73228,25.59055,-19.68504,12.99755,-19.68504,16.60245,-15.74803,12.99755,-15.74803,16.60245,-15.74803,11.1768,-19.68504,11.1768,-15.74803,14.7817,-19.68504,14.7817,-5.905512,23.86684,-1.968504,30.68594,-2.908149,21.86407,1.885247,28.11094,20.86614,15.57556,19.68504,15.57556,20.86614,23.44958,19.68504,19.51257,18.70079,19.51257,18.70079,23.44958,19.68504,24.98964,19.68504,28.92665,20.86614,24.98964,20.86614,32.86366,18.70079,28.92665,18.70079,32.86366,14.56693,15.57556,14.56693,23.44958,15.74803,15.57556,15.74803,19.51257,16.73228,19.51257,16.73228,23.44958,19.68504,20.7003,19.68504,16.58042,18.70079,20.7003,18.70079,16.58042,19.68504,10.91931,18.70079,10.91931,19.68504,15.03919,18.70079,15.03919,19.68504,16.85994,19.68504,12.74006,18.70079,16.85994,18.70079,12.74006,16.08786,27.32328,12.55223,26.62,15.57398,31.22661,11.53326,30.42286,9.138645,25.46125,7.632018,29.09857,5.905512,23.86684,3.937008,27.27639,20.86614,18.68495,20.86614,14.05008,18.70079,18.68495,18.70079,14.05008,19.68504,1.78042,18.70079,1.78042,19.68504,5.900302,18.70079,5.900302,19.68504,8.876481,18.70079,8.876481,19.68504,12.99636,18.70079,12.99636,20.86614,21.96033,20.86614,17.32546,18.70079,21.96033,18.70079,17.32546,2.908149,21.86407,0.1978446,19.48719,0.5114511,24.98751,-2.58604,22.27108,-2.179029,16.77689,-4.181802,13.77953,-5.302467,19.17359,-5.776207,10.54639,-7.591352,15.74803,-9.413528,12.05302,19.68504,12.48178,20.86614,8.544767,19.68504,8.544767,18.70079,16.41878,18.70079,12.48178,20.86614,16.41878,19.68504,6.646529,18.70079,6.646529,19.68504,10.76641,18.70079,10.76641,-20.86614,9.37245,-19.68504,13.30946,-19.68504,9.37245,-18.70079,17.24647,-18.70079,13.30946,-20.86614,17.24647,5.776207,10.54639,13.05085,13.55965,6.934964,7.132808,14.54068,9.170753,20.86614,4.010115,18.70079,4.010115,20.86614,8.644982,18.70079,8.644982,19.68504,-0.7724779,18.70079,-0.7724779,19.68504,3.347404,18.70079,3.347404,-5.776207,10.54639,-6.934964,7.132808,-13.05085,13.55965,-14.54068,9.170753,-6.934964,7.132808,-7.638244,3.597178,-10.73782,8.151781,-7.874016,5.395698E-14,-11.81102,6.556254E-14,-11.54157,4.111061,19.68504,35.43307,19.68504,27.55906,15.0601,35.12994,16.08786,27.32328,-20.86614,17.71654,-20.86614,25.59055,-19.68504,17.71654,-19.68504,21.65354,-18.70079,21.65354,-18.70079,25.59055,16.73228,16.41878,16.73228,12.48178,14.56693,16.41878,15.74803,12.48178,14.56693,8.544767,15.74803,8.544767,19.68504,21.36674,19.68504,17.24686,18.70079,21.36674,18.70079,17.24686,19.68504,19.71492,19.68504,15.59503,18.70079,19.71492,18.70079,15.59503,5.905512,23.86684,2.908149,21.86407,1.968504,30.68594,-1.885247,28.11094,-15.74803,5.129489E-31,-16.73228,5.129489E-31,-15.74803,39.37008,-16.73228,39.37008,19.68504,-7.105427E-15,15.74803,-7.105427E-15,19.68504,39.37008,15.74803,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-18.70079,-19.68504,-16.73228,-19.68504,-18.70079,39.37008,-16.73228,39.37008,-18.70079,35.43307,-16.73228,35.43307,-20.86614,35.43307,-14.56693,35.43307,-20.86614,27.55906,-14.56693,27.55906,19.68504,11.81102,19.68504,7.874016,18.70079,11.81102,15.74803,7.874016,16.73228,11.81102,15.74803,11.81102,-15.57398,31.22661,-15.0601,35.12994,-11.53326,30.42286,15.74803,39.37008,-7.632018,29.09857,-19.68504,39.37008,-19.68504,35.43307,-1.968504,30.68594,1.885247,28.11094,-3.937008,27.27639,2.58604,22.27108,-0.5114511,24.98751,5.302467,19.17359,7.591352,15.74803,9.413528,12.05302,13.05085,13.55965,14.54068,9.170753,15.74803,6.617689E-15,11.81102,1.552735E-15,11.54157,4.111061,10.73782,8.151781,19.68504,39.37008,19.68504,35.43307,-15.74803,39.37008,15.0601,35.12994,11.53326,30.42286,15.57398,31.22661,7.632018,29.09857,1.968504,30.68594,-1.885247,28.11094,3.937008,27.27639,-2.58604,22.27108,0.5114511,24.98751,-5.302467,19.17359,-7.591352,15.74803,-9.413528,12.05302,-13.05085,13.55965,-14.54068,9.170753,-15.74803,-2.277991E-14,-11.81102,-2.784486E-14,-11.54157,4.111061,-10.73782,8.151781 + } + UVIndex: *720 { + a: 0,2,1,2,3,1,3,4,1,5,1,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,17,16,19,17,18,20,19,18,21,19,20,22,24,23,25,23,24,26,25,24,27,25,26,28,25,27,29,28,27,30,28,29,31,30,29,32,34,33,35,33,34,36,35,34,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,53,52,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,99,98,101,99,100,102,101,100,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,113,115,117,113,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,132,134,133,135,133,134,136,134,132,137,134,136,138,140,139,141,139,140,142,141,140,143,142,140,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,159,158,161,160,158,162,164,163,165,163,164,166,163,165,167,166,165,168,170,169,171,169,170,172,169,171,173,169,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,187,189,191,190,189,192,190,191,193,192,191,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,211,213,215,214,213,216,215,213,217,215,216,218,217,216,219,217,218,220,222,221,220,221,223,224,220,223,225,223,221,226,228,227,229,227,228,230,232,231,231,233,230,234,233,231,235,230,233,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,255,254,257,256,254,258,260,259,261,259,260,262,264,263,265,263,264,266,263,265,267,263,266,268,270,269,271,269,270,272,271,270,271,272,273,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,297,296,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,307,306,309,308,306,310,312,311,313,311,312,314,316,315,317,315,316,318,319,296,298,296,319,320,322,321,323,321,322,322,324,323,323,324,325,324,326,325,327,325,326,328,330,329,331,329,330,307,331,330,332,331,307,308,332,307,333,331,332,334,336,335,336,337,335,338,337,336,337,339,335,340,335,339,341,337,338,342,337,341,343,341,338,344,337,342,345,344,342,346,337,344,347,337,346,348,337,347,349,337,348,350,337,349,351,337,350,351,350,352,352,350,353,354,353,350,355,357,356,358,356,357,359,358,357,358,359,360,361,359,357,362,361,357,363,362,357,364,361,362,365,363,357,363,365,366,367,365,357,368,367,357,369,368,357,370,369,357,371,370,357,357,372,371,372,373,371,373,374,371,375,371,374 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *240 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodArchTopDetail, Model::RootNode + C: "OO",4715242578728501334,0 + + ;Geometry::, Model::Mesh wallWoodArchTopDetail + C: "OO",5481936816254776341,4715242578728501334 + + ;Material::stoneDark, Model::Mesh wallWoodArchTopDetail + C: "OO",7174,4715242578728501334 + + ;Material::wood, Model::Mesh wallWoodArchTopDetail + C: "OO",7178,4715242578728501334 + + ;Material::woodDark, Model::Mesh wallWoodArchTopDetail + C: "OO",7186,4715242578728501334 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTopDetail.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTopDetail.fbx.import new file mode 100644 index 0000000..e3543d9 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTopDetail.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://4dc5i4x7u0gk" +path="res://.godot/imported/wallWoodArchTopDetail.fbx-c7801c53f0dd6d810d39561637a407c9.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodArchTopDetail.fbx" +dest_files=["res://.godot/imported/wallWoodArchTopDetail.fbx-c7801c53f0dd6d810d39561637a407c9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlock.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlock.fbx new file mode 100644 index 0000000..507582f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlock.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 676 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodBlock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodBlock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5492429701575633803, "Model::wallWoodBlock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5178258469202022318, "Geometry::", "Mesh" { + Vertices: *378 { + a: 5,0,5,5,0,4,4,0,5,4.75,0,4,4,0,4.75,5,10,4,5,0,4,5,10,5,5,0,5,-4,0,5,-5,0,5,-4,10,5,-5,10,5,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,-5,0,4,-5,10,4,-5,0,5,-5,10,5,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4.75,4,10,4.75,4,0,5,4,10,5,-5,0,-5,-5,10,-5,-5,0,-4,-5,10,-4,-4,10,-5,-4,0,-5,-4,10,-4.75,-4,0,-4.75,-4,0,5,-4,0,4.75,-5,0,5,-4.75,0,4,-5,0,4,5,10,4,5,10,5,4.75,10,4,4,10,5,4,10,4.75,-4,10,4.75,-4,10,5,-4.75,10,4,-5,10,5,-5,10,4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4,10,-4.75,-5,0,-5,-4,0,-5,-5,10,-5,-4,10,-5,-4,10,-5,-4,10,-4.75,-5,10,-5,-4.75,10,-4,-5,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4,0,-4.75,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,-4.75,0,-4,-5,0,-4,-4.75,10,-4,-5,10,-4,-5,0,4,-4.75,0,4,-5,10,4,-4.75,10,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4,0,-5,4,10,-5,4,0,-4.75,4,10,-4.75,-4,0,-5,-5,0,-5,-4,0,-4.75,-4.75,0,-4,-5,0,-4,-4,0,-4.75,4,0,-4.75,-4,10,-4.75,4,10,-4.75,4,0,4.75,-4,0,4.75,4,10,4.75,-4,10,4.75,4.75,10,-4,4.75,0,-4,4.75,10,4,4.75,0,4,-4.75,0,-4,-4.75,10,-4,-4.75,0,4,-4.75,10,4,4,0,-4.75,4.75,0,-4,4,10,-4.75,4.75,10,-4,4,10,-4.75,4.75,0,-4 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,40,-40,42,44,-44,45,43,-45,46,45,-45,47,49,-49,50,48,-50,51,50,-50,52,54,-54,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,64,-64,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,73,-73,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,100,-103,55,56,-45,46,44,-57,47,46,-57,62,47,-57,49,47,-63,64,49,-63,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,3,4,-73,74,72,-5,38,74,-5,101,74,-39,40,101,-39,102,101,-41,120,122,-122,123,125,-125 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *252 { + a: 19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,15.74803,18.70079,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,18.70079,0,18.70079,39.37008,19.68504,0,19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,39.37008,19.68504,0,18.70079,39.37008,18.70079,0,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-18.70079,15.74803,-19.68504,15.74803,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-15.74803,18.70079,15.74803,18.70079,15.74803,19.68504,18.70079,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-15.74803,-18.70079,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,15.74803,-19.68504,15.74803,-18.70079,19.68504,-19.68504,18.70079,-15.74803,19.68504,-15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,15.74803,-18.70079,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-18.70079,0,-18.70079,39.37008,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-18.70079,-18.70079,-15.74803,-19.68504,-15.74803,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-15.74803,0,-15.74803,0,-15.74803,39.37008,15.74803,0,15.74803,39.37008,-15.74803,0,-15.74803,39.37008,15.74803,0,-15.74803,0,-15.74803,39.37008,15.74803,0 + } + UVIndex: *234 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,40,39,42,44,43,45,43,44,46,45,44,47,49,48,50,48,49,51,50,49,52,54,53,55,53,54,56,55,54,57,59,58,60,58,59,61,63,62,64,62,63,65,64,63,66,68,67,69,67,68,70,72,71,73,71,72,74,73,72,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,100,102,55,56,44,46,44,56,47,46,56,62,47,56,49,47,62,64,49,62,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,3,4,72,74,72,4,38,74,4,101,74,38,40,101,38,102,101,40,120,122,121,123,125,124 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodBlock, Model::RootNode + C: "OO",5492429701575633803,0 + + ;Geometry::, Model::Mesh wallWoodBlock + C: "OO",5178258469202022318,5492429701575633803 + + ;Material::wood, Model::Mesh wallWoodBlock + C: "OO",7178,5492429701575633803 + + ;Material::woodDark, Model::Mesh wallWoodBlock + C: "OO",7186,5492429701575633803 + + ;Material::_defaultMat, Model::Mesh wallWoodBlock + C: "OO",7176,5492429701575633803 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlock.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlock.fbx.import new file mode 100644 index 0000000..323cbb0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b7drxm7ghjsiq" +path="res://.godot/imported/wallWoodBlock.fbx-636bec06de74aab92cb19d83a751fd8d.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlock.fbx" +dest_files=["res://.godot/imported/wallWoodBlock.fbx-636bec06de74aab92cb19d83a751fd8d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlockHalf.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlockHalf.fbx new file mode 100644 index 0000000..afbd77d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlockHalf.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 739 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodBlockHalf.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodBlockHalf.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5706305466525381915, "Model::wallWoodBlockHalf", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5760291445753937926, "Geometry::", "Mesh" { + Vertices: *378 { + a: 5,0,5,5,0,4,4,0,5,4.75,0,4,4,0,4.75,5,5,4,5,0,4,5,5,5,5,0,5,-4,0,5,-5,0,5,-4,5,5,-5,5,5,-4,5,4.75,-4,0,4.75,-4,5,5,-4,0,5,-5,0,4,-5,5,4,-5,0,5,-5,5,5,5,0,5,4,0,5,5,5,5,4,5,5,4,0,4.75,4,5,4.75,4,0,5,4,5,5,-5,0,-5,-5,5,-5,-5,0,-4,-5,5,-4,-4,5,-5,-4,0,-5,-4,5,-4.75,-4,0,-4.75,-4,0,5,-4,0,4.75,-5,0,5,-4.75,0,4,-5,0,4,5,5,4,5,5,5,4.75,5,4,4,5,5,4,5,4.75,-4,5,4.75,-4,5,5,-4.75,5,4,-5,5,5,-5,5,4,5,5,-5,5,5,-4,4,5,-5,4.75,5,-4,4,5,-4.75,-5,0,-5,-4,0,-5,-5,5,-5,-4,5,-5,-4,5,-5,-4,5,-4.75,-5,5,-5,-4.75,5,-4,-5,5,-4,5,5,-5,5,0,-5,5,5,-4,5,0,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4,0,-4.75,4.75,0,4,5,0,4,4.75,5,4,5,5,4,5,0,-4,4.75,0,-4,5,5,-4,4.75,5,-4,-4.75,0,-4,-5,0,-4,-4.75,5,-4,-5,5,-4,-5,0,4,-4.75,0,4,-5,5,4,-4.75,5,4,4,0,-5,5,0,-5,4,5,-5,5,5,-5,4,0,-5,4,5,-5,4,0,-4.75,4,5,-4.75,-4,0,-5,-5,0,-5,-4,0,-4.75,-4.75,0,-4,-5,0,-4,-4,0,-4.75,4,0,-4.75,-4,5,-4.75,4,5,-4.75,4,0,4.75,-4,0,4.75,4,5,4.75,-4,5,4.75,4.75,5,-4,4.75,0,-4,4.75,5,4,4.75,0,4,-4.75,0,-4,-4.75,5,-4,-4.75,0,4,-4.75,5,4,4,0,-4.75,4.75,0,-4,4,5,-4.75,4.75,5,-4,4,5,-4.75,4.75,0,-4 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,40,-40,42,44,-44,45,43,-45,46,45,-45,47,49,-49,50,48,-50,51,50,-50,52,54,-54,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,64,-64,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,73,-73,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,100,-103,55,56,-45,46,44,-57,47,46,-57,62,47,-57,49,47,-63,64,49,-63,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,3,4,-73,74,72,-5,38,74,-5,101,74,-39,40,101,-39,102,101,-41,120,122,-122,123,125,-125 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *252 { + a: 19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,15.74803,18.70079,-15.74803,19.68504,-15.74803,0,-19.68504,19.68504,-19.68504,0,-15.74803,0,-19.68504,0,-15.74803,19.68504,-19.68504,19.68504,-18.70079,19.68504,-18.70079,-1.136868E-14,-19.68504,19.68504,-19.68504,-1.136868E-14,15.74803,-4.263256E-14,15.74803,19.68504,19.68504,-4.263256E-14,19.68504,19.68504,19.68504,0,15.74803,0,19.68504,19.68504,15.74803,19.68504,18.70079,0,18.70079,19.68504,19.68504,0,19.68504,19.68504,-19.68504,-4.263256E-14,-19.68504,19.68504,-15.74803,-4.263256E-14,-15.74803,19.68504,19.68504,19.68504,19.68504,-1.136868E-14,18.70079,19.68504,18.70079,-1.136868E-14,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-18.70079,15.74803,-19.68504,15.74803,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-15.74803,18.70079,15.74803,18.70079,15.74803,19.68504,18.70079,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-15.74803,-18.70079,19.68504,0,15.74803,0,19.68504,19.68504,15.74803,19.68504,15.74803,-19.68504,15.74803,-18.70079,19.68504,-19.68504,18.70079,-15.74803,19.68504,-15.74803,19.68504,19.68504,19.68504,0,15.74803,19.68504,15.74803,0,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,15.74803,-18.70079,-18.70079,0,-19.68504,0,-18.70079,19.68504,-19.68504,19.68504,19.68504,0,18.70079,0,19.68504,19.68504,18.70079,19.68504,-18.70079,-1.96997E-27,-19.68504,-1.96997E-27,-18.70079,19.68504,-19.68504,19.68504,19.68504,1.96997E-27,18.70079,1.96997E-27,19.68504,19.68504,18.70079,19.68504,-15.74803,0,-19.68504,0,-15.74803,19.68504,-19.68504,19.68504,-19.68504,0,-19.68504,19.68504,-18.70079,0,-18.70079,19.68504,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-18.70079,-18.70079,-15.74803,-19.68504,-15.74803,15.74803,-1.36152E-28,-15.74803,-1.36152E-28,15.74803,19.68504,-15.74803,19.68504,15.74803,1.36152E-28,-15.74803,1.36152E-28,15.74803,19.68504,-15.74803,19.68504,15.74803,19.68504,15.74803,0,-15.74803,19.68504,-15.74803,0,-15.74803,-4.050093E-14,-15.74803,19.68504,15.74803,-4.050093E-14,15.74803,19.68504,-15.74803,0,-15.74803,19.68504,15.74803,0,-15.74803,0,-15.74803,19.68504,15.74803,0 + } + UVIndex: *234 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,40,39,42,44,43,45,43,44,46,45,44,47,49,48,50,48,49,51,50,49,52,54,53,55,53,54,56,55,54,57,59,58,60,58,59,61,63,62,64,62,63,65,64,63,66,68,67,69,67,68,70,72,71,73,71,72,74,73,72,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,100,102,55,56,44,46,44,56,47,46,56,62,47,56,49,47,62,64,49,62,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,3,4,72,74,72,4,38,74,4,101,74,38,40,101,38,102,101,40,120,122,121,123,125,124 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodBlockHalf, Model::RootNode + C: "OO",5706305466525381915,0 + + ;Geometry::, Model::Mesh wallWoodBlockHalf + C: "OO",5760291445753937926,5706305466525381915 + + ;Material::wood, Model::Mesh wallWoodBlockHalf + C: "OO",7178,5706305466525381915 + + ;Material::woodDark, Model::Mesh wallWoodBlockHalf + C: "OO",7186,5706305466525381915 + + ;Material::_defaultMat, Model::Mesh wallWoodBlockHalf + C: "OO",7176,5706305466525381915 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlockHalf.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlockHalf.fbx.import new file mode 100644 index 0000000..846dd7d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlockHalf.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://crw57bv6rheff" +path="res://.godot/imported/wallWoodBlockHalf.fbx-e0206a5fb76e6e0f09d3f0105ca61302.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBlockHalf.fbx" +dest_files=["res://.godot/imported/wallWoodBlockHalf.fbx-e0206a5fb76e6e0f09d3f0105ca61302.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBroken.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBroken.fbx new file mode 100644 index 0000000..303ca62 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBroken.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 781 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodBroken.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodBroken.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5243119770204482352, "Model::wallWoodBroken", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5131629132978130283, "Geometry::", "Mesh" { + Vertices: *822 { + a: 4.75,4.166667,-0.7979485,5.096424,4.166667,-0.9145331,4.75,4.166667,-1.943911,4.25,2.5,-1.211536,4.25,2.5,-2.342147,3.967347,2.5,-1.287272,4.75,2.5,-2.276321,5.032653,2.5,-3.331196,4.75,2.5,-3.406933,4.25,4.166667,-1.862033,4.25,4.166667,-2.338958,4.105826,4.166667,-2.290438,4.25,5.948657,-0.5,4.75,5.948657,-0.5,4.25,6.360264,-0.5,4.75,6.360264,-0.5,4.75,2.5,-4.25,4.75,2.5,-3.406933,4.25,2.5,-4.25,4.54969,2.5,-3.460605,4.25,2.5,-2.342147,4.25,4.977836,0.09999999,4.75,4.977836,0.09999999,4.25,5.948657,0.09999999,4.75,5.948657,0.09999999,4.25,0.8333334,-4.25,4.75,0.8333334,-4.25,4.25,1.666667,-4.25,4.75,1.666667,-4.25,4.75,1.666667,-4.25,4.75,0.8333334,-4.25,4.75,1.666667,-3.5,4.75,0,4,4.75,0.8333334,-5,4.75,0,-5,4.75,2.5,-3.406933,4.75,2.5,-2.276321,4.75,2.193597,-3.5,4.75,2.193597,-4.25,4.75,2.5,-4.25,4.75,2.5,-0.8486027,4.75,4.166667,-0.7979485,4.75,3.333333,-0.8486027,4.75,4.166667,-1.943911,4.75,3.333333,-2,4.75,3.860264,-2,4.75,3.860264,-2.75,4.75,4.166667,-2.75,4.75,4.166667,-0.5,4.75,4.977836,0.09999999,4.75,6.666667,1.75,4.75,4.977836,-0.5,4.75,5.948657,0.09999999,4.75,5.948657,-0.5,4.75,6.360264,-0.5,4.75,6.360264,-1.25,4.75,6.666667,-1.25,4.75,7.5,3.25,4.75,7.5,1.75,4.75,9.166666,4,4.75,9.166666,3.25,4.75,6.666667,-1.25,4.75,6.666667,1.75,4.25,6.666667,-1.25,4.25,6.666667,1.75,4.75,1.666667,-4.25,4.75,1.666667,-3.5,4.25,1.666667,-4.25,4.25,1.666667,-3.5,4.25,3.333333,-2,4.75,3.333333,-2,4.25,3.860264,-2,4.75,3.860264,-2,4.25,2.5,-0.8486027,4.75,2.5,-0.8486027,4.25,3.333333,-0.8486027,4.75,3.333333,-0.8486027,4.25,3.860264,-2.75,4.75,3.860264,-2.75,4.25,4.166667,-2.75,4.75,4.166667,-2.75,4.75,3.860264,-2,4.75,3.860264,-2.75,4.25,3.860264,-2,4.25,3.860264,-2.75,4.75,0.8333334,-5,4.75,0.8333334,-4.25,4.25,0.8333334,-5,4.25,0.8333334,-4.25,4.25,6.666667,1.75,4.75,6.666667,1.75,4.25,7.5,1.75,4.75,7.5,1.75,4.25,7.5,3.25,4.75,7.5,3.25,4.25,9.166666,3.25,4.75,9.166666,3.25,4.25,0,-5,4.75,0,-5,4.25,0.8333334,-5,4.75,0.8333334,-5,4.75,7.5,1.75,4.75,7.5,3.25,4.25,7.5,1.75,4.25,7.5,3.25,4.75,3.333333,-0.8486027,4.75,3.333333,-2,4.25,3.333333,-0.8486027,4.25,3.333333,-2,4.75,5.948657,0.09999999,4.75,5.948657,-0.5,4.25,5.948657,0.09999999,4.25,5.948657,-0.5,4.25,5.948657,-0.5,4.25,6.360264,-0.5,4.25,5.948657,0.09999999,4.25,6.666667,1.75,4.25,0,4,4.25,4.977836,0.09999999,4.25,4.977836,-0.5,4.25,4.166667,-0.5,4.25,6.666667,-1.25,4.25,6.360264,-1.25,4.25,7.5,1.75,4.25,7.5,3.25,4.25,9.166666,3.25,4.25,9.166666,4,4.25,3.333333,-0.8486027,4.25,2.5,-0.8486027,4.25,2.5,-1.211536,4.25,4.166667,-1.862033,4.25,2.5,-2.342147,4.25,3.860264,-2,4.25,3.333333,-2,4.25,4.166667,-2.338958,4.25,4.166667,-2.75,4.25,3.860264,-2.75,4.25,2.193597,-3.5,4.25,2.5,-4.25,4.25,2.193597,-4.25,4.25,1.666667,-3.5,4.25,1.666667,-4.25,4.25,0.8333334,-4.25,4.25,0.8333334,-5,4.25,0,-5,4.75,0,4,4.75,0,-5,4.25,0,4,4.25,0,-5,4.25,1.666667,-3.5,4.75,1.666667,-3.5,4.25,2.193597,-3.5,4.75,2.193597,-3.5,4.75,9.166666,3.25,4.75,9.166666,4,4.25,9.166666,3.25,4.25,9.166666,4,4.25,4.166667,-0.5,4.75,4.166667,-0.5,4.25,4.977836,-0.5,4.75,4.977836,-0.5,4.75,4.166667,-0.7979485,4.75,4.166667,-0.5,4.62254,4.166667,-0.7550535,4.25,4.166667,-0.5,4.25,4.166667,-1.862033,4.25,6.360264,-1.25,4.75,6.360264,-1.25,4.25,6.666667,-1.25,4.75,6.666667,-1.25,4.75,6.360264,-0.5,4.75,6.360264,-1.25,4.25,6.360264,-0.5,4.25,6.360264,-1.25,4.25,2.193597,-4.25,4.75,2.193597,-4.25,4.25,2.5,-4.25,4.75,2.5,-4.25,4.75,2.193597,-3.5,4.75,2.193597,-4.25,4.25,2.193597,-3.5,4.25,2.193597,-4.25,4.75,4.977836,-0.5,4.75,4.977836,0.09999999,4.25,4.977836,-0.5,4.25,4.977836,0.09999999,5.032653,2.806402,-3.331196,5.032653,2.5,-3.331196,4.45031,2.806402,-1.157863,4.75,2.5,-2.276321,4.45031,2.5,-1.157863,4.54969,2.5,-3.460605,4.54969,2.806402,-3.460605,4.25,2.5,-2.342147,3.967347,2.806402,-1.287272,3.967347,2.5,-1.287272,4.105826,4.166667,-2.290438,4.105826,4.473069,-2.290438,4.25,4.166667,-1.862033,4.62254,4.473069,-0.7550535,4.62254,4.166667,-0.7550535,5.096424,4.166667,-0.9145331,4.75,4.166667,-0.7979485,5.096424,4.473069,-0.9145331,4.62254,4.166667,-0.7550535,4.62254,4.473069,-0.7550535,4.75,4.166667,-1.943911,4.57971,4.166667,-2.449918,4.75,4.166667,-2.75,4.25,4.166667,-2.75,4.25,4.166667,-2.338958,4.75,2.5,-2.276321,4.75,2.5,-0.8486027,4.45031,2.5,-1.157863,4.25,2.5,-0.8486027,4.25,2.5,-1.211536,4.105826,4.166667,-2.290438,4.25,4.166667,-2.338958,4.105826,4.473069,-2.290438,4.57971,4.473069,-2.449918,4.57971,4.166667,-2.449918,5.096424,4.473069,-0.9145331,4.62254,4.473069,-0.7550535,4.57971,4.473069,-2.449918,4.105826,4.473069,-2.290438,5.032653,2.806402,-3.331196,4.45031,2.806402,-1.157863,4.54969,2.806402,-3.460605,3.967347,2.806402,-1.287272,4.54969,2.5,-3.460605,4.75,2.5,-3.406933,4.54969,2.806402,-3.460605,5.032653,2.5,-3.331196,5.032653,2.806402,-3.331196,4.57971,4.473069,-2.449918,4.57971,4.166667,-2.449918,5.096424,4.473069,-0.9145331,4.75,4.166667,-1.943911,5.096424,4.166667,-0.9145331,4.45031,2.5,-1.157863,4.25,2.5,-1.211536,4.45031,2.806402,-1.157863,3.967347,2.5,-1.287272,3.967347,2.806402,-1.287272,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,10,5,4.75,10,4,4,10,5,4,10,4,5,0,5,4,0,5,5,10,5,4,10,5,4.75,0,4,5,0,4,4.75,9.166666,4,5,10,4,4.75,10,4,4,10,4,4.25,9.166666,4,4.25,0,4,4,0,4,5,0,5,5,0,4,4,0,5,4,0,4,5,10,4,5,0,4,5,10,5,5,0,5 + } + PolygonVertexIndex: *522 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,31,32,-31,30,32,-34,34,33,-33,35,32,-32,36,32,-36,31,37,-36,37,38,-36,39,35,-39,40,32,-37,41,32,-41,40,42,-42,41,42,-44,42,44,-44,44,45,-44,45,46,-44,47,43,-47,48,32,-42,49,32,-49,50,32,-50,51,49,-49,49,52,-51,52,53,-51,53,54,-51,54,55,-51,56,50,-56,57,32,-51,58,57,-51,32,57,-60,60,59,-58,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,115,116,-115,116,115,-118,115,118,-118,118,119,-118,119,120,-118,116,121,-115,122,114,-122,123,116,-118,124,123,-118,125,124,-118,126,125,-118,120,127,-118,127,128,-118,128,129,-118,120,130,-128,129,131,-118,130,132,-128,133,127,-133,130,134,-133,134,135,-133,136,132,-136,131,137,-118,131,138,-138,139,137,-139,137,140,-118,140,141,-118,141,142,-118,142,143,-118,144,117,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,164,-164,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,189,-189,191,193,-193,194,192,-194,195,194,-194,196,198,-198,199,197,-199,200,199,-199,201,203,-203,204,202,-204,205,204,-204,206,208,-208,209,207,-209,210,207,-210,211,213,-213,214,212,-214,215,214,-214,216,218,-218,218,219,-218,220,217,-220,221,223,-223,224,222,-224,225,227,-227,228,226,-228,229,231,-231,232,230,-232,233,232,-232,234,236,-236,237,235,-237,238,237,-237,239,241,-241,242,240,-242,243,242,-242,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,251,-251,253,255,-255,256,254,-256,257,259,-259,260,258,-260,261,260,-260,261,259,-263,259,263,-263,263,264,-263,265,262,-265,266,268,-268,145,267,-269,147,145,-269,269,147,-269,270,272,-272,273,271,-273 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1566 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9477684,0,0.3189593,-0.9477684,0,0.3189593,-0.9477684,0,0.3189593,-0.9477684,0,0.3189593,-0.9477684,0,0.3189593,-0.9477684,0,0.3189593,-0.9477684,0,0.3189593,-0.9477684,0,0.3189593,-0.9477684,0,0.3189593,0.3189593,0,0.9477684,0.3189593,0,0.9477684,0.3189593,0,0.9477684,0.3189593,0,0.9477684,0.3189593,0,0.9477684,0.3189593,0,0.9477684,0.3189593,0,0.9477684,0.3189593,0,0.9477684,0.3189593,0,0.9477684,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3189593,0,-0.9477684,-0.3189593,0,-0.9477684,-0.3189593,0,-0.9477684,-0.3189593,0,-0.9477684,-0.3189593,0,-0.9477684,-0.3189593,0,-0.9477684,-0.3189593,0,-0.9477684,-0.3189593,0,-0.9477684,-0.3189593,0,-0.9477684,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.9477684,0,-0.3189593,0.9477684,0,-0.3189593,0.9477684,0,-0.3189593,0.9477684,0,-0.3189593,0.9477684,0,-0.3189593,0.9477684,0,-0.3189593,0.9477684,0,-0.3189593,0.9477684,0,-0.3189593,0.9477684,0,-0.3189593,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *548 { + a: 18.70079,-3.14153,20.06466,-3.600524,18.70079,-7.653194,16.73228,-4.769825,16.73228,-9.221052,15.61948,-5.068001,18.70079,-8.961893,19.81359,-13.11494,18.70079,-13.41312,16.73228,-7.330839,16.73228,-9.208497,16.16467,-9.017473,-16.73228,23.41991,-18.70079,23.41991,-16.73228,25.04041,-18.70079,25.04041,-18.70079,-16.73228,-18.70079,-13.41312,-16.73228,-16.73228,-17.91216,-13.62443,-16.73228,-9.221052,-16.73228,19.59778,-18.70079,19.59778,-16.73228,23.41991,-18.70079,23.41991,-16.73228,3.28084,-18.70079,3.28084,-16.73228,6.56168,-18.70079,6.56168,16.73228,6.56168,16.73228,3.28084,13.77953,6.56168,-15.74803,5.046071E-15,19.68504,3.28084,19.68504,5.046071E-15,13.41312,9.84252,8.961893,9.84252,13.77953,8.63621,16.73228,8.63621,16.73228,9.84252,3.340955,9.84252,3.14153,16.4042,3.340955,13.12336,7.653194,16.4042,7.874016,13.12336,7.874016,15.19789,10.82677,15.19789,10.82677,16.4042,1.968504,16.4042,-0.3937008,19.59778,-6.889764,26.24672,1.968504,19.59778,-0.3937008,23.41991,1.968504,23.41991,1.968504,25.04041,4.92126,25.04041,4.92126,26.24672,-12.79528,29.52756,-6.889764,29.52756,-15.74803,36.08924,-12.79528,36.08924,-18.70079,-4.92126,-18.70079,6.889764,-16.73228,-4.92126,-16.73228,6.889764,-18.70079,-16.73228,-18.70079,-13.77953,-16.73228,-16.73228,-16.73228,-13.77953,-16.73228,13.12336,-18.70079,13.12336,-16.73228,15.19789,-18.70079,15.19789,-16.73228,9.84252,-18.70079,9.84252,-16.73228,13.12336,-18.70079,13.12336,-16.73228,15.19789,-18.70079,15.19789,-16.73228,16.4042,-18.70079,16.4042,18.70079,-7.874016,18.70079,-10.82677,16.73228,-7.874016,16.73228,-10.82677,-18.70079,-19.68504,-18.70079,-16.73228,-16.73228,-19.68504,-16.73228,-16.73228,-16.73228,26.24672,-18.70079,26.24672,-16.73228,29.52756,-18.70079,29.52756,-16.73228,29.52756,-18.70079,29.52756,-16.73228,36.08924,-18.70079,36.08924,-16.73228,-1.364242E-12,-18.70079,-1.364242E-12,-16.73228,3.28084,-18.70079,3.28084,-18.70079,6.889764,-18.70079,12.79528,-16.73228,6.889764,-16.73228,12.79528,18.70079,-3.340955,18.70079,-7.874016,16.73228,-3.340955,16.73228,-7.874016,18.70079,0.3937008,18.70079,-1.968504,16.73228,0.3937008,16.73228,-1.968504,-1.968504,23.41991,-1.968504,25.04041,0.3937008,23.41991,6.889764,26.24672,15.74803,9.277344E-15,0.3937008,19.59778,-1.968504,19.59778,-1.968504,16.4042,-4.92126,26.24672,-4.92126,25.04041,6.889764,29.52756,12.79528,29.52756,12.79528,36.08924,15.74803,36.08924,-3.340955,13.12336,-3.340955,9.84252,-4.769825,9.84252,-7.330839,16.4042,-9.221052,9.84252,-7.874016,15.19789,-7.874016,13.12336,-9.208497,16.4042,-10.82677,16.4042,-10.82677,15.19789,-13.77953,8.63621,-16.73228,9.84252,-16.73228,8.63621,-13.77953,6.56168,-16.73228,6.56168,-16.73228,3.28084,-19.68504,3.28084,-19.68504,9.277344E-15,18.70079,15.74803,18.70079,-19.68504,16.73228,15.74803,16.73228,-19.68504,-16.73228,6.56168,-18.70079,6.56168,-16.73228,8.63621,-18.70079,8.63621,-18.70079,12.79528,-18.70079,15.74803,-16.73228,12.79528,-16.73228,15.74803,-16.73228,16.4042,-18.70079,16.4042,-16.73228,19.59778,-18.70079,19.59778,-18.70079,-3.14153,-18.70079,-1.968504,-18.19898,-2.972651,-16.73228,-1.968504,-16.73228,-7.330839,-16.73228,25.04041,-18.70079,25.04041,-16.73228,26.24672,-18.70079,26.24672,18.70079,-1.968504,18.70079,-4.92126,16.73228,-1.968504,16.73228,-4.92126,-16.73228,8.63621,-18.70079,8.63621,-16.73228,9.84252,-18.70079,9.84252,18.70079,-13.77953,18.70079,-16.73228,16.73228,-13.77953,16.73228,-16.73228,-18.70079,-1.968504,-18.70079,0.3937008,-16.73228,-1.968504,-16.73228,0.3937008,17.7962,11.04883,17.7962,9.84252,8.937931,11.04883,13.49664,9.84252,8.937931,9.84252,-17.7962,9.84252,-17.7962,11.04883,-13.23749,9.84252,-8.937931,11.04883,-8.937931,9.84252,-3.390605,16.4042,-3.390605,17.61051,-1.61102,16.4042,2.987348,17.61051,2.987348,16.4042,20.16507,16.4042,18.72604,16.4042,20.16507,17.61051,18.19657,16.4042,18.19657,17.61051,-18.70079,-7.653194,-18.03035,-9.645346,-18.70079,-10.82677,-16.73228,-10.82677,-16.73228,-9.208497,-18.70079,-8.961893,-18.70079,-3.340955,-17.52091,-4.558515,-16.73228,-3.340955,-16.73228,-4.769825,-18.19657,16.4042,-18.79547,16.4042,-18.19657,17.61051,-20.16507,17.61051,-20.16507,16.4042,-20.06466,-3.600524,-18.19898,-2.972651,-18.03035,-9.645346,-16.16467,-9.017473,-19.81359,-13.11494,-17.52091,-4.558515,-17.91216,-13.62443,-15.61948,-5.068001,-13.77556,9.84252,-14.592,9.84252,-13.77556,11.04883,-15.74407,9.84252,-15.74407,11.04883,3.390605,17.61051,3.390605,16.4042,-2.987348,17.61051,1.288665,16.4042,-2.987348,16.4042,15.74407,9.84252,14.92762,9.84252,15.74407,11.04883,13.77556,9.84252,13.77556,11.04883,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-15.74803,15.74803,19.68504,-2.842171E-14,15.74803,-2.842171E-14,19.68504,39.37008,15.74803,39.37008,-18.70079,2.264302E-14,-19.68504,2.264302E-14,-18.70079,36.08924,-19.68504,39.37008,-18.70079,39.37008,-15.74803,39.37008,-16.73228,36.08924,-16.73228,1.948917E-14,-15.74803,1.948917E-14,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0 + } + UVIndex: *522 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,31,32,30,30,32,33,34,33,32,35,32,31,36,32,35,31,37,35,37,38,35,39,35,38,40,32,36,41,32,40,40,42,41,41,42,43,42,44,43,44,45,43,45,46,43,47,43,46,48,32,41,49,32,48,50,32,49,51,49,48,49,52,50,52,53,50,53,54,50,54,55,50,56,50,55,57,32,50,58,57,50,32,57,59,60,59,57,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,115,116,114,116,115,117,115,118,117,118,119,117,119,120,117,116,121,114,122,114,121,123,116,117,124,123,117,125,124,117,126,125,117,120,127,117,127,128,117,128,129,117,120,130,127,129,131,117,130,132,127,133,127,132,130,134,132,134,135,132,136,132,135,131,137,117,131,138,137,139,137,138,137,140,117,140,141,117,141,142,117,142,143,117,144,117,143,145,147,146,148,146,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,163,162,164,162,163,165,164,163,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,189,188,191,193,192,194,192,193,195,194,193,196,198,197,199,197,198,200,199,198,201,203,202,204,202,203,205,204,203,206,208,207,209,207,208,210,207,209,211,213,212,214,212,213,215,214,213,216,218,217,218,219,217,220,217,219,221,223,222,224,222,223,225,227,226,228,226,227,229,231,230,232,230,231,233,232,231,234,236,235,237,235,236,238,237,236,239,241,240,242,240,241,243,242,241,244,246,245,247,245,246,248,250,249,251,249,250,252,251,250,253,255,254,256,254,255,257,259,258,260,258,259,261,260,259,261,259,262,259,263,262,263,264,262,265,262,264,266,268,267,145,267,268,147,145,268,269,147,268,270,272,271,273,271,272 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *174 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodBroken, Model::RootNode + C: "OO",5243119770204482352,0 + + ;Geometry::, Model::Mesh wallWoodBroken + C: "OO",5131629132978130283,5243119770204482352 + + ;Material::woodDark, Model::Mesh wallWoodBroken + C: "OO",7186,5243119770204482352 + + ;Material::wood, Model::Mesh wallWoodBroken + C: "OO",7178,5243119770204482352 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBroken.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBroken.fbx.import new file mode 100644 index 0000000..d0a21fd --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBroken.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cqbygqndtadfd" +path="res://.godot/imported/wallWoodBroken.fbx-193b0286626ab1692943fcbc98729169.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodBroken.fbx" +dest_files=["res://.godot/imported/wallWoodBroken.fbx-193b0286626ab1692943fcbc98729169.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCorner.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCorner.fbx new file mode 100644 index 0000000..0b03fb6 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCorner.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 838 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5055919609671692124, "Model::wallWoodCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4762817092730080620, "Geometry::", "Mesh" { + Vertices: *360 { + a: -4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,-4,10,5,-5,10,5,-4,10,4.75,-4,10,4.25,-4,10,4,-5,10,4,-4,0,5,-4,0,4.75,-5,0,5,-4,0,4.25,-4,0,4,-5,0,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,0,5,4,0,5,5,10,5,4,10,5,-4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,5,10,5,4,10,5,5,10,4,4.75,10,4,4.25,10,4,4,10,4.75,4,10,4.25,4,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,0,4,4,10,4,4,0,4.25,4,10,4.25,-5,0,4,-4,0,4,-5,10,4,-4,10,4,-5,0,4,-5,10,4,-5,0,5,-5,10,5,-4,0,5,-5,0,5,-4,10,5,-5,10,5,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4.75,4,0,4.25,4,0,4,4,0,4.75,4,10,4.75,4,0,5,4,10,5,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,10,4,5,0,4,5,10,5,5,0,5,-4,0,4.25,4,0,4.25,-4,10,4.25,4,10,4.25,4,0,4.75,-4,0,4.75,4,10,4.75,-4,10,4.75,4.75,10,-4,4.75,0,-4,4.75,10,4,4.75,0,4,4.25,0,-4,4.25,10,-4,4.25,0,4,4.25,10,4 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,5,-9,10,12,-12,13,11,-13,14,13,-13,15,14,-13,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,29,-32,33,29,-33,34,33,-33,35,34,-33,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,60,-59,62,60,-62,63,60,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,77,76,-75,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,85,-85,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,33,34,-7,7,6,-35,61,11,-63,13,62,-12,104,106,-106,107,105,-107,108,110,-110,111,109,-111,75,76,-32,32,31,-77,112,114,-114,115,113,-115,59,60,-85,86,84,-61,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: -18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,15.74803,19.68504,19.68504,19.68504,15.74803,18.70079,15.74803,16.73228,15.74803,15.74803,19.68504,15.74803,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,16.73228,-15.74803,15.74803,-19.68504,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,-19.68504,19.68504,-15.74803,19.68504,-19.68504,15.74803,-18.70079,15.74803,-16.73228,15.74803,-15.74803,18.70079,-15.74803,16.73228,-15.74803,15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,15.74803,0,15.74803,39.37008,16.73228,0,16.73228,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,15.74803,9.766856E-26,15.74803,39.37008,19.68504,9.766856E-26,19.68504,39.37008,-15.74803,9.663381E-13,-19.68504,9.663381E-13,-15.74803,39.37008,-19.68504,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,18.70079,15.74803,16.73228,15.74803,15.74803,18.70079,0,18.70079,39.37008,19.68504,0,19.68504,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-15.74803,0,-15.74803,0,-15.74803,39.37008,15.74803,0,15.74803,39.37008 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,5,8,10,12,11,13,11,12,14,13,12,15,14,12,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,29,31,33,29,32,34,33,32,35,34,32,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,60,58,62,60,61,63,60,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,77,76,74,78,80,79,81,79,80,82,84,83,85,83,84,86,85,84,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,33,34,6,7,6,34,61,11,62,13,62,11,104,106,105,107,105,106,108,110,109,111,109,110,75,76,31,32,31,76,112,114,113,115,113,114,59,60,84,86,84,60,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodCorner, Model::RootNode + C: "OO",5055919609671692124,0 + + ;Geometry::, Model::Mesh wallWoodCorner + C: "OO",4762817092730080620,5055919609671692124 + + ;Material::wood, Model::Mesh wallWoodCorner + C: "OO",7178,5055919609671692124 + + ;Material::woodDark, Model::Mesh wallWoodCorner + C: "OO",7186,5055919609671692124 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCorner.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCorner.fbx.import new file mode 100644 index 0000000..2fcbd95 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://newybwgd024n" +path="res://.godot/imported/wallWoodCorner.fbx-05fb733a9c9205dbd1c7d927c238f56d.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCorner.fbx" +dest_files=["res://.godot/imported/wallWoodCorner.fbx-05fb733a9c9205dbd1c7d927c238f56d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonal.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonal.fbx new file mode 100644 index 0000000..95bc5ea --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonal.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 879 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodCornerDiagonal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodCornerDiagonal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5186654341942193825, "Model::wallWoodCornerDiagonal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4973139165632583744, "Geometry::", "Mesh" { + Vertices: *288 { + a: 4,0,-5,5,0,-5,4,10,-5,5,10,-5,-5,0,4,-5,10,4,-5,0,5,-5,10,5,-4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,-5,0,4,-4,0,4,-5,10,4,-4,10,4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,-4,0,5,-4,0,4.75,-5,0,5,-4,0,4.25,-4,0,4,-5,0,4,-4,10,5,-5,10,5,-4,10,4.75,-4,10,4.25,-4,10,4,-5,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,-4,0,5,-5,0,5,-4,10,5,-5,10,5,-4,0,4.25,-0.5,2.255973E-16,4.25,-4,10,4.25,-0.5,10,4.25,4.25,0,-4,4.25,10,-4,4.25,2.255973E-16,-0.5,4.25,10,-0.5,4.75,10,-1.443823E-14,4.25,10,-0.5,-1.443823E-14,10,4.75,-0.5,10,4.25,-0.5,2.255973E-16,4.25,-1.443823E-14,0,4.75,4.25,2.255973E-16,-0.5,4.75,0,-1.443823E-14,4.25,2.255973E-16,-0.5,4.25,10,-0.5,-0.5,2.255973E-16,4.25,-0.5,10,4.25,-1.443823E-14,0,4.75,-4,0,4.75,-1.443823E-14,10,4.75,-4,10,4.75,4.75,10,-4,4.75,0,-4,4.75,10,-1.443823E-14,4.75,0,-1.443823E-14,4.75,10,-1.443823E-14,4.75,0,-1.443823E-14,-1.443823E-14,10,4.75,-1.443823E-14,0,4.75 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,23,-25,26,28,-28,29,27,-29,30,29,-29,31,30,-29,32,34,-34,35,33,-35,36,33,-36,37,33,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,45,-45,47,46,-45,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,45,46,-73,73,72,-47,74,72,-74,75,74,-74,34,74,-76,35,34,-76,29,76,-28,27,76,-78,76,78,-78,77,78,-80,22,79,-79,78,24,-23,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: -15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,15.74803,7.105427E-15,15.74803,39.37008,19.68504,7.105427E-15,19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-15.74803,16.73228,-15.74803,15.74803,-19.68504,15.74803,15.74803,19.68504,19.68504,19.68504,15.74803,18.70079,15.74803,16.73228,15.74803,15.74803,19.68504,15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,9.521273E-13,-19.68504,9.521273E-13,-15.74803,39.37008,-19.68504,39.37008,15.74803,-2.887609E-30,1.968504,8.881784E-16,15.74803,39.37008,1.968504,39.37008,-15.74803,0,-15.74803,39.37008,-1.968504,8.881784E-16,-1.968504,39.37008,-18.70079,-5.684342E-14,-16.73228,-1.968504,5.684342E-14,18.70079,1.968504,16.73228,-1.968504,16.73228,-5.684342E-14,18.70079,16.73228,-1.968504,18.70079,-5.684342E-14,-13.22345,1.023537E-15,-13.22345,39.37008,13.22345,1.023537E-15,13.22345,39.37008,-1.885171E-12,-3.085785E-15,-15.74803,-3.085785E-15,-1.885171E-12,39.37008,-15.74803,39.37008,15.74803,39.37008,15.74803,0,5.684342E-14,39.37008,5.684342E-14,0,13.22345,39.37008,13.22345,1.218254E-30,-13.22345,39.37008,-13.22345,1.218254E-30 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,23,24,26,28,27,29,27,28,30,29,28,31,30,28,32,34,33,35,33,34,36,33,35,37,33,36,38,40,39,41,39,40,42,44,43,45,43,44,46,45,44,47,46,44,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,45,46,72,73,72,46,74,72,73,75,74,73,34,74,75,35,34,75,29,76,27,27,76,77,76,78,77,77,78,79,22,79,78,78,24,22,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodCornerDiagonal, Model::RootNode + C: "OO",5186654341942193825,0 + + ;Geometry::, Model::Mesh wallWoodCornerDiagonal + C: "OO",4973139165632583744,5186654341942193825 + + ;Material::wood, Model::Mesh wallWoodCornerDiagonal + C: "OO",7178,5186654341942193825 + + ;Material::woodDark, Model::Mesh wallWoodCornerDiagonal + C: "OO",7186,5186654341942193825 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonal.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonal.fbx.import new file mode 100644 index 0000000..04f0f01 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cdtvrndju2jh4" +path="res://.godot/imported/wallWoodCornerDiagonal.fbx-88f59b7b7f147b6017a2fb2911aa1113.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonal.fbx" +dest_files=["res://.godot/imported/wallWoodCornerDiagonal.fbx-88f59b7b7f147b6017a2fb2911aa1113.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonalHalf.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonalHalf.fbx new file mode 100644 index 0000000..6910704 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonalHalf.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 926 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodCornerDiagonalHalf.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodCornerDiagonalHalf.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4631401172732422041, "Model::wallWoodCornerDiagonalHalf", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5338882072318823233, "Geometry::", "Mesh" { + Vertices: *198 { + a: 5,0,-5,5,0,-4,5,10,-5,5,10,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.25,0,-4,4.25,10,-4,4.25,2.255973E-16,-0.5,4.25,10,-0.5,-0.5,2.255973E-16,4.25,-0.5,10,4.25,-0.5,0,4.75,-0.5,10,4.75,4.75,10,7.219114E-15,4.75,0,7.219114E-15,0,10,4.75,0,0,4.75,4.75,10,-4,4.75,0,-4,4.75,10,7.219114E-15,4.75,0,7.219114E-15,4.25,2.255973E-16,-0.5,4.25,10,-0.5,-0.5,2.255973E-16,4.25,-0.5,10,4.25,0,0,4.75,-0.5,0,4.75,0,10,4.75,-0.5,10,4.75,4.75,10,7.219114E-15,4.25,10,-0.5,0,10,4.75,-0.5,10,4.25,-0.5,10,4.75,-0.5,0,4.75,0,0,4.75,-0.5,2.255973E-16,4.25,4.25,2.255973E-16,-0.5,4.75,0,7.219114E-15 + } + PolygonVertexIndex: *120 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,20,-20,21,19,-21,22,21,-21,23,22,-21,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,21,22,-57,57,56,-23,58,56,-58,59,58,-58,60,58,-60,61,63,-63,63,64,-63,62,64,-66,14,65,-65,64,16,-15 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *360 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *132 { + a: 19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-15.74803,-4.263256E-14,-19.68504,-4.263256E-14,-15.74803,39.37008,-19.68504,39.37008,19.68504,-1.705303E-14,18.70079,-1.705303E-14,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-15.74803,39.37008,-1.968504,8.881784E-16,-1.968504,39.37008,16.73228,8.881784E-16,16.73228,39.37008,18.70079,0,18.70079,39.37008,13.22345,39.37008,13.22345,1.218254E-30,-13.22345,39.37008,-13.22345,1.218254E-30,15.74803,39.37008,15.74803,0,-2.842171E-14,39.37008,-2.842171E-14,0,-13.22345,8.881784E-16,-13.22345,39.37008,13.22345,8.881784E-16,13.22345,39.37008,-1.890044E-12,0,-1.968504,0,-1.890044E-12,39.37008,-1.968504,39.37008,-18.70079,2.842171E-14,-16.73228,-1.968504,0,18.70079,1.968504,16.73228,1.968504,18.70079,-1.968504,18.70079,0,18.70079,-1.968504,16.73228,16.73228,-1.968504,18.70079,2.842171E-14 + } + UVIndex: *120 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,15,16,18,20,19,21,19,20,22,21,20,23,22,20,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,21,22,56,57,56,22,58,56,57,59,58,57,60,58,59,61,63,62,63,64,62,62,64,65,14,65,64,64,16,14 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *40 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodCornerDiagonalHalf, Model::RootNode + C: "OO",4631401172732422041,0 + + ;Geometry::, Model::Mesh wallWoodCornerDiagonalHalf + C: "OO",5338882072318823233,4631401172732422041 + + ;Material::wood, Model::Mesh wallWoodCornerDiagonalHalf + C: "OO",7178,4631401172732422041 + + ;Material::woodDark, Model::Mesh wallWoodCornerDiagonalHalf + C: "OO",7186,4631401172732422041 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonalHalf.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonalHalf.fbx.import new file mode 100644 index 0000000..b3921b1 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonalHalf.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cxik4obx86mmq" +path="res://.godot/imported/wallWoodCornerDiagonalHalf.fbx-f4469214f7e7ca9bf014648550065192.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerDiagonalHalf.fbx" +dest_files=["res://.godot/imported/wallWoodCornerDiagonalHalf.fbx-f4469214f7e7ca9bf014648550065192.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerEdge.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerEdge.fbx new file mode 100644 index 0000000..e296840 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerEdge.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 49 + Millisecond: 965 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodCornerEdge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodCornerEdge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4727623374351205621, "Model::wallWoodCornerEdge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5545976686584858284, "Geometry::", "Mesh" { + Vertices: *252 { + a: 4.75,0,-4,4.25,0,-4,2.187184,0,2.187184,1.833631,0,1.833631,-4,0,4.75,-4,0,4.25,2.187184,0,2.187184,-4,0,4.75,2.187184,10,2.187184,-4,10,4.75,4.75,10,-4,2.187184,10,2.187184,4.25,10,-4,1.833631,10,1.833631,-4,10,4.75,-4,10,4.25,4.75,10,-4,4.75,0,-4,2.187184,10,2.187184,2.187184,0,2.187184,-4,0,4.25,1.833631,0,1.833631,-4,10,4.25,1.833631,10,1.833631,4.25,0,-4,4.25,10,-4,1.833631,0,1.833631,1.833631,10,1.833631,-4,10,5,-5,10,5,-4,10,4,-5,10,4,-4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,-4,0,5,-5,0,5,-4,10,5,-5,10,5,-5,0,4,-4,0,4,-5,10,4,-4,10,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,-4,0,5,-5,0,5,-4,0,4,-5,0,4,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,-5,0,4,-5,10,4,-5,0,5,-5,10,5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,-4,5,0,-5,4,0,-5,4,0,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,11,-14,15,14,-14,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,14,-30,15,29,-15,30,29,-16,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,10,45,-47,12,10,-47,47,12,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,61,-5,5,4,-62,62,5,-62,63,62,-62,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,0,-78,78,77,-1,1,78,-1,79,78,-2,80,82,-82,83,81,-83 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,0.9238795,0,0.3826834,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,-0.9238795,0,-0.3826834,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: 18.70079,-15.74803,16.73228,-15.74803,8.610962,8.610962,7.219019,7.219019,-15.74803,18.70079,-15.74803,16.73228,4.660219,0,-21.70576,0,4.660219,39.37008,-21.70576,39.37008,-18.70079,-15.74803,-8.610962,8.610962,-16.73228,-15.74803,-7.219019,7.219019,15.74803,18.70079,15.74803,16.73228,21.70576,39.37008,21.70576,0,-4.660219,39.37008,-4.660219,0,20.95245,0,-3.906905,0,20.95245,39.37008,-3.906905,39.37008,-20.95245,0,-20.95245,39.37008,3.906905,0,3.906905,39.37008,15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,-15.74803,9.947598E-13,-19.68504,9.947598E-13,-15.74803,39.37008,-19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-15.74803,19.68504,-19.68504,19.68504,-15.74803,15.74803,-19.68504,15.74803,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,15.74803,1.776357E-14,15.74803,39.37008,19.68504,1.776357E-14,19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,7,8,10,12,11,13,11,12,14,11,13,15,14,13,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,14,29,15,29,14,30,29,15,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,10,45,46,12,10,46,47,12,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,61,4,5,4,61,62,5,61,63,62,61,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,0,77,78,77,0,1,78,0,79,78,1,80,82,81,83,81,82 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodCornerEdge, Model::RootNode + C: "OO",4727623374351205621,0 + + ;Geometry::, Model::Mesh wallWoodCornerEdge + C: "OO",5545976686584858284,4727623374351205621 + + ;Material::woodDark, Model::Mesh wallWoodCornerEdge + C: "OO",7186,4727623374351205621 + + ;Material::wood, Model::Mesh wallWoodCornerEdge + C: "OO",7178,4727623374351205621 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerEdge.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerEdge.fbx.import new file mode 100644 index 0000000..f49a2ed --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerEdge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bpbklr7qswxj6" +path="res://.godot/imported/wallWoodCornerEdge.fbx-d9050a91bd56e7f90eb54bff874b7155.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCornerEdge.fbx" +dest_files=["res://.godot/imported/wallWoodCornerEdge.fbx-d9050a91bd56e7f90eb54bff874b7155.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCurved.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCurved.fbx new file mode 100644 index 0000000..9a9a961 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCurved.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 7 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodCurved.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodCurved.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5211567083883200176, "Model::wallWoodCurved", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4912325837644582245, "Geometry::", "Mesh" { + Vertices: *612 { + a: -5,0,4,-4,0,4,-5,10,4,-4,10,4,-5,0,4,-5,10,4,-5,0,5,-5,10,5,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,-4,10,4,-4,10,4.25,-5,10,4,-4,10,4.75,-5,10,5,-4,10,5,-4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,-4,0,5,-5,0,5,-4,10,5,-5,10,5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,-4,0,5,-4,0,4.75,-5,0,5,-5,0,4,-4,0,4.25,-4,0,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,-4,0,4.25,-2.923159,0,4.17942,-4,10,4.25,-2.923159,10,4.17942,-2.923159,0,4.17942,-1.864743,0,3.968888,-2.923159,10,4.17942,-1.864743,10,3.968888,4.675142,10,-2.857896,4.451851,10,-1.735333,4.083946,10,-0.65152,4.17942,10,-2.923159,3.968888,10,-1.864743,3.577722,10,0.375,3.622006,10,-0.8428617,3.14471,10,0.125,2.941842,10,1.326662,2.545165,10,1.022282,2.187184,10,2.187184,1.833631,10,1.833631,1.326662,10,2.941842,1.022282,10,2.545165,0.375,10,3.577722,0.125,10,3.14471,-0.65152,10,4.083946,-0.8428617,10,3.622006,-1.735333,10,4.451851,-1.864743,10,3.968888,-2.857896,10,4.675142,-2.923159,10,4.17942,-1.864743,0,3.968888,-0.8428617,0,3.622006,-1.864743,10,3.968888,-0.8428617,10,3.622006,-2.857896,0,4.675142,-4,0,4.75,-2.857896,10,4.675142,-4,10,4.75,-0.8428617,0,3.622006,0.125,0,3.14471,-0.8428617,10,3.622006,0.125,10,3.14471,0.125,0,3.14471,1.022282,0,2.545165,0.125,10,3.14471,1.022282,10,2.545165,2.545165,0,1.022282,2.545165,10,1.022282,1.833631,0,1.833631,1.833631,10,1.833631,3.14471,0,0.125,3.14471,10,0.125,2.545165,0,1.022282,2.545165,10,1.022282,1.022282,0,2.545165,1.833631,0,1.833631,1.022282,10,2.545165,1.833631,10,1.833631,3.622006,0,-0.8428617,3.622006,10,-0.8428617,3.14471,0,0.125,3.14471,10,0.125,3.577722,10,0.375,3.577722,0,0.375,2.941842,10,1.326662,2.941842,0,1.326662,4.17942,0,-2.923159,4.17942,10,-2.923159,3.968888,0,-1.864743,3.968888,10,-1.864743,2.187184,0,2.187184,1.326662,0,2.941842,2.187184,10,2.187184,1.326662,10,2.941842,4.451851,10,-1.735333,4.451851,0,-1.735333,4.083946,10,-0.65152,4.083946,0,-0.65152,4.25,0,-4,4.25,10,-4,4.17942,0,-2.923159,4.17942,10,-2.923159,4.675142,0,-2.857896,4.451851,0,-1.735333,4.083946,0,-0.65152,4.17942,0,-2.923159,3.968888,0,-1.864743,3.577722,0,0.375,3.622006,0,-0.8428617,3.14471,0,0.125,2.941842,0,1.326662,2.545165,0,1.022282,2.187184,0,2.187184,1.833631,0,1.833631,1.326662,0,2.941842,1.022282,0,2.545165,0.375,0,3.577722,0.125,0,3.14471,-0.65152,0,4.083946,-0.8428617,0,3.622006,-1.735333,0,4.451851,-1.864743,0,3.968888,-2.857896,0,4.675142,-2.923159,0,4.17942,-0.65152,0,4.083946,-1.735333,0,4.451851,-0.65152,10,4.083946,-1.735333,10,4.451851,3.968888,0,-1.864743,3.968888,10,-1.864743,3.622006,0,-0.8428617,3.622006,10,-0.8428617,4.083946,10,-0.65152,4.083946,0,-0.65152,3.577722,10,0.375,3.577722,0,0.375,0.375,0,3.577722,-0.65152,0,4.083946,0.375,10,3.577722,-0.65152,10,4.083946,-1.735333,0,4.451851,-2.857896,0,4.675142,-1.735333,10,4.451851,-2.857896,10,4.675142,2.941842,10,1.326662,2.941842,0,1.326662,2.187184,10,2.187184,2.187184,0,2.187184,4.75,10,-4,4.75,0,-4,4.675142,10,-2.857896,4.675142,0,-2.857896,1.326662,0,2.941842,0.375,0,3.577722,1.326662,10,2.941842,0.375,10,3.577722,4.675142,10,-2.857896,4.675142,0,-2.857896,4.451851,10,-1.735333,4.451851,0,-1.735333 + } + PolygonVertexIndex: *396 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,36,-35,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,55,57,-59,59,58,-58,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,35,36,-73,73,72,-37,74,73,-37,75,74,-37,76,74,-76,77,74,-77,78,77,-77,79,77,-79,80,77,-80,81,80,-80,82,80,-82,83,82,-82,84,82,-84,85,84,-84,86,84,-86,87,86,-86,88,86,-88,89,88,-88,90,88,-90,91,90,-90,92,90,-92,93,92,-92,25,92,-94,23,25,-94,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,18,146,-21,147,20,-147,148,20,-148,149,20,-149,150,149,-149,151,150,-149,152,150,-152,153,152,-152,154,153,-152,155,153,-155,156,155,-155,157,155,-157,158,157,-157,159,157,-159,160,159,-159,161,159,-161,162,161,-161,163,161,-163,164,163,-163,165,163,-165,166,165,-165,167,165,-167,55,167,-167,58,167,-56,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1188 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9978589,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.06540313,0,-0.9978589,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.06540313,0,0.9978589,0.1305262,0,0.9914449,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,-0.9978589,0,-0.06540313,-0.9914449,0,-0.1305262,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.9978589,0,0.06540313,0.9914449,0,0.1305262,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *408 { + a: 19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,15.74803,15.74803,15.74803,16.73228,19.68504,15.74803,15.74803,18.70079,19.68504,19.68504,15.74803,19.68504,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,19.68504,-15.74803,18.70079,-19.68504,19.68504,-19.68504,15.74803,-15.74803,16.73228,-15.74803,15.74803,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,16.80866,-8.724216E-19,12.56003,-8.724216E-19,16.80866,39.37008,12.56003,39.37008,14.49746,0,10.24883,0,14.49746,39.37008,10.24883,39.37008,-18.40607,-11.25156,-17.52697,-6.832021,-16.07853,-2.565039,-16.45441,-11.5085,-15.62554,-7.341507,-14.08552,1.476378,-14.25987,-3.318353,-12.38075,0.492126,-11.58205,5.223081,-10.02034,4.024732,-8.610962,8.610962,-7.219019,7.219019,-5.223081,11.58205,-4.024732,10.02034,-1.476378,14.08552,-0.492126,12.38075,2.565039,16.07853,3.318353,14.25987,6.832021,17.52697,7.341507,15.62554,11.25156,18.40607,11.5085,16.45441,11.97456,0,7.725933,0,11.97456,39.37008,7.725933,39.37008,-12.43128,-1.227259E-18,-16.9374,-1.227259E-18,-12.43128,39.37008,-16.9374,39.37008,9.283118,0,5.03449,0,9.283118,39.37008,5.03449,39.37008,6.469186,0,2.220558,0,6.469186,39.37008,2.220558,39.37008,-3.580913,0,-3.580913,39.37008,0.6677159,0,0.6677159,39.37008,-6.469186,0,-6.469186,39.37008,-2.220558,0,-2.220558,39.37008,3.580913,0,-0.6677159,0,3.580913,39.37008,-0.6677159,39.37008,-9.283118,0,-9.283118,39.37008,-5.03449,0,-5.03449,39.37008,6.597933,39.37008,6.597933,0,2.091812,39.37008,2.091812,0,-14.49746,0,-14.49746,39.37008,-10.24883,0,-10.24883,39.37008,0.7964622,0,-3.709659,0,0.7964622,39.37008,-3.709659,39.37008,12.10331,39.37008,12.10331,0,7.597186,39.37008,7.597186,0,-16.80866,-8.724216E-19,-16.80866,39.37008,-12.56003,-8.724216E-19,-12.56003,39.37008,18.40607,-11.25156,17.52697,-6.832021,16.07853,-2.565039,16.45441,-11.5085,15.62554,-7.341507,14.08552,1.476378,14.25987,-3.318353,12.38075,0.492126,11.58205,5.223081,10.02034,4.024732,8.610962,8.610962,7.219019,7.219019,5.223081,11.58205,4.024732,10.02034,1.476378,14.08552,0.492126,12.38075,-2.565039,16.07853,-3.318353,14.25987,-6.832021,17.52697,-7.341507,15.62554,-11.25156,18.40607,-11.5085,16.45441,-7.597186,0,-12.10331,0,-7.597186,39.37008,-12.10331,39.37008,-11.97456,0,-11.97456,39.37008,-7.725933,0,-7.725933,39.37008,9.411864,39.37008,9.411864,0,4.905744,39.37008,4.905744,0,-4.905744,0,-9.411864,0,-4.905744,39.37008,-9.411864,39.37008,-10.12009,0,-14.62621,0,-10.12009,39.37008,-14.62621,39.37008,3.709659,39.37008,3.709659,0,-0.7964622,39.37008,-0.7964622,0,16.9374,39.37008,16.9374,-9.818072E-19,12.43128,39.37008,12.43128,-9.818072E-19,-2.091812,0,-6.597933,0,-2.091812,39.37008,-6.597933,39.37008,14.62621,39.37008,14.62621,0,10.12009,39.37008,10.12009,0 + } + UVIndex: *396 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,19,20,22,24,23,25,23,24,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,37,36,34,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,55,57,58,59,58,57,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,35,36,72,73,72,36,74,73,36,75,74,36,76,74,75,77,74,76,78,77,76,79,77,78,80,77,79,81,80,79,82,80,81,83,82,81,84,82,83,85,84,83,86,84,85,87,86,85,88,86,87,89,88,87,90,88,89,91,90,89,92,90,91,93,92,91,25,92,93,23,25,93,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,18,146,20,147,20,146,148,20,147,149,20,148,150,149,148,151,150,148,152,150,151,153,152,151,154,153,151,155,153,154,156,155,154,157,155,156,158,157,156,159,157,158,160,159,158,161,159,160,162,161,160,163,161,162,164,163,162,165,163,164,166,165,164,167,165,166,55,167,166,58,167,55,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *132 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodCurved, Model::RootNode + C: "OO",5211567083883200176,0 + + ;Geometry::, Model::Mesh wallWoodCurved + C: "OO",4912325837644582245,5211567083883200176 + + ;Material::wood, Model::Mesh wallWoodCurved + C: "OO",7178,5211567083883200176 + + ;Material::woodDark, Model::Mesh wallWoodCurved + C: "OO",7186,5211567083883200176 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCurved.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCurved.fbx.import new file mode 100644 index 0000000..e3d8c31 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCurved.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dq4755cs8dqmq" +path="res://.godot/imported/wallWoodCurved.fbx-362619b22cc032ec50ec4ca2d4b34fa0.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodCurved.fbx" +dest_files=["res://.godot/imported/wallWoodCurved.fbx-362619b22cc032ec50ec4ca2d4b34fa0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailCross.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailCross.fbx new file mode 100644 index 0000000..db3c006 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailCross.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 42 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDetailCross.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDetailCross.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4612043792985942205, "Model::wallWoodDetailCross", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5718937520892757136, "Geometry::", "Mesh" { + Vertices: *648 { + a: 4.25,5.5,0.6403124,4.125,5.5,0.6403124,4.25,9.279649,4,4.125,9.279649,4,5,0,5,5,0,4,4,0,5,4.875,6.688068E-17,4,4.125,-6.688068E-17,4,4,0,4,4.75,1.720351,4,4.875,1.720351,4,4.75,9.279649,4,4.875,9.279649,4,5,10,4,4.875,10,4,4.875,6.688068E-17,4,5,0,4,4.875,10,3.359688,4.875,10,4,4.75,10,3.359688,4,10,5,4.25,10,3.359688,5,10,5,5,10,4,4.125,10,4,4.125,10,3.359688,4,10,4,4.25,1,-3.359688,4.25,1,3.359688,4.125,1,-3.359688,4.125,1,3.359688,4.125,5.5,-0.6403124,4.25,5.5,-0.6403124,4.125,9.279649,-4,4.25,9.279649,-4,5,0,-4,4.875,6.688068E-17,-4,5,10,-4,4.875,1.720351,-4,4.875,9.279649,-4,4.875,10,-4,4.75,9.279649,-4,4.75,1.720351,-4,4.125,1.720351,-4,4.25,1.720351,-4,4.125,5.5,-0.6403124,4.25,5.5,-0.6403124,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,-4,5,0,-5,4.875,6.688068E-17,-4,4,0,-5,4.125,-6.688068E-17,-4,4,0,-4,4.125,6.220351,-1.443823E-14,4.25,6.220351,-1.443823E-14,4.125,10,3.359688,4.25,10,3.359688,4.25,6.220351,-1.443823E-14,4.125,6.220351,-1.443823E-14,4.25,10,-3.359688,4.125,10,-3.359688,4.125,1,3.359688,4.25,1,3.359688,4.125,4.779648,-1.443823E-14,4.25,4.779648,-1.443823E-14,4.75,1.720351,-4,4.875,1.720351,-4,4.75,5.5,-0.6403124,4.875,5.5,-0.6403124,5,10,-5,5,10,-4,4,10,-5,4.875,10,-4,4.875,10,-3.359688,4.75,10,-3.359688,4.25,10,-3.359688,4.125,10,-4,4,10,-4,4.125,10,-3.359688,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,0,4,5,10,5,5,0,5,4.125,-6.688068E-17,4,4.125,1.720351,4,4,0,4,4,10,4,4.25,1.720351,4,4.125,9.279649,4,4.125,10,4,4.25,9.279649,4,5,0,5,4,0,5,5,10,5,4,10,5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4.125,10,-4,4.125,10,-3.359688,4.125,9.279649,-4,4.125,5.5,-0.6403124,4.125,6.220351,-1.443823E-14,4.125,4.779648,-1.443823E-14,4.125,1,-3.359688,4.125,1.720351,-4,4.125,-6.688068E-17,-4,4.125,-6.688068E-17,4,4.125,1,3.359688,4.125,1.720351,4,4.125,5.5,0.6403124,4.125,10,3.359688,4.125,9.279649,4,4.125,10,4,4.125,1.720351,4,4.125,5.5,0.6403124,4.25,1.720351,4,4.25,5.5,0.6403124,4.875,10,-4,4.875,9.279649,-4,4.875,10,-3.359688,4.875,5.5,-0.6403124,4.875,6.220351,-1.443823E-14,4.875,4.779648,-1.443823E-14,4.875,10,3.359688,4.875,1,-3.359688,4.875,6.688068E-17,-4,4.875,1.720351,-4,4.875,6.688068E-17,4,4.875,1,3.359688,4.875,1.720351,4,4.875,5.5,0.6403124,4.875,9.279649,4,4.875,10,4,4.125,-6.688068E-17,-4,4,0,-4,4.125,1.720351,-4,4,10,-4,4.25,1.720351,-4,4.125,9.279649,-4,4.25,9.279649,-4,4.125,10,-4,4.125,1,-3.359688,4.125,4.779648,-1.443823E-14,4.25,1,-3.359688,4.25,4.779648,-1.443823E-14,4.75,1.720351,4,4.75,5.5,0.6403124,4.875,1.720351,4,4.875,5.5,0.6403124,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.75,1,-3.359688,4.75,4.779648,-1.443823E-14,4.875,1,-3.359688,4.875,4.779648,-1.443823E-14,4.75,5.5,-0.6403124,4.875,5.5,-0.6403124,4.75,9.279649,-4,4.875,9.279649,-4,4.75,6.220351,-1.443823E-14,4.75,10,-3.359688,4.875,6.220351,-1.443823E-14,4.875,10,-3.359688,4.75,5.5,0.6403124,4.75,9.279649,4,4.875,5.5,0.6403124,4.875,9.279649,4,4.75,1,3.359688,4.875,1,3.359688,4.75,4.779648,-1.443823E-14,4.875,4.779648,-1.443823E-14,4.75,6.220351,-1.443823E-14,4.875,6.220351,-1.443823E-14,4.75,10,3.359688,4.875,10,3.359688,4.875,1,-3.359688,4.875,1,3.359688,4.75,1,-3.359688,4.75,1,3.359688,4.25,1,-3.359688,4.25,4.779648,-1.443823E-14,4.25,1,3.359688,4.75,9.279649,-4,4.75,1.720351,-4,4.75,5.5,-0.6403124,4.25,1.720351,4,4.25,5.5,0.6403124,4.25,9.279649,4,4.75,9.279649,4,4.75,5.5,0.6403124,4.75,1.720351,4,4.25,6.220351,-1.443823E-14,4.25,10,-3.359688,4.25,10,3.359688,4.75,10,-3.359688,4.75,6.220351,-1.443823E-14,4.75,10,3.359688,4.75,4.779648,-1.443823E-14,4.75,1,-3.359688,4.75,1,3.359688,4.25,1.720351,-4,4.25,9.279649,-4,4.25,5.5,-0.6403124 + } + PolygonVertexIndex: *420 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,12,-12,12,13,-12,13,14,-12,15,14,-14,11,14,-17,17,16,-15,18,20,-20,20,21,-20,22,21,-21,21,23,-20,24,19,-24,25,21,-23,26,25,-23,27,21,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,40,-39,40,42,-40,43,39,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,55,-55,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,78,-77,80,79,-77,81,80,-77,82,81,-77,81,83,-81,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,96,-96,98,97,-96,97,99,-97,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,109,-112,113,112,-112,113,111,-115,115,114,-112,115,116,-115,117,114,-117,118,114,-118,118,112,-114,117,119,-119,119,120,-119,120,112,-119,112,120,-122,122,121,-121,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,131,-131,132,133,-132,134,133,-133,133,135,-132,135,136,-132,137,131,-137,136,135,-139,139,138,-136,140,138,-140,140,139,-142,133,141,-140,141,133,-135,142,141,-135,143,142,-135,144,146,-146,147,145,-147,148,147,-147,149,147,-149,150,149,-149,151,147,-150,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,197,-197,198,200,-200,201,203,-203,204,206,-206,207,209,-209,210,212,-212,213,215,-215,7,8,-55,56,54,-9,20,79,-23,80,22,-80 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1260 { + a: 0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,-0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *432 { + a: 16.73228,17.85887,16.24016,17.85887,16.73228,37.76831,16.24016,37.76831,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,19.19291,15.74803,16.24016,15.74803,15.74803,15.74803,-18.70079,6.773037,-19.19291,6.773037,-18.70079,36.53405,-19.19291,36.53405,-19.68504,39.37008,-19.19291,39.37008,-19.19291,2.633097E-16,-19.68504,-6.728313E-31,-19.19291,13.22712,-19.19291,15.74803,-18.70079,13.22712,-15.74803,19.68504,-16.73228,13.22712,-19.68504,19.68504,-19.68504,15.74803,-16.24016,15.74803,-16.24016,13.22712,-15.74803,15.74803,-16.73228,-13.22712,-16.73228,13.22712,-16.24016,-13.22712,-16.24016,13.22712,-16.24016,17.85887,-16.73228,17.85887,-16.24016,37.76831,-16.73228,37.76831,19.68504,-1.12815E-14,19.19291,-1.101819E-14,19.68504,39.37008,19.19291,6.773037,19.19291,36.53405,19.19291,39.37008,18.70079,36.53405,18.70079,6.773037,-16.24016,-5.400191,-16.73228,-5.400191,-16.24016,14.50926,-16.73228,14.50926,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,-15.74803,19.68504,-19.68504,19.19291,-15.74803,15.74803,-19.68504,16.24016,-15.74803,15.74803,-15.74803,-16.24016,18.30374,-16.73228,18.30374,-16.24016,38.21318,-16.73228,38.21318,16.73228,18.30374,16.24016,18.30374,16.73228,38.21318,16.24016,38.21318,-16.24016,-5.845061,-16.73228,-5.845061,-16.24016,14.06439,-16.73228,14.06439,-18.70079,-5.400191,-19.19291,-5.400191,-18.70079,14.50926,-19.19291,14.50926,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-19.19291,-15.74803,-19.19291,-13.22712,-18.70079,-13.22712,-16.73228,-13.22712,-16.24016,-15.74803,-15.74803,-15.74803,-16.24016,-13.22712,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-16.24016,-1.243677E-13,-16.24016,6.773037,-15.74803,-1.241044E-13,-15.74803,39.37008,-16.73228,6.773037,-16.24016,36.53405,-16.24016,39.37008,-16.73228,36.53405,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-13.22712,39.37008,-15.74803,36.53405,-2.520915,21.65354,-4.920634E-14,24.48957,-4.920634E-14,18.81751,-13.22712,3.937008,-15.74803,6.773037,-15.74803,-8.952531E-15,15.74803,-8.952531E-15,13.22712,3.937008,15.74803,6.773037,2.520915,21.65354,13.22712,39.37008,15.74803,36.53405,15.74803,39.37008,16.24016,-5.400191,16.24016,14.50926,16.73228,-5.400191,16.73228,14.50926,15.74803,39.37008,15.74803,36.53405,13.22712,39.37008,2.520915,21.65354,4.781778E-14,24.48957,4.781778E-14,18.81751,-13.22712,39.37008,13.22712,3.937008,15.74803,-1.000577E-14,15.74803,6.773037,-15.74803,-1.000577E-14,-13.22712,3.937008,-15.74803,6.773037,-2.520915,21.65354,-15.74803,36.53405,-15.74803,39.37008,16.24016,-8.007374E-15,15.74803,-7.744065E-15,16.24016,6.773037,15.74803,39.37008,16.73228,6.773037,16.24016,36.53405,16.73228,36.53405,16.24016,39.37008,16.24016,-5.845061,16.24016,14.06439,16.73228,-5.845061,16.73228,14.06439,18.70079,-5.400191,18.70079,14.50926,19.19291,-5.400191,19.19291,14.50926,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,18.70079,-5.845061,18.70079,14.06439,19.19291,-5.845061,19.19291,14.06439,-18.70079,17.85887,-19.19291,17.85887,-18.70079,37.76831,-19.19291,37.76831,18.70079,18.30374,18.70079,38.21318,19.19291,18.30374,19.19291,38.21318,18.70079,17.85887,18.70079,37.76831,19.19291,17.85887,19.19291,37.76831,-18.70079,-5.845061,-19.19291,-5.845061,-18.70079,14.06439,-19.19291,14.06439,-18.70079,18.30374,-19.19291,18.30374,-18.70079,38.21318,-19.19291,38.21318,-19.19291,-13.22712,-19.19291,13.22712,-18.70079,-13.22712,-18.70079,13.22712,-13.22712,3.937008,-5.684342E-14,18.81751,13.22712,3.937008,15.74803,36.53405,15.74803,6.773037,2.520915,21.65354,15.74803,6.773037,2.520915,21.65354,15.74803,36.53405,-15.74803,36.53405,-2.520915,21.65354,-15.74803,6.773037,-2.089E-14,24.48957,-13.22712,39.37008,13.22712,39.37008,13.22712,39.37008,1.666018E-14,24.48957,-13.22712,39.37008,4.542098E-14,18.81751,13.22712,3.937008,-13.22712,3.937008,-15.74803,6.773037,-15.74803,36.53405,-2.520915,21.65354 + } + UVIndex: *420 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,12,11,12,13,11,13,14,11,15,14,13,11,14,16,17,16,14,18,20,19,20,21,19,22,21,20,21,23,19,24,19,23,25,21,22,26,25,22,27,21,25,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,40,38,40,42,39,43,39,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,55,54,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,78,76,80,79,76,81,80,76,82,81,76,81,83,80,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,96,95,98,97,95,97,99,96,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,109,111,113,112,111,113,111,114,115,114,111,115,116,114,117,114,116,118,114,117,118,112,113,117,119,118,119,120,118,120,112,118,112,120,121,122,121,120,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,131,130,132,133,131,134,133,132,133,135,131,135,136,131,137,131,136,136,135,138,139,138,135,140,138,139,140,139,141,133,141,139,141,133,134,142,141,134,143,142,134,144,146,145,147,145,146,148,147,146,149,147,148,150,149,148,151,147,149,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,197,196,198,200,199,201,203,202,204,206,205,207,209,208,210,212,211,213,215,214,7,8,54,56,54,8,20,79,22,80,22,79 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *140 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDetailCross, Model::RootNode + C: "OO",4612043792985942205,0 + + ;Geometry::, Model::Mesh wallWoodDetailCross + C: "OO",5718937520892757136,4612043792985942205 + + ;Material::wood, Model::Mesh wallWoodDetailCross + C: "OO",7178,4612043792985942205 + + ;Material::woodDark, Model::Mesh wallWoodDetailCross + C: "OO",7186,4612043792985942205 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailCross.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailCross.fbx.import new file mode 100644 index 0000000..c0b6f17 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailCross.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://crv02m3vb2yul" +path="res://.godot/imported/wallWoodDetailCross.fbx-5c24b56ce5eadd63b205963116199e31.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailCross.fbx" +dest_files=["res://.godot/imported/wallWoodDetailCross.fbx-5c24b56ce5eadd63b205963116199e31.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailDiagonal.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailDiagonal.fbx new file mode 100644 index 0000000..b9e60d2 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailDiagonal.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 83 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDetailDiagonal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDetailDiagonal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5347071897477317800, "Model::wallWoodDetailDiagonal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5401504123800470485, "Geometry::", "Mesh" { + Vertices: *396 { + a: 4.875,10,4,4.875,10,3.359688,4.875,9.279649,4,4.875,1,-3.359688,4.875,1.720351,-4,4.875,0,-4,4.875,0,4,4.875,1,4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,5,5,0,4,4,0,5,4.875,0,4,4.125,0,4,4,0,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4.875,1,-3.359688,4.875,1,4,4.75,1,-3.359688,4.75,1,4,5,0,5,4,0,5,5,10,5,4,10,5,4.25,1.720351,-4,4.125,1.720351,-4,4.25,10,-4,4,10,-4,4,0,-4,4.125,0,-4,4,0,4,4,10,4,4,0,5,4,10,5,4.25,1,-3.359688,4.25,1,4,4.125,1,-3.359688,4.125,1,4,4.875,1,-3.359688,4.75,1,-3.359688,4.875,9.279649,4,4.75,9.279649,4,4.75,1.720351,-4,4.875,1.720351,-4,4.75,10,3.359688,4.875,10,3.359688,4.25,1,-3.359688,4.125,1,-3.359688,4.25,9.279649,4,4.125,9.279649,4,5,0,-4,4.875,0,-4,5,10,-4,4.875,1.720351,-4,4.75,1.720351,-4,4.75,10,-4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,4,4.125,0,4,4,10,4,4.125,1,4,4.25,1,4,4.125,9.279649,4,4.125,10,4,4.25,9.279649,4,5,0,-4,5,0,-5,4.875,0,-4,4,0,-5,4.125,0,-4,4,0,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.875,10,3.359688,4.875,10,4,4.75,10,3.359688,4,10,5,4.25,10,3.359688,5,10,5,5,10,4,4.125,10,4,4.125,10,3.359688,4,10,4,4.75,1,4,4.875,1,4,4.75,9.279649,4,4.875,9.279649,4,5,10,4,4.875,10,4,5,0,4,4.875,0,4,4.125,1,4,4.125,0,4,4.125,1,-3.359688,4.125,0,-4,4.125,1.720351,-4,4.125,10,3.359688,4.125,9.279649,4,4.125,10,4,4.125,1.720351,-4,4.25,1.720351,-4,4.125,10,3.359688,4.25,10,3.359688,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,1.720351,-4,4.25,10,-4,4.25,10,3.359688,4.75,9.279649,4,4.75,1,-3.359688,4.75,1,4,4.25,1,-3.359688,4.25,9.279649,4,4.25,1,4,4.75,10,-4,4.75,1.720351,-4,4.75,10,3.359688 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,2,3,-2,1,3,-5,5,4,-4,5,3,-7,7,6,-4,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,16,-15,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,32,33,-32,33,34,-32,35,31,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,60,-59,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,69,-69,71,70,-69,72,71,-69,71,73,-71,74,76,-76,77,75,-77,78,77,-77,79,77,-79,80,82,-82,83,81,-83,84,86,-86,86,87,-86,88,87,-87,87,89,-86,90,85,-90,91,87,-89,92,91,-89,93,87,-92,94,96,-96,96,97,-96,97,98,-96,99,98,-98,98,100,-96,101,95,-101,102,104,-104,105,103,-105,105,104,-107,107,106,-105,108,107,-105,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,117,-117,119,118,-117,120,122,-122,123,125,-125,126,128,-128,129,131,-131,117,118,-87,88,86,-119,15,16,-77,78,76,-17 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,-0.6643638,0.7474093,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,0.6643638,-0.7474093,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: -15.74803,39.37008,-13.22712,39.37008,-15.74803,36.53405,13.22712,3.937008,15.74803,6.773037,15.74803,6.139502E-14,-15.74803,6.139502E-14,-15.74803,3.937008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,19.19291,15.74803,16.24016,15.74803,15.74803,15.74803,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.19291,-13.22712,-19.19291,15.74803,-18.70079,-13.22712,-18.70079,15.74803,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,16.73228,6.773037,16.24016,6.773037,16.73228,39.37008,15.74803,39.37008,15.74803,-2.392751E-13,16.24016,-2.392751E-13,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-16.73228,-13.22712,-16.73228,15.74803,-16.24016,-13.22712,-16.24016,15.74803,19.19291,-5.845061,18.70079,-5.845061,19.19291,37.76831,18.70079,37.76831,-18.70079,-5.400191,-19.19291,-5.400191,-18.70079,38.21318,-19.19291,38.21318,16.73228,-5.845061,16.24016,-5.845061,16.73228,37.76831,16.24016,37.76831,19.68504,-2.175864E-13,19.19291,-2.175864E-13,19.68504,39.37008,19.19291,6.773037,18.70079,6.773037,18.70079,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-15.74803,-2.050381E-13,-16.24016,-2.050381E-13,-15.74803,39.37008,-16.24016,3.937008,-16.73228,3.937008,-16.24016,36.53405,-16.24016,39.37008,-16.73228,36.53405,19.68504,-15.74803,19.68504,-19.68504,19.19291,-15.74803,15.74803,-19.68504,16.24016,-15.74803,15.74803,-15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-19.19291,13.22712,-19.19291,15.74803,-18.70079,13.22712,-15.74803,19.68504,-16.73228,13.22712,-19.68504,19.68504,-19.68504,15.74803,-16.24016,15.74803,-16.24016,13.22712,-15.74803,15.74803,-18.70079,3.937008,-19.19291,3.937008,-18.70079,36.53405,-19.19291,36.53405,-19.68504,39.37008,-19.19291,39.37008,-19.68504,-3.252797E-13,-19.19291,-3.252797E-13,15.74803,3.937008,15.74803,0,-13.22712,3.937008,-15.74803,0,-15.74803,6.773037,13.22712,39.37008,15.74803,36.53405,15.74803,39.37008,-16.24016,-5.400191,-16.73228,-5.400191,-16.24016,38.21318,-16.73228,38.21318,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-15.74803,6.773037,-15.74803,39.37008,13.22712,39.37008,-15.74803,36.53405,13.22712,3.937008,-15.74803,3.937008,-13.22712,3.937008,15.74803,36.53405,15.74803,3.937008,15.74803,39.37008,15.74803,6.773037,-13.22712,39.37008 + } + UVIndex: *252 { + a: 0,2,1,2,3,1,1,3,4,5,4,3,5,3,6,7,6,3,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,16,14,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,32,33,31,33,34,31,35,31,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,60,58,62,64,63,65,63,64,66,68,67,69,67,68,70,69,68,71,70,68,72,71,68,71,73,70,74,76,75,77,75,76,78,77,76,79,77,78,80,82,81,83,81,82,84,86,85,86,87,85,88,87,86,87,89,85,90,85,89,91,87,88,92,91,88,93,87,91,94,96,95,96,97,95,97,98,95,99,98,97,98,100,95,101,95,100,102,104,103,105,103,104,105,104,106,107,106,104,108,107,104,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,117,116,119,118,116,120,122,121,123,125,124,126,128,127,129,131,130,117,118,86,88,86,118,15,16,76,78,76,16 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDetailDiagonal, Model::RootNode + C: "OO",5347071897477317800,0 + + ;Geometry::, Model::Mesh wallWoodDetailDiagonal + C: "OO",5401504123800470485,5347071897477317800 + + ;Material::wood, Model::Mesh wallWoodDetailDiagonal + C: "OO",7178,5347071897477317800 + + ;Material::woodDark, Model::Mesh wallWoodDetailDiagonal + C: "OO",7186,5347071897477317800 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailDiagonal.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailDiagonal.fbx.import new file mode 100644 index 0000000..5050acd --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailDiagonal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://8kplfv18jarf" +path="res://.godot/imported/wallWoodDetailDiagonal.fbx-2661519b35af1435fad4cf801bc895ee.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailDiagonal.fbx" +dest_files=["res://.godot/imported/wallWoodDetailDiagonal.fbx-2661519b35af1435fad4cf801bc895ee.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailHorizontal.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailHorizontal.fbx new file mode 100644 index 0000000..ee6e439 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailHorizontal.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 123 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDetailHorizontal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDetailHorizontal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4724769156957841462, "Model::wallWoodDetailHorizontal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4716322350983747933, "Geometry::", "Mesh" { + Vertices: *432 { + a: 4.25,1.5,-4,4.125,1.5,-4,4.25,4.25,-4,4.125,4.25,-4,4,10,-4,4.125,5.75,-4,4,0,-4,4.125,0,-4,4.25,10,-4,4.25,5.75,-4,4,0,4,4.125,0,4,4,10,4,4.125,1.5,4,4.125,4.25,4,4.25,1.5,4,4.25,4.25,4,4.125,5.75,4,4.25,5.75,4,4.25,10,4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.875,5.75,-4,4.875,4.25,-4,4.875,5.75,4,4.875,4.25,4,4.75,1.5,4,4.875,1.5,4,4.75,4.25,4,4.875,4.25,4,5,10,4,4.875,5.75,4,5,0,4,4.875,0,4,4.75,10,4,4.75,5.75,4,4.875,1.5,-4,4.875,1.5,4,4.75,1.5,-4,4.75,1.5,4,4.125,0,-4,4.125,1.5,-4,4.125,0,4,4.125,1.5,4,4.875,5.75,-4,4.875,5.75,4,4.75,5.75,-4,4.75,5.75,4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4,0,4,4,10,4,4,0,5,4,10,5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,5,4,0,5,5,10,5,4,10,5,4.875,1.5,-4,4.875,0,-4,4.875,1.5,4,4.875,0,4,5,0,-4,4.875,0,-4,5,10,-4,4.875,1.5,-4,4.875,4.25,-4,4.75,1.5,-4,4.75,4.25,-4,4.875,5.75,-4,4.75,5.75,-4,4.75,10,-4,4.25,1.5,-4,4.25,1.5,4,4.125,1.5,-4,4.125,1.5,4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.875,4.25,4,4.875,4.25,-4,4.75,4.25,4,4.75,4.25,-4,5,10,4,5,0,4,5,10,5,5,0,5,5,0,5,5,0,4,4,0,5,4.875,0,4,4.125,0,4,4,0,4,4.875,0,-4,4.125,0,-4,4,0,-5,4,0,-4,5,0,-5,5,0,-4,4.25,5.75,-4,4.25,5.75,4,4.125,5.75,-4,4.125,5.75,4,4.25,4.25,4,4.25,4.25,-4,4.125,4.25,4,4.125,4.25,-4,4.125,4.25,-4,4.125,5.75,-4,4.125,4.25,4,4.125,5.75,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4.75,10,-4,4.75,5.75,-4,4.75,10,4,4.75,5.75,4,4.75,4.25,-4,4.75,1.5,-4,4.75,4.25,4,4.75,1.5,4,4.25,5.75,-4,4.25,10,-4,4.25,5.75,4,4.25,10,4,4.25,1.5,-4,4.25,4.25,-4,4.25,1.5,4,4.25,4.25,4 + } + PolygonVertexIndex: *276 { + a: 0,2,-2,2,3,-2,3,4,-2,5,4,-4,4,6,-2,7,1,-7,8,4,-6,9,8,-6,10,12,-12,13,11,-13,14,13,-13,15,13,-15,14,16,-16,17,14,-13,18,17,-13,19,18,-13,20,22,-22,23,21,-23,24,23,-23,25,24,-23,26,28,-28,29,27,-29,30,32,-32,32,33,-32,33,34,-32,35,34,-34,34,36,-32,37,31,-37,38,34,-36,39,38,-36,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,55,-55,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,77,-79,78,80,-80,81,78,-77,82,81,-77,83,82,-77,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,103,-103,105,104,-103,106,103,-105,104,107,-107,107,108,-107,109,108,-108,108,110,-107,111,106,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,23,24,-55,56,54,-25,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *828 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *288 { + a: 16.73228,5.905512,16.24016,5.905512,16.73228,16.73228,16.24016,16.73228,15.74803,39.37008,16.24016,22.63779,15.74803,-1.462564E-15,16.24016,-1.462564E-15,16.73228,39.37008,16.73228,22.63779,-15.74803,1.392919E-15,-16.24016,1.392919E-15,-15.74803,39.37008,-16.24016,5.905512,-16.24016,16.73228,-16.73228,5.905512,-16.73228,16.73228,-16.24016,22.63779,-16.73228,22.63779,-16.73228,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,15.74803,22.63779,15.74803,16.73228,-15.74803,22.63779,-15.74803,16.73228,-18.70079,5.905512,-19.19291,5.905512,-18.70079,16.73228,-19.19291,16.73228,-19.68504,39.37008,-19.19291,22.63779,-19.68504,4.993145E-15,-19.19291,4.993145E-15,-18.70079,39.37008,-18.70079,22.63779,-19.19291,-15.74803,-19.19291,15.74803,-18.70079,-15.74803,-18.70079,15.74803,-15.74803,0,-15.74803,5.905512,15.74803,0,15.74803,5.905512,-19.19291,-15.74803,-19.19291,15.74803,-18.70079,-15.74803,-18.70079,15.74803,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,15.74803,5.905512,15.74803,0,-15.74803,5.905512,-15.74803,0,19.68504,-4.993145E-15,19.19291,-4.993145E-15,19.68504,39.37008,19.19291,5.905512,19.19291,16.73228,18.70079,5.905512,18.70079,16.73228,19.19291,22.63779,18.70079,22.63779,18.70079,39.37008,-16.73228,-15.74803,-16.73228,15.74803,-16.24016,-15.74803,-16.24016,15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.19291,15.74803,19.19291,-15.74803,18.70079,15.74803,18.70079,-15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,19.19291,15.74803,16.24016,15.74803,15.74803,15.74803,19.19291,-15.74803,16.24016,-15.74803,15.74803,-19.68504,15.74803,-15.74803,19.68504,-19.68504,19.68504,-15.74803,-16.73228,-15.74803,-16.73228,15.74803,-16.24016,-15.74803,-16.24016,15.74803,16.73228,15.74803,16.73228,-15.74803,16.24016,15.74803,16.24016,-15.74803,-15.74803,16.73228,-15.74803,22.63779,15.74803,16.73228,15.74803,22.63779,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,15.74803,39.37008,15.74803,22.63779,-15.74803,39.37008,-15.74803,22.63779,15.74803,16.73228,15.74803,5.905512,-15.74803,16.73228,-15.74803,5.905512,-15.74803,22.63779,-15.74803,39.37008,15.74803,22.63779,15.74803,39.37008,-15.74803,5.905512,-15.74803,16.73228,15.74803,5.905512,15.74803,16.73228 + } + UVIndex: *276 { + a: 0,2,1,2,3,1,3,4,1,5,4,3,4,6,1,7,1,6,8,4,5,9,8,5,10,12,11,13,11,12,14,13,12,15,13,14,14,16,15,17,14,12,18,17,12,19,18,12,20,22,21,23,21,22,24,23,22,25,24,22,26,28,27,29,27,28,30,32,31,32,33,31,33,34,31,35,34,33,34,36,31,37,31,36,38,34,35,39,38,35,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,55,54,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,77,78,78,80,79,81,78,76,82,81,76,83,82,76,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,103,102,105,104,102,106,103,104,104,107,106,107,108,106,109,108,107,108,110,106,111,106,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,23,24,54,56,54,24,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *92 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDetailHorizontal, Model::RootNode + C: "OO",4724769156957841462,0 + + ;Geometry::, Model::Mesh wallWoodDetailHorizontal + C: "OO",4716322350983747933,4724769156957841462 + + ;Material::wood, Model::Mesh wallWoodDetailHorizontal + C: "OO",7178,4724769156957841462 + + ;Material::woodDark, Model::Mesh wallWoodDetailHorizontal + C: "OO",7186,4724769156957841462 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailHorizontal.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailHorizontal.fbx.import new file mode 100644 index 0000000..6a90b3c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailHorizontal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bs485f7p8xrgr" +path="res://.godot/imported/wallWoodDetailHorizontal.fbx-8010e276142c0e3cbb5aa99a8d5fb106.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDetailHorizontal.fbx" +dest_files=["res://.godot/imported/wallWoodDetailHorizontal.fbx-8010e276142c0e3cbb5aa99a8d5fb106.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDiagonal.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDiagonal.fbx new file mode 100644 index 0000000..6940a15 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDiagonal.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 168 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDiagonal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDiagonal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4808734901111373676, "Model::wallWoodDiagonal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5393211682605922988, "Geometry::", "Mesh" { + Vertices: *180 { + a: -5,0,4,-5,10,4,-5,0,5,-5,10,5,-4,0,5,-4,9.023893E-16,4.5,-5,0,5,-4.5,9.023893E-16,4,-5,0,4,-4,0,5,-5,0,5,-4,10,5,-5,10,5,5,0,-4,4.5,0,-4,5,10,-4,4.5,10,-4,-5,0,4,-4.5,9.023893E-16,4,-5,10,4,-4.5,10,4,-4,10,4.5,-4,10,5,-4.5,10,4,-5,10,5,-5,10,4,-4,10,4.5,-4,9.023893E-16,4.5,-4,10,5,-4,0,5,4,0,-5,4,10,-5,4,0,-4.5,4,10,-4.5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,-5,5,10,-4,4,10,-5,4.5,10,-4,4,10,-4.5,5,0,-4,5,0,-5,4.5,0,-4,4,0,-5,4,0,-4.5,4,0,-4.5,4,10,-4.5,-4.5,9.023893E-16,4,-4.5,10,4,4.5,10,-4,4.5,0,-4,-4,10,4.5,-4,9.023893E-16,4.5 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,45,-45,47,49,-49,50,48,-50,51,50,-50,45,46,-22,23,21,-47,52,54,-54,55,53,-55,49,5,-52,7,51,-6,56,58,-58,59,57,-59 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *120 { + a: 15.74803,3.552714E-15,15.74803,39.37008,19.68504,3.552714E-15,19.68504,39.37008,-15.74803,19.68504,-15.74803,17.71654,-19.68504,19.68504,-17.71654,15.74803,-19.68504,15.74803,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,0,17.71654,0,19.68504,39.37008,17.71654,39.37008,19.68504,0,17.71654,3.552714E-15,19.68504,39.37008,17.71654,39.37008,15.74803,17.71654,15.74803,19.68504,17.71654,15.74803,19.68504,19.68504,19.68504,15.74803,-17.71654,39.37008,-17.71654,3.552714E-15,-19.68504,39.37008,-19.68504,0,-19.68504,0,-19.68504,39.37008,-17.71654,0,-17.71654,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-17.71654,-15.74803,-15.74803,-17.71654,19.68504,-15.74803,19.68504,-19.68504,17.71654,-15.74803,15.74803,-19.68504,15.74803,-17.71654,-23.66302,6.59578E-32,-23.66302,39.37008,23.66302,3.552714E-15,23.66302,39.37008,23.66302,39.37008,23.66302,-2.931458E-32,-23.66302,39.37008,-23.66302,3.552714E-15 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,45,44,47,49,48,50,48,49,51,50,49,45,46,21,23,21,46,52,54,53,55,53,54,49,5,51,7,51,5,56,58,57,59,57,58 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDiagonal, Model::RootNode + C: "OO",4808734901111373676,0 + + ;Geometry::, Model::Mesh wallWoodDiagonal + C: "OO",5393211682605922988,4808734901111373676 + + ;Material::wood, Model::Mesh wallWoodDiagonal + C: "OO",7178,4808734901111373676 + + ;Material::woodDark, Model::Mesh wallWoodDiagonal + C: "OO",7186,4808734901111373676 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDiagonal.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDiagonal.fbx.import new file mode 100644 index 0000000..a80c58d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDiagonal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://mxugc32iso7a" +path="res://.godot/imported/wallWoodDiagonal.fbx-ba98d072795f630712e3b32f85f651eb.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDiagonal.fbx" +dest_files=["res://.godot/imported/wallWoodDiagonal.fbx-ba98d072795f630712e3b32f85f651eb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoor.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoor.fbx new file mode 100644 index 0000000..0ba238e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoor.fbx @@ -0,0 +1,426 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 205 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDoor.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDoor.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5329811445865026610, "Model::wallWoodDoor", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5054327058863142943, "Geometry::", "Mesh" { + Vertices: *1086 { + a: 4.25,7.714413,-2,4.25,7.62132,-2.12132,4.25,8.098077,-1.5,4.75,7.714413,-2,4.75,8.098077,-1.5,4.75,7.62132,-2.12132,4.75,0,-3,4.75,0,-4,4.25,0,-3,4.25,0,-4,4.75,10,-4,4.75,10,4,4.25,10,-4,4.25,10,4,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,5.5,-3,4.25,6.276457,-2.897778,4.25,7,-2.598076,4.25,7.62132,-2.12132,4.25,8.098077,-1.5,4.25,8.397778,-0.7764571,4.25,10,4,4.25,8.5,-1.443823E-14,4.25,8.397778,0.7764571,4.25,8.098077,1.5,4.25,7.714413,2,4.25,7.62132,2.12132,4.25,7,2.598076,4.25,6.276457,2.897778,4.25,5.5,3,4.25,0,4,4.25,0,3,4.75,0,4,4.75,0,3,4.25,0,4,4.25,0,3,4.75,0,3,4.75,0,4,4.75,5.5,3,4.75,10,4,4.75,6.276457,2.897778,4.75,7,2.598076,4.75,7.62132,2.12132,4.75,7.714413,2,4.75,8.098077,1.5,4.75,8.397778,0.7764571,4.75,8.5,-1.443823E-14,4.75,8.397778,-0.7764571,4.75,10,-4,4.75,8.098077,-1.5,4.75,7.62132,-2.12132,4.75,7,-2.598076,4.75,6.276457,-2.897778,4.75,0,-4,4.75,5.5,-3,4.75,0,-3,4.25,0,3,4,0,3,4.25,5.5,3,4,5.5,3,4,0,2,4,5.5,2,4,0,3,4,7.714413,2,4,6.017638,1.931852,4,6.5,1.732051,4,7.62132,2.12132,4,7,2.598076,4,6.276457,2.897778,4,5.5,3,4,8.098077,1.5,4,6.914213,1.414214,4,7.232051,1,4,8.397778,0.7764571,4,7.431851,0.5176381,4,8.5,-1.443823E-14,4,7.5,-1.443823E-14,4,7.431851,-0.5176381,4,8.397778,-0.7764571,4,7.232051,-1,4,6.914213,-1.414214,4,8.098077,-1.5,4,6.5,-1.732051,4,6.017638,-1.931852,4,7.714413,-2,4,5.5,-2,4,7.62132,-2.12132,4,0,-2,4,7,-2.598076,4,6.276457,-2.897778,4,0,-3,4,5.5,-3,5,0,5,5,0,4,4,0,5,4,0,4,4.25,8.098077,-1.5,4.25,8.397778,-0.7764571,4,8.098077,-1.5,4,8.397778,-0.7764571,4,0,4,4,10,4,4,0,5,4,10,5,4,8.098077,-1.5,4,7.714413,-2,4.25,8.098077,-1.5,4.25,7.714413,-2,4,7.62132,-2.12132,4.25,7.62132,-2.12132,4.25,8.397778,-0.7764571,4.25,8.5,-1.443823E-14,4,8.397778,-0.7764571,4,8.5,-1.443823E-14,4,5.5,-3,4.25,5.5,-3,4,6.276457,-2.897778,4.25,6.276457,-2.897778,4,6.276457,-2.897778,4.25,6.276457,-2.897778,4,7,-2.598076,4.25,7,-2.598076,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,7,-2.598076,4.25,7,-2.598076,4,7.62132,-2.12132,4.25,7.62132,-2.12132,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4.25,8.5,-1.443823E-14,4.25,8.397778,0.7764571,4,8.5,-1.443823E-14,4,8.397778,0.7764571,5,-3.6136E-20,3,5,-3.6136E-20,2,4,0,2,4,0,3,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,-4,5,0,-5,4,0,-5,4,0,-4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,-3,4.25,0,-3,4,5.5,-3,4.25,5.5,-3,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,5,4,0,5,5,10,5,4,10,5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,10,4,5,10,5,4,10,5,4,10,4,5,-3.6136E-20,-2,5,-3.6136E-20,-3,4,0,-2,4,0,-3,5,8.5,-1.443823E-14,5,8.397778,0.7764571,4.75,8.5,-1.443823E-14,4.75,8.397778,0.7764571,4.25,8.397778,0.7764571,4.25,8.098077,1.5,4,8.397778,0.7764571,4,8.098077,1.5,4.25,6.276457,2.897778,4,6.276457,2.897778,4.25,7,2.598076,4,7,2.598076,5,7.5,-1.443823E-14,5,7.431851,-0.5176381,4,7.5,-1.443823E-14,4,7.431851,-0.5176381,4,6.5,1.732051,5,6.5,1.732051,4,6.914213,1.414214,5,6.914213,1.414214,4.75,5.5,-3,5,5.5,-3,4.75,6.276457,-2.897778,5,6.276457,-2.897778,5,-3.6136E-20,2,5,5.5,2,4,0,2,4,5.5,2,4,5.5,2,5,5.5,2,4,6.017638,1.931852,5,6.017638,1.931852,5,6.276457,2.897778,4.75,6.276457,2.897778,5,7,2.598076,4.75,7,2.598076,4,7.62132,2.12132,4,7.714413,2,4.25,7.62132,2.12132,4.25,7.714413,2,4,8.098077,1.5,4.25,8.098077,1.5,5,8.098077,1.5,5,7.714413,2,4.75,8.098077,1.5,4.75,7.714413,2,5,7.62132,2.12132,4.75,7.62132,2.12132,5,6.017638,-1.931852,4,6.017638,-1.931852,5,6.5,-1.732051,4,6.5,-1.732051,5,7,2.598076,4.75,7,2.598076,5,7.62132,2.12132,4.75,7.62132,2.12132,4.75,7,-2.598076,5,7,-2.598076,4.75,7.62132,-2.12132,5,7.62132,-2.12132,5,7.232051,1,5,7.431851,0.5176381,4,7.232051,1,4,7.431851,0.5176381,5,7.431851,-0.5176381,5,7.232051,-1,4,7.431851,-0.5176381,4,7.232051,-1,5,6.914213,1.414214,5,7.232051,1,4,6.914213,1.414214,4,7.232051,1,5,6.5,-1.732051,4,6.5,-1.732051,5,6.914213,-1.414214,4,6.914213,-1.414214,4.25,5.5,3,4,5.5,3,4.25,6.276457,2.897778,4,6.276457,2.897778,4.75,6.276457,-2.897778,5,6.276457,-2.897778,4.75,7,-2.598076,5,7,-2.598076,5,7.431851,0.5176381,5,7.5,-1.443823E-14,4,7.431851,0.5176381,4,7.5,-1.443823E-14,5,-3.6136E-20,3,4.75,0,3,5,5.5,3,4.75,5.5,3,5,5.5,3,5,6.276457,2.897778,5,-3.6136E-20,3,5,7,2.598076,5,7.62132,2.12132,5,7.714413,2,5,-3.6136E-20,2,5,5.5,2,5,6.017638,1.931852,5,6.5,1.732051,5,8.098077,1.5,5,6.914213,1.414214,5,7.232051,1,5,8.397778,0.7764571,5,7.431851,0.5176381,5,7.5,-1.443823E-14,5,8.5,-1.443823E-14,5,7.431851,-0.5176381,5,8.397778,-0.7764571,5,7.232051,-1,5,6.914213,-1.414214,5,8.098077,-1.5,5,6.5,-1.732051,5,6.017638,-1.931852,5,7.714413,-2,5,5.5,-2,5,7.62132,-2.12132,5,-3.6136E-20,-2,5,7,-2.598076,5,6.276457,-2.897778,5,-3.6136E-20,-3,5,5.5,-3,5,-3.6136E-20,-3,5,5.5,-3,4.75,0,-3,4.75,5.5,-3,5,-3.6136E-20,-2,4,0,-2,5,5.5,-2,4,5.5,-2,5,5.5,-2,4,5.5,-2,5,6.017638,-1.931852,4,6.017638,-1.931852,4.75,8.098077,-1.5,4.75,7.714413,-2,5,8.098077,-1.5,5,7.714413,-2,4.75,7.62132,-2.12132,5,7.62132,-2.12132,5,5.5,3,4.75,5.5,3,5,6.276457,2.897778,4.75,6.276457,2.897778,5,7.232051,-1,5,6.914213,-1.414214,4,7.232051,-1,4,6.914213,-1.414214,5,8.397778,0.7764571,5,8.098077,1.5,4.75,8.397778,0.7764571,4.75,8.098077,1.5,5,8.098077,-1.5,5,8.397778,-0.7764571,4.75,8.098077,-1.5,4.75,8.397778,-0.7764571,4.25,7,2.598076,4,7,2.598076,4.25,7.62132,2.12132,4,7.62132,2.12132,5,8.397778,-0.7764571,5,8.5,-1.443823E-14,4.75,8.397778,-0.7764571,4.75,8.5,-1.443823E-14,4,6.017638,1.931852,5,6.017638,1.931852,4,6.5,1.732051,5,6.5,1.732051 + } + PolygonVertexIndex: *720 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,17,18,-16,18,19,-16,19,20,-16,20,21,-16,21,22,-16,23,15,-23,24,23,-23,25,23,-25,26,23,-26,27,23,-27,28,23,-28,29,23,-29,30,23,-30,31,23,-31,32,23,-32,33,32,-32,34,36,-36,37,35,-37,38,40,-40,41,39,-41,40,42,-42,42,43,-42,43,44,-42,44,45,-42,45,46,-42,46,47,-42,47,48,-42,48,49,-42,41,49,-51,49,51,-51,51,52,-51,52,53,-51,53,54,-51,55,50,-55,56,55,-55,56,57,-56,58,60,-60,61,59,-61,62,64,-64,65,63,-65,63,65,-67,66,65,-68,68,65,-65,69,68,-65,70,69,-65,71,70,-65,65,72,-68,67,72,-74,73,72,-75,72,75,-75,74,75,-77,75,77,-77,76,77,-79,78,77,-80,77,80,-80,79,80,-82,81,80,-83,80,83,-83,82,83,-85,84,83,-86,83,86,-86,85,86,-88,86,88,-88,87,88,-90,88,90,-90,90,91,-90,89,91,-93,93,92,-92,94,96,-96,34,95,-97,36,34,-97,97,36,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,107,109,-111,111,110,-110,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,35,-150,150,149,-36,37,150,-36,151,150,-38,152,154,-154,155,153,-155,156,7,-158,158,157,-8,9,158,-8,159,158,-10,160,162,-162,10,161,-163,12,10,-163,163,12,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,11,-186,186,185,-12,13,186,-12,187,186,-14,188,190,-190,6,189,-191,8,6,-191,191,8,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,229,231,-233,233,232,-232,234,236,-236,237,235,-237,235,237,-239,239,238,-238,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,285,286,-288,287,286,-289,288,286,-290,286,290,-290,290,291,-290,291,292,-290,292,293,-290,289,293,-295,293,295,-295,295,296,-295,294,296,-298,296,298,-298,298,299,-298,297,299,-301,299,301,-301,300,301,-303,301,303,-303,303,304,-303,302,304,-306,304,306,-306,306,307,-306,305,307,-309,307,309,-309,310,308,-310,309,311,-311,310,311,-313,312,311,-314,311,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,329,331,-333,333,332,-332,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,360,-360,361,359,-361 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2160 { + a: -1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0.06540313,0.9978589,0,0,1,0,0.06540313,0.9978589,0,0,1,0,0.06540313,0.9978589,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.8660254,-0.5,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,1,0,0,1,0,0,1,0,0,0.9659258,-0.258819,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0.06540313,-0.9978589,0,0,-1,0,0.06540313,-0.9978589,0,0,-1,0,0.06540313,-0.9978589,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,1,0,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9659258,0.258819,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,-1,0,0,-1,0,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-1,0,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0.06540313,-0.9978589,0,0.258819,-0.9659258,0,0,-1,0,0,-1,0,-0.06540313,-0.9978589,0,-0.06540313,-0.9978589,0,-0.06540313,-0.9978589,0,0,-1,0,-0.06540313,-0.9978589,0,-0.258819,-0.9659258,0,-0.06540313,-0.9978589,0,-0.258819,-0.9659258,0,-0.06540313,-0.9978589,0,-0.258819,-0.9659258,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.8660254,0.5,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7933533,0.6087614,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.8660254,-0.5,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.9659258,0.258819,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.7071068,-0.7071068,0,-0.5,0.8660254,0,-0.7071068,0.7071068,0,-0.5,0.8660254,0,-0.7071068,0.7071068,0,-0.5,0.8660254,0,-0.7071068,0.7071068,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-1,0,0,-1,0,0,-1,0,0,-0.9659258,-0.258819,0,0,1,0,0.06540313,0.9978589,0,0,1,0,0.06540313,0.9978589,0,0,1,0,0.06540313,0.9978589,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0.06540313,-0.9978589,0,0.06540313,-0.9978589,0,0.06540313,-0.9978589,0,0,-1,0,0,1,0,-0.06540313,0.9978589,0,0,1,0,-0.06540313,0.9978589,0,0,1,0,-0.06540313,0.9978589,0,-0.06540313,0.9978589,0,-0.258819,0.9659258,0,-0.06540313,0.9978589,0,-0.258819,0.9659258,0,-0.06540313,0.9978589,0,-0.258819,0.9659258,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,0.06540313,0.9978589,0,0.258819,0.9659258,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.8660254,0.5,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9659258,0.258819,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,1,0,0,1,0,0,1,0,0,0.9659258,-0.258819,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.5,-0.8660254 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *724 { + a: -7.874016,30.3717,-8.351655,30.0052,-5.905512,31.88219,7.874016,30.3717,5.905512,31.88219,8.351655,30.0052,18.70079,-11.81102,18.70079,-15.74803,16.73228,-11.81102,16.73228,-15.74803,-18.70079,-15.74803,-18.70079,15.74803,-16.73228,-15.74803,-16.73228,15.74803,-15.74803,-3.163753E-16,-15.74803,39.37008,-11.81102,-3.163753E-16,-11.81102,21.65354,-11.40857,24.71046,-10.22865,27.55906,-8.351655,30.0052,-5.905512,31.88219,-3.056918,33.06211,15.74803,39.37008,-5.688042E-14,33.46457,3.056918,33.06211,5.905512,31.88219,7.874016,30.3717,8.351655,30.0052,10.22865,27.55906,11.40857,24.71046,11.81102,21.65354,15.74803,-3.163753E-16,11.81102,-3.163753E-16,18.70079,15.74803,18.70079,11.81102,16.73228,15.74803,16.73228,11.81102,-11.81102,2.499498E-16,-15.74803,2.499498E-16,-11.81102,21.65354,-15.74803,39.37008,-11.40857,24.71046,-10.22865,27.55906,-8.351655,30.0052,-7.874016,30.3717,-5.905512,31.88219,-3.056918,33.06211,5.684342E-14,33.46457,3.056918,33.06211,15.74803,39.37008,5.905512,31.88219,8.351655,30.0052,10.22865,27.55906,11.40857,24.71046,15.74803,2.499498E-16,11.81102,21.65354,11.81102,2.499498E-16,16.73228,1.550275E-14,15.74803,1.550275E-14,16.73228,21.65354,15.74803,21.65354,7.874016,-1.157193E-17,7.874016,21.65354,11.81102,-1.157193E-17,7.874016,30.3717,7.605715,23.69149,6.819098,25.59055,8.351655,30.0052,10.22865,27.55906,11.40857,24.71046,11.81102,21.65354,5.905512,31.88219,5.56777,27.22131,3.937008,28.47264,3.056918,33.06211,2.037945,29.25926,-5.684342E-14,33.46457,-5.684342E-14,29.52756,-2.037945,29.25926,-3.056918,33.06211,-3.937008,28.47264,-5.56777,27.22131,-5.905512,31.88219,-6.819098,25.59055,-7.605715,23.69149,-7.874016,30.3717,-7.874016,21.65354,-8.351655,30.0052,-7.874016,-1.157193E-17,-10.22865,27.55906,-11.40857,24.71046,-11.81102,-1.157193E-17,-11.81102,21.65354,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,-16.73228,6.744804,-16.73228,9.8281,-15.74803,6.744804,-15.74803,9.8281,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,14.72349,-15.74803,12.24224,-16.73228,14.72349,-16.73228,12.24224,-15.74803,11.64019,-16.73228,11.64019,-16.73228,1.284707,-16.73228,4.368002,-15.74803,1.284707,-15.74803,4.368002,-15.74803,19.92665,-16.73228,19.92665,-15.74803,23.00994,-16.73228,23.00994,-15.74803,18.46362,-16.73228,18.46362,-15.74803,21.54691,-16.73228,21.54691,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,15.63726,-16.73228,15.63726,-15.74803,18.72056,-16.73228,18.72056,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,16.73228,4.368002,16.73228,1.284707,15.74803,4.368002,15.74803,1.284707,19.68504,11.81102,19.68504,7.874016,15.74803,7.874016,15.74803,11.81102,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-15.74803,2.325413E-14,-16.73228,2.325413E-14,-15.74803,21.65354,-16.73228,21.65354,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-19.68504,15.74803,-19.68504,19.68504,-15.74803,19.68504,-15.74803,15.74803,19.68504,-7.874016,19.68504,-11.81102,15.74803,-7.874016,15.74803,-11.81102,19.68504,4.368002,19.68504,1.284707,18.70079,4.368002,18.70079,1.284707,16.73228,9.8281,16.73228,6.744804,15.74803,9.8281,15.74803,6.744804,16.73228,18.46362,15.74803,18.46362,16.73228,21.54691,15.74803,21.54691,19.68504,3.85412,19.68504,1.798589,15.74803,3.85412,15.74803,1.798589,-15.74803,16.15115,-19.68504,16.15115,-15.74803,18.20668,-19.68504,18.20668,-18.70079,19.92665,-19.68504,19.92665,-18.70079,23.00994,-19.68504,23.00994,-19.68504,-1.422677E-19,-19.68504,21.65354,-15.74803,0,-15.74803,21.65354,-15.74803,20.44053,-19.68504,20.44053,-15.74803,22.49606,-19.68504,22.49606,19.68504,18.46362,18.70079,18.46362,19.68504,21.54691,18.70079,21.54691,15.74803,11.64019,15.74803,12.24224,16.73228,11.64019,16.73228,12.24224,15.74803,14.72349,16.73228,14.72349,19.68504,14.72349,19.68504,12.24224,18.70079,14.72349,18.70079,12.24224,19.68504,11.64019,18.70079,11.64019,19.68504,18.9775,15.74803,18.9775,19.68504,21.03303,15.74803,21.03303,19.68504,15.63726,18.70079,15.63726,19.68504,18.72056,18.70079,18.72056,-18.70079,15.63726,-19.68504,15.63726,-18.70079,18.72056,-19.68504,18.72056,-19.68504,7.258687,-19.68504,9.314218,-15.74803,7.258687,-15.74803,9.314218,19.68504,9.314218,19.68504,7.258687,15.74803,9.314218,15.74803,7.258687,-19.68504,12.15408,-19.68504,14.20961,-15.74803,12.15408,-15.74803,14.20961,19.68504,16.15115,15.74803,16.15115,19.68504,18.20668,15.74803,18.20668,16.73228,19.92665,15.74803,19.92665,16.73228,23.00994,15.74803,23.00994,-18.70079,18.46362,-19.68504,18.46362,-18.70079,21.54691,-19.68504,21.54691,-19.68504,1.798589,-19.68504,3.85412,-15.74803,1.798589,-15.74803,3.85412,19.68504,3.100536E-14,18.70079,3.10055E-14,19.68504,21.65354,18.70079,21.65354,-11.81102,21.65354,-11.40857,24.71046,-11.81102,-1.422677E-19,-10.22865,27.55906,-8.351655,30.0052,-7.874016,30.3717,-7.874016,-1.422677E-19,-7.874016,21.65354,-7.605715,23.69149,-6.819098,25.59055,-5.905512,31.88219,-5.56777,27.22131,-3.937008,28.47264,-3.056918,33.06211,-2.037945,29.25926,5.684342E-14,29.52756,5.684342E-14,33.46457,2.037945,29.25926,3.056918,33.06211,3.937008,28.47264,5.56777,27.22131,5.905512,31.88219,6.819098,25.59055,7.605715,23.69149,7.874016,30.3717,7.874016,21.65354,8.351655,30.0052,7.874016,-1.422677E-19,10.22865,27.55906,11.40857,24.71046,11.81102,-1.422677E-19,11.81102,21.65354,-19.68504,3.100536E-14,-19.68504,21.65354,-18.70079,3.10055E-14,-18.70079,21.65354,19.68504,-1.422677E-19,15.74803,0,19.68504,21.65354,15.74803,21.65354,19.68504,20.44053,15.74803,20.44053,19.68504,22.49606,15.74803,22.49606,-18.70079,14.72349,-18.70079,12.24224,-19.68504,14.72349,-19.68504,12.24224,-18.70079,11.64019,-19.68504,11.64019,19.68504,19.92665,18.70079,19.92665,19.68504,23.00994,18.70079,23.00994,19.68504,14.20961,19.68504,12.15408,15.74803,14.20961,15.74803,12.15408,19.68504,9.8281,19.68504,6.744804,18.70079,9.8281,18.70079,6.744804,-19.68504,6.744804,-19.68504,9.8281,-18.70079,6.744804,-18.70079,9.8281,16.73228,15.63726,15.74803,15.63726,16.73228,18.72056,15.74803,18.72056,-19.68504,1.284707,-19.68504,4.368002,-18.70079,1.284707,-18.70079,4.368002,-15.74803,18.9775,-19.68504,18.9775,-15.74803,21.03303,-19.68504,21.03303 + } + UVIndex: *720 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,17,18,15,18,19,15,19,20,15,20,21,15,21,22,15,23,15,22,24,23,22,25,23,24,26,23,25,27,23,26,28,23,27,29,23,28,30,23,29,31,23,30,32,23,31,33,32,31,34,36,35,37,35,36,38,40,39,41,39,40,40,42,41,42,43,41,43,44,41,44,45,41,45,46,41,46,47,41,47,48,41,48,49,41,41,49,50,49,51,50,51,52,50,52,53,50,53,54,50,55,50,54,56,55,54,56,57,55,58,60,59,61,59,60,62,64,63,65,63,64,63,65,66,66,65,67,68,65,64,69,68,64,70,69,64,71,70,64,65,72,67,67,72,73,73,72,74,72,75,74,74,75,76,75,77,76,76,77,78,78,77,79,77,80,79,79,80,81,81,80,82,80,83,82,82,83,84,84,83,85,83,86,85,85,86,87,86,88,87,87,88,89,88,90,89,90,91,89,89,91,92,93,92,91,94,96,95,34,95,96,36,34,96,97,36,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,107,109,110,111,110,109,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,35,149,150,149,35,37,150,35,151,150,37,152,154,153,155,153,154,156,7,157,158,157,7,9,158,7,159,158,9,160,162,161,10,161,162,12,10,162,163,12,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,11,185,186,185,11,13,186,11,187,186,13,188,190,189,6,189,190,8,6,190,191,8,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,229,231,232,233,232,231,234,236,235,237,235,236,235,237,238,239,238,237,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,285,286,287,287,286,288,288,286,289,286,290,289,290,291,289,291,292,289,292,293,289,289,293,294,293,295,294,295,296,294,294,296,297,296,298,297,298,299,297,297,299,300,299,301,300,300,301,302,301,303,302,303,304,302,302,304,305,304,306,305,306,307,305,305,307,308,307,309,308,310,308,309,309,311,310,310,311,312,312,311,313,311,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,329,331,332,333,332,331,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,354,356,355,357,355,356,358,360,359,361,359,360 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *240 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4893957759268659964, "Model::door", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",4.5,-1.8068E-20,-2 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5070551671682316081, "Geometry::", "Mesh" { + Vertices: *654 { + a: -0.25,5.5,4,-0.25,0,4,-0.25,6.017638,3.931851,-0.25,6.5,3.732051,-0.25,5.466845,3.494153,-0.25,5.885586,3.439024,-0.25,0.5058476,3.494153,-0.25,6.914213,3.414214,-0.25,6.244894,3.290194,-0.25,6.553438,3.053439,-0.25,7.232051,3,-0.25,6.790194,2.744894,-0.25,7.431851,2.517638,-0.25,6.939024,2.385586,-0.25,0.5058476,0.5058476,-0.25,7.5,2,-0.25,6.989787,2,-0.25,6.939024,1.614415,-0.25,7.431851,1.482362,-0.25,6.790194,1.255106,-0.25,0,0,-0.25,7.232051,1,-0.25,6.553438,0.9465612,-0.25,6.244894,0.7098061,-0.25,5.5,0,-0.25,6.017638,0.06814835,-0.25,6.5,0.2679492,-0.25,5.466845,0.5058476,-0.25,6.914213,0.5857865,-0.25,5.885586,0.5609758,0.25,0,4,0.25,0,0,-0.25,0,4,-0.25,0,0,0.25,0,4,-0.25,0,4,0.25,5.5,4,-0.25,5.5,4,0.25,5.5,4,-0.25,5.5,4,0.25,6.017638,3.931851,-0.25,6.017638,3.931851,0.25,6.017638,3.931851,-0.25,6.017638,3.931851,0.25,6.5,3.732051,-0.25,6.5,3.732051,0.25,6.5,3.732051,-0.25,6.5,3.732051,0.25,6.914213,3.414214,-0.25,6.914213,3.414214,0.25,7.232051,3,0.25,6.914213,3.414214,-0.25,7.232051,3,-0.25,6.914213,3.414214,0.25,7.431851,2.517638,0.25,7.232051,3,-0.25,7.431851,2.517638,-0.25,7.232051,3,0.25,7.5,2,0.25,7.431851,2.517638,-0.25,7.5,2,-0.25,7.431851,2.517638,0.25,7.431851,1.482362,0.25,7.5,2,-0.25,7.431851,1.482362,-0.25,7.5,2,0.25,7.232051,1,0.25,7.431851,1.482362,-0.25,7.232051,1,-0.25,7.431851,1.482362,0.25,6.914213,0.5857865,0.25,7.232051,1,-0.25,6.914213,0.5857865,-0.25,7.232051,1,-0.25,6.5,0.2679492,0.25,6.5,0.2679492,-0.25,6.914213,0.5857865,0.25,6.914213,0.5857865,-0.25,6.017638,0.06814835,0.25,6.017638,0.06814835,-0.25,6.5,0.2679492,0.25,6.5,0.2679492,-0.25,5.5,0,0.25,5.5,0,-0.25,6.017638,0.06814835,0.25,6.017638,0.06814835,-0.25,0,0,0.25,0,0,-0.25,5.5,0,0.25,5.5,0,-0.25,1.004802,1.004802,-0.25,4.412571,1.004802,-0.25,1.004802,2.995198,-0.25,4.412571,2.995198,0.25,4.412571,1.004802,0.25,1.004802,1.004802,0.25,4.412571,2.995198,0.25,1.004802,2.995198,0.25,5.5,0,0.25,0,0,0.25,6.017638,0.06814835,0.25,0.5058476,0.5058476,0.25,6.5,0.2679492,0.25,0,4,0.25,5.466845,0.5058476,0.25,6.914213,0.5857865,0.25,5.885586,0.5609758,0.25,6.244894,0.7098061,0.25,7.232051,1,0.25,6.553438,0.9465612,0.25,6.790194,1.255106,0.25,7.431851,1.482362,0.25,6.939024,1.614415,0.25,7.5,2,0.25,6.989787,2,0.25,7.431851,2.517638,0.25,6.939024,2.385586,0.25,6.790194,2.744894,0.25,7.232051,3,0.25,6.553438,3.053439,0.25,6.914213,3.414214,0.25,6.244894,3.290194,0.25,5.885586,3.439024,0.25,6.5,3.732051,0.25,5.466845,3.494153,0.25,0.5058476,3.494153,0.25,6.017638,3.931851,0.25,5.5,4,0.25,4.911526,1.004802,-0.25,4.911526,1.004802,0.25,5.434142,1.004802,-0.25,5.434142,1.004802,0.25,4.911526,1.004802,0.25,4.911526,2.995198,-0.25,4.911526,1.004802,-0.25,4.911526,2.995198,-0.25,4.911526,2.995198,0.25,4.911526,2.995198,-0.25,5.434142,2.995198,0.25,5.434142,2.995198,-0.25,5.434142,2.995198,0.25,5.434142,2.995198,-0.25,5.755332,2.952912,0.25,5.755332,2.952912,-0.25,5.755332,2.952912,0.25,5.755332,2.952912,-0.25,5.993264,2.854358,0.25,5.993264,2.854358,-0.25,5.993264,2.854358,0.25,5.993264,2.854358,-0.25,6.19758,2.69758,0.25,6.19758,2.69758,0.25,6.19758,2.69758,0.25,6.354358,2.493264,-0.25,6.19758,2.69758,-0.25,6.354358,2.493264,0.25,6.354358,2.493264,0.25,6.452912,2.255332,-0.25,6.354358,2.493264,-0.25,6.452912,2.255332,0.25,6.452912,2.255332,0.25,6.486527,2,-0.25,6.452912,2.255332,-0.25,6.486527,2,0.25,6.486527,2,0.25,6.452912,1.744668,-0.25,6.486527,2,-0.25,6.452912,1.744668,0.25,6.452912,1.744668,0.25,6.354358,1.506736,-0.25,6.452912,1.744668,-0.25,6.354358,1.506736,0.25,6.354358,1.506736,0.25,6.19758,1.30242,-0.25,6.354358,1.506736,-0.25,6.19758,1.30242,0.25,5.993264,1.145642,-0.25,5.993264,1.145642,0.25,6.19758,1.30242,-0.25,6.19758,1.30242,0.25,5.755332,1.047088,-0.25,5.755332,1.047088,0.25,5.993264,1.145642,-0.25,5.993264,1.145642,0.25,5.434142,1.004802,-0.25,5.434142,1.004802,0.25,5.755332,1.047088,-0.25,5.755332,1.047088,-0.25,5.434142,2.995198,-0.25,5.755332,2.952912,-0.25,5.993264,2.854358,-0.25,6.19758,2.69758,-0.25,6.354358,2.493264,-0.25,6.452912,2.255332,-0.25,6.486527,2,-0.25,6.452912,1.744668,-0.25,6.354358,1.506736,-0.25,6.19758,1.30242,-0.25,5.993264,1.145642,-0.25,5.755332,1.047088,-0.25,5.434142,1.004802,-0.25,4.911526,1.004802,-0.25,4.911526,2.995198,0.25,5.434142,1.004802,0.25,5.755332,1.047088,0.25,4.911526,1.004802,0.25,5.993264,1.145642,0.25,6.19758,1.30242,0.25,4.911526,2.995198,0.25,6.354358,1.506736,0.25,6.452912,1.744668,0.25,6.486527,2,0.25,6.452912,2.255332,0.25,6.354358,2.493264,0.25,6.19758,2.69758,0.25,5.993264,2.854358,0.25,5.755332,2.952912,0.25,5.434142,2.995198 + } + PolygonVertexIndex: *588 { + a: 0,2,-2,2,3,-2,3,4,-2,4,3,-6,4,6,-2,3,7,-6,5,7,-9,8,7,-10,7,10,-10,9,10,-12,10,12,-12,11,12,-14,6,14,-2,12,15,-14,13,15,-17,16,15,-18,15,18,-18,17,18,-20,1,14,-21,18,21,-20,19,21,-23,22,21,-24,24,20,-15,25,24,-15,26,25,-15,14,27,-27,21,28,-24,28,26,-28,23,28,-30,29,28,-28,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,101,-101,103,99,-102,104,101,-103,102,105,-105,106,104,-106,107,106,-106,108,107,-106,109,107,-109,110,109,-109,111,110,-109,112,110,-112,113,112,-112,114,112,-114,115,114,-114,116,114,-116,117,116,-116,118,117,-116,119,117,-119,120,119,-119,121,119,-121,122,121,-121,123,122,-121,124,122,-124,125,124,-124,123,103,-126,125,103,-102,126,103,-124,127,103,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,4,5,-7,5,8,-7,8,9,-7,9,188,-7,188,9,-190,189,9,-191,9,11,-191,190,11,-192,191,11,-193,11,13,-193,192,13,-194,13,16,-194,193,16,-195,194,16,-196,16,17,-196,195,17,-197,196,17,-198,17,19,-198,197,19,-199,198,19,-200,19,22,-200,200,199,-23,90,200,-23,22,23,-91,23,29,-91,29,27,-91,27,14,-91,6,90,-15,91,200,-91,201,200,-92,92,90,-7,91,93,-202,93,92,-7,202,201,-94,202,93,-7,188,202,-7,104,106,-102,95,101,-107,107,95,-107,125,101,-96,109,95,-108,97,125,-96,96,125,-98,203,95,-110,203,109,-205,205,95,-204,94,95,-206,110,204,-110,206,204,-111,207,206,-111,205,208,-95,96,94,-209,112,207,-111,209,207,-113,210,209,-113,114,210,-113,211,210,-115,116,211,-115,212,211,-117,213,212,-117,117,213,-117,214,213,-118,215,214,-118,119,215,-118,216,215,-120,217,216,-120,208,217,-120,96,208,-120,119,125,-97,121,125,-120,122,125,-122,124,125,-123 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1764 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.1305262,0.9914449,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.258819,0.9659258,0,0.5,0.8660254,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.5,0.8660254,0,0.7071068,0.7071068,0,0.8660254,0.5,0,0.8660254,0.5,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.8660254,0.5,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.9659258,0.258819,0,1,0,0,1,0,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,1,0,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,1,0,0,1,0,0,1,0,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.7071068,-0.7071068,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.258819,-0.9659258,0,0.5,-0.8660254,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.5,-0.8660254,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.7071068,-0.7071068,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.8660254,-0.5,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-1,0,0,-1,0,0,-1,0,0,-0.9659258,-0.258819,0,-1,0,0,-1,0,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-1,0,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.9659258,0.258819,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.8660254,0.5,0,-0.5,0.8660254,0,-0.7071068,0.7071068,0,-0.5,0.8660254,0,-0.7071068,0.7071068,0,-0.5,0.8660254,0,-0.7071068,0.7071068,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.258819,0.9659258,0,-0.5,0.8660254,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *436 { + a: 15.74803,21.65354,15.74803,0,15.47973,23.69149,14.69311,25.59055,13.75651,21.52301,13.53946,23.1716,13.75651,1.991526,13.44179,27.22131,12.95352,24.58619,12.02141,25.80094,11.81102,28.47264,10.80667,26.73305,9.911961,29.25926,9.392069,27.31899,1.991526,1.991526,7.874016,29.52756,7.874016,27.51885,6.355963,27.31899,5.836071,29.25926,4.941363,26.73305,0,0,3.937008,28.47264,3.726619,25.80094,2.794513,24.58619,0,21.65354,0.2683006,23.69149,1.054918,25.59055,1.991526,21.52301,2.306246,27.22131,2.208566,23.1716,0.984252,15.74803,0.984252,0,-0.984252,15.74803,-0.984252,0,0.984252,0,-0.984252,0,0.984252,21.65354,-0.984252,21.65354,0.984252,19.41276,-0.984252,19.41276,0.984252,21.46829,-0.984252,21.46829,0.984252,15.96424,-0.984252,15.96424,0.984252,18.01978,-0.984252,18.01978,0.984252,11.35775,-0.984252,11.35775,0.984252,13.41328,-0.984252,13.41328,0.984252,7.96273,0.984252,5.9072,-0.984252,7.96273,-0.984252,5.9072,0.984252,2.039576,0.984252,-0.015955,-0.984252,2.039576,-0.984252,-0.015955,0.984252,-3.952533,0.984252,-6.008063,-0.984252,-3.952533,-0.984252,-6.008063,-0.984252,9.605242,-0.984252,11.66077,0.984252,9.605242,0.984252,11.66077,-0.984252,14.53333,-0.984252,16.58886,0.984252,14.53333,0.984252,16.58886,-0.984252,18.40095,-0.984252,20.45648,0.984252,18.40095,0.984252,20.45648,0.984252,20.94454,-0.984252,20.94454,0.984252,23.00007,-0.984252,23.00007,0.984252,21.99076,-0.984252,21.99076,0.984252,24.04629,-0.984252,24.04629,0.984252,21.46829,-0.984252,21.46829,0.984252,23.52382,-0.984252,23.52382,0.984252,0,-0.984252,0,0.984252,21.65354,-0.984252,21.65354,3.955914,3.955914,3.955914,17.37233,11.79212,3.955914,11.79212,17.37233,-3.955914,17.37233,-3.955914,3.955914,-11.79212,17.37233,-11.79212,3.955914,0,21.65354,0,0,-0.2683006,23.69149,-1.991526,1.991526,-1.054918,25.59055,-15.74803,0,-1.991526,21.52301,-2.306246,27.22131,-2.208566,23.1716,-2.794513,24.58619,-3.937008,28.47264,-3.726619,25.80094,-4.941363,26.73305,-5.836071,29.25926,-6.355963,27.31899,-7.874016,29.52756,-7.874016,27.51885,-9.911961,29.25926,-9.392069,27.31899,-10.80667,26.73305,-11.81102,28.47264,-12.02141,25.80094,-13.44179,27.22131,-12.95352,24.58619,-13.53946,23.1716,-14.69311,25.59055,-13.75651,21.52301,-13.75651,1.991526,-15.47973,23.69149,-15.74803,21.65354,0.984252,19.33672,-0.984252,19.33672,0.984252,21.39426,-0.984252,21.39426,-0.984252,3.955914,-0.984252,11.79212,0.984252,3.955914,0.984252,11.79212,0.984252,19.33672,-0.984252,19.33672,0.984252,21.39426,-0.984252,21.39426,0.984252,19.67205,-0.984252,19.67205,0.984252,20.94749,-0.984252,20.94749,0.984252,16.48505,-0.984252,16.48505,0.984252,17.49897,-0.984252,17.49897,0.984252,11.87855,-0.984252,11.87855,0.984252,12.89247,-0.984252,12.89247,-0.984252,6.428006,-0.984252,7.441925,0.984252,6.428006,0.984252,7.441925,-0.984252,0.5048509,-0.984252,1.51877,0.984252,0.5048509,0.984252,1.51877,-0.984252,-5.487257,-0.984252,-4.473339,0.984252,-5.487257,0.984252,-4.473339,0.984252,11.13997,0.984252,10.12605,-0.984252,11.13997,-0.984252,10.12605,0.984252,16.06805,0.984252,15.05414,-0.984252,16.06805,-0.984252,15.05414,0.984252,19.93568,0.984252,18.92176,-0.984252,19.93568,-0.984252,18.92176,0.984252,21.46535,-0.984252,21.46535,0.984252,22.47927,-0.984252,22.47927,0.984252,22.51156,-0.984252,22.51156,0.984252,23.52548,-0.984252,23.52548,0.984252,21.72758,-0.984252,21.72758,0.984252,23.00302,-0.984252,23.00302,11.79212,21.39426,11.62564,22.65879,11.23763,23.59553,10.62039,24.39992,9.815999,25.01716,8.87926,25.40517,7.874016,25.53751,6.868771,25.40517,5.932033,25.01716,5.127637,24.39992,4.510402,23.59553,4.122392,22.65879,3.955914,21.39426,3.955914,19.33672,11.79212,19.33672,-3.955914,21.39426,-4.122392,22.65879,-3.955914,19.33672,-4.510402,23.59553,-5.127637,24.39992,-11.79212,19.33672,-5.932033,25.01716,-6.868771,25.40517,-7.874016,25.53751,-8.87926,25.40517,-9.815999,25.01716,-10.62039,24.39992,-11.23763,23.59553,-11.62564,22.65879,-11.79212,21.39426 + } + UVIndex: *588 { + a: 0,2,1,2,3,1,3,4,1,4,3,5,4,6,1,3,7,5,5,7,8,8,7,9,7,10,9,9,10,11,10,12,11,11,12,13,6,14,1,12,15,13,13,15,16,16,15,17,15,18,17,17,18,19,1,14,20,18,21,19,19,21,22,22,21,23,24,20,14,25,24,14,26,25,14,14,27,26,21,28,23,28,26,27,23,28,29,29,28,27,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,101,100,103,99,101,104,101,102,102,105,104,106,104,105,107,106,105,108,107,105,109,107,108,110,109,108,111,110,108,112,110,111,113,112,111,114,112,113,115,114,113,116,114,115,117,116,115,118,117,115,119,117,118,120,119,118,121,119,120,122,121,120,123,122,120,124,122,123,125,124,123,123,103,125,125,103,101,126,103,123,127,103,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,4,5,6,5,8,6,8,9,6,9,188,6,188,9,189,189,9,190,9,11,190,190,11,191,191,11,192,11,13,192,192,13,193,13,16,193,193,16,194,194,16,195,16,17,195,195,17,196,196,17,197,17,19,197,197,19,198,198,19,199,19,22,199,200,199,22,90,200,22,22,23,90,23,29,90,29,27,90,27,14,90,6,90,14,91,200,90,201,200,91,92,90,6,91,93,201,93,92,6,202,201,93,202,93,6,188,202,6,104,106,101,95,101,106,107,95,106,125,101,95,109,95,107,97,125,95,96,125,97,203,95,109,203,109,204,205,95,203,94,95,205,110,204,109,206,204,110,207,206,110,205,208,94,96,94,208,112,207,110,209,207,112,210,209,112,114,210,112,211,210,114,116,211,114,212,211,116,213,212,116,117,213,116,214,213,117,215,214,117,119,215,117,216,215,119,217,216,119,208,217,119,96,208,119,119,125,96,121,125,119,122,125,121,124,125,122 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *196 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDoor, Model::RootNode + C: "OO",5329811445865026610,0 + + ;Geometry::, Model::Mesh wallWoodDoor + C: "OO",5054327058863142943,5329811445865026610 + + ;Material::woodDark, Model::Mesh wallWoodDoor + C: "OO",7186,5329811445865026610 + + ;Material::wood, Model::Mesh wallWoodDoor + C: "OO",7178,5329811445865026610 + + ;Model::Mesh door, Model::USING PARENT + C: "OO",4893957759268659964,5329811445865026610 + + ;Geometry::, Model::Mesh door + C: "OO",5070551671682316081,4893957759268659964 + + ;Material::wood, Model::Mesh door + C: "OO",7178,4893957759268659964 + + ;Material::woodDark, Model::Mesh door + C: "OO",7186,4893957759268659964 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoor.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoor.fbx.import new file mode 100644 index 0000000..33cac41 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoor.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dercyphmhnwxf" +path="res://.godot/imported/wallWoodDoor.fbx-fbcf60bbeec9fe6cfe21a9b284efa811.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoor.fbx" +dest_files=["res://.godot/imported/wallWoodDoor.fbx-fbcf60bbeec9fe6cfe21a9b284efa811.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayBase.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayBase.fbx new file mode 100644 index 0000000..b422ef0 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayBase.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 269 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDoorwayBase.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDoorwayBase.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5221409974492846483, "Model::wallWoodDoorwayBase", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5667491418840132064, "Geometry::", "Mesh" { + Vertices: *468 { + a: 5,-1.639515E-18,-2,5,-1.639515E-18,-3,4,0,-2,4.75,0,-3,4.25,0,-3,4,0,-3,5,10,2,5,10,3,4,10,2,4.75,10,3,4.25,10,3,4,10,3,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,-1.639515E-18,3,5,-1.639515E-18,2,4.75,0,3,4,0,2,4.25,0,3,4,0,3,5,10,-3,5,10,-2,4.75,10,-3,4,10,-2,4.25,10,-3,4,10,-3,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,5,10,2,5,-1.639515E-18,2,5,10,3,5,-1.639515E-18,3,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4,0,-3,4,10,-3,4,0,-2,4,10,-2,5,10,4,5,0,4,5,10,5,5,0,5,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,-1.639515E-18,-3,5,10,-3,4.75,0,-3,4.75,10,-3,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,-1.639515E-18,2,5,10,2,4,0,2,4,10,2,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,-1.639515E-18,-2,4,0,-2,5,10,-2,4,10,-2,5,10,-3,5,-1.639515E-18,-3,5,10,-2,5,-1.639515E-18,-2,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,0,3,4,0,3,4.25,10,3,4,10,3,4,0,-3,4.25,0,-3,4,10,-3,4.25,10,-3,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,-1.639515E-18,3,4.75,0,3,5,10,3,4.75,10,3,4,0,2,4,10,2,4,0,3,4,10,3,4.75,10,3,4.75,0,3,4.75,10,4,4.75,0,4,4.75,10,-4,4.75,0,-4,4.75,10,-3,4.75,0,-3,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,10,-3,4.25,0,3,4.25,10,3,4.25,0,4,4.25,10,4,4.25,0,-3,4.75,0,-3,4.25,10,-3,4.75,10,-3,4.25,10,-3,4.75,0,-3,4.75,0,3,4.25,0,3,4.75,10,3,4.25,10,3,4.75,10,3,4.25,0,3 + } + PolygonVertexIndex: *276 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,36,-35,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,57,-57,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,89,88,-87,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,117,-117,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,3,4,-57,58,56,-5,132,134,-134,135,133,-135,87,88,-25,26,24,-89,9,10,-117,118,116,-11,136,138,-138,139,137,-139,35,36,-19,20,18,-37,140,142,-142,143,141,-143,144,146,-146,147,149,-149,150,152,-152,153,155,-155 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *828 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *312 { + a: 19.68504,-7.874016,19.68504,-11.81102,15.74803,-7.874016,18.70079,-11.81102,16.73228,-11.81102,15.74803,-11.81102,-19.68504,7.874016,-19.68504,11.81102,-15.74803,7.874016,-18.70079,11.81102,-16.73228,11.81102,-15.74803,11.81102,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,11.81102,19.68504,7.874016,18.70079,11.81102,15.74803,7.874016,16.73228,11.81102,15.74803,11.81102,-19.68504,-11.81102,-19.68504,-7.874016,-18.70079,-11.81102,-15.74803,-7.874016,-16.73228,-11.81102,-15.74803,-11.81102,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-7.874016,39.37008,-7.874016,-6.454785E-18,-11.81102,39.37008,-11.81102,-6.454785E-18,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-11.81102,0,-11.81102,39.37008,-7.874016,0,-7.874016,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-19.68504,-6.454785E-18,-19.68504,39.37008,-18.70079,0,-18.70079,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,-6.454785E-18,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,-6.454785E-18,15.74803,0,19.68504,39.37008,15.74803,39.37008,11.81102,39.37008,11.81102,-6.454785E-18,7.874016,39.37008,7.874016,-6.454785E-18,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,19.68504,-6.454785E-18,18.70079,0,19.68504,39.37008,18.70079,39.37008,7.874016,0,7.874016,39.37008,11.81102,0,11.81102,39.37008,-11.81102,39.37008,-11.81102,0,-15.74803,39.37008,-15.74803,0,15.74803,39.37008,15.74803,0,11.81102,39.37008,11.81102,0,-15.74803,0,-15.74803,39.37008,-11.81102,0,-11.81102,39.37008,11.81102,0,11.81102,39.37008,15.74803,0,15.74803,39.37008,-7.874016,39.37008,-7.874016,0,-11.81102,39.37008,-7.874016,39.37008,-7.874016,0,-11.81102,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008 + } + UVIndex: *276 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,9,8,11,10,8,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,19,20,22,24,23,25,23,24,26,25,24,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,37,36,34,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,57,56,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,89,88,86,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,117,116,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,3,4,56,58,56,4,132,134,133,135,133,134,87,88,24,26,24,88,9,10,116,118,116,10,136,138,137,139,137,138,35,36,18,20,18,36,140,142,141,143,141,142,144,146,145,147,149,148,150,152,151,153,155,154 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *92 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDoorwayBase, Model::RootNode + C: "OO",5221409974492846483,0 + + ;Geometry::, Model::Mesh wallWoodDoorwayBase + C: "OO",5667491418840132064,5221409974492846483 + + ;Material::wood, Model::Mesh wallWoodDoorwayBase + C: "OO",7178,5221409974492846483 + + ;Material::woodDark, Model::Mesh wallWoodDoorwayBase + C: "OO",7186,5221409974492846483 + + ;Material::_defaultMat, Model::Mesh wallWoodDoorwayBase + C: "OO",7176,5221409974492846483 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayBase.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayBase.fbx.import new file mode 100644 index 0000000..cf522a8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayBase.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://m5b75y3j7s2j" +path="res://.godot/imported/wallWoodDoorwayBase.fbx-48ec5162878c664a10ea965bfcd1d81f.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayBase.fbx" +dest_files=["res://.godot/imported/wallWoodDoorwayBase.fbx-48ec5162878c664a10ea965bfcd1d81f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayRound.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayRound.fbx new file mode 100644 index 0000000..7cfebe8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayRound.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 314 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDoorwayRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDoorwayRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5683262619559665202, "Model::wallWoodDoorwayRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5599801079994926775, "Geometry::", "Mesh" { + Vertices: *1674 { + a: 5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,4,5,0,4,5,10,5,5,0,5,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4,0,4,4,10,4,4,0,5,4,10,5,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.75,5.5,3,4.75,5.83919,2.864484,5,5.5,3,5,5.83919,2.864484,5,7.585704,1.569502,5,7.337117,1.837117,4.75,7.585704,1.569502,4.75,7.337117,1.837117,4.75,6.483092,-2.520508,5,6.483092,-2.520508,4.75,6.78431,-2.313914,5,6.78431,-2.313914,5,7.813914,-1.284311,5,8.020508,-0.9830917,4.75,7.813914,-1.284311,4.75,8.020508,-0.9830917,5,8.020508,-0.9830917,5,8.204364,-0.6674802,4.75,8.020508,-0.9830917,4.75,8.204364,-0.6674802,5,7.302909,0.4449868,5,7.409656,0.226126,4,7.302909,0.4449868,4,7.409656,0.226126,5,8.204364,-0.6674802,5,8.364485,-0.3391889,4.75,8.204364,-0.6674802,4.75,8.364485,-0.3391889,5,8.364485,-0.3391889,5,8.5,-7.219114E-15,4.75,8.364485,-0.3391889,4.75,8.5,-7.219114E-15,4,5.944987,-1.802909,4,6.155395,-1.680339,5,5.944987,-1.802909,5,6.155395,-1.680339,4,-1.07146E-16,2,4,5.5,2,4,-1.073297E-16,3,4,7.069501,2.085705,4,5.726126,1.909656,4,6.78431,2.313914,4,7.337117,1.837117,4,5.944987,1.802909,4,6.155395,1.680339,4,6.483092,2.520508,4,6.16748,2.704364,4,5.83919,2.864484,4,5.5,3,4,7.585704,1.569502,4,6.356207,1.542609,4,6.546335,1.39047,4,7.813914,1.284311,4,6.724745,1.224745,4,6.89047,1.046335,4,8.020508,0.9830917,4,7.042609,0.8562071,4,8.204364,0.6674802,4,7.180338,0.6553945,4,7.302909,0.4449868,4,8.364485,0.3391889,4,7.409656,0.226126,4,8.5,-7.219114E-15,4,7.5,-7.219114E-15,4,7.409656,-0.226126,4,8.364485,-0.3391889,4,7.302909,-0.4449868,4,7.180338,-0.6553945,4,8.204364,-0.6674802,4,7.042609,-0.8562071,4,8.020508,-0.9830917,4,6.89047,-1.046335,4,6.724745,-1.224745,4,7.813914,-1.284311,4,6.546335,-1.39047,4,6.356207,-1.542609,4,7.585704,-1.569502,4,6.155395,-1.680339,4,5.944987,-1.802909,4,7.337117,-1.837117,4,5.726126,-1.909656,4,5.5,-2,4,7.069501,-2.085705,4,-1.07146E-16,-2,4,6.78431,-2.313914,4,6.483092,-2.520508,4,6.16748,-2.704364,4,5.83919,-2.864484,4,-1.073297E-16,-3,4,5.5,-3,4.25,8.5,-7.219114E-15,4.25,8.364485,0.3391889,4,8.5,-7.219114E-15,4,8.364485,0.3391889,4.25,8.364485,-0.3391889,4.25,8.5,-7.219114E-15,4,8.364485,-0.3391889,4,8.5,-7.219114E-15,4.25,8.204364,-0.6674802,4.25,8.364485,-0.3391889,4,8.204364,-0.6674802,4,8.364485,-0.3391889,5,7.042609,0.8562071,5,7.180338,0.6553945,4,7.042609,0.8562071,4,7.180338,0.6553945,5,7.813914,1.284311,5,7.585704,1.569502,4.75,7.813914,1.284311,4.75,7.585704,1.569502,5,7.5,-7.219114E-15,5,7.409656,-0.226126,4,7.5,-7.219114E-15,4,7.409656,-0.226126,4,-1.07146E-16,-2,4,5.5,-2,5,1.619236E-16,-2,5,5.5,-2,5,8.5,-7.219114E-15,5,8.364485,0.3391889,4.75,8.5,-7.219114E-15,4.75,8.364485,0.3391889,5,7.180338,-0.6553945,5,7.042609,-0.8562071,4,7.180338,-0.6553945,4,7.042609,-0.8562071,4,-1.07146E-16,2,5,1.619236E-16,2,4,5.5,2,5,5.5,2,5,8.204364,0.6674802,5,8.020508,0.9830917,4.75,8.204364,0.6674802,4.75,8.020508,0.9830917,5,8.020508,0.9830917,5,7.813914,1.284311,4.75,8.020508,0.9830917,4.75,7.813914,1.284311,5,7.302909,-0.4449868,5,7.180338,-0.6553945,4,7.302909,-0.4449868,4,7.180338,-0.6553945,4.75,5.83919,2.864484,4.75,6.16748,2.704364,5,5.83919,2.864484,5,6.16748,2.704364,5,6.89047,1.046335,5,7.042609,0.8562071,4,6.89047,1.046335,4,7.042609,0.8562071,4,6.356207,1.542609,5,6.356207,1.542609,4,6.546335,1.39047,5,6.546335,1.39047,5,7.409656,0.226126,5,7.5,-7.219114E-15,4,7.409656,0.226126,4,7.5,-7.219114E-15,4.75,6.78431,2.313914,4.75,7.069501,2.085705,5,6.78431,2.313914,5,7.069501,2.085705,5,8.364485,0.3391889,5,8.204364,0.6674802,4.75,8.364485,0.3391889,4.75,8.204364,0.6674802,5,7.180338,0.6553945,5,7.302909,0.4449868,4,7.180338,0.6553945,4,7.302909,0.4449868,4.75,6.16748,2.704364,4.75,6.483092,2.520508,5,6.16748,2.704364,5,6.483092,2.520508,5,7.409656,-0.226126,5,7.302909,-0.4449868,4,7.409656,-0.226126,4,7.302909,-0.4449868,4.75,0,3,4.75,5.5,3,5,1.619236E-16,3,5,5.5,3,4.75,0,-3,5,1.619236E-16,-3,4.75,5.5,-3,5,5.5,-3,4.75,5.5,-3,5,5.5,-3,4.75,5.83919,-2.864484,5,5.83919,-2.864484,4.75,5.83919,-2.864484,5,5.83919,-2.864484,4.75,6.16748,-2.704364,5,6.16748,-2.704364,5,7.042609,-0.8562071,5,6.89047,-1.046335,4,7.042609,-0.8562071,4,6.89047,-1.046335,4,6.546335,-1.39047,4,6.724745,-1.224745,5,6.546335,-1.39047,5,6.724745,-1.224745,4.75,6.16748,-2.704364,5,6.16748,-2.704364,4.75,6.483092,-2.520508,5,6.483092,-2.520508,4.75,6.78431,-2.313914,5,6.78431,-2.313914,4.75,7.069501,-2.085705,5,7.069501,-2.085705,4.75,7.069501,-2.085705,5,7.069501,-2.085705,4.75,7.337117,-1.837117,5,7.337117,-1.837117,5,7.585704,-1.569502,5,7.813914,-1.284311,4.75,7.585704,-1.569502,4.75,7.813914,-1.284311,4.75,7.069501,2.085705,4.75,7.337117,1.837117,5,7.069501,2.085705,5,7.337117,1.837117,4,5.726126,1.909656,5,5.726126,1.909656,4,5.944987,1.802909,5,5.944987,1.802909,5,7.337117,-1.837117,5,7.585704,-1.569502,4.75,7.337117,-1.837117,4.75,7.585704,-1.569502,4,5.5,2,5,5.5,2,4,5.726126,1.909656,5,5.726126,1.909656,5,6.724745,1.224745,5,6.89047,1.046335,4,6.724745,1.224745,4,6.89047,1.046335,5,6.89047,-1.046335,5,6.724745,-1.224745,4,6.89047,-1.046335,4,6.724745,-1.224745,4,5.5,-2,4,5.726126,-1.909656,5,5.5,-2,5,5.726126,-1.909656,4,6.356207,-1.542609,4,6.546335,-1.39047,5,6.356207,-1.542609,5,6.546335,-1.39047,4,6.155395,1.680339,5,6.155395,1.680339,4,6.356207,1.542609,5,6.356207,1.542609,4,6.155395,-1.680339,4,6.356207,-1.542609,5,6.155395,-1.680339,5,6.356207,-1.542609,4,5.726126,-1.909656,4,5.944987,-1.802909,5,5.726126,-1.909656,5,5.944987,-1.802909,5,5.5,3,5,5.83919,2.864484,5,1.619236E-16,3,5,6.16748,2.704364,5,6.483092,2.520508,5,6.78431,2.313914,5,7.069501,2.085705,5,1.619236E-16,2,5,5.5,2,5,5.726126,1.909656,5,7.337117,1.837117,5,5.944987,1.802909,5,6.155395,1.680339,5,7.585704,1.569502,5,6.356207,1.542609,5,6.546335,1.39047,5,7.813914,1.284311,5,6.724745,1.224745,5,6.89047,1.046335,5,8.020508,0.9830917,5,7.042609,0.8562071,5,8.204364,0.6674802,5,7.180338,0.6553945,5,7.302909,0.4449868,5,8.364485,0.3391889,5,7.409656,0.226126,5,7.5,-7.219114E-15,5,8.5,-7.219114E-15,5,7.409656,-0.226126,5,8.364485,-0.3391889,5,7.302909,-0.4449868,5,7.180338,-0.6553945,5,8.204364,-0.6674802,5,7.042609,-0.8562071,5,8.020508,-0.9830917,5,6.89047,-1.046335,5,6.724745,-1.224745,5,7.813914,-1.284311,5,6.546335,-1.39047,5,6.356207,-1.542609,5,7.585704,-1.569502,5,6.155395,-1.680339,5,5.944987,-1.802909,5,7.337117,-1.837117,5,5.726126,-1.909656,5,5.5,-2,5,7.069501,-2.085705,5,1.619236E-16,-2,5,6.78431,-2.313914,5,6.483092,-2.520508,5,6.16748,-2.704364,5,5.83919,-2.864484,5,1.619236E-16,-3,5,5.5,-3,4,5.944987,1.802909,5,5.944987,1.802909,4,6.155395,1.680339,5,6.155395,1.680339,4.75,6.483092,2.520508,4.75,6.78431,2.313914,5,6.483092,2.520508,5,6.78431,2.313914,4,6.546335,1.39047,5,6.546335,1.39047,4,6.724745,1.224745,5,6.724745,1.224745,4.25,8.020508,0.9830917,4.25,7.813914,1.284311,4,8.020508,0.9830917,4,7.813914,1.284311,4,-1.073297E-16,-3,4.25,0,-3,4,5.5,-3,4.25,5.5,-3,4,5.83919,-2.864484,4.25,5.83919,-2.864484,4,6.16748,-2.704364,4.25,6.16748,-2.704364,4,6.16748,-2.704364,4.25,6.16748,-2.704364,4,6.483092,-2.520508,4.25,6.483092,-2.520508,4.25,8.364485,0.3391889,4.25,8.204364,0.6674802,4,8.364485,0.3391889,4,8.204364,0.6674802,4.25,5.5,3,4,5.5,3,4.25,5.83919,2.864484,4,5.83919,2.864484,4.25,6.78431,2.313914,4,6.78431,2.313914,4.25,7.069501,2.085705,4,7.069501,2.085705,4.25,7.813914,-1.284311,4.25,8.020508,-0.9830917,4,7.813914,-1.284311,4,8.020508,-0.9830917,4,6.78431,-2.313914,4.25,6.78431,-2.313914,4,7.069501,-2.085705,4.25,7.069501,-2.085705,4,5.5,-3,4.25,5.5,-3,4,5.83919,-2.864484,4.25,5.83919,-2.864484,4.25,7.585704,1.569502,4.25,7.337117,1.837117,4,7.585704,1.569502,4,7.337117,1.837117,4.25,6.483092,2.520508,4,6.483092,2.520508,4.25,6.78431,2.313914,4,6.78431,2.313914,4.25,7.069501,2.085705,4,7.069501,2.085705,4.25,7.337117,1.837117,4,7.337117,1.837117,4,6.483092,-2.520508,4.25,6.483092,-2.520508,4,6.78431,-2.313914,4.25,6.78431,-2.313914,4.25,7.337117,-1.837117,4.25,7.585704,-1.569502,4,7.337117,-1.837117,4,7.585704,-1.569502,4,7.069501,-2.085705,4.25,7.069501,-2.085705,4,7.337117,-1.837117,4.25,7.337117,-1.837117,4.25,8.020508,-0.9830917,4.25,8.204364,-0.6674802,4,8.020508,-0.9830917,4,8.204364,-0.6674802,4,-1.073297E-16,3,4,5.5,3,4.25,0,3,4.25,5.5,3,4.25,7.813914,1.284311,4.25,7.585704,1.569502,4,7.813914,1.284311,4,7.585704,1.569502,4.25,6.16748,2.704364,4,6.16748,2.704364,4.25,6.483092,2.520508,4,6.483092,2.520508,4.25,8.204364,0.6674802,4.25,8.020508,0.9830917,4,8.204364,0.6674802,4,8.020508,0.9830917,4.25,5.83919,2.864484,4,5.83919,2.864484,4.25,6.16748,2.704364,4,6.16748,2.704364,4.25,7.585704,-1.569502,4.25,7.813914,-1.284311,4,7.585704,-1.569502,4,7.813914,-1.284311,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,5.5,-3,4.25,5.83919,-2.864484,4.25,6.16748,-2.704364,4.25,6.483092,-2.520508,4.25,6.78431,-2.313914,4.25,7.069501,-2.085705,4.25,7.337117,-1.837117,4.25,7.585704,-1.569502,4.25,7.813914,-1.284311,4.25,8.020508,-0.9830917,4.25,8.204364,-0.6674802,4.25,8.364485,-0.3391889,4.25,8.5,-7.219114E-15,4.25,10,4,4.25,8.364485,0.3391889,4.25,8.204364,0.6674802,4.25,8.020508,0.9830917,4.25,7.813914,1.284311,4.25,7.585704,1.569502,4.25,7.337117,1.837117,4.25,7.069501,2.085705,4.25,6.78431,2.313914,4.25,6.483092,2.520508,4.25,6.16748,2.704364,4.25,5.83919,2.864484,4.25,5.5,3,4.25,0,4,4.25,0,3,4.75,0,3,4.75,0,4,4.75,5.5,3,4.75,10,4,4.75,5.83919,2.864484,4.75,6.16748,2.704364,4.75,6.483092,2.520508,4.75,6.78431,2.313914,4.75,7.069501,2.085705,4.75,7.337117,1.837117,4.75,7.585704,1.569502,4.75,7.813914,1.284311,4.75,8.020508,0.9830917,4.75,8.204364,0.6674802,4.75,8.364485,0.3391889,4.75,8.5,-7.219114E-15,4.75,10,-4,4.75,8.364485,-0.3391889,4.75,8.204364,-0.6674802,4.75,8.020508,-0.9830917,4.75,7.813914,-1.284311,4.75,7.585704,-1.569502,4.75,7.337117,-1.837117,4.75,7.069501,-2.085705,4.75,6.78431,-2.313914,4.75,6.483092,-2.520508,4.75,6.16748,-2.704364,4.75,5.83919,-2.864484,4.75,5.5,-3,4.75,0,-4,4.75,0,-3,5,1.619236E-16,-2,5,1.619236E-16,-3,4,-1.07146E-16,-2,4.75,0,-3,4.25,0,-3,4,-1.073297E-16,-3,4.75,0,3,4.25,0,3,4,-1.07146E-16,2,4,-1.073297E-16,3,5,1.619236E-16,2,5,1.619236E-16,3 + } + PolygonVertexIndex: *1104 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,36,-35,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,49,-49,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,101,103,-105,105,103,-103,103,106,-105,104,106,-108,107,106,-109,109,105,-103,110,109,-103,111,110,-103,112,111,-103,106,113,-109,108,113,-115,114,113,-116,113,116,-116,115,116,-118,117,116,-119,116,119,-119,118,119,-121,119,121,-121,120,121,-123,122,121,-124,121,124,-124,123,124,-126,124,126,-126,125,126,-128,127,126,-129,126,129,-129,128,129,-131,130,129,-132,129,132,-132,131,132,-134,132,134,-134,133,134,-136,135,134,-137,134,137,-137,136,137,-139,138,137,-140,137,140,-140,139,140,-142,141,140,-143,140,143,-143,142,143,-145,144,143,-146,143,146,-146,145,146,-148,146,148,-148,148,149,-148,149,150,-148,150,151,-148,147,151,-153,153,152,-152,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,327,328,-330,329,328,-331,330,328,-332,331,328,-333,328,333,-333,333,334,-333,334,335,-333,332,335,-337,335,337,-337,337,338,-337,336,338,-340,338,340,-340,340,341,-340,339,341,-343,341,343,-343,343,344,-343,342,344,-346,344,346,-346,345,346,-348,346,348,-348,348,349,-348,347,349,-351,349,351,-351,351,352,-351,350,352,-354,352,354,-354,353,354,-356,354,356,-356,356,357,-356,355,357,-359,357,359,-359,358,359,-361,359,361,-361,361,362,-361,360,362,-364,362,364,-364,364,365,-364,363,365,-367,365,367,-367,367,368,-367,366,368,-370,368,370,-370,370,371,-370,372,369,-372,371,373,-373,372,373,-375,374,373,-376,375,373,-377,376,373,-378,373,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,432,434,-434,435,433,-435,436,438,-438,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,454,-454,455,453,-455,456,458,-458,459,457,-459,460,462,-462,463,461,-463,464,466,-466,467,465,-467,468,470,-470,471,469,-471,472,474,-474,475,473,-475,476,478,-478,479,477,-479,480,482,-482,483,481,-483,484,486,-486,487,485,-487,487,488,-486,488,489,-486,489,490,-486,490,491,-486,491,492,-486,492,493,-486,493,494,-486,494,495,-486,495,496,-486,496,497,-486,497,498,-486,498,499,-486,500,485,-500,501,500,-500,502,500,-502,503,500,-503,504,500,-504,505,500,-505,506,500,-506,507,500,-507,508,500,-508,509,500,-509,510,500,-510,511,500,-511,512,500,-512,513,500,-513,514,513,-513,515,517,-517,518,516,-518,517,519,-519,519,520,-519,520,521,-519,521,522,-519,522,523,-519,523,524,-519,524,525,-519,525,526,-519,526,527,-519,527,528,-519,528,529,-519,529,530,-519,518,530,-532,530,532,-532,532,533,-532,533,534,-532,534,535,-532,535,536,-532,536,537,-532,537,538,-532,538,539,-532,539,540,-532,540,541,-532,541,542,-532,542,543,-532,544,531,-544,543,545,-545,546,548,-548,549,547,-549,24,549,-549,550,24,-549,551,550,-549,550,26,-25,35,36,-553,36,553,-553,553,554,-553,555,554,-554,554,556,-553,557,552,-557,3,4,-49,50,48,-5 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3312 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3710136,0.9286274,0,0.3710136,0.9286274,0,0.4049695,0.9143302,0,0.4049695,0.9143302,0,0.4049695,0.9143302,0,0.3710136,0.9286274,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7572476,0.6531278,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.8032784,-0.5956038,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.844949,-0.534847,0,-0.8820333,-0.471187,0,-0.8820333,-0.471187,0,-0.9143302,-0.4049695,0,-0.9143302,-0.4049695,0,-0.9143302,-0.4049695,0,-0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.8820333,-0.471187,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.9286274,-0.3710136,0,0.9286274,-0.3710136,0,0.9286274,-0.3710136,0,0.9143302,-0.4049695,0,-0.471187,0.8820333,0,-0.471187,0.8820333,0,-0.534847,0.844949,0,-0.534847,0.844949,0,-0.534847,0.844949,0,-0.471187,0.8820333,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9286274,0.3710136,0,0.9286274,0.3710136,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.9286274,0.3710136,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.9286274,-0.3710136,0,0.9286274,-0.3710136,0,0.9286274,-0.3710136,0,0.9143302,-0.4049695,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.9143302,-0.4049695,0,0.8820333,-0.471187,0,-0.8032784,-0.5956038,0,-0.8032784,-0.5956038,0,-0.844949,-0.534847,0,-0.844949,-0.534847,0,-0.844949,-0.534847,0,-0.8032784,-0.5956038,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.8032784,0.5956038,0,-0.9286274,0.3710136,0,-0.9286274,0.3710136,0,-0.9143302,0.4049695,0,-0.9143302,0.4049695,0,-0.9143302,0.4049695,0,-0.9286274,0.3710136,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9286274,0.3710136,0,0.9286274,0.3710136,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.9286274,0.3710136,0,-0.844949,0.534847,0,-0.844949,0.534847,0,-0.8032784,0.5956038,0,-0.8032784,0.5956038,0,-0.8032784,0.5956038,0,-0.844949,0.534847,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.844949,0.534847,0,0.844949,0.534847,0,0.844949,0.534847,0,0.8820333,0.471187,0,0.844949,0.534847,0,0.844949,0.534847,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.844949,0.534847,0,-0.8820333,0.471187,0,-0.8820333,0.471187,0,-0.844949,0.534847,0,-0.844949,0.534847,0,-0.844949,0.534847,0,-0.8820333,0.471187,0,0.4049695,0.9143302,0,0.4049695,0.9143302,0,0.471187,0.8820333,0,0.471187,0.8820333,0,0.471187,0.8820333,0,0.4049695,0.9143302,0,-0.7572476,-0.6531278,0,-0.7572476,-0.6531278,0,-0.8032784,-0.5956038,0,-0.8032784,-0.5956038,0,-0.8032784,-0.5956038,0,-0.7572476,-0.6531278,0,-0.5956038,-0.8032784,0,-0.6531278,-0.7572476,0,-0.5956038,-0.8032784,0,-0.6531278,-0.7572476,0,-0.5956038,-0.8032784,0,-0.6531278,-0.7572476,0,-0.9143302,-0.4049695,0,-0.9143302,-0.4049695,0,-0.9286274,-0.3710136,0,-0.9286274,-0.3710136,0,-0.9286274,-0.3710136,0,-0.9143302,-0.4049695,0,0.5956038,0.8032784,0,0.5956038,0.8032784,0,0.6531278,0.7572476,0,0.6531278,0.7572476,0,0.6531278,0.7572476,0,0.5956038,0.8032784,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.9143302,0.4049695,0,-0.844949,-0.534847,0,-0.844949,-0.534847,0,-0.8820333,-0.471187,0,-0.8820333,-0.471187,0,-0.8820333,-0.471187,0,-0.844949,-0.534847,0,0.471187,0.8820333,0,0.471187,0.8820333,0,0.534847,0.844949,0,0.534847,0.844949,0,0.534847,0.844949,0,0.471187,0.8820333,0,-0.9143302,0.4049695,0,-0.9143302,0.4049695,0,-0.8820333,0.471187,0,-0.8820333,0.471187,0,-0.8820333,0.471187,0,-0.9143302,0.4049695,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,-0.8032784,0.5956038,0,-0.8032784,0.5956038,0,-0.7572476,0.6531278,0,-0.7572476,0.6531278,0,-0.7572476,0.6531278,0,-0.8032784,0.5956038,0,-0.6531278,0.7572476,0,-0.6531278,0.7572476,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.6531278,0.7572476,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.7572476,-0.6531278,0,0.6531278,0.7572476,0,0.6531278,0.7572476,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.6531278,0.7572476,0,-0.4049695,-0.9143302,0,-0.471187,-0.8820333,0,-0.4049695,-0.9143302,0,-0.471187,-0.8820333,0,-0.4049695,-0.9143302,0,-0.471187,-0.8820333,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.7071068,-0.7071068,0,-0.3710136,-0.9286274,0,-0.4049695,-0.9143302,0,-0.3710136,-0.9286274,0,-0.4049695,-0.9143302,0,-0.3710136,-0.9286274,0,-0.4049695,-0.9143302,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7572476,-0.6531278,0,-0.7572476,-0.6531278,0,-0.7572476,-0.6531278,0,-0.7071068,-0.7071068,0,-0.7572476,0.6531278,0,-0.7572476,0.6531278,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7572476,0.6531278,0,-0.3710136,0.9286274,0,-0.3710136,0.9286274,0,-0.4049695,0.9143302,0,-0.4049695,0.9143302,0,-0.4049695,0.9143302,0,-0.3710136,0.9286274,0,-0.5956038,0.8032784,0,-0.5956038,0.8032784,0,-0.6531278,0.7572476,0,-0.6531278,0.7572476,0,-0.6531278,0.7572476,0,-0.5956038,0.8032784,0,-0.534847,-0.844949,0,-0.5956038,-0.8032784,0,-0.534847,-0.844949,0,-0.5956038,-0.8032784,0,-0.534847,-0.844949,0,-0.5956038,-0.8032784,0,-0.534847,0.844949,0,-0.534847,0.844949,0,-0.5956038,0.8032784,0,-0.5956038,0.8032784,0,-0.5956038,0.8032784,0,-0.534847,0.844949,0,-0.4049695,0.9143302,0,-0.4049695,0.9143302,0,-0.471187,0.8820333,0,-0.471187,0.8820333,0,-0.471187,0.8820333,0,-0.4049695,0.9143302,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.471187,-0.8820333,0,-0.534847,-0.844949,0,-0.471187,-0.8820333,0,-0.534847,-0.844949,0,-0.471187,-0.8820333,0,-0.534847,-0.844949,0,0.534847,0.844949,0,0.534847,0.844949,0,0.5956038,0.8032784,0,0.5956038,0.8032784,0,0.5956038,0.8032784,0,0.534847,0.844949,0,-0.6531278,-0.7572476,0,-0.7071068,-0.7071068,0,-0.6531278,-0.7572476,0,-0.7071068,-0.7071068,0,-0.6531278,-0.7572476,0,-0.7071068,-0.7071068,0,0.844949,0.534847,0,0.844949,0.534847,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.844949,0.534847,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.4049695,-0.9143302,0,0.471187,-0.8820333,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.471187,-0.8820333,0,0.534847,-0.844949,0,0.9143302,0.4049695,0,0.9143302,0.4049695,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.9143302,0.4049695,0,0.3710136,0.9286274,0,0.4049695,0.9143302,0,0.3710136,0.9286274,0,0.4049695,0.9143302,0,0.3710136,0.9286274,0,0.4049695,0.9143302,0,0.5956038,0.8032784,0,0.6531278,0.7572476,0,0.5956038,0.8032784,0,0.6531278,0.7572476,0,0.5956038,0.8032784,0,0.6531278,0.7572476,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.8032784,-0.5956038,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.5956038,-0.8032784,0,0.6531278,-0.7572476,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.3710136,-0.9286274,0,0.4049695,-0.9143302,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7572476,0.6531278,0,0.534847,0.844949,0,0.5956038,0.8032784,0,0.534847,0.844949,0,0.5956038,0.8032784,0,0.534847,0.844949,0,0.5956038,0.8032784,0,0.6531278,0.7572476,0,0.7071068,0.7071068,0,0.6531278,0.7572476,0,0.7071068,0.7071068,0,0.6531278,0.7572476,0,0.7071068,0.7071068,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.534847,-0.844949,0,0.5956038,-0.8032784,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.7071068,-0.7071068,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.6531278,-0.7572476,0,0.7071068,-0.7071068,0,0.844949,-0.534847,0,0.844949,-0.534847,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.8820333,-0.471187,0,0.844949,-0.534847,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8032784,0.5956038,0,0.8032784,0.5956038,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.7572476,0.6531278,0,0.8032784,0.5956038,0,0.471187,0.8820333,0,0.534847,0.844949,0,0.471187,0.8820333,0,0.534847,0.844949,0,0.471187,0.8820333,0,0.534847,0.844949,0,0.8820333,0.471187,0,0.8820333,0.471187,0,0.844949,0.534847,0,0.844949,0.534847,0,0.844949,0.534847,0,0.8820333,0.471187,0,0.4049695,0.9143302,0,0.471187,0.8820333,0,0.4049695,0.9143302,0,0.471187,0.8820333,0,0.4049695,0.9143302,0,0.471187,0.8820333,0,0.7572476,-0.6531278,0,0.7572476,-0.6531278,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.8032784,-0.5956038,0,0.7572476,-0.6531278,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1116 { + a: -19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,19.68504,7.105427E-15,15.74803,7.105427E-15,19.68504,39.37008,15.74803,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,18.70079,15.72602,18.70079,17.16405,19.68504,15.72602,19.68504,17.16405,19.68504,15.79818,19.68504,14.36016,18.70079,15.79818,18.70079,14.36016,-18.70079,15.43626,-19.68504,15.43626,-18.70079,16.87429,-19.68504,16.87429,-19.68504,13.23026,-19.68504,14.66828,-18.70079,13.23026,-18.70079,14.66828,-19.68504,12.55009,-19.68504,13.98812,-18.70079,12.55009,-18.70079,13.98812,-19.68504,11.0294,-19.68504,11.98809,-15.74803,11.0294,-15.74803,11.98809,-19.68504,11.79791,-19.68504,13.23593,-18.70079,11.79791,-18.70079,13.23593,-19.68504,10.97778,-19.68504,12.41581,-18.70079,10.97778,-18.70079,12.41581,15.74803,16.65126,15.74803,17.60994,19.68504,16.65126,19.68504,17.60994,7.874016,-7.182761E-15,7.874016,21.65354,11.81102,-7.183484E-15,8.211435,27.83268,7.518331,22.5438,9.109899,26.70988,7.232745,28.88629,7.098068,23.40546,6.615506,24.23384,9.923259,25.52398,10.6471,24.28142,11.2775,22.98893,11.81102,21.65354,6.179141,29.86498,6.073266,25.02444,5.47429,25.77297,5.056341,30.76344,4.82183,26.47537,4.119427,27.12783,3.87044,31.5768,3.370894,27.72681,2.627875,32.30064,2.580293,28.26905,1.751917,28.75161,1.33539,32.93104,0.8902597,29.17188,-2.842171E-14,33.46457,-2.842171E-14,29.52756,-0.8902597,29.17188,-1.33539,32.93104,-1.751917,28.75161,-2.580293,28.26905,-2.627875,32.30064,-3.370894,27.72681,-3.87044,31.5768,-4.119427,27.12783,-4.82183,26.47537,-5.056341,30.76344,-5.47429,25.77297,-6.073266,25.02444,-6.179141,29.86498,-6.615506,24.23384,-7.098068,23.40546,-7.232745,28.88629,-7.518331,22.5438,-7.874016,21.65354,-8.211435,27.83268,-7.874016,-7.182761E-15,-9.109899,26.70988,-9.923259,25.52398,-10.6471,24.28142,-11.2775,22.98893,-11.81102,-7.183484E-15,-11.81102,21.65354,16.73228,12.41581,16.73228,10.97778,15.74803,12.41581,15.74803,10.97778,-16.73228,10.97778,-16.73228,12.41581,-15.74803,10.97778,-15.74803,12.41581,-16.73228,11.79791,-16.73228,13.23593,-15.74803,11.79791,-15.74803,13.23593,-19.68504,12.90265,-19.68504,13.86134,-15.74803,12.90265,-15.74803,13.86134,19.68504,15.27273,19.68504,13.83471,18.70079,15.27273,18.70079,13.83471,19.68504,10.95512,19.68504,9.996441,15.74803,10.95512,15.74803,9.996441,15.74803,-4.218347E-16,15.74803,21.65354,19.68504,6.374945E-16,19.68504,21.65354,19.68504,12.41581,19.68504,10.97778,18.70079,12.41581,18.70079,10.97778,19.68504,13.86134,19.68504,12.90265,15.74803,13.86134,15.74803,12.90265,-15.74803,-4.218347E-16,-19.68504,6.374945E-16,-15.74803,21.65354,-19.68504,21.65354,19.68504,13.98812,19.68504,12.55009,18.70079,13.98812,18.70079,12.55009,19.68504,14.66828,19.68504,13.23026,18.70079,14.66828,18.70079,13.23026,19.68504,12.95858,19.68504,11.9999,15.74803,12.95858,15.74803,11.9999,18.70079,15.71848,18.70079,17.15651,19.68504,15.71848,19.68504,17.15651,-19.68504,13.73278,-19.68504,14.69146,-15.74803,13.73278,-15.74803,14.69146,-15.74803,15.74439,-19.68504,15.74439,-15.74803,16.70307,-19.68504,16.70307,-19.68504,9.996441,-19.68504,10.95512,-15.74803,9.996441,-15.74803,10.95512,18.70079,15.16312,18.70079,16.60114,19.68504,15.16312,19.68504,16.60114,19.68504,13.23593,19.68504,11.79791,18.70079,13.23593,18.70079,11.79791,-19.68504,11.9999,-19.68504,12.95858,-15.74803,11.9999,-15.74803,12.95858,18.70079,15.62172,18.70079,17.05975,19.68504,15.62172,19.68504,17.05975,19.68504,11.98809,19.68504,11.0294,15.74803,11.98809,15.74803,11.0294,18.70079,1.550275E-14,18.70079,21.65354,19.68504,1.614024E-14,19.68504,21.65354,-18.70079,2.325413E-14,-19.68504,2.389162E-14,-18.70079,21.65354,-19.68504,21.65354,-18.70079,15.72602,-19.68504,15.72602,-18.70079,17.16405,-19.68504,17.16405,-18.70079,15.71848,-19.68504,15.71848,-18.70079,17.15651,-19.68504,17.15651,19.68504,14.69146,19.68504,13.73278,15.74803,14.69146,15.74803,13.73278,15.74803,15.15751,15.74803,16.11619,19.68504,15.15751,19.68504,16.11619,-18.70079,15.62172,-19.68504,15.62172,-18.70079,17.05975,-19.68504,17.05975,-18.70079,15.16312,-19.68504,15.16312,-18.70079,16.60114,-19.68504,16.60114,-18.70079,14.80377,-19.68504,14.80377,-18.70079,16.24179,-19.68504,16.24179,-19.68504,13.83471,-19.68504,15.27273,-18.70079,13.83471,-18.70079,15.27273,18.70079,14.80377,18.70079,16.24179,19.68504,14.80377,19.68504,16.24179,-15.74803,16.96633,-19.68504,16.96633,-15.74803,17.92501,-19.68504,17.92501,-19.68504,14.36016,-19.68504,15.79818,-18.70079,14.36016,-18.70079,15.79818,-15.74803,17.18671,-19.68504,17.18671,-15.74803,18.14539,-19.68504,18.14539,-19.68504,14.48576,-19.68504,15.44444,-15.74803,14.48576,-15.74803,15.44444,19.68504,15.44444,19.68504,14.48576,15.74803,15.44444,15.74803,14.48576,15.74803,17.18671,15.74803,18.14539,19.68504,17.18671,19.68504,18.14539,15.74803,15.74439,15.74803,16.70307,19.68504,15.74439,19.68504,16.70307,-15.74803,16.24321,-19.68504,16.24321,-15.74803,17.20189,-19.68504,17.20189,15.74803,16.24321,15.74803,17.20189,19.68504,16.24321,19.68504,17.20189,15.74803,16.96633,15.74803,17.92501,19.68504,16.96633,19.68504,17.92501,-11.81102,21.65354,-11.2775,22.98893,-11.81102,-3.663709E-14,-10.6471,24.28142,-9.923259,25.52398,-9.109899,26.70988,-8.211435,27.83268,-7.874016,-3.663709E-14,-7.874016,21.65354,-7.518331,22.5438,-7.232745,28.88629,-7.098068,23.40546,-6.615506,24.23384,-6.179141,29.86498,-6.073266,25.02444,-5.47429,25.77297,-5.056341,30.76344,-4.82183,26.47537,-4.119427,27.12783,-3.87044,31.5768,-3.370894,27.72681,-2.627875,32.30064,-2.580293,28.26905,-1.751917,28.75161,-1.33539,32.93104,-0.8902597,29.17188,2.842171E-14,29.52756,2.842171E-14,33.46457,0.8902597,29.17188,1.33539,32.93104,1.751917,28.75161,2.580293,28.26905,2.627875,32.30064,3.370894,27.72681,3.87044,31.5768,4.119427,27.12783,4.82183,26.47537,5.056341,30.76344,5.47429,25.77297,6.073266,25.02444,6.179141,29.86498,6.615506,24.23384,7.098068,23.40546,7.232745,28.88629,7.518331,22.5438,7.874016,21.65354,8.211435,27.83268,7.874016,-3.663709E-14,9.109899,26.70988,9.923259,25.52398,10.6471,24.28142,11.2775,22.98893,11.81102,-3.663709E-14,11.81102,21.65354,-15.74803,16.65126,-19.68504,16.65126,-15.74803,17.60994,-19.68504,17.60994,18.70079,15.43626,18.70079,16.87429,19.68504,15.43626,19.68504,16.87429,-15.74803,15.15751,-19.68504,15.15751,-15.74803,16.11619,-19.68504,16.11619,16.73228,14.66828,16.73228,13.23026,15.74803,14.66828,15.74803,13.23026,-15.74803,2.283157E-14,-16.73228,2.325413E-14,-15.74803,21.65354,-16.73228,21.65354,-15.74803,15.71848,-16.73228,15.71848,-15.74803,17.15651,-16.73228,17.15651,-15.74803,15.62172,-16.73228,15.62172,-15.74803,17.05975,-16.73228,17.05975,16.73228,13.23593,16.73228,11.79791,15.74803,13.23593,15.74803,11.79791,16.73228,15.72602,15.74803,15.72602,16.73228,17.16405,15.74803,17.16405,16.73228,15.16312,15.74803,15.16312,16.73228,16.60114,15.74803,16.60114,-16.73228,13.23026,-16.73228,14.66828,-15.74803,13.23026,-15.74803,14.66828,-15.74803,15.16312,-16.73228,15.16312,-15.74803,16.60114,-16.73228,16.60114,-15.74803,15.72602,-16.73228,15.72602,-15.74803,17.16405,-16.73228,17.16405,16.73228,15.79818,16.73228,14.36016,15.74803,15.79818,15.74803,14.36016,16.73228,15.43626,15.74803,15.43626,16.73228,16.87429,15.74803,16.87429,16.73228,14.80377,15.74803,14.80377,16.73228,16.24179,15.74803,16.24179,-15.74803,15.43626,-16.73228,15.43626,-15.74803,16.87429,-16.73228,16.87429,-16.73228,14.36016,-16.73228,15.79818,-15.74803,14.36016,-15.74803,15.79818,-15.74803,14.80377,-16.73228,14.80377,-15.74803,16.24179,-16.73228,16.24179,-16.73228,12.55009,-16.73228,13.98812,-15.74803,12.55009,-15.74803,13.98812,15.74803,1.508019E-14,15.74803,21.65354,16.73228,1.550275E-14,16.73228,21.65354,16.73228,15.27273,16.73228,13.83471,15.74803,15.27273,15.74803,13.83471,16.73228,15.62172,15.74803,15.62172,16.73228,17.05975,15.74803,17.05975,16.73228,13.98812,16.73228,12.55009,15.74803,13.98812,15.74803,12.55009,16.73228,15.71848,15.74803,15.71848,16.73228,17.15651,15.74803,17.15651,-16.73228,13.83471,-16.73228,15.27273,-15.74803,13.83471,-15.74803,15.27273,-15.74803,-5.638651E-15,-15.74803,39.37008,-11.81102,-5.638651E-15,-11.81102,21.65354,-11.2775,22.98893,-10.6471,24.28142,-9.923259,25.52398,-9.109899,26.70988,-8.211435,27.83268,-7.232745,28.88629,-6.179141,29.86498,-5.056341,30.76344,-3.87044,31.5768,-2.627875,32.30064,-1.33539,32.93104,-2.842171E-14,33.46457,15.74803,39.37008,1.33539,32.93104,2.627875,32.30064,3.87044,31.5768,5.056341,30.76344,6.179141,29.86498,7.232745,28.88629,8.211435,27.83268,9.109899,26.70988,9.923259,25.52398,10.6471,24.28142,11.2775,22.98893,11.81102,21.65354,15.74803,-5.638651E-15,11.81102,-5.638651E-15,-11.81102,-1.19784E-14,-15.74803,-1.19784E-14,-11.81102,21.65354,-15.74803,39.37008,-11.2775,22.98893,-10.6471,24.28142,-9.923259,25.52398,-9.109899,26.70988,-8.211435,27.83268,-7.232745,28.88629,-6.179141,29.86498,-5.056341,30.76344,-3.87044,31.5768,-2.627875,32.30064,-1.33539,32.93104,2.842171E-14,33.46457,15.74803,39.37008,1.33539,32.93104,2.627875,32.30064,3.87044,31.5768,5.056341,30.76344,6.179141,29.86498,7.232745,28.88629,8.211435,27.83268,9.109899,26.70988,9.923259,25.52398,10.6471,24.28142,11.2775,22.98893,11.81102,21.65354,15.74803,-1.19784E-14,11.81102,-1.19784E-14,19.68504,-7.874016,19.68504,-11.81102,15.74803,-7.874016,18.70079,-11.81102,16.73228,-11.81102,15.74803,-11.81102,18.70079,11.81102,16.73228,11.81102,15.74803,7.874016,15.74803,11.81102,19.68504,7.874016,19.68504,11.81102 + } + UVIndex: *1104 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,37,36,34,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,49,48,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,101,103,104,105,103,102,103,106,104,104,106,107,107,106,108,109,105,102,110,109,102,111,110,102,112,111,102,106,113,108,108,113,114,114,113,115,113,116,115,115,116,117,117,116,118,116,119,118,118,119,120,119,121,120,120,121,122,122,121,123,121,124,123,123,124,125,124,126,125,125,126,127,127,126,128,126,129,128,128,129,130,130,129,131,129,132,131,131,132,133,132,134,133,133,134,135,135,134,136,134,137,136,136,137,138,138,137,139,137,140,139,139,140,141,141,140,142,140,143,142,142,143,144,144,143,145,143,146,145,145,146,147,146,148,147,148,149,147,149,150,147,150,151,147,147,151,152,153,152,151,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,327,328,329,329,328,330,330,328,331,331,328,332,328,333,332,333,334,332,334,335,332,332,335,336,335,337,336,337,338,336,336,338,339,338,340,339,340,341,339,339,341,342,341,343,342,343,344,342,342,344,345,344,346,345,345,346,347,346,348,347,348,349,347,347,349,350,349,351,350,351,352,350,350,352,353,352,354,353,353,354,355,354,356,355,356,357,355,355,357,358,357,359,358,358,359,360,359,361,360,361,362,360,360,362,363,362,364,363,364,365,363,363,365,366,365,367,366,367,368,366,366,368,369,368,370,369,370,371,369,372,369,371,371,373,372,372,373,374,374,373,375,375,373,376,376,373,377,373,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,432,434,433,435,433,434,436,438,437,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,448,450,449,451,449,450,452,454,453,455,453,454,456,458,457,459,457,458,460,462,461,463,461,462,464,466,465,467,465,466,468,470,469,471,469,470,472,474,473,475,473,474,476,478,477,479,477,478,480,482,481,483,481,482,484,486,485,487,485,486,487,488,485,488,489,485,489,490,485,490,491,485,491,492,485,492,493,485,493,494,485,494,495,485,495,496,485,496,497,485,497,498,485,498,499,485,500,485,499,501,500,499,502,500,501,503,500,502,504,500,503,505,500,504,506,500,505,507,500,506,508,500,507,509,500,508,510,500,509,511,500,510,512,500,511,513,500,512,514,513,512,515,517,516,518,516,517,517,519,518,519,520,518,520,521,518,521,522,518,522,523,518,523,524,518,524,525,518,525,526,518,526,527,518,527,528,518,528,529,518,529,530,518,518,530,531,530,532,531,532,533,531,533,534,531,534,535,531,535,536,531,536,537,531,537,538,531,538,539,531,539,540,531,540,541,531,541,542,531,542,543,531,544,531,543,543,545,544,546,548,547,549,547,548,24,549,548,550,24,548,551,550,548,550,26,24,35,36,552,36,553,552,553,554,552,555,554,553,554,556,552,557,552,556,3,4,48,50,48,4 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *368 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDoorwayRound, Model::RootNode + C: "OO",5683262619559665202,0 + + ;Geometry::, Model::Mesh wallWoodDoorwayRound + C: "OO",5599801079994926775,5683262619559665202 + + ;Material::wood, Model::Mesh wallWoodDoorwayRound + C: "OO",7178,5683262619559665202 + + ;Material::stoneDark, Model::Mesh wallWoodDoorwayRound + C: "OO",7174,5683262619559665202 + + ;Material::woodDark, Model::Mesh wallWoodDoorwayRound + C: "OO",7186,5683262619559665202 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayRound.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayRound.fbx.import new file mode 100644 index 0000000..a541e9e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c0y5j16ony8jy" +path="res://.godot/imported/wallWoodDoorwayRound.fbx-50aa583f9adb7c029b25446837b5ca23.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwayRound.fbx" +dest_files=["res://.godot/imported/wallWoodDoorwayRound.fbx-50aa583f9adb7c029b25446837b5ca23.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquare.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquare.fbx new file mode 100644 index 0000000..026d210 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquare.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 373 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDoorwaySquare.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDoorwaySquare.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5702205805819597266, "Model::wallWoodDoorwaySquare", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5141971355612418920, "Geometry::", "Mesh" { + Vertices: *504 { + a: 4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,8.5,-2.5,5,8.5,2.5,4.75,8.5,-2.5,4.75,8.5,2.5,5,-1.639515E-18,2,5,7.5,2,4,0,2,4,7.5,2,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,7.5,2,5,7.5,-2,4,7.5,2,4,7.5,-2,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4.75,8,-3,5,8,-3,4.75,8.5,-2.5,5,8.5,-2.5,5,-1.639515E-18,-2,4,0,-2,5,7.5,-2,4,7.5,-2,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4.25,8.5,-2.5,4.25,8.5,2.5,4,8.5,-2.5,4,8.5,2.5,4.25,8,3,4,8,3,4.25,8.5,2.5,4,8.5,2.5,4,0,-3,4.25,0,-3,4,8,-3,4.25,8,-3,5,10,4,5,0,4,5,10,5,5,0,5,5,-1.639515E-18,3,5,-1.639515E-18,2,4.75,0,3,4,0,2,4.25,0,3,4,0,3,4,0,4,4,10,4,4,0,5,4,10,5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,-1.639515E-18,-2,5,-1.639515E-18,-3,4,0,-2,4.75,0,-3,4.25,0,-3,4,0,-3,5,8.5,2.5,5,8,3,4.75,8.5,2.5,4.75,8,3,4.25,0,3,4,0,3,4.25,8,3,4,8,3,5,8,3,5,8.5,2.5,5,-1.639515E-18,3,5,-1.639515E-18,2,5,7.5,2,5,7.5,-2,5,8.5,-2.5,5,-1.639515E-18,-2,5,-1.639515E-18,-3,5,8,-3,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,2,4,7.5,2,4,0,3,4,8.5,2.5,4,8,3,4,7.5,-2,4,8.5,-2.5,4,0,-2,4,8,-3,4,0,-3,5,-1.639515E-18,3,4.75,0,3,5,8,3,4.75,8,3,5,-1.639515E-18,-3,5,8,-3,4.75,0,-3,4.75,8,-3,4.25,8,-3,4.25,8.5,-2.5,4,8,-3,4,8.5,-2.5,4.25,0,3,4.25,8,3,4.25,0,4,4.25,10,4,4.25,8.5,2.5,4.25,8.5,-2.5,4.25,10,-4,4.25,8,-3,4.25,0,-3,4.25,0,-4,4.75,0,4,4.75,10,4,4.75,0,3,4.75,8,3,4.75,8.5,2.5,4.75,8.5,-2.5,4.75,10,-4,4.75,8,-3,4.75,0,-4,4.75,0,-3 + } + PolygonVertexIndex: *324 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,34,-33,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,81,-81,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,95,-95,97,96,-95,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,108,109,-108,109,110,-108,110,111,-108,112,107,-112,111,113,-113,113,114,-113,115,112,-115,116,118,-118,119,117,-119,120,119,-119,121,120,-119,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,129,-129,127,129,-132,129,132,-132,131,132,-134,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,33,34,-59,60,58,-35,119,120,-81,82,80,-121,95,96,-15,16,14,-97,148,150,-150,150,151,-150,149,151,-153,152,151,-154,151,154,-154,153,154,-156,155,154,-157,157,156,-155,158,160,-160,160,161,-160,161,162,-160,162,163,-160,159,163,-165,163,165,-165,166,164,-166,165,167,-167 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *972 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *336 { + a: 16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,-9.84252,-19.68504,9.84252,-18.70079,-9.84252,-18.70079,9.84252,-19.68504,-6.454785E-18,-19.68504,29.52756,-15.74803,0,-15.74803,29.52756,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,19.68504,7.874016,19.68504,-7.874016,15.74803,7.874016,15.74803,-7.874016,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-18.70079,13.91943,-19.68504,13.91943,-18.70079,16.70331,-19.68504,16.70331,19.68504,-6.454785E-18,15.74803,0,19.68504,29.52756,15.74803,29.52756,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-16.73228,-9.84252,-16.73228,9.84252,-15.74803,-9.84252,-15.74803,9.84252,16.73228,13.91943,15.74803,13.91943,16.73228,16.70331,15.74803,16.70331,-15.74803,0,-16.73228,0,-15.74803,31.49606,-16.73228,31.49606,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,11.81102,19.68504,7.874016,18.70079,11.81102,15.74803,7.874016,16.73228,11.81102,15.74803,11.81102,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,-7.874016,19.68504,-11.81102,15.74803,-7.874016,18.70079,-11.81102,16.73228,-11.81102,15.74803,-11.81102,19.68504,16.70331,19.68504,13.91943,18.70079,16.70331,18.70079,13.91943,16.73228,0,15.74803,0,16.73228,31.49606,15.74803,31.49606,-11.81102,31.49606,-9.84252,33.46457,-11.81102,-6.454785E-18,-7.874016,-6.454785E-18,-7.874016,29.52756,7.874016,29.52756,9.84252,33.46457,7.874016,-6.454785E-18,11.81102,-6.454785E-18,11.81102,31.49606,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,19.68504,7.105427E-15,15.74803,7.105427E-15,19.68504,39.37008,15.74803,39.37008,7.874016,0,7.874016,29.52756,11.81102,0,9.84252,33.46457,11.81102,31.49606,-7.874016,29.52756,-9.84252,33.46457,-7.874016,0,-11.81102,31.49606,-11.81102,0,19.68504,-6.454785E-18,18.70079,0,19.68504,31.49606,18.70079,31.49606,-19.68504,-6.454785E-18,-19.68504,31.49606,-18.70079,0,-18.70079,31.49606,-16.73228,13.91943,-16.73228,16.70331,-15.74803,13.91943,-15.74803,16.70331,11.81102,0,11.81102,31.49606,15.74803,0,15.74803,39.37008,9.84252,33.46457,-9.84252,33.46457,-15.74803,39.37008,-11.81102,31.49606,-11.81102,0,-15.74803,0,-15.74803,1.662878E-14,-15.74803,39.37008,-11.81102,1.662878E-14,-11.81102,31.49606,-9.84252,33.46457,9.84252,33.46457,15.74803,39.37008,11.81102,31.49606,15.74803,1.662878E-14,11.81102,1.662878E-14 + } + UVIndex: *324 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,34,32,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,81,80,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,95,94,97,96,94,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,108,109,107,109,110,107,110,111,107,112,107,111,111,113,112,113,114,112,115,112,114,116,118,117,119,117,118,120,119,118,121,120,118,122,124,123,125,123,124,126,128,127,129,127,128,130,129,128,127,129,131,129,132,131,131,132,133,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,33,34,58,60,58,34,119,120,80,82,80,120,95,96,14,16,14,96,148,150,149,150,151,149,149,151,152,152,151,153,151,154,153,153,154,155,155,154,156,157,156,154,158,160,159,160,161,159,161,162,159,162,163,159,159,163,164,163,165,164,166,164,165,165,167,166 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *108 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDoorwaySquare, Model::RootNode + C: "OO",5702205805819597266,0 + + ;Geometry::, Model::Mesh wallWoodDoorwaySquare + C: "OO",5141971355612418920,5702205805819597266 + + ;Material::wood, Model::Mesh wallWoodDoorwaySquare + C: "OO",7178,5702205805819597266 + + ;Material::woodDark, Model::Mesh wallWoodDoorwaySquare + C: "OO",7186,5702205805819597266 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquare.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquare.fbx.import new file mode 100644 index 0000000..1a377ff --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquare.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cagjgn2m7yrbe" +path="res://.godot/imported/wallWoodDoorwaySquare.fbx-71712784eec631b5d619768966b1bc1a.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquare.fbx" +dest_files=["res://.godot/imported/wallWoodDoorwaySquare.fbx-71712784eec631b5d619768966b1bc1a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWide.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWide.fbx new file mode 100644 index 0000000..771fc41 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWide.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 429 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDoorwaySquareWide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDoorwaySquareWide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5182582568200246340, "Model::wallWoodDoorwaySquareWide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5011213932702601383, "Geometry::", "Mesh" { + Vertices: *288 { + a: 5,8.5,-3,5,8.5,5,4.75,8.5,-3,4.75,8.5,5,4.25,8.5,-3,4.25,8.5,5,4,8.5,-3,4,8.5,5,4,0,-3,4.25,0,-3,4,8.5,-3,4.25,8.5,-3,5,-1.639515E-18,-3,5,8.5,-3,4.75,0,-3,4.75,8.5,-3,5,7.5,5,5,8.5,5,5,7.5,-2,5,8.5,-3,5,-1.639515E-18,-3,5,-1.639515E-18,-2,5,7.5,5,5,7.5,-2,4,7.5,5,4,7.5,-2,4,0,-3,4,8.5,-3,4,0,-2,4,7.5,-2,4,8.5,5,4,7.5,5,5,-1.639515E-18,-2,4,0,-2,5,7.5,-2,4,7.5,-2,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,-1.639515E-18,-2,5,-1.639515E-18,-3,4,0,-2,4.75,0,-3,4.25,0,-3,4,0,-3,4.75,10,5,4.25,10,5,4.75,8.5,5,4.75,10,5,4.75,8.5,-3,4.75,10,-4,4.75,0,-4,4.75,0,-3,4.25,10,5,4.75,10,5,4.25,8.5,5,4.75,8.5,5,4,8.5,5,5,8.5,5,4,7.5,5,5,7.5,5,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,8.5,-3,4.25,10,5,4.25,8.5,5 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,17,18,-20,20,19,-19,18,21,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,27,-30,31,30,-30,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,60,-59,62,64,-64,65,63,-65,66,65,-65,67,65,-67,68,70,-70,71,69,-71,64,71,-71,72,64,-71,73,72,-71,72,66,-65,59,60,-75,75,74,-61,76,78,-78,77,78,-80,80,79,-79,78,81,-81,82,84,-84,85,83,-85,84,86,-86,85,86,-88,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,91,-94,95,94,-94 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: -19.68504,-11.81102,-19.68504,19.68504,-18.70079,-11.81102,-18.70079,19.68504,-16.73228,-11.81102,-16.73228,19.68504,-15.74803,-11.81102,-15.74803,19.68504,-15.74803,0,-16.73228,0,-15.74803,33.46457,-16.73228,33.46457,-19.68504,-6.454785E-18,-19.68504,33.46457,-18.70079,0,-18.70079,33.46457,-19.68504,29.52756,-19.68504,33.46457,7.874016,29.52756,11.81102,33.46457,11.81102,-6.454785E-18,7.874016,-6.454785E-18,19.68504,19.68504,19.68504,-7.874016,15.74803,19.68504,15.74803,-7.874016,-11.81102,0,-11.81102,33.46457,-7.874016,0,-7.874016,29.52756,19.68504,33.46457,19.68504,29.52756,19.68504,-6.454785E-18,15.74803,0,19.68504,29.52756,15.74803,29.52756,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,19.68504,-7.874016,19.68504,-11.81102,15.74803,-7.874016,18.70079,-11.81102,16.73228,-11.81102,15.74803,-11.81102,-18.70079,19.68504,-16.73228,19.68504,-19.68504,33.46457,-19.68504,39.37008,11.81102,33.46457,15.74803,39.37008,15.74803,-3.133137E-16,11.81102,-3.133137E-16,16.73228,39.37008,18.70079,39.37008,16.73228,33.46457,18.70079,33.46457,15.74803,33.46457,19.68504,33.46457,15.74803,29.52756,19.68504,29.52756,-15.74803,-2.803333E-16,-15.74803,39.37008,-11.81102,-2.803333E-16,-11.81102,33.46457,19.68504,39.37008,19.68504,33.46457 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,17,18,19,20,19,18,18,21,20,22,24,23,25,23,24,26,28,27,29,27,28,30,27,29,31,30,29,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,60,58,62,64,63,65,63,64,66,65,64,67,65,66,68,70,69,71,69,70,64,71,70,72,64,70,73,72,70,72,66,64,59,60,74,75,74,60,76,78,77,77,78,79,80,79,78,78,81,80,82,84,83,85,83,84,84,86,85,85,86,87,86,88,87,89,87,88,90,92,91,93,91,92,94,91,93,95,94,93 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDoorwaySquareWide, Model::RootNode + C: "OO",5182582568200246340,0 + + ;Geometry::, Model::Mesh wallWoodDoorwaySquareWide + C: "OO",5011213932702601383,5182582568200246340 + + ;Material::stoneDark, Model::Mesh wallWoodDoorwaySquareWide + C: "OO",7174,5182582568200246340 + + ;Material::wood, Model::Mesh wallWoodDoorwaySquareWide + C: "OO",7178,5182582568200246340 + + ;Material::woodDark, Model::Mesh wallWoodDoorwaySquareWide + C: "OO",7186,5182582568200246340 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWide.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWide.fbx.import new file mode 100644 index 0000000..1d003ae --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dpy3dkd6osyo6" +path="res://.godot/imported/wallWoodDoorwaySquareWide.fbx-d95d12c2400f993b53adcc536dcda35a.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWide.fbx" +dest_files=["res://.godot/imported/wallWoodDoorwaySquareWide.fbx-d95d12c2400f993b53adcc536dcda35a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWideCurved.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWideCurved.fbx new file mode 100644 index 0000000..b23128a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWideCurved.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 470 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodDoorwaySquareWideCurved.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodDoorwaySquareWideCurved.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4702058406432982691, "Model::wallWoodDoorwaySquareWideCurved", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5438054965159617528, "Geometry::", "Mesh" { + Vertices: *936 { + a: 5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4.75,10,5,4.25,10,5,5,-1.639515E-18,-2,5,-1.639515E-18,-3,4,0,-2,4.75,0,-3,4.25,0,-3,4,0,-3,4.75,8.5,5,4.75,10,5,4.75,8.5,-1,4.75,8.48289,-1.261052,4.75,8.431851,-1.517638,4.75,10,-4,4.75,8.347758,-1.765367,4.75,8.232051,-2,4.75,8.086706,-2.217523,4.75,7.914214,-2.414214,4.75,7.717523,-2.586707,4.75,7.5,-2.732051,4.75,7.265367,-2.847759,4.75,7.017638,-2.931851,4.75,6.761053,-2.98289,4.75,0,-4,4.75,6.5,-3,4.75,0,-3,4.25,0,-4,4.25,10,-4,4.25,0,-3,4.25,6.5,-3,4.25,6.761053,-2.98289,4.25,7.017638,-2.931851,4.25,7.265367,-2.847759,4.25,7.5,-2.732051,4.25,7.717523,-2.586707,4.25,7.914214,-2.414214,4.25,8.086706,-2.217523,4.25,8.232051,-2,4.25,8.347758,-1.765367,4.25,8.431851,-1.517638,4.25,10,5,4.25,8.48289,-1.261052,4.25,8.5,-1,4.25,8.5,5,4.25,10,5,4.75,10,5,4.25,8.5,5,4.75,8.5,5,4,8.5,5,5,8.5,5,4,7.5,5,5,7.5,5,5,-1.639515E-18,-2,4,0,-2,5,6.5,-2,4,6.5,-2,4,0,-3,4.25,0,-3,4,6.5,-3,4.25,6.5,-3,5,-1.639515E-18,-3,5,6.5,-3,4.75,0,-3,4.75,6.5,-3,5,8.5,-1,5,8.5,5,4.75,8.5,-1,4.75,8.5,5,5,7.5,5,5,7.5,-1,4,7.5,5,4,7.5,-1,4.25,8.5,-1,4.25,8.5,5,4,8.5,-1,4,8.5,5,5,7.108761,-1.793353,4,7.108761,-1.793353,5,7.207107,-1.707107,4,7.207107,-1.707107,5,7.366025,-1.5,5,7.293353,-1.608761,4,7.366025,-1.5,4,7.293353,-1.608761,4,7.265367,-2.847759,4.25,7.265367,-2.847759,4,7.5,-2.732051,4.25,7.5,-2.732051,4.25,8.48289,-1.261052,4.25,8.5,-1,4,8.48289,-1.261052,4,8.5,-1,5,8.232051,-2,5,8.347758,-1.765367,4.75,8.232051,-2,4.75,8.347758,-1.765367,4.75,7.717523,-2.586707,5,7.717523,-2.586707,4.75,7.914214,-2.414214,5,7.914214,-2.414214,5,6.882684,-1.92388,4,6.882684,-1.92388,5,7,-1.866025,4,7,-1.866025,4,0,-3,4,6.5,-3,4,0,-2,4,6.761053,-2.98289,4,7.017638,-2.931851,4,7.265367,-2.847759,4,7.5,-2.732051,4,7.717523,-2.586707,4,7.914214,-2.414214,4,8.086706,-2.217523,4,8.232051,-2,4,6.5,-2,4,6.630526,-1.991445,4,8.347758,-1.765367,4,6.758819,-1.965926,4,6.882684,-1.92388,4,7,-1.866025,4,7.108761,-1.793353,4,7.207107,-1.707107,4,8.431851,-1.517638,4,7.293353,-1.608761,4,7.366025,-1.5,4,8.48289,-1.261052,4,7.42388,-1.382683,4,7.465925,-1.258819,4,8.5,-1,4,7.491445,-1.130526,4,7.5,-1,4,7.5,5,4,8.5,5,4,7.717523,-2.586707,4.25,7.717523,-2.586707,4,7.914214,-2.414214,4.25,7.914214,-2.414214,4,7.5,-2.732051,4.25,7.5,-2.732051,4,7.717523,-2.586707,4.25,7.717523,-2.586707,4.75,7.265367,-2.847759,5,7.265367,-2.847759,4.75,7.5,-2.732051,5,7.5,-2.732051,4.75,6.761053,-2.98289,5,6.761053,-2.98289,4.75,7.017638,-2.931851,5,7.017638,-2.931851,5,7.42388,-1.382683,5,7.366025,-1.5,4,7.42388,-1.382683,4,7.366025,-1.5,5,6.630526,-1.991445,4,6.630526,-1.991445,5,6.758819,-1.965926,4,6.758819,-1.965926,4.75,6.5,-3,5,6.5,-3,4.75,6.761053,-2.98289,5,6.761053,-2.98289,5,8.48289,-1.261052,5,8.5,-1,4.75,8.48289,-1.261052,4.75,8.5,-1,4,6.5,-3,4.25,6.5,-3,4,6.761053,-2.98289,4.25,6.761053,-2.98289,4.75,7.5,-2.732051,5,7.5,-2.732051,4.75,7.717523,-2.586707,5,7.717523,-2.586707,5,7.465925,-1.258819,5,7.42388,-1.382683,4,7.465925,-1.258819,4,7.42388,-1.382683,4.25,8.347758,-1.765367,4.25,8.431851,-1.517638,4,8.347758,-1.765367,4,8.431851,-1.517638,5,7.914214,-2.414214,5,8.086706,-2.217523,4.75,7.914214,-2.414214,4.75,8.086706,-2.217523,5,8.086706,-2.217523,5,8.232051,-2,4.75,8.086706,-2.217523,4.75,8.232051,-2,5,7,-1.866025,4,7,-1.866025,5,7.108761,-1.793353,4,7.108761,-1.793353,4,6.761053,-2.98289,4.25,6.761053,-2.98289,4,7.017638,-2.931851,4.25,7.017638,-2.931851,5,8.431851,-1.517638,5,8.48289,-1.261052,4.75,8.431851,-1.517638,4.75,8.48289,-1.261052,4.75,7.017638,-2.931851,5,7.017638,-2.931851,4.75,7.265367,-2.847759,5,7.265367,-2.847759,4.25,8.431851,-1.517638,4.25,8.48289,-1.261052,4,8.431851,-1.517638,4,8.48289,-1.261052,4,7.017638,-2.931851,4.25,7.017638,-2.931851,4,7.265367,-2.847759,4.25,7.265367,-2.847759,4.25,8.086706,-2.217523,4.25,8.232051,-2,4,8.086706,-2.217523,4,8.232051,-2,5,7.491445,-1.130526,5,7.465925,-1.258819,4,7.491445,-1.130526,4,7.465925,-1.258819,5,6.5,-2,4,6.5,-2,5,6.630526,-1.991445,4,6.630526,-1.991445,5,8.347758,-1.765367,5,8.431851,-1.517638,4.75,8.347758,-1.765367,4.75,8.431851,-1.517638,4.25,8.232051,-2,4.25,8.347758,-1.765367,4,8.232051,-2,4,8.347758,-1.765367,5,6.758819,-1.965926,4,6.758819,-1.965926,5,6.882684,-1.92388,4,6.882684,-1.92388,5,7.293353,-1.608761,5,7.207107,-1.707107,4,7.293353,-1.608761,4,7.207107,-1.707107,4.25,7.914214,-2.414214,4.25,8.086706,-2.217523,4,7.914214,-2.414214,4,8.086706,-2.217523,5,7.5,5,5,8.5,5,5,7.5,-1,5,8.5,-1,5,7.491445,-1.130526,5,7.465925,-1.258819,5,8.48289,-1.261052,5,7.42388,-1.382683,5,7.366025,-1.5,5,8.431851,-1.517638,5,7.293353,-1.608761,5,7.207107,-1.707107,5,8.347758,-1.765367,5,7.108761,-1.793353,5,7,-1.866025,5,6.882684,-1.92388,5,6.758819,-1.965926,5,6.630526,-1.991445,5,8.232051,-2,5,6.5,-2,5,-1.639515E-18,-2,5,8.086706,-2.217523,5,7.914214,-2.414214,5,7.717523,-2.586707,5,7.5,-2.732051,5,7.265367,-2.847759,5,7.017638,-2.931851,5,6.761053,-2.98289,5,-1.639515E-18,-3,5,6.5,-3,5,7.5,-1,5,7.491445,-1.130526,4,7.5,-1,4,7.491445,-1.130526 + } + PolygonVertexIndex: *612 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,26,-25,28,30,-30,31,29,-31,25,26,-33,33,32,-27,34,36,-36,37,35,-37,2,37,-37,38,2,-37,39,38,-37,38,4,-3,40,42,-42,42,43,-42,43,44,-42,41,44,-46,44,46,-46,46,47,-46,47,48,-46,48,49,-46,49,50,-46,50,51,-46,51,52,-46,52,53,-46,53,54,-46,55,45,-55,56,55,-55,56,57,-56,58,60,-60,61,59,-61,62,59,-62,63,59,-63,64,59,-64,65,59,-65,66,59,-66,67,59,-67,68,59,-68,69,59,-69,70,59,-70,71,59,-71,72,59,-72,73,72,-72,74,72,-74,75,72,-75,76,78,-78,79,77,-79,78,80,-80,79,80,-82,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,139,-139,141,140,-139,142,141,-139,143,142,-139,144,143,-139,145,144,-139,146,145,-139,147,146,-139,148,146,-148,149,146,-149,150,149,-149,151,149,-151,152,149,-152,153,149,-153,154,149,-154,155,149,-155,156,155,-155,157,155,-157,158,155,-158,159,158,-158,160,158,-160,161,158,-161,162,161,-161,163,161,-163,164,161,-164,165,161,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,279,280,-282,280,282,-282,282,283,-282,281,283,-285,283,285,-285,285,286,-285,284,286,-288,286,288,-288,288,289,-288,287,289,-291,289,291,-291,291,292,-291,292,293,-291,293,294,-291,294,295,-291,290,295,-297,297,296,-296,297,298,-297,296,298,-300,299,298,-301,300,298,-302,301,298,-303,302,298,-304,303,298,-305,304,298,-306,298,306,-306,307,305,-307,308,310,-310,311,309,-311 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1836 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.03271909,0.9994646,0,0,1,0,-0.03271909,0.9994646,0,0,1,0,-0.03271909,0.9994646,0,0,-1,0,0.03271909,-0.9994646,0,0,-1,0,0.03271909,-0.9994646,0,0,-1,0,0.03271909,-0.9994646,0,0,-1,0,0,-1,0,0.03271909,-0.9994646,0,0.03271909,-0.9994646,0,0.03271909,-0.9994646,0,0,-1,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,1,0,0,1,0,0,1,0,0,0.9994646,-0.03271909,0,-1,0,0,-1,0,0,-0.9994646,0.03271909,0,-0.9994646,0.03271909,0,-0.9994646,0.03271909,0,-1,0,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,1,0,0,1,0,0,1,0,0,0.9994646,-0.03271909,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.8660254,0.5,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9914449,-0.1305262,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.8660254,-0.5,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,-0.3826834,0.9238795,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,-0.5,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.6087614,-0.7933533,0,0.7071068,-0.7071068,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.3826834,-0.9238795,0,0.5,-0.8660254,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.9238795,0.3826834,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9994646,-0.03271909,0,0.9914449,-0.1305262,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.03271909,-0.9994646,0,0.1305262,-0.9914449,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,0.5,-0.8660254,0,0.6087614,-0.7933533,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9659258,0.258819,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9238795,-0.3826834,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.1305262,-0.9914449,0,0.258819,-0.9659258,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9659258,-0.258819,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9914449,-0.1305262,0,0.9659258,-0.258819,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.258819,-0.9659258,0,0.3826834,-0.9238795,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.7933533,-0.6087614,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9914449,0.1305262,0,-0.03271909,0.9994646,0,-0.1305262,0.9914449,0,-0.03271909,0.9994646,0,-0.1305262,0.9914449,0,-0.03271909,0.9994646,0,-0.1305262,0.9914449,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9238795,-0.3826834,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.8660254,-0.5,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7933533,0.6087614,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7933533,-0.6087614,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.9994646,0.03271909,0,-0.9994646,0.03271909,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9994646,0.03271909 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *624 { + a: 19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-18.70079,19.68504,-16.73228,19.68504,19.68504,-7.874016,19.68504,-11.81102,15.74803,-7.874016,18.70079,-11.81102,16.73228,-11.81102,15.74803,-11.81102,-19.68504,33.46457,-19.68504,39.37008,3.937008,33.46457,4.964773,33.39721,5.974953,33.19627,15.74803,39.37008,6.950263,32.86519,7.874016,32.40965,8.730405,31.83743,9.504778,31.15832,10.18388,30.38395,10.75611,29.52756,11.21165,28.60381,11.54272,27.6285,11.74366,26.61832,15.74803,-2.358037E-12,11.81102,25.59055,11.81102,-2.358037E-12,-15.74803,-2.173E-15,-15.74803,39.37008,-11.81102,-2.173E-15,-11.81102,25.59055,-11.74366,26.61832,-11.54272,27.6285,-11.21165,28.60381,-10.75611,29.52756,-10.18388,30.38395,-9.504778,31.15832,-8.730405,31.83743,-7.874016,32.40965,-6.950263,32.86519,-5.974953,33.19627,19.68504,39.37008,-4.964773,33.39721,-3.937008,33.46457,19.68504,33.46457,16.73228,39.37008,18.70079,39.37008,16.73228,33.46457,18.70079,33.46457,15.74803,33.46457,19.68504,33.46457,15.74803,29.52756,19.68504,29.52756,19.68504,-6.454785E-18,15.74803,0,19.68504,25.59055,15.74803,25.59055,-15.74803,0,-16.73228,0,-15.74803,25.59055,-16.73228,25.59055,-19.68504,-6.454785E-18,-19.68504,25.59055,-18.70079,0,-18.70079,25.59055,-19.68504,-3.937008,-19.68504,19.68504,-18.70079,-3.937008,-18.70079,19.68504,19.68504,19.68504,19.68504,-3.937008,15.74803,19.68504,15.74803,-3.937008,-16.73228,-3.937008,-16.73228,19.68504,-15.74803,-3.937008,-15.74803,19.68504,19.68504,16.38665,15.74803,16.38665,19.68504,16.90164,15.74803,16.90164,19.68504,11.20134,19.68504,10.68635,15.74803,11.20134,15.74803,10.68635,-15.74803,20.69519,-16.73228,20.69519,-15.74803,21.72516,-16.73228,21.72516,-16.73228,-2.769862,-16.73228,-1.739891,-15.74803,-2.769862,-15.74803,-1.739891,-19.68504,7.272431,-19.68504,8.302402,-18.70079,7.272431,-18.70079,8.302402,-18.70079,16.12916,-19.68504,16.12916,-18.70079,17.15913,-19.68504,17.15913,19.68504,20.95268,15.74803,20.95268,19.68504,21.46767,15.74803,21.46767,-11.81102,-2.871451E-15,-11.81102,25.59055,-7.874016,-2.871451E-15,-11.74366,26.61832,-11.54272,27.6285,-11.21165,28.60381,-10.75611,29.52756,-10.18388,30.38395,-9.504778,31.15832,-8.730405,31.83743,-7.874016,32.40965,-7.874016,25.59055,-7.840334,26.10443,-6.950263,32.86519,-7.739865,26.60952,-7.574329,27.09718,-7.346557,27.55906,-7.060446,27.98725,-6.720893,28.37444,-5.974953,33.19627,-6.333706,28.71399,-5.905512,29.0001,-4.964773,33.39721,-5.443635,29.22787,-4.95598,29.39341,-3.937008,33.46457,-4.450891,29.49388,-3.937008,29.52756,19.68504,29.52756,19.68504,33.46457,-15.74803,16.12916,-16.73228,16.12916,-15.74803,17.15913,-16.73228,17.15913,-15.74803,18.5755,-16.73228,18.5755,-15.74803,19.60547,-16.73228,19.60547,-18.70079,20.69519,-19.68504,20.69519,-18.70079,21.72516,-19.68504,21.72516,-18.70079,23.81578,-19.68504,23.81578,-18.70079,24.84575,-19.68504,24.84575,19.68504,8.044909,19.68504,7.529924,15.74803,8.044909,15.74803,7.529924,19.68504,24.07327,15.74803,24.07327,19.68504,24.58826,15.74803,24.58826,-18.70079,24.76328,-19.68504,24.76328,-18.70079,25.79325,-19.68504,25.79325,-19.68504,-2.769862,-19.68504,-1.739891,-18.70079,-2.769862,-18.70079,-1.739891,-15.74803,24.76328,-16.73228,24.76328,-15.74803,25.79325,-16.73228,25.79325,-18.70079,18.5755,-19.68504,18.5755,-18.70079,19.60547,-19.68504,19.60547,19.68504,4.755234,19.68504,4.240249,15.74803,4.755234,15.74803,4.240249,-16.73228,3.982756,-16.73228,5.012727,-15.74803,3.982756,-15.74803,5.012727,-19.68504,13.39804,-19.68504,14.42801,-18.70079,13.39804,-18.70079,14.42801,-19.68504,10.42886,-19.68504,11.45883,-18.70079,10.42886,-18.70079,11.45883,19.68504,18.83299,15.74803,18.83299,19.68504,19.34797,15.74803,19.34797,-15.74803,23.81578,-16.73228,23.81578,-15.74803,24.84575,-16.73228,24.84575,-19.68504,0.6161242,-19.68504,1.646095,-18.70079,0.6161242,-18.70079,1.646095,-18.70079,22.45197,-19.68504,22.45197,-18.70079,23.48194,-19.68504,23.48194,-16.73228,0.6161242,-16.73228,1.646095,-15.74803,0.6161242,-15.74803,1.646095,-15.74803,22.45197,-16.73228,22.45197,-15.74803,23.48194,-16.73228,23.48194,-16.73228,10.42886,-16.73228,11.45883,-15.74803,10.42886,-15.74803,11.45883,19.68504,1.388602,19.68504,0.8736169,15.74803,1.388602,15.74803,0.8736169,19.68504,25.02077,15.74803,25.02077,19.68504,25.53576,15.74803,25.53576,-19.68504,3.982756,-19.68504,5.012727,-18.70079,3.982756,-18.70079,5.012727,-16.73228,7.272431,-16.73228,8.302402,-15.74803,7.272431,-15.74803,8.302402,19.68504,22.70946,15.74803,22.70946,19.68504,23.22445,15.74803,23.22445,19.68504,14.17052,19.68504,13.65553,15.74803,14.17052,15.74803,13.65553,-16.73228,13.39804,-16.73228,14.42801,-15.74803,13.39804,-15.74803,14.42801,-19.68504,29.52756,-19.68504,33.46457,3.937008,29.52756,3.937008,33.46457,4.450891,29.49388,4.95598,29.39341,4.964773,33.39721,5.443635,29.22787,5.905512,29.0001,5.974953,33.19627,6.333706,28.71399,6.720893,28.37444,6.950263,32.86519,7.060446,27.98725,7.346557,27.55906,7.574329,27.09718,7.739865,26.60952,7.840334,26.10443,7.874016,32.40965,7.874016,25.59055,7.874016,-6.454785E-18,8.730405,31.83743,9.504778,31.15832,10.18388,30.38395,10.75611,29.52756,11.21165,28.60381,11.54272,27.6285,11.74366,26.61832,11.81102,-6.454785E-18,11.81102,25.59055,19.68504,-1.997384,19.68504,-2.512369,15.74803,-1.997384,15.74803,-2.512369 + } + UVIndex: *612 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,27,26,24,28,30,29,31,29,30,25,26,32,33,32,26,34,36,35,37,35,36,2,37,36,38,2,36,39,38,36,38,4,2,40,42,41,42,43,41,43,44,41,41,44,45,44,46,45,46,47,45,47,48,45,48,49,45,49,50,45,50,51,45,51,52,45,52,53,45,53,54,45,55,45,54,56,55,54,56,57,55,58,60,59,61,59,60,62,59,61,63,59,62,64,59,63,65,59,64,66,59,65,67,59,66,68,59,67,69,59,68,70,59,69,71,59,70,72,59,71,73,72,71,74,72,73,75,72,74,76,78,77,79,77,78,78,80,79,79,80,81,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,139,138,141,140,138,142,141,138,143,142,138,144,143,138,145,144,138,146,145,138,147,146,138,148,146,147,149,146,148,150,149,148,151,149,150,152,149,151,153,149,152,154,149,153,155,149,154,156,155,154,157,155,156,158,155,157,159,158,157,160,158,159,161,158,160,162,161,160,163,161,162,164,161,163,165,161,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,279,280,281,280,282,281,282,283,281,281,283,284,283,285,284,285,286,284,284,286,287,286,288,287,288,289,287,287,289,290,289,291,290,291,292,290,292,293,290,293,294,290,294,295,290,290,295,296,297,296,295,297,298,296,296,298,299,299,298,300,300,298,301,301,298,302,302,298,303,303,298,304,304,298,305,298,306,305,307,305,306,308,310,309,311,309,310 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *204 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodDoorwaySquareWideCurved, Model::RootNode + C: "OO",4702058406432982691,0 + + ;Geometry::, Model::Mesh wallWoodDoorwaySquareWideCurved + C: "OO",5438054965159617528,4702058406432982691 + + ;Material::wood, Model::Mesh wallWoodDoorwaySquareWideCurved + C: "OO",7178,4702058406432982691 + + ;Material::woodDark, Model::Mesh wallWoodDoorwaySquareWideCurved + C: "OO",7186,4702058406432982691 + + ;Material::stoneDark, Model::Mesh wallWoodDoorwaySquareWideCurved + C: "OO",7174,4702058406432982691 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWideCurved.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWideCurved.fbx.import new file mode 100644 index 0000000..4215014 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWideCurved.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://brimpxbsofx7h" +path="res://.godot/imported/wallWoodDoorwaySquareWideCurved.fbx-2b41ba688f0d773bcf4c2c98cf3ea379.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodDoorwaySquareWideCurved.fbx" +dest_files=["res://.godot/imported/wallWoodDoorwaySquareWideCurved.fbx-2b41ba688f0d773bcf4c2c98cf3ea379.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodHalf.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodHalf.fbx new file mode 100644 index 0000000..5ac7b0e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodHalf.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 518 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodHalf.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodHalf.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5280054491140067315, "Model::wallWoodHalf", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5357251967940749083, "Geometry::", "Mesh" { + Vertices: *216 { + a: 4.25,0,-4,4,0,-4,4.25,5,-4,4,5,-4,4,0,-5,4,5,-5,4,0,-4,4,5,-4,5,5,-5,5,5,-4,4,5,-5,4.75,5,-4,4.25,5,-4,4,5,-4,4,0,-5,5,0,-5,4,5,-5,5,5,-5,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4.75,0,4,5,0,4,4.75,5,4,5,5,4,5,5,-5,5,0,-5,5,5,-4,5,0,-4,4,0,4,4,5,4,4,0,5,4,5,5,5,0,5,4,0,5,5,5,5,4,5,5,5,5,4,5,0,4,5,5,5,5,0,5,4,0,4,4.25,0,4,4,5,4,4.25,5,4,5,0,-4,4.75,0,-4,5,5,-4,4.75,5,-4,5,5,4,5,5,5,4.75,5,4,4,5,5,4.25,5,4,4,5,4,4.75,5,-4,4.75,0,-4,4.75,5,4,4.75,0,4,4.25,0,-4,4.25,5,-4,4.25,0,4,4.25,5,4 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,21,-21,23,21,-23,24,26,-26,27,25,-27,28,27,-27,29,28,-27,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,27,28,-21,22,20,-29,11,12,-61,62,60,-13 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 16.73228,0,15.74803,0,16.73228,19.68504,15.74803,19.68504,-19.68504,0,-19.68504,19.68504,-15.74803,0,-15.74803,19.68504,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-15.74803,0,-19.68504,0,-15.74803,19.68504,-19.68504,19.68504,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-18.70079,0,-19.68504,0,-18.70079,19.68504,-19.68504,19.68504,19.68504,19.68504,19.68504,0,15.74803,19.68504,15.74803,0,15.74803,0,15.74803,19.68504,19.68504,0,19.68504,19.68504,19.68504,-2.842171E-14,15.74803,-2.842171E-14,19.68504,19.68504,15.74803,19.68504,-15.74803,19.68504,-15.74803,0,-19.68504,19.68504,-19.68504,0,-15.74803,0,-16.73228,0,-15.74803,19.68504,-16.73228,19.68504,19.68504,-6.565746E-31,18.70079,-6.565746E-31,19.68504,19.68504,18.70079,19.68504,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,15.74803,19.68504,15.74803,0,-15.74803,19.68504,-15.74803,0,-15.74803,0,-15.74803,19.68504,15.74803,0,15.74803,19.68504 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,16,15,17,15,16,18,20,19,21,19,20,22,21,20,23,21,22,24,26,25,27,25,26,28,27,26,29,28,26,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,27,28,20,22,20,28,11,12,60,62,60,12 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodHalf, Model::RootNode + C: "OO",5280054491140067315,0 + + ;Geometry::, Model::Mesh wallWoodHalf + C: "OO",5357251967940749083,5280054491140067315 + + ;Material::wood, Model::Mesh wallWoodHalf + C: "OO",7178,5280054491140067315 + + ;Material::woodDark, Model::Mesh wallWoodHalf + C: "OO",7186,5280054491140067315 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodHalf.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodHalf.fbx.import new file mode 100644 index 0000000..c38d1b1 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodHalf.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dkfeou4hcc13o" +path="res://.godot/imported/wallWoodHalf.fbx-a177e3def9c258faad1ae72c5ed36a11.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodHalf.fbx" +dest_files=["res://.godot/imported/wallWoodHalf.fbx-a177e3def9c258faad1ae72c5ed36a11.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodRounded.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodRounded.fbx new file mode 100644 index 0000000..b7bdb36 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodRounded.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 555 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodRounded.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodRounded.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5011052097149514938, "Model::wallWoodRounded", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5328207243716886283, "Geometry::", "Mesh" { + Vertices: *684 { + a: 4.588148,10,1.22939,4.588148,0,1.22939,4.388428,10,1.817746,4.388428,0,1.817746,0.5547363,0,4.21364,1.099981,0,4.105185,0.5547363,10,4.21364,1.099981,10,4.105185,1.626405,0,3.926488,2.125,0,3.680608,1.626405,10,3.926488,2.125,10,3.680608,4.25,0,-4,4.25,10,-4,4.25,0,-1.443823E-14,4.25,10,-1.443823E-14,3.371752,0,2.587236,3.371752,10,2.587236,3.005204,0,3.005204,3.005204,10,3.005204,1.099981,0,4.105185,1.626405,0,3.926488,1.099981,10,4.105185,1.626405,10,3.926488,3.358757,0,3.358757,2.891617,0,3.768428,3.358757,10,3.358757,2.891617,10,3.768428,-4,0,4.25,-7.219114E-14,0,4.25,-4,10,4.25,-7.219114E-14,10,4.25,4.25,0,-1.443823E-14,4.25,10,-1.443823E-14,4.21364,0,0.5547363,4.21364,10,0.5547363,-7.219114E-14,0,4.25,0.5547363,0,4.21364,-7.219114E-14,10,4.25,0.5547363,10,4.21364,0.6199994,0,4.709363,-1.443823E-14,0,4.75,0.6199994,10,4.709363,-1.443823E-14,10,4.75,4.75,10,-4,4.75,10,-1.443823E-14,4.25,10,-4,4.709363,10,0.6199994,4.588148,10,1.22939,4.388428,10,1.817746,4.25,10,-1.443823E-14,4.113621,10,2.375,4.21364,10,0.5547363,4.105185,10,1.099981,3.768428,10,2.891617,3.926488,10,1.626405,3.680608,10,2.125,3.358757,10,3.358757,3.371752,10,2.587236,3.005204,10,3.005204,2.891617,10,3.768428,2.587236,10,3.371752,2.375,10,4.113621,2.125,10,3.680608,1.817746,10,4.388428,1.626405,10,3.926488,1.22939,10,4.588148,1.099981,10,4.105185,0.6199994,10,4.709363,0.5547363,10,4.21364,-1.443823E-14,10,4.75,-7.219114E-14,10,4.25,-4,10,4.75,-4,10,4.25,2.587236,0,3.371752,3.005204,0,3.005204,2.587236,10,3.371752,3.005204,10,3.005204,4.75,10,-1.443823E-14,4.75,0,-1.443823E-14,4.709363,10,0.6199994,4.709363,0,0.6199994,4.105185,0,1.099981,4.105185,10,1.099981,3.926488,0,1.626405,3.926488,10,1.626405,4.21364,0,0.5547363,4.21364,10,0.5547363,4.105185,0,1.099981,4.105185,10,1.099981,4.709363,10,0.6199994,4.709363,0,0.6199994,4.588148,10,1.22939,4.588148,0,1.22939,-1.443823E-14,0,4.75,-4,0,4.75,-1.443823E-14,10,4.75,-4,10,4.75,1.22939,0,4.588148,0.6199994,0,4.709363,1.22939,10,4.588148,0.6199994,10,4.709363,4.113621,10,2.375,4.113621,0,2.375,3.768428,10,2.891617,3.768428,0,2.891617,4.75,10,-4,4.75,0,-4,4.75,10,-1.443823E-14,4.75,0,-1.443823E-14,3.926488,0,1.626405,3.926488,10,1.626405,3.680608,0,2.125,3.680608,10,2.125,2.375,0,4.113621,1.817746,0,4.388428,2.375,10,4.113621,1.817746,10,4.388428,3.768428,10,2.891617,3.768428,0,2.891617,3.358757,10,3.358757,3.358757,0,3.358757,1.817746,0,4.388428,1.22939,0,4.588148,1.817746,10,4.388428,1.22939,10,4.588148,2.125,0,3.680608,2.587236,0,3.371752,2.125,10,3.680608,2.587236,10,3.371752,3.680608,0,2.125,3.680608,10,2.125,3.371752,0,2.587236,3.371752,10,2.587236,-4,0,4.25,-4,0,4.75,-7.219114E-14,0,4.25,-1.443823E-14,0,4.75,0.5547363,0,4.21364,0.6199994,0,4.709363,1.099981,0,4.105185,1.22939,0,4.588148,1.626405,0,3.926488,1.817746,0,4.388428,2.125,0,3.680608,2.375,0,4.113621,2.587236,0,3.371752,2.891617,0,3.768428,3.005204,0,3.005204,3.358757,0,3.358757,3.371752,0,2.587236,3.680608,0,2.125,3.768428,0,2.891617,3.926488,0,1.626405,4.105185,0,1.099981,4.113621,0,2.375,4.21364,0,0.5547363,4.25,0,-1.443823E-14,4.388428,0,1.817746,4.25,0,-4,4.588148,0,1.22939,4.709363,0,0.6199994,4.75,0,-4,4.75,0,-1.443823E-14,4.388428,10,1.817746,4.388428,0,1.817746,4.113621,10,2.375,4.113621,0,2.375,2.891617,0,3.768428,2.375,0,4.113621,2.891617,10,3.768428,2.375,10,4.113621,-4,10,4,-4,0,4,-4,10,4.25,-4,0,4.25,-4,10,4.75,-4,0,4.75,-4,10,5,-4,0,5,-5,0,4,-4,0,4,-5,10,4,-4,10,4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,5,0,-4,5,0,-5,4,0,-5,4,0,-4,-4,0,5,-5,0,5,-4,0,4,-5,0,4,-4,0,5,-5,0,5,-4,10,5,-5,10,5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,-4,10,5,-5,10,5,-4,10,4,-5,10,4,-5,0,4,-5,10,4,-5,0,5,-5,10,5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4 + } + PolygonVertexIndex: *444 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,48,-47,50,49,-47,51,49,-51,52,51,-51,53,51,-53,54,51,-54,55,54,-54,56,54,-56,57,54,-57,58,57,-57,59,57,-59,60,57,-60,61,60,-60,62,60,-62,63,62,-62,64,62,-64,65,64,-64,66,64,-66,67,66,-66,68,66,-68,69,68,-68,70,68,-70,71,70,-70,72,70,-72,73,72,-72,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,135,136,-138,136,138,-138,137,138,-140,138,140,-140,139,140,-142,140,142,-142,141,142,-144,142,144,-144,143,144,-146,144,146,-146,145,146,-148,146,148,-148,147,148,-150,148,150,-150,150,151,-150,149,151,-153,151,153,-153,153,154,-153,152,154,-156,154,156,-156,156,157,-156,158,155,-158,157,159,-159,158,159,-161,160,159,-162,159,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,44,185,-187,46,44,-187,187,46,-187,188,162,-190,190,189,-163,159,190,-163,191,190,-160,192,193,-136,134,135,-194,194,134,-194,195,194,-194,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,72,-210,73,209,-73,210,209,-74,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1332 { + a: 0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,0.9659258,0,0.258819,0.9238795,0,0.3826834,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.1305262,0,-0.9914449,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.3826834,0,-0.9238795,-1,0,0,-0.9994646,0,-0.03271909,-1,0,0,-0.9994646,0,-0.03271909,-1,0,0,-0.9994646,0,-0.03271909,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.7933533,0,-0.6087614,-0.7071068,0,-0.7071068,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.9238795,-0.258819,0,-0.9659258,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.7071068,0,0.7071068,0,0,-1,0,0,-1,-0.03271909,0,-0.9994646,-0.03271909,0,-0.9994646,-0.03271909,0,-0.9994646,0,0,-1,-0.9994646,0,-0.03271909,-0.9914449,0,-0.1305262,-0.9994646,0,-0.03271909,-0.9914449,0,-0.1305262,-0.9994646,0,-0.03271909,-0.9914449,0,-0.1305262,-0.03271909,0,-0.9994646,-0.03271909,0,-0.9994646,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.03271909,0,-0.9994646,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.03271909,0,0.9994646,0.03271909,0,0.9994646,0.03271909,0,0.9994646,0.1305262,0,0.9914449,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.6087614,0,-0.7933533,0.9994646,0,0.03271909,0.9914449,0,0.1305262,0.9994646,0,0.03271909,0.9914449,0,0.1305262,0.9994646,0,0.03271909,0.9914449,0,0.1305262,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9659258,0,-0.258819,-0.9238795,0,-0.3826834,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,-0.9914449,0,-0.1305262,-0.9659258,0,-0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.9914449,0,0.1305262,0.9659258,0,0.258819,0.03271909,0,0.9994646,0.03271909,0,0.9994646,0,0,1,0,0,1,0,0,1,0.03271909,0,0.9994646,0.258819,0,0.9659258,0.258819,0,0.9659258,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.1305262,0,0.9914449,0.258819,0,0.9659258,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,0.8660254,0,0.5,0.7933533,0,0.6087614,1,0,0,0.9994646,0,0.03271909,1,0,0,0.9994646,0,0.03271909,1,0,0,0.9994646,0,0.03271909,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,-0.9238795,0,-0.3826834,-0.8660254,0,-0.5,0.5,0,0.8660254,0.5,0,0.8660254,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.5,0,0.8660254,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.7933533,0,0.6087614,0.7071068,0,0.7071068,0.3826834,0,0.9238795,0.3826834,0,0.9238795,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.3826834,0,0.9238795,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7933533,-0.5,0,-0.8660254,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,-0.8660254,0,-0.5,-0.7933533,0,-0.6087614,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.9238795,0,0.3826834,0.8660254,0,0.5,0.6087614,0,0.7933533,0.6087614,0,0.7933533,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.6087614,0,0.7933533,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *456 { + a: 1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,-15.74803,0,-15.74803,39.37008,-5.684342E-14,0,-5.684342E-14,39.37008,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,15.74803,0,1.914913E-12,0,15.74803,39.37008,1.914913E-12,39.37008,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,-18.70079,-15.74803,-18.70079,-5.684342E-14,-16.73228,-15.74803,-18.5408,2.440943,-18.06357,4.84012,-17.27728,7.156482,-16.73228,-5.684342E-14,-16.19536,9.350393,-16.58914,2.184001,-16.16215,4.330634,-14.83633,11.38432,-15.45861,6.403168,-14.49058,8.366141,-13.22345,13.22345,-13.27461,10.18597,-11.83151,11.83151,-11.38432,14.83633,-10.18597,13.27461,-9.350393,16.19536,-8.366141,14.49058,-7.156482,17.27728,-6.403168,15.45861,-4.84012,18.06357,-4.330634,16.16215,-2.440943,18.5408,-2.184001,16.58914,5.684342E-14,18.70079,2.842171E-13,16.73228,15.74803,18.70079,15.74803,16.73228,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,-1.879386E-12,0,-15.74803,0,-1.879386E-12,39.37008,-15.74803,39.37008,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,15.74803,39.37008,15.74803,0,5.684342E-14,39.37008,5.684342E-14,0,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,1.094344,0,-1.094344,0,1.094344,39.37008,-1.094344,39.37008,-1.094344,0,-1.094344,39.37008,1.094344,0,1.094344,39.37008,-15.74803,16.73228,-15.74803,18.70079,-2.842171E-13,16.73228,-5.684342E-14,18.70079,2.184001,16.58914,2.440943,18.5408,4.330634,16.16215,4.84012,18.06357,6.403168,15.45861,7.156482,17.27728,8.366141,14.49058,9.350393,16.19536,10.18597,13.27461,11.38432,14.83633,11.83151,11.83151,13.22345,13.22345,13.27461,10.18597,14.49058,8.366141,14.83633,11.38432,15.45861,6.403168,16.16215,4.330634,16.19536,9.350393,16.58914,2.184001,16.73228,-5.684342E-14,17.27728,7.156482,16.73228,-15.74803,18.06357,4.84012,18.5408,2.440943,18.70079,-15.74803,18.70079,-5.684342E-14,1.22309,39.37008,1.22309,0,-1.22309,39.37008,-1.22309,0,1.22309,0,-1.22309,0,1.22309,39.37008,-1.22309,39.37008,-15.74803,39.37008,-15.74803,0,-16.73228,39.37008,-16.73228,0,-18.70079,39.37008,-18.70079,0,-19.68504,39.37008,-19.68504,0,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,-15.74803,19.68504,-19.68504,19.68504,-15.74803,15.74803,-19.68504,15.74803,-15.74803,9.521273E-13,-19.68504,9.521273E-13,-15.74803,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,15.74803,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,7.105427E-15,15.74803,39.37008,19.68504,7.105427E-15,19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0 + } + UVIndex: *444 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,48,46,50,49,46,51,49,50,52,51,50,53,51,52,54,51,53,55,54,53,56,54,55,57,54,56,58,57,56,59,57,58,60,57,59,61,60,59,62,60,61,63,62,61,64,62,63,65,64,63,66,64,65,67,66,65,68,66,67,69,68,67,70,68,69,71,70,69,72,70,71,73,72,71,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,135,136,137,136,138,137,137,138,139,138,140,139,139,140,141,140,142,141,141,142,143,142,144,143,143,144,145,144,146,145,145,146,147,146,148,147,147,148,149,148,150,149,150,151,149,149,151,152,151,153,152,153,154,152,152,154,155,154,156,155,156,157,155,158,155,157,157,159,158,158,159,160,160,159,161,159,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,44,185,186,46,44,186,187,46,186,188,162,189,190,189,162,159,190,162,191,190,159,192,193,135,134,135,193,194,134,193,195,194,193,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,72,209,73,209,72,210,209,73,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *148 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodRounded, Model::RootNode + C: "OO",5011052097149514938,0 + + ;Geometry::, Model::Mesh wallWoodRounded + C: "OO",5328207243716886283,5011052097149514938 + + ;Material::woodDark, Model::Mesh wallWoodRounded + C: "OO",7186,5011052097149514938 + + ;Material::wood, Model::Mesh wallWoodRounded + C: "OO",7178,5011052097149514938 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodRounded.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodRounded.fbx.import new file mode 100644 index 0000000..6028078 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodRounded.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bkdkqd8fvgo4o" +path="res://.godot/imported/wallWoodRounded.fbx-4af885cce30601f9f8702724f396e7e0.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodRounded.fbx" +dest_files=["res://.godot/imported/wallWoodRounded.fbx-4af885cce30601f9f8702724f396e7e0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSide.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSide.fbx new file mode 100644 index 0000000..86ff6ee --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSide.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 596 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodSide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodSide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4796368929996878634, "Model::wallWoodSide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5284322286240513089, "Geometry::", "Mesh" { + Vertices: *144 { + a: 4.75,0,4,4.75,4.511946E-14,2.4,4.25,0,4,4.25,4.511946E-14,2.4,4.75,10,2.4,4.75,4.511946E-14,2.4,4.75,10,4,4.75,0,4,4.25,4.511946E-14,2.4,4.25,10,2.4,4.25,0,4,4.25,10,4,4.75,10,2.4,4.75,10,4,4.25,10,2.4,4.25,10,4,4.25,4.511946E-14,2.4,4.75,4.511946E-14,2.4,4.25,10,2.4,4.75,10,2.4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,10,4,5,10,5,4,10,5,4,10,4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4,0,4,4,10,4,4,0,5,4,10,5,5,0,5,4,0,5,5,10,5,4,10,5,5,0,5,5,0,4,4,0,5,4,0,4 + } + PolygonVertexIndex: *84 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,13,-26,26,25,-14,15,26,-14,27,26,-16,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,0,45,-47,2,0,-47,47,2,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *252 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: 18.70079,15.74803,18.70079,9.448819,16.73228,15.74803,16.73228,9.448819,-9.448819,39.37008,-9.448819,1.776357E-13,-15.74803,39.37008,-15.74803,1.338556E-29,9.448819,1.776357E-13,9.448819,39.37008,15.74803,-2.072394E-29,15.74803,39.37008,-18.70079,9.448819,-18.70079,15.74803,-16.73228,9.448819,-16.73228,15.74803,-16.73228,1.776357E-13,-18.70079,1.776357E-13,-16.73228,39.37008,-18.70079,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-15.74803,19.68504,-15.74803,15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803 + } + UVIndex: *84 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,13,25,26,25,13,15,26,13,27,26,15,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,0,45,46,2,0,46,47,2,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *28 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodSide, Model::RootNode + C: "OO",4796368929996878634,0 + + ;Geometry::, Model::Mesh wallWoodSide + C: "OO",5284322286240513089,4796368929996878634 + + ;Material::woodDark, Model::Mesh wallWoodSide + C: "OO",7186,4796368929996878634 + + ;Material::wood, Model::Mesh wallWoodSide + C: "OO",7178,4796368929996878634 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSide.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSide.fbx.import new file mode 100644 index 0000000..3e8fdb9 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://hfp1jmhuunq1" +path="res://.godot/imported/wallWoodSide.fbx-a184d8880d44de395f8b09726f936350.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSide.fbx" +dest_files=["res://.godot/imported/wallWoodSide.fbx-a184d8880d44de395f8b09726f936350.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSlope.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSlope.fbx new file mode 100644 index 0000000..59dd7c8 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSlope.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 625 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodSlope.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodSlope.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4706897719450852238, "Model::wallWoodSlope", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5488965610448629672, "Geometry::", "Mesh" { + Vertices: *450 { + a: 5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,0,-4,4.75,0,-4,5,5,-4,4.75,5,-4,4,0,-5,5,0,-5,4,5,-5,5,5,-5,4.25,0,-4,4,0,-4,4.25,5,-4,4,5,-4,5,5,-5,5,0,-5,5,5,-4,5,0,-4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,5,-5,5,5,-4,4,5,-5,4.75,5,-4,4.25,5,-4,4,5,-4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,-5,4,5,-5,4,0,-4,4,5,-4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,0,4,5,10,5,5,0,5,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4.25,8.701659,3.025669,4.75,8.701659,3.025669,4.25,8.75,3.064809,4.75,8.75,3.064809,4.25,9.332874,3.536761,4.75,9.332874,3.536761,4.25,9.332874,3.536761,4.75,9.332874,3.536761,4.25,10,4,4.75,10,4,4.25,0,-4,4.25,5,-4,4.25,0,4,4.25,5.124058,-3.197344,4.25,5.306868,-2.405999,4.25,5.547437,-1.630258,4.25,5.84446,-0.8743321,4.25,6.196325,-0.1423227,4.25,6.601124,0.5617977,4.25,7.056657,1.234208,4.25,7.5,1.794814,4.25,7.560455,1.87126,4.25,8.109783,2.469495,4.25,8.701659,3.025669,4.25,8.75,3.064809,4.25,9.332874,3.536761,4.25,10,4,4.75,5,-4,4.75,5.124058,-3.197344,4.25,5,-4,4.25,5.124058,-3.197344,4.75,5.306868,-2.405999,4.75,5.547437,-1.630258,4.25,5.306868,-2.405999,4.25,5.547437,-1.630258,4.75,5.547437,-1.630258,4.75,5.84446,-0.8743321,4.25,5.547437,-1.630258,4.25,5.84446,-0.8743321,4.75,5.124058,-3.197344,4.75,5.306868,-2.405999,4.25,5.124058,-3.197344,4.25,5.306868,-2.405999,4.75,5.84446,-0.8743321,4.75,6.196325,-0.1423227,4.25,5.84446,-0.8743321,4.25,6.196325,-0.1423227,4.75,5,-4,4.75,0,-4,4.75,5.124058,-3.197344,4.75,0,4,4.75,5.306868,-2.405999,4.75,5.547437,-1.630258,4.75,5.84446,-0.8743321,4.75,6.196325,-0.1423227,4.75,6.601124,0.5617977,4.75,7.056657,1.234208,4.75,7.5,1.794814,4.75,7.560455,1.87126,4.75,8.109783,2.469495,4.75,8.701659,3.025669,4.75,8.75,3.064809,4.75,9.332874,3.536761,4.75,10,4,4.25,8.109783,2.469495,4.75,8.109783,2.469495,4.25,8.701659,3.025669,4.75,8.701659,3.025669,4.25,7.560455,1.87126,4.25,7.5,1.794814,4.75,7.560455,1.87126,4.75,7.5,1.794814,4.25,7.056657,1.234208,4.75,7.056657,1.234208,4.75,6.196325,-0.1423227,4.75,6.601124,0.5617977,4.25,6.196325,-0.1423227,4.25,6.601124,0.5617977,4.75,7.560455,1.87126,4.75,8.109783,2.469495,4.25,7.560455,1.87126,4.25,8.109783,2.469495,4.75,6.601124,0.5617977,4.75,7.056657,1.234208,4.25,6.601124,0.5617977,4.25,7.056657,1.234208 + } + PolygonVertexIndex: *288 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,29,-29,31,30,-29,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,43,-43,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,62,-62,63,61,-63,64,66,-66,67,65,-67,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,78,-77,80,79,-77,81,80,-77,82,81,-77,83,82,-77,84,83,-77,85,84,-77,86,85,-77,87,86,-77,88,87,-77,89,88,-77,90,89,-77,91,93,-93,94,92,-94,57,58,-3,4,2,-59,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,113,-113,114,112,-114,115,114,-114,116,114,-116,117,114,-117,118,114,-118,119,114,-119,120,114,-120,121,114,-121,122,114,-122,123,114,-123,124,114,-124,125,114,-125,126,114,-126,127,114,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,133,135,-137,137,136,-136,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *864 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,0.9986961,-0.05104866,0,1,0,0,1,0,0,0.9986961,-0.05104866,0,0.9986961,-0.05104866,0,1,0,0,1,0,0,0.9986961,-0.05104866,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6574787,-0.7534732,0,0.62928,-0.7771788,0,0.6574787,-0.7534732,0,0.62928,-0.7771788,0,0.6574787,-0.7534732,0,0.62928,-0.7771788,0,0.62928,-0.7771788,0,0.6002273,-0.7998294,0,0.62928,-0.7771788,0,0.6002273,-0.7998294,0,0.62928,-0.7771788,0,0.6002273,-0.7998294,0,0.6002273,-0.7998294,0,0.5703599,-0.8213948,0,0.6002273,-0.7998294,0,0.5703599,-0.8213948,0,0.6002273,-0.7998294,0,0.5703599,-0.8213948,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9986961,-0.05104866,0,0.9986961,-0.05104866,0,0.9819688,-0.1890431,0,0.9819688,-0.1890431,0,0.9819688,-0.1890431,0,0.9986961,-0.05104866,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9653879,-0.2608185,0,0.9653879,-0.2608185,0,0.9435681,-0.3311784,0,0.9435681,-0.3311784,0,0.9435681,-0.3311784,0,0.9653879,-0.2608185,0,0.9435681,-0.3311784,0,0.9435681,-0.3311784,0,0.916628,-0.3997414,0,0.916628,-0.3997414,0,0.916628,-0.3997414,0,0.9435681,-0.3311784,0,0.9819688,-0.1890431,0,0.9819688,-0.1890431,0,0.9653879,-0.2608185,0,0.9653879,-0.2608185,0,0.9653879,-0.2608185,0,0.9819688,-0.1890431,0,0.916628,-0.3997414,0,0.916628,-0.3997414,0,0.8847136,-0.4661349,0,0.8847136,-0.4661349,0,0.8847136,-0.4661349,0,0.916628,-0.3997414,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7111622,-0.703028,0,0.6574787,-0.7534732,0,0.7111622,-0.703028,0,0.6574787,-0.7534732,0,0.7111622,-0.703028,0,0.6574787,-0.7534732,0,0.7609864,-0.6487677,0,0.7609864,-0.6487677,0,0.7843661,-0.6202983,0,0.7843661,-0.6202983,0,0.7843661,-0.6202983,0,0.7609864,-0.6487677,0,0.7843661,-0.6202983,0,0.7843661,-0.6202983,0,0.8066812,-0.5909868,0,0.8066812,-0.5909868,0,0.8066812,-0.5909868,0,0.7843661,-0.6202983,0,0.8847136,-0.4661349,0,0.8847136,-0.4661349,0,0.8479983,-0.529999,0,0.8479983,-0.529999,0,0.8479983,-0.529999,0,0.8847136,-0.4661349,0,0.7609864,-0.6487677,0,0.7609864,-0.6487677,0,0.7111622,-0.703028,0,0.7111622,-0.703028,0,0.7111622,-0.703028,0,0.7609864,-0.6487677,0,0.8479983,-0.529999,0,0.8479983,-0.529999,0,0.8066812,-0.5909868,0,0.8066812,-0.5909868,0,0.8066812,-0.5909868,0,0.8479983,-0.529999 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *300 { + a: 19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,19.68504,-9.848619E-31,18.70079,-9.848619E-31,19.68504,19.68504,18.70079,19.68504,-15.74803,0,-19.68504,0,-15.74803,19.68504,-19.68504,19.68504,16.73228,-9.848619E-31,15.74803,-9.848619E-31,16.73228,19.68504,15.74803,19.68504,19.68504,19.68504,19.68504,0,15.74803,19.68504,15.74803,0,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,0,-19.68504,19.68504,-15.74803,0,-15.74803,19.68504,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-16.73228,34.12101,-18.70079,34.12101,-16.73228,34.36589,-18.70079,34.36589,-16.73228,37.3186,-18.70079,37.3186,-16.73228,38.12284,-18.70079,38.12284,-16.73228,41.32043,-18.70079,41.32043,-15.74803,0,-15.74803,19.68504,15.74803,0,-12.58797,20.17346,-9.472436,20.89318,-6.418339,21.8403,-3.442252,23.00969,-0.5603256,24.39498,2.211802,25.98868,4.859087,27.78212,7.066197,29.52756,7.367165,29.76557,9.722423,31.92828,11.91208,34.2585,12.06618,34.44882,13.92426,36.7436,15.74803,39.37008,-18.70079,-12.55642,-18.70079,-9.358838,-16.73228,-12.55642,-16.73228,-9.358838,-18.70079,-2.858822,-18.70079,0.3387627,-16.73228,-2.858822,-16.73228,0.3387627,-18.70079,2.013437,-18.70079,5.211021,-16.73228,2.013437,-16.73228,5.211021,-18.70079,-7.724243,-18.70079,-4.526658,-16.73228,-7.724243,-16.73228,-4.526658,-18.70079,6.866093,-18.70079,10.06368,-16.73228,6.866093,-16.73228,10.06368,15.74803,19.68504,15.74803,0,12.58797,20.17346,-15.74803,0,9.472436,20.89318,6.418339,21.8403,3.442252,23.00969,0.5603256,24.39498,-2.211802,25.98868,-4.859087,27.78212,-7.066197,29.52756,-7.367165,29.76557,-9.722423,31.92828,-11.91208,34.2585,-12.06618,34.44882,-13.92426,36.7436,-15.74803,39.37008,-16.73228,29.92535,-18.70079,29.92535,-16.73228,33.12293,-18.70079,33.12293,-16.73228,24.24208,-16.73228,23.85838,-18.70079,24.24208,-18.70079,23.85838,-16.73228,21.0445,-18.70079,21.0445,-18.70079,11.67281,-18.70079,14.8704,-16.73228,11.67281,-16.73228,14.8704,-18.70079,25.55861,-18.70079,28.7562,-16.73228,25.55861,-16.73228,28.7562,-18.70079,16.40751,-18.70079,19.6051,-16.73228,16.40751,-16.73228,19.6051 + } + UVIndex: *288 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,29,28,31,30,28,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,43,42,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,57,56,59,58,56,60,62,61,63,61,62,64,66,65,67,65,66,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,78,76,80,79,76,81,80,76,82,81,76,83,82,76,84,83,76,85,84,76,86,85,76,87,86,76,88,87,76,89,88,76,90,89,76,91,93,92,94,92,93,57,58,2,4,2,58,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,109,108,110,108,109,111,113,112,114,112,113,115,114,113,116,114,115,117,114,116,118,114,117,119,114,118,120,114,119,121,114,120,122,114,121,123,114,122,124,114,123,125,114,124,126,114,125,127,114,126,128,130,129,131,129,130,132,134,133,135,133,134,133,135,136,137,136,135,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *96 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodSlope, Model::RootNode + C: "OO",4706897719450852238,0 + + ;Geometry::, Model::Mesh wallWoodSlope + C: "OO",5488965610448629672,4706897719450852238 + + ;Material::wood, Model::Mesh wallWoodSlope + C: "OO",7178,4706897719450852238 + + ;Material::woodDark, Model::Mesh wallWoodSlope + C: "OO",7186,4706897719450852238 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSlope.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSlope.fbx.import new file mode 100644 index 0000000..b55b749 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSlope.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bt4cu6p0rp3e3" +path="res://.godot/imported/wallWoodSlope.fbx-f84294d64798a956b5fc76950745fed4.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodSlope.fbx" +dest_files=["res://.godot/imported/wallWoodSlope.fbx-f84294d64798a956b5fc76950745fed4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowGlass.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowGlass.fbx new file mode 100644 index 0000000..7014bdd --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowGlass.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 662 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodWindowGlass.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodWindowGlass.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5430915081742603713, "Model::wallWoodWindowGlass", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5560462985113663661, "Geometry::", "Mesh" { + Vertices: *534 { + a: 4,0,-5,4,10,-5,4,0,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,0,5,4,0,5,5,10,5,4,10,5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,10,4,5,0,4,5,10,5,5,0,5,4,0,4,4,10,4,4,0,5,4,10,5,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,4.25,2.5,1.5,4.25,2.5,-1.5,4,2.5,1.5,4,2.5,-1.5,4.75,2.5,2,4.75,8,2,4.75,2,2,4.75,2.5,1.5,4.75,7.5,1.5,4.75,2.5,-1.5,4.75,2,-2,4.75,7.5,-1.5,4.75,8,-2,4.75,2.5,-1.5,5,2.5,-1.5,4.75,7.5,-1.5,5,7.5,-1.5,4.25,2.5,1.5,4,2.5,1.5,4.25,7.5,1.5,4,7.5,1.5,5,7.5,-1.5,5,7.5,1.5,4.75,7.5,-1.5,4.75,7.5,1.5,4.75,5.25,-1,4.75,5.25,1,4.25,5.25,-1,4.25,5.25,1,5,3,-1,5,3,1,4,3,-1,4,3,1,4.25,5.25,-1,4.25,5.25,1,4.25,4.75,-1,4.25,4.75,1,4.75,4.75,1,4.75,4.75,-1,4.25,4.75,1,4.25,4.75,-1,4.75,5.25,-1,4.75,4.75,-1,4.75,5.25,1,4.75,4.75,1,5,7,1,5,7,-1,4,7,1,4,7,-1,4.25,2.5,-1.5,4.25,7.5,-1.5,4,2.5,-1.5,4,7.5,-1.5,4.25,2.5,2,4.25,2,2,4.25,8,2,4.25,7.5,1.5,4.25,2.5,1.5,4.25,7.5,-1.5,4.25,8,-2,4.25,2.5,-1.5,4.25,2,-2,4.75,2.5,1.5,4.75,7.5,1.5,5,2.5,1.5,5,7.5,1.5,4.25,7.5,-1.5,4.25,7.5,1.5,4,7.5,-1.5,4,7.5,1.5,5,2.5,1.5,5,2.5,-1.5,4.75,2.5,1.5,4.75,2.5,-1.5,5,3,1,4.25,4.75,1,4,3,1,4,7,1,4.75,4.75,1,4.25,5.25,1,5,7,1,4.75,5.25,1,4.75,5.25,-1,5,7,-1,4.75,4.75,-1,4.25,5.25,-1,5,3,-1,4,7,-1,4.25,4.75,-1,4,3,-1,5,2.5,-1.5,5,7,-1,5,7.5,-1.5,5,7.5,1.5,5,3,-1,5,7,1,5,2.5,1.5,5,3,1,4,7.5,-1.5,4,3,-1,4,2.5,-1.5,4,2.5,1.5,4,7,-1,4,3,1,4,7.5,1.5,4,7,1,4.25,0,4,4.25,0,-4,4.25,10,4,4.25,10,-4,4.75,10,4,4.75,10,-4,4.75,0,4,4.75,0,-4 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,29,-29,31,30,-29,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,48,-47,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,57,-57,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,69,70,-72,71,72,-70,71,70,-74,70,74,-74,72,75,-70,75,73,-75,69,75,-77,74,76,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,118,119,-121,120,121,-119,120,119,-123,119,123,-123,121,124,-119,124,122,-124,118,124,-126,123,125,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,139,142,-139,143,139,-142,144,138,-143,145,143,-142,145,144,-143,141,144,-146,146,148,-148,149,146,-148,150,147,-149,151,149,-148,148,152,-151,149,151,-153,150,152,-154,151,153,-153,154,156,-156,157,155,-157,155,158,-155,159,155,-158,160,154,-159,161,159,-158,161,160,-159,157,160,-162,162,164,-164,165,163,-165,163,166,-163,167,163,-166,168,162,-167,169,167,-166,169,168,-167,165,168,-170,29,30,-57,58,56,-31,47,48,-7,8,6,-49,118,125,-171,117,118,-171,119,117,-171,170,125,-172,170,172,-120,173,171,-126,119,172,-124,172,173,-124,125,123,-174,69,76,-175,68,69,-175,70,68,-175,174,76,-176,174,176,-71,177,175,-77,70,176,-75,176,177,-75,76,74,-178 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *356 { + a: -19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,19.68504,1.776357E-15,15.74803,1.776357E-15,19.68504,39.37008,15.74803,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,16.73228,5.905512,16.73228,-5.905512,15.74803,5.905512,15.74803,-5.905512,-7.874016,9.84252,-7.874016,31.49606,-7.874016,7.874016,-5.905512,9.84252,-5.905512,29.52756,5.905512,9.84252,7.874016,7.874016,5.905512,29.52756,7.874016,31.49606,-18.70079,9.84252,-19.68504,9.84252,-18.70079,29.52756,-19.68504,29.52756,16.73228,9.84252,15.74803,9.84252,16.73228,29.52756,15.74803,29.52756,-19.68504,-5.905512,-19.68504,5.905512,-18.70079,-5.905512,-18.70079,5.905512,-18.70079,-3.937008,-18.70079,3.937008,-16.73228,-3.937008,-16.73228,3.937008,-19.68504,-3.937008,-19.68504,3.937008,-15.74803,-3.937008,-15.74803,3.937008,-3.937008,20.66929,3.937008,20.66929,-3.937008,18.70079,3.937008,18.70079,18.70079,3.937008,18.70079,-3.937008,16.73228,3.937008,16.73228,-3.937008,3.937008,20.66929,3.937008,18.70079,-3.937008,20.66929,-3.937008,18.70079,19.68504,3.937008,19.68504,-3.937008,15.74803,3.937008,15.74803,-3.937008,-16.73228,9.84252,-16.73228,29.52756,-15.74803,9.84252,-15.74803,29.52756,7.874016,9.84252,7.874016,7.874016,7.874016,31.49606,5.905512,29.52756,5.905512,9.84252,-5.905512,29.52756,-7.874016,31.49606,-5.905512,9.84252,-7.874016,7.874016,18.70079,9.84252,18.70079,29.52756,19.68504,9.84252,19.68504,29.52756,-16.73228,-5.905512,-16.73228,5.905512,-15.74803,-5.905512,-15.74803,5.905512,19.68504,5.905512,19.68504,-5.905512,18.70079,5.905512,18.70079,-5.905512,-19.68504,11.81102,-16.73228,18.70079,-15.74803,11.81102,-15.74803,27.55906,-18.70079,18.70079,-16.73228,20.66929,-19.68504,27.55906,-18.70079,20.66929,18.70079,20.66929,19.68504,27.55906,18.70079,18.70079,16.73228,20.66929,19.68504,11.81102,15.74803,27.55906,16.73228,18.70079,15.74803,11.81102,5.905512,9.84252,3.937008,27.55906,5.905512,29.52756,-5.905512,29.52756,3.937008,11.81102,-3.937008,27.55906,-5.905512,9.84252,-3.937008,11.81102,-5.905512,29.52756,-3.937008,11.81102,-5.905512,9.84252,5.905512,9.84252,-3.937008,27.55906,3.937008,11.81102,5.905512,29.52756,3.937008,27.55906,15.74803,0,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,-15.74803,39.37008,15.74803,39.37008,-15.74803,0,15.74803,0 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,29,28,31,30,28,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,48,46,50,52,51,53,51,52,54,56,55,57,55,56,58,57,56,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,69,70,71,71,72,69,71,70,73,70,74,73,72,75,69,75,73,74,69,75,76,74,76,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,118,119,120,120,121,118,120,119,122,119,123,122,121,124,118,124,122,123,118,124,125,123,125,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,139,142,138,143,139,141,144,138,142,145,143,141,145,144,142,141,144,145,146,148,147,149,146,147,150,147,148,151,149,147,148,152,150,149,151,152,150,152,153,151,153,152,154,156,155,157,155,156,155,158,154,159,155,157,160,154,158,161,159,157,161,160,158,157,160,161,162,164,163,165,163,164,163,166,162,167,163,165,168,162,166,169,167,165,169,168,166,165,168,169,29,30,56,58,56,30,47,48,6,8,6,48,118,125,170,117,118,170,119,117,170,170,125,171,170,172,119,173,171,125,119,172,123,172,173,123,125,123,173,69,76,174,68,69,174,70,68,174,174,76,175,174,176,70,177,175,76,70,176,74,176,177,74,76,74,177 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodWindowGlass, Model::RootNode + C: "OO",5430915081742603713,0 + + ;Geometry::, Model::Mesh wallWoodWindowGlass + C: "OO",5560462985113663661,5430915081742603713 + + ;Material::wood, Model::Mesh wallWoodWindowGlass + C: "OO",7178,5430915081742603713 + + ;Material::woodDark, Model::Mesh wallWoodWindowGlass + C: "OO",7186,5430915081742603713 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowGlass.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowGlass.fbx.import new file mode 100644 index 0000000..39b478f --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowGlass.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b7i17iddeiw0b" +path="res://.godot/imported/wallWoodWindowGlass.fbx-4dac85cf24798495080f6a0f049996a8.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowGlass.fbx" +dest_files=["res://.godot/imported/wallWoodWindowGlass.fbx-4dac85cf24798495080f6a0f049996a8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowRound.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowRound.fbx new file mode 100644 index 0000000..c2e00da --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowRound.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 698 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodWindowRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodWindowRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5110859015153806244, "Model::wallWoodWindowRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5059402506065114529, "Geometry::", "Mesh" { + Vertices: *1194 { + a: 5.5,2,1.1,5.5,2,-1.1,4.75,2,1.1,4.75,2,-1.1,5,7.256476,0.487642,5,7.358615,0.3905125,4,7.256476,0.487642,4,7.358615,0.3905125,5,7,1.1,5,7.264653,1.041336,5,2.5,1.1,5,7.507061,0.9200034,5,7.712634,0.7433034,5,2.5,0.6,5,7,0.6,5,7.134772,0.5587364,5,7.869,0.5218704,5,7.256476,0.487642,5,7.358615,0.3905125,5,7.435734,0.2725336,5,7.96675,0.2690305,5,7.483716,0.1400042,5,8,-3.609557E-15,5,7.5,-7.219114E-15,5,7.483716,-0.1400042,5,7.96675,-0.2690305,5,7.435734,-0.2725336,5,7.358615,-0.3905125,5,7.256476,-0.487642,5,7.869,-0.5218704,5,7.134772,-0.5587364,5,7,-0.6,5,7.712634,-0.7433034,5,2.5,-0.6,5,7.507061,-0.9200034,5,7.264653,-1.041336,5,2.5,-1.1,5,7,-1.1,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,5,7,0.6,5,7.134772,0.5587364,4,7,0.6,4,7.134772,0.5587364,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,5,7,-1.1,4.75,7,-1.1,5,2.5,-1.1,4.75,2,-1.1,5.5,2.5,-1.1,5.5,2,-1.1,5,7.264653,-1.041336,5,7.507061,-0.9200034,4.75,7.264653,-1.041336,4.75,7.507061,-0.9200034,5,10,4,5,0,4,5,10,5,5,0,5,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,5,7,-0.6,4,7,-0.6,5,7.134772,-0.5587364,4,7.134772,-0.5587364,5,7.483716,-0.1400042,5,7.435734,-0.2725336,4,7.483716,-0.1400042,4,7.435734,-0.2725336,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,5.5,2,1.1,4.75,2,1.1,5.5,2.5,1.1,5,2.5,1.1,4.75,7,1.1,5,7,1.1,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,7.435734,0.2725336,5,7.483716,0.1400042,4,7.435734,0.2725336,4,7.483716,0.1400042,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,7,-1.1,5,7.264653,-1.041336,4.75,7,-1.1,4.75,7.264653,-1.041336,5,7.507061,-0.9200034,5,7.712634,-0.7433034,4.75,7.507061,-0.9200034,4.75,7.712634,-0.7433034,5,7.869,-0.5218704,4.75,7.869,-0.5218704,5,7.712634,-0.7433034,4.75,7.712634,-0.7433034,4,0,4,4,10,4,4,0,5,4,10,5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4.25,2,1.6,4.25,1.5,1.6,4.25,7,1.6,4.25,7.394235,1.524173,4.25,7.757275,1.352786,4.25,7,1.1,4.25,8.066358,1.096586,4.25,2,1.1,4.25,7.264653,1.041336,4.25,7.507061,0.9200034,4.25,2,-1.1,4.25,8.302106,0.7716333,4.25,7.712634,0.7433034,4.25,7.869,0.5218704,4.25,1.5,-1.6,4.25,8.449739,0.3983026,4.25,7.96675,0.2690305,4.25,8,-3.609557E-15,4.25,8.5,-7.219114E-15,4.25,7.96675,-0.2690305,4.25,7,-1.6,4.25,7.394235,-1.524173,4.25,7.757275,-1.352786,4.25,7,-1.1,4.25,8.066358,-1.096586,4.25,7.264653,-1.041336,4.25,8.449739,-0.3983026,4.25,7.869,-0.5218704,4.25,7.712634,-0.7433034,4.25,8.302106,-0.7716333,4.25,7.507061,-0.9200034,5,2.5,-0.6,4,2.5,-0.6,5,7,-0.6,4,7,-0.6,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,7.134772,0.5587364,5,7.256476,0.487642,4,7.134772,0.5587364,4,7.256476,0.487642,5,7.358615,0.3905125,5,7.435734,0.2725336,4,7.358615,0.3905125,4,7.435734,0.2725336,5,7.435734,-0.2725336,5,7.358615,-0.3905125,4,7.435734,-0.2725336,4,7.358615,-0.3905125,5,7.483716,0.1400042,5,7.5,-7.219114E-15,4,7.483716,0.1400042,4,7.5,-7.219114E-15,5,7.256476,-0.487642,4,7.256476,-0.487642,5,7.358615,-0.3905125,4,7.358615,-0.3905125,5,7.134772,-0.5587364,4,7.134772,-0.5587364,5,7.256476,-0.487642,4,7.256476,-0.487642,4.75,7,-1.6,4.75,1.5,-1.6,4.75,7.394235,-1.524173,4.75,2,-1.1,4.75,7.757275,-1.352786,4.75,1.5,1.6,4.75,7,-1.1,4.75,8.066358,-1.096586,4.75,7.264653,-1.041336,4.75,8.302106,-0.7716333,4.75,7.507061,-0.9200034,4.75,7.712634,-0.7433034,4.75,8.449739,-0.3983026,4.75,7.869,-0.5218704,4.75,7.96675,-0.2690305,4.75,8.5,-7.219114E-15,4.75,8,-3.609557E-15,4.75,8.449739,0.3983026,4.75,7.96675,0.2690305,4.75,7.869,0.5218704,4.75,8.302106,0.7716333,4.75,7.712634,0.7433034,4.75,7.507061,0.9200034,4.75,8.066358,1.096586,4.75,7.264653,1.041336,4.75,7,1.1,4.75,7.757275,1.352786,4.75,2,1.1,4.75,7.394235,1.524173,4.75,7,1.6,4.75,2,1.6,5,0,5,4,0,5,5,10,5,4,10,5,5,2.5,0.6,5,7,0.6,4,2.5,0.6,4,7,0.6,5,7.5,-7.219114E-15,5,7.483716,-0.1400042,4,7.5,-7.219114E-15,4,7.483716,-0.1400042,4,2.5,0.6,4,7,0.6,4,2.5,1.1,4,7.712634,0.7433034,4,7.134772,0.5587364,4,7.507061,0.9200034,4,7.264653,1.041336,4,7,1.1,4,7.869,0.5218704,4,7.256476,0.487642,4,7.358615,0.3905125,4,7.435734,0.2725336,4,7.96675,0.2690305,4,7.483716,0.1400042,4,8,-3.609557E-15,4,7.5,-7.219114E-15,4,7.483716,-0.1400042,4,7.96675,-0.2690305,4,7.435734,-0.2725336,4,7.358615,-0.3905125,4,7.256476,-0.487642,4,7.869,-0.5218704,4,7.134772,-0.5587364,4,7,-0.6,4,7.712634,-0.7433034,4,2.5,-0.6,4,7.507061,-0.9200034,4,7.264653,-1.041336,4,7,-1.1,4,2.5,-1.1,4.25,8,-3.609557E-15,4.25,7.96675,0.2690305,4,8,-3.609557E-15,4,7.96675,0.2690305,5,8,-3.609557E-15,5,7.96675,0.2690305,4.75,8,-3.609557E-15,4.75,7.96675,0.2690305,4,7.264653,-1.041336,4.25,7.264653,-1.041336,4,7.507061,-0.9200034,4.25,7.507061,-0.9200034,4.25,7.869,-0.5218704,4.25,7.96675,-0.2690305,4,7.869,-0.5218704,4,7.96675,-0.2690305,4.25,7.507061,0.9200034,4,7.507061,0.9200034,4.25,7.712634,0.7433034,4,7.712634,0.7433034,4.25,7.96675,0.2690305,4.25,7.869,0.5218704,4,7.96675,0.2690305,4,7.869,0.5218704,5,7.507061,0.9200034,4.75,7.507061,0.9200034,5,7.712634,0.7433034,4.75,7.712634,0.7433034,4,2.5,-1.1,4,2.5,-0.6,3.5,2.5,-1.1,4,2.5,0.6,4,2.5,1.1,3.5,2.5,1.1,5,2.5,0.6,5,2.5,-0.6,5,2.5,1.1,5,2.5,-1.1,5.5,2.5,1.1,5.5,2.5,-1.1,5.5,2.5,-1.1,5.5,2,-1.1,5.5,2.5,1.1,5.5,2,1.1,4,7,-1.1,4.25,7,-1.1,4,7.264653,-1.041336,4.25,7.264653,-1.041336,4.25,7,1.1,4,7,1.1,4.25,7.264653,1.041336,4,7.264653,1.041336,5,7.96675,-0.2690305,5,8,-3.609557E-15,4.75,7.96675,-0.2690305,4.75,8,-3.609557E-15,4,7,1.1,4.25,7,1.1,4,2.5,1.1,4.25,2,1.1,3.5,2,1.1,3.5,2.5,1.1,5,7.869,-0.5218704,5,7.96675,-0.2690305,4.75,7.869,-0.5218704,4.75,7.96675,-0.2690305,4.25,7.264653,1.041336,4,7.264653,1.041336,4.25,7.507061,0.9200034,4,7.507061,0.9200034,5,7.96675,0.2690305,5,7.869,0.5218704,4.75,7.96675,0.2690305,4.75,7.869,0.5218704,4.25,7.869,0.5218704,4.25,7.712634,0.7433034,4,7.869,0.5218704,4,7.712634,0.7433034,4,7.507061,-0.9200034,4.25,7.507061,-0.9200034,4,7.712634,-0.7433034,4.25,7.712634,-0.7433034,3.5,2.5,-1.1,3.5,2,-1.1,4,2.5,-1.1,4.25,2,-1.1,4.25,7,-1.1,4,7,-1.1,4.25,2,1.1,4.25,2,-1.1,3.5,2,1.1,3.5,2,-1.1,5,7.264653,1.041336,4.75,7.264653,1.041336,5,7.507061,0.9200034,4.75,7.507061,0.9200034,5,7.869,0.5218704,5,7.712634,0.7433034,4.75,7.869,0.5218704,4.75,7.712634,0.7433034,3.5,2,-1.1,3.5,2.5,-1.1,3.5,2,1.1,3.5,2.5,1.1,4.25,7.712634,-0.7433034,4.25,7.869,-0.5218704,4,7.712634,-0.7433034,4,7.869,-0.5218704,5,7,1.1,4.75,7,1.1,5,7.264653,1.041336,4.75,7.264653,1.041336,4.25,7.96675,-0.2690305,4.25,8,-3.609557E-15,4,7.96675,-0.2690305,4,8,-3.609557E-15,4.25,0,4,4.25,10,4,4.25,0,-4,4.25,10,-4,4.75,10,-4,4.75,10,4,4.75,0,-4,4.75,0,4 + } + PolygonVertexIndex: *924 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,9,10,-12,11,10,-13,10,13,-13,13,14,-13,14,15,-13,12,15,-17,15,17,-17,17,18,-17,18,19,-17,16,19,-21,19,21,-21,20,21,-23,21,23,-23,23,24,-23,22,24,-26,24,26,-26,26,27,-26,27,28,-26,25,28,-30,28,30,-30,30,31,-30,32,29,-32,31,33,-33,32,33,-35,34,33,-36,33,36,-36,37,35,-37,38,40,-40,41,39,-41,42,41,-41,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,53,52,-51,54,56,-56,57,55,-57,58,57,-57,59,57,-59,60,62,-62,63,61,-63,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,81,-81,83,82,-81,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,101,-104,105,104,-104,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,140,141,-140,141,142,-140,142,143,-140,142,144,-144,143,145,-140,143,144,-147,146,144,-148,145,148,-140,144,149,-148,147,149,-151,150,149,-152,139,148,-153,149,153,-152,151,153,-155,154,153,-156,153,156,-156,155,156,-158,158,152,-149,159,158,-149,160,159,-149,148,161,-161,162,160,-162,163,162,-162,156,164,-158,157,164,-166,165,164,-167,167,162,-164,164,167,-167,168,167,-164,166,167,-169,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,179,-179,180,178,-180,181,183,-183,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,195,-195,196,194,-196,197,199,-199,200,198,-200,201,203,-203,204,202,-204,205,204,-204,206,202,-205,207,204,-206,205,208,-208,209,207,-209,210,209,-209,211,209,-211,212,211,-211,213,212,-211,214,212,-214,215,214,-214,216,215,-214,217,215,-217,218,217,-217,219,217,-219,220,219,-219,221,220,-219,222,220,-222,223,222,-222,224,223,-222,225,223,-225,226,225,-225,227,226,-225,228,226,-228,227,206,-229,228,206,-205,229,206,-228,230,206,-230,231,206,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,245,247,-249,249,247,-247,250,249,-247,251,250,-247,247,252,-249,248,252,-254,253,252,-255,254,252,-256,252,256,-256,255,256,-258,256,258,-258,257,258,-260,259,258,-261,258,261,-261,260,261,-263,262,261,-264,263,261,-265,261,265,-265,264,265,-267,266,265,-268,265,268,-268,267,268,-270,268,270,-270,270,271,-270,271,272,-270,273,269,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,305,-305,307,306,-305,305,308,-304,309,303,-309,308,310,-310,309,310,-312,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,331,332,-334,334,333,-333,332,335,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,357,358,-360,360,359,-359,361,360,-359,362,364,-364,365,363,-365,366,368,-368,369,367,-369,370,372,-372,373,371,-373,374,376,-376,377,375,-377,378,380,-380,381,379,-381,382,384,-384,385,383,-385,386,388,-388,389,387,-389,51,52,-57,58,56,-53,81,82,-41,42,40,-83,139,152,-391,138,139,-391,140,138,-391,390,391,-141,140,391,-142,390,152,-393,393,392,-153,141,391,-143,152,158,-394,142,391,-145,158,159,-394,144,391,-150,159,160,-394,149,391,-154,153,391,-157,156,391,-165,391,393,-165,160,162,-394,167,164,-394,162,167,-394,208,205,-395,210,208,-395,205,203,-395,213,210,-395,395,213,-395,216,213,-396,218,216,-396,221,218,-396,396,394,-204,201,396,-204,201,202,-397,397,396,-203,206,397,-203,395,397,-207,224,221,-396,206,231,-396,227,224,-396,231,230,-396,229,227,-396,230,229,-396 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2772 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.6007817,-0.799413,0,-0.6007817,-0.799413,0,-0.7682213,-0.6401844,0,-0.7682213,-0.6401844,0,-0.7682213,-0.6401844,0,-0.6007817,-0.799413,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1480089,-0.988986,0,-0.1480089,-0.988986,0,-0.4012665,-0.9159613,0,-0.4012665,-0.9159613,0,-0.4012665,-0.9159613,0,-0.1480089,-0.988986,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.1088516,-0.994058,0,0,-1,0,0.1088516,-0.994058,0,0,-1,0,0.1088516,-0.994058,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3345282,-0.9423857,0,0.3345282,-0.9423857,0,0.5539015,-0.8325822,0,0.5539015,-0.8325822,0,0.5539015,-0.8325822,0,0.3345282,-0.9423857,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1480089,0.988986,0,-0.4012665,0.9159613,0,-0.1480089,0.988986,0,-0.4012665,0.9159613,0,-0.1480089,0.988986,0,-0.4012665,0.9159613,0,-0.9733051,0.2295151,0,-0.9733051,0.2295151,0,-0.8946456,0.4467764,0,-0.8946456,0.4467764,0,-0.8946456,0.4467764,0,-0.9733051,0.2295151,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.1088516,0.994058,0,0,1,0,0,1,0,0.1088516,0.994058,0,0.1088516,0.994058,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8946456,-0.4467764,0,-0.8946456,-0.4467764,0,-0.9733051,-0.2295151,0,-0.9733051,-0.2295151,0,-0.9733051,-0.2295151,0,-0.8946456,-0.4467764,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.1088516,-0.994058,0,0.1088516,-0.994058,0,0.3345282,-0.9423857,0,0.3345282,-0.9423857,0,0.3345282,-0.9423857,0,0.1088516,-0.994058,0,0.5539015,-0.8325822,0,0.5539015,-0.8325822,0,0.73994,-0.6726728,0,0.73994,-0.6726728,0,0.73994,-0.6726728,0,0.5539015,-0.8325822,0,0.881448,-0.4722809,0,0.73994,-0.6726728,0,0.881448,-0.4722809,0,0.73994,-0.6726728,0,0.881448,-0.4722809,0,0.73994,-0.6726728,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,-0.1480089,0.988986,0,0,1,0,-0.1480089,0.988986,0,0,1,0,-0.1480089,0.988986,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4012665,-0.9159613,0,-0.4012665,-0.9159613,0,-0.6007817,-0.799413,0,-0.6007817,-0.799413,0,-0.6007817,-0.799413,0,-0.4012665,-0.9159613,0,-0.7682213,-0.6401844,0,-0.7682213,-0.6401844,0,-0.8946456,-0.4467764,0,-0.8946456,-0.4467764,0,-0.8946456,-0.4467764,0,-0.7682213,-0.6401844,0,-0.8946456,0.4467764,0,-0.8946456,0.4467764,0,-0.7682213,0.6401844,0,-0.7682213,0.6401844,0,-0.7682213,0.6401844,0,-0.8946456,0.4467764,0,-0.9733051,-0.2295151,0,-0.9733051,-0.2295151,0,-1,0,0,-1,0,0,-1,0,0,-0.9733051,-0.2295151,0,-0.6007817,0.799413,0,-0.7682213,0.6401844,0,-0.6007817,0.799413,0,-0.7682213,0.6401844,0,-0.6007817,0.799413,0,-0.7682213,0.6401844,0,-0.4012665,0.9159613,0,-0.6007817,0.799413,0,-0.4012665,0.9159613,0,-0.6007817,0.799413,0,-0.4012665,0.9159613,0,-0.6007817,0.799413,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,-0.1480089,-0.988986,0,-0.1480089,-0.988986,0,-0.1480089,-0.988986,0,0,-1,0,-1,0,0,-1,0,0,-0.9733051,0.2295151,0,-0.9733051,0.2295151,0,-0.9733051,0.2295151,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,1,0,0,1,0,0,1,0,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,1,0,0,0.3345282,-0.9423857,0,0.5539015,-0.8325822,0,0.3345282,-0.9423857,0,0.5539015,-0.8325822,0,0.3345282,-0.9423857,0,0.5539015,-0.8325822,0,0.881448,-0.4722809,0,0.881448,-0.4722809,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,0.881448,-0.4722809,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.9699093,0.2434666,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,0.5539015,0.8325822,0,0.73994,0.6726728,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.1088516,-0.994058,0,0.3345282,-0.9423857,0,0.1088516,-0.994058,0,0.3345282,-0.9423857,0,0.1088516,-0.994058,0,0.3345282,-0.9423857,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,1,0,0,1,0,0,1,0,0,0.9699093,-0.2434666,0,0.1088516,0.994058,0,0,1,0,0.1088516,0.994058,0,0.1088516,0.994058,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.881448,-0.4722809,0,0.881448,-0.4722809,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,0.881448,-0.4722809,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.9699093,0.2434666,0,0.9699093,0.2434666,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.9699093,0.2434666,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.73994,0.6726728,0,0.73994,0.6726728,0,0.73994,0.6726728,0,0.881448,0.4722809,0,0.5539015,-0.8325822,0,0.73994,-0.6726728,0,0.5539015,-0.8325822,0,0.73994,-0.6726728,0,0.5539015,-0.8325822,0,0.73994,-0.6726728,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.1088516,-0.994058,0,0,-1,0,0,-1,0,0.1088516,-0.994058,0,0.1088516,-0.994058,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.3345282,0.9423857,0,0.5539015,0.8325822,0,0.881448,0.4722809,0,0.881448,0.4722809,0,0.73994,0.6726728,0,0.73994,0.6726728,0,0.73994,0.6726728,0,0.881448,0.4722809,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.73994,-0.6726728,0,0.73994,-0.6726728,0,0.881448,-0.4722809,0,0.881448,-0.4722809,0,0.881448,-0.4722809,0,0.73994,-0.6726728,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.1088516,0.994058,0,0.3345282,0.9423857,0,0.9699093,-0.2434666,0,0.9699093,-0.2434666,0,1,0,0,1,0,0,1,0,0,0.9699093,-0.2434666,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *796 { + a: 21.65354,4.330709,21.65354,-4.330709,18.70079,4.330709,18.70079,-4.330709,-19.68504,19.37942,-19.68504,19.93433,-15.74803,19.37942,-15.74803,19.93433,-4.330709,27.55906,-4.099749,28.601,-4.330709,9.84252,-3.622061,29.55536,-2.926392,30.3647,-2.362205,9.84252,-2.362205,27.55906,-2.19975,28.08966,-2.054608,30.98032,-1.91985,28.56881,-1.537451,28.97092,-1.072967,29.27454,-1.059175,31.36516,-0.5511976,29.46345,-1.404756E-15,31.49606,1.28061E-14,29.52756,0.5511976,29.46345,1.059175,31.36516,1.072967,29.27454,1.537451,28.97092,1.91985,28.56881,2.054608,30.98032,2.19975,28.08966,2.362205,27.55906,2.926392,30.3647,2.362205,9.84252,3.622061,29.55536,4.099749,28.601,4.330709,9.84252,4.330709,27.55906,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,-19.68504,25.66005,-19.68504,26.21496,-15.74803,25.66005,-15.74803,26.21496,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,-19.68504,27.55906,-18.70079,27.55906,-19.68504,9.84252,-18.70079,7.874016,-21.65354,9.84252,-21.65354,7.874016,-19.68504,23.74103,-19.68504,24.80827,-18.70079,23.74103,-18.70079,24.80827,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,19.68504,25.66005,15.74803,25.66005,19.68504,26.21496,15.74803,26.21496,19.68504,9.511827,19.68504,8.956914,15.74803,9.511827,15.74803,8.956914,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,21.65354,7.874016,18.70079,7.874016,21.65354,9.84252,19.68504,9.84252,18.70079,27.55906,19.68504,27.55906,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-19.68504,8.956914,-19.68504,9.511827,-15.74803,8.956914,-15.74803,9.511827,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-19.68504,25.96877,-19.68504,27.03601,-18.70079,25.96877,-18.70079,27.03601,-19.68504,20.05241,-19.68504,21.11964,-18.70079,20.05241,-18.70079,21.11964,-19.68504,16.19213,-18.70079,16.19213,-19.68504,15.12489,-18.70079,15.12489,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,6.299212,7.874016,6.299212,5.905512,6.299212,27.55906,6.000681,29.11116,5.325931,30.54045,4.330709,27.55906,4.317266,31.75731,4.330709,7.874016,4.099749,28.601,3.622061,29.55536,-4.330709,7.874016,3.037926,32.68546,2.926392,30.3647,2.054608,30.98032,-6.299212,5.905512,1.568121,33.26669,1.059175,31.36516,-1.421085E-14,31.49606,-2.842171E-14,33.46457,-1.059175,31.36516,-6.299212,27.55906,-6.000681,29.11116,-5.325931,30.54045,-4.330709,27.55906,-4.317266,31.75731,-4.099749,28.601,-1.568121,33.26669,-2.054608,30.98032,-2.926392,30.3647,-3.037926,32.68546,-3.622061,29.55536,19.68504,9.84252,15.74803,9.84252,19.68504,27.55906,15.74803,27.55906,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-19.68504,23.14499,-19.68504,23.69991,-15.74803,23.14499,-15.74803,23.69991,-19.68504,14.56437,-19.68504,15.11928,-15.74803,14.56437,-15.74803,15.11928,19.68504,15.11928,19.68504,14.56437,15.74803,15.11928,15.74803,14.56437,-19.68504,2.856439,-19.68504,3.411353,-15.74803,2.856439,-15.74803,3.411353,19.68504,19.37942,15.74803,19.37942,19.68504,19.93433,15.74803,19.93433,19.68504,23.14499,15.74803,23.14499,19.68504,23.69991,15.74803,23.69991,6.299212,27.55906,6.299212,5.905512,6.000681,29.11116,4.330709,7.874016,5.325931,30.54045,-6.299212,5.905512,4.330709,27.55906,4.317266,31.75731,4.099749,28.601,3.037926,32.68546,3.622061,29.55536,2.926392,30.3647,1.568121,33.26669,2.054608,30.98032,1.059175,31.36516,2.842171E-14,33.46457,1.421085E-14,31.49606,-1.568121,33.26669,-1.059175,31.36516,-2.054608,30.98032,-3.037926,32.68546,-2.926392,30.3647,-3.622061,29.55536,-4.317266,31.75731,-4.099749,28.601,-4.330709,27.55906,-5.325931,30.54045,-4.330709,7.874016,-6.000681,29.11116,-6.299212,27.55906,-6.299212,7.874016,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-19.68504,9.84252,-19.68504,27.55906,-15.74803,9.84252,-15.74803,27.55906,19.68504,3.411353,19.68504,2.856439,15.74803,3.411353,15.74803,2.856439,2.362205,9.84252,2.362205,27.55906,4.330709,9.84252,2.926392,30.3647,2.19975,28.08966,3.622061,29.55536,4.099749,28.601,4.330709,27.55906,2.054608,30.98032,1.91985,28.56881,1.537451,28.97092,1.072967,29.27454,1.059175,31.36516,0.5511976,29.46345,-1.421085E-14,31.49606,-2.842171E-14,29.52756,-0.5511976,29.46345,-1.059175,31.36516,-1.072967,29.27454,-1.537451,28.97092,-1.91985,28.56881,-2.054608,30.98032,-2.19975,28.08966,-2.362205,27.55906,-2.926392,30.3647,-2.362205,9.84252,-3.622061,29.55536,-4.099749,28.601,-4.330709,27.55906,-4.330709,9.84252,16.73228,3.863291,16.73228,2.796057,15.74803,3.863291,15.74803,2.796057,19.68504,3.863291,19.68504,2.796057,18.70079,3.863291,18.70079,2.796057,-15.74803,23.74103,-16.73228,23.74103,-15.74803,24.80827,-16.73228,24.80827,-16.73228,9.255021,-16.73228,10.32226,-15.74803,9.255021,-15.74803,10.32226,16.73228,20.05241,15.74803,20.05241,16.73228,21.11964,15.74803,21.11964,16.73228,10.32226,16.73228,9.255021,15.74803,10.32226,15.74803,9.255021,19.68504,20.05241,18.70079,20.05241,19.68504,21.11964,18.70079,21.11964,-15.74803,-4.330709,-15.74803,-2.362205,-13.77953,-4.330709,-15.74803,2.362205,-15.74803,4.330709,-13.77953,4.330709,-19.68504,2.362205,-19.68504,-2.362205,-19.68504,4.330709,-19.68504,-4.330709,-21.65354,4.330709,-21.65354,-4.330709,4.330709,9.84252,4.330709,7.874016,-4.330709,9.84252,-4.330709,7.874016,-15.74803,25.96877,-16.73228,25.96877,-15.74803,27.03601,-16.73228,27.03601,16.73228,25.96877,15.74803,25.96877,16.73228,27.03601,15.74803,27.03601,-19.68504,2.796057,-19.68504,3.863291,-18.70079,2.796057,-18.70079,3.863291,15.74803,27.55906,16.73228,27.55906,15.74803,9.84252,16.73228,7.874016,13.77953,7.874016,13.77953,9.84252,-19.68504,9.255021,-19.68504,10.32226,-18.70079,9.255021,-18.70079,10.32226,16.73228,23.74103,15.74803,23.74103,16.73228,24.80827,15.74803,24.80827,19.68504,10.32226,19.68504,9.255021,18.70079,10.32226,18.70079,9.255021,16.73228,16.19213,16.73228,15.12489,15.74803,16.19213,15.74803,15.12489,-15.74803,20.05241,-16.73228,20.05241,-15.74803,21.11964,-16.73228,21.11964,-13.77953,9.84252,-13.77953,7.874016,-15.74803,9.84252,-16.73228,7.874016,-16.73228,27.55906,-15.74803,27.55906,16.73228,4.330709,16.73228,-4.330709,13.77953,4.330709,13.77953,-4.330709,19.68504,23.74103,18.70079,23.74103,19.68504,24.80827,18.70079,24.80827,19.68504,16.19213,19.68504,15.12489,18.70079,16.19213,18.70079,15.12489,-4.330709,7.874016,-4.330709,9.84252,4.330709,7.874016,4.330709,9.84252,-16.73228,15.12489,-16.73228,16.19213,-15.74803,15.12489,-15.74803,16.19213,19.68504,25.96877,18.70079,25.96877,19.68504,27.03601,18.70079,27.03601,-16.73228,2.796057,-16.73228,3.863291,-15.74803,2.796057,-15.74803,3.863291,15.74803,0,15.74803,39.37008,-15.74803,0,-15.74803,39.37008,15.74803,39.37008,-15.74803,39.37008,15.74803,0,-15.74803,0 + } + UVIndex: *924 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,9,10,11,11,10,12,10,13,12,13,14,12,14,15,12,12,15,16,15,17,16,17,18,16,18,19,16,16,19,20,19,21,20,20,21,22,21,23,22,23,24,22,22,24,25,24,26,25,26,27,25,27,28,25,25,28,29,28,30,29,30,31,29,32,29,31,31,33,32,32,33,34,34,33,35,33,36,35,37,35,36,38,40,39,41,39,40,42,41,40,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,53,52,50,54,56,55,57,55,56,58,57,56,59,57,58,60,62,61,63,61,62,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,81,80,83,82,80,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,101,103,105,104,103,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,140,141,139,141,142,139,142,143,139,142,144,143,143,145,139,143,144,146,146,144,147,145,148,139,144,149,147,147,149,150,150,149,151,139,148,152,149,153,151,151,153,154,154,153,155,153,156,155,155,156,157,158,152,148,159,158,148,160,159,148,148,161,160,162,160,161,163,162,161,156,164,157,157,164,165,165,164,166,167,162,163,164,167,166,168,167,163,166,167,168,169,171,170,172,170,171,173,175,174,176,174,175,177,179,178,180,178,179,181,183,182,184,182,183,185,187,186,188,186,187,189,191,190,192,190,191,193,195,194,196,194,195,197,199,198,200,198,199,201,203,202,204,202,203,205,204,203,206,202,204,207,204,205,205,208,207,209,207,208,210,209,208,211,209,210,212,211,210,213,212,210,214,212,213,215,214,213,216,215,213,217,215,216,218,217,216,219,217,218,220,219,218,221,220,218,222,220,221,223,222,221,224,223,221,225,223,224,226,225,224,227,226,224,228,226,227,227,206,228,228,206,204,229,206,227,230,206,229,231,206,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,245,247,248,249,247,246,250,249,246,251,250,246,247,252,248,248,252,253,253,252,254,254,252,255,252,256,255,255,256,257,256,258,257,257,258,259,259,258,260,258,261,260,260,261,262,262,261,263,263,261,264,261,265,264,264,265,266,266,265,267,265,268,267,267,268,269,268,270,269,270,271,269,271,272,269,273,269,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,305,304,307,306,304,305,308,303,309,303,308,308,310,309,309,310,311,310,312,311,313,311,312,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,331,332,333,334,333,332,332,335,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,357,358,359,360,359,358,361,360,358,362,364,363,365,363,364,366,368,367,369,367,368,370,372,371,373,371,372,374,376,375,377,375,376,378,380,379,381,379,380,382,384,383,385,383,384,386,388,387,389,387,388,51,52,56,58,56,52,81,82,40,42,40,82,139,152,390,138,139,390,140,138,390,390,391,140,140,391,141,390,152,392,393,392,152,141,391,142,152,158,393,142,391,144,158,159,393,144,391,149,159,160,393,149,391,153,153,391,156,156,391,164,391,393,164,160,162,393,167,164,393,162,167,393,208,205,394,210,208,394,205,203,394,213,210,394,395,213,394,216,213,395,218,216,395,221,218,395,396,394,203,201,396,203,201,202,396,397,396,202,206,397,202,395,397,206,224,221,395,206,231,395,227,224,395,231,230,395,229,227,395,230,229,395 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *308 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodWindowRound, Model::RootNode + C: "OO",5110859015153806244,0 + + ;Geometry::, Model::Mesh wallWoodWindowRound + C: "OO",5059402506065114529,5110859015153806244 + + ;Material::wood, Model::Mesh wallWoodWindowRound + C: "OO",7178,5110859015153806244 + + ;Material::woodDark, Model::Mesh wallWoodWindowRound + C: "OO",7186,5110859015153806244 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowRound.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowRound.fbx.import new file mode 100644 index 0000000..aa27b02 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dhynarexw3e56" +path="res://.godot/imported/wallWoodWindowRound.fbx-54f636385ae11e78aa1036cca3fa70a7.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowRound.fbx" +dest_files=["res://.godot/imported/wallWoodWindowRound.fbx-54f636385ae11e78aa1036cca3fa70a7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowShutters.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowShutters.fbx new file mode 100644 index 0000000..460433a --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowShutters.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 762 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodWindowShutters.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodWindowShutters.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5528187963561862654, "Model::wallWoodWindowShutters", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5446349061925707938, "Geometry::", "Mesh" { + Vertices: *537 { + a: 4.25,7.5,-2,4.25,7.5,2,4,7.5,-2,4,7.5,2,4.25,2.5,2.5,4.25,2,2.5,4.25,8,2.5,4.25,7.5,2,4.25,2.5,2,4.25,7.5,-2,4.25,8,-2.5,4.25,2.5,-2,4.25,2,-2.5,4.75,2.5,2.5,4.75,8,2.5,4.75,2,2.5,4.75,2.5,2,4.75,7.5,2,4.75,2.5,-2,4.75,2,-2.5,4.75,7.5,-2,4.75,8,-2.5,5,10,4,5,10,5,4.75,10,4,4,10,5,4.25,10,4,4,10,4,4.75,3,0.25,4.25,3,0.25,4.75,7,0.25,4.25,7,0.25,5,7.5,-2,5,7.5,2,4.75,7.5,-2,4.75,7.5,2,4.75,7,-0.25,4.75,3,-0.25,4.75,7,0.25,4.75,3,0.25,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,3,1.5,5,3,1.5,4,7,1.5,5,7,1.5,4.25,3,-0.25,4.75,3,-0.25,4.25,7,-0.25,4.75,7,-0.25,4,3,-1.5,4,7,-1.5,5,3,-1.5,5,7,-1.5,4.25,2.5,2,4.25,2.5,-2,4,2.5,2,4,2.5,-2,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,0,-4,5,0,-5,4.75,0,-4,4,0,-5,4.25,0,-4,4,0,-4,4.25,2.5,2,4,2.5,2,4.25,7.5,2,4,7.5,2,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4,0,4,4,10,4,4,0,5,4,10,5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,10,4,5,0,4,5,10,5,5,0,5,5,0,5,4,0,5,5,10,5,4,10,5,5,2.5,2,5,2.5,-2,4.75,2.5,2,4.75,2.5,-2,5,0,5,5,0,4,4,0,5,4.75,0,4,4.25,0,4,4,0,4,4.75,2.5,-2,5,2.5,-2,4.75,7.5,-2,5,7.5,-2,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,10,-5,5,10,-4,4,10,-5,4.75,10,-4,4.25,10,-4,4,10,-4,4.25,3,-0.25,4.25,7,-0.25,4.25,3,0.25,4.25,7,0.25,4.25,2.5,-2,4.25,7.5,-2,4,2.5,-2,4,7.5,-2,4.75,2.5,2,4.75,7.5,2,5,2.5,2,5,7.5,2,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4,7.5,-2,4,3,-1.5,4,2.5,-2,4,2.5,2,4,7,-1.5,4,3,1.5,4,7.5,2,4,7,1.5,5,7,-1.5,4.75,7,0.25,5,7,1.5,4,7,1.5,4.75,7,-0.25,4.25,7,0.25,4,7,-1.5,4.25,7,-0.25,5,3,1.5,4.75,3,-0.25,5,3,-1.5,4,3,-1.5,4.75,3,0.25,4.25,3,-0.25,4,3,1.5,4.25,3,0.25,5,2.5,-2,5,7,-1.5,5,7.5,-2,5,7.5,2,5,3,-1.5,5,7,1.5,5,2.5,2,5,3,1.5,4.25,0,4,4.25,2.5,2.5,4.25,0,-4,4.25,10,4,4.25,10,-4,4.75,10,4,4.75,10,-4,4.75,0,4,4.75,0,-4 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,5,6,-8,7,8,-6,7,6,-10,6,10,-10,8,11,-6,11,9,-11,5,11,-13,10,12,-12,13,15,-15,14,15,-17,16,17,-15,16,15,-19,15,19,-19,17,20,-15,20,18,-20,14,20,-22,19,21,-21,22,24,-24,25,23,-25,26,25,-25,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,101,-101,103,102,-101,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,119,-119,121,120,-119,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,139,142,-139,143,139,-142,144,138,-143,145,143,-142,145,144,-143,141,144,-146,146,148,-148,149,147,-149,147,150,-147,151,147,-150,152,146,-151,153,151,-150,153,152,-151,149,152,-154,154,156,-156,157,155,-157,155,158,-155,159,155,-158,160,154,-159,161,159,-158,161,160,-159,157,160,-162,162,164,-164,165,163,-165,163,166,-163,167,163,-166,168,162,-167,169,167,-166,169,168,-167,165,168,-170,101,102,-67,68,66,-103,119,120,-25,26,24,-121,5,12,-171,171,5,-171,6,171,-171,170,12,-173,170,173,-7,174,172,-13,6,173,-11,173,174,-11,12,10,-175,14,21,-176,13,14,-176,15,13,-176,175,21,-177,175,177,-16,178,176,-22,15,177,-20,177,178,-20,21,19,-179 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *358 { + a: -16.73228,-7.874016,-16.73228,7.874016,-15.74803,-7.874016,-15.74803,7.874016,9.84252,9.84252,9.84252,7.874016,9.84252,31.49606,7.874016,29.52756,7.874016,9.84252,-7.874016,29.52756,-9.84252,31.49606,-7.874016,9.84252,-9.84252,7.874016,-9.84252,9.84252,-9.84252,31.49606,-9.84252,7.874016,-7.874016,9.84252,-7.874016,29.52756,7.874016,9.84252,9.84252,7.874016,7.874016,29.52756,9.84252,31.49606,-19.68504,15.74803,-19.68504,19.68504,-18.70079,15.74803,-15.74803,19.68504,-16.73228,15.74803,-15.74803,15.74803,18.70079,11.81102,16.73228,11.81102,18.70079,27.55906,16.73228,27.55906,-19.68504,-7.874016,-19.68504,7.874016,-18.70079,-7.874016,-18.70079,7.874016,0.984252,27.55906,0.984252,11.81102,-0.984252,27.55906,-0.984252,11.81102,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-15.74803,11.81102,-19.68504,11.81102,-15.74803,27.55906,-19.68504,27.55906,-16.73228,11.81102,-18.70079,11.81102,-16.73228,27.55906,-18.70079,27.55906,15.74803,11.81102,15.74803,27.55906,19.68504,11.81102,19.68504,27.55906,16.73228,7.874016,16.73228,-7.874016,15.74803,7.874016,15.74803,-7.874016,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,19.68504,-15.74803,19.68504,-19.68504,18.70079,-15.74803,15.74803,-19.68504,16.73228,-15.74803,15.74803,-15.74803,16.73228,9.84252,15.74803,9.84252,16.73228,29.52756,15.74803,29.52756,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,19.68504,7.874016,19.68504,-7.874016,18.70079,7.874016,18.70079,-7.874016,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,18.70079,15.74803,16.73228,15.74803,15.74803,15.74803,-18.70079,9.84252,-19.68504,9.84252,-18.70079,29.52756,-19.68504,29.52756,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-18.70079,-15.74803,-16.73228,-15.74803,-15.74803,-15.74803,-0.984252,11.81102,-0.984252,27.55906,0.984252,11.81102,0.984252,27.55906,-16.73228,9.84252,-16.73228,29.52756,-15.74803,9.84252,-15.74803,29.52756,18.70079,9.84252,18.70079,29.52756,19.68504,9.84252,19.68504,29.52756,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-7.874016,29.52756,-5.905512,11.81102,-7.874016,9.84252,7.874016,9.84252,-5.905512,27.55906,5.905512,11.81102,7.874016,29.52756,5.905512,27.55906,19.68504,-5.905512,18.70079,0.984252,19.68504,5.905512,15.74803,5.905512,18.70079,-0.984252,16.73228,0.984252,15.74803,-5.905512,16.73228,-0.984252,-19.68504,5.905512,-18.70079,-0.984252,-19.68504,-5.905512,-15.74803,-5.905512,-18.70079,0.984252,-16.73228,-0.984252,-15.74803,5.905512,-16.73228,0.984252,7.874016,9.84252,5.905512,27.55906,7.874016,29.52756,-7.874016,29.52756,5.905512,11.81102,-5.905512,27.55906,-7.874016,9.84252,-5.905512,11.81102,15.74803,0,9.84252,9.84252,-15.74803,0,15.74803,39.37008,-15.74803,39.37008,-15.74803,39.37008,15.74803,39.37008,-15.74803,0,15.74803,0 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,5,6,7,7,8,5,7,6,9,6,10,9,8,11,5,11,9,10,5,11,12,10,12,11,13,15,14,14,15,16,16,17,14,16,15,18,15,19,18,17,20,14,20,18,19,14,20,21,19,21,20,22,24,23,25,23,24,26,25,24,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,101,100,103,102,100,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,119,118,121,120,118,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,139,142,138,143,139,141,144,138,142,145,143,141,145,144,142,141,144,145,146,148,147,149,147,148,147,150,146,151,147,149,152,146,150,153,151,149,153,152,150,149,152,153,154,156,155,157,155,156,155,158,154,159,155,157,160,154,158,161,159,157,161,160,158,157,160,161,162,164,163,165,163,164,163,166,162,167,163,165,168,162,166,169,167,165,169,168,166,165,168,169,101,102,66,68,66,102,119,120,24,26,24,120,5,12,170,171,5,170,6,171,170,170,12,172,170,173,6,174,172,12,6,173,10,173,174,10,12,10,174,14,21,175,13,14,175,15,13,175,175,21,176,175,177,15,178,176,21,15,177,19,177,178,19,21,19,178 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodWindowShutters, Model::RootNode + C: "OO",5528187963561862654,0 + + ;Geometry::, Model::Mesh wallWoodWindowShutters + C: "OO",5446349061925707938,5528187963561862654 + + ;Material::wood, Model::Mesh wallWoodWindowShutters + C: "OO",7178,5528187963561862654 + + ;Material::woodDark, Model::Mesh wallWoodWindowShutters + C: "OO",7186,5528187963561862654 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowShutters.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowShutters.fbx.import new file mode 100644 index 0000000..50b982c --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowShutters.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dqpug6hn82l63" +path="res://.godot/imported/wallWoodWindowShutters.fbx-3f5121e5bda628b60f4754a2b4b79aa3.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowShutters.fbx" +dest_files=["res://.godot/imported/wallWoodWindowShutters.fbx-3f5121e5bda628b60f4754a2b4b79aa3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowSmall.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowSmall.fbx new file mode 100644 index 0000000..6d02469 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowSmall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 832 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodWindowSmall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodWindowSmall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4832411435756789460, "Model::wallWoodWindowSmall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5276114898088017845, "Geometry::", "Mesh" { + Vertices: *606 { + a: 4.75,10,-4,4.75,10,4,4.25,10,-4,4.25,10,4,4.75,0,4,4.75,0,-4,4.25,0,4,4.25,0,-4,4.25,10,-4,4.25,2,-1.8,4.25,0,-4,4.25,0,4,4.25,8,-1.8,4.25,10,4,4.25,8,1.8,4.25,2,1.8,4.25,2.5,1.8,4.75,8,1.8,4.75,10,4,4.75,8,-1.8,4.75,2.5,1.8,4.75,2,1.8,4.75,10,-4,4.75,0,4,4.75,0,-4,4.75,2,-1.8,4,3,0.8,5,3,0.8,4,7,0.8,5,7,0.8,5,7,0.8,5,7,-0.8,4,7,0.8,4,7,-0.8,5,10,-5,5,0,-5,5,10,-4,5,0,-4,5,0,5,5,0,4,4,0,5,4,0,4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,5,10,4,5,10,5,4,10,5,4,10,4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,5,10,4,5,0,4,5,10,5,5,0,5,5,0,-4,5,0,-5,4,0,-5,4,0,-4,4,0,4,4,10,4,4,0,5,4,10,5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,4,0,4,4.25,0,4,4,10,4,4.25,10,4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,7.25,-1.3,4.75,7.25,-1.3,5,3,-1.3,4.75,2.5,-1.3,5.5,2.5,-1.3,5.5,3,-1.3,3.5,2.5,-1.3,3.5,3,-1.3,3.5,2.5,1.3,3.5,3,1.3,4.25,7.25,1.3,4.25,2.5,1.3,4.25,7.5,1.05,4.25,7.5,-1.05,4.25,2.5,-1.3,4.25,7.25,-1.3,5,7.5,-1.05,5,7.5,1.05,4.75,7.5,-1.05,4.75,7.5,1.05,5.5,2.5,1.3,5.5,2.5,-1.3,4.75,2.5,1.3,4.75,2.5,-1.3,3.5,2.5,-1.3,4.25,2.5,-1.3,3.5,3,-1.3,4,3,-1.3,4.25,7.25,-1.3,4,7.25,-1.3,4,3,-0.8,4,7,-0.8,5,3,-0.8,5,7,-0.8,4,7.25,1.3,4.25,7.25,1.3,4,3,1.3,4.25,2.5,1.3,3.5,2.5,1.3,3.5,3,1.3,4.75,2.5,1.3,4.75,2.5,-1.3,4.75,7.25,-1.3,4.75,7.5,-1.05,4.75,7.25,1.3,4.75,7.5,1.05,4.25,7.5,-1.05,4.25,7.5,1.05,4,7.5,-1.05,4,7.5,1.05,5,7.25,1.3,5,7.5,1.05,5,3,1.3,5,3,0.8,5,7,0.8,5,7,-0.8,5,7.5,-1.05,5,3,-0.8,5,3,-1.3,5,7.25,-1.3,4.75,7.25,-1.3,5,7.25,-1.3,4.75,7.5,-1.05,5,7.5,-1.05,4.25,2.5,1.3,4.25,2.5,-1.3,3.5,2.5,1.3,3.5,2.5,-1.3,5.5,2.5,1.3,4.75,2.5,1.3,5.5,3,1.3,5,3,1.3,4.75,7.25,1.3,5,7.25,1.3,4,3,-1.3,4,3,-0.8,3.5,3,-1.3,4,3,0.8,4,3,1.3,3.5,3,1.3,5,3,0.8,5,3,-0.8,5,3,1.3,5,3,-1.3,5.5,3,1.3,5.5,3,-1.3,4,3,0.8,4,7,0.8,4,3,1.3,4,7.5,1.05,4,7.25,1.3,4,7,-0.8,4,7.5,-1.05,4,3,-0.8,4,7.25,-1.3,4,3,-1.3,4,7.25,-1.3,4.25,7.25,-1.3,4,7.5,-1.05,4.25,7.5,-1.05,5,7.5,1.05,5,7.25,1.3,4.75,7.5,1.05,4.75,7.25,1.3,5.5,3,-1.3,5.5,2.5,-1.3,5.5,3,1.3,5.5,2.5,1.3,4.25,7.5,1.05,4.25,7.25,1.3,4,7.5,1.05,4,7.25,1.3 + } + PolygonVertexIndex: *444 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,9,12,-9,13,8,-13,14,13,-13,11,13,-15,15,9,-12,14,16,-12,16,15,-12,17,19,-19,20,17,-19,21,20,-19,18,19,-23,18,23,-22,24,22,-20,21,23,-26,23,24,-26,19,25,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,4,39,-41,6,4,-41,41,6,-41,42,44,-44,0,43,-45,2,0,-45,45,2,-45,46,48,-48,49,47,-49,50,1,-52,52,51,-2,3,52,-2,53,52,-4,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,5,-72,72,71,-6,7,72,-6,73,72,-8,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,91,92,-94,94,93,-93,92,95,-95,96,98,-98,99,97,-99,16,14,-16,15,14,-101,100,101,-16,100,14,-103,102,14,-104,101,104,-16,15,104,-10,14,12,-104,12,9,-105,105,103,-13,104,105,-13,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,115,-118,119,118,-118,120,122,-122,123,121,-123,124,126,-126,125,126,-128,128,127,-127,126,129,-129,20,21,-18,17,21,-131,130,21,-132,21,25,-132,132,131,-26,25,19,-133,133,132,-20,17,133,-20,130,134,-18,135,133,-18,134,135,-18,136,138,-138,139,137,-139,140,142,-142,142,143,-142,143,144,-142,144,145,-142,146,141,-146,145,147,-147,147,148,-147,149,146,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,159,-162,163,162,-162,164,166,-166,167,165,-167,168,167,-167,169,168,-167,167,170,-166,171,165,-171,170,172,-172,171,172,-174,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,179,-179,177,179,-182,179,182,-182,181,182,-184,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1332 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *404 { + a: -18.70079,-15.74803,-18.70079,15.74803,-16.73228,-15.74803,-16.73228,15.74803,18.70079,15.74803,18.70079,-15.74803,16.73228,15.74803,16.73228,-15.74803,-15.74803,39.37008,-7.086614,7.874016,-15.74803,0,15.74803,0,-7.086614,31.49606,15.74803,39.37008,7.086614,31.49606,7.086614,7.874016,7.086614,9.84252,-7.086614,31.49606,-15.74803,39.37008,7.086614,31.49606,-7.086614,9.84252,-7.086614,7.874016,15.74803,39.37008,-15.74803,0,15.74803,0,7.086614,7.874016,-15.74803,11.81102,-19.68504,11.81102,-15.74803,27.55906,-19.68504,27.55906,19.68504,3.149606,19.68504,-3.149606,15.74803,3.149606,15.74803,-3.149606,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-15.74803,19.68504,-15.74803,15.74803,19.68504,3.552714E-15,15.74803,3.552714E-15,19.68504,39.37008,15.74803,39.37008,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,-19.68504,28.54331,-18.70079,28.54331,-19.68504,11.81102,-18.70079,9.84252,-21.65354,9.84252,-21.65354,11.81102,-5.11811,9.84252,-5.11811,11.81102,5.11811,9.84252,5.11811,11.81102,5.11811,28.54331,5.11811,9.84252,4.133858,29.52756,-4.133858,29.52756,-5.11811,9.84252,-5.11811,28.54331,-19.68504,-4.133858,-19.68504,4.133858,-18.70079,-4.133858,-18.70079,4.133858,21.65354,5.11811,21.65354,-5.11811,18.70079,5.11811,18.70079,-5.11811,-13.77953,9.84252,-16.73228,9.84252,-13.77953,11.81102,-15.74803,11.81102,-16.73228,28.54331,-15.74803,28.54331,15.74803,11.81102,15.74803,27.55906,19.68504,11.81102,19.68504,27.55906,15.74803,28.54331,16.73228,28.54331,15.74803,11.81102,16.73228,9.84252,13.77953,9.84252,13.77953,11.81102,-5.11811,9.84252,5.11811,9.84252,5.11811,28.54331,4.133858,29.52756,-5.11811,28.54331,-4.133858,29.52756,-16.73228,-4.133858,-16.73228,4.133858,-15.74803,-4.133858,-15.74803,4.133858,-5.11811,28.54331,-4.133858,29.52756,-5.11811,11.81102,-3.149606,11.81102,-3.149606,27.55906,3.149606,27.55906,4.133858,29.52756,3.149606,11.81102,5.11811,11.81102,5.11811,28.54331,-18.70079,16.56412,-19.68504,16.56412,-18.70079,17.95606,-19.68504,17.95606,16.73228,5.11811,16.73228,-5.11811,13.77953,5.11811,13.77953,-5.11811,21.65354,9.84252,18.70079,9.84252,21.65354,11.81102,19.68504,11.81102,18.70079,28.54331,19.68504,28.54331,-15.74803,-5.11811,-15.74803,-3.149606,-13.77953,-5.11811,-15.74803,3.149606,-15.74803,5.11811,-13.77953,5.11811,-19.68504,3.149606,-19.68504,-3.149606,-19.68504,5.11811,-19.68504,-5.11811,-21.65354,5.11811,-21.65354,-5.11811,3.149606,11.81102,3.149606,27.55906,5.11811,11.81102,4.133858,29.52756,5.11811,28.54331,-3.149606,27.55906,-4.133858,29.52756,-3.149606,11.81102,-5.11811,28.54331,-5.11811,11.81102,-15.74803,16.56412,-16.73228,16.56412,-15.74803,17.95606,-16.73228,17.95606,19.68504,17.95606,19.68504,16.56412,18.70079,17.95606,18.70079,16.56412,5.11811,11.81102,5.11811,9.84252,-5.11811,11.81102,-5.11811,9.84252,16.73228,17.95606,16.73228,16.56412,15.74803,17.95606,15.74803,16.56412 + } + UVIndex: *444 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,9,12,8,13,8,12,14,13,12,11,13,14,15,9,11,14,16,11,16,15,11,17,19,18,20,17,18,21,20,18,18,19,22,18,23,21,24,22,19,21,23,25,23,24,25,19,25,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,4,39,40,6,4,40,41,6,40,42,44,43,0,43,44,2,0,44,45,2,44,46,48,47,49,47,48,50,1,51,52,51,1,3,52,1,53,52,3,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,5,71,72,71,5,7,72,5,73,72,7,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,91,92,93,94,93,92,92,95,94,96,98,97,99,97,98,16,14,15,15,14,100,100,101,15,100,14,102,102,14,103,101,104,15,15,104,9,14,12,103,12,9,104,105,103,12,104,105,12,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,115,117,119,118,117,120,122,121,123,121,122,124,126,125,125,126,127,128,127,126,126,129,128,20,21,17,17,21,130,130,21,131,21,25,131,132,131,25,25,19,132,133,132,19,17,133,19,130,134,17,135,133,17,134,135,17,136,138,137,139,137,138,140,142,141,142,143,141,143,144,141,144,145,141,146,141,145,145,147,146,147,148,146,149,146,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,159,161,163,162,161,164,166,165,167,165,166,168,167,166,169,168,166,167,170,165,171,165,170,170,172,171,171,172,173,172,174,173,175,173,174,176,178,177,179,177,178,180,179,178,177,179,181,179,182,181,181,182,183,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *148 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodWindowSmall, Model::RootNode + C: "OO",4832411435756789460,0 + + ;Geometry::, Model::Mesh wallWoodWindowSmall + C: "OO",5276114898088017845,4832411435756789460 + + ;Material::woodDark, Model::Mesh wallWoodWindowSmall + C: "OO",7186,4832411435756789460 + + ;Material::wood, Model::Mesh wallWoodWindowSmall + C: "OO",7178,4832411435756789460 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowSmall.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowSmall.fbx.import new file mode 100644 index 0000000..f2bc03d --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowSmall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cxeklj362jdpm" +path="res://.godot/imported/wallWoodWindowSmall.fbx-5086ca6840021bde7a2dacbab4097474.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowSmall.fbx" +dest_files=["res://.godot/imported/wallWoodWindowSmall.fbx-5086ca6840021bde7a2dacbab4097474.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowStone.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowStone.fbx new file mode 100644 index 0000000..4cf9556 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowStone.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 876 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wallWoodWindowStone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wallWoodWindowStone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4661411260014455322, "Model::wallWoodWindowStone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5278921628134510885, "Geometry::", "Mesh" { + Vertices: *1224 { + a: 4.125,4.25,-1.6,4.125,5.75,-1.6,4.125,4.25,-1.1,4.125,5.75,-1.1,4.875,5.75,-1.6,4.875,4.375,-1.6,4.875,5.75,-1.1,4.875,4.375,-1.1,4.75,2.5,0.55,4.75,2.5,1.1,4.875,2.5,0.55,5,2.5,1.1,5,2.5,-1.1,4.875,2.5,-0.55,4.75,2.5,-1.1,4.75,2.5,-0.55,4.75,4.375,-1.6,4.875,4.375,-1.6,4.75,5.75,-1.6,4.875,5.75,-1.6,4.125,4.25,-1.6,4.25,4.25,-1.6,4.125,5.75,-1.6,4.25,5.75,-1.6,4.875,2,0.55,4.875,2,-0.55,4.75,2,0.55,4.75,2,-0.55,4.875,4.375,-1.1,4.875,4.375,-1.6,4.75,4.375,-1.1,4.75,4.375,-1.6,4.875,7.5,0.55,4.75,7.5,0.55,4.875,8,0.55,4.75,8,0.55,4.25,4.375,1.6,4.25,4.375,1.1,4.125,4.375,1.6,4.125,4.375,1.1,4.75,2,-0.55,4.875,2,-0.55,4.75,2.5,-0.55,4.875,2.5,-0.55,4.875,8,-0.55,4.875,7.5,-0.55,4.875,8,0.55,4.875,7.5,0.55,4.75,7.5,-0.55,4.75,7.5,-1.1,4.875,7.5,-0.55,5,7.5,-1.1,4.875,7.5,0.55,5,7.5,1.1,4.75,7.5,1.1,4.75,7.5,0.55,4.25,5.75,1.1,4.25,5.75,1.6,4.125,5.75,1.1,4.125,5.75,1.6,4.25,4.25,-1.1,4.25,4.25,-1.6,4.125,4.25,-1.1,4.125,4.25,-1.6,4.25,4.375,1.6,4.125,4.375,1.6,4.25,5.75,1.6,4.125,5.75,1.6,4.25,5.75,-1.6,4.25,5.75,-1.1,4.125,5.75,-1.6,4.125,5.75,-1.1,4.125,4.375,1.1,4.125,5.75,1.1,4.125,4.375,1.6,4.125,5.75,1.6,4.875,5.75,1.6,4.75,5.75,1.6,4.875,5.75,1.1,4.75,5.75,1.1,4.875,5.75,1.1,4.875,4.25,1.1,4.875,5.75,1.6,4.875,4.25,1.6,4.875,4.25,1.6,4.75,4.25,1.6,4.875,5.75,1.6,4.75,5.75,1.6,4.875,5.75,-1.1,4.75,5.75,-1.1,4.875,5.75,-1.6,4.75,5.75,-1.6,4.875,4.25,1.6,4.875,4.25,1.1,4.75,4.25,1.6,4.75,4.25,1.1,5,3,0.6,4,3,0.6,5,3,-0.6,4,3,-0.6,4.25,2.5,1.1,4.25,2.5,0.55,4,2.5,1.1,4.125,2.5,0.55,4.125,2.5,-0.55,4,2.5,-1.1,4.25,2.5,-1.1,4.25,2.5,-0.55,4.25,5.75,1.1,4.125,5.75,1.1,4.25,7.5,1.1,4,7.5,1.1,4.125,4.375,1.1,4,2.5,1.1,4.25,4.375,1.1,4.25,2.5,1.1,4.25,7.5,-1.1,4.25,7.5,-0.55,4,7.5,-1.1,4.125,7.5,-0.55,4.125,7.5,0.55,4,7.5,1.1,4.25,7.5,1.1,4.25,7.5,0.55,4.25,7.5,-1.1,4,7.5,-1.1,4.25,5.75,-1.1,4.125,5.75,-1.1,4.125,4.25,-1.1,4,2.5,-1.1,4.25,4.25,-1.1,4.25,2.5,-1.1,4.125,7.5,-0.55,4.125,8,-0.55,4.125,7.5,0.55,4.125,8,0.55,4.125,7.5,-0.55,4.25,7.5,-0.55,4.125,8,-0.55,4.25,8,-0.55,4.25,7.5,0.55,4.125,7.5,0.55,4.25,8,0.55,4.125,8,0.55,5,7,0.6,5,7,-0.6,4,7,0.6,4,7,-0.6,4.25,8,-0.55,4.25,8,0.55,4.125,8,-0.55,4.125,8,0.55,4.125,2,-0.55,4.125,2.5,-0.55,4.125,2,0.55,4.125,2.5,0.55,4.25,2,0.55,4.125,2,0.55,4.25,2.5,0.55,4.125,2.5,0.55,4.125,2,-0.55,4.25,2,-0.55,4.125,2.5,-0.55,4.25,2.5,-0.55,4.75,5.75,-1.1,4.875,5.75,-1.1,4.75,7.5,-1.1,5,7.5,-1.1,4.875,4.375,-1.1,5,2.5,-1.1,4.75,4.375,-1.1,4.75,2.5,-1.1,4.875,8,0.55,4.75,8,0.55,4.875,8,-0.55,4.75,8,-0.55,4.875,2,0.55,4.75,2,0.55,4.875,2.5,0.55,4.75,2.5,0.55,4.25,2,0.55,4.25,2,-0.55,4.125,2,0.55,4.125,2,-0.55,4.75,7.5,-0.55,4.875,7.5,-0.55,4.75,8,-0.55,4.875,8,-0.55,4.875,2.5,-0.55,4.875,2,-0.55,4.875,2.5,0.55,4.875,2,0.55,4.75,7.5,1.1,5,7.5,1.1,4.75,5.75,1.1,4.875,5.75,1.1,4.875,4.25,1.1,5,2.5,1.1,4.75,4.25,1.1,4.75,2.5,1.1,5,3,0.6,4.35,3.6,0.6,4,3,0.6,4,7,0.6,4.35,3.9,0.6,4.65,3.6,0.6,5,7,0.6,4.65,3.9,0.6,4.35,4.85,0.6,4.65,4.85,0.6,4.35,5.15,0.6,4.65,5.15,0.6,4.65,6.1,0.6,4.35,6.1,0.6,4.65,6.4,0.6,4.35,6.4,0.6,4,3,-0.6,4.65,3.6,-0.6,5,3,-0.6,5,7,-0.6,4.65,3.9,-0.6,4.35,3.6,-0.6,4,7,-0.6,4.35,3.9,-0.6,4.65,4.85,-0.6,4.35,4.85,-0.6,4.65,5.15,-0.6,4.35,5.15,-0.6,4.35,6.1,-0.6,4.65,6.1,-0.6,4.35,6.4,-0.6,4.65,6.4,-0.6,4,7.5,-1.1,4,3,-0.6,4,2.5,-1.1,4,2.5,1.1,4,7,-0.6,4,3,0.6,4,7.5,1.1,4,7,0.6,5,2.5,-1.1,5,7,-0.6,5,7.5,-1.1,5,7.5,1.1,5,3,-0.6,5,7,0.6,5,2.5,1.1,5,3,0.6,4.25,7.5,0.55,4.25,8,0.55,4.25,7.5,1.1,4.25,10,4,4.25,8,-0.55,4.25,5.75,1.6,4.25,0,4,4.25,5.75,1.1,4.25,4.375,1.6,4.25,4.375,1.1,4.25,2.5,1.1,4.25,2.5,0.55,4.25,2,0.55,4.25,2,-0.55,4.25,0,-4,4.25,10,-4,4.25,2.5,-1.1,4.25,2.5,-0.55,4.25,4.25,-1.6,4.25,4.25,-1.1,4.25,5.75,-1.6,4.25,7.5,-1.1,4.25,7.5,-0.55,4.25,5.75,-1.1,4.65,6.4,0.6,4.35,6.4,0.6,4.65,6.4,-0.6,4.35,6.4,-0.6,4.35,6.1,-0.6,4.35,6.4,-0.6,4.35,6.1,0.6,4.35,6.4,0.6,4.65,6.4,-0.6,4.65,6.1,-0.6,4.65,6.4,0.6,4.65,6.1,0.6,4.65,3.6,0.6,4.65,3.6,-0.6,4.35,3.6,0.6,4.35,3.6,-0.6,4.75,2.5,0.55,4.75,2,0.55,4.75,2.5,1.1,4.75,0,4,4.75,2,-0.55,4.75,4.25,1.6,4.75,10,4,4.75,4.25,1.1,4.75,5.75,1.6,4.75,5.75,1.1,4.75,7.5,1.1,4.75,7.5,0.55,4.75,8,0.55,4.75,8,-0.55,4.75,10,-4,4.75,0,-4,4.75,7.5,-1.1,4.75,7.5,-0.55,4.75,5.75,-1.6,4.75,5.75,-1.1,4.75,4.375,-1.6,4.75,2.5,-1.1,4.75,2.5,-0.55,4.75,4.375,-1.1,4.35,3.6,-0.6,4.35,3.9,-0.6,4.35,3.6,0.6,4.35,3.9,0.6,4.65,3.9,-0.6,4.65,3.6,-0.6,4.65,3.9,0.6,4.65,3.6,0.6,4.65,5.15,0.6,4.35,5.15,0.6,4.65,5.15,-0.6,4.35,5.15,-0.6,4.65,6.1,0.6,4.65,6.1,-0.6,4.35,6.1,0.6,4.35,6.1,-0.6,4.65,3.9,0.6,4.35,3.9,0.6,4.65,3.9,-0.6,4.35,3.9,-0.6,4.65,4.85,0.6,4.65,4.85,-0.6,4.35,4.85,0.6,4.35,4.85,-0.6,4.65,5.15,-0.6,4.65,4.85,-0.6,4.65,5.15,0.6,4.65,4.85,0.6,4.35,4.85,-0.6,4.35,5.15,-0.6,4.35,4.85,0.6,4.35,5.15,0.6,4.75,10,-4,4.75,10,4,4.25,10,-4,4.25,10,4,4.75,0,4,4.75,0,-4,4.25,0,4,4.25,0,-4,5,0,5,4,0,5,5,10,5,4,10,5,4,0,4,4.25,0,4,4,10,4,4.25,10,4,5,0,5,5,0,4,4,0,5,4,0,4,5,10,4,5,0,4,5,10,5,5,0,5,5,10,-5,5,0,-5,5,10,-4,5,0,-4,4,0,-5,4,10,-5,4,0,-4,4,10,-4,4.75,0,4,5,0,4,4.75,10,4,5,10,4,4.25,0,-4,4,0,-4,4.25,10,-4,4,10,-4,4,0,-5,5,0,-5,4,10,-5,5,10,-5,5,0,-4,4.75,0,-4,5,10,-4,4.75,10,-4,5,0,-4,5,0,-5,4,0,-5,4,0,-4,5,10,-5,5,10,-4,4,10,-5,4,10,-4,4,0,4,4,10,4,4,0,5,4,10,5,5,10,4,5,10,5,4,10,5,4,10,4 + } + PolygonVertexIndex: *852 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,9,10,-12,12,11,-11,10,13,-13,14,12,-14,15,14,-14,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,49,50,-52,52,51,-51,51,52,-54,54,53,-53,55,54,-53,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,103,-103,102,105,-105,105,106,-105,107,104,-107,108,110,-110,110,111,-110,109,111,-113,111,113,-113,112,113,-115,115,114,-114,116,118,-118,119,117,-119,120,119,-119,118,121,-121,121,122,-121,123,120,-123,124,126,-126,126,127,-126,127,128,-126,129,125,-129,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,166,167,-166,165,167,-169,167,169,-169,168,169,-171,171,170,-170,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,194,195,-194,195,196,-194,197,193,-197,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,201,-204,201,205,-201,206,200,-206,207,206,-206,207,204,-209,208,204,-204,208,209,-208,209,206,-208,210,208,-204,211,206,-210,211,210,-204,212,206,-212,213,212,-212,213,211,-204,214,206,-213,203,206,-215,215,213,-204,214,215,-204,216,218,-218,219,217,-219,220,217,-220,217,221,-217,222,216,-222,223,222,-222,223,220,-225,224,220,-220,224,225,-224,225,222,-224,226,224,-220,227,222,-226,227,226,-220,228,222,-228,229,228,-228,229,227,-220,230,222,-229,219,222,-231,231,229,-220,230,231,-220,232,234,-234,235,233,-235,233,236,-233,237,233,-236,238,232,-237,239,237,-236,239,238,-237,235,238,-240,240,242,-242,243,241,-243,241,244,-241,245,241,-244,246,240,-245,247,245,-244,247,246,-245,243,246,-248,248,250,-250,250,251,-250,249,251,-253,253,251,-251,254,251,-254,255,253,-251,253,256,-255,256,257,-255,257,258,-255,258,259,-255,259,260,-255,260,261,-255,254,261,-263,251,263,-253,261,264,-263,263,262,-265,261,265,-265,266,263,-265,264,267,-267,266,268,-264,269,252,-264,268,269,-264,270,252,-270,271,269,-269,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,290,291,-290,289,291,-293,293,291,-291,294,291,-294,295,293,-291,293,296,-295,296,297,-295,297,298,-295,298,299,-295,299,300,-295,300,301,-295,294,301,-303,291,303,-293,301,304,-303,303,302,-305,301,305,-305,306,303,-305,304,307,-307,306,308,-304,309,292,-304,308,309,-304,310,292,-310,311,309,-309,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,348,361,-363,350,348,-363,363,350,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,349,-394,394,393,-350,351,394,-350,395,394,-352,396,398,-398,344,397,-399,346,344,-399,399,346,-399,400,402,-402,403,401,-403,404,345,-406,406,405,-346,347,406,-346,407,406,-348 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2556 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *816 { + a: -6.299212,16.73228,-6.299212,22.63779,-4.330709,16.73228,-4.330709,22.63779,6.299212,22.63779,6.299212,17.22441,4.330709,22.63779,4.330709,17.22441,18.70079,2.165354,18.70079,4.330709,19.19291,2.165354,19.68504,4.330709,19.68504,-4.330709,19.19291,-2.165354,18.70079,-4.330709,18.70079,-2.165354,-18.70079,17.22441,-19.19291,17.22441,-18.70079,22.63779,-19.19291,22.63779,-16.24016,16.73228,-16.73228,16.73228,-16.24016,22.63779,-16.73228,22.63779,19.19291,2.165354,19.19291,-2.165354,18.70079,2.165354,18.70079,-2.165354,19.19291,-4.330709,19.19291,-6.299212,18.70079,-4.330709,18.70079,-6.299212,19.19291,29.52756,18.70079,29.52756,19.19291,31.49606,18.70079,31.49606,16.73228,6.299212,16.73228,4.330709,16.24016,6.299212,16.24016,4.330709,-18.70079,7.874016,-19.19291,7.874016,-18.70079,9.84252,-19.19291,9.84252,2.165354,31.49606,2.165354,29.52756,-2.165354,31.49606,-2.165354,29.52756,-18.70079,-2.165354,-18.70079,-4.330709,-19.19291,-2.165354,-19.68504,-4.330709,-19.19291,2.165354,-19.68504,4.330709,-18.70079,4.330709,-18.70079,2.165354,-16.73228,4.330709,-16.73228,6.299212,-16.24016,4.330709,-16.24016,6.299212,16.73228,-4.330709,16.73228,-6.299212,16.24016,-4.330709,16.24016,-6.299212,16.73228,17.22441,16.24016,17.22441,16.73228,22.63779,16.24016,22.63779,-16.73228,-6.299212,-16.73228,-4.330709,-16.24016,-6.299212,-16.24016,-4.330709,4.330709,17.22441,4.330709,22.63779,6.299212,17.22441,6.299212,22.63779,-19.19291,6.299212,-18.70079,6.299212,-19.19291,4.330709,-18.70079,4.330709,-4.330709,22.63779,-4.330709,16.73228,-6.299212,22.63779,-6.299212,16.73228,19.19291,16.73228,18.70079,16.73228,19.19291,22.63779,18.70079,22.63779,-19.19291,-4.330709,-18.70079,-4.330709,-19.19291,-6.299212,-18.70079,-6.299212,19.19291,6.299212,19.19291,4.330709,18.70079,6.299212,18.70079,4.330709,-19.68504,2.362205,-15.74803,2.362205,-19.68504,-2.362205,-15.74803,-2.362205,16.73228,4.330709,16.73228,2.165354,15.74803,4.330709,16.24016,2.165354,16.24016,-2.165354,15.74803,-4.330709,16.73228,-4.330709,16.73228,-2.165354,16.73228,22.63779,16.24016,22.63779,16.73228,29.52756,15.74803,29.52756,16.24016,17.22441,15.74803,9.84252,16.73228,17.22441,16.73228,9.84252,-16.73228,-4.330709,-16.73228,-2.165354,-15.74803,-4.330709,-16.24016,-2.165354,-16.24016,2.165354,-15.74803,4.330709,-16.73228,4.330709,-16.73228,2.165354,-16.73228,29.52756,-15.74803,29.52756,-16.73228,22.63779,-16.24016,22.63779,-16.24016,16.73228,-15.74803,9.84252,-16.73228,16.73228,-16.73228,9.84252,-2.165354,29.52756,-2.165354,31.49606,2.165354,29.52756,2.165354,31.49606,-16.24016,29.52756,-16.73228,29.52756,-16.24016,31.49606,-16.73228,31.49606,16.73228,29.52756,16.24016,29.52756,16.73228,31.49606,16.24016,31.49606,19.68504,2.362205,19.68504,-2.362205,15.74803,2.362205,15.74803,-2.362205,-16.73228,-2.165354,-16.73228,2.165354,-16.24016,-2.165354,-16.24016,2.165354,-2.165354,7.874016,-2.165354,9.84252,2.165354,7.874016,2.165354,9.84252,16.73228,7.874016,16.24016,7.874016,16.73228,9.84252,16.24016,9.84252,-16.24016,7.874016,-16.73228,7.874016,-16.24016,9.84252,-16.73228,9.84252,-18.70079,22.63779,-19.19291,22.63779,-18.70079,29.52756,-19.68504,29.52756,-19.19291,17.22441,-19.68504,9.84252,-18.70079,17.22441,-18.70079,9.84252,-19.19291,2.165354,-18.70079,2.165354,-19.19291,-2.165354,-18.70079,-2.165354,19.19291,7.874016,18.70079,7.874016,19.19291,9.84252,18.70079,9.84252,16.73228,2.165354,16.73228,-2.165354,16.24016,2.165354,16.24016,-2.165354,-18.70079,29.52756,-19.19291,29.52756,-18.70079,31.49606,-19.19291,31.49606,2.165354,9.84252,2.165354,7.874016,-2.165354,9.84252,-2.165354,7.874016,18.70079,29.52756,19.68504,29.52756,18.70079,22.63779,19.19291,22.63779,19.19291,16.73228,19.68504,9.84252,18.70079,16.73228,18.70079,9.84252,-19.68504,11.81102,-17.12598,14.17323,-15.74803,11.81102,-15.74803,27.55906,-17.12598,15.35433,-18.30709,14.17323,-19.68504,27.55906,-18.30709,15.35433,-17.12598,19.09449,-18.30709,19.09449,-17.12598,20.27559,-18.30709,20.27559,-18.30709,24.01575,-17.12598,24.01575,-18.30709,25.19685,-17.12598,25.19685,15.74803,11.81102,18.30709,14.17323,19.68504,11.81102,19.68504,27.55906,18.30709,15.35433,17.12598,14.17323,15.74803,27.55906,17.12598,15.35433,18.30709,19.09449,17.12598,19.09449,18.30709,20.27559,17.12598,20.27559,17.12598,24.01575,18.30709,24.01575,17.12598,25.19685,18.30709,25.19685,-4.330709,29.52756,-2.362205,11.81102,-4.330709,9.84252,4.330709,9.84252,-2.362205,27.55906,2.362205,11.81102,4.330709,29.52756,2.362205,27.55906,4.330709,9.84252,2.362205,27.55906,4.330709,29.52756,-4.330709,29.52756,2.362205,11.81102,-2.362205,27.55906,-4.330709,9.84252,-2.362205,11.81102,2.165354,29.52756,2.165354,31.49606,4.330709,29.52756,15.74803,39.37008,-2.165354,31.49606,6.299212,22.63779,15.74803,0,4.330709,22.63779,6.299212,17.22441,4.330709,17.22441,4.330709,9.84252,2.165354,9.84252,2.165354,7.874016,-2.165354,7.874016,-15.74803,0,-15.74803,39.37008,-4.330709,9.84252,-2.165354,9.84252,-6.299212,16.73228,-4.330709,16.73228,-6.299212,22.63779,-4.330709,29.52756,-2.165354,29.52756,-4.330709,22.63779,-18.30709,2.362205,-17.12598,2.362205,-18.30709,-2.362205,-17.12598,-2.362205,-2.362205,24.01575,-2.362205,25.19685,2.362205,24.01575,2.362205,25.19685,2.362205,25.19685,2.362205,24.01575,-2.362205,25.19685,-2.362205,24.01575,18.30709,2.362205,18.30709,-2.362205,17.12598,2.362205,17.12598,-2.362205,-2.165354,9.84252,-2.165354,7.874016,-4.330709,9.84252,-15.74803,0,2.165354,7.874016,-6.299212,16.73228,-15.74803,39.37008,-4.330709,16.73228,-6.299212,22.63779,-4.330709,22.63779,-4.330709,29.52756,-2.165354,29.52756,-2.165354,31.49606,2.165354,31.49606,15.74803,39.37008,15.74803,0,4.330709,29.52756,2.165354,29.52756,6.299212,22.63779,4.330709,22.63779,6.299212,17.22441,4.330709,9.84252,2.165354,9.84252,4.330709,17.22441,-2.362205,14.17323,-2.362205,15.35433,2.362205,14.17323,2.362205,15.35433,2.362205,15.35433,2.362205,14.17323,-2.362205,15.35433,-2.362205,14.17323,-18.30709,2.362205,-17.12598,2.362205,-18.30709,-2.362205,-17.12598,-2.362205,18.30709,2.362205,18.30709,-2.362205,17.12598,2.362205,17.12598,-2.362205,-18.30709,2.362205,-17.12598,2.362205,-18.30709,-2.362205,-17.12598,-2.362205,18.30709,2.362205,18.30709,-2.362205,17.12598,2.362205,17.12598,-2.362205,2.362205,20.27559,2.362205,19.09449,-2.362205,20.27559,-2.362205,19.09449,-2.362205,19.09449,-2.362205,20.27559,2.362205,19.09449,2.362205,20.27559,-18.70079,-15.74803,-18.70079,15.74803,-16.73228,-15.74803,-16.73228,15.74803,18.70079,15.74803,18.70079,-15.74803,16.73228,15.74803,16.73228,-15.74803,19.68504,0,15.74803,0,19.68504,39.37008,15.74803,39.37008,-15.74803,0,-16.73228,0,-15.74803,39.37008,-16.73228,39.37008,19.68504,19.68504,19.68504,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,39.37008,-15.74803,0,-19.68504,39.37008,-19.68504,0,19.68504,39.37008,19.68504,0,15.74803,39.37008,15.74803,0,-19.68504,0,-19.68504,39.37008,-15.74803,0,-15.74803,39.37008,-18.70079,0,-19.68504,0,-18.70079,39.37008,-19.68504,39.37008,16.73228,0,15.74803,0,16.73228,39.37008,15.74803,39.37008,-15.74803,0,-19.68504,0,-15.74803,39.37008,-19.68504,39.37008,19.68504,0,18.70079,0,19.68504,39.37008,18.70079,39.37008,19.68504,-15.74803,19.68504,-19.68504,15.74803,-19.68504,15.74803,-15.74803,-19.68504,-19.68504,-19.68504,-15.74803,-15.74803,-19.68504,-15.74803,-15.74803,15.74803,0,15.74803,39.37008,19.68504,0,19.68504,39.37008,-19.68504,15.74803,-19.68504,19.68504,-15.74803,19.68504,-15.74803,15.74803 + } + UVIndex: *852 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,9,10,11,12,11,10,10,13,12,14,12,13,15,14,13,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,49,50,51,52,51,50,51,52,53,54,53,52,55,54,52,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,103,102,102,105,104,105,106,104,107,104,106,108,110,109,110,111,109,109,111,112,111,113,112,112,113,114,115,114,113,116,118,117,119,117,118,120,119,118,118,121,120,121,122,120,123,120,122,124,126,125,126,127,125,127,128,125,129,125,128,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,166,167,165,165,167,168,167,169,168,168,169,170,171,170,169,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,194,195,193,195,196,193,197,193,196,196,198,197,199,197,198,200,202,201,203,201,202,204,201,203,201,205,200,206,200,205,207,206,205,207,204,208,208,204,203,208,209,207,209,206,207,210,208,203,211,206,209,211,210,203,212,206,211,213,212,211,213,211,203,214,206,212,203,206,214,215,213,203,214,215,203,216,218,217,219,217,218,220,217,219,217,221,216,222,216,221,223,222,221,223,220,224,224,220,219,224,225,223,225,222,223,226,224,219,227,222,225,227,226,219,228,222,227,229,228,227,229,227,219,230,222,228,219,222,230,231,229,219,230,231,219,232,234,233,235,233,234,233,236,232,237,233,235,238,232,236,239,237,235,239,238,236,235,238,239,240,242,241,243,241,242,241,244,240,245,241,243,246,240,244,247,245,243,247,246,244,243,246,247,248,250,249,250,251,249,249,251,252,253,251,250,254,251,253,255,253,250,253,256,254,256,257,254,257,258,254,258,259,254,259,260,254,260,261,254,254,261,262,251,263,252,261,264,262,263,262,264,261,265,264,266,263,264,264,267,266,266,268,263,269,252,263,268,269,263,270,252,269,271,269,268,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,290,291,289,289,291,292,293,291,290,294,291,293,295,293,290,293,296,294,296,297,294,297,298,294,298,299,294,299,300,294,300,301,294,294,301,302,291,303,292,301,304,302,303,302,304,301,305,304,306,303,304,304,307,306,306,308,303,309,292,303,308,309,303,310,292,309,311,309,308,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,348,361,362,350,348,362,363,350,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,349,393,394,393,349,351,394,349,395,394,351,396,398,397,344,397,398,346,344,398,399,346,398,400,402,401,403,401,402,404,345,405,406,405,345,347,406,345,407,406,347 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *284 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7174, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.5032929,0.6660821,0.735849 + P: "DiffuseColor", "Color", "", "A",0.5032929,0.6660821,0.735849 + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wallWoodWindowStone, Model::RootNode + C: "OO",4661411260014455322,0 + + ;Geometry::, Model::Mesh wallWoodWindowStone + C: "OO",5278921628134510885,4661411260014455322 + + ;Material::stoneDark, Model::Mesh wallWoodWindowStone + C: "OO",7174,4661411260014455322 + + ;Material::woodDark, Model::Mesh wallWoodWindowStone + C: "OO",7186,4661411260014455322 + + ;Material::wood, Model::Mesh wallWoodWindowStone + C: "OO",7178,4661411260014455322 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowStone.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowStone.fbx.import new file mode 100644 index 0000000..faca812 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowStone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bjk6qkh8ou1f" +path="res://.godot/imported/wallWoodWindowStone.fbx-6be489e45df8c75bdfddd35bd8faf22a.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wallWoodWindowStone.fbx" +dest_files=["res://.godot/imported/wallWoodWindowStone.fbx-6be489e45df8c75bdfddd35bd8faf22a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermill.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermill.fbx new file mode 100644 index 0000000..30eb846 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermill.fbx @@ -0,0 +1,864 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 50 + Millisecond: 957 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "watermill.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "watermill.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5418027936806088197, "Model::watermill", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5518706401397278820, "Geometry::", "Mesh" { + Vertices: *2256 { + a: -2.85,7.153646,0.5239076,-2.85,7.749838,0.5239076,-2.85,7.153646,4.130159,-2.85,8.157724,4.709864,-2.85,4.03054,5.933285,-2.85,4.328636,6.449602,-2.85,7.749838,-0.5239076,-2.85,3.212506E-13,9.419728,-2.85,8.157724,-4.709864,-2.85,3.421201,6.97351,-2.85,7.153646,-4.130159,-2.85,7.153646,-0.5239076,-2.85,4.03054,-5.933285,-2.85,4.328636,-6.449602,-2.85,3.421201,-6.97351,-2.85,3.212506E-13,-9.419728,-2.85,3.212506E-13,-8.260319,-2.85,3.123106,-6.457192,-2.85,-3.421201,-6.97351,-2.85,-3.123106,-6.457192,-2.85,-8.157724,-4.709864,-2.85,-4.328636,-6.449602,-2.85,-4.03054,-5.933285,-2.85,-7.153646,-4.130159,-2.85,-7.749838,-0.5239076,-2.85,-7.153646,-0.5239076,-2.85,-8.157724,4.709864,-2.85,-7.749838,0.5239076,-2.85,-7.153646,0.5239076,-2.85,-7.153646,4.130159,-2.85,-4.03054,5.933285,-2.85,-4.328636,6.449602,-2.85,-3.421201,6.97351,-2.85,3.212506E-13,8.260319,-2.85,-3.123106,6.457192,-2.85,3.123106,6.457192,-1.85,-7.153646,4.130159,-1.85,-3.104219E-13,8.260319,-2.85,-7.153646,4.130159,-2.85,-4.03054,5.933285,-2.85,-3.123106,6.457192,-2.85,3.212506E-13,8.260319,2.85,8.157724,-4.709864,2.85,8.157724,4.709864,2.35,8.157724,-4.709864,2.35,8.157724,4.709864,2.85,-8.157724,4.709864,2.85,-8.157724,-4.709864,2.35,-8.157724,4.709864,2.35,-8.157724,-4.709864,2.85,7.153646,4.130159,2.85,7.153646,0.5239076,1.85,7.153646,4.130159,2.85,7.153646,-0.5239076,1.85,7.153646,-4.130159,2.85,7.153646,-4.130159,1.85,-7.153646,-4.130159,1.85,-3.104219E-13,-8.260319,2.85,-7.153646,-4.130159,2.85,-4.03054,-5.933285,2.85,-3.123106,-6.457192,2.85,3.212506E-13,-8.260319,2.85,3.123106,-6.457192,2.85,4.03054,-5.933285,2.85,0.1950436,-1.385641,2.85,1.102478,-0.861733,2.85,-1.102478,-0.861733,2.85,-0.1950436,-1.385641,2.85,-4.03054,-5.933285,2.85,-3.123106,-6.457192,2.85,-1.297522,-0.5239076,2.85,1.297522,-0.5239076,2.85,-7.153646,-0.5239076,2.85,7.153646,-0.5239076,2.85,-0.3,-0.3,2.85,-7.153646,0.5239076,2.85,0.3,-0.3,2.85,-0.3,0.3,2.85,7.153646,0.5239076,2.85,0.3,0.3,2.85,-1.297522,0.5239076,2.85,1.297522,0.5239076,2.85,-1.102478,0.861733,2.85,1.102478,0.861733,2.85,-0.1950436,1.385641,2.85,-4.03054,5.933285,2.85,-3.123106,6.457192,2.85,0.1950436,1.385641,2.85,4.03054,5.933285,2.85,3.123106,6.457192,2.85,3.421201,-6.97351,2.85,3.212506E-13,-8.260319,2.85,3.123106,-6.457192,2.85,3.212506E-13,-9.419728,2.85,-3.421201,-6.97351,2.85,-3.123106,-6.457192,2.85,8.157724,-4.709864,2.85,-8.157724,-4.709864,2.85,4.328636,-6.449602,2.85,-4.328636,-6.449602,2.85,4.03054,-5.933285,2.85,-4.03054,-5.933285,2.85,7.153646,-4.130159,2.85,-7.153646,-4.130159,2.85,7.749838,-0.5239076,2.85,7.153646,-0.5239076,2.85,8.157724,4.709864,2.85,7.749838,0.5239076,2.85,7.153646,0.5239076,2.85,7.153646,4.130159,2.85,4.03054,5.933285,2.85,4.328636,6.449602,2.85,3.212506E-13,9.419728,2.85,3.421201,6.97351,2.85,-7.749838,-0.5239076,2.85,-7.153646,-0.5239076,2.85,-8.157724,4.709864,2.85,-7.749838,0.5239076,2.85,-7.153646,4.130159,2.85,-7.153646,0.5239076,2.85,-4.03054,5.933285,2.85,-4.328636,6.449602,2.85,-3.421201,6.97351,2.85,3.212506E-13,8.260319,2.85,3.123106,6.457192,2.85,-3.123106,6.457192,1.85,-3.104219E-13,-8.260319,1.85,7.153646,-4.130159,2.85,3.212506E-13,-8.260319,2.85,3.123106,-6.457192,2.85,4.03054,-5.933285,2.85,7.153646,-4.130159,2.35,5.414336E-15,9.419728,2.35,8.157724,4.709864,2.85,3.212506E-13,9.419728,2.85,8.157724,4.709864,2.35,-8.157724,4.709864,2.35,5.414336E-15,9.419728,2.85,-8.157724,4.709864,2.85,3.212506E-13,9.419728,1.85,-7.153646,4.130159,2.85,-7.153646,4.130159,1.85,-3.104219E-13,8.260319,2.85,-4.03054,5.933285,2.85,-3.123106,6.457192,2.85,3.212506E-13,8.260319,1.85,-3.104219E-13,8.260319,2.85,3.212506E-13,8.260319,1.85,7.153646,4.130159,2.85,3.123106,6.457192,2.85,4.03054,5.933285,2.85,7.153646,4.130159,2.35,5.414336E-15,-9.419728,2.85,3.212506E-13,-9.419728,2.35,8.157724,-4.709864,2.85,8.157724,-4.709864,2.35,-8.157724,-4.709864,2.85,-8.157724,-4.709864,2.35,5.414336E-15,-9.419728,2.85,3.212506E-13,-9.419728,-2.35,-8.157724,-4.709864,-2.35,5.414336E-15,-9.419728,-2.85,-8.157724,-4.709864,-2.85,3.212506E-13,-9.419728,-2.85,-3.123106,-6.457192,-2.85,-4.03054,-5.933285,-2.85,-0.1950436,-1.385641,-2.85,-1.102478,-0.861733,-2.85,1.102478,-0.861733,-2.85,-1.297522,-0.5239076,-2.85,0.1950436,-1.385641,-2.85,4.03054,-5.933285,-2.85,3.123106,-6.457192,-2.85,1.297522,-0.5239076,-2.85,-7.153646,-0.5239076,-2.85,7.153646,-0.5239076,-2.85,0.3,-0.3,-2.85,7.153646,0.5239076,-2.85,-0.3,-0.3,-2.85,-7.153646,0.5239076,-2.85,0.3,0.3,-2.85,-0.3,0.3,-2.85,-1.297522,0.5239076,-2.85,1.297522,0.5239076,-2.85,-1.102478,0.861733,-2.85,1.102478,0.861733,-2.85,-0.1950436,1.385641,-2.85,-4.03054,5.933285,-2.85,-3.123106,6.457192,-2.85,0.1950436,1.385641,-2.85,4.03054,5.933285,-2.85,3.123106,6.457192,2.85,-7.153646,-4.130159,2.85,-7.153646,-0.5239076,1.85,-7.153646,-4.130159,1.85,-7.153646,4.130159,2.85,-7.153646,0.5239076,2.85,-7.153646,4.130159,-1.85,7.153646,4.130159,-1.85,7.153646,-4.130159,-2.85,7.153646,4.130159,-2.85,7.153646,0.5239076,-2.85,7.153646,-0.5239076,-2.85,7.153646,-4.130159,-1.85,-7.153646,-4.130159,-1.85,-7.153646,4.130159,-2.85,-7.153646,-4.130159,-2.85,-7.153646,-0.5239076,-2.85,-7.153646,4.130159,-2.85,-7.153646,0.5239076,-2.35,-8.157724,4.709864,-2.85,-8.157724,4.709864,-2.35,5.414336E-15,9.419728,-2.85,3.212506E-13,9.419728,-1.85,-7.153646,-4.130159,-2.85,-7.153646,-4.130159,-1.85,-3.104219E-13,-8.260319,-2.85,-4.03054,-5.933285,-2.85,-3.123106,-6.457192,-2.85,3.212506E-13,-8.260319,-1.85,-3.104219E-13,-8.260319,-2.85,3.212506E-13,-8.260319,-1.85,7.153646,-4.130159,-2.85,3.123106,-6.457192,-2.85,4.03054,-5.933285,-2.85,7.153646,-4.130159,-2.35,8.157724,-4.709864,-2.35,8.157724,4.709864,-2.85,8.157724,-4.709864,-2.85,8.157724,4.709864,-2.35,5.414336E-15,-9.419728,-2.35,8.157724,-4.709864,-2.85,3.212506E-13,-9.419728,-2.85,8.157724,-4.709864,-2.35,5.414336E-15,9.419728,-2.85,3.212506E-13,9.419728,-2.35,8.157724,4.709864,-2.85,8.157724,4.709864,-1.85,-3.104219E-13,8.260319,-1.85,7.153646,4.130159,-2.85,3.212506E-13,8.260319,-2.85,3.123106,6.457192,-2.85,4.03054,5.933285,-2.85,7.153646,4.130159,-2.35,-8.157724,4.709864,-2.35,-8.157724,-4.709864,-2.85,-8.157724,4.709864,-2.85,-8.157724,-4.709864,2.85,-0.3,0.3,-2.85,-0.3,0.3,2.85,0.3,0.3,-2.85,0.3,0.3,2.85,-0.3,0.3,2.85,-0.3,-0.3,-2.85,-0.3,0.3,-2.85,-0.3,-0.3,2.85,0.3,-0.3,2.85,0.3,0.3,-2.85,0.3,-0.3,-2.85,0.3,0.3,2.85,-0.3,-0.3,2.85,0.3,-0.3,-2.85,-0.3,-0.3,-2.85,0.3,-0.3,-3.15,3.421201,-6.97351,-2.85,3.421201,-6.97351,-3.15,4.328636,-6.449602,-2.85,4.328636,-6.449602,-3.15,-4.328636,6.449602,-3.15,-3.421201,6.97351,-2.85,-4.328636,6.449602,-2.85,-3.421201,6.97351,2.35,-8.660254,5,2.35,-8.660254,-5,1.85,-8.660254,5,1.85,-8.660254,-5,3.15,-0.1950436,1.385641,3.15,-0.8,1.385641,3.15,-3.421201,6.97351,3.15,-4.328636,6.449602,3.15,-1.102478,0.861733,1.85,-8.660254,-5,2.35,-8.660254,-5,1.85,-3.104219E-13,-10,2.35,5.414336E-15,-10,2.85,1.297522,-0.5239076,3.15,1.297522,-0.5239076,2.85,7.153646,-0.5239076,3.15,7.749838,-0.5239076,2.85,7.749838,-0.5239076,-1.85,-8.660254,5,-2.35,-8.660254,5,-1.85,-3.104219E-13,10,-2.35,5.414336E-15,10,3.15,-4.328636,-6.449602,2.85,-4.328636,-6.449602,3.15,-1.102478,-0.861733,2.85,-1.102478,-0.861733,2.85,-4.03054,-5.933285,-1.85,-3.104219E-13,-10,-1.85,8.660254,-5,-2.35,5.414336E-15,-10,-2.35,8.660254,-5,2.85,-4.328636,-6.449602,3.15,-4.328636,-6.449602,2.85,-3.421201,-6.97351,3.15,-3.421201,-6.97351,3.15,-1.297522,-0.5239076,3.15,-7.749838,-0.5239076,3.15,-1.6,-1.674834E-12,3.15,-7.749838,0.5239076,3.15,-1.297522,0.5239076,3.15,4.328636,-6.449602,3.15,0.8,-1.385641,3.15,1.102478,-0.861733,3.15,0.1950436,-1.385641,3.15,3.421201,-6.97351,3.15,-3.421201,-6.97351,3.15,-4.328636,-6.449602,3.15,-0.1950436,-1.385641,3.15,-0.8,-1.385641,3.15,-1.102478,-0.861733,3.15,-7.749838,0.5239076,3.15,-7.749838,-0.5239076,2.85,-7.749838,0.5239076,2.85,-7.749838,-0.5239076,1.85,-8.660254,5,1.85,-3.104219E-13,10,2.35,-8.660254,5,2.35,5.414336E-15,10,2.35,8.660254,-5,2.35,8.660254,5,1.85,8.660254,-5,1.85,8.660254,5,3.15,-3.421201,-6.97351,3.15,-0.1950436,-1.385641,2.85,-3.421201,-6.97351,2.85,-3.123106,-6.457192,2.85,-0.1950436,-1.385641,3.15,1.102478,-0.861733,2.85,1.102478,-0.861733,3.15,4.328636,-6.449602,2.85,4.03054,-5.933285,2.85,4.328636,-6.449602,1.85,-3.104219E-13,10,1.85,8.660254,5,2.35,5.414336E-15,10,2.35,8.660254,5,3.15,7.749838,-0.5239076,3.15,7.749838,0.5239076,2.85,7.749838,-0.5239076,2.85,7.749838,0.5239076,3.15,-3.421201,6.97351,2.85,-3.421201,6.97351,3.15,-0.1950436,1.385641,2.85,-0.1950436,1.385641,2.85,-3.123106,6.457192,3.15,1.297522,0.5239076,2.85,1.297522,0.5239076,3.15,7.749838,0.5239076,2.85,7.153646,0.5239076,2.85,7.749838,0.5239076,3.15,1.102478,0.861733,3.15,4.328636,6.449602,2.85,1.102478,0.861733,2.85,4.03054,5.933285,2.85,4.328636,6.449602,1.85,-3.104219E-13,-10,2.35,5.414336E-15,-10,1.85,8.660254,-5,2.35,8.660254,-5,3.15,1.102478,0.861733,3.15,0.8,1.385641,3.15,4.328636,6.449602,3.15,0.1950436,1.385641,3.15,3.421201,6.97351,2.85,3.421201,6.97351,2.85,4.328636,6.449602,3.15,3.421201,6.97351,3.15,4.328636,6.449602,3.15,-1.102478,0.861733,2.85,-1.102478,0.861733,3.15,-4.328636,6.449602,2.85,-4.03054,5.933285,2.85,-4.328636,6.449602,3.55,0.3341032,-0.5786837,3.55,-0.3341032,-0.5786837,3.55,0.6682063,-3.638433E-12,3.55,-0.6682063,-3.638433E-12,3.55,0.3341032,0.5786837,3.55,-0.3341032,0.5786837,-2.85,-7.749838,-0.5239076,-3.15,-7.749838,-0.5239076,-2.85,-7.749838,0.5239076,-3.15,-7.749838,0.5239076,-2.85,-0.1950436,1.385641,-2.85,-3.123106,6.457192,-3.15,-0.1950436,1.385641,-2.85,-3.421201,6.97351,-3.15,-3.421201,6.97351,-2.85,7.749838,-0.5239076,-2.85,7.749838,0.5239076,-3.15,7.749838,-0.5239076,-3.15,7.749838,0.5239076,-3.15,0.1950436,1.385641,-3.15,0.8,1.385641,-3.15,3.421201,6.97351,-3.15,4.328636,6.449602,-3.15,1.102478,0.861733,2.85,-7.749838,-0.5239076,3.15,-7.749838,-0.5239076,2.85,-7.153646,-0.5239076,3.15,-1.297522,-0.5239076,2.85,-1.297522,-0.5239076,3.15,3.421201,-6.97351,3.15,4.328636,-6.449602,2.85,3.421201,-6.97351,2.85,4.328636,-6.449602,-2.85,-7.749838,0.5239076,-3.15,-7.749838,0.5239076,-2.85,-7.153646,0.5239076,-3.15,-1.297522,0.5239076,-2.85,-1.297522,0.5239076,-2.85,-7.749838,-0.5239076,-2.85,-7.153646,-0.5239076,-3.15,-7.749838,-0.5239076,-3.15,-1.297522,-0.5239076,-2.85,-1.297522,-0.5239076,-2.85,4.328636,6.449602,-3.15,4.328636,6.449602,-2.85,4.03054,5.933285,-2.85,1.102478,0.861733,-3.15,1.102478,0.861733,3.15,-4.328636,6.449602,2.85,-4.328636,6.449602,3.15,-3.421201,6.97351,2.85,-3.421201,6.97351,3.15,7.749838,-0.5239076,3.15,1.297522,-0.5239076,3.15,7.749838,0.5239076,3.15,1.6,-1.674834E-12,3.15,1.297522,0.5239076,-1.85,8.660254,-5,-1.85,8.660254,5,-2.35,8.660254,-5,-2.35,8.660254,5,-3.55,-0.3341032,-0.5786837,-3.55,0.3341032,-0.5786837,-3.55,-0.6682063,-3.638433E-12,-3.55,0.6682063,-3.638433E-12,-3.55,-0.3341032,0.5786837,-3.55,0.3341032,0.5786837,-3.15,-7.749838,-0.5239076,-3.15,-1.297522,-0.5239076,-3.15,-7.749838,0.5239076,-3.15,-1.6,-1.674834E-12,-3.15,-1.297522,0.5239076,-3.15,1.297522,0.5239076,-3.15,7.749838,0.5239076,-2.85,1.297522,0.5239076,-2.85,7.153646,0.5239076,-2.85,7.749838,0.5239076,-2.85,1.297522,-0.5239076,-2.85,7.153646,-0.5239076,-3.15,1.297522,-0.5239076,-3.15,7.749838,-0.5239076,-2.85,7.749838,-0.5239076,3.15,0.1950436,1.385641,2.85,0.1950436,1.385641,3.15,3.421201,6.97351,2.85,3.123106,6.457192,2.85,3.421201,6.97351,2.85,-7.749838,0.5239076,2.85,-7.153646,0.5239076,3.15,-7.749838,0.5239076,3.15,-1.297522,0.5239076,2.85,-1.297522,0.5239076,-3.15,-4.328636,-6.449602,-3.15,-0.8,-1.385641,-3.15,-1.102478,-0.861733,-3.15,-0.1950436,-1.385641,-3.15,-3.421201,-6.97351,-3.15,1.297522,-0.5239076,-3.15,7.749838,-0.5239076,-3.15,1.6,-1.674834E-12,-3.15,7.749838,0.5239076,-3.15,1.297522,0.5239076,-3.15,3.421201,-6.97351,-3.15,4.328636,-6.449602,-3.15,0.1950436,-1.385641,-3.15,0.8,-1.385641,-3.15,1.102478,-0.861733,-3.15,-1.102478,0.861733,-3.15,-0.8,1.385641,-3.15,-4.328636,6.449602,-3.15,-0.1950436,1.385641,-3.15,-3.421201,6.97351,-2.85,-1.102478,-0.861733,-2.85,-4.03054,-5.933285,-3.15,-1.102478,-0.861733,-2.85,-4.328636,-6.449602,-3.15,-4.328636,-6.449602,-1.85,-3.104219E-13,10,-2.35,5.414336E-15,10,-1.85,8.660254,5,-2.35,8.660254,5,-2.85,-4.328636,6.449602,-2.85,-4.03054,5.933285,-3.15,-4.328636,6.449602,-2.85,-1.102478,0.861733,-3.15,-1.102478,0.861733,-2.85,3.421201,6.97351,-3.15,3.421201,6.97351,-2.85,4.328636,6.449602,-3.15,4.328636,6.449602,-1.85,-8.660254,5,-1.85,-8.660254,-5,-2.35,-8.660254,5,-2.35,-8.660254,-5,-2.85,-4.328636,-6.449602,-2.85,-3.421201,-6.97351,-3.15,-4.328636,-6.449602,-3.15,-3.421201,-6.97351,-2.85,3.421201,6.97351,-2.85,3.123106,6.457192,-3.15,3.421201,6.97351,-2.85,0.1950436,1.385641,-3.15,0.1950436,1.385641,-1.85,-8.660254,-5,-1.85,-3.104219E-13,-10,-2.35,-8.660254,-5,-2.35,5.414336E-15,-10,-2.85,4.328636,-6.449602,-2.85,4.03054,-5.933285,-3.15,4.328636,-6.449602,-2.85,1.102478,-0.861733,-3.15,1.102478,-0.861733,-2.85,-3.421201,-6.97351,-2.85,-3.123106,-6.457192,-3.15,-3.421201,-6.97351,-3.15,-0.1950436,-1.385641,-2.85,-0.1950436,-1.385641,1.85,-3.104219E-13,-10,1.85,-3.104219E-13,-9.419728,1.85,-8.660254,-5,1.85,8.660254,-5,1.85,-8.157724,-4.709864,1.85,-8.660254,5,1.85,8.157724,-4.709864,1.85,8.660254,5,1.85,-3.104219E-13,-8.260319,1.85,-7.153646,-4.130159,1.85,7.153646,-4.130159,1.85,-8.157724,4.709864,1.85,-7.153646,4.130159,1.85,-3.104219E-13,8.260319,1.85,8.157724,4.709864,1.85,7.153646,4.130159,1.85,-3.104219E-13,9.419728,1.85,-3.104219E-13,10,-2.35,8.157724,4.709864,-2.35,8.157724,-4.709864,-2.35,8.660254,5,-2.35,5.414336E-15,9.419728,-2.35,8.660254,-5,-2.35,5.414336E-15,10,-2.35,5.414336E-15,-9.419728,-2.35,5.414336E-15,-10,-2.35,-8.660254,-5,-2.35,-8.157724,-4.709864,-2.35,-8.660254,5,-2.35,-8.157724,4.709864,2.35,5.414336E-15,-10,2.35,5.414336E-15,-9.419728,2.35,8.660254,-5,2.35,-8.660254,-5,2.35,8.157724,-4.709864,2.35,-8.157724,-4.709864,2.35,8.660254,5,2.35,8.157724,4.709864,2.35,-8.660254,5,2.35,-8.157724,4.709864,2.35,5.414336E-15,9.419728,2.35,5.414336E-15,10,-1.85,7.153646,4.130159,-1.85,8.157724,4.709864,-1.85,7.153646,-4.130159,-1.85,-3.104219E-13,8.260319,-1.85,8.157724,-4.709864,-1.85,-3.104219E-13,-8.260319,-1.85,-3.104219E-13,9.419728,-1.85,8.660254,5,-1.85,-3.104219E-13,10,-1.85,8.660254,-5,-1.85,-8.660254,5,-1.85,-8.157724,4.709864,-1.85,-7.153646,4.130159,-1.85,-7.153646,-4.130159,-1.85,-3.104219E-13,-9.419728,-1.85,-3.104219E-13,-10,-1.85,-8.660254,-5,-1.85,-8.157724,-4.709864,2.85,-0.1950436,1.385641,2.85,0.1950436,1.385641,3.15,-0.1950436,1.385641,3.15,0.1950436,1.385641,3.55,1.184,-3.638433E-12,3.55,0.592,1.025374,3.15,1.6,-1.674834E-12,3.15,1.297522,0.5239076,3.15,1.102478,0.861733,3.15,0.8,1.385641,-2.85,-1.102478,-0.861733,-3.15,-1.102478,-0.861733,-2.85,-1.297522,-0.5239076,-3.15,-1.297522,-0.5239076,-3.15,-0.8,1.385641,-3.55,-0.592,1.025374,-3.15,-0.1950436,1.385641,-3.55,0.592,1.025374,-3.15,0.1950436,1.385641,-3.15,0.8,1.385641,3.15,0.8,-1.385641,3.55,0.592,-1.025374,3.15,1.102478,-0.861733,3.55,1.184,-3.638433E-12,3.15,1.297522,-0.5239076,3.15,1.6,-1.674834E-12,3.55,-1.184,-3.638433E-12,3.15,-1.6,-1.674834E-12,3.55,-0.592,1.025374,3.15,-1.297522,0.5239076,3.15,-1.102478,0.861733,3.15,-0.8,1.385641,2.85,-0.1950436,-1.385641,3.15,-0.1950436,-1.385641,2.85,0.1950436,-1.385641,3.15,0.1950436,-1.385641,-2.85,1.102478,-0.861733,-2.85,1.297522,-0.5239076,-3.15,1.102478,-0.861733,-3.15,1.297522,-0.5239076,-2.85,-0.1950436,1.385641,-3.15,-0.1950436,1.385641,-2.85,0.1950436,1.385641,-3.15,0.1950436,1.385641,3.15,-0.8,-1.385641,3.55,-0.592,-1.025374,3.15,-0.1950436,-1.385641,3.55,0.592,-1.025374,3.15,0.1950436,-1.385641,3.15,0.8,-1.385641,-3.15,-0.8,-1.385641,-3.15,-0.1950436,-1.385641,-3.55,-0.592,-1.025374,-3.55,0.592,-1.025374,-3.15,0.1950436,-1.385641,-3.15,0.8,-1.385641,-3.55,-1.184,-3.638433E-12,-3.55,-0.592,1.025374,-3.15,-1.6,-1.674834E-12,-3.15,-1.297522,0.5239076,-3.15,-1.102478,0.861733,-3.15,-0.8,1.385641,3.15,-1.102478,0.861733,3.15,-1.297522,0.5239076,2.85,-1.102478,0.861733,2.85,-1.297522,0.5239076,-2.85,1.297522,0.5239076,-2.85,1.102478,0.861733,-3.15,1.297522,0.5239076,-3.15,1.102478,0.861733,3.15,1.297522,-0.5239076,2.85,1.297522,-0.5239076,3.15,1.102478,-0.861733,2.85,1.102478,-0.861733,-2.85,-1.297522,0.5239076,-3.15,-1.297522,0.5239076,-2.85,-1.102478,0.861733,-3.15,-1.102478,0.861733,3.15,-0.8,1.385641,3.15,-0.1950436,1.385641,3.55,-0.592,1.025374,3.55,0.592,1.025374,3.15,0.1950436,1.385641,3.15,0.8,1.385641,3.15,-0.8,-1.385641,3.15,-1.102478,-0.861733,3.55,-0.592,-1.025374,3.55,-1.184,-3.638433E-12,3.15,-1.297522,-0.5239076,3.15,-1.6,-1.674834E-12,3.15,1.102478,0.861733,2.85,1.102478,0.861733,3.15,1.297522,0.5239076,2.85,1.297522,0.5239076,3.15,-1.297522,-0.5239076,3.15,-1.102478,-0.861733,2.85,-1.297522,-0.5239076,2.85,-1.102478,-0.861733,-2.85,-0.1950436,-1.385641,-2.85,0.1950436,-1.385641,-3.15,-0.1950436,-1.385641,-3.15,0.1950436,-1.385641,-3.15,0.8,-1.385641,-3.15,1.102478,-0.861733,-3.55,0.592,-1.025374,-3.55,1.184,-3.638433E-12,-3.15,1.297522,-0.5239076,-3.15,1.6,-1.674834E-12,-3.55,1.184,-3.638433E-12,-3.15,1.6,-1.674834E-12,-3.55,0.592,1.025374,-3.15,1.297522,0.5239076,-3.15,1.102478,0.861733,-3.15,0.8,1.385641,-3.15,-0.8,-1.385641,-3.55,-0.592,-1.025374,-3.15,-1.102478,-0.861733,-3.55,-1.184,-3.638433E-12,-3.15,-1.297522,-0.5239076,-3.15,-1.6,-1.674834E-12,-3.55,0.592,-1.025374,-3.55,-0.592,-1.025374,-3.55,-1.184,-3.638433E-12,-3.55,1.184,-3.638433E-12,-3.55,-0.592,1.025374,-3.55,0.592,1.025374,3.55,0.592,1.025374,3.55,1.184,-3.638433E-12,3.55,-0.592,1.025374,3.55,0.592,-1.025374,3.55,-0.592,-1.025374,3.55,-1.184,-3.638433E-12,3.15,3.421201,-6.97351,2.85,3.421201,-6.97351,3.15,0.1950436,-1.385641,2.85,3.123106,-6.457192,3.15,0.1950436,-1.385641,2.85,3.421201,-6.97351,2.85,0.1950436,-1.385641,3.15,0.1950436,-1.385641,2.85,3.123106,-6.457192,-2.85,3.421201,-6.97351,-3.15,3.421201,-6.97351,-2.85,3.123106,-6.457192,-2.85,0.1950436,-1.385641,-2.85,3.123106,-6.457192,-3.15,3.421201,-6.97351,-3.15,0.1950436,-1.385641,-2.85,0.1950436,-1.385641,-3.15,3.421201,-6.97351 + } + PolygonVertexIndex: *1620 { + a: 0,2,-2,2,3,-2,4,3,-3,5,3,-5,1,3,-7,7,3,-6,3,8,-7,9,7,-6,6,8,-11,11,6,-11,10,8,-13,12,8,-14,13,8,-15,8,15,-15,16,14,-16,16,17,-15,16,15,-19,18,19,-17,20,18,-16,21,18,-21,22,21,-21,23,22,-21,24,23,-21,24,25,-24,26,24,-21,27,24,-27,28,27,-27,29,28,-27,30,29,-27,31,30,-27,7,31,-27,32,31,-8,33,32,-8,32,33,-35,33,7,-10,35,33,-10,36,38,-38,39,37,-39,40,37,-40,41,37,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,57,-61,62,64,-64,65,63,-65,66,65,-65,64,67,-67,66,67,-69,69,68,-68,70,65,-67,71,65,-71,72,71,-71,73,71,-73,74,73,-73,75,74,-73,74,76,-74,77,74,-76,78,73,-77,79,77,-76,79,78,-77,80,79,-76,80,78,-80,81,78,-81,80,82,-82,83,81,-83,84,83,-83,85,84,-83,86,84,-86,84,87,-84,88,83,-88,89,88,-88,90,92,-92,91,93,-91,91,94,-94,91,95,-95,96,90,-94,97,93,-95,98,90,-97,99,97,-95,100,98,-97,101,97,-100,102,100,-97,103,97,-102,104,102,-97,104,105,-103,106,104,-97,107,104,-107,108,107,-107,109,108,-107,110,109,-107,111,110,-107,112,111,-107,113,111,-113,114,97,-104,115,114,-104,116,97,-115,117,116,-115,118,116,-118,119,118,-118,120,116,-119,121,116,-121,112,116,-122,122,112,-122,123,113,-113,123,112,-123,113,123,-125,125,123,-123,126,128,-128,129,127,-129,130,127,-130,131,127,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,143,-143,145,144,-143,146,148,-148,149,147,-149,150,149,-149,151,150,-149,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,167,166,-169,169,167,-169,166,170,-169,168,170,-172,172,171,-171,173,169,-169,174,169,-174,175,174,-174,176,174,-176,177,176,-176,176,178,-175,179,174,-179,180,176,-178,181,179,-179,181,180,-178,182,179,-182,182,181,-178,183,182,-178,182,183,-185,185,184,-184,186,184,-186,187,184,-187,188,187,-187,189,186,-186,185,190,-190,191,189,-191,192,194,-194,194,195,-194,193,195,-197,197,196,-196,198,200,-200,201,199,-201,201,202,-200,203,199,-203,204,206,-206,207,205,-207,205,207,-209,209,208,-208,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,217,-217,219,218,-217,220,222,-222,223,221,-223,224,223,-223,225,224,-223,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,239,-242,243,239,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,277,279,-281,281,283,-283,284,282,-284,285,287,-287,288,286,-288,289,288,-288,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,295,-298,299,301,-301,302,300,-302,303,305,-305,306,304,-306,307,309,-309,310,308,-310,311,310,-310,312,314,-314,313,315,-313,316,312,-316,317,319,-319,320,318,-320,321,318,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,337,338,-336,339,341,-341,342,340,-342,343,342,-342,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,353,-356,357,359,-359,360,358,-360,361,360,-360,362,364,-364,365,363,-365,366,363,-366,367,369,-369,370,368,-370,371,373,-373,374,372,-374,375,374,-374,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,383,-383,385,387,-387,388,386,-388,389,388,-388,390,388,-390,391,393,-393,394,392,-394,395,397,-397,398,396,-398,399,398,-398,400,402,-402,403,401,-403,404,406,-406,407,405,-407,405,407,-409,409,411,-411,412,410,-412,413,412,-412,414,416,-416,417,415,-417,418,420,-420,421,419,-421,422,421,-421,423,425,-425,426,424,-426,427,424,-427,428,430,-430,431,429,-431,432,429,-432,433,435,-435,436,434,-436,437,439,-439,440,438,-440,441,440,-440,442,444,-444,445,443,-445,446,448,-448,449,447,-449,450,449,-449,451,449,-451,452,454,-454,455,453,-455,456,455,-455,457,459,-459,460,458,-460,461,458,-461,462,464,-464,465,463,-465,466,463,-466,467,469,-469,470,468,-470,471,470,-470,472,474,-474,475,473,-475,476,473,-476,477,479,-479,478,480,-478,481,477,-481,482,484,-484,485,483,-485,486,485,-485,487,489,-489,490,488,-490,491,488,-491,492,494,-494,495,493,-495,496,495,-495,497,499,-499,500,498,-500,501,500,-500,502,504,-504,505,503,-505,506,508,-508,509,507,-509,510,509,-509,511,513,-513,514,512,-514,515,517,-517,518,516,-518,519,521,-521,522,520,-522,523,525,-525,526,524,-526,527,526,-526,528,530,-530,531,529,-531,532,534,-534,535,533,-535,536,535,-535,537,539,-539,540,538,-540,538,540,-542,542,544,-544,542,543,-546,546,543,-545,547,546,-545,548,545,-544,549,545,-549,543,546,-551,543,550,-549,551,550,-547,552,548,-551,553,551,-547,553,546,-548,554,551,-554,555,554,-554,556,548,-553,556,549,-549,557,556,-553,555,556,-558,558,553,-548,558,555,-554,558,556,-556,558,549,-557,559,558,-548,559,549,-559,560,562,-562,563,562,-561,562,564,-562,565,562,-564,561,564,-567,567,566,-565,567,568,-567,569,566,-569,565,563,-571,570,569,-569,563,571,-571,571,569,-571,572,574,-574,572,573,-576,576,573,-575,577,575,-574,578,576,-575,579,576,-579,580,575,-578,581,580,-578,582,579,-579,582,580,-582,583,582,-579,583,580,-583,584,586,-586,587,584,-586,585,586,-589,586,589,-589,590,587,-586,585,588,-592,590,585,-592,592,590,-592,591,588,-594,592,594,-591,590,595,-588,590,594,-596,587,595,-597,596,595,-598,588,598,-594,598,588,-590,599,593,-599,599,598,-601,594,600,-602,595,594,-602,595,601,-598,597,601,-590,598,589,-602,601,600,-599,602,604,-604,605,603,-605,606,608,-608,609,607,-609,610,607,-610,611,607,-611,612,614,-614,615,613,-615,616,618,-618,619,617,-619,620,619,-619,621,619,-621,622,624,-624,625,623,-625,626,625,-625,627,625,-627,628,630,-630,631,629,-631,632,631,-631,633,632,-631,634,636,-636,637,635,-637,638,640,-640,641,639,-641,642,644,-644,645,643,-645,646,648,-648,649,647,-649,650,649,-649,651,649,-651,652,654,-654,655,653,-655,656,653,-656,657,656,-656,658,660,-660,661,659,-661,662,659,-662,663,659,-663,664,666,-666,667,665,-667,668,670,-670,671,669,-671,672,674,-674,675,673,-675,676,678,-678,679,677,-679,680,682,-682,683,681,-683,684,681,-684,685,684,-684,686,688,-688,689,687,-689,690,687,-690,691,690,-690,692,694,-694,695,693,-695,696,698,-698,699,697,-699,700,702,-702,703,701,-703,704,706,-706,707,705,-707,708,705,-708,709,708,-708,710,712,-712,713,711,-713,714,713,-713,715,714,-713,716,718,-718,719,717,-719,720,719,-719,721,719,-721,722,723,-447,724,446,-724,446,447,-723,448,446,-725,725,722,-448,449,725,-448,726,448,-725,450,448,-727,451,725,-450,451,450,-727,727,725,-452,726,727,-452,389,387,-729,390,389,-729,728,387,-730,728,730,-391,387,385,-730,729,385,-732,732,731,-386,385,386,-733,730,733,-391,733,732,-387,390,733,-389,388,733,-387,734,736,-736,737,739,-739,740,742,-742,743,745,-745,746,748,-748,749,751,-751 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *4860 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1504 { + a: 2.062629,28.16396,2.062629,30.51117,16.26047,28.16396,18.54277,32.11702,23.35939,15.86827,25.39214,17.04187,-2.062629,30.51117,37.08554,-5.816187E-12,-18.54277,32.11702,27.45476,13.4693,-16.26047,28.16396,-2.062629,28.16396,-23.35939,15.86827,-25.39214,17.04187,-27.45476,13.4693,-37.08554,-5.816187E-12,-32.52094,-5.816187E-12,-25.42202,12.29569,-27.45476,-13.4693,-25.42202,-12.29569,-18.54277,-32.11702,-25.39214,-17.04187,-23.35939,-15.86827,-16.26047,-28.16396,-2.062629,-30.51117,-2.062629,-28.16396,18.54277,-32.11702,2.062629,-30.51117,2.062629,-28.16396,16.26047,-28.16396,23.35939,-15.86827,25.39214,-17.04187,27.45476,-13.4693,32.52094,-5.816187E-12,25.42202,-12.29569,25.42202,12.29569,7.283464,-16.26047,7.283464,16.26047,11.22047,-16.26047,11.22047,-2.062629,11.22047,2.062629,11.22047,16.26047,-11.22047,-18.54277,-11.22047,18.54277,-9.251969,-18.54277,-9.251969,18.54277,11.22047,18.54277,11.22047,-18.54277,9.251969,18.54277,9.251969,-18.54277,11.22047,16.26047,11.22047,2.062629,7.283465,16.26047,11.22047,-2.062629,7.283465,-16.26047,11.22047,-16.26047,7.283465,-16.26047,7.283465,16.26047,11.22047,-16.26047,11.22047,-2.062629,11.22047,2.062629,11.22047,16.26047,-25.42202,12.29569,-23.35939,15.86827,-5.455278,0.7678881,-3.39265,4.340466,-3.39265,-4.340466,-5.455278,-0.7678881,-23.35939,-15.86827,-25.42202,-12.29569,-2.062629,-5.108354,-2.062629,5.108354,-2.062629,-28.16396,-2.062629,28.16396,-1.181102,-1.181102,2.062629,-28.16396,-1.181102,1.181102,1.181102,-1.181102,2.062629,28.16396,1.181102,1.181102,2.062629,-5.108354,2.062629,5.108354,3.39265,-4.340466,3.39265,4.340466,5.455278,-0.7678881,23.35939,-15.86827,25.42202,-12.29569,5.455278,0.7678881,23.35939,15.86827,25.42202,12.29569,27.45476,13.4693,32.52094,-5.816187E-12,25.42202,12.29569,37.08554,-5.816187E-12,27.45476,-13.4693,25.42202,-12.29569,18.54277,32.11702,18.54277,-32.11702,25.39214,17.04187,25.39214,-17.04187,23.35939,15.86827,23.35939,-15.86827,16.26047,28.16396,16.26047,-28.16396,2.062629,30.51117,2.062629,28.16396,-18.54277,32.11702,-2.062629,30.51117,-2.062629,28.16396,-16.26047,28.16396,-23.35939,15.86827,-25.39214,17.04187,-37.08554,-5.816187E-12,-27.45476,13.4693,2.062629,-30.51117,2.062629,-28.16396,-18.54277,-32.11702,-2.062629,-30.51117,-16.26047,-28.16396,-2.062629,-28.16396,-23.35939,-15.86827,-25.39214,-17.04187,-27.45476,-13.4693,-32.52094,-5.816187E-12,-25.42202,12.29569,-25.42202,-12.29569,7.283465,-16.26047,7.283465,16.26047,11.22047,-16.26047,11.22047,-2.062629,11.22047,2.062629,11.22047,16.26047,9.251969,-18.54277,9.251969,18.54277,11.22047,-18.54277,11.22047,18.54277,9.251969,-18.54277,9.251969,18.54277,11.22047,-18.54277,11.22047,18.54277,-7.283465,-16.26047,-11.22047,-16.26047,-7.283465,16.26047,-11.22047,-2.062629,-11.22047,2.062629,-11.22047,16.26047,-7.283465,-16.26047,-11.22047,-16.26047,-7.283465,16.26047,-11.22047,-2.062629,-11.22047,2.062629,-11.22047,16.26047,-9.251969,-18.54277,-11.22047,-18.54277,-9.251969,18.54277,-11.22047,18.54277,-9.251969,-18.54277,-11.22047,-18.54277,-9.251969,18.54277,-11.22047,18.54277,9.251968,-18.54277,9.251968,18.54277,11.22047,-18.54277,11.22047,18.54277,25.42202,-12.29569,23.35939,-15.86827,5.455278,-0.7678881,3.39265,-4.340466,3.39265,4.340466,2.062629,-5.108354,5.455278,0.7678881,23.35939,15.86827,25.42202,12.29569,2.062629,5.108354,2.062629,-28.16396,2.062629,28.16396,1.181102,1.181102,-2.062629,28.16396,1.181102,-1.181102,-2.062629,-28.16396,-1.181102,1.181102,-1.181102,-1.181102,-2.062629,-5.108354,-2.062629,5.108354,-3.39265,-4.340466,-3.39265,4.340466,-5.455278,-0.7678881,-23.35939,-15.86827,-25.42202,-12.29569,-5.455278,0.7678881,-23.35939,15.86827,-25.42202,12.29569,-11.22047,-16.26047,-11.22047,-2.062629,-7.283465,-16.26047,-7.283465,16.26047,-11.22047,2.062629,-11.22047,16.26047,-7.283464,16.26047,-7.283464,-16.26047,-11.22047,16.26047,-11.22047,2.062629,-11.22047,-2.062629,-11.22047,-16.26047,7.283464,-16.26047,7.283464,16.26047,11.22047,-16.26047,11.22047,-2.062629,11.22047,16.26047,11.22047,2.062629,-9.251968,-18.54277,-11.22047,-18.54277,-9.251968,18.54277,-11.22047,18.54277,-7.283464,-16.26047,-11.22047,-16.26047,-7.283464,16.26047,-11.22047,-2.062629,-11.22047,2.062629,-11.22047,16.26047,-7.283464,-16.26047,-11.22047,-16.26047,-7.283464,16.26047,-11.22047,-2.062629,-11.22047,2.062629,-11.22047,16.26047,9.251968,-18.54277,9.251968,18.54277,11.22047,-18.54277,11.22047,18.54277,9.251968,-18.54277,9.251968,18.54277,11.22047,-18.54277,11.22047,18.54277,-9.251968,-18.54277,-11.22047,-18.54277,-9.251968,18.54277,-11.22047,18.54277,7.283464,-16.26047,7.283464,16.26047,11.22047,-16.26047,11.22047,-2.062629,11.22047,2.062629,11.22047,16.26047,-9.251968,18.54277,-9.251968,-18.54277,-11.22047,18.54277,-11.22047,-18.54277,11.22047,-1.181102,-11.22047,-1.181102,11.22047,1.181102,-11.22047,1.181102,11.22047,1.181102,11.22047,-1.181102,-11.22047,1.181102,-11.22047,-1.181102,-11.22047,-1.181102,-11.22047,1.181102,11.22047,-1.181102,11.22047,1.181102,-11.22047,-1.181102,-11.22047,1.181102,11.22047,-1.181102,11.22047,1.181102,12.40158,-2.062629,11.22047,-2.062629,12.40158,2.062629,11.22047,2.062629,-12.40158,-2.062629,-12.40158,2.062629,-11.22047,-2.062629,-11.22047,2.062629,9.251969,19.68504,9.251969,-19.68504,7.283465,19.68504,7.283465,-19.68504,-5.455278,-0.7678881,-5.455278,-3.149606,-27.45476,-13.4693,-25.39214,-17.04187,-3.39265,-4.340466,-7.283465,-19.68504,-9.251969,-19.68504,-7.283465,19.68504,-9.251969,19.68504,-11.22047,5.108354,-12.40158,5.108354,-11.22047,28.16396,-12.40158,30.51117,-11.22047,30.51117,-7.283464,-19.68504,-9.251968,-19.68504,-7.283464,19.68504,-9.251968,19.68504,12.40158,-30.51117,11.22047,-30.51117,12.40158,-5.108354,11.22047,-5.108354,11.22047,-28.16396,7.283464,-19.68504,7.283464,19.68504,9.251968,-19.68504,9.251968,19.68504,-11.22047,-2.062629,-12.40158,-2.062629,-11.22047,2.062629,-12.40158,2.062629,2.062629,-5.108354,2.062629,-30.51117,-7.086016E-11,-6.299212,-2.062629,-30.51117,-2.062629,-5.108354,25.39214,17.04187,5.455278,3.149606,3.39265,4.340466,5.455278,0.7678881,27.45476,13.4693,27.45476,-13.4693,25.39214,-17.04187,5.455278,-0.7678881,5.455278,-3.149606,3.39265,-4.340466,12.40158,2.062629,12.40158,-2.062629,11.22047,2.062629,11.22047,-2.062629,7.283465,-19.68504,7.283465,19.68504,9.251969,-19.68504,9.251969,19.68504,-9.251969,-19.68504,-9.251969,19.68504,-7.283465,-19.68504,-7.283465,19.68504,-12.40158,-30.51117,-12.40158,-5.108354,-11.22047,-30.51117,-11.22047,-28.16396,-11.22047,-5.108354,12.40158,5.108354,11.22047,5.108354,12.40158,30.51117,11.22047,28.16396,11.22047,30.51117,7.283465,-19.68504,7.283465,19.68504,9.251969,-19.68504,9.251969,19.68504,-12.40158,-2.062629,-12.40158,2.062629,-11.22047,-2.062629,-11.22047,2.062629,12.40158,-30.51117,11.22047,-30.51117,12.40158,-5.108354,11.22047,-5.108354,11.22047,-28.16396,12.40158,5.108354,11.22047,5.108354,12.40158,30.51117,11.22047,28.16396,11.22047,30.51117,-12.40158,5.108354,-12.40158,30.51117,-11.22047,5.108354,-11.22047,28.16396,-11.22047,30.51117,-7.283465,-19.68504,-9.251969,-19.68504,-7.283465,19.68504,-9.251969,19.68504,-3.39265,4.340466,-5.455278,3.149606,-25.39214,17.04187,-5.455278,0.7678881,-27.45476,13.4693,11.22047,-2.062629,11.22047,2.062629,12.40158,-2.062629,12.40158,2.062629,-12.40158,-5.108354,-11.22047,-5.108354,-12.40158,-30.51117,-11.22047,-28.16396,-11.22047,-30.51117,2.278282,1.315367,2.278282,-1.315367,-7.75813E-11,2.630734,-7.75813E-11,-2.630734,-2.278282,1.315367,-2.278282,-1.315367,-11.22047,-2.062629,-12.40158,-2.062629,-11.22047,2.062629,-12.40158,2.062629,-11.22047,-5.108354,-11.22047,-28.16396,-12.40158,-5.108354,-11.22047,-30.51117,-12.40158,-30.51117,11.22047,-2.062629,11.22047,2.062629,12.40158,-2.062629,12.40158,2.062629,5.455278,0.7678881,5.455278,3.149606,27.45476,13.4693,25.39214,17.04187,3.39265,4.340466,-11.22047,-30.51117,-12.40158,-30.51117,-11.22047,-28.16396,-12.40158,-5.108354,-11.22047,-5.108354,-12.40158,-2.062629,-12.40158,2.062629,-11.22047,-2.062629,-11.22047,2.062629,-11.22047,-30.51117,-12.40158,-30.51117,-11.22047,-28.16396,-12.40158,-5.108354,-11.22047,-5.108354,11.22047,-30.51117,11.22047,-28.16396,12.40158,-30.51117,12.40158,-5.108354,11.22047,-5.108354,11.22047,30.51117,12.40158,30.51117,11.22047,28.16396,11.22047,5.108354,12.40158,5.108354,12.40158,-2.062629,11.22047,-2.062629,12.40158,2.062629,11.22047,2.062629,2.062629,30.51117,2.062629,5.108354,-2.062629,30.51117,-8.497519E-12,6.299212,-2.062629,5.108354,7.283464,-19.68504,7.283464,19.68504,9.251968,-19.68504,9.251968,19.68504,-2.278282,-1.315367,-2.278282,1.315367,7.75813E-11,-2.630734,7.75813E-11,2.630734,2.278282,-1.315367,2.278282,1.315367,-2.062629,-30.51117,-2.062629,-5.108354,2.062629,-30.51117,7.086016E-11,-6.299212,2.062629,-5.108354,-12.40158,5.108354,-12.40158,30.51117,-11.22047,5.108354,-11.22047,28.16396,-11.22047,30.51117,11.22047,5.108354,11.22047,28.16396,12.40158,5.108354,12.40158,30.51117,11.22047,30.51117,12.40158,5.108354,11.22047,5.108354,12.40158,30.51117,11.22047,28.16396,11.22047,30.51117,11.22047,-30.51117,11.22047,-28.16396,12.40158,-30.51117,12.40158,-5.108354,11.22047,-5.108354,-25.39214,-17.04187,-5.455278,-3.149606,-3.39265,-4.340466,-5.455278,-0.7678881,-27.45476,-13.4693,-2.062629,5.108354,-2.062629,30.51117,8.497518E-12,6.299212,2.062629,30.51117,2.062629,5.108354,-27.45476,13.4693,-25.39214,17.04187,-5.455278,0.7678881,-5.455278,3.149606,-3.39265,4.340466,3.39265,-4.340466,5.455278,-3.149606,25.39214,-17.04187,5.455278,-0.7678881,27.45476,-13.4693,-11.22047,-5.108354,-11.22047,-28.16396,-12.40158,-5.108354,-11.22047,-30.51117,-12.40158,-30.51117,-7.283464,-19.68504,-9.251968,-19.68504,-7.283464,19.68504,-9.251968,19.68504,11.22047,-30.51117,11.22047,-28.16396,12.40158,-30.51117,11.22047,-5.108354,12.40158,-5.108354,-11.22047,-2.062629,-12.40158,-2.062629,-11.22047,2.062629,-12.40158,2.062629,-7.283464,19.68504,-7.283464,-19.68504,-9.251968,19.68504,-9.251968,-19.68504,11.22047,-2.062629,11.22047,2.062629,12.40158,-2.062629,12.40158,2.062629,-11.22047,30.51117,-11.22047,28.16396,-12.40158,30.51117,-11.22047,5.108354,-12.40158,5.108354,7.283464,-19.68504,7.283464,19.68504,9.251968,-19.68504,9.251968,19.68504,-11.22047,30.51117,-11.22047,28.16396,-12.40158,30.51117,-11.22047,5.108354,-12.40158,5.108354,11.22047,-30.51117,11.22047,-28.16396,12.40158,-30.51117,12.40158,-5.108354,11.22047,-5.108354,-39.37008,-5.819027E-12,-37.08554,-5.819027E-12,-19.68504,-34.09549,-19.68504,34.09549,-18.54277,-32.11702,19.68504,-34.09549,-18.54277,32.11702,19.68504,34.09549,-32.52094,-5.817736E-12,-16.26047,-28.16396,-16.26047,28.16396,18.54277,-32.11702,16.26047,-28.16396,32.52094,-5.817736E-12,18.54277,32.11702,16.26047,28.16396,37.08554,-5.819027E-12,39.37008,-5.819027E-12,18.54277,32.11702,-18.54277,32.11702,19.68504,34.09549,37.08554,-5.81798E-12,-19.68504,34.09549,39.37008,-5.81798E-12,-37.08554,-5.81798E-12,-39.37008,-5.81798E-12,-19.68504,-34.09549,-18.54277,-32.11702,19.68504,-34.09549,18.54277,-32.11702,39.37008,-5.817981E-12,37.08554,-5.817981E-12,19.68504,34.09549,19.68504,-34.09549,18.54277,32.11702,18.54277,-32.11702,-19.68504,34.09549,-18.54277,32.11702,-19.68504,-34.09549,-18.54277,-32.11702,-37.08554,-5.817981E-12,-39.37008,-5.817981E-12,-16.26047,28.16396,-18.54277,32.11702,16.26047,28.16396,-32.52094,-5.817736E-12,18.54277,32.11702,32.52094,-5.817736E-12,-37.08554,-5.817736E-12,-19.68504,34.09549,-39.37008,-5.819026E-12,19.68504,34.09549,-19.68504,-34.09549,-18.54277,-32.11702,-16.26047,-28.16396,16.26047,-28.16396,37.08554,-5.817736E-12,39.37008,-5.819026E-12,19.68504,-34.09549,18.54277,-32.11702,11.22047,-0.7678881,11.22047,0.7678881,12.40158,-0.7678881,12.40158,0.7678881,6.783691,-4.295277,3.254184,-7.340173,6.019331,-2.155619,4.215955,-3.711388,3.053104,-4.714576,1.249728,-6.270345,11.22047,0.7678881,12.40158,0.7678881,11.22047,-0.7678881,12.40158,-0.7678881,-5.564083,-3.149606,-7.683466,-2.330709,-5.564083,-0.7678881,-7.683466,2.330709,-5.564083,0.7678881,-5.564083,3.149606,-1.249728,-6.270345,-3.254184,-7.340173,-3.053104,-4.714576,-6.783691,-4.295277,-4.215955,-3.711388,-6.019331,-2.155619,6.783691,4.295277,6.019331,2.155619,3.254184,7.340173,4.215955,3.711388,3.053104,4.714576,1.249728,6.270345,-11.22047,-0.7678881,-12.40158,-0.7678881,-11.22047,0.7678881,-12.40158,0.7678881,11.22047,-0.7678881,11.22047,0.7678881,12.40158,-0.7678881,12.40158,0.7678881,-11.22047,-0.7678881,-12.40158,-0.7678881,-11.22047,0.7678881,-12.40158,0.7678881,-5.564083,-3.149606,-7.683466,-2.330709,-5.564083,-0.7678881,-7.683466,2.330709,-5.564083,0.7678881,-5.564083,3.149606,5.564083,-3.149606,5.564083,-0.7678881,7.683466,-2.330709,7.683466,2.330709,5.564083,0.7678881,5.564083,3.149606,-6.78369,4.295276,-3.254184,7.340173,-6.019331,2.155619,-4.215955,3.711387,-3.053104,4.714576,-1.249728,6.270344,12.40158,0.7678881,12.40158,-0.7678881,11.22047,0.7678881,11.22047,-0.7678881,-11.22047,0.7678881,-11.22047,-0.7678881,-12.40158,0.7678881,-12.40158,-0.7678881,-12.40158,0.7678881,-11.22047,0.7678881,-12.40158,-0.7678881,-11.22047,-0.7678881,-11.22047,-0.7678881,-12.40158,-0.7678881,-11.22047,0.7678881,-12.40158,0.7678881,5.564083,-3.149606,5.564083,-0.7678881,7.683466,-2.330709,7.683466,2.330709,5.564083,0.7678881,5.564083,3.149606,-1.249728,6.270345,-3.053104,4.714576,-3.254184,7.340173,-6.783691,4.295277,-4.215955,3.711388,-6.019331,2.155619,12.40158,-0.7678881,11.22047,-0.7678881,12.40158,0.7678881,11.22047,0.7678881,-12.40158,-0.7678881,-12.40158,0.7678881,-11.22047,-0.7678881,-11.22047,0.7678881,11.22047,-0.7678881,11.22047,0.7678881,12.40158,-0.7678881,12.40158,0.7678881,1.249728,-6.270344,3.053104,-4.714576,3.254184,-7.340173,6.78369,-4.295276,4.215955,-3.711387,6.019331,-2.155619,-6.78369,-4.295276,-6.019331,-2.155619,-3.254184,-7.340173,-4.215955,-3.711387,-3.053104,-4.714576,-1.249728,-6.270344,1.249728,6.270344,3.254184,7.340173,3.053104,4.714576,6.78369,4.295276,4.215955,3.711387,6.019331,2.155619,-4.036906,2.330709,-4.036906,-2.330709,7.75813E-11,-4.661417,7.75813E-11,4.661417,4.036906,-2.330709,4.036906,2.330709,-4.036906,2.330709,-7.75813E-11,4.661417,-4.036906,-2.330709,4.036906,2.330709,4.036906,-2.330709,-7.75813E-11,-4.661417,-11.22047,-30.51117,-12.40158,-30.51117,-11.22047,-28.16396,-11.22047,-30.51117,-12.40158,-30.51117,-11.22047,-28.16396,-11.22047,-30.51117,-12.40158,-30.51117,-11.22047,-28.16396,-37.08554,-5.817736E-12,-32.52094,-5.817736E-12,-18.54277,-32.11702,-37.08554,-5.817736E-12,-32.52094,-5.817736E-12,-18.54277,-32.11702,-37.08554,-5.817736E-12,-32.52094,-5.817736E-12,-18.54277,-32.11702 + } + UVIndex: *1620 { + a: 0,2,1,2,3,1,4,3,2,5,3,4,1,3,6,7,3,5,3,8,6,9,7,5,6,8,10,11,6,10,10,8,12,12,8,13,13,8,14,8,15,14,16,14,15,16,17,14,16,15,18,18,19,16,20,18,15,21,18,20,22,21,20,23,22,20,24,23,20,24,25,23,26,24,20,27,24,26,28,27,26,29,28,26,30,29,26,31,30,26,7,31,26,32,31,7,33,32,7,32,33,34,33,7,9,35,33,9,36,38,37,39,37,38,40,37,39,41,37,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,57,60,62,64,63,65,63,64,66,65,64,64,67,66,66,67,68,69,68,67,70,65,66,71,65,70,72,71,70,73,71,72,74,73,72,75,74,72,74,76,73,77,74,75,78,73,76,79,77,75,79,78,76,80,79,75,80,78,79,81,78,80,80,82,81,83,81,82,84,83,82,85,84,82,86,84,85,84,87,83,88,83,87,89,88,87,90,92,91,91,93,90,91,94,93,91,95,94,96,90,93,97,93,94,98,90,96,99,97,94,100,98,96,101,97,99,102,100,96,103,97,101,104,102,96,104,105,102,106,104,96,107,104,106,108,107,106,109,108,106,110,109,106,111,110,106,112,111,106,113,111,112,114,97,103,115,114,103,116,97,114,117,116,114,118,116,117,119,118,117,120,116,118,121,116,120,112,116,121,122,112,121,123,113,112,123,112,122,113,123,124,125,123,122,126,128,127,129,127,128,130,127,129,131,127,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,143,142,145,144,142,146,148,147,149,147,148,150,149,148,151,150,148,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,167,166,168,169,167,168,166,170,168,168,170,171,172,171,170,173,169,168,174,169,173,175,174,173,176,174,175,177,176,175,176,178,174,179,174,178,180,176,177,181,179,178,181,180,177,182,179,181,182,181,177,183,182,177,182,183,184,185,184,183,186,184,185,187,184,186,188,187,186,189,186,185,185,190,189,191,189,190,192,194,193,194,195,193,193,195,196,197,196,195,198,200,199,201,199,200,201,202,199,203,199,202,204,206,205,207,205,206,205,207,208,209,208,207,210,212,211,213,211,212,214,216,215,217,215,216,218,217,216,219,218,216,220,222,221,223,221,222,224,223,222,225,224,222,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,239,241,243,239,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,277,279,280,281,283,282,284,282,283,285,287,286,288,286,287,289,288,287,290,292,291,293,291,292,294,296,295,297,295,296,298,295,297,299,301,300,302,300,301,303,305,304,306,304,305,307,309,308,310,308,309,311,310,309,312,314,313,313,315,312,316,312,315,317,319,318,320,318,319,321,318,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,337,338,335,339,341,340,342,340,341,343,342,341,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,353,355,357,359,358,360,358,359,361,360,359,362,364,363,365,363,364,366,363,365,367,369,368,370,368,369,371,373,372,374,372,373,375,374,373,376,378,377,379,377,378,380,382,381,383,381,382,384,383,382,385,387,386,388,386,387,389,388,387,390,388,389,391,393,392,394,392,393,395,397,396,398,396,397,399,398,397,400,402,401,403,401,402,404,406,405,407,405,406,405,407,408,409,411,410,412,410,411,413,412,411,414,416,415,417,415,416,418,420,419,421,419,420,422,421,420,423,425,424,426,424,425,427,424,426,428,430,429,431,429,430,432,429,431,433,435,434,436,434,435,437,439,438,440,438,439,441,440,439,442,444,443,445,443,444,446,448,447,449,447,448,450,449,448,451,449,450,452,454,453,455,453,454,456,455,454,457,459,458,460,458,459,461,458,460,462,464,463,465,463,464,466,463,465,467,469,468,470,468,469,471,470,469,472,474,473,475,473,474,476,473,475,477,479,478,478,480,477,481,477,480,482,484,483,485,483,484,486,485,484,487,489,488,490,488,489,491,488,490,492,494,493,495,493,494,496,495,494,497,499,498,500,498,499,501,500,499,502,504,503,505,503,504,506,508,507,509,507,508,510,509,508,511,513,512,514,512,513,515,517,516,518,516,517,519,521,520,522,520,521,523,525,524,526,524,525,527,526,525,528,530,529,531,529,530,532,534,533,535,533,534,536,535,534,537,539,538,540,538,539,538,540,541,542,544,543,542,543,545,546,543,544,547,546,544,548,545,543,549,545,548,543,546,550,543,550,548,551,550,546,552,548,550,553,551,546,553,546,547,554,551,553,555,554,553,556,548,552,556,549,548,557,556,552,555,556,557,558,553,547,558,555,553,558,556,555,558,549,556,559,558,547,559,549,558,560,562,561,563,562,560,562,564,561,565,562,563,561,564,566,567,566,564,567,568,566,569,566,568,565,563,570,570,569,568,563,571,570,571,569,570,572,574,573,572,573,575,576,573,574,577,575,573,578,576,574,579,576,578,580,575,577,581,580,577,582,579,578,582,580,581,583,582,578,583,580,582,584,586,585,587,584,585,585,586,588,586,589,588,590,587,585,585,588,591,590,585,591,592,590,591,591,588,593,592,594,590,590,595,587,590,594,595,587,595,596,596,595,597,588,598,593,598,588,589,599,593,598,599,598,600,594,600,601,595,594,601,595,601,597,597,601,589,598,589,601,601,600,598,602,604,603,605,603,604,606,608,607,609,607,608,610,607,609,611,607,610,612,614,613,615,613,614,616,618,617,619,617,618,620,619,618,621,619,620,622,624,623,625,623,624,626,625,624,627,625,626,628,630,629,631,629,630,632,631,630,633,632,630,634,636,635,637,635,636,638,640,639,641,639,640,642,644,643,645,643,644,646,648,647,649,647,648,650,649,648,651,649,650,652,654,653,655,653,654,656,653,655,657,656,655,658,660,659,661,659,660,662,659,661,663,659,662,664,666,665,667,665,666,668,670,669,671,669,670,672,674,673,675,673,674,676,678,677,679,677,678,680,682,681,683,681,682,684,681,683,685,684,683,686,688,687,689,687,688,690,687,689,691,690,689,692,694,693,695,693,694,696,698,697,699,697,698,700,702,701,703,701,702,704,706,705,707,705,706,708,705,707,709,708,707,710,712,711,713,711,712,714,713,712,715,714,712,716,718,717,719,717,718,720,719,718,721,719,720,722,723,446,724,446,723,446,447,722,448,446,724,725,722,447,449,725,447,726,448,724,450,448,726,451,725,449,451,450,726,727,725,451,726,727,451,389,387,728,390,389,728,728,387,729,728,730,390,387,385,729,729,385,731,732,731,385,385,386,732,730,733,390,733,732,386,390,733,388,388,733,386,734,736,735,737,739,738,740,742,741,743,745,744,746,748,747,749,751,750 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *540 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4961868580121072718, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,-5.77125,3.043357 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",59.99999,4.142038E-11,2.149437E-11 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5429598936021533832, "Geometry::", "Mesh" { + Vertices: *72 { + a: 0,0,3.1,-3.72,0,3.1,0,0.5,3.1,-3.72,0.5,3.1,-3.72,0.11,0,0,0.11,0,-3.72,0.39,0,0,0.39,0,-3.72,0.11,0,-3.72,0.39,0,-3.72,0,3.1,-3.72,0.5,3.1,0,0.39,0,0,0.5,3.1,-3.72,0.39,0,-3.72,0.5,3.1,0,0,3.1,0,0.11,0,-3.72,0,3.1,-3.72,0.11,0,0,0.39,0,0,0.11,0,0,0.5,3.1,0,0,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 0,0,-14.64567,0,0,1.968504,-14.64567,1.968504,14.64567,0.4330709,0,0.4330709,14.64567,1.535433,0,1.535433,0,0.4330709,0,1.535433,12.20472,0,12.20472,1.968504,0,0.05444884,0,12.26685,14.64567,0.05444884,14.64567,12.26685,0,-12.19705,0,0.01535737,14.64567,-12.19705,14.64567,0.01535737,0,1.535433,0,0.4330709,-12.20472,1.968504,-12.20472,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5138248768583796346, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,-0.25,6.519728 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5335245304167734017, "Geometry::", "Mesh" { + Vertices: *72 { + a: 0,0,3.1,-3.72,0,3.1,0,0.5,3.1,-3.72,0.5,3.1,-3.72,0.11,0,0,0.11,0,-3.72,0.39,0,0,0.39,0,-3.72,0.11,0,-3.72,0.39,0,-3.72,0,3.1,-3.72,0.5,3.1,0,0.39,0,0,0.5,3.1,-3.72,0.39,0,-3.72,0.5,3.1,0,0,3.1,0,0.11,0,-3.72,0,3.1,-3.72,0.11,0,0,0.39,0,0,0.11,0,0,0.5,3.1,0,0,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 0,0,-14.64567,0,0,1.968504,-14.64567,1.968504,14.64567,0.4330709,0,0.4330709,14.64567,1.535433,0,1.535433,0,0.4330709,0,1.535433,12.20472,0,12.20472,1.968504,0,0.05444884,0,12.26685,14.64567,0.05444884,14.64567,12.26685,0,-12.19705,0,0.01535737,14.64567,-12.19705,14.64567,0.01535737,0,1.535433,0,0.4330709,-12.20472,1.968504,-12.20472,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4788199037087963885, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,0.25,-6.519728 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",1.987847E-15,-180,-180 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5232092698103159199, "Geometry::", "Mesh" { + Vertices: *72 { + a: 0,0,3.1,-3.72,0,3.1,0,0.5,3.1,-3.72,0.5,3.1,-3.72,0.11,0,0,0.11,0,-3.72,0.39,0,0,0.39,0,-3.72,0.11,0,-3.72,0.39,0,-3.72,0,3.1,-3.72,0.5,3.1,0,0.39,0,0,0.5,3.1,-3.72,0.39,0,-3.72,0.5,3.1,0,0,3.1,0,0.11,0,-3.72,0,3.1,-3.72,0.11,0,0,0.39,0,0,0.11,0,0,0.5,3.1,0,0,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 0,0,-14.64567,0,0,1.968504,-14.64567,1.968504,14.64567,0.4330709,0,0.4330709,14.64567,1.535433,0,1.535433,0,0.4330709,0,1.535433,12.20472,0,12.20472,1.968504,0,0.05444884,0,12.26685,14.64567,0.05444884,14.64567,12.26685,0,-12.19705,0,0.01535737,14.64567,-12.19705,14.64567,0.01535737,0,1.535433,0,0.4330709,-12.20472,1.968504,-12.20472,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4775299882148136426, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,5.52125,3.47637 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",300,-4.561142E-11,2.875347E-11 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5736595069117370715, "Geometry::", "Mesh" { + Vertices: *72 { + a: 0,0,3.1,-3.72,0,3.1,0,0.5,3.1,-3.72,0.5,3.1,-3.72,0.11,0,0,0.11,0,-3.72,0.39,0,0,0.39,0,-3.72,0.11,0,-3.72,0.39,0,-3.72,0,3.1,-3.72,0.5,3.1,0,0.39,0,0,0.5,3.1,-3.72,0.39,0,-3.72,0.5,3.1,0,0,3.1,0,0.11,0,-3.72,0,3.1,-3.72,0.11,0,0,0.39,0,0,0.11,0,0,0.5,3.1,0,0,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 0,0,-14.64567,0,0,1.968504,-14.64567,1.968504,14.64567,0.4330709,0,0.4330709,14.64567,1.535433,0,1.535433,0,0.4330709,0,1.535433,12.20472,0,12.20472,1.968504,0,0.05444884,0,12.26685,14.64567,0.05444884,14.64567,12.26685,0,-12.19705,0,0.01535737,14.64567,-12.19705,14.64567,0.01535737,0,1.535433,0,0.4330709,-12.20472,1.968504,-12.20472,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5149526757110983682, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,5.77125,-3.043357 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",300,-180,-180 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5186161799439878306, "Geometry::", "Mesh" { + Vertices: *72 { + a: 0,0,3.1,-3.72,0,3.1,0,0.5,3.1,-3.72,0.5,3.1,-3.72,0.11,0,0,0.11,0,-3.72,0.39,0,0,0.39,0,-3.72,0.11,0,-3.72,0.39,0,-3.72,0,3.1,-3.72,0.5,3.1,0,0.39,0,0,0.5,3.1,-3.72,0.39,0,-3.72,0.5,3.1,0,0,3.1,0,0.11,0,-3.72,0,3.1,-3.72,0.11,0,0,0.39,0,0,0.11,0,0,0.5,3.1,0,0,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 0,0,-14.64567,0,0,1.968504,-14.64567,1.968504,14.64567,0.4330709,0,0.4330709,14.64567,1.535433,0,1.535433,0,0.4330709,0,1.535433,12.20472,0,12.20472,1.968504,0,0.05444884,0,12.26685,14.64567,0.05444884,14.64567,12.26685,0,-12.19705,0,0.01535737,14.64567,-12.19705,14.64567,0.01535737,0,1.535433,0,0.4330709,-12.20472,1.968504,-12.20472,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5460902731162299084, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,-5.52125,-3.47637 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",59.99999,-180,-180 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5445372208883985296, "Geometry::", "Mesh" { + Vertices: *72 { + a: 0,0,3.1,-3.72,0,3.1,0,0.5,3.1,-3.72,0.5,3.1,-3.72,0.11,0,0,0.11,0,-3.72,0.39,0,0,0.39,0,-3.72,0.11,0,-3.72,0.39,0,-3.72,0,3.1,-3.72,0.5,3.1,0,0.39,0,0,0.5,3.1,-3.72,0.39,0,-3.72,0.5,3.1,0,0,3.1,0,0.11,0,-3.72,0,3.1,-3.72,0.11,0,0,0.39,0,0,0.11,0,0,0.5,3.1,0,0,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 0,0,-14.64567,0,0,1.968504,-14.64567,1.968504,14.64567,0.4330709,0,0.4330709,14.64567,1.535433,0,1.535433,0,0.4330709,0,1.535433,12.20472,0,12.20472,1.968504,0,0.05444884,0,12.26685,14.64567,0.05444884,14.64567,12.26685,0,-12.19705,0,0.01535737,14.64567,-12.19705,14.64567,0.01535737,0,1.535433,0,0.4330709,-12.20472,1.968504,-12.20472,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh watermill, Model::RootNode + C: "OO",5418027936806088197,0 + + ;Geometry::, Model::Mesh watermill + C: "OO",5518706401397278820,5418027936806088197 + + ;Material::woodDark, Model::Mesh watermill + C: "OO",7186,5418027936806088197 + + ;Material::wood, Model::Mesh watermill + C: "OO",7178,5418027936806088197 + + ;Material::stone, Model::Mesh watermill + C: "OO",7184,5418027936806088197 + + ;Material::_defaultMat, Model::Mesh watermill + C: "OO",7176,5418027936806088197 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",4961868580121072718,5418027936806088197 + + ;Geometry::, Model::Mesh paddle + C: "OO",5429598936021533832,4961868580121072718 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,4961868580121072718 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",5138248768583796346,5418027936806088197 + + ;Geometry::, Model::Mesh paddle + C: "OO",5335245304167734017,5138248768583796346 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,5138248768583796346 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",4788199037087963885,5418027936806088197 + + ;Geometry::, Model::Mesh paddle + C: "OO",5232092698103159199,4788199037087963885 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,4788199037087963885 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",4775299882148136426,5418027936806088197 + + ;Geometry::, Model::Mesh paddle + C: "OO",5736595069117370715,4775299882148136426 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,4775299882148136426 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",5149526757110983682,5418027936806088197 + + ;Geometry::, Model::Mesh paddle + C: "OO",5186161799439878306,5149526757110983682 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,5149526757110983682 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",5460902731162299084,5418027936806088197 + + ;Geometry::, Model::Mesh paddle + C: "OO",5445372208883985296,5460902731162299084 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,5460902731162299084 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermill.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermill.fbx.import new file mode 100644 index 0000000..569b21e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermill.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://8ecdg5smsbii" +path="res://.godot/imported/watermill.fbx-a45afa8bde2c6c12bc49489eefee3666.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/watermill.fbx" +dest_files=["res://.godot/imported/watermill.fbx-a45afa8bde2c6c12bc49489eefee3666.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermillWide.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermillWide.fbx new file mode 100644 index 0000000..f144559 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermillWide.fbx @@ -0,0 +1,864 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 51 + Millisecond: 48 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "watermillWide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "watermillWide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5372938626254511008, "Model::watermillWide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4645134348404722743, "Geometry::", "Mesh" { + Vertices: *2256 { + a: -3.85,7.153646,0.5239076,-3.85,7.749838,0.5239076,-3.85,7.153646,4.130159,-3.85,8.157724,4.709864,-3.85,4.03054,5.933285,-3.85,4.328636,6.449602,-3.85,7.749838,-0.5239076,-3.85,3.212506E-13,9.419728,-3.85,8.157724,-4.709864,-3.85,3.421201,6.97351,-3.85,7.153646,-4.130159,-3.85,7.153646,-0.5239076,-3.85,4.03054,-5.933285,-3.85,4.328636,-6.449602,-3.85,3.421201,-6.97351,-3.85,3.212506E-13,-9.419728,-3.85,3.212506E-13,-8.260319,-3.85,3.123106,-6.457192,-3.85,-3.421201,-6.97351,-3.85,-3.123106,-6.457192,-3.85,-8.157724,-4.709864,-3.85,-4.328636,-6.449602,-3.85,-4.03054,-5.933285,-3.85,-7.153646,-4.130159,-3.85,-7.749838,-0.5239076,-3.85,-7.153646,-0.5239076,-3.85,-8.157724,4.709864,-3.85,-7.749838,0.5239076,-3.85,-7.153646,0.5239076,-3.85,-7.153646,4.130159,-3.85,-4.03054,5.933285,-3.85,-4.328636,6.449602,-3.85,-3.421201,6.97351,-3.85,3.212506E-13,8.260319,-3.85,-3.123106,6.457192,-3.85,3.123106,6.457192,-2.85,-7.153646,4.130159,-2.85,-3.104219E-13,8.260319,-3.85,-7.153646,4.130159,-3.85,-4.03054,5.933285,-3.85,-3.123106,6.457192,-3.85,3.212506E-13,8.260319,3.85,8.157724,-4.709864,3.85,8.157724,4.709864,3.35,8.157724,-4.709864,3.35,8.157724,4.709864,3.85,-8.157724,4.709864,3.85,-8.157724,-4.709864,3.35,-8.157724,4.709864,3.35,-8.157724,-4.709864,3.85,7.153646,4.130159,3.85,7.153646,0.5239076,2.85,7.153646,4.130159,3.85,7.153646,-0.5239076,2.85,7.153646,-4.130159,3.85,7.153646,-4.130159,2.85,-7.153646,-4.130159,2.85,-3.104219E-13,-8.260319,3.85,-7.153646,-4.130159,3.85,-4.03054,-5.933285,3.85,-3.123106,-6.457192,3.85,3.212506E-13,-8.260319,3.85,3.123106,-6.457192,3.85,4.03054,-5.933285,3.85,0.1950436,-1.385641,3.85,1.102478,-0.861733,3.85,-1.102478,-0.861733,3.85,-0.1950436,-1.385641,3.85,-4.03054,-5.933285,3.85,-3.123106,-6.457192,3.85,-1.297522,-0.5239076,3.85,1.297522,-0.5239076,3.85,-7.153646,-0.5239076,3.85,7.153646,-0.5239076,3.85,-0.3,-0.3,3.85,-7.153646,0.5239076,3.85,0.3,-0.3,3.85,-0.3,0.3,3.85,7.153646,0.5239076,3.85,0.3,0.3,3.85,-1.297522,0.5239076,3.85,1.297522,0.5239076,3.85,-1.102478,0.861733,3.85,1.102478,0.861733,3.85,-0.1950436,1.385641,3.85,-4.03054,5.933285,3.85,-3.123106,6.457192,3.85,0.1950436,1.385641,3.85,4.03054,5.933285,3.85,3.123106,6.457192,3.85,3.421201,-6.97351,3.85,3.212506E-13,-8.260319,3.85,3.123106,-6.457192,3.85,3.212506E-13,-9.419728,3.85,-3.421201,-6.97351,3.85,-3.123106,-6.457192,3.85,8.157724,-4.709864,3.85,-8.157724,-4.709864,3.85,4.328636,-6.449602,3.85,-4.328636,-6.449602,3.85,4.03054,-5.933285,3.85,-4.03054,-5.933285,3.85,7.153646,-4.130159,3.85,-7.153646,-4.130159,3.85,7.749838,-0.5239076,3.85,7.153646,-0.5239076,3.85,8.157724,4.709864,3.85,7.749838,0.5239076,3.85,7.153646,0.5239076,3.85,7.153646,4.130159,3.85,4.03054,5.933285,3.85,4.328636,6.449602,3.85,3.212506E-13,9.419728,3.85,3.421201,6.97351,3.85,-7.749838,-0.5239076,3.85,-7.153646,-0.5239076,3.85,-8.157724,4.709864,3.85,-7.749838,0.5239076,3.85,-7.153646,4.130159,3.85,-7.153646,0.5239076,3.85,-4.03054,5.933285,3.85,-4.328636,6.449602,3.85,-3.421201,6.97351,3.85,3.212506E-13,8.260319,3.85,3.123106,6.457192,3.85,-3.123106,6.457192,2.85,-3.104219E-13,-8.260319,2.85,7.153646,-4.130159,3.85,3.212506E-13,-8.260319,3.85,3.123106,-6.457192,3.85,4.03054,-5.933285,3.85,7.153646,-4.130159,3.35,5.414336E-15,9.419728,3.35,8.157724,4.709864,3.85,3.212506E-13,9.419728,3.85,8.157724,4.709864,3.35,-8.157724,4.709864,3.35,5.414336E-15,9.419728,3.85,-8.157724,4.709864,3.85,3.212506E-13,9.419728,2.85,-7.153646,4.130159,3.85,-7.153646,4.130159,2.85,-3.104219E-13,8.260319,3.85,-4.03054,5.933285,3.85,-3.123106,6.457192,3.85,3.212506E-13,8.260319,2.85,-3.104219E-13,8.260319,3.85,3.212506E-13,8.260319,2.85,7.153646,4.130159,3.85,3.123106,6.457192,3.85,4.03054,5.933285,3.85,7.153646,4.130159,3.35,5.414336E-15,-9.419728,3.85,3.212506E-13,-9.419728,3.35,8.157724,-4.709864,3.85,8.157724,-4.709864,3.35,-8.157724,-4.709864,3.85,-8.157724,-4.709864,3.35,5.414336E-15,-9.419728,3.85,3.212506E-13,-9.419728,-3.35,-8.157724,-4.709864,-3.35,5.414336E-15,-9.419728,-3.85,-8.157724,-4.709864,-3.85,3.212506E-13,-9.419728,3.85,-7.153646,-4.130159,3.85,-7.153646,-0.5239076,2.85,-7.153646,-4.130159,2.85,-7.153646,4.130159,3.85,-7.153646,0.5239076,3.85,-7.153646,4.130159,-2.85,7.153646,4.130159,-2.85,7.153646,-4.130159,-3.85,7.153646,4.130159,-3.85,7.153646,0.5239076,-3.85,7.153646,-0.5239076,-3.85,7.153646,-4.130159,-2.85,-7.153646,-4.130159,-2.85,-7.153646,4.130159,-3.85,-7.153646,-4.130159,-3.85,-7.153646,-0.5239076,-3.85,-7.153646,4.130159,-3.85,-7.153646,0.5239076,-3.35,-8.157724,4.709864,-3.85,-8.157724,4.709864,-3.35,5.414336E-15,9.419728,-3.85,3.212506E-13,9.419728,-2.85,-7.153646,-4.130159,-3.85,-7.153646,-4.130159,-2.85,-3.104219E-13,-8.260319,-3.85,-4.03054,-5.933285,-3.85,-3.123106,-6.457192,-3.85,3.212506E-13,-8.260319,-2.85,-3.104219E-13,-8.260319,-3.85,3.212506E-13,-8.260319,-2.85,7.153646,-4.130159,-3.85,3.123106,-6.457192,-3.85,4.03054,-5.933285,-3.85,7.153646,-4.130159,-3.35,8.157724,-4.709864,-3.35,8.157724,4.709864,-3.85,8.157724,-4.709864,-3.85,8.157724,4.709864,-3.35,5.414336E-15,-9.419728,-3.35,8.157724,-4.709864,-3.85,3.212506E-13,-9.419728,-3.85,8.157724,-4.709864,-3.35,5.414336E-15,9.419728,-3.85,3.212506E-13,9.419728,-3.35,8.157724,4.709864,-3.85,8.157724,4.709864,-2.85,-3.104219E-13,8.260319,-2.85,7.153646,4.130159,-3.85,3.212506E-13,8.260319,-3.85,3.123106,6.457192,-3.85,4.03054,5.933285,-3.85,7.153646,4.130159,-3.35,-8.157724,4.709864,-3.35,-8.157724,-4.709864,-3.85,-8.157724,4.709864,-3.85,-8.157724,-4.709864,3.85,-0.3,0.3,-3.85,-0.3,0.3,3.85,0.3,0.3,-3.85,0.3,0.3,3.85,-0.3,0.3,3.85,-0.3,-0.3,-3.85,-0.3,0.3,-3.85,-0.3,-0.3,3.85,0.3,-0.3,3.85,0.3,0.3,-3.85,0.3,-0.3,-3.85,0.3,0.3,3.85,-0.3,-0.3,3.85,0.3,-0.3,-3.85,-0.3,-0.3,-3.85,0.3,-0.3,-3.85,-3.123106,-6.457192,-3.85,-4.03054,-5.933285,-3.85,-0.1950436,-1.385641,-3.85,-1.102478,-0.861733,-3.85,1.102478,-0.861733,-3.85,-1.297522,-0.5239076,-3.85,0.1950436,-1.385641,-3.85,4.03054,-5.933285,-3.85,3.123106,-6.457192,-3.85,1.297522,-0.5239076,-3.85,-7.153646,-0.5239076,-3.85,7.153646,-0.5239076,-3.85,0.3,-0.3,-3.85,7.153646,0.5239076,-3.85,-0.3,-0.3,-3.85,-7.153646,0.5239076,-3.85,0.3,0.3,-3.85,-0.3,0.3,-3.85,-1.297522,0.5239076,-3.85,1.297522,0.5239076,-3.85,-1.102478,0.861733,-3.85,1.102478,0.861733,-3.85,-0.1950436,1.385641,-3.85,-4.03054,5.933285,-3.85,-3.123106,6.457192,-3.85,0.1950436,1.385641,-3.85,4.03054,5.933285,-3.85,3.123106,6.457192,-4.15,3.421201,-6.97351,-3.85,3.421201,-6.97351,-4.15,4.328636,-6.449602,-3.85,4.328636,-6.449602,-4.15,-4.328636,6.449602,-4.15,-3.421201,6.97351,-3.85,-4.328636,6.449602,-3.85,-3.421201,6.97351,3.35,-8.660254,5,3.35,-8.660254,-5,2.85,-8.660254,5,2.85,-8.660254,-5,4.15,-0.1950436,1.385641,4.15,-0.8,1.385641,4.15,-3.421201,6.97351,4.15,-4.328636,6.449602,4.15,-1.102478,0.861733,2.85,-8.660254,-5,3.35,-8.660254,-5,2.85,-3.104219E-13,-10,3.35,5.414336E-15,-10,3.85,1.297522,-0.5239076,4.15,1.297522,-0.5239076,3.85,7.153646,-0.5239076,4.15,7.749838,-0.5239076,3.85,7.749838,-0.5239076,-2.85,-8.660254,5,-3.35,-8.660254,5,-2.85,-3.104219E-13,10,-3.35,5.414336E-15,10,4.15,-4.328636,-6.449602,3.85,-4.328636,-6.449602,4.15,-1.102478,-0.861733,3.85,-1.102478,-0.861733,3.85,-4.03054,-5.933285,-2.85,-3.104219E-13,-10,-2.85,8.660254,-5,-3.35,5.414336E-15,-10,-3.35,8.660254,-5,3.85,-4.328636,-6.449602,4.15,-4.328636,-6.449602,3.85,-3.421201,-6.97351,4.15,-3.421201,-6.97351,4.15,-1.297522,-0.5239076,4.15,-7.749838,-0.5239076,4.15,-1.6,-1.674834E-12,4.15,-7.749838,0.5239076,4.15,-1.297522,0.5239076,4.15,4.328636,-6.449602,4.15,0.8,-1.385641,4.15,1.102478,-0.861733,4.15,0.1950436,-1.385641,4.15,3.421201,-6.97351,4.15,-3.421201,-6.97351,4.15,-4.328636,-6.449602,4.15,-0.1950436,-1.385641,4.15,-0.8,-1.385641,4.15,-1.102478,-0.861733,4.15,-7.749838,0.5239076,4.15,-7.749838,-0.5239076,3.85,-7.749838,0.5239076,3.85,-7.749838,-0.5239076,2.85,-8.660254,5,2.85,-3.104219E-13,10,3.35,-8.660254,5,3.35,5.414336E-15,10,3.35,8.660254,-5,3.35,8.660254,5,2.85,8.660254,-5,2.85,8.660254,5,4.15,-3.421201,-6.97351,4.15,-0.1950436,-1.385641,3.85,-3.421201,-6.97351,3.85,-3.123106,-6.457192,3.85,-0.1950436,-1.385641,4.15,1.102478,-0.861733,3.85,1.102478,-0.861733,4.15,4.328636,-6.449602,3.85,4.03054,-5.933285,3.85,4.328636,-6.449602,2.85,-3.104219E-13,10,2.85,8.660254,5,3.35,5.414336E-15,10,3.35,8.660254,5,4.15,7.749838,-0.5239076,4.15,7.749838,0.5239076,3.85,7.749838,-0.5239076,3.85,7.749838,0.5239076,4.15,-3.421201,6.97351,3.85,-3.421201,6.97351,4.15,-0.1950436,1.385641,3.85,-0.1950436,1.385641,3.85,-3.123106,6.457192,4.15,1.297522,0.5239076,3.85,1.297522,0.5239076,4.15,7.749838,0.5239076,3.85,7.153646,0.5239076,3.85,7.749838,0.5239076,4.15,1.102478,0.861733,4.15,4.328636,6.449602,3.85,1.102478,0.861733,3.85,4.03054,5.933285,3.85,4.328636,6.449602,2.85,-3.104219E-13,-10,3.35,5.414336E-15,-10,2.85,8.660254,-5,3.35,8.660254,-5,4.15,1.102478,0.861733,4.15,0.8,1.385641,4.15,4.328636,6.449602,4.15,0.1950436,1.385641,4.15,3.421201,6.97351,3.85,3.421201,6.97351,3.85,4.328636,6.449602,4.15,3.421201,6.97351,4.15,4.328636,6.449602,4.15,-1.102478,0.861733,3.85,-1.102478,0.861733,4.15,-4.328636,6.449602,3.85,-4.03054,5.933285,3.85,-4.328636,6.449602,4.55,0.3341032,-0.5786837,4.55,-0.3341032,-0.5786837,4.55,0.6682063,-3.638433E-12,4.55,-0.6682063,-3.638433E-12,4.55,0.3341032,0.5786837,4.55,-0.3341032,0.5786837,-3.85,-7.749838,-0.5239076,-4.15,-7.749838,-0.5239076,-3.85,-7.749838,0.5239076,-4.15,-7.749838,0.5239076,-3.85,-0.1950436,1.385641,-3.85,-3.123106,6.457192,-4.15,-0.1950436,1.385641,-3.85,-3.421201,6.97351,-4.15,-3.421201,6.97351,-3.85,7.749838,-0.5239076,-3.85,7.749838,0.5239076,-4.15,7.749838,-0.5239076,-4.15,7.749838,0.5239076,-4.15,0.1950436,1.385641,-4.15,0.8,1.385641,-4.15,3.421201,6.97351,-4.15,4.328636,6.449602,-4.15,1.102478,0.861733,3.85,-7.749838,-0.5239076,4.15,-7.749838,-0.5239076,3.85,-7.153646,-0.5239076,4.15,-1.297522,-0.5239076,3.85,-1.297522,-0.5239076,4.15,3.421201,-6.97351,4.15,4.328636,-6.449602,3.85,3.421201,-6.97351,3.85,4.328636,-6.449602,-3.85,-7.749838,0.5239076,-4.15,-7.749838,0.5239076,-3.85,-7.153646,0.5239076,-4.15,-1.297522,0.5239076,-3.85,-1.297522,0.5239076,-3.85,-7.749838,-0.5239076,-3.85,-7.153646,-0.5239076,-4.15,-7.749838,-0.5239076,-4.15,-1.297522,-0.5239076,-3.85,-1.297522,-0.5239076,-3.85,4.328636,6.449602,-4.15,4.328636,6.449602,-3.85,4.03054,5.933285,-3.85,1.102478,0.861733,-4.15,1.102478,0.861733,4.15,-4.328636,6.449602,3.85,-4.328636,6.449602,4.15,-3.421201,6.97351,3.85,-3.421201,6.97351,4.15,7.749838,-0.5239076,4.15,1.297522,-0.5239076,4.15,7.749838,0.5239076,4.15,1.6,-1.674834E-12,4.15,1.297522,0.5239076,-2.85,8.660254,-5,-2.85,8.660254,5,-3.35,8.660254,-5,-3.35,8.660254,5,-4.55,-0.3341032,-0.5786837,-4.55,0.3341032,-0.5786837,-4.55,-0.6682063,-3.638433E-12,-4.55,0.6682063,-3.638433E-12,-4.55,-0.3341032,0.5786837,-4.55,0.3341032,0.5786837,-4.15,-7.749838,-0.5239076,-4.15,-1.297522,-0.5239076,-4.15,-7.749838,0.5239076,-4.15,-1.6,-1.674834E-12,-4.15,-1.297522,0.5239076,-4.15,1.297522,0.5239076,-4.15,7.749838,0.5239076,-3.85,1.297522,0.5239076,-3.85,7.153646,0.5239076,-3.85,7.749838,0.5239076,-3.85,1.297522,-0.5239076,-3.85,7.153646,-0.5239076,-4.15,1.297522,-0.5239076,-4.15,7.749838,-0.5239076,-3.85,7.749838,-0.5239076,4.15,0.1950436,1.385641,3.85,0.1950436,1.385641,4.15,3.421201,6.97351,3.85,3.123106,6.457192,3.85,3.421201,6.97351,3.85,-7.749838,0.5239076,3.85,-7.153646,0.5239076,4.15,-7.749838,0.5239076,4.15,-1.297522,0.5239076,3.85,-1.297522,0.5239076,-4.15,-4.328636,-6.449602,-4.15,-0.8,-1.385641,-4.15,-1.102478,-0.861733,-4.15,-0.1950436,-1.385641,-4.15,-3.421201,-6.97351,-4.15,1.297522,-0.5239076,-4.15,7.749838,-0.5239076,-4.15,1.6,-1.674834E-12,-4.15,7.749838,0.5239076,-4.15,1.297522,0.5239076,-4.15,3.421201,-6.97351,-4.15,4.328636,-6.449602,-4.15,0.1950436,-1.385641,-4.15,0.8,-1.385641,-4.15,1.102478,-0.861733,-4.15,-1.102478,0.861733,-4.15,-0.8,1.385641,-4.15,-4.328636,6.449602,-4.15,-0.1950436,1.385641,-4.15,-3.421201,6.97351,-3.85,-1.102478,-0.861733,-3.85,-4.03054,-5.933285,-4.15,-1.102478,-0.861733,-3.85,-4.328636,-6.449602,-4.15,-4.328636,-6.449602,-2.85,-3.104219E-13,10,-3.35,5.414336E-15,10,-2.85,8.660254,5,-3.35,8.660254,5,-3.85,-4.328636,6.449602,-3.85,-4.03054,5.933285,-4.15,-4.328636,6.449602,-3.85,-1.102478,0.861733,-4.15,-1.102478,0.861733,-3.85,3.421201,6.97351,-4.15,3.421201,6.97351,-3.85,4.328636,6.449602,-4.15,4.328636,6.449602,-2.85,-8.660254,5,-2.85,-8.660254,-5,-3.35,-8.660254,5,-3.35,-8.660254,-5,-3.85,-4.328636,-6.449602,-3.85,-3.421201,-6.97351,-4.15,-4.328636,-6.449602,-4.15,-3.421201,-6.97351,-3.85,3.421201,6.97351,-3.85,3.123106,6.457192,-4.15,3.421201,6.97351,-3.85,0.1950436,1.385641,-4.15,0.1950436,1.385641,-2.85,-8.660254,-5,-2.85,-3.104219E-13,-10,-3.35,-8.660254,-5,-3.35,5.414336E-15,-10,-3.85,4.328636,-6.449602,-3.85,4.03054,-5.933285,-4.15,4.328636,-6.449602,-3.85,1.102478,-0.861733,-4.15,1.102478,-0.861733,-3.85,-3.421201,-6.97351,-3.85,-3.123106,-6.457192,-4.15,-3.421201,-6.97351,-4.15,-0.1950436,-1.385641,-3.85,-0.1950436,-1.385641,2.85,-3.104219E-13,-10,2.85,-3.104219E-13,-9.419728,2.85,-8.660254,-5,2.85,8.660254,-5,2.85,-8.157724,-4.709864,2.85,-8.660254,5,2.85,8.157724,-4.709864,2.85,8.660254,5,2.85,-3.104219E-13,-8.260319,2.85,-7.153646,-4.130159,2.85,7.153646,-4.130159,2.85,-8.157724,4.709864,2.85,-7.153646,4.130159,2.85,-3.104219E-13,8.260319,2.85,8.157724,4.709864,2.85,7.153646,4.130159,2.85,-3.104219E-13,9.419728,2.85,-3.104219E-13,10,-3.35,8.157724,4.709864,-3.35,8.157724,-4.709864,-3.35,8.660254,5,-3.35,5.414336E-15,9.419728,-3.35,8.660254,-5,-3.35,5.414336E-15,10,-3.35,5.414336E-15,-9.419728,-3.35,5.414336E-15,-10,-3.35,-8.660254,-5,-3.35,-8.157724,-4.709864,-3.35,-8.660254,5,-3.35,-8.157724,4.709864,3.35,5.414336E-15,-10,3.35,5.414336E-15,-9.419728,3.35,8.660254,-5,3.35,-8.660254,-5,3.35,8.157724,-4.709864,3.35,-8.157724,-4.709864,3.35,8.660254,5,3.35,8.157724,4.709864,3.35,-8.660254,5,3.35,-8.157724,4.709864,3.35,5.414336E-15,9.419728,3.35,5.414336E-15,10,-2.85,7.153646,4.130159,-2.85,8.157724,4.709864,-2.85,7.153646,-4.130159,-2.85,-3.104219E-13,8.260319,-2.85,8.157724,-4.709864,-2.85,-3.104219E-13,-8.260319,-2.85,-3.104219E-13,9.419728,-2.85,8.660254,5,-2.85,-3.104219E-13,10,-2.85,8.660254,-5,-2.85,-8.660254,5,-2.85,-8.157724,4.709864,-2.85,-7.153646,4.130159,-2.85,-7.153646,-4.130159,-2.85,-3.104219E-13,-9.419728,-2.85,-3.104219E-13,-10,-2.85,-8.660254,-5,-2.85,-8.157724,-4.709864,3.85,-0.1950436,1.385641,3.85,0.1950436,1.385641,4.15,-0.1950436,1.385641,4.15,0.1950436,1.385641,4.55,1.184,-3.638433E-12,4.55,0.592,1.025374,4.15,1.6,-1.674834E-12,4.15,1.297522,0.5239076,4.15,1.102478,0.861733,4.15,0.8,1.385641,-3.85,-1.102478,-0.861733,-4.15,-1.102478,-0.861733,-3.85,-1.297522,-0.5239076,-4.15,-1.297522,-0.5239076,-4.15,-0.8,1.385641,-4.55,-0.592,1.025374,-4.15,-0.1950436,1.385641,-4.55,0.592,1.025374,-4.15,0.1950436,1.385641,-4.15,0.8,1.385641,4.15,0.8,-1.385641,4.55,0.592,-1.025374,4.15,1.102478,-0.861733,4.55,1.184,-3.638433E-12,4.15,1.297522,-0.5239076,4.15,1.6,-1.674834E-12,4.55,-1.184,-3.638433E-12,4.15,-1.6,-1.674834E-12,4.55,-0.592,1.025374,4.15,-1.297522,0.5239076,4.15,-1.102478,0.861733,4.15,-0.8,1.385641,3.85,-0.1950436,-1.385641,4.15,-0.1950436,-1.385641,3.85,0.1950436,-1.385641,4.15,0.1950436,-1.385641,-3.85,1.102478,-0.861733,-3.85,1.297522,-0.5239076,-4.15,1.102478,-0.861733,-4.15,1.297522,-0.5239076,-3.85,-0.1950436,1.385641,-4.15,-0.1950436,1.385641,-3.85,0.1950436,1.385641,-4.15,0.1950436,1.385641,4.15,-0.8,-1.385641,4.55,-0.592,-1.025374,4.15,-0.1950436,-1.385641,4.55,0.592,-1.025374,4.15,0.1950436,-1.385641,4.15,0.8,-1.385641,-4.15,-0.8,-1.385641,-4.15,-0.1950436,-1.385641,-4.55,-0.592,-1.025374,-4.55,0.592,-1.025374,-4.15,0.1950436,-1.385641,-4.15,0.8,-1.385641,-4.55,-1.184,-3.638433E-12,-4.55,-0.592,1.025374,-4.15,-1.6,-1.674834E-12,-4.15,-1.297522,0.5239076,-4.15,-1.102478,0.861733,-4.15,-0.8,1.385641,4.15,-1.102478,0.861733,4.15,-1.297522,0.5239076,3.85,-1.102478,0.861733,3.85,-1.297522,0.5239076,-3.85,1.297522,0.5239076,-3.85,1.102478,0.861733,-4.15,1.297522,0.5239076,-4.15,1.102478,0.861733,4.15,1.297522,-0.5239076,3.85,1.297522,-0.5239076,4.15,1.102478,-0.861733,3.85,1.102478,-0.861733,-3.85,-1.297522,0.5239076,-4.15,-1.297522,0.5239076,-3.85,-1.102478,0.861733,-4.15,-1.102478,0.861733,4.15,-0.8,1.385641,4.15,-0.1950436,1.385641,4.55,-0.592,1.025374,4.55,0.592,1.025374,4.15,0.1950436,1.385641,4.15,0.8,1.385641,4.15,-0.8,-1.385641,4.15,-1.102478,-0.861733,4.55,-0.592,-1.025374,4.55,-1.184,-3.638433E-12,4.15,-1.297522,-0.5239076,4.15,-1.6,-1.674834E-12,4.15,1.102478,0.861733,3.85,1.102478,0.861733,4.15,1.297522,0.5239076,3.85,1.297522,0.5239076,4.15,-1.297522,-0.5239076,4.15,-1.102478,-0.861733,3.85,-1.297522,-0.5239076,3.85,-1.102478,-0.861733,-3.85,-0.1950436,-1.385641,-3.85,0.1950436,-1.385641,-4.15,-0.1950436,-1.385641,-4.15,0.1950436,-1.385641,-4.15,0.8,-1.385641,-4.15,1.102478,-0.861733,-4.55,0.592,-1.025374,-4.55,1.184,-3.638433E-12,-4.15,1.297522,-0.5239076,-4.15,1.6,-1.674834E-12,-4.55,1.184,-3.638433E-12,-4.15,1.6,-1.674834E-12,-4.55,0.592,1.025374,-4.15,1.297522,0.5239076,-4.15,1.102478,0.861733,-4.15,0.8,1.385641,-4.15,-0.8,-1.385641,-4.55,-0.592,-1.025374,-4.15,-1.102478,-0.861733,-4.55,-1.184,-3.638433E-12,-4.15,-1.297522,-0.5239076,-4.15,-1.6,-1.674834E-12,-4.55,0.592,-1.025374,-4.55,-0.592,-1.025374,-4.55,-1.184,-3.638433E-12,-4.55,1.184,-3.638433E-12,-4.55,-0.592,1.025374,-4.55,0.592,1.025374,4.55,0.592,1.025374,4.55,1.184,-3.638433E-12,4.55,-0.592,1.025374,4.55,0.592,-1.025374,4.55,-0.592,-1.025374,4.55,-1.184,-3.638433E-12,4.15,3.421201,-6.97351,3.85,3.421201,-6.97351,4.15,0.1950436,-1.385641,3.85,3.123106,-6.457192,4.15,0.1950436,-1.385641,3.85,3.421201,-6.97351,3.85,0.1950436,-1.385641,4.15,0.1950436,-1.385641,3.85,3.123106,-6.457192,-3.85,3.421201,-6.97351,-4.15,3.421201,-6.97351,-3.85,3.123106,-6.457192,-3.85,0.1950436,-1.385641,-3.85,3.123106,-6.457192,-4.15,3.421201,-6.97351,-4.15,0.1950436,-1.385641,-3.85,0.1950436,-1.385641,-4.15,3.421201,-6.97351 + } + PolygonVertexIndex: *1620 { + a: 0,2,-2,2,3,-2,4,3,-3,5,3,-5,1,3,-7,7,3,-6,3,8,-7,9,7,-6,6,8,-11,11,6,-11,10,8,-13,12,8,-14,13,8,-15,8,15,-15,16,14,-16,16,17,-15,16,15,-19,18,19,-17,20,18,-16,21,18,-21,22,21,-21,23,22,-21,24,23,-21,24,25,-24,26,24,-21,27,24,-27,28,27,-27,29,28,-27,30,29,-27,31,30,-27,7,31,-27,32,31,-8,33,32,-8,32,33,-35,33,7,-10,35,33,-10,36,38,-38,39,37,-39,40,37,-40,41,37,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,57,-61,62,64,-64,65,63,-65,66,65,-65,64,67,-67,66,67,-69,69,68,-68,70,65,-67,71,65,-71,72,71,-71,73,71,-73,74,73,-73,75,74,-73,74,76,-74,77,74,-76,78,73,-77,79,77,-76,79,78,-77,80,79,-76,80,78,-80,81,78,-81,80,82,-82,83,81,-83,84,83,-83,85,84,-83,86,84,-86,84,87,-84,88,83,-88,89,88,-88,90,92,-92,91,93,-91,91,94,-94,91,95,-95,96,90,-94,97,93,-95,98,90,-97,99,97,-95,100,98,-97,101,97,-100,102,100,-97,103,97,-102,104,102,-97,104,105,-103,106,104,-97,107,104,-107,108,107,-107,109,108,-107,110,109,-107,111,110,-107,112,111,-107,113,111,-113,114,97,-104,115,114,-104,116,97,-115,117,116,-115,118,116,-118,119,118,-118,120,116,-119,121,116,-121,112,116,-122,122,112,-122,123,113,-113,123,112,-123,113,123,-125,125,123,-123,126,128,-128,129,127,-129,130,127,-130,131,127,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,143,-143,145,144,-143,146,148,-148,149,147,-149,150,149,-149,151,150,-149,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,166,167,-166,165,167,-169,169,168,-168,170,172,-172,173,171,-173,173,174,-172,175,171,-175,176,178,-178,179,177,-179,177,179,-181,181,180,-180,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,189,-189,191,190,-189,192,194,-194,195,193,-195,196,195,-195,197,196,-195,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,211,-214,215,211,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,239,238,-241,241,239,-241,238,242,-241,240,242,-244,244,243,-243,245,241,-241,246,241,-246,247,246,-246,248,246,-248,249,248,-248,248,250,-247,251,246,-251,252,248,-250,253,251,-251,253,252,-250,254,251,-254,254,253,-250,255,254,-250,254,255,-257,257,256,-256,258,256,-258,259,256,-259,260,259,-259,261,258,-258,257,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,277,279,-281,281,283,-283,284,282,-284,285,287,-287,288,286,-288,289,288,-288,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,295,-298,299,301,-301,302,300,-302,303,305,-305,306,304,-306,307,309,-309,310,308,-310,311,310,-310,312,314,-314,313,315,-313,316,312,-316,317,319,-319,320,318,-320,321,318,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,337,338,-336,339,341,-341,342,340,-342,343,342,-342,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,353,-356,357,359,-359,360,358,-360,361,360,-360,362,364,-364,365,363,-365,366,363,-366,367,369,-369,370,368,-370,371,373,-373,374,372,-374,375,374,-374,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,383,-383,385,387,-387,388,386,-388,389,388,-388,390,388,-390,391,393,-393,394,392,-394,395,397,-397,398,396,-398,399,398,-398,400,402,-402,403,401,-403,404,406,-406,407,405,-407,405,407,-409,409,411,-411,412,410,-412,413,412,-412,414,416,-416,417,415,-417,418,420,-420,421,419,-421,422,421,-421,423,425,-425,426,424,-426,427,424,-427,428,430,-430,431,429,-431,432,429,-432,433,435,-435,436,434,-436,437,439,-439,440,438,-440,441,440,-440,442,444,-444,445,443,-445,446,448,-448,449,447,-449,450,449,-449,451,449,-451,452,454,-454,455,453,-455,456,455,-455,457,459,-459,460,458,-460,461,458,-461,462,464,-464,465,463,-465,466,463,-466,467,469,-469,470,468,-470,471,470,-470,472,474,-474,475,473,-475,476,473,-476,477,479,-479,478,480,-478,481,477,-481,482,484,-484,485,483,-485,486,485,-485,487,489,-489,490,488,-490,491,488,-491,492,494,-494,495,493,-495,496,495,-495,497,499,-499,500,498,-500,501,500,-500,502,504,-504,505,503,-505,506,508,-508,509,507,-509,510,509,-509,511,513,-513,514,512,-514,515,517,-517,518,516,-518,519,521,-521,522,520,-522,523,525,-525,526,524,-526,527,526,-526,528,530,-530,531,529,-531,532,534,-534,535,533,-535,536,535,-535,537,539,-539,540,538,-540,538,540,-542,542,544,-544,542,543,-546,546,543,-545,547,546,-545,548,545,-544,549,545,-549,543,546,-551,543,550,-549,551,550,-547,552,548,-551,553,551,-547,553,546,-548,554,551,-554,555,554,-554,556,548,-553,556,549,-549,557,556,-553,555,556,-558,558,553,-548,558,555,-554,558,556,-556,558,549,-557,559,558,-548,559,549,-559,560,562,-562,563,562,-561,562,564,-562,565,562,-564,561,564,-567,567,566,-565,567,568,-567,569,566,-569,565,563,-571,570,569,-569,563,571,-571,571,569,-571,572,574,-574,572,573,-576,576,573,-575,577,575,-574,578,576,-575,579,576,-579,580,575,-578,581,580,-578,582,579,-579,582,580,-582,583,582,-579,583,580,-583,584,586,-586,587,584,-586,585,586,-589,586,589,-589,590,587,-586,585,588,-592,590,585,-592,592,590,-592,591,588,-594,592,594,-591,590,595,-588,590,594,-596,587,595,-597,596,595,-598,588,598,-594,598,588,-590,599,593,-599,599,598,-601,594,600,-602,595,594,-602,595,601,-598,597,601,-590,598,589,-602,601,600,-599,602,604,-604,605,603,-605,606,608,-608,609,607,-609,610,607,-610,611,607,-611,612,614,-614,615,613,-615,616,618,-618,619,617,-619,620,619,-619,621,619,-621,622,624,-624,625,623,-625,626,625,-625,627,625,-627,628,630,-630,631,629,-631,632,631,-631,633,632,-631,634,636,-636,637,635,-637,638,640,-640,641,639,-641,642,644,-644,645,643,-645,646,648,-648,649,647,-649,650,649,-649,651,649,-651,652,654,-654,655,653,-655,656,653,-656,657,656,-656,658,660,-660,661,659,-661,662,659,-662,663,659,-663,664,666,-666,667,665,-667,668,670,-670,671,669,-671,672,674,-674,675,673,-675,676,678,-678,679,677,-679,680,682,-682,683,681,-683,684,681,-684,685,684,-684,686,688,-688,689,687,-689,690,687,-690,691,690,-690,692,694,-694,695,693,-695,696,698,-698,699,697,-699,700,702,-702,703,701,-703,704,706,-706,707,705,-707,708,705,-708,709,708,-708,710,712,-712,713,711,-713,714,713,-713,715,714,-713,716,718,-718,719,717,-719,720,719,-719,721,719,-721,722,723,-447,724,446,-724,446,447,-723,448,446,-725,725,722,-448,449,725,-448,726,448,-725,450,448,-727,451,725,-450,451,450,-727,727,725,-452,726,727,-452,389,387,-729,390,389,-729,728,387,-730,728,730,-391,387,385,-730,729,385,-732,732,731,-386,385,386,-733,730,733,-391,733,732,-387,390,733,-389,388,733,-387,734,736,-736,737,739,-739,740,742,-742,743,745,-745,746,748,-748,749,751,-751 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *4860 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0.6692383,0.6434984,0.3715239,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,-0.6692382,0,0.7430479,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,0.6434984,-0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0.6692383,-0.6434984,0.3715239,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692382,0,-0.7430479,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,-0.6692383,-0.6434984,0.3715239,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692382,0,0.7430479,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0.6692383,-0.6434984,-0.3715239,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,-0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,0.6434984,0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-0.6692383,-0.6434984,-0.3715239,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1504 { + a: 2.062629,28.16396,2.062629,30.51117,16.26047,28.16396,18.54277,32.11702,23.35939,15.86827,25.39214,17.04187,-2.062629,30.51117,37.08554,-8.305762E-12,-18.54277,32.11702,27.45476,13.4693,-16.26047,28.16396,-2.062629,28.16396,-23.35939,15.86827,-25.39214,17.04187,-27.45476,13.4693,-37.08554,-8.305762E-12,-32.52094,-8.305762E-12,-25.42202,12.29569,-27.45476,-13.4693,-25.42202,-12.29569,-18.54277,-32.11702,-25.39214,-17.04187,-23.35939,-15.86827,-16.26047,-28.16396,-2.062629,-30.51117,-2.062629,-28.16396,18.54277,-32.11702,2.062629,-30.51117,2.062629,-28.16396,16.26047,-28.16396,23.35939,-15.86827,25.39214,-17.04187,27.45476,-13.4693,32.52094,-8.305762E-12,25.42202,-12.29569,25.42202,12.29569,11.22047,-16.26047,11.22047,16.26047,15.15748,-16.26047,15.15748,-2.062629,15.15748,2.062629,15.15748,16.26047,-15.15748,-18.54277,-15.15748,18.54277,-13.18898,-18.54277,-13.18898,18.54277,15.15748,18.54277,15.15748,-18.54277,13.18898,18.54277,13.18898,-18.54277,15.15748,16.26047,15.15748,2.062629,11.22047,16.26047,15.15748,-2.062629,11.22047,-16.26047,15.15748,-16.26047,11.22047,-16.26047,11.22047,16.26047,15.15748,-16.26047,15.15748,-2.062629,15.15748,2.062629,15.15748,16.26047,-25.42202,12.29569,-23.35939,15.86827,-5.455278,0.7678881,-3.39265,4.340466,-3.39265,-4.340466,-5.455278,-0.7678881,-23.35939,-15.86827,-25.42202,-12.29569,-2.062629,-5.108354,-2.062629,5.108354,-2.062629,-28.16396,-2.062629,28.16396,-1.181102,-1.181102,2.062629,-28.16396,-1.181102,1.181102,1.181102,-1.181102,2.062629,28.16396,1.181102,1.181102,2.062629,-5.108354,2.062629,5.108354,3.39265,-4.340466,3.39265,4.340466,5.455278,-0.7678881,23.35939,-15.86827,25.42202,-12.29569,5.455278,0.7678881,23.35939,15.86827,25.42202,12.29569,27.45476,13.4693,32.52094,-8.299056E-12,25.42202,12.29569,37.08554,-8.299056E-12,27.45476,-13.4693,25.42202,-12.29569,18.54277,32.11702,18.54277,-32.11702,25.39214,17.04187,25.39214,-17.04187,23.35939,15.86827,23.35939,-15.86827,16.26047,28.16396,16.26047,-28.16396,2.062629,30.51117,2.062629,28.16396,-18.54277,32.11702,-2.062629,30.51117,-2.062629,28.16396,-16.26047,28.16396,-23.35939,15.86827,-25.39214,17.04187,-37.08554,-8.299056E-12,-27.45476,13.4693,2.062629,-30.51117,2.062629,-28.16396,-18.54277,-32.11702,-2.062629,-30.51117,-16.26047,-28.16396,-2.062629,-28.16396,-23.35939,-15.86827,-25.39214,-17.04187,-27.45476,-13.4693,-32.52094,-8.299056E-12,-25.42202,12.29569,-25.42202,-12.29569,11.22047,-16.26047,11.22047,16.26047,15.15748,-16.26047,15.15748,-2.062629,15.15748,2.062629,15.15748,16.26047,13.18898,-18.54277,13.18898,18.54277,15.15748,-18.54277,15.15748,18.54277,13.18898,-18.54277,13.18898,18.54277,15.15748,-18.54277,15.15748,18.54277,-11.22047,-16.26047,-15.15748,-16.26047,-11.22047,16.26047,-15.15748,-2.062629,-15.15748,2.062629,-15.15748,16.26047,-11.22047,-16.26047,-15.15748,-16.26047,-11.22047,16.26047,-15.15748,-2.062629,-15.15748,2.062629,-15.15748,16.26047,-13.18898,-18.54277,-15.15748,-18.54277,-13.18898,18.54277,-15.15748,18.54277,-13.18898,-18.54277,-15.15748,-18.54277,-13.18898,18.54277,-15.15748,18.54277,13.18898,-18.54277,13.18898,18.54277,15.15748,-18.54277,15.15748,18.54277,-15.15748,-16.26047,-15.15748,-2.062629,-11.22047,-16.26047,-11.22047,16.26047,-15.15748,2.062629,-15.15748,16.26047,-11.22047,16.26047,-11.22047,-16.26047,-15.15748,16.26047,-15.15748,2.062629,-15.15748,-2.062629,-15.15748,-16.26047,11.22047,-16.26047,11.22047,16.26047,15.15748,-16.26047,15.15748,-2.062629,15.15748,16.26047,15.15748,2.062629,-13.18898,-18.54277,-15.15748,-18.54277,-13.18898,18.54277,-15.15748,18.54277,-11.22047,-16.26047,-15.15748,-16.26047,-11.22047,16.26047,-15.15748,-2.062629,-15.15748,2.062629,-15.15748,16.26047,-11.22047,-16.26047,-15.15748,-16.26047,-11.22047,16.26047,-15.15748,-2.062629,-15.15748,2.062629,-15.15748,16.26047,13.18898,-18.54277,13.18898,18.54277,15.15748,-18.54277,15.15748,18.54277,13.18898,-18.54277,13.18898,18.54277,15.15748,-18.54277,15.15748,18.54277,-13.18898,-18.54277,-15.15748,-18.54277,-13.18898,18.54277,-15.15748,18.54277,11.22047,-16.26047,11.22047,16.26047,15.15748,-16.26047,15.15748,-2.062629,15.15748,2.062629,15.15748,16.26047,-13.18898,18.54277,-13.18898,-18.54277,-15.15748,18.54277,-15.15748,-18.54277,15.15748,-1.181102,-15.15748,-1.181102,15.15748,1.181102,-15.15748,1.181102,15.15748,1.181102,15.15748,-1.181102,-15.15748,1.181102,-15.15748,-1.181102,-15.15748,-1.181102,-15.15748,1.181102,15.15748,-1.181102,15.15748,1.181102,-15.15748,-1.181102,-15.15748,1.181102,15.15748,-1.181102,15.15748,1.181102,25.42202,-12.29569,23.35939,-15.86827,5.455278,-0.7678881,3.39265,-4.340466,3.39265,4.340466,2.062629,-5.108354,5.455278,0.7678881,23.35939,15.86827,25.42202,12.29569,2.062629,5.108354,2.062629,-28.16396,2.062629,28.16396,1.181102,1.181102,-2.062629,28.16396,1.181102,-1.181102,-2.062629,-28.16396,-1.181102,1.181102,-1.181102,-1.181102,-2.062629,-5.108354,-2.062629,5.108354,-3.39265,-4.340466,-3.39265,4.340466,-5.455278,-0.7678881,-23.35939,-15.86827,-25.42202,-12.29569,-5.455278,0.7678881,-23.35939,15.86827,-25.42202,12.29569,16.33858,-2.062629,15.15748,-2.062629,16.33858,2.062629,15.15748,2.062629,-16.33858,-2.062629,-16.33858,2.062629,-15.15748,-2.062629,-15.15748,2.062629,13.18898,19.68504,13.18898,-19.68504,11.22047,19.68504,11.22047,-19.68504,-5.455278,-0.7678881,-5.455278,-3.149606,-27.45476,-13.4693,-25.39214,-17.04187,-3.39265,-4.340466,-11.22047,-19.68504,-13.18898,-19.68504,-11.22047,19.68504,-13.18898,19.68504,-15.15748,5.108354,-16.33858,5.108354,-15.15748,28.16396,-16.33858,30.51117,-15.15748,30.51117,-11.22047,-19.68504,-13.18898,-19.68504,-11.22047,19.68504,-13.18898,19.68504,16.33858,-30.51117,15.15748,-30.51117,16.33858,-5.108354,15.15748,-5.108354,15.15748,-28.16396,11.22047,-19.68504,11.22047,19.68504,13.18898,-19.68504,13.18898,19.68504,-15.15748,-2.062629,-16.33858,-2.062629,-15.15748,2.062629,-16.33858,2.062629,2.062629,-5.108354,2.062629,-30.51117,-9.550502E-11,-6.299212,-2.062629,-30.51117,-2.062629,-5.108354,25.39214,17.04187,5.455278,3.149606,3.39265,4.340466,5.455278,0.7678881,27.45476,13.4693,27.45476,-13.4693,25.39214,-17.04187,5.455278,-0.7678881,5.455278,-3.149606,3.39265,-4.340466,16.33858,2.062629,16.33858,-2.062629,15.15748,2.062629,15.15748,-2.062629,11.22047,-19.68504,11.22047,19.68504,13.18898,-19.68504,13.18898,19.68504,-13.18898,-19.68504,-13.18898,19.68504,-11.22047,-19.68504,-11.22047,19.68504,-16.33858,-30.51117,-16.33858,-5.108354,-15.15748,-30.51117,-15.15748,-28.16396,-15.15748,-5.108354,16.33858,5.108354,15.15748,5.108354,16.33858,30.51117,15.15748,28.16396,15.15748,30.51117,11.22047,-19.68504,11.22047,19.68504,13.18898,-19.68504,13.18898,19.68504,-16.33858,-2.062629,-16.33858,2.062629,-15.15748,-2.062629,-15.15748,2.062629,16.33858,-30.51117,15.15748,-30.51117,16.33858,-5.108354,15.15748,-5.108354,15.15748,-28.16396,16.33858,5.108354,15.15748,5.108354,16.33858,30.51117,15.15748,28.16396,15.15748,30.51117,-16.33858,5.108354,-16.33858,30.51117,-15.15748,5.108354,-15.15748,28.16396,-15.15748,30.51117,-11.22047,-19.68504,-13.18898,-19.68504,-11.22047,19.68504,-13.18898,19.68504,-3.39265,4.340466,-5.455278,3.149606,-25.39214,17.04187,-5.455278,0.7678881,-27.45476,13.4693,15.15748,-2.062629,15.15748,2.062629,16.33858,-2.062629,16.33858,2.062629,-16.33858,-5.108354,-15.15748,-5.108354,-16.33858,-30.51117,-15.15748,-28.16396,-15.15748,-30.51117,2.278282,1.315367,2.278282,-1.315367,-1.034703E-10,2.630734,-1.034703E-10,-2.630734,-2.278282,1.315367,-2.278282,-1.315367,-15.15748,-2.062629,-16.33858,-2.062629,-15.15748,2.062629,-16.33858,2.062629,-15.15748,-5.108354,-15.15748,-28.16396,-16.33858,-5.108354,-15.15748,-30.51117,-16.33858,-30.51117,15.15748,-2.062629,15.15748,2.062629,16.33858,-2.062629,16.33858,2.062629,5.455278,0.7678881,5.455278,3.149606,27.45476,13.4693,25.39214,17.04187,3.39265,4.340466,-15.15748,-30.51117,-16.33858,-30.51117,-15.15748,-28.16396,-16.33858,-5.108354,-15.15748,-5.108354,-16.33858,-2.062629,-16.33858,2.062629,-15.15748,-2.062629,-15.15748,2.062629,-15.15748,-30.51117,-16.33858,-30.51117,-15.15748,-28.16396,-16.33858,-5.108354,-15.15748,-5.108354,15.15748,-30.51117,15.15748,-28.16396,16.33858,-30.51117,16.33858,-5.108354,15.15748,-5.108354,15.15748,30.51117,16.33858,30.51117,15.15748,28.16396,15.15748,5.108354,16.33858,5.108354,16.33858,-2.062629,15.15748,-2.062629,16.33858,2.062629,15.15748,2.062629,2.062629,30.51117,2.062629,5.108354,-2.062629,30.51117,-1.333064E-11,6.299212,-2.062629,5.108354,11.22047,-19.68504,11.22047,19.68504,13.18898,-19.68504,13.18898,19.68504,-2.278282,-1.315367,-2.278282,1.315367,1.034703E-10,-2.630734,1.034703E-10,2.630734,2.278282,-1.315367,2.278282,1.315367,-2.062629,-30.51117,-2.062629,-5.108354,2.062629,-30.51117,9.539245E-11,-6.299212,2.062629,-5.108354,-16.33858,5.108354,-16.33858,30.51117,-15.15748,5.108354,-15.15748,28.16396,-15.15748,30.51117,15.15748,5.108354,15.15748,28.16396,16.33858,5.108354,16.33858,30.51117,15.15748,30.51117,16.33858,5.108354,15.15748,5.108354,16.33858,30.51117,15.15748,28.16396,15.15748,30.51117,15.15748,-30.51117,15.15748,-28.16396,16.33858,-30.51117,16.33858,-5.108354,15.15748,-5.108354,-25.39214,-17.04187,-5.455278,-3.149606,-3.39265,-4.340466,-5.455278,-0.7678881,-27.45476,-13.4693,-2.062629,5.108354,-2.062629,30.51117,1.327435E-11,6.299212,2.062629,30.51117,2.062629,5.108354,-27.45476,13.4693,-25.39214,17.04187,-5.455278,0.7678881,-5.455278,3.149606,-3.39265,4.340466,3.39265,-4.340466,5.455278,-3.149606,25.39214,-17.04187,5.455278,-0.7678881,27.45476,-13.4693,-15.15748,-5.108354,-15.15748,-28.16396,-16.33858,-5.108354,-15.15748,-30.51117,-16.33858,-30.51117,-11.22047,-19.68504,-13.18898,-19.68504,-11.22047,19.68504,-13.18898,19.68504,15.15748,-30.51117,15.15748,-28.16396,16.33858,-30.51117,15.15748,-5.108354,16.33858,-5.108354,-15.15748,-2.062629,-16.33858,-2.062629,-15.15748,2.062629,-16.33858,2.062629,-11.22047,19.68504,-11.22047,-19.68504,-13.18898,19.68504,-13.18898,-19.68504,15.15748,-2.062629,15.15748,2.062629,16.33858,-2.062629,16.33858,2.062629,-15.15748,30.51117,-15.15748,28.16396,-16.33858,30.51117,-15.15748,5.108354,-16.33858,5.108354,11.22047,-19.68504,11.22047,19.68504,13.18898,-19.68504,13.18898,19.68504,-15.15748,30.51117,-15.15748,28.16396,-16.33858,30.51117,-15.15748,5.108354,-16.33858,5.108354,15.15748,-30.51117,15.15748,-28.16396,16.33858,-30.51117,16.33858,-5.108354,15.15748,-5.108354,-39.37008,-8.302575E-12,-37.08554,-8.302575E-12,-19.68504,-34.09549,-19.68504,34.09549,-18.54277,-32.11702,19.68504,-34.09549,-18.54277,32.11702,19.68504,34.09549,-32.52094,-8.301846E-12,-16.26047,-28.16396,-16.26047,28.16396,18.54277,-32.11702,16.26047,-28.16396,32.52094,-8.301846E-12,18.54277,32.11702,16.26047,28.16396,37.08554,-8.302575E-12,39.37008,-8.302575E-12,18.54277,32.11702,-18.54277,32.11702,19.68504,34.09549,37.08554,-8.306804E-12,-19.68504,34.09549,39.37008,-8.306804E-12,-37.08554,-8.306804E-12,-39.37008,-8.306804E-12,-19.68504,-34.09549,-18.54277,-32.11702,19.68504,-34.09549,18.54277,-32.11702,39.37008,-8.301308E-12,37.08554,-8.301308E-12,19.68504,34.09549,19.68504,-34.09549,18.54277,32.11702,18.54277,-32.11702,-19.68504,34.09549,-18.54277,32.11702,-19.68504,-34.09549,-18.54277,-32.11702,-37.08554,-8.301308E-12,-39.37008,-8.301308E-12,-16.26047,28.16396,-18.54277,32.11702,16.26047,28.16396,-32.52094,-8.30681E-12,18.54277,32.11702,32.52094,-8.30681E-12,-37.08554,-8.30681E-12,-19.68504,34.09549,-39.37008,-8.307251E-12,19.68504,34.09549,-19.68504,-34.09549,-18.54277,-32.11702,-16.26047,-28.16396,16.26047,-28.16396,37.08554,-8.30681E-12,39.37008,-8.307251E-12,19.68504,-34.09549,18.54277,-32.11702,15.15748,-0.7678881,15.15748,0.7678881,16.33858,-0.7678881,16.33858,0.7678881,8.69459,-6.510303,5.165083,-9.555201,7.93023,-4.370646,6.126853,-5.926415,4.964003,-6.929604,3.160627,-8.485372,15.15748,0.7678881,16.33858,0.7678881,15.15748,-0.7678881,16.33858,-0.7678881,-8.489469,-3.149606,-10.60885,-2.330709,-8.489469,-0.7678881,-10.60885,2.330709,-8.489469,0.7678881,-8.489469,3.149606,-3.160627,-8.485372,-5.165083,-9.555201,-4.964003,-6.929604,-8.69459,-6.510303,-6.126853,-5.926415,-7.93023,-4.370646,8.69459,6.510303,7.93023,4.370646,5.165083,9.555201,6.126853,5.926415,4.964003,6.929604,3.160627,8.485372,-15.15748,-0.7678881,-16.33858,-0.7678881,-15.15748,0.7678881,-16.33858,0.7678881,15.15748,-0.7678881,15.15748,0.7678881,16.33858,-0.7678881,16.33858,0.7678881,-15.15748,-0.7678881,-16.33858,-0.7678881,-15.15748,0.7678881,-16.33858,0.7678881,-8.489469,-3.149606,-10.60885,-2.330709,-8.489469,-0.7678881,-10.60885,2.330709,-8.489469,0.7678881,-8.489469,3.149606,8.489469,-3.149606,8.489469,-0.7678881,10.60885,-2.330709,10.60885,2.330709,8.489469,0.7678881,8.489469,3.149606,-8.694589,6.510303,-5.165083,9.555201,-7.93023,4.370646,-6.126853,5.926414,-4.964003,6.929603,-3.160626,8.485372,16.33858,0.7678881,16.33858,-0.7678881,15.15748,0.7678881,15.15748,-0.7678881,-15.15748,0.7678881,-15.15748,-0.7678881,-16.33858,0.7678881,-16.33858,-0.7678881,-16.33858,0.7678881,-15.15748,0.7678881,-16.33858,-0.7678881,-15.15748,-0.7678881,-15.15748,-0.7678881,-16.33858,-0.7678881,-15.15748,0.7678881,-16.33858,0.7678881,8.489469,-3.149606,8.489469,-0.7678881,10.60885,-2.330709,10.60885,2.330709,8.489469,0.7678881,8.489469,3.149606,-3.160627,8.485372,-4.964003,6.929604,-5.165083,9.555201,-8.69459,6.510303,-6.126853,5.926415,-7.93023,4.370646,16.33858,-0.7678881,15.15748,-0.7678881,16.33858,0.7678881,15.15748,0.7678881,-16.33858,-0.7678881,-16.33858,0.7678881,-15.15748,-0.7678881,-15.15748,0.7678881,15.15748,-0.7678881,15.15748,0.7678881,16.33858,-0.7678881,16.33858,0.7678881,3.160626,-8.485372,4.964003,-6.929603,5.165083,-9.555201,8.694589,-6.510303,6.126853,-5.926414,7.93023,-4.370646,-8.694589,-6.510303,-7.93023,-4.370646,-5.165083,-9.555201,-6.126853,-5.926414,-4.964003,-6.929603,-3.160626,-8.485372,3.160626,8.485372,5.165083,9.555201,4.964003,6.929603,8.694589,6.510303,6.126853,5.926414,7.93023,4.370646,-4.036906,2.330709,-4.036906,-2.330709,1.034703E-10,-4.661417,1.034703E-10,4.661417,4.036906,-2.330709,4.036906,2.330709,-4.036906,2.330709,-1.034703E-10,4.661417,-4.036906,-2.330709,4.036906,2.330709,4.036906,-2.330709,-1.034703E-10,-4.661417,-15.15748,-30.51117,-16.33858,-30.51117,-15.15748,-28.16396,-15.15748,-30.51117,-16.33858,-30.51117,-15.15748,-28.16396,-15.15748,-30.51117,-16.33858,-30.51117,-15.15748,-28.16396,-37.08554,-8.30681E-12,-32.52094,-8.30681E-12,-18.54277,-32.11702,-37.08554,-8.30681E-12,-32.52094,-8.30681E-12,-18.54277,-32.11702,-37.08554,-8.30681E-12,-32.52094,-8.30681E-12,-18.54277,-32.11702 + } + UVIndex: *1620 { + a: 0,2,1,2,3,1,4,3,2,5,3,4,1,3,6,7,3,5,3,8,6,9,7,5,6,8,10,11,6,10,10,8,12,12,8,13,13,8,14,8,15,14,16,14,15,16,17,14,16,15,18,18,19,16,20,18,15,21,18,20,22,21,20,23,22,20,24,23,20,24,25,23,26,24,20,27,24,26,28,27,26,29,28,26,30,29,26,31,30,26,7,31,26,32,31,7,33,32,7,32,33,34,33,7,9,35,33,9,36,38,37,39,37,38,40,37,39,41,37,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,57,60,62,64,63,65,63,64,66,65,64,64,67,66,66,67,68,69,68,67,70,65,66,71,65,70,72,71,70,73,71,72,74,73,72,75,74,72,74,76,73,77,74,75,78,73,76,79,77,75,79,78,76,80,79,75,80,78,79,81,78,80,80,82,81,83,81,82,84,83,82,85,84,82,86,84,85,84,87,83,88,83,87,89,88,87,90,92,91,91,93,90,91,94,93,91,95,94,96,90,93,97,93,94,98,90,96,99,97,94,100,98,96,101,97,99,102,100,96,103,97,101,104,102,96,104,105,102,106,104,96,107,104,106,108,107,106,109,108,106,110,109,106,111,110,106,112,111,106,113,111,112,114,97,103,115,114,103,116,97,114,117,116,114,118,116,117,119,118,117,120,116,118,121,116,120,112,116,121,122,112,121,123,113,112,123,112,122,113,123,124,125,123,122,126,128,127,129,127,128,130,127,129,131,127,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,143,142,145,144,142,146,148,147,149,147,148,150,149,148,151,150,148,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,166,167,165,165,167,168,169,168,167,170,172,171,173,171,172,173,174,171,175,171,174,176,178,177,179,177,178,177,179,180,181,180,179,182,184,183,185,183,184,186,188,187,189,187,188,190,189,188,191,190,188,192,194,193,195,193,194,196,195,194,197,196,194,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,211,213,215,211,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,239,238,240,241,239,240,238,242,240,240,242,243,244,243,242,245,241,240,246,241,245,247,246,245,248,246,247,249,248,247,248,250,246,251,246,250,252,248,249,253,251,250,253,252,249,254,251,253,254,253,249,255,254,249,254,255,256,257,256,255,258,256,257,259,256,258,260,259,258,261,258,257,257,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,277,279,280,281,283,282,284,282,283,285,287,286,288,286,287,289,288,287,290,292,291,293,291,292,294,296,295,297,295,296,298,295,297,299,301,300,302,300,301,303,305,304,306,304,305,307,309,308,310,308,309,311,310,309,312,314,313,313,315,312,316,312,315,317,319,318,320,318,319,321,318,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,337,338,335,339,341,340,342,340,341,343,342,341,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,353,355,357,359,358,360,358,359,361,360,359,362,364,363,365,363,364,366,363,365,367,369,368,370,368,369,371,373,372,374,372,373,375,374,373,376,378,377,379,377,378,380,382,381,383,381,382,384,383,382,385,387,386,388,386,387,389,388,387,390,388,389,391,393,392,394,392,393,395,397,396,398,396,397,399,398,397,400,402,401,403,401,402,404,406,405,407,405,406,405,407,408,409,411,410,412,410,411,413,412,411,414,416,415,417,415,416,418,420,419,421,419,420,422,421,420,423,425,424,426,424,425,427,424,426,428,430,429,431,429,430,432,429,431,433,435,434,436,434,435,437,439,438,440,438,439,441,440,439,442,444,443,445,443,444,446,448,447,449,447,448,450,449,448,451,449,450,452,454,453,455,453,454,456,455,454,457,459,458,460,458,459,461,458,460,462,464,463,465,463,464,466,463,465,467,469,468,470,468,469,471,470,469,472,474,473,475,473,474,476,473,475,477,479,478,478,480,477,481,477,480,482,484,483,485,483,484,486,485,484,487,489,488,490,488,489,491,488,490,492,494,493,495,493,494,496,495,494,497,499,498,500,498,499,501,500,499,502,504,503,505,503,504,506,508,507,509,507,508,510,509,508,511,513,512,514,512,513,515,517,516,518,516,517,519,521,520,522,520,521,523,525,524,526,524,525,527,526,525,528,530,529,531,529,530,532,534,533,535,533,534,536,535,534,537,539,538,540,538,539,538,540,541,542,544,543,542,543,545,546,543,544,547,546,544,548,545,543,549,545,548,543,546,550,543,550,548,551,550,546,552,548,550,553,551,546,553,546,547,554,551,553,555,554,553,556,548,552,556,549,548,557,556,552,555,556,557,558,553,547,558,555,553,558,556,555,558,549,556,559,558,547,559,549,558,560,562,561,563,562,560,562,564,561,565,562,563,561,564,566,567,566,564,567,568,566,569,566,568,565,563,570,570,569,568,563,571,570,571,569,570,572,574,573,572,573,575,576,573,574,577,575,573,578,576,574,579,576,578,580,575,577,581,580,577,582,579,578,582,580,581,583,582,578,583,580,582,584,586,585,587,584,585,585,586,588,586,589,588,590,587,585,585,588,591,590,585,591,592,590,591,591,588,593,592,594,590,590,595,587,590,594,595,587,595,596,596,595,597,588,598,593,598,588,589,599,593,598,599,598,600,594,600,601,595,594,601,595,601,597,597,601,589,598,589,601,601,600,598,602,604,603,605,603,604,606,608,607,609,607,608,610,607,609,611,607,610,612,614,613,615,613,614,616,618,617,619,617,618,620,619,618,621,619,620,622,624,623,625,623,624,626,625,624,627,625,626,628,630,629,631,629,630,632,631,630,633,632,630,634,636,635,637,635,636,638,640,639,641,639,640,642,644,643,645,643,644,646,648,647,649,647,648,650,649,648,651,649,650,652,654,653,655,653,654,656,653,655,657,656,655,658,660,659,661,659,660,662,659,661,663,659,662,664,666,665,667,665,666,668,670,669,671,669,670,672,674,673,675,673,674,676,678,677,679,677,678,680,682,681,683,681,682,684,681,683,685,684,683,686,688,687,689,687,688,690,687,689,691,690,689,692,694,693,695,693,694,696,698,697,699,697,698,700,702,701,703,701,702,704,706,705,707,705,706,708,705,707,709,708,707,710,712,711,713,711,712,714,713,712,715,714,712,716,718,717,719,717,718,720,719,718,721,719,720,722,723,446,724,446,723,446,447,722,448,446,724,725,722,447,449,725,447,726,448,724,450,448,726,451,725,449,451,450,726,727,725,451,726,727,451,389,387,728,390,389,728,728,387,729,728,730,390,387,385,729,729,385,731,732,731,385,385,386,732,730,733,390,733,732,386,390,733,388,388,733,386,734,736,735,737,739,738,740,742,741,743,745,744,746,748,747,749,751,750 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *540 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4824286799198747611, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,-5.77125,3.043357 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",59.99999,4.142038E-11,2.149437E-11 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5389138002411252956, "Geometry::", "Mesh" { + Vertices: *72 { + a: -4.72,-1.443823E-14,3.1,-4.72,0.5,3.1,1,-7.219114E-15,3.1,1,0.5,3.1,-4.72,0.11,-7.219114E-15,1,0.11,-3.609557E-15,-4.72,0.39,-7.219114E-15,1,0.39,-3.609557E-15,-4.72,0.11,-7.219114E-15,-4.72,0.39,-7.219114E-15,-4.72,-1.443823E-14,3.1,-4.72,0.5,3.1,1,0.5,3.1,-4.72,0.5,3.1,1,0.39,-3.609557E-15,-4.72,0.39,-7.219114E-15,1,-7.219114E-15,3.1,1,0.11,-3.609557E-15,-4.72,-1.443823E-14,3.1,-4.72,0.11,-7.219114E-15,1,0.39,-3.609557E-15,1,0.11,-3.609557E-15,1,0.5,3.1,1,-7.219114E-15,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -18.58268,-5.684342E-14,-18.58268,1.968504,3.937008,-2.842171E-14,3.937008,1.968504,18.58268,0.4330709,-3.937008,0.4330709,18.58268,1.535433,-3.937008,1.535433,-2.842171E-14,0.4330709,-2.842171E-14,1.535433,12.20472,-5.684342E-14,12.20472,1.968504,-3.937008,12.26685,18.58268,12.26685,-3.937008,0.05444884,18.58268,0.05444884,-3.937008,-12.19705,-3.937008,0.01535737,18.58268,-12.19705,18.58268,0.01535737,1.421085E-14,1.535433,1.421085E-14,0.4330709,-12.20472,1.968504,-12.20472,-2.842171E-14 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4940560067770861816, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,-0.25,6.519728 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4906092301100700466, "Geometry::", "Mesh" { + Vertices: *72 { + a: 0.98,0,3.1,-4.7,0,3.1,0.98,0.5,3.1,-4.7,0.5,3.1,-4.7,0.11,0,0.98,0.11,0,-4.7,0.39,0,0.98,0.39,0,-4.7,0.11,0,-4.7,0.39,0,-4.7,0,3.1,-4.7,0.5,3.1,0.98,0.39,0,0.98,0.5,3.1,-4.7,0.39,0,-4.7,0.5,3.1,0.98,0,3.1,0.98,0.11,0,-4.7,0,3.1,-4.7,0.11,0,0.98,0.39,0,0.98,0.11,0,0.98,0.5,3.1,0.98,0,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 3.858268,0,-18.50394,0,3.858268,1.968504,-18.50394,1.968504,18.50394,0.4330709,-3.858268,0.4330709,18.50394,1.535433,-3.858268,1.535433,0,0.4330709,0,1.535433,12.20472,0,12.20472,1.968504,-3.858268,0.05444884,-3.858268,12.26685,18.50394,0.05444884,18.50394,12.26685,-3.858268,-12.19705,-3.858268,0.01535737,18.50394,-12.19705,18.50394,0.01535737,0,1.535433,0,0.4330709,-12.20472,1.968504,-12.20472,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5462092759915649670, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,0.25,-6.519728 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",1.987847E-15,-180,-180 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4763307898868053977, "Geometry::", "Mesh" { + Vertices: *72 { + a: 0.98,1.804779E-15,3.1,-4.7,3.609557E-15,3.1,0.98,0.5,3.1,-4.7,0.5,3.1,0.98,0.11,0,0.98,0.39,0,-4.7,0.11,-2.165734E-14,-4.7,0.39,-2.165734E-14,-4.7,0.11,-2.165734E-14,-4.7,0.39,-2.165734E-14,-4.7,3.609557E-15,3.1,-4.7,0.5,3.1,0.98,0.39,0,0.98,0.5,3.1,-4.7,0.39,-2.165734E-14,-4.7,0.5,3.1,0.98,1.804779E-15,3.1,0.98,0.11,0,-4.7,3.609557E-15,3.1,-4.7,0.11,-2.165734E-14,0.98,0.39,0,0.98,0.11,0,0.98,0.5,3.1,0.98,1.804779E-15,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 3.858268,7.105427E-15,-18.50394,1.421085E-14,3.858268,1.968504,-18.50394,1.968504,-3.858268,0.4330709,-3.858268,1.535433,18.50394,0.4330709,18.50394,1.535433,-8.526513E-14,0.4330709,-8.526513E-14,1.535433,12.20472,1.421085E-14,12.20472,1.968504,-3.858268,0.05444884,-3.858268,12.26685,18.50394,0.05444884,18.50394,12.26685,-3.858268,-12.19705,-3.858268,0.01535737,18.50394,-12.19705,18.50394,0.01535737,3.208893E-28,1.535433,3.208893E-28,0.4330709,-12.20472,1.968504,-12.20472,7.105427E-15 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5094872613645225226, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,5.52125,3.47637 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",300,-4.561142E-11,2.875347E-11 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5756541134896983229, "Geometry::", "Mesh" { + Vertices: *72 { + a: 1,-7.219114E-15,3.1,-4.72,0,3.1,1,0.5,3.1,-4.72,0.5,3.1,-4.72,0.11,2.165734E-14,1,0.11,2.165734E-14,-4.72,0.39,2.165734E-14,1,0.39,2.165734E-14,-4.72,0.11,2.165734E-14,-4.72,0.39,2.165734E-14,-4.72,0,3.1,-4.72,0.5,3.1,1,0.5,3.1,-4.72,0.5,3.1,1,0.39,2.165734E-14,-4.72,0.39,2.165734E-14,1,0.11,2.165734E-14,-4.72,0.11,2.165734E-14,1,-7.219114E-15,3.1,-4.72,0,3.1,1,0.39,2.165734E-14,1,0.11,2.165734E-14,1,0.5,3.1,1,-7.219114E-15,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 3.937008,-2.909921E-14,-18.58268,-6.774983E-16,3.937008,1.968504,-18.58268,1.968504,18.58268,0.4330709,-3.937008,0.4330709,18.58268,1.535433,-3.937008,1.535433,8.526513E-14,0.4330709,8.526513E-14,1.535433,12.20472,7.036391E-27,12.20472,1.968504,-3.937008,12.26685,18.58268,12.26685,-3.937008,0.05444884,18.58268,0.05444884,-3.937008,0.01535737,18.58268,0.01535737,-3.937008,-12.19705,18.58268,-12.19705,-8.526513E-14,1.535433,-8.526513E-14,0.4330709,-12.20472,1.968504,-12.20472,-2.842171E-14 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5055012538564614210, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,5.77125,-3.043357 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",300,-180,-180 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4836149861940974973, "Geometry::", "Mesh" { + Vertices: *72 { + a: 1,0,3.1,-4.72,7.219114E-15,3.1,1,0.5,3.1,-4.72,0.5,3.1,-4.72,0.11,1.804779E-15,1,0.11,3.609557E-15,-4.72,0.39,3.609557E-15,1,0.39,3.609557E-15,-4.72,0.11,1.804779E-15,-4.72,0.39,3.609557E-15,-4.72,7.219114E-15,3.1,-4.72,0.5,3.1,1,0.5,3.1,-4.72,0.5,3.1,1,0.39,3.609557E-15,-4.72,0.39,3.609557E-15,1,0.11,3.609557E-15,-4.72,0.11,1.804779E-15,1,0,3.1,-4.72,7.219114E-15,3.1,1,0.39,3.609557E-15,1,0.11,3.609557E-15,1,0.5,3.1,1,0,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: 3.937008,6.774983E-16,-18.58268,2.909921E-14,3.937008,1.968504,-18.58268,1.968504,18.58268,0.4330709,-3.937008,0.4330709,18.58268,1.535433,-3.937008,1.535433,7.105427E-15,0.4330709,1.421085E-14,1.535433,12.20472,2.842171E-14,12.20472,1.968504,-3.937008,12.26685,18.58268,12.26685,-3.937008,0.05444884,18.58268,0.05444884,-3.937008,0.01535737,18.58268,0.01535737,-3.937008,-12.19705,18.58268,-12.19705,-1.421085E-14,1.535433,-1.421085E-14,0.4330709,-12.20472,1.968504,-12.20472,1.192609E-27 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4880997659096684604, "Model::paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.85,-5.52125,-3.47637 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",59.99999,-180,-180 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5237192088424291774, "Geometry::", "Mesh" { + Vertices: *72 { + a: -4.7,-7.219114E-15,3.1,-4.7,0.5,3.1,0.98,1.443823E-14,3.1,0.98,0.5,3.1,-4.7,0.11,0,0.98,0.11,-7.219114E-15,-4.7,0.39,0,0.98,0.39,-7.219114E-15,-4.7,0.11,0,-4.7,0.39,0,-4.7,-7.219114E-15,3.1,-4.7,0.5,3.1,0.98,0.5,3.1,-4.7,0.5,3.1,0.98,0.39,-7.219114E-15,-4.7,0.39,0,0.98,0.11,-7.219114E-15,-4.7,0.11,0,0.98,1.443823E-14,3.1,-4.7,-7.219114E-15,3.1,0.98,0.39,-7.219114E-15,0.98,0.11,-7.219114E-15,0.98,0.5,3.1,0.98,1.443823E-14,3.1 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,0,-0.9993711,-0.03546156,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -18.50394,-2.842171E-14,-18.50394,1.968504,3.858268,5.684342E-14,3.858268,1.968504,18.50394,0.4330709,-3.858268,0.4330709,18.50394,1.535433,-3.858268,1.535433,5.60526E-27,0.4330709,5.60526E-27,1.535433,12.20472,-2.842171E-14,12.20472,1.968504,-3.858268,12.26685,18.50394,12.26685,-3.858268,0.05444884,18.50394,0.05444884,-3.858268,0.01535737,18.50394,0.01535737,-3.858268,-12.19705,18.50394,-12.19705,2.842171E-14,1.535433,2.842171E-14,0.4330709,-12.20472,1.968504,-12.20472,5.684342E-14 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7186, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.764151,0.4663556,0.2991723 + P: "DiffuseColor", "Color", "", "A",0.764151,0.4663556,0.2991723 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7176, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh watermillWide, Model::RootNode + C: "OO",5372938626254511008,0 + + ;Geometry::, Model::Mesh watermillWide + C: "OO",4645134348404722743,5372938626254511008 + + ;Material::woodDark, Model::Mesh watermillWide + C: "OO",7186,5372938626254511008 + + ;Material::wood, Model::Mesh watermillWide + C: "OO",7178,5372938626254511008 + + ;Material::stone, Model::Mesh watermillWide + C: "OO",7184,5372938626254511008 + + ;Material::_defaultMat, Model::Mesh watermillWide + C: "OO",7176,5372938626254511008 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",4824286799198747611,5372938626254511008 + + ;Geometry::, Model::Mesh paddle + C: "OO",5389138002411252956,4824286799198747611 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,4824286799198747611 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",4940560067770861816,5372938626254511008 + + ;Geometry::, Model::Mesh paddle + C: "OO",4906092301100700466,4940560067770861816 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,4940560067770861816 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",5462092759915649670,5372938626254511008 + + ;Geometry::, Model::Mesh paddle + C: "OO",4763307898868053977,5462092759915649670 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,5462092759915649670 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",5094872613645225226,5372938626254511008 + + ;Geometry::, Model::Mesh paddle + C: "OO",5756541134896983229,5094872613645225226 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,5094872613645225226 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",5055012538564614210,5372938626254511008 + + ;Geometry::, Model::Mesh paddle + C: "OO",4836149861940974973,5055012538564614210 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,5055012538564614210 + + ;Model::Mesh paddle, Model::USING PARENT + C: "OO",4880997659096684604,5372938626254511008 + + ;Geometry::, Model::Mesh paddle + C: "OO",5237192088424291774,4880997659096684604 + + ;Material::woodDark, Model::Mesh paddle + C: "OO",7186,4880997659096684604 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermillWide.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermillWide.fbx.import new file mode 100644 index 0000000..baea630 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/watermillWide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b84dluxwdtqo" +path="res://.godot/imported/watermillWide.fbx-23bd408cc0c85d13ac4d7f791e5eca65.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/watermillWide.fbx" +dest_files=["res://.godot/imported/watermillWide.fbx-23bd408cc0c85d13ac4d7f791e5eca65.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wheel.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wheel.fbx new file mode 100644 index 0000000..7c36009 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wheel.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 51 + Millisecond: 156 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "wheel.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "wheel.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5103379008700238258, "Model::wheel", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4989473711627830332, "Geometry::", "Mesh" { + Vertices: *1056 { + a: 3.321817,0.7241626,-1.790041,2.332839,0.9416037,-1.790041,3.1626,2.039196E-14,0,2.173622,0.217441,0,3.363454,0.9135364,-1.596144,3.221483,0.267815,0,3.11621,0.9678966,-1.596144,2.974238,0.3221753,0,2.62172,1.076617,1.596144,2.374476,1.130978,1.596144,2.479749,0.4308957,0,2.232504,0.485256,0,4.190922,4.677077,0,4.048951,4.031355,-1.596144,3.943677,4.731437,0,3.801706,4.085716,-1.596144,2.964468,2.635527,-2.257288,2.717224,2.689887,-2.257288,3.307217,4.194436,-1.596144,3.059973,4.248796,-1.596144,3.706203,2.472446,2.5315,2.717224,2.689887,2.5315,4.090588,4.220729,1.790041,3.101609,4.43817,1.790041,3.706203,2.472446,-2.5315,4.090588,4.220729,-1.790041,2.717224,2.689887,-2.5315,3.101609,4.43817,-1.790041,2.964468,2.635527,2.257288,3.307217,4.194436,1.596144,2.717224,2.689887,2.257288,3.059973,4.248796,1.596144,3.363454,0.9135364,-1.596144,3.11621,0.9678966,-1.596144,3.706203,2.472446,-2.257288,3.458958,2.526806,-2.257288,3.706203,2.472446,2.257288,4.048951,4.031355,1.596144,3.458958,2.526806,2.257288,3.801706,4.085716,1.596144,3.321817,0.7241626,1.790041,3.1626,2.039196E-14,0,2.332839,0.9416037,1.790041,2.173622,0.217441,0,3.363454,0.9135364,1.596144,3.706203,2.472446,2.257288,3.11621,0.9678966,1.596144,3.458958,2.526806,2.257288,4.249805,4.944892,0,4.090588,4.220729,1.790041,3.260827,5.162333,0,3.101609,4.43817,1.790041,2.62172,1.076617,-1.596144,2.479749,0.4308957,0,2.374476,1.130978,-1.596144,2.232504,0.485256,0,4.190922,4.677077,0,3.943677,4.731437,0,4.048951,4.031355,1.596144,3.801706,4.085716,1.596144,3.449188,4.840158,0,3.201944,4.894518,0,3.307217,4.194436,1.596144,3.059973,4.248796,1.596144,3.449188,4.840158,0,3.307217,4.194436,-1.596144,3.201944,4.894518,0,3.059973,4.248796,-1.596144,2.62172,1.076617,-1.596144,2.374476,1.130978,-1.596144,2.964468,2.635527,-2.257288,2.717224,2.689887,-2.257288,3.321817,0.7241626,-1.790041,3.706203,2.472446,-2.5315,2.332839,0.9416037,-1.790041,2.717224,2.689887,-2.5315,2.62172,1.076617,1.596144,2.964468,2.635527,2.257288,2.374476,1.130978,1.596144,2.717224,2.689887,2.257288,3.706203,2.472446,-2.257288,3.458958,2.526806,-2.257288,4.048951,4.031355,-1.596144,3.801706,4.085716,-1.596144,3.363454,0.9135364,1.596144,3.11621,0.9678966,1.596144,3.221483,0.267815,0,2.974238,0.3221753,0,4.249805,4.944892,0,3.260827,5.162333,0,4.090588,4.220729,-1.790041,3.101609,4.43817,-1.790041,3.321817,0.7241626,1.790041,2.332839,0.9416037,1.790041,3.706203,2.472446,2.5315,2.717224,2.689887,2.5315,3.706203,2.472446,-2.5315,3.706203,2.472446,-2.257288,4.090588,4.220729,-1.790041,3.321817,0.7241626,-1.790041,4.048951,4.031355,-1.596144,3.363454,0.9135364,-1.596144,4.249805,4.944892,0,4.190922,4.677077,0,3.1626,2.039196E-14,0,3.221483,0.267815,0,3.363454,0.9135364,1.596144,3.321817,0.7241626,1.790041,4.090588,4.220729,1.790041,4.048951,4.031355,1.596144,3.706203,2.472446,2.257288,3.706203,2.472446,2.5315,2.717224,2.689887,-2.5315,2.717224,2.689887,-2.257288,2.332839,0.9416037,-1.790041,3.101609,4.43817,-1.790041,2.374476,1.130978,-1.596144,3.059973,4.248796,-1.596144,2.173622,0.217441,0,2.232504,0.485256,0,3.260827,5.162333,0,3.201944,4.894518,0,3.059973,4.248796,1.596144,3.101609,4.43817,1.790041,2.332839,0.9416037,1.790041,2.374476,1.130978,1.596144,2.717224,2.689887,2.257288,2.717224,2.689887,2.5315,3.660076,2.262652,-0.2148049,3.706203,2.472446,-0.30378,3.289209,2.344192,-0.2148049,3.041965,2.398552,-0.2148049,2.671098,2.480093,-0.2148049,3.335335,2.553986,-0.30378,3.088091,2.608347,-0.30378,2.717224,2.689887,-0.30378,3.442328,3.040617,-1.506672,3.335335,2.553986,-0.30378,3.488455,3.250411,-1.417697,3.381462,2.76378,-0.2148049,3.289209,2.344192,0.2148049,3.041965,2.398552,0.2148049,3.182217,1.857561,1.417697,2.934972,1.911922,1.417697,3.195084,3.094977,-1.506672,3.24121,3.304771,-1.417697,3.088091,2.608347,-0.30378,3.134217,2.818141,-0.2148049,2.717224,2.689887,-0.30378,2.76335,2.899681,-0.2148049,2.671098,2.480093,-0.2148049,2.651992,2.393193,0,2.782456,2.98658,0,2.671098,2.480093,0.2148049,2.76335,2.899681,0.2148049,2.717224,2.689887,0.30378,3.030906,1.169361,-0.7130589,3.0118,1.082462,-0.4982541,3.289209,2.344192,-0.2148049,3.270103,2.257293,0,3.488455,3.250411,-1.417697,3.381462,2.76378,-0.2148049,3.24121,3.304771,-1.417697,3.134217,2.818141,-0.2148049,3.442328,3.040617,-1.506672,3.195084,3.094977,-1.506672,3.335335,2.553986,-0.30378,3.088091,2.608347,-0.30378,3.706203,2.472446,-0.30378,3.660076,2.262652,-0.2148049,3.752328,2.68224,-0.2148049,3.771435,2.769139,0,3.64097,2.175752,0,3.752328,2.68224,0.2148049,3.660076,2.262652,0.2148049,3.706203,2.472446,0.30378,3.660076,2.262652,0.2148049,3.64097,2.175752,0,3.289209,2.344192,0.2148049,3.270103,2.257293,0,3.041965,2.398552,0.2148049,3.022859,2.311653,0,2.671098,2.480093,0.2148049,2.651992,2.393193,0,3.041965,2.398552,0.2148049,2.671098,2.480093,0.2148049,3.088091,2.608347,0.30378,2.717224,2.689887,0.30378,3.771435,2.769139,0,3.752328,2.68224,0.2148049,3.400568,2.85068,0,3.381462,2.76378,0.2148049,3.381462,2.76378,0.2148049,3.134217,2.818141,0.2148049,3.639765,3.938611,0.7130589,3.39252,3.992971,0.7130589,3.660076,2.262652,-0.2148049,3.289209,2.344192,-0.2148049,3.64097,2.175752,0,3.270103,2.257293,0,3.400568,2.85068,0,3.381462,2.76378,0.2148049,3.658871,4.025511,0.4982541,3.639765,3.938611,0.7130589,3.400568,2.85068,0,3.658871,4.025511,0.4982541,3.153323,2.90504,0,3.411627,4.079871,0.4982541,3.706203,2.472446,0.30378,3.335335,2.553986,0.30378,3.752328,2.68224,0.2148049,3.088091,2.608347,0.30378,2.717224,2.689887,0.30378,3.381462,2.76378,0.2148049,2.76335,2.899681,0.2148049,3.134217,2.818141,0.2148049,3.030906,1.169361,-0.7130589,3.289209,2.344192,-0.2148049,2.783661,1.223721,-0.7130589,3.041965,2.398552,-0.2148049,3.771435,2.769139,0,3.400568,2.85068,0,3.752328,2.68224,-0.2148049,3.381462,2.76378,-0.2148049,3.153323,2.90504,0,3.134217,2.818141,-0.2148049,2.782456,2.98658,0,2.76335,2.899681,-0.2148049,3.041965,2.398552,0.2148049,3.088091,2.608347,0.30378,2.934972,1.911922,1.417697,2.981098,2.121715,1.506672,3.335335,2.553986,0.30378,3.228343,2.067355,1.506672,3.088091,2.608347,0.30378,2.981098,2.121715,1.506672,3.458958,2.526806,1.713055,3.719069,3.709862,1.211313,2.964468,2.635527,1.713055,3.22458,3.818583,1.211313,3.289209,2.344192,0.2148049,3.182217,1.857561,1.417697,3.335335,2.553986,0.30378,3.228343,2.067355,1.506672,3.088091,2.608347,-0.30378,3.134217,2.818141,-0.2148049,2.717224,2.689887,-0.30378,2.76335,2.899681,-0.2148049,3.0118,1.082462,-0.4982541,2.764555,1.136822,-0.4982541,3.270103,2.257293,0,3.022859,2.311653,0,3.706203,2.472446,-0.30378,3.752328,2.68224,-0.2148049,3.335335,2.553986,-0.30378,3.381462,2.76378,-0.2148049,2.783661,1.223721,-0.7130589,3.041965,2.398552,-0.2148049,2.764555,1.136822,-0.4982541,3.022859,2.311653,0,3.660076,2.262652,0.2148049,3.289209,2.344192,0.2148049,3.706203,2.472446,0.30378,3.335335,2.553986,0.30378,3.153323,2.90504,0,3.411627,4.079871,0.4982541,3.134217,2.818141,0.2148049,3.39252,3.992971,0.7130589,3.198846,1.34375,-1.211313,2.704357,1.452471,-1.211313,3.458958,2.526806,-1.713055,2.964468,2.635527,-1.713055,3.826811,4.1999,0,3.719069,3.709862,-1.211313,3.332322,4.30862,0,3.22458,3.818583,-1.211313,3.198846,1.34375,1.211313,2.704357,1.452471,1.211313,3.091104,0.8537125,0,2.596615,0.9624329,0,3.153323,2.90504,0,3.134217,2.818141,0.2148049,2.782456,2.98658,0,2.76335,2.899681,0.2148049,3.041965,2.398552,-0.2148049,2.671098,2.480093,-0.2148049,3.022859,2.311653,0,2.651992,2.393193,0,3.719069,3.709862,1.211313,3.801706,4.085716,1.596144,3.826811,4.1999,0,3.458958,2.526806,1.713055,3.943677,4.731437,0,3.458958,2.526806,2.257288,3.719069,3.709862,-1.211313,3.11621,0.9678966,1.596144,3.801706,4.085716,-1.596144,3.198846,1.34375,1.211313,3.458958,2.526806,-1.713055,3.458958,2.526806,-2.257288,3.11621,0.9678966,-1.596144,3.198846,1.34375,-1.211313,2.974238,0.3221753,0,3.091104,0.8537125,0,2.704357,1.452471,1.211313,2.62172,1.076617,1.596144,2.596615,0.9624329,0,2.964468,2.635527,1.713055,2.479749,0.4308957,0,2.964468,2.635527,2.257288,2.704357,1.452471,-1.211313,3.307217,4.194436,1.596144,2.62172,1.076617,-1.596144,3.22458,3.818583,1.211313,2.964468,2.635527,-1.713055,2.964468,2.635527,-2.257288,3.307217,4.194436,-1.596144,3.22458,3.818583,-1.211313,3.449188,4.840158,0,3.332322,4.30862,0,3.332322,4.30862,0,3.658871,4.025511,0.4982541,3.826811,4.1999,0,3.719069,3.709862,1.211313,3.411627,4.079871,0.4982541,3.639765,3.938611,0.7130589,3.39252,3.992971,0.7130589,3.22458,3.818583,1.211313,3.091104,0.8537125,0,3.030906,1.169361,-0.7130589,3.198846,1.34375,-1.211313,2.704357,1.452471,-1.211313,3.0118,1.082462,-0.4982541,2.783661,1.223721,-0.7130589,2.596615,0.9624329,0,2.764555,1.136822,-0.4982541,3.458958,2.526806,1.713055,3.182217,1.857561,1.417697,3.198846,1.34375,1.211313,2.704357,1.452471,1.211313,3.228343,2.067355,1.506672,2.934972,1.911922,1.417697,2.981098,2.121715,1.506672,2.964468,2.635527,1.713055,2.964468,2.635527,-1.713055,3.442328,3.040617,-1.506672,3.458958,2.526806,-1.713055,3.719069,3.709862,-1.211313,3.195084,3.094977,-1.506672,3.488455,3.250411,-1.417697,3.22458,3.818583,-1.211313,3.24121,3.304771,-1.417697 + } + PolygonVertexIndex: *708 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,96,97,-100,100,97,-99,101,99,-98,102,100,-99,103,100,-103,104,99,-102,105,104,-102,106,104,-106,107,104,-107,108,103,-103,109,103,-109,110,107,-107,110,109,-109,111,107,-111,111,110,-109,112,114,-114,112,113,-116,116,113,-115,117,115,-114,118,116,-115,119,116,-119,120,115,-118,121,120,-118,122,120,-122,123,120,-123,124,119,-119,125,119,-125,126,123,-123,126,125,-125,127,123,-127,127,126,-125,128,130,-130,131,129,-131,132,129,-132,133,129,-133,134,133,-133,135,134,-133,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,149,-152,153,152,-152,154,152,-154,155,154,-154,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,169,-172,173,172,-172,174,172,-174,175,174,-174,176,178,-178,179,177,-179,180,179,-179,181,179,-181,182,181,-181,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,211,-211,213,212,-211,214,212,-214,215,214,-214,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,221,-224,225,224,-224,226,224,-226,227,226,-226,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,288,-290,289,290,-293,293,291,-290,290,294,-293,293,295,-292,292,294,-297,291,295,-298,294,298,-297,299,296,-299,299,298,-301,301,300,-299,295,302,-298,302,300,-302,297,302,-304,303,302,-302,304,306,-306,307,304,-306,305,306,-309,309,307,-306,306,310,-309,309,311,-308,308,310,-313,307,311,-314,310,314,-313,315,312,-315,315,314,-317,317,316,-315,311,318,-314,318,316,-318,313,318,-320,319,318,-318,320,322,-322,323,321,-323,324,320,-322,321,323,-326,326,320,-325,327,325,-324,326,325,-328,320,326,-328,328,330,-330,331,329,-331,329,332,-329,333,329,-332,334,328,-333,335,333,-332,335,334,-333,331,334,-336,336,338,-338,339,337,-339,340,336,-338,337,339,-342,342,336,-341,343,341,-340,342,341,-344,336,342,-344,344,346,-346,347,345,-347,345,348,-345,349,345,-348,350,344,-349,351,349,-348,351,350,-349,347,350,-352 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2124 { + a: -0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,0.1518408,0.6906116,0.7071068,0.1518408,0.6906116,0.7071068,0.2147353,0.9766723,0,0.2147353,0.9766723,0,0.2147353,0.9766723,0,0.1518408,0.6906116,0.7071068,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,-0.2147353,-0.9766723,0,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,0.7071068,-0.1518408,-0.6906116,0.7071068,-0.1518408,-0.6906116,0.7071068,-0.2147353,-0.9766723,0,0,0,1,-0.1518408,-0.6906116,0.7071068,0,0,1,-0.1518408,-0.6906116,0.7071068,0,0,1,-0.1518408,-0.6906116,0.7071068,0,0,1,0.1518408,0.6906116,0.7071068,0,0,1,0.1518408,0.6906116,0.7071068,0,0,1,0.1518408,0.6906116,0.7071068,0,0,-1,0,0,-1,0.1518408,0.6906116,-0.7071068,0.1518408,0.6906116,-0.7071068,0.1518408,0.6906116,-0.7071068,0,0,-1,0,0,-1,0,0,-1,-0.1518408,-0.6906116,-0.7071068,-0.1518408,-0.6906116,-0.7071068,-0.1518408,-0.6906116,-0.7071068,0,0,-1,0.1518408,0.6906116,0.7071068,0,0,1,0.1518408,0.6906116,0.7071068,0,0,1,0.1518408,0.6906116,0.7071068,0,0,1,0,0,-1,0,0,-1,-0.1518408,-0.6906116,-0.7071068,-0.1518408,-0.6906116,-0.7071068,-0.1518408,-0.6906116,-0.7071068,0,0,-1,-0.1518408,-0.6906116,0.7071068,-0.1518408,-0.6906116,0.7071068,-0.2147353,-0.9766723,0,-0.2147353,-0.9766723,0,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,0.7071068,0.1518408,0.6906116,-0.7071068,0.1518408,0.6906116,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,0.2147353,0.9766723,0,0.1518408,0.6906116,0.7071068,0.1518408,0.6906116,0.7071068,0.1518408,0.6906116,0.7071068,0.2147353,0.9766723,0,0.1518408,0.6906116,0.7071068,0.1518408,0.6906116,0.7071068,0.2147353,0.9766723,0,0.2147353,0.9766723,0,0.2147353,0.9766723,0,0.1518408,0.6906116,0.7071068,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,0.7071068,-0.1518408,-0.6906116,0.7071068,-0.1518408,-0.6906116,0.7071068,-0.2147353,-0.9766723,0,0.1518408,0.6906116,0.7071068,0,0,1,0.1518408,0.6906116,0.7071068,0,0,1,0.1518408,0.6906116,0.7071068,0,0,1,-0.1518408,-0.6906116,-0.7071068,-0.1518408,-0.6906116,-0.7071068,0,0,-1,0,0,-1,0,0,-1,-0.1518408,-0.6906116,-0.7071068,0.1518408,0.6906116,-0.7071068,0.1518408,0.6906116,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0.1518408,0.6906116,-0.7071068,0,0,1,-0.1518408,-0.6906116,0.7071068,0,0,1,-0.1518408,-0.6906116,0.7071068,0,0,1,-0.1518408,-0.6906116,0.7071068,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,0.2147353,0.9766723,0,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,0.1518408,0.6906116,-0.7071068,-0.1518408,-0.6906116,0.7071068,0,0,1,-0.1518408,-0.6906116,0.7071068,0,0,1,-0.1518408,-0.6906116,0.7071068,0,0,1,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.1518408,-0.6906116,-0.7071068,-0.129646,-0.589664,-0.7971752,0,0,-1,-0.129646,-0.589664,-0.7971752,0,0,-1,-0.129646,-0.589664,-0.7971752,-0.1518408,-0.6906116,-0.7071068,0,0,-1,-0.129646,-0.589664,-0.7971752,-0.02937013,-0.133583,-0.9906023,0,0,-1,-0.1518408,-0.6906116,-0.7071068,-0.02937013,-0.133583,-0.9906023,-0.02937013,-0.133583,-0.9906023,-0.1518408,-0.6906116,-0.7071068,0,0,-1,-0.02937013,-0.133583,-0.9906023,-0.1518408,-0.6906116,-0.7071068,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,-0.1518408,-0.6906116,0.7071068,-0.1711817,-0.7785789,0.6037481,-0.2147353,-0.9766723,0,-0.2127173,-0.9674938,0.1367736,-0.2147353,-0.9766723,0,-0.1711817,-0.7785789,0.6037481,-0.1711817,-0.7785789,0.6037481,-0.2127173,-0.9674938,0.1367736,-0.1711817,-0.7785789,0.6037481,-0.2127173,-0.9674938,0.1367736,-0.2127173,-0.9674938,0.1367736,-0.1711817,-0.7785789,0.6037481,-0.1518408,-0.6906116,0.7071068,-0.2127173,-0.9674938,0.1367736,-0.1711817,-0.7785789,0.6037481,-0.2147353,-0.9766723,0,-0.2127173,-0.9674938,0.1367736,-0.1518408,-0.6906116,0.7071068,-0.1711817,-0.7785789,0.6037481,0.02937013,0.133583,0.9906023,-0.1518408,-0.6906116,0.7071068,0,0,1,-0.1518408,-0.6906116,0.7071068,0.02937013,0.133583,0.9906023,0.2147353,0.9766723,0,0.2127173,0.9674938,-0.1367736,0.1518408,0.6906116,0.7071068,0.129646,0.589664,0.7971752,0.1518408,0.6906116,0.7071068,0.2127173,0.9674938,-0.1367736,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.129646,-0.589664,-0.7971752,-0.2127173,-0.9674938,0.1367736,-0.129646,-0.589664,-0.7971752,-0.2147353,-0.9766723,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0,0,1,0.1518408,0.6906116,0.7071068,0.02937013,0.133583,0.9906023,0.02937013,0.133583,0.9906023,0.02937013,0.133583,0.9906023,0.1518408,0.6906116,0.7071068,0,0,1,0.02937013,0.133583,0.9906023,0.1518408,0.6906116,0.7071068,0.129646,0.589664,0.7971752,0,0,1,0.1518408,0.6906116,0.7071068,0.1518408,0.6906116,0.7071068,0,0,1,0.129646,0.589664,0.7971752,0.129646,0.589664,0.7971752,0.1518408,0.6906116,0.7071068,0.129646,0.589664,0.7971752,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.2147353,0.9766723,0,0.1518408,0.6906116,-0.7071068,0.2127173,0.9674938,-0.1367736,0.1711817,0.7785789,-0.6037481,0.2127173,0.9674938,-0.1367736,0.1518408,0.6906116,-0.7071068,0.2127173,0.9674938,-0.1367736,0.2127173,0.9674938,-0.1367736,0.1711817,0.7785789,-0.6037481,0.1711817,0.7785789,-0.6037481,0.2127173,0.9674938,-0.1367736,0.1711817,0.7785789,-0.6037481,0.2147353,0.9766723,0,0.2127173,0.9674938,-0.1367736,0.1711817,0.7785789,-0.6037481,0.1518408,0.6906116,-0.7071068,0.2147353,0.9766723,0,0.1711817,0.7785789,-0.6037481,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,-0.08217566,-0.3737563,-0.9238795,-0.08217566,-0.3737563,-0.9238795,-0.08217566,-0.3737563,-0.9238795,-0.08217566,-0.3737563,-0.9238795,-0.08217566,-0.3737563,-0.9238795,-0.08217566,-0.3737563,-0.9238795,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,-0.02937013,-0.133583,-0.9906023,0,0,-1,0.1711817,0.7785789,-0.6037481,0.1518408,0.6906116,-0.7071068,0.1711817,0.7785789,-0.6037481,0,0,-1,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,0,0,-1,-0.02937013,-0.133583,-0.9906023,0.1518408,0.6906116,-0.7071068,0.1711817,0.7785789,-0.6037481,0.1518408,0.6906116,-0.7071068,-0.02937013,-0.133583,-0.9906023,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.1518408,-0.6906116,0.7071068,0,0,1,-0.1711817,-0.7785789,0.6037481,0.02937013,0.133583,0.9906023,-0.1711817,-0.7785789,0.6037481,0,0,1,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,0.08217566,0.3737563,0.9238795,0.08217566,0.3737563,0.9238795,0.08217566,0.3737563,0.9238795,0.08217566,0.3737563,0.9238795,0.08217566,0.3737563,0.9238795,0.08217566,0.3737563,0.9238795,-0.1983896,-0.9023275,0.3826834,-0.1983896,-0.9023275,0.3826834,-0.1983896,-0.9023275,0.3826834,-0.1983896,-0.9023275,0.3826834,-0.1983896,-0.9023275,0.3826834,-0.1983896,-0.9023275,0.3826834,0.1983896,0.9023275,-0.3826834,0.1983896,0.9023275,-0.3826834,0.1983896,0.9023275,-0.3826834,0.1983896,0.9023275,-0.3826834,0.1983896,0.9023275,-0.3826834,0.1983896,0.9023275,-0.3826834,0.2127173,0.9674938,-0.1367736,0.2147353,0.9766723,0,0.129646,0.589664,0.7971752,0.1518408,0.6906116,0.7071068,0.129646,0.589664,0.7971752,0.2147353,0.9766723,0,-0.129646,-0.589664,-0.7971752,-0.2127173,-0.9674938,0.1367736,-0.1518408,-0.6906116,-0.7071068,-0.2147353,-0.9766723,0,-0.1518408,-0.6906116,-0.7071068,-0.2127173,-0.9674938,0.1367736,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,0.9766723,-0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.9766723,0.2147353,0,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,-0.1983896,-0.9023275,-0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.1983896,0.9023275,0.3826834,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,0.08217566,0.3737563,-0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795,-0.08217566,-0.3737563,0.9238795 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *704 { + a: -14.8541,1.443259,-11.39738,3.429258,-11.05405,-5.170885,-7.597333,-3.184886,14.64828,1.085038,11.25986,-4.812663,13.78411,1.581537,10.39568,-4.316164,-12.05575,2.574537,-11.19157,3.071037,-8.667323,-3.323164,-7.803143,-2.826664,14.64828,1.085038,11.25986,-4.812663,13.78411,1.581537,10.39568,-4.316164,10.83789,5.929134,9.868311,6.159873,12.41259,12.54613,11.44302,12.77687,13.65097,4.835006,9.772665,5.757962,15.41697,12.25582,11.53866,13.17878,-13.65097,4.835006,-15.41697,12.25582,-9.772665,5.757962,-11.53866,13.17878,-10.83789,5.929134,-12.41259,12.54613,-9.868311,6.159873,-11.44302,12.77687,13.74662,5.236917,12.77704,5.467656,15.32132,11.85391,14.35175,12.08465,-13.74662,5.236917,-15.32132,11.85391,-12.77704,5.467656,-14.35175,12.08465,14.8541,1.443259,11.05405,-5.170885,11.39738,3.429258,7.597333,-3.184886,-13.74662,5.236917,-15.32132,11.85391,-12.77704,5.467656,-14.35175,12.08465,14.8541,1.443259,11.05405,-5.170885,11.39738,3.429258,7.597333,-3.184886,12.05575,2.574537,8.667323,-3.323164,11.19157,3.071037,7.803143,-2.826664,-14.64828,1.085038,-13.78411,1.581537,-11.25986,-4.812663,-10.39568,-4.316164,-12.05575,2.574537,-11.19157,3.071037,-8.667323,-3.323164,-7.803143,-2.826664,12.05575,2.574537,8.667323,-3.323164,11.19157,3.071037,7.803143,-2.826664,10.83789,5.929134,9.868311,6.159873,12.41259,12.54613,11.44302,12.77687,-13.65097,4.835006,-15.41697,12.25582,-9.772665,5.757962,-11.53866,13.17878,-10.83789,5.929134,-12.41259,12.54613,-9.868311,6.159873,-11.44302,12.77687,13.74662,5.236917,12.77704,5.467656,15.32132,11.85391,14.35175,12.08465,-14.64828,1.085038,-13.78411,1.581537,-11.25986,-4.812663,-10.39568,-4.316164,-14.8541,1.443259,-11.39738,3.429258,-11.05405,-5.170885,-7.597333,-3.184886,13.65097,4.835006,9.772665,5.757962,15.41697,12.25582,11.53866,13.17878,9.966536,12.64024,8.886962,12.64024,7.047405,19.68765,7.047405,5.592839,6.284031,18.92427,6.284031,6.356213,0,22.60678,0,21.52721,0,2.673708,0,3.753282,-6.284031,6.356213,-7.047405,5.592839,-7.047405,19.68765,-6.284031,18.92427,-8.886962,12.64024,-9.966536,12.64024,-9.966536,12.64024,-8.886962,12.64024,-7.047405,5.592839,-7.047405,19.68765,-6.284031,6.356213,-6.284031,18.92427,0,2.673708,0,3.753282,0,22.60678,0,21.52721,6.284031,18.92427,7.047405,19.68765,7.047405,5.592839,6.284031,6.356213,8.886962,12.64024,9.966536,12.64024,-14.42801,8.100163,-14.63993,8.990662,-12.97365,8.446273,-12.00407,8.677011,-10.5497,9.02312,-13.18556,9.33677,-12.21599,9.56751,-10.76163,9.913618,5.931778,14.60187,1.195984,12.64024,5.581483,15.44756,0.8456886,13.48593,-11.10736,-2.077141,-10.24318,-1.580641,-8.553761,-6.521788,-7.689581,-6.025288,-5.931778,14.60187,-5.581483,15.44756,-1.195984,12.64024,-0.8456886,13.48593,-1.195984,12.64024,-0.8456886,13.48593,-0.8456886,11.79456,0,11.44426,0,13.83623,0.8456886,11.79456,0.8456886,13.48593,1.195984,12.64024,2.807319,7.058761,1.96163,6.708466,0.8456886,11.79456,0,11.44426,14.76185,4.283661,12.20825,-0.1609858,13.89767,4.780161,11.34407,0.3355139,-14.76185,4.283661,-13.89767,4.780161,-12.20825,-0.1609858,-11.34407,0.3355139,1.195984,12.64024,0.8456886,11.79456,0.8456886,13.48593,-1.480432E-27,13.83623,-1.42922E-27,11.44426,-0.8456886,13.48593,-0.8456886,11.79456,-1.195984,12.64024,13.18208,-1.466964,12.72607,-2.260661,11.88581,-0.7222146,11.4298,-1.515912,11.02163,-0.2257149,10.56562,-1.019412,9.725358,0.5190346,9.269352,-0.2746626,12.00407,8.677011,10.5497,9.02312,12.21599,9.56751,10.76163,9.913618,13.18208,-1.466964,12.72607,-2.260661,11.88581,-0.7222146,11.4298,-1.515912,13.33541,9.966447,12.36584,10.19719,14.52215,14.95317,13.55258,15.18391,-13.18208,-1.466964,-11.88581,-0.7222146,-12.72607,-2.260661,-11.4298,-1.515912,0,13.83623,-0.8456886,13.48593,-1.96163,18.57202,-2.807319,18.22173,-13.33541,9.966447,-14.52215,14.95317,-12.36584,10.19719,-13.55258,15.18391,14.42801,8.100163,12.97365,8.446273,14.63993,8.990662,12.00407,8.677011,10.5497,9.02312,13.18556,9.33677,10.76163,9.913618,12.21599,9.56751,-11.63706,2.829874,-12.8238,7.816596,-10.66748,3.060613,-11.85422,8.047335,-13.18208,-1.466964,-11.88581,-0.7222146,-12.72607,-2.260661,-11.4298,-1.515912,-11.02163,-0.2257149,-10.56562,-1.019412,-9.725358,0.5190346,-9.269352,-0.2746626,0.8456886,11.79456,1.195984,12.64024,5.581483,9.832925,5.931778,10.67861,11.10736,-2.077141,8.553761,-6.521788,10.24318,-1.580641,7.689581,-6.025288,-12.96687,6.265335,-14.16192,11.28697,-11.02772,6.726813,-12.22276,11.74845,-0.8456886,11.79456,-5.581483,9.832925,-1.195984,12.64024,-5.931778,10.67861,-12.00407,8.677011,-12.21599,9.56751,-10.5497,9.02312,-10.76163,9.913618,11.63706,2.829874,10.66748,3.060613,12.8238,7.816596,11.85422,8.047335,-14.42801,8.100163,-14.63993,8.990662,-12.97365,8.446273,-13.18556,9.33677,-2.807319,7.058761,-0.8456886,11.79456,-1.96163,6.708466,0,11.44426,14.42801,8.100163,12.97365,8.446273,14.63993,8.990662,13.18556,9.33677,0,13.83623,1.96163,18.57202,0.8456886,13.48593,2.807319,18.22173,12.96687,6.265335,11.02772,6.726813,14.16192,11.28697,12.22276,11.74845,13.37563,0.8705686,10.80416,-3.605195,11.64727,1.863568,9.075798,-2.612195,-13.37563,0.8705686,-11.64727,1.863568,-10.80416,-3.605195,-9.075798,-2.612195,11.02163,-0.2257149,10.56562,-1.019412,9.725358,0.5190346,9.269352,-0.2746626,-11.02163,-0.2257149,-9.725358,0.5190346,-10.56562,-1.019412,-9.269352,-0.2746626,-4.768949,17.40919,-6.284031,18.92427,0,19.38456,-6.744312,12.64024,0,21.52721,-8.886962,12.64024,4.768949,17.40919,-6.284031,6.356213,6.284031,18.92427,-4.768949,7.871295,6.744312,12.64024,8.886962,12.64024,6.284031,6.356213,4.768949,7.871295,0,3.753282,0,5.895932,4.768949,7.871295,6.284031,6.356213,0,5.895932,6.744312,12.64024,0,3.753282,8.886962,12.64024,-4.768949,7.871295,6.284031,18.92427,-6.284031,6.356213,4.768949,17.40919,-6.744312,12.64024,-8.886962,12.64024,-6.284031,18.92427,-4.768949,17.40919,0,21.52721,0,19.38456,-11.64727,1.863568,-11.88581,-0.7222146,-13.37563,0.8705686,-10.80416,-3.605195,-11.02163,-0.2257149,-11.4298,-1.515912,-10.56562,-1.019412,-9.075798,-2.612195,10.80416,-3.605195,11.88581,-0.7222146,13.37563,0.8705686,11.64727,1.863568,11.4298,-1.515912,11.02163,-0.2257149,9.075798,-2.612195,10.56562,-1.019412,-14.16192,11.28697,-12.97365,8.446273,-12.96687,6.265335,-11.02772,6.726813,-13.18556,9.33677,-12.00407,8.677011,-12.21599,9.56751,-12.22276,11.74845,11.02772,6.726813,12.97365,8.446273,12.96687,6.265335,14.16192,11.28697,12.00407,8.677011,13.18556,9.33677,12.22276,11.74845,12.21599,9.56751 + } + UVIndex: *708 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,96,97,99,100,97,98,101,99,97,102,100,98,103,100,102,104,99,101,105,104,101,106,104,105,107,104,106,108,103,102,109,103,108,110,107,106,110,109,108,111,107,110,111,110,108,112,114,113,112,113,115,116,113,114,117,115,113,118,116,114,119,116,118,120,115,117,121,120,117,122,120,121,123,120,122,124,119,118,125,119,124,126,123,122,126,125,124,127,123,126,127,126,124,128,130,129,131,129,130,132,129,131,133,129,132,134,133,132,135,134,132,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,149,151,153,152,151,154,152,153,155,154,153,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,169,171,173,172,171,174,172,173,175,174,173,176,178,177,179,177,178,180,179,178,181,179,180,182,181,180,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,211,210,213,212,210,214,212,213,215,214,213,216,218,217,219,217,218,220,222,221,223,221,222,224,221,223,225,224,223,226,224,225,227,226,225,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,288,289,289,290,292,293,291,289,290,294,292,293,295,291,292,294,296,291,295,297,294,298,296,299,296,298,299,298,300,301,300,298,295,302,297,302,300,301,297,302,303,303,302,301,304,306,305,307,304,305,305,306,308,309,307,305,306,310,308,309,311,307,308,310,312,307,311,313,310,314,312,315,312,314,315,314,316,317,316,314,311,318,313,318,316,317,313,318,319,319,318,317,320,322,321,323,321,322,324,320,321,321,323,325,326,320,324,327,325,323,326,325,327,320,326,327,328,330,329,331,329,330,329,332,328,333,329,331,334,328,332,335,333,331,335,334,332,331,334,335,336,338,337,339,337,338,340,336,337,337,339,341,342,336,340,343,341,339,342,341,343,336,342,343,344,346,345,347,345,346,345,348,344,349,345,347,350,344,348,351,349,347,351,350,348,347,350,351 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *236 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7184, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6916608,0.8617874,0.9339623 + P: "DiffuseColor", "Color", "", "A",0.6916608,0.8617874,0.9339623 + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh wheel, Model::RootNode + C: "OO",5103379008700238258,0 + + ;Geometry::, Model::Mesh wheel + C: "OO",4989473711627830332,5103379008700238258 + + ;Material::stone, Model::Mesh wheel + C: "OO",7184,5103379008700238258 + + ;Material::wood, Model::Mesh wheel + C: "OO",7178,5103379008700238258 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/wheel.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wheel.fbx.import new file mode 100644 index 0000000..8cf5f2e --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/wheel.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ugoijvyn7dpg" +path="res://.godot/imported/wheel.fbx-9e8d018be88ebb8dd2096855160c4269.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/wheel.fbx" +dest_files=["res://.godot/imported/wheel.fbx-9e8d018be88ebb8dd2096855160c4269.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/windmill.fbx b/assets/models/kenney_fantasy-town-kit/Models/FBX format/windmill.fbx new file mode 100644 index 0000000..153e700 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/windmill.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2022 + Month: 6 + Day: 3 + Hour: 15 + Minute: 55 + Second: 51 + Millisecond: 272 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "windmill.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "windmill.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5274111767230171103, "Model::windmill", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5120646951126964387, "Geometry::", "Mesh" { + Vertices: *4392 { + a: 0.5549999,-0.643467,0.1414212,0.5549999,-0.643467,-0.1414215,0.355,-0.7848883,-1.556421E-07,0.355,1.205543E-07,-0.7848886,0.5549999,-0.1414212,-0.6434673,0.5549999,0.1414215,-0.6434673,-0.5549999,-0.1414212,0.643467,-0.355,1.55644E-07,0.7848883,-0.355,-1.025305,1.52735,-0.355,-0.7848883,-1.556421E-07,-0.5549999,-0.643467,0.1414212,-0.355,-1.52735,1.025305,0.5549999,-0.643467,0.1414212,0.355,-0.7848883,-1.556421E-07,0.355,-1.52735,1.025305,0.355,1.55644E-07,0.7848883,0.5549999,-0.1414212,0.643467,0.355,-1.025305,1.52735,0.5549999,0.6434673,-0.1414215,0.5549999,0.6434673,0.1414212,0.355,0.7848886,-1.673399E-07,-0.5549999,0.6434673,-0.1414215,-0.355,0.7848886,-1.673399E-07,-0.5549999,0.6434673,0.1414212,-0.355,1.205543E-07,-0.7848886,-0.355,1.025305,-1.527351,-0.5549999,0.1414215,-0.6434673,0.355,1.025305,-1.527351,0.355,1.205543E-07,-0.7848886,0.5549999,0.1414215,-0.6434673,-0.5549999,0.6434673,-0.1414215,-0.355,1.527351,-1.025305,-0.355,0.7848886,-1.673399E-07,0.355,1.527351,-1.025305,0.5549999,0.6434673,-0.1414215,0.355,0.7848886,-1.673399E-07,-0.355,1.55644E-07,0.7848883,-0.5549999,0.1414215,0.643467,-0.355,1.025305,1.52735,0.355,0.7848886,-1.673399E-07,0.5549999,0.6434673,0.1414212,0.355,1.527351,1.025305,0.5549999,0.1414215,0.643467,0.355,1.55644E-07,0.7848883,0.355,1.025305,1.52735,-0.5549999,0.6434673,0.1414212,-0.355,0.7848886,-1.673399E-07,-0.355,1.527351,1.025305,0.5549999,-0.643467,-0.1414215,0.355,-1.527351,-1.025305,0.355,-0.7848883,-1.556421E-07,0.355,1.205543E-07,-0.7848886,0.355,-1.025305,-1.527351,0.5549999,-0.1414212,-0.6434673,-0.355,-1.025305,-1.527351,-0.355,1.205543E-07,-0.7848886,-0.5549999,-0.1414212,-0.6434673,-0.355,-1.527351,-1.025305,-0.5549999,-0.643467,-0.1414215,-0.355,-0.7848883,-1.556421E-07,-0.355,1.55644E-07,0.7848883,-0.5549999,-0.1414212,0.643467,-0.5549999,0.1414215,0.643467,-0.5549999,-0.1414212,-0.6434673,-0.355,1.205543E-07,-0.7848886,-0.5549999,0.1414215,-0.6434673,-0.5549999,-0.643467,0.1414212,-0.355,-0.7848883,-1.556421E-07,-0.5549999,-0.643467,-0.1414215,0.5549999,-0.1414212,0.643467,0.355,1.55644E-07,0.7848883,0.5549999,0.1414215,0.643467,-0.5549999,0.1414215,-0.6434673,-0.5549999,0.6434673,-0.1414215,-0.5549999,-0.1414212,-0.6434673,-0.5549999,1.268768E-07,-0.502046,-0.5549999,-0.643467,-0.1414215,-0.5549999,0.502046,-1.610175E-07,-0.5549999,-0.5020457,-1.385727E-07,-0.5549999,0.6434673,0.1414212,-0.5549999,-0.643467,0.1414212,-0.5549999,1.493215E-07,0.5020457,-0.5549999,0.1414215,0.643467,-0.5549999,-0.1414212,0.643467,0.2025,12.16577,12.66782,-0.2025,12.16577,12.66782,-0.151875,12.16577,12.66782,-0.355,11.68494,12.18699,0.355,11.68494,12.18699,-0.355,12.65721,13.15926,-0.2025,12.45215,12.9542,0.355,12.65721,13.15926,0.2025,12.45215,12.9542,0.2025,-5.718392,5.216347,0.2025,-8.118135,2.816603,-0.2025,-5.718392,5.216347,-0.2025,-8.118135,2.816603,0.2025,-7.831758,2.530225,0.2025,-5.432014,4.929968,-0.2025,-7.831758,2.530225,-0.151875,-5.432014,4.929968,-0.2025,-5.432014,4.929968,-0.355,-2.889945,2.387899,-0.355,-2.387899,2.889945,-0.355,-7.149556,6.647511,-0.355,-6.647511,7.149556,-0.2025,-7.831758,2.530225,-0.2025,-5.432014,4.929968,-0.2025,-8.118135,2.816603,-0.2025,-5.718392,5.216347,-0.355,-7.538465,7.036419,-0.355,-7.036419,7.538465,-0.355,-11.79808,11.29603,-0.355,-11.29603,11.79808,0.355,-12.18699,11.68494,0.355,-13.15926,12.65721,0.355,-11.68494,12.18699,0.355,-12.65721,13.15926,0.355,-7.538465,7.036419,0.355,-11.79808,11.29603,0.355,-7.036419,7.538465,0.355,-11.29603,11.79808,-0.355,-12.18699,11.68494,-0.355,-11.68494,12.18699,-0.355,-13.15926,12.65721,-0.355,-12.65721,13.15926,0.355,-7.036419,7.538465,0.355,-11.29603,11.79808,-0.355,-7.036419,7.538465,-0.355,-11.29603,11.79808,0.355,-2.889945,2.387899,0.355,-7.149556,6.647511,0.355,-2.387899,2.889945,0.355,-6.647511,7.149556,0.355,-2.387899,2.889945,0.355,-6.647511,7.149556,-0.355,-2.387899,2.889945,-0.355,-6.647511,7.149556,0.2025,-7.831758,2.530225,0.2025,-8.118135,2.816603,0.2025,-5.432014,4.929968,0.2025,-5.718392,5.216347,0.355,-11.68494,12.18699,0.355,-12.65721,13.15926,-0.355,-11.68494,12.18699,-0.355,-12.65721,13.15926,-0.2025,-8.118135,2.816603,0.2025,-8.118135,2.816603,-0.2025,-7.831758,2.530225,0.2025,-7.831758,2.530225,0.5549999,-0.643467,0.1414212,0.355,-1.52735,1.025305,0.5549999,-0.1414212,0.643467,0.355,-1.025305,1.52735,-0.2025,-15.35394,10.05241,0.2025,-15.35394,10.05241,-0.2025,-15.06756,9.766028,0.2025,-15.06756,9.766028,0.2025,-9.253926,8.751881,0.2025,-11.65367,6.352137,-0.2025,-9.253926,8.751881,-0.2025,-11.65367,6.352137,-0.355,-1.52735,1.025305,-0.355,-1.025305,1.52735,-0.355,-2.501037,1.998991,-0.355,-1.998991,2.501037,0.2025,-4.133569,-1.167964,0.2025,-1.733826,1.23178,-0.2025,-4.133569,-1.167964,-0.151875,-1.733826,1.23178,-0.2025,-1.733826,1.23178,-0.2025,-11.65367,6.352137,0.2025,-11.65367,6.352137,-0.2025,-11.36729,6.065759,0.2025,-11.36729,6.065759,0.2025,-2.020204,1.518158,0.2025,-4.419948,-0.8815855,-0.2025,-2.020204,1.518158,-0.2025,-4.419948,-0.8815855,-0.2025,-4.133569,-1.167964,-0.2025,-1.733826,1.23178,-0.2025,-4.419948,-0.8815855,-0.2025,-2.020204,1.518158,0.2025,-11.36729,6.065759,0.2025,-11.65367,6.352137,0.2025,-8.967547,8.465502,0.2025,-9.253926,8.751881,0.2025,-15.06756,9.766028,0.2025,-15.35394,10.05241,0.2025,-12.66782,12.16577,0.2025,-12.9542,12.45215,0.355,-1.52735,1.025305,0.355,-0.7848883,-1.556421E-07,-0.355,-1.52735,1.025305,-0.355,-0.7848883,-1.556421E-07,0.2025,-11.36729,6.065759,0.2025,-8.967547,8.465502,-0.2025,-11.36729,6.065759,-0.151875,-8.967547,8.465502,-0.2025,-8.967547,8.465502,0.355,-1.025305,1.52735,0.355,-1.998991,2.501037,-0.355,-1.025305,1.52735,-0.355,-1.998991,2.501037,-0.2025,-11.36729,6.065759,-0.2025,-8.967547,8.465502,-0.2025,-11.65367,6.352137,-0.2025,-9.253926,8.751881,0.355,-1.025305,1.52735,-0.355,-1.025305,1.52735,0.355,1.55644E-07,0.7848883,-0.355,1.55644E-07,0.7848883,-0.5549999,-0.643467,0.1414212,-0.5549999,-0.1414212,0.643467,-0.355,-1.52735,1.025305,-0.355,-1.025305,1.52735,0.2025,-4.133569,-1.167964,0.2025,-4.419948,-0.8815855,0.2025,-1.733826,1.23178,0.2025,-2.020204,1.518158,0.355,-13.15926,12.65721,-0.355,-13.15926,12.65721,0.355,-12.65721,13.15926,-0.355,-12.65721,13.15926,-0.2025,-4.419948,-0.8815855,0.2025,-4.419948,-0.8815855,-0.2025,-4.133569,-1.167964,0.2025,-4.133569,-1.167964,0.2025,-12.9542,12.45215,0.2025,-15.35394,10.05241,-0.2025,-12.9542,12.45215,-0.2025,-15.35394,10.05241,0.355,-1.52735,1.025305,0.355,-2.501037,1.998991,0.355,-1.025305,1.52735,0.355,-1.998991,2.501037,-0.2025,-15.06756,9.766028,-0.2025,-12.66782,12.16577,-0.2025,-15.35394,10.05241,-0.2025,-12.9542,12.45215,0.2025,-15.06756,9.766028,0.2025,-12.66782,12.16577,-0.2025,-15.06756,9.766028,-0.151875,-12.66782,12.16577,-0.2025,-12.66782,12.16577,0.2025,2.530225,7.831757,0.2025,4.929969,5.432014,-0.2025,2.530225,7.831757,-0.151875,4.929969,5.432014,-0.2025,4.929969,5.432014,-0.2025,4.929969,5.432014,-0.2025,5.216347,5.718392,-0.2025,2.530225,7.831757,-0.2025,2.816603,8.118135,0.2025,4.929969,5.432014,0.2025,2.530225,7.831757,0.2025,5.216347,5.718392,0.2025,2.816603,8.118135,0.2025,2.530225,7.831757,-0.2025,2.530225,7.831757,0.2025,2.816603,8.118135,-0.2025,2.816603,8.118135,0.2025,5.216347,5.718392,0.2025,2.816603,8.118135,-0.2025,5.216347,5.718392,-0.2025,2.816603,8.118135,0.355,12.18699,11.68494,0.355,11.68494,12.18699,0.355,13.15926,12.65721,0.355,12.65721,13.15926,-0.355,2.889946,2.387899,-0.355,7.149557,6.647511,-0.355,2.3879,2.889945,-0.355,6.647511,7.149556,-0.355,7.538466,7.036419,-0.355,11.79808,11.29603,-0.355,7.036419,7.538465,-0.355,11.29603,11.79808,-0.355,12.18699,11.68494,-0.355,13.15926,12.65721,-0.355,11.68494,12.18699,-0.355,12.65721,13.15926,-0.355,7.538466,7.036419,0.355,7.538466,7.036419,-0.355,11.79808,11.29603,0.355,11.79808,11.29603,0.355,2.889946,2.387899,0.355,2.3879,2.889945,0.355,7.149557,6.647511,0.355,6.647511,7.149556,0.355,7.538466,7.036419,0.355,7.036419,7.538465,0.355,11.79808,11.29603,0.355,11.29603,11.79808,0.2025,8.465502,8.967547,-0.2025,8.465502,8.967547,-0.151875,8.465502,8.967547,-0.355,7.036419,7.538465,0.355,7.036419,7.538465,-0.355,11.29603,11.79808,-0.2025,8.751881,9.253926,0.355,11.29603,11.79808,0.2025,8.751881,9.253926,-0.355,12.18699,11.68494,0.355,12.18699,11.68494,-0.355,13.15926,12.65721,0.355,13.15926,12.65721,-0.355,2.889946,2.387899,0.355,2.889946,2.387899,-0.355,7.149557,6.647511,0.355,7.149557,6.647511,-0.2025,9.253926,-8.751881,-0.2025,11.65367,-6.352138,-0.2025,8.967548,-8.465502,-0.2025,11.36729,-6.065759,0.2025,8.967548,-8.465502,-0.151875,8.967548,-8.465502,0.2025,11.36729,-6.065759,-0.2025,8.967548,-8.465502,-0.2025,11.36729,-6.065759,-0.2025,12.9542,-12.45215,0.2025,12.9542,-12.45215,-0.2025,15.35394,-10.05241,0.2025,15.35394,-10.05241,-0.2025,2.020204,-1.518158,-0.2025,4.419948,0.8815851,-0.2025,1.733826,-1.23178,-0.2025,4.133569,1.167963,0.355,7.036419,-7.538466,0.355,11.29603,-11.79808,-0.355,7.036419,-7.538466,-0.355,11.29603,-11.79808,0.2025,11.65367,-6.352138,0.2025,11.36729,-6.065759,-0.2025,11.65367,-6.352138,-0.2025,11.36729,-6.065759,0.355,12.65721,-13.15926,0.355,11.68494,-12.18699,0.355,13.15926,-12.65721,0.355,12.18699,-11.68494,-0.355,12.65721,-13.15926,-0.355,13.15926,-12.65721,-0.355,11.68494,-12.18699,-0.355,12.18699,-11.68494,0.355,6.647511,-7.149557,0.355,2.387899,-2.889946,0.355,7.149557,-6.647511,0.355,2.889946,-2.3879,0.2025,2.020204,-1.518158,0.2025,1.733826,-1.23178,0.2025,4.419948,0.8815851,0.2025,4.133569,1.167963,0.355,1.025305,-1.527351,0.5549999,0.1414215,-0.6434673,0.355,1.527351,-1.025305,0.5549999,0.6434673,-0.1414215,0.2025,8.118135,-2.816603,0.2025,7.831758,-2.530226,-0.2025,8.118135,-2.816603,-0.2025,7.831758,-2.530226,-0.355,6.647511,-7.149557,-0.355,7.149557,-6.647511,-0.355,2.387899,-2.889946,-0.355,2.889946,-2.3879,0.355,2.387899,-2.889946,0.355,6.647511,-7.149557,-0.355,2.387899,-2.889946,-0.355,6.647511,-7.149557,-0.2025,5.718393,-5.216347,0.2025,5.718393,-5.216347,-0.2025,8.118135,-2.816603,0.2025,8.118135,-2.816603,0.2025,5.718393,-5.216347,0.2025,5.432014,-4.929969,0.2025,8.118135,-2.816603,0.2025,7.831758,-2.530226,0.355,11.68494,-12.18699,0.355,12.65721,-13.15926,-0.355,11.68494,-12.18699,-0.355,12.65721,-13.15926,0.2025,5.432014,-4.929969,-0.151875,5.432014,-4.929969,0.2025,7.831758,-2.530226,-0.2025,5.432014,-4.929969,-0.2025,7.831758,-2.530226,0.355,11.29603,-11.79808,0.355,7.036419,-7.538466,0.355,11.79808,-11.29603,0.355,7.538465,-7.036419,-0.355,11.29603,-11.79808,-0.355,11.79808,-11.29603,-0.355,7.036419,-7.538466,-0.355,7.538465,-7.036419,-0.2025,5.718393,-5.216347,-0.2025,8.118135,-2.816603,-0.2025,5.432014,-4.929969,-0.2025,7.831758,-2.530226,0.355,1.025305,-1.527351,0.355,1.998991,-2.501037,-0.355,1.025305,-1.527351,-0.355,1.998991,-2.501037,0.2025,12.9542,-12.45215,0.2025,12.66782,-12.16577,0.2025,15.35394,-10.05241,0.2025,15.06756,-9.766028,0.355,1.527351,-1.025305,0.355,0.7848886,-1.673399E-07,-0.355,1.527351,-1.025305,-0.355,0.7848886,-1.673399E-07,-0.355,12.65721,-13.15926,0.355,12.65721,-13.15926,-0.355,13.15926,-12.65721,0.355,13.15926,-12.65721,0.2025,9.253926,-8.751881,0.2025,8.967548,-8.465502,0.2025,11.65367,-6.352138,0.2025,11.36729,-6.065759,0.2025,15.35394,-10.05241,0.2025,15.06756,-9.766028,-0.2025,15.35394,-10.05241,-0.2025,15.06756,-9.766028,-0.355,1.205543E-07,-0.7848886,0.355,1.205543E-07,-0.7848886,-0.355,1.025305,-1.527351,0.355,1.025305,-1.527351,0.355,1.998991,-2.501037,0.355,1.025305,-1.527351,0.355,2.501037,-1.998991,0.355,1.527351,-1.025305,0.2025,12.66782,-12.16577,-0.151875,12.66782,-12.16577,0.2025,15.06756,-9.766028,-0.2025,12.66782,-12.16577,-0.2025,15.06756,-9.766028,0.2025,1.733826,-1.23178,-0.151875,1.733826,-1.23178,0.2025,4.133569,1.167963,-0.2025,1.733826,-1.23178,-0.2025,4.133569,1.167963,-0.2025,12.9542,-12.45215,-0.2025,15.35394,-10.05241,-0.2025,12.66782,-12.16577,-0.2025,15.06756,-9.766028,0.2025,4.419948,0.8815851,0.2025,4.133569,1.167963,-0.2025,4.419948,0.8815851,-0.2025,4.133569,1.167963,-0.355,1.025305,-1.527351,-0.355,1.527351,-1.025305,-0.5549999,0.1414215,-0.6434673,-0.5549999,0.6434673,-0.1414215,-0.2025,2.020204,-1.518158,0.2025,2.020204,-1.518158,-0.2025,4.419948,0.8815851,0.2025,4.419948,0.8815851,-0.355,1.998991,-2.501037,-0.355,2.501037,-1.998991,-0.355,1.025305,-1.527351,-0.355,1.527351,-1.025305,-0.2025,9.253926,-8.751881,0.2025,9.253926,-8.751881,-0.2025,11.65367,-6.352138,0.2025,11.65367,-6.352138,0.2025,1.23178,1.733826,0.2025,-1.167964,4.133569,0.2025,1.518158,2.020204,0.2025,-0.8815852,4.419948,0.2025,6.065759,11.36729,-0.2025,6.065759,11.36729,0.2025,6.352138,11.65367,-0.2025,6.352138,11.65367,0.2025,6.065759,11.36729,0.2025,8.465502,8.967547,-0.2025,6.065759,11.36729,-0.151875,8.465502,8.967547,-0.2025,8.465502,8.967547,-0.5549999,0.6434673,0.1414212,-0.355,1.527351,1.025305,-0.5549999,0.1414215,0.643467,-0.355,1.025305,1.52735,0.2025,12.45215,12.9542,0.2025,10.05241,15.35394,-0.2025,12.45215,12.9542,-0.2025,10.05241,15.35394,0.2025,4.929969,5.432014,-0.2025,4.929969,5.432014,-0.151875,4.929969,5.432014,-0.355,2.3879,2.889945,0.355,2.3879,2.889945,-0.355,6.647511,7.149556,-0.2025,5.216347,5.718392,0.355,6.647511,7.149556,0.2025,5.216347,5.718392,0.355,13.15926,12.65721,0.355,12.65721,13.15926,-0.355,13.15926,12.65721,-0.355,12.65721,13.15926,0.2025,-1.167964,4.133569,-0.2025,-1.167964,4.133569,0.2025,-0.8815852,4.419948,-0.2025,-0.8815852,4.419948,-0.2025,1.23178,1.733826,-0.2025,1.518158,2.020204,-0.2025,-1.167964,4.133569,-0.2025,-0.8815852,4.419948,0.5549999,0.6434673,0.1414212,0.5549999,0.1414215,0.643467,0.355,1.527351,1.025305,0.355,1.025305,1.52735,0.2025,9.766028,15.06756,-0.2025,9.766028,15.06756,0.2025,10.05241,15.35394,-0.2025,10.05241,15.35394,0.2025,8.751881,9.253926,0.2025,6.352138,11.65367,-0.2025,8.751881,9.253926,-0.2025,6.352138,11.65367,0.2025,8.465502,8.967547,0.2025,6.065759,11.36729,0.2025,8.751881,9.253926,0.2025,6.352138,11.65367,-0.2025,12.16577,12.66782,-0.2025,12.45215,12.9542,-0.2025,9.766028,15.06756,-0.2025,10.05241,15.35394,0.2025,1.518158,2.020204,0.2025,-0.8815852,4.419948,-0.2025,1.518158,2.020204,-0.2025,-0.8815852,4.419948,0.2025,12.16577,12.66782,0.2025,9.766028,15.06756,0.2025,12.45215,12.9542,0.2025,10.05241,15.35394,0.355,1.55644E-07,0.7848883,-0.355,1.55644E-07,0.7848883,0.355,1.025305,1.52735,-0.355,1.025305,1.52735,0.355,0.7848886,-1.673399E-07,0.355,1.527351,1.025305,-0.355,0.7848886,-1.673399E-07,-0.355,1.527351,1.025305,-0.355,1.527351,1.025305,-0.355,2.501037,1.998991,-0.355,1.025305,1.52735,-0.355,1.998991,2.501037,0.2025,1.23178,1.733826,-0.2025,1.23178,1.733826,-0.151875,1.23178,1.733826,-0.355,1.025305,1.52735,0.355,1.025305,1.52735,-0.355,1.998991,2.501037,-0.2025,1.518158,2.020204,0.355,1.998991,2.501037,0.2025,1.518158,2.020204,-0.355,1.527351,1.025305,0.355,1.527351,1.025305,-0.355,2.501037,1.998991,0.355,2.501037,1.998991,-0.2025,8.465502,8.967547,-0.2025,8.751881,9.253926,-0.2025,6.065759,11.36729,-0.2025,6.352138,11.65367,0.2025,-1.167964,4.133569,0.2025,1.23178,1.733826,-0.2025,-1.167964,4.133569,-0.151875,1.23178,1.733826,-0.2025,1.23178,1.733826,0.2025,9.766028,15.06756,0.2025,12.16577,12.66782,-0.2025,9.766028,15.06756,-0.151875,12.16577,12.66782,-0.2025,12.16577,12.66782,0.355,1.527351,1.025305,0.355,1.025305,1.52735,0.355,2.501037,1.998991,0.355,1.998991,2.501037,-0.2025,-8.465502,-8.967547,-0.151875,-8.465502,-8.967547,0.2025,-8.465502,-8.967547,-0.355,-7.036419,-7.538465,-0.2025,-8.751881,-9.253926,0.355,-7.036419,-7.538465,-0.355,-11.29603,-11.79808,0.2025,-8.751881,-9.253926,0.355,-11.29603,-11.79808,0.355,-7.149557,-6.647511,-0.355,-7.149557,-6.647511,0.355,-2.889946,-2.387899,-0.355,-2.889946,-2.387899,-0.2025,-6.352138,-11.65367,-0.2025,-6.065759,-11.36729,-0.2025,-8.751881,-9.253926,-0.2025,-8.465502,-8.967547,0.2025,-6.065759,-11.36729,0.2025,-8.465502,-8.967547,-0.2025,-6.065759,-11.36729,-0.151875,-8.465502,-8.967547,-0.2025,-8.465502,-8.967547,0.2025,0.8815854,-4.419948,0.2025,-1.518158,-2.020204,0.2025,1.167964,-4.133569,0.2025,-1.23178,-1.733826,0.2025,-12.45215,-12.9542,0.2025,-10.05241,-15.35394,-0.2025,-12.45215,-12.9542,-0.2025,-10.05241,-15.35394,-0.2025,0.8815854,-4.419948,-0.2025,1.167964,-4.133569,-0.2025,-1.518158,-2.020204,-0.2025,-1.23178,-1.733826,0.355,-1.025305,-1.527351,0.355,-1.527351,-1.025305,0.5549999,-0.1414212,-0.6434673,0.5549999,-0.643467,-0.1414215,-0.2025,-6.352138,-11.65367,0.2025,-6.352138,-11.65367,-0.2025,-6.065759,-11.36729,0.2025,-6.065759,-11.36729,-0.2025,-10.05241,-15.35394,-0.2025,-9.766028,-15.06756,-0.2025,-12.45215,-12.9542,-0.2025,-12.16577,-12.66782,-0.2025,-10.05241,-15.35394,0.2025,-10.05241,-15.35394,-0.2025,-9.766028,-15.06756,0.2025,-9.766028,-15.06756,0.2025,-5.216347,-5.718392,0.2025,-2.816603,-8.118135,-0.2025,-5.216347,-5.718392,-0.2025,-2.816603,-8.118135,0.2025,-2.816603,-8.118135,0.2025,-5.216347,-5.718392,0.2025,-2.530225,-7.831758,0.2025,-4.929968,-5.432014,0.355,-11.29603,-11.79808,0.355,-11.79808,-11.29603,0.355,-7.036419,-7.538465,0.355,-7.538466,-7.036419,0.355,-11.79808,-11.29603,-0.355,-11.79808,-11.29603,0.355,-7.538466,-7.036419,-0.355,-7.538466,-7.036419,0.355,-6.647511,-7.149556,0.355,-7.149557,-6.647511,0.355,-2.387899,-2.889946,0.355,-2.889946,-2.387899,-0.2025,-12.16577,-12.66782,-0.151875,-12.16577,-12.66782,0.2025,-12.16577,-12.66782,-0.355,-11.68494,-12.18699,-0.2025,-12.45215,-12.9542,0.355,-11.68494,-12.18699,-0.355,-12.65721,-13.15926,0.2025,-12.45215,-12.9542,0.355,-12.65721,-13.15926,0.355,-13.15926,-12.65721,-0.355,-13.15926,-12.65721,0.355,-12.18699,-11.68494,-0.355,-12.18699,-11.68494,-0.355,-6.647511,-7.149556,-0.355,-2.387899,-2.889946,-0.355,-7.149557,-6.647511,-0.355,-2.889946,-2.387899,0.355,-12.65721,-13.15926,0.355,-13.15926,-12.65721,0.355,-11.68494,-12.18699,0.355,-12.18699,-11.68494,-0.2025,-2.816603,-8.118135,-0.2025,-2.530225,-7.831758,-0.2025,-5.216347,-5.718392,-0.2025,-4.929968,-5.432014,-0.2025,-2.816603,-8.118135,0.2025,-2.816603,-8.118135,-0.2025,-2.530225,-7.831758,0.2025,-2.530225,-7.831758,-0.355,-11.29603,-11.79808,-0.355,-7.036419,-7.538465,-0.355,-11.79808,-11.29603,-0.355,-7.538466,-7.036419,0.2025,-2.530225,-7.831758,0.2025,-4.929968,-5.432014,-0.2025,-2.530225,-7.831758,-0.151875,-4.929968,-5.432014,-0.2025,-4.929968,-5.432014,-0.355,-12.65721,-13.15926,-0.355,-11.68494,-12.18699,-0.355,-13.15926,-12.65721,-0.355,-12.18699,-11.68494,0.2025,-9.766028,-15.06756,0.2025,-12.16577,-12.66782,-0.2025,-9.766028,-15.06756,-0.151875,-12.16577,-12.66782,-0.2025,-12.16577,-12.66782,0.2025,-6.352138,-11.65367,0.2025,-8.751881,-9.253926,0.2025,-6.065759,-11.36729,0.2025,-8.465502,-8.967547,-0.2025,-4.929968,-5.432014,-0.151875,-4.929968,-5.432014,0.2025,-4.929968,-5.432014,-0.355,-2.387899,-2.889946,-0.2025,-5.216347,-5.718392,0.355,-2.387899,-2.889946,-0.355,-6.647511,-7.149556,0.2025,-5.216347,-5.718392,0.355,-6.647511,-7.149556,-0.355,-1.998991,-2.501037,-0.355,-1.025305,-1.527351,-0.355,-2.501037,-1.998991,-0.355,-1.527351,-1.025305,-0.355,-1.025305,-1.527351,0.355,-1.025305,-1.527351,-0.355,1.205543E-07,-0.7848886,0.355,1.205543E-07,-0.7848886,-0.2025,0.8815854,-4.419948,0.2025,0.8815854,-4.419948,-0.2025,1.167964,-4.133569,0.2025,1.167964,-4.133569,0.2025,-10.05241,-15.35394,0.2025,-12.45215,-12.9542,0.2025,-9.766028,-15.06756,0.2025,-12.16577,-12.66782,0.355,-0.7848883,-1.556421E-07,0.355,-1.527351,-1.025305,-0.355,-0.7848883,-1.556421E-07,-0.355,-1.527351,-1.025305,0.355,-1.998991,-2.501037,0.355,-2.501037,-1.998991,0.355,-1.025305,-1.527351,0.355,-1.527351,-1.025305,-0.355,-1.025305,-1.527351,-0.5549999,-0.1414212,-0.6434673,-0.355,-1.527351,-1.025305,-0.5549999,-0.643467,-0.1414215,0.355,-2.501037,-1.998991,-0.355,-2.501037,-1.998991,0.355,-1.527351,-1.025305,-0.355,-1.527351,-1.025305,0.2025,-1.518158,-2.020204,0.2025,0.8815854,-4.419948,-0.2025,-1.518158,-2.020204,-0.2025,0.8815854,-4.419948,0.2025,-8.751881,-9.253926,0.2025,-6.352138,-11.65367,-0.2025,-8.751881,-9.253926,-0.2025,-6.352138,-11.65367,0.355,-13.15926,-12.65721,0.355,-12.65721,-13.15926,-0.355,-13.15926,-12.65721,-0.355,-12.65721,-13.15926,-0.2025,-1.23178,-1.733826,-0.151875,-1.23178,-1.733826,0.2025,-1.23178,-1.733826,-0.355,-1.025305,-1.527351,-0.2025,-1.518158,-2.020204,0.355,-1.025305,-1.527351,-0.355,-1.998991,-2.501037,0.2025,-1.518158,-2.020204,0.355,-1.998991,-2.501037,0.2025,1.167964,-4.133569,0.2025,-1.23178,-1.733826,-0.2025,1.167964,-4.133569,-0.151875,-1.23178,-1.733826,-0.2025,-1.23178,-1.733826,2.355,-0.5020457,-1.385727E-07,0.5549999,-0.5020457,-1.385727E-07,2.355,1.493215E-07,0.5020457,0.5549999,1.493215E-07,0.5020457,2.355,-0.5020457,-1.385727E-07,2.355,1.268768E-07,-0.502046,0.5549999,-0.5020457,-1.385727E-07,0.5549999,1.268768E-07,-0.502046,0.5549999,0.1414215,-0.6434673,0.5549999,-0.1414212,-0.6434673,0.5549999,0.6434673,-0.1414215,0.5549999,1.268768E-07,-0.502046,0.5549999,-0.643467,-0.1414215,0.5549999,0.502046,-1.610175E-07,0.5549999,-0.5020457,-1.385727E-07,0.5549999,0.6434673,0.1414212,0.5549999,-0.643467,0.1414212,0.5549999,1.493215E-07,0.5020457,0.5549999,0.1414215,0.643467,0.5549999,-0.1414212,0.643467,-0.5549999,-0.5020457,-1.385727E-07,-2.355,-0.5020457,-1.385727E-07,-0.5549999,1.493215E-07,0.5020457,-2.355,1.493215E-07,0.5020457,-0.5549999,0.502046,-1.610175E-07,-0.5549999,1.493215E-07,0.5020457,-2.355,0.502046,-1.610175E-07,-2.355,1.493215E-07,0.5020457,-2.355,1.268768E-07,-0.502046,-0.5549999,1.268768E-07,-0.502046,-2.355,0.502046,-1.610175E-07,-0.5549999,0.502046,-1.610175E-07,-2.355,1.268768E-07,-0.502046,-2.355,0.502046,-1.610175E-07,-2.355,-0.5020457,-1.385727E-07,-2.355,1.493215E-07,0.5020457,-0.5549999,-0.5020457,-1.385727E-07,-0.5549999,1.268768E-07,-0.502046,-2.355,-0.5020457,-1.385727E-07,-2.355,1.268768E-07,-0.502046,2.355,0.502046,-1.610175E-07,2.355,1.493215E-07,0.5020457,0.5549999,0.502046,-1.610175E-07,0.5549999,1.493215E-07,0.5020457,2.355,1.268768E-07,-0.502046,2.355,-0.5020457,-1.385727E-07,2.355,0.502046,-1.610175E-07,2.355,1.493215E-07,0.5020457,0.5549999,1.268768E-07,-0.502046,2.355,1.268768E-07,-0.502046,0.5549999,0.502046,-1.610175E-07,2.355,0.502046,-1.610175E-07,-0.2025,-9.253926,8.751881,-0.355,-11.79808,11.29603,0.2025,-9.253926,8.751881,-0.2025,-8.967547,8.465502,0.355,-11.79808,11.29603,0.355,-7.538465,7.036419,0.2025,-8.967547,8.465502,-0.355,-7.538465,7.036419,-0.151875,-8.967547,8.465502,-0.2025,-12.9542,12.45215,-0.355,-13.15926,12.65721,0.2025,-12.9542,12.45215,-0.2025,-12.66782,12.16577,0.355,-13.15926,12.65721,0.355,-12.18699,11.68494,0.2025,-12.66782,12.16577,-0.355,-12.18699,11.68494,-0.151875,-12.66782,12.16577,-0.151875,12.66782,-12.16577,0.2025,12.66782,-12.16577,-0.355,12.18699,-11.68494,-0.2025,12.66782,-12.16577,0.355,12.18699,-11.68494,-0.355,13.15926,-12.65721,-0.2025,12.9542,-12.45215,0.2025,12.9542,-12.45215,0.355,13.15926,-12.65721,-0.151875,1.733826,-1.23178,0.2025,1.733826,-1.23178,-0.355,1.527351,-1.025305,-0.2025,1.733826,-1.23178,0.355,1.527351,-1.025305,-0.355,2.501037,-1.998991,-0.2025,2.020204,-1.518158,0.2025,2.020204,-1.518158,0.355,2.501037,-1.998991,0.355,-1.52735,1.025305,0.2025,-2.020204,1.518158,0.355,-2.501037,1.998991,-0.355,-2.501037,1.998991,0.2025,-1.733826,1.23178,-0.2025,-2.020204,1.518158,-0.2025,-1.733826,1.23178,-0.355,-1.52735,1.025305,-0.151875,-1.733826,1.23178,0.355,-2.889945,2.387899,0.2025,-5.718392,5.216347,0.355,-7.149556,6.647511,-0.355,-7.149556,6.647511,0.2025,-5.432014,4.929968,-0.2025,-5.718392,5.216347,-0.2025,-5.432014,4.929968,-0.355,-2.889945,2.387899,-0.151875,-5.432014,4.929968,0.355,7.538465,-7.036419,0.2025,9.253926,-8.751881,0.355,11.79808,-11.29603,-0.355,11.79808,-11.29603,0.2025,8.967548,-8.465502,-0.2025,9.253926,-8.751881,-0.2025,8.967548,-8.465502,-0.355,7.538465,-7.036419,-0.151875,8.967548,-8.465502,0.355,2.889946,-2.3879,0.2025,5.718393,-5.216347,0.355,7.149557,-6.647511,-0.355,7.149557,-6.647511,0.2025,5.432014,-4.929969,-0.2025,5.718393,-5.216347,-0.2025,5.432014,-4.929969,-0.355,2.889946,-2.3879,-0.151875,5.432014,-4.929969,0.5549999,6.50609,7.290978,-1.155058E-12,6.50609,7.290978,0.5549999,6.894999,7.679886,-1.126182E-12,6.894999,7.679886,-0.5549999,6.50609,7.290978,-0.5549999,6.894999,7.679886,-0.5549999,11.54352,12.32841,-7.219114E-13,11.54352,12.32841,-0.5549999,11.15461,11.9395,-7.507878E-13,11.15461,11.9395,0.5549999,11.54352,12.32841,0.5549999,11.15461,11.9395,-0.5549999,7.290978,6.506089,0.5549999,7.290978,6.506089,-0.5549999,7.679887,6.894998,0.5549999,7.679887,6.894998,0.5549999,11.9395,11.15461,0.5549999,11.15461,11.9395,0.5549999,12.32841,11.54352,0.5549999,11.54352,12.32841,-0.5549999,11.9395,11.15461,-0.5549999,12.32841,11.54352,-0.5549999,11.15461,11.9395,-0.5549999,11.54352,12.32841,-0.5549999,11.9395,11.15461,0.5549999,11.9395,11.15461,-0.5549999,12.32841,11.54352,0.5549999,12.32841,11.54352,-1.602643E-12,-4.276414,-0.7380521,-1.299441E-12,-7.688224,2.673758,-1.602643E-12,-2.161625,1.376737,-1.559329E-12,-2.642458,1.857569,-1.530452E-12,-3.031366,2.246478,-1.299441E-12,-5.573435,4.788547,-1.602643E-12,-2.161625,1.376737,-1.299441E-12,-7.688224,2.673758,-1.602643E-12,-4.276414,-0.7380521,-1.559329E-12,-2.642458,1.857569,-1.530452E-12,-3.031366,2.246478,-1.299441E-12,-5.573435,4.788547,0.5549999,-2.642458,1.857569,0.5549999,-3.031366,2.246478,0.5549999,-1.857569,2.642458,0.5549999,-2.246478,3.031366,-0.5549999,-2.642458,1.857569,-0.5549999,-1.857569,2.642458,-0.5549999,-3.031366,2.246478,-0.5549999,-2.246478,3.031366,-0.5549999,-11.9395,11.15461,-0.5549999,-11.15461,11.9395,-0.5549999,-12.32841,11.54352,-0.5549999,-11.54352,12.32841,0.5549999,-1.857569,2.642458,0.5549999,-2.246478,3.031366,-0.5549999,-1.857569,2.642458,-0.5549999,-2.246478,3.031366,-9.673613E-13,-11.51014,6.49567,-6.785967E-13,-14.92403,9.909562,-9.673613E-13,-9.395348,8.610459,-7.507878E-13,-11.9395,11.15461,-7.219114E-13,-12.32841,11.54352,-6.785967E-13,-12.80924,12.02435,-9.673613E-13,-9.395348,8.610459,-6.785967E-13,-14.92403,9.909562,-9.673613E-13,-11.51014,6.49567,-7.507878E-13,-11.9395,11.15461,-7.219114E-13,-12.32841,11.54352,-6.785967E-13,-12.80924,12.02435,0.5549999,-7.679886,6.894998,0.5549999,-7.290978,6.506089,-1.126182E-12,-7.679886,6.894998,-1.155058E-12,-7.290978,6.506089,-0.5549999,-7.679886,6.894998,-0.5549999,-7.290978,6.506089,-1.285002E-12,-7.974603,2.960136,-9.962377E-13,-11.22376,6.209292,-1.285002E-12,-5.859814,5.074925,-1.155058E-12,-7.290978,6.506089,-1.126182E-12,-7.679886,6.894998,-9.962377E-13,-9.108969,8.32408,-1.285002E-12,-5.859814,5.074925,-9.962377E-13,-11.22376,6.209292,-1.285002E-12,-7.974603,2.960136,-1.155058E-12,-7.290978,6.506089,-1.126182E-12,-7.679886,6.894998,-9.962377E-13,-9.108969,8.32408,0.5549999,-6.506089,7.290978,0.5549999,-6.894998,7.679886,-0.5549999,-6.506089,7.290978,-0.5549999,-6.894998,7.679886,0.5549999,-11.9395,11.15461,0.5549999,-12.32841,11.54352,0.5549999,-11.15461,11.9395,0.5549999,-11.54352,12.32841,0.5549999,-11.15461,11.9395,0.5549999,-11.54352,12.32841,-0.5549999,-11.15461,11.9395,-0.5549999,-11.54352,12.32841,-0.5549999,-11.9395,11.15461,-0.5549999,-12.32841,11.54352,-7.507878E-13,-11.9395,11.15461,-7.219114E-13,-12.32841,11.54352,0.5549999,-11.9395,11.15461,0.5549999,-12.32841,11.54352,-0.5549999,-2.642458,1.857569,-0.5549999,-3.031366,2.246478,-1.559329E-12,-2.642458,1.857569,-1.530452E-12,-3.031366,2.246478,0.5549999,-2.642458,1.857569,0.5549999,-3.031366,2.246478,-0.5549999,-7.290978,6.506089,-0.5549999,-6.506089,7.290978,-0.5549999,-7.679886,6.894998,-0.5549999,-6.894998,7.679886,0.5549999,-7.290978,6.506089,0.5549999,-7.679886,6.894998,0.5549999,-6.506089,7.290978,0.5549999,-6.894998,7.679886,-0.5549999,2.642458,1.857569,0.5549999,2.642458,1.857569,-0.5549999,3.031367,2.246478,0.5549999,3.031367,2.246478,0.5549999,2.642458,1.857569,0.5549999,1.85757,2.642458,0.5549999,3.031367,2.246478,0.5549999,2.246478,3.031366,-0.5549999,2.642458,1.857569,-0.5549999,3.031367,2.246478,-0.5549999,1.85757,2.642458,-0.5549999,2.246478,3.031366,-0.5549999,2.246478,3.031366,-1.530452E-12,2.246478,3.031366,-0.5549999,1.85757,2.642458,-1.559329E-12,1.85757,2.642458,0.5549999,2.246478,3.031366,0.5549999,1.85757,2.642458,-9.673613E-13,8.610459,9.395348,-9.673613E-13,6.495671,11.51014,-7.507878E-13,11.15461,11.9395,-6.785967E-13,9.909562,14.92403,-7.219114E-13,11.54352,12.32841,-6.785967E-13,12.02435,12.80924,-7.507878E-13,11.15461,11.9395,-9.673613E-13,6.495671,11.51014,-9.673613E-13,8.610459,9.395348,-6.785967E-13,9.909562,14.92403,-7.219114E-13,11.54352,12.32841,-6.785967E-13,12.02435,12.80924,-1.285002E-12,5.074925,5.859814,-1.285002E-12,2.960137,7.974603,-1.155058E-12,6.50609,7.290978,-1.126182E-12,6.894999,7.679886,-9.962377E-13,8.32408,9.108969,-9.962377E-13,6.209292,11.22376,-1.155058E-12,6.50609,7.290978,-1.285002E-12,2.960137,7.974603,-1.285002E-12,5.074925,5.859814,-1.126182E-12,6.894999,7.679886,-9.962377E-13,8.32408,9.108969,-9.962377E-13,6.209292,11.22376,-1.602643E-12,1.376737,2.161625,-1.602643E-12,-0.7380517,4.276414,-1.559329E-12,1.85757,2.642458,-1.530452E-12,2.246478,3.031366,-1.299441E-12,4.788547,5.573435,-1.299441E-12,2.673759,7.688224,-1.559329E-12,1.85757,2.642458,-1.602643E-12,-0.7380517,4.276414,-1.602643E-12,1.376737,2.161625,-1.530452E-12,2.246478,3.031366,-1.299441E-12,4.788547,5.573435,-1.299441E-12,2.673759,7.688224,-7.507878E-13,11.9395,-11.15461,0.5549999,11.9395,-11.15461,-0.5549999,11.9395,-11.15461,-0.355,11.79808,-11.29603,0.355,11.79808,-11.29603,-0.355,11.29603,-11.79808,-0.5549999,11.15461,-11.9395,0.355,11.29603,-11.79808,0.5549999,11.15461,-11.9395,0.5549999,1.85757,-2.642458,0.5549999,2.246478,-3.031367,-0.5549999,1.85757,-2.642458,-0.5549999,2.246478,-3.031367,0.5549999,7.679887,-6.894999,0.5549999,7.290978,-6.50609,-1.126182E-12,7.679887,-6.894999,-1.155058E-12,7.290978,-6.50609,-0.5549999,7.679887,-6.894999,-0.5549999,7.290978,-6.50609,0.5549999,11.54352,-12.32841,0.5549999,11.15461,-11.9395,0.5549999,12.32841,-11.54352,0.5549999,11.9395,-11.15461,-1.155058E-12,7.290978,-6.50609,0.5549999,7.290978,-6.50609,-0.5549999,7.290978,-6.50609,-0.355,7.149557,-6.647511,0.355,7.149557,-6.647511,-0.355,6.647511,-7.149557,-0.5549999,6.506089,-7.290978,0.355,6.647511,-7.149557,0.5549999,6.506089,-7.290978,0.5549999,2.246478,-3.031367,0.5549999,1.85757,-2.642458,0.5549999,3.031367,-2.246478,0.5549999,2.642458,-1.85757,-9.962377E-13,9.108969,-8.32408,-1.126182E-12,7.679887,-6.894999,-9.962377E-13,11.22376,-6.209292,-1.155058E-12,7.290978,-6.50609,-1.285002E-12,5.859814,-5.074925,-1.285002E-12,7.974603,-2.960137,-9.962377E-13,11.22376,-6.209292,-1.126182E-12,7.679887,-6.894999,-9.962377E-13,9.108969,-8.32408,-1.155058E-12,7.290978,-6.50609,-1.285002E-12,5.859814,-5.074925,-1.285002E-12,7.974603,-2.960137,-0.5549999,2.642458,-1.85757,-0.5549999,3.031367,-2.246478,-1.559329E-12,2.642458,-1.85757,-1.530452E-12,3.031367,-2.246478,0.5549999,2.642458,-1.85757,0.5549999,3.031367,-2.246478,-1.530452E-12,3.031367,-2.246478,-0.5549999,3.031367,-2.246478,0.5549999,3.031367,-2.246478,0.355,2.889946,-2.3879,-0.355,2.889946,-2.3879,0.355,2.387899,-2.889946,0.5549999,2.246478,-3.031367,-0.355,2.387899,-2.889946,-0.5549999,2.246478,-3.031367,-0.5549999,2.246478,-3.031367,-0.5549999,3.031367,-2.246478,-0.5549999,1.85757,-2.642458,-0.5549999,2.642458,-1.85757,-0.5549999,11.54352,-12.32841,-0.5549999,12.32841,-11.54352,-0.5549999,11.15461,-11.9395,-0.5549999,11.9395,-11.15461,-0.5549999,11.9395,-11.15461,-0.5549999,12.32841,-11.54352,-7.507878E-13,11.9395,-11.15461,-7.219114E-13,12.32841,-11.54352,0.5549999,11.9395,-11.15461,0.5549999,12.32841,-11.54352,0.5549999,6.506089,-7.290978,0.5549999,6.894998,-7.679887,-0.5549999,6.506089,-7.290978,-0.5549999,6.894998,-7.679887,0.5549999,11.15461,-11.9395,0.5549999,11.54352,-12.32841,-0.5549999,11.15461,-11.9395,-0.5549999,11.54352,-12.32841,-7.219114E-13,12.32841,-11.54352,-0.5549999,12.32841,-11.54352,0.5549999,12.32841,-11.54352,0.355,12.18699,-11.68494,-0.355,12.18699,-11.68494,0.355,11.68494,-12.18699,0.5549999,11.54352,-12.32841,-0.355,11.68494,-12.18699,-0.5549999,11.54352,-12.32841,-1.559329E-12,2.642458,-1.85757,0.5549999,2.642458,-1.85757,-0.5549999,2.642458,-1.85757,-0.355,2.501037,-1.998991,0.355,2.501037,-1.998991,-0.355,1.998991,-2.501037,-0.5549999,1.85757,-2.642458,0.355,1.998991,-2.501037,0.5549999,1.85757,-2.642458,-0.5549999,6.894998,-7.679887,-0.5549999,7.679887,-6.894999,-0.5549999,6.506089,-7.290978,-0.5549999,7.290978,-6.50609,0.5549999,6.894998,-7.679887,0.5549999,6.506089,-7.290978,0.5549999,7.679887,-6.894999,0.5549999,7.290978,-6.50609,-6.785967E-13,12.80924,-12.02435,-7.219114E-13,12.32841,-11.54352,-6.785967E-13,14.92403,-9.909562,-7.507878E-13,11.9395,-11.15461,-9.673613E-13,9.395348,-8.610459,-9.673613E-13,11.51014,-6.495671,-6.785967E-13,14.92403,-9.909562,-7.219114E-13,12.32841,-11.54352,-6.785967E-13,12.80924,-12.02435,-7.507878E-13,11.9395,-11.15461,-9.673613E-13,9.395348,-8.610459,-9.673613E-13,11.51014,-6.495671,-1.126182E-12,7.679887,-6.894999,-0.5549999,7.679887,-6.894999,0.5549999,7.679887,-6.894999,0.355,7.538465,-7.036419,-0.355,7.538465,-7.036419,0.355,7.036419,-7.538466,0.5549999,6.894998,-7.679887,-0.355,7.036419,-7.538466,-0.5549999,6.894998,-7.679887,-1.299441E-12,5.573435,-4.788547,-1.530452E-12,3.031367,-2.246478,-1.299441E-12,7.688224,-2.673759,-1.602643E-12,4.276414,0.7380517,-1.559329E-12,2.642458,-1.85757,-1.602643E-12,2.161625,-1.376737,-1.299441E-12,7.688224,-2.673759,-1.530452E-12,3.031367,-2.246478,-1.299441E-12,5.573435,-4.788547,-1.602643E-12,4.276414,0.7380517,-1.559329E-12,2.642458,-1.85757,-1.602643E-12,2.161625,-1.376737,0.5549999,7.290978,6.506089,0.5549999,6.50609,7.290978,0.5549999,7.679887,6.894998,0.5549999,6.894999,7.679886,-0.5549999,7.290978,6.506089,-0.5549999,7.679887,6.894998,-0.5549999,6.50609,7.290978,-0.5549999,6.894999,7.679886,0.5549999,-2.246478,-3.031367,0.5549999,-3.031367,-2.246478,0.5549999,-1.857569,-2.642458,0.5549999,-2.642458,-1.857569,0.5549999,-12.32841,-11.54352,-0.5549999,-12.32841,-11.54352,0.5549999,-11.9395,-11.15461,-0.5549999,-11.9395,-11.15461,0.5549999,-11.15461,-11.9395,-7.507878E-13,-11.15461,-11.9395,0.5549999,-11.54352,-12.32841,-7.219114E-13,-11.54352,-12.32841,-0.5549999,-11.15461,-11.9395,-0.5549999,-11.54352,-12.32841,0.5549999,-1.857569,-2.642458,-1.559329E-12,-1.857569,-2.642458,0.5549999,-2.246478,-3.031367,-1.530452E-12,-2.246478,-3.031367,-0.5549999,-1.857569,-2.642458,-0.5549999,-2.246478,-3.031367,0.5549999,-3.031367,-2.246478,-0.5549999,-3.031367,-2.246478,0.5549999,-2.642458,-1.857569,-0.5549999,-2.642458,-1.857569,-0.5549999,-11.54352,-12.32841,-0.5549999,-11.15461,-11.9395,-0.5549999,-12.32841,-11.54352,-0.5549999,-11.9395,-11.15461,0.5549999,-11.54352,-12.32841,0.5549999,-12.32841,-11.54352,0.5549999,-11.15461,-11.9395,0.5549999,-11.9395,-11.15461,-0.5549999,-2.246478,-3.031367,-0.5549999,-1.857569,-2.642458,-0.5549999,-3.031367,-2.246478,-0.5549999,-2.642458,-1.857569,-9.962377E-13,-6.209292,-11.22376,-9.962377E-13,-8.32408,-9.108969,-1.285002E-12,-2.960136,-7.974603,-1.126182E-12,-6.894998,-7.679886,-1.155058E-12,-6.50609,-7.290978,-1.285002E-12,-5.074925,-5.859814,-1.285002E-12,-2.960136,-7.974603,-9.962377E-13,-8.32408,-9.108969,-9.962377E-13,-6.209292,-11.22376,-1.126182E-12,-6.894998,-7.679886,-1.155058E-12,-6.50609,-7.290978,-1.285002E-12,-5.074925,-5.859814,0.5549999,-6.50609,-7.290978,-1.155058E-12,-6.50609,-7.290978,0.5549999,-6.894998,-7.679886,-1.126182E-12,-6.894998,-7.679886,-0.5549999,-6.50609,-7.290978,-0.5549999,-6.894998,-7.679886,-1.299441E-12,-2.673759,-7.688224,-1.299441E-12,-4.788547,-5.573435,-1.602643E-12,0.7380519,-4.276414,-1.530452E-12,-2.246478,-3.031367,-1.559329E-12,-1.857569,-2.642458,-1.602643E-12,-1.376737,-2.161625,-1.602643E-12,0.7380519,-4.276414,-1.299441E-12,-4.788547,-5.573435,-1.299441E-12,-2.673759,-7.688224,-1.530452E-12,-2.246478,-3.031367,-1.559329E-12,-1.857569,-2.642458,-1.602643E-12,-1.376737,-2.161625,-6.785967E-13,-9.909562,-14.92403,-6.785967E-13,-12.02435,-12.80924,-9.673613E-13,-6.495671,-11.51014,-7.219114E-13,-11.54352,-12.32841,-7.507878E-13,-11.15461,-11.9395,-9.673613E-13,-8.610459,-9.395348,-9.673613E-13,-6.495671,-11.51014,-6.785967E-13,-12.02435,-12.80924,-6.785967E-13,-9.909562,-14.92403,-7.219114E-13,-11.54352,-12.32841,-7.507878E-13,-11.15461,-11.9395,-9.673613E-13,-8.610459,-9.395348,0.5549999,-7.679887,-6.894998,-0.5549999,-7.679887,-6.894998,0.5549999,-7.290978,-6.506089,-0.5549999,-7.290978,-6.506089,0.5549999,-6.894998,-7.679886,0.5549999,-7.679887,-6.894998,0.5549999,-6.50609,-7.290978,0.5549999,-7.290978,-6.506089,-0.5549999,-6.894998,-7.679886,-0.5549999,-6.50609,-7.290978,-0.5549999,-7.679887,-6.894998,-0.5549999,-7.290978,-6.506089,0.5549999,6.894999,7.679886,0.355,7.538466,7.036419,0.5549999,7.679887,6.894998,-0.5549999,7.679887,6.894998,0.355,7.036419,7.538465,-0.355,7.538466,7.036419,-1.126182E-12,6.894999,7.679886,-0.355,7.036419,7.538465,-0.5549999,6.894999,7.679886,0.355,-2.387899,2.889945,0.5549999,-2.246478,3.031366,0.355,-2.889945,2.387899,-0.355,-2.387899,2.889945,-0.5549999,-2.246478,3.031366,-0.355,-2.889945,2.387899,-0.5549999,-3.031366,2.246478,0.5549999,-3.031366,2.246478,-1.530452E-12,-3.031366,2.246478,-1.126182E-12,-7.679886,6.894998,0.355,-7.538465,7.036419,0.5549999,-7.679886,6.894998,-0.5549999,-7.679886,6.894998,0.5549999,-6.894998,7.679886,-0.355,-7.538465,7.036419,0.355,-7.036419,7.538465,-0.5549999,-6.894998,7.679886,-0.355,-7.036419,7.538465,-1.155058E-12,-7.290978,6.506089,-0.355,-7.149556,6.647511,-0.5549999,-7.290978,6.506089,0.5549999,-7.290978,6.506089,-0.5549999,-6.506089,7.290978,0.355,-7.149556,6.647511,-0.355,-6.647511,7.149556,0.5549999,-6.506089,7.290978,0.355,-6.647511,7.149556,-0.355,-1.998991,2.501037,-0.5549999,-1.857569,2.642458,-0.355,-2.501037,1.998991,0.355,-1.998991,2.501037,0.5549999,-1.857569,2.642458,0.355,-2.501037,1.998991,0.5549999,-2.642458,1.857569,-0.5549999,-2.642458,1.857569,-1.559329E-12,-2.642458,1.857569,0.5549999,2.642458,1.857569,0.355,1.998991,2.501037,0.5549999,1.85757,2.642458,-1.559329E-12,1.85757,2.642458,0.355,2.501037,1.998991,-0.355,1.998991,2.501037,-0.5549999,2.642458,1.857569,-0.5549999,1.85757,2.642458,-0.355,2.501037,1.998991,-0.355,2.889946,2.387899,-0.5549999,3.031367,2.246478,0.355,2.889946,2.387899,-0.355,2.3879,2.889945,0.5549999,3.031367,2.246478,-0.5549999,2.246478,3.031366,0.5549999,2.246478,3.031366,-1.530452E-12,2.246478,3.031366,0.355,2.3879,2.889945,-0.355,-2.889946,-2.387899,-0.5549999,-3.031367,-2.246478,0.355,-2.889946,-2.387899,-0.355,-2.387899,-2.889946,0.5549999,-3.031367,-2.246478,-0.5549999,-2.246478,-3.031367,0.5549999,-2.246478,-3.031367,-1.530452E-12,-2.246478,-3.031367,0.355,-2.387899,-2.889946,0.5549999,-7.290978,-6.506089,0.355,-6.647511,-7.149556,0.5549999,-6.50609,-7.290978,-1.155058E-12,-6.50609,-7.290978,0.355,-7.149557,-6.647511,-0.355,-6.647511,-7.149556,-0.5549999,-7.290978,-6.506089,-0.5549999,-6.50609,-7.290978,-0.355,-7.149557,-6.647511,0.5549999,-6.894998,-7.679886,0.355,-7.538466,-7.036419,0.5549999,-7.679887,-6.894998,-0.5549999,-7.679887,-6.894998,0.355,-7.036419,-7.538465,-0.355,-7.538466,-7.036419,-1.126182E-12,-6.894998,-7.679886,-0.355,-7.036419,-7.538465,-0.5549999,-6.894998,-7.679886,-7.219114E-13,-12.32841,11.54352,0.355,-12.18699,11.68494,0.5549999,-12.32841,11.54352,-0.5549999,-12.32841,11.54352,0.5549999,-11.54352,12.32841,-0.355,-12.18699,11.68494,0.355,-11.68494,12.18699,-0.5549999,-11.54352,12.32841,-0.355,-11.68494,12.18699,-7.507878E-13,-11.9395,11.15461,-0.355,-11.79808,11.29603,-0.5549999,-11.9395,11.15461,0.5549999,-11.9395,11.15461,-0.5549999,-11.15461,11.9395,0.355,-11.79808,11.29603,-0.355,-11.29603,11.79808,0.5549999,-11.15461,11.9395,0.355,-11.29603,11.79808,0.5549999,11.9395,11.15461,0.355,11.29603,11.79808,0.5549999,11.15461,11.9395,-7.507878E-13,11.15461,11.9395,0.355,11.79808,11.29603,-0.355,11.29603,11.79808,-0.5549999,11.9395,11.15461,-0.5549999,11.15461,11.9395,-0.355,11.79808,11.29603,0.5549999,7.290978,6.506089,0.355,6.647511,7.149556,0.5549999,6.50609,7.290978,-1.155058E-12,6.50609,7.290978,0.355,7.149557,6.647511,-0.355,6.647511,7.149556,-0.5549999,7.290978,6.506089,-0.5549999,6.50609,7.290978,-0.355,7.149557,6.647511,0.5549999,11.54352,12.32841,0.355,12.18699,11.68494,0.5549999,12.32841,11.54352,-0.5549999,12.32841,11.54352,0.355,11.68494,12.18699,-0.355,12.18699,11.68494,-7.219114E-13,11.54352,12.32841,-0.355,11.68494,12.18699,-0.5549999,11.54352,12.32841,0.5549999,-11.9395,-11.15461,0.355,-11.29603,-11.79808,0.5549999,-11.15461,-11.9395,-7.507878E-13,-11.15461,-11.9395,0.355,-11.79808,-11.29603,-0.355,-11.29603,-11.79808,-0.5549999,-11.9395,-11.15461,-0.5549999,-11.15461,-11.9395,-0.355,-11.79808,-11.29603,0.5549999,-2.642458,-1.857569,0.355,-1.998991,-2.501037,0.5549999,-1.857569,-2.642458,-1.559329E-12,-1.857569,-2.642458,0.355,-2.501037,-1.998991,-0.355,-1.998991,-2.501037,-0.5549999,-2.642458,-1.857569,-0.5549999,-1.857569,-2.642458,-0.355,-2.501037,-1.998991,0.5549999,-11.54352,-12.32841,0.355,-12.18699,-11.68494,0.5549999,-12.32841,-11.54352,-0.5549999,-12.32841,-11.54352,0.355,-11.68494,-12.18699,-0.355,-12.18699,-11.68494,-7.219114E-13,-11.54352,-12.32841,-0.355,-11.68494,-12.18699,-0.5549999,-11.54352,-12.32841 + } + PolygonVertexIndex: *2868 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,50,-50,51,53,-53,54,56,-56,57,59,-59,60,62,-62,63,65,-65,66,68,-68,69,71,-71,72,74,-74,75,73,-75,74,76,-76,77,73,-76,78,75,-77,79,73,-78,80,78,-77,81,79,-78,81,78,-81,82,79,-82,83,81,-81,82,81,-84,84,86,-86,84,85,-88,87,88,-85,89,87,-86,90,89,-86,91,84,-89,91,89,-91,92,84,-92,90,92,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,100,-100,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,169,-169,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,198,-198,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,243,-243,245,247,-247,248,246,-248,249,248,-248,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,294,295,-298,297,298,-295,299,297,-296,300,299,-296,301,294,-299,301,299,-301,302,294,-302,300,302,-302,303,305,-305,306,304,-306,307,309,-309,310,308,-310,311,313,-313,314,312,-314,315,317,-317,318,316,-318,319,318,-318,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,383,-383,385,387,-387,388,386,-388,389,391,-391,392,390,-392,393,395,-395,396,394,-396,397,399,-399,400,398,-400,401,403,-403,404,402,-404,405,407,-407,408,406,-408,409,411,-411,412,410,-412,413,415,-415,416,414,-416,417,419,-419,420,418,-420,421,423,-423,424,422,-424,425,427,-427,428,426,-428,429,431,-431,432,430,-432,433,432,-432,434,436,-436,437,435,-437,438,437,-437,439,441,-441,442,440,-442,443,445,-445,446,444,-446,447,449,-449,450,448,-450,451,453,-453,454,452,-454,455,457,-457,458,456,-458,459,461,-461,462,460,-462,463,465,-465,466,464,-466,467,469,-469,470,468,-470,471,473,-473,474,472,-474,475,474,-474,476,478,-478,479,477,-479,480,482,-482,483,481,-483,484,486,-486,484,485,-488,487,488,-485,489,487,-486,490,489,-486,491,484,-489,491,489,-491,492,484,-492,490,492,-492,493,495,-495,496,494,-496,497,499,-499,500,498,-500,501,503,-503,504,502,-504,505,507,-507,508,506,-508,509,511,-511,512,510,-512,513,515,-515,516,514,-516,517,519,-519,520,518,-520,521,523,-523,524,522,-524,525,527,-527,528,526,-528,529,531,-531,532,530,-532,533,535,-535,536,534,-536,537,539,-539,540,538,-540,541,543,-543,544,542,-544,545,547,-547,545,546,-549,548,549,-546,550,548,-547,551,550,-547,552,545,-550,552,550,-552,553,545,-553,551,553,-553,554,556,-556,557,555,-557,558,560,-560,561,559,-561,562,564,-564,565,563,-565,566,565,-565,567,569,-569,570,568,-570,571,570,-570,572,574,-574,575,573,-575,576,578,-578,578,576,-580,576,580,-580,579,581,-579,579,580,-583,578,581,-584,584,582,-581,581,584,-584,580,583,-585,585,587,-587,588,586,-588,589,591,-591,592,590,-592,593,595,-595,596,594,-596,597,596,-596,598,600,-600,601,599,-601,602,604,-604,605,603,-605,606,608,-608,609,607,-609,610,612,-612,613,611,-613,614,616,-616,617,615,-617,618,620,-620,621,619,-621,622,624,-624,625,623,-625,626,628,-628,629,627,-629,630,632,-632,633,631,-633,634,636,-636,637,635,-637,638,640,-640,641,639,-641,642,644,-644,645,643,-645,646,648,-648,648,646,-650,646,650,-650,649,651,-649,649,650,-653,648,651,-654,654,652,-651,651,654,-654,650,653,-655,655,657,-657,658,656,-658,659,661,-661,662,660,-662,663,665,-665,666,664,-666,667,669,-669,670,668,-670,671,673,-673,674,672,-674,675,677,-677,678,676,-678,679,681,-681,682,680,-682,683,682,-682,684,686,-686,687,685,-687,688,690,-690,691,689,-691,692,691,-691,693,695,-695,696,694,-696,697,699,-699,699,697,-701,697,701,-701,700,702,-700,700,701,-704,699,702,-705,705,703,-702,702,705,-705,701,704,-706,706,708,-708,709,707,-709,710,712,-712,713,711,-713,714,716,-716,717,715,-717,718,720,-720,721,719,-721,722,724,-724,725,723,-725,726,728,-728,729,727,-729,730,732,-732,733,731,-733,734,736,-736,737,735,-737,738,740,-740,741,739,-741,742,744,-744,745,743,-745,746,748,-748,749,747,-749,750,752,-752,752,750,-754,750,754,-754,753,755,-753,753,754,-757,752,755,-758,758,756,-755,755,758,-758,754,757,-759,759,761,-761,762,760,-762,763,762,-762,764,766,-766,767,765,-767,768,770,-770,771,769,-771,772,774,-774,775,773,-775,773,775,-777,777,775,-775,778,776,-776,779,777,-775,780,776,-779,781,777,-780,781,780,-779,782,781,-780,783,780,-782,782,783,-782,784,786,-786,787,785,-787,788,790,-790,791,789,-791,792,794,-794,795,793,-795,796,798,-798,799,797,-799,800,802,-802,803,801,-803,804,806,-806,807,805,-807,808,810,-810,811,809,-811,812,814,-814,815,813,-815,816,818,-818,819,816,-818,817,818,-821,821,820,-819,818,822,-822,817,823,-820,823,821,-823,819,823,-825,824,823,-823,825,827,-827,828,825,-827,826,827,-830,830,829,-828,827,831,-831,826,832,-829,832,830,-832,828,832,-834,833,832,-832,834,836,-836,837,836,-835,836,838,-836,839,836,-838,837,840,-840,841,835,-839,840,841,-840,838,842,-842,839,841,-843,843,845,-845,846,845,-844,845,847,-845,848,845,-847,846,849,-849,850,844,-848,849,850,-849,847,851,-851,848,850,-852,852,854,-854,855,853,-855,853,856,-853,857,853,-856,858,857,-856,859,852,-857,855,859,-859,860,859,-857,858,859,-861,861,863,-863,864,862,-864,862,865,-862,866,862,-865,867,866,-865,868,861,-866,864,868,-868,869,868,-866,867,868,-870,870,872,-872,873,871,-873,871,874,-871,875,871,-874,876,875,-874,877,870,-875,873,877,-877,878,877,-875,876,877,-879,879,881,-881,882,880,-882,880,883,-880,884,880,-883,885,884,-883,886,879,-884,882,886,-886,887,886,-884,885,886,-888,888,890,-890,891,889,-891,889,891,-893,893,892,-892,894,896,-896,897,895,-897,895,897,-899,899,898,-898,900,902,-902,903,901,-903,904,906,-906,907,905,-907,908,910,-910,911,909,-911,912,914,-914,915,913,-915,916,918,-918,919,917,-919,920,917,-920,921,917,-921,922,924,-924,923,925,-923,923,926,-926,923,927,-927,928,930,-930,931,929,-931,932,934,-934,935,933,-935,936,938,-938,939,937,-939,940,942,-942,943,941,-943,944,946,-946,947,945,-947,948,945,-948,949,945,-949,950,952,-952,951,953,-951,951,954,-954,951,955,-955,956,958,-958,959,957,-959,958,960,-960,961,959,-961,962,964,-964,965,963,-965,966,963,-966,967,963,-967,968,970,-970,969,971,-969,969,972,-972,969,973,-973,974,976,-976,977,975,-977,978,980,-980,981,979,-981,982,984,-984,985,983,-985,986,988,-988,989,987,-989,988,990,-990,991,989,-991,992,994,-994,995,993,-995,994,996,-996,997,995,-997,998,1000,-1000,1001,999,-1001,1002,1004,-1004,1005,1003,-1005,1006,1008,-1008,1009,1007,-1009,1010,1012,-1012,1013,1011,-1013,1014,1016,-1016,1017,1015,-1017,1018,1020,-1020,1021,1019,-1021,1019,1021,-1023,1023,1022,-1022,1024,1026,-1026,1027,1025,-1027,1028,1027,-1027,1029,1027,-1029,1030,1032,-1032,1031,1033,-1031,1033,1034,-1031,1033,1035,-1035,1036,1038,-1038,1039,1037,-1039,1040,1037,-1040,1041,1037,-1041,1042,1044,-1044,1043,1045,-1043,1043,1046,-1046,1043,1047,-1047,1048,1050,-1050,1051,1049,-1051,1052,1049,-1052,1053,1049,-1053,1054,1056,-1056,1055,1057,-1055,1055,1058,-1058,1055,1059,-1059,1060,1062,-1062,1061,1062,-1064,1063,1064,-1062,1063,1062,-1066,1062,1066,-1066,1064,1067,-1062,1067,1065,-1067,1061,1067,-1069,1066,1068,-1068,1069,1071,-1071,1072,1070,-1072,1073,1075,-1075,1076,1074,-1076,1075,1077,-1077,1078,1076,-1078,1079,1081,-1081,1082,1080,-1082,1083,1085,-1085,1084,1085,-1087,1086,1087,-1085,1086,1085,-1089,1085,1089,-1089,1087,1090,-1085,1090,1088,-1090,1084,1090,-1092,1089,1091,-1091,1092,1094,-1094,1095,1093,-1095,1096,1098,-1098,1099,1097,-1099,1100,1099,-1099,1101,1100,-1099,1102,1104,-1104,1103,1105,-1103,1105,1106,-1103,1106,1107,-1103,1108,1110,-1110,1111,1109,-1111,1110,1112,-1112,1113,1111,-1113,1114,1116,-1116,1115,1116,-1118,1117,1118,-1116,1117,1116,-1120,1116,1120,-1120,1118,1121,-1116,1121,1119,-1121,1115,1121,-1123,1120,1122,-1122,1123,1125,-1125,1126,1124,-1126,1127,1129,-1129,1130,1128,-1130,1131,1133,-1133,1134,1132,-1134,1133,1135,-1135,1136,1134,-1136,1137,1139,-1139,1140,1138,-1140,1141,1143,-1143,1144,1142,-1144,1145,1147,-1147,1146,1147,-1149,1148,1149,-1147,1148,1147,-1151,1147,1151,-1151,1149,1152,-1147,1152,1150,-1152,1146,1152,-1154,1151,1153,-1153,1154,1156,-1156,1155,1156,-1158,1157,1158,-1156,1157,1156,-1160,1156,1160,-1160,1158,1161,-1156,1161,1159,-1161,1155,1161,-1163,1160,1162,-1162,1163,1165,-1165,1166,1164,-1166,1167,1169,-1169,1170,1168,-1170,1171,1173,-1173,1174,1172,-1174,1175,1174,-1174,1176,1175,-1174,1177,1179,-1179,1178,1180,-1178,1180,1181,-1178,1181,1182,-1178,1183,1185,-1185,1184,1185,-1187,1186,1187,-1185,1186,1185,-1189,1185,1189,-1189,1187,1190,-1185,1190,1188,-1190,1184,1190,-1192,1189,1191,-1191,1192,1194,-1194,1195,1193,-1195,1196,1193,-1196,1197,1196,-1196,1198,1200,-1200,1199,1201,-1199,1199,1202,-1202,1202,1203,-1202,1204,1206,-1206,1207,1205,-1207,1208,1210,-1210,1211,1209,-1211,1212,1214,-1214,1215,1213,-1215,1216,1218,-1218,1219,1217,-1219,1220,1222,-1222,1223,1221,-1223,1221,1223,-1225,1225,1224,-1224,1226,1228,-1228,1229,1227,-1229,1227,1229,-1231,1231,1230,-1230,1232,1234,-1234,1235,1233,-1235,1236,1238,-1238,1239,1237,-1239,1240,1242,-1242,1243,1241,-1243,1244,1246,-1246,1247,1245,-1247,1248,1250,-1250,1251,1249,-1251,1252,1251,-1251,1253,1252,-1251,1254,1256,-1256,1255,1257,-1255,1257,1258,-1255,1258,1259,-1255,1260,1262,-1262,1263,1261,-1263,1261,1263,-1265,1265,1264,-1264,1266,1268,-1268,1269,1267,-1269,1270,1269,-1269,1271,1270,-1269,1272,1274,-1274,1273,1275,-1273,1275,1276,-1273,1276,1277,-1273,1278,1280,-1280,1281,1279,-1281,1282,1281,-1281,1283,1282,-1281,1284,1286,-1286,1285,1287,-1285,1287,1288,-1285,1288,1289,-1285,1290,1292,-1292,1293,1291,-1293,1294,1296,-1296,1297,1295,-1297,1298,1300,-1300,1301,1299,-1301,1302,1304,-1304,1305,1303,-1305,1303,1306,-1303,1307,1303,-1306,1308,1302,-1307,1309,1307,-1306,1309,1308,-1307,1305,1310,-1310,1310,1308,-1310,1311,1313,-1313,1314,1311,-1313,1312,1315,-1315,1314,1315,-1317,1315,1317,-1317,1313,1316,-1318,1312,1313,-1319,1317,1319,-1314,1319,1318,-1314,1320,1322,-1322,1323,1320,-1322,1324,1321,-1323,1321,1325,-1324,1326,1321,-1325,1327,1323,-1326,1328,1326,-1325,1328,1327,-1326,1324,1327,-1329,1329,1331,-1331,1332,1329,-1331,1333,1330,-1332,1330,1334,-1333,1335,1330,-1334,1336,1332,-1335,1337,1335,-1334,1337,1336,-1335,1333,1336,-1338,1338,1340,-1340,1341,1338,-1340,1339,1342,-1342,1341,1342,-1344,1342,1344,-1344,1340,1343,-1345,1339,1340,-1346,1344,1346,-1341,1346,1345,-1341,1347,1349,-1349,1350,1348,-1350,1348,1351,-1348,1352,1348,-1351,1353,1347,-1352,1354,1352,-1351,1355,1353,-1352,1355,1352,-1355,1354,1353,-1356,1356,1358,-1358,1359,1356,-1358,1357,1358,-1361,1357,1361,-1360,1362,1360,-1359,1361,1363,-1360,1358,1364,-1363,1359,1363,-1365,1363,1362,-1365,1365,1367,-1367,1368,1365,-1367,1366,1367,-1370,1366,1370,-1369,1371,1369,-1368,1370,1372,-1369,1367,1373,-1372,1368,1372,-1374,1372,1371,-1374,1374,1376,-1376,1377,1375,-1377,1375,1378,-1375,1379,1375,-1378,1380,1374,-1379,1381,1379,-1378,1382,1380,-1379,1382,1379,-1382,1381,1380,-1383,1383,1385,-1385,1386,1384,-1386,1384,1387,-1384,1388,1384,-1387,1389,1383,-1388,1390,1388,-1387,1390,1389,-1388,1386,1391,-1391,1391,1389,-1391,1392,1394,-1394,1395,1392,-1394,1396,1393,-1395,1393,1397,-1396,1398,1393,-1397,1399,1395,-1398,1400,1398,-1397,1400,1399,-1398,1396,1399,-1401,1401,1403,-1403,1404,1401,-1403,1405,1402,-1404,1402,1406,-1405,1407,1402,-1406,1408,1404,-1407,1409,1407,-1406,1409,1408,-1407,1405,1408,-1410,1410,1412,-1412,1413,1411,-1413,1411,1414,-1411,1415,1411,-1414,1416,1410,-1415,1417,1415,-1414,1418,1416,-1415,1418,1415,-1418,1417,1416,-1419,1419,1421,-1421,1422,1420,-1422,1420,1423,-1420,1424,1420,-1423,1425,1419,-1424,1426,1424,-1423,1427,1425,-1424,1427,1424,-1427,1426,1425,-1428,1428,1430,-1430,1431,1429,-1431,1429,1432,-1429,1433,1429,-1432,1434,1428,-1433,1435,1433,-1432,1435,1434,-1433,1431,1436,-1436,1436,1434,-1436,1437,1439,-1439,1440,1438,-1440,1438,1441,-1438,1442,1438,-1441,1443,1437,-1442,1444,1442,-1441,1445,1443,-1442,1445,1442,-1445,1444,1443,-1446,1446,1448,-1448,1449,1447,-1449,1447,1450,-1447,1451,1447,-1450,1452,1446,-1451,1453,1451,-1450,1454,1452,-1451,1454,1451,-1454,1453,1452,-1455,1455,1457,-1457,1458,1456,-1458,1456,1459,-1456,1460,1456,-1459,1461,1455,-1460,1462,1460,-1459,1462,1461,-1460,1458,1463,-1463,1463,1461,-1463 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *8604 { + a: 0.5773503,-0.8164966,0,0.5773503,-0.8164966,0,0.5773503,-0.8164966,0,0.5773503,0,-0.8164966,0.5773503,0,-0.8164966,0.5773503,0,-0.8164966,-0.7026243,0.4173376,0.5763233,-0.7026243,0.4173376,0.5763233,-0.7026243,0.4173376,0.5763233,-0.7026243,-0.5763233,-0.4173376,-0.7026243,-0.5763233,-0.4173376,-0.7026243,-0.5763233,-0.4173376,0.7026243,-0.5763233,-0.4173376,0.7026243,-0.5763233,-0.4173376,0.7026243,-0.5763233,-0.4173376,0.7026243,0.4173376,0.5763233,0.7026243,0.4173376,0.5763233,0.7026243,0.4173376,0.5763233,0.5773503,0.8164966,0,0.5773503,0.8164966,0,0.5773503,0.8164966,0,-0.5773503,0.8164966,0,-0.5773503,0.8164966,0,-0.5773503,0.8164966,0,-0.7026243,-0.4173376,-0.5763233,-0.7026243,-0.4173376,-0.5763233,-0.7026243,-0.4173376,-0.5763233,0.7026243,-0.4173376,-0.5763233,0.7026243,-0.4173376,-0.5763233,0.7026243,-0.4173376,-0.5763233,-0.7026243,0.5763233,0.4173375,-0.7026243,0.5763233,0.4173375,-0.7026243,0.5763233,0.4173375,0.7026243,0.5763233,0.4173375,0.7026243,0.5763233,0.4173375,0.7026243,0.5763233,0.4173375,-0.7026243,-0.4173376,0.5763233,-0.7026243,-0.4173376,0.5763233,-0.7026243,-0.4173376,0.5763233,0.7026243,0.5763233,-0.4173376,0.7026243,0.5763233,-0.4173376,0.7026243,0.5763233,-0.4173376,0.7026243,-0.4173376,0.5763233,0.7026243,-0.4173376,0.5763233,0.7026243,-0.4173376,0.5763233,-0.7026243,0.5763233,-0.4173376,-0.7026243,0.5763233,-0.4173376,-0.7026243,0.5763233,-0.4173376,0.7026243,-0.5763233,0.4173376,0.7026243,-0.5763233,0.4173376,0.7026243,-0.5763233,0.4173376,0.7026243,0.4173375,-0.5763233,0.7026243,0.4173375,-0.5763233,0.7026243,0.4173375,-0.5763233,-0.7026243,0.4173375,-0.5763233,-0.7026243,0.4173375,-0.5763233,-0.7026243,0.4173375,-0.5763233,-0.7026243,-0.5763233,0.4173376,-0.7026243,-0.5763233,0.4173376,-0.7026243,-0.5763233,0.4173376,-0.5773503,0,0.8164966,-0.5773503,0,0.8164966,-0.5773503,0,0.8164966,-0.5773503,0,-0.8164966,-0.5773503,0,-0.8164966,-0.5773503,0,-0.8164966,-0.5773503,-0.8164966,0,-0.5773503,-0.8164966,0,-0.5773503,-0.8164966,0,0.5773503,0,0.8164966,0.5773503,0,0.8164966,0.5773503,0,0.8164966,-0.9979891,0.04482177,-0.04482178,-0.9979891,-0.04482178,-0.04482177,-0.9979891,0.04482177,-0.04482178,-1,0,0,-0.9979891,0.04482177,-0.04482178,-0.9979891,-0.04482178,-0.04482177,-0.9979891,-0.04482178,-0.04482177,-0.9979891,-0.04482178,-0.04482177,-1,0,0,-1,0,0,-0.9979891,0.04482177,-0.04482178,-1,0,0,-1,0,0,-1,0,0,-0.9979891,-0.04482178,-0.04482177,-0.9979891,0.04482177,0.04482177,-0.9979891,0.04482177,-0.04482178,-1,0,0,-0.9979891,-0.04482177,0.04482177,-1,0,0,-0.9979891,-0.04482178,-0.04482177,-1,0,0,-0.9979891,0.04482177,0.04482177,-1,0,0,-1,0,0,-1,0,0,-0.9979891,-0.04482177,0.04482177,-0.9979891,0.04482177,0.04482177,-0.9979891,0.04482177,0.04482177,-1,0,0,-0.9979891,-0.04482177,0.04482177,-1,0,0,-0.9979891,-0.04482177,0.04482177,-0.9979891,0.04482177,0.04482177,-1,0,0,-0.9979891,-0.04482177,0.04482177,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0.9979891,-0.04482177,0.04482177,0.9979891,-0.04482177,0.04482177,0.9968551,-0.05603429,0.05603429,0.9968551,-0.05603429,0.05603429,0.9968551,-0.05603429,0.05603429,0.9979891,-0.04482177,0.04482177,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,-0.9968551,-0.05603429,0.05603429,-1,0,0,-0.9968551,-0.05603429,0.05603429,-1,0,0,-0.9968551,-0.05603429,0.05603429,-1,0,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7609174,-0.6488488,0,-0.7609174,-0.6488488,0,-0.8099421,-0.5865098,0,-0.8099421,-0.5865098,0,-0.8099421,-0.5865098,0,-0.7609174,-0.6488488,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.6488488,0.7609174,0,0.6488488,0.7609174,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.6488488,0.7609174,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.6488488,0.7609174,0,0.5865098,0.8099421,0,0.6488488,0.7609174,0,0.5865098,0.8099421,0,0.6488488,0.7609174,0,0.5865098,0.8099421,-0.9979891,-0.04482177,0.04482177,-0.9968551,-0.05603429,0.05603429,-0.9979891,-0.04482177,0.04482177,-0.9968551,-0.05603429,0.05603429,-0.9979891,-0.04482177,0.04482177,-0.9968551,-0.05603429,0.05603429,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0.9968551,-0.05603429,0.05603429,0.9968551,-0.05603429,0.05603429,1,0,0,1,0,0,1,0,0,0.9968551,-0.05603429,0.05603429,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9968551,0.05603429,-0.05603429,0.9968551,0.05603429,-0.05603429,0.9979891,0.04482177,-0.04482178,0.9979891,0.04482177,-0.04482178,0.9979891,0.04482177,-0.04482178,0.9968551,0.05603429,-0.05603429,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.6488488,-0.7609174,0,-0.6488488,-0.7609174,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.6488488,-0.7609174,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7609174,0.6488488,0,0.7609174,0.6488488,0,0.8099421,0.5865098,0,0.8099421,0.5865098,0,0.8099421,0.5865098,0,0.7609174,0.6488488,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.5865098,-0.8099421,0,-0.6488488,-0.7609174,0,-0.5865098,-0.8099421,0,-0.6488488,-0.7609174,0,-0.5865098,-0.8099421,0,-0.6488488,-0.7609174,1,0,0,1,0,0,0.9968551,0.05603429,-0.05603429,0.9968551,0.05603429,-0.05603429,0.9968551,0.05603429,-0.05603429,1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-0.9968551,0.05603429,-0.05603429,-0.9979891,0.04482177,-0.04482178,-0.9968551,0.05603429,-0.05603429,-0.9979891,0.04482177,-0.04482178,-0.9968551,0.05603429,-0.05603429,-0.9979891,0.04482177,-0.04482178,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,-1,0,0,-0.9968551,0.05603429,-0.05603429,-1,0,0,-0.9968551,0.05603429,-0.05603429,-1,0,0,-0.9968551,0.05603429,-0.05603429,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,-0.9979891,0.04482177,0.04482177,-0.9979891,0.04482177,0.04482177,-0.9968551,0.05603429,0.05603429,-0.9968551,0.05603429,0.05603429,-0.9968551,0.05603429,0.05603429,-0.9979891,0.04482177,0.04482177,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9979891,0.04482177,0.04482177,0.9968551,0.05603429,0.05603429,0.9979891,0.04482177,0.04482177,0.9968551,0.05603429,0.05603429,0.9979891,0.04482177,0.04482177,0.9968551,0.05603429,0.05603429,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.5865098,0.8099421,0,-0.6488488,0.7609174,0,-0.5865098,0.8099421,0,-0.6488488,0.7609174,0,-0.5865098,0.8099421,0,-0.6488488,0.7609174,0,0.8099421,-0.5865098,0,0.8099421,-0.5865098,0,0.7609174,-0.6488488,0,0.7609174,-0.6488488,0,0.7609174,-0.6488488,0,0.8099421,-0.5865098,-0.9968551,0.05603429,0.05603429,-0.9968551,0.05603429,0.05603429,-1,0,0,-1,0,0,-1,0,0,-0.9968551,0.05603429,0.05603429,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.6488488,0.7609174,0,-0.6488488,0.7609174,0,-0.6488488,0.7609174,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.6488488,0.7609174,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.6488488,0.7609174,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7609174,-0.6488488,0,0.7071068,-0.7071068,0,0.7609174,-0.6488488,0,0.7071068,-0.7071068,0,0.7609174,-0.6488488,0,0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0.9968551,0.05603429,0.05603429,1,0,0,0.9968551,0.05603429,0.05603429,1,0,0,0.9968551,0.05603429,0.05603429,1,0,0,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9968551,-0.05603429,-0.05603429,0.9979891,-0.04482178,-0.04482177,0.9968551,-0.05603429,-0.05603429,0.9979891,-0.04482178,-0.04482177,0.9968551,-0.05603429,-0.05603429,0.9979891,-0.04482178,-0.04482177,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,-1,0,0,-1,0,0,-0.9968551,-0.05603429,-0.05603429,-0.9968551,-0.05603429,-0.05603429,-0.9968551,-0.05603429,-0.05603429,-1,0,0,0,0.6488488,-0.7609174,0,0.5865098,-0.8099421,0,0.6488488,-0.7609174,0,0.5865098,-0.8099421,0,0.6488488,-0.7609174,0,0.5865098,-0.8099421,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.8099421,0.5865099,0,-0.8099421,0.5865099,0,-0.7609174,0.6488488,0,-0.7609174,0.6488488,0,-0.7609174,0.6488488,0,-0.8099421,0.5865099,1,0,0,0.9968551,-0.05603429,-0.05603429,1,0,0,0.9968551,-0.05603429,-0.05603429,1,0,0,0.9968551,-0.05603429,-0.05603429,-0.9968551,-0.05603429,-0.05603429,-0.9968551,-0.05603429,-0.05603429,-0.9979891,-0.04482178,-0.04482177,-0.9979891,-0.04482178,-0.04482177,-0.9979891,-0.04482178,-0.04482177,-0.9968551,-0.05603429,-0.05603429,0,-0.7071067,0.7071068,0,-0.7609174,0.6488488,0,-0.7071067,0.7071068,0,-0.7609174,0.6488488,0,-0.7071067,0.7071068,0,-0.7609174,0.6488488,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.6488488,-0.7609174,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.6488488,-0.7609174,0,0.6488488,-0.7609174,0,0.6488488,-0.7609174,0,0.7071067,-0.7071068,0,0.6488488,-0.7609174,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.6488488,-0.7609174,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.6488488,-0.7609174,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0.9979891,0.04482177,-0.04482178,0.9979891,0.04482177,-0.04482178,0.9979891,-0.04482178,-0.04482177,1,0,0,0.9979891,-0.04482178,-0.04482177,0.9979891,0.04482177,-0.04482178,0.9979891,-0.04482178,-0.04482177,1,0,0,0.9979891,-0.04482178,-0.04482177,1,0,0,1,0,0,0.9979891,0.04482177,-0.04482178,1,0,0,0.9979891,-0.04482178,-0.04482177,1,0,0,0.9979891,0.04482177,0.04482177,1,0,0,0.9979891,0.04482177,-0.04482178,0.9979891,-0.04482177,0.04482177,0.9979891,-0.04482178,-0.04482177,1,0,0,1,0,0,1,0,0,0.9979891,0.04482177,0.04482177,1,0,0,0.9979891,-0.04482177,0.04482177,1,0,0,0.9979891,0.04482177,0.04482177,1,0,0,0.9979891,0.04482177,0.04482177,0.9979891,-0.04482177,0.04482177,0.9979891,-0.04482177,0.04482177,1,0,0,0.9979891,0.04482177,0.04482177,0.9979891,-0.04482177,0.04482177,1,0,0,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7609174,0.6488488,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7609174,0.6488488,0,0.7071068,0.7071067,0,0.7609174,0.6488488,0,0.7609174,0.6488488,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7609174,0.6488488,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7609174,0.6488488,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7609174,0.6488488,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,-0.7609174,-0.6488488,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7609174,-0.6488488,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7609174,-0.6488488,0,-0.7609174,-0.6488488,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7609174,-0.6488488,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7609174,-0.6488488,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7609174,-0.6488488,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *2928 { + a: -0.5567763,0.3214557,0.5567775,0.3214557,6.569469E-07,-0.6429103,0.642911,5.759163E-07,-0.321455,-0.5567764,-0.321455,0.5567776,0.5729767,-1.881533,1.502827,-1.268849,3.76288,-5.710804,0.7137429,-1.832768,1.594553,-1.151463,4.184326,-5.409617,-1.594553,-1.151463,-0.7137429,-1.832768,-4.184326,-5.409617,-1.502827,-1.268849,-0.5729767,-1.881533,-3.76288,-5.710804,0.5567775,-0.321455,-0.5567764,-0.321455,6.14636E-07,0.642911,-0.5567775,-0.321455,-6.14636E-07,0.642911,0.5567764,-0.321455,-1.502828,1.268851,-3.762881,5.710805,-0.5729777,1.881534,3.762881,5.710805,1.502828,1.268851,0.5729777,1.881534,-1.594554,1.151465,-4.184328,5.409618,-0.713744,1.832769,4.184328,5.409618,1.594554,1.151465,0.713744,1.832769,1.502827,1.26885,0.5729767,1.881534,3.76288,5.710805,-0.7137429,1.832769,-1.594553,1.151464,-4.184326,5.409618,-0.5729767,1.881534,-1.502827,1.26885,-3.76288,5.710805,1.594553,1.151464,0.7137429,1.832769,4.184326,5.409618,1.594554,-1.151464,4.184327,-5.409618,0.7137441,-1.832768,1.502828,-1.26885,3.76288,-5.710804,0.5729775,-1.881533,-3.76288,-5.710804,-1.502828,-1.26885,-0.5729775,-1.881533,-4.184327,-5.409618,-1.594554,-1.151464,-0.7137441,-1.832768,0.6429104,5.925104E-07,-0.3214557,-0.5567764,-0.3214557,0.5567776,0.321455,-0.5567764,-0.642911,5.759163E-07,0.321455,0.5567776,0.5567763,0.3214557,-6.569469E-07,-0.6429103,-0.5567775,0.3214557,0.3214557,-0.5567764,-0.6429104,5.925104E-07,0.3214557,0.5567776,-2.533336,0.5567775,-0.5567777,2.533336,-2.533336,-0.5567765,-1.976559,4.995148E-07,-0.5567774,-2.533335,-6.339271E-07,1.976559,-5.455618E-07,-1.976558,0.5567763,2.533336,0.5567764,-2.533335,1.976558,5.8788E-07,2.533335,0.5567776,2.533335,-0.5567764,0.7972441,69.13386,-0.7972441,69.13386,-0.5979331,69.13386,-1.397638,66.4567,1.397638,66.4567,-1.397638,71.87008,-0.7972441,70.72835,1.397638,71.87008,0.7972441,70.72835,0.7972441,-1.397637,0.7972441,-14.75886,-0.7972441,-1.397637,-0.7972441,-14.75886,-0.7972441,-14.75886,-0.7972441,-1.397637,0.7972441,-14.75886,0.5979331,-1.397637,0.7972441,-1.397637,9.401179,-11.37774,11.37774,-9.401179,26.1713,-28.14786,28.14786,-26.1713,9.961514,-30.83369,19.40932,-21.38588,11.08899,-31.96116,20.5368,-22.51336,27.70244,-29.679,29.679,-27.70244,44.47256,-46.44912,46.44912,-44.47256,-46.0037,-47.98026,-49.83154,-51.8081,-47.98026,-46.0037,-51.8081,-49.83154,-27.70244,-29.679,-44.47256,-46.44912,-29.679,-27.70244,-46.44912,-44.47256,46.0037,-47.98026,47.98026,-46.0037,49.83154,-51.8081,51.8081,-49.83154,1.397638,-40.5748,1.397638,-64.29134,-1.397638,-40.5748,-1.397638,-64.29134,-9.401179,-11.37774,-26.1713,-28.14786,-11.37774,-9.401179,-28.14786,-26.1713,1.397638,-14.69291,1.397638,-38.40945,-1.397638,-14.69291,-1.397638,-38.40945,-9.961514,-30.83369,-11.08899,-31.96116,-19.40932,-21.38588,-20.5368,-22.51336,1.397638,-66.4567,1.397638,-71.87008,-1.397638,-66.4567,-1.397638,-71.87008,0.7972441,-30.44106,-0.7972441,-30.44106,0.7972441,-28.84657,-0.7972441,-28.84657,-0.307605,-2.267927,-3.853921,-5.769704,-2.271633,-0.2789178,-5.81795,-3.780695,0.7972441,-70.72835,-0.7972441,-70.72835,0.7972441,-69.13386,-0.7972441,-69.13386,0.7972441,-1.397637,0.7972441,-14.75886,-0.7972441,-1.397637,-0.7972441,-14.75886,4.036633,-6.013191,6.013191,-4.036633,7.870042,-9.846601,9.846601,-7.870042,-0.7972441,-14.75886,-0.7972441,-1.397638,0.7972441,-14.75886,0.5979331,-1.397638,0.7972441,-1.397638,0.7972441,-50.12609,-0.7972441,-50.12609,0.7972441,-48.53161,-0.7972441,-48.53161,0.7972441,-1.397638,0.7972441,-14.75886,-0.7972441,-1.397638,-0.7972441,-14.75886,-4.598283,-16.2739,4.849527,-6.826085,-3.470809,-17.40137,5.977,-7.953559,-23.88094,-44.75312,-25.00841,-45.88059,-33.32875,-35.30531,-34.45622,-36.43278,-38.44893,-59.32111,-39.5764,-60.44858,-47.89674,-49.8733,-49.02422,-51.00077,-1.397638,-6.796234,-1.397638,-1.81238,1.397638,-6.796234,1.397638,-1.81238,-0.7972441,-14.75886,-0.7972441,-1.397637,0.7972441,-14.75886,0.5979331,-1.397637,0.7972441,-1.397637,1.397638,-7.106298,1.397638,-12.52756,-1.397638,-7.106298,-1.397638,-12.52756,23.88094,-44.75312,33.32875,-35.30531,25.00841,-45.88059,34.45622,-36.43278,1.397638,-6.796234,-1.397638,-6.796234,1.397638,-1.81238,-1.397638,-1.81238,0.307605,-2.267927,2.271633,-0.2789178,3.853921,-5.769704,5.81795,-3.780695,4.598283,-16.2739,3.470809,-17.40137,-4.849527,-6.826085,-5.977,-7.953559,1.397638,-1.397638,-1.397638,-1.397638,1.397638,1.397638,-1.397638,1.397638,0.7972441,-9.850393,-0.7972441,-9.850393,0.7972441,-8.255904,-0.7972441,-8.255904,0.7972441,-1.397637,0.7972441,-14.75886,-0.7972441,-1.397637,-0.7972441,-14.75886,-4.036633,-6.013191,-7.870042,-9.846601,-6.013191,-4.036633,-9.846601,-7.870042,38.44893,-59.32111,47.89674,-49.8733,39.5764,-60.44858,49.02422,-51.00077,-0.7972441,-14.75886,-0.7972441,-1.397637,0.7972441,-14.75886,0.5979331,-1.397637,0.7972441,-1.397637,-0.7972441,-14.75886,-0.7972441,-1.397636,0.7972441,-14.75886,0.5979331,-1.397636,0.7972441,-1.397636,21.38588,19.40933,22.51336,20.5368,30.83369,9.961516,31.96116,11.08899,-21.38588,19.40933,-30.83369,9.961516,-22.51336,20.5368,-31.96116,11.08899,0.7972441,28.84657,-0.7972441,28.84657,0.7972441,30.44106,-0.7972441,30.44106,0.7972441,-1.397636,0.7972441,-14.75886,-0.7972441,-1.397636,-0.7972441,-14.75886,-46.0037,47.98026,-47.98026,46.0037,-49.83154,51.8081,-51.8081,49.83154,9.401178,11.37774,26.1713,28.14786,11.37774,9.40118,28.14786,26.1713,27.70244,29.679,44.47256,46.44912,29.679,27.70244,46.44912,44.47256,46.0037,47.98026,49.83154,51.8081,47.98026,46.0037,51.8081,49.83154,1.397638,40.5748,-1.397638,40.5748,1.397638,64.29134,-1.397638,64.29134,-9.401178,11.37774,-11.37774,9.40118,-26.1713,28.14786,-28.14786,26.1713,-27.70244,29.679,-29.679,27.70244,-44.47256,46.44912,-46.44912,44.47256,0.7972441,48.53161,-0.7972441,48.53161,-0.5979331,48.53161,-1.397638,40.5748,1.397638,40.5748,-1.397638,64.29134,-0.7972441,50.12609,1.397638,64.29134,0.7972441,50.12609,1.397638,66.4567,-1.397638,66.4567,1.397638,71.87008,-1.397638,71.87008,1.397638,14.69291,-1.397638,14.69291,1.397638,38.40945,-1.397638,38.40945,-34.45623,36.43278,-25.00842,45.88059,-33.32875,35.30531,-23.88094,44.75312,0.7972441,1.397637,-0.5979331,1.397637,0.7972441,14.75886,-0.7972441,1.397637,-0.7972441,14.75886,0.7972441,1.397637,-0.7972441,1.397637,0.7972441,14.75886,-0.7972441,14.75886,-5.977002,7.95356,3.470808,17.40137,-4.849528,6.826087,4.598281,16.2739,-1.397638,40.5748,-1.397638,64.29134,1.397638,40.5748,1.397638,64.29134,0.7972441,50.12609,0.7972441,48.53161,-0.7972441,50.12609,-0.7972441,48.53161,51.8081,49.83154,47.98026,46.0037,49.83154,51.8081,46.0037,47.98026,-51.8081,49.83154,-49.83154,51.8081,-47.98026,46.0037,-46.0037,47.98026,28.14786,26.1713,11.37774,9.401179,26.1713,28.14786,9.40118,11.37774,5.977002,7.95356,4.849528,6.826087,-3.470808,17.40137,-4.598281,16.2739,5.817951,3.780696,2.271635,0.2789189,3.853923,5.769705,0.3076062,2.267928,0.7972441,30.44106,0.7972441,28.84657,-0.7972441,30.44106,-0.7972441,28.84657,-28.14786,26.1713,-26.1713,28.14786,-11.37774,9.401179,-9.40118,11.37774,-1.397638,14.69291,-1.397638,38.40945,1.397638,14.69291,1.397638,38.40945,0.7972441,1.397637,-0.7972441,1.397637,0.7972441,14.75886,-0.7972441,14.75886,20.5368,22.51336,19.40933,21.38588,11.08899,31.96117,9.961517,30.83369,-1.397638,66.4567,-1.397638,71.87008,1.397638,66.4567,1.397638,71.87008,0.7972441,1.397637,-0.5979331,1.397637,0.7972441,14.75886,-0.7972441,1.397637,-0.7972441,14.75886,46.44912,44.47256,29.679,27.70244,44.47256,46.44912,27.70244,29.679,-46.44912,44.47256,-44.47256,46.44912,-29.679,27.70244,-27.70244,29.679,-20.5368,22.51336,-11.08899,31.96117,-19.40933,21.38588,-9.961517,30.83369,-1.397638,7.1063,-1.397638,12.52756,1.397638,7.1063,1.397638,12.52756,49.02422,51.00077,47.89674,49.8733,39.57641,60.44858,38.44893,59.32111,1.397638,6.796236,1.397638,1.812382,-1.397638,6.796236,-1.397638,1.812382,1.397638,-1.397638,-1.397638,-1.397638,1.397638,1.397638,-1.397638,1.397638,34.45623,36.43278,33.32875,35.30531,25.00842,45.88059,23.88094,44.75312,0.7972441,70.72835,0.7972441,69.13386,-0.7972441,70.72835,-0.7972441,69.13386,1.397638,1.812382,-1.397638,1.812382,1.397638,6.796236,-1.397638,6.796236,9.846601,7.870043,6.013192,4.036633,7.870044,9.846601,4.036634,6.013192,0.7972441,1.397637,-0.5979331,1.397637,0.7972441,14.75886,-0.7972441,1.397637,-0.7972441,14.75886,0.7972441,1.397638,-0.5979331,1.397638,0.7972441,14.75886,-0.7972441,1.397638,-0.7972441,14.75886,-49.02422,51.00077,-39.57641,60.44858,-47.89674,49.8733,-38.44893,59.32111,0.7972441,9.850394,0.7972441,8.255906,-0.7972441,9.850394,-0.7972441,8.255906,-5.817951,3.780696,-3.853923,5.769705,-2.271635,0.2789189,-0.3076062,2.267928,0.7972441,1.397638,-0.7972441,1.397638,0.7972441,14.75886,-0.7972441,14.75886,-9.846601,7.870043,-7.870044,9.846601,-6.013192,4.036633,-4.036634,6.013192,0.7972441,1.397637,-0.7972441,1.397637,0.7972441,14.75886,-0.7972441,14.75886,-6.826085,4.849528,-16.2739,-4.598281,-7.953558,5.977002,-17.40137,-3.470808,0.7972441,48.53161,-0.7972441,48.53161,0.7972441,50.12609,-0.7972441,50.12609,-0.7972441,-14.75886,-0.7972441,-1.397636,0.7972441,-14.75886,0.5979331,-1.397636,0.7972441,-1.397636,0.3076049,2.267928,3.853921,5.769705,2.271633,0.278919,5.81795,3.780696,0.7972441,-1.397636,0.7972441,-14.75886,-0.7972441,-1.397636,-0.7972441,-14.75886,0.7972441,28.84657,-0.7972441,28.84657,-0.5979331,28.84657,-1.397638,14.69291,1.397638,14.69291,-1.397638,38.40945,-0.7972441,30.44106,1.397638,38.40945,0.7972441,30.44106,1.397638,1.397639,1.397638,-1.397637,-1.397638,1.397639,-1.397638,-1.397637,0.7972441,8.255905,-0.7972441,8.255905,0.7972441,9.850393,-0.7972441,9.850393,6.826085,4.849528,7.953558,5.977002,16.2739,-4.598281,17.40137,-3.470808,-0.3076049,2.267928,-2.271633,0.278919,-3.853921,5.769705,-5.81795,3.780696,0.7972441,69.13386,-0.7972441,69.13386,0.7972441,70.72835,-0.7972441,70.72835,0.7972441,-1.397636,0.7972441,-14.75886,-0.7972441,-1.397636,-0.7972441,-14.75886,-35.30531,33.32875,-44.75312,23.88094,-36.43278,34.45622,-45.88059,25.00842,49.8733,47.89674,51.00077,49.02422,59.32111,38.44893,60.44858,39.5764,0.7972441,-1.397637,0.7972441,-14.75886,-0.7972441,-1.397637,-0.7972441,-14.75886,-49.8733,47.89674,-59.32111,38.44893,-51.00077,49.02422,-60.44858,39.5764,1.397638,1.812381,-1.397638,1.812381,1.397638,6.796235,-1.397638,6.796235,-1.397638,1.812381,-1.397638,6.796235,1.397638,1.812381,1.397638,6.796235,4.036633,6.013192,7.870042,9.846601,6.013191,4.036634,9.846601,7.870043,0.7972441,8.255905,-0.7972441,8.255905,-0.5979331,8.255905,-1.397638,7.106299,1.397638,7.106299,-1.397638,12.52756,-0.7972441,9.850393,1.397638,12.52756,0.7972441,9.850393,1.397638,7.106299,-1.397638,7.106299,1.397638,12.52756,-1.397638,12.52756,35.30531,33.32875,36.43278,34.45622,44.75312,23.88094,45.88059,25.00842,-0.7972441,-14.75886,-0.7972441,-1.397637,0.7972441,-14.75886,0.5979331,-1.397637,0.7972441,-1.397637,-0.7972441,-14.75886,-0.7972441,-1.397636,0.7972441,-14.75886,0.5979331,-1.397636,0.7972441,-1.397636,-4.036633,6.013192,-6.013191,4.036634,-7.870042,9.846601,-9.846601,7.870043,0.7972441,-48.53161,0.5979331,-48.53161,-0.7972441,-48.53161,1.397638,-40.5748,0.7972441,-50.12609,-1.397638,-40.5748,1.397638,-64.29134,-0.7972441,-50.12609,-1.397638,-64.29134,1.397638,-38.40945,-1.397638,-38.40945,1.397638,-14.69291,-1.397638,-14.69291,-45.88059,-25.00842,-44.75312,-23.88094,-36.43278,-34.45622,-35.30531,-33.32875,0.7972441,14.75886,0.7972441,1.397638,-0.7972441,14.75886,-0.5979331,1.397638,-0.7972441,1.397638,17.40137,3.470809,7.953559,-5.977001,16.2739,4.598282,6.826086,-4.849527,-0.7972441,1.397638,-0.7972441,14.75886,0.7972441,1.397638,0.7972441,14.75886,-17.40137,3.470809,-16.2739,4.598282,-7.953559,-5.977001,-6.826086,-4.849527,5.817951,-3.780695,3.853922,-5.769704,2.271635,-0.2789179,0.307606,-2.267927,0.7972441,-50.12609,-0.7972441,-50.12609,0.7972441,-48.53161,-0.7972441,-48.53161,-60.44858,-39.57641,-59.32111,-38.44893,-51.00077,-49.02422,-49.8733,-47.89674,0.7972441,-70.72835,-0.7972441,-70.72835,0.7972441,-69.13386,-0.7972441,-69.13386,-0.7972441,1.397638,-0.7972441,14.75886,0.7972441,1.397638,0.7972441,14.75886,31.96117,-11.08899,22.51336,-20.5368,30.83369,-9.961516,21.38588,-19.40932,46.44912,-44.47256,44.47256,-46.44912,29.679,-27.70244,27.70244,-29.679,1.397638,-64.29134,-1.397638,-64.29134,1.397638,-40.5748,-1.397638,-40.5748,28.14786,-26.1713,26.1713,-28.14786,11.37774,-9.401179,9.401179,-11.37774,0.7972441,-69.13386,0.5979331,-69.13386,-0.7972441,-69.13386,1.397638,-66.4567,0.7972441,-70.72835,-1.397638,-66.4567,1.397638,-71.87008,-0.7972441,-70.72835,-1.397638,-71.87008,1.397638,-71.87008,-1.397638,-71.87008,1.397638,-66.4567,-1.397638,-66.4567,-28.14786,-26.1713,-11.37774,-9.401179,-26.1713,-28.14786,-9.401179,-11.37774,51.8081,-49.83154,49.83154,-51.8081,47.98026,-46.0037,46.0037,-47.98026,-31.96117,-11.08899,-30.83369,-9.961516,-22.51336,-20.5368,-21.38588,-19.40932,0.7972441,-30.44106,-0.7972441,-30.44106,0.7972441,-28.84657,-0.7972441,-28.84657,-46.44912,-44.47256,-29.679,-27.70244,-44.47256,-46.44912,-27.70244,-29.679,0.7972441,14.75886,0.7972441,1.397638,-0.7972441,14.75886,-0.5979331,1.397638,-0.7972441,1.397638,-51.8081,-49.83154,-47.98026,-46.0037,-49.83154,-51.8081,-46.0037,-47.98026,0.7972441,14.75886,0.7972441,1.397638,-0.7972441,14.75886,-0.5979331,1.397638,-0.7972441,1.397638,45.88059,-25.00842,36.43278,-34.45622,44.75312,-23.88094,35.30531,-33.32875,0.7972441,-28.84657,0.5979331,-28.84657,-0.7972441,-28.84657,1.397638,-14.69291,0.7972441,-30.44106,-1.397638,-14.69291,1.397638,-38.40945,-0.7972441,-30.44106,-1.397638,-38.40945,-9.846601,-7.870043,-6.013192,-4.036633,-7.870043,-9.846601,-4.036633,-6.013191,1.397638,-6.796235,-1.397638,-6.796235,1.397638,-1.812381,-1.397638,-1.812381,0.7972441,-9.850393,-0.7972441,-9.850393,0.7972441,-8.255905,-0.7972441,-8.255905,60.44858,-39.57641,51.00077,-49.02422,59.32111,-38.44893,49.8733,-47.89674,1.397638,-1.812382,1.397638,-6.796235,-1.397638,-1.812382,-1.397638,-6.796235,9.846601,-7.870043,7.870043,-9.846601,6.013192,-4.036633,4.036633,-6.013191,-5.817951,-3.780695,-2.271635,-0.2789179,-3.853922,-5.769704,-0.307606,-2.267927,1.397638,-12.52756,-1.397638,-12.52756,1.397638,-7.106299,-1.397638,-7.106299,-0.7972441,1.397638,-0.7972441,14.75886,0.7972441,1.397638,0.7972441,14.75886,-0.7972441,1.397638,-0.7972441,14.75886,0.7972441,1.397638,0.7972441,14.75886,-1.397638,-1.397637,-1.397638,1.397639,1.397638,-1.397637,1.397638,1.397639,0.7972441,-8.255905,0.5979331,-8.255905,-0.7972441,-8.255905,1.397638,-7.106299,0.7972441,-9.850393,-1.397638,-7.106299,1.397638,-12.52756,-0.7972441,-9.850393,-1.397638,-12.52756,0.7972441,14.75886,0.7972441,1.397638,-0.7972441,14.75886,-0.5979331,1.397638,-0.7972441,1.397638,9.271653,-1.397638,2.185039,-1.397638,9.271653,1.397638,2.185039,1.397638,-9.271653,-1.397637,-9.271653,1.397639,-2.185039,-1.397637,-2.185039,1.397639,2.533336,0.5567775,2.533336,-0.5567765,0.5567777,2.533336,1.976559,4.995148E-07,0.5567774,-2.533335,6.339271E-07,1.976559,5.455618E-07,-1.976558,-0.5567763,2.533336,-0.5567764,-2.533335,-1.976558,5.8788E-07,-2.533335,0.5567776,-2.533335,-0.5567764,-2.185039,-1.397638,-9.271653,-1.397638,-2.185039,1.397638,-9.271653,1.397638,-2.185039,1.397639,-2.185039,-1.397637,-9.271653,1.397639,-9.271653,-1.397637,9.271653,-1.397638,2.185039,-1.397638,9.271653,1.397638,2.185039,1.397638,-1.976559,4.995148E-07,-6.339271E-07,1.976559,-5.455618E-07,-1.976558,1.976558,5.8788E-07,2.185039,-1.397637,2.185039,1.397639,9.271653,-1.397637,9.271653,1.397639,9.271653,1.397639,9.271653,-1.397637,2.185039,1.397639,2.185039,-1.397637,1.976559,4.995148E-07,5.455618E-07,-1.976558,6.339271E-07,1.976559,-1.976558,5.8788E-07,-2.185039,-1.397638,-9.271653,-1.397638,-2.185039,1.397638,-9.271653,1.397638,0.7972441,-50.12609,1.397638,-64.29134,-0.7972441,-50.12609,0.7972441,-48.53161,-1.397638,-64.29134,-1.397638,-40.5748,-0.7972441,-48.53161,1.397638,-40.5748,0.5979331,-48.53161,0.7972441,-70.72835,1.397638,-71.87008,-0.7972441,-70.72835,0.7972441,-69.13386,-1.397638,-71.87008,-1.397638,-66.4567,-0.7972441,-69.13386,1.397638,-66.4567,0.5979331,-69.13386,-0.5979331,69.13386,0.7972441,69.13386,-1.397638,66.4567,-0.7972441,69.13386,1.397638,66.4567,-1.397638,71.87008,-0.7972441,70.72835,0.7972441,70.72835,1.397638,71.87008,-0.5979331,8.255906,0.7972441,8.255906,-1.397638,7.1063,-0.7972441,8.255906,1.397638,7.1063,-1.397638,12.52756,-0.7972441,9.850394,0.7972441,9.850394,1.397638,12.52756,-1.397638,-7.106298,-0.7972441,-9.850393,-1.397638,-12.52756,1.397638,-12.52756,-0.7972441,-8.255904,0.7972441,-9.850393,0.7972441,-8.255904,1.397638,-7.106298,0.5979331,-8.255904,-1.397638,-14.69291,-0.7972441,-30.44106,-1.397638,-38.40945,1.397638,-38.40945,-0.7972441,-28.84657,0.7972441,-30.44106,0.7972441,-28.84657,1.397638,-14.69291,0.5979331,-28.84657,1.397638,40.5748,0.7972441,50.12609,1.397638,64.29134,-1.397638,64.29134,0.7972441,48.53161,-0.7972441,50.12609,-0.7972441,48.53161,-1.397638,40.5748,-0.5979331,48.53161,1.397638,14.69291,0.7972441,30.44106,1.397638,38.40945,-1.397638,38.40945,0.7972441,28.84657,-0.7972441,30.44106,-0.7972441,28.84657,-1.397638,14.69291,-0.5979331,28.84657,2.185039,38.40945,-4.547474E-12,38.40945,2.185039,40.5748,-4.433787E-12,40.5748,-2.185039,38.40945,-2.185039,40.5748,-2.185039,66.4567,-2.842171E-12,66.4567,-2.185039,64.29134,-2.955858E-12,64.29134,2.185039,66.4567,2.185039,64.29134,2.185039,38.40945,-2.185039,38.40945,2.185039,40.5748,-2.185039,40.5748,-43.91578,47.0059,-47.0059,43.91579,-45.44692,48.53704,-48.53703,45.44692,43.91578,47.0059,45.44692,48.53704,47.0059,43.91579,48.53703,45.44692,2.185039,64.29134,-2.185039,64.29134,2.185039,66.4567,-2.185039,66.4567,2.905717,-16.83628,-10.52661,-30.2686,-5.420223,-8.510336,-7.313265,-10.40338,-8.844402,-11.93451,-18.85255,-21.94266,-5.420223,-8.510336,-10.52661,-30.2686,2.905717,-16.83628,-7.313265,-10.40338,-8.844402,-11.93451,-18.85255,-21.94266,-7.313265,-10.40338,-8.844402,-11.93451,-10.40338,-7.313265,-11.93451,-8.844402,7.313265,-10.40338,10.40338,-7.313265,8.844402,-11.93451,11.93451,-8.844402,43.91578,-47.0059,47.0059,-43.91578,45.44692,-48.53703,48.53703,-45.44692,2.185039,-12.52756,2.185039,-14.69291,-2.185039,-12.52756,-2.185039,-14.69291,-25.57351,-45.3155,-39.01402,-58.75602,-33.89944,-36.98956,-43.91578,-47.0059,-45.44692,-48.53703,-47.33996,-50.43008,-33.89944,-36.98956,-39.01402,-58.75602,-25.57351,-45.3155,-43.91578,-47.0059,-45.44692,-48.53703,-47.33996,-50.43008,-2.185039,-40.5748,-2.185039,-38.40945,4.433787E-12,-40.5748,4.547474E-12,-38.40945,2.185039,-40.5748,2.185039,-38.40945,-11.65408,-31.39607,-24.44603,-44.18802,-19.98002,-23.07013,-25.61452,-28.70464,-27.14566,-30.23577,-32.77197,-35.86208,-19.98002,-23.07013,-24.44603,-44.18802,-11.65408,-31.39607,-25.61452,-28.70464,-27.14566,-30.23577,-32.77197,-35.86208,2.185039,-38.40945,2.185039,-40.5748,-2.185039,-38.40945,-2.185039,-40.5748,-43.91578,-47.0059,-45.44692,-48.53703,-47.0059,-43.91578,-48.53703,-45.44692,2.185039,-64.29134,2.185039,-66.4567,-2.185039,-64.29134,-2.185039,-66.4567,2.185039,-64.29134,2.185039,-66.4567,2.955858E-12,-64.29134,2.842171E-12,-66.4567,-2.185039,-64.29134,-2.185039,-66.4567,2.185039,-12.52756,2.185039,-14.69291,6.139089E-12,-12.52756,6.025402E-12,-14.69291,-2.185039,-12.52756,-2.185039,-14.69291,25.61452,-28.70464,28.70464,-25.61452,27.14566,-30.23577,30.23577,-27.14566,-25.61452,-28.70464,-27.14566,-30.23577,-28.70464,-25.61452,-30.23577,-27.14566,2.185039,12.52756,-2.185039,12.52756,2.185039,14.69291,-2.185039,14.69291,-7.313265,10.40338,-10.40338,7.313267,-8.844401,11.93452,-11.93451,8.844403,7.313265,10.40338,8.844401,11.93452,10.40338,7.313267,11.93451,8.844403,-2.185039,14.69291,-6.025402E-12,14.69291,-2.185039,12.52756,-6.139089E-12,12.52756,2.185039,14.69291,2.185039,12.52756,-36.98956,33.89945,-45.3155,25.57351,-47.0059,43.91579,-58.75602,39.01403,-48.53703,45.44692,-50.43008,47.33997,-47.0059,43.91579,-45.3155,25.57351,-36.98956,33.89945,-58.75602,39.01403,-48.53703,45.44692,-50.43008,47.33997,-23.07013,19.98002,-31.39607,11.65408,-28.70464,25.61453,-30.23577,27.14566,-35.86208,32.77197,-44.18802,24.44603,-28.70464,25.61453,-31.39607,11.65408,-23.07013,19.98002,-30.23577,27.14566,-35.86208,32.77197,-44.18802,24.44603,-8.510336,5.420225,-16.83628,-2.905715,-10.40338,7.313267,-11.93451,8.844403,-21.94266,18.85255,-30.2686,10.52661,-10.40338,7.313267,-16.83628,-2.905715,-8.510336,5.420225,-11.93451,8.844403,-21.94266,18.85255,-30.2686,10.52661,-2.955858E-12,2.185039,2.185039,2.185039,-2.185039,2.185039,-1.397638,1.397638,1.397638,1.397638,-1.397638,-1.397638,-2.185039,-2.185039,1.397638,-1.397638,2.185039,-2.185039,-2.185039,12.52756,-2.185039,14.69291,2.185039,12.52756,2.185039,14.69291,2.185039,40.5748,2.185039,38.40945,-4.433787E-12,40.5748,-4.547474E-12,38.40945,-2.185039,40.5748,-2.185039,38.40945,48.53704,45.44692,47.0059,43.91578,45.44692,48.53703,43.91579,47.0059,-4.547474E-12,2.185039,2.185039,2.185039,-2.185039,2.185039,-1.397638,1.397638,1.397638,1.397638,-1.397638,-1.397638,-2.185039,-2.185039,1.397638,-1.397638,2.185039,-2.185039,11.93452,8.844402,10.40338,7.313266,8.844403,11.93451,7.313267,10.40338,32.77197,35.86208,27.14566,30.23577,24.44603,44.18803,25.61453,28.70464,19.98002,23.07013,11.65408,31.39607,24.44603,44.18803,27.14566,30.23577,32.77197,35.86208,25.61453,28.70464,19.98002,23.07013,11.65408,31.39607,-2.185039,12.52756,-2.185039,14.69291,-6.139089E-12,12.52756,-6.025402E-12,14.69291,2.185039,12.52756,2.185039,14.69291,6.025402E-12,2.185039,2.185039,2.185039,-2.185039,2.185039,-1.397638,1.397638,1.397638,1.397638,-1.397638,-1.397638,-2.185039,-2.185039,1.397638,-1.397638,2.185039,-2.185039,-11.93452,8.844402,-8.844403,11.93451,-10.40338,7.313266,-7.313267,10.40338,-48.53704,45.44692,-45.44692,48.53703,-47.0059,43.91578,-43.91579,47.0059,-2.185039,64.29134,-2.185039,66.4567,-2.955858E-12,64.29134,-2.842171E-12,66.4567,2.185039,64.29134,2.185039,66.4567,-2.185039,38.40945,-2.185039,40.5748,2.185039,38.40945,2.185039,40.5748,-2.185039,64.29134,-2.185039,66.4567,2.185039,64.29134,2.185039,66.4567,2.842171E-12,2.185039,2.185039,2.185039,-2.185039,2.185039,-1.397638,1.397638,1.397638,1.397638,-1.397638,-1.397638,-2.185039,-2.185039,1.397638,-1.397638,2.185039,-2.185039,-6.139089E-12,2.185039,2.185039,2.185039,-2.185039,2.185039,-1.397638,1.397638,1.397638,1.397638,-1.397638,-1.397638,-2.185039,-2.185039,1.397638,-1.397638,2.185039,-2.185039,-30.23578,27.14566,-27.14566,30.23577,-28.70464,25.61452,-25.61453,28.70464,30.23578,27.14566,28.70464,25.61452,27.14566,30.23577,25.61453,28.70464,47.33997,50.43008,45.44692,48.53703,39.01403,58.75602,43.91579,47.0059,33.89945,36.98956,25.57351,45.3155,39.01403,58.75602,45.44692,48.53703,47.33997,50.43008,43.91579,47.0059,33.89945,36.98956,25.57351,45.3155,4.433787E-12,2.185039,2.185039,2.185039,-2.185039,2.185039,-1.397638,1.397638,1.397638,1.397638,-1.397638,-1.397638,-2.185039,-2.185039,1.397638,-1.397638,2.185039,-2.185039,18.85255,21.94266,8.844403,11.93451,10.52661,30.2686,-2.905715,16.83628,7.313267,10.40338,5.420225,8.510337,10.52661,30.2686,8.844403,11.93451,18.85255,21.94266,-2.905715,16.83628,7.313267,10.40338,5.420225,8.510337,-25.61452,28.70464,-28.70464,25.61453,-27.14566,30.23577,-30.23577,27.14566,25.61452,28.70464,27.14566,30.23577,28.70464,25.61453,30.23577,27.14566,11.93451,-8.844402,8.844402,-11.93451,10.40338,-7.313266,7.313266,-10.40338,2.185039,-66.4567,-2.185039,-66.4567,2.185039,-64.29134,-2.185039,-64.29134,-2.185039,-64.29134,2.955858E-12,-64.29134,-2.185039,-66.4567,2.842171E-12,-66.4567,2.185039,-64.29134,2.185039,-66.4567,-2.185039,-12.52756,6.139089E-12,-12.52756,-2.185039,-14.69291,6.025402E-12,-14.69291,2.185039,-12.52756,2.185039,-14.69291,2.185039,-14.69291,-2.185039,-14.69291,2.185039,-12.52756,-2.185039,-12.52756,-48.53703,-45.44692,-47.0059,-43.91579,-45.44692,-48.53704,-43.91578,-47.0059,48.53703,-45.44692,45.44692,-48.53704,47.0059,-43.91579,43.91578,-47.0059,-11.93451,-8.844402,-10.40338,-7.313266,-8.844402,-11.93451,-7.313266,-10.40338,44.18803,-24.44603,35.86208,-32.77197,31.39607,-11.65408,30.23577,-27.14566,28.70464,-25.61453,23.07013,-19.98002,31.39607,-11.65408,35.86208,-32.77197,44.18803,-24.44603,30.23577,-27.14566,28.70464,-25.61453,23.07013,-19.98002,-2.185039,-38.40945,4.547474E-12,-38.40945,-2.185039,-40.5748,4.433787E-12,-40.5748,2.185039,-38.40945,2.185039,-40.5748,30.2686,-10.52661,21.94266,-18.85255,16.83628,2.905716,11.93451,-8.844402,10.40338,-7.313266,8.510337,-5.420224,16.83628,2.905716,21.94266,-18.85255,30.2686,-10.52661,11.93451,-8.844402,10.40338,-7.313266,8.510337,-5.420224,58.75602,-39.01403,50.43008,-47.33997,45.3155,-25.57351,48.53703,-45.44692,47.0059,-43.91579,36.98956,-33.89945,45.3155,-25.57351,50.43008,-47.33997,58.75602,-39.01403,48.53703,-45.44692,47.0059,-43.91579,36.98956,-33.89945,2.185039,-40.5748,-2.185039,-40.5748,2.185039,-38.40945,-2.185039,-38.40945,30.23577,-27.14566,27.14566,-30.23577,28.70464,-25.61453,25.61452,-28.70464,-30.23577,-27.14566,-28.70464,-25.61453,-27.14566,-30.23577,-25.61452,-28.70464,2.185039,-2.185039,1.397638,1.397639,2.185039,2.18504,-2.185039,2.18504,1.397638,-1.397637,-1.397638,1.397639,-4.433787E-12,-2.185039,-1.397638,-1.397637,-2.185039,-2.185039,1.397638,1.397638,2.185039,2.185039,1.397638,-1.397638,-1.397638,1.397638,-2.185039,2.185039,-1.397638,-1.397638,-2.185039,-2.185039,2.185039,-2.185039,-6.025402E-12,-2.185039,-4.433787E-12,-2.185039,1.397638,-1.397638,2.185039,-2.185039,-2.185039,-2.185039,2.185039,2.185039,-1.397638,-1.397638,1.397638,1.397638,-2.185039,2.185039,-1.397638,1.397638,4.547474E-12,-2.185039,1.397638,-1.397638,2.185039,-2.185039,-2.185039,-2.185039,2.185039,2.185039,-1.397638,-1.397638,1.397638,1.397638,-2.185039,2.185039,-1.397638,1.397638,1.397638,1.397638,2.185039,2.185039,1.397638,-1.397638,-1.397638,1.397638,-2.185039,2.185039,-1.397638,-1.397638,-2.185039,-2.185039,2.185039,-2.185039,6.139089E-12,-2.185039,-2.185039,2.18504,-1.397638,-1.397637,-2.185039,-2.185039,6.139089E-12,-2.185039,-1.397638,1.397639,1.397638,-1.397637,2.185039,2.18504,2.185039,-2.185039,1.397638,1.397639,-1.397638,1.397639,-2.185039,2.18504,1.397638,1.397639,-1.397638,-1.397637,2.185039,2.18504,-2.185039,-2.185039,2.185039,-2.185039,-6.025402E-12,-2.185039,1.397638,-1.397637,1.397638,-1.397637,2.185039,-2.185039,-1.397638,-1.397637,1.397638,1.397639,-2.185039,-2.185039,2.185039,2.18504,-2.185039,2.18504,6.025402E-12,2.18504,-1.397638,1.397639,2.185039,-2.185039,1.397638,1.397639,2.185039,2.18504,-4.547474E-12,2.18504,1.397638,-1.397637,-1.397638,1.397639,-2.185039,-2.185039,-2.185039,2.18504,-1.397638,-1.397637,-2.185039,2.18504,-1.397638,-1.397637,-2.185039,-2.185039,2.185039,-2.185039,-1.397638,1.397639,1.397638,-1.397637,4.433787E-12,2.18504,1.397638,1.397639,2.185039,2.18504,-2.842171E-12,-2.185039,1.397638,-1.397638,2.185039,-2.185039,-2.185039,-2.185039,2.185039,2.185039,-1.397638,-1.397638,1.397638,1.397638,-2.185039,2.185039,-1.397638,1.397638,2.955858E-12,-2.185039,1.397638,-1.397638,2.185039,-2.185039,-2.185039,-2.185039,2.185039,2.185039,-1.397638,-1.397638,1.397638,1.397638,-2.185039,2.185039,-1.397638,1.397638,-2.185039,2.18504,-1.397638,-1.397637,-2.185039,-2.185039,2.955858E-12,-2.185039,-1.397638,1.397639,1.397638,-1.397637,2.185039,2.18504,2.185039,-2.185039,1.397638,1.397639,-2.185039,2.18504,-1.397638,-1.397637,-2.185039,-2.185039,4.547474E-12,-2.185039,-1.397638,1.397639,1.397638,-1.397637,2.185039,2.18504,2.185039,-2.185039,1.397638,1.397639,2.185039,-2.185039,1.397638,1.397639,2.185039,2.18504,-2.185039,2.18504,1.397638,-1.397637,-1.397638,1.397639,-2.842171E-12,-2.185039,-1.397638,-1.397637,-2.185039,-2.185039,2.185039,-2.185039,1.397638,1.397639,2.185039,2.18504,-2.955858E-12,2.18504,1.397638,-1.397637,-1.397638,1.397639,-2.185039,-2.185039,-2.185039,2.18504,-1.397638,-1.397637,2.185039,-2.185039,1.397638,1.397639,2.185039,2.18504,-6.139089E-12,2.18504,1.397638,-1.397637,-1.397638,1.397639,-2.185039,-2.185039,-2.185039,2.18504,-1.397638,-1.397637,-2.185039,2.18504,-1.397638,-1.397637,-2.185039,-2.185039,2.185039,-2.185039,-1.397638,1.397639,1.397638,-1.397637,2.842171E-12,2.18504,1.397638,1.397639,2.185039,2.18504 + } + UVIndex: *2868 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,29,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,50,49,51,53,52,54,56,55,57,59,58,60,62,61,63,65,64,66,68,67,69,71,70,72,74,73,75,73,74,74,76,75,77,73,75,78,75,76,79,73,77,80,78,76,81,79,77,81,78,80,82,79,81,83,81,80,82,81,83,84,86,85,84,85,87,87,88,84,89,87,85,90,89,85,91,84,88,91,89,90,92,84,91,90,92,91,93,95,94,96,94,95,97,99,98,100,98,99,101,100,99,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,169,168,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,180,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,198,197,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,243,242,245,247,246,248,246,247,249,248,247,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,294,295,297,297,298,294,299,297,295,300,299,295,301,294,298,301,299,300,302,294,301,300,302,301,303,305,304,306,304,305,307,309,308,310,308,309,311,313,312,314,312,313,315,317,316,318,316,317,319,318,317,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,383,382,385,387,386,388,386,387,389,391,390,392,390,391,393,395,394,396,394,395,397,399,398,400,398,399,401,403,402,404,402,403,405,407,406,408,406,407,409,411,410,412,410,411,413,415,414,416,414,415,417,419,418,420,418,419,421,423,422,424,422,423,425,427,426,428,426,427,429,431,430,432,430,431,433,432,431,434,436,435,437,435,436,438,437,436,439,441,440,442,440,441,443,445,444,446,444,445,447,449,448,450,448,449,451,453,452,454,452,453,455,457,456,458,456,457,459,461,460,462,460,461,463,465,464,466,464,465,467,469,468,470,468,469,471,473,472,474,472,473,475,474,473,476,478,477,479,477,478,480,482,481,483,481,482,484,486,485,484,485,487,487,488,484,489,487,485,490,489,485,491,484,488,491,489,490,492,484,491,490,492,491,493,495,494,496,494,495,497,499,498,500,498,499,501,503,502,504,502,503,505,507,506,508,506,507,509,511,510,512,510,511,513,515,514,516,514,515,517,519,518,520,518,519,521,523,522,524,522,523,525,527,526,528,526,527,529,531,530,532,530,531,533,535,534,536,534,535,537,539,538,540,538,539,541,543,542,544,542,543,545,547,546,545,546,548,548,549,545,550,548,546,551,550,546,552,545,549,552,550,551,553,545,552,551,553,552,554,556,555,557,555,556,558,560,559,561,559,560,562,564,563,565,563,564,566,565,564,567,569,568,570,568,569,571,570,569,572,574,573,575,573,574,576,578,577,578,576,579,576,580,579,579,581,578,579,580,582,578,581,583,584,582,580,581,584,583,580,583,584,585,587,586,588,586,587,589,591,590,592,590,591,593,595,594,596,594,595,597,596,595,598,600,599,601,599,600,602,604,603,605,603,604,606,608,607,609,607,608,610,612,611,613,611,612,614,616,615,617,615,616,618,620,619,621,619,620,622,624,623,625,623,624,626,628,627,629,627,628,630,632,631,633,631,632,634,636,635,637,635,636,638,640,639,641,639,640,642,644,643,645,643,644,646,648,647,648,646,649,646,650,649,649,651,648,649,650,652,648,651,653,654,652,650,651,654,653,650,653,654,655,657,656,658,656,657,659,661,660,662,660,661,663,665,664,666,664,665,667,669,668,670,668,669,671,673,672,674,672,673,675,677,676,678,676,677,679,681,680,682,680,681,683,682,681,684,686,685,687,685,686,688,690,689,691,689,690,692,691,690,693,695,694,696,694,695,697,699,698,699,697,700,697,701,700,700,702,699,700,701,703,699,702,704,705,703,701,702,705,704,701,704,705,706,708,707,709,707,708,710,712,711,713,711,712,714,716,715,717,715,716,718,720,719,721,719,720,722,724,723,725,723,724,726,728,727,729,727,728,730,732,731,733,731,732,734,736,735,737,735,736,738,740,739,741,739,740,742,744,743,745,743,744,746,748,747,749,747,748,750,752,751,752,750,753,750,754,753,753,755,752,753,754,756,752,755,757,758,756,754,755,758,757,754,757,758,759,761,760,762,760,761,763,762,761,764,766,765,767,765,766,768,770,769,771,769,770,772,774,773,775,773,774,773,775,776,777,775,774,778,776,775,779,777,774,780,776,778,781,777,779,781,780,778,782,781,779,783,780,781,782,783,781,784,786,785,787,785,786,788,790,789,791,789,790,792,794,793,795,793,794,796,798,797,799,797,798,800,802,801,803,801,802,804,806,805,807,805,806,808,810,809,811,809,810,812,814,813,815,813,814,816,818,817,819,816,817,817,818,820,821,820,818,818,822,821,817,823,819,823,821,822,819,823,824,824,823,822,825,827,826,828,825,826,826,827,829,830,829,827,827,831,830,826,832,828,832,830,831,828,832,833,833,832,831,834,836,835,837,836,834,836,838,835,839,836,837,837,840,839,841,835,838,840,841,839,838,842,841,839,841,842,843,845,844,846,845,843,845,847,844,848,845,846,846,849,848,850,844,847,849,850,848,847,851,850,848,850,851,852,854,853,855,853,854,853,856,852,857,853,855,858,857,855,859,852,856,855,859,858,860,859,856,858,859,860,861,863,862,864,862,863,862,865,861,866,862,864,867,866,864,868,861,865,864,868,867,869,868,865,867,868,869,870,872,871,873,871,872,871,874,870,875,871,873,876,875,873,877,870,874,873,877,876,878,877,874,876,877,878,879,881,880,882,880,881,880,883,879,884,880,882,885,884,882,886,879,883,882,886,885,887,886,883,885,886,887,888,890,889,891,889,890,889,891,892,893,892,891,894,896,895,897,895,896,895,897,898,899,898,897,900,902,901,903,901,902,904,906,905,907,905,906,908,910,909,911,909,910,912,914,913,915,913,914,916,918,917,919,917,918,920,917,919,921,917,920,922,924,923,923,925,922,923,926,925,923,927,926,928,930,929,931,929,930,932,934,933,935,933,934,936,938,937,939,937,938,940,942,941,943,941,942,944,946,945,947,945,946,948,945,947,949,945,948,950,952,951,951,953,950,951,954,953,951,955,954,956,958,957,959,957,958,958,960,959,961,959,960,962,964,963,965,963,964,966,963,965,967,963,966,968,970,969,969,971,968,969,972,971,969,973,972,974,976,975,977,975,976,978,980,979,981,979,980,982,984,983,985,983,984,986,988,987,989,987,988,988,990,989,991,989,990,992,994,993,995,993,994,994,996,995,997,995,996,998,1000,999,1001,999,1000,1002,1004,1003,1005,1003,1004,1006,1008,1007,1009,1007,1008,1010,1012,1011,1013,1011,1012,1014,1016,1015,1017,1015,1016,1018,1020,1019,1021,1019,1020,1019,1021,1022,1023,1022,1021,1024,1026,1025,1027,1025,1026,1028,1027,1026,1029,1027,1028,1030,1032,1031,1031,1033,1030,1033,1034,1030,1033,1035,1034,1036,1038,1037,1039,1037,1038,1040,1037,1039,1041,1037,1040,1042,1044,1043,1043,1045,1042,1043,1046,1045,1043,1047,1046,1048,1050,1049,1051,1049,1050,1052,1049,1051,1053,1049,1052,1054,1056,1055,1055,1057,1054,1055,1058,1057,1055,1059,1058,1060,1062,1061,1061,1062,1063,1063,1064,1061,1063,1062,1065,1062,1066,1065,1064,1067,1061,1067,1065,1066,1061,1067,1068,1066,1068,1067,1069,1071,1070,1072,1070,1071,1073,1075,1074,1076,1074,1075,1075,1077,1076,1078,1076,1077,1079,1081,1080,1082,1080,1081,1083,1085,1084,1084,1085,1086,1086,1087,1084,1086,1085,1088,1085,1089,1088,1087,1090,1084,1090,1088,1089,1084,1090,1091,1089,1091,1090,1092,1094,1093,1095,1093,1094,1096,1098,1097,1099,1097,1098,1100,1099,1098,1101,1100,1098,1102,1104,1103,1103,1105,1102,1105,1106,1102,1106,1107,1102,1108,1110,1109,1111,1109,1110,1110,1112,1111,1113,1111,1112,1114,1116,1115,1115,1116,1117,1117,1118,1115,1117,1116,1119,1116,1120,1119,1118,1121,1115,1121,1119,1120,1115,1121,1122,1120,1122,1121,1123,1125,1124,1126,1124,1125,1127,1129,1128,1130,1128,1129,1131,1133,1132,1134,1132,1133,1133,1135,1134,1136,1134,1135,1137,1139,1138,1140,1138,1139,1141,1143,1142,1144,1142,1143,1145,1147,1146,1146,1147,1148,1148,1149,1146,1148,1147,1150,1147,1151,1150,1149,1152,1146,1152,1150,1151,1146,1152,1153,1151,1153,1152,1154,1156,1155,1155,1156,1157,1157,1158,1155,1157,1156,1159,1156,1160,1159,1158,1161,1155,1161,1159,1160,1155,1161,1162,1160,1162,1161,1163,1165,1164,1166,1164,1165,1167,1169,1168,1170,1168,1169,1171,1173,1172,1174,1172,1173,1175,1174,1173,1176,1175,1173,1177,1179,1178,1178,1180,1177,1180,1181,1177,1181,1182,1177,1183,1185,1184,1184,1185,1186,1186,1187,1184,1186,1185,1188,1185,1189,1188,1187,1190,1184,1190,1188,1189,1184,1190,1191,1189,1191,1190,1192,1194,1193,1195,1193,1194,1196,1193,1195,1197,1196,1195,1198,1200,1199,1199,1201,1198,1199,1202,1201,1202,1203,1201,1204,1206,1205,1207,1205,1206,1208,1210,1209,1211,1209,1210,1212,1214,1213,1215,1213,1214,1216,1218,1217,1219,1217,1218,1220,1222,1221,1223,1221,1222,1221,1223,1224,1225,1224,1223,1226,1228,1227,1229,1227,1228,1227,1229,1230,1231,1230,1229,1232,1234,1233,1235,1233,1234,1236,1238,1237,1239,1237,1238,1240,1242,1241,1243,1241,1242,1244,1246,1245,1247,1245,1246,1248,1250,1249,1251,1249,1250,1252,1251,1250,1253,1252,1250,1254,1256,1255,1255,1257,1254,1257,1258,1254,1258,1259,1254,1260,1262,1261,1263,1261,1262,1261,1263,1264,1265,1264,1263,1266,1268,1267,1269,1267,1268,1270,1269,1268,1271,1270,1268,1272,1274,1273,1273,1275,1272,1275,1276,1272,1276,1277,1272,1278,1280,1279,1281,1279,1280,1282,1281,1280,1283,1282,1280,1284,1286,1285,1285,1287,1284,1287,1288,1284,1288,1289,1284,1290,1292,1291,1293,1291,1292,1294,1296,1295,1297,1295,1296,1298,1300,1299,1301,1299,1300,1302,1304,1303,1305,1303,1304,1303,1306,1302,1307,1303,1305,1308,1302,1306,1309,1307,1305,1309,1308,1306,1305,1310,1309,1310,1308,1309,1311,1313,1312,1314,1311,1312,1312,1315,1314,1314,1315,1316,1315,1317,1316,1313,1316,1317,1312,1313,1318,1317,1319,1313,1319,1318,1313,1320,1322,1321,1323,1320,1321,1324,1321,1322,1321,1325,1323,1326,1321,1324,1327,1323,1325,1328,1326,1324,1328,1327,1325,1324,1327,1328,1329,1331,1330,1332,1329,1330,1333,1330,1331,1330,1334,1332,1335,1330,1333,1336,1332,1334,1337,1335,1333,1337,1336,1334,1333,1336,1337,1338,1340,1339,1341,1338,1339,1339,1342,1341,1341,1342,1343,1342,1344,1343,1340,1343,1344,1339,1340,1345,1344,1346,1340,1346,1345,1340,1347,1349,1348,1350,1348,1349,1348,1351,1347,1352,1348,1350,1353,1347,1351,1354,1352,1350,1355,1353,1351,1355,1352,1354,1354,1353,1355,1356,1358,1357,1359,1356,1357,1357,1358,1360,1357,1361,1359,1362,1360,1358,1361,1363,1359,1358,1364,1362,1359,1363,1364,1363,1362,1364,1365,1367,1366,1368,1365,1366,1366,1367,1369,1366,1370,1368,1371,1369,1367,1370,1372,1368,1367,1373,1371,1368,1372,1373,1372,1371,1373,1374,1376,1375,1377,1375,1376,1375,1378,1374,1379,1375,1377,1380,1374,1378,1381,1379,1377,1382,1380,1378,1382,1379,1381,1381,1380,1382,1383,1385,1384,1386,1384,1385,1384,1387,1383,1388,1384,1386,1389,1383,1387,1390,1388,1386,1390,1389,1387,1386,1391,1390,1391,1389,1390,1392,1394,1393,1395,1392,1393,1396,1393,1394,1393,1397,1395,1398,1393,1396,1399,1395,1397,1400,1398,1396,1400,1399,1397,1396,1399,1400,1401,1403,1402,1404,1401,1402,1405,1402,1403,1402,1406,1404,1407,1402,1405,1408,1404,1406,1409,1407,1405,1409,1408,1406,1405,1408,1409,1410,1412,1411,1413,1411,1412,1411,1414,1410,1415,1411,1413,1416,1410,1414,1417,1415,1413,1418,1416,1414,1418,1415,1417,1417,1416,1418,1419,1421,1420,1422,1420,1421,1420,1423,1419,1424,1420,1422,1425,1419,1423,1426,1424,1422,1427,1425,1423,1427,1424,1426,1426,1425,1427,1428,1430,1429,1431,1429,1430,1429,1432,1428,1433,1429,1431,1434,1428,1432,1435,1433,1431,1435,1434,1432,1431,1436,1435,1436,1434,1435,1437,1439,1438,1440,1438,1439,1438,1441,1437,1442,1438,1440,1443,1437,1441,1444,1442,1440,1445,1443,1441,1445,1442,1444,1444,1443,1445,1446,1448,1447,1449,1447,1448,1447,1450,1446,1451,1447,1449,1452,1446,1450,1453,1451,1449,1454,1452,1450,1454,1451,1453,1453,1452,1454,1455,1457,1456,1458,1456,1457,1456,1459,1455,1460,1456,1458,1461,1455,1459,1462,1460,1458,1462,1461,1459,1458,1463,1462,1463,1461,1462 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *956 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 7178, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9150943,0.6063219,0.4359647 + P: "DiffuseColor", "Color", "", "A",0.9150943,0.6063219,0.4359647 + } + } + + Material: 7180, "Material::hay", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9490196,0.854902,0.6313726 + P: "DiffuseColor", "Color", "", "A",0.9490196,0.854902,0.6313726 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh windmill, Model::RootNode + C: "OO",5274111767230171103,0 + + ;Geometry::, Model::Mesh windmill + C: "OO",5120646951126964387,5274111767230171103 + + ;Material::wood, Model::Mesh windmill + C: "OO",7178,5274111767230171103 + + ;Material::hay, Model::Mesh windmill + C: "OO",7180,5274111767230171103 + +} diff --git a/assets/models/kenney_fantasy-town-kit/Models/FBX format/windmill.fbx.import b/assets/models/kenney_fantasy-town-kit/Models/FBX format/windmill.fbx.import new file mode 100644 index 0000000..3992c77 --- /dev/null +++ b/assets/models/kenney_fantasy-town-kit/Models/FBX format/windmill.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://75u06c3e5g46" +path="res://.godot/imported/windmill.fbx-33938364d4bb440e278cdb62215ff4e0.scn" + +[deps] + +source_file="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/windmill.fbx" +dest_files=["res://.godot/imported/windmill.fbx-33938364d4bb440e278cdb62215ff4e0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/License.txt b/assets/models/kenney_nature-kit/License.txt new file mode 100644 index 0000000..c4b04c9 --- /dev/null +++ b/assets/models/kenney_nature-kit/License.txt @@ -0,0 +1,24 @@ + + + Nature Kit (2.1) + + Created/distributed by Kenney (www.kenney.nl) + Creation date: 29-04-2020 01:02 + + ------------------------------ + + License: (Creative Commons Zero, CC0) + http://creativecommons.org/publicdomain/zero/1.0/ + + This content is free to use in personal, educational and commercial projects. + + Support us by crediting Kenney or www.kenney.nl (this is not mandatory) + + ------------------------------ + + Donate: http://support.kenney.nl + Request: http://request.kenney.nl + Patreon: http://patreon.com/kenney/ + + Follow on Twitter for updates: + http://twitter.com/KenneyNL diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bed.fbx new file mode 100644 index 0000000..0252be2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bed.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 9 + Millisecond: 745 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5111023658489397188, "Model::bed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5347515632128696726, "Geometry::", "Mesh" { + Vertices: *1272 { + a: 1.120956,2.368389,-1.871477,-1.120956,2.368389,-1.871477,1.02007,2.737389,-1.932362,-1.02007,2.737389,-1.932362,1.60146,2.551604,-1.110475,-1.60146,2.551604,-1.110475,1.60146,2.594592,-1.152874,-1.60146,2.594592,-1.152874,1.60146,2.594592,-1.152874,-1.60146,2.551604,-1.110475,1.60146,2.551604,-1.110475,-1.60146,2.594592,-1.152874,1.120956,2.368389,-3.224477,1.120956,2.368389,-1.871477,1.02007,2.737389,-3.163592,1.02007,2.737389,-1.932362,1.60146,2.639979,-1.183688,-1.60146,2.639979,-1.183688,1.60146,2.68699,-1.202389,-1.60146,2.68699,-1.202389,1.60146,2.68699,-1.202389,-1.60146,2.639979,-1.183688,1.60146,2.639979,-1.183688,-1.60146,2.68699,-1.202389,1.02007,2.737389,-1.932362,-1.02007,2.737389,-1.932362,1.02007,2.737389,-3.163592,-1.02007,2.737389,-3.163592,-1.120956,2.368389,-3.224477,-1.02007,2.737389,-3.163592,-1.120956,2.368389,-1.871477,-1.02007,2.737389,-1.932362,-1.120956,2.368389,-3.224477,1.120956,2.368389,-3.224477,-1.02007,2.737389,-3.163592,1.02007,2.737389,-3.163592,1.60146,2.594592,-1.152874,-1.60146,2.594592,-1.152874,1.60146,2.639979,-1.183688,-1.60146,2.639979,-1.183688,1.60146,2.639979,-1.183688,-1.60146,2.594592,-1.152874,1.60146,2.594592,-1.152874,-1.60146,2.639979,-1.183688,1.60146,2.417481,-0.8422297,-1.60146,2.417481,-0.8422297,1.60146,2.44411,-0.9219366,-1.60146,2.44411,-0.9219365,1.60146,2.44411,-0.9219366,-1.60146,2.417481,-0.8422297,1.60146,2.417481,-0.8422297,-1.60146,2.44411,-0.9219365,1.60146,2.475713,-0.9940099,-1.60146,2.475713,-0.9940099,1.60146,2.51175,-1.057216,-1.60146,2.51175,-1.057216,1.60146,2.51175,-1.057216,-1.60146,2.475713,-0.9940099,1.60146,2.475713,-0.9940099,-1.60146,2.51175,-1.057216,1.60146,2.396281,-0.7562532,-1.60146,2.396281,-0.7562531,1.60146,2.417481,-0.8422297,-1.60146,2.417481,-0.8422297,1.60146,2.417481,-0.8422297,-1.60146,2.396281,-0.7562531,1.60146,2.396281,-0.7562532,-1.60146,2.417481,-0.8422297,1.60146,2.368389,-0.4758002,-1.60146,2.368389,-0.4758002,1.60146,2.371524,-0.5714575,-1.60146,2.371524,-0.5714574,1.60146,2.371524,-0.5714575,-1.60146,2.368389,-0.4758002,1.60146,2.368389,-0.4758002,-1.60146,2.371524,-0.5714574,1.120956,2.092623,3.768278,-1.120956,2.092623,3.768278,1.120956,2.368389,3.768278,-1.120956,2.368389,3.768278,1.60146,2.51175,-1.057216,-1.60146,2.51175,-1.057216,1.60146,2.551604,-1.110475,-1.60146,2.551604,-1.110475,1.60146,2.551604,-1.110475,-1.60146,2.51175,-1.057216,1.60146,2.51175,-1.057216,-1.60146,2.551604,-1.110475,1.60146,2.368389,3.287774,1.60146,2.092623,3.287774,1.120956,2.368389,3.768278,1.120956,2.092623,3.768278,1.60146,2.368389,-0.4758002,1.60146,2.092623,-0.4758002,1.60146,2.368389,3.287774,1.60146,2.092623,3.287774,1.60146,2.368389,3.287774,1.120956,2.368389,3.768278,1.60146,2.368389,-0.4758002,-1.60146,2.368389,-0.4758002,-1.120956,2.368389,3.768278,-1.60146,2.368389,3.287774,1.60146,2.380874,-0.6654781,-1.60146,2.380874,-0.6654781,1.60146,2.396281,-0.7562532,-1.60146,2.396281,-0.7562531,1.60146,2.396281,-0.7562532,-1.60146,2.380874,-0.6654781,1.60146,2.380874,-0.6654781,-1.60146,2.396281,-0.7562531,1.60146,2.68699,-1.202389,-1.60146,2.68699,-1.202389,1.60146,2.734818,-1.208659,-1.60146,2.734818,-1.208659,1.60146,2.734818,-1.208659,-1.60146,2.68699,-1.202389,1.60146,2.68699,-1.202389,-1.60146,2.734818,-1.208659,-1.60146,2.092623,-0.4758002,-1.60146,2.368389,-0.4758002,-1.60146,2.092623,3.287774,-1.60146,2.368389,3.287774,1.60146,2.371524,-0.5714575,-1.60146,2.371524,-0.5714574,1.60146,2.380874,-0.6654781,-1.60146,2.380874,-0.6654781,1.60146,2.380874,-0.6654781,-1.60146,2.371524,-0.5714574,1.60146,2.371524,-0.5714575,-1.60146,2.380874,-0.6654781,1.60146,2.44411,-0.9219366,-1.60146,2.44411,-0.9219365,1.60146,2.475713,-0.9940099,-1.60146,2.475713,-0.9940099,1.60146,2.475713,-0.9940099,-1.60146,2.44411,-0.9219365,1.60146,2.44411,-0.9219366,-1.60146,2.475713,-0.9940099,-1.120956,2.092623,3.768278,-1.60146,2.092623,3.287774,-1.120956,2.368389,3.768278,-1.60146,2.368389,3.287774,1.60146,1.816857,2.955044,1.60146,1.816857,1.60146,1.60146,1.816857,3.287774,1.120956,1.816857,3.768278,1.60146,1.816857,1.02951,1.60146,1.816857,-1.02951,1.60146,1.816857,-1.60146,1.60146,1.816857,-2.891747,1.120956,1.816857,-3.704981,1.60146,1.816857,-3.224477,-1.120956,1.816857,3.768278,-1.120956,1.816857,-3.70498,-1.60146,1.816857,3.287774,-1.60146,1.816857,-3.224477,-1.60146,1.816857,1.02951,-1.60146,1.816857,1.60146,-1.60146,1.816857,-1.60146,-1.60146,1.816857,-1.02951,-1.120956,1.816857,-3.70498,-1.120956,2.368389,-3.70498,-1.60146,1.816857,-3.224477,-1.60146,2.368389,-3.224477,1.60146,1.816857,3.287774,1.120956,1.816857,3.768278,1.60146,1.816857,-3.224477,1.60146,2.368389,-3.224477,1.120956,1.816857,-3.704981,1.120956,2.368389,-3.704981,-1.120956,1.816857,3.768278,-1.60146,1.816857,3.287774,-1.120956,1.816857,-3.70498,1.120956,1.816857,-3.704981,-1.120956,2.368389,-3.70498,1.120956,2.368389,-3.704981,-1.60146,1.816857,-1.02951,-1.60146,1.816857,1.02951,-1.60146,1.816857,1.60146,-1.60146,1.816857,3.287774,-1.60146,1.816857,-1.60146,-1.60146,2.368389,-3.224477,-1.60146,1.816857,-3.224477,1.60146,2.368389,-3.224477,1.60146,1.816857,-3.224477,1.60146,1.816857,-2.891747,1.60146,1.816857,-1.60146,1.60146,1.816857,-1.02951,1.60146,1.816857,1.02951,1.60146,1.816857,1.60146,1.60146,1.816857,2.955044,1.60146,1.816857,3.287774,1.120956,1.816857,3.768278,-1.120956,1.816857,3.768278,1.60146,2.368389,-3.224477,1.120956,2.368389,-1.871477,1.120956,2.368389,-3.704981,1.120956,2.368389,-3.224477,-1.120956,2.368389,-3.224477,-1.120956,2.368389,-3.70498,-1.120956,2.368389,-1.871477,-1.60146,2.368389,-3.224477,0.2738165,0.813866,-2.891747,0.2738166,0.8138661,2.955044,0.2738165,1.002991,-2.891747,0.2738166,1.002991,2.955044,1.747183,1.50718,2.955044,1.747183,1.50718,3.287774,1.60146,1.816857,2.955044,1.60146,1.816857,3.287774,0.07286154,0.7193038,3.287774,0.07286154,0.7193038,2.955044,-1.455737,1.007771E-09,3.287774,-1.455737,2.015542E-09,2.955044,0.2738166,0.8138661,2.955044,0.2738165,0.813866,-2.891747,-0.1280935,0.8138661,2.955044,-0.1280936,0.813866,-2.891747,1.747183,0.3096771,3.287774,0.4747717,0.9084284,3.287774,1.747183,0.3096771,2.955044,0.4747717,0.9084284,2.955044,-1.455737,1.00777E-09,-3.224477,-1.60146,0.3096771,-3.224477,-1.455737,-1.071587E-15,-2.891747,-1.60146,0.3096771,-2.891747,-0.1280936,0.813866,-2.891747,-0.1280936,1.002991,-2.891747,-0.1280935,0.8138661,2.955044,-0.1280935,1.002991,2.955044,1.60146,-1.071587E-15,-2.891747,0.07286145,0.7193038,-2.891747,1.747183,0.3096771,-2.891747,0.2738165,0.813866,-2.891747,0.4747716,0.9084284,-2.891747,0.2738165,1.002991,-2.891747,1.747183,1.50718,-2.891747,-0.1280936,1.002991,-2.891747,0.07286145,1.097553,-2.891747,1.60146,1.816857,-2.891747,-0.1280936,0.813866,-2.891747,-1.60146,0.3096771,-2.891747,-1.455737,-1.071587E-15,-2.891747,-0.3290487,0.9084284,-2.891747,-1.60146,1.50718,-2.891747,-1.455737,1.816857,-2.891747,0.2738166,0.8138661,3.751905,-0.1280935,0.8138661,3.751905,0.2738166,1.002991,3.751905,-0.1280935,1.002991,3.751905,0.2738166,1.002991,3.751905,-0.1280935,1.002991,3.751905,0.2738166,1.002991,3.287774,-0.1280935,1.002991,3.287774,-0.3290486,0.9084284,3.287774,-1.60146,0.3096771,3.287774,-0.3290486,0.9084284,2.955044,-1.60146,0.3096771,2.955044,0.07286145,0.7193038,-2.891747,0.07286143,0.7193038,-3.224477,-1.455737,-1.071587E-15,-2.891747,-1.455737,1.00777E-09,-3.224477,1.747183,1.50718,2.955044,0.4747717,0.9084284,2.955044,1.747183,1.50718,3.287774,0.4747717,0.9084284,3.287774,0.2738166,0.8138661,3.287774,0.2738166,0.8138661,3.751905,0.2738166,1.002991,3.287774,0.2738166,1.002991,3.751905,0.2738166,1.002991,2.955044,-0.1280935,1.002991,2.955044,0.2738165,1.002991,-2.891747,-0.1280936,1.002991,-2.891747,-0.1280935,0.8138661,3.287774,-0.1280935,1.002991,3.287774,-0.1280935,0.8138661,3.751905,-0.1280935,1.002991,3.751905,1.747183,1.50718,-3.224477,0.4747716,0.9084284,-3.224477,1.747183,1.50718,-2.891747,0.4747716,0.9084284,-2.891747,-1.455737,1.816857,-3.224477,-1.455737,1.816857,-2.891747,-1.60146,1.50718,-3.224477,-1.60146,1.50718,-2.891747,1.60146,1.816857,2.955044,1.60146,1.816857,3.287774,0.07286154,1.097553,2.955044,0.07286154,1.097553,3.287774,0.2738165,1.002991,-3.704981,0.2738165,0.813866,-3.704981,0.2738165,1.002991,-3.224477,0.2738165,0.813866,-3.224477,1.747183,0.3096771,-3.224477,1.60146,1.00777E-09,-3.224477,1.747183,0.3096771,-2.891747,1.60146,-1.071587E-15,-2.891747,1.60146,1.816857,-3.224477,1.60146,1.816857,-2.891747,0.07286143,1.097553,-3.224477,0.07286145,1.097553,-2.891747,0.07286145,1.097553,-2.891747,-1.455737,1.816857,-2.891747,0.07286143,1.097553,-3.224477,-1.455737,1.816857,-3.224477,1.747183,0.3096771,-2.891747,0.4747716,0.9084284,-2.891747,1.747183,0.3096771,-3.224477,0.4747716,0.9084284,-3.224477,-1.455737,1.00777E-09,-3.224477,0.07286143,0.7193038,-3.224477,-1.60146,0.3096771,-3.224477,-0.1280936,0.813866,-3.224477,-0.3290487,0.9084284,-3.224477,0.2738165,0.813866,-3.224477,-0.1280936,1.002991,-3.224477,-1.60146,1.50718,-3.224477,0.2738165,1.002991,-3.224477,0.07286143,1.097553,-3.224477,-1.455737,1.816857,-3.224477,1.747183,0.3096771,-3.224477,1.60146,1.00777E-09,-3.224477,0.4747716,0.9084284,-3.224477,1.747183,1.50718,-3.224477,1.60146,1.816857,-3.224477,-0.1280936,0.813866,-3.704981,0.2738165,0.813866,-3.704981,-0.1280936,1.002991,-3.704981,0.2738165,1.002991,-3.704981,1.747183,0.3096771,2.955044,1.60146,2.015542E-09,2.955044,1.747183,0.3096771,3.287774,1.60146,1.007771E-09,3.287774,0.2738165,0.813866,-3.224477,0.2738165,0.813866,-3.704981,-0.1280936,0.813866,-3.224477,-0.1280936,0.813866,-3.704981,1.60146,1.007771E-09,3.287774,1.60146,2.015542E-09,2.955044,0.07286154,0.7193038,3.287774,0.07286154,0.7193038,2.955044,0.07286154,1.097553,3.287774,-1.455737,1.816857,3.287774,0.07286154,1.097553,2.955044,-1.455737,1.816857,2.955044,0.2738165,1.002991,-3.224477,-0.1280936,1.002991,-3.224477,0.2738165,1.002991,-3.704981,-0.1280936,1.002991,-3.704981,0.2738166,0.8138661,3.751905,0.2738166,0.8138661,3.287774,-0.1280935,0.8138661,3.751905,-0.1280935,0.8138661,3.287774,-0.3290487,0.9084284,-2.891747,-1.60146,0.3096771,-2.891747,-0.3290487,0.9084284,-3.224477,-1.60146,0.3096771,-3.224477,1.60146,1.007771E-09,3.287774,0.07286154,0.7193038,3.287774,1.747183,0.3096771,3.287774,0.4747717,0.9084284,3.287774,0.2738166,1.002991,3.287774,0.2738166,0.8138661,3.287774,1.747183,1.50718,3.287774,-0.1280935,1.002991,3.287774,0.07286154,1.097553,3.287774,1.60146,1.816857,3.287774,-0.1280935,0.8138661,3.287774,-0.3290486,0.9084284,3.287774,-1.60146,0.3096771,3.287774,-1.455737,1.007771E-09,3.287774,-1.60146,1.50718,3.287774,-1.455737,1.816857,3.287774,0.2738166,0.8138661,3.287774,0.4747717,0.9084284,3.287774,0.07286154,0.7193038,3.287774,-0.3290487,0.9084284,-2.891747,-0.3290487,0.9084284,-3.224477,-1.60146,1.50718,-2.891747,-1.60146,1.50718,-3.224477,-1.455737,2.015542E-09,2.955044,-1.60146,0.3096771,2.955044,-1.455737,1.007771E-09,3.287774,-1.60146,0.3096771,3.287774,-0.1280936,0.813866,-3.704981,-0.1280936,1.002991,-3.704981,-0.1280936,0.813866,-3.224477,-0.1280936,1.002991,-3.224477,1.747183,1.50718,-3.224477,1.747183,1.50718,-2.891747,1.60146,1.816857,-3.224477,1.60146,1.816857,-2.891747,-1.455737,1.816857,2.955044,-1.455737,1.816857,3.287774,-1.60146,1.50718,2.955044,-1.60146,1.50718,3.287774,-1.455737,2.015542E-09,2.955044,0.07286154,0.7193038,2.955044,-1.60146,0.3096771,2.955044,-0.1280935,0.8138661,2.955044,-0.3290486,0.9084284,2.955044,-0.1280935,1.002991,2.955044,-1.60146,1.50718,2.955044,0.2738166,1.002991,2.955044,0.07286154,1.097553,2.955044,-1.455737,1.816857,2.955044,0.2738166,0.8138661,2.955044,0.4747717,0.9084284,2.955044,1.747183,0.3096771,2.955044,1.60146,2.015542E-09,2.955044,1.747183,1.50718,2.955044,1.60146,1.816857,2.955044,0.2738166,0.8138661,2.955044,0.07286154,0.7193038,2.955044,0.4747717,0.9084284,2.955044,-0.3290486,0.9084284,3.287774,-0.3290486,0.9084284,2.955044,-1.60146,1.50718,3.287774,-1.60146,1.50718,2.955044,1.60146,-1.071587E-15,-2.891747,1.60146,1.00777E-09,-3.224477,0.07286145,0.7193038,-2.891747,0.07286143,0.7193038,-3.224477 + } + PolygonVertexIndex: *804 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,9,11,-9,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,41,43,-41,44,46,-46,47,45,-47,48,50,-50,49,51,-49,52,54,-54,55,53,-55,56,58,-58,57,59,-57,60,62,-62,63,61,-63,64,66,-66,65,67,-65,68,70,-70,71,69,-71,72,74,-74,73,75,-73,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,97,-100,101,100,-100,102,104,-104,105,103,-105,106,108,-108,107,109,-107,110,112,-112,113,111,-113,114,116,-116,115,117,-115,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,127,129,-127,130,132,-132,133,131,-133,134,136,-136,135,137,-135,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,143,-146,147,146,-146,148,147,-146,149,148,-146,145,150,-150,151,149,-151,152,150,-146,153,150,-153,154,153,-153,155,153,-155,156,155,-155,157,156,-155,158,155,-157,159,158,-157,160,162,-162,163,161,-163,89,91,-165,165,164,-92,166,168,-168,169,167,-169,170,138,-172,139,171,-139,172,174,-174,175,173,-175,176,177,-119,120,118,-178,178,120,-178,179,120,-179,118,119,-177,176,119,-181,119,181,-181,182,180,-182,183,92,-185,185,184,-93,186,185,-93,187,186,-93,93,187,-93,188,187,-94,95,188,-94,189,188,-96,190,189,-96,191,190,-96,192,76,-194,77,193,-77,194,196,-196,197,195,-197,198,197,-197,199,198,-197,194,195,-99,99,98,-196,199,99,-199,200,99,-196,198,99,-201,201,99,-200,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,233,-233,235,233,-235,236,235,-235,237,235,-237,238,237,-237,239,238,-237,233,240,-232,240,241,-232,242,231,-242,243,241,-241,237,243,-241,244,243,-238,238,244,-238,245,244,-239,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,313,-313,315,311,-314,316,313,-315,317,316,-315,318,316,-318,319,318,-318,320,319,-318,315,321,-312,322,311,-322,323,321,-316,318,323,-316,324,323,-319,319,324,-319,325,324,-320,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,360,-360,361,359,-361,362,363,-362,364,362,-362,365,362,-365,366,365,-365,367,366,-365,363,368,-360,368,369,-360,365,369,-369,369,370,-360,371,359,-371,372,369,-366,366,372,-366,373,372,-367,374,376,-376,377,379,-379,380,378,-380,381,383,-383,384,382,-384,385,387,-387,388,386,-388,389,391,-391,392,390,-392,393,395,-395,396,394,-396,397,399,-399,400,398,-400,401,400,-400,402,400,-402,403,402,-402,404,402,-404,405,404,-404,406,405,-404,400,407,-399,404,408,-408,408,409,-399,410,398,-410,411,408,-405,405,411,-405,412,411,-406,413,415,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2412 { + a: 0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.7535458,0.6573954,0,0.6345786,0.7728583,0,0.7535458,0.6573954,0,0.6345786,0.7728583,0,0.7535458,0.6573954,0,0.6345786,0.7728583,0,-0.6345786,-0.7728583,0,-0.7535458,-0.6573954,0,-0.7535458,-0.6573954,0,-0.7535458,-0.6573954,0,-0.6345786,-0.7728583,0,-0.6345786,-0.7728583,0.964598,0.2637249,0,0.964598,0.2637249,0,0.964598,0.2637249,0,0.964598,0.2637249,0,0.964598,0.2637249,0,0.964598,0.2637249,0,0,0.4684449,0.8834927,0,0.2517487,0.9677926,0,0.4684449,0.8834927,0,0.2517487,0.9677926,0,0.4684449,0.8834927,0,0.2517487,0.9677926,0,-0.2517487,-0.9677926,0,-0.4684449,-0.8834927,0,-0.4684449,-0.8834927,0,-0.4684449,-0.8834927,0,-0.2517487,-0.9677926,0,-0.2517487,-0.9677926,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.6345786,0.7728583,0,0.4684449,0.8834927,0,0.6345786,0.7728583,0,0.4684449,0.8834927,0,0.6345786,0.7728583,0,0.4684449,0.8834927,0,-0.4684449,-0.8834927,0,-0.6345786,-0.7728583,0,-0.6345786,-0.7728583,0,-0.6345786,-0.7728583,0,-0.4684449,-0.8834927,0,-0.4684449,-0.8834927,0,0.9604756,0.2783642,0,0.933108,0.3595963,0,0.9604756,0.2783642,0,0.933108,0.3595963,0,0.9604756,0.2783642,0,0.933108,0.3595963,0,-0.933108,-0.3595963,0,-0.9604756,-0.2783642,0,-0.9604756,-0.2783642,0,-0.9604756,-0.2783642,0,-0.933108,-0.3595963,0,-0.933108,-0.3595963,0,0.8935042,0.4490548,0,0.8363013,0.5482702,0,0.8935042,0.4490548,0,0.8363013,0.5482702,0,0.8935042,0.4490548,0,0.8363013,0.5482702,0,-0.8363013,-0.5482702,0,-0.8935042,-0.4490548,0,-0.8935042,-0.4490548,0,-0.8935042,-0.4490548,0,-0.8363013,-0.5482702,0,-0.8363013,-0.5482702,0,0.9790736,0.2035061,0,0.9604756,0.2783642,0,0.9790736,0.2035061,0,0.9604756,0.2783642,0,0.9790736,0.2035061,0,0.9604756,0.2783642,0,-0.9604756,-0.2783642,0,-0.9790736,-0.2035061,0,-0.9790736,-0.2035061,0,-0.9790736,-0.2035061,0,-0.9604756,-0.2783642,0,-0.9604756,-0.2783642,0,0.9994635,0.03275415,0,0.9978264,0.06589732,0,0.9994635,0.03275415,0,0.9978264,0.06589732,0,0.9994635,0.03275415,0,0.9978264,0.06589732,0,-0.9978264,-0.06589732,0,-0.9994635,-0.03275415,0,-0.9994635,-0.03275415,0,-0.9994635,-0.03275415,0,-0.9978264,-0.06589732,0,-0.9978264,-0.06589732,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8363013,0.5482702,0,0.7535458,0.6573954,0,0.8363013,0.5482702,0,0.7535458,0.6573954,0,0.8363013,0.5482702,0,0.7535458,0.6573954,0,-0.7535458,-0.6573954,0,-0.8363013,-0.5482702,0,-0.8363013,-0.5482702,0,-0.8363013,-0.5482702,0,-0.7535458,-0.6573954,0,-0.7535458,-0.6573954,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9910851,0.1332302,0,0.9790736,0.2035061,0,0.9910851,0.1332302,0,0.9790736,0.2035061,0,0.9910851,0.1332302,0,0.9790736,0.2035061,0,-0.9790736,-0.2035061,0,-0.9910851,-0.1332302,0,-0.9910851,-0.1332302,0,-0.9910851,-0.1332302,0,-0.9790736,-0.2035061,0,-0.9790736,-0.2035061,0,0.2517487,0.9677926,0,0.129975,0.9915173,0,0.2517487,0.9677926,0,0.129975,0.9915173,0,0.2517487,0.9677926,0,0.129975,0.9915173,0,-0.129975,-0.9915173,0,-0.2517487,-0.9677926,0,-0.2517487,-0.9677926,0,-0.2517487,-0.9677926,0,-0.129975,-0.9915173,0,-0.129975,-0.9915173,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9978264,0.06589732,0,0.9910851,0.1332302,0,0.9978264,0.06589732,0,0.9910851,0.1332302,0,0.9978264,0.06589732,0,0.9910851,0.1332302,0,-0.9910851,-0.1332302,0,-0.9978264,-0.06589732,0,-0.9978264,-0.06589732,0,-0.9978264,-0.06589732,0,-0.9910851,-0.1332302,0,-0.9910851,-0.1332302,0,0.933108,0.3595963,0,0.8935042,0.4490548,0,0.933108,0.3595963,0,0.8935042,0.4490548,0,0.933108,0.3595963,0,0.8935042,0.4490548,0,-0.8935042,-0.4490548,0,-0.933108,-0.3595963,0,-0.933108,-0.3595963,0,-0.933108,-0.3595963,0,-0.8935042,-0.4490548,0,-0.8935042,-0.4490548,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,0.4257793,-0.9048271,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,0.9048271,-0.4257793,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0.4257793,0.9048271,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,-0.4257793,0.9048271,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-0.9048271,-0.4257793,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,-0.9048271,0.4257793,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0,-0.4257793,-0.9048271,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *848 { + a: 4.413213,10.39948,-4.413213,10.39948,4.016024,11.87187,-4.016024,11.87187,6.304961,10.22225,-6.304961,10.22225,6.304961,10.45996,-6.304961,10.45996,6.304961,10.45996,-6.304961,10.22225,6.304961,10.22225,-6.304961,10.45996,12.69479,7.83039,7.368019,7.83039,12.45509,9.336464,7.607723,9.336464,6.304961,11.38009,-6.304961,11.38009,6.304961,11.57928,-6.304961,11.57928,6.304961,11.57928,-6.304961,11.38009,6.304961,11.38009,-6.304961,11.57928,-4.016024,-7.607723,4.016024,-7.607723,-4.016024,-12.45509,4.016024,-12.45509,-12.69479,7.83039,-12.45509,9.336464,-7.368019,7.83039,-7.607723,9.336464,4.413213,7.133276,-4.413213,7.133276,4.016024,8.605674,-4.016024,8.605674,6.304961,11.00073,-6.304961,11.00073,6.304961,11.21671,-6.304961,11.21671,6.304961,11.21671,-6.304961,11.00073,6.304961,11.00073,-6.304961,11.21671,6.304961,6.160876,-6.304961,6.160876,6.304961,6.491732,-6.304961,6.491732,6.304961,6.491732,-6.304961,6.160876,6.304961,6.160876,-6.304961,6.491732,6.304961,8.227284,-6.304961,8.227284,6.304961,8.513733,-6.304961,8.513733,6.304961,8.513733,-6.304961,8.227284,6.304961,8.227284,-6.304961,8.513733,6.304961,5.14936,-6.304961,5.14936,6.304961,5.497988,-6.304961,5.497988,6.304961,5.497988,-6.304961,5.14936,6.304961,5.14936,-6.304961,5.497988,6.304961,2.177635,-6.304961,2.177635,6.304961,2.554441,-6.304961,2.554441,6.304961,2.554441,-6.304961,2.177635,6.304961,2.177635,-6.304961,2.554441,4.413213,8.238672,-4.413213,8.238672,4.413213,9.324366,-4.413213,9.324366,6.304961,9.257194,-6.304961,9.257194,6.304961,9.519078,-6.304961,9.519078,6.304961,9.519078,-6.304961,9.257194,6.304961,9.257194,-6.304961,9.519078,-4.694504,9.324366,-4.694504,8.238672,-7.36984,9.324366,-7.36984,8.238672,1.873229,9.324366,1.873229,8.238672,-12.94399,9.324366,-12.94399,8.238672,-6.304961,12.94399,-4.413213,14.83574,-6.304961,-1.873229,6.304961,-1.873229,4.413213,14.83574,6.30496,12.94399,6.304961,4.15156,-6.304961,4.15156,6.304961,4.514054,-6.304961,4.514054,6.304961,4.514054,-6.304961,4.15156,6.304961,4.15156,-6.304961,4.514054,6.304961,11.10424,-6.304961,11.10424,6.304961,11.29415,-6.304961,11.29415,6.304961,11.29415,-6.304961,11.10424,6.304961,11.10424,-6.304961,11.29415,-1.873229,8.238672,-1.873229,9.324366,12.94399,8.238672,12.94399,9.324366,6.304961,3.162822,-6.304961,3.162822,6.304961,3.534808,-6.304961,3.534808,6.304961,3.534808,-6.304961,3.162822,6.304961,3.162822,-6.304961,3.534808,6.304961,7.188323,-6.304961,7.188323,6.304961,7.498156,-6.304961,7.498156,6.304961,7.498156,-6.304961,7.188323,6.304961,7.188323,-6.304961,7.498156,7.36984,8.238672,4.694504,8.238672,7.36984,9.324366,4.694504,9.324366,6.304961,11.63403,6.304961,6.304961,6.304961,12.94399,4.413213,14.83574,6.304961,4.053189,6.304961,-4.053189,6.304961,-6.304961,6.30496,-11.38483,4.413213,-14.58654,6.30496,-12.69479,-4.413213,14.83574,-4.413213,-14.58654,-6.30496,12.94399,-6.304961,-12.69479,-6.304961,4.053189,-6.304961,6.304961,-6.304961,-6.304961,-6.304961,-4.053189,-7.193627,7.15298,-7.193627,9.324366,-4.518292,7.15298,-4.518292,9.324366,-4.694504,7.15298,-7.36984,7.15298,4.518292,7.15298,4.518292,9.324366,7.193627,7.15298,7.193627,9.324366,7.36984,7.15298,4.694504,7.15298,4.413213,7.15298,-4.413213,7.15298,4.413213,9.324366,-4.413213,9.324366,-4.053189,7.15298,4.053189,7.15298,6.304961,7.15298,12.94399,7.15298,-6.304961,7.15298,-12.69479,9.324366,-12.69479,7.15298,12.69479,9.324366,12.69479,7.15298,11.38483,7.15298,6.304961,7.15298,4.053189,7.15298,-4.053189,7.15298,-6.304961,7.15298,-11.63403,7.15298,-12.94399,7.15298,4.413213,7.15298,-4.413213,7.15298,-6.30496,-12.69479,-4.413213,-7.368019,-4.413213,-14.58654,-4.413213,-12.69479,4.413213,-12.69479,4.413213,-14.58654,4.413213,-7.368019,6.304961,-12.69479,11.38483,3.204197,-11.63403,3.204197,11.38483,3.948782,-11.63403,3.948782,-11.63403,2.440247,-12.94399,2.440247,-11.63403,3.787688,-12.94399,3.787688,-12.94399,1.465322,-11.63403,1.465322,-12.94399,-5.185788,-11.63403,-5.185788,1.078018,11.63403,1.078018,-11.38483,-0.5043052,11.63403,-0.5043055,-11.38483,-12.94399,-5.704899,-12.94399,-0.168489,-11.63403,-5.704899,-11.63403,-0.168489,-12.69479,2.440247,-12.69479,3.787688,-11.38483,2.440247,-11.38483,3.787688,-11.38483,3.204197,-11.38483,3.948782,11.63403,3.204197,11.63403,3.948782,6.304961,-1.147329E-07,0.2868562,2.831905,6.878673,1.219201,1.078018,3.204197,1.86918,3.57649,1.078018,3.948782,6.878673,5.933778,-0.5043054,3.948782,0.2868562,4.321074,6.304961,7.152979,-0.5043054,3.204197,-6.304961,1.219201,-5.731248,-1.147329E-07,-1.295467,3.57649,-6.304961,5.933778,-5.731248,7.152979,1.078018,3.204197,-0.5043054,3.204197,1.078018,3.948782,-0.5043054,3.948782,-1.078018,14.77128,0.5043052,14.77128,-1.078018,12.94399,0.5043052,12.94399,12.94399,0.3506218,12.94399,-5.185788,11.63403,0.3506218,11.63403,-5.185788,11.38483,1.465322,12.69479,1.465322,11.38483,-5.185789,12.69479,-5.185789,-11.63403,8.75049,-11.63403,3.21408,-12.94399,8.75049,-12.94399,3.21408,-12.94399,3.204197,-14.77128,3.204197,-12.94399,3.948782,-14.77128,3.948782,-1.078018,11.63403,0.5043052,11.63403,-1.078018,-11.38483,0.5043055,-11.38483,12.94399,3.204197,12.94399,3.948782,14.77128,3.204197,14.77128,3.948782,12.69479,8.750489,12.69479,3.214079,11.38483,8.750489,11.38483,3.214079,-12.69479,4.031963,-11.38483,4.031963,-12.69479,2.684522,-11.38483,2.684522,11.63403,8.750489,12.94399,8.750489,11.63403,2.09938,12.94399,2.09938,14.58654,3.948782,14.58654,3.204197,12.69479,3.948782,12.69479,3.204197,12.69479,4.031963,12.69479,2.684522,11.38483,4.031963,11.38483,2.684522,-12.69479,8.750489,-11.38483,8.750489,-12.69479,2.099379,-11.38483,2.099379,11.38483,1.580269,11.38483,8.231379,12.69479,1.580269,12.69479,8.231379,11.38483,-5.704899,11.38483,-0.168489,12.69479,-5.704899,12.69479,-0.168489,5.731248,-1.239668E-07,-0.2868562,2.831905,6.304961,1.219201,0.5043054,3.204197,1.295467,3.57649,-1.078018,3.204197,0.5043054,3.948782,6.304961,5.933778,-1.078018,3.948782,-0.2868562,4.321074,5.731248,7.152979,-6.878673,1.219201,-6.304961,-1.239668E-07,-1.86918,3.57649,-6.878673,5.933778,-6.304961,7.152979,0.5043054,3.204197,-1.078018,3.204197,0.5043054,3.948782,-1.078018,3.948782,-11.63403,4.031963,-11.63403,2.684522,-12.94399,4.031963,-12.94399,2.684522,1.078018,-12.69479,1.078018,-14.58654,-0.5043056,-12.69479,-0.5043056,-14.58654,12.94399,-5.704899,11.63403,-5.704899,12.94399,0.9462112,11.63403,0.9462112,-12.94399,1.580269,-12.94399,8.231379,-11.63403,1.580269,-11.63403,8.231379,-1.078018,-12.69479,0.5043056,-12.69479,-1.078018,-14.58654,0.5043056,-14.58654,1.078018,14.77128,1.078018,12.94399,-0.5043052,14.77128,-0.5043052,12.94399,-11.38483,0.3506213,-11.38483,-5.185789,-12.69479,0.3506213,-12.69479,-5.185789,6.304961,1.344135E-07,0.2868563,2.831905,6.878673,1.219201,1.86918,3.57649,1.078018,3.948782,1.078018,3.204198,6.878673,5.933779,-0.5043054,3.948782,0.2868563,4.321075,6.304961,7.15298,-0.5043054,3.204198,-1.295467,3.57649,-6.304961,1.219201,-5.731248,1.344135E-07,-6.304961,5.933779,-5.731248,7.15298,1.078018,3.204198,1.86918,3.57649,0.2868563,2.831905,-11.38483,2.694969,-12.69479,2.694969,-11.38483,8.231379,-12.69479,8.231379,11.63403,2.440247,11.63403,3.787688,12.94399,2.440247,12.94399,3.787688,-14.58654,3.204197,-14.58654,3.948782,-12.69479,3.204197,-12.69479,3.948782,12.69479,2.440247,11.38483,2.440247,12.69479,3.787688,11.38483,3.787688,11.63403,4.031963,12.94399,4.031963,11.63403,2.684522,12.94399,2.684522,5.731248,1.251797E-07,-0.2868563,2.831905,6.304961,1.219201,0.5043054,3.204197,1.295467,3.57649,0.5043054,3.948782,6.304961,5.933779,-1.078018,3.948782,-0.2868563,4.321075,5.731248,7.15298,-1.078018,3.204197,-1.86918,3.57649,-6.878673,1.219201,-6.304961,1.251797E-07,-6.878673,5.933779,-6.304961,7.15298,-1.078018,3.204197,-0.2868563,2.831905,-1.86918,3.57649,12.94399,2.694969,11.63403,2.694969,12.94399,8.231379,11.63403,8.231379,-11.38483,-5.704899,-12.69479,-5.704899,-11.38483,0.9462112,-12.69479,0.9462112 + } + UVIndex: *804 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,9,11,8,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,41,43,40,44,46,45,47,45,46,48,50,49,49,51,48,52,54,53,55,53,54,56,58,57,57,59,56,60,62,61,63,61,62,64,66,65,65,67,64,68,70,69,71,69,70,72,74,73,73,75,72,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,97,99,101,100,99,102,104,103,105,103,104,106,108,107,107,109,106,110,112,111,113,111,112,114,116,115,115,117,114,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,127,129,126,130,132,131,133,131,132,134,136,135,135,137,134,138,140,139,141,139,140,142,144,143,145,143,144,146,143,145,147,146,145,148,147,145,149,148,145,145,150,149,151,149,150,152,150,145,153,150,152,154,153,152,155,153,154,156,155,154,157,156,154,158,155,156,159,158,156,160,162,161,163,161,162,89,91,164,165,164,91,166,168,167,169,167,168,170,138,171,139,171,138,172,174,173,175,173,174,176,177,118,120,118,177,178,120,177,179,120,178,118,119,176,176,119,180,119,181,180,182,180,181,183,92,184,185,184,92,186,185,92,187,186,92,93,187,92,188,187,93,95,188,93,189,188,95,190,189,95,191,190,95,192,76,193,77,193,76,194,196,195,197,195,196,198,197,196,199,198,196,194,195,98,99,98,195,199,99,198,200,99,195,198,99,200,201,99,199,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,233,232,235,233,234,236,235,234,237,235,236,238,237,236,239,238,236,233,240,231,240,241,231,242,231,241,243,241,240,237,243,240,244,243,237,238,244,237,245,244,238,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,313,312,315,311,313,316,313,314,317,316,314,318,316,317,319,318,317,320,319,317,315,321,311,322,311,321,323,321,315,318,323,315,324,323,318,319,324,318,325,324,319,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,354,356,355,357,355,356,358,360,359,361,359,360,362,363,361,364,362,361,365,362,364,366,365,364,367,366,364,363,368,359,368,369,359,365,369,368,369,370,359,371,359,370,372,369,365,366,372,365,373,372,366,374,376,375,377,379,378,380,378,379,381,383,382,384,382,383,385,387,386,388,386,387,389,391,390,392,390,391,393,395,394,396,394,395,397,399,398,400,398,399,401,400,399,402,400,401,403,402,401,404,402,403,405,404,403,406,405,403,400,407,398,404,408,407,408,409,398,410,398,409,411,408,404,405,411,404,412,411,405,413,415,414,416,418,417,419,417,418,420,422,421,423,421,422 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *268 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bed, Model::RootNode + C: "OO",5111023658489397188,0 + + ;Geometry::, Model::Mesh bed + C: "OO",5347515632128696726,5111023658489397188 + + ;Material::leafsDark, Model::Mesh bed + C: "OO",3026,5111023658489397188 + + ;Material::woodBirch, Model::Mesh bed + C: "OO",3050,5111023658489397188 + + ;Material::wood, Model::Mesh bed + C: "OO",3044,5111023658489397188 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bed.fbx.import new file mode 100644 index 0000000..f57bf61 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b7v1x82xq1lw0" +path="res://.godot/imported/bed.fbx-9e4763f8eddc0e233cfaa2901e49ce96.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bed.fbx" +dest_files=["res://.godot/imported/bed.fbx-9e4763f8eddc0e233cfaa2901e49ce96.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bed_floor.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bed_floor.fbx new file mode 100644 index 0000000..a67d6e2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bed_floor.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 9 + Millisecond: 880 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bed_floor.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bed_floor.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4923738286665265073, "Model::bed_floor", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5609874487803352237, "Geometry::", "Mesh" { + Vertices: *645 { + a: 1.60146,-6.091128E-17,3.287774,1.120956,-6.091128E-17,3.768278,1.60146,0.275766,3.287774,1.120956,0.275766,3.768278,-1.60146,-6.091128E-17,-1.02951,-1.60146,0.275766,-0.4758002,-1.60146,-6.091128E-17,1.02951,-1.60146,0.275766,3.287774,-1.60146,-6.091128E-17,1.60146,-1.60146,-6.091128E-17,3.287774,-1.60146,0.551532,-0.4758002,-1.60146,-3.38396E-16,-1.60146,-1.60146,0.551532,-3.224477,-1.60146,-3.38396E-16,-3.224477,1.120956,0.551532,-3.704981,1.120956,0.551532,-3.224477,-1.120956,0.551532,-3.704981,-1.120956,0.551532,-3.224477,-1.60146,0.551532,-3.224477,-1.120956,0.551532,-1.871477,1.60146,0.551532,-0.4758002,1.60146,0.551532,-3.224477,1.120956,0.551532,-1.871477,-1.60146,0.551532,-0.4758002,1.60146,0.551532,-3.224477,1.60146,-3.38396E-16,-3.224477,1.60146,0.551532,-0.4758002,1.60146,-6.091128E-17,-1.60146,1.60146,-6.091128E-17,-1.02951,1.60146,0.275766,-0.4758002,1.60146,-6.091128E-17,1.02951,1.60146,0.275766,3.287774,1.60146,-6.091128E-17,1.60146,1.60146,-6.091128E-17,3.287774,1.120956,0.551532,-3.704981,1.120956,-3.38396E-16,-3.704981,1.60146,0.551532,-3.224477,1.60146,-3.38396E-16,-3.224477,1.120956,-6.091128E-17,3.768278,-1.120956,-6.091128E-17,3.768278,1.120956,0.275766,3.768278,-1.120956,0.275766,3.768278,-1.120956,-3.38396E-16,-3.704981,1.120956,-3.38396E-16,-3.704981,-1.120956,0.551532,-3.704981,1.120956,0.551532,-3.704981,-1.60146,-6.091128E-17,3.287774,-1.60146,0.275766,3.287774,-1.120956,-6.091128E-17,3.768278,-1.120956,0.275766,3.768278,-1.60146,-3.38396E-16,-3.224477,-1.120956,-3.38396E-16,-3.704981,-1.60146,0.551532,-3.224477,-1.120956,0.551532,-3.704981,1.60146,0.6588567,-0.9940099,1.60146,0.6272534,-0.9219365,-1.60146,0.6588567,-0.9940099,-1.60146,0.6272534,-0.9219365,-1.60146,0.6588567,-0.9940099,1.60146,0.6272534,-0.9219365,1.60146,0.6588567,-0.9940099,-1.60146,0.6272534,-0.9219365,1.60146,0.8701329,-1.202389,-1.60146,0.8701329,-1.202389,1.60146,0.9179616,-1.208659,-1.60146,0.9179616,-1.208659,1.60146,0.9179616,-1.208659,-1.60146,0.8701329,-1.202389,1.60146,0.8701329,-1.202389,-1.60146,0.9179616,-1.208659,-1.60146,0.551532,3.287774,1.60146,0.6948934,-1.057216,1.60146,0.6588567,-0.9940099,-1.60146,0.6948934,-1.057216,-1.60146,0.6588567,-0.9940099,-1.60146,0.7347468,-1.110475,1.60146,0.7347468,-1.110475,-1.60146,0.6948934,-1.057216,1.60146,0.6588567,-0.9940099,1.60146,0.6948934,-1.057216,-1.60146,0.6588567,-0.9940099,-1.60146,0.7347468,-1.110475,1.60146,0.7347468,-1.110475,1.02007,0.920532,-3.163592,1.02007,0.920532,-1.932362,-1.02007,0.920532,-3.163592,-1.02007,0.920532,-1.932362,1.120956,0.551532,3.768278,-1.120956,0.551532,3.768278,-1.60146,0.551532,3.287774,-1.120956,0.551532,3.768278,1.60146,0.7777351,-1.152874,-1.60146,0.7777351,-1.152874,1.60146,0.8231226,-1.183688,-1.60146,0.8231226,-1.183688,1.60146,0.8231226,-1.183688,-1.60146,0.7777351,-1.152874,1.60146,0.7777351,-1.152874,-1.60146,0.8231226,-1.183688,1.60146,0.551532,3.287774,1.120956,0.551532,3.768278,1.60146,0.6272534,-0.9219365,1.60146,0.6006242,-0.8422297,-1.60146,0.6272534,-0.9219365,-1.60146,0.6006242,-0.8422297,-1.60146,0.6272534,-0.9219365,1.60146,0.6006242,-0.8422297,1.60146,0.6272534,-0.9219365,-1.60146,0.6006242,-0.8422297,1.120956,0.551532,-3.224477,1.120956,0.551532,-1.871477,1.02007,0.920532,-3.163592,1.02007,0.920532,-1.932362,-1.120956,0.551532,-3.224477,1.120956,0.551532,-3.224477,-1.02007,0.920532,-3.163592,1.02007,0.920532,-3.163592,1.60146,0.7347468,-1.110475,-1.60146,0.7347468,-1.110475,1.60146,0.7777351,-1.152874,-1.60146,0.7777351,-1.152874,1.60146,0.7777351,-1.152874,-1.60146,0.7347468,-1.110475,1.60146,0.7347468,-1.110475,-1.60146,0.7777351,-1.152874,1.60146,0.551532,3.287774,1.120956,0.551532,3.768278,-1.120956,0.551532,3.768278,-1.60146,0.551532,3.287774,1.60146,0.8231226,-1.183688,-1.60146,0.8231226,-1.183688,1.60146,0.8701329,-1.202389,-1.60146,0.8701329,-1.202389,1.60146,0.8701329,-1.202389,-1.60146,0.8231226,-1.183688,1.60146,0.8231226,-1.183688,-1.60146,0.8701329,-1.202389,1.120956,0.551532,-1.871477,-1.120956,0.551532,-1.871477,1.02007,0.920532,-1.932362,-1.02007,0.920532,-1.932362,1.60146,0.5546669,-0.5714575,1.60146,0.551532,-0.4758002,-1.60146,0.5546669,-0.5714575,-1.60146,0.551532,-0.4758002,-1.60146,0.5546669,-0.5714575,1.60146,0.551532,-0.4758002,1.60146,0.5546669,-0.5714575,-1.60146,0.551532,-0.4758002,1.60146,0.5640178,-0.6654781,1.60146,0.5546669,-0.5714575,-1.60146,0.5640178,-0.6654781,-1.60146,0.5546669,-0.5714575,-1.60146,0.5640178,-0.6654781,1.60146,0.5546669,-0.5714575,1.60146,0.5640178,-0.6654781,-1.60146,0.5546669,-0.5714575,1.60146,0.6006242,-0.8422297,1.60146,0.5794247,-0.7562531,-1.60146,0.6006242,-0.8422297,-1.60146,0.5794247,-0.7562531,-1.60146,0.6006242,-0.8422297,1.60146,0.5794247,-0.7562531,1.60146,0.6006242,-0.8422297,-1.60146,0.5794247,-0.7562531,1.60146,0.5794247,-0.7562531,1.60146,0.5640178,-0.6654781,-1.60146,0.5794247,-0.7562531,-1.60146,0.5640178,-0.6654781,-1.60146,0.5794247,-0.7562531,1.60146,0.5640178,-0.6654781,1.60146,0.5794247,-0.7562531,-1.60146,0.5640178,-0.6654781,1.60146,0.551532,3.287774,-1.120956,0.551532,-3.224477,-1.02007,0.920532,-3.163592,-1.120956,0.551532,-1.871477,-1.02007,0.920532,-1.932362,1.60146,-3.38396E-16,-3.224477,1.120956,-3.38396E-16,-3.704981,1.60146,-6.091128E-17,-1.60146,1.60146,-6.091128E-17,-1.02951,1.60146,-6.091128E-17,-1.60146,1.120956,-3.38396E-16,-3.704981,1.60146,-6.091128E-17,1.02951,1.60146,-6.091128E-17,-1.02951,1.120956,-3.38396E-16,-3.704981,1.60146,-6.091128E-17,1.60146,1.60146,-6.091128E-17,1.02951,1.60146,-6.091128E-17,3.287774,1.60146,-6.091128E-17,1.60146,1.120956,-6.091128E-17,3.768278,1.60146,-6.091128E-17,3.287774,1.120956,-3.38396E-16,-3.704981,-1.120956,-3.38396E-16,-3.704981,1.120956,-6.091128E-17,3.768278,1.120956,-3.38396E-16,-3.704981,-1.120956,-6.091128E-17,3.768278,1.120956,-6.091128E-17,3.768278,-1.120956,-3.38396E-16,-3.704981,-1.60146,-3.38396E-16,-3.224477,-1.120956,-6.091128E-17,3.768278,-1.120956,-3.38396E-16,-3.704981,-1.60146,-3.38396E-16,-1.60146,-1.120956,-6.091128E-17,3.768278,-1.60146,-3.38396E-16,-3.224477,-1.60146,-6.091128E-17,3.287774,-1.60146,-3.38396E-16,-1.60146,-1.60146,-6.091128E-17,1.60146,-1.60146,-6.091128E-17,3.287774,-1.60146,-3.38396E-16,-1.60146,-1.60146,-6.091128E-17,-1.02951,-1.60146,-6.091128E-17,1.60146,-1.60146,-6.091128E-17,1.02951,-1.60146,-6.091128E-17,-1.02951 + } + PolygonVertexIndex: *372 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,5,10,-5,4,10,-12,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,17,-17,19,17,-19,15,20,-15,21,14,-21,22,20,-16,23,20,-23,19,23,-23,18,23,-20,24,26,-26,27,25,-27,28,27,-27,29,28,-27,30,28,-30,31,30,-30,32,30,-32,33,32,-32,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,59,61,-59,62,64,-64,65,63,-65,66,68,-68,67,69,-67,5,7,-11,70,10,-8,71,73,-73,74,72,-74,73,71,-76,76,75,-72,77,79,-79,78,80,-78,79,77,-82,81,82,-80,83,85,-85,86,84,-86,40,87,-42,88,41,-88,47,49,-90,90,89,-50,91,93,-93,94,92,-94,95,97,-97,96,98,-96,2,99,-4,100,3,-100,101,103,-103,104,102,-104,105,107,-107,106,108,-106,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,122,124,-122,20,23,-126,126,125,-24,127,126,-24,128,127,-24,129,131,-131,132,130,-132,133,135,-135,134,136,-134,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,146,148,-146,149,151,-151,152,150,-152,153,155,-155,154,156,-154,157,159,-159,160,158,-160,161,163,-163,162,164,-162,165,167,-167,168,166,-168,169,171,-171,170,172,-170,26,173,-30,31,29,-174,174,176,-176,177,175,-177,178,180,-180,181,183,-183,184,186,-186,187,186,-189,189,186,-191,191,193,-193,194,196,-196,197,199,-199,200,202,-202,203,205,-205,206,207,-205,208,210,-210,211,210,-213,213,214,-213 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1116 { + a: 0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0.8935042,0.4490548,0,0.8935042,0.4490548,0,0.933108,0.3595963,0,0.933108,0.3595963,0,0.933108,0.3595963,0,0.8935042,0.4490548,0,-0.8935042,-0.4490548,0,-0.8935042,-0.4490548,0,-0.933108,-0.3595963,0,-0.933108,-0.3595963,0,-0.933108,-0.3595963,0,-0.8935042,-0.4490548,0,0.2517487,0.9677926,0,0.129975,0.9915173,0,0.2517487,0.9677926,0,0.129975,0.9915173,0,0.2517487,0.9677926,0,0.129975,0.9915173,0,-0.129975,-0.9915173,0,-0.2517487,-0.9677926,0,-0.2517487,-0.9677926,0,-0.2517487,-0.9677926,0,-0.129975,-0.9915173,0,-0.129975,-0.9915173,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.8363013,0.5482702,0,0.8363013,0.5482702,0,0.8935042,0.4490548,0,0.8935042,0.4490548,0,0.8935042,0.4490548,0,0.8363013,0.5482702,0,0.8363013,0.5482702,0,0.8363013,0.5482702,0,0.7535458,0.6573954,0,0.7535458,0.6573954,0,0.7535458,0.6573954,0,0.8363013,0.5482702,0,-0.8363013,-0.5482702,0,-0.8363013,-0.5482702,0,-0.8935042,-0.4490548,0,-0.8935042,-0.4490548,0,-0.8935042,-0.4490548,0,-0.8363013,-0.5482702,0,-0.8363013,-0.5482702,0,-0.8363013,-0.5482702,0,-0.7535458,-0.6573954,0,-0.7535458,-0.6573954,0,-0.7535458,-0.6573954,0,-0.8363013,-0.5482702,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,0.6345786,0.7728583,0,0.4684449,0.8834927,0,0.6345786,0.7728583,0,0.4684449,0.8834927,0,0.6345786,0.7728583,0,0.4684449,0.8834927,0,-0.4684449,-0.8834927,0,-0.6345786,-0.7728583,0,-0.6345786,-0.7728583,0,-0.6345786,-0.7728583,0,-0.4684449,-0.8834927,0,-0.4684449,-0.8834927,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,0.933108,0.3595963,0,0.933108,0.3595963,0,0.9604756,0.2783642,0,0.9604756,0.2783642,0,0.9604756,0.2783642,0,0.933108,0.3595963,0,-0.933108,-0.3595963,0,-0.933108,-0.3595963,0,-0.9604756,-0.2783642,0,-0.9604756,-0.2783642,0,-0.9604756,-0.2783642,0,-0.933108,-0.3595963,0.964598,0.2637249,0,0.964598,0.2637249,0,0.964598,0.2637249,0,0.964598,0.2637249,0,0.964598,0.2637249,0,0.964598,0.2637249,0,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.1627988,-0.9866593,0,0.7535458,0.6573954,0,0.6345786,0.7728583,0,0.7535458,0.6573954,0,0.6345786,0.7728583,0,0.7535458,0.6573954,0,0.6345786,0.7728583,0,-0.6345786,-0.7728583,0,-0.7535458,-0.6573954,0,-0.7535458,-0.6573954,0,-0.7535458,-0.6573954,0,-0.6345786,-0.7728583,0,-0.6345786,-0.7728583,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4684449,0.8834927,0,0.2517487,0.9677926,0,0.4684449,0.8834927,0,0.2517487,0.9677926,0,0.4684449,0.8834927,0,0.2517487,0.9677926,0,-0.2517487,-0.9677926,0,-0.4684449,-0.8834927,0,-0.4684449,-0.8834927,0,-0.4684449,-0.8834927,0,-0.2517487,-0.9677926,0,-0.2517487,-0.9677926,0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.1627988,0.9866593,0,0.9978264,0.06589732,0,0.9978264,0.06589732,0,0.9994635,0.03275415,0,0.9994635,0.03275415,0,0.9994635,0.03275415,0,0.9978264,0.06589732,0,-0.9978264,-0.06589732,0,-0.9978264,-0.06589732,0,-0.9994635,-0.03275415,0,-0.9994635,-0.03275415,0,-0.9994635,-0.03275415,0,-0.9978264,-0.06589732,0,0.9910851,0.1332302,0,0.9910851,0.1332302,0,0.9978264,0.06589732,0,0.9978264,0.06589732,0,0.9978264,0.06589732,0,0.9910851,0.1332302,0,-0.9910851,-0.1332302,0,-0.9910851,-0.1332302,0,-0.9978264,-0.06589732,0,-0.9978264,-0.06589732,0,-0.9978264,-0.06589732,0,-0.9910851,-0.1332302,0,0.9604756,0.2783642,0,0.9604756,0.2783642,0,0.9790736,0.2035061,0,0.9790736,0.2035061,0,0.9790736,0.2035061,0,0.9604756,0.2783642,0,-0.9604756,-0.2783642,0,-0.9604756,-0.2783642,0,-0.9790736,-0.2035061,0,-0.9790736,-0.2035061,0,-0.9790736,-0.2035061,0,-0.9604756,-0.2783642,0,0.9790736,0.2035061,0,0.9790736,0.2035061,0,0.9910851,0.1332302,0,0.9910851,0.1332302,0,0.9910851,0.1332302,0,0.9790736,0.2035061,0,-0.9790736,-0.2035061,0,-0.9790736,-0.2035061,0,-0.9910851,-0.1332302,0,-0.9910851,-0.1332302,0,-0.9910851,-0.1332302,0,-0.9790736,-0.2035061,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,-0.964598,0.2637249,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *430 { + a: -4.694504,-2.398082E-16,-7.36984,-2.398082E-16,-4.694504,1.085693,-7.36984,1.085693,-4.053189,-2.398082E-16,-1.873229,1.085693,4.053189,-2.398082E-16,12.94399,1.085693,6.304961,-2.398082E-16,12.94399,-2.398082E-16,-1.873229,2.171386,-6.304961,-1.332268E-15,-12.69479,2.171386,-12.69479,-1.332268E-15,-4.413213,-14.58654,-4.413213,-12.69479,4.413213,-14.58654,4.413213,-12.69479,6.304961,-12.69479,4.413213,-7.368019,-6.304961,-1.873229,-6.304961,-12.69479,-4.413213,-7.368019,6.304961,-1.873229,12.69479,2.171386,12.69479,-1.332268E-15,1.873229,2.171386,6.304961,-2.398082E-16,4.053189,-2.398082E-16,1.873229,1.085693,-4.053189,-2.398082E-16,-12.94399,1.085693,-6.304961,-2.398082E-16,-12.94399,-2.398082E-16,7.193627,2.171386,7.193627,-1.332268E-15,4.518292,2.171386,4.518292,-1.332268E-15,4.413213,-2.398082E-16,-4.413213,-2.398082E-16,4.413213,1.085693,-4.413213,1.085693,4.413213,-1.332268E-15,-4.413213,-1.332268E-15,4.413213,2.171386,-4.413213,2.171386,4.694504,-2.398082E-16,4.694504,1.085693,7.36984,-2.398082E-16,7.36984,1.085693,-4.518292,-1.332268E-15,-7.193627,-1.332268E-15,-4.518292,2.171386,-7.193627,2.171386,6.304961,4.625674,6.304961,4.315841,-6.304961,4.625674,-6.304961,4.315841,-6.304961,4.625674,6.304961,4.315841,6.304961,4.625674,-6.304961,4.315841,6.304961,4.011939,-6.304961,4.011939,6.304961,4.201851,-6.304961,4.201851,6.304961,4.201851,-6.304961,4.011939,6.304961,4.011939,-6.304961,4.201851,12.94399,2.171386,6.304961,4.970895,6.304961,4.684447,-6.304961,4.970895,-6.304961,4.684447,-6.304961,5.233513,6.304961,5.233513,-6.304961,4.970895,6.304961,4.684447,6.304961,4.970895,-6.304961,4.684447,-6.304961,5.233513,6.304961,5.233513,-4.016024,-12.45509,-4.016024,-7.607723,4.016024,-12.45509,4.016024,-7.607723,4.413213,2.171386,-4.413213,2.171386,4.694504,2.171386,7.36984,2.171386,6.304961,5.082742,-6.304961,5.082742,6.304961,5.298723,-6.304961,5.298723,6.304961,5.298723,-6.304961,5.082742,6.304961,5.082742,-6.304961,5.298723,-4.694504,2.171386,-7.36984,2.171386,6.304961,4.225145,6.304961,3.894289,-6.304961,4.225145,-6.304961,3.894289,-6.304961,4.225145,6.304961,3.894289,6.304961,4.225145,-6.304961,3.894289,12.69479,0.9306403,7.368019,0.9306403,12.45509,2.436714,7.607723,2.436714,4.413213,0.0757216,-4.413213,0.0757216,4.016024,1.54812,-4.016024,1.54812,6.304961,5.129543,-6.304961,5.129543,6.304961,5.367257,-6.304961,5.367257,6.304961,5.367257,-6.304961,5.129543,6.304961,5.129543,-6.304961,5.367257,-6.304961,12.94399,-4.413213,14.83574,4.413213,14.83574,6.304961,12.94399,6.304961,4.733739,-6.304961,4.733739,6.304961,4.932928,-6.304961,4.932928,6.304961,4.932928,-6.304961,4.733739,6.304961,4.733739,-6.304961,4.932928,4.413213,3.341923,-4.413213,3.341923,4.016024,4.814321,-4.016024,4.814321,6.304961,2.320152,6.304961,1.943346,-6.304961,2.320152,-6.304961,1.943346,-6.304961,2.320152,6.304961,1.943346,6.304961,2.320152,-6.304961,1.943346,6.304961,2.826892,6.304961,2.454906,-6.304961,2.826892,-6.304961,2.454906,-6.304961,2.826892,6.304961,2.454906,6.304961,2.826892,-6.304961,2.454906,6.304961,3.785547,6.304961,3.436919,-6.304961,3.785547,-6.304961,3.436919,-6.304961,3.785547,6.304961,3.436919,6.304961,3.785547,-6.304961,3.436919,6.304961,3.317117,6.304961,2.954623,-6.304961,3.317117,-6.304961,2.954623,-6.304961,3.317117,6.304961,2.954623,6.304961,3.317117,-6.304961,2.954623,-12.94399,2.171386,-12.69479,0.9306403,-12.45509,2.436714,-7.368019,0.9306403,-7.607723,2.436714,4.518292,-1.332268E-15,4.518292,2.171386,7.193627,-1.332268E-15,4.518292,-1.332268E-15,4.518292,2.171386,7.193627,-1.332268E-15,4.518292,-1.332268E-15,4.518292,2.171386,7.193627,-1.332268E-15,4.518292,-1.332268E-15,4.518292,2.171386,4.518292,-1.332268E-15,4.518292,2.171386,4.518292,-1.332268E-15,4.518292,2.171386,7.193627,-1.332268E-15,4.518292,-1.332268E-15,4.518292,2.171386,7.193627,-1.332268E-15,4.518292,-1.332268E-15,4.518292,2.171386,7.193627,-1.332268E-15,4.518292,-1.332268E-15,4.518292,2.171386,7.193627,-1.332268E-15,4.518292,-1.332268E-15,4.518292,2.171386,7.193627,-1.332268E-15,4.518292,-1.332268E-15,7.193627,-1.332268E-15,4.518292,-1.332268E-15,4.518292,2.171386,7.193627,-1.332268E-15,4.518292,-1.332268E-15,4.518292,2.171386,4.518292,-1.332268E-15,7.193627,-1.332268E-15 + } + UVIndex: *372 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,5,10,4,4,10,11,10,12,11,13,11,12,14,16,15,17,15,16,18,17,16,19,17,18,15,20,14,21,14,20,22,20,15,23,20,22,19,23,22,18,23,19,24,26,25,27,25,26,28,27,26,29,28,26,30,28,29,31,30,29,32,30,31,33,32,31,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,59,61,58,62,64,63,65,63,64,66,68,67,67,69,66,5,7,10,70,10,7,71,73,72,74,72,73,73,71,75,76,75,71,77,79,78,78,80,77,79,77,81,81,82,79,83,85,84,86,84,85,40,87,41,88,41,87,47,49,89,90,89,49,91,93,92,94,92,93,95,97,96,96,98,95,2,99,3,100,3,99,101,103,102,104,102,103,105,107,106,106,108,105,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,122,124,121,20,23,125,126,125,23,127,126,23,128,127,23,129,131,130,132,130,131,133,135,134,134,136,133,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,146,148,145,149,151,150,152,150,151,153,155,154,154,156,153,157,159,158,160,158,159,161,163,162,162,164,161,165,167,166,168,166,167,169,171,170,170,172,169,26,173,29,31,29,173,174,176,175,177,175,176,178,180,179,181,183,182,184,186,185,187,186,188,189,186,190,191,193,192,194,196,195,197,199,198,200,202,201,203,205,204,206,207,204,208,210,209,211,210,212,213,214,212 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *124 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bed_floor, Model::RootNode + C: "OO",4923738286665265073,0 + + ;Geometry::, Model::Mesh bed_floor + C: "OO",5609874487803352237,4923738286665265073 + + ;Material::woodBirch, Model::Mesh bed_floor + C: "OO",3050,4923738286665265073 + + ;Material::leafsDark, Model::Mesh bed_floor + C: "OO",3026,4923738286665265073 + + ;Material::_defaultMat, Model::Mesh bed_floor + C: "OO",3004,4923738286665265073 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bed_floor.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bed_floor.fbx.import new file mode 100644 index 0000000..cb2d621 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bed_floor.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dub7o6bgvdwph" +path="res://.godot/imported/bed_floor.fbx-ae1f92af9f20c4879343caedac4bbcd2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bed_floor.fbx" +dest_files=["res://.godot/imported/bed_floor.fbx-ae1f92af9f20c4879343caedac4bbcd2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stone.fbx new file mode 100644 index 0000000..72a0b43 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 9 + Millisecond: 973 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_center_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_center_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5721769275506099398, "Model::bridge_center_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5190505659413540021, "Geometry::", "Mesh" { + Vertices: *240 { + a: -5,2,4,5,2,4,-5,3,4,5,3,4,-5,2,-4,-5,3,-4,5,2,-4,5,3,-4,-5,2.5,-5,5,2.5,-5,-5,3,-5,5,3,-5,-5,2.868522E-15,-4.5,-5,1.5,-4.5,-5,1.434261E-15,4.5,-5,2,-4,-5,2.5,-4.5,-5,2,4,-5,2.5,4.5,-5,3,4,-5,3,5,-5,1.5,4.5,-5,2.5,5,-5,3,-4,-5,2.5,-5,-5,3,-5,5,3,-5,5,2.5,-5,5,3,-4,5,2.5,-4.5,5,1.5,-4.5,5,2.693614E-13,-4.5,5,2,-4,5,2.679271E-13,4.5,5,2,4,5,2.5,4.5,5,3,4,5,3,5,5,2.5,5,5,1.5,4.5,-5,2.5,5,-5,3,5,5,2.5,5,5,3,5,5,2.679271E-13,4.5,5,2.693614E-13,-4.5,-5,1.434261E-15,4.5,-5,2.868522E-15,-4.5,-5,1.5,4.5,-5,2.5,4.5,5,1.5,4.5,5,2.5,4.5,-5,1.5,-4.5,5,1.5,-4.5,-5,2.5,-4.5,5,2.5,-4.5,5,2.5,5,5,2.5,4.5,-5,2.5,5,-5,2.5,4.5,5,2.5,-4.5,5,2.5,-5,-5,2.5,-4.5,-5,2.5,-5,5,3,-4,-5,3,-4,5,3,-5,-5,3,-5,5,3,4,5,3,5,-5,3,4,-5,3,5,5,2,-4,5,2,4,-5,2,-4,-5,2,4,-5,1.434261E-15,4.5,5,2.679271E-13,4.5,-5,2.868522E-15,-4.5,5,2.693614E-13,-4.5 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,13,-16,17,15,-15,14,18,-18,17,18,-20,20,19,-19,21,18,-15,22,20,-19,15,23,-17,16,23,-25,25,24,-24,26,28,-28,29,27,-29,30,29,-29,31,30,-29,32,31,-29,31,32,-34,34,33,-33,35,33,-35,34,36,-36,37,35,-37,38,35,-38,39,33,-36,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,77,-49,50,48,-78,78,52,-80,53,79,-53 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *160 { + a: 19.68504,7.874016,-19.68504,7.874016,19.68504,11.81102,-19.68504,11.81102,-19.68504,7.874016,-19.68504,11.81102,19.68504,7.874016,19.68504,11.81102,19.68504,9.84252,-19.68504,9.84252,19.68504,11.81102,-19.68504,11.81102,-17.71654,5.373974E-13,-17.71654,5.905512,17.71654,5.317507E-13,-15.74803,7.874016,-17.71654,9.84252,15.74803,7.874016,17.71654,9.84252,15.74803,11.81102,19.68504,11.81102,17.71654,5.905512,19.68504,9.84252,-15.74803,11.81102,-19.68504,9.84252,-19.68504,11.81102,19.68504,11.81102,19.68504,9.84252,15.74803,11.81102,17.71654,9.84252,17.71654,5.905512,17.71654,5.343738E-13,15.74803,7.874016,-17.71654,5.287271E-13,-15.74803,7.874016,-17.71654,9.84252,-15.74803,11.81102,-19.68504,11.81102,-19.68504,9.84252,-17.71654,5.905512,-19.68504,9.84252,-19.68504,11.81102,19.68504,9.84252,19.68504,11.81102,19.68504,17.71654,19.68504,-17.71654,-19.68504,17.71654,-19.68504,-17.71654,-19.68504,5.905512,-19.68504,9.84252,19.68504,5.905512,19.68504,9.84252,19.68504,5.905512,-19.68504,5.905512,19.68504,9.84252,-19.68504,9.84252,19.68504,19.68504,19.68504,17.71654,-19.68504,19.68504,-19.68504,17.71654,19.68504,-17.71654,19.68504,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,-19.68504,-15.74803,19.68504,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,-19.68504,15.74803,-19.68504,19.68504,19.68504,15.74803,19.68504,19.68504,-19.68504,-15.74803,-19.68504,15.74803,19.68504,-15.74803,19.68504,15.74803,-19.68504,5.646697E-15,19.68504,1.054831E-12,19.68504,1.129339E-14,-19.68504,1.060478E-12 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,13,15,17,15,14,14,18,17,17,18,19,20,19,18,21,18,14,22,20,18,15,23,16,16,23,24,25,24,23,26,28,27,29,27,28,30,29,28,31,30,28,32,31,28,31,32,33,34,33,32,35,33,34,34,36,35,37,35,36,38,35,37,39,33,35,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,77,48,50,48,77,78,52,79,53,79,52 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_center_stone, Model::RootNode + C: "OO",5721769275506099398,0 + + ;Geometry::, Model::Mesh bridge_center_stone + C: "OO",5190505659413540021,5721769275506099398 + + ;Material::stoneDark, Model::Mesh bridge_center_stone + C: "OO",3040,5721769275506099398 + + ;Material::stone, Model::Mesh bridge_center_stone + C: "OO",3038,5721769275506099398 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stone.fbx.import new file mode 100644 index 0000000..03df1d9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b6ou08iocmsmj" +path="res://.godot/imported/bridge_center_stone.fbx-21462917b42032941a0d2c6235281689.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stone.fbx" +dest_files=["res://.godot/imported/bridge_center_stone.fbx-21462917b42032941a0d2c6235281689.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stoneRound.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stoneRound.fbx new file mode 100644 index 0000000..c4fb88b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stoneRound.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 10 + Millisecond: 63 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_center_stoneRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_center_stoneRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4743798336964364152, "Model::bridge_center_stoneRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4646253536589547036, "Geometry::", "Mesh" { + Vertices: *240 { + a: -5,2.75,4,5,2.75,4,-5,3.5,4,5,3.5,4,5,3.5,-5,5,2.5,-5,5,3.5,-4,5,2.5,-4.5,5,1.5,-4.5,5,2.75,-4,5,2,-4,5,1.5,4.5,5,2,4,5,2.5,4.5,5,3.5,5,5,2.75,4,5,3.5,4,5,2.5,5,5,3.5,-4,-5,3.5,-4,5,3.5,-5,-5,3.5,-5,5,2.5,-4.5,5,2.5,-5,-5,2.5,-4.5,-5,2.5,-5,5,3.5,4,5,3.5,5,-5,3.5,4,-5,3.5,5,5,2.5,4.5,-5,2.5,4.5,5,2.5,5,-5,2.5,5,-5,2.5,-4.5,-5,2,-4,-5,1.5,-4.5,-5,1.5,4.5,-5,2,4,-5,2.5,4.5,-5,3.5,5,-5,2.75,4,-5,3.5,4,-5,2.5,5,-5,3.5,-4,-5,2.5,-5,-5,3.5,-5,-5,2.75,-4,-5,2.5,5,-5,3.5,5,5,2.5,5,5,3.5,5,5,1.5,4.5,5,1.5,-4.5,-5,1.5,4.5,-5,1.5,-4.5,5,2.75,-4,-5,2.75,-4,5,3.5,-4,-5,3.5,-4,-5,2.5,-5,5,2.5,-5,-5,3.5,-5,5,3.5,-5,5,2,-4,5,2,4,-5,2,-4,-5,2,4,-5,2,-4,5,2,-4,-5,1.5,4.5,-5,2.5,4.5,5,1.5,4.5,5,2.5,4.5,-5,2,4,5,2,4,-5,1.5,-4.5,5,1.5,-4.5,-5,2.5,-4.5,5,2.5,-4.5 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,8,-10,8,10,-12,12,11,-11,13,11,-13,13,12,-15,12,15,-15,16,14,-16,17,13,-15,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,35,-38,37,39,-39,39,40,-39,38,40,-42,42,41,-41,43,40,-40,35,44,-35,34,44,-46,46,45,-45,47,44,-36,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,69,-58,56,57,-70,70,72,-72,73,71,-73,74,0,-76,1,75,-1,76,78,-78,79,77,-79 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *160 { + a: 19.68504,10.82677,-19.68504,10.82677,19.68504,13.77953,-19.68504,13.77953,19.68504,13.77953,19.68504,9.84252,15.74803,13.77953,17.71654,9.84252,17.71654,5.905512,15.74803,10.82677,15.74803,7.874016,-17.71654,5.905512,-15.74803,7.874016,-17.71654,9.84252,-19.68504,13.77953,-15.74803,10.82677,-15.74803,13.77953,-19.68504,9.84252,-19.68504,-15.74803,19.68504,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,19.68504,-17.71654,19.68504,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,-19.68504,15.74803,-19.68504,19.68504,19.68504,15.74803,19.68504,19.68504,19.68504,17.71654,-19.68504,17.71654,19.68504,19.68504,-19.68504,19.68504,-17.71654,9.84252,-15.74803,7.874016,-17.71654,5.905512,17.71654,5.905512,15.74803,7.874016,17.71654,9.84252,19.68504,13.77953,15.74803,10.82677,15.74803,13.77953,19.68504,9.84252,-15.74803,13.77953,-19.68504,9.84252,-19.68504,13.77953,-15.74803,10.82677,-19.68504,9.84252,-19.68504,13.77953,19.68504,9.84252,19.68504,13.77953,19.68504,17.71654,19.68504,-17.71654,-19.68504,17.71654,-19.68504,-17.71654,19.68504,10.82677,-19.68504,10.82677,19.68504,13.77953,-19.68504,13.77953,19.68504,9.84252,-19.68504,9.84252,19.68504,13.77953,-19.68504,13.77953,-19.68504,-15.74803,-19.68504,15.74803,19.68504,-15.74803,19.68504,15.74803,-19.68504,7.874016,19.68504,7.874016,-19.68504,5.905512,-19.68504,9.84252,19.68504,5.905512,19.68504,9.84252,19.68504,7.874016,-19.68504,7.874016,19.68504,5.905512,-19.68504,5.905512,19.68504,9.84252,-19.68504,9.84252 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,8,9,8,10,11,12,11,10,13,11,12,13,12,14,12,15,14,16,14,15,17,13,14,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,35,37,37,39,38,39,40,38,38,40,41,42,41,40,43,40,39,35,44,34,34,44,45,46,45,44,47,44,35,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,69,57,56,57,69,70,72,71,73,71,72,74,0,75,1,75,0,76,78,77,79,77,78 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_center_stoneRound, Model::RootNode + C: "OO",4743798336964364152,0 + + ;Geometry::, Model::Mesh bridge_center_stoneRound + C: "OO",4646253536589547036,4743798336964364152 + + ;Material::stoneDark, Model::Mesh bridge_center_stoneRound + C: "OO",3040,4743798336964364152 + + ;Material::stone, Model::Mesh bridge_center_stoneRound + C: "OO",3038,4743798336964364152 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stoneRound.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stoneRound.fbx.import new file mode 100644 index 0000000..ea627d7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stoneRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c1657jtfrwgx" +path="res://.godot/imported/bridge_center_stoneRound.fbx-fdae078d2a2d0b7e6f5f11151cf2f455.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_center_stoneRound.fbx" +dest_files=["res://.godot/imported/bridge_center_stoneRound.fbx-fdae078d2a2d0b7e6f5f11151cf2f455.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_wood.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_wood.fbx new file mode 100644 index 0000000..d8bcd77 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_wood.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 10 + Millisecond: 173 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_center_wood.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_center_wood.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4695956715562462345, "Model::bridge_center_wood", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4750444668955332455, "Geometry::", "Mesh" { + Vertices: *240 { + a: -5,1.5,4.5,-5,2.5,4.5,5,1.5,4.5,5,2.5,4.5,-5,2,-4,-5,3,-4,5,2,-4,5,3,-4,5,2.5,5,5,2.5,4.5,-5,2.5,5,-5,2.5,4.5,-5,2.5,-5,5,2.5,-5,-5,3,-5,5,3,-5,-5,1.5,-4.5,5,1.5,-4.5,-5,2.5,-4.5,5,2.5,-4.5,5,3,-5,5,2.5,-5,5,3,-4,5,2.5,-4.5,5,1.5,-4.5,5,2.679271E-13,-4.5,5,2,-4,5,2.664928E-13,4.5,5,2,4,5,2.5,4.5,5,3,4,5,3,5,5,2.5,5,5,1.5,4.5,-5,1.434261E-15,-4.5,-5,1.5,-4.5,-5,0,4.5,-5,2,-4,-5,2.5,-4.5,-5,2,4,-5,2.5,4.5,-5,3,4,-5,3,5,-5,1.5,4.5,-5,2.5,5,-5,3,-4,-5,2.5,-5,-5,3,-5,5,2.664928E-13,4.5,5,2.679271E-13,-4.5,-5,0,4.5,-5,1.434261E-15,-4.5,-5,2.5,5,-5,3,5,5,2.5,5,5,3,5,5,3,-4,-5,3,-4,5,3,-5,-5,3,-5,-5,2,4,5,2,4,-5,3,4,5,3,4,5,3,4,5,3,5,-5,3,4,-5,3,5,5,2.5,-4.5,5,2.5,-5,-5,2.5,-4.5,-5,2.5,-5,-5,1.434261E-15,-4.5,5,2.679271E-13,-4.5,-5,0,4.5,5,2.664928E-13,4.5,5,2,-4,5,2,4,-5,2,-4,-5,2,4 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,24,-23,26,25,-23,25,26,-28,28,27,-27,29,27,-29,28,30,-30,31,29,-31,32,29,-32,33,27,-30,34,36,-36,37,35,-37,38,35,-38,39,37,-37,36,40,-40,39,40,-42,42,41,-41,43,40,-37,44,42,-41,37,45,-39,38,45,-47,47,46,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,16,-74,17,73,-17,74,75,-1,2,0,-76,76,78,-78,79,77,-79 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *160 { + a: -19.68504,5.905512,-19.68504,9.84252,19.68504,5.905512,19.68504,9.84252,-19.68504,7.874016,-19.68504,11.81102,19.68504,7.874016,19.68504,11.81102,19.68504,19.68504,19.68504,17.71654,-19.68504,19.68504,-19.68504,17.71654,19.68504,9.84252,-19.68504,9.84252,19.68504,11.81102,-19.68504,11.81102,19.68504,5.905512,-19.68504,5.905512,19.68504,9.84252,-19.68504,9.84252,19.68504,11.81102,19.68504,9.84252,15.74803,11.81102,17.71654,9.84252,17.71654,5.905512,17.71654,5.287271E-13,15.74803,7.874016,-17.71654,5.230804E-13,-15.74803,7.874016,-17.71654,9.84252,-15.74803,11.81102,-19.68504,11.81102,-19.68504,9.84252,-17.71654,5.905512,-17.71654,5.317507E-13,-17.71654,5.905512,17.71654,5.26104E-13,-15.74803,7.874016,-17.71654,9.84252,15.74803,7.874016,17.71654,9.84252,15.74803,11.81102,19.68504,11.81102,17.71654,5.905512,19.68504,9.84252,-15.74803,11.81102,-19.68504,9.84252,-19.68504,11.81102,19.68504,17.71654,19.68504,-17.71654,-19.68504,17.71654,-19.68504,-17.71654,-19.68504,9.84252,-19.68504,11.81102,19.68504,9.84252,19.68504,11.81102,-19.68504,-15.74803,19.68504,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,19.68504,7.874016,-19.68504,7.874016,19.68504,11.81102,-19.68504,11.81102,-19.68504,15.74803,-19.68504,19.68504,19.68504,15.74803,19.68504,19.68504,19.68504,-17.71654,19.68504,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,19.68504,5.646697E-15,-19.68504,1.054831E-12,-19.68504,-1.846616E-30,19.68504,1.049184E-12,-19.68504,-15.74803,-19.68504,15.74803,19.68504,-15.74803,19.68504,15.74803 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,24,22,26,25,22,25,26,27,28,27,26,29,27,28,28,30,29,31,29,30,32,29,31,33,27,29,34,36,35,37,35,36,38,35,37,39,37,36,36,40,39,39,40,41,42,41,40,43,40,36,44,42,40,37,45,38,38,45,46,47,46,45,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,16,73,17,73,16,74,75,0,2,0,75,76,78,77,79,77,78 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_center_wood, Model::RootNode + C: "OO",4695956715562462345,0 + + ;Geometry::, Model::Mesh bridge_center_wood + C: "OO",4750444668955332455,4695956715562462345 + + ;Material::woodBark, Model::Mesh bridge_center_wood + C: "OO",3046,4695956715562462345 + + ;Material::wood, Model::Mesh bridge_center_wood + C: "OO",3044,4695956715562462345 + + ;Material::stone, Model::Mesh bridge_center_wood + C: "OO",3038,4695956715562462345 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_wood.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_wood.fbx.import new file mode 100644 index 0000000..255a599 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_wood.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bqsftf2n4hpv3" +path="res://.godot/imported/bridge_center_wood.fbx-675b8ecbdad440af154de46278c0ad18.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_center_wood.fbx" +dest_files=["res://.godot/imported/bridge_center_wood.fbx-675b8ecbdad440af154de46278c0ad18.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_woodRound.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_woodRound.fbx new file mode 100644 index 0000000..99015cd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_woodRound.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 10 + Millisecond: 299 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_center_woodRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_center_woodRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4756073877155768754, "Model::bridge_center_woodRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5090675113909876093, "Geometry::", "Mesh" { + Vertices: *264 { + a: -5,2.5,-4.5,-5,2,-4,-5,1.5,-4.5,-5,1.5,4.5,-5,2,-3,-5,2,3,-5,2,4,-5,2.5,4.5,-5,3.5,5,-5,2.75,4,-5,3.5,4,-5,2.5,5,-5,3.5,-4,-5,2.5,-5,-5,3.5,-5,-5,2.75,-4,-5,2.75,4,5,2.75,4,-5,3.5,4,5,3.5,4,5,2.5,4.5,-5,2.5,4.5,5,2.5,5,-5,2.5,5,-5,2.5,5,-5,3.5,5,5,2.5,5,5,3.5,5,-5,2.5,-5,5,2.5,-5,-5,3.5,-5,5,3.5,-5,5,3.5,-4,-5,3.5,-4,5,3.5,-5,-5,3.5,-5,5,1.5,4.5,5,1.5,-4.5,-5,1.5,4.5,-5,1.5,-4.5,5,2.75,-4,-5,2.75,-4,5,3.5,-4,-5,3.5,-4,5,2.5,-4.5,5,2.5,-5,-5,2.5,-4.5,-5,2.5,-5,5,3.5,-5,5,2.5,-5,5,3.5,-4,5,2.5,-4.5,5,1.5,-4.5,5,2.75,-4,5,2,-4,5,1.5,4.5,5,2,-3,5,2,3,5,2,4,5,2.5,4.5,5,3.5,5,5,2.75,4,5,3.5,4,5,2.5,5,5,3.5,4,5,3.5,5,-5,3.5,4,-5,3.5,5,-5,2,-4,5,2,-4,-5,1.5,4.5,-5,2.5,4.5,5,1.5,4.5,5,2.5,4.5,-5,1.5,-4.5,5,1.5,-4.5,-5,2.5,-4.5,5,2.5,-4.5,-5,2,4,5,2,4,5,2,-4,5,2,-3,-5,2,-4,-5,2,-3,5,2,3,5,2,4,-5,2,3,-5,2,4 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,5,-4,3,7,-7,7,8,-7,6,8,-10,10,9,-9,11,8,-8,1,12,-1,0,12,-14,14,13,-13,15,12,-2,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,53,52,-51,54,52,-54,52,54,-56,56,55,-55,57,55,-57,58,55,-58,59,55,-59,59,58,-61,58,61,-61,62,60,-62,63,59,-61,64,66,-66,67,65,-67,68,69,-42,40,41,-70,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,16,-80,17,79,-17,80,82,-82,83,81,-83,84,86,-86,87,85,-87,81,83,-85,86,84,-84 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *176 { + a: -17.71654,9.84252,-15.74803,7.874016,-17.71654,5.905512,17.71654,5.905512,-11.81102,7.874016,11.81102,7.874016,15.74803,7.874016,17.71654,9.84252,19.68504,13.77953,15.74803,10.82677,15.74803,13.77953,19.68504,9.84252,-15.74803,13.77953,-19.68504,9.84252,-19.68504,13.77953,-15.74803,10.82677,19.68504,10.82677,-19.68504,10.82677,19.68504,13.77953,-19.68504,13.77953,19.68504,17.71654,-19.68504,17.71654,19.68504,19.68504,-19.68504,19.68504,-19.68504,9.84252,-19.68504,13.77953,19.68504,9.84252,19.68504,13.77953,19.68504,9.84252,-19.68504,9.84252,19.68504,13.77953,-19.68504,13.77953,-19.68504,-15.74803,19.68504,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,19.68504,17.71654,19.68504,-17.71654,-19.68504,17.71654,-19.68504,-17.71654,19.68504,10.82677,-19.68504,10.82677,19.68504,13.77953,-19.68504,13.77953,19.68504,-17.71654,19.68504,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,19.68504,13.77953,19.68504,9.84252,15.74803,13.77953,17.71654,9.84252,17.71654,5.905512,15.74803,10.82677,15.74803,7.874016,-17.71654,5.905512,11.81102,7.874016,-11.81102,7.874016,-15.74803,7.874016,-17.71654,9.84252,-19.68504,13.77953,-15.74803,10.82677,-15.74803,13.77953,-19.68504,9.84252,-19.68504,15.74803,-19.68504,19.68504,19.68504,15.74803,19.68504,19.68504,-19.68504,7.874016,19.68504,7.874016,-19.68504,5.905512,-19.68504,9.84252,19.68504,5.905512,19.68504,9.84252,19.68504,5.905512,-19.68504,5.905512,19.68504,9.84252,-19.68504,9.84252,19.68504,7.874016,-19.68504,7.874016,-19.68504,-15.74803,-19.68504,-11.81102,19.68504,-15.74803,19.68504,-11.81102,-19.68504,11.81102,-19.68504,15.74803,19.68504,11.81102,19.68504,15.74803 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,5,3,3,7,6,7,8,6,6,8,9,10,9,8,11,8,7,1,12,0,0,12,13,14,13,12,15,12,1,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,53,52,50,54,52,53,52,54,55,56,55,54,57,55,56,58,55,57,59,55,58,59,58,60,58,61,60,62,60,61,63,59,60,64,66,65,67,65,66,68,69,41,40,41,69,70,72,71,73,71,72,74,76,75,77,75,76,78,16,79,17,79,16,80,82,81,83,81,82,84,86,85,87,85,86,81,83,84,86,84,83 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_center_woodRound, Model::RootNode + C: "OO",4756073877155768754,0 + + ;Geometry::, Model::Mesh bridge_center_woodRound + C: "OO",5090675113909876093,4756073877155768754 + + ;Material::woodBark, Model::Mesh bridge_center_woodRound + C: "OO",3046,4756073877155768754 + + ;Material::wood, Model::Mesh bridge_center_woodRound + C: "OO",3044,4756073877155768754 + + ;Material::stone, Model::Mesh bridge_center_woodRound + C: "OO",3038,4756073877155768754 + + ;Material::stoneDark, Model::Mesh bridge_center_woodRound + C: "OO",3040,4756073877155768754 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_woodRound.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_woodRound.fbx.import new file mode 100644 index 0000000..3dbc1ce --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_center_woodRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://7vsx0odmhx6a" +path="res://.godot/imported/bridge_center_woodRound.fbx-06a9db4ccdb0f38d8dbbae2f4bb985f8.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_center_woodRound.fbx" +dest_files=["res://.godot/imported/bridge_center_woodRound.fbx-06a9db4ccdb0f38d8dbbae2f4bb985f8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stone.fbx new file mode 100644 index 0000000..3fc3f19 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 10 + Millisecond: 402 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_side_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_side_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5459223571424291110, "Model::bridge_side_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4704121256275988475, "Geometry::", "Mesh" { + Vertices: *720 { + a: 5,3.5,-5,5,0,-5,5,3.5,-4,5,0.5,-4,5,1,-4,5,0,5,5,0.5,4,5,1,4,5,3.5,5,5,3.5,4,4,3,-4,-5,3,-4,4,3,-5,-5,3,-5,4,0,-5,4,2.5,-5,4,0,-4.5,4,2.5,-4.5,4,1.5,-4.5,-5,1.5,4.5,-5,2.5,4.5,4,1.5,4.5,4,2.5,4.5,4,2.5,-4.5,4,2.5,-5,-5,2.5,-4.5,-5,2.5,-5,4,3,-5,4,3.5,-5,4,3,-4,4,3.5,-4,-5,-6.693218E-16,-4.5,-5,1.5,-4.5,-5,-2.103583E-15,4.5,-5,2,-4,-5,2.5,-4.5,-5,2,4,-5,2.5,4.5,-5,3,4,-5,3,5,-5,1.5,4.5,-5,2.5,5,-5,3,-4,-5,2.5,-5,-5,3,-5,4,2.5,5,4,2.5,4.5,-5,2.5,5,-5,2.5,4.5,5.2,3.5,3.8,5,3.5,5,5.2,3.5,5.2,3.8,3.5,5.2,4,3.5,5,4,3.5,4,5,3.5,4,3.8,3.5,3.8,4,0,4.5,4,1.5,4.5,4,0,5,4,2.5,4.5,4,2.5,5,-5,2.5,-5,4,2.5,-5,-5,3,-5,4,3,-5,5,3.5,-5,5,0,-5,4,0,-5,4,3.5,-5,4,1.5,-4,4,1,-4,4,1.5,4,4,1,4,4,3,4,4,3,5,-5,3,4,-5,3,5,4,1,-4,4,1.5,-4,5,1,-4,4.2,1.5,-4,5,3.5,-4,4.2,2,-4,4,3,-4,-5,2,-4,4,3.5,-4,-5,3,-4,4,3,4,4,3.5,4,4,3,5,4,3.5,5,4,0,4.5,4,0,-4.5,-5,-2.103583E-15,4.5,-5,-6.693218E-16,-4.5,5,0,-5,4,0,5,5,0,5,4,0,-5,4,1,4,5,1,4,4,1.5,4,4.2,1.5,4,5,3.5,4,4.2,2,4,4,3,4,-5,2,4,-5,3,4,4,3.5,4,5,0,5,4,0,5,5,3.5,5,4,2.5,5,4,3,5,-5,3,5,4,3.5,5,-5,2.5,5,4,1.5,-4.5,4,2.5,-4.5,-5,1.5,-4.5,-5,2.5,-4.5,5.2,3.5,-5.2,5,3.5,-4,5.2,3.5,-3.8,3.8,3.5,-3.8,4,3.5,-4,4,3.5,-5,5,3.5,-5,3.8,3.5,-5.2,4.2,2,-4,4.2,2,4,-5,2,-4,-5,2,4,4.2,2,-4,4.2,1.5,-4,4.2,2,4,4.2,1.5,4,-5,-6.693218E-16,-4.5,4,0,-4.5,5,0.5,-4,5.2,0.5,-4,5,1,-4,5.2,1,-4,5.2,1,-4,5.2,1,4,5,1,-4,5,1,4,4,1,-4,4,1,4,-5,-2.103583E-15,4.5,4,0,4.5,5.2,0.5,4,5.2,0.5,-4,5,0.5,4,5,0.5,-4,5.2,1,-4,5.2,0.5,-4,5.2,1,4,5.2,0.5,4,5.2,3.5,-3.8,3.8,3.5,-3.8,5.2,3.75,-3.8,3.8,3.75,-3.8,3.8,3.5,-5.2,5.2,3.5,-5.2,3.8,3.75,-5.2,5.2,3.75,-5.2,3.8,3.5,-5.2,3.8,3.75,-5.2,3.8,3.5,-3.8,3.8,3.75,-3.8,4.2,1.5,4,4.2,1.5,-4,4,1.5,4,4,1.5,-4,5.2,0.5,4,5,0.5,4,5.2,1,4,5,1,4,5.2,3.75,-3.8,3.8,3.75,-3.8,5.025,4,-3.975,3.975,4,-3.975,5.2,3.75,-5.2,5.2,3.5,-5.2,5.2,3.75,-3.8,5.2,3.5,-3.8,3.8,3.5,3.8,3.8,3.75,3.8,3.8,3.5,5.2,3.8,3.75,5.2,5.2,3.75,3.8,5.2,3.75,5.2,5.025,4,3.975,5.025,4,5.025,3.8,3.75,3.8,3.975,4,3.975,3.8,3.75,5.2,3.975,4,5.025,5.2,3.5,5.2,3.8,3.5,5.2,5.2,3.75,5.2,3.8,3.75,5.2,5.025,4,-3.975,3.975,4,-3.975,5.025,4,-5.025,3.975,4,-5.025,3.8,3.75,-5.2,5.2,3.75,-5.2,3.975,4,-5.025,5.025,4,-5.025,3.8,3.75,-5.2,3.975,4,-5.025,3.8,3.75,-3.8,3.975,4,-3.975,3.8,3.5,3.8,5.2,3.5,3.8,3.8,3.75,3.8,5.2,3.75,3.8,5.2,3.75,-5.2,5.2,3.75,-3.8,5.025,4,-5.025,5.025,4,-3.975,5.2,3.75,5.2,3.8,3.75,5.2,5.025,4,5.025,3.975,4,5.025,5.2,3.75,3.8,5.2,3.5,3.8,5.2,3.75,5.2,5.2,3.5,5.2,3.8,3.75,3.8,5.2,3.75,3.8,3.975,4,3.975,5.025,4,3.975,5.025,4,5.025,3.975,4,5.025,5.025,4,3.975,3.975,4,3.975 + } + PolygonVertexIndex: *456 { + a: 0,2,-2,3,1,-3,4,3,-3,1,3,-6,6,5,-4,7,5,-7,8,5,-8,9,8,-8,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,17,-17,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,32,-35,36,34,-34,33,37,-37,36,37,-39,39,38,-38,40,37,-34,41,39,-38,34,42,-36,35,42,-44,44,43,-43,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,50,-53,54,53,-53,50,55,-50,56,49,-56,54,56,-56,52,56,-55,57,59,-59,60,58,-60,61,60,-60,62,64,-64,65,63,-65,65,66,-64,66,67,-64,68,63,-68,69,66,-66,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,80,82,-82,83,81,-83,84,83,-83,85,83,-85,86,84,-83,84,87,-86,88,90,-90,91,89,-91,92,94,-94,95,93,-95,93,96,-93,92,96,-98,98,97,-97,99,96,-94,100,102,-102,103,101,-103,101,103,-105,105,104,-104,106,104,-106,107,106,-106,108,106,-108,109,104,-107,110,112,-112,113,111,-113,114,113,-113,115,113,-115,116,114,-113,113,115,-118,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,123,-126,127,126,-126,123,128,-123,129,122,-129,127,129,-129,125,129,-128,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,120,-140,118,139,-121,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,147,-147,149,147,-149,150,151,-20,21,19,-152,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1368 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *480 { + a: 19.68504,13.77953,19.68504,1.471389E-13,15.74803,13.77953,15.74803,1.968504,15.74803,3.937008,-19.68504,1.471389E-13,-15.74803,1.968504,-15.74803,3.937008,-19.68504,13.77953,-15.74803,13.77953,-15.74803,-15.74803,19.68504,-15.74803,-15.74803,-19.68504,19.68504,-19.68504,-19.68504,2.258679E-14,-19.68504,9.84252,-17.71654,2.258679E-14,-17.71654,9.84252,-17.71654,5.905512,-19.68504,5.905512,-19.68504,9.84252,15.74803,5.905512,15.74803,9.84252,15.74803,-17.71654,15.74803,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,-19.68504,11.81102,-19.68504,13.77953,-15.74803,11.81102,-15.74803,13.77953,-17.71654,5.21957E-13,-17.71654,5.905512,17.71654,5.163104E-13,-15.74803,7.874016,-17.71654,9.84252,15.74803,7.874016,17.71654,9.84252,15.74803,11.81102,19.68504,11.81102,17.71654,5.905512,19.68504,9.84252,-15.74803,11.81102,-19.68504,9.84252,-19.68504,11.81102,15.74803,19.68504,15.74803,17.71654,-19.68504,19.68504,-19.68504,17.71654,20.47244,14.96063,19.68504,19.68504,20.47244,20.47244,14.96063,20.47244,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,14.96063,14.96063,17.71654,2.1081E-14,17.71654,5.905512,19.68504,2.1081E-14,17.71654,9.84252,19.68504,9.84252,19.68504,9.84252,-15.74803,9.84252,19.68504,11.81102,-15.74803,11.81102,-19.68504,13.77953,-19.68504,2.812402E-14,-15.74803,2.812402E-14,-15.74803,13.77953,15.74803,5.905512,15.74803,3.937008,-15.74803,5.905512,-15.74803,3.937008,-15.74803,15.74803,-15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,15.74803,3.937008,15.74803,5.905512,19.68504,3.937008,16.53543,5.905512,19.68504,13.77953,16.53543,7.874016,15.74803,11.81102,-19.68504,7.874016,15.74803,13.77953,-19.68504,11.81102,15.74803,11.81102,15.74803,13.77953,19.68504,11.81102,19.68504,13.77953,15.74803,17.71654,15.74803,-17.71654,-19.68504,17.71654,-19.68504,-17.71654,19.68504,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,13.77953,-16.53543,7.874016,-15.74803,11.81102,19.68504,7.874016,19.68504,11.81102,-15.74803,13.77953,19.68504,-3.950994E-12,15.74803,-3.950994E-12,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-19.68504,11.81102,15.74803,13.77953,-19.68504,9.84252,-15.74803,5.905512,-15.74803,9.84252,19.68504,5.905512,19.68504,9.84252,20.47244,-20.47244,19.68504,-15.74803,20.47244,-14.96063,14.96063,-14.96063,15.74803,-15.74803,15.74803,-19.68504,19.68504,-19.68504,14.96063,-20.47244,-16.53543,-15.74803,-16.53543,15.74803,19.68504,-15.74803,19.68504,15.74803,15.74803,7.874016,15.74803,5.905512,-15.74803,7.874016,-15.74803,5.905512,19.68504,-2.635125E-15,-15.74803,4.991882E-27,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,-20.47244,-15.74803,-20.47244,15.74803,-19.68504,-15.74803,-19.68504,15.74803,-15.74803,-15.74803,-15.74803,15.74803,-19.68504,-8.281822E-15,15.74803,5.029749E-31,20.47244,15.74803,20.47244,-15.74803,19.68504,15.74803,19.68504,-15.74803,15.74803,3.937008,15.74803,1.968504,-15.74803,3.937008,-15.74803,1.968504,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,-20.47244,13.77953,-20.47244,14.76378,-14.96063,13.77953,-14.96063,14.76378,16.53543,15.74803,16.53543,-15.74803,15.74803,15.74803,15.74803,-15.74803,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,20.47244,20.67432,14.96063,20.67432,19.78346,21.87575,15.64961,21.87575,20.47244,14.76378,20.47244,13.77953,14.96063,14.76378,14.96063,13.77953,14.96063,13.77953,14.96063,14.76378,20.47244,13.77953,20.47244,14.76378,-14.96063,0.3547855,-20.47244,0.3547855,-15.64961,1.556218,-19.78346,1.556218,14.96063,20.67432,15.64961,21.87575,20.47244,20.67432,19.78346,21.87575,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,-19.78346,-15.64961,-15.64961,-15.64961,-19.78346,-19.78346,-15.64961,-19.78346,-14.96063,0.3547855,-20.47244,0.3547855,-15.64961,1.556218,-19.78346,1.556218,-20.47244,20.67432,-19.78346,21.87575,-14.96063,20.67432,-15.64961,21.87575,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,20.47244,0.3547855,14.96063,0.3547855,19.78346,1.556218,15.64961,1.556218,20.47244,0.3547855,14.96063,0.3547855,19.78346,1.556218,15.64961,1.556218,-14.96063,14.76378,-14.96063,13.77953,-20.47244,14.76378,-20.47244,13.77953,-14.96063,20.67432,-20.47244,20.67432,-15.64961,21.87575,-19.78346,21.87575,-19.78346,19.78346,-15.64961,19.78346,-19.78346,15.64961,-15.64961,15.64961 + } + UVIndex: *456 { + a: 0,2,1,3,1,2,4,3,2,1,3,5,6,5,3,7,5,6,8,5,7,9,8,7,10,12,11,13,11,12,14,16,15,17,15,16,18,17,16,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,32,34,36,34,33,33,37,36,36,37,38,39,38,37,40,37,33,41,39,37,34,42,35,35,42,43,44,43,42,45,47,46,48,46,47,49,51,50,52,50,51,53,50,52,54,53,52,50,55,49,56,49,55,54,56,55,52,56,54,57,59,58,60,58,59,61,60,59,62,64,63,65,63,64,65,66,63,66,67,63,68,63,67,69,66,65,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,80,82,81,83,81,82,84,83,82,85,83,84,86,84,82,84,87,85,88,90,89,91,89,90,92,94,93,95,93,94,93,96,92,92,96,97,98,97,96,99,96,93,100,102,101,103,101,102,101,103,104,105,104,103,106,104,105,107,106,105,108,106,107,109,104,106,110,112,111,113,111,112,114,113,112,115,113,114,116,114,112,113,115,117,118,120,119,121,119,120,122,124,123,125,123,124,126,123,125,127,126,125,123,128,122,129,122,128,127,129,128,125,129,127,130,132,131,133,131,132,134,136,135,137,135,136,138,120,139,118,139,120,140,142,141,143,141,142,144,146,145,147,145,146,148,147,146,149,147,148,150,151,19,21,19,151,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *152 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_side_stone, Model::RootNode + C: "OO",5459223571424291110,0 + + ;Geometry::, Model::Mesh bridge_side_stone + C: "OO",4704121256275988475,5459223571424291110 + + ;Material::stoneDark, Model::Mesh bridge_side_stone + C: "OO",3040,5459223571424291110 + + ;Material::stone, Model::Mesh bridge_side_stone + C: "OO",3038,5459223571424291110 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stone.fbx.import new file mode 100644 index 0000000..c5e28b4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://drj7vxjs5s405" +path="res://.godot/imported/bridge_side_stone.fbx-e9bee054becf1aeba592739f2e926d5b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stone.fbx" +dest_files=["res://.godot/imported/bridge_side_stone.fbx-e9bee054becf1aeba592739f2e926d5b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stoneRound.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stoneRound.fbx new file mode 100644 index 0000000..6ffe758 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stoneRound.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 10 + Millisecond: 509 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_side_stoneRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_side_stoneRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5702758168104355570, "Model::bridge_side_stoneRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5197922587174431740, "Geometry::", "Mesh" { + Vertices: *867 { + a: 4,3.5,4,4,3.5,5,-5,3.5,4,-5,3.5,5,4,0,4.5,4,0,-4.5,3,-2.401723E-14,4.5,3,-6.034503E-16,-4.5,5,0,-5,4,0,5,5,0,5,4,0,-5,4,2.5,-4.5,4,2.5,-5,-5,2.5,-4.5,-5,2.5,-5,4,3.5,-4,-5,3.5,-4,4,3.5,-5,-5,3.5,-5,4,1.5,-4,4,1,-4,4,1.5,4,4,1,4,5,4,-5,5,0,-5,5,4,-4,5,0.5,-4,5,1,-4,5,0,5,5,0.5,4,5,1,4,5,4,5,5,4,4,5,0,5,4,0,5,5,4,5,4,2.5,5,4,3.5,5,-5,3.5,5,4,4,5,-5,2.5,5,4,2.5,5,4,2.5,4.5,-5,2.5,5,-5,2.5,4.5,5.2,4,3.8,5,4,5,5.2,4,5.2,3.8,4,5.2,4,4,5,4,4,4,5,4,4,3.8,4,3.8,4,0,4.5,4,1.5,4.5,4,0,5,4,2.5,4.5,4,2.5,5,-5,2.5,-4.5,-5,2,-4,-5,1.5,-4.5,-5,1.5,4.5,-5,2,4,-5,2.5,4.5,-5,3.5,5,-5,2.75,4,-5,3.5,4,-5,2.5,5,-5,3.5,-4,-5,2.5,-5,-5,3.5,-5,-5,2.75,-4,-2.193843,1.329072,4.5,-2.193843,1.329072,-4.5,-3.590274,1.457167,4.5,-3.590274,1.457167,-4.5,4,0,-5,4,2.5,-5,4,0,-4.5,4,2.5,-4.5,4,0.630151,-4.5,4,3.5,4,4,4,4,4,3.5,5,4,4,5,4,1,-4,4,1.5,-4,5,1,-4,4.2,1.5,-4,5,4,-4,4.2,2,-4,4,2,-4,4,2.75,-4,4,3.5,-4,-5,2.75,-4,4,4,-4,-5,3.5,-4,-5,1.5,4.5,-5,2.5,4.5,4,1.5,4.5,4,2.5,4.5,4,3.5,-5,4,4,-5,4,3.5,-4,4,4,-4,-5,2.5,-5,4,2.5,-5,-5,3.5,-5,4,3.5,-5,5,4,-5,5,0,-5,4,0,-5,4,4,-5,4,1,4,5,1,4,4,1.5,4,4.2,1.5,4,5,4,4,4.2,2,4,4,2,4,4,2.75,4,4,3.5,4,-5,3.5,4,-5,2.75,4,4,4,4,5.2,4,-5.2,5,4,-4,5.2,4,-3.8,3.8,4,-3.8,4,4,-4,4,4,-5,5,4,-5,3.8,4,-5.2,0.5067026,0.8227193,4.5,0.5067026,0.8227193,-4.5,-0.8238774,1.116922,4.5,-0.8238774,1.116922,-4.5,1.785348,0.4492378,4.5,1.785348,0.4492378,-4.5,0.5067026,0.8227193,4.5,0.5067026,0.8227193,-4.5,-0.8238774,1.116922,4.5,-0.8238774,1.116922,-4.5,-2.193843,1.329072,4.5,-2.193843,1.329072,-4.5,-3.590274,1.457167,4.5,-3.590274,1.457167,-4.5,-5,1.5,4.5,-5,1.5,-4.5,4,0.630151,-4.5,4,2.5,-4.5,3,1,-4.5,1.785348,1.449238,-4.5,1.611559,1.5,-4.5,0.5067026,1.822719,-4.5,-0.8238774,2.116922,-4.5,-2.193843,2.329072,-4.5,-3.590274,2.457167,-4.5,-5,2.5,-4.5,3,-2.401723E-14,4.5,3,-6.034503E-16,-4.5,1.785348,0.4492378,4.5,1.785348,0.4492378,-4.5,-5,2,-4,5.2,0.5,4,5.2,0.5,-4,5,0.5,4,5,0.5,-4,4.2,2,-4,4.2,1.5,-4,4.2,2,4,4.2,1.5,4,5,0.5,-4,5.2,0.5,-4,5,1,-4,5.2,1,-4,3,-2.401723E-14,4.5,1.785348,0.4492378,4.5,4,0,4.5,0.5067026,0.8227193,4.5,-0.8238774,1.116922,4.5,-2.193843,1.329072,4.5,-3.590274,1.457167,4.5,3,-6.034503E-16,-4.5,4,0,-4.5,1.785348,0.4492378,-4.5,0.5067026,0.8227193,-4.5,-0.8238774,1.116922,-4.5,-2.193843,1.329072,-4.5,-3.590274,1.457167,-4.5,-5,1.5,-4.5,5.2,1,-4,5.2,1,4,5,1,-4,5,1,4,4,1,-4,4,1,4,-5,2,4,4.2,1.5,4,4.2,1.5,-4,4,1.5,4,4,1.5,-4,5.2,0.5,4,5,0.5,4,5.2,1,4,5,1,4,4.2,2,-4,4.2,2,4,4,2,-4,4,2,4,-5,2,-4,-5,2,4,5.2,1,-4,5.2,0.5,-4,5.2,1,4,5.2,0.5,4,3.8,4,-5.2,5.2,4,-5.2,3.8,4.25,-5.2,5.2,4.25,-5.2,5.2,4.25,-3.8,3.8,4.25,-3.8,5.025,4.5,-3.975,3.975,4.5,-3.975,3.8,4,3.8,5.2,4,3.8,3.8,4.25,3.8,5.2,4.25,3.8,5.025,4.5,5.025,3.975,4.5,5.025,5.025,4.5,3.975,3.975,4.5,3.975,5.2,4.25,-5.2,5.2,4,-5.2,5.2,4.25,-3.8,5.2,4,-3.8,5.2,4.25,5.2,3.8,4.25,5.2,5.025,4.5,5.025,3.975,4.5,5.025,3.8,4.25,3.8,3.975,4.5,3.975,3.8,4.25,5.2,3.975,4.5,5.025,3.8,4.25,3.8,5.2,4.25,3.8,3.975,4.5,3.975,5.025,4.5,3.975,5.2,4.25,-5.2,5.2,4.25,-3.8,5.025,4.5,-5.025,5.025,4.5,-3.975,5.2,4.25,3.8,5.2,4,3.8,5.2,4.25,5.2,5.2,4,5.2,5.2,4,5.2,3.8,4,5.2,5.2,4.25,5.2,3.8,4.25,5.2,5.2,4,-3.8,3.8,4,-3.8,5.2,4.25,-3.8,3.8,4.25,-3.8,5.025,4.5,-3.975,3.975,4.5,-3.975,5.025,4.5,-5.025,3.975,4.5,-5.025,3.8,4,-5.2,3.8,4.25,-5.2,3.8,4,-3.8,3.8,4.25,-3.8,3.8,4,3.8,3.8,4.25,3.8,3.8,4,5.2,3.8,4.25,5.2,3.8,4.25,-5.2,3.975,4.5,-5.025,3.8,4.25,-3.8,3.975,4.5,-3.975,5.2,4.25,3.8,5.2,4.25,5.2,5.025,4.5,3.975,5.025,4.5,5.025,3.8,4.25,-5.2,5.2,4.25,-5.2,3.975,4.5,-5.025,5.025,4.5,-5.025 + } + PolygonVertexIndex: *594 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,5,8,-5,4,8,-10,10,9,-9,11,8,-6,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,27,-27,25,27,-30,30,29,-28,31,29,-31,32,29,-32,33,32,-32,34,36,-36,37,35,-37,38,37,-37,39,37,-39,40,38,-37,37,39,-42,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,47,-50,51,50,-50,47,52,-47,53,46,-53,51,53,-53,49,53,-52,54,56,-56,57,55,-57,58,57,-57,59,61,-61,62,60,-62,63,60,-63,62,64,-64,64,65,-64,63,65,-67,67,66,-66,68,65,-65,60,69,-60,59,69,-71,71,70,-70,72,69,-61,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,80,-80,82,84,-84,85,83,-85,86,88,-88,89,87,-89,88,90,-90,91,89,-91,92,91,-91,93,92,-91,94,93,-91,95,93,-95,96,94,-91,94,97,-96,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,109,110,-108,110,111,-108,112,107,-112,113,110,-110,114,116,-116,117,115,-117,115,117,-119,119,118,-118,120,118,-120,121,118,-121,122,118,-122,123,122,-122,124,123,-122,125,118,-123,126,128,-128,129,127,-129,130,127,-130,131,130,-130,127,132,-127,133,126,-133,131,133,-133,129,133,-132,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,151,-154,155,151,-155,156,151,-156,157,151,-157,158,151,-158,159,151,-159,160,162,-162,163,161,-163,92,93,-165,95,164,-94,165,167,-167,168,166,-168,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,179,-179,100,178,-180,180,178,-101,181,180,-101,182,181,-101,183,182,-101,98,183,-101,184,186,-186,150,185,-187,187,150,-187,152,150,-188,188,152,-188,153,152,-189,189,153,-189,190,153,-190,154,153,-191,191,154,-191,155,154,-192,159,155,-192,156,155,-160,157,156,-160,158,157,-160,192,194,-194,195,193,-195,196,195,-195,197,195,-197,120,198,-122,124,121,-199,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,210,-210,212,210,-212,213,215,-215,216,214,-216,217,219,-219,220,218,-220,221,223,-223,224,222,-224,225,227,-227,228,226,-228,229,231,-231,232,230,-232,233,235,-235,236,234,-236,237,239,-239,240,238,-240,241,243,-243,244,242,-244,245,247,-247,248,246,-248,249,251,-251,252,250,-252,253,255,-255,256,254,-256,257,259,-259,260,258,-260,261,263,-263,264,262,-264,265,267,-267,268,266,-268,269,271,-271,272,270,-272,273,275,-275,276,274,-276,277,279,-279,280,278,-280,281,283,-283,284,282,-284,285,287,-287,288,286,-288 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1782 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1222493,-0.9924994,0,-0.0608869,-0.9981446,0,-0.1222493,-0.9924994,0,-0.0608869,-0.9981446,0,-0.1222493,-0.9924994,0,-0.0608869,-0.9981446,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2482726,-0.9686902,0,-0.1845582,-0.9828215,0,-0.2482726,-0.9686902,0,-0.1845582,-0.9828215,0,-0.2482726,-0.9686902,0,-0.1845582,-0.9828215,0,-0.3138226,-0.9494817,0,-0.2482726,-0.9686902,0,-0.3138226,-0.9494817,0,-0.2482726,-0.9686902,0,-0.3138226,-0.9494817,0,-0.2482726,-0.9686902,0,-0.1845582,-0.9828215,0,-0.1222493,-0.9924994,0,-0.1845582,-0.9828215,0,-0.1222493,-0.9924994,0,-0.1845582,-0.9828215,0,-0.1222493,-0.9924994,0,-0.0608869,-0.9981446,0,-0.03036997,-0.9995388,0,-0.0608869,-0.9981446,0,-0.03036997,-0.9995388,0,-0.0608869,-0.9981446,0,-0.03036997,-0.9995388,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.3468843,-0.9379079,0,-0.3138226,-0.9494817,0,-0.3468843,-0.9379079,0,-0.3138226,-0.9494817,0,-0.3468843,-0.9379079,0,-0.3138226,-0.9494817,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *578 { + a: -15.74803,15.74803,-15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,15.74803,17.71654,15.74803,-17.71654,11.81102,17.71654,11.81102,-17.71654,19.68504,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,15.74803,-17.71654,15.74803,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,-15.74803,-15.74803,19.68504,-15.74803,-15.74803,-19.68504,19.68504,-19.68504,15.74803,5.905512,15.74803,3.937008,-15.74803,5.905512,-15.74803,3.937008,19.68504,15.74803,19.68504,2.945013E-14,15.74803,15.74803,15.74803,1.968504,15.74803,3.937008,-19.68504,2.945013E-14,-15.74803,1.968504,-15.74803,3.937008,-19.68504,15.74803,-15.74803,15.74803,19.68504,-3.355367E-12,15.74803,-3.355367E-12,19.68504,15.74803,15.74803,9.84252,15.74803,13.77953,-19.68504,13.77953,15.74803,15.74803,-19.68504,9.84252,15.74803,19.68504,15.74803,17.71654,-19.68504,19.68504,-19.68504,17.71654,20.47244,14.96063,19.68504,19.68504,20.47244,20.47244,14.96063,20.47244,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,14.96063,14.96063,17.71654,2.1081E-14,17.71654,5.905512,19.68504,2.1081E-14,17.71654,9.84252,19.68504,9.84252,-17.71654,9.84252,-15.74803,7.874016,-17.71654,5.905512,17.71654,5.905512,15.74803,7.874016,17.71654,9.84252,19.68504,13.77953,15.74803,10.82677,15.74803,13.77953,19.68504,9.84252,-15.74803,13.77953,-19.68504,9.84252,-19.68504,13.77953,-15.74803,10.82677,17.71654,9.079045,-17.71654,9.079045,17.71654,14.59989,-17.71654,14.59989,-19.68504,2.258679E-14,-19.68504,9.84252,-17.71654,2.258679E-14,-17.71654,9.84252,-17.71654,2.480909,15.74803,13.77953,15.74803,15.74803,19.68504,13.77953,19.68504,15.74803,15.74803,3.937008,15.74803,5.905512,19.68504,3.937008,16.53543,5.905512,19.68504,15.74803,16.53543,7.874016,15.74803,7.874016,15.74803,10.82677,15.74803,13.77953,-19.68504,10.82677,15.74803,15.74803,-19.68504,13.77953,-19.68504,5.905512,-19.68504,9.84252,15.74803,5.905512,15.74803,9.84252,-19.68504,13.77953,-19.68504,15.74803,-15.74803,13.77953,-15.74803,15.74803,19.68504,9.84252,-15.74803,9.84252,19.68504,13.77953,-15.74803,13.77953,-19.68504,15.74803,-19.68504,2.337001E-14,-15.74803,2.337001E-14,-15.74803,15.74803,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,15.74803,-16.53543,7.874016,-15.74803,7.874016,-15.74803,10.82677,-15.74803,13.77953,19.68504,13.77953,19.68504,10.82677,-15.74803,15.74803,20.47244,-20.47244,19.68504,-15.74803,20.47244,-14.96063,14.96063,-14.96063,15.74803,-15.74803,15.74803,-19.68504,19.68504,-19.68504,14.96063,-20.47244,17.71654,-1.248553,-17.71654,-1.248553,17.71654,4.116476,-17.71654,4.116476,17.71654,-6.251114,-17.71654,-6.251114,17.71654,-1.006726,-17.71654,-1.006726,17.71654,3.878344,-17.71654,3.878344,17.71654,9.336198,-17.71654,9.336198,17.71654,14.30264,-17.71654,14.30264,17.71654,19.85531,-17.71654,19.85531,-15.74803,2.480909,-15.74803,9.84252,-11.81102,3.937008,-7.028929,5.705661,-6.344722,5.905512,-1.994892,7.17606,3.243612,8.334339,8.637177,9.169573,14.13494,9.673885,19.68504,9.84252,17.71654,-11.07765,-17.71654,-11.07765,17.71654,-5.978971,-17.71654,-5.978971,-19.68504,7.874016,20.47244,15.74803,20.47244,-15.74803,19.68504,15.74803,19.68504,-15.74803,15.74803,7.874016,15.74803,5.905512,-15.74803,7.874016,-15.74803,5.905512,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,11.81102,2.057817E-11,7.028929,1.768653,15.74803,2.067273E-11,1.994892,3.239052,-3.243612,4.397331,-8.637177,5.232565,-14.13494,5.736877,-11.81102,-4.258128E-12,-15.74803,-4.255752E-12,-7.028929,1.768653,-1.994892,3.239052,3.243612,4.397331,8.637177,5.232565,14.13494,5.736877,19.68504,5.905512,-20.47244,-15.74803,-20.47244,15.74803,-19.68504,-15.74803,-19.68504,15.74803,-15.74803,-15.74803,-15.74803,15.74803,19.68504,7.874016,16.53543,15.74803,16.53543,-15.74803,15.74803,15.74803,15.74803,-15.74803,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,-16.53543,-15.74803,-16.53543,15.74803,-15.74803,-15.74803,-15.74803,15.74803,19.68504,-15.74803,19.68504,15.74803,15.74803,3.937008,15.74803,1.968504,-15.74803,3.937008,-15.74803,1.968504,-14.96063,15.74803,-20.47244,15.74803,-14.96063,16.73228,-20.47244,16.73228,20.47244,22.28698,14.96063,22.28698,19.78346,23.48841,15.64961,23.48841,-14.96063,15.74803,-20.47244,15.74803,-14.96063,16.73228,-20.47244,16.73228,-19.78346,19.78346,-15.64961,19.78346,-19.78346,15.64961,-15.64961,15.64961,20.47244,16.73228,20.47244,15.74803,14.96063,16.73228,14.96063,15.74803,20.47244,1.967447,14.96063,1.967447,19.78346,3.168879,15.64961,3.168879,14.96063,22.28698,15.64961,23.48841,20.47244,22.28698,19.78346,23.48841,-14.96063,22.28698,-20.47244,22.28698,-15.64961,23.48841,-19.78346,23.48841,20.47244,1.967447,14.96063,1.967447,19.78346,3.168879,15.64961,3.168879,-14.96063,16.73228,-14.96063,15.74803,-20.47244,16.73228,-20.47244,15.74803,20.47244,15.74803,14.96063,15.74803,20.47244,16.73228,14.96063,16.73228,20.47244,15.74803,14.96063,15.74803,20.47244,16.73228,14.96063,16.73228,-19.78346,-15.64961,-15.64961,-15.64961,-19.78346,-19.78346,-15.64961,-19.78346,-20.47244,15.74803,-20.47244,16.73228,-14.96063,15.74803,-14.96063,16.73228,14.96063,15.74803,14.96063,16.73228,20.47244,15.74803,20.47244,16.73228,-20.47244,22.28698,-19.78346,23.48841,-14.96063,22.28698,-15.64961,23.48841,-14.96063,1.967447,-20.47244,1.967447,-15.64961,3.168879,-19.78346,3.168879,-14.96063,1.967447,-20.47244,1.967447,-15.64961,3.168879,-19.78346,3.168879 + } + UVIndex: *594 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,5,8,4,4,8,9,10,9,8,11,8,5,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,27,26,25,27,29,30,29,27,31,29,30,32,29,31,33,32,31,34,36,35,37,35,36,38,37,36,39,37,38,40,38,36,37,39,41,42,44,43,45,43,44,46,48,47,49,47,48,50,47,49,51,50,49,47,52,46,53,46,52,51,53,52,49,53,51,54,56,55,57,55,56,58,57,56,59,61,60,62,60,61,63,60,62,62,64,63,64,65,63,63,65,66,67,66,65,68,65,64,60,69,59,59,69,70,71,70,69,72,69,60,73,75,74,76,74,75,77,79,78,80,78,79,81,80,79,82,84,83,85,83,84,86,88,87,89,87,88,88,90,89,91,89,90,92,91,90,93,92,90,94,93,90,95,93,94,96,94,90,94,97,95,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,109,110,107,110,111,107,112,107,111,113,110,109,114,116,115,117,115,116,115,117,118,119,118,117,120,118,119,121,118,120,122,118,121,123,122,121,124,123,121,125,118,122,126,128,127,129,127,128,130,127,129,131,130,129,127,132,126,133,126,132,131,133,132,129,133,131,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,151,153,155,151,154,156,151,155,157,151,156,158,151,157,159,151,158,160,162,161,163,161,162,92,93,164,95,164,93,165,167,166,168,166,167,169,171,170,172,170,171,173,175,174,176,174,175,177,179,178,100,178,179,180,178,100,181,180,100,182,181,100,183,182,100,98,183,100,184,186,185,150,185,186,187,150,186,152,150,187,188,152,187,153,152,188,189,153,188,190,153,189,154,153,190,191,154,190,155,154,191,159,155,191,156,155,159,157,156,159,158,157,159,192,194,193,195,193,194,196,195,194,197,195,196,120,198,121,124,121,198,199,201,200,202,200,201,203,205,204,206,204,205,207,209,208,210,208,209,211,210,209,212,210,211,213,215,214,216,214,215,217,219,218,220,218,219,221,223,222,224,222,223,225,227,226,228,226,227,229,231,230,232,230,231,233,235,234,236,234,235,237,239,238,240,238,239,241,243,242,244,242,243,245,247,246,248,246,247,249,251,250,252,250,251,253,255,254,256,254,255,257,259,258,260,258,259,261,263,262,264,262,263,265,267,266,268,266,267,269,271,270,272,270,271,273,275,274,276,274,275,277,279,278,280,278,279,281,283,282,284,282,283,285,287,286,288,286,287 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *198 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_side_stoneRound, Model::RootNode + C: "OO",5702758168104355570,0 + + ;Geometry::, Model::Mesh bridge_side_stoneRound + C: "OO",5197922587174431740,5702758168104355570 + + ;Material::stoneDark, Model::Mesh bridge_side_stoneRound + C: "OO",3040,5702758168104355570 + + ;Material::stone, Model::Mesh bridge_side_stoneRound + C: "OO",3038,5702758168104355570 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stoneRound.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stoneRound.fbx.import new file mode 100644 index 0000000..f14559c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stoneRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d2nhc0awa3b1p" +path="res://.godot/imported/bridge_side_stoneRound.fbx-a76ed9d66d0ee0156b96b04e65fdcd5e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_side_stoneRound.fbx" +dest_files=["res://.godot/imported/bridge_side_stoneRound.fbx-a76ed9d66d0ee0156b96b04e65fdcd5e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_wood.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_wood.fbx new file mode 100644 index 0000000..202c31b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_wood.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 10 + Millisecond: 614 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_side_wood.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_side_wood.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5426372264390116992, "Model::bridge_side_wood", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4861280833009435619, "Geometry::", "Mesh" { + Vertices: *624 { + a: 4,3,-4,-5,3,-4,4,3,-5,-5,3,-5,4,0,-5,4,2.5,-5,4,0,-4.5,4,2.5,-4.5,4,1.5,-4.5,-5,1.5,4.5,-5,2.5,4.5,4,1.5,4.5,4,2.5,4.5,5,3.5,-5,5,0,-5,5,3.5,-4,5,0.5,-4,5,1,-4,5,0,5,5,0.5,4,5,1,4,5,3.5,5,5,3.5,4,4,3,-5,4,3.5,-5,4,3,-4,4,3.5,-4,-5,-6.693218E-16,-4.5,-5,1.5,-4.5,-5,-2.103583E-15,4.5,-5,2,-4,-5,2.5,-4.5,-5,2,4,-5,2.5,4.5,-5,3,4,-5,3,5,-5,1.5,4.5,-5,2.5,5,-5,3,-4,-5,2.5,-5,-5,3,-5,5,0,5,4,0,5,5,3.5,5,4,2.5,5,4,3,5,-5,3,5,4,3.5,5,-5,2.5,5,4,2.5,5,4,2.5,4.5,-5,2.5,5,-5,2.5,4.5,4,2.5,-4.5,4,2.5,-5,-5,2.5,-4.5,-5,2.5,-5,-5,2.5,-5,4,2.5,-5,-5,3,-5,4,3,-5,5,3.5,-5,5,0,-5,4,0,-5,4,3.5,-5,4,3,4,4,3,5,-5,3,4,-5,3,5,4,1.5,-4,4,1,-4,4,1.5,4,4,1,4,4,0,4.5,4,0,-4.5,-5,-2.103583E-15,4.5,-5,-6.693218E-16,-4.5,5,0,-5,4,0,5,5,0,5,4,0,-5,4,1,4,5,1,4,4,1.5,4,4.2,1.5,4,5,3.5,4,4.2,2,4,4,3,4,-5,2,4,-5,3,4,4,3.5,4,4,1.5,-4.5,4,2.5,-4.5,-5,1.5,-4.5,-5,2.5,-4.5,5.2,3.5,-5.2,5,3.5,-4,5.2,3.5,-3.8,3.8,3.5,-3.8,4,3.5,-4,4,3.5,-5,5,3.5,-5,3.8,3.5,-5.2,5.2,3.5,3.8,5,3.5,5,5.2,3.5,5.2,3.8,3.5,5.2,4,3.5,5,4,3.5,4,5,3.5,4,3.8,3.5,3.8,4,1,-4,4,1.5,-4,5,1,-4,4.2,1.5,-4,5,3.5,-4,4.2,2,-4,4,3,-4,-5,2,-4,4,3.5,-4,-5,3,-4,4,3,4,4,3.5,4,4,3,5,4,3.5,5,4,0,4.5,4,1.5,4.5,4,0,5,4,2.5,4.5,4,2.5,5,4.2,2,-4,4.2,2,4,-5,2,-4,-5,2,4,4.2,2,-4,4.2,1.5,-4,4.2,2,4,4.2,1.5,4,5.2,1,-4,5.2,0.5,-4,5.2,1,4,5.2,0.5,4,4.2,1.5,4,4.2,1.5,-4,4,1.5,4,4,1.5,-4,5.2,1,-4,5.2,1,4,5,1,-4,5,1,4,4,1,-4,4,1,4,5.2,0.5,4,5,0.5,4,5.2,1,4,5,1,4,5,0.5,-4,5.2,0.5,-4,5,1,-4,5.2,1,-4,5.2,0.5,4,5.2,0.5,-4,5,0.5,4,5,0.5,-4,-5,-6.693218E-16,-4.5,4,0,-4.5,5.2,3.5,5.2,3.8,3.5,5.2,5.2,4,5.2,3.8,4,5.2,5.2,4,-5.2,5.2,3.5,-5.2,5.2,4,-3.8,5.2,3.5,-3.8,5.2,4,3.8,5.2,4,5.2,3.8,4,3.8,3.8,4,5.2,3.8,3.5,3.8,3.8,4,3.8,3.8,3.5,5.2,3.8,4,5.2,-5,-2.103583E-15,4.5,4,0,4.5,3.8,3.5,-5.2,3.8,4,-5.2,3.8,3.5,-3.8,3.8,4,-3.8,5.2,3.5,-3.8,3.8,3.5,-3.8,5.2,4,-3.8,3.8,4,-3.8,5.2,4,-3.8,3.8,4,-3.8,5.2,4,-5.2,3.8,4,-5.2,3.8,3.5,-5.2,5.2,3.5,-5.2,3.8,4,-5.2,5.2,4,-5.2,3.8,3.5,3.8,5.2,3.5,3.8,3.8,4,3.8,5.2,4,3.8,5.2,4,3.8,5.2,3.5,3.8,5.2,4,5.2,5.2,3.5,5.2 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,16,-16,14,16,-19,19,18,-17,20,18,-20,21,18,-21,22,21,-21,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,28,-31,32,30,-30,29,33,-33,32,33,-35,35,34,-34,36,33,-30,37,35,-34,30,38,-32,31,38,-40,40,39,-39,41,43,-43,44,42,-44,45,44,-44,46,44,-46,47,45,-44,44,46,-49,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,60,61,-59,61,62,-59,63,58,-63,64,61,-61,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,74,77,-74,73,77,-79,79,78,-78,80,77,-75,81,83,-83,84,82,-84,82,84,-86,86,85,-85,87,85,-87,88,87,-87,89,87,-89,90,85,-88,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,96,-99,100,99,-99,96,101,-96,102,95,-102,100,102,-102,98,102,-101,103,105,-105,106,104,-106,107,104,-107,108,107,-107,104,109,-104,110,103,-110,108,110,-110,106,110,-109,111,113,-113,114,112,-114,113,115,-115,116,114,-116,117,116,-116,118,116,-118,119,117,-116,117,120,-119,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,128,-128,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,149,-149,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,93,-166,91,165,-94,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,183,-10,11,9,-184,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: -15.74803,-15.74803,19.68504,-15.74803,-15.74803,-19.68504,19.68504,-19.68504,-19.68504,2.258679E-14,-19.68504,9.84252,-17.71654,2.258679E-14,-17.71654,9.84252,-17.71654,5.905512,-19.68504,5.905512,-19.68504,9.84252,15.74803,5.905512,15.74803,9.84252,19.68504,13.77953,19.68504,1.471389E-13,15.74803,13.77953,15.74803,1.968504,15.74803,3.937008,-19.68504,1.471389E-13,-15.74803,1.968504,-15.74803,3.937008,-19.68504,13.77953,-15.74803,13.77953,-19.68504,11.81102,-19.68504,13.77953,-15.74803,11.81102,-15.74803,13.77953,-17.71654,5.21957E-13,-17.71654,5.905512,17.71654,5.163104E-13,-15.74803,7.874016,-17.71654,9.84252,15.74803,7.874016,17.71654,9.84252,15.74803,11.81102,19.68504,11.81102,17.71654,5.905512,19.68504,9.84252,-15.74803,11.81102,-19.68504,9.84252,-19.68504,11.81102,19.68504,-3.950994E-12,15.74803,-3.950994E-12,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-19.68504,11.81102,15.74803,13.77953,-19.68504,9.84252,15.74803,19.68504,15.74803,17.71654,-19.68504,19.68504,-19.68504,17.71654,15.74803,-17.71654,15.74803,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,19.68504,9.84252,-15.74803,9.84252,19.68504,11.81102,-15.74803,11.81102,-19.68504,13.77953,-19.68504,2.812402E-14,-15.74803,2.812402E-14,-15.74803,13.77953,-15.74803,15.74803,-15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,15.74803,5.905512,15.74803,3.937008,-15.74803,5.905512,-15.74803,3.937008,15.74803,17.71654,15.74803,-17.71654,-19.68504,17.71654,-19.68504,-17.71654,19.68504,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,13.77953,-16.53543,7.874016,-15.74803,11.81102,19.68504,7.874016,19.68504,11.81102,-15.74803,13.77953,-15.74803,5.905512,-15.74803,9.84252,19.68504,5.905512,19.68504,9.84252,20.47244,-20.47244,19.68504,-15.74803,20.47244,-14.96063,14.96063,-14.96063,15.74803,-15.74803,15.74803,-19.68504,19.68504,-19.68504,14.96063,-20.47244,20.47244,14.96063,19.68504,19.68504,20.47244,20.47244,14.96063,20.47244,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,14.96063,14.96063,15.74803,3.937008,15.74803,5.905512,19.68504,3.937008,16.53543,5.905512,19.68504,13.77953,16.53543,7.874016,15.74803,11.81102,-19.68504,7.874016,15.74803,13.77953,-19.68504,11.81102,15.74803,11.81102,15.74803,13.77953,19.68504,11.81102,19.68504,13.77953,17.71654,2.1081E-14,17.71654,5.905512,19.68504,2.1081E-14,17.71654,9.84252,19.68504,9.84252,-16.53543,-15.74803,-16.53543,15.74803,19.68504,-15.74803,19.68504,15.74803,15.74803,7.874016,15.74803,5.905512,-15.74803,7.874016,-15.74803,5.905512,15.74803,3.937008,15.74803,1.968504,-15.74803,3.937008,-15.74803,1.968504,16.53543,15.74803,16.53543,-15.74803,15.74803,15.74803,15.74803,-15.74803,-20.47244,-15.74803,-20.47244,15.74803,-19.68504,-15.74803,-19.68504,15.74803,-15.74803,-15.74803,-15.74803,15.74803,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,20.47244,15.74803,20.47244,-15.74803,19.68504,15.74803,19.68504,-15.74803,19.68504,-2.635125E-15,-15.74803,4.991882E-27,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,20.47244,15.74803,20.47244,13.77953,14.96063,15.74803,14.96063,13.77953,-20.47244,14.96063,-20.47244,20.47244,-14.96063,14.96063,-14.96063,20.47244,14.96063,13.77953,14.96063,15.74803,20.47244,13.77953,20.47244,15.74803,-19.68504,-8.281822E-15,15.74803,5.029749E-31,-20.47244,13.77953,-20.47244,15.74803,-14.96063,13.77953,-14.96063,15.74803,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,-20.47244,-14.96063,-14.96063,-14.96063,-20.47244,-20.47244,-14.96063,-20.47244,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,-14.96063,15.74803,-14.96063,13.77953,-20.47244,15.74803,-20.47244,13.77953 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,15,14,16,14,15,17,16,15,14,16,18,19,18,16,20,18,19,21,18,20,22,21,20,23,25,24,26,24,25,27,29,28,30,28,29,31,28,30,32,30,29,29,33,32,32,33,34,35,34,33,36,33,29,37,35,33,30,38,31,31,38,39,40,39,38,41,43,42,44,42,43,45,44,43,46,44,45,47,45,43,44,46,48,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,60,61,58,61,62,58,63,58,62,64,61,60,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,74,77,73,73,77,78,79,78,77,80,77,74,81,83,82,84,82,83,82,84,85,86,85,84,87,85,86,88,87,86,89,87,88,90,85,87,91,93,92,94,92,93,95,97,96,98,96,97,99,96,98,100,99,98,96,101,95,102,95,101,100,102,101,98,102,100,103,105,104,106,104,105,107,104,106,108,107,106,104,109,103,110,103,109,108,110,109,106,110,108,111,113,112,114,112,113,113,115,114,116,114,115,117,116,115,118,116,117,119,117,115,117,120,118,121,123,122,124,122,123,125,127,126,128,126,127,129,128,127,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,149,148,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,93,165,91,165,93,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,183,9,11,9,183,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_side_wood, Model::RootNode + C: "OO",5426372264390116992,0 + + ;Geometry::, Model::Mesh bridge_side_wood + C: "OO",4861280833009435619,5426372264390116992 + + ;Material::woodBark, Model::Mesh bridge_side_wood + C: "OO",3046,5426372264390116992 + + ;Material::stone, Model::Mesh bridge_side_wood + C: "OO",3038,5426372264390116992 + + ;Material::wood, Model::Mesh bridge_side_wood + C: "OO",3044,5426372264390116992 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_wood.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_wood.fbx.import new file mode 100644 index 0000000..1d0a297 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_wood.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bgubb2ku7qhwj" +path="res://.godot/imported/bridge_side_wood.fbx-b4dde50491e1f151696c9b3d2d90a39d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_side_wood.fbx" +dest_files=["res://.godot/imported/bridge_side_wood.fbx-b4dde50491e1f151696c9b3d2d90a39d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_woodRound.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_woodRound.fbx new file mode 100644 index 0000000..b4ee3dc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_woodRound.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 10 + Millisecond: 728 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_side_woodRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_side_woodRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4632823144183114130, "Model::bridge_side_woodRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5343104823462653326, "Geometry::", "Mesh" { + Vertices: *789 { + a: 5,4,-5,5,0,-5,5,4,-4,5,0.5,-4,5,1,-4,5,0,5,5,0.5,4,5,1,4,5,4,5,5,4,4,4,0,-5,4,2.5,-5,4,0,-4.5,4,2.5,-4.5,4,0.630151,-4.5,4,0,4.5,4,1.5,4.5,4,0,5,4,2.5,4.5,4,2.5,5,-5,1.5,4.5,-5,2.5,4.5,4,1.5,4.5,4,2.5,4.5,4,1.5,-4,4,1,-4,4,1.5,4,4,1,4,-5,2.5,-5,4,2.5,-5,-5,3.5,-5,4,3.5,-5,5,4,-5,5,0,-5,4,0,-5,4,4,-5,4,1,-4,4,1.5,-4,5,1,-4,4.2,1.5,-4,5,4,-4,4.2,2,-4,4,2,-4,4,2.75,-4,4,3.5,-4,-5,2.75,-4,4,4,-4,-5,3.5,-4,4,1,4,5,1,4,4,1.5,4,4.2,1.5,4,5,4,4,4.2,2,4,4,2,4,4,2.75,4,4,3.5,4,-5,3.5,4,-5,2.75,4,4,4,4,5,0,5,4,0,5,5,4,5,4,2.5,5,4,3.5,5,-5,3.5,5,4,4,5,-5,2.5,5,4,2.5,5,4,2.5,4.5,-5,2.5,5,-5,2.5,4.5,4,3.5,-5,4,4,-5,4,3.5,-4,4,4,-4,4,2.5,-4.5,4,2.5,-5,-5,2.5,-4.5,-5,2.5,-5,4,3.5,-4,-5,3.5,-4,4,3.5,-5,-5,3.5,-5,4,3.5,4,4,3.5,5,-5,3.5,4,-5,3.5,5,4,3.5,4,4,4,4,4,3.5,5,4,4,5,5.2,4,3.8,5,4,5,5.2,4,5.2,3.8,4,5.2,4,4,5,4,4,4,5,4,4,3.8,4,3.8,-2.193843,1.329072,4.5,-2.193843,1.329072,-4.5,-3.590274,1.457167,4.5,-3.590274,1.457167,-4.5,-3.590274,1.457167,4.5,-3.590274,1.457167,-4.5,-5,1.5,4.5,-5,1.5,-4.5,-5,2.5,-4.5,-5,2,-4,-5,1.5,-4.5,-5,1.5,4.5,-5,2,-3,-5,2,3,-5,2,4,-5,2.5,4.5,-5,3.5,5,-5,2.75,4,-5,3.5,4,-5,2.5,5,-5,3.5,-4,-5,2.5,-5,-5,3.5,-5,-5,2.75,-4,4,0,4.5,4,0,-4.5,3,-2.401723E-14,4.5,3,-6.034503E-16,-4.5,5,0,-5,4,0,5,5,0,5,4,0,-5,5.2,4,-5.2,5,4,-4,5.2,4,-3.8,3.8,4,-3.8,4,4,-4,4,4,-5,5,4,-5,3.8,4,-5.2,3,-2.401723E-14,4.5,3,-6.034503E-16,-4.5,1.785348,0.4492378,4.5,1.785348,0.4492378,-4.5,0.5067026,0.8227193,4.5,0.5067026,0.8227193,-4.5,-0.8238774,1.116922,4.5,-0.8238774,1.116922,-4.5,-0.8238774,1.116922,4.5,-0.8238774,1.116922,-4.5,-2.193843,1.329072,4.5,-2.193843,1.329072,-4.5,4,0.630151,-4.5,4,2.5,-4.5,3,1,-4.5,1.785348,1.449238,-4.5,1.611559,1.5,-4.5,0.5067026,1.822719,-4.5,-0.8238774,2.116922,-4.5,-2.193843,2.329072,-4.5,-3.590274,2.457167,-4.5,-5,2.5,-4.5,1.785348,0.4492378,4.5,1.785348,0.4492378,-4.5,0.5067026,0.8227193,4.5,0.5067026,0.8227193,-4.5,3,-2.401723E-14,4.5,1.785348,0.4492378,4.5,4,0,4.5,0.5067026,0.8227193,4.5,-0.8238774,1.116922,4.5,-2.193843,1.329072,4.5,-3.590274,1.457167,4.5,3.8,4,3.8,3.8,4.5,3.8,3.8,4,5.2,3.8,4.5,5.2,5.2,4.5,-3.8,3.8,4.5,-3.8,5.2,4.5,-5.2,3.8,4.5,-5.2,3.8,4,-5.2,3.8,4.5,-5.2,3.8,4,-3.8,3.8,4.5,-3.8,5.2,4,-3.8,3.8,4,-3.8,5.2,4.5,-3.8,3.8,4.5,-3.8,5.2,4,5.2,3.8,4,5.2,5.2,4.5,5.2,3.8,4.5,5.2,-5,2,4,3.8,4,3.8,5.2,4,3.8,3.8,4.5,3.8,5.2,4.5,3.8,5.2,4.5,3.8,5.2,4.5,5.2,3.8,4.5,3.8,3.8,4.5,5.2,3.8,4,-5.2,5.2,4,-5.2,3.8,4.5,-5.2,5.2,4.5,-5.2,-5,2,-4,5.2,4.5,3.8,5.2,4,3.8,5.2,4.5,5.2,5.2,4,5.2,5.2,4.5,-5.2,5.2,4,-5.2,5.2,4.5,-3.8,5.2,4,-3.8,3,-6.034503E-16,-4.5,4,0,-4.5,1.785348,0.4492378,-4.5,0.5067026,0.8227193,-4.5,-0.8238774,1.116922,-4.5,-2.193843,1.329072,-4.5,-3.590274,1.457167,-4.5,-5,1.5,-4.5,5.2,1,-4,5.2,0.5,-4,5.2,1,4,5.2,0.5,4,5.2,0.5,4,5,0.5,4,5.2,1,4,5,1,4,4.2,2,-4,4.2,2,4,4,2,-4,4,2,4,3.4,2,-3,-5,2,-4,-5,2,-3,3.4,2,3,-5,2,4,-5,2,3,4.2,2,-4,4.2,1.5,-4,4.2,2,4,4.2,1.5,4,5.2,0.5,4,5.2,0.5,-4,5,0.5,4,5,0.5,-4,5,0.5,-4,5.2,0.5,-4,5,1,-4,5.2,1,-4,4.2,1.5,4,4.2,1.5,-4,4,1.5,4,4,1.5,-4,5.2,1,-4,5.2,1,4,5,1,-4,5,1,4,4,1,-4,4,1,4 + } + PolygonVertexIndex: *570 { + a: 0,2,-2,3,1,-3,4,3,-3,1,3,-6,6,5,-4,7,5,-7,8,5,-8,9,8,-8,10,12,-12,13,11,-13,14,13,-13,15,17,-17,18,16,-18,19,18,-18,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,31,32,-30,32,33,-30,34,29,-34,35,32,-32,36,38,-38,39,37,-39,38,40,-40,41,39,-41,42,41,-41,43,42,-41,44,43,-41,45,43,-45,46,44,-41,44,47,-46,48,50,-50,51,49,-51,49,51,-53,53,52,-52,54,52,-54,55,52,-55,56,52,-56,57,56,-56,58,57,-56,59,52,-57,60,62,-62,63,61,-63,64,63,-63,65,63,-65,66,64,-63,63,65,-68,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,96,-96,93,98,-93,99,92,-99,97,99,-99,95,99,-98,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,109,-112,113,112,-112,114,113,-112,111,115,-115,115,116,-115,114,116,-118,118,117,-117,119,116,-116,109,120,-109,108,120,-122,122,121,-121,123,120,-110,124,126,-126,127,125,-127,125,128,-125,124,128,-130,130,129,-129,131,128,-126,132,134,-134,135,133,-135,136,133,-136,137,136,-136,133,138,-133,139,132,-139,137,139,-139,135,139,-138,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,153,-156,157,153,-157,158,153,-158,159,153,-159,160,153,-160,161,153,-161,162,164,-164,165,163,-165,166,168,-168,22,167,-169,169,167,-23,170,169,-23,171,170,-23,172,171,-23,20,172,-23,173,175,-175,176,174,-176,177,179,-179,180,178,-180,181,183,-183,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,190,-192,54,193,-56,58,55,-194,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,42,43,-207,45,206,-44,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,152,216,-218,218,152,-218,154,152,-219,219,154,-219,155,154,-220,220,155,-220,221,155,-221,156,155,-222,222,156,-222,157,156,-223,161,157,-223,158,157,-162,159,158,-162,160,159,-162,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,233,-233,234,232,-234,235,234,-234,236,235,-234,237,235,-237,235,238,-235,239,234,-239,240,239,-239,241,243,-243,244,242,-244,245,247,-247,248,246,-248,249,251,-251,252,250,-252,253,255,-255,256,254,-256,257,259,-259,260,258,-260,261,260,-260,262,260,-262,235,237,-239,240,238,-238 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1710 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.1222493,-0.9924994,0,-0.0608869,-0.9981446,0,-0.1222493,-0.9924994,0,-0.0608869,-0.9981446,0,-0.1222493,-0.9924994,0,-0.0608869,-0.9981446,0,-0.0608869,-0.9981446,0,-0.03036997,-0.9995388,0,-0.0608869,-0.9981446,0,-0.03036997,-0.9995388,0,-0.0608869,-0.9981446,0,-0.03036997,-0.9995388,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3468843,-0.9379079,0,-0.3138226,-0.9494817,0,-0.3468843,-0.9379079,0,-0.3138226,-0.9494817,0,-0.3468843,-0.9379079,0,-0.3138226,-0.9494817,0,-0.2482726,-0.9686902,0,-0.1845582,-0.9828215,0,-0.2482726,-0.9686902,0,-0.1845582,-0.9828215,0,-0.2482726,-0.9686902,0,-0.1845582,-0.9828215,0,-0.1845582,-0.9828215,0,-0.1222493,-0.9924994,0,-0.1845582,-0.9828215,0,-0.1222493,-0.9924994,0,-0.1845582,-0.9828215,0,-0.1222493,-0.9924994,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.3138226,-0.9494817,0,-0.2482726,-0.9686902,0,-0.3138226,-0.9494817,0,-0.2482726,-0.9686902,0,-0.3138226,-0.9494817,0,-0.2482726,-0.9686902,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *526 { + a: 19.68504,15.74803,19.68504,2.945013E-14,15.74803,15.74803,15.74803,1.968504,15.74803,3.937008,-19.68504,2.945013E-14,-15.74803,1.968504,-15.74803,3.937008,-19.68504,15.74803,-15.74803,15.74803,-19.68504,2.258679E-14,-19.68504,9.84252,-17.71654,2.258679E-14,-17.71654,9.84252,-17.71654,2.480909,17.71654,2.1081E-14,17.71654,5.905512,19.68504,2.1081E-14,17.71654,9.84252,19.68504,9.84252,-19.68504,5.905512,-19.68504,9.84252,15.74803,5.905512,15.74803,9.84252,15.74803,5.905512,15.74803,3.937008,-15.74803,5.905512,-15.74803,3.937008,19.68504,9.84252,-15.74803,9.84252,19.68504,13.77953,-15.74803,13.77953,-19.68504,15.74803,-19.68504,2.337001E-14,-15.74803,2.337001E-14,-15.74803,15.74803,15.74803,3.937008,15.74803,5.905512,19.68504,3.937008,16.53543,5.905512,19.68504,15.74803,16.53543,7.874016,15.74803,7.874016,15.74803,10.82677,15.74803,13.77953,-19.68504,10.82677,15.74803,15.74803,-19.68504,13.77953,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,15.74803,-16.53543,7.874016,-15.74803,7.874016,-15.74803,10.82677,-15.74803,13.77953,19.68504,13.77953,19.68504,10.82677,-15.74803,15.74803,19.68504,-3.355367E-12,15.74803,-3.355367E-12,19.68504,15.74803,15.74803,9.84252,15.74803,13.77953,-19.68504,13.77953,15.74803,15.74803,-19.68504,9.84252,15.74803,19.68504,15.74803,17.71654,-19.68504,19.68504,-19.68504,17.71654,-19.68504,13.77953,-19.68504,15.74803,-15.74803,13.77953,-15.74803,15.74803,15.74803,-17.71654,15.74803,-19.68504,-19.68504,-17.71654,-19.68504,-19.68504,-15.74803,-15.74803,19.68504,-15.74803,-15.74803,-19.68504,19.68504,-19.68504,-15.74803,15.74803,-15.74803,19.68504,19.68504,15.74803,19.68504,19.68504,15.74803,13.77953,15.74803,15.74803,19.68504,13.77953,19.68504,15.74803,20.47244,14.96063,19.68504,19.68504,20.47244,20.47244,14.96063,20.47244,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,14.96063,14.96063,17.71654,9.079045,-17.71654,9.079045,17.71654,14.59989,-17.71654,14.59989,17.71654,14.30264,-17.71654,14.30264,17.71654,19.85531,-17.71654,19.85531,-17.71654,9.84252,-15.74803,7.874016,-17.71654,5.905512,17.71654,5.905512,-11.81102,7.874016,11.81102,7.874016,15.74803,7.874016,17.71654,9.84252,19.68504,13.77953,15.74803,10.82677,15.74803,13.77953,19.68504,9.84252,-15.74803,13.77953,-19.68504,9.84252,-19.68504,13.77953,-15.74803,10.82677,15.74803,17.71654,15.74803,-17.71654,11.81102,17.71654,11.81102,-17.71654,19.68504,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,20.47244,-20.47244,19.68504,-15.74803,20.47244,-14.96063,14.96063,-14.96063,15.74803,-15.74803,15.74803,-19.68504,19.68504,-19.68504,14.96063,-20.47244,17.71654,-11.07765,-17.71654,-11.07765,17.71654,-5.978971,-17.71654,-5.978971,17.71654,-1.248553,-17.71654,-1.248553,17.71654,4.116476,-17.71654,4.116476,17.71654,3.878344,-17.71654,3.878344,17.71654,9.336198,-17.71654,9.336198,-15.74803,2.480909,-15.74803,9.84252,-11.81102,3.937008,-7.028929,5.705661,-6.344722,5.905512,-1.994892,7.17606,3.243612,8.334339,8.637177,9.169573,14.13494,9.673885,19.68504,9.84252,17.71654,-6.251114,-17.71654,-6.251114,17.71654,-1.006726,-17.71654,-1.006726,11.81102,2.057817E-11,7.028929,1.768653,15.74803,2.067273E-11,1.994892,3.239052,-3.243612,4.397331,-8.637177,5.232565,-14.13494,5.736877,14.96063,15.74803,14.96063,17.71654,20.47244,15.74803,20.47244,17.71654,-20.47244,-14.96063,-14.96063,-14.96063,-20.47244,-20.47244,-14.96063,-20.47244,-20.47244,15.74803,-20.47244,17.71654,-14.96063,15.74803,-14.96063,17.71654,20.47244,15.74803,14.96063,15.74803,20.47244,17.71654,14.96063,17.71654,20.47244,15.74803,14.96063,15.74803,20.47244,17.71654,14.96063,17.71654,19.68504,7.874016,-14.96063,15.74803,-20.47244,15.74803,-14.96063,17.71654,-20.47244,17.71654,-20.47244,14.96063,-20.47244,20.47244,-14.96063,14.96063,-14.96063,20.47244,-14.96063,15.74803,-20.47244,15.74803,-14.96063,17.71654,-20.47244,17.71654,-19.68504,7.874016,-14.96063,17.71654,-14.96063,15.74803,-20.47244,17.71654,-20.47244,15.74803,20.47244,17.71654,20.47244,15.74803,14.96063,17.71654,14.96063,15.74803,-11.81102,-4.258128E-12,-15.74803,-4.255752E-12,-7.028929,1.768653,-1.994892,3.239052,3.243612,4.397331,8.637177,5.232565,14.13494,5.736877,19.68504,5.905512,15.74803,3.937008,15.74803,1.968504,-15.74803,3.937008,-15.74803,1.968504,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,-16.53543,-15.74803,-16.53543,15.74803,-15.74803,-15.74803,-15.74803,15.74803,-13.38583,-11.81102,19.68504,-15.74803,19.68504,-11.81102,-13.38583,11.81102,19.68504,15.74803,19.68504,11.81102,15.74803,7.874016,15.74803,5.905512,-15.74803,7.874016,-15.74803,5.905512,20.47244,15.74803,20.47244,-15.74803,19.68504,15.74803,19.68504,-15.74803,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,16.53543,15.74803,16.53543,-15.74803,15.74803,15.74803,15.74803,-15.74803,-20.47244,-15.74803,-20.47244,15.74803,-19.68504,-15.74803,-19.68504,15.74803,-15.74803,-15.74803,-15.74803,15.74803 + } + UVIndex: *570 { + a: 0,2,1,3,1,2,4,3,2,1,3,5,6,5,3,7,5,6,8,5,7,9,8,7,10,12,11,13,11,12,14,13,12,15,17,16,18,16,17,19,18,17,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,31,32,29,32,33,29,34,29,33,35,32,31,36,38,37,39,37,38,38,40,39,41,39,40,42,41,40,43,42,40,44,43,40,45,43,44,46,44,40,44,47,45,48,50,49,51,49,50,49,51,52,53,52,51,54,52,53,55,52,54,56,52,55,57,56,55,58,57,55,59,52,56,60,62,61,63,61,62,64,63,62,65,63,64,66,64,62,63,65,67,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,96,95,93,98,92,99,92,98,97,99,98,95,99,97,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,109,111,113,112,111,114,113,111,111,115,114,115,116,114,114,116,117,118,117,116,119,116,115,109,120,108,108,120,121,122,121,120,123,120,109,124,126,125,127,125,126,125,128,124,124,128,129,130,129,128,131,128,125,132,134,133,135,133,134,136,133,135,137,136,135,133,138,132,139,132,138,137,139,138,135,139,137,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,153,155,157,153,156,158,153,157,159,153,158,160,153,159,161,153,160,162,164,163,165,163,164,166,168,167,22,167,168,169,167,22,170,169,22,171,170,22,172,171,22,20,172,22,173,175,174,176,174,175,177,179,178,180,178,179,181,183,182,184,182,183,185,187,186,188,186,187,189,191,190,192,190,191,54,193,55,58,55,193,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,42,43,206,45,206,43,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,152,216,217,218,152,217,154,152,218,219,154,218,155,154,219,220,155,219,221,155,220,156,155,221,222,156,221,157,156,222,161,157,222,158,157,161,159,158,161,160,159,161,223,225,224,226,224,225,227,229,228,230,228,229,231,233,232,234,232,233,235,234,233,236,235,233,237,235,236,235,238,234,239,234,238,240,239,238,241,243,242,244,242,243,245,247,246,248,246,247,249,251,250,252,250,251,253,255,254,256,254,255,257,259,258,260,258,259,261,260,259,262,260,261,235,237,238,240,238,237 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *190 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_side_woodRound, Model::RootNode + C: "OO",4632823144183114130,0 + + ;Geometry::, Model::Mesh bridge_side_woodRound + C: "OO",5343104823462653326,4632823144183114130 + + ;Material::woodBark, Model::Mesh bridge_side_woodRound + C: "OO",3046,4632823144183114130 + + ;Material::wood, Model::Mesh bridge_side_woodRound + C: "OO",3044,4632823144183114130 + + ;Material::stone, Model::Mesh bridge_side_woodRound + C: "OO",3038,4632823144183114130 + + ;Material::stoneDark, Model::Mesh bridge_side_woodRound + C: "OO",3040,4632823144183114130 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_woodRound.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_woodRound.fbx.import new file mode 100644 index 0000000..d456adf --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_side_woodRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b6rx3t6r51d5m" +path="res://.godot/imported/bridge_side_woodRound.fbx-01d23c070c0c91c8e7e215f89ab409dc.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_side_woodRound.fbx" +dest_files=["res://.godot/imported/bridge_side_woodRound.fbx-01d23c070c0c91c8e7e215f89ab409dc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stone.fbx new file mode 100644 index 0000000..b6ff845 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 10 + Millisecond: 846 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4614161211086453569, "Model::bridge_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5460174168087802945, "Geometry::", "Mesh" { + Vertices: *1200 { + a: -4,0,-4.5,4,0,-4.5,-4,1.5,-4.5,4,1.5,-4.5,-5,0.5,4,-5.2,0.5,4,-5,1,4,-5.2,1,4,5.2,0.5,4,5.2,0.5,-4,5,0.5,4,5,0.5,-4,5,0.5,-4,5.2,0.5,-4,5,1,-4,5.2,1,-4,4.2,2,-4,4.2,1.5,-4,4.2,2,4,4.2,1.5,4,5.2,0.5,4,5,0.5,4,5.2,1,4,5,1,4,-5,0.5,-4,-5,1,-4,-5.2,0.5,-4,-5.2,1,-4,-4,1.5,4,-4,1.5,-4,-4.2,1.5,4,-4.2,1.5,-4,4.2,2,-4,4.2,2,4,-4.2,2,-4,-4.2,2,4,5.2,1,-4,5.2,1,4,5,1,-4,5,1,4,4,1,-4,4,1,4,4.2,1.5,4,4.2,1.5,-4,4,1.5,4,4,1.5,-4,-5,0.5,4,-5,0.5,-4,-5.2,0.5,4,-5.2,0.5,-4,-4.2,1.5,-4,-4.2,2,-4,-4.2,1.5,4,-4.2,2,4,-5.2,0.5,-4,-5.2,1,-4,-5.2,0.5,4,-5.2,1,4,-4,1,-4,-4,1,4,-5,1,-4,-5,1,4,-5.2,1,-4,-5.2,1,4,5.2,1,-4,5.2,0.5,-4,5.2,1,4,5.2,0.5,4,4,0,4.5,-4,0,4.5,4,1.5,4.5,-4,1.5,4.5,3.8,3.5,3.8,5.2,3.5,3.8,3.8,3.75,3.8,5.2,3.75,3.8,3.8,3.5,3.8,3.8,3.75,3.8,3.8,3.5,5.2,3.8,3.75,5.2,-5.2,3.5,-5.2,-3.8,3.5,-5.2,-5.2,3.75,-5.2,-3.8,3.75,-5.2,-3.8,3.75,5.2,-5.2,3.75,5.2,-3.975,4,5.025,-5.025,4,5.025,-5.2,3.75,-5.2,-3.8,3.75,-5.2,-5.025,4,-5.025,-3.975,4,-5.025,3.8,3.75,3.8,3.975,4,3.975,3.8,3.75,5.2,3.975,4,5.025,5.2,3.75,-5.2,5.2,3.5,-5.2,5.2,3.75,-3.8,5.2,3.5,-3.8,5.025,4,-3.975,3.975,4,-3.975,5.025,4,-5.025,3.975,4,-5.025,-3.8,3.75,-5.2,-3.8,3.75,-3.8,-3.975,4,-5.025,-3.975,4,-3.975,-3.8,3.5,-3.8,-5.2,3.5,-3.8,-3.8,3.75,-3.8,-5.2,3.75,-3.8,5.2,3.75,3.8,5.2,3.5,3.8,5.2,3.75,5.2,5.2,3.5,5.2,3.8,3.75,-5.2,3.975,4,-5.025,3.8,3.75,-3.8,3.975,4,-3.975,-5.2,3.75,-5.2,-5.2,3.75,-3.8,-5.2,3.5,-5.2,-5.2,3.5,-3.8,-3.8,3.75,3.8,-3.8,3.5,3.8,-3.8,3.75,5.2,-3.8,3.5,5.2,5.2,3.75,-3.8,3.8,3.75,-3.8,5.025,4,-3.975,3.975,4,-3.975,-3.8,3.5,5.2,-5.2,3.5,5.2,-3.8,3.75,5.2,-5.2,3.75,5.2,3.8,3.75,3.8,5.2,3.75,3.8,3.975,4,3.975,5.025,4,3.975,-5.2,3.75,-5.2,-5.025,4,-5.025,-5.2,3.75,-3.8,-5.025,4,-3.975,-3.8,3.75,-3.8,-5.2,3.75,-3.8,-3.975,4,-3.975,-5.025,4,-3.975,-3.975,4,-3.975,-5.025,4,-3.975,-3.975,4,-5.025,-5.025,4,-5.025,-3.8,3.75,-5.2,-3.8,3.5,-5.2,-3.8,3.75,-3.8,-3.8,3.5,-3.8,-5.2,3.75,3.8,-3.8,3.75,3.8,-5.025,4,3.975,-3.975,4,3.975,5.2,3.75,5.2,3.8,3.75,5.2,5.025,4,5.025,3.975,4,5.025,-5.2,3.5,3.8,-5.2,3.75,3.8,-5.2,3.5,5.2,-5.2,3.75,5.2,-3.975,4,5.025,-5.025,4,5.025,-3.975,4,3.975,-5.025,4,3.975,5.2,3.5,5.2,3.8,3.5,5.2,5.2,3.75,5.2,3.8,3.75,5.2,5.2,3.75,-5.2,5.2,3.75,-3.8,5.025,4,-5.025,5.025,4,-3.975,-5.2,3.75,3.8,-5.025,4,3.975,-5.2,3.75,5.2,-5.025,4,5.025,3.8,3.5,-5.2,3.8,3.75,-5.2,3.8,3.5,-3.8,3.8,3.75,-3.8,5.025,4,5.025,3.975,4,5.025,5.025,4,3.975,3.975,4,3.975,5.2,3.5,-3.8,3.8,3.5,-3.8,5.2,3.75,-3.8,3.8,3.75,-3.8,-5.2,3.5,3.8,-3.8,3.5,3.8,-5.2,3.75,3.8,-3.8,3.75,3.8,-3.8,3.75,3.8,-3.8,3.75,5.2,-3.975,4,3.975,-3.975,4,5.025,5.2,3.75,3.8,5.2,3.75,5.2,5.025,4,3.975,5.025,4,5.025,3.8,3.75,-5.2,5.2,3.75,-5.2,3.975,4,-5.025,5.025,4,-5.025,3.8,3.5,-5.2,5.2,3.5,-5.2,3.8,3.75,-5.2,5.2,3.75,-5.2,-4,3.5,4,-4,3,4,-4,3.5,5,-4,3,5,4,2.5,-4.5,-4,2.5,-4.5,-3.8,3.5,3.8,-4,3.5,5,-3.8,3.5,5.2,-5.2,3.5,5.2,-5,3.5,5,-5,3.5,4,-4,3.5,4,-5.2,3.5,3.8,-4,2.5,-5,-4,0,-5,-4,2.5,-4.5,-4,0,-4.5,-4,1.5,-4.5,-4,1,-4,-4,1.5,-4,-4,1,4,-4,1.5,4,4,1.5,-4,4,1,-4,4,1.5,4,4,1,4,5,0,5,4,0,5,5,3.5,5,4,2.5,5,4,3,5,-4,2.5,5,-4,3,5,4,3.5,5,-5,3.5,5,-5,0,5,-4,0,5,-4,3.5,5,5.2,3.5,-5.2,5,3.5,-4,5.2,3.5,-3.8,3.8,3.5,-3.8,4,3.5,-4,4,3.5,-5,5,3.5,-5,3.8,3.5,-5.2,-5,3.5,-5,-5,0.5,-4,-5,0,-5,-5,0,5,-5,0.5,4,-5,3.5,5,-5,1,4,-5,3.5,4,-5,1,-4,-5,3.5,-4,4,2.5,-4.5,4,2.5,-5,-4,2.5,-4.5,-4,2.5,-5,-5,0,-5,-4,0,-5,-5,3.5,-5,-4,2.5,-5,-4,3,-5,4,2.5,-5,4,3,-5,-4,3.5,-5,5,3.5,-5,5,0,-5,4,0,-5,4,3.5,-5,5,1,-4,4.2,1.5,-4,5,3.5,-4,4.2,2,-4,4,3,-4,-4.2,2,-4,4,3.5,-4,-4,3,-4,-5,3.5,-4,-4.2,1.5,-4,-4,1,-4,-5,1,-4,-4,1.5,-4,-4,3.5,-4,4,1.5,-4,4,1,-4,4,1,4,5,1,4,4,1.5,4,4.2,1.5,4,5,3.5,4,4.2,2,4,4,3,4,-4.2,2,4,-4,3,4,-5,3.5,4,-4.2,1.5,4,-4,1,4,-5,1,4,-4,1.5,4,-4,3.5,4,4,3.5,4,-4,3.5,-5,-4,3,-5,-4,3.5,-4,-4,3,-4,4,3,-5,4,3.5,-5,4,3,-4,4,3.5,-4,4,3,-4,-4,3,-4,4,3,-5,-4,3,-5,-3.8,3.5,-5.2,-4,3.5,-4,-3.8,3.5,-3.8,-5.2,3.5,-3.8,-5,3.5,-4,-5,3.5,-5,-4,3.5,-5,-5.2,3.5,-5.2,5,3.5,-5,5,0,-5,5,3.5,-4,5,0.5,-4,5,1,-4,5,0,5,5,0.5,4,5,1,4,5,3.5,5,5,3.5,4,4,3,4,4,3.5,4,4,3,5,4,3.5,5,-4,2.5,4.5,4,2.5,4.5,4,0,4.5,4,1.5,4.5,4,0,5,4,2.5,4.5,4,2.5,5,5.2,3.5,3.8,5,3.5,5,5.2,3.5,5.2,3.8,3.5,5.2,4,3.5,5,4,3.5,4,5,3.5,4,3.8,3.5,3.8,-4,0,5,-4,0,4.5,-5,0,5,-4,0,-4.5,-4,0,-5,-5,0,-5,4,0,-4.5,4,0,4.5,5,0,-5,4,0,5,5,0,5,4,0,-5,4,0,-5,4,2.5,-5,4,0,-4.5,4,2.5,-4.5,4,1.5,-4.5,-4,2.5,4.5,-4,1.5,4.5,-4,2.5,5,-4,0,4.5,-4,0,5,4,3,4,4,3,5,-4,3,4,-4,3,5,4,2.5,5,4,2.5,4.5,-4,2.5,5,-4,2.5,4.5 + } + PolygonVertexIndex: *756 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,3,2,-221,221,220,-3,222,224,-224,225,223,-225,226,223,-226,227,226,-226,223,228,-223,229,222,-229,227,229,-229,225,229,-228,230,232,-232,233,231,-233,234,233,-233,235,237,-237,238,236,-238,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,246,-246,248,246,-248,249,248,-248,250,247,-246,249,251,-249,251,252,-249,253,248,-253,254,251,-250,255,257,-257,258,256,-258,259,256,-259,260,259,-259,256,261,-256,262,255,-262,260,262,-262,258,262,-261,263,265,-265,266,264,-266,267,264,-267,268,267,-267,267,268,-270,270,269,-269,264,271,-264,272,263,-272,273,275,-275,276,274,-276,277,279,-279,280,278,-280,281,280,-280,282,280,-282,283,282,-282,284,281,-280,283,285,-283,285,286,-283,287,282,-287,288,285,-284,289,291,-291,292,290,-292,293,292,-292,294,292,-294,295,293,-292,293,296,-295,296,297,-295,294,297,-299,298,297,-300,300,299,-298,301,298,-300,302,297,-297,290,303,-290,304,289,-304,305,307,-307,308,306,-308,306,308,-310,310,309,-309,311,309,-311,312,311,-311,313,311,-313,313,312,-315,312,315,-315,315,316,-315,317,314,-317,318,316,-316,319,313,-315,320,309,-312,321,323,-323,324,322,-324,325,327,-327,328,326,-328,329,331,-331,332,330,-332,333,335,-335,336,334,-336,337,334,-337,338,337,-337,334,339,-334,340,333,-340,338,340,-340,336,340,-339,341,343,-343,344,342,-344,345,344,-344,342,344,-347,347,346,-345,348,346,-348,349,346,-349,350,349,-349,351,353,-353,354,352,-354,71,70,-356,356,355,-71,357,359,-359,360,358,-360,361,360,-360,362,364,-364,365,363,-365,366,363,-366,367,366,-366,363,368,-363,369,362,-369,367,369,-369,365,369,-368,370,372,-372,373,371,-373,374,373,-373,375,374,-373,373,376,-372,377,371,-377,376,378,-378,377,378,-380,380,379,-379,381,378,-377,382,384,-384,385,383,-385,386,385,-385,387,389,-389,390,388,-390,391,390,-390,392,394,-394,395,393,-395,396,398,-398,399,397,-399 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2268 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *800 { + a: 15.74803,-1.763518E-28,-15.74803,-1.763518E-28,15.74803,5.905512,-15.74803,5.905512,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,20.47244,15.74803,20.47244,-15.74803,19.68504,15.74803,19.68504,-15.74803,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,15.74803,7.874016,15.74803,5.905512,-15.74803,7.874016,-15.74803,5.905512,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,19.68504,1.968504,19.68504,3.937008,20.47244,1.968504,20.47244,3.937008,-15.74803,15.74803,-15.74803,-15.74803,-16.53543,15.74803,-16.53543,-15.74803,-16.53543,-15.74803,-16.53543,15.74803,16.53543,-15.74803,16.53543,15.74803,-20.47244,-15.74803,-20.47244,15.74803,-19.68504,-15.74803,-19.68504,15.74803,-15.74803,-15.74803,-15.74803,15.74803,16.53543,15.74803,16.53543,-15.74803,15.74803,15.74803,15.74803,-15.74803,-19.68504,15.74803,-19.68504,-15.74803,-20.47244,15.74803,-20.47244,-15.74803,-15.74803,5.905512,-15.74803,7.874016,15.74803,5.905512,15.74803,7.874016,-15.74803,1.968504,-15.74803,3.937008,15.74803,1.968504,15.74803,3.937008,15.74803,-15.74803,15.74803,15.74803,19.68504,-15.74803,19.68504,15.74803,20.47244,-15.74803,20.47244,15.74803,15.74803,3.937008,15.74803,1.968504,-15.74803,3.937008,-15.74803,1.968504,15.74803,-1.763518E-28,-15.74803,-1.763518E-28,15.74803,5.905512,-15.74803,5.905512,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,14.96063,13.77953,14.96063,14.76378,20.47244,13.77953,20.47244,14.76378,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,-14.96063,0.3547855,-20.47244,0.3547855,-15.64961,1.556218,-19.78346,1.556218,20.47244,0.3547855,14.96063,0.3547855,19.78346,1.556218,15.64961,1.556218,14.96063,20.67432,15.64961,21.87575,20.47244,20.67432,19.78346,21.87575,20.47244,14.76378,20.47244,13.77953,14.96063,14.76378,14.96063,13.77953,-19.78346,-15.64961,-15.64961,-15.64961,-19.78346,-19.78346,-15.64961,-19.78346,20.47244,20.67432,14.96063,20.67432,19.78346,21.87575,15.64961,21.87575,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,-14.96063,14.76378,-14.96063,13.77953,-20.47244,14.76378,-20.47244,13.77953,-20.47244,20.67432,-19.78346,21.87575,-14.96063,20.67432,-15.64961,21.87575,-20.47244,14.76378,-14.96063,14.76378,-20.47244,13.77953,-14.96063,13.77953,-14.96063,14.76378,-14.96063,13.77953,-20.47244,14.76378,-20.47244,13.77953,20.47244,20.67432,14.96063,20.67432,19.78346,21.87575,15.64961,21.87575,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,-14.96063,20.67432,-20.47244,20.67432,-15.64961,21.87575,-19.78346,21.87575,-20.47244,0.3547855,-19.78346,1.556218,-14.96063,0.3547855,-15.64961,1.556218,-14.96063,20.67432,-20.47244,20.67432,-15.64961,21.87575,-19.78346,21.87575,15.64961,-15.64961,19.78346,-15.64961,15.64961,-19.78346,19.78346,-19.78346,20.47244,14.76378,20.47244,13.77953,14.96063,14.76378,14.96063,13.77953,20.47244,20.67432,14.96063,20.67432,19.78346,21.87575,15.64961,21.87575,20.47244,0.3547855,14.96063,0.3547855,19.78346,1.556218,15.64961,1.556218,14.96063,13.77953,14.96063,14.76378,20.47244,13.77953,20.47244,14.76378,15.64961,19.78346,19.78346,19.78346,15.64961,15.64961,19.78346,15.64961,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,20.47244,0.3547855,14.96063,0.3547855,19.78346,1.556218,15.64961,1.556218,14.96063,0.3547855,15.64961,1.556218,20.47244,0.3547855,19.78346,1.556218,-20.47244,13.77953,-20.47244,14.76378,-14.96063,13.77953,-14.96063,14.76378,-19.78346,19.78346,-15.64961,19.78346,-19.78346,15.64961,-15.64961,15.64961,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,-14.96063,20.67432,-20.47244,20.67432,-15.64961,21.87575,-19.78346,21.87575,-14.96063,0.3547855,-20.47244,0.3547855,-15.64961,1.556218,-19.78346,1.556218,-14.96063,0.3547855,-20.47244,0.3547855,-15.64961,1.556218,-19.78346,1.556218,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,-15.74803,13.77953,-15.74803,11.81102,-19.68504,13.77953,-19.68504,11.81102,-15.74803,9.84252,15.74803,9.84252,-14.96063,14.96063,-15.74803,19.68504,-14.96063,20.47244,-20.47244,20.47244,-19.68504,19.68504,-19.68504,15.74803,-15.74803,15.74803,-20.47244,14.96063,19.68504,9.84252,19.68504,1.05405E-14,17.71654,9.84252,17.71654,1.05405E-14,17.71654,5.905512,-15.74803,3.937008,-15.74803,5.905512,15.74803,3.937008,15.74803,5.905512,15.74803,5.905512,15.74803,3.937008,-15.74803,5.905512,-15.74803,3.937008,19.68504,-4.078818E-12,15.74803,-4.078818E-12,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-15.74803,9.84252,-15.74803,11.81102,15.74803,13.77953,-19.68504,13.77953,-19.68504,-4.078818E-12,-15.74803,-4.078818E-12,-15.74803,13.77953,20.47244,-20.47244,19.68504,-15.74803,20.47244,-14.96063,14.96063,-14.96063,15.74803,-15.74803,15.74803,-19.68504,19.68504,-19.68504,14.96063,-20.47244,-19.68504,13.77953,-15.74803,1.968504,-19.68504,-2.675539E-13,19.68504,-2.675539E-13,15.74803,1.968504,19.68504,13.77953,15.74803,3.937008,15.74803,13.77953,-15.74803,3.937008,-15.74803,13.77953,15.74803,-17.71654,15.74803,-19.68504,-15.74803,-17.71654,-15.74803,-19.68504,19.68504,-1.719211E-11,15.74803,-1.719211E-11,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-15.74803,9.84252,-15.74803,11.81102,15.74803,13.77953,-19.68504,13.77953,-19.68504,-1.719211E-11,-15.74803,-1.719211E-11,-15.74803,13.77953,19.68504,3.937008,16.53543,5.905512,19.68504,13.77953,16.53543,7.874016,15.74803,11.81102,-16.53543,7.874016,15.74803,13.77953,-15.74803,11.81102,-19.68504,13.77953,-16.53543,5.905512,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-15.74803,13.77953,15.74803,5.905512,15.74803,3.937008,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,13.77953,-16.53543,7.874016,-15.74803,11.81102,16.53543,7.874016,15.74803,11.81102,19.68504,13.77953,16.53543,5.905512,15.74803,3.937008,19.68504,3.937008,15.74803,5.905512,15.74803,13.77953,-15.74803,13.77953,19.68504,13.77953,19.68504,11.81102,15.74803,13.77953,15.74803,11.81102,-19.68504,11.81102,-19.68504,13.77953,-15.74803,11.81102,-15.74803,13.77953,-15.74803,-15.74803,15.74803,-15.74803,-15.74803,-19.68504,15.74803,-19.68504,-14.96063,-20.47244,-15.74803,-15.74803,-14.96063,-14.96063,-20.47244,-14.96063,-19.68504,-15.74803,-19.68504,-19.68504,-15.74803,-19.68504,-20.47244,-20.47244,19.68504,13.77953,19.68504,1.471389E-13,15.74803,13.77953,15.74803,1.968504,15.74803,3.937008,-19.68504,1.471389E-13,-15.74803,1.968504,-15.74803,3.937008,-19.68504,13.77953,-15.74803,13.77953,15.74803,11.81102,15.74803,13.77953,19.68504,11.81102,19.68504,13.77953,-15.74803,9.84252,15.74803,9.84252,17.71654,2.1081E-14,17.71654,5.905512,19.68504,2.1081E-14,17.71654,9.84252,19.68504,9.84252,20.47244,14.96063,19.68504,19.68504,20.47244,20.47244,14.96063,20.47244,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,14.96063,14.96063,-15.74803,19.68504,-15.74803,17.71654,-19.68504,19.68504,-15.74803,-17.71654,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-17.71654,15.74803,17.71654,19.68504,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,-19.68504,2.258679E-14,-19.68504,9.84252,-17.71654,2.258679E-14,-17.71654,9.84252,-17.71654,5.905512,-17.71654,9.84252,-17.71654,5.905512,-19.68504,9.84252,-17.71654,3.312729E-14,-19.68504,3.312729E-14,-15.74803,15.74803,-15.74803,19.68504,15.74803,15.74803,15.74803,19.68504,15.74803,19.68504,15.74803,17.71654,-15.74803,19.68504,-15.74803,17.71654 + } + UVIndex: *756 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,3,2,220,221,220,2,222,224,223,225,223,224,226,223,225,227,226,225,223,228,222,229,222,228,227,229,228,225,229,227,230,232,231,233,231,232,234,233,232,235,237,236,238,236,237,239,241,240,242,240,241,243,245,244,246,244,245,247,246,245,248,246,247,249,248,247,250,247,245,249,251,248,251,252,248,253,248,252,254,251,249,255,257,256,258,256,257,259,256,258,260,259,258,256,261,255,262,255,261,260,262,261,258,262,260,263,265,264,266,264,265,267,264,266,268,267,266,267,268,269,270,269,268,264,271,263,272,263,271,273,275,274,276,274,275,277,279,278,280,278,279,281,280,279,282,280,281,283,282,281,284,281,279,283,285,282,285,286,282,287,282,286,288,285,283,289,291,290,292,290,291,293,292,291,294,292,293,295,293,291,293,296,294,296,297,294,294,297,298,298,297,299,300,299,297,301,298,299,302,297,296,290,303,289,304,289,303,305,307,306,308,306,307,306,308,309,310,309,308,311,309,310,312,311,310,313,311,312,313,312,314,312,315,314,315,316,314,317,314,316,318,316,315,319,313,314,320,309,311,321,323,322,324,322,323,325,327,326,328,326,327,329,331,330,332,330,331,333,335,334,336,334,335,337,334,336,338,337,336,334,339,333,340,333,339,338,340,339,336,340,338,341,343,342,344,342,343,345,344,343,342,344,346,347,346,344,348,346,347,349,346,348,350,349,348,351,353,352,354,352,353,71,70,355,356,355,70,357,359,358,360,358,359,361,360,359,362,364,363,365,363,364,366,363,365,367,366,365,363,368,362,369,362,368,367,369,368,365,369,367,370,372,371,373,371,372,374,373,372,375,374,372,373,376,371,377,371,376,376,378,377,377,378,379,380,379,378,381,378,376,382,384,383,385,383,384,386,385,384,387,389,388,390,388,389,391,390,389,392,394,393,395,393,394,396,398,397,399,397,398 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *252 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_stone, Model::RootNode + C: "OO",4614161211086453569,0 + + ;Geometry::, Model::Mesh bridge_stone + C: "OO",5460174168087802945,4614161211086453569 + + ;Material::stone, Model::Mesh bridge_stone + C: "OO",3038,4614161211086453569 + + ;Material::stoneDark, Model::Mesh bridge_stone + C: "OO",3040,4614161211086453569 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stone.fbx.import new file mode 100644 index 0000000..c7f8439 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bvbsc1g2layx0" +path="res://.godot/imported/bridge_stone.fbx-65d0d7fc85dd4a6c359bce26afe0e79e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_stone.fbx" +dest_files=["res://.godot/imported/bridge_stone.fbx-65d0d7fc85dd4a6c359bce26afe0e79e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneNarrow.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneNarrow.fbx new file mode 100644 index 0000000..a0d0f0e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneNarrow.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 10 + Millisecond: 971 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_stoneNarrow.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_stoneNarrow.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4686872599687392461, "Model::bridge_stoneNarrow", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5255910374762927615, "Geometry::", "Mesh" { + Vertices: *1200 { + a: -4,0,-3.5,4,0,-3.5,-4,1.5,-3.5,4,1.5,-3.5,-5,0.5,3,-5.2,0.5,3,-5,1,3,-5.2,1,3,5.2,0.5,3,5.2,0.5,-3,5,0.5,3,5,0.5,-3,5,0.5,-3,5.2,0.5,-3,5,1,-3,5.2,1,-3,4.2,2,-3,4.2,1.5,-3,4.2,2,3,4.2,1.5,3,5.2,0.5,3,5,0.5,3,5.2,1,3,5,1,3,-5,0.5,-3,-5,1,-3,-5.2,0.5,-3,-5.2,1,-3,-4,1.5,3,-4,1.5,-3,-4.2,1.5,3,-4.2,1.5,-3,4.2,2,-3,4.2,2,3,-4.2,2,-3,-4.2,2,3,5.2,1,-3,5.2,1,3,5,1,-3,5,1,3,4,1,-3,4,1,3,4.2,1.5,3,4.2,1.5,-3,4,1.5,3,4,1.5,-3,-5,0.5,3,-5,0.5,-3,-5.2,0.5,3,-5.2,0.5,-3,-4.2,1.5,-3,-4.2,2,-3,-4.2,1.5,3,-4.2,2,3,-5.2,0.5,-3,-5.2,1,-3,-5.2,0.5,3,-5.2,1,3,-4,1,-3,-4,1,3,-5,1,-3,-5,1,3,-5.2,1,-3,-5.2,1,3,5.2,1,-3,5.2,0.5,-3,5.2,1,3,5.2,0.5,3,4,0,3.5,-4,0,3.5,4,1.5,3.5,-4,1.5,3.5,3.8,3,2.8,5.2,3,2.8,3.8,3.25,2.8,5.2,3.25,2.8,3.8,3,2.8,3.8,3.25,2.8,3.8,3,4.2,3.8,3.25,4.2,-5.2,3,-4.2,-3.8,3,-4.2,-5.2,3.25,-4.2,-3.8,3.25,-4.2,-3.8,3.25,4.2,-5.2,3.25,4.2,-3.975,3.5,4.025,-5.025,3.5,4.025,-5.2,3.25,-4.2,-3.8,3.25,-4.2,-5.025,3.5,-4.025,-3.975,3.5,-4.025,3.8,3.25,2.8,3.975,3.5,2.975,3.8,3.25,4.2,3.975,3.5,4.025,5.2,3.25,-4.2,5.2,3,-4.2,5.2,3.25,-2.8,5.2,3,-2.8,5.025,3.5,-2.975,3.975,3.5,-2.975,5.025,3.5,-4.025,3.975,3.5,-4.025,-3.8,3.25,-4.2,-3.8,3.25,-2.8,-3.975,3.5,-4.025,-3.975,3.5,-2.975,-3.8,3,-2.8,-5.2,3,-2.8,-3.8,3.25,-2.8,-5.2,3.25,-2.8,5.2,3.25,2.8,5.2,3,2.8,5.2,3.25,4.2,5.2,3,4.2,3.8,3.25,-4.2,3.975,3.5,-4.025,3.8,3.25,-2.8,3.975,3.5,-2.975,-5.2,3.25,-4.2,-5.2,3.25,-2.8,-5.2,3,-4.2,-5.2,3,-2.8,-3.8,3.25,2.8,-3.8,3,2.8,-3.8,3.25,4.2,-3.8,3,4.2,5.2,3.25,-2.8,3.8,3.25,-2.8,5.025,3.5,-2.975,3.975,3.5,-2.975,-3.8,3,4.2,-5.2,3,4.2,-3.8,3.25,4.2,-5.2,3.25,4.2,3.8,3.25,2.8,5.2,3.25,2.8,3.975,3.5,2.975,5.025,3.5,2.975,-5.2,3.25,-4.2,-5.025,3.5,-4.025,-5.2,3.25,-2.8,-5.025,3.5,-2.975,-3.8,3.25,-2.8,-5.2,3.25,-2.8,-3.975,3.5,-2.975,-5.025,3.5,-2.975,-3.975,3.5,-2.975,-5.025,3.5,-2.975,-3.975,3.5,-4.025,-5.025,3.5,-4.025,-3.8,3.25,-4.2,-3.8,3,-4.2,-3.8,3.25,-2.8,-3.8,3,-2.8,-5.2,3.25,2.8,-3.8,3.25,2.8,-5.025,3.5,2.975,-3.975,3.5,2.975,5.2,3.25,4.2,3.8,3.25,4.2,5.025,3.5,4.025,3.975,3.5,4.025,-5.2,3,2.8,-5.2,3.25,2.8,-5.2,3,4.2,-5.2,3.25,4.2,-3.975,3.5,4.025,-5.025,3.5,4.025,-3.975,3.5,2.975,-5.025,3.5,2.975,5.2,3,4.2,3.8,3,4.2,5.2,3.25,4.2,3.8,3.25,4.2,5.2,3.25,-4.2,5.2,3.25,-2.8,5.025,3.5,-4.025,5.025,3.5,-2.975,-5.2,3.25,2.8,-5.025,3.5,2.975,-5.2,3.25,4.2,-5.025,3.5,4.025,3.8,3,-4.2,3.8,3.25,-4.2,3.8,3,-2.8,3.8,3.25,-2.8,5.025,3.5,4.025,3.975,3.5,4.025,5.025,3.5,2.975,3.975,3.5,2.975,5.2,3,-2.8,3.8,3,-2.8,5.2,3.25,-2.8,3.8,3.25,-2.8,-5.2,3,2.8,-3.8,3,2.8,-5.2,3.25,2.8,-3.8,3.25,2.8,-3.8,3.25,2.8,-3.8,3.25,4.2,-3.975,3.5,2.975,-3.975,3.5,4.025,5.2,3.25,2.8,5.2,3.25,4.2,5.025,3.5,2.975,5.025,3.5,4.025,3.8,3.25,-4.2,5.2,3.25,-4.2,3.975,3.5,-4.025,5.025,3.5,-4.025,3.8,3,-4.2,5.2,3,-4.2,3.8,3.25,-4.2,5.2,3.25,-4.2,-3.8,3,2.8,-4,3,4,-3.8,3,4.2,-5.2,3,4.2,-5,3,4,-5,3,3,-4,3,3,-5.2,3,2.8,-4,2,-4,-4,0,-4,-4,2,-3.5,-4,0,-3.5,-4,1.5,-3.5,-4,1,-3,-4,1.5,-3,-4,1,3,-4,1.5,3,4,1.5,-3,4,1,-3,4,1.5,3,4,1,3,5,0,4,4,0,4,5,3,4,4,2,4,4,2.5,4,-4,2,4,-4,2.5,4,4,3,4,-5,3,4,-5,0,4,-4,0,4,-4,3,4,5.2,3,-4.2,5,3,-3,5.2,3,-2.8,3.8,3,-2.8,4,3,-3,4,3,-4,5,3,-4,3.8,3,-4.2,-5,3,-4,-5,0.5,-3,-5,0,-4,-5,0,4,-5,0.5,3,-5,3,4,-5,1,3,-5,3,3,-5,1,-3,-5,3,-3,4,2,-3.5,4,2,-4,-4,2,-3.5,-4,2,-4,-5,0,-4,-4,0,-4,-5,3,-4,-4,2,-4,-4,2.5,-4,4,2,-4,4,2.5,-4,-4,3,-4,5,3,-4,5,0,-4,4,0,-4,4,3,-4,5,1,-3,4.2,1.5,-3,5,3,-3,4.2,2,-3,4,2.5,-3,-4.2,2,-3,4,3,-3,-4,2.5,-3,-5,3,-3,-4.2,1.5,-3,-4,1,-3,-5,1,-3,-4,1.5,-3,-4,3,-3,4,1.5,-3,4,1,-3,4,1,3,5,1,3,4,1.5,3,4.2,1.5,3,5,3,3,4.2,2,3,4,2.5,3,-4.2,2,3,-4,2.5,3,-5,3,3,-4.2,1.5,3,-4,1,3,-5,1,3,-4,1.5,3,-4,3,3,4,3,3,-3.8,3,-4.2,-4,3,-3,-3.8,3,-2.8,-5.2,3,-2.8,-5,3,-3,-5,3,-4,-4,3,-4,-5.2,3,-4.2,5,3,-4,5,0,-4,5,3,-3,5,0.5,-3,5,1,-3,5,0,4,5,0.5,3,5,1,3,5,3,4,5,3,3,-4,2,3.5,4,2,3.5,4,0,3.5,4,1.5,3.5,4,0,4,4,2,3.5,4,2,4,5.2,3,2.8,5,3,4,5.2,3,4.2,3.8,3,4.2,4,3,4,4,3,3,5,3,3,3.8,3,2.8,-4,0,4,-4,0,3.5,-5,0,4,-4,0,-3.5,-4,0,-4,-5,0,-4,4,0,-3.5,4,0,3.5,5,0,-4,4,0,4,5,0,4,4,0,-4,4,0,-4,4,2,-4,4,0,-3.5,4,2,-3.5,4,1.5,-3.5,-4,2,3.5,-4,1.5,3.5,-4,2,4,-4,0,3.5,-4,0,4,4,2.5,3,4,2.5,4,-4,2.5,3,-4,2.5,4,4,2,4,4,2,3.5,-4,2,4,-4,2,3.5,4,2,-3.5,-4,2,-3.5,4,2.5,-3,-4,2.5,-3,4,2.5,-4,-4,2.5,-4,-4,3,3,-4,2.5,3,-4,3,4,-4,2.5,4,4,2.5,3,4,3,3,4,2.5,4,4,3,4,4,2.5,-4,4,3,-4,4,2.5,-3,4,3,-3,-4,3,-4,-4,2.5,-4,-4,3,-3,-4,2.5,-3 + } + PolygonVertexIndex: *756 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,217,-220,221,220,-220,217,222,-217,223,216,-223,221,223,-223,219,223,-222,224,226,-226,227,225,-227,228,227,-227,229,231,-231,232,230,-232,233,235,-235,236,234,-236,237,239,-239,240,238,-240,241,240,-240,242,240,-242,243,242,-242,244,241,-240,243,245,-243,245,246,-243,247,242,-247,248,245,-244,249,251,-251,252,250,-252,253,250,-253,254,253,-253,250,255,-250,256,249,-256,254,256,-256,252,256,-255,257,259,-259,260,258,-260,261,258,-261,262,261,-261,261,262,-264,264,263,-263,258,265,-258,266,257,-266,267,269,-269,270,268,-270,271,273,-273,274,272,-274,275,274,-274,276,274,-276,277,276,-276,278,275,-274,277,279,-277,279,280,-277,281,276,-281,282,279,-278,283,285,-285,286,284,-286,287,286,-286,288,286,-288,289,287,-286,287,290,-289,290,291,-289,288,291,-293,292,291,-294,294,293,-292,295,292,-294,296,291,-291,284,297,-284,298,283,-298,299,301,-301,302,300,-302,300,302,-304,304,303,-303,305,303,-305,306,305,-305,307,305,-307,307,306,-309,306,309,-309,309,310,-309,311,308,-311,312,310,-310,313,307,-309,314,303,-306,315,317,-317,318,316,-318,319,316,-319,320,319,-319,316,321,-316,322,315,-322,320,322,-322,318,322,-321,323,325,-325,326,324,-326,327,326,-326,324,326,-329,329,328,-327,330,328,-330,331,328,-331,332,331,-331,71,70,-334,334,333,-71,335,337,-337,338,336,-338,339,338,-338,340,342,-342,343,341,-343,344,341,-344,345,344,-344,341,346,-341,347,340,-347,345,347,-347,343,347,-346,348,350,-350,351,349,-351,352,351,-351,353,352,-351,351,354,-350,355,349,-355,354,356,-356,355,356,-358,358,357,-357,359,356,-355,360,362,-362,363,361,-363,364,363,-363,365,367,-367,368,366,-368,369,368,-368,370,372,-372,373,371,-373,374,376,-376,377,375,-377,3,2,-379,379,378,-3,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2268 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *800 { + a: 15.74803,-3.67203E-28,-15.74803,-3.67203E-28,15.74803,5.905512,-15.74803,5.905512,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,20.47244,11.81102,20.47244,-11.81102,19.68504,11.81102,19.68504,-11.81102,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,11.81102,7.874016,11.81102,5.905512,-11.81102,7.874016,-11.81102,5.905512,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,19.68504,1.968504,19.68504,3.937008,20.47244,1.968504,20.47244,3.937008,-15.74803,11.81102,-15.74803,-11.81102,-16.53543,11.81102,-16.53543,-11.81102,-16.53543,-11.81102,-16.53543,11.81102,16.53543,-11.81102,16.53543,11.81102,-20.47244,-11.81102,-20.47244,11.81102,-19.68504,-11.81102,-19.68504,11.81102,-15.74803,-11.81102,-15.74803,11.81102,16.53543,11.81102,16.53543,-11.81102,15.74803,11.81102,15.74803,-11.81102,-19.68504,11.81102,-19.68504,-11.81102,-20.47244,11.81102,-20.47244,-11.81102,-11.81102,5.905512,-11.81102,7.874016,11.81102,5.905512,11.81102,7.874016,-11.81102,1.968504,-11.81102,3.937008,11.81102,1.968504,11.81102,3.937008,15.74803,-11.81102,15.74803,11.81102,19.68504,-11.81102,19.68504,11.81102,20.47244,-11.81102,20.47244,11.81102,11.81102,3.937008,11.81102,1.968504,-11.81102,3.937008,-11.81102,1.968504,15.74803,0,-15.74803,0,15.74803,5.905512,-15.74803,5.905512,-14.96063,11.81102,-20.47244,11.81102,-14.96063,12.79528,-20.47244,12.79528,11.02362,11.81102,11.02362,12.79528,16.53543,11.81102,16.53543,12.79528,20.47244,11.81102,14.96063,11.81102,20.47244,12.79528,14.96063,12.79528,-14.96063,0.99985,-20.47244,0.99985,-15.64961,2.201283,-19.78346,2.201283,20.47244,0.99985,14.96063,0.99985,19.78346,2.201283,15.64961,2.201283,11.02362,19.06166,11.7126,20.26309,16.53543,19.06166,15.84646,20.26309,16.53543,12.79528,16.53543,11.81102,11.02362,12.79528,11.02362,11.81102,-19.78346,-11.7126,-15.64961,-11.7126,-19.78346,-15.84646,-15.64961,-15.84646,16.53543,19.06166,11.02362,19.06166,15.84646,20.26309,11.7126,20.26309,-14.96063,11.81102,-20.47244,11.81102,-14.96063,12.79528,-20.47244,12.79528,-11.02362,12.79528,-11.02362,11.81102,-16.53543,12.79528,-16.53543,11.81102,-16.53543,19.06166,-15.84646,20.26309,-11.02362,19.06166,-11.7126,20.26309,-16.53543,12.79528,-11.02362,12.79528,-16.53543,11.81102,-11.02362,11.81102,-11.02362,12.79528,-11.02362,11.81102,-16.53543,12.79528,-16.53543,11.81102,20.47244,16.80393,14.96063,16.80393,19.78346,18.00536,15.64961,18.00536,-14.96063,11.81102,-20.47244,11.81102,-14.96063,12.79528,-20.47244,12.79528,-14.96063,16.80393,-20.47244,16.80393,-15.64961,18.00536,-19.78346,18.00536,-16.53543,-1.257876,-15.84646,-0.05644314,-11.02362,-1.257876,-11.7126,-0.05644314,-14.96063,16.80393,-20.47244,16.80393,-15.64961,18.00536,-19.78346,18.00536,15.64961,-11.7126,19.78346,-11.7126,15.64961,-15.84646,19.78346,-15.84646,16.53543,12.79528,16.53543,11.81102,11.02362,12.79528,11.02362,11.81102,20.47244,16.80393,14.96063,16.80393,19.78346,18.00536,15.64961,18.00536,20.47244,0.99985,14.96063,0.99985,19.78346,2.201283,15.64961,2.201283,11.02362,11.81102,11.02362,12.79528,16.53543,11.81102,16.53543,12.79528,15.64961,15.84646,19.78346,15.84646,15.64961,11.7126,19.78346,11.7126,20.47244,11.81102,14.96063,11.81102,20.47244,12.79528,14.96063,12.79528,16.53543,-1.257876,11.02362,-1.257876,15.84646,-0.05644314,11.7126,-0.05644314,11.02362,-1.257876,11.7126,-0.05644314,16.53543,-1.257876,15.84646,-0.05644314,-16.53543,11.81102,-16.53543,12.79528,-11.02362,11.81102,-11.02362,12.79528,-19.78346,15.84646,-15.64961,15.84646,-19.78346,11.7126,-15.64961,11.7126,20.47244,11.81102,14.96063,11.81102,20.47244,12.79528,14.96063,12.79528,20.47244,11.81102,14.96063,11.81102,20.47244,12.79528,14.96063,12.79528,-11.02362,19.06166,-16.53543,19.06166,-11.7126,20.26309,-15.84646,20.26309,-11.02362,-1.257876,-16.53543,-1.257876,-11.7126,-0.05644314,-15.84646,-0.05644314,-14.96063,0.99985,-20.47244,0.99985,-15.64961,2.201283,-19.78346,2.201283,-14.96063,11.81102,-20.47244,11.81102,-14.96063,12.79528,-20.47244,12.79528,-14.96063,11.02362,-15.74803,15.74803,-14.96063,16.53543,-20.47244,16.53543,-19.68504,15.74803,-19.68504,11.81102,-15.74803,11.81102,-20.47244,11.02362,15.74803,7.874016,15.74803,0,13.77953,7.874016,13.77953,0,13.77953,5.905512,-11.81102,3.937008,-11.81102,5.905512,11.81102,3.937008,11.81102,5.905512,11.81102,5.905512,11.81102,3.937008,-11.81102,5.905512,-11.81102,3.937008,19.68504,-3.806351E-12,15.74803,-3.806351E-12,19.68504,11.81102,15.74803,7.874016,15.74803,9.84252,-15.74803,7.874016,-15.74803,9.84252,15.74803,11.81102,-19.68504,11.81102,-19.68504,-3.806351E-12,-15.74803,-3.806351E-12,-15.74803,11.81102,20.47244,-16.53543,19.68504,-11.81102,20.47244,-11.02362,14.96063,-11.02362,15.74803,-11.81102,15.74803,-15.74803,19.68504,-15.74803,14.96063,-16.53543,-15.74803,11.81102,-11.81102,1.968504,-15.74803,-4.973799E-13,15.74803,-4.973799E-13,11.81102,1.968504,15.74803,11.81102,11.81102,3.937008,11.81102,11.81102,-11.81102,3.937008,-11.81102,11.81102,15.74803,-13.77953,15.74803,-15.74803,-15.74803,-13.77953,-15.74803,-15.74803,19.68504,-1.603992E-11,15.74803,-1.603992E-11,19.68504,11.81102,15.74803,7.874016,15.74803,9.84252,-15.74803,7.874016,-15.74803,9.84252,15.74803,11.81102,-19.68504,11.81102,-19.68504,-1.603992E-11,-15.74803,-1.603992E-11,-15.74803,11.81102,19.68504,3.937008,16.53543,5.905512,19.68504,11.81102,16.53543,7.874016,15.74803,9.84252,-16.53543,7.874016,15.74803,11.81102,-15.74803,9.84252,-19.68504,11.81102,-16.53543,5.905512,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-15.74803,11.81102,15.74803,5.905512,15.74803,3.937008,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,11.81102,-16.53543,7.874016,-15.74803,9.84252,16.53543,7.874016,15.74803,9.84252,19.68504,11.81102,16.53543,5.905512,15.74803,3.937008,19.68504,3.937008,15.74803,5.905512,15.74803,11.81102,-15.74803,11.81102,-14.96063,-16.53543,-15.74803,-11.81102,-14.96063,-11.02362,-20.47244,-11.02362,-19.68504,-11.81102,-19.68504,-15.74803,-15.74803,-15.74803,-20.47244,-16.53543,15.74803,11.81102,15.74803,2.664535E-13,11.81102,11.81102,11.81102,1.968504,11.81102,3.937008,-15.74803,2.664535E-13,-11.81102,1.968504,-11.81102,3.937008,-15.74803,11.81102,-11.81102,11.81102,-15.74803,7.874016,15.74803,7.874016,13.77953,0,13.77953,5.905512,15.74803,0,13.77953,7.874016,15.74803,7.874016,20.47244,11.02362,19.68504,15.74803,20.47244,16.53543,14.96063,16.53543,15.74803,15.74803,15.74803,11.81102,19.68504,11.81102,14.96063,11.02362,-15.74803,15.74803,-15.74803,13.77953,-19.68504,15.74803,-15.74803,-13.77953,-15.74803,-15.74803,-19.68504,-15.74803,15.74803,-13.77953,15.74803,13.77953,19.68504,-15.74803,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,-15.74803,0,-15.74803,7.874016,-13.77953,0,-13.77953,7.874016,-13.77953,5.905512,-13.77953,7.874016,-13.77953,5.905512,-15.74803,7.874016,-13.77953,0,-15.74803,0,-15.74803,11.81102,-15.74803,15.74803,15.74803,11.81102,15.74803,15.74803,15.74803,15.74803,15.74803,13.77953,-15.74803,15.74803,-15.74803,13.77953,-15.74803,7.874016,15.74803,7.874016,-15.74803,-11.81102,15.74803,-11.81102,-15.74803,-15.74803,15.74803,-15.74803,-11.81102,11.81102,-11.81102,9.84252,-15.74803,11.81102,-15.74803,9.84252,11.81102,9.84252,11.81102,11.81102,15.74803,9.84252,15.74803,11.81102,-15.74803,9.84252,-15.74803,11.81102,-11.81102,9.84252,-11.81102,11.81102,15.74803,11.81102,15.74803,9.84252,11.81102,11.81102,11.81102,9.84252 + } + UVIndex: *756 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,217,219,221,220,219,217,222,216,223,216,222,221,223,222,219,223,221,224,226,225,227,225,226,228,227,226,229,231,230,232,230,231,233,235,234,236,234,235,237,239,238,240,238,239,241,240,239,242,240,241,243,242,241,244,241,239,243,245,242,245,246,242,247,242,246,248,245,243,249,251,250,252,250,251,253,250,252,254,253,252,250,255,249,256,249,255,254,256,255,252,256,254,257,259,258,260,258,259,261,258,260,262,261,260,261,262,263,264,263,262,258,265,257,266,257,265,267,269,268,270,268,269,271,273,272,274,272,273,275,274,273,276,274,275,277,276,275,278,275,273,277,279,276,279,280,276,281,276,280,282,279,277,283,285,284,286,284,285,287,286,285,288,286,287,289,287,285,287,290,288,290,291,288,288,291,292,292,291,293,294,293,291,295,292,293,296,291,290,284,297,283,298,283,297,299,301,300,302,300,301,300,302,303,304,303,302,305,303,304,306,305,304,307,305,306,307,306,308,306,309,308,309,310,308,311,308,310,312,310,309,313,307,308,314,303,305,315,317,316,318,316,317,319,316,318,320,319,318,316,321,315,322,315,321,320,322,321,318,322,320,323,325,324,326,324,325,327,326,325,324,326,328,329,328,326,330,328,329,331,328,330,332,331,330,71,70,333,334,333,70,335,337,336,338,336,337,339,338,337,340,342,341,343,341,342,344,341,343,345,344,343,341,346,340,347,340,346,345,347,346,343,347,345,348,350,349,351,349,350,352,351,350,353,352,350,351,354,349,355,349,354,354,356,355,355,356,357,358,357,356,359,356,354,360,362,361,363,361,362,364,363,362,365,367,366,368,366,367,369,368,367,370,372,371,373,371,372,374,376,375,377,375,376,3,2,378,379,378,2,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *252 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_stoneNarrow, Model::RootNode + C: "OO",4686872599687392461,0 + + ;Geometry::, Model::Mesh bridge_stoneNarrow + C: "OO",5255910374762927615,4686872599687392461 + + ;Material::stone, Model::Mesh bridge_stoneNarrow + C: "OO",3038,4686872599687392461 + + ;Material::stoneDark, Model::Mesh bridge_stoneNarrow + C: "OO",3040,4686872599687392461 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneNarrow.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneNarrow.fbx.import new file mode 100644 index 0000000..c2cf3f3 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneNarrow.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bbci8rn60n5vg" +path="res://.godot/imported/bridge_stoneNarrow.fbx-8049699153558929af64cbd52046fc73.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneNarrow.fbx" +dest_files=["res://.godot/imported/bridge_stoneNarrow.fbx-8049699153558929af64cbd52046fc73.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRound.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRound.fbx new file mode 100644 index 0000000..1414104 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRound.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 11 + Millisecond: 100 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_stoneRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_stoneRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4791902858657180854, "Model::bridge_stoneRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5040804040560394484, "Geometry::", "Mesh" { + Vertices: *1530 { + a: -5,0.5,4,-5.2,0.5,4,-5,1,4,-5.2,1,4,-4,1.5,4,-4,1.5,-4,-4.2,1.5,4,-4.2,1.5,-4,4.2,2,-4,4.2,2,4,-4.2,2,-4,-4.2,2,4,-5,0.5,4,-5,0.5,-4,-5.2,0.5,4,-5.2,0.5,-4,5.2,0.5,4,5,0.5,4,5.2,1,4,5,1,4,-4,1,-4,-4,1,4,-5,1,-4,-5,1,4,-5.2,1,-4,-5.2,1,4,-5.2,0.5,-4,-5.2,1,-4,-5.2,0.5,4,-5.2,1,4,5.2,1,-4,5.2,1,4,5,1,-4,5,1,4,4,1,-4,4,1,4,-4.2,1.5,-4,-4.2,2,-4,-4.2,1.5,4,-4.2,2,4,-5,0.5,-4,-5,1,-4,-5.2,0.5,-4,-5.2,1,-4,4.2,1.5,4,4.2,1.5,-4,4,1.5,4,4,1.5,-4,5,0.5,-4,5.2,0.5,-4,5,1,-4,5.2,1,-4,4.2,2,-4,4.2,1.5,-4,4.2,2,4,4.2,1.5,4,5.2,0.5,4,5.2,0.5,-4,5,0.5,4,5,0.5,-4,5.2,1,-4,5.2,0.5,-4,5.2,1,4,5.2,0.5,4,-2.73,-2.279417E-27,-4.5,-2.436432,0.4664859,-4.5,-4,0,-4.5,-3.569864,0.7067967,-4.5,-2.058636,0.8723532,-4.5,-3.016317,1.321747,-4.5,-1.899167,0.99,-4.5,-1.609673,1.203571,-4.5,-1.105063,1.448689,-4.5,-2.782662,1.5,-4.5,-0.5622499,1.599233,-4.5,-2.358495,1.823592,-4.5,5.486527E-13,1.65,-4.5,2.358495,1.823592,-4.5,1.619139,2.194983,-4.5,-1.619139,2.194983,-4.5,-0.8238094,2.423081,-4.5,0.8238094,2.423081,-4.5,5.486527E-13,2.5,-4.5,0.5622499,1.599233,-4.5,2.782662,1.5,-4.5,1.105063,1.448689,-4.5,3.016317,1.321747,-4.5,1.609673,1.203571,-4.5,1.899167,0.99,-4.5,2.058636,0.8723532,-4.5,3.569864,0.7067967,-4.5,2.436432,0.4664859,-4.5,4,0,-4.5,2.73,-1.602965E-30,-4.5,5.2,4,-3.8,3.8,4,-3.8,5.2,4.25,-3.8,3.8,4.25,-3.8,3.8,4,-5.2,5.2,4,-5.2,3.8,4.25,-5.2,5.2,4.25,-5.2,5.2,4.25,-5.2,5.2,4,-5.2,5.2,4.25,-3.8,5.2,4,-3.8,5.025,4.5,-3.975,3.975,4.5,-3.975,5.025,4.5,-5.025,3.975,4.5,-5.025,3.8,4.25,-5.2,5.2,4.25,-5.2,3.975,4.5,-5.025,5.025,4.5,-5.025,5.2,4.25,-3.8,3.8,4.25,-3.8,5.025,4.5,-3.975,3.975,4.5,-3.975,3.8,4.25,-5.2,3.975,4.5,-5.025,3.8,4.25,-3.8,3.975,4.5,-3.975,5.2,4.25,-5.2,5.2,4.25,-3.8,5.025,4.5,-5.025,5.025,4.5,-3.975,4,0,4.5,2.73,0,4.5,3.569864,0.7067967,4.5,2.436432,0.4664859,4.5,2.058636,0.8723532,4.5,3.016317,1.321747,4.5,1.899167,0.99,4.5,1.609673,1.203571,4.5,1.105063,1.448689,4.5,2.782662,1.5,4.5,0.9200526,1.5,4.5,0.5622499,1.599233,4.5,2.358495,1.823592,4.5,6.35282E-13,1.65,4.5,-2.358495,1.823592,4.5,-1.619139,2.194983,4.5,1.619139,2.194983,4.5,0.8238094,2.423081,4.5,-0.8238094,2.423081,4.5,6.641585E-13,2.5,4.5,-0.5622499,1.599233,4.5,-0.9200526,1.5,4.5,-2.782662,1.5,4.5,-1.105063,1.448689,4.5,-3.016317,1.321747,4.5,-1.609673,1.203571,4.5,-1.899167,0.99,4.5,-2.058636,0.8723532,4.5,-3.569864,0.7067967,4.5,-2.436432,0.4664859,4.5,-2.73,2.277814E-27,4.5,-4,0,4.5,-3.975,4.5,-3.975,-5.025,4.5,-3.975,-3.975,4.5,-5.025,-5.025,4.5,-5.025,-5.2,4,-5.2,-3.8,4,-5.2,-5.2,4.25,-5.2,-3.8,4.25,-5.2,-3.8,4.25,-3.8,-5.2,4.25,-3.8,-3.975,4.5,-3.975,-5.025,4.5,-3.975,3.8,4,-5.2,3.8,4.25,-5.2,3.8,4,-3.8,3.8,4.25,-3.8,-3.8,4,-3.8,-5.2,4,-3.8,-3.8,4.25,-3.8,-5.2,4.25,-3.8,-3.8,4.25,-5.2,-3.8,4.25,-3.8,-3.975,4.5,-5.025,-3.975,4.5,-3.975,5.2,4.25,3.8,5.2,4,3.8,5.2,4.25,5.2,5.2,4,5.2,3.8,4,3.8,3.8,4.25,3.8,3.8,4,5.2,3.8,4.25,5.2,-3.8,4.25,3.8,-3.8,4.25,5.2,-3.975,4.5,3.975,-3.975,4.5,5.025,-3.8,4.25,3.8,-3.8,4,3.8,-3.8,4.25,5.2,-3.8,4,5.2,-5.2,4.25,3.8,-3.8,4.25,3.8,-5.025,4.5,3.975,-3.975,4.5,3.975,-3.8,4,5.2,-5.2,4,5.2,-3.8,4.25,5.2,-5.2,4.25,5.2,5.2,4,5.2,3.8,4,5.2,5.2,4.25,5.2,3.8,4.25,5.2,3.8,4.25,3.8,3.975,4.5,3.975,3.8,4.25,5.2,3.975,4.5,5.025,-5.2,4.25,3.8,-5.025,4.5,3.975,-5.2,4.25,5.2,-5.025,4.5,5.025,-5.2,4.25,-5.2,-5.025,4.5,-5.025,-5.2,4.25,-3.8,-5.025,4.5,-3.975,-3.8,4.25,-5.2,-3.8,4,-5.2,-3.8,4.25,-3.8,-3.8,4,-3.8,-3.8,4.25,5.2,-5.2,4.25,5.2,-3.975,4.5,5.025,-5.025,4.5,5.025,3.8,4.25,3.8,5.2,4.25,3.8,3.975,4.5,3.975,5.025,4.5,3.975,-3.975,4.5,5.025,-5.025,4.5,5.025,-3.975,4.5,3.975,-5.025,4.5,3.975,-5.2,4,3.8,-3.8,4,3.8,-5.2,4.25,3.8,-3.8,4.25,3.8,5.2,4.25,5.2,3.8,4.25,5.2,5.025,4.5,5.025,3.975,4.5,5.025,-5.2,4.25,-5.2,-5.2,4.25,-3.8,-5.2,4,-5.2,-5.2,4,-3.8,-5.2,4.25,-5.2,-3.8,4.25,-5.2,-5.025,4.5,-5.025,-3.975,4.5,-5.025,5.025,4.5,5.025,3.975,4.5,5.025,5.025,4.5,3.975,3.975,4.5,3.975,5.2,4.25,3.8,5.2,4.25,5.2,5.025,4.5,3.975,5.025,4.5,5.025,-5.2,4,3.8,-5.2,4.25,3.8,-5.2,4,5.2,-5.2,4.25,5.2,3.8,4,3.8,5.2,4,3.8,3.8,4.25,3.8,5.2,4.25,3.8,-3.8,4,-5.2,-4,4,-4,-3.8,4,-3.8,-5.2,4,-3.8,-5,4,-4,-5,4,-5,-4,4,-5,-5.2,4,-5.2,4,1.5,-4,4,1,-4,4,1.5,4,4,1,4,-4,1,-4,-4,1.5,-4,-4,1,4,-4,1.5,4,4,3.5,-4,-4,3.5,-4,4,3.5,-5,-4,3.5,-5,4,3.5,-5,4,4,-5,4,3.5,-4,4,4,-4,-5,4,-5,-5,0.5,-4,-5,0,-5,-5,0,5,-5,0.5,4,-5,4,5,-5,1,4,-5,4,4,-5,1,-4,-5,4,-4,4,1,4,5,1,4,4,1.5,4,4.2,1.5,4,5,4,4,4.2,2,4,4,3.5,4,-4.2,2,4,-4,3.5,4,-5,4,4,-4.2,1.5,4,-5,1,4,-4,1,4,-4,1.5,4,-4,4,4,4,4,4,4,2.5,5,4,2.5,4.5,-4,2.5,5,6.641585E-13,2.5,4.5,-4,2.5,4.5,4,3.5,4,4,4,4,4,3.5,5,4,4,5,5,0,5,4,0,5,5,4,5,4,2.5,5,4,3.5,5,-4,2.5,5,-4,3.5,5,4,4,5,-5,4,5,-5,0,5,-4,0,5,-4,4,5,-3.8,4,3.8,-4,4,5,-3.8,4,5.2,-5.2,4,5.2,-5,4,5,-5,4,4,-4,4,4,-5.2,4,3.8,4,3.5,4,4,3.5,5,-4,3.5,4,-4,3.5,5,-4,4,4,-4,3.5,4,-4,4,5,-4,3.5,5,-4,0,5,-4,0,4.5,-5,0,5,-4,0,-4.5,-4,0,-5,-5,0,-5,-2.73,-2.279417E-27,-4.5,-2.73,2.277814E-27,4.5,4,2.5,-4.5,4,2.5,-5,5.486527E-13,2.5,-4.5,-4,2.5,-5,-4,2.5,-4.5,4,0,4.5,4,2.5,4.5,4,0,5,4,2.5,5,-4,2.5,4.5,-4,0,4.5,-4,2.5,5,-4,0,5,-4,2.5,-5,-4,0,-5,-4,2.5,-4.5,-4,0,-4.5,-4,2.5,-4.5,4,2.5,-4.5,4,0,4.5,4,0,-4.5,2.73,0,4.5,2.73,-1.602965E-30,-4.5,5,0,-5,4,0,5,5,0,5,4,0,-5,4,2.5,4.5,-4,2.5,4.5,-4,4,-5,-4,3.5,-5,-4,4,-4,-4,3.5,-4,-5,0,-5,-4,0,-5,-5,4,-5,-4,2.5,-5,-4,3.5,-5,4,2.5,-5,4,3.5,-5,-4,4,-5,5,4,-5,5,0,-5,4,0,-5,4,4,-5,5,4,-5,5,0,-5,5,4,-4,5,0.5,-4,5,1,-4,5,0,5,5,0.5,4,5,1,4,5,4,5,5,4,4,5.2,4,-5.2,5,4,-4,5.2,4,-3.8,3.8,4,-3.8,4,4,-4,4,4,-5,5,4,-5,3.8,4,-5.2,5.2,4,3.8,5,4,5,5.2,4,5.2,3.8,4,5.2,4,4,5,4,4,4,5,4,4,3.8,4,3.8,5,1,-4,4.2,1.5,-4,5,4,-4,4.2,2,-4,4,3.5,-4,-4.2,2,-4,4,4,-4,-4,3.5,-4,-5,4,-4,-4.2,1.5,-4,-5,1,-4,-4,1,-4,-4,1.5,-4,-4,4,-4,4,1.5,-4,4,1,-4,4,0,-5,4,2.5,-5,4,0,-4.5,4,2.5,-4.5,1.105063,1.448689,4.5,1.105063,1.448689,-4.5,0.9200526,1.5,4.5,0.5622499,1.599233,-4.5,0.5622499,1.599233,4.5,1.609673,1.203571,4.5,1.609673,1.203571,-4.5,1.105063,1.448689,4.5,1.105063,1.448689,-4.5,-0.5622499,1.599233,4.5,-0.5622499,1.599233,-4.5,-0.9200526,1.5,4.5,-1.105063,1.448689,-4.5,-1.105063,1.448689,4.5,2.058636,0.8723532,4.5,2.058636,0.8723532,-4.5,1.899167,0.99,4.5,1.899167,0.99,-4.5,1.609673,1.203571,4.5,1.609673,1.203571,-4.5,2.436432,0.4664859,-4.5,2.058636,0.8723532,-4.5,2.436432,0.4664859,4.5,2.058636,0.8723532,4.5,-2.436432,0.4664859,-4.5,-2.73,-2.279417E-27,-4.5,-2.436432,0.4664859,4.5,-2.73,2.277814E-27,4.5,6.35282E-13,1.65,4.5,5.486527E-13,1.65,-4.5,-0.5622499,1.599233,4.5,-0.5622499,1.599233,-4.5,0.5622499,1.599233,4.5,0.5622499,1.599233,-4.5,6.35282E-13,1.65,4.5,5.486527E-13,1.65,-4.5,-1.105063,1.448689,4.5,-1.105063,1.448689,-4.5,-1.609673,1.203571,4.5,-1.609673,1.203571,-4.5,-2.058636,0.8723532,-4.5,-2.436432,0.4664859,-4.5,-2.058636,0.8723532,4.5,-2.436432,0.4664859,4.5,-1.609673,1.203571,4.5,-1.609673,1.203571,-4.5,-1.899167,0.99,4.5,-1.899167,0.99,-4.5,-2.058636,0.8723532,4.5,-2.058636,0.8723532,-4.5,2.73,-1.602965E-30,-4.5,2.436432,0.4664859,-4.5,2.73,0,4.5,2.436432,0.4664859,4.5 + } + PolygonVertexIndex: *1080 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,65,-68,69,68,-68,70,68,-70,71,70,-70,72,71,-70,73,72,-70,74,72,-74,75,74,-74,76,74,-76,77,76,-76,78,77,-76,79,78,-76,80,78,-80,81,78,-81,82,81,-81,76,77,-84,77,84,-84,83,84,-86,84,86,-86,85,86,-88,87,86,-89,88,86,-90,86,90,-90,89,90,-92,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,129,-129,131,130,-129,132,130,-132,133,132,-132,134,133,-132,135,134,-132,136,134,-136,137,136,-136,138,137,-136,139,137,-139,140,139,-139,141,140,-139,142,141,-139,143,141,-143,144,141,-144,145,144,-144,139,140,-147,146,140,-148,140,148,-148,147,148,-150,148,150,-150,149,150,-152,151,150,-153,152,150,-154,150,154,-154,153,154,-156,155,154,-157,157,156,-155,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,271,-274,275,274,-274,271,276,-271,277,270,-277,275,277,-277,273,277,-276,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,295,-298,299,298,-298,298,299,-301,301,300,-300,295,302,-295,303,294,-303,304,306,-306,307,305,-307,305,307,-309,309,308,-308,310,308,-310,311,310,-310,312,310,-312,312,311,-314,311,314,-314,313,314,-316,316,315,-315,317,316,-315,318,312,-314,319,308,-311,320,322,-322,323,321,-323,324,323,-323,325,327,-327,328,326,-328,329,331,-331,332,330,-332,333,332,-332,334,332,-334,335,334,-334,336,333,-332,335,337,-335,337,338,-335,339,334,-339,340,337,-336,341,343,-343,344,342,-344,345,342,-345,346,345,-345,342,347,-342,348,341,-348,346,348,-348,344,348,-347,349,351,-351,352,350,-352,353,355,-355,356,354,-356,357,359,-359,360,358,-360,361,360,-360,362,361,-360,360,363,-359,364,358,-364,365,367,-367,368,366,-368,369,368,-368,370,372,-372,373,371,-373,374,376,-376,377,375,-377,378,380,-380,381,379,-381,66,382,-68,69,67,-383,73,69,-383,75,73,-383,79,75,-383,80,79,-383,82,80,-383,82,383,-82,81,383,-79,78,383,-78,77,383,-85,84,383,-87,86,383,-91,92,90,-384,384,386,-386,387,385,-387,385,388,-385,384,388,-390,390,389,-389,391,388,-386,126,392,-129,131,128,-393,135,131,-393,138,135,-393,142,138,-393,143,142,-393,145,143,-393,145,393,-145,144,393,-142,141,393,-141,140,393,-149,148,393,-151,150,393,-155,157,154,-394,394,396,-396,397,395,-397,398,400,-400,401,399,-401,402,401,-401,403,401,-403,404,403,-403,405,402,-401,404,406,-404,406,407,-404,408,403,-408,409,406,-405,410,412,-412,413,411,-413,414,413,-413,411,413,-416,416,415,-414,417,415,-417,418,415,-418,419,418,-418,420,422,-422,423,421,-423,424,421,-424,425,424,-424,421,426,-421,427,420,-427,425,427,-427,423,427,-426,428,430,-430,431,429,-431,432,429,-432,433,432,-432,429,434,-429,435,428,-435,433,435,-435,431,435,-434,436,438,-438,439,437,-439,440,439,-439,441,439,-441,442,440,-439,440,443,-442,443,444,-442,441,444,-446,444,446,-446,447,445,-447,448,445,-448,449,444,-444,437,450,-437,451,436,-451,452,454,-454,455,453,-455,456,458,-458,459,457,-459,460,459,-459,461,463,-463,464,462,-464,465,467,-467,468,466,-468,469,468,-468,470,472,-472,473,471,-473,474,473,-473,475,473,-475,476,478,-478,479,477,-479,480,482,-482,483,481,-483,484,486,-486,487,485,-487,488,490,-490,491,489,-491,492,494,-494,495,493,-495,496,498,-498,499,497,-499,500,502,-502,503,501,-503,504,503,-503,505,503,-505,506,508,-508,509,507,-509 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3240 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3535515,-0.9354151,0,-0.2672535,-0.9636263,0,-0.3535515,-0.9354151,0,-0.1793194,-0.9837909,0,-0.3535515,-0.9354151,0,-0.2672535,-0.9636263,0,-0.1793194,-0.9837909,0,-0.1793194,-0.9837909,0,-0.2672535,-0.9636263,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,0.1793194,-0.9837909,0,0.2672535,-0.9636263,0,0.1793194,-0.9837909,0,0.3535515,-0.9354151,0,0.1793194,-0.9837909,0,0.2672535,-0.9636263,0,0.3535515,-0.9354151,0,0.3535515,-0.9354151,0,0.2672535,-0.9636263,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.5936666,-0.8047111,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.6656808,-0.7462366,0,-0.6656808,-0.7462366,0,-0.6656808,-0.7462366,0,-0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.846352,-0.5326239,0,0.846352,-0.5326239,0,0.846352,-0.5326239,0,0.7926546,-0.6096708,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.6656808,-0.7462366,0,0.6656808,-0.7462366,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.6656808,-0.7462366,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,0.5936666,-0.8047111,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,-0.846352,-0.5326239,0,-0.846352,-0.5326239,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.846352,-0.5326239,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1020 { + a: -19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,-15.74803,15.74803,-15.74803,-15.74803,-16.53543,15.74803,-16.53543,-15.74803,-16.53543,-15.74803,-16.53543,15.74803,16.53543,-15.74803,16.53543,15.74803,-19.68504,15.74803,-19.68504,-15.74803,-20.47244,15.74803,-20.47244,-15.74803,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,15.74803,-15.74803,15.74803,15.74803,19.68504,-15.74803,19.68504,15.74803,20.47244,-15.74803,20.47244,15.74803,-15.74803,1.968504,-15.74803,3.937008,15.74803,1.968504,15.74803,3.937008,-20.47244,-15.74803,-20.47244,15.74803,-19.68504,-15.74803,-19.68504,15.74803,-15.74803,-15.74803,-15.74803,15.74803,-15.74803,5.905512,-15.74803,7.874016,15.74803,5.905512,15.74803,7.874016,19.68504,1.968504,19.68504,3.937008,20.47244,1.968504,20.47244,3.937008,16.53543,15.74803,16.53543,-15.74803,15.74803,15.74803,15.74803,-15.74803,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,15.74803,7.874016,15.74803,5.905512,-15.74803,7.874016,-15.74803,5.905512,20.47244,15.74803,20.47244,-15.74803,19.68504,15.74803,19.68504,-15.74803,15.74803,3.937008,15.74803,1.968504,-15.74803,3.937008,-15.74803,1.968504,10.74803,-2.603826E-13,9.592254,1.836558,15.74803,1.377922E-13,14.05458,2.782664,8.104868,3.434461,11.87527,5.203729,7.477036,3.897638,6.337296,4.738469,4.35064,5.7035,10.95536,5.905512,2.213582,6.296195,9.285415,7.179498,-2.402728E-11,6.496063,-9.285415,7.179498,-6.374565,8.641667,6.374565,8.641667,3.243344,9.539689,-3.243344,9.539689,-2.25704E-11,9.84252,-2.213582,6.296195,-10.95536,5.905512,-4.35064,5.7035,-11.87527,5.203729,-6.337296,4.738469,-7.477036,3.897638,-8.104868,3.434461,-14.05458,2.782664,-9.592254,1.836558,-15.74803,1.46566E-13,-10.74803,-2.603826E-13,20.47244,15.74803,14.96063,15.74803,20.47244,16.73228,14.96063,16.73228,-14.96063,15.74803,-20.47244,15.74803,-14.96063,16.73228,-20.47244,16.73228,20.47244,16.73228,20.47244,15.74803,14.96063,16.73228,14.96063,15.74803,-19.78346,-15.64961,-15.64961,-15.64961,-19.78346,-19.78346,-15.64961,-19.78346,-14.96063,1.967447,-20.47244,1.967447,-15.64961,3.168879,-19.78346,3.168879,20.47244,22.28698,14.96063,22.28698,19.78346,23.48841,15.64961,23.48841,-20.47244,22.28698,-19.78346,23.48841,-14.96063,22.28698,-15.64961,23.48841,20.47244,1.967447,14.96063,1.967447,19.78346,3.168879,15.64961,3.168879,15.74803,-2.533087E-11,10.74803,1.816181E-11,14.05458,2.782664,9.592254,1.836558,8.104868,3.434461,11.87527,5.203729,7.477036,3.897638,6.337296,4.738469,4.35064,5.7035,10.95536,5.905512,3.622254,5.905512,2.213582,6.296195,9.285415,7.179498,1.779346E-11,6.496063,-9.285415,7.179498,-6.374565,8.641667,6.374565,8.641667,3.243344,9.539689,-3.243344,9.539689,-2.388875E-11,9.84252,-2.213582,6.296195,-3.622254,5.905512,-10.95536,5.905512,-4.35064,5.7035,-11.87527,5.203729,-6.337296,4.738469,-7.477036,3.897638,-8.104868,3.434461,-14.05458,2.782664,-9.592254,1.836558,-10.74803,1.816181E-11,-15.74803,-1.46566E-13,15.64961,-15.64961,19.78346,-15.64961,15.64961,-19.78346,19.78346,-19.78346,20.47244,15.74803,14.96063,15.74803,20.47244,16.73228,14.96063,16.73228,-14.96063,22.28698,-20.47244,22.28698,-15.64961,23.48841,-19.78346,23.48841,-20.47244,15.74803,-20.47244,16.73228,-14.96063,15.74803,-14.96063,16.73228,-14.96063,15.74803,-20.47244,15.74803,-14.96063,16.73228,-20.47244,16.73228,20.47244,22.28698,14.96063,22.28698,19.78346,23.48841,15.64961,23.48841,-14.96063,16.73228,-14.96063,15.74803,-20.47244,16.73228,-20.47244,15.74803,14.96063,15.74803,14.96063,16.73228,20.47244,15.74803,20.47244,16.73228,-14.96063,22.28698,-20.47244,22.28698,-15.64961,23.48841,-19.78346,23.48841,-14.96063,16.73228,-14.96063,15.74803,-20.47244,16.73228,-20.47244,15.74803,20.47244,22.28698,14.96063,22.28698,19.78346,23.48841,15.64961,23.48841,-14.96063,15.74803,-20.47244,15.74803,-14.96063,16.73228,-20.47244,16.73228,20.47244,15.74803,14.96063,15.74803,20.47244,16.73228,14.96063,16.73228,14.96063,22.28698,15.64961,23.48841,20.47244,22.28698,19.78346,23.48841,14.96063,1.967447,15.64961,3.168879,20.47244,1.967447,19.78346,3.168879,-20.47244,1.967447,-19.78346,3.168879,-14.96063,1.967447,-15.64961,3.168879,20.47244,16.73228,20.47244,15.74803,14.96063,16.73228,14.96063,15.74803,-14.96063,1.967447,-20.47244,1.967447,-15.64961,3.168879,-19.78346,3.168879,-14.96063,22.28698,-20.47244,22.28698,-15.64961,23.48841,-19.78346,23.48841,15.64961,19.78346,19.78346,19.78346,15.64961,15.64961,19.78346,15.64961,20.47244,15.74803,14.96063,15.74803,20.47244,16.73228,14.96063,16.73228,20.47244,1.967447,14.96063,1.967447,19.78346,3.168879,15.64961,3.168879,-20.47244,16.73228,-14.96063,16.73228,-20.47244,15.74803,-14.96063,15.74803,20.47244,1.967447,14.96063,1.967447,19.78346,3.168879,15.64961,3.168879,-19.78346,19.78346,-15.64961,19.78346,-19.78346,15.64961,-15.64961,15.64961,-14.96063,1.967447,-20.47244,1.967447,-15.64961,3.168879,-19.78346,3.168879,14.96063,15.74803,14.96063,16.73228,20.47244,15.74803,20.47244,16.73228,-14.96063,15.74803,-20.47244,15.74803,-14.96063,16.73228,-20.47244,16.73228,-14.96063,-20.47244,-15.74803,-15.74803,-14.96063,-14.96063,-20.47244,-14.96063,-19.68504,-15.74803,-19.68504,-19.68504,-15.74803,-19.68504,-20.47244,-20.47244,15.74803,5.905512,15.74803,3.937008,-15.74803,5.905512,-15.74803,3.937008,-15.74803,3.937008,-15.74803,5.905512,15.74803,3.937008,15.74803,5.905512,-15.74803,-15.74803,15.74803,-15.74803,-15.74803,-19.68504,15.74803,-19.68504,-19.68504,13.77953,-19.68504,15.74803,-15.74803,13.77953,-15.74803,15.74803,-19.68504,15.74803,-15.74803,1.968504,-19.68504,-1.285521E-13,19.68504,-1.285521E-13,15.74803,1.968504,19.68504,15.74803,15.74803,3.937008,15.74803,15.74803,-15.74803,3.937008,-15.74803,15.74803,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,15.74803,-16.53543,7.874016,-15.74803,13.77953,16.53543,7.874016,15.74803,13.77953,19.68504,15.74803,16.53543,5.905512,19.68504,3.937008,15.74803,3.937008,15.74803,5.905512,15.74803,15.74803,-15.74803,15.74803,15.74803,19.68504,15.74803,17.71654,-15.74803,19.68504,2.614797E-12,17.71654,-15.74803,17.71654,15.74803,13.77953,15.74803,15.74803,19.68504,13.77953,19.68504,15.74803,19.68504,-3.591662E-12,15.74803,-3.591662E-12,19.68504,15.74803,15.74803,9.84252,15.74803,13.77953,-15.74803,9.84252,-15.74803,13.77953,15.74803,15.74803,-19.68504,15.74803,-19.68504,-3.591662E-12,-15.74803,-3.591662E-12,-15.74803,15.74803,-14.96063,14.96063,-15.74803,19.68504,-14.96063,20.47244,-20.47244,20.47244,-19.68504,19.68504,-19.68504,15.74803,-15.74803,15.74803,-20.47244,14.96063,-15.74803,15.74803,-15.74803,19.68504,15.74803,15.74803,15.74803,19.68504,-15.74803,15.74803,-15.74803,13.77953,-19.68504,15.74803,-19.68504,13.77953,-15.74803,19.68504,-15.74803,17.71654,-19.68504,19.68504,-15.74803,-17.71654,-15.74803,-19.68504,-19.68504,-19.68504,-10.74803,-17.71654,-10.74803,17.71654,15.74803,-17.71654,15.74803,-19.68504,2.16005E-12,-17.71654,-15.74803,-19.68504,-15.74803,-17.71654,17.71654,2.1081E-14,17.71654,9.84252,19.68504,2.1081E-14,19.68504,9.84252,-17.71654,9.84252,-17.71654,0,-19.68504,9.84252,-19.68504,0,19.68504,9.84252,19.68504,2.1081E-14,17.71654,9.84252,17.71654,2.1081E-14,15.74803,9.84252,-15.74803,9.84252,15.74803,17.71654,15.74803,-17.71654,10.74803,17.71654,10.74803,-17.71654,19.68504,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,15.74803,9.84252,-15.74803,9.84252,19.68504,15.74803,19.68504,13.77953,15.74803,15.74803,15.74803,13.77953,19.68504,-1.508877E-11,15.74803,-1.508877E-11,19.68504,15.74803,15.74803,9.84252,15.74803,13.77953,-15.74803,9.84252,-15.74803,13.77953,15.74803,15.74803,-19.68504,15.74803,-19.68504,-1.508877E-11,-15.74803,-1.508877E-11,-15.74803,15.74803,19.68504,15.74803,19.68504,2.945013E-14,15.74803,15.74803,15.74803,1.968504,15.74803,3.937008,-19.68504,2.945013E-14,-15.74803,1.968504,-15.74803,3.937008,-19.68504,15.74803,-15.74803,15.74803,20.47244,-20.47244,19.68504,-15.74803,20.47244,-14.96063,14.96063,-14.96063,15.74803,-15.74803,15.74803,-19.68504,19.68504,-19.68504,14.96063,-20.47244,20.47244,14.96063,19.68504,19.68504,20.47244,20.47244,14.96063,20.47244,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,14.96063,14.96063,19.68504,3.937008,16.53543,5.905512,19.68504,15.74803,16.53543,7.874016,15.74803,13.77953,-16.53543,7.874016,15.74803,15.74803,-15.74803,13.77953,-19.68504,15.74803,-16.53543,5.905512,-19.68504,3.937008,-15.74803,3.937008,-15.74803,5.905512,-15.74803,15.74803,15.74803,5.905512,15.74803,3.937008,-19.68504,2.258679E-14,-19.68504,9.84252,-17.71654,2.258679E-14,-17.71654,9.84252,17.71654,-2.668111,-17.71654,-2.668111,17.71654,-1.912231,-17.71654,-0.4503861,17.71654,-0.4503861,17.71654,-3.62995,-17.71654,-3.62995,17.71654,-1.421311,-17.71654,-1.421311,-17.71654,-0.4503861,17.71654,-0.4503861,-17.71654,-1.912231,17.71654,-2.668111,-17.71654,-2.668111,17.71654,-4.483152,-17.71654,-4.483152,17.71654,-3.702956,-17.71654,-3.702956,17.71654,-2.286621,-17.71654,-2.286621,-17.71654,-5.191293,-17.71654,-3.008265,17.71654,-5.191293,17.71654,-3.008265,17.71654,-3.554689,17.71654,-5.724659,-17.71654,-3.554689,-17.71654,-5.724659,-17.71654,0.584164,17.71654,0.584164,-17.71654,-1.638423,17.71654,-1.638423,17.71654,-1.638423,-17.71654,-1.638423,17.71654,0.584164,-17.71654,0.584164,-17.71654,-1.421311,17.71654,-1.421311,-17.71654,-3.62995,17.71654,-3.62995,17.71654,-3.008265,17.71654,-5.191293,-17.71654,-3.008265,-17.71654,-5.191293,-17.71654,-2.286621,17.71654,-2.286621,-17.71654,-3.702956,17.71654,-3.702956,-17.71654,-4.483152,17.71654,-4.483152,-17.71654,-5.724659,-17.71654,-3.554689,17.71654,-5.724659,17.71654,-3.554689 + } + UVIndex: *1080 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,65,67,69,68,67,70,68,69,71,70,69,72,71,69,73,72,69,74,72,73,75,74,73,76,74,75,77,76,75,78,77,75,79,78,75,80,78,79,81,78,80,82,81,80,76,77,83,77,84,83,83,84,85,84,86,85,85,86,87,87,86,88,88,86,89,86,90,89,89,90,91,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,129,128,131,130,128,132,130,131,133,132,131,134,133,131,135,134,131,136,134,135,137,136,135,138,137,135,139,137,138,140,139,138,141,140,138,142,141,138,143,141,142,144,141,143,145,144,143,139,140,146,146,140,147,140,148,147,147,148,149,148,150,149,149,150,151,151,150,152,152,150,153,150,154,153,153,154,155,155,154,156,157,156,154,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,271,273,275,274,273,271,276,270,277,270,276,275,277,276,273,277,275,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,295,297,299,298,297,298,299,300,301,300,299,295,302,294,303,294,302,304,306,305,307,305,306,305,307,308,309,308,307,310,308,309,311,310,309,312,310,311,312,311,313,311,314,313,313,314,315,316,315,314,317,316,314,318,312,313,319,308,310,320,322,321,323,321,322,324,323,322,325,327,326,328,326,327,329,331,330,332,330,331,333,332,331,334,332,333,335,334,333,336,333,331,335,337,334,337,338,334,339,334,338,340,337,335,341,343,342,344,342,343,345,342,344,346,345,344,342,347,341,348,341,347,346,348,347,344,348,346,349,351,350,352,350,351,353,355,354,356,354,355,357,359,358,360,358,359,361,360,359,362,361,359,360,363,358,364,358,363,365,367,366,368,366,367,369,368,367,370,372,371,373,371,372,374,376,375,377,375,376,378,380,379,381,379,380,66,382,67,69,67,382,73,69,382,75,73,382,79,75,382,80,79,382,82,80,382,82,383,81,81,383,78,78,383,77,77,383,84,84,383,86,86,383,90,92,90,383,384,386,385,387,385,386,385,388,384,384,388,389,390,389,388,391,388,385,126,392,128,131,128,392,135,131,392,138,135,392,142,138,392,143,142,392,145,143,392,145,393,144,144,393,141,141,393,140,140,393,148,148,393,150,150,393,154,157,154,393,394,396,395,397,395,396,398,400,399,401,399,400,402,401,400,403,401,402,404,403,402,405,402,400,404,406,403,406,407,403,408,403,407,409,406,404,410,412,411,413,411,412,414,413,412,411,413,415,416,415,413,417,415,416,418,415,417,419,418,417,420,422,421,423,421,422,424,421,423,425,424,423,421,426,420,427,420,426,425,427,426,423,427,425,428,430,429,431,429,430,432,429,431,433,432,431,429,434,428,435,428,434,433,435,434,431,435,433,436,438,437,439,437,438,440,439,438,441,439,440,442,440,438,440,443,441,443,444,441,441,444,445,444,446,445,447,445,446,448,445,447,449,444,443,437,450,436,451,436,450,452,454,453,455,453,454,456,458,457,459,457,458,460,459,458,461,463,462,464,462,463,465,467,466,468,466,467,469,468,467,470,472,471,473,471,472,474,473,472,475,473,474,476,478,477,479,477,478,480,482,481,483,481,482,484,486,485,487,485,486,488,490,489,491,489,490,492,494,493,495,493,494,496,498,497,499,497,498,500,502,501,503,501,502,504,503,502,505,503,504,506,508,507,509,507,508 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *360 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_stoneRound, Model::RootNode + C: "OO",4791902858657180854,0 + + ;Geometry::, Model::Mesh bridge_stoneRound + C: "OO",5040804040560394484,4791902858657180854 + + ;Material::stone, Model::Mesh bridge_stoneRound + C: "OO",3038,4791902858657180854 + + ;Material::stoneDark, Model::Mesh bridge_stoneRound + C: "OO",3040,4791902858657180854 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRound.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRound.fbx.import new file mode 100644 index 0000000..f073b59 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b4yfx8hga48uq" +path="res://.godot/imported/bridge_stoneRound.fbx-9f822051e002cfa5300d9e9c7200a12f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRound.fbx" +dest_files=["res://.godot/imported/bridge_stoneRound.fbx-9f822051e002cfa5300d9e9c7200a12f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRoundNarrow.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRoundNarrow.fbx new file mode 100644 index 0000000..1f3d553 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRoundNarrow.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 11 + Millisecond: 228 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_stoneRoundNarrow.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_stoneRoundNarrow.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5532389522293044856, "Model::bridge_stoneRoundNarrow", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5652522739577450585, "Geometry::", "Mesh" { + Vertices: *1530 { + a: -5,0.5,3,-5.2,0.5,3,-5,1,3,-5.2,1,3,-4,1.5,3,-4,1.5,-3,-4.2,1.5,3,-4.2,1.5,-3,4.2,2,-3,4.2,2,3,-4.2,2,-3,-4.2,2,3,-5,0.5,3,-5,0.5,-3,-5.2,0.5,3,-5.2,0.5,-3,5.2,0.5,3,5,0.5,3,5.2,1,3,5,1,3,-4,1,-3,-4,1,3,-5,1,-3,-5,1,3,-5.2,1,-3,-5.2,1,3,-5.2,0.5,-3,-5.2,1,-3,-5.2,0.5,3,-5.2,1,3,5.2,1,-3,5.2,1,3,5,1,-3,5,1,3,4,1,-3,4,1,3,-4.2,1.5,-3,-4.2,2,-3,-4.2,1.5,3,-4.2,2,3,-5,0.5,-3,-5,1,-3,-5.2,0.5,-3,-5.2,1,-3,4.2,1.5,3,4.2,1.5,-3,4,1.5,3,4,1.5,-3,5,0.5,-3,5.2,0.5,-3,5,1,-3,5.2,1,-3,4.2,2,-3,4.2,1.5,-3,4.2,2,3,4.2,1.5,3,5.2,0.5,3,5.2,0.5,-3,5,0.5,3,5,0.5,-3,5.2,1,-3,5.2,0.5,-3,5.2,1,3,5.2,0.5,3,-2.73,-2.279417E-27,-3.5,-2.436432,0.4664859,-3.5,-4,0,-3.5,-3.569864,0.7067967,-3.5,-2.058636,0.8723532,-3.5,-3.016317,1.321747,-3.5,-1.899167,0.99,-3.5,-1.609673,1.203571,-3.5,-1.105063,1.448689,-3.5,-2.782662,1.5,-3.5,-0.5622499,1.599233,-3.5,-2.358495,1.823592,-3.5,5.486527E-13,1.65,-3.5,2.358495,1.823592,-3.5,1.619139,2.194983,-3.5,-1.619139,2.194983,-3.5,-0.8238094,2.423081,-3.5,0.8238094,2.423081,-3.5,5.486527E-13,2.5,-3.5,0.5622499,1.599233,-3.5,2.782662,1.5,-3.5,1.105063,1.448689,-3.5,3.016317,1.321747,-3.5,1.609673,1.203571,-3.5,1.899167,0.99,-3.5,2.058636,0.8723532,-3.5,3.569864,0.7067967,-3.5,2.436432,0.4664859,-3.5,4,0,-3.5,2.73,-1.602965E-30,-3.5,5.2,3.5,-2.8,3.8,3.5,-2.8,5.2,3.75,-2.8,3.8,3.75,-2.8,3.8,3.5,-4.2,5.2,3.5,-4.2,3.8,3.75,-4.2,5.2,3.75,-4.2,5.2,3.75,-4.2,5.2,3.5,-4.2,5.2,3.75,-2.8,5.2,3.5,-2.8,5.025,4,-2.975,3.975,4,-2.975,5.025,4,-4.025,3.975,4,-4.025,3.8,3.75,-4.2,5.2,3.75,-4.2,3.975,4,-4.025,5.025,4,-4.025,5.2,3.75,-2.8,3.8,3.75,-2.8,5.025,4,-2.975,3.975,4,-2.975,3.8,3.75,-4.2,3.975,4,-4.025,3.8,3.75,-2.8,3.975,4,-2.975,5.2,3.75,-4.2,5.2,3.75,-2.8,5.025,4,-4.025,5.025,4,-2.975,4,0,3.5,2.73,0,3.5,3.569864,0.7067967,3.5,2.436432,0.4664859,3.5,2.058636,0.8723532,3.5,3.016317,1.321747,3.5,1.899167,0.99,3.5,1.609673,1.203571,3.5,1.105063,1.448689,3.5,2.782662,1.5,3.5,0.9200526,1.5,3.5,0.5622499,1.599233,3.5,2.358495,1.823592,3.5,6.35282E-13,1.65,3.5,-2.358495,1.823592,3.5,-1.619139,2.194983,3.5,1.619139,2.194983,3.5,0.8238094,2.423081,3.5,-0.8238094,2.423081,3.5,6.641585E-13,2.5,3.5,-0.5622499,1.599233,3.5,-0.9200526,1.5,3.5,-2.782662,1.5,3.5,-1.105063,1.448689,3.5,-3.016317,1.321747,3.5,-1.609673,1.203571,3.5,-1.899167,0.99,3.5,-2.058636,0.8723532,3.5,-3.569864,0.7067967,3.5,-2.436432,0.4664859,3.5,-2.73,2.277814E-27,3.5,-4,0,3.5,-3.975,4,-2.975,-5.025,4,-2.975,-3.975,4,-4.025,-5.025,4,-4.025,-5.2,3.5,-4.2,-3.8,3.5,-4.2,-5.2,3.75,-4.2,-3.8,3.75,-4.2,-3.8,3.75,-2.8,-5.2,3.75,-2.8,-3.975,4,-2.975,-5.025,4,-2.975,3.8,3.5,-4.2,3.8,3.75,-4.2,3.8,3.5,-2.8,3.8,3.75,-2.8,-3.8,3.5,-2.8,-5.2,3.5,-2.8,-3.8,3.75,-2.8,-5.2,3.75,-2.8,-3.8,3.75,-4.2,-3.8,3.75,-2.8,-3.975,4,-4.025,-3.975,4,-2.975,5.2,3.75,2.8,5.2,3.5,2.8,5.2,3.75,4.2,5.2,3.5,4.2,3.8,3.5,2.8,3.8,3.75,2.8,3.8,3.5,4.2,3.8,3.75,4.2,-3.8,3.75,2.8,-3.8,3.75,4.2,-3.975,4,2.975,-3.975,4,4.025,-3.8,3.75,2.8,-3.8,3.5,2.8,-3.8,3.75,4.2,-3.8,3.5,4.2,-5.2,3.75,2.8,-3.8,3.75,2.8,-5.025,4,2.975,-3.975,4,2.975,-3.8,3.5,4.2,-5.2,3.5,4.2,-3.8,3.75,4.2,-5.2,3.75,4.2,5.2,3.5,4.2,3.8,3.5,4.2,5.2,3.75,4.2,3.8,3.75,4.2,3.8,3.75,2.8,3.975,4,2.975,3.8,3.75,4.2,3.975,4,4.025,-5.2,3.75,2.8,-5.025,4,2.975,-5.2,3.75,4.2,-5.025,4,4.025,-5.2,3.75,-4.2,-5.025,4,-4.025,-5.2,3.75,-2.8,-5.025,4,-2.975,-3.8,3.75,-4.2,-3.8,3.5,-4.2,-3.8,3.75,-2.8,-3.8,3.5,-2.8,-3.8,3.75,4.2,-5.2,3.75,4.2,-3.975,4,4.025,-5.025,4,4.025,3.8,3.75,2.8,5.2,3.75,2.8,3.975,4,2.975,5.025,4,2.975,-3.975,4,4.025,-5.025,4,4.025,-3.975,4,2.975,-5.025,4,2.975,-5.2,3.5,2.8,-3.8,3.5,2.8,-5.2,3.75,2.8,-3.8,3.75,2.8,5.2,3.75,4.2,3.8,3.75,4.2,5.025,4,4.025,3.975,4,4.025,-5.2,3.75,-4.2,-5.2,3.75,-2.8,-5.2,3.5,-4.2,-5.2,3.5,-2.8,-5.2,3.75,-4.2,-3.8,3.75,-4.2,-5.025,4,-4.025,-3.975,4,-4.025,5.025,4,4.025,3.975,4,4.025,5.025,4,2.975,3.975,4,2.975,5.2,3.75,2.8,5.2,3.75,4.2,5.025,4,2.975,5.025,4,4.025,-5.2,3.5,2.8,-5.2,3.75,2.8,-5.2,3.5,4.2,-5.2,3.75,4.2,3.8,3.5,2.8,5.2,3.5,2.8,3.8,3.75,2.8,5.2,3.75,2.8,-3.8,3.5,-4.2,-4,3.5,-3,-3.8,3.5,-2.8,-5.2,3.5,-2.8,-5,3.5,-3,-5,3.5,-4,-4,3.5,-4,-5.2,3.5,-4.2,4,1.5,-3,4,1,-3,4,1.5,3,4,1,3,-4,1,-3,-4,1.5,-3,-4,1,3,-4,1.5,3,4,3,-4,4,3.5,-4,4,3,-3,4,3.5,-3,-5,3.5,-4,-5,0.5,-3,-5,0,-4,-5,0,4,-5,0.5,3,-5,3.5,4,-5,1,3,-5,3.5,3,-5,1,-3,-5,3.5,-3,4,1,3,5,1,3,4,1.5,3,4.2,1.5,3,5,3.5,3,4.2,2,3,4,3,3,-4.2,2,3,-4,3,3,-5,3.5,3,-4.2,1.5,3,-4,1,3,-5,1,3,-4,1.5,3,-4,3.5,3,4,3.5,3,4,2.5,4,4,2.5,3.5,-4,2.5,4,6.641585E-13,2.5,3.5,-4,2.5,3.5,4,3,3,4,3.5,3,4,3,4,4,3.5,4,5,0,4,4,0,4,5,3.5,4,4,2.5,4,4,3,4,-4,2.5,4,-4,3,4,4,3.5,4,-5,3.5,4,-5,0,4,-4,0,4,-4,3.5,4,-3.8,3.5,2.8,-4,3.5,4,-3.8,3.5,4.2,-5.2,3.5,4.2,-5,3.5,4,-5,3.5,3,-4,3.5,3,-5.2,3.5,2.8,-4,3.5,3,-4,3,3,-4,3.5,4,-4,3,4,-4,0,4,-4,0,3.5,-5,0,4,-4,0,-3.5,-4,0,-4,-5,0,-4,-2.73,-2.279417E-27,-3.5,-2.73,2.277814E-27,3.5,4,2.5,-3.5,4,2.5,-4,5.486527E-13,2.5,-3.5,-4,2.5,-4,-4,2.5,-3.5,4,0,3.5,4,2.5,3.5,4,0,4,4,2.5,4,-4,2.5,3.5,-4,0,3.5,-4,2.5,4,-4,0,4,-4,2.5,-4,-4,0,-4,-4,2.5,-3.5,-4,0,-3.5,-4,2.5,-3.5,4,2.5,-3.5,4,0,3.5,4,0,-3.5,2.73,0,3.5,2.73,-1.602965E-30,-3.5,5,0,-4,4,0,4,5,0,4,4,0,-4,4,2.5,3.5,-4,2.5,3.5,-4,3.5,-4,-4,3,-4,-4,3.5,-3,-4,3,-3,-5,0,-4,-4,0,-4,-5,3.5,-4,-4,2.5,-4,-4,3,-4,4,2.5,-4,4,3,-4,-4,3.5,-4,5,3.5,-4,5,0,-4,4,0,-4,4,3.5,-4,5,3.5,-4,5,0,-4,5,3.5,-3,5,0.5,-3,5,1,-3,5,0,4,5,0.5,3,5,1,3,5,3.5,4,5,3.5,3,5.2,3.5,-4.2,5,3.5,-3,5.2,3.5,-2.8,3.8,3.5,-2.8,4,3.5,-3,4,3.5,-4,5,3.5,-4,3.8,3.5,-4.2,5.2,3.5,2.8,5,3.5,4,5.2,3.5,4.2,3.8,3.5,4.2,4,3.5,4,4,3.5,3,5,3.5,3,3.8,3.5,2.8,5,1,-3,4.2,1.5,-3,5,3.5,-3,4.2,2,-3,4,3,-3,-4.2,2,-3,4,3.5,-3,-4,3,-3,-5,3.5,-3,-4.2,1.5,-3,-4,1,-3,-5,1,-3,-4,1.5,-3,-4,3.5,-3,4,1.5,-3,4,1,-3,4,0,-4,4,2.5,-4,4,0,-3.5,4,2.5,-3.5,1.105063,1.448689,3.5,1.105063,1.448689,-3.5,0.9200526,1.5,3.5,0.5622499,1.599233,-3.5,0.5622499,1.599233,3.5,1.609673,1.203571,3.5,1.609673,1.203571,-3.5,1.105063,1.448689,3.5,1.105063,1.448689,-3.5,-0.5622499,1.599233,3.5,-0.5622499,1.599233,-3.5,-0.9200526,1.5,3.5,-1.105063,1.448689,-3.5,-1.105063,1.448689,3.5,2.058636,0.8723532,3.5,2.058636,0.8723532,-3.5,1.899167,0.99,3.5,1.899167,0.99,-3.5,1.609673,1.203571,3.5,1.609673,1.203571,-3.5,2.436432,0.4664859,-3.5,2.058636,0.8723532,-3.5,2.436432,0.4664859,3.5,2.058636,0.8723532,3.5,-2.436432,0.4664859,-3.5,-2.73,-2.279417E-27,-3.5,-2.436432,0.4664859,3.5,-2.73,2.277814E-27,3.5,6.35282E-13,1.65,3.5,5.486527E-13,1.65,-3.5,-0.5622499,1.599233,3.5,-0.5622499,1.599233,-3.5,0.5622499,1.599233,3.5,0.5622499,1.599233,-3.5,6.35282E-13,1.65,3.5,5.486527E-13,1.65,-3.5,-1.105063,1.448689,3.5,-1.105063,1.448689,-3.5,-1.609673,1.203571,3.5,-1.609673,1.203571,-3.5,-2.058636,0.8723532,-3.5,-2.436432,0.4664859,-3.5,-2.058636,0.8723532,3.5,-2.436432,0.4664859,3.5,-1.609673,1.203571,3.5,-1.609673,1.203571,-3.5,-1.899167,0.99,3.5,-1.899167,0.99,-3.5,-2.058636,0.8723532,3.5,-2.058636,0.8723532,-3.5,2.73,-1.602965E-30,-3.5,2.436432,0.4664859,-3.5,2.73,0,3.5,2.436432,0.4664859,3.5,4,3,-3,-4,3,-3,4,3,-4,-4,3,-4,4,3,3,4,3,4,-4,3,3,-4,3,4 + } + PolygonVertexIndex: *1080 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,65,-68,69,68,-68,70,68,-70,71,70,-70,72,71,-70,73,72,-70,74,72,-74,75,74,-74,76,74,-76,77,76,-76,78,77,-76,79,78,-76,80,78,-80,81,78,-81,82,81,-81,76,77,-84,77,84,-84,83,84,-86,84,86,-86,85,86,-88,87,86,-89,88,86,-90,86,90,-90,89,90,-92,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,129,-129,131,130,-129,132,130,-132,133,132,-132,134,133,-132,135,134,-132,136,134,-136,137,136,-136,138,137,-136,139,137,-139,140,139,-139,141,140,-139,142,141,-139,143,141,-143,144,141,-144,145,144,-144,139,140,-147,146,140,-148,140,148,-148,147,148,-150,148,150,-150,149,150,-152,151,150,-153,152,150,-154,150,154,-154,153,154,-156,155,154,-157,157,156,-155,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,271,-274,275,274,-274,271,276,-271,277,270,-277,275,277,-277,273,277,-276,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,291,-294,295,294,-294,294,295,-297,297,296,-296,291,298,-291,299,290,-299,300,302,-302,303,301,-303,301,303,-305,305,304,-304,306,304,-306,307,306,-306,308,306,-308,308,307,-310,307,310,-310,310,311,-310,312,309,-312,313,311,-311,314,308,-310,315,304,-307,316,318,-318,319,317,-319,320,319,-319,321,323,-323,324,322,-324,325,327,-327,328,326,-328,329,328,-328,330,328,-330,331,330,-330,332,329,-328,331,333,-331,333,334,-331,335,330,-335,336,333,-332,337,339,-339,340,338,-340,341,338,-341,342,341,-341,338,343,-338,344,337,-344,342,344,-344,340,344,-343,345,347,-347,348,346,-348,349,351,-351,352,350,-352,353,352,-352,354,353,-352,352,355,-351,356,350,-356,357,359,-359,360,358,-360,361,360,-360,362,364,-364,365,363,-365,366,368,-368,369,367,-369,370,372,-372,373,371,-373,66,374,-68,69,67,-375,73,69,-375,75,73,-375,79,75,-375,80,79,-375,82,80,-375,82,375,-82,81,375,-79,78,375,-78,77,375,-85,84,375,-87,86,375,-91,92,90,-376,376,378,-378,379,377,-379,377,380,-377,376,380,-382,382,381,-381,383,380,-378,126,384,-129,131,128,-385,135,131,-385,138,135,-385,142,138,-385,143,142,-385,145,143,-385,145,385,-145,144,385,-142,141,385,-141,140,385,-149,148,385,-151,150,385,-155,157,154,-386,386,388,-388,389,387,-389,390,392,-392,393,391,-393,394,393,-393,395,393,-395,396,395,-395,397,394,-393,396,398,-396,398,399,-396,400,395,-400,401,398,-397,402,404,-404,405,403,-405,406,405,-405,403,405,-408,408,407,-406,409,407,-409,410,407,-410,411,410,-410,412,414,-414,415,413,-415,416,413,-416,417,416,-416,413,418,-413,419,412,-419,417,419,-419,415,419,-418,420,422,-422,423,421,-423,424,421,-424,425,424,-424,421,426,-421,427,420,-427,425,427,-427,423,427,-426,428,430,-430,431,429,-431,432,431,-431,433,431,-433,434,432,-431,432,435,-434,435,436,-434,433,436,-438,437,436,-439,439,438,-437,440,437,-439,441,436,-436,429,442,-429,443,428,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,451,-451,453,455,-455,456,454,-456,457,459,-459,460,458,-460,461,460,-460,462,464,-464,465,463,-465,466,465,-465,467,465,-467,468,470,-470,471,469,-471,472,474,-474,475,473,-475,476,478,-478,479,477,-479,480,482,-482,483,481,-483,484,486,-486,487,485,-487,488,490,-490,491,489,-491,492,494,-494,495,493,-495,496,495,-495,497,495,-497,498,500,-500,501,499,-501,502,504,-504,505,503,-505,506,508,-508,509,507,-509 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3240 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3535515,-0.9354151,0,-0.2672535,-0.9636263,0,-0.3535515,-0.9354151,0,-0.1793194,-0.9837909,0,-0.3535515,-0.9354151,0,-0.2672535,-0.9636263,0,-0.1793194,-0.9837909,0,-0.1793194,-0.9837909,0,-0.2672535,-0.9636263,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,0.1793194,-0.9837909,0,0.2672535,-0.9636263,0,0.1793194,-0.9837909,0,0.3535515,-0.9354151,0,0.1793194,-0.9837909,0,0.2672535,-0.9636263,0,0.3535515,-0.9354151,0,0.3535515,-0.9354151,0,0.2672535,-0.9636263,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.5936666,-0.8047111,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.6656808,-0.7462366,0,-0.6656808,-0.7462366,0,-0.6656808,-0.7462366,0,-0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.846352,-0.5326239,0,0.846352,-0.5326239,0,0.846352,-0.5326239,0,0.7926546,-0.6096708,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.6656808,-0.7462366,0,0.6656808,-0.7462366,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.6656808,-0.7462366,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,0.5936666,-0.8047111,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,-0.846352,-0.5326239,0,-0.846352,-0.5326239,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.846352,-0.5326239,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1020 { + a: -19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,-15.74803,11.81102,-15.74803,-11.81102,-16.53543,11.81102,-16.53543,-11.81102,-16.53543,-11.81102,-16.53543,11.81102,16.53543,-11.81102,16.53543,11.81102,-19.68504,11.81102,-19.68504,-11.81102,-20.47244,11.81102,-20.47244,-11.81102,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,15.74803,-11.81102,15.74803,11.81102,19.68504,-11.81102,19.68504,11.81102,20.47244,-11.81102,20.47244,11.81102,-11.81102,1.968504,-11.81102,3.937008,11.81102,1.968504,11.81102,3.937008,-20.47244,-11.81102,-20.47244,11.81102,-19.68504,-11.81102,-19.68504,11.81102,-15.74803,-11.81102,-15.74803,11.81102,-11.81102,5.905512,-11.81102,7.874016,11.81102,5.905512,11.81102,7.874016,19.68504,1.968504,19.68504,3.937008,20.47244,1.968504,20.47244,3.937008,16.53543,11.81102,16.53543,-11.81102,15.74803,11.81102,15.74803,-11.81102,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,11.81102,7.874016,11.81102,5.905512,-11.81102,7.874016,-11.81102,5.905512,20.47244,11.81102,20.47244,-11.81102,19.68504,11.81102,19.68504,-11.81102,11.81102,3.937008,11.81102,1.968504,-11.81102,3.937008,-11.81102,1.968504,10.74803,-3.969439E-15,9.592254,1.836558,15.74803,4.472716E-14,14.05458,2.782664,8.104868,3.434461,11.87527,5.203729,7.477036,3.897638,6.337296,4.738469,4.35064,5.7035,10.95536,5.905512,2.213582,6.296195,9.285415,7.179498,-2.036698E-11,6.496063,-9.285415,7.179498,-6.374565,8.641667,6.374565,8.641667,3.243344,9.539689,-3.243344,9.539689,-1.810763E-11,9.84252,-2.213582,6.296195,-10.95536,5.905512,-4.35064,5.7035,-11.87527,5.203729,-6.337296,4.738469,-7.477036,3.897638,-8.104868,3.434461,-14.05458,2.782664,-9.592254,1.836558,-15.74803,5.014578E-14,-10.74803,-3.969439E-15,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,16.53543,14.76378,16.53543,13.77953,11.02362,14.76378,11.02362,13.77953,-19.78346,-11.7126,-15.64961,-11.7126,-19.78346,-15.84646,-15.64961,-15.84646,-14.96063,2.612511,-20.47244,2.612511,-15.64961,3.813944,-19.78346,3.813944,20.47244,18.41659,14.96063,18.41659,19.78346,19.61802,15.64961,19.61802,-16.53543,20.67432,-15.84646,21.87575,-11.02362,20.67432,-11.7126,21.87575,16.53543,0.3547855,11.02362,0.3547855,15.84646,1.556218,11.7126,1.556218,15.74803,-1.441372E-11,10.74803,9.007043E-12,14.05458,2.782664,9.592254,1.836558,8.104868,3.434461,11.87527,5.203729,7.477036,3.897638,6.337296,4.738469,4.35064,5.7035,10.95536,5.905512,3.622254,5.905512,2.213582,6.296195,9.285415,7.179498,1.749093E-11,6.496063,-9.285415,7.179498,-6.374565,8.641667,6.374565,8.641667,3.243344,9.539689,-3.243344,9.539689,-1.182827E-11,9.84252,-2.213582,6.296195,-3.622254,5.905512,-10.95536,5.905512,-4.35064,5.7035,-11.87527,5.203729,-6.337296,4.738469,-7.477036,3.897638,-8.104868,3.434461,-14.05458,2.782664,-9.592254,1.836558,-10.74803,9.007043E-12,-15.74803,-5.014578E-14,15.64961,-11.7126,19.78346,-11.7126,15.64961,-15.84646,19.78346,-15.84646,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,-14.96063,18.41659,-20.47244,18.41659,-15.64961,19.61802,-19.78346,19.61802,-16.53543,13.77953,-16.53543,14.76378,-11.02362,13.77953,-11.02362,14.76378,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,16.53543,20.67432,11.02362,20.67432,15.84646,21.87575,11.7126,21.87575,-11.02362,14.76378,-11.02362,13.77953,-16.53543,14.76378,-16.53543,13.77953,11.02362,13.77953,11.02362,14.76378,16.53543,13.77953,16.53543,14.76378,-11.02362,20.67432,-16.53543,20.67432,-11.7126,21.87575,-15.84646,21.87575,-11.02362,14.76378,-11.02362,13.77953,-16.53543,14.76378,-16.53543,13.77953,20.47244,18.41659,14.96063,18.41659,19.78346,19.61802,15.64961,19.61802,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,11.02362,20.67432,11.7126,21.87575,16.53543,20.67432,15.84646,21.87575,11.02362,0.3547855,11.7126,1.556218,16.53543,0.3547855,15.84646,1.556218,-16.53543,0.3547855,-15.84646,1.556218,-11.02362,0.3547855,-11.7126,1.556218,16.53543,14.76378,16.53543,13.77953,11.02362,14.76378,11.02362,13.77953,-14.96063,2.612511,-20.47244,2.612511,-15.64961,3.813944,-19.78346,3.813944,-14.96063,18.41659,-20.47244,18.41659,-15.64961,19.61802,-19.78346,19.61802,15.64961,15.84646,19.78346,15.84646,15.64961,11.7126,19.78346,11.7126,20.47244,13.77953,14.96063,13.77953,20.47244,14.76378,14.96063,14.76378,20.47244,2.612511,14.96063,2.612511,19.78346,3.813944,15.64961,3.813944,-16.53543,14.76378,-11.02362,14.76378,-16.53543,13.77953,-11.02362,13.77953,20.47244,2.612511,14.96063,2.612511,19.78346,3.813944,15.64961,3.813944,-19.78346,15.84646,-15.64961,15.84646,-19.78346,11.7126,-15.64961,11.7126,-11.02362,0.3547855,-16.53543,0.3547855,-11.7126,1.556218,-15.84646,1.556218,11.02362,13.77953,11.02362,14.76378,16.53543,13.77953,16.53543,14.76378,-14.96063,13.77953,-20.47244,13.77953,-14.96063,14.76378,-20.47244,14.76378,-14.96063,-16.53543,-15.74803,-11.81102,-14.96063,-11.02362,-20.47244,-11.02362,-19.68504,-11.81102,-19.68504,-15.74803,-15.74803,-15.74803,-20.47244,-16.53543,11.81102,5.905512,11.81102,3.937008,-11.81102,5.905512,-11.81102,3.937008,-11.81102,3.937008,-11.81102,5.905512,11.81102,3.937008,11.81102,5.905512,-15.74803,11.81102,-15.74803,13.77953,-11.81102,11.81102,-11.81102,13.77953,-15.74803,13.77953,-11.81102,1.968504,-15.74803,-2.666107E-13,15.74803,-2.666107E-13,11.81102,1.968504,15.74803,13.77953,11.81102,3.937008,11.81102,13.77953,-11.81102,3.937008,-11.81102,13.77953,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,13.77953,-16.53543,7.874016,-15.74803,11.81102,16.53543,7.874016,15.74803,11.81102,19.68504,13.77953,16.53543,5.905512,15.74803,3.937008,19.68504,3.937008,15.74803,5.905512,15.74803,13.77953,-15.74803,13.77953,15.74803,15.74803,15.74803,13.77953,-15.74803,15.74803,2.614797E-12,13.77953,-15.74803,13.77953,11.81102,11.81102,11.81102,13.77953,15.74803,11.81102,15.74803,13.77953,19.68504,-3.271693E-12,15.74803,-3.271693E-12,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-15.74803,9.84252,-15.74803,11.81102,15.74803,13.77953,-19.68504,13.77953,-19.68504,-3.271693E-12,-15.74803,-3.271693E-12,-15.74803,13.77953,-14.96063,11.02362,-15.74803,15.74803,-14.96063,16.53543,-20.47244,16.53543,-19.68504,15.74803,-19.68504,11.81102,-15.74803,11.81102,-20.47244,11.02362,-11.81102,13.77953,-11.81102,11.81102,-15.74803,13.77953,-15.74803,11.81102,-15.74803,15.74803,-15.74803,13.77953,-19.68504,15.74803,-15.74803,-13.77953,-15.74803,-15.74803,-19.68504,-15.74803,-10.74803,-13.77953,-10.74803,13.77953,15.74803,-13.77953,15.74803,-15.74803,2.16005E-12,-13.77953,-15.74803,-15.74803,-15.74803,-13.77953,13.77953,0,13.77953,9.84252,15.74803,0,15.74803,9.84252,-13.77953,9.84252,-13.77953,0,-15.74803,9.84252,-15.74803,0,15.74803,9.84252,15.74803,0,13.77953,9.84252,13.77953,0,15.74803,9.84252,-15.74803,9.84252,15.74803,13.77953,15.74803,-13.77953,10.74803,13.77953,10.74803,-13.77953,19.68504,-15.74803,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,15.74803,9.84252,-15.74803,9.84252,15.74803,13.77953,15.74803,11.81102,11.81102,13.77953,11.81102,11.81102,19.68504,-1.375369E-11,15.74803,-1.375369E-11,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-15.74803,9.84252,-15.74803,11.81102,15.74803,13.77953,-19.68504,13.77953,-19.68504,-1.375369E-11,-15.74803,-1.375369E-11,-15.74803,13.77953,15.74803,13.77953,15.74803,7.042548E-14,11.81102,13.77953,11.81102,1.968504,11.81102,3.937008,-15.74803,7.042548E-14,-11.81102,1.968504,-11.81102,3.937008,-15.74803,13.77953,-11.81102,13.77953,20.47244,-16.53543,19.68504,-11.81102,20.47244,-11.02362,14.96063,-11.02362,15.74803,-11.81102,15.74803,-15.74803,19.68504,-15.74803,14.96063,-16.53543,20.47244,11.02362,19.68504,15.74803,20.47244,16.53543,14.96063,16.53543,15.74803,15.74803,15.74803,11.81102,19.68504,11.81102,14.96063,11.02362,19.68504,3.937008,16.53543,5.905512,19.68504,13.77953,16.53543,7.874016,15.74803,11.81102,-16.53543,7.874016,15.74803,13.77953,-15.74803,11.81102,-19.68504,13.77953,-16.53543,5.905512,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-15.74803,13.77953,15.74803,5.905512,15.74803,3.937008,-15.74803,0,-15.74803,9.84252,-13.77953,0,-13.77953,9.84252,13.77953,-2.668111,-13.77953,-2.668111,13.77953,-1.912231,-13.77953,-0.4503861,13.77953,-0.4503861,13.77953,-3.62995,-13.77953,-3.62995,13.77953,-1.421311,-13.77953,-1.421311,-13.77953,-0.4503861,13.77953,-0.4503861,-13.77953,-1.912231,13.77953,-2.668111,-13.77953,-2.668111,13.77953,-4.483152,-13.77953,-4.483152,13.77953,-3.702956,-13.77953,-3.702956,13.77953,-2.286621,-13.77953,-2.286621,-13.77953,-5.191293,-13.77953,-3.008265,13.77953,-5.191293,13.77953,-3.008265,13.77953,-3.554689,13.77953,-5.724659,-13.77953,-3.554689,-13.77953,-5.724659,-13.77953,0.584164,13.77953,0.584164,-13.77953,-1.638423,13.77953,-1.638423,13.77953,-1.638423,-13.77953,-1.638423,13.77953,0.584164,-13.77953,0.584164,-13.77953,-1.421311,13.77953,-1.421311,-13.77953,-3.62995,13.77953,-3.62995,13.77953,-3.008265,13.77953,-5.191293,-13.77953,-3.008265,-13.77953,-5.191293,-13.77953,-2.286621,13.77953,-2.286621,-13.77953,-3.702956,13.77953,-3.702956,-13.77953,-4.483152,13.77953,-4.483152,-13.77953,-5.724659,-13.77953,-3.554689,13.77953,-5.724659,13.77953,-3.554689,-15.74803,-11.81102,15.74803,-11.81102,-15.74803,-15.74803,15.74803,-15.74803,-15.74803,11.81102,-15.74803,15.74803,15.74803,11.81102,15.74803,15.74803 + } + UVIndex: *1080 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,65,67,69,68,67,70,68,69,71,70,69,72,71,69,73,72,69,74,72,73,75,74,73,76,74,75,77,76,75,78,77,75,79,78,75,80,78,79,81,78,80,82,81,80,76,77,83,77,84,83,83,84,85,84,86,85,85,86,87,87,86,88,88,86,89,86,90,89,89,90,91,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,129,128,131,130,128,132,130,131,133,132,131,134,133,131,135,134,131,136,134,135,137,136,135,138,137,135,139,137,138,140,139,138,141,140,138,142,141,138,143,141,142,144,141,143,145,144,143,139,140,146,146,140,147,140,148,147,147,148,149,148,150,149,149,150,151,151,150,152,152,150,153,150,154,153,153,154,155,155,154,156,157,156,154,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,271,273,275,274,273,271,276,270,277,270,276,275,277,276,273,277,275,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,291,293,295,294,293,294,295,296,297,296,295,291,298,290,299,290,298,300,302,301,303,301,302,301,303,304,305,304,303,306,304,305,307,306,305,308,306,307,308,307,309,307,310,309,310,311,309,312,309,311,313,311,310,314,308,309,315,304,306,316,318,317,319,317,318,320,319,318,321,323,322,324,322,323,325,327,326,328,326,327,329,328,327,330,328,329,331,330,329,332,329,327,331,333,330,333,334,330,335,330,334,336,333,331,337,339,338,340,338,339,341,338,340,342,341,340,338,343,337,344,337,343,342,344,343,340,344,342,345,347,346,348,346,347,349,351,350,352,350,351,353,352,351,354,353,351,352,355,350,356,350,355,357,359,358,360,358,359,361,360,359,362,364,363,365,363,364,366,368,367,369,367,368,370,372,371,373,371,372,66,374,67,69,67,374,73,69,374,75,73,374,79,75,374,80,79,374,82,80,374,82,375,81,81,375,78,78,375,77,77,375,84,84,375,86,86,375,90,92,90,375,376,378,377,379,377,378,377,380,376,376,380,381,382,381,380,383,380,377,126,384,128,131,128,384,135,131,384,138,135,384,142,138,384,143,142,384,145,143,384,145,385,144,144,385,141,141,385,140,140,385,148,148,385,150,150,385,154,157,154,385,386,388,387,389,387,388,390,392,391,393,391,392,394,393,392,395,393,394,396,395,394,397,394,392,396,398,395,398,399,395,400,395,399,401,398,396,402,404,403,405,403,404,406,405,404,403,405,407,408,407,405,409,407,408,410,407,409,411,410,409,412,414,413,415,413,414,416,413,415,417,416,415,413,418,412,419,412,418,417,419,418,415,419,417,420,422,421,423,421,422,424,421,423,425,424,423,421,426,420,427,420,426,425,427,426,423,427,425,428,430,429,431,429,430,432,431,430,433,431,432,434,432,430,432,435,433,435,436,433,433,436,437,437,436,438,439,438,436,440,437,438,441,436,435,429,442,428,443,428,442,444,446,445,447,445,446,448,450,449,451,449,450,452,451,450,453,455,454,456,454,455,457,459,458,460,458,459,461,460,459,462,464,463,465,463,464,466,465,464,467,465,466,468,470,469,471,469,470,472,474,473,475,473,474,476,478,477,479,477,478,480,482,481,483,481,482,484,486,485,487,485,486,488,490,489,491,489,490,492,494,493,495,493,494,496,495,494,497,495,496,498,500,499,501,499,500,502,504,503,505,503,504,506,508,507,509,507,508 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *360 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_stoneRoundNarrow, Model::RootNode + C: "OO",5532389522293044856,0 + + ;Geometry::, Model::Mesh bridge_stoneRoundNarrow + C: "OO",5652522739577450585,5532389522293044856 + + ;Material::stone, Model::Mesh bridge_stoneRoundNarrow + C: "OO",3038,5532389522293044856 + + ;Material::stoneDark, Model::Mesh bridge_stoneRoundNarrow + C: "OO",3040,5532389522293044856 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRoundNarrow.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRoundNarrow.fbx.import new file mode 100644 index 0000000..18f2814 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRoundNarrow.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b0hiwiskmg4h4" +path="res://.godot/imported/bridge_stoneRoundNarrow.fbx-eb146dc3a5a09445e62d7b61b85d8e10.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_stoneRoundNarrow.fbx" +dest_files=["res://.godot/imported/bridge_stoneRoundNarrow.fbx-eb146dc3a5a09445e62d7b61b85d8e10.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_wood.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_wood.fbx new file mode 100644 index 0000000..dc61e3e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_wood.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 11 + Millisecond: 343 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_wood.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_wood.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4705617511570026289, "Model::bridge_wood", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5428920215800587705, "Geometry::", "Mesh" { + Vertices: *1008 { + a: 4,1.5,-4.5,4,2.5,-4.5,-4,1.5,-4.5,-4,2.5,-4.5,-4,1,-4,-4,1.5,-4,-4,1,4,-4,1.5,4,-3.8,3.5,3.8,-4,3.5,5,-3.8,3.5,5.2,-5.2,3.5,5.2,-5,3.5,5,-5,3.5,4,-4,3.5,4,-5.2,3.5,3.8,4,3,4,4,3.5,4,4,3,5,4,3.5,5,-3.8,3.5,-5.2,-4,3.5,-4,-3.8,3.5,-3.8,-5.2,3.5,-3.8,-5,3.5,-4,-5,3.5,-5,-4,3.5,-5,-5.2,3.5,-5.2,-4,3.5,4,-4,3,4,-4,3.5,5,-4,3,5,-5,0,-5,-4,0,-5,-5,3.5,-5,-4,2.5,-5,-4,3,-5,4,2.5,-5,4,3,-5,-4,3.5,-5,5,3.5,-5,5,0,-5,4,0,-5,4,3.5,-5,4,1.5,-4,4,1,-4,4,1.5,4,4,1,4,-4,3.5,-5,-4,3,-5,-4,3.5,-4,-4,3,-4,5,0,5,4,0,5,5,3.5,5,4,2.5,5,4,3,5,-4,2.5,5,-4,3,5,4,3.5,5,-5,3.5,5,-5,0,5,-4,0,5,-4,3.5,5,4,2.5,-4.5,4,2.5,-5,-4,2.5,-4.5,-4,2.5,-5,-4,0,5,-4,0,4.5,-5,0,5,-4,0,-4.5,-4,0,-5,-5,0,-5,4,0,-4.5,4,0,4.5,5,0,-5,4,0,5,5,0,5,4,0,-5,4,0,4.5,4,1.5,4.5,4,0,5,4,2.5,4.5,4,2.5,5,4,3,-4,-4,3,-4,4,3,-5,-4,3,-5,-4,1.5,4.5,-4,2.5,4.5,4,1.5,4.5,4,2.5,4.5,5.2,3.5,3.8,5,3.5,5,5.2,3.5,5.2,3.8,3.5,5.2,4,3.5,5,4,3.5,4,5,3.5,4,3.8,3.5,3.8,-5,3.5,-5,-5,0.5,-4,-5,0,-5,-5,0,5,-5,0.5,4,-5,3.5,5,-5,1,4,-5,3.5,4,-5,1,-4,-5,3.5,-4,5,3.5,-5,5,0,-5,5,3.5,-4,5,0.5,-4,5,1,-4,5,0,5,5,0.5,4,5,1,4,5,3.5,5,5,3.5,4,-4,2.5,-5,-4,0,-5,-4,2.5,-4.5,-4,0,-4.5,-4,1.5,-4.5,4,1,4,5,1,4,4,1.5,4,4.2,1.5,4,5,3.5,4,4.2,2,4,4,3,4,-4.2,2,4,-4,3,4,-5,3.5,4,-4.2,1.5,4,-4,1,4,-5,1,4,-4,1.5,4,-4,3.5,4,4,3.5,4,5.2,3.5,-5.2,5,3.5,-4,5.2,3.5,-3.8,3.8,3.5,-3.8,4,3.5,-4,4,3.5,-5,5,3.5,-5,3.8,3.5,-5.2,4,3,4,4,3,5,-4,3,4,-4,3,5,4,2.5,5,4,2.5,4.5,-4,2.5,5,-4,2.5,4.5,4,0,-5,4,2.5,-5,4,0,-4.5,4,2.5,-4.5,4,1.5,-4.5,5,1,-4,4.2,1.5,-4,5,3.5,-4,4.2,2,-4,4,3,-4,-4.2,2,-4,4,3.5,-4,-4,3,-4,-5,3.5,-4,-4.2,1.5,-4,-4,1,-4,-5,1,-4,-4,1.5,-4,-4,3.5,-4,4,1.5,-4,4,1,-4,-4,2.5,4.5,-4,1.5,4.5,-4,2.5,5,-4,0,4.5,-4,0,5,4,3,-5,4,3.5,-5,4,3,-4,4,3.5,-4,-5.2,3.5,-5.2,-5.2,4,-5.2,-5.2,3.5,-3.8,-5.2,4,-3.8,5.2,4,-3.8,3.8,4,-3.8,5.2,4,-5.2,3.8,4,-5.2,-5.2,3.5,3.8,-5.2,4,3.8,-5.2,3.5,5.2,-5.2,4,5.2,-4,0,-4.5,4,0,-4.5,3.8,3.5,-5.2,5.2,3.5,-5.2,3.8,4,-5.2,5.2,4,-5.2,5.2,4,-5.2,5.2,3.5,-5.2,5.2,4,-3.8,5.2,3.5,-3.8,-3.8,3.5,-3.8,-5.2,3.5,-3.8,-3.8,4,-3.8,-5.2,4,-3.8,5.2,3.5,-3.8,3.8,3.5,-3.8,5.2,4,-3.8,3.8,4,-3.8,3.8,3.5,3.8,3.8,4,3.8,3.8,3.5,5.2,3.8,4,5.2,-3.8,4,-5.2,-3.8,3.5,-5.2,-3.8,4,-3.8,-3.8,3.5,-3.8,-3.8,4,-3.8,-5.2,4,-3.8,-3.8,4,-5.2,-5.2,4,-5.2,-5.2,3.5,-5.2,-3.8,3.5,-5.2,-5.2,4,-5.2,-3.8,4,-5.2,3.8,3.5,-5.2,3.8,4,-5.2,3.8,3.5,-3.8,3.8,4,-3.8,-3.8,4,3.8,-3.8,3.5,3.8,-3.8,4,5.2,-3.8,3.5,5.2,-3.8,3.5,5.2,-5.2,3.5,5.2,-3.8,4,5.2,-5.2,4,5.2,-5.2,3.5,3.8,-3.8,3.5,3.8,-5.2,4,3.8,-3.8,4,3.8,5.2,3.5,5.2,3.8,3.5,5.2,5.2,4,5.2,3.8,4,5.2,-3.8,4,3.8,-3.8,4,5.2,-5.2,4,3.8,-5.2,4,5.2,5.2,4,3.8,5.2,4,5.2,3.8,4,3.8,3.8,4,5.2,3.8,3.5,3.8,5.2,3.5,3.8,3.8,4,3.8,5.2,4,3.8,5.2,4,3.8,5.2,3.5,3.8,5.2,4,5.2,5.2,3.5,5.2,4,0,4.5,-4,0,4.5,5.2,1,-4,5.2,1,4,5,1,-4,5,1,4,4,1,-4,4,1,4,-5.2,0.5,-4,-5.2,1,-4,-5.2,0.5,4,-5.2,1,4,-4.2,1.5,-4,-4.2,2,-4,-4.2,1.5,4,-4.2,2,4,-4,1.5,4,-4,1.5,-4,-4.2,1.5,4,-4.2,1.5,-4,5.2,0.5,4,5.2,0.5,-4,5,0.5,4,5,0.5,-4,4.2,1.5,4,4.2,1.5,-4,4,1.5,4,4,1.5,-4,5,0.5,-4,5.2,0.5,-4,5,1,-4,5.2,1,-4,-5,0.5,4,-5,0.5,-4,-5.2,0.5,4,-5.2,0.5,-4,-5,0.5,4,-5.2,0.5,4,-5,1,4,-5.2,1,4,-4,1,-4,-4,1,4,-5,1,-4,-5,1,4,-5.2,1,-4,-5.2,1,4,-5,0.5,-4,-5,1,-4,-5.2,0.5,-4,-5.2,1,-4,5.2,1,-4,5.2,0.5,-4,5.2,1,4,5.2,0.5,4,4.2,2,-4,4.2,2,4,-4.2,2,-4,-4.2,2,4,5.2,0.5,4,5,0.5,4,5.2,1,4,5,1,4,4.2,2,-4,4.2,1.5,-4,4.2,2,4,4.2,1.5,4 + } + PolygonVertexIndex: *660 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,9,14,-9,15,8,-15,13,15,-15,11,15,-14,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,21,-24,25,24,-24,21,26,-21,27,20,-27,25,27,-27,23,27,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,35,-37,38,37,-37,39,36,-35,38,40,-38,40,41,-38,42,37,-42,43,40,-39,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,55,-55,57,55,-57,58,57,-57,59,56,-55,58,60,-58,60,61,-58,62,57,-62,63,60,-59,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,71,-71,73,72,-71,71,74,-70,75,69,-75,74,76,-76,75,76,-78,78,77,-77,79,76,-75,80,82,-82,83,81,-83,84,83,-83,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,94,-97,98,97,-97,94,99,-94,100,93,-100,98,100,-100,96,100,-99,101,103,-103,104,102,-104,105,102,-105,106,105,-105,105,106,-108,108,107,-107,102,109,-102,110,101,-110,111,113,-113,114,112,-114,115,114,-114,112,114,-117,117,116,-115,118,116,-118,119,116,-119,120,119,-119,121,123,-123,124,122,-124,125,124,-124,126,128,-128,129,127,-129,127,129,-131,131,130,-130,132,130,-132,133,132,-132,134,132,-134,134,133,-136,133,136,-136,136,137,-136,138,135,-138,139,137,-137,140,134,-136,141,130,-133,142,144,-144,145,143,-145,146,143,-146,147,146,-146,143,148,-143,149,142,-149,147,149,-149,145,149,-148,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,161,-161,163,165,-165,166,164,-166,167,166,-166,168,166,-168,169,167,-166,167,170,-169,170,171,-169,168,171,-173,172,171,-174,174,173,-172,175,172,-174,176,171,-171,164,177,-164,178,163,-178,179,181,-181,182,180,-182,183,182,-182,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,2,-202,0,201,-3,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,91,-272,89,271,-92,272,274,-274,275,273,-275,276,275,-275,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,313,-313,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1980 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *672 { + a: -15.74803,5.905512,-15.74803,9.84252,15.74803,5.905512,15.74803,9.84252,-15.74803,3.937008,-15.74803,5.905512,15.74803,3.937008,15.74803,5.905512,-14.96063,14.96063,-15.74803,19.68504,-14.96063,20.47244,-20.47244,20.47244,-19.68504,19.68504,-19.68504,15.74803,-15.74803,15.74803,-20.47244,14.96063,15.74803,11.81102,15.74803,13.77953,19.68504,11.81102,19.68504,13.77953,-14.96063,-20.47244,-15.74803,-15.74803,-14.96063,-14.96063,-20.47244,-14.96063,-19.68504,-15.74803,-19.68504,-19.68504,-15.74803,-19.68504,-20.47244,-20.47244,-15.74803,13.77953,-15.74803,11.81102,-19.68504,13.77953,-19.68504,11.81102,19.68504,-1.719211E-11,15.74803,-1.719211E-11,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-15.74803,9.84252,-15.74803,11.81102,15.74803,13.77953,-19.68504,13.77953,-19.68504,-1.719211E-11,-15.74803,-1.719211E-11,-15.74803,13.77953,15.74803,5.905512,15.74803,3.937008,-15.74803,5.905512,-15.74803,3.937008,19.68504,13.77953,19.68504,11.81102,15.74803,13.77953,15.74803,11.81102,19.68504,-4.078818E-12,15.74803,-4.078818E-12,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-15.74803,9.84252,-15.74803,11.81102,15.74803,13.77953,-19.68504,13.77953,-19.68504,-4.078818E-12,-15.74803,-4.078818E-12,-15.74803,13.77953,15.74803,-17.71654,15.74803,-19.68504,-15.74803,-17.71654,-15.74803,-19.68504,-15.74803,19.68504,-15.74803,17.71654,-19.68504,19.68504,-15.74803,-17.71654,-15.74803,-19.68504,-19.68504,-19.68504,15.74803,-17.71654,15.74803,17.71654,19.68504,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,17.71654,2.1081E-14,17.71654,5.905512,19.68504,2.1081E-14,17.71654,9.84252,19.68504,9.84252,-15.74803,-15.74803,15.74803,-15.74803,-15.74803,-19.68504,15.74803,-19.68504,-15.74803,5.905512,-15.74803,9.84252,15.74803,5.905512,15.74803,9.84252,20.47244,14.96063,19.68504,19.68504,20.47244,20.47244,14.96063,20.47244,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,14.96063,14.96063,-19.68504,13.77953,-15.74803,1.968504,-19.68504,-2.675539E-13,19.68504,-2.675539E-13,15.74803,1.968504,19.68504,13.77953,15.74803,3.937008,15.74803,13.77953,-15.74803,3.937008,-15.74803,13.77953,19.68504,13.77953,19.68504,1.471389E-13,15.74803,13.77953,15.74803,1.968504,15.74803,3.937008,-19.68504,1.471389E-13,-15.74803,1.968504,-15.74803,3.937008,-19.68504,13.77953,-15.74803,13.77953,19.68504,9.84252,19.68504,1.05405E-14,17.71654,9.84252,17.71654,1.05405E-14,17.71654,5.905512,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,13.77953,-16.53543,7.874016,-15.74803,11.81102,16.53543,7.874016,15.74803,11.81102,19.68504,13.77953,16.53543,5.905512,15.74803,3.937008,19.68504,3.937008,15.74803,5.905512,15.74803,13.77953,-15.74803,13.77953,20.47244,-20.47244,19.68504,-15.74803,20.47244,-14.96063,14.96063,-14.96063,15.74803,-15.74803,15.74803,-19.68504,19.68504,-19.68504,14.96063,-20.47244,-15.74803,15.74803,-15.74803,19.68504,15.74803,15.74803,15.74803,19.68504,15.74803,19.68504,15.74803,17.71654,-15.74803,19.68504,-15.74803,17.71654,-19.68504,2.258679E-14,-19.68504,9.84252,-17.71654,2.258679E-14,-17.71654,9.84252,-17.71654,5.905512,19.68504,3.937008,16.53543,5.905512,19.68504,13.77953,16.53543,7.874016,15.74803,11.81102,-16.53543,7.874016,15.74803,13.77953,-15.74803,11.81102,-19.68504,13.77953,-16.53543,5.905512,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-15.74803,13.77953,15.74803,5.905512,15.74803,3.937008,-17.71654,9.84252,-17.71654,5.905512,-19.68504,9.84252,-17.71654,3.312729E-14,-19.68504,3.312729E-14,-19.68504,11.81102,-19.68504,13.77953,-15.74803,11.81102,-15.74803,13.77953,-20.47244,13.77953,-20.47244,15.74803,-14.96063,13.77953,-14.96063,15.74803,-20.47244,-14.96063,-14.96063,-14.96063,-20.47244,-20.47244,-14.96063,-20.47244,14.96063,13.77953,14.96063,15.74803,20.47244,13.77953,20.47244,15.74803,15.74803,-1.763518E-28,-15.74803,-1.763518E-28,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,20.47244,15.74803,20.47244,13.77953,14.96063,15.74803,14.96063,13.77953,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,14.96063,13.77953,14.96063,15.74803,20.47244,13.77953,20.47244,15.74803,20.47244,15.74803,20.47244,13.77953,14.96063,15.74803,14.96063,13.77953,14.96063,-14.96063,20.47244,-14.96063,14.96063,-20.47244,20.47244,-20.47244,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,-20.47244,13.77953,-20.47244,15.74803,-14.96063,13.77953,-14.96063,15.74803,-14.96063,15.74803,-14.96063,13.77953,-20.47244,15.74803,-20.47244,13.77953,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,14.96063,14.96063,14.96063,20.47244,20.47244,14.96063,20.47244,20.47244,-20.47244,14.96063,-20.47244,20.47244,-14.96063,14.96063,-14.96063,20.47244,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,-14.96063,15.74803,-14.96063,13.77953,-20.47244,15.74803,-20.47244,13.77953,15.74803,-1.763518E-28,-15.74803,-1.763518E-28,-20.47244,-15.74803,-20.47244,15.74803,-19.68504,-15.74803,-19.68504,15.74803,-15.74803,-15.74803,-15.74803,15.74803,-15.74803,1.968504,-15.74803,3.937008,15.74803,1.968504,15.74803,3.937008,-15.74803,5.905512,-15.74803,7.874016,15.74803,5.905512,15.74803,7.874016,-15.74803,15.74803,-15.74803,-15.74803,-16.53543,15.74803,-16.53543,-15.74803,20.47244,15.74803,20.47244,-15.74803,19.68504,15.74803,19.68504,-15.74803,16.53543,15.74803,16.53543,-15.74803,15.74803,15.74803,15.74803,-15.74803,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,-19.68504,15.74803,-19.68504,-15.74803,-20.47244,15.74803,-20.47244,-15.74803,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,15.74803,-15.74803,15.74803,15.74803,19.68504,-15.74803,19.68504,15.74803,20.47244,-15.74803,20.47244,15.74803,19.68504,1.968504,19.68504,3.937008,20.47244,1.968504,20.47244,3.937008,15.74803,3.937008,15.74803,1.968504,-15.74803,3.937008,-15.74803,1.968504,-16.53543,-15.74803,-16.53543,15.74803,16.53543,-15.74803,16.53543,15.74803,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,15.74803,7.874016,15.74803,5.905512,-15.74803,7.874016,-15.74803,5.905512 + } + UVIndex: *660 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,9,14,8,15,8,14,13,15,14,11,15,13,16,18,17,19,17,18,20,22,21,23,21,22,24,21,23,25,24,23,21,26,20,27,20,26,25,27,26,23,27,25,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,37,35,36,38,37,36,39,36,34,38,40,37,40,41,37,42,37,41,43,40,38,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,55,54,57,55,56,58,57,56,59,56,54,58,60,57,60,61,57,62,57,61,63,60,58,64,66,65,67,65,66,68,70,69,71,69,70,72,71,70,73,72,70,71,74,69,75,69,74,74,76,75,75,76,77,78,77,76,79,76,74,80,82,81,83,81,82,84,83,82,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,94,96,98,97,96,94,99,93,100,93,99,98,100,99,96,100,98,101,103,102,104,102,103,105,102,104,106,105,104,105,106,107,108,107,106,102,109,101,110,101,109,111,113,112,114,112,113,115,114,113,112,114,116,117,116,114,118,116,117,119,116,118,120,119,118,121,123,122,124,122,123,125,124,123,126,128,127,129,127,128,127,129,130,131,130,129,132,130,131,133,132,131,134,132,133,134,133,135,133,136,135,136,137,135,138,135,137,139,137,136,140,134,135,141,130,132,142,144,143,145,143,144,146,143,145,147,146,145,143,148,142,149,142,148,147,149,148,145,149,147,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,161,160,163,165,164,166,164,165,167,166,165,168,166,167,169,167,165,167,170,168,170,171,168,168,171,172,172,171,173,174,173,171,175,172,173,176,171,170,164,177,163,178,163,177,179,181,180,182,180,181,183,182,181,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,2,201,0,201,2,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,91,271,89,271,91,272,274,273,275,273,274,276,275,274,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,313,312,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *220 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_wood, Model::RootNode + C: "OO",4705617511570026289,0 + + ;Geometry::, Model::Mesh bridge_wood + C: "OO",5428920215800587705,4705617511570026289 + + ;Material::woodBark, Model::Mesh bridge_wood + C: "OO",3046,4705617511570026289 + + ;Material::wood, Model::Mesh bridge_wood + C: "OO",3044,4705617511570026289 + + ;Material::stone, Model::Mesh bridge_wood + C: "OO",3038,4705617511570026289 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_wood.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_wood.fbx.import new file mode 100644 index 0000000..0b91ff8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_wood.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://br43sdyutjnqs" +path="res://.godot/imported/bridge_wood.fbx-28c87591e4ea56cb1b4db01d36f74b40.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_wood.fbx" +dest_files=["res://.godot/imported/bridge_wood.fbx-28c87591e4ea56cb1b4db01d36f74b40.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodNarrow.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodNarrow.fbx new file mode 100644 index 0000000..af3d189 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodNarrow.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 11 + Millisecond: 476 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_woodNarrow.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_woodNarrow.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5256642953006428033, "Model::bridge_woodNarrow", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5715014139992129615, "Geometry::", "Mesh" { + Vertices: *1008 { + a: 4,1.5,-3.5,4,2,-3.5,-4,1.5,-3.5,-4,2,-3.5,-4,1,-3,-4,1.5,-3,-4,1,3,-4,1.5,3,-3.8,3,2.8,-4,3,4,-3.8,3,4.2,-5.2,3,4.2,-5,3,4,-5,3,3,-4,3,3,-5.2,3,2.8,-3.8,3,-4.2,-4,3,-3,-3.8,3,-2.8,-5.2,3,-2.8,-5,3,-3,-5,3,-4,-4,3,-4,-5.2,3,-4.2,4,1.5,-3,4,1,-3,4,1.5,3,4,1,3,5,0,4,4,0,4,5,3,4,4,2,4,4,2.5,4,-4,2,4,-4,2.5,4,4,3,4,-5,3,4,-5,0,4,-4,0,4,-4,3,4,4,2,-3.5,4,2,-4,-4,2,-3.5,-4,2,-4,4,0,3.5,4,1.5,3.5,4,0,4,4,2,3.5,4,2,4,4,2.5,-3,-4,2.5,-3,4,2.5,-4,-4,2.5,-4,-4,1.5,3.5,-4,2,3.5,4,1.5,3.5,4,2,3.5,5.2,3,2.8,5,3,4,5.2,3,4.2,3.8,3,4.2,4,3,4,4,3,3,5,3,3,3.8,3,2.8,4,1,3,5,1,3,4,1.5,3,4.2,1.5,3,5,3,3,4.2,2,3,4,2.5,3,-4.2,2,3,-4,2.5,3,-5,3,3,-4.2,1.5,3,-4,1,3,-5,1,3,-4,1.5,3,-4,3,3,4,3,3,5.2,3,-4.2,5,3,-3,5.2,3,-2.8,3.8,3,-2.8,4,3,-3,4,3,-4,5,3,-4,3.8,3,-4.2,4,2.5,3,4,2.5,4,-4,2.5,3,-4,2.5,4,4,2,4,4,2,3.5,-4,2,4,-4,2,3.5,5,1,-3,4.2,1.5,-3,5,3,-3,4.2,2,-3,4,2.5,-3,-4.2,2,-3,4,3,-3,-4,2.5,-3,-5,3,-3,-4.2,1.5,-3,-4,1,-3,-5,1,-3,-4,1.5,-3,-4,3,-3,4,1.5,-3,4,1,-3,-4,2,3.5,-4,1.5,3.5,-4,2,4,-4,0,3.5,-4,0,4,-4,3,-4,-4,2.5,-4,-4,3,-3,-4,2.5,-3,4,2.5,-4,4,3,-4,4,2.5,-3,4,3,-3,4,2.5,3,4,3,3,4,2.5,4,4,3,4,-4,3,3,-4,2.5,3,-4,3,4,-4,2.5,4,-5,0,-4,-4,0,-4,-5,3,-4,-4,2,-4,-4,2.5,-4,4,2,-4,4,2.5,-4,-4,3,-4,5,3,-4,5,0,-4,4,0,-4,4,3,-4,4,2,-4,4,2,-3.5,4,0,-4,4,0,-3.5,4,1.5,-3.5,-4,0,4,-4,0,3.5,-5,0,4,-4,0,-3.5,-4,0,-4,-5,0,-4,4,0,-3.5,4,0,3.5,5,0,-4,4,0,4,5,0,4,4,0,-4,-4,2,-4,-4,0,-4,-4,2,-3.5,-4,0,-3.5,-4,1.5,-3.5,-5,3,-4,-5,0.5,-3,-5,0,-4,-5,0,4,-5,0.5,3,-5,3,4,-5,1,3,-5,3,3,-5,1,-3,-5,3,-3,5,3,-4,5,0,-4,5,3,-3,5,0.5,-3,5,1,-3,5,0,4,5,0.5,3,5,1,3,5,3,4,5,3,3,-5.2,3,-4.2,-5.2,3.5,-4.2,-5.2,3,-2.8,-5.2,3.5,-2.8,5.2,3.5,-2.8,3.8,3.5,-2.8,5.2,3.5,-4.2,3.8,3.5,-4.2,-5.2,3,2.8,-5.2,3.5,2.8,-5.2,3,4.2,-5.2,3.5,4.2,-4,0,-3.5,4,0,-3.5,3.8,3,-4.2,5.2,3,-4.2,3.8,3.5,-4.2,5.2,3.5,-4.2,5.2,3.5,-4.2,5.2,3,-4.2,5.2,3.5,-2.8,5.2,3,-2.8,-3.8,3,-2.8,-5.2,3,-2.8,-3.8,3.5,-2.8,-5.2,3.5,-2.8,5.2,3,-2.8,3.8,3,-2.8,5.2,3.5,-2.8,3.8,3.5,-2.8,3.8,3,2.8,3.8,3.5,2.8,3.8,3,4.2,3.8,3.5,4.2,-3.8,3.5,-4.2,-3.8,3,-4.2,-3.8,3.5,-2.8,-3.8,3,-2.8,-3.8,3.5,-2.8,-5.2,3.5,-2.8,-3.8,3.5,-4.2,-5.2,3.5,-4.2,-5.2,3,-4.2,-3.8,3,-4.2,-5.2,3.5,-4.2,-3.8,3.5,-4.2,3.8,3,-4.2,3.8,3.5,-4.2,3.8,3,-2.8,3.8,3.5,-2.8,-3.8,3.5,2.8,-3.8,3,2.8,-3.8,3.5,4.2,-3.8,3,4.2,-3.8,3,4.2,-5.2,3,4.2,-3.8,3.5,4.2,-5.2,3.5,4.2,-5.2,3,2.8,-3.8,3,2.8,-5.2,3.5,2.8,-3.8,3.5,2.8,5.2,3,4.2,3.8,3,4.2,5.2,3.5,4.2,3.8,3.5,4.2,-3.8,3.5,2.8,-3.8,3.5,4.2,-5.2,3.5,2.8,-5.2,3.5,4.2,5.2,3.5,2.8,5.2,3.5,4.2,3.8,3.5,2.8,3.8,3.5,4.2,3.8,3,2.8,5.2,3,2.8,3.8,3.5,2.8,5.2,3.5,2.8,5.2,3.5,2.8,5.2,3,2.8,5.2,3.5,4.2,5.2,3,4.2,4,0,3.5,-4,0,3.5,5.2,1,-3,5.2,1,3,5,1,-3,5,1,3,4,1,-3,4,1,3,-5.2,0.5,-3,-5.2,1,-3,-5.2,0.5,3,-5.2,1,3,-4.2,1.5,-3,-4.2,2,-3,-4.2,1.5,3,-4.2,2,3,-4,1.5,3,-4,1.5,-3,-4.2,1.5,3,-4.2,1.5,-3,5.2,0.5,3,5.2,0.5,-3,5,0.5,3,5,0.5,-3,4.2,1.5,3,4.2,1.5,-3,4,1.5,3,4,1.5,-3,5,0.5,-3,5.2,0.5,-3,5,1,-3,5.2,1,-3,-5,0.5,3,-5,0.5,-3,-5.2,0.5,3,-5.2,0.5,-3,-5,0.5,3,-5.2,0.5,3,-5,1,3,-5.2,1,3,-4,1,-3,-4,1,3,-5,1,-3,-5,1,3,-5.2,1,-3,-5.2,1,3,-5,0.5,-3,-5,1,-3,-5.2,0.5,-3,-5.2,1,-3,5.2,1,-3,5.2,0.5,-3,5.2,1,3,5.2,0.5,3,4.2,2,-3,4.2,2,3,-4.2,2,-3,-4.2,2,3,5.2,0.5,3,5,0.5,3,5.2,1,3,5,1,3,4.2,2,-3,4.2,1.5,-3,4.2,2,3,4.2,1.5,3 + } + PolygonVertexIndex: *660 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,9,14,-9,15,8,-15,13,15,-15,11,15,-14,16,18,-18,19,17,-19,20,17,-20,21,20,-20,17,22,-17,23,16,-23,21,23,-23,19,23,-22,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,31,-31,33,31,-33,34,33,-33,35,32,-31,34,36,-34,36,37,-34,38,33,-38,39,36,-35,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,58,-61,62,61,-61,58,63,-58,64,57,-64,62,64,-64,60,64,-63,65,67,-67,68,66,-68,66,68,-70,70,69,-69,71,69,-71,72,71,-71,73,71,-73,73,72,-75,72,75,-75,75,76,-75,77,74,-77,78,76,-76,79,73,-75,80,69,-72,81,83,-83,84,82,-84,85,82,-85,86,85,-85,82,87,-82,88,81,-88,86,88,-88,84,88,-87,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,100,-100,102,100,-102,103,101,-100,101,104,-103,104,105,-103,102,105,-107,106,105,-108,108,107,-106,109,106,-108,110,105,-105,98,111,-98,112,97,-112,113,115,-115,116,114,-116,117,116,-116,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,137,-137,139,137,-139,140,139,-139,141,138,-137,140,142,-140,142,143,-140,144,139,-144,145,142,-141,146,148,-148,149,147,-149,150,147,-150,151,153,-153,154,152,-154,155,154,-154,156,155,-154,154,157,-153,158,152,-158,157,159,-159,158,159,-161,161,160,-160,162,159,-158,163,165,-165,166,164,-166,167,166,-166,168,170,-170,171,169,-171,172,169,-172,173,172,-172,172,173,-175,175,174,-174,169,176,-169,177,168,-177,178,180,-180,181,179,-181,182,181,-181,179,181,-184,184,183,-182,185,183,-185,186,183,-186,187,186,-186,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,2,-202,0,201,-3,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,55,-272,53,271,-56,272,274,-274,275,273,-275,276,275,-275,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,313,-313,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1980 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *672 { + a: -15.74803,5.905512,-15.74803,7.874016,15.74803,5.905512,15.74803,7.874016,-11.81102,3.937008,-11.81102,5.905512,11.81102,3.937008,11.81102,5.905512,-14.96063,11.02362,-15.74803,15.74803,-14.96063,16.53543,-20.47244,16.53543,-19.68504,15.74803,-19.68504,11.81102,-15.74803,11.81102,-20.47244,11.02362,-14.96063,-16.53543,-15.74803,-11.81102,-14.96063,-11.02362,-20.47244,-11.02362,-19.68504,-11.81102,-19.68504,-15.74803,-15.74803,-15.74803,-20.47244,-16.53543,11.81102,5.905512,11.81102,3.937008,-11.81102,5.905512,-11.81102,3.937008,19.68504,-3.796277E-12,15.74803,-3.796277E-12,19.68504,11.81102,15.74803,7.874016,15.74803,9.84252,-15.74803,7.874016,-15.74803,9.84252,15.74803,11.81102,-19.68504,11.81102,-19.68504,-3.796277E-12,-15.74803,-3.796277E-12,-15.74803,11.81102,15.74803,-13.77953,15.74803,-15.74803,-15.74803,-13.77953,-15.74803,-15.74803,13.77953,0,13.77953,5.905512,15.74803,0,13.77953,7.874016,15.74803,7.874016,-15.74803,-11.81102,15.74803,-11.81102,-15.74803,-15.74803,15.74803,-15.74803,-15.74803,5.905512,-15.74803,7.874016,15.74803,5.905512,15.74803,7.874016,20.47244,11.02362,19.68504,15.74803,20.47244,16.53543,14.96063,16.53543,15.74803,15.74803,15.74803,11.81102,19.68504,11.81102,14.96063,11.02362,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,11.81102,-16.53543,7.874016,-15.74803,9.84252,16.53543,7.874016,15.74803,9.84252,19.68504,11.81102,16.53543,5.905512,15.74803,3.937008,19.68504,3.937008,15.74803,5.905512,15.74803,11.81102,-15.74803,11.81102,20.47244,-16.53543,19.68504,-11.81102,20.47244,-11.02362,14.96063,-11.02362,15.74803,-11.81102,15.74803,-15.74803,19.68504,-15.74803,14.96063,-16.53543,-15.74803,11.81102,-15.74803,15.74803,15.74803,11.81102,15.74803,15.74803,15.74803,15.74803,15.74803,13.77953,-15.74803,15.74803,-15.74803,13.77953,19.68504,3.937008,16.53543,5.905512,19.68504,11.81102,16.53543,7.874016,15.74803,9.84252,-16.53543,7.874016,15.74803,11.81102,-15.74803,9.84252,-19.68504,11.81102,-16.53543,5.905512,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-15.74803,11.81102,15.74803,5.905512,15.74803,3.937008,-13.77953,7.874016,-13.77953,5.905512,-15.74803,7.874016,-13.77953,0,-15.74803,0,15.74803,11.81102,15.74803,9.84252,11.81102,11.81102,11.81102,9.84252,-15.74803,9.84252,-15.74803,11.81102,-11.81102,9.84252,-11.81102,11.81102,11.81102,9.84252,11.81102,11.81102,15.74803,9.84252,15.74803,11.81102,-11.81102,11.81102,-11.81102,9.84252,-15.74803,11.81102,-15.74803,9.84252,19.68504,-9.683528E-12,15.74803,-9.683528E-12,19.68504,11.81102,15.74803,7.874016,15.74803,9.84252,-15.74803,7.874016,-15.74803,9.84252,15.74803,11.81102,-19.68504,11.81102,-19.68504,-9.683528E-12,-15.74803,-9.683528E-12,-15.74803,11.81102,-15.74803,7.874016,-13.77953,7.874016,-15.74803,6.129599E-24,-13.77953,6.129599E-24,-13.77953,5.905512,-15.74803,15.74803,-15.74803,13.77953,-19.68504,15.74803,-15.74803,-13.77953,-15.74803,-15.74803,-19.68504,-15.74803,15.74803,-13.77953,15.74803,13.77953,19.68504,-15.74803,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,15.74803,7.874016,15.74803,-7.870408E-26,13.77953,7.874016,13.77953,-7.870408E-26,13.77953,5.905512,-15.74803,11.81102,-11.81102,1.968504,-15.74803,-4.973799E-13,15.74803,-4.973799E-13,11.81102,1.968504,15.74803,11.81102,11.81102,3.937008,11.81102,11.81102,-11.81102,3.937008,-11.81102,11.81102,15.74803,11.81102,15.74803,2.664535E-13,11.81102,11.81102,11.81102,1.968504,11.81102,3.937008,-15.74803,2.664535E-13,-11.81102,1.968504,-11.81102,3.937008,-15.74803,11.81102,-11.81102,11.81102,-16.53543,11.81102,-16.53543,13.77953,-11.02362,11.81102,-11.02362,13.77953,-20.47244,-11.02362,-14.96063,-11.02362,-20.47244,-16.53543,-14.96063,-16.53543,11.02362,11.81102,11.02362,13.77953,16.53543,11.81102,16.53543,13.77953,15.74803,-3.67203E-28,-15.74803,-3.67203E-28,-14.96063,11.81102,-20.47244,11.81102,-14.96063,13.77953,-20.47244,13.77953,16.53543,13.77953,16.53543,11.81102,11.02362,13.77953,11.02362,11.81102,-14.96063,11.81102,-20.47244,11.81102,-14.96063,13.77953,-20.47244,13.77953,20.47244,11.81102,14.96063,11.81102,20.47244,13.77953,14.96063,13.77953,11.02362,11.81102,11.02362,13.77953,16.53543,11.81102,16.53543,13.77953,16.53543,13.77953,16.53543,11.81102,11.02362,13.77953,11.02362,11.81102,14.96063,-11.02362,20.47244,-11.02362,14.96063,-16.53543,20.47244,-16.53543,20.47244,11.81102,14.96063,11.81102,20.47244,13.77953,14.96063,13.77953,-16.53543,11.81102,-16.53543,13.77953,-11.02362,11.81102,-11.02362,13.77953,-11.02362,13.77953,-11.02362,11.81102,-16.53543,13.77953,-16.53543,11.81102,-14.96063,11.81102,-20.47244,11.81102,-14.96063,13.77953,-20.47244,13.77953,20.47244,11.81102,14.96063,11.81102,20.47244,13.77953,14.96063,13.77953,20.47244,11.81102,14.96063,11.81102,20.47244,13.77953,14.96063,13.77953,14.96063,11.02362,14.96063,16.53543,20.47244,11.02362,20.47244,16.53543,-20.47244,11.02362,-20.47244,16.53543,-14.96063,11.02362,-14.96063,16.53543,-14.96063,11.81102,-20.47244,11.81102,-14.96063,13.77953,-20.47244,13.77953,-11.02362,13.77953,-11.02362,11.81102,-16.53543,13.77953,-16.53543,11.81102,15.74803,0,-15.74803,0,-20.47244,-11.81102,-20.47244,11.81102,-19.68504,-11.81102,-19.68504,11.81102,-15.74803,-11.81102,-15.74803,11.81102,-11.81102,1.968504,-11.81102,3.937008,11.81102,1.968504,11.81102,3.937008,-11.81102,5.905512,-11.81102,7.874016,11.81102,5.905512,11.81102,7.874016,-15.74803,11.81102,-15.74803,-11.81102,-16.53543,11.81102,-16.53543,-11.81102,20.47244,11.81102,20.47244,-11.81102,19.68504,11.81102,19.68504,-11.81102,16.53543,11.81102,16.53543,-11.81102,15.74803,11.81102,15.74803,-11.81102,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,-19.68504,11.81102,-19.68504,-11.81102,-20.47244,11.81102,-20.47244,-11.81102,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,15.74803,-11.81102,15.74803,11.81102,19.68504,-11.81102,19.68504,11.81102,20.47244,-11.81102,20.47244,11.81102,19.68504,1.968504,19.68504,3.937008,20.47244,1.968504,20.47244,3.937008,11.81102,3.937008,11.81102,1.968504,-11.81102,3.937008,-11.81102,1.968504,-16.53543,-11.81102,-16.53543,11.81102,16.53543,-11.81102,16.53543,11.81102,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,11.81102,7.874016,11.81102,5.905512,-11.81102,7.874016,-11.81102,5.905512 + } + UVIndex: *660 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,9,14,8,15,8,14,13,15,14,11,15,13,16,18,17,19,17,18,20,17,19,21,20,19,17,22,16,23,16,22,21,23,22,19,23,21,24,26,25,27,25,26,28,30,29,31,29,30,32,31,30,33,31,32,34,33,32,35,32,30,34,36,33,36,37,33,38,33,37,39,36,34,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,58,60,62,61,60,58,63,57,64,57,63,62,64,63,60,64,62,65,67,66,68,66,67,66,68,69,70,69,68,71,69,70,72,71,70,73,71,72,73,72,74,72,75,74,75,76,74,77,74,76,78,76,75,79,73,74,80,69,71,81,83,82,84,82,83,85,82,84,86,85,84,82,87,81,88,81,87,86,88,87,84,88,86,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,100,99,102,100,101,103,101,99,101,104,102,104,105,102,102,105,106,106,105,107,108,107,105,109,106,107,110,105,104,98,111,97,112,97,111,113,115,114,116,114,115,117,116,115,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,137,136,139,137,138,140,139,138,141,138,136,140,142,139,142,143,139,144,139,143,145,142,140,146,148,147,149,147,148,150,147,149,151,153,152,154,152,153,155,154,153,156,155,153,154,157,152,158,152,157,157,159,158,158,159,160,161,160,159,162,159,157,163,165,164,166,164,165,167,166,165,168,170,169,171,169,170,172,169,171,173,172,171,172,173,174,175,174,173,169,176,168,177,168,176,178,180,179,181,179,180,182,181,180,179,181,183,184,183,181,185,183,184,186,183,185,187,186,185,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,2,201,0,201,2,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,55,271,53,271,55,272,274,273,275,273,274,276,275,274,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,313,312,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *220 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_woodNarrow, Model::RootNode + C: "OO",5256642953006428033,0 + + ;Geometry::, Model::Mesh bridge_woodNarrow + C: "OO",5715014139992129615,5256642953006428033 + + ;Material::woodBark, Model::Mesh bridge_woodNarrow + C: "OO",3046,5256642953006428033 + + ;Material::wood, Model::Mesh bridge_woodNarrow + C: "OO",3044,5256642953006428033 + + ;Material::stone, Model::Mesh bridge_woodNarrow + C: "OO",3038,5256642953006428033 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodNarrow.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodNarrow.fbx.import new file mode 100644 index 0000000..46d3b69 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodNarrow.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bsg8855n43e2l" +path="res://.godot/imported/bridge_woodNarrow.fbx-b6ecb2947f701e71a9bff09890655b82.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_woodNarrow.fbx" +dest_files=["res://.godot/imported/bridge_woodNarrow.fbx-b6ecb2947f701e71a9bff09890655b82.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRound.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRound.fbx new file mode 100644 index 0000000..f56eea7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRound.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 11 + Millisecond: 613 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_woodRound.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_woodRound.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4988033445537552099, "Model::bridge_woodRound", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5483283101418020865, "Geometry::", "Mesh" { + Vertices: *1350 { + a: -3.8,4,-5.2,-4,4,-4,-3.8,4,-3.8,-5.2,4,-3.8,-5,4,-4,-5,4,-5,-4,4,-5,-5.2,4,-5.2,4,1.5,-4,4,1,-4,4,1.5,4,4,1,4,4,2.5,-4.5,4,2.5,-5,5.486527E-13,2.5,-4.5,-4,2.5,-5,-4,2.5,-4.5,5,0,5,4,0,5,5,4,5,4,2.5,5,4,3.5,5,-4,2.5,5,-4,3.5,5,4,4,5,-5,4,5,-5,0,5,-4,0,5,-4,4,5,4,0,4.5,3.569864,0.7067967,4.5,4,2.5,4.5,3.016317,1.321747,4.5,2.782662,1.5,4.5,2.358495,1.823592,4.5,1.619139,2.194983,4.5,0.8238094,2.423081,4.5,6.641585E-13,2.5,4.5,-0.8238094,2.423081,4.5,-4,2.5,4.5,-1.619139,2.194983,4.5,-2.358495,1.823592,4.5,-2.782662,1.5,4.5,-3.016317,1.321747,4.5,-3.569864,0.7067967,4.5,-4,0,4.5,-3.8,4,3.8,-4,4,5,-3.8,4,5.2,-5.2,4,5.2,-5,4,5,-5,4,4,-4,4,4,-5.2,4,3.8,-4,4,-5,-4,3.5,-5,-4,4,-4,-4,3.5,-4,-5,0,-5,-4,0,-5,-5,4,-5,-4,2.5,-5,-4,3.5,-5,4,2.5,-5,4,3.5,-5,-4,4,-5,5,4,-5,5,0,-5,4,0,-5,4,4,-5,-2.058636,0.8723532,-4.5,-2.436432,0.4664859,-4.5,-2.058636,0.8723532,4.5,-2.436432,0.4664859,4.5,-0.5622499,1.599233,4.5,-0.5622499,1.599233,-4.5,-0.9200526,1.5,4.5,-1.105063,1.448689,-4.5,-1.105063,1.448689,4.5,6.35282E-13,1.65,4.5,5.486527E-13,1.65,-4.5,-0.5622499,1.599233,4.5,-0.5622499,1.599233,-4.5,0.5622499,1.599233,4.5,0.5622499,1.599233,-4.5,6.35282E-13,1.65,4.5,5.486527E-13,1.65,-4.5,4,3.5,-5,4,4,-5,4,3.5,-4,4,4,-4,-4,1,-4,-4,1.5,-4,-4,1,4,-4,1.5,4,4,3.5,4,4,4,4,4,3.5,5,4,4,5,4,0,-4.5,4,2.5,-4.5,3.569864,0.7067967,-4.5,3.016317,1.321747,-4.5,2.782662,1.5,-4.5,2.358495,1.823592,-4.5,1.619139,2.194983,-4.5,0.8238094,2.423081,-4.5,5.486527E-13,2.5,-4.5,-4,2.5,-4.5,-0.8238094,2.423081,-4.5,-1.619139,2.194983,-4.5,-2.358495,1.823592,-4.5,-2.782662,1.5,-4.5,-3.016317,1.321747,-4.5,-3.569864,0.7067967,-4.5,-4,0,-4.5,5,1,-4,4.2,1.5,-4,5,4,-4,4.2,2,-4,4,3.5,-4,-4.2,2,-4,4,4,-4,-4,3.5,-4,-5,4,-4,-4.2,1.5,-4,-5,1,-4,-4,1,-4,-4,1.5,-4,-4,4,-4,4,1.5,-4,4,1,-4,5.2,4,3.8,5,4,5,5.2,4,5.2,3.8,4,5.2,4,4,5,4,4,4,5,4,4,3.8,4,3.8,-4,0,5,-4,0,4.5,-5,0,5,-4,0,-4.5,-4,0,-5,-5,0,-5,-2.73,-2.279417E-27,-4.5,-2.73,2.277814E-27,4.5,4,2.5,5,4,2.5,4.5,-4,2.5,5,6.641585E-13,2.5,4.5,-4,2.5,4.5,4,0,4.5,4,2.5,4.5,4,0,5,4,2.5,5,-4,2.5,4.5,-4,0,4.5,-4,2.5,5,-4,0,5,4,0,4.5,4,0,-4.5,2.73,0,4.5,2.73,-1.602965E-30,-4.5,5,0,-5,4,0,5,5,0,5,4,0,-5,-1.609673,1.203571,4.5,-1.609673,1.203571,-4.5,-1.899167,0.99,4.5,-1.899167,0.99,-4.5,-2.058636,0.8723532,4.5,-2.058636,0.8723532,-4.5,5,4,-5,5,0,-5,5,4,-4,5,0.5,-4,5,1,-4,5,0,5,5,0.5,4,5,1,4,5,4,5,5,4,4,1.609673,1.203571,4.5,1.609673,1.203571,-4.5,1.105063,1.448689,4.5,1.105063,1.448689,-4.5,4,3.5,4,4,3.5,5,-4,3.5,4,-4,3.5,5,2.058636,0.8723532,4.5,2.058636,0.8723532,-4.5,1.899167,0.99,4.5,1.899167,0.99,-4.5,1.609673,1.203571,4.5,1.609673,1.203571,-4.5,-5,4,-5,-5,0.5,-4,-5,0,-5,-5,0,5,-5,0.5,4,-5,4,5,-5,1,4,-5,4,4,-5,1,-4,-5,4,-4,4,3.5,-4,-4,3.5,-4,4,3.5,-5,-4,3.5,-5,5.2,4,-5.2,5,4,-4,5.2,4,-3.8,3.8,4,-3.8,4,4,-4,4,4,-5,5,4,-5,3.8,4,-5.2,-4,4,4,-4,3.5,4,-4,4,5,-4,3.5,5,-4,2.5,-5,-4,0,-5,-4,2.5,-4.5,-4,0,-4.5,4,0,-5,4,2.5,-5,4,0,-4.5,4,2.5,-4.5,-1.105063,1.448689,4.5,-1.105063,1.448689,-4.5,-1.609673,1.203571,4.5,-1.609673,1.203571,-4.5,1.105063,1.448689,4.5,1.105063,1.448689,-4.5,0.9200526,1.5,4.5,0.5622499,1.599233,-4.5,0.5622499,1.599233,4.5,2.436432,0.4664859,-4.5,2.058636,0.8723532,-4.5,2.436432,0.4664859,4.5,2.058636,0.8723532,4.5,2.73,-1.602965E-30,-4.5,2.436432,0.4664859,-4.5,2.73,0,4.5,2.436432,0.4664859,4.5,-2.436432,0.4664859,-4.5,-2.73,-2.279417E-27,-4.5,-2.436432,0.4664859,4.5,-2.73,2.277814E-27,4.5,4,1,4,5,1,4,4,1.5,4,4.2,1.5,4,5,4,4,4.2,2,4,4,3.5,4,-4.2,2,4,-4,3.5,4,-5,4,4,-4.2,1.5,4,-5,1,4,-4,1,4,-4,1.5,4,-4,4,4,4,4,4,-4,1,-4,-4,1,4,-5,1,-4,-5,1,4,-5.2,1,-4,-5.2,1,4,-5.2,0.5,-4,-5.2,1,-4,-5.2,0.5,4,-5.2,1,4,5.2,0.5,4,5.2,0.5,-4,5,0.5,4,5,0.5,-4,-5,0.5,-4,-5,1,-4,-5.2,0.5,-4,-5.2,1,-4,5.2,1,-4,5.2,0.5,-4,5.2,1,4,5.2,0.5,4,-5,0.5,4,-5.2,0.5,4,-5,1,4,-5.2,1,4,5.2,1,-4,5.2,1,4,5,1,-4,5,1,4,4,1,-4,4,1,4,4.2,1.5,4,4.2,1.5,-4,4,1.5,4,4,1.5,-4,4.2,2,4,3.2,2,-3,4.2,2,-4,-4.2,2,-4,-3.2,2,-3,-3.2,2,3,3.2,2,3,-4.2,2,4,-5,0.5,4,-5,0.5,-4,-5.2,0.5,4,-5.2,0.5,-4,5,0.5,-4,5.2,0.5,-4,5,1,-4,5.2,1,-4,4.2,2,-4,4.2,1.5,-4,4.2,2,4,4.2,1.5,4,5.2,0.5,4,5,0.5,4,5.2,1,4,5,1,4,-4.2,1.5,-4,-4.2,2,-4,-4.2,1.5,4,-4.2,2,4,-5.2,4,-5.2,-3.8,4,-5.2,-5.2,4.5,-5.2,-3.8,4.5,-5.2,-4,1.5,4,-4,1.5,-4,-4.2,1.5,4,-4.2,1.5,-4,-5.2,4,-5.2,-5.2,4.5,-5.2,-5.2,4,-3.8,-5.2,4.5,-3.8,3.8,4,-5.2,5.2,4,-5.2,3.8,4.5,-5.2,5.2,4.5,-5.2,5.2,4,-3.8,3.8,4,-3.8,5.2,4.5,-3.8,3.8,4.5,-3.8,3.8,4,3.8,3.8,4.5,3.8,3.8,4,5.2,3.8,4.5,5.2,-5.2,4,3.8,-5.2,4.5,3.8,-5.2,4,5.2,-5.2,4.5,5.2,5.2,4.5,-3.8,3.8,4.5,-3.8,5.2,4.5,-5.2,3.8,4.5,-5.2,3.8,4,-5.2,3.8,4.5,-5.2,3.8,4,-3.8,3.8,4.5,-3.8,3.8,4,3.8,5.2,4,3.8,3.8,4.5,3.8,5.2,4.5,3.8,5.2,4.5,3.8,5.2,4.5,5.2,3.8,4.5,3.8,3.8,4.5,5.2,-2.73,-2.279417E-27,-4.5,-2.436432,0.4664859,-4.5,-2.058636,0.8723532,-4.5,-1.899167,0.99,-4.5,-1.609673,1.203571,-4.5,-1.105063,1.448689,-4.5,-0.5622499,1.599233,-4.5,5.486527E-13,1.65,-4.5,0.5622499,1.599233,-4.5,1.105063,1.448689,-4.5,1.609673,1.203571,-4.5,1.899167,0.99,-4.5,2.058636,0.8723532,-4.5,2.436432,0.4664859,-4.5,2.73,-1.602965E-30,-4.5,-5.2,4,3.8,-3.8,4,3.8,-5.2,4.5,3.8,-3.8,4.5,3.8,-3.8,4,-3.8,-5.2,4,-3.8,-3.8,4.5,-3.8,-5.2,4.5,-3.8,5.2,4.5,-5.2,5.2,4,-5.2,5.2,4.5,-3.8,5.2,4,-3.8,-3.8,4.5,3.8,-3.8,4,3.8,-3.8,4.5,5.2,-3.8,4,5.2,2.73,0,4.5,2.436432,0.4664859,4.5,2.058636,0.8723532,4.5,1.899167,0.99,4.5,1.609673,1.203571,4.5,1.105063,1.448689,4.5,0.9200526,1.5,4.5,0.5622499,1.599233,4.5,6.35282E-13,1.65,4.5,-0.5622499,1.599233,4.5,-0.9200526,1.5,4.5,-1.105063,1.448689,4.5,-1.609673,1.203571,4.5,-1.899167,0.99,4.5,-2.058636,0.8723532,4.5,-2.436432,0.4664859,4.5,-2.73,2.277814E-27,4.5,5.2,4,5.2,3.8,4,5.2,5.2,4.5,5.2,3.8,4.5,5.2,5.2,4.5,3.8,5.2,4,3.8,5.2,4.5,5.2,5.2,4,5.2,-3.8,4,5.2,-5.2,4,5.2,-3.8,4.5,5.2,-5.2,4.5,5.2,-3.8,4.5,-3.8,-5.2,4.5,-3.8,-3.8,4.5,-5.2,-5.2,4.5,-5.2,-3.8,4.5,-5.2,-3.8,4,-5.2,-3.8,4.5,-3.8,-3.8,4,-3.8,-3.8,4.5,3.8,-3.8,4.5,5.2,-5.2,4.5,3.8,-5.2,4.5,5.2 + } + PolygonVertexIndex: *1008 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,1,6,-1,7,0,-7,5,7,-7,3,7,-6,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,20,18,-20,21,20,-20,22,20,-22,23,22,-22,24,21,-20,23,25,-23,25,26,-23,27,22,-27,28,25,-24,29,31,-31,32,30,-32,33,32,-32,34,33,-32,35,34,-32,36,35,-32,37,36,-32,37,39,-39,38,39,-41,40,39,-42,41,39,-43,42,39,-44,43,39,-45,45,44,-40,46,48,-48,49,47,-49,50,47,-50,51,50,-50,47,52,-47,53,46,-53,51,53,-53,49,53,-52,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,61,-63,64,63,-63,65,62,-61,64,66,-64,66,67,-64,68,63,-68,69,66,-65,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,100,-103,104,100,-104,105,100,-105,106,100,-106,107,100,-107,107,109,-109,109,110,-109,110,111,-109,111,112,-109,112,113,-109,113,114,-109,115,108,-115,116,118,-118,119,117,-119,120,119,-119,121,119,-121,122,120,-119,120,123,-122,123,124,-122,121,124,-126,124,126,-126,127,125,-127,128,125,-128,129,124,-124,117,130,-117,131,116,-131,132,134,-134,135,133,-135,136,133,-136,137,136,-136,133,138,-133,139,132,-139,137,139,-139,135,139,-138,140,142,-142,143,141,-143,144,143,-143,145,144,-143,143,146,-142,147,141,-147,148,150,-150,151,149,-151,152,151,-151,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,162,165,-162,161,165,-167,167,166,-166,168,165,-163,169,171,-171,172,170,-172,173,172,-172,174,172,-174,175,177,-177,178,176,-178,179,178,-178,176,178,-181,181,180,-179,182,180,-182,183,180,-183,184,183,-183,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,195,-195,196,194,-196,197,196,-196,198,196,-198,199,201,-201,202,200,-202,203,200,-203,204,203,-203,203,204,-206,206,205,-205,200,207,-200,208,199,-208,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,214,-217,218,217,-217,214,219,-214,220,213,-220,218,220,-220,216,220,-219,221,223,-223,224,222,-224,225,227,-227,228,226,-228,229,231,-231,232,230,-232,233,235,-235,236,234,-236,237,239,-239,240,238,-240,241,240,-240,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,255,257,-259,259,258,-258,260,258,-260,261,260,-260,262,260,-262,262,261,-264,261,264,-264,263,264,-266,266,265,-265,267,266,-265,268,262,-264,269,258,-261,270,272,-272,273,271,-273,274,273,-273,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,299,-299,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,307,-310,311,310,-310,307,312,-307,313,306,-313,311,313,-313,309,313,-312,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,360,-360,361,359,-361,362,364,-364,365,363,-365,366,368,-368,369,367,-369,370,372,-372,373,371,-373,374,376,-376,377,375,-377,378,115,-380,114,379,-116,380,379,-115,113,380,-115,381,380,-114,382,381,-114,383,382,-114,112,383,-114,384,383,-113,111,384,-113,385,384,-112,104,385,-112,105,104,-112,110,105,-112,109,105,-111,106,105,-110,107,106,-110,385,104,-387,104,103,-387,386,103,-388,103,102,-388,387,102,-389,388,102,-390,389,102,-391,102,101,-391,390,101,-392,101,99,-392,392,391,-100,393,395,-395,396,394,-396,397,399,-399,400,398,-400,401,403,-403,404,402,-404,405,407,-407,408,406,-408,29,30,-410,410,409,-31,411,410,-31,32,411,-31,412,411,-33,413,412,-33,414,413,-33,33,414,-33,415,414,-34,416,415,-34,34,416,-34,417,416,-35,41,417,-35,40,41,-35,35,40,-35,36,40,-36,38,40,-37,37,38,-37,417,41,-419,418,41,-420,41,42,-420,419,42,-421,42,43,-421,420,43,-422,421,43,-423,422,43,-424,43,44,-424,423,44,-425,424,44,-426,45,425,-45,426,428,-428,429,427,-429,430,432,-432,433,431,-433,434,436,-436,437,435,-437,438,440,-440,441,439,-441,442,444,-444,445,443,-445,446,448,-448,449,447,-449,307,310,-313,311,312,-311 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3024 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.6656808,-0.7462366,0,0.6656808,-0.7462366,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.6656808,-0.7462366,0,0.1793194,-0.9837909,0,0.2672535,-0.9636263,0,0.1793194,-0.9837909,0,0.3535515,-0.9354151,0,0.1793194,-0.9837909,0,0.2672535,-0.9636263,0,0.3535515,-0.9354151,0,0.3535515,-0.9354151,0,0.2672535,-0.9636263,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,0.5936666,-0.8047111,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.5936666,-0.8047111,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.2672535,-0.9636263,0,-0.3535515,-0.9354151,0,-0.1793194,-0.9837909,0,-0.3535515,-0.9354151,0,-0.2672535,-0.9636263,0,-0.1793194,-0.9837909,0,-0.1793194,-0.9837909,0,-0.2672535,-0.9636263,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.6656808,-0.7462366,0,-0.6656808,-0.7462366,0,-0.6656808,-0.7462366,0,-0.7926546,-0.6096708,0,-0.846352,-0.5326239,0,-0.846352,-0.5326239,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.846352,-0.5326239,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.846352,-0.5326239,0,0.846352,-0.5326239,0,0.846352,-0.5326239,0,0.7926546,-0.6096708,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *900 { + a: -14.96063,-20.47244,-15.74803,-15.74803,-14.96063,-14.96063,-20.47244,-14.96063,-19.68504,-15.74803,-19.68504,-19.68504,-15.74803,-19.68504,-20.47244,-20.47244,15.74803,5.905512,15.74803,3.937008,-15.74803,5.905512,-15.74803,3.937008,15.74803,-17.71654,15.74803,-19.68504,2.16005E-12,-17.71654,-15.74803,-19.68504,-15.74803,-17.71654,19.68504,-3.591662E-12,15.74803,-3.591662E-12,19.68504,15.74803,15.74803,9.84252,15.74803,13.77953,-15.74803,9.84252,-15.74803,13.77953,15.74803,15.74803,-19.68504,15.74803,-19.68504,-3.591662E-12,-15.74803,-3.591662E-12,-15.74803,15.74803,15.74803,-2.533087E-11,14.05458,2.782664,15.74803,9.84252,11.87527,5.203729,10.95536,5.905512,9.285415,7.179498,6.374565,8.641667,3.243344,9.539689,-2.388875E-11,9.84252,-3.243344,9.539689,-15.74803,9.84252,-6.374565,8.641667,-9.285415,7.179498,-10.95536,5.905512,-11.87527,5.203729,-14.05458,2.782664,-15.74803,-1.46566E-13,-14.96063,14.96063,-15.74803,19.68504,-14.96063,20.47244,-20.47244,20.47244,-19.68504,19.68504,-19.68504,15.74803,-15.74803,15.74803,-20.47244,14.96063,19.68504,15.74803,19.68504,13.77953,15.74803,15.74803,15.74803,13.77953,19.68504,-1.508877E-11,15.74803,-1.508877E-11,19.68504,15.74803,15.74803,9.84252,15.74803,13.77953,-15.74803,9.84252,-15.74803,13.77953,15.74803,15.74803,-19.68504,15.74803,-19.68504,-1.508877E-11,-15.74803,-1.508877E-11,-15.74803,15.74803,17.71654,-3.008265,17.71654,-5.191293,-17.71654,-3.008265,-17.71654,-5.191293,-17.71654,-0.4503861,17.71654,-0.4503861,-17.71654,-1.912231,17.71654,-2.668111,-17.71654,-2.668111,-17.71654,0.584164,17.71654,0.584164,-17.71654,-1.638423,17.71654,-1.638423,17.71654,-1.638423,-17.71654,-1.638423,17.71654,0.584164,-17.71654,0.584164,-19.68504,13.77953,-19.68504,15.74803,-15.74803,13.77953,-15.74803,15.74803,-15.74803,3.937008,-15.74803,5.905512,15.74803,3.937008,15.74803,5.905512,15.74803,13.77953,15.74803,15.74803,19.68504,13.77953,19.68504,15.74803,-15.74803,1.46566E-13,-15.74803,9.84252,-14.05458,2.782664,-11.87527,5.203729,-10.95536,5.905512,-9.285415,7.179498,-6.374565,8.641667,-3.243344,9.539689,-2.256115E-11,9.84252,15.74803,9.84252,3.243344,9.539689,6.374565,8.641667,9.285415,7.179498,10.95536,5.905512,11.87527,5.203729,14.05458,2.782664,15.74803,-2.603826E-13,19.68504,3.937008,16.53543,5.905512,19.68504,15.74803,16.53543,7.874016,15.74803,13.77953,-16.53543,7.874016,15.74803,15.74803,-15.74803,13.77953,-19.68504,15.74803,-16.53543,5.905512,-19.68504,3.937008,-15.74803,3.937008,-15.74803,5.905512,-15.74803,15.74803,15.74803,5.905512,15.74803,3.937008,20.47244,14.96063,19.68504,19.68504,20.47244,20.47244,14.96063,20.47244,15.74803,19.68504,15.74803,15.74803,19.68504,15.74803,14.96063,14.96063,-15.74803,19.68504,-15.74803,17.71654,-19.68504,19.68504,-15.74803,-17.71654,-15.74803,-19.68504,-19.68504,-19.68504,-10.74803,-17.71654,-10.74803,17.71654,15.74803,19.68504,15.74803,17.71654,-15.74803,19.68504,2.614797E-12,17.71654,-15.74803,17.71654,17.71654,2.1081E-14,17.71654,9.84252,19.68504,2.1081E-14,19.68504,9.84252,-17.71654,9.84252,-17.71654,0,-19.68504,9.84252,-19.68504,0,15.74803,17.71654,15.74803,-17.71654,10.74803,17.71654,10.74803,-17.71654,19.68504,-19.68504,15.74803,19.68504,19.68504,19.68504,15.74803,-19.68504,-17.71654,-2.286621,17.71654,-2.286621,-17.71654,-3.702956,17.71654,-3.702956,-17.71654,-4.483152,17.71654,-4.483152,19.68504,15.74803,19.68504,2.945013E-14,15.74803,15.74803,15.74803,1.968504,15.74803,3.937008,-19.68504,2.945013E-14,-15.74803,1.968504,-15.74803,3.937008,-19.68504,15.74803,-15.74803,15.74803,17.71654,-3.62995,-17.71654,-3.62995,17.71654,-1.421311,-17.71654,-1.421311,-15.74803,15.74803,-15.74803,19.68504,15.74803,15.74803,15.74803,19.68504,17.71654,-4.483152,-17.71654,-4.483152,17.71654,-3.702956,-17.71654,-3.702956,17.71654,-2.286621,-17.71654,-2.286621,-19.68504,15.74803,-15.74803,1.968504,-19.68504,-1.285521E-13,19.68504,-1.285521E-13,15.74803,1.968504,19.68504,15.74803,15.74803,3.937008,15.74803,15.74803,-15.74803,3.937008,-15.74803,15.74803,-15.74803,-15.74803,15.74803,-15.74803,-15.74803,-19.68504,15.74803,-19.68504,20.47244,-20.47244,19.68504,-15.74803,20.47244,-14.96063,14.96063,-14.96063,15.74803,-15.74803,15.74803,-19.68504,19.68504,-19.68504,14.96063,-20.47244,-15.74803,15.74803,-15.74803,13.77953,-19.68504,15.74803,-19.68504,13.77953,19.68504,9.84252,19.68504,2.1081E-14,17.71654,9.84252,17.71654,2.1081E-14,-19.68504,2.258679E-14,-19.68504,9.84252,-17.71654,2.258679E-14,-17.71654,9.84252,-17.71654,-1.421311,17.71654,-1.421311,-17.71654,-3.62995,17.71654,-3.62995,17.71654,-2.668111,-17.71654,-2.668111,17.71654,-1.912231,-17.71654,-0.4503861,17.71654,-0.4503861,-17.71654,-5.191293,-17.71654,-3.008265,17.71654,-5.191293,17.71654,-3.008265,-17.71654,-5.724659,-17.71654,-3.554689,17.71654,-5.724659,17.71654,-3.554689,17.71654,-3.554689,17.71654,-5.724659,-17.71654,-3.554689,-17.71654,-5.724659,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,15.74803,-16.53543,7.874016,-15.74803,13.77953,16.53543,7.874016,15.74803,13.77953,19.68504,15.74803,16.53543,5.905512,19.68504,3.937008,15.74803,3.937008,15.74803,5.905512,15.74803,15.74803,-15.74803,15.74803,15.74803,-15.74803,15.74803,15.74803,19.68504,-15.74803,19.68504,15.74803,20.47244,-15.74803,20.47244,15.74803,-15.74803,1.968504,-15.74803,3.937008,15.74803,1.968504,15.74803,3.937008,20.47244,15.74803,20.47244,-15.74803,19.68504,15.74803,19.68504,-15.74803,19.68504,1.968504,19.68504,3.937008,20.47244,1.968504,20.47244,3.937008,15.74803,3.937008,15.74803,1.968504,-15.74803,3.937008,-15.74803,1.968504,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,-20.47244,-15.74803,-20.47244,15.74803,-19.68504,-15.74803,-19.68504,15.74803,-15.74803,-15.74803,-15.74803,15.74803,16.53543,15.74803,16.53543,-15.74803,15.74803,15.74803,15.74803,-15.74803,-16.53543,15.74803,-12.59842,-11.81102,-16.53543,-15.74803,16.53543,-15.74803,12.59842,-11.81102,12.59842,11.81102,-12.59842,11.81102,16.53543,15.74803,-19.68504,15.74803,-19.68504,-15.74803,-20.47244,15.74803,-20.47244,-15.74803,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,15.74803,7.874016,15.74803,5.905512,-15.74803,7.874016,-15.74803,5.905512,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,-15.74803,5.905512,-15.74803,7.874016,15.74803,5.905512,15.74803,7.874016,20.47244,15.74803,14.96063,15.74803,20.47244,17.71654,14.96063,17.71654,-15.74803,15.74803,-15.74803,-15.74803,-16.53543,15.74803,-16.53543,-15.74803,-20.47244,15.74803,-20.47244,17.71654,-14.96063,15.74803,-14.96063,17.71654,-14.96063,15.74803,-20.47244,15.74803,-14.96063,17.71654,-20.47244,17.71654,20.47244,15.74803,14.96063,15.74803,20.47244,17.71654,14.96063,17.71654,14.96063,15.74803,14.96063,17.71654,20.47244,15.74803,20.47244,17.71654,14.96063,15.74803,14.96063,17.71654,20.47244,15.74803,20.47244,17.71654,-20.47244,-14.96063,-14.96063,-14.96063,-20.47244,-20.47244,-14.96063,-20.47244,-20.47244,15.74803,-20.47244,17.71654,-14.96063,15.74803,-14.96063,17.71654,-14.96063,15.74803,-20.47244,15.74803,-14.96063,17.71654,-20.47244,17.71654,-20.47244,14.96063,-20.47244,20.47244,-14.96063,14.96063,-14.96063,20.47244,10.74803,-2.603826E-13,9.592254,1.836558,8.104868,3.434461,7.477036,3.897638,6.337296,4.738469,4.35064,5.7035,2.213582,6.296195,-2.402728E-11,6.496063,-2.213582,6.296195,-4.35064,5.7035,-6.337296,4.738469,-7.477036,3.897638,-8.104868,3.434461,-9.592254,1.836558,-10.74803,-2.603826E-13,20.47244,15.74803,14.96063,15.74803,20.47244,17.71654,14.96063,17.71654,-14.96063,15.74803,-20.47244,15.74803,-14.96063,17.71654,-20.47244,17.71654,20.47244,17.71654,20.47244,15.74803,14.96063,17.71654,14.96063,15.74803,-14.96063,17.71654,-14.96063,15.74803,-20.47244,17.71654,-20.47244,15.74803,10.74803,1.816181E-11,9.592254,1.836558,8.104868,3.434461,7.477036,3.897638,6.337296,4.738469,4.35064,5.7035,3.622254,5.905512,2.213582,6.296195,1.779346E-11,6.496063,-2.213582,6.296195,-3.622254,5.905512,-4.35064,5.7035,-6.337296,4.738469,-7.477036,3.897638,-8.104868,3.434461,-9.592254,1.836558,-10.74803,1.816181E-11,20.47244,15.74803,14.96063,15.74803,20.47244,17.71654,14.96063,17.71654,-14.96063,17.71654,-14.96063,15.74803,-20.47244,17.71654,-20.47244,15.74803,-14.96063,15.74803,-20.47244,15.74803,-14.96063,17.71654,-20.47244,17.71654,14.96063,-14.96063,20.47244,-14.96063,14.96063,-20.47244,20.47244,-20.47244,20.47244,17.71654,20.47244,15.74803,14.96063,17.71654,14.96063,15.74803,14.96063,14.96063,14.96063,20.47244,20.47244,14.96063,20.47244,20.47244 + } + UVIndex: *1008 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,1,6,0,7,0,6,5,7,6,3,7,5,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,19,18,20,18,19,21,20,19,22,20,21,23,22,21,24,21,19,23,25,22,25,26,22,27,22,26,28,25,23,29,31,30,32,30,31,33,32,31,34,33,31,35,34,31,36,35,31,37,36,31,37,39,38,38,39,40,40,39,41,41,39,42,42,39,43,43,39,44,45,44,39,46,48,47,49,47,48,50,47,49,51,50,49,47,52,46,53,46,52,51,53,52,49,53,51,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,61,62,64,63,62,65,62,60,64,66,63,66,67,63,68,63,67,69,66,64,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,100,102,104,100,103,105,100,104,106,100,105,107,100,106,107,109,108,109,110,108,110,111,108,111,112,108,112,113,108,113,114,108,115,108,114,116,118,117,119,117,118,120,119,118,121,119,120,122,120,118,120,123,121,123,124,121,121,124,125,124,126,125,127,125,126,128,125,127,129,124,123,117,130,116,131,116,130,132,134,133,135,133,134,136,133,135,137,136,135,133,138,132,139,132,138,137,139,138,135,139,137,140,142,141,143,141,142,144,143,142,145,144,142,143,146,141,147,141,146,148,150,149,151,149,150,152,151,150,153,155,154,156,154,155,157,159,158,160,158,159,161,163,162,164,162,163,162,165,161,161,165,166,167,166,165,168,165,162,169,171,170,172,170,171,173,172,171,174,172,173,175,177,176,178,176,177,179,178,177,176,178,180,181,180,178,182,180,181,183,180,182,184,183,182,185,187,186,188,186,187,189,191,190,192,190,191,193,195,194,196,194,195,197,196,195,198,196,197,199,201,200,202,200,201,203,200,202,204,203,202,203,204,205,206,205,204,200,207,199,208,199,207,209,211,210,212,210,211,213,215,214,216,214,215,217,214,216,218,217,216,214,219,213,220,213,219,218,220,219,216,220,218,221,223,222,224,222,223,225,227,226,228,226,227,229,231,230,232,230,231,233,235,234,236,234,235,237,239,238,240,238,239,241,240,239,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,255,257,258,259,258,257,260,258,259,261,260,259,262,260,261,262,261,263,261,264,263,263,264,265,266,265,264,267,266,264,268,262,263,269,258,260,270,272,271,273,271,272,274,273,272,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,299,298,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,307,309,311,310,309,307,312,306,313,306,312,311,313,312,309,313,311,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,354,356,355,357,355,356,358,360,359,361,359,360,362,364,363,365,363,364,366,368,367,369,367,368,370,372,371,373,371,372,374,376,375,377,375,376,378,115,379,114,379,115,380,379,114,113,380,114,381,380,113,382,381,113,383,382,113,112,383,113,384,383,112,111,384,112,385,384,111,104,385,111,105,104,111,110,105,111,109,105,110,106,105,109,107,106,109,385,104,386,104,103,386,386,103,387,103,102,387,387,102,388,388,102,389,389,102,390,102,101,390,390,101,391,101,99,391,392,391,99,393,395,394,396,394,395,397,399,398,400,398,399,401,403,402,404,402,403,405,407,406,408,406,407,29,30,409,410,409,30,411,410,30,32,411,30,412,411,32,413,412,32,414,413,32,33,414,32,415,414,33,416,415,33,34,416,33,417,416,34,41,417,34,40,41,34,35,40,34,36,40,35,38,40,36,37,38,36,417,41,418,418,41,419,41,42,419,419,42,420,42,43,420,420,43,421,421,43,422,422,43,423,43,44,423,423,44,424,424,44,425,45,425,44,426,428,427,429,427,428,430,432,431,433,431,432,434,436,435,437,435,436,438,440,439,441,439,440,442,444,443,445,443,444,446,448,447,449,447,448,307,310,312,311,312,310 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *336 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_woodRound, Model::RootNode + C: "OO",4988033445537552099,0 + + ;Geometry::, Model::Mesh bridge_woodRound + C: "OO",5483283101418020865,4988033445537552099 + + ;Material::woodBark, Model::Mesh bridge_woodRound + C: "OO",3046,4988033445537552099 + + ;Material::stone, Model::Mesh bridge_woodRound + C: "OO",3038,4988033445537552099 + + ;Material::wood, Model::Mesh bridge_woodRound + C: "OO",3044,4988033445537552099 + + ;Material::stoneDark, Model::Mesh bridge_woodRound + C: "OO",3040,4988033445537552099 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRound.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRound.fbx.import new file mode 100644 index 0000000..b56202a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRound.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://uutglamyeiq7" +path="res://.godot/imported/bridge_woodRound.fbx-92fafc178cb19b5ddae58c49b17eae05.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRound.fbx" +dest_files=["res://.godot/imported/bridge_woodRound.fbx-92fafc178cb19b5ddae58c49b17eae05.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRoundNarrow.fbx b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRoundNarrow.fbx new file mode 100644 index 0000000..b47282d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRoundNarrow.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 11 + Millisecond: 748 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "bridge_woodRoundNarrow.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "bridge_woodRoundNarrow.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5197016289645328351, "Model::bridge_woodRoundNarrow", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4628715797239214244, "Geometry::", "Mesh" { + Vertices: *1350 { + a: -3.8,3.5,-4.2,-4,3.5,-3,-3.8,3.5,-2.8,-5.2,3.5,-2.8,-5,3.5,-3,-5,3.5,-4,-4,3.5,-4,-5.2,3.5,-4.2,4,1.5,-3,4,1,-3,4,1.5,3,4,1,3,4,2.5,-3.5,4,2.5,-4,5.486527E-13,2.5,-3.5,-4,2.5,-4,-4,2.5,-3.5,5,0,4,4,0,4,5,3.5,4,4,2.5,4,4,3,4,-4,2.5,4,-4,3,4,4,3.5,4,-5,3.5,4,-5,0,4,-4,0,4,-4,3.5,4,4,0,3.5,3.569864,0.7067967,3.5,4,2.5,3.5,3.016317,1.321747,3.5,2.782662,1.5,3.5,2.358495,1.823592,3.5,1.619139,2.194983,3.5,0.8238094,2.423081,3.5,6.641585E-13,2.5,3.5,-0.8238094,2.423081,3.5,-4,2.5,3.5,-1.619139,2.194983,3.5,-2.358495,1.823592,3.5,-2.782662,1.5,3.5,-3.016317,1.321747,3.5,-3.569864,0.7067967,3.5,-4,0,3.5,-3.8,3.5,2.8,-4,3.5,4,-3.8,3.5,4.2,-5.2,3.5,4.2,-5,3.5,4,-5,3.5,3,-4,3.5,3,-5.2,3.5,2.8,-4,3.5,-4,-4,3,-4,-4,3.5,-3,-4,3,-3,-5,0,-4,-4,0,-4,-5,3.5,-4,-4,2.5,-4,-4,3,-4,4,2.5,-4,4,3,-4,-4,3.5,-4,5,3.5,-4,5,0,-4,4,0,-4,4,3.5,-4,-2.058636,0.8723532,-3.5,-2.436432,0.4664859,-3.5,-2.058636,0.8723532,3.5,-2.436432,0.4664859,3.5,-0.5622499,1.599233,3.5,-0.5622499,1.599233,-3.5,-0.9200526,1.5,3.5,-1.105063,1.448689,-3.5,-1.105063,1.448689,3.5,6.35282E-13,1.65,3.5,5.486527E-13,1.65,-3.5,-0.5622499,1.599233,3.5,-0.5622499,1.599233,-3.5,0.5622499,1.599233,3.5,0.5622499,1.599233,-3.5,6.35282E-13,1.65,3.5,5.486527E-13,1.65,-3.5,4,3.5,-4,4,3.5,-3,4,3,-4,4,3,-3,-4,1,-3,-4,1.5,-3,-4,1,3,-4,1.5,3,4,3.5,3,4,3.5,4,4,3,3,4,3,4,4,0,-3.5,4,2.5,-3.5,3.569864,0.7067967,-3.5,3.016317,1.321747,-3.5,2.782662,1.5,-3.5,2.358495,1.823592,-3.5,1.619139,2.194983,-3.5,0.8238094,2.423081,-3.5,5.486527E-13,2.5,-3.5,-4,2.5,-3.5,-0.8238094,2.423081,-3.5,-1.619139,2.194983,-3.5,-2.358495,1.823592,-3.5,-2.782662,1.5,-3.5,-3.016317,1.321747,-3.5,-3.569864,0.7067967,-3.5,-4,0,-3.5,5,1,-3,4.2,1.5,-3,5,3.5,-3,4.2,2,-3,4,3,-3,-4.2,2,-3,4,3.5,-3,-4,3,-3,-5,3.5,-3,-4.2,1.5,-3,-4,1,-3,-5,1,-3,-4,1.5,-3,-4,3.5,-3,4,1.5,-3,4,1,-3,5.2,3.5,2.8,5,3.5,4,5.2,3.5,4.2,3.8,3.5,4.2,4,3.5,4,4,3.5,3,5,3.5,3,3.8,3.5,2.8,-4,0,4,-4,0,3.5,-5,0,4,-4,0,-3.5,-4,0,-4,-5,0,-4,-2.73,-2.279417E-27,-3.5,-2.73,2.277814E-27,3.5,4,2.5,4,4,2.5,3.5,-4,2.5,4,6.641585E-13,2.5,3.5,-4,2.5,3.5,4,0,3.5,4,2.5,3.5,4,0,4,4,2.5,4,-4,2.5,3.5,-4,0,3.5,-4,2.5,4,-4,0,4,4,0,3.5,4,0,-3.5,2.73,0,3.5,2.73,-1.602965E-30,-3.5,5,0,-4,4,0,4,5,0,4,4,0,-4,-1.609673,1.203571,3.5,-1.609673,1.203571,-3.5,-1.899167,0.99,3.5,-1.899167,0.99,-3.5,-2.058636,0.8723532,3.5,-2.058636,0.8723532,-3.5,5,3.5,-3,5,0.5,-3,5,1,-3,5,0,-4,5,3.5,-4,5,0,4,5,0.5,3,5,1,3,5,3.5,4,5,3.5,3,1.609673,1.203571,3.5,1.609673,1.203571,-3.5,1.105063,1.448689,3.5,1.105063,1.448689,-3.5,4,3,3,4,3,4,-4,3,3,-4,3,4,2.058636,0.8723532,3.5,2.058636,0.8723532,-3.5,1.899167,0.99,3.5,1.899167,0.99,-3.5,1.609673,1.203571,3.5,1.609673,1.203571,-3.5,-5,3.5,-4,-5,0.5,-3,-5,0,-4,-5,0,4,-5,3.5,-3,-5,0.5,3,-5,3.5,4,-5,1,3,-5,3.5,3,-5,1,-3,4,3,-3,-4,3,-3,4,3,-4,-4,3,-4,5.2,3.5,-4.2,5,3.5,-3,5.2,3.5,-2.8,3.8,3.5,-2.8,4,3.5,-3,4,3.5,-4,5,3.5,-4,3.8,3.5,-4.2,-4,3.5,3,-4,3,3,-4,3.5,4,-4,3,4,-4,2.5,-4,-4,0,-4,-4,2.5,-3.5,-4,0,-3.5,4,0,-4,4,2.5,-4,4,0,-3.5,4,2.5,-3.5,-1.105063,1.448689,3.5,-1.105063,1.448689,-3.5,-1.609673,1.203571,3.5,-1.609673,1.203571,-3.5,1.105063,1.448689,3.5,1.105063,1.448689,-3.5,0.9200526,1.5,3.5,0.5622499,1.599233,-3.5,0.5622499,1.599233,3.5,2.436432,0.4664859,-3.5,2.058636,0.8723532,-3.5,2.436432,0.4664859,3.5,2.058636,0.8723532,3.5,2.73,-1.602965E-30,-3.5,2.436432,0.4664859,-3.5,2.73,0,3.5,2.436432,0.4664859,3.5,-2.436432,0.4664859,-3.5,-2.73,-2.279417E-27,-3.5,-2.436432,0.4664859,3.5,-2.73,2.277814E-27,3.5,4,1,3,5,1,3,4,1.5,3,4.2,1.5,3,5,3.5,3,4.2,2,3,4,3,3,-4.2,2,3,-4,3,3,-5,3.5,3,-4.2,1.5,3,-4,1,3,-5,1,3,-4,1.5,3,-4,3.5,3,4,3.5,3,-4,1,-3,-4,1,3,-5,1,-3,-5,1,3,-5.2,1,-3,-5.2,1,3,-5.2,0.5,-3,-5.2,1,-3,-5.2,0.5,3,-5.2,1,3,5.2,0.5,3,5.2,0.5,-3,5,0.5,3,5,0.5,-3,-5,0.5,-3,-5,1,-3,-5.2,0.5,-3,-5.2,1,-3,5.2,1,-3,5.2,0.5,-3,5.2,1,3,5.2,0.5,3,-5,0.5,3,-5.2,0.5,3,-5,1,3,-5.2,1,3,5.2,1,-3,5.2,1,3,5,1,-3,5,1,3,4,1,-3,4,1,3,4.2,1.5,3,4.2,1.5,-3,4,1.5,3,4,1.5,-3,4.2,2,3,3.2,2,-2,4.2,2,-3,-4.2,2,-3,-3.2,2,-2,-3.2,2,2,3.2,2,2,-4.2,2,3,-5,0.5,3,-5,0.5,-3,-5.2,0.5,3,-5.2,0.5,-3,5,0.5,-3,5.2,0.5,-3,5,1,-3,5.2,1,-3,4.2,2,-3,4.2,1.5,-3,4.2,2,3,4.2,1.5,3,5.2,0.5,3,5,0.5,3,5.2,1,3,5,1,3,-4.2,1.5,-3,-4.2,2,-3,-4.2,1.5,3,-4.2,2,3,-5.2,3.5,-4.2,-3.8,3.5,-4.2,-5.2,4,-4.2,-3.8,4,-4.2,-4,1.5,3,-4,1.5,-3,-4.2,1.5,3,-4.2,1.5,-3,-5.2,3.5,-4.2,-5.2,4,-4.2,-5.2,3.5,-2.8,-5.2,4,-2.8,3.8,3.5,-4.2,5.2,3.5,-4.2,3.8,4,-4.2,5.2,4,-4.2,5.2,3.5,-2.8,3.8,3.5,-2.8,5.2,4,-2.8,3.8,4,-2.8,3.8,3.5,2.8,3.8,4,2.8,3.8,3.5,4.2,3.8,4,4.2,-5.2,3.5,2.8,-5.2,4,2.8,-5.2,3.5,4.2,-5.2,4,4.2,5.2,4,-2.8,3.8,4,-2.8,5.2,4,-4.2,3.8,4,-4.2,3.8,3.5,-4.2,3.8,4,-4.2,3.8,3.5,-2.8,3.8,4,-2.8,3.8,3.5,2.8,5.2,3.5,2.8,3.8,4,2.8,5.2,4,2.8,5.2,4,2.8,5.2,4,4.2,3.8,4,2.8,3.8,4,4.2,-2.73,-2.279417E-27,-3.5,-2.436432,0.4664859,-3.5,-2.058636,0.8723532,-3.5,-1.899167,0.99,-3.5,-1.609673,1.203571,-3.5,-1.105063,1.448689,-3.5,-0.5622499,1.599233,-3.5,5.486527E-13,1.65,-3.5,0.5622499,1.599233,-3.5,1.105063,1.448689,-3.5,1.609673,1.203571,-3.5,1.899167,0.99,-3.5,2.058636,0.8723532,-3.5,2.436432,0.4664859,-3.5,2.73,-1.602965E-30,-3.5,-5.2,3.5,2.8,-3.8,3.5,2.8,-5.2,4,2.8,-3.8,4,2.8,-3.8,3.5,-2.8,-5.2,3.5,-2.8,-3.8,4,-2.8,-5.2,4,-2.8,5.2,4,-4.2,5.2,3.5,-4.2,5.2,4,-2.8,5.2,3.5,-2.8,-3.8,4,2.8,-3.8,3.5,2.8,-3.8,4,4.2,-3.8,3.5,4.2,2.73,0,3.5,2.436432,0.4664859,3.5,2.058636,0.8723532,3.5,1.899167,0.99,3.5,1.609673,1.203571,3.5,1.105063,1.448689,3.5,0.9200526,1.5,3.5,0.5622499,1.599233,3.5,6.35282E-13,1.65,3.5,-0.5622499,1.599233,3.5,-0.9200526,1.5,3.5,-1.105063,1.448689,3.5,-1.609673,1.203571,3.5,-1.899167,0.99,3.5,-2.058636,0.8723532,3.5,-2.436432,0.4664859,3.5,-2.73,2.277814E-27,3.5,5.2,3.5,4.2,3.8,3.5,4.2,5.2,4,4.2,3.8,4,4.2,5.2,4,2.8,5.2,3.5,2.8,5.2,4,4.2,5.2,3.5,4.2,-3.8,3.5,4.2,-5.2,3.5,4.2,-3.8,4,4.2,-5.2,4,4.2,-3.8,4,-2.8,-5.2,4,-2.8,-3.8,4,-4.2,-5.2,4,-4.2,-3.8,4,-4.2,-3.8,3.5,-4.2,-3.8,4,-2.8,-3.8,3.5,-2.8,-3.8,4,2.8,-3.8,4,4.2,-5.2,4,2.8,-5.2,4,4.2 + } + PolygonVertexIndex: *1008 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,1,6,-1,7,0,-7,5,7,-7,3,7,-6,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,20,18,-20,21,20,-20,22,20,-22,23,22,-22,24,21,-20,23,25,-23,25,26,-23,27,22,-27,28,25,-24,29,31,-31,32,30,-32,33,32,-32,34,33,-32,35,34,-32,36,35,-32,37,36,-32,37,39,-39,38,39,-41,40,39,-42,41,39,-43,42,39,-44,43,39,-45,45,44,-40,46,48,-48,49,47,-49,50,47,-50,51,50,-50,47,52,-47,53,46,-53,51,53,-53,49,53,-52,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,61,-63,64,63,-63,65,62,-61,64,66,-64,66,67,-64,68,63,-68,69,66,-65,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,100,-103,104,100,-104,105,100,-105,106,100,-106,107,100,-107,107,109,-109,109,110,-109,110,111,-109,111,112,-109,112,113,-109,113,114,-109,115,108,-115,116,118,-118,119,117,-119,120,119,-119,121,119,-121,122,120,-119,120,123,-122,123,124,-122,121,124,-126,125,124,-127,127,126,-125,128,125,-127,129,124,-124,117,130,-117,131,116,-131,132,134,-134,135,133,-135,136,133,-136,137,136,-136,133,138,-133,139,132,-139,137,139,-139,135,139,-138,140,142,-142,143,141,-143,144,143,-143,145,144,-143,143,146,-142,147,141,-147,148,150,-150,151,149,-151,152,151,-151,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,162,165,-162,161,165,-167,167,166,-166,168,165,-163,169,171,-171,172,170,-172,173,172,-172,174,172,-174,175,177,-177,176,178,-176,179,175,-179,180,178,-177,181,180,-177,182,180,-182,183,180,-183,184,183,-183,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,195,-195,196,194,-196,197,196,-196,198,196,-198,199,201,-201,202,200,-202,203,199,-201,204,200,-203,205,204,-203,204,205,-207,207,206,-206,200,208,-204,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,214,-217,218,217,-217,214,219,-214,220,213,-220,218,220,-220,216,220,-219,221,223,-223,224,222,-224,225,227,-227,228,226,-228,229,231,-231,232,230,-232,233,235,-235,236,234,-236,237,239,-239,240,238,-240,241,240,-240,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,255,257,-259,259,258,-258,260,258,-260,261,260,-260,262,260,-262,262,261,-264,261,264,-264,264,265,-264,266,263,-266,267,265,-265,268,262,-264,269,258,-261,270,272,-272,273,271,-273,274,273,-273,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,299,-299,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,307,-310,311,310,-310,307,312,-307,313,306,-313,311,313,-313,309,313,-312,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,360,-360,361,359,-361,362,364,-364,365,363,-365,366,368,-368,369,367,-369,370,372,-372,373,371,-373,374,376,-376,377,375,-377,378,115,-380,114,379,-116,380,379,-115,113,380,-115,381,380,-114,382,381,-114,383,382,-114,112,383,-114,384,383,-113,111,384,-113,385,384,-112,104,385,-112,105,104,-112,110,105,-112,109,105,-111,106,105,-110,107,106,-110,385,104,-387,104,103,-387,386,103,-388,103,102,-388,387,102,-389,388,102,-390,389,102,-391,102,101,-391,390,101,-392,101,99,-392,392,391,-100,393,395,-395,396,394,-396,397,399,-399,400,398,-400,401,403,-403,404,402,-404,405,407,-407,408,406,-408,29,30,-410,410,409,-31,411,410,-31,32,411,-31,412,411,-33,413,412,-33,414,413,-33,33,414,-33,415,414,-34,416,415,-34,34,416,-34,417,416,-35,41,417,-35,40,41,-35,35,40,-35,36,40,-36,38,40,-37,37,38,-37,417,41,-419,418,41,-420,41,42,-420,419,42,-421,42,43,-421,420,43,-422,421,43,-423,422,43,-424,43,44,-424,423,44,-425,424,44,-426,45,425,-45,426,428,-428,429,427,-429,430,432,-432,433,431,-433,434,436,-436,437,435,-437,438,440,-440,441,439,-441,442,444,-444,445,443,-445,446,448,-448,449,447,-449,307,310,-313,311,312,-311 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3024 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.6656808,-0.7462366,0,0.6656808,-0.7462366,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.6656808,-0.7462366,0,0.1793194,-0.9837909,0,0.2672535,-0.9636263,0,0.1793194,-0.9837909,0,0.3535515,-0.9354151,0,0.1793194,-0.9837909,0,0.2672535,-0.9636263,0,0.3535515,-0.9354151,0,0.3535515,-0.9354151,0,0.2672535,-0.9636263,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,0.08992587,-0.9959485,0,0.1793194,-0.9837909,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-0.1793194,-0.9837909,0,-0.08992587,-0.9959485,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.5174755,-0.855698,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,0.5936666,-0.8047111,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,0.5936666,-0.8047111,0,0.6656808,-0.7462366,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.6656808,-0.7462366,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.5936666,-0.8047111,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-0.5936666,-0.8047111,0,-0.5174755,-0.855698,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,0.3535515,-0.9354151,0,0.5174755,-0.855698,0,-0.3535515,-0.9354151,0,-0.2672535,-0.9636263,0,-0.3535515,-0.9354151,0,-0.1793194,-0.9837909,0,-0.3535515,-0.9354151,0,-0.2672535,-0.9636263,0,-0.1793194,-0.9837909,0,-0.1793194,-0.9837909,0,-0.2672535,-0.9636263,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.6656808,-0.7462366,0,-0.6656808,-0.7462366,0,-0.6656808,-0.7462366,0,-0.7926546,-0.6096708,0,-0.846352,-0.5326239,0,-0.846352,-0.5326239,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.7926546,-0.6096708,0,-0.846352,-0.5326239,0,0.7926546,-0.6096708,0,0.7926546,-0.6096708,0,0.846352,-0.5326239,0,0.846352,-0.5326239,0,0.846352,-0.5326239,0,0.7926546,-0.6096708,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *900 { + a: -14.96063,-16.53543,-15.74803,-11.81102,-14.96063,-11.02362,-20.47244,-11.02362,-19.68504,-11.81102,-19.68504,-15.74803,-15.74803,-15.74803,-20.47244,-16.53543,11.81102,5.905512,11.81102,3.937008,-11.81102,5.905512,-11.81102,3.937008,15.74803,-13.77953,15.74803,-15.74803,2.16005E-12,-13.77953,-15.74803,-15.74803,-15.74803,-13.77953,19.68504,-4.493567E-12,15.74803,-4.493567E-12,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-15.74803,9.84252,-15.74803,11.81102,15.74803,13.77953,-19.68504,13.77953,-19.68504,-4.493567E-12,-15.74803,-4.493567E-12,-15.74803,13.77953,15.74803,-1.441372E-11,14.05458,2.782664,15.74803,9.84252,11.87527,5.203729,10.95536,5.905512,9.285415,7.179498,6.374565,8.641667,3.243344,9.539689,-1.182827E-11,9.84252,-3.243344,9.539689,-15.74803,9.84252,-6.374565,8.641667,-9.285415,7.179498,-10.95536,5.905512,-11.87527,5.203729,-14.05458,2.782664,-15.74803,-5.014578E-14,-14.96063,11.02362,-15.74803,15.74803,-14.96063,16.53543,-20.47244,16.53543,-19.68504,15.74803,-19.68504,11.81102,-15.74803,11.81102,-20.47244,11.02362,15.74803,13.77953,15.74803,11.81102,11.81102,13.77953,11.81102,11.81102,19.68504,-1.253181E-11,15.74803,-1.253181E-11,19.68504,13.77953,15.74803,9.84252,15.74803,11.81102,-15.74803,9.84252,-15.74803,11.81102,15.74803,13.77953,-19.68504,13.77953,-19.68504,-1.253181E-11,-15.74803,-1.253181E-11,-15.74803,13.77953,13.77953,-3.008265,13.77953,-5.191293,-13.77953,-3.008265,-13.77953,-5.191293,-13.77953,-0.4503861,13.77953,-0.4503861,-13.77953,-1.912231,13.77953,-2.668111,-13.77953,-2.668111,-13.77953,0.584164,13.77953,0.584164,-13.77953,-1.638423,13.77953,-1.638423,13.77953,-1.638423,-13.77953,-1.638423,13.77953,0.584164,-13.77953,0.584164,-15.74803,13.77953,-11.81102,13.77953,-15.74803,11.81102,-11.81102,11.81102,-11.81102,3.937008,-11.81102,5.905512,11.81102,3.937008,11.81102,5.905512,11.81102,13.77953,15.74803,13.77953,11.81102,11.81102,15.74803,11.81102,-15.74803,2.962411E-14,-15.74803,9.84252,-14.05458,2.782664,-11.87527,5.203729,-10.95536,5.905512,-9.285415,7.179498,-6.374565,8.641667,-3.243344,9.539689,-1.796557E-11,9.84252,15.74803,9.84252,3.243344,9.539689,6.374565,8.641667,9.285415,7.179498,10.95536,5.905512,11.87527,5.203729,14.05458,2.782664,15.74803,-3.969439E-15,19.68504,3.937008,16.53543,5.905512,19.68504,13.77953,16.53543,7.874016,15.74803,11.81102,-16.53543,7.874016,15.74803,13.77953,-15.74803,11.81102,-19.68504,13.77953,-16.53543,5.905512,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-15.74803,13.77953,15.74803,5.905512,15.74803,3.937008,20.47244,11.02362,19.68504,15.74803,20.47244,16.53543,14.96063,16.53543,15.74803,15.74803,15.74803,11.81102,19.68504,11.81102,14.96063,11.02362,-15.74803,15.74803,-15.74803,13.77953,-19.68504,15.74803,-15.74803,-13.77953,-15.74803,-15.74803,-19.68504,-15.74803,-10.74803,-13.77953,-10.74803,13.77953,15.74803,15.74803,15.74803,13.77953,-15.74803,15.74803,2.614797E-12,13.77953,-15.74803,13.77953,13.77953,0,13.77953,9.84252,15.74803,0,15.74803,9.84252,-13.77953,9.84252,-13.77953,0,-15.74803,9.84252,-15.74803,0,15.74803,13.77953,15.74803,-13.77953,10.74803,13.77953,10.74803,-13.77953,19.68504,-15.74803,15.74803,15.74803,19.68504,15.74803,15.74803,-15.74803,-13.77953,-2.286621,13.77953,-2.286621,-13.77953,-3.702956,13.77953,-3.702956,-13.77953,-4.483152,13.77953,-4.483152,11.81102,13.77953,11.81102,1.968504,11.81102,3.937008,15.74803,7.042548E-14,15.74803,13.77953,-15.74803,7.042548E-14,-11.81102,1.968504,-11.81102,3.937008,-15.74803,13.77953,-11.81102,13.77953,13.77953,-3.62995,-13.77953,-3.62995,13.77953,-1.421311,-13.77953,-1.421311,-15.74803,11.81102,-15.74803,15.74803,15.74803,11.81102,15.74803,15.74803,13.77953,-4.483152,-13.77953,-4.483152,13.77953,-3.702956,-13.77953,-3.702956,13.77953,-2.286621,-13.77953,-2.286621,-15.74803,13.77953,-11.81102,1.968504,-15.74803,-2.666107E-13,15.74803,-2.666107E-13,-11.81102,13.77953,11.81102,1.968504,15.74803,13.77953,11.81102,3.937008,11.81102,13.77953,-11.81102,3.937008,-15.74803,-11.81102,15.74803,-11.81102,-15.74803,-15.74803,15.74803,-15.74803,20.47244,-16.53543,19.68504,-11.81102,20.47244,-11.02362,14.96063,-11.02362,15.74803,-11.81102,15.74803,-15.74803,19.68504,-15.74803,14.96063,-16.53543,-11.81102,13.77953,-11.81102,11.81102,-15.74803,13.77953,-15.74803,11.81102,15.74803,9.84252,15.74803,0,13.77953,9.84252,13.77953,0,-15.74803,0,-15.74803,9.84252,-13.77953,0,-13.77953,9.84252,-13.77953,-1.421311,13.77953,-1.421311,-13.77953,-3.62995,13.77953,-3.62995,13.77953,-2.668111,-13.77953,-2.668111,13.77953,-1.912231,-13.77953,-0.4503861,13.77953,-0.4503861,-13.77953,-5.191293,-13.77953,-3.008265,13.77953,-5.191293,13.77953,-3.008265,-13.77953,-5.724659,-13.77953,-3.554689,13.77953,-5.724659,13.77953,-3.554689,13.77953,-3.554689,13.77953,-5.724659,-13.77953,-3.554689,-13.77953,-5.724659,-15.74803,3.937008,-19.68504,3.937008,-15.74803,5.905512,-16.53543,5.905512,-19.68504,13.77953,-16.53543,7.874016,-15.74803,11.81102,16.53543,7.874016,15.74803,11.81102,19.68504,13.77953,16.53543,5.905512,15.74803,3.937008,19.68504,3.937008,15.74803,5.905512,15.74803,13.77953,-15.74803,13.77953,15.74803,-11.81102,15.74803,11.81102,19.68504,-11.81102,19.68504,11.81102,20.47244,-11.81102,20.47244,11.81102,-11.81102,1.968504,-11.81102,3.937008,11.81102,1.968504,11.81102,3.937008,20.47244,11.81102,20.47244,-11.81102,19.68504,11.81102,19.68504,-11.81102,19.68504,1.968504,19.68504,3.937008,20.47244,1.968504,20.47244,3.937008,11.81102,3.937008,11.81102,1.968504,-11.81102,3.937008,-11.81102,1.968504,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,-20.47244,-11.81102,-20.47244,11.81102,-19.68504,-11.81102,-19.68504,11.81102,-15.74803,-11.81102,-15.74803,11.81102,16.53543,11.81102,16.53543,-11.81102,15.74803,11.81102,15.74803,-11.81102,-16.53543,11.81102,-12.59842,-7.874016,-16.53543,-11.81102,16.53543,-11.81102,12.59842,-7.874016,12.59842,7.874016,-12.59842,7.874016,16.53543,11.81102,-19.68504,11.81102,-19.68504,-11.81102,-20.47244,11.81102,-20.47244,-11.81102,-19.68504,1.968504,-20.47244,1.968504,-19.68504,3.937008,-20.47244,3.937008,11.81102,7.874016,11.81102,5.905512,-11.81102,7.874016,-11.81102,5.905512,20.47244,1.968504,19.68504,1.968504,20.47244,3.937008,19.68504,3.937008,-11.81102,5.905512,-11.81102,7.874016,11.81102,5.905512,11.81102,7.874016,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,-15.74803,11.81102,-15.74803,-11.81102,-16.53543,11.81102,-16.53543,-11.81102,-16.53543,13.77953,-16.53543,15.74803,-11.02362,13.77953,-11.02362,15.74803,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,11.02362,13.77953,11.02362,15.74803,16.53543,13.77953,16.53543,15.74803,11.02362,13.77953,11.02362,15.74803,16.53543,13.77953,16.53543,15.74803,-20.47244,-11.02362,-14.96063,-11.02362,-20.47244,-16.53543,-14.96063,-16.53543,-16.53543,13.77953,-16.53543,15.74803,-11.02362,13.77953,-11.02362,15.74803,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,-20.47244,11.02362,-20.47244,16.53543,-14.96063,11.02362,-14.96063,16.53543,10.74803,-3.969439E-15,9.592254,1.836558,8.104868,3.434461,7.477036,3.897638,6.337296,4.738469,4.35064,5.7035,2.213582,6.296195,-2.037906E-11,6.496063,-2.213582,6.296195,-4.35064,5.7035,-6.337296,4.738469,-7.477036,3.897638,-8.104868,3.434461,-9.592254,1.836558,-10.74803,-3.969439E-15,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,16.53543,15.74803,16.53543,13.77953,11.02362,15.74803,11.02362,13.77953,-11.02362,15.74803,-11.02362,13.77953,-16.53543,15.74803,-16.53543,13.77953,10.74803,9.007043E-12,9.592254,1.836558,8.104868,3.434461,7.477036,3.897638,6.337296,4.738469,4.35064,5.7035,3.622254,5.905512,2.213582,6.296195,1.749093E-11,6.496063,-2.213582,6.296195,-3.622254,5.905512,-4.35064,5.7035,-6.337296,4.738469,-7.477036,3.897638,-8.104868,3.434461,-9.592254,1.836558,-10.74803,9.007043E-12,20.47244,13.77953,14.96063,13.77953,20.47244,15.74803,14.96063,15.74803,-11.02362,15.74803,-11.02362,13.77953,-16.53543,15.74803,-16.53543,13.77953,-14.96063,13.77953,-20.47244,13.77953,-14.96063,15.74803,-20.47244,15.74803,14.96063,-11.02362,20.47244,-11.02362,14.96063,-16.53543,20.47244,-16.53543,16.53543,15.74803,16.53543,13.77953,11.02362,15.74803,11.02362,13.77953,14.96063,11.02362,14.96063,16.53543,20.47244,11.02362,20.47244,16.53543 + } + UVIndex: *1008 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,1,6,0,7,0,6,5,7,6,3,7,5,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,19,18,20,18,19,21,20,19,22,20,21,23,22,21,24,21,19,23,25,22,25,26,22,27,22,26,28,25,23,29,31,30,32,30,31,33,32,31,34,33,31,35,34,31,36,35,31,37,36,31,37,39,38,38,39,40,40,39,41,41,39,42,42,39,43,43,39,44,45,44,39,46,48,47,49,47,48,50,47,49,51,50,49,47,52,46,53,46,52,51,53,52,49,53,51,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,61,62,64,63,62,65,62,60,64,66,63,66,67,63,68,63,67,69,66,64,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,100,102,104,100,103,105,100,104,106,100,105,107,100,106,107,109,108,109,110,108,110,111,108,111,112,108,112,113,108,113,114,108,115,108,114,116,118,117,119,117,118,120,119,118,121,119,120,122,120,118,120,123,121,123,124,121,121,124,125,125,124,126,127,126,124,128,125,126,129,124,123,117,130,116,131,116,130,132,134,133,135,133,134,136,133,135,137,136,135,133,138,132,139,132,138,137,139,138,135,139,137,140,142,141,143,141,142,144,143,142,145,144,142,143,146,141,147,141,146,148,150,149,151,149,150,152,151,150,153,155,154,156,154,155,157,159,158,160,158,159,161,163,162,164,162,163,162,165,161,161,165,166,167,166,165,168,165,162,169,171,170,172,170,171,173,172,171,174,172,173,175,177,176,176,178,175,179,175,178,180,178,176,181,180,176,182,180,181,183,180,182,184,183,182,185,187,186,188,186,187,189,191,190,192,190,191,193,195,194,196,194,195,197,196,195,198,196,197,199,201,200,202,200,201,203,199,200,204,200,202,205,204,202,204,205,206,207,206,205,200,208,203,209,211,210,212,210,211,213,215,214,216,214,215,217,214,216,218,217,216,214,219,213,220,213,219,218,220,219,216,220,218,221,223,222,224,222,223,225,227,226,228,226,227,229,231,230,232,230,231,233,235,234,236,234,235,237,239,238,240,238,239,241,240,239,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,255,257,258,259,258,257,260,258,259,261,260,259,262,260,261,262,261,263,261,264,263,264,265,263,266,263,265,267,265,264,268,262,263,269,258,260,270,272,271,273,271,272,274,273,272,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,299,298,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,307,309,311,310,309,307,312,306,313,306,312,311,313,312,309,313,311,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,354,356,355,357,355,356,358,360,359,361,359,360,362,364,363,365,363,364,366,368,367,369,367,368,370,372,371,373,371,372,374,376,375,377,375,376,378,115,379,114,379,115,380,379,114,113,380,114,381,380,113,382,381,113,383,382,113,112,383,113,384,383,112,111,384,112,385,384,111,104,385,111,105,104,111,110,105,111,109,105,110,106,105,109,107,106,109,385,104,386,104,103,386,386,103,387,103,102,387,387,102,388,388,102,389,389,102,390,102,101,390,390,101,391,101,99,391,392,391,99,393,395,394,396,394,395,397,399,398,400,398,399,401,403,402,404,402,403,405,407,406,408,406,407,29,30,409,410,409,30,411,410,30,32,411,30,412,411,32,413,412,32,414,413,32,33,414,32,415,414,33,416,415,33,34,416,33,417,416,34,41,417,34,40,41,34,35,40,34,36,40,35,38,40,36,37,38,36,417,41,418,418,41,419,41,42,419,419,42,420,42,43,420,420,43,421,421,43,422,422,43,423,43,44,423,423,44,424,424,44,425,45,425,44,426,428,427,429,427,428,430,432,431,433,431,432,434,436,435,437,435,436,438,440,439,441,439,440,442,444,443,445,443,444,446,448,447,449,447,448,307,310,312,311,312,310 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *336 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh bridge_woodRoundNarrow, Model::RootNode + C: "OO",5197016289645328351,0 + + ;Geometry::, Model::Mesh bridge_woodRoundNarrow + C: "OO",4628715797239214244,5197016289645328351 + + ;Material::woodBark, Model::Mesh bridge_woodRoundNarrow + C: "OO",3046,5197016289645328351 + + ;Material::stone, Model::Mesh bridge_woodRoundNarrow + C: "OO",3038,5197016289645328351 + + ;Material::wood, Model::Mesh bridge_woodRoundNarrow + C: "OO",3044,5197016289645328351 + + ;Material::stoneDark, Model::Mesh bridge_woodRoundNarrow + C: "OO",3040,5197016289645328351 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRoundNarrow.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRoundNarrow.fbx.import new file mode 100644 index 0000000..5cb58d9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRoundNarrow.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b31g5pd6yriv8" +path="res://.godot/imported/bridge_woodRoundNarrow.fbx-8a613f0839053e84dd869542d9bf3df5.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/bridge_woodRoundNarrow.fbx" +dest_files=["res://.godot/imported/bridge_woodRoundNarrow.fbx-8a613f0839053e84dd869542d9bf3df5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cactus_short.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cactus_short.fbx new file mode 100644 index 0000000..a5e40c4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cactus_short.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 11 + Millisecond: 883 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cactus_short.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cactus_short.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5556898468713973427, "Model::cactus_short", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4925416834536075435, "Geometry::", "Mesh" { + Vertices: *558 { + a: -0.4960999,4.92,-0.8592704,-0.9921999,4.92,1.804779E-15,-0.41,-4.281515E-17,-0.7101408,-0.8199999,-4.281515E-17,1.804779E-15,0.6112944,5.33,0,0.9921999,4.92,1.804779E-15,0.3056472,5.33,0.5293965,0.4960999,4.92,0.8592704,-0.9921999,4.92,1.804779E-15,-0.8539509,3.401938,0.1474269,-0.8199999,-4.281515E-17,1.804779E-15,-0.41,-4.281515E-17,0.7101408,-0.5546508,3.401938,0.6658297,-0.5703641,4.000538,0.6749017,-0.8696641,4.000538,0.1564989,-0.4960999,4.92,0.8592704,0.41,-4.281515E-17,0.7101408,-0.41,-4.281515E-17,0.7101408,0.4960999,4.92,0.8592704,-0.4960999,4.92,0.8592704,1.384051,1.799779,1.144684,0.8656485,2.099079,0.8453842,1.384051,2.697679,1.144684,0.8656485,2.697679,0.8453842,0.5204508,2.099079,0.6460842,0.5047376,1.500479,0.6370122,1.12485,1.500479,0.9950343,1.683351,1.799779,0.6262815,1.42415,1.500479,0.4766315,1.384051,1.799779,1.144684,1.12485,1.500479,0.9950343,-1.214862,4.599138,0.3557989,-1.214862,4.000538,0.3557989,-0.9155619,4.599138,0.8742017,-0.9155619,4.000538,0.8742017,1.164948,2.099079,0.3269815,0.8656485,2.099079,0.8453842,0.8197508,2.099079,0.1276815,0.5204508,2.099079,0.6460842,1.164948,2.099079,0.3269815,1.164948,2.697679,0.3269815,0.8656485,2.099079,0.8453842,0.8656485,2.697679,0.8453842,-0.4960999,4.92,-0.8592704,0.4960999,4.92,-0.8592704,-0.3056472,5.33,-0.5293965,0.3056472,5.33,-0.5293965,0.8040376,1.500479,0.1186094,1.42415,1.500479,0.4766315,0.8197508,2.099079,0.1276815,1.683351,1.799779,0.6262815,1.164948,2.099079,0.3269815,1.683351,2.697679,0.6262815,1.164948,2.697679,0.3269815,-0.5546508,3.401938,0.6658297,-0.8539509,3.401938,0.1474269,-1.174763,3.401938,1.023852,-1.474063,3.401938,0.5054489,-1.733265,3.701238,0.6550989,-1.733265,4.599138,0.6550989,-1.433965,3.701238,1.173502,-1.433965,4.599138,1.173502,-0.9155619,4.599138,0.8742017,-1.433965,4.599138,1.173502,-1.214862,4.599138,0.3557989,-1.733265,4.599138,0.6550989,-1.733265,3.701238,0.6550989,-1.214862,4.000538,0.3557989,-1.733265,4.599138,0.6550989,-1.214862,4.599138,0.3557989,-0.8696641,4.000538,0.1564989,-0.8539509,3.401938,0.1474269,-1.474063,3.401938,0.5054489,-0.5546508,3.401938,0.6658297,-1.174763,3.401938,1.023852,-0.5703641,4.000538,0.6749017,-1.433965,3.701238,1.173502,-0.9155619,4.000538,0.8742017,-1.433965,4.599138,1.173502,-0.9155619,4.599138,0.8742017,0.2993,3.003987,-1.199794,-0.2993,3.003987,-1.199794,0.2993,3.602588,-1.199794,-0.2993,3.602588,-1.199794,0.4960999,4.92,0.8592704,-0.4960999,4.92,0.8592704,0.3056472,5.33,0.5293965,-0.3056472,5.33,0.5293965,-0.6112944,5.33,0,-0.3056472,5.33,0.5293965,-0.9921999,4.92,1.804779E-15,-0.4960999,4.92,0.8592704,0.41,-4.281515E-17,-0.7101408,-0.2993,2.405387,-0.7830502,-0.41,-4.281515E-17,-0.7101408,-0.4960999,4.92,-0.8592704,-0.2993,3.003987,-0.8011944,0.2993,3.003987,-0.8011944,0.2993,2.405387,-0.7830502,0.4960999,4.92,-0.8592704,-0.2993,2.704687,-1.798394,0.2993,2.704687,-1.798394,-0.2993,3.602588,-1.798394,0.2993,3.602588,-1.798394,0.2993,2.405387,-1.499094,0.2993,2.704687,-1.798394,-0.2993,2.405387,-1.499094,-0.2993,2.704687,-1.798394,1.683351,2.697679,0.6262815,1.384051,2.697679,1.144684,1.164948,2.697679,0.3269815,0.8656485,2.697679,0.8453842,0.2993,3.602588,-1.798394,0.2993,3.602588,-1.199794,-0.2993,3.602588,-1.798394,-0.2993,3.602588,-1.199794,-0.5703641,4.000538,0.6749017,-0.9155619,4.000538,0.8742017,-0.8696641,4.000538,0.1564989,-1.214862,4.000538,0.3557989,0.8199999,-4.281515E-17,1.804779E-15,0.41,-4.281515E-17,-0.7101408,0.41,-4.281515E-17,0.7101408,-0.41,-4.281515E-17,0.7101408,-0.41,-4.281515E-17,-0.7101408,-0.8199999,-4.281515E-17,1.804779E-15,1.683351,2.697679,0.6262815,1.683351,1.799779,0.6262815,1.384051,2.697679,1.144684,1.384051,1.799779,1.144684,1.42415,1.500479,0.4766315,0.8040376,1.500479,0.1186094,1.12485,1.500479,0.9950343,0.5047376,1.500479,0.6370122,-1.174763,3.401938,1.023852,-1.474063,3.401938,0.5054489,-1.433965,3.701238,1.173502,-1.733265,3.701238,0.6550989,0.2993,3.003987,-1.199794,0.2993,3.003987,-0.8011944,-0.2993,3.003987,-1.199794,-0.2993,3.003987,-0.8011944,-0.2993,2.405387,-1.499094,-0.2993,3.003987,-1.199794,-0.2993,2.405387,-0.7830502,-0.2993,3.003987,-0.8011944,-0.2993,3.602588,-1.199794,-0.2993,3.602588,-1.798394,-0.2993,2.704687,-1.798394,0.2993,3.602588,-1.798394,0.2993,2.704687,-1.798394,0.2993,3.602588,-1.199794,0.2993,2.405387,-1.499094,0.2993,3.003987,-1.199794,0.2993,2.405387,-0.7830502,0.2993,3.003987,-0.8011944,0.4960999,4.92,-0.8592704,0.9921999,4.92,1.804779E-15,0.3056472,5.33,-0.5293965,0.6112944,5.33,0,0.2993,2.405387,-0.7830502,0.2993,2.405387,-1.499094,-0.2993,2.405387,-0.7830502,-0.2993,2.405387,-1.499094,0.4960999,4.92,-0.8592704,0.41,-4.281515E-17,-0.7101408,0.9921999,4.92,1.804779E-15,0.8199999,-4.281515E-17,1.804779E-15,0.6112944,5.33,0,0.3056472,5.33,0.5293965,0.3056472,5.33,-0.5293965,-0.3056472,5.33,-0.5293965,-0.3056472,5.33,0.5293965,-0.6112944,5.33,0,0.8199999,-4.281515E-17,1.804779E-15,0.8197508,2.099079,0.1276815,0.9921999,4.92,1.804779E-15,0.4960999,4.92,0.8592704,0.8040376,1.500479,0.1186094,0.5204508,2.099079,0.6460842,0.41,-4.281515E-17,0.7101408,0.5047376,1.500479,0.6370122,-0.4960999,4.92,-0.8592704,-0.3056472,5.33,-0.5293965,-0.9921999,4.92,1.804779E-15,-0.6112944,5.33,0 + } + PolygonVertexIndex: *348 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,9,14,-9,15,8,-15,13,15,-15,11,15,-14,16,18,-18,19,17,-19,20,22,-22,23,21,-23,21,24,-21,24,25,-21,26,20,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,50,-50,50,51,-53,53,52,-52,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,67,70,-67,70,71,-67,72,66,-72,73,75,-75,76,74,-76,77,76,-76,76,77,-79,79,78,-78,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,96,-96,93,98,-93,99,92,-99,97,99,-99,95,99,-98,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,121,-124,125,124,-124,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,143,146,-143,146,147,-143,148,142,-148,149,151,-151,152,150,-152,153,152,-152,154,152,-154,155,154,-154,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,169,-172,173,172,-172,174,176,-176,177,175,-177,178,174,-176,179,175,-178,180,179,-178,174,178,-181,181,180,-179,179,180,-182,182,184,-184,185,183,-185 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1044 { + a: -0.8656278,-0.03029697,-0.4997705,-0.8656278,-0.03029697,-0.4997705,-0.8656278,-0.03029697,-0.4997705,-0.8656278,-0.03029697,-0.4997705,-0.8656278,-0.03029697,-0.4997705,-0.8656278,-0.03029697,-0.4997705,0.6747453,0.626864,0.3895644,0.6747453,0.626864,0.3895644,0.6747453,0.626864,0.3895644,0.6747453,0.626864,0.3895644,0.6747453,0.626864,0.3895644,0.6747453,0.626864,0.3895644,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,-0.8656278,-0.03029697,0.4997705,0,-0.03029697,0.9995409,0,-0.03029697,0.9995409,0,-0.03029697,0.9995409,0,-0.03029697,0.9995409,0,-0.03029697,0.9995409,0,-0.03029697,0.9995409,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,0,0.626864,-0.7791287,0,0.626864,-0.7791287,0,0.626864,-0.7791287,0,0.626864,-0.7791287,0,0.626864,-0.7791287,0,0.626864,-0.7791287,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.626864,0.7791287,0,0.626864,0.7791287,0,0.626864,0.7791287,0,0.626864,0.7791287,0,0.626864,0.7791287,0,0.626864,0.7791287,-0.6747453,0.626864,0.3895644,-0.6747453,0.626864,0.3895644,-0.6747453,0.626864,0.3895644,-0.6747453,0.626864,0.3895644,-0.6747453,0.626864,0.3895644,-0.6747453,0.626864,0.3895644,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,-0.03029697,-0.9995409,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.6747453,0.626864,-0.3895644,0.6747453,0.626864,-0.3895644,0.6747453,0.626864,-0.3895644,0.6747453,0.626864,-0.3895644,0.6747453,0.626864,-0.3895644,0.6747453,0.626864,-0.3895644,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8656278,-0.03029697,-0.4997705,0.8656278,-0.03029697,-0.4997705,0.8656278,-0.03029697,-0.4997705,0.8656278,-0.03029697,-0.4997705,0.8656278,-0.03029697,-0.4997705,0.8656278,-0.03029697,-0.4997705,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,0.8656278,-0.03029697,0.4997705,-0.6747453,0.626864,-0.3895644,-0.6747453,0.626864,-0.3895644,-0.6747453,0.626864,-0.3895644,-0.6747453,0.626864,-0.3895644,-0.6747453,0.626864,-0.3895644,-0.6747453,0.626864,-0.3895644 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *372 { + a: -1.95315,19.46368,1.95315,19.46368,-1.614173,0.08470519,1.614173,0.08470519,1.203336,15.0429,1.95315,12.97113,-1.203336,15.0429,-1.95315,12.97113,-1.95315,19.46368,-1.178347,13.48431,-1.614173,0.08470519,1.614173,0.08470519,1.178347,13.48431,1.178347,15.84209,-1.178347,15.84209,1.95315,19.46368,1.614173,0.08470519,-1.614173,0.08470519,1.95315,19.46368,-1.95315,19.46368,6.972306,7.085744,4.615613,8.264091,6.972306,10.62078,4.615613,10.62078,3.046322,8.264091,2.974889,5.907397,5.79396,5.907397,1.178347,9.940542,1.178347,8.274109,-1.178347,9.940542,-1.178347,8.274109,1.178347,18.10684,1.178347,15.75015,-1.178347,18.10684,-1.178347,15.75015,-4.586411,1.287329,-3.408065,3.328285,-3.227365,0.502683,-2.049019,2.543639,-1.178347,8.264091,-1.178347,10.62078,1.178347,8.264091,1.178347,10.62078,1.95315,12.97113,-1.95315,12.97113,1.203336,15.0429,-1.203336,15.0429,-2.974889,5.907397,-5.79396,5.907397,-3.046322,8.264091,-6.972306,7.085744,-4.615613,8.264091,-6.972306,10.62078,-4.615613,10.62078,-2.183665,2.621377,-3.362011,0.5804209,-4.625052,4.030912,-5.803399,1.989956,-1.178347,14.5718,-1.178347,18.10684,1.178347,14.5718,1.178347,18.10684,3.604574,3.441739,5.64553,4.620086,4.782921,1.400783,6.823876,2.57913,7.199215,14.5718,4.842523,15.75015,7.199215,18.10684,4.842523,18.10684,3.273231,15.75015,3.201798,13.39346,6.020869,13.39346,-3.201798,13.39346,-6.020869,13.39346,-3.273231,15.75015,-7.199215,14.5718,-4.842523,15.75015,-7.199215,18.10684,-4.842523,18.10684,1.178347,11.82672,-1.178347,11.82672,1.178347,14.18342,-1.178347,14.18342,1.95315,12.97113,-1.95315,12.97113,1.203336,15.0429,-1.203336,15.0429,-1.203336,15.0429,1.203336,15.0429,-1.95315,12.97113,1.95315,12.97113,-1.614173,0.08470519,1.178347,9.559084,1.614173,0.08470519,1.95315,19.46368,1.178347,11.91686,-1.178347,11.91686,-1.178347,9.559084,-1.95315,19.46368,1.178347,10.64838,-1.178347,10.64838,1.178347,14.18342,-1.178347,14.18342,-1.178347,10.86963,-1.178347,12.53606,1.178347,10.86963,1.178347,12.53606,-6.627367,2.465675,-5.449021,4.506631,-4.586411,1.287329,-3.408065,3.328285,-1.178347,-7.080293,-1.178347,-4.7236,1.178347,-7.080293,1.178347,-4.7236,2.245528,2.657094,3.604574,3.441739,3.423874,0.6161376,4.782921,1.400783,3.228346,7.105427E-15,1.614173,-2.79583,1.614173,2.79583,-1.614173,2.79583,-1.614173,-2.79583,-3.228346,7.105427E-15,1.178347,10.62078,1.178347,7.085744,-1.178347,10.62078,-1.178347,7.085744,5.60689,1.876502,3.165502,0.4669663,4.428543,3.917458,1.987156,2.507922,1.178347,13.728,-1.178347,13.728,1.178347,15.39443,-1.178347,15.39443,-1.178347,-4.7236,-1.178347,-3.154309,1.178347,-4.7236,1.178347,-3.154309,-5.901946,9.470029,-4.7236,11.82672,-3.082875,9.470029,-3.154309,11.82672,-4.7236,14.18342,-7.080293,14.18342,-7.080293,10.64838,7.080293,14.18342,7.080293,10.64838,4.7236,14.18342,5.901946,9.470029,4.7236,11.82672,3.082875,9.470029,3.154309,11.82672,1.95315,12.97113,-1.95315,12.97113,1.203336,15.0429,-1.203336,15.0429,1.178347,-3.082875,1.178347,-5.901946,-1.178347,-3.082875,-1.178347,-5.901946,1.95315,19.46368,1.614173,0.08470519,-1.95315,19.46368,-1.614173,0.08470519,-2.406671,0,-1.203336,2.084238,-1.203336,-2.084238,1.203336,-2.084238,1.203336,2.084238,2.406671,0,1.614173,0.08470519,1.178347,8.352591,1.95315,19.46368,-1.95315,19.46368,1.178347,5.994816,-1.178347,8.352591,-1.614173,0.08470519,-1.178347,5.994816,-1.95315,12.97113,-1.203336,15.0429,1.95315,12.97113,1.203336,15.0429 + } + UVIndex: *348 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,9,14,8,15,8,14,13,15,14,11,15,13,16,18,17,19,17,18,20,22,21,23,21,22,21,24,20,24,25,20,26,20,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,50,49,50,51,52,53,52,51,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,67,70,66,70,71,66,72,66,71,73,75,74,76,74,75,77,76,75,76,77,78,79,78,77,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,96,95,93,98,92,99,92,98,97,99,98,95,99,97,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,121,123,125,124,123,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,143,146,142,146,147,142,148,142,147,149,151,150,152,150,151,153,152,151,154,152,153,155,154,153,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,169,171,173,172,171,174,176,175,177,175,176,178,174,175,179,175,177,180,179,177,174,178,180,181,180,178,179,180,181,182,184,183,185,183,184 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *116 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cactus_short, Model::RootNode + C: "OO",5556898468713973427,0 + + ;Geometry::, Model::Mesh cactus_short + C: "OO",4925416834536075435,5556898468713973427 + + ;Material::leafsGreen, Model::Mesh cactus_short + C: "OO",3030,5556898468713973427 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cactus_short.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cactus_short.fbx.import new file mode 100644 index 0000000..0971ff4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cactus_short.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://2xxabtoobrgo" +path="res://.godot/imported/cactus_short.fbx-671c7c19b7ccf8a36dc56dd7df8ac4bb.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cactus_short.fbx" +dest_files=["res://.godot/imported/cactus_short.fbx-671c7c19b7ccf8a36dc56dd7df8ac4bb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cactus_tall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cactus_tall.fbx new file mode 100644 index 0000000..80a7b2e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cactus_tall.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 11 + Millisecond: 981 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cactus_tall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cactus_tall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5707148147839280619, "Model::cactus_tall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5332756290661224254, "Geometry::", "Mesh" { + Vertices: *630 { + a: 0.5549999,7,0.9612882,-0.5549999,7,0.9612882,0.2775,7.5,0.4806441,-0.2775,7.5,0.4806441,-0.6215848,1.831432,0.7052823,-0.9215847,1.831432,0.185667,-1.408079,1.831432,1.159365,-1.708079,1.831432,0.6397497,1.11,7,-1.804779E-15,0.5549999,7.5,-1.082867E-14,0.5549999,7,-0.9612882,0.2775,7.5,-0.4806441,0.5,0,-0.8660254,-0.3,2.5,-0.9000478,-0.5,0,-0.8660254,-0.5549999,7,-0.9612882,-0.3,3.1,-0.9082132,0.3,3.1,-0.9082132,0.3,2.5,-0.9000478,0.5549999,7,-0.9612882,-1.408079,1.831432,1.159365,-1.708079,1.831432,0.6397497,-1.667887,2.131432,1.309365,-1.967887,2.131432,0.7897497,0.5549999,7,-0.9612882,0.5,0,-0.8660254,1.11,7,-1.804779E-15,1,0,0,-1.558079,5.731432,0.8995574,-1.667887,5.431432,1.309365,-1.967887,5.431432,0.7897497,-1,0,0,-0.9215847,1.831432,0.185667,-0.5,0,0.8660254,-0.6215848,1.831432,0.7052823,-0.6286561,2.431432,0.709365,-0.9286561,2.431432,0.1897497,-1.11,7,-1.804779E-15,-0.5549999,7,0.9612882,1,0,0,0.9553823,4.699112,0.2051801,1.11,7,-1.804779E-15,0.5549999,7,0.9612882,0.948311,4.099112,0.2010974,0.6553824,4.699112,0.7247954,0.5,0,0.8660254,0.6483109,4.099112,0.7207127,-0.5549999,7,-0.9612882,-1.11,7,-1.804779E-15,-0.5,0,-0.8660254,-1,0,0,-0.6286561,2.431432,0.709365,-1.148271,2.431432,1.009365,-0.9286561,2.431432,0.1897497,-1.448271,2.431432,0.4897497,0.5,0,0.8660254,-0.5,0,0.8660254,0.5549999,7,0.9612882,-0.5549999,7,0.9612882,-1.448271,5.431432,0.4897497,-1.558079,5.731432,0.8995574,-1.967887,5.431432,0.7897497,1.11,7,-1.804779E-15,0.5549999,7,0.9612882,0.5549999,7.5,-1.082867E-14,0.2775,7.5,0.4806441,-1.558079,5.731432,0.8995574,-1.148271,5.431432,1.009365,-1.667887,5.431432,1.309365,-1.967887,2.131432,0.7897497,-1.967887,5.431432,0.7897497,-1.667887,2.131432,1.309365,-1.667887,5.431432,1.309365,-1.448271,5.431432,0.4897497,-1.148271,5.431432,1.009365,-1.558079,5.731432,0.8995574,-1.448271,5.431432,0.4897497,-1.448271,2.431432,0.4897497,-1.148271,5.431432,1.009365,-1.148271,2.431432,1.009365,-0.3,6.1,-2.066025,0,6.4,-1.766025,-0.3,6.1,-1.466025,0.3,2.5,-0.9000478,0.3,2.5,-1.766025,-0.3,2.5,-0.9000478,-0.3,2.5,-1.766025,1.994613,4.399112,0.8051801,1.734805,4.099112,0.6551801,1.694613,4.399112,1.324795,1.434805,4.099112,1.174795,1.584805,6.999112,0.9149878,1.694613,6.699112,1.324795,1.174998,6.699112,1.024795,1.734805,4.099112,0.6551801,1.994613,4.399112,0.8051801,0.948311,4.099112,0.2010974,0.9553823,4.699112,0.2051801,1.474998,4.699112,0.5051801,1.994613,6.699112,0.8051801,1.474998,6.699112,0.5051801,-0.6215848,1.831432,0.7052823,-1.408079,1.831432,1.159365,-0.6286561,2.431432,0.709365,-1.667887,2.131432,1.309365,-1.148271,2.431432,1.009365,-1.667887,5.431432,1.309365,-1.148271,5.431432,1.009365,1.994613,6.699112,0.8051801,1.994613,4.399112,0.8051801,1.694613,6.699112,1.324795,1.694613,4.399112,1.324795,0.3,3.1,-1.466025,-0.3,3.1,-1.466025,0.3,6.1,-1.466025,-0.3,6.1,-1.466025,1.474998,4.699112,0.5051801,1.174998,4.699112,1.024795,0.9553823,4.699112,0.2051801,0.6553824,4.699112,0.7247954,1.994613,6.699112,0.8051801,1.694613,6.699112,1.324795,1.584805,6.999112,0.9149878,0.5549999,7.5,-1.082867E-14,0.2775,7.5,0.4806441,0.2775,7.5,-0.4806441,-0.2775,7.5,-0.4806441,-0.2775,7.5,0.4806441,-0.5549999,7.5,-1.082867E-14,-0.5549999,7,-0.9612882,0.5549999,7,-0.9612882,-0.2775,7.5,-0.4806441,0.2775,7.5,-0.4806441,0.3,3.1,-1.466025,0.3,3.1,-0.9082132,-0.3,3.1,-1.466025,-0.3,3.1,-0.9082132,-0.2775,7.5,-0.4806441,-0.5549999,7.5,-1.082867E-14,-0.5549999,7,-0.9612882,-1.11,7,-1.804779E-15,-0.2775,7.5,0.4806441,-0.5549999,7,0.9612882,-0.5549999,7.5,-1.082867E-14,-1.11,7,-1.804779E-15,1.474998,6.699112,0.5051801,1.584805,6.999112,0.9149878,1.174998,6.699112,1.024795,-0.9215847,1.831432,0.185667,-0.9286561,2.431432,0.1897497,-1.708079,1.831432,0.6397497,-1.967887,2.131432,0.7897497,-1.448271,2.431432,0.4897497,-1.967887,5.431432,0.7897497,-1.448271,5.431432,0.4897497,0.3,6.1,-2.066025,0.3,2.8,-2.066025,0.3,6.1,-1.466025,0.3,2.5,-1.766025,0.3,3.1,-1.466025,0.3,2.5,-0.9000478,0.3,3.1,-0.9082132,1.734805,4.099112,0.6551801,0.948311,4.099112,0.2010974,1.434805,4.099112,1.174795,0.6483109,4.099112,0.7207127,-0.3,2.8,-2.066025,0.3,2.8,-2.066025,-0.3,6.1,-2.066025,0.3,6.1,-2.066025,-0.3,2.5,-1.766025,-0.3,3.1,-1.466025,-0.3,2.5,-0.9000478,-0.3,3.1,-0.9082132,-0.3,6.1,-1.466025,-0.3,6.1,-2.066025,-0.3,2.8,-2.066025,1.694613,4.399112,1.324795,1.174998,4.699112,1.024795,1.694613,6.699112,1.324795,1.174998,6.699112,1.024795,0.6553824,4.699112,0.7247954,0.6483109,4.099112,0.7207127,1.434805,4.099112,1.174795,1,0,0,0.5,0,-0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.8660254,-1,0,0,0,6.4,-1.766025,0.3,6.1,-2.066025,0.3,6.1,-1.466025,0,6.4,-1.766025,0.3,6.1,-1.466025,-0.3,6.1,-1.466025,0.3,6.1,-2.066025,0,6.4,-1.766025,-0.3,6.1,-2.066025,1.994613,6.699112,0.8051801,1.584805,6.999112,0.9149878,1.474998,6.699112,0.5051801,1.474998,4.699112,0.5051801,1.474998,6.699112,0.5051801,1.174998,4.699112,1.024795,1.174998,6.699112,1.024795,0.3,2.5,-1.766025,0.3,2.8,-2.066025,-0.3,2.5,-1.766025,-0.3,2.8,-2.066025 + } + PolygonVertexIndex: *366 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,13,-16,17,16,-16,13,18,-13,19,12,-19,17,19,-19,15,19,-18,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,33,-33,34,32,-34,35,34,-34,32,36,-32,31,36,-38,38,37,-37,35,38,-37,33,38,-36,39,41,-41,42,40,-42,43,39,-41,44,40,-43,45,44,-43,39,43,-46,46,45,-44,44,45,-47,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,64,-64,65,63,-65,66,68,-68,69,71,-71,72,70,-72,73,75,-75,76,78,-78,79,77,-79,80,82,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,96,-96,97,95,-97,98,95,-98,95,98,-100,100,99,-99,101,103,-103,104,102,-104,105,104,-104,106,104,-106,107,106,-106,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,125,-125,126,124,-126,127,124,-127,128,127,-127,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,150,-150,151,149,-151,152,149,-152,153,152,-152,154,152,-154,155,157,-157,158,156,-158,159,158,-158,160,158,-160,161,160,-160,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,171,174,-171,174,175,-171,176,170,-176,177,179,-179,180,178,-180,178,181,-178,181,182,-178,183,177,-183,184,186,-186,187,185,-187,188,185,-188,189,188,-188,190,192,-192,193,195,-195,196,198,-198,199,201,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1098 { + a: 0,0.693015,0.7209232,0,0.693015,0.7209232,0,0.693015,0.7209232,0,0.693015,0.7209232,0,0.693015,0.7209232,0,0.693015,0.7209232,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6243378,0.693015,-0.3604616,0.6243378,0.693015,-0.3604616,0.6243378,0.693015,-0.3604616,0.6243378,0.693015,-0.3604616,0.6243378,0.693015,-0.3604616,0.6243378,0.693015,-0.3604616,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,0,-0.01360771,-0.9999074,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,-0.6123725,-0.7071068,0.3535534,0.8659452,-0.01360771,-0.4999537,0.8659452,-0.01360771,-0.4999537,0.8659452,-0.01360771,-0.4999537,0.8659452,-0.01360771,-0.4999537,0.8659452,-0.01360771,-0.4999537,0.8659452,-0.01360771,-0.4999537,-0.6123725,0.7071068,0.3535534,-0.6123725,0.7071068,0.3535534,-0.6123725,0.7071068,0.3535534,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,0.8659452,-0.01360771,0.4999537,-0.8659452,-0.01360771,-0.4999537,-0.8659452,-0.01360771,-0.4999537,-0.8659452,-0.01360771,-0.4999537,-0.8659452,-0.01360771,-0.4999537,-0.8659452,-0.01360771,-0.4999537,-0.8659452,-0.01360771,-0.4999537,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.01360771,0.9999074,0,-0.01360771,0.9999074,0,-0.01360771,0.9999074,0,-0.01360771,0.9999074,0,-0.01360771,0.9999074,0,-0.01360771,0.9999074,-0.3535534,0.7071068,-0.6123725,-0.3535534,0.7071068,-0.6123725,-0.3535534,0.7071068,-0.6123725,0.6243378,0.693015,0.3604616,0.6243378,0.693015,0.3604616,0.6243378,0.693015,0.3604616,0.6243378,0.693015,0.3604616,0.6243378,0.693015,0.3604616,0.6243378,0.693015,0.3604616,0.3535534,0.7071068,0.6123725,0.3535534,0.7071068,0.6123725,0.3535534,0.7071068,0.6123725,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0.6123725,0.7071068,-0.3535534,0.6123725,0.7071068,-0.3535534,0.6123725,0.7071068,-0.3535534,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,0.6123725,-0.7071068,0.3535534,-0.3535534,0.7071068,0.6123725,-0.3535534,0.7071068,0.6123725,-0.3535534,0.7071068,0.6123725,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6123725,0.7071068,0.3535534,0.6123725,0.7071068,0.3535534,0.6123725,0.7071068,0.3535534,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.693015,-0.7209232,0,0.693015,-0.7209232,0,0.693015,-0.7209232,0,0.693015,-0.7209232,0,0.693015,-0.7209232,0,0.693015,-0.7209232,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6243378,0.693015,-0.3604616,-0.6243378,0.693015,-0.3604616,-0.6243378,0.693015,-0.3604616,-0.6243378,0.693015,-0.3604616,-0.6243378,0.693015,-0.3604616,-0.6243378,0.693015,-0.3604616,-0.6243378,0.693015,0.3604616,-0.6243378,0.693015,0.3604616,-0.6243378,0.693015,0.3604616,-0.6243378,0.693015,0.3604616,-0.6243378,0.693015,0.3604616,-0.6243378,0.693015,0.3604616,-0.6123725,0.7071068,-0.3535534,-0.6123725,0.7071068,-0.3535534,-0.6123725,0.7071068,-0.3535534,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0.3535534,0.7071068,-0.6123725,0.3535534,0.7071068,-0.6123725,0.3535534,0.7071068,-0.6123725,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *420 { + a: 2.185039,17.24518,-2.185039,17.24518,1.09252,19.97571,-1.09252,19.97571,-2.447184,2.776702,-3.628286,0.7309726,-5.543618,4.564429,-6.72472,2.5187,-2.185039,17.24518,-1.09252,19.97571,2.185039,17.24518,1.09252,19.97571,-1.968504,0.04639615,1.181102,9.889827,1.968504,0.04639615,2.185039,27.608,1.181102,12.25225,-1.181102,12.25225,-1.181102,9.889827,-2.185039,27.608,1.181102,10.10702,-1.181102,10.10702,1.181102,11.77735,-1.181102,11.77735,2.185039,27.608,1.968504,0.04639615,-2.185039,27.608,-1.968504,0.04639615,8.748557E-14,10.94712,1.181102,9.276788,-1.181102,9.276788,-1.968504,0.04639615,-1.181102,7.257425,1.968504,0.04639615,1.181102,7.257425,1.181102,9.619848,-1.181102,9.619848,-2.185039,27.608,2.185039,27.608,1.968504,0.04639615,1.181102,18.54855,2.185039,27.608,-2.185039,27.608,1.181102,16.18613,-1.181102,18.54855,-1.968504,0.04639615,-1.181102,16.18613,-2.185039,27.608,2.185039,27.608,-1.968504,0.04639615,1.968504,0.04639615,2.475024,2.792775,4.520753,3.973878,3.656126,0.7470462,5.701856,1.928149,1.968504,0.04639615,-1.968504,0.04639615,2.185039,27.608,-2.185039,27.608,5.902026,14.28532,7.083128,15.95565,8.264231,14.28532,2.185039,17.24518,-2.185039,17.24518,1.09252,19.97571,-1.09252,19.97571,-7.083128,15.95565,-5.902026,14.28532,-8.264231,14.28532,-1.181102,8.391463,-1.181102,21.38359,1.181102,8.391463,1.181102,21.38359,1.181102,19.29384,-1.181102,19.29384,-7.682743E-14,20.96417,1.181102,21.38359,1.181102,9.572566,-1.181102,21.38359,-1.181102,9.572566,-8.133958,16.14653,-6.952856,17.81686,-5.771754,16.14653,1.181102,-3.543495,1.181102,-6.952856,-1.181102,-3.543495,-1.181102,-6.952856,1.181102,18.17623,1.181102,16.5059,-1.181102,18.17623,-1.181102,16.5059,7.204628,19.48472,8.38573,17.81439,6.023526,17.81439,-7.204628,16.13824,-8.38573,17.31934,-3.629174,16.13824,-3.661321,18.50044,-6.023526,18.50044,-8.38573,26.37446,-6.023526,26.37446,-3.507674,7.210361,-7.083128,7.210361,-3.539822,9.572566,-8.264231,8.391463,-5.902026,9.572566,-8.264231,21.38359,-5.902026,21.38359,1.181102,26.37446,1.181102,17.31934,-1.181102,26.37446,-1.181102,17.31934,1.181102,12.20472,-1.181102,12.20472,1.181102,24.01575,-1.181102,24.01575,-5.807077,1.988898,-4.625975,4.034627,-3.761348,0.8077958,-2.580246,2.853525,1.181102,12.71995,-1.181102,12.71995,-1.274536E-13,14.39028,-2.185039,-4.263256E-14,-1.09252,1.8923,-1.09252,-1.8923,1.09252,-1.8923,1.09252,1.8923,2.185039,-4.263256E-14,2.185039,17.24518,-2.185039,17.24518,1.09252,19.97571,-1.09252,19.97571,-1.181102,-5.771754,-1.181102,-3.575643,1.181102,-5.771754,1.181102,-3.575643,-1.09252,19.97571,1.09252,19.97571,-2.185039,17.24518,2.185039,17.24518,1.09252,19.97571,2.185039,17.24518,-1.09252,19.97571,-2.185039,17.24518,-1.181102,22.90883,-1.336709E-13,24.57916,1.181102,22.90883,3.507674,7.210361,3.539822,9.572566,7.083128,7.210361,8.264231,8.391463,5.902026,9.572566,8.264231,21.38359,5.902026,21.38359,8.133958,24.01575,8.133958,11.02362,5.771754,24.01575,6.952856,9.84252,5.771754,12.20472,3.543495,9.84252,3.575643,12.20472,6.829942,2.579449,3.733508,0.7917222,5.648839,4.625179,2.552405,2.837451,1.181102,11.02362,-1.181102,11.02362,1.181102,24.01575,-1.181102,24.01575,-6.952856,9.84252,-5.771754,12.20472,-3.543495,9.84252,-3.575643,12.20472,-5.771754,24.01575,-8.133958,24.01575,-8.133958,11.02362,8.38573,17.31934,6.023526,18.50044,8.38573,26.37446,6.023526,26.37446,3.661321,18.50044,3.629174,16.13824,7.204628,16.13824,3.937008,0,1.968504,-3.409549,1.968504,3.409549,-1.968504,3.409549,-1.968504,-3.409549,-3.937008,0,6.952856,17.81686,8.133958,16.14653,5.771754,16.14653,-1.691082E-29,22.73327,1.181102,21.06294,-1.181102,21.06294,-1.181102,11.23012,-2.029299E-27,12.90045,1.181102,11.23012,-8.38573,17.81439,-7.204628,19.48472,-6.023526,17.81439,-1.181102,18.50044,-1.181102,26.37446,1.181102,18.50044,1.181102,26.37446,-1.181102,11.87612,-1.181102,13.54646,1.181102,11.87612,1.181102,13.54646 + } + UVIndex: *366 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,13,15,17,16,15,13,18,12,19,12,18,17,19,18,15,19,17,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,33,32,34,32,33,35,34,33,32,36,31,31,36,37,38,37,36,35,38,36,33,38,35,39,41,40,42,40,41,43,39,40,44,40,42,45,44,42,39,43,45,46,45,43,44,45,46,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,64,63,65,63,64,66,68,67,69,71,70,72,70,71,73,75,74,76,78,77,79,77,78,80,82,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,96,95,97,95,96,98,95,97,95,98,99,100,99,98,101,103,102,104,102,103,105,104,103,106,104,105,107,106,105,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,125,124,126,124,125,127,124,126,128,127,126,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,150,149,151,149,150,152,149,151,153,152,151,154,152,153,155,157,156,158,156,157,159,158,157,160,158,159,161,160,159,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,171,174,170,174,175,170,176,170,175,177,179,178,180,178,179,178,181,177,181,182,177,183,177,182,184,186,185,187,185,186,188,185,187,189,188,187,190,192,191,193,195,194,196,198,197,199,201,200,202,204,203,205,203,204,206,208,207,209,207,208 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *122 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cactus_tall, Model::RootNode + C: "OO",5707148147839280619,0 + + ;Geometry::, Model::Mesh cactus_tall + C: "OO",5332756290661224254,5707148147839280619 + + ;Material::leafsGreen, Model::Mesh cactus_tall + C: "OO",3030,5707148147839280619 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cactus_tall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cactus_tall.fbx.import new file mode 100644 index 0000000..10db44a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cactus_tall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b0ailk5p7vvem" +path="res://.godot/imported/cactus_tall.fbx-35a88d0e2f10d9e5ef346010d7259782.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cactus_tall.fbx" +dest_files=["res://.godot/imported/cactus_tall.fbx-35a88d0e2f10d9e5ef346010d7259782.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/campfire_bricks.fbx b/assets/models/kenney_nature-kit/Models/FBX format/campfire_bricks.fbx new file mode 100644 index 0000000..6e46a10 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/campfire_bricks.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 76 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "campfire_bricks.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "campfire_bricks.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4771079737055983894, "Model::campfire_bricks", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4882098487044972819, "Geometry::", "Mesh" { + Vertices: *684 { + a: -2.053595,1.402595E-30,-1.26415,-2.053595,0.6760001,-1.26415,-1.565691,1.402595E-30,-0.7762465,-1.565691,0.6760001,-0.7762465,0.5582216,1.402595E-30,-1.656,0.5582216,1.402595E-30,-2.346,-0.5582216,1.402595E-30,-1.656,-0.5582216,1.402595E-30,-2.346,0.5582216,0.476,-2.346,0.5582216,1.402595E-30,-2.346,0.5582216,0.476,-1.656,0.5582216,1.402595E-30,-1.656,-1.656,1.402595E-30,0.5582216,-2.346,1.402595E-30,0.5582216,-1.656,0.376,0.5582216,-2.346,0.376,0.5582216,-1.26415,1.402595E-30,-2.053595,-0.7762465,1.402595E-30,-1.565691,-1.26415,0.6760001,-2.053595,-0.7762465,0.6760001,-1.565691,-0.7762465,1.402595E-30,1.565691,-1.565691,1.402595E-30,0.7762465,-1.26415,1.402595E-30,2.053595,-2.053595,1.402595E-30,1.26415,-1.656,0.376,2.743264E-13,-1.656,0.376,0.5582216,-1.7972,0.376,-0.5582216,-2.346,0.376,0.5582216,-2.346,0.376,-0.5582216,2.053595,1.402595E-30,-1.26415,1.26415,1.402595E-30,-2.053595,1.565691,1.402595E-30,-0.7762465,0.7762465,1.402595E-30,-1.565691,0.5582216,0.6760001,1.656,0.5582216,1.402595E-30,1.656,0.5582216,0.6760001,2.346,0.5582216,1.402595E-30,2.346,2.053595,0.476,1.26415,2.053595,1.402595E-30,1.26415,1.26415,0.476,2.053595,1.26415,1.402595E-30,2.053595,1.26415,1.402595E-30,2.053595,0.7762465,1.402595E-30,1.565691,1.26415,0.476,2.053595,0.7762465,0.476,1.565691,-0.5582216,0.476,-2.221057,-0.5582216,0.238,-2.346,0.229074,0.476,-2.346,-1.656,0.238,-0.5582216,-1.656,1.402595E-30,-0.5582216,-1.656,0.376,2.743264E-13,-1.656,1.402595E-30,0.5582216,-1.656,0.376,0.5582216,-1.565691,0.576,0.7762465,-1.565691,1.402595E-30,0.7762465,-0.7762465,0.576,1.565691,-0.7762465,1.402595E-30,1.565691,-2.346,1.402595E-30,-0.5582216,-1.656,1.402595E-30,-0.5582216,-2.346,0.376,-0.5582216,-1.656,0.238,-0.5582216,-1.7972,0.376,-0.5582216,-0.7762465,1.402595E-30,-1.565691,-1.26415,1.402595E-30,-2.053595,-1.565691,1.402595E-30,-0.7762465,-2.053595,1.402595E-30,-1.26415,-0.5582216,1.402595E-30,-2.346,-0.5582216,0.238,-2.346,-0.5582216,1.402595E-30,-1.656,-0.5582216,0.476,-2.221057,-0.5582216,0.476,-1.656,-1.656,0.238,-0.5582216,-1.656,0.376,2.743264E-13,-1.7972,0.376,-0.5582216,0.5582216,0.6760001,1.656,0.5582216,0.6760001,2.346,-0.5582216,0.6760001,1.656,0.2166259,0.6760001,2.346,-0.5582216,0.6760001,2.152075,0.5582216,1.402595E-30,2.346,0.5582216,1.402595E-30,1.656,-0.5582216,1.402595E-30,2.346,-0.5582216,1.402595E-30,1.656,2.346,0.376,-0.5582216,2.346,0.376,0.5582216,1.656,0.376,-0.5582216,1.777848,0.376,0.5582216,1.656,0.376,-0.4131898,-1.656,1.402595E-30,0.5582216,-1.656,1.402595E-30,-0.5582216,-2.346,1.402595E-30,0.5582216,-2.346,1.402595E-30,-0.5582216,2.346,0.376,-0.5582216,2.346,1.402595E-30,-0.5582216,2.346,0.376,0.5582216,2.346,1.402595E-30,0.5582216,-2.053595,1.402595E-30,1.26415,-2.053595,0.576,1.26415,-1.26415,1.402595E-30,2.053595,-1.384921,0.576,1.932824,-1.26415,0.1053648,2.053595,0.5582216,0.476,-2.346,0.5582216,0.476,-1.656,0.229074,0.476,-2.346,-0.5582216,0.476,-1.656,-0.5582216,0.476,-2.221057,1.26415,0.576,-2.053595,1.26415,1.402595E-30,-2.053595,2.053595,0.576,-1.26415,2.053595,1.402595E-30,-1.26415,-0.7762465,1.402595E-30,1.565691,-1.26415,1.402595E-30,2.053595,-0.7762465,0.576,1.565691,-1.26415,0.1053648,2.053595,-1.143379,0.576,1.932824,-0.7762465,0.576,1.565691,-1.143379,0.576,1.932824,-1.565691,0.576,0.7762465,-1.384921,0.576,1.932824,-2.053595,0.576,1.26415,-1.143379,0.576,1.932824,-1.26415,0.1053648,2.053595,-1.384921,0.576,1.932824,-1.26415,1.402595E-30,-2.053595,-1.26415,0.6760001,-2.053595,-2.053595,1.402595E-30,-1.26415,-2.053595,0.6760001,-1.26415,-0.7762465,0.6760001,-1.565691,-1.565691,0.6760001,-0.7762465,-1.26415,0.6760001,-2.053595,-2.053595,0.6760001,-1.26415,-0.5582216,1.402595E-30,1.656,0.5582216,1.402595E-30,1.656,-0.5582216,0.6760001,1.656,0.5582216,0.6760001,1.656,-0.5582216,1.402595E-30,-2.346,0.5582216,1.402595E-30,-2.346,-0.5582216,0.238,-2.346,0.5582216,0.476,-2.346,0.229074,0.476,-2.346,-1.565691,1.402595E-30,0.7762465,-1.565691,0.576,0.7762465,-2.053595,1.402595E-30,1.26415,-2.053595,0.576,1.26415,2.053595,0.576,-1.26415,2.053595,1.402595E-30,-1.26415,1.565691,0.576,-0.7762465,1.565691,1.402595E-30,-0.7762465,2.346,1.402595E-30,0.5582216,2.346,1.402595E-30,-0.5582216,1.656,1.402595E-30,0.5582216,1.656,1.402595E-30,-0.5582216,2.053595,1.402595E-30,1.26415,1.565691,1.402595E-30,0.7762465,1.26415,1.402595E-30,2.053595,0.7762465,1.402595E-30,1.565691,0.5582216,1.402595E-30,-1.656,-0.5582216,1.402595E-30,-1.656,0.5582216,0.476,-1.656,-0.5582216,0.476,-1.656,-0.7762465,0.6760001,-1.565691,-0.7762465,1.402595E-30,-1.565691,-1.565691,0.6760001,-0.7762465,-1.565691,1.402595E-30,-0.7762465,-2.346,1.402595E-30,-0.5582216,-2.346,0.376,-0.5582216,-2.346,1.402595E-30,0.5582216,-2.346,0.376,0.5582216,1.565691,1.402595E-30,0.7762465,1.565691,0.476,0.7762465,0.7762465,1.402595E-30,1.565691,0.7762465,0.476,1.565691,1.656,1.402595E-30,-0.5582216,2.346,1.402595E-30,-0.5582216,1.656,0.376,-0.5582216,2.346,0.376,-0.5582216,1.565691,0.476,0.7762465,1.565691,1.402595E-30,0.7762465,2.053595,0.476,1.26415,2.053595,1.402595E-30,1.26415,2.053595,0.476,1.26415,1.26415,0.476,2.053595,1.565691,0.476,0.7762465,0.7762465,0.476,1.565691,0.7762465,1.402595E-30,-1.565691,1.26415,1.402595E-30,-2.053595,0.7762465,0.09945913,-1.565691,1.26415,0.576,-2.053595,0.8380126,0.576,-1.627457,2.346,1.402595E-30,0.5582216,1.656,1.402595E-30,0.5582216,2.346,0.376,0.5582216,1.656,0.3013476,0.5582216,1.777848,0.376,0.5582216,-0.5582216,0.6760001,2.152075,0.2166259,0.6760001,2.346,-0.5582216,0.5307741,2.346,-0.5582216,1.402595E-30,1.656,-0.5582216,0.6760001,1.656,-0.5582216,1.402595E-30,2.346,-0.5582216,0.6760001,2.152075,-0.5582216,0.5307741,2.346,1.656,1.402595E-30,-0.5582216,1.656,0.376,-0.5582216,1.656,1.402595E-30,0.5582216,1.656,0.376,-0.4131898,1.656,0.3013476,0.5582216,2.053595,0.576,-1.26415,1.565691,0.576,-0.7762465,1.26415,0.576,-2.053595,0.8380126,0.576,-1.503925,0.8380126,0.576,-1.627457,1.565691,1.402595E-30,-0.7762465,0.7762465,1.402595E-30,-1.565691,1.565691,0.576,-0.7762465,0.7762465,0.09945913,-1.565691,0.8380126,0.576,-1.503925,0.5582216,1.402595E-30,2.346,-0.5582216,1.402595E-30,2.346,0.5582216,0.6760001,2.346,-0.5582216,0.5307741,2.346,0.2166259,0.6760001,2.346,1.656,0.376,-0.4131898,1.777848,0.376,0.5582216,1.656,0.3013476,0.5582216,0.7762465,0.09945913,-1.565691,0.8380126,0.576,-1.627457,0.8380126,0.576,-1.503925 + } + PolygonVertexIndex: *360 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,27,-27,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,50,-50,51,49,-51,52,51,-51,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,60,-60,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,69,-69,71,73,-73,74,76,-76,77,75,-77,78,77,-77,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,86,-86,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,99,-99,101,103,-103,104,102,-104,105,104,-104,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,113,-113,115,117,-117,118,116,-118,119,118,-118,120,122,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,138,-138,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,187,-187,189,191,-191,192,190,-192,193,192,-192,194,196,-196,197,199,-199,200,198,-200,201,200,-200,202,204,-204,205,203,-205,206,205,-205,207,209,-209,210,208,-210,211,210,-210,212,214,-214,215,213,-215,216,215,-215,217,219,-219,220,218,-220,221,220,-220,222,224,-224,225,227,-227 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1080 { + a: -0.7071073,0,0.7071062,-0.7071073,0,0.7071062,-0.7071073,0,0.7071062,-0.7071073,0,0.7071062,-0.7071073,0,0.7071062,-0.7071073,0,0.7071062,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7071062,0,-0.7071073,0.7071062,0,-0.7071073,0.7071062,0,-0.7071073,0.7071062,0,-0.7071073,0.7071062,0,-0.7071073,0.7071062,0,-0.7071073,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.7071062,0,0.7071073,-0.7071062,0,0.7071073,-0.7071062,0,0.7071073,-0.7071062,0,0.7071073,-0.7071062,0,0.7071073,-0.7071062,0,0.7071073,-0.139146,0.4602902,-0.8767961,-0.139146,0.4602902,-0.8767961,-0.139146,0.4602902,-0.8767961,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6882817,0.7042429,-0.1740984,0.6882817,0.7042429,-0.1740984,0.6882817,0.7042429,-0.1740984,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071064,-3.53638E-07,0.7071072,0.7071064,-3.53638E-07,0.7071072,0.7071064,-3.53638E-07,0.7071072,0.7071064,-3.53638E-07,0.7071072,0.7071064,-3.53638E-07,0.7071072,0.7071064,-3.53638E-07,0.7071072,0.7071064,-3.53638E-07,0.7071072,0.7071064,-3.53638E-07,0.7071072,0.7071064,-3.53638E-07,0.7071072,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2485588,0.9686168,0,0.2485588,0.9686168,0,0.2485588,0.9686168,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071073,0,-0.7071062,-0.7071073,0,-0.7071062,-0.7071073,0,-0.7071062,-0.7071073,0,-0.7071062,-0.7071073,0,-0.7071062,-0.7071073,0,-0.7071062,0.7071073,0,0.7071062,0.7071073,0,0.7071062,0.7071073,0,0.7071062,0.7071073,0,0.7071062,0.7071073,0,0.7071062,0.7071073,0,0.7071062,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071073,0,-0.7071062,0.7071073,0,-0.7071062,0.7071073,0,-0.7071062,0.7071073,0,-0.7071062,0.7071073,0,-0.7071062,0.7071073,0,-0.7071062,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071062,0,-0.7071073,-0.7071062,0,-0.7071073,-0.7071062,0,-0.7071073,-0.7071062,0,-0.7071073,-0.7071062,0,-0.7071073,-0.7071062,0,-0.7071073,-0.7071062,0,-0.7071073,-0.7071062,0,-0.7071073,-0.7071062,0,-0.7071073,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.1483608,0.7915738,0.5927901,-0.1483608,0.7915738,0.5927901,-0.1483608,0.7915738,0.5927901,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071066,-5.297367E-07,0.7071069,-0.7071066,-5.297367E-07,0.7071069,-0.7071066,-5.297367E-07,0.7071069,-0.7071066,-5.297367E-07,0.7071069,-0.7071066,-5.297367E-07,0.7071069,-0.7071066,-5.297367E-07,0.7071069,-0.7071066,-5.297367E-07,0.7071069,-0.7071066,-5.297367E-07,0.7071069,-0.7071066,-5.297367E-07,0.7071069,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.5212994,0.8508649,0.06538852,-0.5212994,0.8508649,0.06538852,-0.5212994,0.8508649,0.06538852,-0.9917045,0.1285382,0,-0.9917045,0.1285382,0,-0.9917045,0.1285382,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *456 { + a: -9.236218,5.522026E-30,-9.236218,2.661417,-6.519684,5.522026E-30,-6.519684,2.661417,2.197723,-6.519685,2.197723,-9.23622,-2.197723,-6.519685,-2.197723,-9.23622,9.23622,1.874016,9.23622,5.522026E-30,6.519685,1.874016,6.519685,5.522026E-30,-6.519685,5.522026E-30,-9.23622,5.522026E-30,-6.519685,1.480315,-9.23622,1.480315,9.236218,5.522026E-30,6.519684,5.522026E-30,9.236218,2.661417,6.519684,2.661417,-3.056089,6.16414,-6.16414,3.056089,-4.97697,8.085018,-8.085018,4.97697,6.519685,1.080025E-12,6.519685,2.197723,7.075592,-2.197723,9.23622,2.197723,9.23622,-2.197723,8.085018,-4.97697,4.97697,-8.085018,6.16414,-3.056089,3.056089,-6.16414,-6.519685,2.661417,-6.519685,5.522026E-30,-9.23622,2.661417,-9.23622,5.522026E-30,2.197722,1.874016,2.197722,5.522026E-30,-2.197722,1.874016,-2.197722,5.522026E-30,9.236218,5.522026E-30,6.519684,5.522026E-30,9.236218,1.874016,6.519684,1.874016,0.8000028,-2.47004,0.722904,-3.525504,-2.338376,-2.47004,2.197723,0.9370079,2.197723,5.522026E-30,-1.080025E-12,1.480315,-2.197723,5.522026E-30,-2.197723,1.480315,2.197724,2.267716,2.197724,5.522026E-30,-2.197724,2.267716,-2.197724,5.522026E-30,9.23622,5.522026E-30,6.519685,5.522026E-30,9.23622,1.480315,6.519685,0.9370079,7.075592,1.480315,-3.056089,-6.16414,-4.97697,-8.085018,-6.16414,-3.056089,-8.085018,-4.97697,-9.23622,5.522026E-30,-9.23622,0.9370079,-6.519685,5.522026E-30,-8.744321,1.874016,-6.519685,1.874016,3.729397,4.736948,1.598778,5.502213,3.865719,5.502213,-2.197723,6.519685,-2.197723,9.23622,2.197723,6.519685,-0.8528579,9.23622,2.197723,8.472735,2.197723,9.23622,2.197723,6.519685,-2.197723,9.23622,-2.197723,6.519685,-9.23622,-2.197723,-9.23622,2.197723,-6.519685,-2.197723,-6.999401,2.197723,-6.519685,-1.626732,-6.519685,2.197723,-6.519685,-2.197723,-9.23622,2.197723,-9.23622,-2.197723,2.197723,1.480315,2.197723,5.522026E-30,-2.197723,1.480315,-2.197723,5.522026E-30,-2.197722,5.541413E-07,-2.197722,2.267717,2.197722,5.541413E-07,1.525298,2.267717,2.197722,0.4148227,-2.197723,-9.23622,-2.197723,-6.519685,-0.9018661,-9.23622,2.197723,-6.519685,2.197723,-8.744321,2.197722,2.267716,2.197722,5.522026E-30,-2.197722,2.267716,-2.197722,5.522026E-30,-6.519685,7.772E-07,-9.236218,7.771998E-07,-6.519685,2.267717,-9.236218,0.4148229,-8.563793,2.267717,3.056089,6.16414,4.501492,7.609542,6.16414,3.056089,5.452446,7.609542,8.085018,4.97697,-4.501492,0.3051294,-4.97697,-1.607799,-5.452446,0.3051294,-2.197722,5.522026E-30,-2.197722,2.661417,2.197722,5.522026E-30,2.197722,2.661417,3.056089,-6.16414,6.16414,-3.056089,4.97697,-8.085018,8.085018,-4.97697,2.197723,5.522026E-30,-2.197723,5.522026E-30,2.197723,2.661417,-2.197723,2.661417,2.197723,5.522026E-30,-2.197723,5.522026E-30,2.197723,0.9370079,-2.197723,1.874016,-0.9018661,1.874016,6.519684,5.522026E-30,6.519684,2.267716,9.236218,5.522026E-30,9.236218,2.267716,9.236218,2.267716,9.236218,5.522026E-30,6.519684,2.267716,6.519684,5.522026E-30,9.23622,2.197723,9.23622,-2.197723,6.519685,2.197723,6.519685,-2.197723,8.085018,4.97697,6.16414,3.056089,4.97697,8.085018,3.056089,6.16414,2.197723,5.522026E-30,-2.197723,5.522026E-30,2.197723,1.874016,-2.197723,1.874016,2.197724,2.661417,2.197724,5.522026E-30,-2.197724,2.661417,-2.197724,5.522026E-30,-2.197723,5.522026E-30,-2.197723,1.480315,2.197723,5.522026E-30,2.197723,1.480315,-2.197724,5.522026E-30,-2.197724,1.874016,2.197724,5.522026E-30,2.197724,1.874016,-6.519685,5.522026E-30,-9.23622,5.522026E-30,-6.519685,1.480315,-9.23622,1.480315,-6.519684,1.874016,-6.519684,5.522026E-30,-9.236218,1.874016,-9.236218,5.522026E-30,-8.085018,4.97697,-4.97697,8.085018,-6.16414,3.056089,-3.056089,6.16414,-6.519684,1.827796E-08,-9.236218,1.827796E-08,-6.519684,0.3915714,-9.236218,2.267717,-6.863584,2.267717,9.23622,5.522026E-30,6.519685,5.522026E-30,9.23622,1.480315,6.519685,1.186408,6.999401,1.480315,-0.07489561,-5.30217,3.069775,-5.30217,0.1104688,-6.237827,6.519685,5.522026E-30,6.519685,2.661417,9.23622,5.522026E-30,8.472735,2.661417,9.23622,2.089662,-2.197723,5.522026E-30,-2.197723,1.480315,2.197723,5.522026E-30,-1.626732,1.480315,2.197723,1.186408,-8.085018,-4.97697,-6.16414,-3.056089,-4.97697,-8.085018,-3.299262,-5.920963,-3.299262,-6.407313,2.197725,-3.453717E-06,-2.197723,-3.453717E-06,2.197725,2.267713,-2.197723,0.3915679,-1.853821,2.267713,2.197723,5.522026E-30,-2.197723,5.522026E-30,2.197723,2.661417,-2.197723,2.089662,0.8528579,2.661417,-0.8026536,6.454241,3.05177,6.454241,2.992065,5.894827,-6.16414,0.7811472,-6.407313,2.672986,-5.920963,2.672986 + } + UVIndex: *360 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,27,26,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,50,49,51,49,50,52,51,50,53,55,54,56,54,55,57,59,58,60,58,59,61,60,59,62,64,63,65,63,64,66,68,67,69,67,68,70,69,68,71,73,72,74,76,75,77,75,76,78,77,76,79,81,80,82,80,81,83,85,84,86,84,85,87,86,85,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,99,98,101,103,102,104,102,103,105,104,103,106,108,107,109,107,108,110,112,111,113,111,112,114,113,112,115,117,116,118,116,117,119,118,117,120,122,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,138,136,137,139,138,137,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,187,186,189,191,190,192,190,191,193,192,191,194,196,195,197,199,198,200,198,199,201,200,199,202,204,203,205,203,204,206,205,204,207,209,208,210,208,209,211,210,209,212,214,213,215,213,214,216,215,214,217,219,218,220,218,219,221,220,219,222,224,223,225,227,226 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *120 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh campfire_bricks, Model::RootNode + C: "OO",4771079737055983894,0 + + ;Geometry::, Model::Mesh campfire_bricks + C: "OO",4882098487044972819,4771079737055983894 + + ;Material::stone, Model::Mesh campfire_bricks + C: "OO",3038,4771079737055983894 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/campfire_bricks.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/campfire_bricks.fbx.import new file mode 100644 index 0000000..073a793 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/campfire_bricks.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://rdyj05uxlugw" +path="res://.godot/imported/campfire_bricks.fbx-6ee0c2b814f35e5de96b4f2a7d702764.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/campfire_bricks.fbx" +dest_files=["res://.godot/imported/campfire_bricks.fbx-6ee0c2b814f35e5de96b4f2a7d702764.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/campfire_logs.fbx b/assets/models/kenney_nature-kit/Models/FBX format/campfire_logs.fbx new file mode 100644 index 0000000..1aab9a1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/campfire_logs.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 176 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "campfire_logs.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "campfire_logs.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5349959992730389430, "Model::campfire_logs", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5102970724789021419, "Geometry::", "Mesh" { + Vertices: *564 { + a: -0.8144718,-4.007414E-31,-1.459262,-0.8144718,0.375599,-1.459262,-1.459262,-4.007414E-31,-0.8144718,-1.459262,0.375599,-0.8144718,1.459262,0.375599,0.8144718,1.459262,-4.007414E-31,0.8144718,0.8144718,0.375599,1.459262,0.8144718,-4.007414E-31,1.459262,1.398063,0.6259983,-0.3964656,1.398063,-4.007414E-31,-0.3964656,1.398063,0.6259983,0.3964656,1.398063,-4.007414E-31,0.3964656,-1.398063,-4.007414E-31,-0.3964656,-1.398063,0.6259983,-0.3964656,-1.398063,-4.007414E-31,0.3964656,-1.398063,0.6259983,0.3964656,0.3964656,-4.007414E-31,1.398063,-0.3964656,-4.007414E-31,1.398063,0.3964656,0.6259983,1.398063,-0.3964656,0.6259983,1.398063,-0.3964656,-4.007414E-31,-1.398063,0.3964656,-4.007414E-31,-1.398063,-0.3964656,0.6259983,-1.398063,0.3964656,0.6259983,-1.398063,0.8144718,0.375599,-1.459262,0.8144718,-4.007414E-31,-1.459262,1.459262,0.375599,-0.8144718,1.459262,-4.007414E-31,-0.8144718,-1.459262,-4.007414E-31,0.8144718,-1.459262,0.375599,0.8144718,-0.8144718,-4.007414E-31,1.459262,-0.8144718,0.375599,1.459262,-0.8144718,0.375599,-1.459262,-0.8144718,-4.007414E-31,-1.459262,-0.3964656,0.3120724,-1.041255,-0.3964656,-4.007414E-31,-1.041255,-1.041255,-4.007414E-31,-0.3964656,-1.459262,-4.007414E-31,-0.8144718,-1.041255,0.3120724,-0.3964656,-1.459262,0.375599,-0.8144718,1.041255,-4.007414E-31,0.3964656,1.459262,-4.007414E-31,0.8144718,1.041255,0.3120724,0.3964656,1.459262,0.375599,0.8144718,0.8144718,-4.007414E-31,-1.459262,0.8144718,0.375599,-1.459262,0.3964656,-4.007414E-31,-1.041255,0.3964656,0.3120724,-1.041255,0.3964656,-4.007414E-31,1.041255,0.3964656,0.3120724,1.041255,0.8144718,-4.007414E-31,1.459262,0.8144718,0.375599,1.459262,-1.398063,-4.007414E-31,-0.3964656,-1.041255,-4.007414E-31,-0.3964656,-1.398063,0.6259983,-0.3964656,-1.041255,0.3120724,-0.3964656,-0.3964656,0.4466076,-0.3964656,-0.3964656,0.2630764,-0.3964656,-0.3964656,0.4466076,-0.3964656,-2.887646E-14,0.375599,1.443823E-14,-0.3964656,0.4466076,0.3964656,-2.887646E-14,0.375599,1.443823E-14,0.3964656,0.4466076,0.3964656,-0.3964656,0.4466076,0.3964656,0.3964656,0.4466076,0.3964656,0.3964656,0.6259983,1.398063,-0.3964656,0.4466076,0.3964656,-0.3964656,0.6259983,1.398063,-0.3964656,0.2630764,0.3964656,-0.3964656,0.3120724,1.041255,-1.041255,0.3120724,0.3964656,-0.8144718,0.375599,1.459262,-1.459262,0.375599,0.8144718,-0.3964656,0.3120724,-1.041255,-0.3964656,0.2630764,-0.3964656,-0.8144718,0.375599,-1.459262,-1.041255,0.3120724,-0.3964656,-1.459262,0.375599,-0.8144718,1.459262,0.375599,-0.8144718,1.041255,0.3120724,-0.3964656,0.8144718,0.375599,-1.459262,0.3964656,0.2630764,-0.3964656,0.3964656,0.3120724,-1.041255,1.398063,-4.007414E-31,0.3964656,1.041255,-4.007414E-31,0.3964656,1.398063,0.6259983,0.3964656,1.041255,0.3120724,0.3964656,0.3964656,0.4466076,0.3964656,0.3964656,0.2630764,0.3964656,-0.3964656,-4.007414E-31,1.041255,-0.3964656,0.3120724,1.041255,-0.3964656,-4.007414E-31,1.398063,-0.3964656,0.6259983,1.398063,-0.3964656,0.4466076,0.3964656,-0.3964656,0.2630764,0.3964656,0.3964656,0.3120724,-1.041255,0.3964656,-4.007414E-31,-1.398063,0.3964656,-4.007414E-31,-1.041255,0.3964656,0.6259983,-1.398063,0.3964656,0.4466076,-0.3964656,0.3964656,0.2630764,-0.3964656,0.3964656,0.4466076,-0.3964656,0.3964656,0.4466076,0.3964656,-2.887646E-14,0.375599,1.443823E-14,-0.3964656,0.2630764,0.3964656,-1.041255,0.3120724,0.3964656,-0.3964656,0.4466076,0.3964656,-1.398063,0.6259983,0.3964656,-1.398063,-4.007414E-31,0.3964656,-1.041255,-4.007414E-31,0.3964656,-1.459262,-4.007414E-31,0.8144718,-1.041255,-4.007414E-31,0.3964656,-1.459262,0.375599,0.8144718,-1.041255,0.3120724,0.3964656,-0.3964656,-4.007414E-31,-1.398063,-0.3964656,0.6259983,-1.398063,-0.3964656,-4.007414E-31,-1.041255,-0.3964656,0.3120724,-1.041255,-0.3964656,0.4466076,-0.3964656,-0.3964656,0.2630764,-0.3964656,0.3964656,0.4466076,-0.3964656,-2.887646E-14,0.375599,1.443823E-14,-0.3964656,0.4466076,-0.3964656,-0.3964656,0.4466076,-0.3964656,-0.3964656,0.4466076,0.3964656,-1.398063,0.6259983,-0.3964656,-1.398063,0.6259983,0.3964656,1.398063,0.6259983,-0.3964656,1.398063,0.6259983,0.3964656,0.3964656,0.4466076,-0.3964656,0.3964656,0.4466076,0.3964656,1.459262,0.375599,0.8144718,0.8144718,0.375599,1.459262,1.041255,0.3120724,0.3964656,0.3964656,0.2630764,0.3964656,0.3964656,0.3120724,1.041255,0.3964656,0.2630764,-0.3964656,1.041255,0.3120724,-0.3964656,0.3964656,0.4466076,-0.3964656,1.398063,0.6259983,-0.3964656,1.398063,-4.007414E-31,-0.3964656,1.041255,-4.007414E-31,-0.3964656,0.3964656,0.4466076,0.3964656,0.3964656,0.2630764,0.3964656,0.3964656,0.6259983,1.398063,0.3964656,0.3120724,1.041255,0.3964656,-4.007414E-31,1.041255,0.3964656,-4.007414E-31,1.398063,0.3964656,0.6259983,-1.398063,0.3964656,0.4466076,-0.3964656,-0.3964656,0.6259983,-1.398063,-0.3964656,0.4466076,-0.3964656,1.459262,-4.007414E-31,-0.8144718,1.041255,-4.007414E-31,-0.3964656,1.459262,0.375599,-0.8144718,1.041255,0.3120724,-0.3964656,1.459262,-4.007414E-31,0.8144718,1.041255,-4.007414E-31,0.3964656,0.8144718,-4.007414E-31,1.459262,1.041255,-4.007414E-31,-0.3964656,0.8144718,-4.007414E-31,-1.459262,1.459262,-4.007414E-31,-0.8144718,0.3964656,-4.007414E-31,1.041255,0.3964656,-4.007414E-31,-1.041255,-0.3964656,-4.007414E-31,1.398063,0.3964656,-4.007414E-31,1.398063,0.3964656,-4.007414E-31,-1.398063,-0.3964656,-4.007414E-31,-1.398063,-0.3964656,-4.007414E-31,1.041255,-0.3964656,-4.007414E-31,-1.041255,1.398063,-4.007414E-31,-0.3964656,1.398063,-4.007414E-31,0.3964656,-0.8144718,-4.007414E-31,1.459262,-0.8144718,-4.007414E-31,-1.459262,-1.041255,-4.007414E-31,0.3964656,-1.459262,-4.007414E-31,0.8144718,-1.041255,-4.007414E-31,-0.3964656,-1.398063,-4.007414E-31,0.3964656,-1.398063,-4.007414E-31,-0.3964656,-1.459262,-4.007414E-31,-0.8144718,0.3964656,0.4466076,-0.3964656,0.3964656,0.4466076,0.3964656,-0.3964656,0.4466076,-0.3964656,-0.3964656,0.4466076,0.3964656,-0.3964656,0.3120724,1.041255,-0.3964656,-4.007414E-31,1.041255,-0.8144718,0.375599,1.459262,-0.8144718,-4.007414E-31,1.459262 + } + PolygonVertexIndex: *336 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,55,-55,55,56,-58,58,60,-60,61,63,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,71,-71,73,75,-75,76,74,-76,77,76,-76,78,80,-80,81,79,-81,82,81,-81,83,85,-85,86,84,-86,87,86,-86,86,87,-89,89,91,-91,91,92,-91,92,93,-91,94,90,-94,95,97,-97,96,98,-96,99,95,-99,100,95,-100,101,103,-103,104,106,-106,106,107,-106,107,108,-106,109,105,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,115,-118,119,118,-118,120,122,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,132,-135,136,138,-138,138,139,-138,139,140,-138,141,137,-141,142,144,-144,145,143,-145,146,145,-145,147,146,-145,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,158,160,-160,161,159,-161,162,160,-159,163,160,-163,163,162,-165,165,164,-163,166,163,-165,167,166,-165,168,167,-165,169,167,-169,159,170,-158,171,157,-171,168,172,-170,173,169,-173,174,173,-173,175,174,-173,174,176,-174,174,177,-177,178,176,-178,179,173,-177,180,182,-182,183,181,-183,184,186,-186,187,185,-187 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1008 { + a: -0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,0.7071068,0,-0.7071067,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,-0.7071068,0,-0.7071067,-0.7071068,0,-0.7071067,-0.7071068,0,-0.7071067,-0.7071068,0,-0.7071067,-0.7071068,0,-0.7071067,-0.7071068,0,-0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.08884245,0.9920757,0.08884245,0.08884245,0.9920757,-0.08884245,0,1,0,0,1,0,0.08884245,0.9920757,-0.08884245,-0.08884245,0.9920757,-0.08884245,0,0.9843366,-0.1762992,0,0.9843366,-0.1762992,0,0.9843366,-0.1762992,0,0.9843366,-0.1762992,0,0.9843366,-0.1762992,0,0.9843366,-0.1762992,0.07555258,0.9942754,-0.07555258,0.07555258,0.9942754,-0.07555258,0.07555258,0.9942754,-0.07555258,0.07555258,0.9942754,-0.07555258,0.07555258,0.9942754,-0.07555258,0.07555258,0.9942754,-0.07555258,0.07555258,0.9942754,-0.07555258,0.07555258,0.9942754,-0.07555258,0.07555258,0.9942754,-0.07555258,0.07555258,0.9942754,0.07555258,0.07555258,0.9942754,0.07555258,0.07555258,0.9942754,0.07555258,0.07555258,0.9942754,0.07555258,0.07555258,0.9942754,0.07555258,0.07555258,0.9942754,0.07555258,0.07555258,0.9942754,0.07555258,0.07555258,0.9942754,0.07555258,0.07555258,0.9942754,0.07555258,-0.07555258,0.9942754,0.07555258,-0.07555258,0.9942754,0.07555258,-0.07555258,0.9942754,0.07555258,-0.07555258,0.9942754,0.07555258,-0.07555258,0.9942754,0.07555258,-0.07555258,0.9942754,0.07555258,-0.07555258,0.9942754,0.07555258,-0.07555258,0.9942754,0.07555258,-0.07555258,0.9942754,0.07555258,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.08884245,0.9920757,0.08884245,0,1,0,-0.08884245,0.9920757,-0.08884245,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.08884245,0.9920757,0.08884245,0.08884245,0.9920757,0.08884245,0,1,0,0.1762992,0.9843366,0,0.1762992,0.9843366,0,0.1762992,0.9843366,0,0.1762992,0.9843366,0,0.1762992,0.9843366,0,0.1762992,0.9843366,0,-0.1762992,0.9843366,0,-0.1762992,0.9843366,0,-0.1762992,0.9843366,0,-0.1762992,0.9843366,0,-0.1762992,0.9843366,0,-0.1762992,0.9843366,0,-0.07555258,0.9942754,-0.07555258,-0.07555258,0.9942754,-0.07555258,-0.07555258,0.9942754,-0.07555258,-0.07555258,0.9942754,-0.07555258,-0.07555258,0.9942754,-0.07555258,-0.07555258,0.9942754,-0.07555258,-0.07555258,0.9942754,-0.07555258,-0.07555258,0.9942754,-0.07555258,-0.07555258,0.9942754,-0.07555258,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.9843366,0.1762992,0,0.9843366,0.1762992,0,0.9843366,0.1762992,0,0.9843366,0.1762992,0,0.9843366,0.1762992,0,0.9843366,0.1762992,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0.7071067,0,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7071068,0,0.7071067,0.7071068,0,0.7071067,0.7071068,0,0.7071067,0.7071068,0,0.7071067,0.7071068,0,0.7071067,0.7071068,0,0.7071067 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *376 { + a: -1.795021,-1.577722E-30,-1.795021,1.478736,1.795021,-1.577722E-30,1.795021,1.478736,1.795021,1.478736,1.795021,-1.577722E-30,-1.795021,1.478736,-1.795021,-1.577722E-30,1.560888,2.46456,1.560888,-1.577722E-30,-1.560888,2.46456,-1.560888,-1.577722E-30,-1.560888,-1.577722E-30,-1.560888,2.46456,1.560888,-1.577722E-30,1.560888,2.46456,1.560888,-1.577722E-30,-1.560888,-1.577722E-30,1.560888,2.46456,-1.560888,2.46456,1.560888,-1.577722E-30,-1.560888,-1.577722E-30,1.560888,2.46456,-1.560888,2.46456,1.795021,1.478736,1.795021,-1.577722E-30,-1.795021,1.478736,-1.795021,-1.577722E-30,-1.795021,-1.577722E-30,-1.795021,1.478736,1.795021,-1.577722E-30,1.795021,1.478736,6.329813,1.478736,6.329813,6.716306E-17,4.00245,1.228632,4.00245,6.716306E-17,-4.00245,6.716306E-17,-6.329813,6.716306E-17,-4.00245,1.228632,-6.329813,1.478736,-4.00245,4.477537E-17,-6.329813,4.477537E-17,-4.00245,1.228632,-6.329813,1.478736,-6.329813,-5.630821E-17,-6.329813,1.478736,-4.00245,-5.630821E-17,-4.00245,1.228632,4.00245,-5.630821E-17,4.00245,1.228632,6.329813,-5.630821E-17,6.329813,1.478736,5.504184,-1.577722E-30,4.099431,-1.577722E-30,5.504184,2.46456,4.099431,1.228632,1.560888,1.758298,1.560888,1.035734,1.560888,1.846425,-5.684342E-14,0.2606994,-1.560888,1.846425,1.136868E-13,0.2606994,-1.560888,1.846425,1.560888,1.846425,-1.560888,1.846426,-1.560888,5.85247,1.560888,1.846426,1.560888,5.85247,4.019007E-14,2.305458,-1.795021,4.110814,1.795021,4.110814,-1.795021,6.451576,1.795021,6.451576,1.795021,4.110814,-4.019007E-14,2.305458,1.795021,6.451576,-1.795021,4.110814,-1.795021,6.451576,1.795021,6.451576,1.795021,4.110814,-1.795021,6.451576,4.019007E-14,2.305458,-1.795021,4.110814,5.504184,-1.577722E-30,4.099431,-1.577722E-30,5.504184,2.46456,4.099431,1.228632,1.560888,1.758298,1.560888,1.035734,4.099431,-1.577722E-30,4.099431,1.228632,5.504184,-1.577722E-30,5.504184,2.46456,1.560888,1.758298,1.560888,1.035734,4.099431,1.228632,5.504184,-1.577722E-30,4.099431,-1.577722E-30,5.504184,2.46456,1.560888,1.758298,1.560888,1.035734,-1.560888,1.846425,1.560888,1.846425,5.684342E-14,0.2606994,-1.560888,1.035734,-4.099431,1.228632,-1.560888,1.758298,-5.504184,2.46456,-5.504184,-1.577722E-30,-4.099431,-1.577722E-30,6.329813,6.716306E-17,4.00245,6.716306E-17,6.329813,1.478736,4.00245,1.228632,-5.504184,-1.577722E-30,-5.504184,2.46456,-4.099431,-1.577722E-30,-4.099431,1.228632,-1.560888,1.758298,-1.560888,1.035734,1.560888,1.846425,-1.136868E-13,0.2606994,-1.560888,1.846425,1.560888,1.846426,-1.560888,1.846426,1.560888,5.85247,-1.560888,5.85247,-1.560888,5.85247,1.560888,5.85247,-1.560888,1.846426,1.560888,1.846426,-1.795021,6.451576,1.795021,6.451576,-1.795021,4.110814,-4.063416E-14,2.305458,1.795021,4.110814,-1.560888,1.035734,-4.099431,1.228632,-1.560888,1.758298,-5.504184,2.46456,-5.504184,-1.577722E-30,-4.099431,-1.577722E-30,-1.560888,1.758298,-1.560888,1.035734,-5.504184,2.46456,-4.099431,1.228632,-4.099431,-1.577722E-30,-5.504184,-1.577722E-30,1.560888,5.85247,1.560888,1.846426,-1.560888,5.85247,-1.560888,1.846426,6.329813,6.716306E-17,4.00245,6.716306E-17,6.329813,1.478736,4.00245,1.228632,5.745125,3.206582,4.099431,1.560888,3.206582,5.745125,4.099431,-1.560888,3.206582,-5.745125,5.745125,-3.206582,1.560888,4.099431,1.560888,-4.099431,-1.560888,5.504184,1.560888,5.504184,1.560888,-5.504184,-1.560888,-5.504184,-1.560888,4.099431,-1.560888,-4.099431,5.504184,-1.560888,5.504184,1.560888,-3.206582,5.745125,-3.206582,-5.745125,-4.099431,1.560888,-5.745125,3.206582,-4.099431,-1.560888,-5.504184,1.560888,-5.504184,-1.560888,-5.745125,-3.206582,-1.560888,-1.560888,-1.560888,1.560888,1.560888,-1.560888,1.560888,1.560888,-4.00245,1.228632,-4.00245,4.477537E-17,-6.329813,1.478736,-6.329813,4.477537E-17 + } + UVIndex: *336 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,55,54,55,56,57,58,60,59,61,63,62,64,66,65,67,65,66,68,70,69,71,69,70,72,71,70,73,75,74,76,74,75,77,76,75,78,80,79,81,79,80,82,81,80,83,85,84,86,84,85,87,86,85,86,87,88,89,91,90,91,92,90,92,93,90,94,90,93,95,97,96,96,98,95,99,95,98,100,95,99,101,103,102,104,106,105,106,107,105,107,108,105,109,105,108,110,112,111,113,111,112,114,116,115,117,115,116,118,115,117,119,118,117,120,122,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,134,132,133,135,132,134,136,138,137,138,139,137,139,140,137,141,137,140,142,144,143,145,143,144,146,145,144,147,146,144,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,158,160,159,161,159,160,162,160,158,163,160,162,163,162,164,165,164,162,166,163,164,167,166,164,168,167,164,169,167,168,159,170,157,171,157,170,168,172,169,173,169,172,174,173,172,175,174,172,174,176,173,174,177,176,178,176,177,179,173,176,180,182,181,183,181,182,184,186,185,187,185,186 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *112 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh campfire_logs, Model::RootNode + C: "OO",5349959992730389430,0 + + ;Geometry::, Model::Mesh campfire_logs + C: "OO",5102970724789021419,5349959992730389430 + + ;Material::wood, Model::Mesh campfire_logs + C: "OO",3044,5349959992730389430 + + ;Material::woodDark, Model::Mesh campfire_logs + C: "OO",3052,5349959992730389430 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/campfire_logs.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/campfire_logs.fbx.import new file mode 100644 index 0000000..e11a045 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/campfire_logs.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dh3icuj6e8e11" +path="res://.godot/imported/campfire_logs.fbx-3a773ff99a42a5aae6fcd808458eae49.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/campfire_logs.fbx" +dest_files=["res://.godot/imported/campfire_logs.fbx-3a773ff99a42a5aae6fcd808458eae49.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/campfire_planks.fbx b/assets/models/kenney_nature-kit/Models/FBX format/campfire_planks.fbx new file mode 100644 index 0000000..b80b2fc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/campfire_planks.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 268 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "campfire_planks.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "campfire_planks.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5099127175069809317, "Model::campfire_planks", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5231029765313791580, "Geometry::", "Mesh" { + Vertices: *504 { + a: -1.4501,4.007414E-31,0.9899495,-0.8101502,4.007414E-31,0.35,-1.4501,0.3,0.9899495,-0.8101502,0.3,0.35,0.35,0.09999999,0.8449748,0.35,4.007414E-31,0.8449748,0.35,0.09999999,1.75,0.35,4.007414E-31,1.75,0.01741228,0.2,-0.4775625,-0.1101502,0.2,-0.35,-0.9899495,0.2,-1.484924,-0.8449748,0.2,-0.35,-1.484924,0.2,-0.9899495,1.75,4.007414E-31,0.35,0.8449748,4.007414E-31,0.35,1.75,0.4,0.35,0.8449748,0.2,0.35,0.1797993,0.2,0.35,0.1797993,0.3,0.35,-0.8101502,0.3,0.35,-1.75,0.4,0.35,-1.75,4.007414E-31,0.35,-0.8101502,4.007414E-31,0.35,-1.484924,4.007414E-31,-0.9899495,-1.484924,0.2,-0.9899495,-0.8449748,4.007414E-31,-0.35,-0.8449748,0.2,-0.35,-0.9899495,4.007414E-31,-1.484924,-0.35,4.007414E-31,-0.8449748,-0.9899495,0.2,-1.484924,-0.35,0.09999999,-0.8449748,0.01741228,0.09999999,-0.4775625,0.01741228,0.2,-0.4775625,0.8449748,0.2,0.35,0.8449748,4.007414E-31,0.35,1.484924,0.2,0.9899495,1.484924,4.007414E-31,0.9899495,1.519749,4.007414E-31,-0.9899495,0.8797992,4.007414E-31,-0.35,1.519749,0.3,-0.9899495,0.8797992,0.3,-0.35,0.35,0.09999999,0.8449748,0.35,0.09999999,1.75,0.01741228,0.09999999,0.512387,-0.35,0.09999999,1.75,-0.35,0.09999999,0.8797992,-0.35,4.007414E-31,0.8797992,-0.35,0.09999999,0.8797992,-0.35,4.007414E-31,1.75,-0.35,0.09999999,1.75,0.35,0.09999999,-1.75,0.35,0.09999999,-0.8101502,-0.35,0.09999999,-1.75,0.01741228,0.09999999,-0.4775625,-0.35,0.09999999,-0.8449748,1.519749,0.3,-0.9899495,0.8797992,0.3,-0.35,1.024774,0.3,-1.484924,-0.1101502,0.3,-0.35,0.1797993,0.3,0.35,-0.955125,0.3,1.484924,-0.8101502,0.3,0.35,-1.4501,0.3,0.9899495,-1.75,4.007414E-31,-0.35,-1.75,0.4,-0.35,-1.75,4.007414E-31,0.35,-1.75,0.4,0.35,1.75,0.4,-0.35,1.75,4.007414E-31,-0.35,1.75,0.4,0.35,1.75,4.007414E-31,0.35,1.75,0.4,-0.35,1.75,0.4,0.35,-1.75,0.4,-0.35,-1.75,0.4,0.35,1.024774,4.007414E-31,-1.484924,1.519749,4.007414E-31,-0.9899495,1.024774,0.3,-1.484924,1.519749,0.3,-0.9899495,1.484924,0.2,0.9899495,1.484924,4.007414E-31,0.9899495,0.9899495,0.2,1.484924,0.9899495,4.007414E-31,1.484924,0.35,4.007414E-31,1.75,-0.35,4.007414E-31,1.75,0.35,0.09999999,1.75,-0.35,0.09999999,1.75,-0.9899495,4.007414E-31,-1.484924,-0.9899495,0.2,-1.484924,-1.484924,4.007414E-31,-0.9899495,-1.484924,0.2,-0.9899495,1.484924,0.2,0.9899495,0.9899495,0.2,1.484924,0.8449748,0.2,0.35,0.01741228,0.2,0.512387,0.1797993,0.2,0.35,-0.955125,4.007414E-31,1.484924,-1.4501,4.007414E-31,0.9899495,-0.955125,0.3,1.484924,-1.4501,0.3,0.9899495,1.75,4.007414E-31,0.35,1.75,4.007414E-31,-0.35,0.8449748,4.007414E-31,0.35,0.8797992,4.007414E-31,-0.35,0.35,4.007414E-31,-0.8101502,1.024774,4.007414E-31,-1.484924,1.519749,4.007414E-31,-0.9899495,0.35,4.007414E-31,0.8449748,0.9899495,4.007414E-31,1.484924,1.484924,4.007414E-31,0.9899495,-0.35,4.007414E-31,1.75,0.35,4.007414E-31,1.75,0.35,4.007414E-31,-1.75,-0.35,4.007414E-31,-1.75,-0.35,4.007414E-31,0.8797992,-0.35,4.007414E-31,-0.8449748,-0.955125,4.007414E-31,1.484924,-0.8101502,4.007414E-31,0.35,-1.4501,4.007414E-31,0.9899495,-0.8449748,4.007414E-31,-0.35,-1.75,4.007414E-31,0.35,-1.75,4.007414E-31,-0.35,-0.9899495,4.007414E-31,-1.484924,-1.484924,4.007414E-31,-0.9899495,0.35,0.09999999,-1.75,0.35,4.007414E-31,-1.75,0.35,0.09999999,-0.8101502,0.35,4.007414E-31,-0.8101502,-0.35,4.007414E-31,-1.75,-0.35,0.09999999,-1.75,-0.35,4.007414E-31,-0.8449748,-0.35,0.09999999,-0.8449748,0.01741228,0.09999999,-0.4775625,0.35,0.09999999,-0.8101502,0.01741228,0.2,-0.4775625,1.024774,0.3,-1.484924,1.024774,4.007414E-31,-1.484924,0.35,4.007414E-31,-0.8101502,-0.1101502,0.3,-0.35,-0.1101502,0.2,-0.35,-0.35,4.007414E-31,-1.75,0.35,4.007414E-31,-1.75,-0.35,0.09999999,-1.75,0.35,0.09999999,-1.75,0.01741228,0.09999999,0.512387,-0.35,0.09999999,0.8797992,0.01741228,0.2,0.512387,-0.955125,0.3,1.484924,-0.955125,4.007414E-31,1.484924,-0.35,4.007414E-31,0.8797992,0.1797993,0.3,0.35,0.1797993,0.2,0.35,0.9899495,4.007414E-31,1.484924,0.35,4.007414E-31,0.8449748,0.9899495,0.2,1.484924,0.35,0.09999999,0.8449748,0.01741228,0.09999999,0.512387,0.01741228,0.2,0.512387,-1.75,4.007414E-31,-0.35,-0.8449748,4.007414E-31,-0.35,-1.75,0.4,-0.35,-0.8449748,0.2,-0.35,-0.1101502,0.2,-0.35,-0.1101502,0.3,-0.35,0.8797992,0.3,-0.35,1.75,0.4,-0.35,1.75,4.007414E-31,-0.35,0.8797992,4.007414E-31,-0.35 + } + PolygonVertexIndex: *324 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,16,-16,18,17,-16,19,18,-16,15,20,-20,20,21,-20,22,19,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,30,-30,32,31,-30,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,44,-44,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,53,-53,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,94,-94,96,98,-98,99,97,-99,100,102,-102,103,101,-103,102,104,-104,104,105,-104,106,103,-106,107,104,-103,107,102,-109,109,108,-103,104,107,-111,111,110,-108,112,104,-111,113,112,-111,114,113,-111,115,113,-115,114,116,-116,117,115,-117,118,117,-117,117,119,-116,117,120,-120,121,119,-121,122,115,-120,123,122,-120,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,134,135,-134,135,136,-134,137,133,-137,138,135,-135,139,138,-135,140,142,-142,143,141,-143,144,146,-146,146,147,-146,147,148,-146,149,145,-149,150,147,-147,151,150,-147,152,154,-154,155,153,-155,156,155,-155,157,156,-155,158,160,-160,161,159,-161,162,161,-161,163,162,-161,164,163,-161,160,165,-165,165,166,-165,167,164,-167 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *972 { + a: -0.7071066,0,-0.7071069,-0.7071066,0,-0.7071069,-0.7071066,0,-0.7071069,-0.7071066,0,-0.7071069,-0.7071066,0,-0.7071069,-0.7071066,0,-0.7071069,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071069,0,0.7071065,-0.7071069,0,0.7071065,-0.7071069,0,0.7071065,-0.7071069,0,0.7071065,-0.7071069,0,0.7071065,-0.7071069,0,0.7071065,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071066,3.414809E-07,-0.7071069,0.7071069,0,-0.7071065,0.7071069,0,-0.7071065,0.7071069,0,-0.7071065,0.7071069,0,-0.7071065,0.7071069,0,-0.7071065,0.7071069,0,-0.7071065,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7071063,0,-0.7071072,0.7071063,0,-0.7071072,0.7071063,0,-0.7071072,0.7071063,0,-0.7071072,0.7071063,0,-0.7071072,0.7071063,0,-0.7071072,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071064,0,0.7071071,-0.7071064,0,0.7071071,-0.7071064,0,0.7071071,-0.7071064,0,0.7071071,-0.7071064,0,0.7071071,-0.7071064,0,0.7071071,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,-0.7071067,0,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,0.7071066,0,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,-0.7071066,4.176574E-07,0.7071069,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *336 { + a: 6.792817,1.577722E-30,3.229725,1.577722E-30,6.792817,1.181102,3.229725,1.181102,-3.326673,0.3937007,-3.326673,1.577722E-30,-6.889764,0.3937007,-6.889764,1.577722E-30,-0.06855229,-1.880167,0.4336622,-1.377953,3.897439,-5.846158,3.326673,-1.377953,5.846158,-3.897439,6.889764,1.577722E-30,3.326673,1.577722E-30,6.889764,1.574803,3.326673,0.7874016,0.7078713,0.7874016,0.7078713,1.181102,-3.189568,1.181102,-6.889764,1.574803,-6.889764,1.577722E-30,-3.189568,1.577722E-30,-6.889763,1.577722E-30,-6.889763,0.7874016,-3.326672,1.577722E-30,-3.326672,0.7874016,6.889763,-4.705446E-07,3.326672,-4.705448E-07,6.889763,0.7874011,3.326672,0.3937003,1.281005,0.3937003,1.281005,0.7874011,-3.326672,0.7874016,-3.326672,1.577722E-30,-6.889763,0.7874016,-6.889763,1.577722E-30,6.986712,1.577722E-30,3.42362,1.577722E-30,6.986712,1.181102,3.42362,1.181102,-1.377953,3.326673,-1.377953,6.889764,-0.06855229,2.017272,1.377953,6.889764,1.377953,3.463776,3.463776,1.577722E-30,3.463776,0.3937007,6.889764,1.577722E-30,6.889764,0.3937007,-1.377953,-6.889764,-1.377953,-3.189568,1.377953,-6.889764,-0.06855229,-1.880167,1.377953,-3.326673,-5.983264,-3.897439,-3.463776,-1.377953,-4.034543,-5.846158,0.4336622,-1.377953,-0.7078713,1.377953,3.760334,5.846158,3.189568,1.377953,5.709055,3.897439,-1.377953,1.577722E-30,-1.377953,1.574803,1.377953,1.577722E-30,1.377953,1.574803,1.377953,1.574803,1.377953,1.577722E-30,-1.377953,1.574803,-1.377953,1.577722E-30,-6.889764,-1.377953,-6.889764,1.377953,6.889764,-1.377953,6.889764,1.377953,1.281,1.577722E-30,-1.474905,1.577722E-30,1.281,1.181102,-1.474905,1.181102,1.377952,0.7874016,1.377952,1.577722E-30,-1.377952,0.7874016,-1.377952,1.577722E-30,1.377953,1.577722E-30,-1.377953,1.577722E-30,1.377953,0.3937007,-1.377953,0.3937007,-1.377952,1.577722E-30,-1.377952,0.7874016,1.377952,1.577722E-30,1.377952,0.7874016,-5.846158,3.897439,-3.897439,5.846158,-3.326673,1.377953,-0.06855229,2.017272,-0.7078713,1.377953,1.474896,1.577722E-30,-1.28101,1.577722E-30,1.474896,1.181102,-1.28101,1.181102,6.889764,1.377953,6.889764,-1.377953,3.326673,1.377953,3.463776,-1.377953,1.377953,-3.189568,4.034543,-5.846158,5.983264,-3.897439,1.377953,3.326673,3.897439,5.846158,5.846158,3.897439,-1.377953,6.889764,1.377953,6.889764,1.377953,-6.889764,-1.377953,-6.889764,-1.377953,3.463776,-1.377953,-3.326673,-3.760334,5.846158,-3.189568,1.377953,-5.709055,3.897439,-3.326673,-1.377953,-6.889764,1.377953,-6.889764,-1.377953,-3.897439,-5.846158,-5.846158,-3.897439,6.889764,0.3937007,6.889764,1.577722E-30,3.189568,0.3937007,3.189568,1.577722E-30,-6.889764,1.577722E-30,-6.889764,0.3937007,-3.326673,1.577722E-30,-3.326673,0.3937007,-1.377953,0.3937005,-3.229725,0.3937005,-1.377953,0.7874014,-6.98671,1.181102,-6.98671,-1.8667E-07,-3.229725,-1.8667E-07,-0.6677141,1.181102,-0.6677141,0.7874014,1.377953,1.577722E-30,-1.377953,1.577722E-30,1.377953,0.3937007,-1.377953,0.3937007,-1.377952,0.3937006,-3.423619,0.3937006,-1.377952,0.7874015,-6.792815,1.181102,-6.792815,-9.189565E-08,-3.423619,-9.189566E-08,-0.4738189,1.181102,-0.4738189,0.7874015,6.889763,-5.755123E-07,3.326672,-5.755125E-07,6.889763,0.787401,3.326672,0.3937002,1.4749,0.3937002,1.4749,0.787401,6.889764,1.577722E-30,3.326673,1.577722E-30,6.889764,1.574803,3.326673,0.7874016,0.4336622,0.7874016,0.4336622,1.181102,-3.463776,1.181102,-6.889764,1.574803,-6.889764,1.577722E-30,-3.463776,1.577722E-30 + } + UVIndex: *324 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,16,15,18,17,15,19,18,15,15,20,19,20,21,19,22,19,21,23,25,24,26,24,25,27,29,28,30,28,29,31,30,29,32,31,29,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,44,43,46,48,47,49,47,48,50,52,51,53,51,52,54,53,52,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,94,93,96,98,97,99,97,98,100,102,101,103,101,102,102,104,103,104,105,103,106,103,105,107,104,102,107,102,108,109,108,102,104,107,110,111,110,107,112,104,110,113,112,110,114,113,110,115,113,114,114,116,115,117,115,116,118,117,116,117,119,115,117,120,119,121,119,120,122,115,119,123,122,119,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,134,135,133,135,136,133,137,133,136,138,135,134,139,138,134,140,142,141,143,141,142,144,146,145,146,147,145,147,148,145,149,145,148,150,147,146,151,150,146,152,154,153,155,153,154,156,155,154,157,156,154,158,160,159,161,159,160,162,161,160,163,162,160,164,163,160,160,165,164,165,166,164,167,164,166 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *108 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh campfire_planks, Model::RootNode + C: "OO",5099127175069809317,0 + + ;Geometry::, Model::Mesh campfire_planks + C: "OO",5231029765313791580,5099127175069809317 + + ;Material::woodBark, Model::Mesh campfire_planks + C: "OO",3046,5099127175069809317 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/campfire_planks.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/campfire_planks.fbx.import new file mode 100644 index 0000000..95f1e24 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/campfire_planks.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cg4riy1wwwu4y" +path="res://.godot/imported/campfire_planks.fbx-447c0f18653432dc64734bfb9e9cf5a3.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/campfire_planks.fbx" +dest_files=["res://.godot/imported/campfire_planks.fbx-447c0f18653432dc64734bfb9e9cf5a3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/campfire_stones.fbx b/assets/models/kenney_nature-kit/Models/FBX format/campfire_stones.fbx new file mode 100644 index 0000000..39050f8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/campfire_stones.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 382 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "campfire_stones.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "campfire_stones.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5291256179165736056, "Model::campfire_stones", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5076385328963875072, "Geometry::", "Mesh" { + Vertices: *1188 { + a: -1.897965,-1.127987E-15,-1.726675,-1.36588,0.6313381,-1.590818,-1.882637,-1.127987E-15,-1.674438,-1.489721,0.3201854,-1.18613,-1.294666,0.6313381,-1.348122,-1.494716,0.274187,-1.080936,-0.8073189,0.77751,1.813657,-0.8624643,0.77751,2.078518,-1.227263,0.77751,1.651613,-1.243331,0.77751,2.131768,-1.393672,0.77751,1.792505,-1.56477,-1.127987E-15,-0.3128791,-1.79636,-1.127987E-15,-0.3128791,-1.871917,0.77751,-0.7200399,-2.063169,0.2485684,-0.4430477,-2.450391,0.2485684,-0.4430477,-2.242998,0.77751,-0.7200399,-1.08844,-1.127987E-15,1.254109,-1.099011,-1.127987E-15,1.264681,-1.536064,0.49878,1.190083,-1.2892,0.1660734,1.284511,-1.75683,0.2079584,1.709175,-1.797334,0.49878,1.451353,-1.773865,-1.127987E-15,1.939534,-1.82194,-1.127987E-15,1.987609,0.8423848,0.07178477,-1.919608,0.8006943,0.1080538,-1.900014,0.4580539,0.49878,-1.873372,0.4419686,0.06535681,-1.216742,0.2733082,0.49878,-1.553382,0.3883342,-1.127987E-15,-1.029031,0.4066599,-1.127987E-15,-1.060772,0.9547158,-1.127987E-15,0.5351557,1.17109,0.49878,0.9380197,0.6332949,-1.127987E-15,1.255243,0.9791391,0.49878,1.368052,0.6749179,0.1903815,1.500791,-1.334036,-1.127987E-15,0.8058859,-1.08844,-1.127987E-15,1.254109,-1.585123,0.49878,1.100548,-1.536064,0.49878,1.190083,1.387594,0.49878,1.403577,1.328918,0.49878,1.487126,1.336844,0.49878,0.9656574,1.17109,0.49878,0.9380197,0.9791391,0.49878,1.368052,-2.763083,-1.127987E-15,-1.046379,-2.30439,0.77751,-0.9292605,-2.597507,-1.127987E-15,-0.4821037,-2.242998,0.77751,-0.7200399,-2.482593,0.2028451,-0.4677494,-2.450391,0.2485684,-0.4430477,-0.7416906,0.6313381,-1.77707,-0.8642116,0.6313381,-1.348122,-0.996669,0.6313381,-1.960029,-1.294666,0.6313381,-1.348122,-1.36588,0.6313381,-1.590818,0.6298628,0.7188299,1.944398,0.5704628,0.7188299,2.047282,0.3593084,0.7188299,1.543478,-0.02109676,0.7188299,2.120956,0.2828319,0.7188299,1.499325,-0.1514516,0.7188299,1.917048,-0.2071576,0.7188299,2.013534,0.2240939,-1.127987E-15,1.016992,0.6310847,-1.127987E-15,1.251968,0.2828319,0.7188299,1.499325,0.3593084,0.7188299,1.543478,1.87366,-1.127987E-15,-1.224889,1.87366,-1.127987E-15,-0.6221418,1.485317,0.7188299,-1.094577,1.485317,0.7188299,-0.8797326,1.812754,0.1127377,-0.552295,-0.3367867,0.1626733,-1.918064,-0.3965563,0.1733024,-1.737761,-0.7416906,0.6313381,-1.77707,-0.8642116,0.6313381,-1.348122,-0.3209558,-1.127987E-15,-1.530386,-0.5079212,-1.127987E-15,-0.8758154,0.9547158,-1.127987E-15,0.5351557,1.207899,-1.127987E-15,0.5773709,1.17109,0.49878,0.9380197,1.592769,0.1096572,0.7221818,1.336844,0.49878,0.9656574,1.994653,0.77751,0.1374698,1.732259,0.77751,0.399864,1.807862,0.77751,-0.1986915,1.540906,0.77751,-0.1547905,1.540906,0.77751,0.2953332,0.8773445,-1.127987E-15,-1.958389,1.318934,-1.127987E-15,-1.958389,0.8423848,0.07178477,-1.919608,1.125733,0.7188299,-1.570046,0.8006943,0.1080538,-1.900014,1.006933,0.7188299,-1.570046,1.133746,-1.127987E-15,-0.5004623,1.540906,0.77751,-0.1547905,1.133746,-1.127987E-15,0.5368633,1.540906,0.77751,0.2953332,-0.2943708,-1.127987E-15,-2.36485,-0.05194365,0.49878,-1.982434,-0.3915713,-1.127987E-15,-2.107159,-0.3367867,0.1626733,-1.918064,-0.1112503,0.49878,-1.825204,-0.3965563,0.1733024,-1.737761,-1.047105,-1.127987E-15,-2.577535,-0.3915713,-1.127987E-15,-2.107159,-0.996669,0.6313381,-1.960029,-0.3367867,0.1626733,-1.918064,-0.7416906,0.6313381,-1.77707,-2.763083,-1.127987E-15,-1.046379,-2.029584,-1.127987E-15,-1.779879,-2.30439,0.77751,-0.9292605,-1.986104,0.77751,-1.247546,-1.489721,0.3201854,-1.18613,-1.494716,0.274187,-1.080936,-1.766296,0.77751,-1.089823,-1.871917,0.77751,-0.7200399,-1.403978,-1.127987E-15,-0.8758154,-1.56477,-1.127987E-15,-0.3128791,1.32179,0.03734735,-0.5115657,1.373904,0.7188299,-0.8797326,1.812754,0.1127377,-0.552295,1.485317,0.7188299,-0.8797326,-2.098437,0.49878,1.089262,-1.797334,0.49878,1.451353,-2.55544,-1.127987E-15,1.105539,-1.82194,-1.127987E-15,1.987609,-2.029584,-1.127987E-15,-1.779879,-1.882637,-1.127987E-15,-1.674438,-1.986104,0.77751,-1.247546,-1.489721,0.3201854,-1.18613,-1.766296,0.77751,-1.089823,-1.75683,0.2079584,1.709175,-1.393672,0.77751,1.792505,-1.773865,-1.127987E-15,1.939534,-1.243331,0.77751,2.131768,-1.491141,-1.127987E-15,2.577535,-1.441635,-1.127987E-15,0.7675936,-1.334036,-1.127987E-15,0.8058859,-1.500628,0.1091969,0.8306717,-1.585123,0.49878,1.100548,-1.978092,0.2388905,0.7606055,-2.06965,0.2434942,0.7315668,-2.000457,0.49878,0.95274,-0.1024151,-1.127987E-15,2.522428,-0.4921477,-1.127987E-15,2.297415,-0.02109676,0.7188299,2.120956,-0.5728732,0.2232714,2.111527,-0.2071576,0.7188299,2.013534,-0.4197226,0.094405,1.707024,-0.1514516,0.7188299,1.917048,-0.5728732,0.2232714,2.111527,-0.2071576,0.7188299,2.013534,-0.3384551,0.0003456862,1.558349,-0.4197226,0.094405,1.707024,-0.8073189,0.77751,1.813657,-0.5728732,0.2232714,2.111527,-0.8624643,0.77751,2.078518,-0.5222667,-1.127987E-15,2.442075,-0.4921477,-1.127987E-15,2.297415,-2.063169,0.2485684,-0.4430477,-1.79636,-1.127987E-15,-0.3128791,-2.189562,0.7188299,-0.1889918,-1.441635,-1.127987E-15,0.1561647,-1.829979,0.7188299,0.2864766,1.592769,0.1096572,0.7221818,1.686348,-1.127987E-15,0.8387364,1.336844,0.49878,0.9656574,1.762839,-1.127987E-15,1.498772,1.387594,0.49878,1.403577,1.994653,0.77751,0.1374698,2.499744,-1.127987E-15,0.2081905,1.732259,0.77751,0.399864,1.8046,-1.127987E-15,0.9033346,-2.06965,0.2434942,0.7315668,-2.000457,0.49878,0.95274,-2.331108,-1.127987E-15,0.7929596,-2.55544,-1.127987E-15,1.105539,-2.098437,0.49878,1.089262,-2.908635,-1.127987E-15,0.1561647,-2.520292,0.7188299,0.245775,-2.908635,-1.127987E-15,0.6261176,-2.520292,0.7188299,0.3340822,-2.597507,-1.127987E-15,-0.4821037,-2.482593,0.2028451,-0.4677494,-2.908635,-1.127987E-15,0.1561647,-2.308362,0.7188299,-0.1889918,-2.520292,0.7188299,0.245775,-2.482593,0.2028451,-0.4677494,-2.450391,0.2485684,-0.4430477,-2.308362,0.7188299,-0.1889918,-2.063169,0.2485684,-0.4430477,-2.189562,0.7188299,-0.1889918,-1.978092,0.2388905,0.7606055,-2.06965,0.2434942,0.7315668,-1.94139,0.7188299,0.5013211,-2.520292,0.7188299,0.3340822,-2.908635,-1.127987E-15,0.6261176,-2.331108,-1.127987E-15,0.7929596,-1.2892,0.1660734,1.284511,-1.227263,0.77751,1.651613,-1.75683,0.2079584,1.709175,-1.393672,0.77751,1.792505,1.8046,-1.127987E-15,0.9033346,1.686348,-1.127987E-15,0.8387364,1.732259,0.77751,0.399864,1.592769,0.1096572,0.7221818,1.540906,0.77751,0.2953332,1.133746,-1.127987E-15,0.5368633,1.207899,-1.127987E-15,0.5773709,1.08754,-1.127987E-15,1.928364,0.9638092,-1.127987E-15,1.745014,0.8101773,-1.127987E-15,2.408771,0.9547158,-1.127987E-15,0.5351557,0.6332949,-1.127987E-15,1.255243,-0.1024151,-1.127987E-15,2.522428,0.6310847,-1.127987E-15,1.251968,0.2240939,-1.127987E-15,1.016992,-0.3385034,-1.127987E-15,1.558136,-0.4921477,-1.127987E-15,2.297415,-1.099011,-1.127987E-15,1.264681,-0.5222667,-1.127987E-15,2.442075,-1.491141,-1.127987E-15,2.577535,-1.334036,-1.127987E-15,0.8058859,-1.441635,-1.127987E-15,0.7675936,-1.441635,-1.127987E-15,0.1561647,-1.79636,-1.127987E-15,-0.3128791,-1.773865,-1.127987E-15,1.939534,-1.82194,-1.127987E-15,1.987609,-1.882637,-1.127987E-15,-1.674438,-2.331108,-1.127987E-15,0.7929596,-2.55544,-1.127987E-15,1.105539,-2.029584,-1.127987E-15,-1.779879,-2.597507,-1.127987E-15,-0.4821037,-2.908635,-1.127987E-15,0.6261176,-2.908635,-1.127987E-15,0.1561647,-2.763083,-1.127987E-15,-1.046379,-1.56477,-1.127987E-15,-0.3128791,-1.403978,-1.127987E-15,-0.8758154,-1.897965,-1.127987E-15,-1.726675,-1.047105,-1.127987E-15,-2.577535,-0.5079212,-1.127987E-15,-0.8758154,-0.3915713,-1.127987E-15,-2.107159,-0.3209558,-1.127987E-15,-1.530386,-0.2943708,-1.127987E-15,-2.36485,0.3883342,-1.127987E-15,-1.029031,0.4066599,-1.127987E-15,-1.060772,0.553761,-1.127987E-15,-2.296767,0.4066599,-1.127987E-15,-0.754936,0.8773445,-1.127987E-15,-1.958389,1.231743,-1.127987E-15,-0.5165779,1.318934,-1.127987E-15,-1.958389,1.207899,-1.127987E-15,0.5773709,1.469099,-1.127987E-15,1.917029,1.686348,-1.127987E-15,0.8387364,1.8046,-1.127987E-15,0.9033346,1.87366,-1.127987E-15,-1.224889,1.87366,-1.127987E-15,-0.6221418,2.024574,-1.127987E-15,-0.6469596,2.499744,-1.127987E-15,0.2081905,1.133746,-1.127987E-15,-0.5004623,1.133746,-1.127987E-15,0.5368633,1.762839,-1.127987E-15,1.498772,-1.08844,-1.127987E-15,1.254109,1.469099,-1.127987E-15,1.917029,0.9638092,-1.127987E-15,1.745014,1.328918,0.49878,1.487126,0.6749179,0.1903815,1.500791,0.9791391,0.49878,1.368052,-1.500628,0.1091969,0.8306717,-1.978092,0.2388905,0.7606055,-1.829979,0.7188299,0.5013211,-1.94139,0.7188299,0.5013211,-0.3385034,-1.127987E-15,1.558136,0.2240939,-1.127987E-15,1.016992,-0.3384551,0.0003456862,1.558349,0.2828319,0.7188299,1.499325,-0.4197226,0.094405,1.707024,-0.1514516,0.7188299,1.917048,-1.829979,0.7188299,0.2864766,-1.829979,0.7188299,0.5013211,-2.189562,0.7188299,-0.1889918,-1.94139,0.7188299,0.5013211,-2.520292,0.7188299,0.3340822,-2.308362,0.7188299,-0.1889918,-2.520292,0.7188299,0.245775,2.024574,-1.127987E-15,-0.6469596,2.499744,-1.127987E-15,0.2081905,1.807862,0.77751,-0.1986915,1.994653,0.77751,0.1374698,-1.099011,-1.127987E-15,1.264681,-0.3385034,-1.127987E-15,1.558136,-1.2892,0.1660734,1.284511,-0.3384551,0.0003456862,1.558349,-0.8073189,0.77751,1.813657,-1.227263,0.77751,1.651613,-0.5222667,-1.127987E-15,2.442075,-1.491141,-1.127987E-15,2.577535,-0.8624643,0.77751,2.078518,-1.243331,0.77751,2.131768,-0.996669,0.6313381,-1.960029,-1.36588,0.6313381,-1.590818,-1.047105,-1.127987E-15,-2.577535,-1.897965,-1.127987E-15,-1.726675,-1.536064,0.49878,1.190083,-1.797334,0.49878,1.451353,-1.585123,0.49878,1.100548,-2.000457,0.49878,0.95274,-2.098437,0.49878,1.089262,1.387594,0.49878,1.403577,1.762839,-1.127987E-15,1.498772,1.328918,0.49878,1.487126,1.469099,-1.127987E-15,1.917029,-1.766296,0.77751,-1.089823,-1.871917,0.77751,-0.7200399,-1.986104,0.77751,-1.247546,-2.242998,0.77751,-0.7200399,-2.30439,0.77751,-0.9292605,0.4419686,0.06535681,-1.216742,0.7950037,0.7188299,-1.135279,0.4066599,-1.127987E-15,-1.060772,0.7950037,0.7188299,-1.046971,0.4066599,-1.127987E-15,-0.754936,0.8773445,-1.127987E-15,-1.958389,0.8423848,0.07178477,-1.919608,0.553761,-1.127987E-15,-2.296767,0.4580539,0.49878,-1.873372,0.3874933,0.49878,-1.947158,-1.441635,-1.127987E-15,0.1561647,-1.441635,-1.127987E-15,0.7675936,-1.829979,0.7188299,0.2864766,-1.829979,0.7188299,0.5013211,-1.500628,0.1091969,0.8306717,-0.5079212,-1.127987E-15,-0.8758154,-1.403978,-1.127987E-15,-0.8758154,-0.8642116,0.6313381,-1.348122,-1.494716,0.274187,-1.080936,-1.294666,0.6313381,-1.348122,1.133746,-1.127987E-15,-0.5004623,1.231743,-1.127987E-15,-0.5165779,1.540906,0.77751,-0.1547905,1.32179,0.03734735,-0.5115657,1.812754,0.1127377,-0.552295,1.807862,0.77751,-0.1986915,2.024574,-1.127987E-15,-0.6469596,1.87366,-1.127987E-15,-0.6221418,1.485317,0.7188299,-1.094577,1.485317,0.7188299,-0.8797326,1.125733,0.7188299,-1.570046,1.373904,0.7188299,-0.8797326,0.7950037,0.7188299,-1.046971,1.006933,0.7188299,-1.570046,0.7950037,0.7188299,-1.135279,1.231743,-1.127987E-15,-0.5165779,0.4066599,-1.127987E-15,-0.754936,1.32179,0.03734735,-0.5115657,0.7950037,0.7188299,-1.046971,1.373904,0.7188299,-0.8797326,0.8101773,-1.127987E-15,2.408771,-0.1024151,-1.127987E-15,2.522428,0.5704628,0.7188299,2.047282,-0.02109676,0.7188299,2.120956,0.8006943,0.1080538,-1.900014,1.006933,0.7188299,-1.570046,0.4419686,0.06535681,-1.216742,0.7950037,0.7188299,-1.135279,0.3883342,-1.127987E-15,-1.029031,-0.3209558,-1.127987E-15,-1.530386,0.2733082,0.49878,-1.553382,-0.3965563,0.1733024,-1.737761,-0.1112503,0.49878,-1.825204,0.6310847,-1.127987E-15,1.251968,0.6332949,-1.127987E-15,1.255243,0.3593084,0.7188299,1.543478,0.6749179,0.1903815,1.500791,0.9638092,-1.127987E-15,1.745014,0.6298628,0.7188299,1.944398,1.08754,-1.127987E-15,1.928364,1.08754,-1.127987E-15,1.928364,0.8101773,-1.127987E-15,2.408771,0.6298628,0.7188299,1.944398,0.5704628,0.7188299,2.047282,-0.2943708,-1.127987E-15,-2.36485,0.553761,-1.127987E-15,-2.296767,-0.05194365,0.49878,-1.982434,0.3874933,0.49878,-1.947158,1.318934,-1.127987E-15,-1.958389,1.87366,-1.127987E-15,-1.224889,1.125733,0.7188299,-1.570046,1.485317,0.7188299,-1.094577,0.4580539,0.49878,-1.873372,0.2733082,0.49878,-1.553382,0.3874933,0.49878,-1.947158,-0.05194365,0.49878,-1.982434,-0.1112503,0.49878,-1.825204 + } + PolygonVertexIndex: *792 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,8,-8,9,7,-9,10,9,-9,11,13,-13,14,12,-14,15,14,-14,16,15,-14,17,19,-19,20,18,-20,21,20,-20,22,21,-20,23,21,-23,24,23,-23,25,27,-27,28,26,-28,29,28,-28,30,28,-30,31,28,-31,32,34,-34,35,33,-35,36,35,-35,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,42,-45,46,48,-48,49,47,-49,50,49,-49,51,49,-51,52,54,-54,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,60,-60,62,60,-62,63,60,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,69,-72,73,75,-75,76,74,-76,77,74,-77,78,77,-77,79,81,-81,82,80,-82,83,82,-82,84,86,-86,87,85,-87,88,85,-88,89,91,-91,92,90,-92,93,92,-92,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,100,-103,104,103,-103,105,107,-107,108,106,-108,109,108,-108,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,115,-118,119,118,-118,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,131,-131,133,135,-135,136,134,-136,137,136,-136,138,140,-140,141,139,-141,142,141,-141,143,141,-143,144,141,-144,145,147,-147,148,146,-148,149,148,-148,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,157,-157,159,157,-159,160,157,-160,161,163,-163,164,162,-164,165,164,-164,166,168,-168,169,167,-169,170,169,-169,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,176,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,187,-187,189,191,-191,192,190,-192,193,192,-192,194,196,-196,196,197,-196,197,198,-196,199,195,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,206,208,-208,208,209,-208,210,207,-210,211,213,-213,214,212,-214,215,214,-214,216,215,-214,217,215,-217,218,217,-217,219,218,-217,220,219,-217,221,219,-221,222,221,-221,223,221,-223,224,221,-224,225,224,-224,226,225,-224,227,226,-224,228,227,-224,229,227,-229,229,230,-228,230,229,-232,232,231,-230,233,230,-232,231,234,-234,231,235,-235,236,234,-236,237,233,-235,227,230,-239,238,230,-240,230,240,-240,240,241,-240,239,241,-243,241,243,-243,242,243,-245,243,245,-245,244,245,-247,246,245,-248,245,248,-248,247,248,-250,248,250,-250,249,250,-252,252,251,-251,251,252,-254,253,252,-255,254,252,-256,255,252,-257,252,257,-257,257,258,-257,258,259,-257,260,256,-260,212,253,-255,214,253,-213,251,253,-262,262,261,-254,263,254,-256,221,224,-265,265,267,-267,268,266,-268,269,268,-268,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,277,-277,279,277,-279,280,282,-282,283,281,-283,284,283,-283,285,284,-283,286,284,-286,287,289,-289,290,288,-290,291,293,-293,294,292,-294,295,294,-294,296,295,-294,297,299,-299,300,298,-300,301,303,-303,304,302,-304,305,307,-307,308,306,-308,309,306,-309,310,312,-312,313,311,-313,314,316,-316,317,315,-317,318,317,-317,319,321,-321,322,320,-322,323,322,-322,324,326,-326,327,325,-327,328,327,-327,329,331,-331,332,330,-332,333,330,-333,334,336,-336,337,335,-337,338,337,-337,339,341,-341,342,340,-342,343,342,-342,341,344,-344,344,345,-344,346,343,-346,347,349,-349,350,348,-350,351,350,-350,352,351,-350,353,351,-353,354,356,-356,357,355,-357,358,357,-357,359,361,-361,362,360,-362,363,365,-365,366,364,-366,367,369,-369,370,368,-370,371,370,-370,372,374,-374,375,373,-375,376,375,-375,377,376,-375,378,376,-378,379,381,-381,382,380,-382,383,385,-385,386,384,-386,387,389,-389,390,388,-390,391,393,-393,394,392,-394,395,392,-395 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2376 { + a: -0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,-0.7683336,0.5990279,0.2254528,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0,0.4639118,0.8858814,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.572385,0.5871546,0.5723851,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,0.7010257,0.5871546,0.4047373,-0.7391797,0.587155,-0.3299429,-0.7391797,0.587155,-0.3299429,-0.7391797,0.587155,-0.3299429,-0.7391797,0.587155,-0.3299429,-0.7391797,0.587155,-0.3299429,-0.7391797,0.587155,-0.3299429,-0.7391797,0.587155,-0.3299429,-0.7391797,0.587155,-0.3299429,-0.7391797,0.587155,-0.3299429,0.7098935,0.5871549,-0.3889736,0.7098935,0.5871549,-0.3889736,0.7098935,0.5871549,-0.3889736,0.7098935,0.5871549,-0.3889736,0.7098935,0.5871549,-0.3889736,0.7098935,0.5871549,-0.3889736,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,-0.8500418,0.4639119,0.2494285,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4399084,0.475315,-0.7619423,0.4399084,0.475315,-0.7619423,0.4399084,0.475315,-0.7619423,0.4399084,0.475315,-0.7619423,0.4399084,0.475315,-0.7619423,0.4399084,0.475315,-0.7619423,0.8798158,0.4753149,0,0.8798158,0.4753149,0,0.8798158,0.4753149,0,0.8798158,0.4753149,0,0.8798158,0.4753149,0,0.8798158,0.4753149,0,0.8798158,0.4753149,0,0.8798158,0.4753149,0,0.8798158,0.4753149,0,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.7699362,0.5990281,0.2199174,0.1331324,0.5871547,-0.7984515,0.1331324,0.5871547,-0.7984515,0.1331324,0.5871547,-0.7984515,0.1331324,0.5871547,-0.7984515,0.1331324,0.5871547,-0.7984515,0.1331324,0.5871547,-0.7984515,0.1331324,0.5871547,-0.7984515,0.1331324,0.5871547,-0.7984515,0.1331324,0.5871547,-0.7984515,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,0,0.4753149,-0.8798158,-0.8858814,0.4639117,0,-0.8858814,0.4639117,0,-0.8858814,0.4639117,0,-0.8858814,0.4639117,0,-0.8858814,0.4639117,0,-0.8858814,0.4639117,0,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,-0.7573863,0.5871549,-0.2856838,0.466818,0.599028,-0.650574,0.466818,0.599028,-0.650574,0.466818,0.599028,-0.650574,0.466818,0.599028,-0.650574,0.466818,0.599028,-0.650574,0.466818,0.599028,-0.650574,0.466818,0.599028,-0.650574,0.466818,0.599028,-0.650574,0.466818,0.599028,-0.650574,-0.6264126,0.463912,-0.6264127,-0.6264126,0.463912,-0.6264127,-0.6264126,0.463912,-0.6264127,-0.6264126,0.463912,-0.6264127,-0.6264126,0.463912,-0.6264127,-0.6264126,0.463912,-0.6264127,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0.851815,0.4639118,0.2433041,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,-0.6223961,0.5871551,0.5175636,-0.6223961,0.5871551,0.5175636,-0.6223961,0.5871551,0.5175636,-0.6223961,0.5871551,0.5175636,-0.6223961,0.5871551,0.5175636,-0.6223961,0.5871551,0.5175636,0.5164615,0.463912,-0.7197591,0.5164615,0.463912,-0.7197591,0.5164615,0.463912,-0.7197591,0.5164615,0.463912,-0.7197591,0.5164615,0.463912,-0.7197591,0.5164615,0.463912,-0.7197591,0.5164615,0.463912,-0.7197591,0.5164615,0.463912,-0.7197591,0.5164615,0.463912,-0.7197591,-0.8099204,0.4639119,0.3589075,-0.8099204,0.4639119,0.3589075,-0.8099204,0.4639119,0.3589075,-0.8099204,0.4639119,0.3589075,-0.8099204,0.4639119,0.3589075,-0.8099204,0.4639119,0.3589075,-0.8099204,0.4639119,0.3589075,-0.8099204,0.4639119,0.3589075,-0.8099204,0.4639119,0.3589075,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,0.2714009,0.587155,-0.7626209,-0.4399077,0.4753152,0.7619427,-0.4399077,0.4753152,0.7619427,-0.4399077,0.4753152,0.7619427,-0.4399077,0.4753152,0.7619427,-0.4399077,0.4753152,0.7619427,-0.4399077,0.4753152,0.7619427,-0.4399077,0.4753152,0.7619427,-0.4399077,0.4753152,0.7619427,-0.4399077,0.4753152,0.7619427,-0.761943,0.4753149,-0.4399076,-0.761943,0.4753149,-0.4399076,-0.761943,0.4753149,-0.4399076,-0.761943,0.4753149,-0.4399076,-0.761943,0.4753149,-0.4399076,-0.761943,0.4753149,-0.4399076,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.8672827,0.4639119,0.1805728,0.7017342,0.475315,-0.5307021,0.7017342,0.475315,-0.5307021,0.7017342,0.475315,-0.5307021,0.7017342,0.475315,-0.5307021,0.7017342,0.475315,-0.5307021,0.7017342,0.475315,-0.5307021,0.7017342,0.475315,-0.5307021,0.7017342,0.475315,-0.5307021,0.7017342,0.475315,-0.5307021,0.8040932,0.5871548,-0.09318499,0.8040932,0.5871548,-0.09318499,0.8040932,0.5871548,-0.09318499,0.8040932,0.5871548,-0.09318499,0.8040932,0.5871548,-0.09318499,0.8040932,0.5871548,-0.09318499,0.8040932,0.5871548,-0.09318499,0.8040932,0.5871548,-0.09318499,0.8040932,0.5871548,-0.09318499,0.6264127,0.4639119,0.6264127,0.6264127,0.4639119,0.6264127,0.6264127,0.4639119,0.6264127,0.6264127,0.4639119,0.6264127,0.6264127,0.4639119,0.6264127,0.6264127,0.4639119,0.6264127,-0.6576384,0.5871549,-0.4719754,-0.6576384,0.5871549,-0.4719754,-0.6576384,0.5871549,-0.4719754,-0.6576384,0.5871549,-0.4719754,-0.6576384,0.5871549,-0.4719754,-0.6576384,0.5871549,-0.4719754,-0.6576384,0.5871549,-0.4719754,-0.6576384,0.5871549,-0.4719754,-0.6576384,0.5871549,-0.4719754,-0.8798156,0.4753151,0,-0.8798156,0.4753151,0,-0.8798156,0.4753151,0,-0.8798156,0.4753151,0,-0.8798156,0.4753151,0,-0.8798156,0.4753151,0,-0.7908596,0.4753149,-0.3855085,-0.7908596,0.4753149,-0.3855085,-0.7908596,0.4753149,-0.3855085,-0.7908596,0.4753149,-0.3855085,-0.7908596,0.4753149,-0.3855085,-0.7908596,0.4753149,-0.3855085,-0.7908596,0.4753149,-0.3855085,-0.7908596,0.4753149,-0.3855085,-0.7908596,0.4753149,-0.3855085,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.2441847,0.4753152,0.8452511,-0.5724283,0.4639117,-0.6761003,-0.5724283,0.4639117,-0.6761003,-0.5724283,0.4639117,-0.6761003,-0.5724283,0.4639117,-0.6761003,-0.5724283,0.4639117,-0.6761003,-0.5724283,0.4639117,-0.6761003,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,-0.4246979,0.4639118,0.7774429,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2608658,0.587155,0.7662885,-0.2608658,0.587155,0.7662885,-0.2608658,0.587155,0.7662885,-0.2608658,0.587155,0.7662885,-0.2608658,0.587155,0.7662885,-0.2608658,0.587155,0.7662885,-0.2608658,0.587155,0.7662885,-0.2608658,0.587155,0.7662885,-0.2608658,0.587155,0.7662885,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,-0.6099165,0.475315,-0.6340957,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7743663,0.4639119,-0.430282,0.7743663,0.4639119,-0.430282,0.7743663,0.4639119,-0.430282,0.7743663,0.4639119,-0.430282,0.7743663,0.4639119,-0.430282,0.7743663,0.4639119,-0.430282,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.3189146,0.463912,-0.826486,0.1226636,0.463912,0.8773479,0.1226636,0.463912,0.8773479,0.1226636,0.463912,0.8773479,0.1226636,0.463912,0.8773479,0.1226636,0.463912,0.8773479,0.1226636,0.463912,0.8773479,-0.5662004,0.5990279,-0.5662003,-0.5662004,0.5990279,-0.5662003,-0.5662004,0.5990279,-0.5662003,-0.5662004,0.5990279,-0.5662003,-0.5662004,0.5990279,-0.5662003,-0.5662004,0.5990279,-0.5662003,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.662432,0.5871549,0.4652236,0.662432,0.5871549,0.4652236,0.662432,0.5871549,0.4652236,0.662432,0.5871549,0.4652236,0.662432,0.5871549,0.4652236,0.662432,0.5871549,0.4652236,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8798156,0.4753152,0,-0.8798156,0.4753152,0,-0.8798156,0.4753152,0,-0.8798156,0.4753152,0,-0.8798156,0.4753152,0,-0.8798156,0.4753152,0,-0.8798156,0.4753152,0,-0.8798156,0.4753152,0,-0.8798156,0.4753152,0,0.585031,0.587155,-0.559453,0.585031,0.587155,-0.559453,0.585031,0.587155,-0.559453,0.585031,0.587155,-0.559453,0.585031,0.587155,-0.559453,0.585031,0.587155,-0.559453,0.585031,0.587155,-0.559453,0.585031,0.587155,-0.559453,0.585031,0.587155,-0.559453,0.8798156,0.4753151,0,0.8798156,0.4753151,0,0.8798156,0.4753151,0,0.8798156,0.4753151,0,0.8798156,0.4753151,0,0.8798156,0.4753151,0,0.8798156,0.4753151,0,0.8798156,0.4753151,0,0.8798156,0.4753151,0,0,0.5990282,0.800728,0,0.5990282,0.800728,0,0.5990282,0.800728,0,0.5990282,0.800728,0,0.5990282,0.800728,0,0.5990282,0.800728,0,0.5990282,0.800728,0,0.5990282,0.800728,0,0.5990282,0.800728,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,-0.1437529,0.4639119,-0.8741401,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,0.1087346,0.475315,0.8730707,0.1087346,0.475315,0.8730707,0.1087346,0.475315,0.8730707,0.1087346,0.475315,0.8730707,0.1087346,0.475315,0.8730707,0.1087346,0.475315,0.8730707,-0.7908596,0.4753151,-0.3855085,-0.7908596,0.4753151,-0.3855085,-0.7908596,0.4753151,-0.3855085,-0.7908596,0.4753151,-0.3855085,-0.7908596,0.4753151,-0.3855085,-0.7908596,0.4753151,-0.3855085,-0.4672335,0.5871547,0.6610161,-0.4672335,0.5871547,0.6610161,-0.4672335,0.5871547,0.6610161,-0.4672335,0.5871547,0.6610161,-0.4672335,0.5871547,0.6610161,-0.4672335,0.5871547,0.6610161,-0.4672335,0.5871547,0.6610161,-0.4672335,0.5871547,0.6610161,-0.4672335,0.5871547,0.6610161,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7292899,0.475315,-0.4921503,0.7619427,0.4753149,0.4399081,0.7619427,0.4753149,0.4399081,0.7619427,0.4753149,0.4399081,0.7619427,0.4753149,0.4399081,0.7619427,0.4753149,0.4399081,0.7619427,0.4753149,0.4399081,0.06477197,0.5871548,-0.806879,0.06477197,0.5871548,-0.806879,0.06477197,0.5871548,-0.806879,0.06477197,0.5871548,-0.806879,0.06477197,0.5871548,-0.806879,0.06477197,0.5871548,-0.806879,0.7017342,0.475315,-0.530702,0.7017342,0.475315,-0.530702,0.7017342,0.475315,-0.530702,0.7017342,0.475315,-0.530702,0.7017342,0.475315,-0.530702,0.7017342,0.475315,-0.530702,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *792 { + a: -8.626814,-3.148477,-7.523763,-0.04432337,-8.412483,-3.148477,-6.132241,-1.574194,-6.527984,-0.04432324,-5.740383,-1.800359,3.178421,7.140381,3.395529,8.183141,4.831746,6.502415,4.895005,8.392785,5.486897,7.057106,-6.160512,0.5714495,-7.072284,0.5714495,-7.369751,4.026837,-8.122712,1.67613,-9.647208,1.67613,-8.830702,4.026836,-6.521388,-0.2707981,-6.580246,-0.2707979,-7.589281,2.155097,-7.164915,0.536926,-9.648959,0.7406405,-9.043973,2.155097,-10.33768,-0.2707979,-10.60535,-0.270798,8.203235,0.7610878,8.054359,0.9374881,7.289034,2.837847,5.018557,0.7298247,5.834342,2.837846,4.272967,0.4119514,4.417265,0.4119515,0.391887,2.519539,1.493009,4.945435,3.49648,2.519539,3.347053,4.945435,4.312459,3.44549,-0.2586898,3.599613,-2.270888,3.599613,-0.8010491,6.025508,-1.202996,6.025508,-5.462969,5.525894,-5.231962,5.854825,-5.263166,3.801801,-4.610589,3.692991,-3.854878,5.386029,-7.015825,-4.304301,-6.064919,-0.8489138,-4.700603,-4.304301,-5.206488,-0.8489139,-4.518993,-3.402823,-4.389981,-3.199621,2.920042,-6.996339,3.402408,-5.307568,3.923894,-7.71665,5.097109,-5.307568,5.377481,-6.263062,-2.479775,7.655109,-2.245917,8.060164,-1.4146,6.076687,0.0830581,8.350221,-1.113511,5.902853,0.5962663,7.547434,0.8155811,7.927298,-2.766013,1.43847,-4.616221,1.43847,-3.91576,4.655097,-4.263427,4.655097,4.822397,-3.506215,2.449376,-3.506214,4.309359,-0.2895874,3.463513,-0.2895873,2.174388,-3.001735,6.89688,2.51892,6.149697,2.571181,5.925315,4.823244,4.169006,4.823245,5.446401,1.719091,2.766288,1.71909,-4.054058,0.8572652,-5.064602,0.8572652,-5.155182,3.28316,-6.652971,1.390601,-5.816768,3.283161,-7.852963,0.5412197,-6.819915,1.574268,-7.117568,-0.7822501,-6.066561,-0.6094115,-6.066561,1.162729,-3.454112,-3.66477,-5.192655,-3.66477,-3.316475,-3.343547,-4.432019,-0.4481425,-3.15234,-3.18125,-3.964302,-0.4481425,-1.970324,2.070701,-0.6094115,5.526087,2.113635,2.070701,1.162729,5.526087,-8.302303,-2.566013,-7.230455,-0.1401174,-7.217997,-2.566013,-6.597555,-1.774825,-6.568868,-0.1401173,-5.850333,-1.723129,9.265479,-3.499213,6.088974,-3.499213,7.686821,-0.3950592,5.479714,-2.699383,6.451278,-0.3950597,4.779108,-4.919836,0.6951491,-4.919836,3.828202,-1.464448,2.056062,-1.464448,2.879415,4.327939,2.47579,4.123514,2.215777,6.360367,0.7017164,6.360367,1.797396,2.90498,-0.5075234,2.90498,5.203897,1.086668,5.409072,4.136173,7.136827,1.424026,5.847703,4.136173,-1.984965,-3.750124,-0.1309215,-3.750125,-3.086088,-6.176021,1.430452,-6.17602,10.57735,-0.4801346,9.865293,-0.4801345,9.216437,2.975253,7.487676,0.942824,8.151316,2.975253,3.349821,-3.473005,4.229016,-0.9418206,4.15181,-4.397208,5.689966,-0.9418207,6.899205,-4.397208,4.333984,2.789023,3.88434,2.789023,4.469532,3.320119,4.426701,5.214919,6.332996,3.950904,6.710926,3.973296,6.162333,5.214919,4.616218,-4.183698,2.844468,-4.183698,4.103179,-0.96707,2.203309,-3.184601,3.257334,-0.96707,6.646407,1.243989,6.834404,4.038172,8.32706,1.820641,7.273034,4.038172,-6.278034,0.02623655,-6.916296,0.4442522,-7.638342,3.480088,-8.598298,1.016956,-8.703464,3.480087,-9.831736,0.02470036,-9.249994,0.02470022,6.290821,3.440283,5.248459,2.327987,5.79321,5.544614,2.933204,2.327987,3.446243,5.544614,-3.546208,-3.115771,-4.044446,-3.649106,-4.38241,-1.223211,-6.660403,-3.649106,-6.118042,-1.223211,5.170184,-0.0418496,6.379422,-3.497237,3.709233,-0.04184939,2.50902,-3.497237,7.090875,-2.124847,7.63947,-0.8832245,7.887426,-3.30912,9.402181,-3.30912,8.301056,-0.8832243,0.6148218,-5.442985,0.9676182,-2.226357,2.46503,-5.442985,1.315284,-2.226357,2.774762,-4.764607,2.627324,-3.856914,5.570278,-4.764607,3.313271,-1.54798,5.217481,-1.54798,9.773987,-0.1726857,9.647208,0.03191727,9.08804,2.136249,8.122712,0.03191734,8.620323,2.136249,-6.650714,-1.567297,-7.028746,-1.546696,-6.79521,0.5803413,-9.167548,0.5803413,-10.31729,-2.636286,-7.950587,-2.636286,7.141422,0.8482357,7.889218,3.565564,9.626844,1.03438,8.747649,3.565564,7.940035,0.1321942,7.40954,0.1321943,6.739822,3.587581,6.866225,0.6195301,5.88139,3.587581,4.930485,0.1321942,5.263144,0.1321944,4.281655,7.591985,3.794524,6.870134,3.189674,9.483349,3.758724,2.106912,2.493287,4.941902,-0.403209,9.930817,2.484586,4.929009,0.8822592,4.003904,-1.332691,6.134394,-1.937589,9.044942,-4.326816,4.979057,-2.056168,9.61447,-5.870636,10.14778,-5.252111,3.172779,-5.675728,3.022022,-5.675728,0.6148218,-7.072283,-1.231807,-6.983721,7.635961,-7.172993,7.825233,-7.411955,-6.592274,-9.17759,3.121888,-10.06079,4.352515,-7.990487,-7.007398,-10.22641,-1.898046,-11.45132,2.46503,-11.45132,0.6148218,-10.87828,-4.119603,-6.160512,-1.231807,-5.527473,-3.448092,-7.472302,-6.797935,-4.12246,-10.14778,-1.99969,-3.448092,-1.541619,-8.2959,-1.263606,-6.025142,-1.15894,-9.310434,1.528875,-4.051301,1.601023,-4.176267,2.180161,-9.042389,1.601023,-2.972189,3.454112,-7.710194,4.84938,-2.033771,5.192655,-7.710194,4.755507,2.273114,5.783854,7.547357,6.639167,3.302112,7.104726,3.556435,7.376614,-4.822398,7.376614,-2.449377,7.970765,-2.547085,9.841513,0.8196475,4.463566,-1.970324,4.463566,2.113635,6.94031,5.900678,-4.285197,4.937438,7.907535,-3.100626,5.806092,-3.100626,6.839642,-0.6747301,4.419543,-2.174675,5.38495,-0.6747307,-5.907983,-1.176211,-7.787764,-0.5958571,-7.20464,1.551781,-7.643268,1.551781,5.213049,1.66231,2.139778,1.66231,5.213492,1.663857,3.289525,4.878938,5.849858,2.084755,5.661862,4.878938,7.20464,1.127861,7.20464,1.973705,8.620323,-0.7440622,7.643269,1.973705,9.922407,1.315284,9.08804,-0.7440622,9.922407,0.9676182,-1.645028,-3.806188,-5.496597,-3.806187,-2.773298,-0.3508004,-4.287359,-0.3508005,2.244272,2.877586,-0.9650252,2.877585,2.914739,3.615644,-0.9655042,2.879122,0.394803,6.332973,2.166944,6.332973,-3.36763,-4.285224,-7.219198,-4.285224,-4.4959,-0.8298372,-6.00996,-0.8298373,-2.681884,-2.940386,-0.6262012,-2.940386,-4.260544,-6.044539,0.4768488,-6.044539,6.047497,4.685367,7.076119,5.713989,6.240644,4.332868,7.875815,3.750945,8.261561,4.288435,-1.382411,-2.900095,-0.840053,-5.325991,-1.784357,-2.900095,-2.852251,-5.325991,6.953919,-4.290641,7.36975,-2.834803,7.819308,-4.911598,8.830701,-2.834803,9.072401,-3.658506,-4.790322,1.05345,-4.469602,3.977619,-4.176267,0.7609907,-4.121935,3.977619,-2.972189,0.7609907,3.185139,-4.594573,3.169916,-4.245436,5.028422,-4.594573,4.084116,-2.168677,4.486063,-2.168676,-0.6148208,2.69776,-3.022021,2.69776,-1.127859,5.914388,-1.973704,5.914388,-3.27036,3.186395,-1.99969,2.065504,-5.527474,2.065504,-3.402408,5.169658,-5.88471,3.413623,-5.097109,5.169658,-4.724134,-0.5659271,-5.11513,-0.565927,-6.085046,2.88946,-5.461747,-0.399949,-7.395078,-0.06490119,-7.15017,2.88946,-8.27844,-0.565927,-7.676309,-0.5659273,-5.847703,-4.30936,-5.847703,-3.463514,-4.432019,-6.181283,-5.409072,-3.463514,-3.129936,-4.121935,-3.964302,-6.181283,-3.129936,-4.469602,4.094412,1.568432,0.7132215,1.568432,4.440479,1.735554,1.862967,4.785059,4.235304,4.785059,1.993194,-4.660393,-1.627447,-4.660393,1.23256,-1.443766,-1.114408,-1.443765,-8.105306,0.1632146,-7.293344,2.896322,-5.068413,-0.02784636,-5.389134,2.896322,-1.089957,2.460626,-4.509605,2.460626,-2.651331,4.886521,-5.22391,3.303509,-4.505375,4.886521,-5.47554,0.3316176,-5.491095,0.3316173,-5.828337,3.548245,-6.384089,1.183538,-7.817314,0.3316176,-7.732547,3.548245,-8.688155,0.3316174,-4.434022,-3.56677,-6.617982,-3.56677,-5.38963,-0.3501427,-5.857347,-0.350143,1.90022,-5.394687,-1.449623,-5.394687,0.8283706,-2.968792,-0.9072615,-2.968792,3.017398,-4.179153,-0.6032418,-4.179153,2.256764,-0.9625255,-0.09020348,-0.9625257,-1.803362,-7.37548,-1.076016,-6.115679,-1.525564,-7.665978,0.2045026,-7.804859,0.4379932,-7.185844 + } + UVIndex: *792 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,8,7,9,7,8,10,9,8,11,13,12,14,12,13,15,14,13,16,15,13,17,19,18,20,18,19,21,20,19,22,21,19,23,21,22,24,23,22,25,27,26,28,26,27,29,28,27,30,28,29,31,28,30,32,34,33,35,33,34,36,35,34,37,39,38,40,38,39,41,43,42,44,42,43,45,42,44,46,48,47,49,47,48,50,49,48,51,49,50,52,54,53,55,53,54,56,55,54,57,59,58,60,58,59,61,60,59,62,60,61,63,60,62,64,66,65,67,65,66,68,70,69,71,69,70,72,69,71,73,75,74,76,74,75,77,74,76,78,77,76,79,81,80,82,80,81,83,82,81,84,86,85,87,85,86,88,85,87,89,91,90,92,90,91,93,92,91,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,100,102,104,103,102,105,107,106,108,106,107,109,108,107,110,112,111,113,111,112,114,116,115,117,115,116,118,115,117,119,118,117,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,131,130,133,135,134,136,134,135,137,136,135,138,140,139,141,139,140,142,141,140,143,141,142,144,141,143,145,147,146,148,146,147,149,148,147,150,152,151,153,151,152,154,156,155,157,155,156,158,157,156,159,157,158,160,157,159,161,163,162,164,162,163,165,164,163,166,168,167,169,167,168,170,169,168,171,173,172,174,172,173,175,177,176,178,176,177,179,176,178,180,182,181,183,181,182,184,186,185,187,185,186,188,187,186,189,191,190,192,190,191,193,192,191,194,196,195,196,197,195,197,198,195,199,195,198,200,202,201,203,201,202,204,206,205,207,205,206,206,208,207,208,209,207,210,207,209,211,213,212,214,212,213,215,214,213,216,215,213,217,215,216,218,217,216,219,218,216,220,219,216,221,219,220,222,221,220,223,221,222,224,221,223,225,224,223,226,225,223,227,226,223,228,227,223,229,227,228,229,230,227,230,229,231,232,231,229,233,230,231,231,234,233,231,235,234,236,234,235,237,233,234,227,230,238,238,230,239,230,240,239,240,241,239,239,241,242,241,243,242,242,243,244,243,245,244,244,245,246,246,245,247,245,248,247,247,248,249,248,250,249,249,250,251,252,251,250,251,252,253,253,252,254,254,252,255,255,252,256,252,257,256,257,258,256,258,259,256,260,256,259,212,253,254,214,253,212,251,253,261,262,261,253,263,254,255,221,224,264,265,267,266,268,266,267,269,268,267,270,272,271,273,271,272,274,276,275,277,275,276,278,277,276,279,277,278,280,282,281,283,281,282,284,283,282,285,284,282,286,284,285,287,289,288,290,288,289,291,293,292,294,292,293,295,294,293,296,295,293,297,299,298,300,298,299,301,303,302,304,302,303,305,307,306,308,306,307,309,306,308,310,312,311,313,311,312,314,316,315,317,315,316,318,317,316,319,321,320,322,320,321,323,322,321,324,326,325,327,325,326,328,327,326,329,331,330,332,330,331,333,330,332,334,336,335,337,335,336,338,337,336,339,341,340,342,340,341,343,342,341,341,344,343,344,345,343,346,343,345,347,349,348,350,348,349,351,350,349,352,351,349,353,351,352,354,356,355,357,355,356,358,357,356,359,361,360,362,360,361,363,365,364,366,364,365,367,369,368,370,368,369,371,370,369,372,374,373,375,373,374,376,375,374,377,376,374,378,376,377,379,381,380,382,380,381,383,385,384,386,384,385,387,389,388,390,388,389,391,393,392,394,392,393,395,392,394 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *264 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh campfire_stones, Model::RootNode + C: "OO",5291256179165736056,0 + + ;Geometry::, Model::Mesh campfire_stones + C: "OO",5076385328963875072,5291256179165736056 + + ;Material::stone, Model::Mesh campfire_stones + C: "OO",3038,5291256179165736056 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/campfire_stones.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/campfire_stones.fbx.import new file mode 100644 index 0000000..2d97d38 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/campfire_stones.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://iy1a6cqxmr7n" +path="res://.godot/imported/campfire_stones.fbx-b3fe69c4174c1113b64a2a6a15a67c20.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/campfire_stones.fbx" +dest_files=["res://.godot/imported/campfire_stones.fbx-b3fe69c4174c1113b64a2a6a15a67c20.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/canoe.fbx b/assets/models/kenney_nature-kit/Models/FBX format/canoe.fbx new file mode 100644 index 0000000..f2af01c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/canoe.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 494 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "canoe.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "canoe.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5293287447590678371, "Model::canoe", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4887979269455758826, "Geometry::", "Mesh" { + Vertices: *1080 { + a: 0,0,4.715,-0.261798,0,3.982427,-0.4513759,1.825,4.856619,1.118828,1.825,-2.971216,0.4786274,0,-3.221058,0.6489204,0,-2.436397,-0.6489204,0,-2.436397,-1.118828,1.825,-2.971216,-0.7714455,0,-1.634119,-0.4786274,0,3.221058,-1.118828,1.825,2.971216,-0.8252198,1.825,3.92812,-0.8453166,0,-0.8200241,-1.457443,1.825,-1.00003,-0.87,0,0,-0.6489204,0,2.436397,-1.330078,1.825,1.992828,-1.118828,1.825,2.971216,-0.6489204,0,2.436397,-1.118828,1.825,2.971216,-0.4786274,0,3.221058,-0.8252198,1.825,-3.92812,-1.118828,1.825,-2.971216,-0.6489204,0,-2.436397,-1.118828,1.825,-2.971216,-1.330078,1.825,-1.992828,-0.7714455,0,-1.634119,-0.7714455,0,1.634119,-1.330078,1.825,1.992828,-0.6489204,0,2.436397,-0.4786274,0,-3.221058,-0.8252198,1.825,-3.92812,-0.6489204,0,-2.436397,-1.457443,1.825,-1.00003,-1.5,1.825,-1.443823E-14,-0.87,0,0,-0.7714455,0,1.634119,-1.457443,1.825,1.00003,-1.330078,1.825,1.992828,-0.7714455,0,-1.634119,-1.330078,1.825,-1.992828,-0.8453166,0,-0.8200241,0.4513759,1.825,-4.856619,0,0,-4.715,0.261798,0,-3.982427,0.9796215,0.876,2.887646E-14,0.9389455,0.876,0.955819,0.9389455,0.876,-0.955819,0.817212,0.876,-1.904727,0.817212,0.876,1.904727,0.615301,0.876,-2.839861,0.615301,0.876,2.839861,0.3346727,0.876,-3.754461,-0.615301,0.876,2.839861,-0.3346727,0.876,-3.754461,-0.615301,0.876,-2.839861,-0.817212,0.876,-1.904727,-0.817212,0.876,1.904727,-0.9389455,0.876,-0.955819,-0.9389455,0.876,0.955819,-0.9796215,0.876,-5.775292E-14,0.8252198,1.825,-3.92812,0.4786274,0,-3.221058,1.118828,1.825,-2.971216,-0.8453166,0,0.8200241,-1.5,1.825,-1.443823E-14,-1.457443,1.825,1.00003,5.775292E-14,1.825,-5.75,-0.4513759,1.825,-4.856619,-0.261798,0,-3.982427,-0.8453166,0,0.8200241,-1.457443,1.825,1.00003,-0.7714455,0,1.634119,0,0,4.715,-0.4513759,1.825,4.856619,5.775292E-14,1.825,5.75,0,0,-4.715,5.775292E-14,1.825,-5.75,-0.261798,0,-3.982427,-0.261798,0,3.982427,-0.8252198,1.825,3.92812,-0.4513759,1.825,4.856619,-0.4786274,0,3.221058,-0.8252198,1.825,3.92812,-0.261798,0,3.982427,-0.87,0,0,-1.5,1.825,-1.443823E-14,-0.8453166,0,0.8200241,1.330078,1.825,-1.992828,0.6489204,0,-2.436397,0.7714455,0,-1.634119,1.457443,1.825,-1.00003,0.8453166,0,-0.8200241,1.5,1.825,-1.443823E-14,0.4786274,0,3.221058,0.261798,0,3.982427,0.4513759,1.825,4.856619,1.330078,1.825,1.992828,0.7714455,0,1.634119,1.118828,1.825,2.971216,-0.4513759,1.825,-4.856619,-0.8252198,1.825,-3.92812,-0.4786274,0,-3.221058,1.118828,1.825,-2.971216,0.6489204,0,-2.436397,1.330078,1.825,-1.992828,-0.261798,0,-3.982427,-0.4513759,1.825,-4.856619,-0.4786274,0,-3.221058,0.8252198,1.825,3.92812,0.4786274,0,3.221058,0.4513759,1.825,4.856619,0.8252198,1.825,-3.92812,0.261798,0,-3.982427,0.4786274,0,-3.221058,1.457443,1.825,-1.00003,0.7714455,0,-1.634119,0.8453166,0,-0.8200241,0.8453166,0,0.8200241,0.7714455,0,1.634119,1.330078,1.825,1.992828,0.7714455,0,1.634119,0.6489204,0,2.436397,1.118828,1.825,2.971216,1.5,1.825,-1.443823E-14,0.8453166,0,-0.8200241,0.87,0,0,0.4513759,1.825,-4.856619,0.261798,0,-3.982427,0.8252198,1.825,-3.92812,1.330078,1.825,-1.992828,0.7714455,0,-1.634119,1.457443,1.825,-1.00003,0.6489204,0,2.436397,0.4786274,0,3.221058,0.8252198,1.825,3.92812,-1.330078,1.825,-1.992828,-1.457443,1.825,-1.00003,-0.8453166,0,-0.8200241,0.261798,0,3.982427,0,0,4.715,5.775292E-14,1.825,5.75,0.4513759,1.825,-4.856619,5.775292E-14,1.825,-5.75,0,0,-4.715,0.4513759,1.825,4.856619,0.261798,0,3.982427,5.775292E-14,1.825,5.75,1.118828,1.825,2.971216,0.6489204,0,2.436397,0.8252198,1.825,3.92812,0.87,0,0,0.8453166,0,0.8200241,1.457443,1.825,1.00003,1.457443,1.825,1.00003,0.8453166,0,0.8200241,1.330078,1.825,1.992828,1.5,1.825,-1.443823E-14,0.87,0,0,1.457443,1.825,1.00003,5.775292E-14,1.825,-4.585672,5.775292E-14,1.606,-4.585672,-0.3346727,1.825,-3.754461,-0.3346727,1.606,-3.754461,0.817212,0.876,-1.904727,0.817212,1.825,-1.904727,0.9389455,0.876,-0.955819,0.9389455,1.825,-0.955819,-0.615301,0.876,2.839861,0.615301,0.876,2.839861,-0.615301,1.606,2.839861,0.615301,1.606,2.839861,-0.817212,1.825,-1.904727,-0.817212,0.876,-1.904727,-0.9389455,1.825,-0.955819,-0.9389455,0.876,-0.955819,-0.817212,1.825,1.904727,-0.817212,0.876,1.904727,-0.615301,1.825,2.839861,-0.615301,0.876,2.839861,-0.615301,1.606,2.839861,0.9796215,1.387,2.887646E-14,-0.9796215,1.387,-5.775292E-14,0.9389455,1.387,0.955819,-0.9389455,1.387,0.955819,0.9389455,1.387,0.955819,-0.9389455,1.387,0.955819,0.9389455,1.606,0.955819,-0.9389455,1.606,0.955819,-0.615301,1.825,2.839861,-0.615301,1.606,2.839861,-0.3346727,1.825,3.754461,-0.3346727,1.606,3.754461,-0.3346727,1.825,-3.754461,-0.3346727,1.606,-3.754461,-0.615301,1.825,-2.839861,-0.3346727,0.876,-3.754461,-0.615301,0.876,-2.839861,-0.9796215,1.825,-5.775292E-14,-0.9796215,1.606,-5.775292E-14,-0.9389455,1.825,0.955819,-0.9389455,1.606,0.955819,0.9796215,1.606,2.887646E-14,0.9389455,1.606,0.955819,-0.9796215,1.606,-5.775292E-14,-0.9389455,1.606,0.955819,0.615301,0.876,-2.839861,0.615301,1.825,-2.839861,0.817212,0.876,-1.904727,0.817212,1.825,-1.904727,5.775292E-14,1.606,-4.585672,5.775292E-14,1.825,-4.585672,0.3346727,1.606,-3.754461,0.3346727,1.825,-3.754461,0.9389455,0.876,-0.955819,0.9389455,1.825,-0.955819,0.9796215,0.876,2.887646E-14,0.9796215,1.825,2.887646E-14,0.9796215,1.387,2.887646E-14,0.9796215,1.606,2.887646E-14,5.775292E-14,1.606,-4.585672,0.3346727,1.606,-3.754461,-0.3346727,1.606,-3.754461,0.817212,0.876,1.904727,0.817212,1.825,1.904727,0.615301,0.876,2.839861,0.615301,1.825,2.839861,0.615301,1.606,2.839861,0.615301,1.606,2.839861,0.615301,1.825,2.839861,0.3346727,1.606,3.754461,0.3346727,1.825,3.754461,0.87,0,0,0.8453166,0,-0.8200241,0.8453166,0,0.8200241,0.7714455,0,1.634119,0.7714455,0,-1.634119,0.6489204,0,2.436397,0.6489204,0,-2.436397,0.4786274,0,3.221058,0.4786274,0,-3.221058,0.261798,0,3.982427,0.261798,0,-3.982427,0,0,4.715,0,0,-4.715,-0.261798,0,3.982427,-0.261798,0,-3.982427,-0.4786274,0,3.221058,-0.4786274,0,-3.221058,-0.6489204,0,2.436397,-0.6489204,0,-2.436397,-0.7714455,0,1.634119,-0.7714455,0,-1.634119,-0.8453166,0,0.8200241,-0.8453166,0,-0.8200241,-0.87,0,0,0.615301,1.606,2.839861,0.3346727,1.606,3.754461,-0.615301,1.606,2.839861,5.775292E-14,1.606,4.585672,-0.3346727,1.606,3.754461,0.9389455,0.876,0.955819,0.9389455,1.387,0.955819,0.817212,0.876,1.904727,0.9389455,1.606,0.955819,0.9389455,1.825,0.955819,0.817212,1.825,1.904727,0.3346727,0.876,-3.754461,-0.3346727,0.876,-3.754461,0.3346727,1.606,-3.754461,-0.3346727,1.606,-3.754461,-0.9389455,1.825,-0.955819,-0.9389455,0.876,-0.955819,-0.9796215,1.825,-5.775292E-14,-0.9796215,0.876,-5.775292E-14,-0.9796215,1.606,-5.775292E-14,-0.9796215,1.387,-5.775292E-14,0.3346727,1.606,3.754461,0.3346727,1.825,3.754461,5.775292E-14,1.606,4.585672,5.775292E-14,1.825,4.585672,0.3346727,0.876,-3.754461,0.3346727,1.606,-3.754461,0.615301,0.876,-2.839861,0.3346727,1.825,-3.754461,0.615301,1.825,-2.839861,-0.9796215,1.387,-5.775292E-14,-0.9796215,0.876,-5.775292E-14,-0.9389455,1.387,0.955819,-0.9389455,0.876,0.955819,-0.9796215,1.387,-5.775292E-14,0.9796215,1.387,2.887646E-14,-0.9796215,1.606,-5.775292E-14,0.9796215,1.606,2.887646E-14,-0.3346727,1.825,3.754461,-0.3346727,1.606,3.754461,5.775292E-14,1.825,4.585672,5.775292E-14,1.606,4.585672,1.5,1.825,-1.443823E-14,1.457443,1.825,1.00003,1.457443,1.825,-1.00003,1.330078,1.825,-1.992828,1.330078,1.825,1.992828,1.118828,1.825,-2.971216,1.118828,1.825,2.971216,0.8252198,1.825,-3.92812,0.9796215,1.825,2.887646E-14,0.9389455,1.825,-0.955819,0.817212,1.825,-1.904727,0.4513759,1.825,-4.856619,0.615301,1.825,-2.839861,0.3346727,1.825,-3.754461,5.775292E-14,1.825,-5.75,5.775292E-14,1.825,-4.585672,-0.4513759,1.825,-4.856619,-0.3346727,1.825,-3.754461,-0.615301,1.825,-2.839861,-0.8252198,1.825,-3.92812,-0.817212,1.825,-1.904727,-0.9389455,1.825,-0.955819,-1.118828,1.825,-2.971216,-0.9796215,1.825,-5.775292E-14,-1.118828,1.825,2.971216,-0.9389455,1.825,0.955819,-0.8252198,1.825,3.92812,-0.817212,1.825,1.904727,-0.615301,1.825,2.839861,-0.4513759,1.825,4.856619,-0.3346727,1.825,3.754461,5.775292E-14,1.825,5.75,5.775292E-14,1.825,4.585672,0.3346727,1.825,3.754461,0.4513759,1.825,4.856619,0.615301,1.825,2.839861,0.817212,1.825,1.904727,0.8252198,1.825,3.92812,0.9389455,1.825,0.955819,-1.330078,1.825,-1.992828,-1.330078,1.825,1.992828,-1.457443,1.825,-1.00003,-1.457443,1.825,1.00003,-1.5,1.825,-1.443823E-14,0.9796215,1.606,2.887646E-14,0.9796215,1.825,2.887646E-14,0.9389455,1.606,0.955819,0.9389455,1.825,0.955819,-0.615301,1.825,-2.839861,-0.615301,0.876,-2.839861,-0.817212,1.825,-1.904727,-0.817212,0.876,-1.904727,-0.9389455,1.825,0.955819,-0.9389455,1.606,0.955819,-0.817212,1.825,1.904727,-0.9389455,1.387,0.955819,-0.9389455,0.876,0.955819,-0.817212,0.876,1.904727,0.9796215,0.876,2.887646E-14,0.9796215,1.387,2.887646E-14,0.9389455,0.876,0.955819,0.9389455,1.387,0.955819 + } + PolygonVertexIndex: *600 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,46,-48,49,46,-49,50,49,-49,51,49,-51,52,51,-51,53,51,-53,54,53,-53,55,53,-55,56,53,-56,57,53,-57,58,57,-57,59,57,-59,60,59,-59,61,63,-63,64,66,-66,67,69,-69,70,72,-72,73,75,-75,76,78,-78,79,81,-81,82,84,-84,85,87,-87,88,90,-90,91,93,-93,94,96,-96,97,99,-99,100,102,-102,103,105,-105,106,108,-108,109,111,-111,112,114,-114,115,117,-117,118,120,-120,121,123,-123,124,126,-126,127,129,-129,130,132,-132,133,135,-135,136,138,-138,139,141,-141,142,144,-144,145,147,-147,148,150,-150,151,153,-153,154,156,-156,157,159,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,179,-179,181,183,-183,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,195,-195,196,194,-196,197,196,-196,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,217,-217,219,217,-219,220,222,-222,223,225,-225,226,224,-226,227,226,-226,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,233,-236,237,236,-236,238,236,-238,239,238,-238,240,238,-240,241,240,-240,242,240,-242,243,242,-242,244,242,-244,245,244,-244,246,244,-246,247,246,-246,248,246,-248,249,248,-248,250,248,-250,251,250,-250,252,250,-252,253,252,-252,254,252,-254,255,254,-254,256,258,-258,259,257,-259,260,259,-259,261,263,-263,264,262,-264,265,264,-264,266,265,-264,267,269,-269,270,268,-270,271,273,-273,274,272,-274,275,274,-274,276,274,-276,277,279,-279,280,278,-280,281,283,-283,284,282,-284,285,284,-284,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,299,-302,303,302,-302,304,302,-304,305,304,-304,306,304,-306,307,306,-306,308,307,-306,309,308,-306,310,308,-310,311,310,-310,312,311,-310,313,311,-313,314,313,-313,315,313,-315,316,315,-315,317,316,-315,318,316,-318,319,318,-318,320,319,-318,321,319,-321,320,322,-322,321,322,-324,322,324,-324,323,324,-326,325,324,-327,324,327,-327,326,327,-329,327,329,-329,328,329,-331,330,329,-332,329,332,-332,331,332,-334,333,332,-335,332,335,-335,334,335,-337,336,335,-307,304,306,-336,337,322,-321,338,322,-338,339,338,-338,340,338,-340,341,340,-340,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,354,353,-353,355,354,-353,356,358,-358,359,357,-359 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1800 { + a: 0.02829649,-0.5391137,0.8417575,-0.8830209,-0.2552078,0.3938822,-0.9153433,-0.2656863,0.3025846,0.9265988,-0.2924966,-0.2363482,0.9352263,-0.3060244,-0.1780471,0.9270901,-0.2880874,-0.2398116,-0.9421042,-0.2824839,-0.1806726,-0.9453191,-0.3030634,-0.1205174,-0.9187872,-0.3146884,-0.2383302,-0.9270901,-0.2880874,0.2398116,-0.9083599,-0.2745026,0.3154848,-0.9265988,-0.2924966,0.2363482,-0.9464326,-0.3170854,-0.06100908,-0.9459528,-0.3242995,-0.001810756,-0.9420085,-0.3257797,-0.08054528,-0.9352263,-0.3060244,0.1780471,-0.9265988,-0.2924966,0.2363482,-0.9385079,-0.3075,0.1569926,-0.9352263,-0.3060244,0.1780471,-0.9270901,-0.2880874,0.2398116,-0.9265988,-0.2924966,0.2363482,-0.8984746,-0.304032,-0.3167143,-0.9421042,-0.2824839,-0.1806726,-0.9187872,-0.3146884,-0.2383302,-0.9187872,-0.3146884,-0.2383302,-0.9453191,-0.3030634,-0.1205174,-0.9331049,-0.3222881,-0.1595174,-0.9406469,-0.318459,0.1173344,-0.9352263,-0.3060244,0.1780471,-0.9385079,-0.3075,0.1569926,-0.9360062,-0.2559042,-0.2416724,-0.9421042,-0.2824839,-0.1806726,-0.8984746,-0.304032,-0.3167143,-0.9420085,-0.3257797,-0.08054528,-0.9459528,-0.3242995,-0.001810756,-0.9458672,-0.3245503,-0.001485937,-0.9406469,-0.318459,0.1173344,-0.9385079,-0.3075,0.1569926,-0.9447703,-0.3183929,0.07768645,-0.9453191,-0.3030634,-0.1205174,-0.9464326,-0.3170854,-0.06100908,-0.9331049,-0.3222881,-0.1595174,0.8830209,-0.2552078,-0.3938822,0.9153433,-0.2656863,-0.3025846,-0.02829649,-0.5391137,-0.8417575,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9083599,-0.2745026,-0.3154848,0.9265988,-0.2924966,-0.2363482,0.9270901,-0.2880874,-0.2398116,-0.9440707,-0.324692,0.05749554,-0.9447703,-0.3183929,0.07768645,-0.9458672,-0.3245503,-0.001485937,-0.008172029,-0.5223269,-0.8527061,-0.9260378,-0.2243038,-0.3035487,-0.8714907,-0.2918407,-0.3941231,-0.9440707,-0.324692,0.05749554,-0.9406469,-0.318459,0.1173344,-0.9447703,-0.3183929,0.07768645,0.02829649,-0.5391137,0.8417575,0.008172029,-0.5223269,0.8527061,-0.8830209,-0.2552078,0.3938822,-0.02829649,-0.5391137,-0.8417575,-0.9260378,-0.2243038,-0.3035487,-0.008172029,-0.5223269,-0.8527061,-0.9153433,-0.2656863,0.3025846,-0.8830209,-0.2552078,0.3938822,-0.9083599,-0.2745026,0.3154848,-0.9270901,-0.2880874,0.2398116,-0.9153433,-0.2656863,0.3025846,-0.9083599,-0.2745026,0.3154848,-0.9459528,-0.3242995,-0.001810756,-0.9440707,-0.324692,0.05749554,-0.9458672,-0.3245503,-0.001485937,0.9385079,-0.3075,-0.1569926,0.9406469,-0.318459,-0.1173344,0.9352263,-0.3060244,-0.1780471,0.9447703,-0.3183929,-0.07768645,0.9458672,-0.3245503,0.001485937,0.9440707,-0.324692,-0.05749554,0.9360062,-0.2559042,0.2416724,0.8714907,-0.2918407,0.3941231,0.9260378,-0.2243038,0.3035487,0.9331049,-0.3222881,0.1595174,0.9187872,-0.3146884,0.2383302,0.9453191,-0.3030634,0.1205174,-0.8714907,-0.2918407,-0.3941231,-0.9360062,-0.2559042,-0.2416724,-0.8984746,-0.304032,-0.3167143,0.9265988,-0.2924966,-0.2363482,0.9385079,-0.3075,-0.1569926,0.9352263,-0.3060244,-0.1780471,-0.9260378,-0.2243038,-0.3035487,-0.9360062,-0.2559042,-0.2416724,-0.8714907,-0.2918407,-0.3941231,0.8984746,-0.304032,0.3167143,0.8714907,-0.2918407,0.3941231,0.9360062,-0.2559042,0.2416724,0.9083599,-0.2745026,-0.3154848,0.9270901,-0.2880874,-0.2398116,0.9153433,-0.2656863,-0.3025846,0.9447703,-0.3183929,-0.07768645,0.9440707,-0.324692,-0.05749554,0.9406469,-0.318459,-0.1173344,0.9464326,-0.3170854,0.06100908,0.9331049,-0.3222881,0.1595174,0.9453191,-0.3030634,0.1205174,0.9453191,-0.3030634,0.1205174,0.9187872,-0.3146884,0.2383302,0.9421042,-0.2824839,0.1806726,0.9458672,-0.3245503,0.001485937,0.9459528,-0.3242995,0.001810756,0.9440707,-0.324692,-0.05749554,0.8830209,-0.2552078,-0.3938822,0.9083599,-0.2745026,-0.3154848,0.9153433,-0.2656863,-0.3025846,0.9385079,-0.3075,-0.1569926,0.9447703,-0.3183929,-0.07768645,0.9406469,-0.318459,-0.1173344,0.9421042,-0.2824839,0.1806726,0.8984746,-0.304032,0.3167143,0.9360062,-0.2559042,0.2416724,-0.9331049,-0.3222881,-0.1595174,-0.9464326,-0.3170854,-0.06100908,-0.9420085,-0.3257797,-0.08054528,0.9260378,-0.2243038,0.3035487,0.008172029,-0.5223269,0.8527061,0.02829649,-0.5391137,0.8417575,0.8830209,-0.2552078,-0.3938822,-0.02829649,-0.5391137,-0.8417575,-0.008172029,-0.5223269,-0.8527061,0.8714907,-0.2918407,0.3941231,0.008172029,-0.5223269,0.8527061,0.9260378,-0.2243038,0.3035487,0.9187872,-0.3146884,0.2383302,0.8984746,-0.304032,0.3167143,0.9421042,-0.2824839,0.1806726,0.9459528,-0.3242995,0.001810756,0.9420085,-0.3257797,0.08054528,0.9464326,-0.3170854,0.06100908,0.9420085,-0.3257797,0.08054528,0.9331049,-0.3222881,0.1595174,0.9464326,-0.3170854,0.06100908,0.9458672,-0.3245503,0.001485937,0.9420085,-0.3257797,0.08054528,0.9459528,-0.3242995,0.001810756,0.9276322,0,0.3734951,0.9426734,0,0.3337164,0.9276322,0,0.3734951,0.9473121,0,0.3203119,0.9276322,0,0.3734951,0.9426734,0,0.3337164,-0.9855642,0,0.1693022,-0.9963845,0,0.08495829,-0.9855642,0,0.1693022,-0.9963845,0,0.08495829,-0.9855642,0,0.1693022,-0.9963845,0,0.08495829,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9855642,0,0.1693022,0.9963845,0,0.08495829,0.9855642,0,0.1693022,0.9963845,0,0.08495829,0.9855642,0,0.1693022,0.9963845,0,0.08495829,0.9855642,0,-0.1693022,0.9676173,0,-0.2524219,0.9855642,0,-0.1693022,0.9774746,0,-0.211053,0.9855642,0,-0.1693022,0.9676173,0,-0.2524219,0.9711003,0,-0.2386719,0.9774746,0,-0.211053,0.9676173,0,-0.2524219,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9676173,0,-0.2524219,0.9426734,0,-0.3337164,0.9711003,0,-0.2386719,0.9426734,0,-0.3337164,0.9711003,0,-0.2386719,0.9426734,0,-0.3337164,0.9426734,0,0.3337164,0.9676173,0,0.2524219,0.9473121,0,0.3203119,0.95601,0,0.2933342,0.9473121,0,0.3203119,0.9676173,0,0.2524219,0.9676173,0,0.2524219,0.95601,0,0.2933342,0.9676173,0,0.2524219,1,0,0,0.9963845,0,-0.08495829,0.9998994,0,0.01418398,0.9950793,0,-0.09908234,0.9998994,0,0.01418398,0.9963845,0,-0.08495829,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9676173,0,0.2524219,-0.9855642,0,0.1693022,-0.9676173,0,0.2524219,-0.9855642,0,0.1693022,-0.9676173,0,0.2524219,-0.9855642,0,0.1693022,-0.9276322,0,0.3734951,-0.9473121,0,0.3203119,-0.9276322,0,0.3734951,-0.9426734,0,0.3337164,-0.9276322,0,0.3734951,-0.9473121,0,0.3203119,-0.9963845,0,0.08495829,-1,0,0,-0.9963845,0,0.08495829,-1,0,0,-0.9963845,0,0.08495829,-1,0,0,-0.9998994,0,0.01418398,-1,0,0,-1,0,0,-0.9998994,0,0.01418398,-1,0,0,-0.9998994,0,0.01418398,0,1,0,0,1,0,0,1,0,-0.9855642,0,-0.1693022,-0.9774746,0,-0.211053,-0.9855642,0,-0.1693022,-0.9676173,0,-0.2524219,-0.9855642,0,-0.1693022,-0.9774746,0,-0.211053,-0.9711003,0,-0.2386719,-0.9676173,0,-0.2524219,-0.9774746,0,-0.211053,-0.9711003,0,-0.2386719,-0.9426734,0,-0.3337164,-0.9676173,0,-0.2524219,-0.9426734,0,-0.3337164,-0.9676173,0,-0.2524219,-0.9426734,0,-0.3337164,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9963845,0,-0.08495829,-0.9855642,0,-0.1693022,-0.9950793,0,-0.09908234,-0.9950793,0,-0.09908234,-0.9950793,0,-0.09908234,-0.9855642,0,-0.1693022,-0.9963845,0,-0.08495829,-0.9950793,0,-0.09908234,-0.9855642,0,-0.1693022,-0.9855642,0,-0.1693022,-0.9963845,0,-0.08495829,-0.9855642,0,-0.1693022,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9963845,0,0.08495829,1,0,0,0.9963845,0,0.08495829,1,0,0,0.9963845,0,0.08495829,1,0,0,0.9998994,0,0.01418398,1,0,0,1,0,0,0.9998994,0,0.01418398,1,0,0,0.9998994,0,0.01418398,-0.9426734,0,-0.3337164,-0.9276322,0,-0.3734951,-0.9426734,0,-0.3337164,-0.9276322,0,-0.3734951,-0.9426734,0,-0.3337164,-0.9276322,0,-0.3734951,-0.95601,0,0.2933342,-0.9676173,0,0.2524219,-0.9473121,0,0.3203119,-0.9426734,0,0.3337164,-0.9473121,0,0.3203119,-0.9676173,0,0.2524219,-0.9676173,0,0.2524219,-0.9426734,0,0.3337164,-0.9676173,0,0.2524219,0.9998994,0,0.01418398,0.9950793,0,-0.09908234,1,0,0,0.9963845,0,-0.08495829,1,0,0,0.9950793,0,-0.09908234,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9426734,0,-0.3337164,0.9276322,0,-0.3734951,0.9426734,0,-0.3337164,0.9276322,0,-0.3734951,0.9426734,0,-0.3337164,0.9276322,0,-0.3734951,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9998994,0,0.01418398,-0.9950793,0,-0.09908234,-1,0,0,-0.9963845,0,-0.08495829,-1,0,0,-0.9950793,0,-0.09908234,0.9676173,0,0.2524219,0.9855642,0,0.1693022,0.9676173,0,0.2524219,0.9855642,0,0.1693022,0.9676173,0,0.2524219,0.9855642,0,0.1693022,0.9963845,0,-0.08495829,0.9855642,0,-0.1693022,0.9950793,0,-0.09908234,0.9950793,0,-0.09908234,0.9950793,0,-0.09908234,0.9855642,0,-0.1693022,0.9963845,0,-0.08495829,0.9950793,0,-0.09908234,0.9855642,0,-0.1693022,0.9855642,0,-0.1693022,0.9963845,0,-0.08495829,0.9855642,0,-0.1693022,-1,0,0,-0.9963845,0,-0.08495829,-0.9998994,0,0.01418398,-0.9950793,0,-0.09908234,-0.9998994,0,0.01418398,-0.9963845,0,-0.08495829 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *720 { + a: 17.4803,1.566366,14.41752,1.566366,17.40731,8.988516,10.49736,8.886992,11.99318,1.356544,8.832046,1.356544,-9.09647,1.13754,-10.89862,8.636416,-5.901272,1.13754,11.57073,1.563238,9.891031,9.054814,13.83172,9.054814,-3.126849,1.096927,-3.762705,8.681816,0.1030541,1.096927,8.83685,1.35277,6.563867,8.882688,10.50455,8.882688,8.832046,1.356544,10.49736,8.886992,11.99318,1.356544,-13.83172,9.227617,-9.891031,9.227617,-8.420747,1.656675,-10.50455,8.985839,-6.563867,8.985839,-5.647615,1.395267,5.901272,1.252954,6.965289,8.824227,9.09647,1.252954,-11.99318,1.17197,-14.42415,8.610126,-8.832046,1.17197,-3.689604,8.716133,0.2510861,8.716133,0.1456299,1.115763,5.994772,1.196071,3.174988,8.759131,7.115675,8.759131,-6.132748,1.10719,-7.340458,8.656875,-2.914482,1.10719,17.40731,8.988516,17.4803,1.566366,14.41752,1.566366,-3.856778,1.136868E-13,-3.696636,3.763067,-3.696636,-3.763067,-3.21737,-7.498925,-3.21737,7.498925,-2.422445,-11.18055,-2.422445,11.18055,-1.317609,-14.78134,2.422445,11.18055,1.317609,-14.78134,2.422445,-11.18055,3.21737,-7.498925,3.21737,7.498925,3.696636,-3.763067,3.696636,3.763067,3.856778,-2.273737E-13,13.83172,9.054814,11.57073,1.563238,9.891031,9.054814,3.084024,1.112464,-0.2510861,8.699831,3.689604,8.699831,-20.2053,9.876742,-16.26461,9.876742,-13.52931,2.357082,2.914482,1.169855,3.402483,8.765691,6.132748,1.169855,16.56834,2.074116,16.26461,9.490408,20.2053,9.490408,-17.4803,1.171087,-21.31744,8.48581,-14.41752,1.171087,14.15924,1.807906,13.13242,9.260191,17.07311,9.260191,11.68026,1.466422,13.98377,8.945033,14.79696,1.466422,-0.1030541,1.116718,-0.1776796,8.717454,3.126849,1.116718,6.965289,8.824227,9.09647,1.252954,5.901272,1.252954,3.689604,8.699831,3.084024,1.112464,-0.2510861,8.699831,-11.68026,1.190183,-14.79696,1.190183,-17.90262,8.564603,-6.563867,8.985839,-5.647615,1.395267,-10.50455,8.985839,-17.07311,9.527046,-13.13242,9.527046,-11.05981,1.981182,10.50455,8.882688,8.83685,1.35277,6.563867,8.882688,-14.79696,1.190183,-17.90262,8.564603,-11.68026,1.190183,-13.13242,9.527046,-11.05981,1.981182,-17.07311,9.527046,13.98377,8.945033,14.79696,1.466422,11.68026,1.466422,3.402483,8.765691,6.132748,1.169855,2.914482,1.169855,-2.914482,1.10719,-6.132748,1.10719,-7.340458,8.656875,-5.901272,1.13754,-9.09647,1.13754,-10.89862,8.636416,-0.1776796,8.717454,3.126849,1.116718,-0.1030541,1.116718,17.07311,9.260191,14.15924,1.807906,13.13242,9.260191,7.115675,8.759131,5.994772,1.196071,3.174988,8.759131,-8.832046,1.17197,-11.99318,1.17197,-14.42415,8.610126,-7.115675,8.812457,-3.174988,8.812457,-2.77872,1.211283,-14.41752,1.171087,-17.4803,1.171087,-21.31744,8.48581,16.26461,9.490408,20.2053,9.490408,16.56834,2.074116,-16.26461,9.876742,-13.52931,2.357082,-20.2053,9.876742,-9.891031,9.227617,-8.420747,1.656675,-13.83172,9.227617,0.1030541,1.096927,-3.126849,1.096927,-3.762705,8.681816,-3.174988,8.812457,-2.77872,1.211283,-7.115675,8.812457,0.2510861,8.716133,0.1456299,1.115763,-3.689604,8.716133,16.74731,7.18504,16.74731,6.322834,13.21953,7.18504,13.21953,6.322834,-7.028574,3.448819,-7.028574,7.18504,-3.262099,3.448819,-3.262099,7.18504,2.422445,3.448819,-2.422445,3.448819,2.422445,6.322834,-2.422445,6.322834,7.028574,7.18504,7.028574,3.448819,3.262099,7.18504,3.262099,3.448819,-6.650973,7.18504,-6.650973,3.448819,-10.41744,7.18504,-10.41744,3.448819,-10.41744,6.322834,3.856778,1.136868E-13,-3.856778,-2.273737E-13,3.696636,3.763067,-3.696636,3.763067,3.696636,5.46063,-3.696636,5.46063,3.696636,6.322834,-3.696636,6.322834,-9.978136,7.18504,-9.978136,6.322834,-13.74461,7.18504,-13.74461,6.322834,13.74461,7.18504,13.74461,6.322834,9.978136,7.18504,13.74461,3.448819,9.978136,3.448819,0.1639815,7.18504,0.1639815,6.322834,-3.602491,7.18504,-3.602491,6.322834,-3.856778,1.136868E-13,-3.696636,3.763067,3.856778,-2.273737E-13,3.696636,3.763067,-10.41744,3.448819,-10.41744,7.18504,-6.650973,3.448819,-6.650973,7.18504,-16.74731,6.322834,-16.74731,7.18504,-13.21953,6.322834,-13.21953,7.18504,-3.602491,3.448819,-3.602491,7.18504,0.1639815,3.448819,0.1639815,7.18504,0.1639815,5.46063,0.1639815,6.322834,-2.273737E-13,-18.05383,-1.317609,-14.78134,1.317609,-14.78134,6.650973,3.448819,6.650973,7.18504,10.41744,3.448819,10.41744,7.18504,10.41744,6.322834,9.978136,6.322834,9.978136,7.18504,13.74461,6.322834,13.74461,7.18504,3.425197,0,3.328018,-3.228441,3.328018,3.228441,3.037187,6.433539,3.037187,-6.433539,2.554805,9.592114,2.554805,-9.592114,1.88436,12.68133,1.88436,-12.68133,1.030701,15.67885,1.030701,-15.67885,0,18.56299,0,-18.56299,-1.030701,15.67885,-1.030701,-15.67885,-1.88436,12.68133,-1.88436,-12.68133,-2.554805,9.592114,-2.554805,-9.592114,-3.037187,6.433539,-3.037187,-6.433539,-3.328018,3.228441,-3.328018,-3.228441,-3.425197,0,-2.422445,11.18055,-1.317609,14.78134,2.422445,11.18055,-2.273737E-13,18.05383,1.317609,14.78134,3.262099,3.448819,3.262099,5.46063,7.028574,3.448819,3.262099,6.322834,3.262099,7.18504,7.028574,7.18504,1.317609,3.448819,-1.317609,3.448819,1.317609,6.322834,-1.317609,6.322834,3.602491,7.18504,3.602491,3.448819,-0.1639815,7.18504,-0.1639815,3.448819,-0.1639815,6.322834,-0.1639815,5.46063,13.21953,6.322834,13.21953,7.18504,16.74731,6.322834,16.74731,7.18504,-13.74461,3.448819,-13.74461,6.322834,-9.978136,3.448819,-13.74461,7.18504,-9.978136,7.18504,0.1639815,5.46063,0.1639815,3.448819,-3.602491,5.46063,-3.602491,3.448819,3.856778,5.46063,-3.856778,5.46063,3.856778,6.322834,-3.856778,6.322834,-13.21953,7.18504,-13.21953,6.322834,-16.74731,7.18504,-16.74731,6.322834,-5.905512,-5.684342E-14,-5.737965,3.937126,-5.737965,-3.937126,-5.236527,-7.845779,-5.236527,7.845779,-4.404835,-11.6977,-4.404835,11.6977,-3.248897,-15.46504,-3.856778,1.136868E-13,-3.696636,-3.763067,-3.21737,-7.498925,-1.777071,-19.12055,-2.422445,-11.18055,-1.317609,-14.78134,-2.273737E-13,-22.63779,-2.273737E-13,-18.05383,1.777071,-19.12055,1.317609,-14.78134,2.422445,-11.18055,3.248897,-15.46504,3.21737,-7.498925,3.696636,-3.763067,4.404835,-11.6977,3.856778,-2.273737E-13,4.404835,11.6977,3.696636,3.763067,3.248897,15.46504,3.21737,7.498925,2.422445,11.18055,1.777071,19.12055,1.317609,14.78134,-2.273737E-13,22.63779,-2.273737E-13,18.05383,-1.317609,14.78134,-1.777071,19.12055,-2.422445,11.18055,-3.21737,7.498925,-3.248897,15.46504,-3.696636,3.763067,5.236527,-7.845779,5.236527,7.845779,5.737965,-3.937126,5.737965,3.937126,5.905512,-5.684342E-14,-0.1639815,6.322834,-0.1639815,7.18504,3.602491,6.322834,3.602491,7.18504,10.41744,7.18504,10.41744,3.448819,6.650973,7.18504,6.650973,3.448819,-3.262099,7.18504,-3.262099,6.322834,-7.028574,7.18504,-3.262099,5.46063,-3.262099,3.448819,-7.028574,3.448819,-0.1639815,3.448819,-0.1639815,5.46063,3.602491,3.448819,3.602491,5.46063 + } + UVIndex: *600 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,29,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,46,47,49,46,48,50,49,48,51,49,50,52,51,50,53,51,52,54,53,52,55,53,54,56,53,55,57,53,56,58,57,56,59,57,58,60,59,58,61,63,62,64,66,65,67,69,68,70,72,71,73,75,74,76,78,77,79,81,80,82,84,83,85,87,86,88,90,89,91,93,92,94,96,95,97,99,98,100,102,101,103,105,104,106,108,107,109,111,110,112,114,113,115,117,116,118,120,119,121,123,122,124,126,125,127,129,128,130,132,131,133,135,134,136,138,137,139,141,140,142,144,143,145,147,146,148,150,149,151,153,152,154,156,155,157,159,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,179,178,181,183,182,184,182,183,185,187,186,188,186,187,189,191,190,192,190,191,193,195,194,196,194,195,197,196,195,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,217,216,219,217,218,220,222,221,223,225,224,226,224,225,227,226,225,228,230,229,231,229,230,232,234,233,235,233,234,236,233,235,237,236,235,238,236,237,239,238,237,240,238,239,241,240,239,242,240,241,243,242,241,244,242,243,245,244,243,246,244,245,247,246,245,248,246,247,249,248,247,250,248,249,251,250,249,252,250,251,253,252,251,254,252,253,255,254,253,256,258,257,259,257,258,260,259,258,261,263,262,264,262,263,265,264,263,266,265,263,267,269,268,270,268,269,271,273,272,274,272,273,275,274,273,276,274,275,277,279,278,280,278,279,281,283,282,284,282,283,285,284,283,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,299,301,303,302,301,304,302,303,305,304,303,306,304,305,307,306,305,308,307,305,309,308,305,310,308,309,311,310,309,312,311,309,313,311,312,314,313,312,315,313,314,316,315,314,317,316,314,318,316,317,319,318,317,320,319,317,321,319,320,320,322,321,321,322,323,322,324,323,323,324,325,325,324,326,324,327,326,326,327,328,327,329,328,328,329,330,330,329,331,329,332,331,331,332,333,333,332,334,332,335,334,334,335,336,336,335,306,304,306,335,337,322,320,338,322,337,339,338,337,340,338,339,341,340,339,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,354,353,352,355,354,352,356,358,357,359,357,358 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *200 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh canoe, Model::RootNode + C: "OO",5293287447590678371,0 + + ;Geometry::, Model::Mesh canoe + C: "OO",4887979269455758826,5293287447590678371 + + ;Material::leafsFall, Model::Mesh canoe + C: "OO",3028,5293287447590678371 + + ;Material::wood, Model::Mesh canoe + C: "OO",3044,5293287447590678371 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/canoe.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/canoe.fbx.import new file mode 100644 index 0000000..c87a24f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/canoe.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bjqws1c25gxi7" +path="res://.godot/imported/canoe.fbx-5a13a20f98f99f8c2769b5bdb188b62e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/canoe.fbx" +dest_files=["res://.godot/imported/canoe.fbx-5a13a20f98f99f8c2769b5bdb188b62e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/canoe_paddle.fbx b/assets/models/kenney_nature-kit/Models/FBX format/canoe_paddle.fbx new file mode 100644 index 0000000..0902083 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/canoe_paddle.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 577 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "canoe_paddle.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "canoe_paddle.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5573829038560890791, "Model::canoe_paddle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5699217069342962409, "Geometry::", "Mesh" { + Vertices: *198 { + a: 0.157216,0.2545049,-0.6115841,0.157216,0.2545049,3.347648,-0.157216,0.2545049,-0.6115841,-0.157216,0.2545049,3.347648,0.157216,0.106537,3.347648,-0.157216,0.106537,3.347648,0.157216,0.2545049,3.347648,-0.157216,0.2545049,3.347648,0.383607,0,-1,-0.383607,0,-1,0.157216,0.106537,-0.6115841,-0.157216,0.106537,-0.6115841,0,0.2610419,-2.554272,0,0.09999999,-2.554272,0.383607,0.3610419,-2.054272,0.383607,0,-2.054272,-0.383607,0,-2.054272,-0.383607,0.3610419,-2.054272,-0.383607,0,-1,-0.383607,0.3610419,-1,0.383607,0.3610419,-1,0.383607,0,-1,0.157216,0.2545049,-0.6115841,0.157216,0.106537,-0.6115841,0.383607,0,-2.054272,0,0.09999999,-2.554272,-0.383607,0,-2.054272,0.383607,0.3610419,-2.054272,0.383607,0.3610419,-1,-0.383607,0.3610419,-2.054272,-0.383607,0.3610419,-1,0.383607,0.3610419,-1,0.157216,0.2545049,-0.6115841,-0.383607,0.3610419,-1,-0.157216,0.2545049,-0.6115841,0,0.09999999,-2.554272,0,0.2610419,-2.554272,-0.383607,0,-2.054272,-0.383607,0.3610419,-2.054272,0.157216,0.106537,3.347648,0.157216,0.106537,-0.6115841,-0.157216,0.106537,3.347648,-0.157216,0.106537,-0.6115841,0.157216,0.2545049,-0.6115841,0.157216,0.106537,-0.6115841,0.157216,0.2545049,3.347648,0.157216,0.106537,3.347648,-0.383607,0,-1,-0.383607,0.3610419,-1,-0.157216,0.106537,-0.6115841,-0.157216,0.2545049,-0.6115841,0.383607,0,-1,0.383607,0,-2.054272,-0.383607,0,-1,-0.383607,0,-2.054272,0.383607,0.3610419,-2.054272,0.383607,0,-2.054272,0.383607,0.3610419,-1,0.383607,0,-1,0,0.2610419,-2.554272,0.383607,0.3610419,-2.054272,-0.383607,0.3610419,-2.054272,-0.157216,0.106537,-0.6115841,-0.157216,0.2545049,-0.6115841,-0.157216,0.106537,3.347648,-0.157216,0.2545049,3.347648 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,64,-64,65,63,-65 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9643813,0.2645161,0,-0.9643813,0.2645161,0,-0.9643813,0.2645161,0,-0.9643813,0.2645161,0,-0.9643813,0.2645161,0,-0.9643813,0.2645161,0.7933967,0,-0.608705,0.7933967,0,-0.608705,0.7933967,0,-0.608705,0.7933967,0,-0.608705,0.7933967,0,-0.608705,0.7933967,0,-0.608705,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8639579,0,0.5035641,0.8639579,0,0.5035641,0.8639579,0,0.5035641,0.8639579,0,0.5035641,0.8639579,0,0.5035641,0.8639579,0,0.5035641,0,-0.9805807,-0.1961161,0,-0.9805807,-0.1961161,0,-0.9805807,-0.1961161,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9643813,0.2645162,0,0.9643813,0.2645162,0,0.9643813,0.2645162,0,0.9643813,0.2645162,0,0.9643813,0.2645162,0,0.9643813,0.2645162,-0.7933967,0,-0.608705,-0.7933967,0,-0.608705,-0.7933967,0,-0.608705,-0.7933967,0,-0.608705,-0.7933967,0,-0.608705,-0.7933967,0,-0.608705,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8639579,0,0.5035641,-0.8639579,0,0.5035641,-0.8639579,0,0.5035641,-0.8639579,0,0.5035641,-0.8639579,0,0.5035641,-0.8639579,0,0.5035641,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,0,0.9805807,-0.1961161,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *132 { + a: -0.6189606,-2.407811,-0.6189606,13.17972,0.6189606,-2.407811,0.6189606,13.17972,0.6189606,0.419437,-0.6189606,0.419437,0.6189606,1.001988,-0.6189606,1.001988,1.510264,-3.796777,-1.510264,-3.796777,0.6189606,-2.2111,-0.6189606,-2.2111,7.978547,1.027724,7.978547,0.3937008,5.497437,1.421425,5.497437,3.065213E-17,-8.087686,0,-8.087686,1.421425,-3.937008,0,-3.937008,1.421425,4.161923,1.421425,4.161923,-6.126364E-18,2.391934,1.001988,2.391934,0.419437,-1.510264,7.930628,0,9.938116,1.510264,7.930628,-1.510264,-8.087686,-1.510264,-3.937008,1.510264,-8.087686,1.510264,-3.937008,1.510264,4.172766,0.6189606,2.58709,-1.510264,4.172766,-0.6189606,2.58709,-7.978547,0.3937008,-7.978547,1.027724,-5.497437,3.065213E-17,-5.497437,1.421425,0.6189606,13.17972,0.6189606,-2.407811,-0.6189606,13.17972,-0.6189606,-2.407811,2.407811,1.001988,2.407811,0.419437,-13.17972,1.001988,-13.17972,0.419437,-4.161923,-6.126364E-18,-4.161923,1.421425,-2.391934,0.419437,-2.391934,1.001988,1.510264,-3.937008,1.510264,-8.087686,-1.510264,-3.937008,-1.510264,-8.087686,8.087686,1.421425,8.087686,0,3.937008,1.421425,3.937008,0,0,-9.659351,-1.510264,-7.651864,1.510264,-7.651864,-2.407811,0.419437,-2.407811,1.001988,13.17972,0.419437,13.17972,1.001988 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,64,63,65,63,64 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh canoe_paddle, Model::RootNode + C: "OO",5573829038560890791,0 + + ;Geometry::, Model::Mesh canoe_paddle + C: "OO",5699217069342962409,5573829038560890791 + + ;Material::wood, Model::Mesh canoe_paddle + C: "OO",3044,5573829038560890791 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/canoe_paddle.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/canoe_paddle.fbx.import new file mode 100644 index 0000000..ddb579d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/canoe_paddle.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bqcijifkl6q5a" +path="res://.godot/imported/canoe_paddle.fbx-e0865483d621015d983e94fde9cbc148.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/canoe_paddle.fbx" +dest_files=["res://.godot/imported/canoe_paddle.fbx-e0865483d621015d983e94fde9cbc148.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_rock.fbx new file mode 100644 index 0000000..d059f49 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 831 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockCave_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockCave_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5384699892721637491, "Model::cliff_blockCave_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4886505529242738770, "Geometry::", "Mesh" { + Vertices: *270 { + a: -0.4624439,7.979775,-4,-2.00606,6.137915,-4,-1.586595,7.979775,0.5,0.6617067,7.979775,-4,-0.4624439,7.979775,-4,0.6617067,7.979775,5,-1.586595,7.979775,5,-1.586595,7.979775,0.5,0.6617067,7.979775,-4,0.6617067,7.979775,5,1.665299,4.87419,-4,1.665299,4.87419,5,-2.00606,6.137915,-4,-2.425525,4.296055,-4,-1.586595,7.979775,0.5,-2.425525,4.296055,5,-1.586595,7.979775,5,-2.425525,4.296055,-4,-3.144982,4.296055,-4,-2.425525,4.296055,5,-3.144982,4.296055,5,-3.572491,2.148028,-4,-2.185392,0,-4,-4,0,0.5,-5,0,-5,-5,10,-5,-5,0,5,-5,10,5,5,0,5,4,0,-1.094496,4,0,5,5,0,-5,2.730201,0,-4,-5,0,-5,-2.185392,0,-4,-4,0,0.5,-5,0,5,-4,0,5,3.372242,2.437095,-4,2.744484,4.87419,-4,4,0,-1.094496,2.744484,4.87419,5,4,0,5,5,10,-5,5,0,-5,5,10,5,5,0,5,2.744484,4.87419,-4,1.665299,4.87419,-4,2.744484,4.87419,5,1.665299,4.87419,5,-3.572491,2.148028,-4,-4,0,0.5,-3.144982,4.296055,-4,-3.144982,4.296055,5,-4,0,5,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,2.730201,0,-4,3.372242,2.437095,-4,4,0,-1.094496,3.372242,2.437095,-4,-2.425525,4.296055,-4,2.744484,4.87419,-4,1.665299,4.87419,-4,-2.00606,6.137915,-4,0.6617067,7.979775,-4,-0.4624439,7.979775,-4,-3.144982,4.296055,-4,-3.572491,2.148028,-4,-2.185392,0,-4,2.730201,0,-4,-2.425525,4.296055,5,-3.144982,4.296055,5,-1.586595,7.979775,5,-5,10,5,-5,0,5,-4,0,5,5,10,5,0.6617067,7.979775,5,1.665299,4.87419,5,2.744484,4.87419,5,4,0,5,5,0,5,5,10,-5,5,10,5,-5,10,-5,-5,10,5 + } + PolygonVertexIndex: *168 { + a: 0,2,-2,3,5,-5,6,4,-6,7,4,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,20,18,-20,21,23,-23,24,26,-26,27,25,-27,28,30,-30,28,29,-32,29,32,-32,33,31,-33,34,33,-33,35,33,-35,33,35,-37,37,36,-36,38,40,-40,41,39,-41,42,41,-41,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,52,-55,56,58,-58,59,57,-59,60,62,-62,63,65,-65,66,64,-66,67,64,-67,68,67,-67,69,67,-69,64,70,-64,70,71,-64,71,72,-64,73,63,-73,74,76,-76,76,77,-76,77,78,-76,79,75,-79,80,77,-77,76,81,-81,81,82,-81,82,83,-81,83,84,-81,85,80,-85,86,88,-88,89,87,-89 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *504 { + a: 0.752758,-0.6308674,0.1880474,0.752758,-0.6308674,0.1880474,0.752758,-0.6308674,0.1880474,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7956563,0.5137987,0.3208454,0.7956563,0.5137987,0.3208454,0.7956563,0.5137987,0.3208454,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8907291,0.2346585,0.3892775,-0.8907291,0.2346585,0.3892775,-0.8907291,0.2346585,0.3892775,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *180 { + a: 14.83726,20.85352,13.36436,11.5076,-3.423721,20.85352,2.605145,-15.74803,-1.820645,-15.74803,2.605145,19.68504,-6.246436,19.68504,-6.246436,1.968504,-15.74803,29.09317,19.68504,29.09317,-15.74803,16.24389,19.68504,16.24389,15.74803,21.80797,15.74803,14.37088,-1.968504,29.24506,-19.68504,14.37088,-19.68504,29.24506,-9.549311,-15.74803,-12.38182,-15.74803,-9.549311,19.68504,-12.38182,19.68504,9.345209,16.98336,11.38755,7.125917,-7.71518,7.125917,-19.68504,0,-19.68504,39.37008,19.68504,0,19.68504,39.37008,19.68504,19.68504,15.74803,-4.309042,15.74803,19.68504,19.68504,-19.68504,10.74882,-15.74803,-19.68504,-19.68504,-8.603907,-15.74803,-15.74803,1.968504,-19.68504,19.68504,-15.74803,19.68504,-15.74803,5.979836,-15.74803,15.88789,-4.309042,-3.928222,19.68504,15.88789,19.68504,-3.928222,19.68504,39.37008,19.68504,0,-19.68504,39.37008,-19.68504,0,10.80506,-15.74803,6.556295,-15.74803,10.80506,19.68504,6.556295,19.68504,15.74803,5.548718,-1.968504,-3.073947,15.74803,14.17138,-19.68504,14.17138,-19.68504,-3.073947,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,-10.12569,3.791084,-9.113436,13.66155,2.358007,3.791084,13.27654,9.594862,-9.549311,16.9136,10.80506,19.18972,6.556295,19.18972,-7.897873,24.16502,2.605145,31.41644,-1.820645,31.41644,-12.38182,16.9136,-14.06493,8.456802,-8.603907,0,10.74882,0,-9.549311,16.9136,-12.38182,16.9136,-6.246436,31.41644,-19.68504,39.37008,-19.68504,0,-15.74803,0,19.68504,39.37008,2.605145,31.41644,6.556295,19.18972,10.80506,19.18972,15.74803,0,19.68504,0,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504 + } + UVIndex: *168 { + a: 0,2,1,3,5,4,6,4,5,7,4,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,19,18,20,18,19,21,23,22,24,26,25,27,25,26,28,30,29,28,29,31,29,32,31,33,31,32,34,33,32,35,33,34,33,35,36,37,36,35,38,40,39,41,39,40,42,41,40,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,52,54,56,58,57,59,57,58,60,62,61,63,65,64,66,64,65,67,64,66,68,67,66,69,67,68,64,70,63,70,71,63,71,72,63,73,63,72,74,76,75,76,77,75,77,78,75,79,75,78,80,77,76,76,81,80,81,82,80,82,83,80,83,84,80,85,80,84,86,88,87,89,87,88 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *56 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockCave_rock, Model::RootNode + C: "OO",5384699892721637491,0 + + ;Geometry::, Model::Mesh cliff_blockCave_rock + C: "OO",4886505529242738770,5384699892721637491 + + ;Material::dirt, Model::Mesh cliff_blockCave_rock + C: "OO",3020,5384699892721637491 + + ;Material::grass, Model::Mesh cliff_blockCave_rock + C: "OO",3024,5384699892721637491 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_rock.fbx.import new file mode 100644 index 0000000..e9acb94 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bptmph1grm652" +path="res://.godot/imported/cliff_blockCave_rock.fbx-cd185b9489888bc97de180bc73950403.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_rock.fbx" +dest_files=["res://.godot/imported/cliff_blockCave_rock.fbx-cd185b9489888bc97de180bc73950403.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_stone.fbx new file mode 100644 index 0000000..d02c4ff --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 923 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockCave_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockCave_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5736729098364466682, "Model::cliff_blockCave_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5531323301947050146, "Geometry::", "Mesh" { + Vertices: *270 { + a: -5,0,-5,-5,10,-5,-5,0,5,-5,10,5,2.744484,4.87419,5,2.744484,4.87419,-4,1.665299,4.87419,5,1.665299,4.87419,-4,1.665299,4.87419,-4,0.6617066,7.979775,-4,1.665299,4.87419,5,0.6617069,7.979775,5,5,10,-5,5,0,-5,5,10,5,5,0,5,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,-2.425525,4.296055,5,-3.144982,4.296055,5,-1.586595,7.979775,5,-5,10,5,-5,0,5,-4,0,5,5,10,5,0.6617069,7.979775,5,1.665299,4.87419,5,2.744484,4.87419,5,4,0,5,5,0,5,-2.425525,4.296055,5,-2.425525,4.296055,-4,-3.144982,4.296055,5,-3.144982,4.296055,-4,-3.144982,4.296055,-4,-3.572491,2.148028,-4,-3.144982,4.296055,5,-4,0,0.5000001,-4,0,5,-4,0,5,-4,0,0.5000001,-5,0,5,-5,0,-5,-2.185392,0,-4,2.730201,0,-4,5,0,-5,4,0,-1.094497,4,0,5,5,0,5,3.372242,2.437095,-4,-2.425525,4.296055,-4,2.744484,4.87419,-4,1.665299,4.87419,-4,-2.00606,6.137915,-4,0.6617066,7.979775,-4,-0.462444,7.979775,-4,-3.144982,4.296055,-4,-3.572491,2.148028,-4,-2.185392,0,-4,2.730201,0,-4,3.372242,2.437095,-4,2.744484,4.87419,-4,4,0,-1.094497,2.744484,4.87419,5,4,0,5,-0.462444,7.979775,-4,-2.00606,6.137915,-4,-1.586595,7.979775,0.5000001,-3.572491,2.148028,-4,-2.185392,0,-4,-4,0,0.5000001,0.6617069,7.979775,5,0.6617066,7.979775,-4,-1.586595,7.979775,5,-0.462444,7.979775,-4,-1.586595,7.979775,0.5000001,-2.00606,6.137915,-4,-2.425525,4.296055,-4,-1.586595,7.979775,0.5000001,-2.425525,4.296055,5,-1.586595,7.979775,5,2.730201,0,-4,3.372242,2.437095,-4,4,0,-1.094497,5,10,5,-5,10,5,5,10,-5,-5,10,-5 + } + PolygonVertexIndex: *168 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,22,23,-22,23,24,-22,25,21,-25,26,23,-23,22,27,-27,27,28,-27,28,29,-27,29,30,-27,31,26,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,43,-43,43,44,-43,42,44,-46,45,44,-47,44,47,-47,46,47,-49,48,47,-50,50,49,-48,51,53,-53,54,52,-54,55,52,-55,56,55,-55,57,55,-57,52,58,-52,58,59,-52,59,60,-52,61,51,-61,62,64,-64,65,63,-65,66,65,-65,67,69,-69,70,72,-72,73,75,-75,76,74,-76,77,76,-76,78,80,-80,81,79,-81,82,81,-81,83,85,-85,86,88,-88,89,87,-89 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *504 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,0.752758,-0.6308674,0.1880474,0.752758,-0.6308674,0.1880474,0.752758,-0.6308674,0.1880474,0.7956563,0.5137987,0.3208454,0.7956563,0.5137987,0.3208454,0.7956563,0.5137987,0.3208454,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,-0.8907291,0.2346585,0.3892776,-0.8907291,0.2346585,0.3892776,-0.8907291,0.2346585,0.3892776,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *180 { + a: -19.68504,0,-19.68504,39.37008,19.68504,0,19.68504,39.37008,10.80506,19.68504,10.80506,-15.74803,6.556296,19.68504,6.556295,-15.74803,-15.74803,16.24389,-15.74803,29.09317,19.68504,16.24389,19.68504,29.09317,19.68504,39.37008,19.68504,0,-19.68504,39.37008,-19.68504,0,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,-9.549311,16.9136,-12.38182,16.9136,-6.246436,31.41644,-19.68504,39.37008,-19.68504,0,-15.74803,0,19.68504,39.37008,2.605145,31.41644,6.556295,19.18972,10.80506,19.18972,15.74803,0,19.68504,0,-9.54931,19.68504,-9.549311,-15.74803,-12.38182,19.68504,-12.38182,-15.74803,15.74803,14.17138,15.74803,5.548718,-19.68504,14.17138,-1.968504,-3.073947,-19.68504,-3.073947,-15.74803,19.68504,-15.74803,1.968504,-19.68504,19.68504,-19.68504,-19.68504,-8.603907,-15.74803,10.74882,-15.74803,19.68504,-19.68504,15.74803,-4.309042,15.74803,19.68504,19.68504,19.68504,13.27654,9.594862,-9.549311,16.9136,10.80506,19.18972,6.556295,19.18972,-7.897873,24.16502,2.605145,31.41644,-1.820645,31.41644,-12.38182,16.9136,-14.06493,8.456802,-8.603907,0,10.74882,0,-15.74803,5.979836,-15.74803,15.88789,-4.309042,-3.928222,19.68504,15.88789,19.68504,-3.928222,14.83726,20.85352,13.36436,11.5076,-3.423721,20.85352,9.345209,16.98336,11.38755,7.125917,-7.71518,7.125917,2.605145,19.68504,2.605144,-15.74803,-6.246435,19.68504,-1.820646,-15.74803,-6.246436,1.968504,15.74803,21.80797,15.74803,14.37088,-1.968504,29.24506,-19.68504,14.37088,-19.68504,29.24506,-10.12569,3.791084,-9.113436,13.66155,2.358007,3.791084,-19.68504,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504 + } + UVIndex: *168 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,22,23,21,23,24,21,25,21,24,26,23,22,22,27,26,27,28,26,28,29,26,29,30,26,31,26,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,43,42,43,44,42,42,44,45,45,44,46,44,47,46,46,47,48,48,47,49,50,49,47,51,53,52,54,52,53,55,52,54,56,55,54,57,55,56,52,58,51,58,59,51,59,60,51,61,51,60,62,64,63,65,63,64,66,65,64,67,69,68,70,72,71,73,75,74,76,74,75,77,76,75,78,80,79,81,79,80,82,81,80,83,85,84,86,88,87,89,87,88 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *56 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockCave_stone, Model::RootNode + C: "OO",5736729098364466682,0 + + ;Geometry::, Model::Mesh cliff_blockCave_stone + C: "OO",5531323301947050146,5736729098364466682 + + ;Material::stone, Model::Mesh cliff_blockCave_stone + C: "OO",3038,5736729098364466682 + + ;Material::grass, Model::Mesh cliff_blockCave_stone + C: "OO",3024,5736729098364466682 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_stone.fbx.import new file mode 100644 index 0000000..5e7a138 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bsgws58j8xtmk" +path="res://.godot/imported/cliff_blockCave_stone.fbx-6424e2d7e8a5c07cb42b1a571e5e4f6a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockCave_stone.fbx" +dest_files=["res://.godot/imported/cliff_blockCave_stone.fbx-6424e2d7e8a5c07cb42b1a571e5e4f6a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_rock.fbx new file mode 100644 index 0000000..e35a9a2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 24 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockDiagonal_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockDiagonal_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5075104944540051496, "Model::cliff_blockDiagonal_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4973449816014995333, "Geometry::", "Mesh" { + Vertices: *54 { + a: 5,10,-5.000001,5,10,4.999999,-5,10,-5.000001,5,10,-5.000001,5,0,-5.000001,5,10,4.999999,5,0,4.999999,-5,0,-5.000001,-5,10,-5.000001,5,0,4.999999,5,10,4.999999,5,0,4.999999,5,0,-5.000001,-5,0,-5.000001,-5,0,-5.000001,5,0,-5.000001,-5,10,-5.000001,5,10,-5.000001 + } + PolygonVertexIndex: *24 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,10,8,-10,11,13,-13,14,16,-16,17,15,-17 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *72 { + a: 0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *36 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,39.37008,19.68504,0,-19.68503,39.37008,-19.68503,0,-27.83885,0,-27.83885,39.37008,27.83885,0,27.83885,39.37008,19.68504,19.68504,19.68504,-19.68504,-19.68504,-19.68504,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008 + } + UVIndex: *24 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,10,8,9,11,13,12,14,16,15,17,15,16 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *8 { + a: 0,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockDiagonal_rock, Model::RootNode + C: "OO",5075104944540051496,0 + + ;Geometry::, Model::Mesh cliff_blockDiagonal_rock + C: "OO",4973449816014995333,5075104944540051496 + + ;Material::grass, Model::Mesh cliff_blockDiagonal_rock + C: "OO",3024,5075104944540051496 + + ;Material::dirt, Model::Mesh cliff_blockDiagonal_rock + C: "OO",3020,5075104944540051496 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_rock.fbx.import new file mode 100644 index 0000000..212b749 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c8t685qydtjie" +path="res://.godot/imported/cliff_blockDiagonal_rock.fbx-5add4d70899321fe0a34dbdf775c71c7.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_rock.fbx" +dest_files=["res://.godot/imported/cliff_blockDiagonal_rock.fbx-5add4d70899321fe0a34dbdf775c71c7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_stone.fbx new file mode 100644 index 0000000..6d73bf0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 105 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockDiagonal_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockDiagonal_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5739646903403927657, "Model::cliff_blockDiagonal_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4721119012127816675, "Geometry::", "Mesh" { + Vertices: *54 { + a: 5,10,-5.000001,5,10,4.999999,-5,10,-5.000001,5,10,-5.000001,5,0,-5.000001,5,10,4.999999,5,0,4.999999,-5,0,-5.000001,-5,10,-5.000001,5,0,4.999999,5,10,4.999999,5,0,4.999999,5,0,-5.000001,-5,0,-5.000001,-5,0,-5.000001,5,0,-5.000001,-5,10,-5.000001,5,10,-5.000001 + } + PolygonVertexIndex: *24 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,10,8,-10,11,13,-13,14,16,-16,17,15,-17 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *72 { + a: 0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *36 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,39.37008,19.68504,0,-19.68503,39.37008,-19.68503,0,-27.83885,0,-27.83885,39.37008,27.83885,0,27.83885,39.37008,19.68504,19.68504,19.68504,-19.68504,-19.68504,-19.68504,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008 + } + UVIndex: *24 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,10,8,9,11,13,12,14,16,15,17,15,16 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *8 { + a: 0,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockDiagonal_stone, Model::RootNode + C: "OO",5739646903403927657,0 + + ;Geometry::, Model::Mesh cliff_blockDiagonal_stone + C: "OO",4721119012127816675,5739646903403927657 + + ;Material::grass, Model::Mesh cliff_blockDiagonal_stone + C: "OO",3024,5739646903403927657 + + ;Material::stone, Model::Mesh cliff_blockDiagonal_stone + C: "OO",3038,5739646903403927657 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_stone.fbx.import new file mode 100644 index 0000000..e77820e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dpkud21dqm401" +path="res://.godot/imported/cliff_blockDiagonal_stone.fbx-27d3c7d76338cc1c99fd5322da7f734f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockDiagonal_stone.fbx" +dest_files=["res://.godot/imported/cliff_blockDiagonal_stone.fbx-27d3c7d76338cc1c99fd5322da7f734f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_rock.fbx new file mode 100644 index 0000000..ebd8d96 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 187 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockHalf_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockHalf_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5037249468995231983, "Model::cliff_blockHalf_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5525952766432830700, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,5,-5,5,5,5,-5,5,-5,-5,5,5,5,5,-5,5,0,-5,5,5,5,5,0,5,5,0,5,-5,0,5,5,5,5,-5,5,5,-5,0,-5,5,0,-5,-5,5,-5,5,5,-5,-5,0,-5,-5,5,-5,-5,0,5,-5,5,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,19.68504,19.68504,0,-19.68504,19.68504,-19.68504,0,19.68504,0,-19.68504,0,19.68504,19.68504,-19.68504,19.68504,19.68504,0,-19.68504,0,19.68504,19.68504,-19.68504,19.68504,-19.68504,0,-19.68504,19.68504,19.68504,0,19.68504,19.68504,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockHalf_rock, Model::RootNode + C: "OO",5037249468995231983,0 + + ;Geometry::, Model::Mesh cliff_blockHalf_rock + C: "OO",5525952766432830700,5037249468995231983 + + ;Material::grass, Model::Mesh cliff_blockHalf_rock + C: "OO",3024,5037249468995231983 + + ;Material::dirt, Model::Mesh cliff_blockHalf_rock + C: "OO",3020,5037249468995231983 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_rock.fbx.import new file mode 100644 index 0000000..16b5a6b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://y8i7w0oekl3" +path="res://.godot/imported/cliff_blockHalf_rock.fbx-3785735c92a004aa469006c6108e6491.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_rock.fbx" +dest_files=["res://.godot/imported/cliff_blockHalf_rock.fbx-3785735c92a004aa469006c6108e6491.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_stone.fbx new file mode 100644 index 0000000..b184bf9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 265 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockHalf_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockHalf_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4798137592092333734, "Model::cliff_blockHalf_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5697624984244780553, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,5,-5,5,5,5,-5,5,-5,-5,5,5,5,5,-5,5,0,-5,5,5,5,5,0,5,5,0,5,-5,0,5,5,5,5,-5,5,5,-5,0,-5,5,0,-5,-5,5,-5,5,5,-5,-5,0,-5,-5,5,-5,-5,0,5,-5,5,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,19.68504,19.68504,0,-19.68504,19.68504,-19.68504,0,19.68504,0,-19.68504,0,19.68504,19.68504,-19.68504,19.68504,19.68504,0,-19.68504,0,19.68504,19.68504,-19.68504,19.68504,-19.68504,0,-19.68504,19.68504,19.68504,0,19.68504,19.68504,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockHalf_stone, Model::RootNode + C: "OO",4798137592092333734,0 + + ;Geometry::, Model::Mesh cliff_blockHalf_stone + C: "OO",5697624984244780553,4798137592092333734 + + ;Material::grass, Model::Mesh cliff_blockHalf_stone + C: "OO",3024,4798137592092333734 + + ;Material::stone, Model::Mesh cliff_blockHalf_stone + C: "OO",3038,4798137592092333734 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_stone.fbx.import new file mode 100644 index 0000000..2b444b5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://da7l7eidpx85h" +path="res://.godot/imported/cliff_blockHalf_stone.fbx-d7df29dc10a56cc0e5e8cd2343987f0c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockHalf_stone.fbx" +dest_files=["res://.godot/imported/cliff_blockHalf_stone.fbx-d7df29dc10a56cc0e5e8cd2343987f0c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_rock.fbx new file mode 100644 index 0000000..285b1ae --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 346 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockQuarter_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockQuarter_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4960011059352462568, "Model::cliff_blockQuarter_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4734297834998144726, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,2.5,-5,5,2.5,5,-5,2.5,-5,-5,2.5,5,5,2.5,-5,5,0,-5,5,2.5,5,5,0,5,5,0,5,-5,0,5,5,2.5,5,-5,2.5,5,-5,0,-5,5,0,-5,-5,2.5,-5,5,2.5,-5,-5,0,-5,-5,2.5,-5,-5,0,5,-5,2.5,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,9.84252,19.68504,0,-19.68504,9.84252,-19.68504,0,19.68504,0,-19.68504,0,19.68504,9.84252,-19.68504,9.84252,19.68504,0,-19.68504,0,19.68504,9.84252,-19.68504,9.84252,-19.68504,0,-19.68504,9.84252,19.68504,0,19.68504,9.84252,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockQuarter_rock, Model::RootNode + C: "OO",4960011059352462568,0 + + ;Geometry::, Model::Mesh cliff_blockQuarter_rock + C: "OO",4734297834998144726,4960011059352462568 + + ;Material::grass, Model::Mesh cliff_blockQuarter_rock + C: "OO",3024,4960011059352462568 + + ;Material::dirt, Model::Mesh cliff_blockQuarter_rock + C: "OO",3020,4960011059352462568 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_rock.fbx.import new file mode 100644 index 0000000..a469088 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://clna55pg7jung" +path="res://.godot/imported/cliff_blockQuarter_rock.fbx-14cfb4660c88be7836cc64eb3bfbaf2e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_rock.fbx" +dest_files=["res://.godot/imported/cliff_blockQuarter_rock.fbx-14cfb4660c88be7836cc64eb3bfbaf2e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_stone.fbx new file mode 100644 index 0000000..1dfdf7b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 424 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockQuarter_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockQuarter_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5308159374344394474, "Model::cliff_blockQuarter_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5382525466657639988, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,2.5,-5,5,2.5,5,-5,2.5,-5,-5,2.5,5,5,2.5,-5,5,0,-5,5,2.5,5,5,0,5,5,0,5,-5,0,5,5,2.5,5,-5,2.5,5,-5,0,-5,5,0,-5,-5,2.5,-5,5,2.5,-5,-5,0,-5,-5,2.5,-5,-5,0,5,-5,2.5,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,9.84252,19.68504,0,-19.68504,9.84252,-19.68504,0,19.68504,0,-19.68504,0,19.68504,9.84252,-19.68504,9.84252,19.68504,0,-19.68504,0,19.68504,9.84252,-19.68504,9.84252,-19.68504,0,-19.68504,9.84252,19.68504,0,19.68504,9.84252,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockQuarter_stone, Model::RootNode + C: "OO",5308159374344394474,0 + + ;Geometry::, Model::Mesh cliff_blockQuarter_stone + C: "OO",5382525466657639988,5308159374344394474 + + ;Material::grass, Model::Mesh cliff_blockQuarter_stone + C: "OO",3024,5308159374344394474 + + ;Material::stone, Model::Mesh cliff_blockQuarter_stone + C: "OO",3038,5308159374344394474 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_stone.fbx.import new file mode 100644 index 0000000..f5839d7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dnvydbwh46wmm" +path="res://.godot/imported/cliff_blockQuarter_stone.fbx-291ee45adc893e066f0c8a3e6cbd386b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockQuarter_stone.fbx" +dest_files=["res://.godot/imported/cliff_blockQuarter_stone.fbx-291ee45adc893e066f0c8a3e6cbd386b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_rock.fbx new file mode 100644 index 0000000..d9ef0a2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 695 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockSlopeHalfWalls_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockSlopeHalfWalls_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4910971246698027199, "Model::cliff_blockSlopeHalfWalls_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4617043975600982682, "Geometry::", "Mesh" { + Vertices: *534 { + a: -5,0,5,-5,5,5,-0.8149999,2.707168E-15,5,-3.315,5,5,-5,0,-5,5,0,-5,-5,5,-5,5,5,-5,-3.315,5,-5,3.315,5,-5,4,5,3.333333,3.315,5,5,1.916667,0.8333334,3.333333,0.8149999,0,5,-1.648333,1.666667,1.666667,-1.916667,0.8333334,3.333333,-3.315,5,1.666667,-4,5,3.333333,-1.916667,0.8333334,3.333333,-0.8149999,2.707168E-15,5,-4,5,3.333333,-3.315,5,5,5,5,-5,5,0,-5,5,5,5,5,0,5,5,0,5,0.8149999,0,5,5,5,5,3.315,5,5,-2.481667,3.333333,-1.666667,-2.75,2.5,2.382308E-13,-3.315,5,-1.666667,-4,5,2.52669E-13,-3.583333,4.166667,-3.333333,-2.481667,3.333333,-1.666667,-4,5,-3.333333,-3.315,5,-1.666667,3.315,5,-1.666667,4,5,-2.671072E-13,2.481667,3.333333,-1.666667,2.75,2.5,-1.804779E-13,4,5,-3.333333,3.315,5,-1.666667,3.583333,4.166667,-3.333333,2.481667,3.333333,-1.666667,3.315,5,1.666667,4,5,3.333333,1.648333,1.666667,1.666667,1.916667,0.8333334,3.333333,-2.75,2.5,2.382308E-13,-1.648333,1.666667,1.666667,-4,5,2.52669E-13,-3.315,5,1.666667,-3.315,5,-5,-3.583333,4.166667,-3.333333,-4,5,-3.333333,5,0,5,5,0,-5,0.8149999,0,5,-5,0,-5,-0.8149999,2.707168E-15,5,-5,0,5,3.315,5,-5,4,5,-3.333333,3.583333,4.166667,-3.333333,-5,0,-5,-5,5,-5,-5,0,5,-5,5,5,4,5,-2.671072E-13,3.315,5,1.666667,2.75,2.5,-1.804779E-13,1.648333,1.666667,1.666667,-2.315,4,1.666667,-3.315,5,1.666667,-3,4,2.454499E-13,-4,5,2.52669E-13,4,5,-2.671072E-13,3,4,-1.949161E-13,3.315,5,-1.666667,2.315,4,-1.666667,-2.315,4,1.666667,-2.48625,4,2.083333,-3.315,5,1.666667,-3.1575,4.5,2.5,-4,5,3.333333,-2.82875,4,2.916667,-3,4,3.333333,-3.315,5,-5,-3.166667,4.166667,-3.333333,-4,5,-3.333333,4,5,-2.671072E-13,3.315,5,1.666667,3,4,-1.949161E-13,2.82875,4,0.4166667,3.1575,4.5,0.8333334,2.48625,4,1.25,2.315,4,1.666667,3.1575,4.5,0.8333334,3,4,-1.949161E-13,3.315,5,1.666667,3.315,5,5,4,5,3.333333,5,5,5,5,5,-5,4,5,-2.671072E-13,4,5,-3.333333,3.315,5,-5,3.315,5,-1.666667,3.315,5,1.666667,-3.166667,4.166667,-3.333333,-2.863,4,-3,-4,5,-3.333333,-3.315,5,-1.666667,-2.82875,4,-2.916667,-2.9075,4.25,-2.5,-2.48625,4,-2.083333,-2.315,4,-1.666667,1.648333,1.666667,1.666667,1.916667,0.8333334,3.333333,0.8149999,0,5,-3.315,5,-5,2.481667,3.333333,-1.666667,2.75,2.5,-1.804779E-13,3.315,5,-5,3.583333,4.166667,-3.333333,-0.8149999,2.707168E-15,5,-1.648333,1.666667,1.666667,-1.916667,0.8333334,3.333333,-3.583333,4.166667,-3.333333,-2.481667,3.333333,-1.666667,-2.75,2.5,2.382308E-13,-2.481667,3.333333,-1.666667,-3.315,5,-5,-1.648333,1.666667,1.666667,4,5,3.333333,3.315,5,5,3,4,3.333333,2.315,4,5,3.315,5,-5,4,5,-3.333333,3.166667,4.166667,-3.333333,4,5,-3.333333,3.315,5,-1.666667,3.166667,4.166667,-3.333333,3.1575,4.5,-2.5,2.863,4,-3,2.82875,4,-2.916667,2.48625,4,-2.083333,2.315,4,-1.666667,-2.315,4,5,-3.315,5,5,-3,4,3.333333,-4,5,3.333333,-2.315,4,-1.666667,-2.48625,4,-1.25,-3.315,5,-1.666667,-3.1575,4.5,-0.8333334,-4,5,2.52669E-13,-2.82875,4,-0.4166667,-3,4,2.454499E-13,-3.315,5,1.666667,-4,5,3.333333,-4,5,2.52669E-13,-5,5,5,-5,5,-5,-4,5,-3.333333,-3.315,5,-5,-3.315,5,5,-3.315,5,-1.666667,4,5,3.333333,3,4,3.333333,3.315,5,1.666667,2.9075,4.25,2.5,2.315,4,1.666667,2.48625,4,2.083333,2.82875,4,2.916667 + } + PolygonVertexIndex: *318 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,59,-59,60,58,-60,61,60,-60,62,60,-62,63,65,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,85,-85,87,85,-87,88,87,-87,89,91,-91,92,94,-94,95,96,-95,97,93,-97,98,93,-98,99,101,-101,102,104,-104,105,103,-105,103,105,-107,107,106,-106,108,107,-106,107,109,-107,106,110,-104,111,113,-113,114,112,-114,115,112,-115,116,115,-115,117,116,-115,118,117,-115,119,121,-121,121,119,-123,119,123,-123,123,119,-125,122,123,-126,126,125,-124,127,121,-123,128,127,-123,128,129,-128,130,131,-123,131,132,-129,133,135,-135,136,138,-138,139,137,-139,140,142,-142,143,145,-145,146,144,-146,147,146,-146,148,146,-148,149,144,-147,150,144,-150,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,158,-158,160,158,-160,161,160,-160,162,164,-164,164,165,-164,165,164,-167,164,167,-167,168,166,-168,169,163,-166,167,164,-171,171,173,-173,174,172,-174,175,174,-174,176,174,-176,174,177,-173 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *954 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *356 { + a: -19.68504,7.181618E-13,-19.68504,19.68504,-3.208661,7.288199E-13,-13.05118,19.68504,19.68504,-1.098002E-13,-19.68504,-1.098002E-13,19.68504,19.68504,-19.68504,19.68504,13.05118,19.68504,-13.05118,19.68504,6.151614,26.07495,13.24588,26.07495,9.269601,8.001481,16.98747,4.386786,-8.536025,7.428093,-15.0067,3.813399,-11.03041,21.88687,-18.12468,21.88687,-9.269601,8.001481,-16.98747,4.386786,-6.151614,26.07495,-13.24588,26.07495,19.68504,19.68504,19.68504,5.400125E-13,-19.68504,19.68504,-19.68504,5.400125E-13,19.68504,-7.051039E-13,3.208661,-7.051039E-13,19.68504,19.68504,13.05118,19.68504,2.354928,16.75152,-4.115743,13.13683,1.107733,23.98091,-5.986535,23.98091,17.50109,18.27217,9.78322,14.65748,18.12468,21.88687,11.03041,21.88687,-1.107733,23.98091,5.986535,23.98091,-2.354928,16.75152,4.115743,13.13683,-18.12468,21.88687,-11.03041,21.88687,-17.50109,18.27217,-9.78322,14.65748,11.03041,21.88687,18.12468,21.88687,8.536025,7.428093,15.0067,3.813399,4.115743,13.13683,-3.602123,9.522134,5.986535,23.98091,-1.107733,23.98091,13.24588,26.07495,6.775211,22.46026,6.151614,26.07495,19.68504,19.68504,19.68504,-19.68504,3.208661,19.68504,-19.68504,-19.68504,-3.208661,19.68504,-19.68504,19.68504,-13.24588,26.07495,-6.151614,26.07495,-6.775211,22.46026,-19.68504,-5.400125E-13,-19.68504,19.68504,19.68504,-5.400125E-13,19.68504,19.68504,-5.986535,23.98091,1.107733,23.98091,-4.115743,13.13683,3.602123,9.522134,-2.604367,18.97881,-1.107733,24.34166,4.489901,18.97881,5.986535,24.34166,5.986535,24.34166,4.489901,18.97881,-1.107733,24.34166,-2.604367,18.97881,-9.533781,15.59136,-11.30735,15.59136,-11.03041,20.95421,-13.82923,18.27279,-18.12468,20.95421,-14.85448,15.59136,-16.62805,15.59136,13.24588,27.7291,7.398808,23.26006,6.151614,27.7291,-5.986535,24.34166,1.107733,24.34166,-4.489901,18.97881,-2.716334,18.97881,-1.691084,21.66023,0.8308001,18.97881,2.604367,18.97881,-1.691084,21.66023,-4.489901,18.97881,1.107733,24.34166,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-1.040482E-12,-15.74803,-13.12336,-13.05118,-19.68504,-13.05118,-6.56168,-13.05118,6.56168,16.87749,16.48517,15.2092,15.59136,18.12468,20.95421,11.03041,20.95421,14.85448,15.59136,13.45507,16.93207,11.30735,15.59136,9.533781,15.59136,6.489501,-2.934472,7.545932,-10.27065,3.208661,-17.60683,-13.05118,26.41025,9.770341,11.73789,10.82677,4.401709,13.05118,26.41025,14.10761,19.07407,-3.208661,-17.60683,-6.489501,-2.934472,-7.545932,-10.27065,-14.10761,19.07407,-9.770341,11.73789,-10.82677,4.401709,-9.770341,11.73789,-13.05118,26.41025,-6.489501,-2.934472,6.151614,27.7291,13.24588,27.7291,7.648247,22.36625,14.74252,22.36625,-13.24588,27.7291,-6.151614,27.7291,-7.398808,23.26006,-18.12468,20.95421,-11.03041,20.95421,-16.87749,16.48517,-13.82923,18.27279,-15.2092,15.59136,-14.85448,15.59136,-11.30735,15.59136,-9.533781,15.59136,-14.74252,22.36625,-13.24588,27.7291,-7.648247,22.36625,-6.151614,27.7291,2.604367,18.97881,0.8308001,18.97881,1.107733,24.34166,-1.691084,21.66023,-5.986535,24.34166,-2.716334,18.97881,-4.489901,18.97881,13.05118,6.56168,15.74803,13.12336,15.74803,1.001016E-12,19.68504,19.68504,19.68504,-19.68504,15.74803,-13.12336,13.05118,-19.68504,13.05118,19.68504,13.05118,-6.56168,18.12468,20.95421,16.62805,15.59136,11.03041,20.95421,13.45507,16.93207,9.533781,15.59136,11.30735,15.59136,14.85448,15.59136 + } + UVIndex: *318 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,59,58,60,58,59,61,60,59,62,60,61,63,65,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,85,84,87,85,86,88,87,86,89,91,90,92,94,93,95,96,94,97,93,96,98,93,97,99,101,100,102,104,103,105,103,104,103,105,106,107,106,105,108,107,105,107,109,106,106,110,103,111,113,112,114,112,113,115,112,114,116,115,114,117,116,114,118,117,114,119,121,120,121,119,122,119,123,122,123,119,124,122,123,125,126,125,123,127,121,122,128,127,122,128,129,127,130,131,122,131,132,128,133,135,134,136,138,137,139,137,138,140,142,141,143,145,144,146,144,145,147,146,145,148,146,147,149,144,146,150,144,149,151,153,152,154,152,153,155,157,156,158,156,157,159,158,157,160,158,159,161,160,159,162,164,163,164,165,163,165,164,166,164,167,166,168,166,167,169,163,165,167,164,170,171,173,172,174,172,173,175,174,173,176,174,175,174,177,172 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *106 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockSlopeHalfWalls_rock, Model::RootNode + C: "OO",4910971246698027199,0 + + ;Geometry::, Model::Mesh cliff_blockSlopeHalfWalls_rock + C: "OO",4617043975600982682,4910971246698027199 + + ;Material::dirt, Model::Mesh cliff_blockSlopeHalfWalls_rock + C: "OO",3020,4910971246698027199 + + ;Material::grass, Model::Mesh cliff_blockSlopeHalfWalls_rock + C: "OO",3024,4910971246698027199 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_rock.fbx.import new file mode 100644 index 0000000..90cb13f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bd4fxpd8k6tao" +path="res://.godot/imported/cliff_blockSlopeHalfWalls_rock.fbx-f9c9cc51fd5f972fe4f8fb08b879fe96.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_rock.fbx" +dest_files=["res://.godot/imported/cliff_blockSlopeHalfWalls_rock.fbx-f9c9cc51fd5f972fe4f8fb08b879fe96.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_stone.fbx new file mode 100644 index 0000000..805b238 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 790 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockSlopeHalfWalls_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockSlopeHalfWalls_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5176676431149930892, "Model::cliff_blockSlopeHalfWalls_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4799314887381866352, "Geometry::", "Mesh" { + Vertices: *534 { + a: -5,0,5,-5,5,5,-0.8149999,2.707168E-15,5,-3.315,5,5,-5,0,-5,5,0,-5,-5,5,-5,5,5,-5,-3.315,5,-5,3.315,5,-5,4,5,3.333333,3.315,5,5,1.916667,0.8333334,3.333333,0.8149999,0,5,-1.648333,1.666667,1.666667,-1.916667,0.8333334,3.333333,-3.315,5,1.666667,-4,5,3.333333,-1.916667,0.8333334,3.333333,-0.8149999,2.707168E-15,5,-4,5,3.333333,-3.315,5,5,5,5,-5,5,0,-5,5,5,5,5,0,5,5,0,5,0.8149999,0,5,5,5,5,3.315,5,5,-2.481667,3.333333,-1.666667,-2.75,2.5,2.310117E-13,-3.315,5,-1.666667,-4,5,2.598881E-13,-4,5,-3.333333,-3.583333,4.166667,-3.333333,-3.315,5,-1.666667,-2.481667,3.333333,-1.666667,3.315,5,-1.666667,4,5,-2.598881E-13,2.481667,3.333333,-1.666667,2.75,2.5,-1.732587E-13,4,5,-3.333333,3.315,5,-1.666667,3.583333,4.166667,-3.333333,2.481667,3.333333,-1.666667,3.315,5,1.666667,4,5,3.333333,1.648333,1.666667,1.666667,1.916667,0.8333334,3.333333,-2.75,2.5,2.310117E-13,-1.648333,1.666667,1.666667,-4,5,2.598881E-13,-3.315,5,1.666667,-4,5,-3.333333,-3.315,5,-5,-3.583333,4.166667,-3.333333,5,0,5,5,0,-5,0.8149999,0,5,-5,0,-5,-0.8149999,2.707168E-15,5,-5,0,5,3.315,5,-5,4,5,-3.333333,3.583333,4.166667,-3.333333,-5,0,-5,-5,5,-5,-5,0,5,-5,5,5,4,5,-2.598881E-13,3.315,5,1.666667,2.75,2.5,-1.732587E-13,1.648333,1.666667,1.666667,-2.315,4,1.666667,-3.315,5,1.666667,-3,4,2.454499E-13,-4,5,2.598881E-13,4,5,-2.598881E-13,3,4,-2.021352E-13,3.315,5,-1.666667,2.315,4,-1.666667,-2.315,4,1.666667,-2.48625,4,2.083333,-3.315,5,1.666667,-3.1575,4.5,2.5,-4,5,3.333333,-2.82875,4,2.916667,-3,4,3.333333,-3.315,5,-5,-3.166667,4.166667,-3.333333,-4,5,-3.333333,4,5,-2.598881E-13,3.315,5,1.666667,3,4,-2.021352E-13,2.82875,4,0.4166667,3.1575,4.5,0.8333334,2.48625,4,1.25,2.315,4,1.666667,3.1575,4.5,0.8333334,3,4,-2.021352E-13,3.315,5,1.666667,3.315,5,5,4,5,3.333333,5,5,5,5,5,-5,4,5,-2.598881E-13,4,5,-3.333333,3.315,5,-5,3.315,5,-1.666667,3.315,5,1.666667,-3.166667,4.166667,-3.333333,-2.863,4,-3,-4,5,-3.333333,-3.315,5,-1.666667,-2.82875,4,-2.916667,-2.9075,4.25,-2.5,-2.48625,4,-2.083333,-2.315,4,-1.666667,1.648333,1.666667,1.666667,1.916667,0.8333334,3.333333,0.8149999,0,5,-3.315,5,-5,2.481667,3.333333,-1.666667,2.75,2.5,-1.732587E-13,3.315,5,-5,3.583333,4.166667,-3.333333,-0.8149999,2.707168E-15,5,-1.648333,1.666667,1.666667,-1.916667,0.8333334,3.333333,-3.583333,4.166667,-3.333333,-2.481667,3.333333,-1.666667,-2.75,2.5,2.310117E-13,-2.481667,3.333333,-1.666667,-3.315,5,-5,-1.648333,1.666667,1.666667,4,5,3.333333,3.315,5,5,3,4,3.333333,2.315,4,5,3.315,5,-5,4,5,-3.333333,3.166667,4.166667,-3.333333,4,5,-3.333333,3.315,5,-1.666667,3.166667,4.166667,-3.333333,3.1575,4.5,-2.5,2.863,4,-3,2.82875,4,-2.916667,2.48625,4,-2.083333,2.315,4,-1.666667,-2.315,4,5,-3.315,5,5,-3,4,3.333333,-4,5,3.333333,-2.315,4,-1.666667,-2.48625,4,-1.25,-3.315,5,-1.666667,-3.1575,4.5,-0.8333334,-4,5,2.598881E-13,-2.82875,4,-0.4166667,-3,4,2.454499E-13,-3.315,5,1.666667,-4,5,3.333333,-4,5,2.598881E-13,-5,5,5,-5,5,-5,-4,5,-3.333333,-3.315,5,-5,-3.315,5,5,-3.315,5,-1.666667,4,5,3.333333,3,4,3.333333,3.315,5,1.666667,2.9075,4.25,2.5,2.315,4,1.666667,2.48625,4,2.083333,2.82875,4,2.916667 + } + PolygonVertexIndex: *318 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,59,-59,60,58,-60,61,60,-60,62,60,-62,63,65,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,85,-85,87,85,-87,88,87,-87,89,91,-91,92,94,-94,95,96,-95,97,93,-97,98,93,-98,99,101,-101,102,104,-104,105,103,-105,103,105,-107,107,106,-106,108,107,-106,107,109,-107,106,110,-104,111,113,-113,114,112,-114,115,112,-115,116,115,-115,117,116,-115,118,117,-115,119,121,-121,121,119,-123,119,123,-123,123,119,-125,122,123,-126,126,125,-124,127,121,-123,128,127,-123,128,129,-128,130,131,-123,131,132,-129,133,135,-135,136,138,-138,139,137,-139,140,142,-142,143,145,-145,146,144,-146,147,146,-146,148,146,-148,149,144,-147,150,144,-150,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,158,-158,160,158,-160,161,160,-160,162,164,-164,164,165,-164,165,164,-167,164,167,-167,168,166,-168,169,163,-166,167,164,-171,171,173,-173,174,172,-174,175,174,-174,176,174,-176,174,177,-173 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *954 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,-0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0.8395003,0.4197502,0.3450346,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *356 { + a: -19.68504,7.181618E-13,-19.68504,19.68504,-3.208661,7.288199E-13,-13.05118,19.68504,19.68504,-1.098002E-13,-19.68504,-1.098002E-13,19.68504,19.68504,-19.68504,19.68504,13.05118,19.68504,-13.05118,19.68504,6.151614,26.07495,13.24588,26.07495,9.269601,8.001481,16.98747,4.386786,-8.536025,7.428093,-15.0067,3.813399,-11.03041,21.88687,-18.12468,21.88687,-9.269601,8.001481,-16.98747,4.386786,-6.151614,26.07495,-13.24588,26.07495,19.68504,19.68504,19.68504,5.400125E-13,-19.68504,19.68504,-19.68504,5.400125E-13,19.68504,-7.051039E-13,3.208661,-7.051039E-13,19.68504,19.68504,13.05118,19.68504,2.354928,16.75152,-4.115743,13.13683,1.107733,23.98091,-5.986535,23.98091,18.12468,21.88687,17.50109,18.27217,11.03041,21.88687,9.78322,14.65748,-1.107733,23.98091,5.986535,23.98091,-2.354928,16.75152,4.115743,13.13683,-18.12468,21.88687,-11.03041,21.88687,-17.50109,18.27217,-9.78322,14.65748,11.03041,21.88687,18.12468,21.88687,8.536025,7.428093,15.0067,3.813399,4.115743,13.13683,-3.602123,9.522134,5.986535,23.98091,-1.107733,23.98091,6.151614,26.07495,13.24588,26.07495,6.775211,22.46026,19.68504,19.68504,19.68504,-19.68504,3.208661,19.68504,-19.68504,-19.68504,-3.208661,19.68504,-19.68504,19.68504,-13.24588,26.07495,-6.151614,26.07495,-6.775211,22.46026,-19.68504,-5.400125E-13,-19.68504,19.68504,19.68504,-5.400125E-13,19.68504,19.68504,-5.986535,23.98091,1.107733,23.98091,-4.115743,13.13683,3.602123,9.522134,-2.604367,18.97881,-1.107733,24.34166,4.489901,18.97881,5.986535,24.34166,5.986535,24.34166,4.489901,18.97881,-1.107733,24.34166,-2.604367,18.97881,-9.533781,15.59136,-11.30735,15.59136,-11.03041,20.95421,-13.82923,18.27279,-18.12468,20.95421,-14.85448,15.59136,-16.62805,15.59136,13.24588,27.7291,7.398808,23.26006,6.151614,27.7291,-5.986535,24.34166,1.107733,24.34166,-4.489901,18.97881,-2.716334,18.97881,-1.691084,21.66023,0.8308001,18.97881,2.604367,18.97881,-1.691084,21.66023,-4.489901,18.97881,1.107733,24.34166,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-1.01206E-12,-15.74803,-13.12336,-13.05118,-19.68504,-13.05118,-6.56168,-13.05118,6.56168,16.87749,16.48517,15.2092,15.59136,18.12468,20.95421,11.03041,20.95421,14.85448,15.59136,13.45507,16.93207,11.30735,15.59136,9.533781,15.59136,6.489501,-2.934472,7.545932,-10.27065,3.208661,-17.60683,-13.05118,26.41025,9.770341,11.73789,10.82677,4.401709,13.05118,26.41025,14.10761,19.07407,-3.208661,-17.60683,-6.489501,-2.934472,-7.545932,-10.27065,-14.10761,19.07407,-9.770341,11.73789,-10.82677,4.401709,-9.770341,11.73789,-13.05118,26.41025,-6.489501,-2.934472,6.151614,27.7291,13.24588,27.7291,7.648247,22.36625,14.74252,22.36625,-13.24588,27.7291,-6.151614,27.7291,-7.398808,23.26006,-18.12468,20.95421,-11.03041,20.95421,-16.87749,16.48517,-13.82923,18.27279,-15.2092,15.59136,-14.85448,15.59136,-11.30735,15.59136,-9.533781,15.59136,-14.74252,22.36625,-13.24588,27.7291,-7.648247,22.36625,-6.151614,27.7291,2.604367,18.97881,0.8308001,18.97881,1.107733,24.34166,-1.691084,21.66023,-5.986535,24.34166,-2.716334,18.97881,-4.489901,18.97881,13.05118,6.56168,15.74803,13.12336,15.74803,1.029437E-12,19.68504,19.68504,19.68504,-19.68504,15.74803,-13.12336,13.05118,-19.68504,13.05118,19.68504,13.05118,-6.56168,18.12468,20.95421,16.62805,15.59136,11.03041,20.95421,13.45507,16.93207,9.533781,15.59136,11.30735,15.59136,14.85448,15.59136 + } + UVIndex: *318 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,59,58,60,58,59,61,60,59,62,60,61,63,65,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,85,84,87,85,86,88,87,86,89,91,90,92,94,93,95,96,94,97,93,96,98,93,97,99,101,100,102,104,103,105,103,104,103,105,106,107,106,105,108,107,105,107,109,106,106,110,103,111,113,112,114,112,113,115,112,114,116,115,114,117,116,114,118,117,114,119,121,120,121,119,122,119,123,122,123,119,124,122,123,125,126,125,123,127,121,122,128,127,122,128,129,127,130,131,122,131,132,128,133,135,134,136,138,137,139,137,138,140,142,141,143,145,144,146,144,145,147,146,145,148,146,147,149,144,146,150,144,149,151,153,152,154,152,153,155,157,156,158,156,157,159,158,157,160,158,159,161,160,159,162,164,163,164,165,163,165,164,166,164,167,166,168,166,167,169,163,165,167,164,170,171,173,172,174,172,173,175,174,173,176,174,175,174,177,172 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *106 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockSlopeHalfWalls_stone, Model::RootNode + C: "OO",5176676431149930892,0 + + ;Geometry::, Model::Mesh cliff_blockSlopeHalfWalls_stone + C: "OO",4799314887381866352,5176676431149930892 + + ;Material::stone, Model::Mesh cliff_blockSlopeHalfWalls_stone + C: "OO",3038,5176676431149930892 + + ;Material::grass, Model::Mesh cliff_blockSlopeHalfWalls_stone + C: "OO",3024,5176676431149930892 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_stone.fbx.import new file mode 100644 index 0000000..21af8e8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bkf4hwuj7yr4e" +path="res://.godot/imported/cliff_blockSlopeHalfWalls_stone.fbx-f4a445100db4de43192ae6b45a414fcb.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeHalfWalls_stone.fbx" +dest_files=["res://.godot/imported/cliff_blockSlopeHalfWalls_stone.fbx-f4a445100db4de43192ae6b45a414fcb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_rock.fbx new file mode 100644 index 0000000..2b68364 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 886 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockSlopeWalls_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockSlopeWalls_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5499597248394334229, "Model::cliff_blockSlopeWalls_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5658827453752737290, "Geometry::", "Mesh" { + Vertices: *537 { + a: -3.315,0,5,-5,0,5,-3.315,10,5,-5,10,5,5,10,-5,5,0,-5,5,10,5,5,0,5,-5,10,-5,3.315,10,-5,-3.315,10,-5,5,10,-5,5,0,-5,-5,0,-5,4,1.666667,3.333333,4,10,3.333333,3.315,0,5,3.315,10,5,4,10,-3.333333,3.315,10,-1.666667,4,8.333333,-3.333333,3.315,6.666667,-1.666667,3.315,10,-5,4,10,-3.333333,4,8.333333,-3.333333,5,0,5,5,0,-5,3.315,0,5,-5,0,-5,-3.315,0,5,-5,0,5,4,5,-9.685714E-08,4,10,-9.685713E-08,3.315,3.333333,1.666667,3.315,10,1.666667,-3.315,6.666667,-1.666667,-4,5,8.195595E-08,-3.315,10,-1.666667,-4,10,8.195593E-08,-4,8.333333,-3.333333,-3.315,6.666667,-1.666667,-4,10,-3.333333,-3.315,10,-1.666667,-4,10,3.333333,-4,1.666667,3.333333,-3.315,10,5,-3.315,0,5,-4,10,8.195593E-08,-4,5,8.195595E-08,-3.315,10,1.666667,-3.315,3.333333,1.666667,3.315,6.666667,-1.666667,3.315,10,-1.666667,4,5,-9.685714E-08,4,10,-9.685713E-08,-3.315,10,1.666667,-3.315,3.333333,1.666667,-4,10,3.333333,-4,1.666667,3.333333,5,0,5,3.315,0,5,5,10,5,3.315,10,5,-5,0,-5,-5,10,-5,-5,0,5,-5,10,5,3.315,3.333333,1.666667,3.315,10,1.666667,4,1.666667,3.333333,4,10,3.333333,-3.315,10,-5,-4,8.333333,-3.333333,-4,10,-3.333333,4,10,-9.685713E-08,3,9,-8.195607E-08,3.315,10,-1.666667,2.315,9,-1.666667,4,10,-3.333333,3.315,10,-1.666667,3,9,-3.333333,2.82875,9,-2.916667,3.1575,9.499999,-2.5,2.48625,9,-2.083333,2.315,9,-1.666667,3.1575,9.499999,-2.5,3,9,-3.333333,3.315,10,-1.666667,-2.315,9,5,-3.315,10,5,-3,9,3.333333,-4,10,3.333333,4,10,3.333333,3,9,3.333333,3.315,10,1.666667,2.9075,9.25,2.5,2.315,9,1.666667,2.48625,9,2.083333,2.82875,9,2.916667,-3.315,10,1.666667,-4,10,3.333333,-4,10,8.195593E-08,-5,10,5,-3.315,10,5,-4,10,-3.333333,-3.315,10,-1.666667,-5,10,-5,-3.315,10,-5,4,10,-9.685713E-08,3.315,10,1.666667,3,9,-8.195607E-08,3.1575,9.499999,0.8333333,2.82875,9,0.4166666,2.48625,9,1.25,2.315,9,1.666667,-3.315,10,-5,-2.726,9,-4,-4,10,-3.333333,-3,9,-3.333333,3.315,10,5,4,10,3.333333,5,10,5,5,10,-5,4,10,-9.685713E-08,4,10,-3.333333,3.315,10,-5,3.315,10,-1.666667,3.315,10,1.666667,-2.82875,9,-2.916667,-2.9075,9.25,-2.5,-3,9,-3.333333,-3.315,10,-1.666667,-2.48625,9,-2.083333,-2.315,9,-1.666667,-4,10,-3.333333,-2.315,9,1.666667,-3.315,10,1.666667,-3,9,5.215373E-08,-4,10,8.195593E-08,4,10,3.333333,3.315,10,5,3,9,3.333333,2.315,9,5,4,5,-9.685714E-08,3.315,3.333333,1.666667,3.315,6.666667,-1.666667,-3.315,0,5,3.315,0,5,4,1.666667,3.333333,3.315,10,-5,4,8.333333,-3.333333,-3.315,10,-5,-4,8.333333,-3.333333,-3.315,6.666667,-1.666667,-3.315,3.333333,1.666667,-4,5,8.195595E-08,-4,1.666667,3.333333,-3.315,3.333333,1.666667,-3.315,10,-5,-3.315,0,5,-3.315,6.666667,-1.666667,-2.315,9,-1.666667,-2.48625,9,-1.25,-3.315,10,-1.666667,-3.1575,9.499999,-0.8333333,-4,10,8.195593E-08,-2.82875,9,-0.4166666,-3,9,5.215373E-08,4,10,-3.333333,3,9,-3.333333,3.315,10,-5,2.726,9,-4,-2.315,9,1.666667,-2.48625,9,2.083333,-3.315,10,1.666667,-3.1575,9.499999,2.5,-4,10,3.333333,-2.82875,9,2.916667,-3,9,3.333333 + } + PolygonVertexIndex: *318 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,9,11,-9,11,12,-9,13,8,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,27,-27,28,26,-28,29,28,-28,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,76,-76,77,75,-77,78,80,-80,81,82,-81,83,79,-83,84,79,-84,85,87,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,95,-95,97,95,-97,95,98,-94,99,101,-101,101,102,-101,103,100,-103,104,102,-102,105,104,-102,102,104,-107,107,106,-105,108,110,-110,111,109,-111,112,111,-111,113,109,-112,114,109,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,120,122,-124,124,123,-123,125,124,-123,124,126,-124,123,127,-121,128,130,-130,130,131,-130,129,131,-133,133,132,-132,134,131,-131,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,145,-145,145,146,-145,146,147,-145,148,144,-148,149,146,-146,150,149,-146,151,146,-150,152,153,-152,153,155,-155,154,156,-147,157,159,-159,160,157,-159,161,163,-163,164,162,-164,165,164,-164,166,164,-166,167,166,-166,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,175,-175,177,175,-177,178,177,-177 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *954 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *358 { + a: -13.05118,7.33325E-08,-19.68504,7.33325E-08,-13.05118,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,2.842171E-14,-19.68504,39.37008,-19.68504,2.842171E-14,19.68504,39.37008,-13.05118,39.37008,13.05118,39.37008,-19.68504,39.37008,-19.68504,-5.902144E-24,19.68504,-5.902144E-24,6.151614,6.56168,6.151614,39.37008,13.24588,-9.091711E-17,13.24588,39.37008,-18.12468,39.37008,-11.03042,39.37008,-18.12468,32.8084,-11.03042,26.24672,-13.24588,39.37008,-6.151614,39.37008,-6.151614,32.8084,19.68504,19.68504,19.68504,-19.68504,13.05118,19.68504,-19.68504,-19.68504,-13.05118,19.68504,-19.68504,19.68504,-5.986535,19.68504,-5.986535,39.37008,1.107733,13.12336,1.107733,39.37008,1.107734,26.24672,-5.986535,19.68504,1.107734,39.37008,-5.986535,39.37008,18.12468,32.8084,11.03042,26.24672,18.12468,39.37008,11.03042,39.37008,-6.151614,39.37008,-6.151614,6.56168,-13.24588,39.37008,-13.24588,-1.281931E-14,5.986535,39.37008,5.986535,19.68504,-1.107733,39.37008,-1.107733,13.12336,-1.107734,26.24672,-1.107734,39.37008,5.986535,19.68504,5.986535,39.37008,-11.03041,39.37008,-11.03041,13.12336,-18.12468,39.37008,-18.12468,6.56168,19.68504,1.421085E-14,13.05118,1.421085E-14,19.68504,39.37008,13.05118,39.37008,-19.68504,-7.33325E-08,-19.68504,39.37008,19.68504,-7.33325E-08,19.68504,39.37008,11.03041,13.12336,11.03041,39.37008,18.12468,6.56168,18.12468,39.37008,13.24588,39.37008,6.151614,32.8084,6.151614,39.37008,5.986535,38.79296,4.489901,33.43011,-1.107734,38.79296,-2.604367,33.43011,-18.12468,35.40551,-11.03042,35.40551,-16.62805,30.04266,-14.85448,30.04266,-13.82923,32.72409,-11.30735,30.04266,-9.533781,30.04266,-13.82923,32.72409,-16.62805,30.04266,-11.03042,35.40551,-14.74252,36.81756,-13.24588,42.1804,-7.648247,36.81756,-6.151614,42.1804,18.12468,35.40551,16.62805,30.04266,11.03041,35.40551,13.45507,31.38338,9.533781,30.04266,11.30735,30.04266,14.85448,30.04266,13.05118,6.56168,15.74803,13.12336,15.74803,3.226612E-07,19.68504,19.68504,13.05118,19.68504,15.74803,-13.12336,13.05118,-6.561679,19.68504,-19.68504,13.05118,-19.68504,-5.986535,38.79296,1.107733,38.79296,-4.489901,33.43011,-1.691084,36.11153,-2.716334,33.43011,0.8308,33.43011,2.604367,33.43011,13.24588,42.1804,10.48596,36.81756,6.151614,42.1804,7.648248,36.81756,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-3.813273E-07,-15.74803,-13.12336,-13.05118,-19.68504,-13.05118,-6.56168,-13.05118,6.561679,14.85448,30.04266,13.45507,31.38338,16.62805,30.04266,11.03042,35.40551,11.30735,30.04266,9.533781,30.04266,18.12468,35.40551,-2.604367,33.43011,-1.107733,38.79296,4.489901,33.43011,5.986535,38.79296,6.151614,42.1804,13.24588,42.1804,7.648247,36.81756,14.74252,36.81756,15.74803,13.91943,13.05118,4.639808,13.05118,23.19904,-13.05118,-13.91943,13.05118,-13.91943,15.74803,-4.639808,13.05118,41.75827,15.74803,32.47866,-13.05118,41.75827,-15.74803,32.47866,-13.05118,23.19904,-13.05118,4.639808,-15.74803,13.91943,-15.74803,-4.639808,-13.05118,4.639808,-13.05118,41.75827,-13.05118,-13.91943,-13.05118,23.19904,2.604367,33.43011,0.8308002,33.43011,1.107734,38.79296,-1.691084,36.11153,-5.986535,38.79296,-2.716334,33.43011,-4.489901,33.43011,-6.151614,42.1804,-7.648248,36.81756,-13.24588,42.1804,-10.48596,36.81756,-9.533781,30.04266,-11.30735,30.04266,-11.03041,35.40551,-13.82923,32.72409,-18.12468,35.40551,-14.85448,30.04266,-16.62805,30.04266 + } + UVIndex: *318 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,9,11,8,11,12,8,13,8,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,27,26,28,26,27,29,28,27,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,76,75,77,75,76,78,80,79,81,82,80,83,79,82,84,79,83,85,87,86,88,90,89,91,89,90,92,94,93,95,93,94,96,95,94,97,95,96,95,98,93,99,101,100,101,102,100,103,100,102,104,102,101,105,104,101,102,104,106,107,106,104,108,110,109,111,109,110,112,111,110,113,109,111,114,109,113,115,117,116,118,116,117,119,121,120,122,120,121,120,122,123,124,123,122,125,124,122,124,126,123,123,127,120,128,130,129,130,131,129,129,131,132,133,132,131,134,131,130,135,137,136,138,136,137,139,141,140,142,140,141,143,145,144,145,146,144,146,147,144,148,144,147,149,146,145,150,149,145,151,146,149,152,153,151,153,155,154,154,156,146,157,159,158,160,157,158,161,163,162,164,162,163,165,164,163,166,164,165,167,166,165,168,170,169,171,169,170,172,174,173,175,173,174,176,175,174,177,175,176,178,177,176 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *106 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockSlopeWalls_rock, Model::RootNode + C: "OO",5499597248394334229,0 + + ;Geometry::, Model::Mesh cliff_blockSlopeWalls_rock + C: "OO",5658827453752737290,5499597248394334229 + + ;Material::dirt, Model::Mesh cliff_blockSlopeWalls_rock + C: "OO",3020,5499597248394334229 + + ;Material::grass, Model::Mesh cliff_blockSlopeWalls_rock + C: "OO",3024,5499597248394334229 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_rock.fbx.import new file mode 100644 index 0000000..5391d03 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cb1afkohno30f" +path="res://.godot/imported/cliff_blockSlopeWalls_rock.fbx-6aba4bd797443db1545fffce70850e14.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_rock.fbx" +dest_files=["res://.godot/imported/cliff_blockSlopeWalls_rock.fbx-6aba4bd797443db1545fffce70850e14.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_stone.fbx new file mode 100644 index 0000000..67aea5c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 981 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockSlopeWalls_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockSlopeWalls_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4625265616017733699, "Model::cliff_blockSlopeWalls_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5406210885547269442, "Geometry::", "Mesh" { + Vertices: *537 { + a: -3.315,0,5,-5,0,5,-3.315,10,5,-5,10,5,5,10,-5,5,0,-5,5,10,5,5,0,5,-5,10,-5,3.315,10,-5,-3.315,10,-5,5,10,-5,5,0,-5,-5,0,-5,4,1.666667,3.333333,4,10,3.333333,3.315,0,5,3.315,10,5,4,8.333333,-3.333333,4,10,-3.333333,3.315,6.666667,-1.666667,3.315,10,-1.666667,4,8.333333,-3.333333,3.315,10,-5,4,10,-3.333333,5,0,5,5,0,-5,3.315,0,5,-5,0,-5,-3.315,0,5,-5,0,5,4,5,-9.685714E-08,4,10,-9.685712E-08,3.315,3.333333,1.666667,3.315,10,1.666667,-3.315,10,-1.666667,-3.315,6.666667,-1.666667,-4,10,8.195595E-08,-4,5,8.195595E-08,-4,8.333333,-3.333333,-3.315,6.666667,-1.666667,-4,10,-3.333333,-3.315,10,-1.666667,-4,10,3.333333,-4,1.666667,3.333333,-3.315,10,5,-3.315,0,5,-4,10,8.195595E-08,-4,5,8.195595E-08,-3.315,10,1.666667,-3.315,3.333333,1.666667,3.315,6.666667,-1.666667,3.315,10,-1.666667,4,5,-9.685714E-08,4,10,-9.685712E-08,-3.315,10,1.666667,-3.315,3.333333,1.666667,-4,10,3.333333,-4,1.666667,3.333333,5,0,5,3.315,0,5,5,10,5,3.315,10,5,-5,0,-5,-5,10,-5,-5,0,5,-5,10,5,3.315,3.333333,1.666667,3.315,10,1.666667,4,1.666667,3.333333,4,10,3.333333,-3.315,10,-5,-4,8.333333,-3.333333,-4,10,-3.333333,4,10,-9.685712E-08,3,9,-8.195606E-08,3.315,10,-1.666667,2.315,9,-1.666667,4,10,-3.333333,3.315,10,-1.666667,3,9,-3.333333,2.82875,9,-2.916667,3.1575,9.499999,-2.5,2.48625,9,-2.083333,2.315,9,-1.666667,3.1575,9.499999,-2.5,3,9,-3.333333,3.315,10,-1.666667,-2.315,9,5,-3.315,10,5,-3,9,3.333333,-4,10,3.333333,4,10,3.333333,3,9,3.333333,3.315,10,1.666667,2.9075,9.25,2.5,2.315,9,1.666667,2.48625,9,2.083333,2.82875,9,2.916667,-3.315,10,1.666667,-4,10,3.333333,-4,10,8.195595E-08,-5,10,5,-3.315,10,5,-4,10,-3.333333,-3.315,10,-1.666667,-5,10,-5,-3.315,10,-5,4,10,-9.685712E-08,3.315,10,1.666667,3,9,-8.195606E-08,3.1575,9.499999,0.8333333,2.82875,9,0.4166666,2.48625,9,1.25,2.315,9,1.666667,-3.315,10,-5,-2.726,9,-4,-4,10,-3.333333,-3,9,-3.333333,3.315,10,5,4,10,3.333333,5,10,5,5,10,-5,4,10,-9.685712E-08,4,10,-3.333333,3.315,10,-5,3.315,10,-1.666667,3.315,10,1.666667,-2.82875,9,-2.916667,-2.9075,9.25,-2.5,-3,9,-3.333333,-3.315,10,-1.666667,-2.48625,9,-2.083333,-2.315,9,-1.666667,-4,10,-3.333333,-2.315,9,1.666667,-3.315,10,1.666667,-3,9,5.215374E-08,-4,10,8.195595E-08,4,10,3.333333,3.315,10,5,3,9,3.333333,2.315,9,5,4,5,-9.685714E-08,3.315,3.333333,1.666667,3.315,6.666667,-1.666667,-3.315,0,5,3.315,0,5,4,1.666667,3.333333,3.315,10,-5,4,8.333333,-3.333333,-3.315,10,-5,-4,8.333333,-3.333333,-3.315,6.666667,-1.666667,-3.315,3.333333,1.666667,-4,5,8.195595E-08,-4,1.666667,3.333333,-3.315,3.333333,1.666667,-3.315,10,-5,-3.315,0,5,-3.315,6.666667,-1.666667,-2.315,9,-1.666667,-2.48625,9,-1.25,-3.315,10,-1.666667,-3.1575,9.499999,-0.8333333,-4,10,8.195595E-08,-2.82875,9,-0.4166666,-3,9,5.215374E-08,4,10,-3.333333,3,9,-3.333333,3.315,10,-5,2.726,9,-4,-2.315,9,1.666667,-2.48625,9,2.083333,-3.315,10,1.666667,-3.1575,9.499999,2.5,-4,10,3.333333,-2.82875,9,2.916667,-3,9,3.333333 + } + PolygonVertexIndex: *318 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,9,11,-9,11,12,-9,13,8,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,27,-27,28,26,-28,29,28,-28,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,76,-76,77,75,-77,78,80,-80,81,82,-81,83,79,-83,84,79,-84,85,87,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,95,-95,97,95,-97,95,98,-94,99,101,-101,101,102,-101,103,100,-103,104,102,-102,105,104,-102,102,104,-107,107,106,-105,108,110,-110,111,109,-111,112,111,-111,113,109,-112,114,109,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,120,122,-124,124,123,-123,125,124,-123,124,126,-124,123,127,-121,128,130,-130,130,131,-130,129,131,-133,133,132,-132,134,131,-131,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,145,-145,145,146,-145,146,147,-145,148,144,-148,149,146,-146,150,149,-146,151,146,-150,152,153,-152,153,155,-155,154,156,-147,157,159,-159,160,157,-159,161,163,-163,164,162,-164,165,164,-164,166,164,-166,167,166,-166,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,175,-175,177,175,-177,178,177,-177 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *954 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743,0.6790131,0.6790131,0.2790743 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *358 { + a: -13.05118,7.33325E-08,-19.68504,7.33325E-08,-13.05118,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,2.842171E-14,-19.68504,39.37008,-19.68504,2.842171E-14,19.68504,39.37008,-13.05118,39.37008,13.05118,39.37008,-19.68504,39.37008,-19.68504,-5.902144E-24,19.68504,-5.902144E-24,6.151614,6.56168,6.151614,39.37008,13.24588,-9.091711E-17,13.24588,39.37008,-18.12468,32.8084,-18.12468,39.37008,-11.03042,26.24672,-11.03042,39.37008,-6.151614,32.8084,-13.24588,39.37008,-6.151614,39.37008,19.68504,19.68504,19.68504,-19.68504,13.05118,19.68504,-19.68504,-19.68504,-13.05118,19.68504,-19.68504,19.68504,-5.986535,19.68504,-5.986535,39.37008,1.107733,13.12336,1.107733,39.37008,1.107734,39.37008,1.107734,26.24672,-5.986535,39.37008,-5.986535,19.68504,18.12468,32.8084,11.03042,26.24672,18.12468,39.37008,11.03042,39.37008,-6.151614,39.37008,-6.151614,6.56168,-13.24588,39.37008,-13.24588,-1.281931E-14,5.986535,39.37008,5.986535,19.68504,-1.107733,39.37008,-1.107733,13.12336,-1.107734,26.24672,-1.107734,39.37008,5.986535,19.68504,5.986535,39.37008,-11.03041,39.37008,-11.03041,13.12336,-18.12468,39.37008,-18.12468,6.56168,19.68504,1.421085E-14,13.05118,1.421085E-14,19.68504,39.37008,13.05118,39.37008,-19.68504,-7.33325E-08,-19.68504,39.37008,19.68504,-7.33325E-08,19.68504,39.37008,11.03041,13.12336,11.03041,39.37008,18.12468,6.56168,18.12468,39.37008,13.24588,39.37008,6.151614,32.8084,6.151614,39.37008,5.986535,38.79296,4.489901,33.43011,-1.107734,38.79296,-2.604367,33.43011,-18.12468,35.40551,-11.03042,35.40551,-16.62805,30.04266,-14.85448,30.04266,-13.82923,32.72409,-11.30735,30.04266,-9.533781,30.04266,-13.82923,32.72409,-16.62805,30.04266,-11.03042,35.40551,-14.74252,36.81756,-13.24588,42.1804,-7.648247,36.81756,-6.151614,42.1804,18.12468,35.40551,16.62805,30.04266,11.03041,35.40551,13.45507,31.38338,9.533781,30.04266,11.30735,30.04266,14.85448,30.04266,13.05118,6.56168,15.74803,13.12336,15.74803,3.226612E-07,19.68504,19.68504,13.05118,19.68504,15.74803,-13.12336,13.05118,-6.561679,19.68504,-19.68504,13.05118,-19.68504,-5.986535,38.79296,1.107733,38.79296,-4.489901,33.43011,-1.691084,36.11153,-2.716334,33.43011,0.8308,33.43011,2.604367,33.43011,13.24588,42.1804,10.48596,36.81756,6.151614,42.1804,7.648248,36.81756,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-3.813273E-07,-15.74803,-13.12336,-13.05118,-19.68504,-13.05118,-6.56168,-13.05118,6.561679,14.85448,30.04266,13.45507,31.38338,16.62805,30.04266,11.03042,35.40551,11.30735,30.04266,9.533781,30.04266,18.12468,35.40551,-2.604367,33.43011,-1.107733,38.79296,4.489901,33.43011,5.986535,38.79296,6.151614,42.1804,13.24588,42.1804,7.648247,36.81756,14.74252,36.81756,15.74803,13.91943,13.05118,4.639808,13.05118,23.19904,-13.05118,-13.91943,13.05118,-13.91943,15.74803,-4.639808,13.05118,41.75827,15.74803,32.47866,-13.05118,41.75827,-15.74803,32.47866,-13.05118,23.19904,-13.05118,4.639808,-15.74803,13.91943,-15.74803,-4.639808,-13.05118,4.639808,-13.05118,41.75827,-13.05118,-13.91943,-13.05118,23.19904,2.604367,33.43011,0.8308002,33.43011,1.107734,38.79296,-1.691084,36.11153,-5.986535,38.79296,-2.716334,33.43011,-4.489901,33.43011,-6.151614,42.1804,-7.648248,36.81756,-13.24588,42.1804,-10.48596,36.81756,-9.533781,30.04266,-11.30735,30.04266,-11.03041,35.40551,-13.82923,32.72409,-18.12468,35.40551,-14.85448,30.04266,-16.62805,30.04266 + } + UVIndex: *318 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,9,11,8,11,12,8,13,8,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,27,26,28,26,27,29,28,27,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,76,75,77,75,76,78,80,79,81,82,80,83,79,82,84,79,83,85,87,86,88,90,89,91,89,90,92,94,93,95,93,94,96,95,94,97,95,96,95,98,93,99,101,100,101,102,100,103,100,102,104,102,101,105,104,101,102,104,106,107,106,104,108,110,109,111,109,110,112,111,110,113,109,111,114,109,113,115,117,116,118,116,117,119,121,120,122,120,121,120,122,123,124,123,122,125,124,122,124,126,123,123,127,120,128,130,129,130,131,129,129,131,132,133,132,131,134,131,130,135,137,136,138,136,137,139,141,140,142,140,141,143,145,144,145,146,144,146,147,144,148,144,147,149,146,145,150,149,145,151,146,149,152,153,151,153,155,154,154,156,146,157,159,158,160,157,158,161,163,162,164,162,163,165,164,163,166,164,165,167,166,165,168,170,169,171,169,170,172,174,173,175,173,174,176,175,174,177,175,176,178,177,176 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *106 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockSlopeWalls_stone, Model::RootNode + C: "OO",4625265616017733699,0 + + ;Geometry::, Model::Mesh cliff_blockSlopeWalls_stone + C: "OO",5406210885547269442,4625265616017733699 + + ;Material::stone, Model::Mesh cliff_blockSlopeWalls_stone + C: "OO",3038,4625265616017733699 + + ;Material::grass, Model::Mesh cliff_blockSlopeWalls_stone + C: "OO",3024,4625265616017733699 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_stone.fbx.import new file mode 100644 index 0000000..5b58ba4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dxn6gpqlgcbkg" +path="res://.godot/imported/cliff_blockSlopeWalls_stone.fbx-c75edf5b5b8b169eb977b549650f7788.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlopeWalls_stone.fbx" +dest_files=["res://.godot/imported/cliff_blockSlopeWalls_stone.fbx-c75edf5b5b8b169eb977b549650f7788.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_rock.fbx new file mode 100644 index 0000000..7ae2e64 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 512 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockSlope_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockSlope_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5369377047615638061, "Model::cliff_blockSlope_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5308900731577177232, "Geometry::", "Mesh" { + Vertices: *372 { + a: -4.315,-4.184642E-08,-3.333333,-4.315,8.333333,-3.333333,-5,-3.347713E-08,-1.666667,-5,6.666667,-1.666667,-5,-3.347713E-08,-1.666667,-5,6.666667,-1.666667,-4.315,-2.510785E-08,-8.236344E-08,-4.315,5,-8.236344E-08,5,-5.02157E-08,-5,4.315,-4.184642E-08,-3.333333,5,10,-5,4.315,8.333333,-3.333333,4.315,1.666667,3.333333,4.315,-8.369288E-09,3.333333,5,-1.173106E-14,5,-5,-5.02157E-08,-5,-5,10,-5,-4.315,-4.184642E-08,-3.333333,-4.315,8.333333,-3.333333,5,-1.173106E-14,5,4.315,-8.369288E-09,3.333333,-5,1.173106E-14,5,4.315,-2.510786E-08,-4.15352E-08,4.315,-4.184642E-08,-3.333333,-4.315,-8.369279E-09,3.333333,-4.315,-2.510785E-08,-8.236344E-08,-5,-1.673856E-08,1.666667,-4.315,-4.184642E-08,-3.333333,-5,-3.347713E-08,-1.666667,-5,-5.02157E-08,-5,5,-5.02157E-08,-5,5,-3.347714E-08,-1.666667,5,-1.673857E-08,1.666667,-5,-1.673856E-08,1.666667,-5,3.333333,1.666667,-4.315,-8.369279E-09,3.333333,-4.315,1.666667,3.333333,5,-5.02157E-08,-5,5,10,-5,-5,-5.02157E-08,-5,-5,10,-5,5,3.333333,1.666667,5,-1.673857E-08,1.666667,4.315,1.666667,3.333333,4.315,-8.369288E-09,3.333333,5,6.666667,-1.666667,5,-3.347714E-08,-1.666667,4.315,5,-4.15352E-08,4.315,-2.510786E-08,-4.15352E-08,-4.315,-8.369279E-09,3.333333,-4.315,1.666667,3.333333,-5,1.173106E-14,5,-4.315,-2.510785E-08,-8.236344E-08,-4.315,5,-8.236344E-08,-5,-1.673856E-08,1.666667,-5,3.333333,1.666667,4.315,5,-4.15352E-08,4.315,-2.510786E-08,-4.15352E-08,5,3.333333,1.666667,5,-1.673857E-08,1.666667,4.315,8.333333,-3.333333,4.315,-4.184642E-08,-3.333333,5,6.666667,-1.666667,5,-3.347714E-08,-1.666667,-4.315,8.333333,-3.333333,-5,6.666667,-1.666667,-5.315001,7.333333,-3.333333,-6,5.666667,-1.666667,-4.315,1.666667,3.333333,-5,1.173106E-14,5,-5.315001,0.6666666,3.333333,5.315,7.333333,-3.333333,4.315,8.333333,-3.333333,6,9,-5,5,10,-5,6,5.666667,-1.666667,5,6.666667,-1.666667,5.315,7.333333,-3.333333,4.315,8.333333,-3.333333,5.315,0.6666666,3.333333,4.315,1.666667,3.333333,6,2.333333,1.666667,5,3.333333,1.666667,-5.315001,0.6666666,3.333333,-6,2.333333,1.666667,-4.315,1.666667,3.333333,-5,3.333333,1.666667,5.315,0.6666666,3.333333,5,-1.173106E-14,5,4.315,1.666667,3.333333,5.315,4,-4.15352E-08,4.315,5,-4.15352E-08,6,5.666667,-1.666667,5,6.666667,-1.666667,5,3.333333,1.666667,4.315,1.666667,3.333333,4.315,5,-4.15352E-08,-5,1.173106E-14,5,5,-1.173106E-14,5,4.315,8.333333,-3.333333,5,6.666667,-1.666667,-4.315,1.666667,3.333333,-4.315,5,-8.236344E-08,-4.315,8.333333,-3.333333,-5,10,-5,5,10,-5,-5,6.666667,-1.666667,-5,3.333333,1.666667,-4.315,5,-8.236344E-08,-5,3.333333,1.666667,-5.315001,4,-4.153522E-08,-6,2.333333,1.666667,-5.315001,7.333333,-3.333333,-6,9,-5,-4.315,8.333333,-3.333333,-5,10,-5,6,2.333333,1.666667,5,3.333333,1.666667,5.315,4,-4.15352E-08,4.315,5,-4.15352E-08,-5.315001,4,-4.153522E-08,-6,5.666667,-1.666667,-4.315,5,-8.236344E-08,-5,6.666667,-1.666667 + } + PolygonVertexIndex: *210 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,22,-22,24,23,-22,24,25,-24,24,26,-26,25,27,-24,25,28,-28,27,29,-24,30,23,-30,22,23,-32,20,22,-33,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,92,-92,93,91,-93,94,96,-96,96,97,-96,98,95,-98,99,97,-97,100,99,-97,101,97,-100,101,99,-103,102,99,-104,103,99,-105,105,104,-100,103,106,-103,102,107,-102,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *630 { + a: -0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,-0.924927,0,0.3801449,-0.924927,0,0.3801449,-0.924927,0,0.3801449,-0.924927,0,0.3801449,-0.924927,0,0.3801449,-0.924927,0,0.3801449,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527555,0.652756,0.3844735,-0.6527555,0.652756,0.3844735,-0.6527555,0.652756,0.3844735,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *248 { + a: -5.680176,2.263497E-09,-5.680176,32.8084,1.414092,3.521343E-08,1.414093,26.24672,-13.55224,7.609565E-08,-13.55224,26.24672,-6.457975,1.090456E-07,-6.457975,19.68504,25.69039,-4.47299E-07,18.59612,-4.14349E-07,25.69039,39.37008,18.59612,32.8084,-18.59612,6.56168,-18.59612,-3.294996E-08,-25.69039,-4.618528E-14,-25.69039,7.606292E-08,-25.69039,39.37008,-18.59612,1.090129E-07,-18.59612,32.8084,19.68504,19.68504,16.98819,13.12336,-19.68504,19.68504,16.98819,-1.635244E-07,16.98819,-13.12336,-16.98819,13.12336,-16.98819,-3.242655E-07,-19.68504,6.56168,-16.98819,-13.12336,-19.68504,-6.56168,-19.68504,-19.68504,19.68504,-19.68504,19.68504,-6.56168,19.68504,6.56168,-1.414095,2.76477E-07,-1.414095,13.12336,5.680174,3.09427E-07,5.680174,6.56168,-19.68504,-2.965496E-07,-19.68504,39.37008,19.68504,-2.965496E-07,19.68504,39.37008,1.414094,13.12336,1.414094,-4.082771E-07,-5.680175,6.561679,-5.680175,-3.753271E-07,13.55224,26.24672,13.55224,-3.137083E-07,6.457974,19.68504,6.457974,-2.807583E-07,18.59612,-3.294992E-08,18.59612,6.56168,25.69039,4.618528E-14,6.457973,1.099903E-09,6.457973,19.68504,13.55224,3.404985E-08,13.55224,13.12336,-6.457975,19.68504,-6.457975,-1.987996E-07,-13.55224,13.12336,-13.55224,-1.658497E-07,5.680173,32.8084,5.680173,-3.108862E-07,-1.414095,26.24672,-1.414095,-2.779363E-07,-19.92936,19.6472,-15.64419,10.98569,-21.92743,14.45029,-17.64227,5.788791,2.686011,-8.931502,6.971177,-17.59301,0.6879387,-14.1284,24.66065,24.29686,21.44853,28.84465,30.65508,31.87651,27.44296,36.4243,17.64226,5.788792,15.64419,10.98569,21.92743,14.45029,19.92936,19.6472,9.484114,-9.14406,6.272001,-4.596271,15.47854,-1.56441,12.26643,2.983379,-9.484122,-9.144063,-15.47855,-1.564413,-6.272007,-4.596272,-12.26644,2.983377,-0.6879557,-14.1284,-6.971193,-17.593,-2.686025,-8.931498,17.07238,7.576401,13.86027,12.12419,23.06681,15.15605,19.8547,19.70384,19.68504,4.639808,16.98819,-4.639809,16.98819,13.91943,-19.68504,-13.91943,19.68504,-13.91943,16.98819,32.47866,19.68504,23.19904,-16.98819,-4.639808,-16.98819,13.91943,-16.98819,32.47866,-19.68504,41.75827,19.68504,41.75827,-19.68504,23.19904,-19.68504,4.639808,-8.621675,5.357847,-4.336508,-3.303656,-10.61975,0.1609455,-6.334579,-8.500558,-24.66065,24.29686,-30.65508,31.87651,-21.44854,28.84465,-27.44297,36.4243,6.334568,-8.500554,4.336499,-3.303653,10.61974,0.1609477,8.621667,5.357849,-17.07238,7.576399,-23.06681,15.15605,-13.86027,12.12419,-19.8547,19.70384 + } + UVIndex: *210 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,17,16,18,16,17,19,21,20,22,20,21,23,22,21,24,23,21,24,25,23,24,26,25,25,27,23,25,28,27,27,29,23,30,23,29,22,23,31,20,22,32,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,92,91,93,91,92,94,96,95,96,97,95,98,95,97,99,97,96,100,99,96,101,97,99,101,99,102,102,99,103,103,99,104,105,104,99,103,106,102,102,107,101,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *70 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockSlope_rock, Model::RootNode + C: "OO",5369377047615638061,0 + + ;Geometry::, Model::Mesh cliff_blockSlope_rock + C: "OO",5308900731577177232,5369377047615638061 + + ;Material::dirt, Model::Mesh cliff_blockSlope_rock + C: "OO",3020,5369377047615638061 + + ;Material::grass, Model::Mesh cliff_blockSlope_rock + C: "OO",3024,5369377047615638061 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_rock.fbx.import new file mode 100644 index 0000000..c1dbd82 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bjfw4nvn1ui00" +path="res://.godot/imported/cliff_blockSlope_rock.fbx-b32b6f44be4becd5f5e0ffdf6342f8ac.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_rock.fbx" +dest_files=["res://.godot/imported/cliff_blockSlope_rock.fbx-b32b6f44be4becd5f5e0ffdf6342f8ac.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_stone.fbx new file mode 100644 index 0000000..2286400 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 13 + Millisecond: 602 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_blockSlope_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_blockSlope_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5123024777370510099, "Model::cliff_blockSlope_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5441767171792038003, "Geometry::", "Mesh" { + Vertices: *372 { + a: -4.315,-4.184642E-08,-3.333333,-4.315,8.333333,-3.333333,-5,-3.347713E-08,-1.666667,-5,6.666667,-1.666667,-5,-3.347713E-08,-1.666667,-5,6.666667,-1.666667,-4.315,-2.510785E-08,-8.236344E-08,-4.315,5,-8.236344E-08,5,-5.02157E-08,-5,4.315,-4.184642E-08,-3.333333,5,10,-5,4.315,8.333333,-3.333333,4.315,1.666667,3.333333,4.315,-8.369288E-09,3.333333,5,-1.173106E-14,5,-5,-5.02157E-08,-5,-5,10,-5,-4.315,-4.184642E-08,-3.333333,-4.315,8.333333,-3.333333,5,-1.173106E-14,5,4.315,-8.369288E-09,3.333333,-5,1.173106E-14,5,4.315,-2.510786E-08,-4.15352E-08,4.315,-4.184642E-08,-3.333333,-4.315,-8.369279E-09,3.333333,-4.315,-2.510785E-08,-8.236344E-08,-5,-1.673856E-08,1.666667,-4.315,-4.184642E-08,-3.333333,-5,-3.347713E-08,-1.666667,-5,-5.02157E-08,-5,5,-5.02157E-08,-5,5,-3.347714E-08,-1.666667,5,-1.673857E-08,1.666667,-5,-1.673856E-08,1.666667,-5,3.333333,1.666667,-4.315,-8.369279E-09,3.333333,-4.315,1.666667,3.333333,5,-5.02157E-08,-5,5,10,-5,-5,-5.02157E-08,-5,-5,10,-5,5,3.333333,1.666667,5,-1.673857E-08,1.666667,4.315,1.666667,3.333333,4.315,-8.369288E-09,3.333333,5,6.666667,-1.666667,5,-3.347714E-08,-1.666667,4.315,5,-4.15352E-08,4.315,-2.510786E-08,-4.15352E-08,-4.315,-8.369279E-09,3.333333,-4.315,1.666667,3.333333,-5,1.173106E-14,5,-4.315,-2.510785E-08,-8.236344E-08,-4.315,5,-8.236344E-08,-5,-1.673856E-08,1.666667,-5,3.333333,1.666667,4.315,5,-4.15352E-08,4.315,-2.510786E-08,-4.15352E-08,5,3.333333,1.666667,5,-1.673857E-08,1.666667,4.315,8.333333,-3.333333,4.315,-4.184642E-08,-3.333333,5,6.666667,-1.666667,5,-3.347714E-08,-1.666667,-4.315,8.333333,-3.333333,-5,6.666667,-1.666667,-5.315001,7.333333,-3.333333,-6,5.666667,-1.666667,-4.315,1.666667,3.333333,-5,1.173106E-14,5,-5.315001,0.6666666,3.333333,5.315,7.333333,-3.333333,4.315,8.333333,-3.333333,6,9,-5,5,10,-5,6,5.666667,-1.666667,5,6.666667,-1.666667,5.315,7.333333,-3.333333,4.315,8.333333,-3.333333,5.315,0.6666666,3.333333,4.315,1.666667,3.333333,6,2.333333,1.666667,5,3.333333,1.666667,-5.315001,0.6666666,3.333333,-6,2.333333,1.666667,-4.315,1.666667,3.333333,-5,3.333333,1.666667,5.315,0.6666666,3.333333,5,-1.173106E-14,5,4.315,1.666667,3.333333,5.315,4,-4.15352E-08,4.315,5,-4.15352E-08,6,5.666667,-1.666667,5,6.666667,-1.666667,5,3.333333,1.666667,4.315,1.666667,3.333333,4.315,5,-4.15352E-08,-5,1.173106E-14,5,5,-1.173106E-14,5,4.315,8.333333,-3.333333,5,6.666667,-1.666667,-4.315,1.666667,3.333333,-4.315,5,-8.236344E-08,-4.315,8.333333,-3.333333,-5,10,-5,5,10,-5,-5,6.666667,-1.666667,-5,3.333333,1.666667,-4.315,5,-8.236344E-08,-5,3.333333,1.666667,-5.315001,4,-4.153522E-08,-6,2.333333,1.666667,-5.315001,7.333333,-3.333333,-6,9,-5,-4.315,8.333333,-3.333333,-5,10,-5,6,2.333333,1.666667,5,3.333333,1.666667,5.315,4,-4.15352E-08,4.315,5,-4.15352E-08,-5.315001,4,-4.153522E-08,-6,5.666667,-1.666667,-4.315,5,-8.236344E-08,-5,6.666667,-1.666667 + } + PolygonVertexIndex: *210 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,22,-22,24,23,-22,24,25,-24,24,26,-26,25,27,-24,25,28,-28,27,29,-24,30,23,-30,22,23,-32,20,22,-33,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,92,-92,93,91,-93,94,96,-96,96,97,-96,98,95,-98,99,97,-97,100,99,-97,101,97,-100,101,99,-103,102,99,-104,103,99,-105,105,104,-100,103,106,-103,102,107,-102,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *630 { + a: -0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,0.3801451,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,-0.924927,0,0.3801449,-0.924927,0,0.3801449,-0.924927,0,0.3801449,-0.924927,0,0.3801449,-0.924927,0,0.3801449,-0.924927,0,0.3801449,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,0.9249269,0,0.380145,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,-0.924927,0,-0.3801449,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527557,0.6527559,0.3844733,-0.6527555,0.652756,0.3844735,-0.6527555,0.652756,0.3844735,-0.6527555,0.652756,0.3844735,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,-0.5005682,0.5005686,0.706302,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0.5005684,0.5005684,0.706302,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.6527556,0.652756,0.3844734,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,-0.5005684,0.5005684,0.706302,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,0.6527559,0.6527559,0.3844731,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302,-0.5005683,0.5005685,0.706302 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *248 { + a: -5.680176,2.263497E-09,-5.680176,32.8084,1.414092,3.521343E-08,1.414093,26.24672,-13.55224,7.609565E-08,-13.55224,26.24672,-6.457975,1.090456E-07,-6.457975,19.68504,25.69039,-4.47299E-07,18.59612,-4.14349E-07,25.69039,39.37008,18.59612,32.8084,-18.59612,6.56168,-18.59612,-3.294996E-08,-25.69039,-4.618528E-14,-25.69039,7.606292E-08,-25.69039,39.37008,-18.59612,1.090129E-07,-18.59612,32.8084,19.68504,19.68504,16.98819,13.12336,-19.68504,19.68504,16.98819,-1.635244E-07,16.98819,-13.12336,-16.98819,13.12336,-16.98819,-3.242655E-07,-19.68504,6.56168,-16.98819,-13.12336,-19.68504,-6.56168,-19.68504,-19.68504,19.68504,-19.68504,19.68504,-6.56168,19.68504,6.56168,-1.414095,2.76477E-07,-1.414095,13.12336,5.680174,3.09427E-07,5.680174,6.56168,-19.68504,-2.965496E-07,-19.68504,39.37008,19.68504,-2.965496E-07,19.68504,39.37008,1.414094,13.12336,1.414094,-4.082771E-07,-5.680175,6.561679,-5.680175,-3.753271E-07,13.55224,26.24672,13.55224,-3.137083E-07,6.457974,19.68504,6.457974,-2.807583E-07,18.59612,-3.294992E-08,18.59612,6.56168,25.69039,4.618528E-14,6.457973,1.099903E-09,6.457973,19.68504,13.55224,3.404985E-08,13.55224,13.12336,-6.457975,19.68504,-6.457975,-1.987996E-07,-13.55224,13.12336,-13.55224,-1.658497E-07,5.680173,32.8084,5.680173,-3.108862E-07,-1.414095,26.24672,-1.414095,-2.779363E-07,-19.92936,19.6472,-15.64419,10.98569,-21.92743,14.45029,-17.64227,5.788791,2.686011,-8.931502,6.971177,-17.59301,0.6879387,-14.1284,24.66065,24.29686,21.44853,28.84465,30.65508,31.87651,27.44296,36.4243,17.64226,5.788792,15.64419,10.98569,21.92743,14.45029,19.92936,19.6472,9.484114,-9.14406,6.272001,-4.596271,15.47854,-1.56441,12.26643,2.983379,-9.484122,-9.144063,-15.47855,-1.564413,-6.272007,-4.596272,-12.26644,2.983377,-0.6879557,-14.1284,-6.971193,-17.593,-2.686025,-8.931498,17.07238,7.576401,13.86027,12.12419,23.06681,15.15605,19.8547,19.70384,19.68504,4.639808,16.98819,-4.639809,16.98819,13.91943,-19.68504,-13.91943,19.68504,-13.91943,16.98819,32.47866,19.68504,23.19904,-16.98819,-4.639808,-16.98819,13.91943,-16.98819,32.47866,-19.68504,41.75827,19.68504,41.75827,-19.68504,23.19904,-19.68504,4.639808,-8.621675,5.357847,-4.336508,-3.303656,-10.61975,0.1609455,-6.334579,-8.500558,-24.66065,24.29686,-30.65508,31.87651,-21.44854,28.84465,-27.44297,36.4243,6.334568,-8.500554,4.336499,-3.303653,10.61974,0.1609477,8.621667,5.357849,-17.07238,7.576399,-23.06681,15.15605,-13.86027,12.12419,-19.8547,19.70384 + } + UVIndex: *210 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,17,16,18,16,17,19,21,20,22,20,21,23,22,21,24,23,21,24,25,23,24,26,25,25,27,23,25,28,27,27,29,23,30,23,29,22,23,31,20,22,32,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,92,91,93,91,92,94,96,95,96,97,95,98,95,97,99,97,96,100,99,96,101,97,99,101,99,102,102,99,103,103,99,104,105,104,99,103,106,102,102,107,101,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *70 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_blockSlope_stone, Model::RootNode + C: "OO",5123024777370510099,0 + + ;Geometry::, Model::Mesh cliff_blockSlope_stone + C: "OO",5441767171792038003,5123024777370510099 + + ;Material::stone, Model::Mesh cliff_blockSlope_stone + C: "OO",3038,5123024777370510099 + + ;Material::grass, Model::Mesh cliff_blockSlope_stone + C: "OO",3024,5123024777370510099 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_stone.fbx.import new file mode 100644 index 0000000..81cb47f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ruya55ndrtdg" +path="res://.godot/imported/cliff_blockSlope_stone.fbx-0debca0e00b1bd4df0cb762d0170bdc2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_blockSlope_stone.fbx" +dest_files=["res://.godot/imported/cliff_blockSlope_stone.fbx-0debca0e00b1bd4df0cb762d0170bdc2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_rock.fbx new file mode 100644 index 0000000..1e6a8bc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 660 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_block_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_block_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5326860133893651087, "Model::cliff_block_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5491401477318608140, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,10,-5,5,10,5,-5,10,-5,-5,10,5,5,10,-5,5,0,-5,5,10,5,5,0,5,5,0,5,-5,0,5,5,10,5,-5,10,5,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,-5,0,-5,-5,10,-5,-5,0,5,-5,10,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,39.37008,19.68504,0,-19.68504,39.37008,-19.68504,0,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,19.68504,0,19.68504,39.37008,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_block_rock, Model::RootNode + C: "OO",5326860133893651087,0 + + ;Geometry::, Model::Mesh cliff_block_rock + C: "OO",5491401477318608140,5326860133893651087 + + ;Material::grass, Model::Mesh cliff_block_rock + C: "OO",3024,5326860133893651087 + + ;Material::dirt, Model::Mesh cliff_block_rock + C: "OO",3020,5326860133893651087 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_rock.fbx.import new file mode 100644 index 0000000..fb15cd0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cfy0df1xaftxs" +path="res://.godot/imported/cliff_block_rock.fbx-6f32fc0a6a82827d1f4044c71d72c6a3.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_block_rock.fbx" +dest_files=["res://.godot/imported/cliff_block_rock.fbx-6f32fc0a6a82827d1f4044c71d72c6a3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_stone.fbx new file mode 100644 index 0000000..facedf6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 12 + Millisecond: 742 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_block_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_block_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5680258270060135713, "Model::cliff_block_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4950172096040590417, "Geometry::", "Mesh" { + Vertices: *72 { + a: 5,10,-5,5,10,5,-5,10,-5,-5,10,5,5,10,-5,5,0,-5,5,10,5,5,0,5,5,0,5,-5,0,5,5,10,5,-5,10,5,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,-5,0,-5,-5,10,-5,-5,0,5,-5,10,5,5,0,5,5,0,-5,-5,0,5,-5,0,-5 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,19.68504,39.37008,19.68504,0,-19.68504,39.37008,-19.68504,0,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,19.68504,0,19.68504,39.37008,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_block_stone, Model::RootNode + C: "OO",5680258270060135713,0 + + ;Geometry::, Model::Mesh cliff_block_stone + C: "OO",4950172096040590417,5680258270060135713 + + ;Material::grass, Model::Mesh cliff_block_stone + C: "OO",3024,5680258270060135713 + + ;Material::stone, Model::Mesh cliff_block_stone + C: "OO",3038,5680258270060135713 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_stone.fbx.import new file mode 100644 index 0000000..e9c8e54 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_block_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dcwjvolbxslxw" +path="res://.godot/imported/cliff_block_stone.fbx-ef6f058b985dd7174d1b70ae1485055b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_block_stone.fbx" +dest_files=["res://.godot/imported/cliff_block_stone.fbx-ef6f058b985dd7174d1b70ae1485055b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_rock.fbx new file mode 100644 index 0000000..1499c2c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_rock.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 68 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cave_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cave_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5748284119795978049, "Model::cliff_cave_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5461784193209565684, "Geometry::", "Mesh" { + Vertices: *306 { + a: -5,1.770646E-15,-5,-5,10,-5,-5,0,-3.315,-5,10,-3.315,2.744484,4.87419,-3.757983,2.744484,4.87419,-5,1.666667,4.87419,-3.315,1.665299,4.87419,-5,1.665299,4.87419,-3.315562,0.6617067,7.979775,-3.728038,0.6617067,7.979775,-5,-1.155058E-13,7.979775,-4,-1.586595,7.979775,-5,-1.586595,7.979775,-3.347909,-1.155058E-13,7.979775,-4,-1.586595,7.979775,-3.347909,-1.155058E-13,10,-4,-1.666667,10,-3.315,-1.666667,7.628181,-3.315,-2.425525,4.296055,-3.626891,-3.144982,4.296055,-3.922588,-1.666667,7.628181,-3.315,-3.333333,10,-4,-3.333333,3.34968,-4,-1.666667,10,-3.315,1.666667,4.87419,-3.315,1.665299,4.87419,-3.315562,1.666667,10,-3.315,0.6617067,7.979775,-3.728038,-1.155058E-13,10,-4,-1.155058E-13,7.979775,-4,5,10,-5,5,1.770646E-15,-5,5,10,-3.315,5,0,-3.315,5,0,-3.315,4,8.853228E-16,-3.726,5,10,-3.315,3.333333,2.588148,-4,3.333333,10,-4,-2.425525,4.296055,-3.626891,-2.425525,4.296055,-5,-3.144982,4.296055,-3.922588,-3.144982,4.296055,-5,-4,8.853228E-16,-3.726,-4,1.770646E-15,-5,-5,0,-3.315,-5,1.770646E-15,-5,5,0,-3.315,5,1.770646E-15,-5,4,8.853228E-16,-3.726,4,1.770646E-15,-5,-1.586595,7.979775,-5,-2.425525,4.296055,-5,-1.586595,7.979775,-3.347909,-2.425525,4.296055,-3.626891,-1.666667,7.628181,-3.315,-5,0,-3.315,-5,10,-3.315,-4,8.853228E-16,-3.726,-3.333333,3.34968,-4,-3.333333,10,-4,3.333333,2.588148,-4,2.744484,4.87419,-3.757983,3.333333,10,-4,1.666667,4.87419,-3.315,1.666667,10,-3.315,1.665299,4.87419,-5,0.6617067,7.979775,-5,1.665299,4.87419,-3.315562,0.6617067,7.979775,-3.728038,4,1.770646E-15,-5,2.744484,4.87419,-5,4,8.853228E-16,-3.726,3.333333,2.588148,-4,2.744484,4.87419,-3.757983,5,10,-3.315,3.333333,10,-4,5,10,-5,-5,10,-5,-1.155058E-13,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,-5,1.770646E-15,-5,-4,1.770646E-15,-5,-5,10,-5,-3.144982,4.296055,-5,-1.586595,7.979775,-5,5,10,-5,0.6617067,7.979775,-5,1.665299,4.87419,-5,2.744484,4.87419,-5,5,1.770646E-15,-5,4,1.770646E-15,-5,-2.425525,4.296055,-5,-3.144982,4.296055,-5,-4,1.770646E-15,-5,-3.144982,4.296055,-3.922588,-3.333333,3.34968,-4,-4,8.853228E-16,-3.726 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,12,-12,14,16,-16,17,15,-17,15,17,-19,19,21,-21,21,22,-21,23,20,-23,24,22,-22,25,27,-27,28,26,-28,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,38,-38,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,58,-61,62,64,-64,65,63,-65,66,65,-65,67,69,-69,70,68,-70,71,73,-73,74,72,-74,74,75,-73,76,78,-78,79,77,-79,80,77,-80,81,77,-81,82,80,-80,83,82,-80,84,83,-80,85,87,-87,88,86,-88,89,88,-88,87,90,-90,89,90,-92,91,90,-93,92,90,-94,90,94,-94,95,93,-95,88,89,-97,97,99,-99,100,98,-100,100,101,-99 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *204 { + a: -19.68504,6.971046E-15,-19.68504,39.37008,-13.05118,0,-13.05118,39.37008,10.80506,-14.79521,10.80506,-19.68504,6.56168,-13.05118,6.556295,-19.68504,6.556295,-13.05339,2.605145,-14.67732,2.605145,-19.68504,-4.713876E-13,-15.74803,-6.246436,-19.68504,-6.246436,-13.18075,5.986535,31.41644,-0.7669019,31.41644,5.986535,39.37008,-1.107733,39.37008,-1.107733,30.03221,-14.26054,16.9136,-17.32295,16.9136,-11.03041,30.03221,-18.12468,39.37008,-18.12468,13.18772,-11.03041,39.37008,1.107733,19.18972,1.101912,19.18972,1.107733,39.37008,-3.16994,31.41644,-5.986535,39.37008,-5.986535,31.41644,19.68504,39.37008,19.68504,3.539276E-14,13.05118,39.37008,13.05118,2.842171E-14,13.24588,-9.115502E-16,8.989321,2.573973E-15,13.24588,39.37008,6.151614,10.18956,6.151614,39.37008,-9.549311,-14.2791,-9.549311,-19.68504,-12.38182,-15.44326,-12.38182,-19.68504,-15.74803,-14.66929,-15.74803,-19.68504,-19.68504,-13.05118,-19.68504,-19.68504,19.68504,-13.05118,19.68504,-19.68504,15.74803,-14.66929,15.74803,-19.68504,19.68504,29.24506,19.68504,14.37088,13.18075,29.24506,14.2791,14.37088,13.05118,27.82538,-13.24588,-4.248201E-16,-13.24588,39.37008,-8.989321,3.060703E-15,-6.151614,13.18772,-6.151614,39.37008,18.12468,10.18956,15.61821,19.18972,18.12468,39.37008,11.03041,19.18972,11.03041,39.37008,-19.68504,16.24389,-19.68504,29.09317,-13.05339,16.24389,-14.67732,29.09317,-19.68504,-3.928222,-19.68504,15.88789,-14.66929,-3.928222,-15.74803,6.593946,-14.79521,15.88789,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,4.464062E-13,-15.74803,-6.56168,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,19.68504,6.971046E-15,15.74803,6.971046E-15,19.68504,39.37008,12.38182,16.9136,6.246436,31.41644,-19.68504,39.37008,-2.605145,31.41644,-6.556295,19.18972,-10.80506,19.18972,-19.68504,6.971046E-15,-15.74803,6.971046E-15,9.549311,16.9136,19.68504,14.17138,19.68504,-3.073947,15.44326,14.17138,15.74803,10.37242,14.66929,-3.073947 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,12,11,14,16,15,17,15,16,15,17,18,19,21,20,21,22,20,23,20,22,24,22,21,25,27,26,28,26,27,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,38,37,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,55,54,57,59,58,60,58,59,61,58,60,62,64,63,65,63,64,66,65,64,67,69,68,70,68,69,71,73,72,74,72,73,74,75,72,76,78,77,79,77,78,80,77,79,81,77,80,82,80,79,83,82,79,84,83,79,85,87,86,88,86,87,89,88,87,87,90,89,89,90,91,91,90,92,92,90,93,90,94,93,95,93,94,88,89,96,97,99,98,100,98,99,100,101,98 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cave_rock, Model::RootNode + C: "OO",5748284119795978049,0 + + ;Geometry::, Model::Mesh cliff_cave_rock + C: "OO",5461784193209565684,5748284119795978049 + + ;Material::dirt, Model::Mesh cliff_cave_rock + C: "OO",3020,5748284119795978049 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_rock.fbx.import new file mode 100644 index 0000000..0b50fe8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cm2jh64eaj6hi" +path="res://.godot/imported/cliff_cave_rock.fbx-7fc8b171c3b1e44315d3eb44f83930c9.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_rock.fbx" +dest_files=["res://.godot/imported/cliff_cave_rock.fbx-7fc8b171c3b1e44315d3eb44f83930c9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_stone.fbx new file mode 100644 index 0000000..cb79ab8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_stone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 150 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cave_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cave_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5573455111370578592, "Model::cliff_cave_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4939238576422609449, "Geometry::", "Mesh" { + Vertices: *306 { + a: -5,1.770646E-15,-5,-5,10,-5,-5,0,-3.315,-5,10,-3.315,2.744484,4.87419,-3.757983,2.744484,4.87419,-5,1.666667,4.87419,-3.315,1.665299,4.87419,-5,1.665299,4.87419,-3.315562,0.6617067,7.979775,-3.728038,0.6617067,7.979775,-5,-1.155058E-13,7.979775,-4,-1.586595,7.979775,-5,-1.586595,7.979775,-3.347909,-1.155058E-13,7.979775,-4,-1.586595,7.979775,-3.347909,-1.155058E-13,10,-4,-1.666667,10,-3.315,-1.666667,7.628181,-3.315,-2.425525,4.296055,-3.626891,-3.144982,4.296055,-3.922588,-1.666667,7.628181,-3.315,-3.333333,10,-4,-3.333333,3.34968,-4,-1.666667,10,-3.315,1.666667,4.87419,-3.315,1.665299,4.87419,-3.315562,1.666667,10,-3.315,0.6617067,7.979775,-3.728038,-1.155058E-13,10,-4,-1.155058E-13,7.979775,-4,5,10,-5,5,1.770646E-15,-5,5,10,-3.315,5,0,-3.315,5,0,-3.315,4,8.853228E-16,-3.726,5,10,-3.315,3.333333,2.588148,-4,3.333333,10,-4,-2.425525,4.296055,-3.626891,-2.425525,4.296055,-5,-3.144982,4.296055,-3.922588,-3.144982,4.296055,-5,-4,8.853228E-16,-3.726,-4,1.770646E-15,-5,-5,0,-3.315,-5,1.770646E-15,-5,5,0,-3.315,5,1.770646E-15,-5,4,8.853228E-16,-3.726,4,1.770646E-15,-5,-1.586595,7.979775,-5,-2.425525,4.296055,-5,-1.586595,7.979775,-3.347909,-2.425525,4.296055,-3.626891,-1.666667,7.628181,-3.315,-5,0,-3.315,-5,10,-3.315,-4,8.853228E-16,-3.726,-3.333333,3.34968,-4,-3.333333,10,-4,3.333333,2.588148,-4,2.744484,4.87419,-3.757983,3.333333,10,-4,1.666667,4.87419,-3.315,1.666667,10,-3.315,1.665299,4.87419,-5,0.6617067,7.979775,-5,1.665299,4.87419,-3.315562,0.6617067,7.979775,-3.728038,4,1.770646E-15,-5,2.744484,4.87419,-5,4,8.853228E-16,-3.726,3.333333,2.588148,-4,2.744484,4.87419,-3.757983,5,10,-3.315,3.333333,10,-4,5,10,-5,-5,10,-5,-1.155058E-13,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,-5,1.770646E-15,-5,-4,1.770646E-15,-5,-5,10,-5,-3.144982,4.296055,-5,-1.586595,7.979775,-5,5,10,-5,0.6617067,7.979775,-5,1.665299,4.87419,-5,2.744484,4.87419,-5,5,1.770646E-15,-5,4,1.770646E-15,-5,-2.425525,4.296055,-5,-3.144982,4.296055,-5,-4,1.770646E-15,-5,-3.144982,4.296055,-3.922588,-3.333333,3.34968,-4,-4,8.853228E-16,-3.726 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,12,-12,14,16,-16,17,15,-17,15,17,-19,19,21,-21,21,22,-21,23,20,-23,24,22,-22,25,27,-27,28,26,-28,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,38,-38,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,58,-61,62,64,-64,65,63,-65,66,65,-65,67,69,-69,70,68,-70,71,73,-73,74,72,-74,74,75,-73,76,78,-78,79,77,-79,80,77,-80,81,77,-81,82,80,-80,83,82,-80,84,83,-80,85,87,-87,88,86,-88,89,88,-88,87,90,-90,89,90,-92,91,90,-93,92,90,-94,90,94,-94,95,93,-95,88,89,-97,97,99,-99,100,98,-100,100,101,-99 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.9750343,-0.2220543,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9515482,-0.3074997,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,-0.9683897,-0.2494421,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0,0.9807643,-0.1951956,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *204 { + a: -19.68504,6.971046E-15,-19.68504,39.37008,-13.05118,0,-13.05118,39.37008,10.80506,-14.79521,10.80506,-19.68504,6.56168,-13.05118,6.556295,-19.68504,6.556295,-13.05339,2.605145,-14.67732,2.605145,-19.68504,-4.713876E-13,-15.74803,-6.246436,-19.68504,-6.246436,-13.18075,5.986535,31.41644,-0.7669019,31.41644,5.986535,39.37008,-1.107733,39.37008,-1.107733,30.03221,-14.26054,16.9136,-17.32295,16.9136,-11.03041,30.03221,-18.12468,39.37008,-18.12468,13.18772,-11.03041,39.37008,1.107733,19.18972,1.101912,19.18972,1.107733,39.37008,-3.16994,31.41644,-5.986535,39.37008,-5.986535,31.41644,19.68504,39.37008,19.68504,3.539276E-14,13.05118,39.37008,13.05118,2.842171E-14,13.24588,-9.115502E-16,8.989321,2.573973E-15,13.24588,39.37008,6.151614,10.18956,6.151614,39.37008,-9.549311,-14.2791,-9.549311,-19.68504,-12.38182,-15.44326,-12.38182,-19.68504,-15.74803,-14.66929,-15.74803,-19.68504,-19.68504,-13.05118,-19.68504,-19.68504,19.68504,-13.05118,19.68504,-19.68504,15.74803,-14.66929,15.74803,-19.68504,19.68504,29.24506,19.68504,14.37088,13.18075,29.24506,14.2791,14.37088,13.05118,27.82538,-13.24588,-4.248201E-16,-13.24588,39.37008,-8.989321,3.060703E-15,-6.151614,13.18772,-6.151614,39.37008,18.12468,10.18956,15.61821,19.18972,18.12468,39.37008,11.03041,19.18972,11.03041,39.37008,-19.68504,16.24389,-19.68504,29.09317,-13.05339,16.24389,-14.67732,29.09317,-19.68504,-3.928222,-19.68504,15.88789,-14.66929,-3.928222,-15.74803,6.593946,-14.79521,15.88789,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,4.464062E-13,-15.74803,-6.56168,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,19.68504,6.971046E-15,15.74803,6.971046E-15,19.68504,39.37008,12.38182,16.9136,6.246436,31.41644,-19.68504,39.37008,-2.605145,31.41644,-6.556295,19.18972,-10.80506,19.18972,-19.68504,6.971046E-15,-15.74803,6.971046E-15,9.549311,16.9136,19.68504,14.17138,19.68504,-3.073947,15.44326,14.17138,15.74803,10.37242,14.66929,-3.073947 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,12,11,14,16,15,17,15,16,15,17,18,19,21,20,21,22,20,23,20,22,24,22,21,25,27,26,28,26,27,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,38,37,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,55,54,57,59,58,60,58,59,61,58,60,62,64,63,65,63,64,66,65,64,67,69,68,70,68,69,71,73,72,74,72,73,74,75,72,76,78,77,79,77,78,80,77,79,81,77,80,82,80,79,83,82,79,84,83,79,85,87,86,88,86,87,89,88,87,87,90,89,89,90,91,91,90,92,92,90,93,90,94,93,95,93,94,88,89,96,97,99,98,100,98,99,100,101,98 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cave_stone, Model::RootNode + C: "OO",5573455111370578592,0 + + ;Geometry::, Model::Mesh cliff_cave_stone + C: "OO",4939238576422609449,5573455111370578592 + + ;Material::stone, Model::Mesh cliff_cave_stone + C: "OO",3038,5573455111370578592 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_stone.fbx.import new file mode 100644 index 0000000..96941fd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bakif6q58ewge" +path="res://.godot/imported/cliff_cave_stone.fbx-af9a8aa486bfdab5bfc69d721af7157e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cave_stone.fbx" +dest_files=["res://.godot/imported/cliff_cave_stone.fbx-af9a8aa486bfdab5bfc69d721af7157e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_rock.fbx new file mode 100644 index 0000000..4a5c7a7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_rock.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 551 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerInnerLarge_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerInnerLarge_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5478581457093946908, "Model::cliff_cornerInnerLarge_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5590436853427917817, "Geometry::", "Mesh" { + Vertices: *216 { + a: 1.5,1.804779E-15,-9.292564E-08,1.5,10,-9.292564E-08,0.815,0,1.666667,0.815,10,1.666667,5,0,5,5,0,-5,0.815,0,5,1.5,0,3.333333,1.5,1.804779E-15,-9.292564E-08,0.815,0,1.666667,1.063076,1.804779E-15,-1.063076,-5,0,-5,-3.097935E-08,1.804779E-15,-1.5,-1.666667,0,-0.815,-3.333333,0,-1.5,-5,0,-0.815,1.5,0,3.333333,1.5,10,3.333333,0.815,0,5,0.815,10,5,5,0,5,0.815,0,5,5,10,5,0.815,10,5,0.815,0,1.666667,0.815,10,1.666667,1.5,0,3.333333,1.5,10,3.333333,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,-1.666667,0,-0.815,-3.333333,0,-1.5,-1.666667,10,-0.815,-3.333333,10,-1.5,5,10,-5,5,0,-5,5,10,5,5,0,5,-3.333333,0,-1.5,-5,0,-0.815,-3.333333,10,-1.5,-5,10,-0.815,-5,0,-5,-5,10,-5,-5,0,-0.815,-5,10,-0.815,-1.666667,0,-0.815,-1.666667,10,-0.815,-3.097935E-08,1.804779E-15,-1.5,-3.097935E-08,10,-1.5,5,10,5,0.815,10,5,5,10,-5,1.5,10,3.333333,1.5,10,-9.292564E-08,1.063076,10,-1.063076,-5,10,-5,-3.097935E-08,10,-1.5,-1.666667,10,-0.815,-3.333333,10,-1.5,-5,10,-0.815,0.815,10,1.666667,1.063076,1.804779E-15,-1.063076,1.063076,10,-1.063076,1.5,1.804779E-15,-9.292564E-08,1.5,10,-9.292564E-08,1.063076,1.804779E-15,-1.063076,-3.097935E-08,1.804779E-15,-1.5,1.063076,10,-1.063076,-3.097935E-08,10,-1.5 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,7,8,-6,7,9,-9,8,10,-6,11,5,-11,12,11,-11,13,11,-13,14,11,-14,15,11,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,55,54,-57,57,56,-55,58,57,-55,59,57,-59,60,59,-59,61,60,-59,62,61,-59,56,63,-56,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.3801449,0,0.924927,-0.3801449,0,0.924927,-0.3801449,0,0.924927,-0.3801449,0,0.924927,-0.3801449,0,0.924927,-0.3801449,0,0.924927 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: -2.244951,7.102093E-15,-2.244951,39.37008,4.849318,-3.334974E-18,4.849318,39.37008,19.68504,19.68504,19.68504,-19.68504,3.208662,19.68504,5.905512,13.12336,5.905512,-3.65849E-07,3.208662,6.561679,4.185338,-4.185338,-19.68504,-19.68504,-1.21966E-07,-5.905512,-6.56168,-3.208662,-13.12336,-5.905512,-19.68504,-3.208662,9.893198,-2.215596E-17,9.893198,39.37008,16.98747,-2.215596E-17,16.98747,39.37008,19.68504,5.684342E-14,3.208662,5.684342E-14,19.68504,39.37008,3.208662,39.37008,7.28883,-1.649887E-18,7.28883,39.37008,14.3831,-1.649887E-18,14.3831,39.37008,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,-7.288831,0,-14.3831,0,-7.288831,39.37008,-14.3831,39.37008,19.68504,39.37008,19.68504,-8.390137E-19,-19.68504,39.37008,-19.68504,-8.390137E-19,-9.893198,0,-16.98747,0,-9.893198,39.37008,-16.98747,39.37008,-19.68504,0,-19.68504,39.37008,-3.208661,0,-3.208661,39.37008,-4.849318,3.140434E-17,-4.849318,39.37008,2.244951,7.136832E-15,2.244951,39.37008,-19.68504,19.68504,-3.208662,19.68504,-19.68504,-19.68504,-5.905512,13.12336,-5.905512,-3.65849E-07,-4.185338,-4.185338,19.68504,-19.68504,1.21966E-07,-5.905512,6.56168,-3.208662,13.12336,-5.905512,19.68504,-3.208662,-3.208662,6.561679,-2.280097,7.103366E-15,-2.280097,39.37008,2.24495,7.103366E-15,2.24495,39.37008,2.280097,7.103366E-15,-2.24495,7.103366E-15,2.280097,39.37008,-2.24495,39.37008 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,7,8,5,7,9,8,8,10,5,11,5,10,12,11,10,13,11,12,14,11,13,15,11,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,55,54,56,57,56,54,58,57,54,59,57,58,60,59,58,61,60,58,62,61,58,56,63,55,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerInnerLarge_rock, Model::RootNode + C: "OO",5478581457093946908,0 + + ;Geometry::, Model::Mesh cliff_cornerInnerLarge_rock + C: "OO",5590436853427917817,5478581457093946908 + + ;Material::dirt, Model::Mesh cliff_cornerInnerLarge_rock + C: "OO",3020,5478581457093946908 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_rock.fbx.import new file mode 100644 index 0000000..eba22cd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cahdo2brg8irb" +path="res://.godot/imported/cliff_cornerInnerLarge_rock.fbx-040fefef87cdef38471d43856df58586.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_rock.fbx" +dest_files=["res://.godot/imported/cliff_cornerInnerLarge_rock.fbx-040fefef87cdef38471d43856df58586.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_stone.fbx new file mode 100644 index 0000000..8372f0e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_stone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 631 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerInnerLarge_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerInnerLarge_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5470775348299598366, "Model::cliff_cornerInnerLarge_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5055758406884198797, "Geometry::", "Mesh" { + Vertices: *216 { + a: 1.5,1.804779E-15,-9.292565E-08,1.5,10,-9.292565E-08,0.815,0,1.666667,0.815,10,1.666667,5,0,5,5,0,-5,0.815,0,5,1.5,0,3.333333,1.5,1.804779E-15,-9.292565E-08,0.815,0,1.666667,1.063076,1.804779E-15,-1.063076,-5,0,-5,-3.097935E-08,1.804779E-15,-1.5,-1.666667,0,-0.815,-3.333333,0,-1.5,-5,0,-0.815,1.5,0,3.333333,1.5,10,3.333333,0.815,0,5,0.815,10,5,5,0,5,0.815,0,5,5,10,5,0.815,10,5,0.815,0,1.666667,0.815,10,1.666667,1.5,0,3.333333,1.5,10,3.333333,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,-1.666667,0,-0.815,-3.333333,0,-1.5,-1.666667,10,-0.815,-3.333333,10,-1.5,5,10,-5,5,0,-5,5,10,5,5,0,5,-3.333333,0,-1.5,-5,0,-0.815,-3.333333,10,-1.5,-5,10,-0.815,-5,0,-5,-5,10,-5,-5,0,-0.815,-5,10,-0.815,-1.666667,0,-0.815,-1.666667,10,-0.815,-3.097935E-08,1.804779E-15,-1.5,-3.097935E-08,10,-1.5,5,10,5,0.815,10,5,5,10,-5,1.5,10,3.333333,1.5,10,-9.292565E-08,1.063076,10,-1.063076,-5,10,-5,-3.097935E-08,10,-1.5,-1.666667,10,-0.815,-3.333333,10,-1.5,-5,10,-0.815,0.815,10,1.666667,1.063076,1.804779E-15,-1.063076,1.063076,10,-1.063076,1.5,1.804779E-15,-9.292565E-08,1.5,10,-9.292565E-08,1.063076,1.804779E-15,-1.063076,-3.097935E-08,1.804779E-15,-1.5,1.063076,10,-1.063076,-3.097935E-08,10,-1.5 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,7,8,-6,7,9,-9,8,10,-6,11,5,-11,12,11,-11,13,11,-13,14,11,-14,15,11,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,55,54,-57,57,56,-55,58,57,-55,59,57,-59,60,59,-59,61,60,-59,62,61,-59,56,63,-56,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.3801449,0,0.924927,-0.3801449,0,0.924927,-0.3801449,0,0.924927,-0.3801449,0,0.924927,-0.3801449,0,0.924927,-0.3801449,0,0.924927 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: -2.244951,7.102093E-15,-2.244951,39.37008,4.849318,-3.334974E-18,4.849318,39.37008,19.68504,19.68504,19.68504,-19.68504,3.208662,19.68504,5.905512,13.12336,5.905512,-3.65849E-07,3.208662,6.561679,4.185338,-4.185338,-19.68504,-19.68504,-1.21966E-07,-5.905512,-6.56168,-3.208662,-13.12336,-5.905512,-19.68504,-3.208662,9.893198,-2.215596E-17,9.893198,39.37008,16.98747,-2.215596E-17,16.98747,39.37008,19.68504,5.684342E-14,3.208662,5.684342E-14,19.68504,39.37008,3.208662,39.37008,7.28883,-1.649887E-18,7.28883,39.37008,14.3831,-1.649887E-18,14.3831,39.37008,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,-7.288831,0,-14.3831,0,-7.288831,39.37008,-14.3831,39.37008,19.68504,39.37008,19.68504,-8.390137E-19,-19.68504,39.37008,-19.68504,-8.390137E-19,-9.893198,0,-16.98747,0,-9.893198,39.37008,-16.98747,39.37008,-19.68504,0,-19.68504,39.37008,-3.208661,0,-3.208661,39.37008,-4.849318,3.140434E-17,-4.849318,39.37008,2.244951,7.136832E-15,2.244951,39.37008,-19.68504,19.68504,-3.208662,19.68504,-19.68504,-19.68504,-5.905512,13.12336,-5.905512,-3.65849E-07,-4.185338,-4.185338,19.68504,-19.68504,1.21966E-07,-5.905512,6.56168,-3.208662,13.12336,-5.905512,19.68504,-3.208662,-3.208662,6.561679,-2.280097,7.103366E-15,-2.280097,39.37008,2.24495,7.103366E-15,2.24495,39.37008,2.280097,7.103366E-15,-2.24495,7.103366E-15,2.280097,39.37008,-2.24495,39.37008 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,7,8,5,7,9,8,8,10,5,11,5,10,12,11,10,13,11,12,14,11,13,15,11,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,55,54,56,57,56,54,58,57,54,59,57,58,60,59,58,61,60,58,62,61,58,56,63,55,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerInnerLarge_stone, Model::RootNode + C: "OO",5470775348299598366,0 + + ;Geometry::, Model::Mesh cliff_cornerInnerLarge_stone + C: "OO",5055758406884198797,5470775348299598366 + + ;Material::stone, Model::Mesh cliff_cornerInnerLarge_stone + C: "OO",3038,5470775348299598366 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_stone.fbx.import new file mode 100644 index 0000000..b232396 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bce5m2fx2spes" +path="res://.godot/imported/cliff_cornerInnerLarge_stone.fbx-ef5876a7703ee83be5e750c433c361c8.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerLarge_stone.fbx" +dest_files=["res://.godot/imported/cliff_cornerInnerLarge_stone.fbx-ef5876a7703ee83be5e750c433c361c8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_rock.fbx new file mode 100644 index 0000000..35f0ada --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 722 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerInnerTop_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerInnerTop_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5617197579936982477, "Model::cliff_cornerInnerTop_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5342691561905333588, "Geometry::", "Mesh" { + Vertices: *435 { + a: -1.666667,0,-3.315,-3.333333,0,-4,-1.666667,10,-3.315,-3.333333,10,-4,-1.666667,0,-3.315,-1.666667,10,-3.315,5.775291E-13,1.804779E-15,-4,5.775291E-13,10,-4,-5,3.541291E-15,-5,5,3.541291E-15,-5,-5,10,-5,5,10,-5,3.333333,0,-4,3.333333,10,-4,4,1.770646E-15,-3.333333,4,10,-3.333333,3.315,1.770646E-15,1.666667,3.315,10,1.666667,4,1.770646E-15,3.333333,4,10,3.333333,3.315,1.770646E-15,-1.666667,3.315,10,-1.666667,4,3.575424E-15,-1.19209E-07,4,10,-1.19209E-07,4,3.575424E-15,-1.19209E-07,4,10,-1.19209E-07,3.315,1.770646E-15,1.666667,3.315,10,1.666667,4,1.770646E-15,-3.333333,4,10,-3.333333,3.315,1.770646E-15,-1.666667,3.315,10,-1.666667,5,10,-5,5,3.541291E-15,-5,5,10,5,5,3.541291E-15,5,-5,10,-5,-5,10,-3.315,-5,3.541291E-15,-5,-5,0,-3.315,-3.333333,0,-4,-5,0,-3.315,-3.333333,10,-4,-5,10,-3.315,1.666667,0,-3.315,5.775291E-13,1.804779E-15,-4,1.666667,10,-3.315,5.775291E-13,10,-4,5,3.541291E-15,-5,4,1.770646E-15,3.333333,5,3.541291E-15,5,3.315,1.770646E-15,5,4,3.575424E-15,-1.19209E-07,3.315,1.770646E-15,1.666667,4,1.770646E-15,-3.333333,3.315,1.770646E-15,-1.666667,3.333333,0,-4,-5,3.541291E-15,-5,5.775291E-13,1.804779E-15,-4,1.666667,0,-3.315,-1.666667,0,-3.315,-3.333333,0,-4,-5,0,-3.315,3.315,1.770646E-15,5,3.315,10,5,5,3.541291E-15,5,5,10,5,3.333333,0,-4,1.666667,0,-3.315,3.333333,10,-4,1.666667,10,-3.315,4,1.770646E-15,3.333333,4,10,3.333333,3.315,1.770646E-15,5,3.315,10,5,4,10,3.333333,3.315,10,5,3,9,3.333333,2.315,9,5,2.767403,9,-2.767403,1.666667,9,-2.315,3.333333,10,-4,1.666667,10,-3.315,3.333333,10,-4,4,10,-3.333333,2.767403,9,-2.767403,3.315,10,-1.666667,4,10,-1.19209E-07,2.315,9,-1.666667,3,9,-9.879447E-08,3.315,10,1.666667,4,10,3.333333,2.315,9,1.666667,2.48625,9,2.083333,2.9075,9.25,2.5,2.82875,9,2.916667,3,9,3.333333,1.666667,9,-2.315,0.8333334,9.499999,-3.1575,1.666667,10,-3.315,5.775291E-13,10,-4,1.25,9,-2.48625,0.4166667,9,-2.82875,4.620233E-13,9,-3,3.315,10,1.666667,3.1575,9.499999,0.8333332,4,10,-1.19209E-07,3,9,-9.879447E-08,2.82875,9,0.4166666,2.48625,9,1.25,2.315,9,1.666667,4,10,-3.333333,3.315,10,-1.666667,2.767403,9,-2.767403,2.315,9,-1.666667,-1.666667,9,-2.315,-1.666667,10,-3.315,4.620233E-13,9,-3,5.775291E-13,10,-4,-3.333333,9,-3,-5,9,-2.315,-3.333333,10,-4,-5,10,-3.315,3.315,10,5,4,10,3.333333,5,10,5,5,10,-5,4,10,-1.19209E-07,4,10,-3.333333,3.333333,10,-4,-5,10,-5,5.775291E-13,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,3.315,10,-1.666667,3.315,10,1.666667,-1.666667,9,-2.315,-2.5,9.499999,-3.1575,-1.666667,10,-3.315,-3.333333,10,-4,-2.083333,9,-2.48625,-2.916667,9,-2.82875,-3.333333,9,-3 + } + PolygonVertexIndex: *267 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,49,52,-49,49,53,-53,52,54,-49,52,55,-55,54,56,-49,57,48,-57,58,57,-57,59,58,-57,60,57,-59,61,57,-61,62,57,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,91,-94,95,91,-95,96,91,-96,97,99,-99,100,98,-100,101,97,-99,102,98,-101,103,102,-101,104,106,-106,107,105,-107,108,105,-108,109,104,-106,110,104,-110,111,113,-113,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,124,126,-128,128,127,-127,129,128,-127,130,129,-127,131,129,-131,132,129,-132,133,131,-131,134,133,-131,135,134,-131,128,136,-128,127,137,-125,138,140,-140,141,139,-141,142,138,-140,143,139,-142,144,143,-142 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *801 { + a: -0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.437073,0.7860881,0.437073,-0.437073,0.7860881,0.437073,-0.437073,0.7860881,0.437073,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *290 { + a: -11.03041,0,-18.12468,0,-11.03041,39.37008,-18.12468,39.37008,-1.107733,-4.866592E-17,-1.107733,39.37008,5.986535,7.056762E-15,5.986535,39.37008,19.68504,9.777689E-08,-19.68504,9.777689E-08,19.68504,39.37008,-19.68504,39.37008,-1.855923,-2.958267E-24,-1.855923,39.37008,1.855923,6.971046E-15,1.855923,39.37008,11.03041,6.971046E-15,11.03041,39.37008,18.12468,6.971046E-15,18.12468,39.37008,-1.107733,6.942266E-15,-1.107733,39.37008,5.986535,1.404769E-14,5.986535,39.37008,-5.986535,1.411835E-14,-5.986535,39.37008,1.107733,7.012918E-15,1.107733,39.37008,-18.12468,6.971046E-15,-18.12468,39.37008,-11.03041,6.971046E-15,-11.03041,39.37008,19.68504,39.37008,19.68504,1.394209E-14,-19.68504,39.37008,-19.68504,1.394209E-14,-19.68504,39.37008,-13.05118,39.37008,-19.68504,-1.466653E-07,-13.05118,-1.466653E-07,-6.151614,0,-13.24588,0,-6.151614,39.37008,-13.24588,39.37008,1.107733,-8.893265E-18,-5.986535,7.096534E-15,1.107733,39.37008,-5.986535,39.37008,19.68504,-19.68504,15.74803,13.12336,19.68504,19.68504,13.05118,19.68504,15.74803,-4.693269E-07,13.05118,6.561679,15.74803,-13.12336,13.05118,-6.56168,13.12336,-15.74803,-19.68504,-19.68504,2.273737E-12,-15.74803,6.56168,-13.05118,-6.56168,-13.05118,-13.12336,-15.74803,-19.68504,-13.05118,13.05118,3.539276E-14,13.05118,39.37008,19.68504,4.23638E-14,19.68504,39.37008,18.12468,0,11.03041,0,18.12468,39.37008,11.03041,39.37008,6.151614,6.971046E-15,6.151614,39.37008,13.24588,6.971046E-15,13.24588,39.37008,6.151613,42.1804,13.24588,42.1804,7.648247,36.81756,14.74252,36.81756,14.21913,30.04266,9.533781,30.04266,18.12468,35.40551,11.03041,35.40551,-1.855923,40.38333,1.855923,40.38333,4.434847E-07,34.01394,-1.107734,38.79296,5.986535,38.79296,-2.604367,33.43011,4.489901,33.43011,11.03041,35.40551,18.12468,35.40551,9.533781,30.04267,11.30735,30.04267,13.45507,31.38338,14.85448,30.04267,16.62805,30.04267,2.604367,33.43011,-1.691084,36.11153,1.107733,38.79296,-5.986535,38.79296,0.8308001,33.43011,-2.716334,33.43011,-4.489901,33.43011,1.107733,38.79296,-1.691084,36.11154,-5.986535,38.79296,-4.489902,33.43011,-2.716335,33.43011,0.8307997,33.43011,2.604367,33.43011,-18.12468,35.40551,-11.03042,35.40551,-14.21913,30.04267,-9.533782,30.04267,-2.604367,33.43011,-1.107733,38.79296,4.489901,33.43011,5.986535,38.79296,-7.648247,36.81756,-14.74252,36.81756,-6.151614,42.1804,-13.24588,42.1804,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-4.693269E-07,-15.74803,-13.12336,-13.12336,-15.74803,19.68504,-19.68504,-2.283368E-12,-15.74803,-6.56168,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-13.05118,-6.56168,-13.05118,6.561679,-9.533781,30.04266,-13.82923,32.72409,-11.03041,35.40551,-18.12468,35.40551,-11.30735,30.04266,-14.85448,30.04266,-16.62805,30.04266 + } + UVIndex: *267 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,49,52,48,49,53,52,52,54,48,52,55,54,54,56,48,57,48,56,58,57,56,59,58,56,60,57,58,61,57,60,62,57,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,88,87,89,87,88,90,92,91,93,91,92,94,91,93,95,91,94,96,91,95,97,99,98,100,98,99,101,97,98,102,98,100,103,102,100,104,106,105,107,105,106,108,105,107,109,104,105,110,104,109,111,113,112,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,124,126,127,128,127,126,129,128,126,130,129,126,131,129,130,132,129,131,133,131,130,134,133,130,135,134,130,128,136,127,127,137,124,138,140,139,141,139,140,142,138,139,143,139,141,144,143,141 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *89 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerInnerTop_rock, Model::RootNode + C: "OO",5617197579936982477,0 + + ;Geometry::, Model::Mesh cliff_cornerInnerTop_rock + C: "OO",5342691561905333588,5617197579936982477 + + ;Material::dirt, Model::Mesh cliff_cornerInnerTop_rock + C: "OO",3020,5617197579936982477 + + ;Material::grass, Model::Mesh cliff_cornerInnerTop_rock + C: "OO",3024,5617197579936982477 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_rock.fbx.import new file mode 100644 index 0000000..118e78f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://nsbuj1h3jn4p" +path="res://.godot/imported/cliff_cornerInnerTop_rock.fbx-aa7974a76bfaddc2911c7a3a45b2e3d9.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_rock.fbx" +dest_files=["res://.godot/imported/cliff_cornerInnerTop_rock.fbx-aa7974a76bfaddc2911c7a3a45b2e3d9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_stone.fbx new file mode 100644 index 0000000..0041767 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 813 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerInnerTop_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerInnerTop_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5622383723221827229, "Model::cliff_cornerInnerTop_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5504087415199127670, "Geometry::", "Mesh" { + Vertices: *435 { + a: -1.666667,0,-3.315,-3.333333,0,-4,-1.666667,10,-3.315,-3.333333,10,-4,-1.666667,0,-3.315,-1.666667,10,-3.315,5.775291E-13,1.804779E-15,-4,5.775291E-13,10,-4,-5,3.541291E-15,-5,5,3.541291E-15,-5,-5,10,-5,5,10,-5,3.333333,0,-4,3.333333,10,-4,4,1.770646E-15,-3.333333,4,10,-3.333333,3.315,1.770646E-15,1.666667,3.315,10,1.666667,4,1.770646E-15,3.333333,4,10,3.333333,3.315,1.770646E-15,-1.666667,3.315,10,-1.666667,4,3.575424E-15,-1.19209E-07,4,10,-1.19209E-07,4,3.575424E-15,-1.19209E-07,4,10,-1.19209E-07,3.315,1.770646E-15,1.666667,3.315,10,1.666667,4,1.770646E-15,-3.333333,4,10,-3.333333,3.315,1.770646E-15,-1.666667,3.315,10,-1.666667,5,10,-5,5,3.541291E-15,-5,5,10,5,5,3.541291E-15,5,-5,10,-5,-5,10,-3.315,-5,3.541291E-15,-5,-5,0,-3.315,-3.333333,0,-4,-5,0,-3.315,-3.333333,10,-4,-5,10,-3.315,1.666667,0,-3.315,5.775291E-13,1.804779E-15,-4,1.666667,10,-3.315,5.775291E-13,10,-4,5,3.541291E-15,-5,4,1.770646E-15,3.333333,5,3.541291E-15,5,3.315,1.770646E-15,5,4,3.575424E-15,-1.19209E-07,3.315,1.770646E-15,1.666667,4,1.770646E-15,-3.333333,3.315,1.770646E-15,-1.666667,3.333333,0,-4,-5,3.541291E-15,-5,5.775291E-13,1.804779E-15,-4,1.666667,0,-3.315,-1.666667,0,-3.315,-3.333333,0,-4,-5,0,-3.315,3.315,1.770646E-15,5,3.315,10,5,5,3.541291E-15,5,5,10,5,3.333333,0,-4,1.666667,0,-3.315,3.333333,10,-4,1.666667,10,-3.315,4,1.770646E-15,3.333333,4,10,3.333333,3.315,1.770646E-15,5,3.315,10,5,4,10,3.333333,3.315,10,5,3,9,3.333333,2.315,9,5,2.767403,9,-2.767403,1.666667,9,-2.315,3.333333,10,-4,1.666667,10,-3.315,3.333333,10,-4,4,10,-3.333333,2.767403,9,-2.767403,3.315,10,-1.666667,4,10,-1.19209E-07,2.315,9,-1.666667,3,9,-9.879447E-08,3.315,10,1.666667,4,10,3.333333,2.315,9,1.666667,2.48625,9,2.083333,2.9075,9.25,2.5,2.82875,9,2.916667,3,9,3.333333,1.666667,9,-2.315,0.8333334,9.499999,-3.1575,1.666667,10,-3.315,5.775291E-13,10,-4,1.25,9,-2.48625,0.4166667,9,-2.82875,4.620233E-13,9,-3,3.315,10,1.666667,3.1575,9.499999,0.8333332,4,10,-1.19209E-07,3,9,-9.879447E-08,2.82875,9,0.4166666,2.48625,9,1.25,2.315,9,1.666667,4,10,-3.333333,3.315,10,-1.666667,2.767403,9,-2.767403,2.315,9,-1.666667,-1.666667,9,-2.315,-1.666667,10,-3.315,4.620233E-13,9,-3,5.775291E-13,10,-4,-3.333333,9,-3,-5,9,-2.315,-3.333333,10,-4,-5,10,-3.315,3.315,10,5,4,10,3.333333,5,10,5,5,10,-5,4,10,-1.19209E-07,4,10,-3.333333,3.333333,10,-4,-5,10,-5,5.775291E-13,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,3.315,10,-1.666667,3.315,10,1.666667,-1.666667,9,-2.315,-2.5,9.499999,-3.1575,-1.666667,10,-3.315,-3.333333,10,-4,-2.083333,9,-2.48625,-2.916667,9,-2.82875,-3.333333,9,-3 + } + PolygonVertexIndex: *267 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,49,52,-49,49,53,-53,52,54,-49,52,55,-55,54,56,-49,57,48,-57,58,57,-57,59,58,-57,60,57,-59,61,57,-61,62,57,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,91,-94,95,91,-95,96,91,-96,97,99,-99,100,98,-100,101,97,-99,102,98,-101,103,102,-101,104,106,-106,107,105,-107,108,105,-108,109,104,-106,110,104,-110,111,113,-113,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,124,126,-128,128,127,-127,129,128,-127,130,129,-127,131,129,-131,132,129,-132,133,131,-131,134,133,-131,135,134,-131,128,136,-128,127,137,-125,138,140,-140,141,139,-141,142,138,-140,143,139,-142,144,143,-142 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *801 { + a: -0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.437073,0.7860881,0.437073,-0.437073,0.7860881,0.437073,-0.437073,0.7860881,0.437073,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.6790131,0.679013,0.2790744,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,-0.6790131,0.679013,-0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *290 { + a: -11.03041,0,-18.12468,0,-11.03041,39.37008,-18.12468,39.37008,-1.107733,-4.866592E-17,-1.107733,39.37008,5.986535,7.056762E-15,5.986535,39.37008,19.68504,9.777689E-08,-19.68504,9.777689E-08,19.68504,39.37008,-19.68504,39.37008,-1.855923,-2.958267E-24,-1.855923,39.37008,1.855923,6.971046E-15,1.855923,39.37008,11.03041,6.971046E-15,11.03041,39.37008,18.12468,6.971046E-15,18.12468,39.37008,-1.107733,6.942266E-15,-1.107733,39.37008,5.986535,1.404769E-14,5.986535,39.37008,-5.986535,1.411835E-14,-5.986535,39.37008,1.107733,7.012918E-15,1.107733,39.37008,-18.12468,6.971046E-15,-18.12468,39.37008,-11.03041,6.971046E-15,-11.03041,39.37008,19.68504,39.37008,19.68504,1.394209E-14,-19.68504,39.37008,-19.68504,1.394209E-14,-19.68504,39.37008,-13.05118,39.37008,-19.68504,-1.466653E-07,-13.05118,-1.466653E-07,-6.151614,0,-13.24588,0,-6.151614,39.37008,-13.24588,39.37008,1.107733,-8.893265E-18,-5.986535,7.096534E-15,1.107733,39.37008,-5.986535,39.37008,19.68504,-19.68504,15.74803,13.12336,19.68504,19.68504,13.05118,19.68504,15.74803,-4.693269E-07,13.05118,6.561679,15.74803,-13.12336,13.05118,-6.56168,13.12336,-15.74803,-19.68504,-19.68504,2.273737E-12,-15.74803,6.56168,-13.05118,-6.56168,-13.05118,-13.12336,-15.74803,-19.68504,-13.05118,13.05118,3.539276E-14,13.05118,39.37008,19.68504,4.23638E-14,19.68504,39.37008,18.12468,0,11.03041,0,18.12468,39.37008,11.03041,39.37008,6.151614,6.971046E-15,6.151614,39.37008,13.24588,6.971046E-15,13.24588,39.37008,6.151613,42.1804,13.24588,42.1804,7.648247,36.81756,14.74252,36.81756,14.21913,30.04266,9.533781,30.04266,18.12468,35.40551,11.03041,35.40551,-1.855923,40.38333,1.855923,40.38333,4.434847E-07,34.01394,-1.107734,38.79296,5.986535,38.79296,-2.604367,33.43011,4.489901,33.43011,11.03041,35.40551,18.12468,35.40551,9.533781,30.04267,11.30735,30.04267,13.45507,31.38338,14.85448,30.04267,16.62805,30.04267,2.604367,33.43011,-1.691084,36.11153,1.107733,38.79296,-5.986535,38.79296,0.8308001,33.43011,-2.716334,33.43011,-4.489901,33.43011,1.107733,38.79296,-1.691084,36.11154,-5.986535,38.79296,-4.489902,33.43011,-2.716335,33.43011,0.8307997,33.43011,2.604367,33.43011,-18.12468,35.40551,-11.03042,35.40551,-14.21913,30.04267,-9.533782,30.04267,-2.604367,33.43011,-1.107733,38.79296,4.489901,33.43011,5.986535,38.79296,-7.648247,36.81756,-14.74252,36.81756,-6.151614,42.1804,-13.24588,42.1804,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-4.693269E-07,-15.74803,-13.12336,-13.12336,-15.74803,19.68504,-19.68504,-2.283368E-12,-15.74803,-6.56168,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-13.05118,-6.56168,-13.05118,6.561679,-9.533781,30.04266,-13.82923,32.72409,-11.03041,35.40551,-18.12468,35.40551,-11.30735,30.04266,-14.85448,30.04266,-16.62805,30.04266 + } + UVIndex: *267 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,49,52,48,49,53,52,52,54,48,52,55,54,54,56,48,57,48,56,58,57,56,59,58,56,60,57,58,61,57,60,62,57,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,88,87,89,87,88,90,92,91,93,91,92,94,91,93,95,91,94,96,91,95,97,99,98,100,98,99,101,97,98,102,98,100,103,102,100,104,106,105,107,105,106,108,105,107,109,104,105,110,104,109,111,113,112,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,124,126,127,128,127,126,129,128,126,130,129,126,131,129,130,132,129,131,133,131,130,134,133,130,135,134,130,128,136,127,127,137,124,138,140,139,141,139,140,142,138,139,143,139,141,144,143,141 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *89 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerInnerTop_stone, Model::RootNode + C: "OO",5622383723221827229,0 + + ;Geometry::, Model::Mesh cliff_cornerInnerTop_stone + C: "OO",5504087415199127670,5622383723221827229 + + ;Material::stone, Model::Mesh cliff_cornerInnerTop_stone + C: "OO",3038,5622383723221827229 + + ;Material::grass, Model::Mesh cliff_cornerInnerTop_stone + C: "OO",3024,5622383723221827229 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_stone.fbx.import new file mode 100644 index 0000000..3f5ab8d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ft8hknxqihwj" +path="res://.godot/imported/cliff_cornerInnerTop_stone.fbx-8b0ea36a3f1a28148c03cd19e3d5c0e2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInnerTop_stone.fbx" +dest_files=["res://.godot/imported/cliff_cornerInnerTop_stone.fbx-8b0ea36a3f1a28148c03cd19e3d5c0e2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_rock.fbx new file mode 100644 index 0000000..eec26d2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_rock.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 382 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerInner_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerInner_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4964579552616429569, "Model::cliff_cornerInner_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4981626857546807452, "Geometry::", "Mesh" { + Vertices: *270 { + a: 3.315,1.770646E-15,-1.666667,3.315,10,-1.666667,4,3.575424E-15,-1.788145E-07,4,10,-1.788145E-07,-5,3.541291E-15,-5,5,3.541291E-15,-5,-5,10,-5,5,10,-5,4,3.575424E-15,-1.788145E-07,4,10,-1.788145E-07,3.315,1.770646E-15,1.666667,3.315,10,1.666667,3.315,1.770646E-15,5,3.315,10,5,5,3.541291E-15,5,5,10,5,4,1.770646E-15,3.333333,4,10,3.333333,3.315,1.770646E-15,5,3.315,10,5,4,1.770646E-15,-3.333333,4,10,-3.333333,3.315,1.770646E-15,-1.666667,3.315,10,-1.666667,5,3.541291E-15,-5,4,1.770646E-15,3.333333,5,3.541291E-15,5,3.315,1.770646E-15,5,4,3.575424E-15,-1.788145E-07,3.315,1.770646E-15,1.666667,4,1.770646E-15,-3.333333,3.315,1.770646E-15,-1.666667,3.333333,0,-4,-5,3.541291E-15,-5,-5.960484E-08,1.804779E-15,-4,1.666667,0,-3.315,-1.666667,0,-3.315,-3.333333,0,-4,-5,0,-3.315,3.333333,0,-4,3.333333,10,-4,4,1.770646E-15,-3.333333,4,10,-3.333333,3.333333,0,-4,1.666667,0,-3.315,3.333333,10,-4,1.666667,10,-3.315,-3.333333,0,-4,-5,0,-3.315,-3.333333,10,-4,-5,10,-3.315,1.666667,0,-3.315,-5.960484E-08,1.804779E-15,-4,1.666667,10,-3.315,-5.960484E-08,10,-4,5,10,-5,5,3.541291E-15,-5,5,10,5,5,3.541291E-15,5,-1.666667,0,-3.315,-1.666667,10,-3.315,-5.960484E-08,1.804779E-15,-4,-5.960484E-08,10,-4,3.315,1.770646E-15,1.666667,3.315,10,1.666667,4,1.770646E-15,3.333333,4,10,3.333333,3.315,10,5,4,10,3.333333,5,10,5,5,10,-5,4,10,-1.788145E-07,4,10,-3.333333,3.333333,10,-4,-5,10,-5,-5.960484E-08,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,3.315,10,-1.666667,3.315,10,1.666667,-1.666667,0,-3.315,-3.333333,0,-4,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-5,-5,10,-3.315,-5,3.541291E-15,-5,-5,0,-3.315 + } + PolygonVertexIndex: *168 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,25,28,-25,25,29,-29,28,30,-25,28,31,-31,30,32,-25,33,24,-33,34,33,-33,35,34,-33,36,33,-35,37,33,-37,38,33,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,68,70,-72,72,71,-71,73,72,-71,74,73,-71,75,73,-75,76,73,-76,77,75,-75,78,77,-75,79,78,-75,72,80,-72,71,81,-69,82,84,-84,85,83,-85,86,88,-88,89,87,-89 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *504 { + a: -0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *180 { + a: -1.107733,6.92238E-15,-1.107733,39.37008,5.986535,1.402781E-14,5.986535,39.37008,19.68504,9.777689E-08,-19.68504,9.777689E-08,19.68504,39.37008,-19.68504,39.37008,-5.986535,1.406758E-14,-5.986535,39.37008,1.107733,6.962153E-15,1.107733,39.37008,13.05118,3.539276E-14,13.05118,39.37008,19.68504,4.23638E-14,19.68504,39.37008,6.151614,6.971046E-15,6.151614,39.37008,13.24588,6.971046E-15,13.24588,39.37008,-18.12468,6.971046E-15,-18.12468,39.37008,-11.03041,6.971046E-15,-11.03041,39.37008,19.68504,-19.68504,15.74803,13.12336,19.68504,19.68504,13.05118,19.68504,15.74803,-7.039939E-07,13.05118,6.561679,15.74803,-13.12336,13.05118,-6.56168,13.12336,-15.74803,-19.68504,-19.68504,-2.346648E-07,-15.74803,6.561679,-13.05118,-6.56168,-13.05118,-13.12336,-15.74803,-19.68504,-13.05118,-1.855923,-2.958267E-24,-1.855923,39.37008,1.855923,6.971046E-15,1.855923,39.37008,18.12468,0,11.03041,0,18.12468,39.37008,11.03041,39.37008,-6.151614,0,-13.24588,0,-6.151614,39.37008,-13.24588,39.37008,1.107733,-8.893265E-18,-5.986535,7.096534E-15,1.107733,39.37008,-5.986535,39.37008,19.68504,39.37008,19.68504,1.394209E-14,-19.68504,39.37008,-19.68504,1.394209E-14,-1.107733,-4.866592E-17,-1.107733,39.37008,5.986535,7.056762E-15,5.986535,39.37008,11.03041,6.971046E-15,11.03041,39.37008,18.12468,6.971046E-15,18.12468,39.37008,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-7.039939E-07,-15.74803,-13.12336,-13.12336,-15.74803,19.68504,-19.68504,2.346647E-07,-15.74803,-6.561679,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-13.05118,-6.56168,-13.05118,6.561679,-11.03041,0,-18.12468,0,-11.03041,39.37008,-18.12468,39.37008,-19.68504,39.37008,-13.05118,39.37008,-19.68504,-1.466653E-07,-13.05118,-1.466653E-07 + } + UVIndex: *168 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,25,28,24,25,29,28,28,30,24,28,31,30,30,32,24,33,24,32,34,33,32,35,34,32,36,33,34,37,33,36,38,33,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,68,70,71,72,71,70,73,72,70,74,73,70,75,73,74,76,73,75,77,75,74,78,77,74,79,78,74,72,80,71,71,81,68,82,84,83,85,83,84,86,88,87,89,87,88 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *56 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerInner_rock, Model::RootNode + C: "OO",4964579552616429569,0 + + ;Geometry::, Model::Mesh cliff_cornerInner_rock + C: "OO",4981626857546807452,4964579552616429569 + + ;Material::dirt, Model::Mesh cliff_cornerInner_rock + C: "OO",3020,4964579552616429569 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_rock.fbx.import new file mode 100644 index 0000000..3ff4dd1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://hcsfs61u47k6" +path="res://.godot/imported/cliff_cornerInner_rock.fbx-beb132022421ac125f5d2184e54677ee.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_rock.fbx" +dest_files=["res://.godot/imported/cliff_cornerInner_rock.fbx-beb132022421ac125f5d2184e54677ee.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_stone.fbx new file mode 100644 index 0000000..5974e6f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_stone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 471 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerInner_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerInner_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5486532261895521079, "Model::cliff_cornerInner_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4713578538496574881, "Geometry::", "Mesh" { + Vertices: *540 { + a: 3.315,1.770646E-15,-1.666667,3.315,10,-1.666667,4,3.575424E-15,-1.788145E-07,4,10,-1.788145E-07,4,3.575424E-15,-1.788145E-07,3.315,10,-1.666667,3.315,1.770646E-15,-1.666667,4,10,-1.788145E-07,-5,3.541291E-15,-5,5,3.541291E-15,-5,-5,10,-5,5,10,-5,-5,10,-5,5,3.541291E-15,-5,-5,3.541291E-15,-5,5,10,-5,4,3.575424E-15,-1.788145E-07,4,10,-1.788145E-07,3.315,1.770646E-15,1.666667,3.315,10,1.666667,3.315,1.770646E-15,1.666667,4,10,-1.788145E-07,4,3.575424E-15,-1.788145E-07,3.315,10,1.666667,3.315,1.770646E-15,5,3.315,10,5,5,3.541291E-15,5,5,10,5,5,3.541291E-15,5,3.315,10,5,3.315,1.770646E-15,5,5,10,5,4,1.770646E-15,3.333333,4,10,3.333333,3.315,1.770646E-15,5,3.315,10,5,3.315,1.770646E-15,5,4,10,3.333333,4,1.770646E-15,3.333333,3.315,10,5,4,1.770646E-15,-3.333333,4,10,-3.333333,3.315,1.770646E-15,-1.666667,3.315,10,-1.666667,3.315,1.770646E-15,-1.666667,4,10,-3.333333,4,1.770646E-15,-3.333333,3.315,10,-1.666667,5,3.541291E-15,-5,4,1.770646E-15,3.333333,5,3.541291E-15,5,3.315,1.770646E-15,5,4,3.575424E-15,-1.788145E-07,3.315,1.770646E-15,1.666667,4,1.770646E-15,-3.333333,3.315,1.770646E-15,-1.666667,3.333333,0,-4,-5,3.541291E-15,-5,-5.960484E-08,1.804779E-15,-4,1.666667,0,-3.315,-1.666667,0,-3.315,-3.333333,0,-4,-5,0,-3.315,5,3.541291E-15,5,4,1.770646E-15,3.333333,5,3.541291E-15,-5,3.315,1.770646E-15,5,4,3.575424E-15,-1.788145E-07,3.315,1.770646E-15,1.666667,4,1.770646E-15,-3.333333,3.315,1.770646E-15,-1.666667,3.333333,0,-4,-5,3.541291E-15,-5,-5.960484E-08,1.804779E-15,-4,1.666667,0,-3.315,-1.666667,0,-3.315,-3.333333,0,-4,-5,0,-3.315,3.333333,0,-4,3.333333,10,-4,4,1.770646E-15,-3.333333,4,10,-3.333333,4,1.770646E-15,-3.333333,3.333333,10,-4,3.333333,0,-4,4,10,-3.333333,3.333333,0,-4,1.666667,0,-3.315,3.333333,10,-4,1.666667,10,-3.315,3.333333,10,-4,1.666667,0,-3.315,3.333333,0,-4,1.666667,10,-3.315,-3.333333,0,-4,-5,0,-3.315,-3.333333,10,-4,-5,10,-3.315,-3.333333,10,-4,-5,0,-3.315,-3.333333,0,-4,-5,10,-3.315,1.666667,0,-3.315,-5.960484E-08,1.804779E-15,-4,1.666667,10,-3.315,-5.960484E-08,10,-4,1.666667,10,-3.315,-5.960484E-08,1.804779E-15,-4,1.666667,0,-3.315,-5.960484E-08,10,-4,5,10,-5,5,3.541291E-15,-5,5,10,5,5,3.541291E-15,5,5,10,5,5,3.541291E-15,-5,5,10,-5,5,3.541291E-15,5,-1.666667,0,-3.315,-1.666667,10,-3.315,-5.960484E-08,1.804779E-15,-4,-5.960484E-08,10,-4,-5.960484E-08,1.804779E-15,-4,-1.666667,10,-3.315,-1.666667,0,-3.315,-5.960484E-08,10,-4,3.315,1.770646E-15,1.666667,3.315,10,1.666667,4,1.770646E-15,3.333333,4,10,3.333333,4,1.770646E-15,3.333333,3.315,10,1.666667,3.315,1.770646E-15,1.666667,4,10,3.333333,3.315,10,5,4,10,3.333333,5,10,5,5,10,-5,4,10,-1.788145E-07,4,10,-3.333333,3.333333,10,-4,-5,10,-5,-5.960484E-08,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,3.315,10,-1.666667,3.315,10,1.666667,5,10,5,4,10,3.333333,3.315,10,5,5,10,-5,4,10,-1.788145E-07,4,10,-3.333333,3.333333,10,-4,-5,10,-5,-5.960484E-08,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,3.315,10,-1.666667,3.315,10,1.666667,-1.666667,0,-3.315,-3.333333,0,-4,-1.666667,10,-3.315,-3.333333,10,-4,-1.666667,10,-3.315,-3.333333,0,-4,-1.666667,0,-3.315,-3.333333,10,-4,-5,10,-5,-5,10,-3.315,-5,3.541291E-15,-5,-5,0,-3.315,-5,3.541291E-15,-5,-5,10,-3.315,-5,10,-5,-5,0,-3.315 + } + PolygonVertexIndex: *336 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,49,52,-49,49,53,-53,52,54,-49,52,55,-55,54,56,-49,57,48,-57,58,57,-57,59,58,-57,60,57,-59,61,57,-61,62,57,-62,63,65,-65,64,66,-64,67,64,-66,68,64,-68,69,67,-66,70,67,-70,71,69,-66,65,72,-72,72,73,-72,73,74,-72,72,75,-74,72,76,-76,72,77,-77,78,80,-80,81,79,-81,82,84,-84,83,85,-83,86,88,-88,89,87,-89,90,92,-92,91,93,-91,94,96,-96,97,95,-97,98,100,-100,99,101,-99,102,104,-104,105,103,-105,106,108,-108,107,109,-107,110,112,-112,113,111,-113,114,116,-116,115,117,-115,118,120,-120,121,119,-121,122,124,-124,123,125,-123,126,128,-128,129,127,-129,130,132,-132,131,133,-131,134,136,-136,137,135,-137,135,137,-139,139,138,-138,140,139,-138,141,140,-138,142,140,-142,143,140,-143,144,142,-142,145,144,-142,146,145,-142,139,147,-139,138,148,-136,149,151,-151,150,152,-150,152,150,-154,153,154,-153,154,155,-153,155,156,-153,155,157,-157,155,158,-158,157,159,-157,159,160,-157,160,161,-157,162,154,-154,163,153,-151,164,166,-166,167,165,-167,168,170,-170,169,171,-169,172,174,-174,175,173,-175,176,178,-178,177,179,-177 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1008 { + a: -0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,-0.9249269,0,-0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0.9249269,0,0.3801449,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,0.7071067,0,-0.7071068,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0.9249269,0,-0.380145,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *360 { + a: -1.107733,6.92238E-15,-1.107733,39.37008,5.986535,1.402781E-14,5.986535,39.37008,5.986535,1.402781E-14,-1.107733,39.37008,-1.107733,6.92238E-15,5.986535,39.37008,19.68504,9.777689E-08,-19.68504,9.777689E-08,19.68504,39.37008,-19.68504,39.37008,19.68504,39.37008,-19.68504,9.777689E-08,19.68504,9.777689E-08,-19.68504,39.37008,-5.986535,1.406758E-14,-5.986535,39.37008,1.107733,6.962153E-15,1.107733,39.37008,1.107733,6.962153E-15,-5.986535,39.37008,-5.986535,1.406758E-14,1.107733,39.37008,13.05118,3.539276E-14,13.05118,39.37008,19.68504,4.23638E-14,19.68504,39.37008,19.68504,4.23638E-14,13.05118,39.37008,13.05118,3.539276E-14,19.68504,39.37008,6.151614,6.971046E-15,6.151614,39.37008,13.24588,6.971046E-15,13.24588,39.37008,13.24588,6.971046E-15,6.151614,39.37008,6.151614,6.971046E-15,13.24588,39.37008,-18.12468,6.971046E-15,-18.12468,39.37008,-11.03041,6.971046E-15,-11.03041,39.37008,-11.03041,6.971046E-15,-18.12468,39.37008,-18.12468,6.971046E-15,-11.03041,39.37008,19.68504,-19.68504,15.74803,13.12336,19.68504,19.68504,13.05118,19.68504,15.74803,-7.039939E-07,13.05118,6.561679,15.74803,-13.12336,13.05118,-6.56168,13.12336,-15.74803,-19.68504,-19.68504,-2.346648E-07,-15.74803,6.561679,-13.05118,-6.56168,-13.05118,-13.12336,-15.74803,-19.68504,-13.05118,19.68504,19.68504,15.74803,13.12336,19.68504,-19.68504,13.05118,19.68504,15.74803,-7.039939E-07,13.05118,6.561679,15.74803,-13.12336,13.05118,-6.56168,13.12336,-15.74803,-19.68504,-19.68504,-2.346648E-07,-15.74803,6.561679,-13.05118,-6.56168,-13.05118,-13.12336,-15.74803,-19.68504,-13.05118,-1.855923,-2.958267E-24,-1.855923,39.37008,1.855923,6.971046E-15,1.855923,39.37008,1.855923,6.971046E-15,-1.855923,39.37008,-1.855923,-2.958267E-24,1.855923,39.37008,18.12468,0,11.03041,0,18.12468,39.37008,11.03041,39.37008,18.12468,39.37008,11.03041,0,18.12468,0,11.03041,39.37008,-6.151614,0,-13.24588,0,-6.151614,39.37008,-13.24588,39.37008,-6.151614,39.37008,-13.24588,0,-6.151614,0,-13.24588,39.37008,1.107733,-8.893265E-18,-5.986535,7.096534E-15,1.107733,39.37008,-5.986535,39.37008,1.107733,39.37008,-5.986535,7.096534E-15,1.107733,-8.893265E-18,-5.986535,39.37008,19.68504,39.37008,19.68504,1.394209E-14,-19.68504,39.37008,-19.68504,1.394209E-14,-19.68504,39.37008,19.68504,1.394209E-14,19.68504,39.37008,-19.68504,1.394209E-14,-1.107733,-4.866592E-17,-1.107733,39.37008,5.986535,7.056762E-15,5.986535,39.37008,5.986535,7.056762E-15,-1.107733,39.37008,-1.107733,-4.866592E-17,5.986535,39.37008,11.03041,6.971046E-15,11.03041,39.37008,18.12468,6.971046E-15,18.12468,39.37008,18.12468,6.971046E-15,11.03041,39.37008,11.03041,6.971046E-15,18.12468,39.37008,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-7.039939E-07,-15.74803,-13.12336,-13.12336,-15.74803,19.68504,-19.68504,2.346647E-07,-15.74803,-6.561679,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-13.05118,-6.56168,-13.05118,6.561679,-19.68504,19.68504,-15.74803,13.12336,-13.05118,19.68504,-19.68504,-19.68504,-15.74803,-7.039939E-07,-15.74803,-13.12336,-13.12336,-15.74803,19.68504,-19.68504,2.346647E-07,-15.74803,-6.561679,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-13.05118,-6.56168,-13.05118,6.561679,-11.03041,0,-18.12468,0,-11.03041,39.37008,-18.12468,39.37008,-11.03041,39.37008,-18.12468,0,-11.03041,0,-18.12468,39.37008,-19.68504,39.37008,-13.05118,39.37008,-19.68504,-1.466653E-07,-13.05118,-1.466653E-07,-19.68504,-1.466653E-07,-13.05118,39.37008,-19.68504,39.37008,-13.05118,-1.466653E-07 + } + UVIndex: *336 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,49,52,48,49,53,52,52,54,48,52,55,54,54,56,48,57,48,56,58,57,56,59,58,56,60,57,58,61,57,60,62,57,61,63,65,64,64,66,63,67,64,65,68,64,67,69,67,65,70,67,69,71,69,65,65,72,71,72,73,71,73,74,71,72,75,73,72,76,75,72,77,76,78,80,79,81,79,80,82,84,83,83,85,82,86,88,87,89,87,88,90,92,91,91,93,90,94,96,95,97,95,96,98,100,99,99,101,98,102,104,103,105,103,104,106,108,107,107,109,106,110,112,111,113,111,112,114,116,115,115,117,114,118,120,119,121,119,120,122,124,123,123,125,122,126,128,127,129,127,128,130,132,131,131,133,130,134,136,135,137,135,136,135,137,138,139,138,137,140,139,137,141,140,137,142,140,141,143,140,142,144,142,141,145,144,141,146,145,141,139,147,138,138,148,135,149,151,150,150,152,149,152,150,153,153,154,152,154,155,152,155,156,152,155,157,156,155,158,157,157,159,156,159,160,156,160,161,156,162,154,153,163,153,150,164,166,165,167,165,166,168,170,169,169,171,168,172,174,173,175,173,174,176,178,177,177,179,176 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *112 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerInner_stone, Model::RootNode + C: "OO",5486532261895521079,0 + + ;Geometry::, Model::Mesh cliff_cornerInner_stone + C: "OO",4713578538496574881,5486532261895521079 + + ;Material::stone, Model::Mesh cliff_cornerInner_stone + C: "OO",3038,5486532261895521079 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_stone.fbx.import new file mode 100644 index 0000000..ed8bc3e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dxvkyugwn1hp" +path="res://.godot/imported/cliff_cornerInner_stone.fbx-c975dd975e4f52276e04e62a60695351.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerInner_stone.fbx" +dest_files=["res://.godot/imported/cliff_cornerInner_stone.fbx-c975dd975e4f52276e04e62a60695351.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_rock.fbx new file mode 100644 index 0000000..31ae613 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_rock.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 913 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerLarge_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerLarge_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5684975005696816126, "Model::cliff_cornerLarge_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4653530966167635237, "Geometry::", "Mesh" { + Vertices: *72 { + a: 0.8149999,0,-5,0.8149999,10,-5,1.86125,0,-1.86125,1.86125,10,-1.86125,5,10,-0.8150001,1.86125,10,-1.86125,5,10,-5,0.8149999,10,-5,5,0,-0.8150001,5,0,-5,1.86125,0,-1.86125,0.8149999,0,-5,5,0,-0.8150001,1.86125,0,-1.86125,5,10,-0.8150001,1.86125,10,-1.86125,0.8149999,0,-5,5,0,-5,0.8149999,10,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-0.8150001,5,0,-0.8150001 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: -0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -17.6602,0,-17.6602,39.37008,-4.63448,0,-4.63448,39.37008,-19.68504,-3.208662,-7.327756,-7.327756,-19.68504,-19.68504,-3.208661,-19.68504,19.68504,-3.208662,19.68504,-19.68504,7.327756,-7.327756,3.208661,-19.68504,17.6602,0,4.63448,0,17.6602,39.37008,4.63448,39.37008,-3.208661,8.823802E-15,-19.68504,8.823802E-15,-3.208661,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,0,3.208661,39.37008,3.208661,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerLarge_rock, Model::RootNode + C: "OO",5684975005696816126,0 + + ;Geometry::, Model::Mesh cliff_cornerLarge_rock + C: "OO",4653530966167635237,5684975005696816126 + + ;Material::dirt, Model::Mesh cliff_cornerLarge_rock + C: "OO",3020,5684975005696816126 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_rock.fbx.import new file mode 100644 index 0000000..a7c9de5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cwma80nl5dh44" +path="res://.godot/imported/cliff_cornerLarge_rock.fbx-15e1fde88c0b55fc7acb05e68411a087.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_rock.fbx" +dest_files=["res://.godot/imported/cliff_cornerLarge_rock.fbx-15e1fde88c0b55fc7acb05e68411a087.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_stone.fbx new file mode 100644 index 0000000..76693b9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_stone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 21 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerLarge_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerLarge_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5274324002014615611, "Model::cliff_cornerLarge_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5204952991204984695, "Geometry::", "Mesh" { + Vertices: *144 { + a: 0.8149999,0,-5,0.8149999,10,-5,1.86125,0,-1.86125,1.86125,10,-1.86125,1.86125,0,-1.86125,0.8149999,10,-5,0.8149999,0,-5,1.86125,10,-1.86125,5,10,-0.8150001,1.86125,10,-1.86125,5,10,-5,0.8149999,10,-5,5,10,-5,1.86125,10,-1.86125,5,10,-0.8150001,0.8149999,10,-5,5,0,-0.8150001,5,0,-5,1.86125,0,-1.86125,0.8149999,0,-5,1.86125,0,-1.86125,5,0,-5,5,0,-0.8150001,0.8149999,0,-5,5,0,-0.8150001,1.86125,0,-1.86125,5,10,-0.8150001,1.86125,10,-1.86125,5,10,-0.8150001,1.86125,0,-1.86125,5,0,-0.8150001,1.86125,10,-1.86125,0.8149999,0,-5,5,0,-5,0.8149999,10,-5,5,10,-5,0.8149999,10,-5,5,0,-5,0.8149999,0,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-0.8150001,5,0,-0.8150001,5,10,-0.8150001,5,0,-5,5,10,-5,5,0,-0.8150001 + } + PolygonVertexIndex: *72 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *216 { + a: -0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,0.9486833,0,-0.3162278,0.9486833,0,-0.3162278,0.9486833,0,-0.3162278,0.9486833,0,-0.3162278,0.9486833,0,-0.3162278,0.9486833,0,-0.3162278,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.9486833,0.3162278,0,-0.9486833,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: -17.6602,0,-17.6602,39.37008,-4.63448,0,-4.63448,39.37008,-4.63448,0,-17.6602,39.37008,-17.6602,0,-4.63448,39.37008,-19.68504,-3.208662,-7.327756,-7.327756,-19.68504,-19.68504,-3.208661,-19.68504,-19.68504,-19.68504,-7.327756,-7.327756,-19.68504,-3.208662,-3.208661,-19.68504,19.68504,-3.208662,19.68504,-19.68504,7.327756,-7.327756,3.208661,-19.68504,7.327756,-7.327756,19.68504,-19.68504,19.68504,-3.208662,3.208661,-19.68504,17.6602,0,4.63448,0,17.6602,39.37008,4.63448,39.37008,17.6602,39.37008,4.63448,0,17.6602,0,4.63448,39.37008,-3.208661,8.823802E-15,-19.68504,8.823802E-15,-3.208661,39.37008,-19.68504,39.37008,-3.208661,39.37008,-19.68504,8.823802E-15,-3.208661,8.823802E-15,-19.68504,39.37008,19.68504,39.37008,19.68504,0,3.208661,39.37008,3.208661,0,3.208661,39.37008,19.68504,0,19.68504,39.37008,3.208661,0 + } + UVIndex: *72 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *24 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerLarge_stone, Model::RootNode + C: "OO",5274324002014615611,0 + + ;Geometry::, Model::Mesh cliff_cornerLarge_stone + C: "OO",5204952991204984695,5274324002014615611 + + ;Material::stone, Model::Mesh cliff_cornerLarge_stone + C: "OO",3038,5274324002014615611 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_stone.fbx.import new file mode 100644 index 0000000..b3e779a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bxbvq8w2f0d6y" +path="res://.godot/imported/cliff_cornerLarge_stone.fbx-b8f58f45090de3fd089281e10be67b9c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerLarge_stone.fbx" +dest_files=["res://.godot/imported/cliff_cornerLarge_stone.fbx-b8f58f45090de3fd089281e10be67b9c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_rock.fbx new file mode 100644 index 0000000..910cb83 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 107 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerTop_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerTop_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4893478710108762373, "Model::cliff_cornerTop_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5528649135765863887, "Geometry::", "Mesh" { + Vertices: *96 { + a: 3.315,0,-5,3.315,10,-5,3.73625,0,-3.73625,3.73625,10,-3.73625,3.315,0,-5,5,0,-5,3.315,10,-5,5,10,-5,5,0,-3.315,3.73625,0,-3.73625,5,10,-3.315,3.73625,10,-3.73625,5,0,-3.315,5,0,-5,3.73625,0,-3.73625,3.315,0,-5,5,10,-5,5,0,-5,5,10,-3.315,5,0,-3.315,3.73625,10,-3.73625,2.98625,9,-2.98625,3.315,10,-5,2.315,9,-5,5,9,-2.315,2.98625,9,-2.98625,5,10,-3.315,3.73625,10,-3.73625,5,10,-3.315,3.73625,10,-3.73625,5,10,-5,3.315,10,-5 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: -0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *64 { + a: -14.54772,0,-14.54772,39.37008,-9.303197,0,-9.303197,39.37008,-13.05118,3.552714E-15,-19.68504,3.552714E-15,-13.05118,39.37008,-19.68504,39.37008,14.54772,0,9.303197,0,14.54772,39.37008,9.303197,39.37008,19.68504,-13.05118,19.68504,-19.68504,14.70965,-14.70965,13.05118,-19.68504,19.68504,39.37008,19.68504,0,13.05118,39.37008,13.05118,0,-9.303197,41.36786,-7.43571,35.94106,-14.54772,41.36786,-15.79271,35.94106,15.79271,35.94106,7.43571,35.94106,14.54772,41.36786,9.303197,41.36786,-19.68504,-13.05118,-14.70965,-14.70965,-19.68504,-19.68504,-13.05118,-19.68504 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerTop_rock, Model::RootNode + C: "OO",4893478710108762373,0 + + ;Geometry::, Model::Mesh cliff_cornerTop_rock + C: "OO",5528649135765863887,4893478710108762373 + + ;Material::dirt, Model::Mesh cliff_cornerTop_rock + C: "OO",3020,4893478710108762373 + + ;Material::grass, Model::Mesh cliff_cornerTop_rock + C: "OO",3024,4893478710108762373 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_rock.fbx.import new file mode 100644 index 0000000..735b8f0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ba7pyhhyobc8m" +path="res://.godot/imported/cliff_cornerTop_rock.fbx-229bcf7d4f57446394a0cb46831e779d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_rock.fbx" +dest_files=["res://.godot/imported/cliff_cornerTop_rock.fbx-229bcf7d4f57446394a0cb46831e779d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_stone.fbx new file mode 100644 index 0000000..5d7a599 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 190 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_cornerTop_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_cornerTop_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5643335292922704981, "Model::cliff_cornerTop_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5085811744382808311, "Geometry::", "Mesh" { + Vertices: *96 { + a: 3.315,0,-5,3.315,10,-5,3.73625,0,-3.73625,3.73625,10,-3.73625,3.315,0,-5,5,0,-5,3.315,10,-5,5,10,-5,5,0,-3.315,3.73625,0,-3.73625,5,10,-3.315,3.73625,10,-3.73625,5,0,-3.315,5,0,-5,3.73625,0,-3.73625,3.315,0,-5,5,10,-5,5,0,-5,5,10,-3.315,5,0,-3.315,3.73625,10,-3.73625,2.98625,9,-2.98625,3.315,10,-5,2.315,9,-5,5,9,-2.315,2.98625,9,-2.98625,5,10,-3.315,3.73625,10,-3.73625,5,10,-3.315,3.73625,10,-3.73625,5,10,-5,3.315,10,-5 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: -0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *64 { + a: -14.54772,0,-14.54772,39.37008,-9.303197,0,-9.303197,39.37008,-13.05118,3.552714E-15,-19.68504,3.552714E-15,-13.05118,39.37008,-19.68504,39.37008,14.54772,0,9.303197,0,14.54772,39.37008,9.303197,39.37008,19.68504,-13.05118,19.68504,-19.68504,14.70965,-14.70965,13.05118,-19.68504,19.68504,39.37008,19.68504,0,13.05118,39.37008,13.05118,0,-9.303197,41.36786,-7.43571,35.94106,-14.54772,41.36786,-15.79271,35.94106,15.79271,35.94106,7.43571,35.94106,14.54772,41.36786,9.303197,41.36786,-19.68504,-13.05118,-14.70965,-14.70965,-19.68504,-19.68504,-13.05118,-19.68504 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_cornerTop_stone, Model::RootNode + C: "OO",5643335292922704981,0 + + ;Geometry::, Model::Mesh cliff_cornerTop_stone + C: "OO",5085811744382808311,5643335292922704981 + + ;Material::stone, Model::Mesh cliff_cornerTop_stone + C: "OO",3038,5643335292922704981 + + ;Material::grass, Model::Mesh cliff_cornerTop_stone + C: "OO",3024,5643335292922704981 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_stone.fbx.import new file mode 100644 index 0000000..e310fdf --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://hw0bjx6myb6m" +path="res://.godot/imported/cliff_cornerTop_stone.fbx-7569836f5bb1bd73440596a62b344434.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_cornerTop_stone.fbx" +dest_files=["res://.godot/imported/cliff_cornerTop_stone.fbx-7569836f5bb1bd73440596a62b344434.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_rock.fbx new file mode 100644 index 0000000..91de51b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_rock.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 225 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_corner_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_corner_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5073651317247469894, "Model::cliff_corner_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4920235582139258222, "Geometry::", "Mesh" { + Vertices: *72 { + a: 3.315,0,-5,3.315,10,-5,3.73625,0,-3.73625,3.73625,10,-3.73625,5,10,-3.315,3.73625,10,-3.73625,5,10,-5,3.315,10,-5,5,0,-3.315,5,0,-5,3.73625,0,-3.73625,3.315,0,-5,5,0,-3.315,3.73625,0,-3.73625,5,10,-3.315,3.73625,10,-3.73625,3.315,0,-5,5,0,-5,3.315,10,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-3.315,5,0,-3.315 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: -0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -14.54772,0,-14.54772,39.37008,-9.303197,0,-9.303197,39.37008,-19.68504,-13.05118,-14.70965,-14.70965,-19.68504,-19.68504,-13.05118,-19.68504,19.68504,-13.05118,19.68504,-19.68504,14.70965,-14.70965,13.05118,-19.68504,14.54772,0,9.303197,0,14.54772,39.37008,9.303197,39.37008,-13.05118,3.552714E-15,-19.68504,3.552714E-15,-13.05118,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,0,13.05118,39.37008,13.05118,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_corner_rock, Model::RootNode + C: "OO",5073651317247469894,0 + + ;Geometry::, Model::Mesh cliff_corner_rock + C: "OO",4920235582139258222,5073651317247469894 + + ;Material::dirt, Model::Mesh cliff_corner_rock + C: "OO",3020,5073651317247469894 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_rock.fbx.import new file mode 100644 index 0000000..311c45b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dyg61xl127ex2" +path="res://.godot/imported/cliff_corner_rock.fbx-fcfba0aa19fa32258d24fad54e7d0cbb.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_rock.fbx" +dest_files=["res://.godot/imported/cliff_corner_rock.fbx-fcfba0aa19fa32258d24fad54e7d0cbb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_stone.fbx new file mode 100644 index 0000000..179da7f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_stone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 14 + Millisecond: 298 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_corner_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_corner_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5363931310068533524, "Model::cliff_corner_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5539606944100138502, "Geometry::", "Mesh" { + Vertices: *72 { + a: 3.315,0,-5,3.315,10,-5,3.73625,0,-3.73625,3.73625,10,-3.73625,5,10,-3.315,3.73625,10,-3.73625,5,10,-5,3.315,10,-5,5,0,-3.315,5,0,-5,3.73625,0,-3.73625,3.315,0,-5,5,0,-3.315,3.73625,0,-3.73625,5,10,-3.315,3.73625,10,-3.73625,3.315,0,-5,5,0,-5,3.315,10,-5,5,10,-5,5,10,-5,5,0,-5,5,10,-3.315,5,0,-3.315 + } + PolygonVertexIndex: *36 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *108 { + a: -0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,-0.3162278,0,0.9486833,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *48 { + a: -14.54772,0,-14.54772,39.37008,-9.303197,0,-9.303197,39.37008,-19.68504,-13.05118,-14.70965,-14.70965,-19.68504,-19.68504,-13.05118,-19.68504,19.68504,-13.05118,19.68504,-19.68504,14.70965,-14.70965,13.05118,-19.68504,14.54772,0,9.303197,0,14.54772,39.37008,9.303197,39.37008,-13.05118,3.552714E-15,-19.68504,3.552714E-15,-13.05118,39.37008,-19.68504,39.37008,19.68504,39.37008,19.68504,0,13.05118,39.37008,13.05118,0 + } + UVIndex: *36 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *12 { + a: 0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_corner_stone, Model::RootNode + C: "OO",5363931310068533524,0 + + ;Geometry::, Model::Mesh cliff_corner_stone + C: "OO",5539606944100138502,5363931310068533524 + + ;Material::stone, Model::Mesh cliff_corner_stone + C: "OO",3038,5363931310068533524 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_stone.fbx.import new file mode 100644 index 0000000..7a7d15e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://u0dnjwnr4mkj" +path="res://.godot/imported/cliff_corner_stone.fbx-5a177b95ba4e90e7dc15edd1731ae720.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_corner_stone.fbx" +dest_files=["res://.godot/imported/cliff_corner_stone.fbx-5a177b95ba4e90e7dc15edd1731ae720.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_rock.fbx new file mode 100644 index 0000000..3184ef1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_rock.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 306 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_diagonal_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_diagonal_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4693947689874771826, "Model::cliff_diagonal_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4962331556807002423, "Geometry::", "Mesh" { + Vertices: *216 { + a: 5,-1.955867E-15,6.685,5,-2.048524E-16,5,3.808525,-1.727634E-15,6.191475,2.626226,5.04744E-17,4.04044,-5,-2.048524E-16,-5,-0.7071068,3.82001E-15,0.7071068,0.4751917,2.041901E-15,2.858142,-2.858142,4.006657E-15,-0.4751917,-4.04044,5.784767E-15,-2.626226,-5,3.234137E-15,-3.153641,-6.191475,7.776193E-15,-3.808525,-6.685,-8.946748E-15,-5,3.153641,-4.737893E-16,5,3.808525,-1.727634E-15,6.191475,2.626226,5.04744E-17,4.04044,-5,-2.048524E-16,-5,5,-2.048524E-16,5,-5,10,-5,5,10,5,-0.7071068,3.82001E-15,0.7071068,-0.7071068,10,0.7071068,0.4751917,2.041901E-15,2.858142,0.4751917,10,2.858142,-5,3.234137E-15,-3.153641,-6.191475,7.776193E-15,-3.808525,-4.04044,5.784767E-15,-2.626226,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-0.7071068,3.82001E-15,0.7071068,-2.858142,4.006657E-15,-0.4751917,-0.7071068,10,0.7071068,-2.858142,10,-0.4751917,2.626226,5.04744E-17,4.04044,0.4751917,2.041901E-15,2.858142,2.626226,10,4.04044,0.4751917,10,2.858142,5,-1.955867E-15,6.685,3.808525,-1.727634E-15,6.191475,5,10,6.685,3.808525,10,6.191475,-4.04044,5.784767E-15,-2.626226,-4.04044,10,-2.626226,-2.858142,4.006657E-15,-0.4751917,-2.858142,10,-0.4751917,2.626226,5.04744E-17,4.04044,2.626226,10,4.04044,3.153641,-4.737893E-16,5,3.808525,10,6.191475,3.808525,-1.727634E-15,6.191475,5,10,6.685,3.808525,10,6.191475,5,10,5,2.626226,10,4.04044,-5,10,-5,-0.7071068,10,0.7071068,0.4751917,10,2.858142,-2.858142,10,-0.4751917,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-6.685,10,-5,5,-2.048524E-16,5,5,-1.955867E-15,6.685,5,10,5,5,10,6.685,-6.685,-8.946748E-15,-5,-5,-2.048524E-16,-5,-6.685,10,-5,-5,10,-5,-6.685,10,-5,-6.191475,10,-3.808525,-6.685,-8.946748E-15,-5,-6.191475,7.776193E-15,-3.808525 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,5,-4,7,4,-6,8,4,-8,9,4,-9,10,4,-10,11,4,-11,12,14,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,24,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,51,-51,52,50,-52,53,52,-52,54,52,-54,55,52,-55,56,54,-54,57,56,-54,58,57,-54,59,58,-54,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 19.68504,26.3189,19.68504,19.68504,14.99419,24.37589,10.33947,15.90724,-19.68504,-19.68504,-2.783885,2.783885,1.870834,11.25253,-11.25253,-1.870834,-15.90724,-10.33947,-19.68504,-12.41591,-24.37589,-14.99419,-26.3189,-19.68504,12.41591,19.68504,14.99419,24.37589,10.33947,15.90724,27.83885,-8.065056E-16,-27.83885,-8.065056E-16,27.83885,39.37008,-27.83885,39.37008,1.098718,1.757539E-14,1.098718,39.37008,10.76227,1.057496E-14,10.76227,39.37008,-23.23142,1.139137E-14,-28.58414,2.927348E-14,-18.92058,2.143321E-14,-18.92058,39.37008,-28.58414,39.37008,-1.098718,1.894661E-14,-10.76227,1.968144E-14,-1.098718,39.37008,-10.76227,39.37008,16.72315,9.458786E-15,7.059593,1.729905E-14,16.72315,39.37008,7.059593,39.37008,28.25841,6.70106E-15,23.18108,7.599613E-15,28.25841,39.37008,23.18108,39.37008,-16.72315,2.878494E-14,-16.72315,39.37008,-7.059593,2.178452E-14,-7.059593,39.37008,18.92058,-1.4665E-15,18.92058,39.37008,23.23142,-3.530531E-15,28.58414,39.37008,28.58414,-8.466929E-15,-19.68504,26.3189,-14.99419,24.37589,-19.68504,19.68504,-10.33947,15.90724,19.68504,-19.68504,2.783885,2.783885,-1.870834,11.25253,11.25253,-1.870834,15.90724,-10.33947,24.37589,-14.99419,26.3189,-19.68504,-19.68504,-1.501736E-14,-26.3189,-2.191112E-14,-19.68504,39.37008,-26.3189,39.37008,26.3189,9.267427E-14,19.68504,1.270912E-13,26.3189,39.37008,19.68504,39.37008,-28.25841,39.37008,-23.18108,39.37008,-28.25841,4.538964E-14,-23.18108,1.11228E-13 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,5,3,7,4,5,8,4,7,9,4,8,10,4,9,11,4,10,12,14,13,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,24,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,51,50,52,50,51,53,52,51,54,52,53,55,52,54,56,54,53,57,56,53,58,57,53,59,58,53,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_diagonal_rock, Model::RootNode + C: "OO",4693947689874771826,0 + + ;Geometry::, Model::Mesh cliff_diagonal_rock + C: "OO",4962331556807002423,4693947689874771826 + + ;Material::dirt, Model::Mesh cliff_diagonal_rock + C: "OO",3020,4693947689874771826 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_rock.fbx.import new file mode 100644 index 0000000..6726f52 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c2rt7ovdplp71" +path="res://.godot/imported/cliff_diagonal_rock.fbx-a636df227a045b094d9a77f96c64a258.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_rock.fbx" +dest_files=["res://.godot/imported/cliff_diagonal_rock.fbx-a636df227a045b094d9a77f96c64a258.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_stone.fbx new file mode 100644 index 0000000..de3ebd8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_stone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 389 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_diagonal_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_diagonal_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5621315358002848258, "Model::cliff_diagonal_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5164100990143147250, "Geometry::", "Mesh" { + Vertices: *210 { + a: 5,-1.955867E-15,6.685,5,-2.048524E-16,5,3.808525,-1.727634E-15,6.191475,3.153641,-4.737893E-16,5,2.626226,5.04744E-17,4.04044,-5,-2.048524E-16,-5,-0.7071068,3.82001E-15,0.7071068,0.4751917,2.041901E-15,2.858142,-2.858142,4.006657E-15,-0.4751917,-4.04044,5.784767E-15,-2.626226,-5,3.234137E-15,-3.153641,-6.191475,7.776193E-15,-3.808525,-6.685,-8.946748E-15,-5,-5,-2.048524E-16,-5,5,-2.048524E-16,5,-5,10,-5,5,10,5,-0.7071068,3.82001E-15,0.7071068,-0.7071068,10,0.7071068,0.4751917,2.041901E-15,2.858142,0.4751917,10,2.858142,-5,3.234137E-15,-3.153641,-6.191475,7.776193E-15,-3.808525,-4.04044,5.784767E-15,-2.626226,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-0.7071068,3.82001E-15,0.7071068,-2.858142,4.006657E-15,-0.4751917,-0.7071068,10,0.7071068,-2.858142,10,-0.4751917,2.626226,5.04744E-17,4.04044,0.4751917,2.041901E-15,2.858142,2.626226,10,4.04044,0.4751917,10,2.858142,5,-1.955867E-15,6.685,3.808525,-1.727634E-15,6.191475,5,10,6.685,3.808525,10,6.191475,-4.04044,5.784767E-15,-2.626226,-4.04044,10,-2.626226,-2.858142,4.006657E-15,-0.4751917,-2.858142,10,-0.4751917,2.626226,5.04744E-17,4.04044,2.626226,10,4.04044,3.153641,-4.737893E-16,5,3.808525,10,6.191475,3.808525,-1.727634E-15,6.191475,5,10,6.685,3.808525,10,6.191475,5,10,5,2.626226,10,4.04044,-5,10,-5,-0.7071068,10,0.7071068,0.4751917,10,2.858142,-2.858142,10,-0.4751917,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-6.685,10,-5,5,-2.048524E-16,5,5,-1.955867E-15,6.685,5,10,5,5,10,6.685,-6.685,-8.946748E-15,-5,-5,-2.048524E-16,-5,-6.685,10,-5,-5,10,-5,-6.685,10,-5,-6.191475,10,-3.808525,-6.685,-8.946748E-15,-5,-6.191475,7.776193E-15,-3.808525 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,1,-4,5,1,-5,6,5,-5,7,6,-5,8,5,-7,9,5,-9,10,5,-10,11,5,-11,12,5,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,22,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,45,-45,47,49,-49,50,48,-50,51,50,-50,52,50,-52,53,50,-53,54,52,-52,55,54,-52,56,55,-52,57,56,-52,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *140 { + a: 19.68504,26.3189,19.68504,19.68504,14.99419,24.37589,12.41591,19.68504,10.33947,15.90724,-19.68504,-19.68504,-2.783885,2.783885,1.870834,11.25253,-11.25253,-1.870834,-15.90724,-10.33947,-19.68504,-12.41591,-24.37589,-14.99419,-26.3189,-19.68504,27.83885,-8.065056E-16,-27.83885,-8.065056E-16,27.83885,39.37008,-27.83885,39.37008,1.098718,1.757539E-14,1.098718,39.37008,10.76227,1.057496E-14,10.76227,39.37008,-23.23142,1.139137E-14,-28.58414,2.927348E-14,-18.92058,2.143321E-14,-18.92058,39.37008,-28.58414,39.37008,-1.098718,1.894661E-14,-10.76227,1.968144E-14,-1.098718,39.37008,-10.76227,39.37008,16.72315,9.458786E-15,7.059593,1.729905E-14,16.72315,39.37008,7.059593,39.37008,28.25841,6.70106E-15,23.18108,7.599613E-15,28.25841,39.37008,23.18108,39.37008,-16.72315,2.878494E-14,-16.72315,39.37008,-7.059593,2.178452E-14,-7.059593,39.37008,18.92058,-1.4665E-15,18.92058,39.37008,23.23142,-3.530531E-15,28.58414,39.37008,28.58414,-8.466929E-15,-19.68504,26.3189,-14.99419,24.37589,-19.68504,19.68504,-10.33947,15.90724,19.68504,-19.68504,2.783885,2.783885,-1.870834,11.25253,11.25253,-1.870834,15.90724,-10.33947,24.37589,-14.99419,26.3189,-19.68504,-19.68504,-1.501736E-14,-26.3189,-2.191112E-14,-19.68504,39.37008,-26.3189,39.37008,26.3189,9.267427E-14,19.68504,1.270912E-13,26.3189,39.37008,19.68504,39.37008,-28.25841,39.37008,-23.18108,39.37008,-28.25841,4.538964E-14,-23.18108,1.11228E-13 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,1,3,5,1,4,6,5,4,7,6,4,8,5,6,9,5,8,10,5,9,11,5,10,12,5,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,22,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,45,44,47,49,48,50,48,49,51,50,49,52,50,51,53,50,52,54,52,51,55,54,51,56,55,51,57,56,51,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_diagonal_stone, Model::RootNode + C: "OO",5621315358002848258,0 + + ;Geometry::, Model::Mesh cliff_diagonal_stone + C: "OO",5164100990143147250,5621315358002848258 + + ;Material::stone, Model::Mesh cliff_diagonal_stone + C: "OO",3038,5621315358002848258 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_stone.fbx.import new file mode 100644 index 0000000..68526e1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bdrl7vfc4ps63" +path="res://.godot/imported/cliff_diagonal_stone.fbx-1e9129adcdb17d9a5340566c94aefb81.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_diagonal_stone.fbx" +dest_files=["res://.godot/imported/cliff_diagonal_stone.fbx-1e9129adcdb17d9a5340566c94aefb81.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_rock.fbx new file mode 100644 index 0000000..6b43673 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_rock.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 840 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_halfCornerInner_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_halfCornerInner_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4889498068927695534, "Model::cliff_halfCornerInner_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5397048495937974116, "Geometry::", "Mesh" { + Vertices: *435 { + a: 5,3.609557E-15,5,5,3.609557E-15,-5,0.8150001,1.804779E-15,5,1.5,1.804779E-15,3.333333,1.5,3.609557E-15,-2.235177E-08,0.815,1.804779E-15,1.666667,1.063076,1.555998E-15,-1.063076,-5,1.804779E-15,-5,-2.235176E-08,1.804779E-15,-1.5,-1.666667,0,-0.8149999,-3.333333,0,-1.5,-5,0,-0.8149999,-1.666667,0,-0.8149999,-1.666667,5,-3.315,-2.235176E-08,1.804779E-15,-1.5,-5.960476E-08,5,-4,0.8150001,1.804779E-15,5,3.315,5,5,5,3.609557E-15,5,5,5,5,5,5,-5,5,3.609557E-15,-5,5,5,5,5,3.609557E-15,5,-5,1.804779E-15,-5,5,3.609557E-15,-5,-5,5,-5,5,5,-5,3.315,5,1.666667,4,5,3.333333,0.815,1.804779E-15,1.666667,1.5,1.804779E-15,3.333333,4,5,3.333333,3.315,5,5,1.5,1.804779E-15,3.333333,0.8150001,1.804779E-15,5,1.063076,1.555998E-15,-1.063076,-2.235176E-08,1.804779E-15,-1.5,1.666667,1.703333,-1.666667,-5.960476E-08,5,-4,1.666667,5,-3.315,-1.666667,0,-0.8149999,-3.333333,0,-1.5,-1.666667,5,-3.315,-3.333333,5,-4,-5,1.804779E-15,-5,-5,5,-5,-5,0,-0.8149999,-5,5,-3.315,1.666667,1.703333,-1.666667,1.666667,5,-3.315,3.333333,3.666667,-3.333333,3.333333,5,-4,4,5,-3.333333,3.315,5,-1.666667,3.333333,3.666667,-3.333333,1.666667,1.703333,-1.666667,3.315,5,-1.666667,4,5,-5.960481E-08,1.666667,1.703333,-1.666667,1.063076,1.555998E-15,-1.063076,1.5,3.609557E-15,-2.235177E-08,4,5,-5.960481E-08,3.315,5,1.666667,1.5,3.609557E-15,-2.235177E-08,0.815,1.804779E-15,1.666667,-3.333333,0,-1.5,-5,0,-0.8149999,-3.333333,5,-4,-5,5,-3.315,-3.333333,4,-3,-5,4,-2.315,-3.333333,5,-4,-5,5,-3.315,4,5,-5.960481E-08,3,4,-4.470358E-08,3.315,5,-1.666667,2.315,4,-1.666667,4,5,3.333333,3.315,5,5,3,4,3.333333,2.315,4,5,1.666667,4,-2.315,1.25,4,-2.48625,1.666667,5,-3.315,0.8333333,4.5,-3.1575,-5.960476E-08,5,-4,-4.470355E-08,4,-3,0.4166666,4,-2.82875,4,5,3.333333,3,4,3.333333,3.315,5,1.666667,2.9075,4.25,2.5,2.315,4,1.666667,2.48625,4,2.083333,2.82875,4,2.916667,4,5,-3.333333,3.315,5,-1.666667,3.333333,4.333333,-3.333333,2.767402,4,-2.767402,2.315,4,-1.666667,4,5,-3.333333,3.333333,4.333333,-3.333333,3.333333,5,-4,3.315,5,5,4,5,3.333333,5,5,5,5,5,-5,4,5,-5.960481E-08,4,5,-3.333333,3.333333,5,-4,-5,5,-5,-5.960476E-08,5,-4,1.666667,5,-3.315,-1.666667,5,-3.315,-3.333333,5,-4,-5,5,-3.315,3.315,5,-1.666667,3.315,5,1.666667,3.315,5,1.666667,3.1575,4.5,0.8333333,4,5,-5.960481E-08,3,4,-4.470358E-08,2.82875,4,0.4166666,2.48625,4,1.25,2.315,4,1.666667,-1.666667,4,-2.315,-2.083333,4,-2.48625,-1.666667,5,-3.315,-2.5,4.5,-3.1575,-3.333333,5,-4,-3.333333,4,-3,-2.916667,4,-2.82875,-4.470355E-08,4,-3,-1.666667,4,-2.315,-5.960476E-08,5,-4,-1.666667,5,-3.315,3.333333,4.333333,-3.333333,2.767402,4,-2.767402,3.333333,5,-4,1.666667,5,-3.315,1.666667,4,-2.315,4,5,-3.333333,3.333333,3.666667,-3.333333,3.333333,5,-4 + } + PolygonVertexIndex: *267 { + a: 0,2,-2,3,1,-3,3,4,-2,3,5,-5,4,6,-2,7,1,-7,8,7,-7,9,7,-9,10,7,-10,11,7,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,58,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,84,86,-86,86,87,-86,88,85,-88,89,91,-91,92,90,-92,93,92,-92,94,92,-94,92,95,-91,96,98,-98,99,97,-99,100,97,-100,101,103,-103,104,106,-106,107,105,-107,105,107,-109,109,108,-108,110,109,-108,111,110,-108,112,110,-112,113,110,-113,114,112,-112,115,114,-112,116,115,-112,109,117,-109,108,118,-106,119,121,-121,122,120,-122,123,120,-123,124,119,-121,125,119,-125,126,128,-128,129,127,-129,128,130,-130,130,131,-130,132,129,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,138,-141,142,144,-144 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *801 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6666666,0.3333333,0.6666667,-0.6666666,0.3333333,0.6666667,-0.6666666,0.3333333,0.6666667 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *290 { + a: 19.68504,19.68504,19.68504,-19.68504,3.208662,19.68504,5.905512,13.12336,5.905512,-8.79991E-08,3.208662,6.56168,4.185338,-4.185338,-19.68504,-19.68504,-8.799907E-08,-5.905512,-6.56168,-3.208661,-13.12336,-5.905511,-19.68504,-3.208661,-4.849318,2.292746,-1.107733,23.98091,2.244951,2.292746,5.986535,23.98091,3.208661,9.617079E-14,13.05118,19.68504,19.68504,1.032762E-13,19.68504,19.68504,19.68504,19.68504,19.68504,7.611298E-14,-19.68504,19.68504,-19.68504,7.611298E-14,19.68504,7.105427E-15,-19.68504,1.421085E-14,19.68504,19.68504,-19.68504,19.68504,11.03041,21.88687,18.12468,21.88687,7.288831,0.1987046,14.3831,0.1987046,6.151614,26.07495,13.24588,26.07495,9.893198,4.386786,16.98747,4.386786,2.280097,2.292746,-2.244951,2.292746,3.574685,9.681181,-5.986535,23.98091,1.107733,23.98091,-7.288831,0.1987046,-14.3831,0.1987046,-11.03041,21.88687,-18.12468,21.88687,-19.68504,7.105427E-15,-19.68504,19.68504,-3.208661,0,-13.05118,19.68504,8.563464,7.58714,11.03041,21.88687,17.12693,16.10336,18.12468,21.88687,-18.12468,21.88687,-11.03041,21.88687,-17.12693,16.10336,-8.563464,7.58714,-1.107733,23.98091,5.986535,23.98091,-3.574685,9.681181,-2.280097,2.292746,2.244951,2.292746,-5.986535,23.98091,1.107733,23.98091,-2.244951,2.292746,4.849318,2.292746,-9.893198,4.386786,-16.98747,4.386786,-6.151614,26.07495,-13.24588,26.07495,-7.648247,22.36625,-14.74252,22.36625,-6.151614,27.7291,-13.24588,27.7291,5.986535,24.34166,4.489901,18.97881,-1.107733,24.34166,-2.604367,18.97881,6.151614,27.7291,13.24588,27.7291,7.648247,22.36625,14.74252,22.36625,2.604367,18.97881,0.8308001,18.97881,1.107733,24.34166,-1.691084,21.66023,-5.986535,24.34166,-4.489901,18.97881,-2.716334,18.97881,18.12468,20.95421,16.62805,15.59136,11.03041,20.95421,13.45507,16.93207,9.533781,15.59136,11.30735,15.59136,14.85448,15.59136,-18.12468,20.95421,-11.03041,20.95421,-17.12693,17.37898,-14.21913,15.59136,-9.533781,15.59136,1.855923,27.85946,1.705303E-13,24.64491,-1.855923,27.85946,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-2.346646E-07,-15.74803,-13.12336,-13.12336,-15.74803,19.68504,-19.68504,2.346644E-07,-15.74803,-6.561679,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-13.05118,-6.56168,-13.05118,6.561679,1.107733,24.34166,-1.691084,21.66023,-5.986535,24.34166,-4.489901,18.97881,-2.716334,18.97881,0.8308001,18.97881,2.604367,18.97881,-9.533781,15.59136,-11.30735,15.59136,-11.03041,20.95421,-13.82923,18.27279,-18.12468,20.95421,-16.62805,15.59136,-14.85448,15.59136,4.489901,18.97881,-2.604367,18.97881,5.986535,24.34166,-1.107733,24.34166,17.12693,17.37898,14.21913,15.59136,18.12468,20.95421,11.03041,20.95421,9.533781,15.59136,-2.604367,18.97881,-1.107733,24.34166,4.489901,18.97881 + } + UVIndex: *267 { + a: 0,2,1,3,1,2,3,4,1,3,5,4,4,6,1,7,1,6,8,7,6,9,7,8,10,7,9,11,7,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,58,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,84,86,85,86,87,85,88,85,87,89,91,90,92,90,91,93,92,91,94,92,93,92,95,90,96,98,97,99,97,98,100,97,99,101,103,102,104,106,105,107,105,106,105,107,108,109,108,107,110,109,107,111,110,107,112,110,111,113,110,112,114,112,111,115,114,111,116,115,111,109,117,108,108,118,105,119,121,120,122,120,121,123,120,122,124,119,120,125,119,124,126,128,127,129,127,128,128,130,129,130,131,129,132,129,131,133,135,134,136,134,135,137,139,138,140,138,139,141,138,140,142,144,143 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *89 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_halfCornerInner_rock, Model::RootNode + C: "OO",4889498068927695534,0 + + ;Geometry::, Model::Mesh cliff_halfCornerInner_rock + C: "OO",5397048495937974116,4889498068927695534 + + ;Material::dirt, Model::Mesh cliff_halfCornerInner_rock + C: "OO",3020,4889498068927695534 + + ;Material::grass, Model::Mesh cliff_halfCornerInner_rock + C: "OO",3024,4889498068927695534 + + ;Material::_defaultMat, Model::Mesh cliff_halfCornerInner_rock + C: "OO",3004,4889498068927695534 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_rock.fbx.import new file mode 100644 index 0000000..43c0160 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://26ilohs2sh36" +path="res://.godot/imported/cliff_halfCornerInner_rock.fbx-a415d8a335e7eb027b39bdcab7a357a2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_rock.fbx" +dest_files=["res://.godot/imported/cliff_halfCornerInner_rock.fbx-a415d8a335e7eb027b39bdcab7a357a2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_stone.fbx new file mode 100644 index 0000000..5bec0fe --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_stone.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 951 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_halfCornerInner_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_halfCornerInner_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4843591040404531739, "Model::cliff_halfCornerInner_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5270737603592807439, "Geometry::", "Mesh" { + Vertices: *435 { + a: 5,3.609557E-15,5,5,3.609557E-15,-5,0.8150001,1.804779E-15,5,1.5,1.804779E-15,3.333333,1.5,3.609557E-15,-2.235176E-08,0.815,1.804779E-15,1.666667,1.063076,1.555998E-15,-1.063076,-5,1.804779E-15,-5,-2.235176E-08,1.804779E-15,-1.5,-1.666667,0,-0.8149999,-3.333333,0,-1.5,-5,0,-0.8149999,-1.666667,0,-0.8149999,-1.666667,5,-3.315,-2.235176E-08,1.804779E-15,-1.5,-5.960476E-08,5,-4,0.8150001,1.804779E-15,5,3.315,5,5,5,3.609557E-15,5,5,5,5,5,5,-5,5,3.609557E-15,-5,5,5,5,5,3.609557E-15,5,-5,1.804779E-15,-5,5,3.609557E-15,-5,-5,5,-5,5,5,-5,3.315,5,1.666667,4,5,3.333333,0.815,1.804779E-15,1.666667,1.5,1.804779E-15,3.333333,4,5,3.333333,3.315,5,5,1.5,1.804779E-15,3.333333,0.8150001,1.804779E-15,5,1.063076,1.555998E-15,-1.063076,-2.235176E-08,1.804779E-15,-1.5,1.666667,1.703333,-1.666667,-5.960476E-08,5,-4,1.666667,5,-3.315,-1.666667,0,-0.8149999,-3.333333,0,-1.5,-1.666667,5,-3.315,-3.333333,5,-4,-5,1.804779E-15,-5,-5,5,-5,-5,0,-0.8149999,-5,5,-3.315,1.666667,1.703333,-1.666667,1.666667,5,-3.315,3.333333,3.666667,-3.333333,3.333333,5,-4,4,5,-3.333333,3.315,5,-1.666667,3.333333,3.666667,-3.333333,1.666667,1.703333,-1.666667,3.315,5,-1.666667,4,5,-5.960481E-08,1.666667,1.703333,-1.666667,1.063076,1.555998E-15,-1.063076,1.5,3.609557E-15,-2.235176E-08,4,5,-5.960481E-08,3.315,5,1.666667,1.5,3.609557E-15,-2.235176E-08,0.815,1.804779E-15,1.666667,-3.333333,0,-1.5,-5,0,-0.8149999,-3.333333,5,-4,-5,5,-3.315,-3.333333,4,-3,-5,4,-2.315,-3.333333,5,-4,-5,5,-3.315,4,5,-5.960481E-08,3,4,-4.470358E-08,3.315,5,-1.666667,2.315,4,-1.666667,4,5,3.333333,3.315,5,5,3,4,3.333333,2.315,4,5,1.666667,4,-2.315,1.25,4,-2.48625,1.666667,5,-3.315,0.8333333,4.5,-3.1575,-5.960476E-08,5,-4,-4.470355E-08,4,-3,0.4166666,4,-2.82875,4,5,3.333333,3,4,3.333333,3.315,5,1.666667,2.9075,4.25,2.5,2.315,4,1.666667,2.48625,4,2.083333,2.82875,4,2.916667,4,5,-3.333333,3.315,5,-1.666667,3.333333,4.333333,-3.333333,2.767402,4,-2.767402,2.315,4,-1.666667,4,5,-3.333333,3.333333,4.333333,-3.333333,3.333333,5,-4,3.315,5,5,4,5,3.333333,5,5,5,5,5,-5,4,5,-5.960481E-08,4,5,-3.333333,3.333333,5,-4,-5,5,-5,-5.960476E-08,5,-4,1.666667,5,-3.315,-1.666667,5,-3.315,-3.333333,5,-4,-5,5,-3.315,3.315,5,-1.666667,3.315,5,1.666667,3.315,5,1.666667,3.1575,4.5,0.8333333,4,5,-5.960481E-08,3,4,-4.470358E-08,2.82875,4,0.4166666,2.48625,4,1.25,2.315,4,1.666667,-1.666667,4,-2.315,-2.083333,4,-2.48625,-1.666667,5,-3.315,-2.5,4.5,-3.1575,-3.333333,5,-4,-3.333333,4,-3,-2.916667,4,-2.82875,-4.470355E-08,4,-3,-1.666667,4,-2.315,-5.960476E-08,5,-4,-1.666667,5,-3.315,3.333333,4.333333,-3.333333,2.767402,4,-2.767402,3.333333,5,-4,1.666667,5,-3.315,1.666667,4,-2.315,4,5,-3.333333,3.333333,3.666667,-3.333333,3.333333,5,-4 + } + PolygonVertexIndex: *267 { + a: 0,2,-2,3,1,-3,3,4,-2,3,5,-5,4,6,-2,7,1,-7,8,7,-7,9,7,-9,10,7,-10,11,7,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,58,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,84,86,-86,86,87,-86,88,85,-88,89,91,-91,92,90,-92,93,92,-92,94,92,-94,92,95,-91,96,98,-98,99,97,-99,100,97,-100,101,103,-103,104,106,-106,107,105,-107,105,107,-109,109,108,-108,110,109,-108,111,110,-108,112,110,-112,113,110,-113,114,112,-112,115,114,-112,116,115,-112,109,117,-109,108,118,-106,119,121,-121,122,120,-122,123,120,-123,124,119,-121,125,119,-125,126,128,-128,129,127,-129,128,130,-130,130,131,-130,132,129,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,138,-141,142,144,-144 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *801 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,-0.8395003,0.4197502,-0.3450346,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6666666,0.3333333,0.6666667,-0.6666666,0.3333333,0.6666667,-0.6666666,0.3333333,0.6666667 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *290 { + a: 19.68504,19.68504,19.68504,-19.68504,3.208662,19.68504,5.905512,13.12336,5.905512,-8.799907E-08,3.208662,6.56168,4.185338,-4.185338,-19.68504,-19.68504,-8.799907E-08,-5.905512,-6.56168,-3.208661,-13.12336,-5.905511,-19.68504,-3.208661,-4.849318,2.292746,-1.107733,23.98091,2.244951,2.292746,5.986535,23.98091,3.208661,9.617079E-14,13.05118,19.68504,19.68504,1.032762E-13,19.68504,19.68504,19.68504,19.68504,19.68504,7.611298E-14,-19.68504,19.68504,-19.68504,7.611298E-14,19.68504,7.105427E-15,-19.68504,1.421085E-14,19.68504,19.68504,-19.68504,19.68504,11.03041,21.88687,18.12468,21.88687,7.288831,0.1987046,14.3831,0.1987046,6.151614,26.07495,13.24588,26.07495,9.893198,4.386786,16.98747,4.386786,2.280097,2.292746,-2.244951,2.292746,3.574685,9.681181,-5.986535,23.98091,1.107733,23.98091,-7.288831,0.1987046,-14.3831,0.1987046,-11.03041,21.88687,-18.12468,21.88687,-19.68504,7.105427E-15,-19.68504,19.68504,-3.208661,0,-13.05118,19.68504,8.563464,7.58714,11.03041,21.88687,17.12693,16.10336,18.12468,21.88687,-18.12468,21.88687,-11.03041,21.88687,-17.12693,16.10336,-8.563464,7.58714,-1.107733,23.98091,5.986535,23.98091,-3.574685,9.681181,-2.280097,2.292746,2.244951,2.292746,-5.986535,23.98091,1.107733,23.98091,-2.244951,2.292746,4.849318,2.292746,-9.893198,4.386786,-16.98747,4.386786,-6.151614,26.07495,-13.24588,26.07495,-7.648247,22.36625,-14.74252,22.36625,-6.151614,27.7291,-13.24588,27.7291,5.986535,24.34166,4.489901,18.97881,-1.107733,24.34166,-2.604367,18.97881,6.151614,27.7291,13.24588,27.7291,7.648247,22.36625,14.74252,22.36625,2.604367,18.97881,0.8308001,18.97881,1.107733,24.34166,-1.691084,21.66023,-5.986535,24.34166,-4.489901,18.97881,-2.716334,18.97881,18.12468,20.95421,16.62805,15.59136,11.03041,20.95421,13.45507,16.93207,9.533781,15.59136,11.30735,15.59136,14.85448,15.59136,-18.12468,20.95421,-11.03041,20.95421,-17.12693,17.37898,-14.21913,15.59136,-9.533781,15.59136,1.855923,27.85946,1.598721E-13,24.64491,-1.855923,27.85946,-13.05118,19.68504,-15.74803,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-15.74803,-2.346646E-07,-15.74803,-13.12336,-13.12336,-15.74803,19.68504,-19.68504,2.346644E-07,-15.74803,-6.561679,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-13.05118,-6.56168,-13.05118,6.561679,1.107733,24.34166,-1.691084,21.66023,-5.986535,24.34166,-4.489901,18.97881,-2.716334,18.97881,0.8308001,18.97881,2.604367,18.97881,-9.533781,15.59136,-11.30735,15.59136,-11.03041,20.95421,-13.82923,18.27279,-18.12468,20.95421,-16.62805,15.59136,-14.85448,15.59136,4.489901,18.97881,-2.604367,18.97881,5.986535,24.34166,-1.107733,24.34166,17.12693,17.37898,14.21913,15.59136,18.12468,20.95421,11.03041,20.95421,9.533781,15.59136,-2.604367,18.97881,-1.107733,24.34166,4.489901,18.97881 + } + UVIndex: *267 { + a: 0,2,1,3,1,2,3,4,1,3,5,4,4,6,1,7,1,6,8,7,6,9,7,8,10,7,9,11,7,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,58,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,84,86,85,86,87,85,88,85,87,89,91,90,92,90,91,93,92,91,94,92,93,92,95,90,96,98,97,99,97,98,100,97,99,101,103,102,104,106,105,107,105,106,105,107,108,109,108,107,110,109,107,111,110,107,112,110,111,113,110,112,114,112,111,115,114,111,116,115,111,109,117,108,108,118,105,119,121,120,122,120,121,123,120,122,124,119,120,125,119,124,126,128,127,129,127,128,128,130,129,130,131,129,132,129,131,133,135,134,136,134,135,137,139,138,140,138,139,141,138,140,142,144,143 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *89 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_halfCornerInner_stone, Model::RootNode + C: "OO",4843591040404531739,0 + + ;Geometry::, Model::Mesh cliff_halfCornerInner_stone + C: "OO",5270737603592807439,4843591040404531739 + + ;Material::stone, Model::Mesh cliff_halfCornerInner_stone + C: "OO",3038,4843591040404531739 + + ;Material::grass, Model::Mesh cliff_halfCornerInner_stone + C: "OO",3024,4843591040404531739 + + ;Material::_defaultMat, Model::Mesh cliff_halfCornerInner_stone + C: "OO",3004,4843591040404531739 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_stone.fbx.import new file mode 100644 index 0000000..1ae0858 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dkjtwl5e6yn0s" +path="res://.godot/imported/cliff_halfCornerInner_stone.fbx-3152d054586d2fa25c001532b34bceeb.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCornerInner_stone.fbx" +dest_files=["res://.godot/imported/cliff_halfCornerInner_stone.fbx-3152d054586d2fa25c001532b34bceeb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_rock.fbx new file mode 100644 index 0000000..28c9ee5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 647 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_halfCorner_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_halfCorner_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5140603635262317707, "Model::cliff_halfCorner_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4940999742953453713, "Geometry::", "Mesh" { + Vertices: *96 { + a: 5,5,-5,5,5,-3.315,3.315,5,-5,3.73625,5,-3.73625,5,5,-3.315,5,4,-2.315,3.73625,5,-3.73625,2.98625,4,-2.98625,2.315,4,-5,3.315,5,-5,2.98625,4,-2.98625,3.73625,5,-3.73625,1.86125,-2.00138E-15,-1.86125,3.73625,5,-3.73625,5,2.255973E-16,-0.8149999,5,5,-3.315,5,5,-5,5,0,-5,5,5,-3.315,5,2.255973E-16,-0.8149999,0.8149999,0,-5,3.315,5,-5,1.86125,-2.00138E-15,-1.86125,3.73625,5,-3.73625,0.8149999,0,-5,5,0,-5,3.315,5,-5,5,5,-5,5,0,-5,0.8149999,0,-5,5,2.255973E-16,-0.8149999,1.86125,-2.00138E-15,-1.86125 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *64 { + a: -19.68504,-19.68504,-19.68504,-13.05118,-13.05118,-19.68504,-14.70965,-14.70965,14.54772,27.08683,15.79271,21.66004,9.303197,27.08683,7.43571,21.66004,-15.79271,21.66004,-14.54772,27.08683,-7.43571,21.66004,-9.303197,27.08683,4.63448,3.972411,9.303197,25.75976,17.6602,3.972411,14.54772,25.75976,19.68504,19.68504,19.68504,8.526513E-14,13.05118,19.68504,3.208661,8.615331E-14,-17.6602,3.972411,-14.54772,25.75976,-4.63448,3.972411,-9.303197,25.75976,-3.208661,2.842171E-14,-19.68504,2.842171E-14,-13.05118,19.68504,-19.68504,19.68504,19.68504,-19.68504,3.208661,-19.68504,19.68504,-3.208661,7.327756,-7.327756 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_halfCorner_rock, Model::RootNode + C: "OO",5140603635262317707,0 + + ;Geometry::, Model::Mesh cliff_halfCorner_rock + C: "OO",4940999742953453713,5140603635262317707 + + ;Material::grass, Model::Mesh cliff_halfCorner_rock + C: "OO",3024,5140603635262317707 + + ;Material::dirt, Model::Mesh cliff_halfCorner_rock + C: "OO",3020,5140603635262317707 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_rock.fbx.import new file mode 100644 index 0000000..fe951f5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c3bjd3ooosvsq" +path="res://.godot/imported/cliff_halfCorner_rock.fbx-c2dc3455f397680a2e10dbc65629f06e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_rock.fbx" +dest_files=["res://.godot/imported/cliff_halfCorner_rock.fbx-c2dc3455f397680a2e10dbc65629f06e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_stone.fbx new file mode 100644 index 0000000..cb6950d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 730 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_halfCorner_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_halfCorner_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5728081609202666229, "Model::cliff_halfCorner_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5026396562552318661, "Geometry::", "Mesh" { + Vertices: *96 { + a: 5,5,-5,5,5,-3.315,3.315,5,-5,3.73625,5,-3.73625,5,5,-3.315,5,4,-2.315,3.73625,5,-3.73625,2.98625,4,-2.98625,2.315,4,-5,3.315,5,-5,2.98625,4,-2.98625,3.73625,5,-3.73625,1.86125,-2.00138E-15,-1.86125,3.73625,5,-3.73625,5,2.255973E-16,-0.8149999,5,5,-3.315,5,5,-5,5,0,-5,5,5,-3.315,5,2.255973E-16,-0.8149999,0.8149999,0,-5,3.315,5,-5,1.86125,-2.00138E-15,-1.86125,3.73625,5,-3.73625,0.8149999,0,-5,5,0,-5,3.315,5,-5,5,5,-5,5,0,-5,0.8149999,0,-5,5,2.255973E-16,-0.8149999,1.86125,-2.00138E-15,-1.86125 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.2294157,0.6882472,0.6882472,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.6882472,0.6882472,0.2294157,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,-0.2857143,0.4285714,0.8571428,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,-0.8571428,0.4285714,0.2857143,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *64 { + a: -19.68504,-19.68504,-19.68504,-13.05118,-13.05118,-19.68504,-14.70965,-14.70965,14.54772,27.08683,15.79271,21.66004,9.303197,27.08683,7.43571,21.66004,-15.79271,21.66004,-14.54772,27.08683,-7.43571,21.66004,-9.303197,27.08683,4.63448,3.972411,9.303197,25.75976,17.6602,3.972411,14.54772,25.75976,19.68504,19.68504,19.68504,8.526513E-14,13.05118,19.68504,3.208661,8.615331E-14,-17.6602,3.972411,-14.54772,25.75976,-4.63448,3.972411,-9.303197,25.75976,-3.208661,2.842171E-14,-19.68504,2.842171E-14,-13.05118,19.68504,-19.68504,19.68504,19.68504,-19.68504,3.208661,-19.68504,19.68504,-3.208661,7.327756,-7.327756 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_halfCorner_stone, Model::RootNode + C: "OO",5728081609202666229,0 + + ;Geometry::, Model::Mesh cliff_halfCorner_stone + C: "OO",5026396562552318661,5728081609202666229 + + ;Material::grass, Model::Mesh cliff_halfCorner_stone + C: "OO",3024,5728081609202666229 + + ;Material::stone, Model::Mesh cliff_halfCorner_stone + C: "OO",3038,5728081609202666229 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_stone.fbx.import new file mode 100644 index 0000000..1c93007 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dpcmui8isqwcu" +path="res://.godot/imported/cliff_halfCorner_stone.fbx-09bcd25a890d2800b2c9c34c086845f1.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_halfCorner_stone.fbx" +dest_files=["res://.godot/imported/cliff_halfCorner_stone.fbx-09bcd25a890d2800b2c9c34c086845f1.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_rock.fbx new file mode 100644 index 0000000..40b293d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 477 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_half_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_half_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5103612979240319847, "Model::cliff_half_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5717777258207807602, "Geometry::", "Mesh" { + Vertices: *261 { + a: 1.666667,-2.707168E-15,-0.8149999,1.155058E-13,-9.023893E-16,-1.5,1.666667,5,-3.315,2.310117E-13,5,-4,-1.666667,-2.707168E-15,-0.8149999,-3.333333,-2.707168E-15,-1.5,-1.666667,5,-3.315,-3.333333,5,-4,-1.666667,-2.707168E-15,-0.8149999,-1.666667,5,-3.315,1.155058E-13,-9.023893E-16,-1.5,2.310117E-13,5,-4,-3.333333,-2.707168E-15,-1.5,-5,-2.707168E-15,-0.8149999,-3.333333,5,-4,-5,5,-3.315,-5,0,-5,5,0,-5,-5,5,-5,5,5,-5,3.333333,-2.707168E-15,-1.5,1.666667,-2.707168E-15,-0.8149999,3.333333,5,-4,1.666667,5,-3.315,5,5,-5,5,0,-5,5,5,-3.315,5,-2.707168E-15,-0.8149999,5,-2.707168E-15,-0.8149999,3.333333,-2.707168E-15,-1.5,5,5,-3.315,3.333333,5,-4,-5,0,-5,-5,5,-5,-5,-2.707168E-15,-0.8149999,-5,5,-3.315,5,0,-5,-5,0,-5,5,-2.707168E-15,-0.8149999,3.333333,-2.707168E-15,-1.5,1.666667,-2.707168E-15,-0.8149999,1.155058E-13,-9.023893E-16,-1.5,-1.666667,-2.707168E-15,-0.8149999,-3.333333,-2.707168E-15,-1.5,-5,-2.707168E-15,-0.8149999,5,5,-3.315,5,4,-2.315,3.333333,5,-4,3.333333,4,-3,1.666667,4,-2.315,0.8333334,4.5,-3.1575,1.666667,5,-3.315,2.310117E-13,5,-4,1.25,4,-2.48625,0.4166667,4,-2.82875,1.732587E-13,4,-3,-1.666667,4,-2.315,-1.666667,5,-3.315,1.732587E-13,4,-3,2.310117E-13,5,-4,3.333333,4,-3,2.916667,4,-2.82875,3.333333,5,-4,2.5,4.25,-2.9075,1.666667,5,-3.315,1.666667,4,-2.315,2.083333,4,-2.48625,5,5,-3.315,3.333333,5,-4,5,5,-5,-5,5,-5,2.310117E-13,5,-4,1.666667,5,-3.315,-1.666667,5,-3.315,-3.333333,5,-4,-5,5,-3.315,-1.666667,4,-2.315,-2.5,4.5,-3.1575,-1.666667,5,-3.315,-3.333333,5,-4,-2.083333,4,-2.48625,-2.916667,4,-2.82875,-3.333333,4,-3,-3.333333,4,-3,-5,4,-2.315,-3.333333,5,-4,-5,5,-3.315 + } + PolygonVertexIndex: *159 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,37,-40,41,37,-41,42,37,-42,43,37,-43,44,37,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,49,-51,54,50,-53,55,54,-53,56,58,-58,59,57,-59,60,62,-62,63,61,-63,62,64,-64,64,65,-64,66,63,-66,67,69,-69,70,68,-70,71,68,-71,72,68,-72,73,71,-71,74,73,-71,75,74,-71,76,78,-78,79,77,-79,80,76,-78,81,77,-80,82,81,-80,83,85,-85,86,84,-86 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *477 { + a: -0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *174 { + a: 4.849318,2.292746,-2.244951,2.292746,1.107733,23.98091,-5.986535,23.98091,-7.288831,0.1987046,-14.3831,0.1987046,-11.03041,21.88687,-18.12468,21.88687,-4.849318,2.292746,-1.107733,23.98091,2.244951,2.292746,5.986535,23.98091,-9.893198,4.386786,-16.98747,4.386786,-6.151614,26.07495,-13.24588,26.07495,19.68504,0,-19.68504,0,19.68504,19.68504,-19.68504,19.68504,14.3831,0.1987046,7.288831,0.1987046,18.12468,21.88687,11.03041,21.88687,19.68504,19.68504,19.68504,1.075791E-13,13.05118,19.68504,3.208661,9.692092E-14,16.98747,4.386786,9.893198,4.386786,13.24588,26.07495,6.151614,26.07495,-19.68504,0,-19.68504,19.68504,-3.208661,-1.065814E-14,-13.05118,19.68504,19.68504,-19.68504,-19.68504,-19.68504,19.68504,-3.208661,13.12336,-5.905512,6.56168,-3.208661,4.547474E-13,-5.905512,-6.56168,-3.208661,-13.12336,-5.905512,-19.68504,-3.208661,13.24588,27.7291,14.74252,22.36625,6.151614,27.7291,7.648247,22.36625,2.604367,18.97881,-1.691084,21.66023,1.107733,24.34166,-5.986535,24.34166,0.8308001,18.97881,-2.716334,18.97881,-4.489901,18.97881,-2.604367,18.97881,-1.107733,24.34166,4.489901,18.97881,5.986535,24.34166,16.62805,15.59136,14.85448,15.59136,18.12468,20.95421,13.45507,16.93207,11.03041,20.95421,9.533781,15.59136,11.30735,15.59136,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,-9.136653E-13,-15.74803,-6.56168,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-9.533781,15.59136,-13.82923,18.27279,-11.03041,20.95421,-18.12468,20.95421,-11.30735,15.59136,-14.85448,15.59136,-16.62805,15.59136,-7.648247,22.36625,-14.74252,22.36625,-6.151614,27.7291,-13.24588,27.7291 + } + UVIndex: *159 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,37,39,41,37,40,42,37,41,43,37,42,44,37,43,45,47,46,48,46,47,49,51,50,52,50,51,53,49,50,54,50,52,55,54,52,56,58,57,59,57,58,60,62,61,63,61,62,62,64,63,64,65,63,66,63,65,67,69,68,70,68,69,71,68,70,72,68,71,73,71,70,74,73,70,75,74,70,76,78,77,79,77,78,80,76,77,81,77,79,82,81,79,83,85,84,86,84,85 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *53 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_half_rock, Model::RootNode + C: "OO",5103612979240319847,0 + + ;Geometry::, Model::Mesh cliff_half_rock + C: "OO",5717777258207807602,5103612979240319847 + + ;Material::dirt, Model::Mesh cliff_half_rock + C: "OO",3020,5103612979240319847 + + ;Material::grass, Model::Mesh cliff_half_rock + C: "OO",3024,5103612979240319847 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_rock.fbx.import new file mode 100644 index 0000000..ea098df --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c5xjnpasbmseq" +path="res://.godot/imported/cliff_half_rock.fbx-8220a69d2835c2b7e0ae0903379f10da.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_half_rock.fbx" +dest_files=["res://.godot/imported/cliff_half_rock.fbx-8220a69d2835c2b7e0ae0903379f10da.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_stone.fbx new file mode 100644 index 0000000..d275116 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 15 + Millisecond: 564 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_half_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_half_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5289985399217859977, "Model::cliff_half_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4839263207355810621, "Geometry::", "Mesh" { + Vertices: *261 { + a: 1.666667,-2.707168E-15,-0.8149999,1.155058E-13,-9.023893E-16,-1.5,1.666667,5,-3.315,2.310117E-13,5,-4,-1.666667,-2.707168E-15,-0.8149999,-3.333333,-2.707168E-15,-1.5,-1.666667,5,-3.315,-3.333333,5,-4,-1.666667,-2.707168E-15,-0.8149999,-1.666667,5,-3.315,1.155058E-13,-9.023893E-16,-1.5,2.310117E-13,5,-4,-3.333333,-2.707168E-15,-1.5,-5,-2.707168E-15,-0.8149999,-3.333333,5,-4,-5,5,-3.315,-5,0,-5,5,0,-5,-5,5,-5,5,5,-5,3.333333,-2.707168E-15,-1.5,1.666667,-2.707168E-15,-0.8149999,3.333333,5,-4,1.666667,5,-3.315,5,5,-5,5,0,-5,5,5,-3.315,5,-2.707168E-15,-0.8149999,5,-2.707168E-15,-0.8149999,3.333333,-2.707168E-15,-1.5,5,5,-3.315,3.333333,5,-4,-5,0,-5,-5,5,-5,-5,-2.707168E-15,-0.8149999,-5,5,-3.315,5,0,-5,-5,0,-5,5,-2.707168E-15,-0.8149999,3.333333,-2.707168E-15,-1.5,1.666667,-2.707168E-15,-0.8149999,1.155058E-13,-9.023893E-16,-1.5,-1.666667,-2.707168E-15,-0.8149999,-3.333333,-2.707168E-15,-1.5,-5,-2.707168E-15,-0.8149999,5,5,-3.315,5,4,-2.315,3.333333,5,-4,3.333333,4,-3,1.666667,4,-2.315,0.8333334,4.5,-3.1575,1.666667,5,-3.315,2.310117E-13,5,-4,1.25,4,-2.48625,0.4166667,4,-2.82875,1.732587E-13,4,-3,-1.666667,4,-2.315,-1.666667,5,-3.315,1.732587E-13,4,-3,2.310117E-13,5,-4,3.333333,4,-3,2.916667,4,-2.82875,3.333333,5,-4,2.5,4.25,-2.9075,1.666667,5,-3.315,1.666667,4,-2.315,2.083333,4,-2.48625,5,5,-3.315,3.333333,5,-4,5,5,-5,-5,5,-5,2.310117E-13,5,-4,1.666667,5,-3.315,-1.666667,5,-3.315,-3.333333,5,-4,-5,5,-3.315,-1.666667,4,-2.315,-2.5,4.5,-3.1575,-1.666667,5,-3.315,-3.333333,5,-4,-2.083333,4,-2.48625,-2.916667,4,-2.82875,-3.333333,4,-3,-3.333333,4,-3,-5,4,-2.315,-3.333333,5,-4,-5,5,-3.315 + } + PolygonVertexIndex: *159 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,37,-40,41,37,-41,42,37,-42,43,37,-43,44,37,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,49,-51,54,50,-53,55,54,-53,56,58,-58,59,57,-59,60,62,-62,63,61,-63,62,64,-64,64,65,-64,66,63,-66,67,69,-69,70,68,-70,71,68,-71,72,68,-72,73,71,-71,74,73,-71,75,74,-71,76,78,-78,79,77,-79,80,76,-78,81,77,-80,82,81,-80,83,85,-85,86,84,-86 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *477 { + a: -0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,0.3450346,0.4197502,0.8395003,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-0.3450346,0.4197502,0.8395003,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *174 { + a: 4.849318,2.292746,-2.244951,2.292746,1.107733,23.98091,-5.986535,23.98091,-7.288831,0.1987046,-14.3831,0.1987046,-11.03041,21.88687,-18.12468,21.88687,-4.849318,2.292746,-1.107733,23.98091,2.244951,2.292746,5.986535,23.98091,-9.893198,4.386786,-16.98747,4.386786,-6.151614,26.07495,-13.24588,26.07495,19.68504,0,-19.68504,0,19.68504,19.68504,-19.68504,19.68504,14.3831,0.1987046,7.288831,0.1987046,18.12468,21.88687,11.03041,21.88687,19.68504,19.68504,19.68504,1.075791E-13,13.05118,19.68504,3.208661,9.692092E-14,16.98747,4.386786,9.893198,4.386786,13.24588,26.07495,6.151614,26.07495,-19.68504,0,-19.68504,19.68504,-3.208661,-1.065814E-14,-13.05118,19.68504,19.68504,-19.68504,-19.68504,-19.68504,19.68504,-3.208661,13.12336,-5.905512,6.56168,-3.208661,4.547474E-13,-5.905512,-6.56168,-3.208661,-13.12336,-5.905512,-19.68504,-3.208661,13.24588,27.7291,14.74252,22.36625,6.151614,27.7291,7.648247,22.36625,2.604367,18.97881,-1.691084,21.66023,1.107733,24.34166,-5.986535,24.34166,0.8308001,18.97881,-2.716334,18.97881,-4.489901,18.97881,-2.604367,18.97881,-1.107733,24.34166,4.489901,18.97881,5.986535,24.34166,16.62805,15.59136,14.85448,15.59136,18.12468,20.95421,13.45507,16.93207,11.03041,20.95421,9.533781,15.59136,11.30735,15.59136,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,-9.136653E-13,-15.74803,-6.56168,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-9.533781,15.59136,-13.82923,18.27279,-11.03041,20.95421,-18.12468,20.95421,-11.30735,15.59136,-14.85448,15.59136,-16.62805,15.59136,-7.648247,22.36625,-14.74252,22.36625,-6.151614,27.7291,-13.24588,27.7291 + } + UVIndex: *159 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,37,39,41,37,40,42,37,41,43,37,42,44,37,43,45,47,46,48,46,47,49,51,50,52,50,51,53,49,50,54,50,52,55,54,52,56,58,57,59,57,58,60,62,61,63,61,62,62,64,63,64,65,63,66,63,65,67,69,68,70,68,69,71,68,70,72,68,71,73,71,70,74,73,70,75,74,70,76,78,77,79,77,78,80,76,77,81,77,79,82,81,79,83,85,84,86,84,85 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *53 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_half_stone, Model::RootNode + C: "OO",5289985399217859977,0 + + ;Geometry::, Model::Mesh cliff_half_stone + C: "OO",4839263207355810621,5289985399217859977 + + ;Material::stone, Model::Mesh cliff_half_stone + C: "OO",3038,5289985399217859977 + + ;Material::grass, Model::Mesh cliff_half_stone + C: "OO",3024,5289985399217859977 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_stone.fbx.import new file mode 100644 index 0000000..5072413 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_half_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ncrlwjt1vwyi" +path="res://.godot/imported/cliff_half_stone.fbx-f5fea9ee661e4473e690a2805740a52a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_half_stone.fbx" +dest_files=["res://.godot/imported/cliff_half_stone.fbx-f5fea9ee661e4473e690a2805740a52a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_rock.fbx new file mode 100644 index 0000000..ee007f2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_rock.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 31 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_large_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_large_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5278338880913731053, "Model::cliff_large_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4982244576550773130, "Geometry::", "Mesh" { + Vertices: *162 { + a: -3.333333,0,-1.5,-5,0,-0.8149999,-3.333333,10,-1.5,-5,10,-0.8149999,3.333333,0,-1.5,1.666667,0,-0.8149999,3.333333,10,-1.5,1.666667,10,-0.8149999,1.666667,0,-0.8149999,-1.239011E-07,1.804779E-15,-1.5,1.666667,10,-0.8149999,-1.239011E-07,10,-1.5,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,5,0,-5,-5,0,-5,5,0,-0.8149999,3.333333,0,-1.5,1.666667,0,-0.8149999,-1.239011E-07,1.804779E-15,-1.5,-1.666667,0,-0.8149999,-3.333333,0,-1.5,-5,0,-0.8149999,-1.666667,0,-0.8149999,-1.666667,10,-0.8149999,-1.239011E-07,1.804779E-15,-1.5,-1.239011E-07,10,-1.5,5,0,-0.8149999,3.333333,0,-1.5,5,10,-0.8149999,3.333333,10,-1.5,-5,0,-5,-5,10,-5,-5,0,-0.8149999,-5,10,-0.8149999,5,10,-5,5,10,-0.8149999,-5,10,-5,3.333333,10,-1.5,1.666667,10,-0.8149999,-1.239011E-07,10,-1.5,-1.666667,10,-0.8149999,-3.333333,10,-1.5,-5,10,-0.8149999,5,10,-5,5,0,-5,5,10,-0.8149999,5,0,-0.8149999,-1.666667,0,-0.8149999,-3.333333,0,-1.5,-1.666667,10,-0.8149999,-3.333333,10,-1.5 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,17,-21,22,17,-22,23,17,-23,24,17,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,40,-40,42,41,-40,43,42,-40,44,43,-40,45,44,-40,46,48,-48,49,47,-49,50,52,-52,53,51,-53 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *108 { + a: -9.893198,0,-16.98747,0,-9.893198,39.37008,-16.98747,39.37008,14.3831,-1.649887E-18,7.28883,-1.649887E-18,14.3831,39.37008,7.28883,39.37008,4.849318,-3.334974E-18,-2.244951,7.102093E-15,4.849318,39.37008,-2.244951,39.37008,19.68504,-3.716686E-29,-19.68504,-3.716686E-29,19.68504,39.37008,-19.68504,39.37008,19.68504,-19.68504,-19.68504,-19.68504,19.68504,-3.208661,13.12336,-5.905512,6.561679,-3.208661,-4.877995E-07,-5.905512,-6.56168,-3.208661,-13.12336,-5.905512,-19.68504,-3.208661,-4.849318,3.140435E-17,-4.849318,39.37008,2.24495,7.136832E-15,2.24495,39.37008,16.98747,-2.215596E-17,9.893197,-2.215596E-17,16.98747,39.37008,9.893197,39.37008,-19.68504,0,-19.68504,39.37008,-3.208661,0,-3.208661,39.37008,-19.68504,-19.68504,-19.68504,-3.208661,19.68504,-19.68504,-13.12336,-5.905512,-6.561679,-3.208661,4.877995E-07,-5.905512,6.56168,-3.208661,13.12336,-5.905512,19.68504,-3.208661,19.68504,39.37008,19.68504,5.684342E-14,3.208662,39.37008,3.208662,5.684342E-14,-7.288831,0,-14.3831,0,-7.288831,39.37008,-14.3831,39.37008 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,17,20,22,17,21,23,17,22,24,17,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,40,39,42,41,39,43,42,39,44,43,39,45,44,39,46,48,47,49,47,48,50,52,51,53,51,52 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_large_rock, Model::RootNode + C: "OO",5278338880913731053,0 + + ;Geometry::, Model::Mesh cliff_large_rock + C: "OO",4982244576550773130,5278338880913731053 + + ;Material::dirt, Model::Mesh cliff_large_rock + C: "OO",3020,5278338880913731053 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_rock.fbx.import new file mode 100644 index 0000000..fe11f1c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d0yf43nfb1qj8" +path="res://.godot/imported/cliff_large_rock.fbx-420f36247a4c41ee26576d7bdcf15612.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_large_rock.fbx" +dest_files=["res://.godot/imported/cliff_large_rock.fbx-420f36247a4c41ee26576d7bdcf15612.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_stone.fbx new file mode 100644 index 0000000..14a05f4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_stone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 107 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_large_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_large_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4612962004896492150, "Model::cliff_large_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5157853385974650024, "Geometry::", "Mesh" { + Vertices: *162 { + a: -3.333333,0,-1.5,-5,0,-0.8149999,-3.333333,10,-1.5,-5,10,-0.8149999,3.333333,0,-1.5,1.666667,0,-0.8149999,3.333333,10,-1.5,1.666667,10,-0.8149999,1.666667,0,-0.8149999,-1.239011E-07,1.804779E-15,-1.5,1.666667,10,-0.8149999,-1.239011E-07,10,-1.5,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,5,0,-5,-5,0,-5,5,0,-0.8149999,3.333333,0,-1.5,1.666667,0,-0.8149999,-1.239011E-07,1.804779E-15,-1.5,-1.666667,0,-0.8149999,-3.333333,0,-1.5,-5,0,-0.8149999,-1.666667,0,-0.8149999,-1.666667,10,-0.8149999,-1.239011E-07,1.804779E-15,-1.5,-1.239011E-07,10,-1.5,5,0,-0.8149999,3.333333,0,-1.5,5,10,-0.8149999,3.333333,10,-1.5,-5,0,-5,-5,10,-5,-5,0,-0.8149999,-5,10,-0.8149999,5,10,-5,5,10,-0.8149999,-5,10,-5,3.333333,10,-1.5,1.666667,10,-0.8149999,-1.239011E-07,10,-1.5,-1.666667,10,-0.8149999,-3.333333,10,-1.5,-5,10,-0.8149999,5,10,-5,5,0,-5,5,10,-0.8149999,5,0,-0.8149999,-1.666667,0,-0.8149999,-3.333333,0,-1.5,-1.666667,10,-0.8149999,-3.333333,10,-1.5 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,17,-21,22,17,-22,23,17,-23,24,17,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,40,-40,42,41,-40,43,42,-40,44,43,-40,45,44,-40,46,48,-48,49,47,-49,50,52,-52,53,51,-53 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *108 { + a: -9.893198,0,-16.98747,0,-9.893198,39.37008,-16.98747,39.37008,14.3831,-1.649887E-18,7.28883,-1.649887E-18,14.3831,39.37008,7.28883,39.37008,4.849318,-3.334974E-18,-2.244951,7.102093E-15,4.849318,39.37008,-2.244951,39.37008,19.68504,-3.716686E-29,-19.68504,-3.716686E-29,19.68504,39.37008,-19.68504,39.37008,19.68504,-19.68504,-19.68504,-19.68504,19.68504,-3.208661,13.12336,-5.905512,6.561679,-3.208661,-4.877995E-07,-5.905512,-6.56168,-3.208661,-13.12336,-5.905512,-19.68504,-3.208661,-4.849318,3.140435E-17,-4.849318,39.37008,2.24495,7.136832E-15,2.24495,39.37008,16.98747,-2.215596E-17,9.893197,-2.215596E-17,16.98747,39.37008,9.893197,39.37008,-19.68504,0,-19.68504,39.37008,-3.208661,0,-3.208661,39.37008,-19.68504,-19.68504,-19.68504,-3.208661,19.68504,-19.68504,-13.12336,-5.905512,-6.561679,-3.208661,4.877995E-07,-5.905512,6.56168,-3.208661,13.12336,-5.905512,19.68504,-3.208661,19.68504,39.37008,19.68504,5.684342E-14,3.208662,39.37008,3.208662,5.684342E-14,-7.288831,0,-14.3831,0,-7.288831,39.37008,-14.3831,39.37008 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,17,20,22,17,21,23,17,22,24,17,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,40,39,42,41,39,43,42,39,44,43,39,45,44,39,46,48,47,49,47,48,50,52,51,53,51,52 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_large_stone, Model::RootNode + C: "OO",4612962004896492150,0 + + ;Geometry::, Model::Mesh cliff_large_stone + C: "OO",5157853385974650024,4612962004896492150 + + ;Material::stone, Model::Mesh cliff_large_stone + C: "OO",3038,4612962004896492150 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_stone.fbx.import new file mode 100644 index 0000000..e822e32 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_large_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://lgluagtueyj0" +path="res://.godot/imported/cliff_large_stone.fbx-ef9c020a5dc06b8fad160dc3a2cd37b3.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_large_stone.fbx" +dest_files=["res://.godot/imported/cliff_large_stone.fbx-ef9c020a5dc06b8fad160dc3a2cd37b3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_rock.fbx new file mode 100644 index 0000000..d401b86 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_rock.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 184 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4888569130881711433, "Model::cliff_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5055448902402547612, "Geometry::", "Mesh" { + Vertices: *162 { + a: -3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-3.333333,10,-4,-5,10,-3.315,3.333333,-1.770646E-15,-4,1.666667,-1.770646E-15,-3.315,3.333333,10,-4,1.666667,10,-3.315,1.666667,-1.770646E-15,-3.315,-1.645958E-12,3.413295E-17,-4,1.666667,10,-3.315,-1.645958E-12,10,-4,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,5,-1.770646E-15,-3.315,5,0,-5,3.333333,-1.770646E-15,-4,-5,0,-5,-1.645958E-12,3.413295E-17,-4,1.666667,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-1.666667,10,-3.315,-1.645958E-12,3.413295E-17,-4,-1.645958E-12,10,-4,5,-1.770646E-15,-3.315,3.333333,-1.770646E-15,-4,5,10,-3.315,3.333333,10,-4,-5,0,-5,-5,10,-5,-5,-1.770646E-15,-3.315,-5,10,-3.315,5,10,-3.315,3.333333,10,-4,5,10,-5,-5,10,-5,-1.645958E-12,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,5,10,-5,5,0,-5,5,10,-3.315,5,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-3.333333,-1.770646E-15,-4,-1.666667,10,-3.315,-3.333333,10,-4 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,20,-19,22,19,-21,23,19,-23,24,19,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,38,-41,42,38,-42,43,41,-41,44,43,-41,45,44,-41,46,48,-48,49,47,-49,50,52,-52,53,51,-53 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *108 { + a: -6.151614,-6.971046E-15,-13.24588,-6.971046E-15,-6.151614,39.37008,-13.24588,39.37008,18.12468,-6.971046E-15,11.03041,-6.971046E-15,18.12468,39.37008,11.03041,39.37008,1.107733,-6.979939E-15,-5.986535,1.254884E-16,1.107733,39.37008,-5.986535,39.37008,19.68504,-3.716686E-29,-19.68504,-3.716686E-29,19.68504,39.37008,-19.68504,39.37008,19.68504,-13.05118,19.68504,-19.68504,13.12336,-15.74803,-19.68504,-19.68504,-6.48015E-12,-15.74803,6.56168,-13.05118,-6.56168,-13.05118,-13.12336,-15.74803,-19.68504,-13.05118,-1.107733,-7.019711E-15,-1.107733,39.37008,5.986535,8.571577E-17,5.986535,39.37008,13.24588,-6.971046E-15,6.151614,-6.971046E-15,13.24588,39.37008,6.151614,39.37008,-19.68504,0,-19.68504,39.37008,-13.05118,-6.971046E-15,-13.05118,39.37008,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,6.471809E-12,-15.74803,-6.56168,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,19.68504,39.37008,19.68504,2.842171E-14,13.05118,39.37008,13.05118,2.145066E-14,-11.03041,-6.971046E-15,-18.12468,-6.971046E-15,-11.03041,39.37008,-18.12468,39.37008 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,20,18,22,19,20,23,19,22,24,19,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,38,40,42,38,41,43,41,40,44,43,40,45,44,40,46,48,47,49,47,48,50,52,51,53,51,52 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_rock, Model::RootNode + C: "OO",4888569130881711433,0 + + ;Geometry::, Model::Mesh cliff_rock + C: "OO",5055448902402547612,4888569130881711433 + + ;Material::dirt, Model::Mesh cliff_rock + C: "OO",3020,4888569130881711433 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_rock.fbx.import new file mode 100644 index 0000000..c5efa64 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cgwb0jl3rww7x" +path="res://.godot/imported/cliff_rock.fbx-11c397c7edb7f6d70de6c98172a720d4.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_rock.fbx" +dest_files=["res://.godot/imported/cliff_rock.fbx-11c397c7edb7f6d70de6c98172a720d4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_rock.fbx new file mode 100644 index 0000000..f60f59f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 748 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_stepsCornerInner_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_stepsCornerInner_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4649396332319198507, "Model::cliff_stepsCornerInner_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5693827381404700765, "Geometry::", "Mesh" { + Vertices: *1047 { + a: -5,4,1,-5,6,1,-3.333333,4,0.315,-3.333333,6,0.315,-5,3.609557E-14,-5,-5,10,-5,-5,0,5,-5,8,-3,-5,6,-1,-5,4,1,-5,2,3,-5,2,5,-5,4,3,-5,6,1,-5,8,-1,-5,10,-3,-3.333333,8,-3.685,-5,8,-3,-3.333333,10,-3.685,-5,10,-3,1.666667,8,-3,1.666667,10,-3,3.333333,8,-3.685,3.333333,10,-3.685,-5,6,-1,-5,8,-1,-3.333333,6,-1.685,-3.333333,8,-1.685,3.685,8,-3.333333,3.333333,8,-3.685,3.685,10,-3.333333,3.333333,10,-3.685,-1.666667,8,-3,-3.333333,8,-3.685,-1.666667,10,-3,-3.333333,10,-3.685,3.685,8,3.333333,3.685,10,3.333333,3,8,5,3,10,5,-1.666667,8,-3,-1.666667,10,-3,-1.039552E-12,8,-3.685,-1.039552E-12,10,-3.685,5,3.609557E-14,-5,-5,3.609557E-14,-5,5,0,5,-5,0,5,-1.666667,4,1,-3.333333,4,0.315,-1.666667,6,1,-3.333333,6,0.315,1.666667,8,-3,-1.039552E-12,8,-3.685,1.666667,10,-3,-1.039552E-12,10,-3.685,3.685,8,-3.333333,3.685,10,-3.333333,3,8,-1.666667,3,10,-1.666667,-3.333333,2,2.315,-3.333333,4,2.315,-2.611623,2,2.611623,-2.611623,4,2.611623,-5,2,3,-5,4,3,-3.333333,2,2.315,-3.333333,4,2.315,-2.611623,2,2.611623,-2.611623,4,2.611623,-2.315,2,3.333333,-2.315,4,3.333333,1.194188,6,-1.194188,-1.068429E-12,6,-1.685,1.194188,8,-1.194188,-1.068429E-12,8,-1.685,-5,3.609557E-14,-5,5,3.609557E-14,-5,-5,10,-5,5,10,-5,1.194188,6,-1.194188,1.194188,8,-1.194188,1.685,6,-1.328317E-12,1.685,8,-1.617082E-12,-1.666667,4,1,-1.666667,6,1,-0.5348047,4,0.5348047,-0.5348047,6,0.5348047,5,10,-5,5,3.609557E-14,-5,5,10,5,5,0,5,1.685,8,3.333333,1,8,5,1.685,6,3.333333,1,6,5,-0.5348047,6,0.5348047,-1,6,1.666667,-0.5348047,4,0.5348047,-1,4,1.666667,-3,2,5,-5,0,5,-5,2,5,5,0,5,5,10,5,-1,4,5,1,6,5,3,8,5,3,10,5,1,8,5,-1,6,5,-3,4,5,3,8,-1.666667,3,10,-1.666667,3.685,8,-2.136858E-12,3.685,10,-1.992475E-12,-0.315,6,3.333333,-1,6,5,-0.315,4,3.333333,-1,4,5,1.685,8,-1.617082E-12,1,8,1.666667,1.685,6,-1.328317E-12,1,6,1.666667,1,8,1.666667,1.685,8,3.333333,1,6,1.666667,1.685,6,3.333333,-1.666667,6,-1,-1.666667,8,-1,-1.068429E-12,6,-1.685,-1.068429E-12,8,-1.685,-2.315,4,3.333333,-3,4,5,-2.315,2,3.333333,-3,2,5,3.685,8,-2.136858E-12,3.685,10,-1.992475E-12,3,8,1.666667,3,10,1.666667,-1.666667,6,-1,-3.333333,6,-1.685,-1.666667,8,-1,-3.333333,8,-1.685,-1,6,1.666667,-0.315,6,3.333333,-1,4,1.666667,-0.315,4,3.333333,3,8,1.666667,3,10,1.666667,3.685,8,3.333333,3.685,10,3.333333,3.685,8,-2.136858E-12,3,8,1.666667,3,8,-1.666667,1.685,8,3.333333,1,8,5,3,8,5,3.685,8,3.333333,1.685,8,-1.617082E-12,1.666667,8,-3,3.333333,8,-3.685,3.685,8,-3.333333,1.194188,8,-1.194188,-1.039552E-12,8,-3.685,-1.068429E-12,8,-1.685,-1.666667,8,-3,-1.666667,8,-1,-3.333333,8,-3.685,-3.333333,8,-1.685,-5,8,-3,-5,8,-1,1,8,1.666667,1.194188,8,-1.194188,0.8398299,7.5,-0.8398299,-1.068429E-12,8,-1.685,-1.126182E-12,7.5,-1.185,-1.666667,5.5,1.5,-1.666667,6,1,-1.383701,5.5,1.383701,-0.5348047,6,0.5348047,3.081494,9.499999,-3.081494,1.666667,9.499999,-2.5,3.333333,10,-3.685,1.666667,10,-3,-2.611623,4,2.611623,-2.965981,3.5,2.965981,-3.333333,4,2.315,-3.333333,3.5,2.815,3.333333,10,-3.685,3.685,10,-3.333333,3.081494,9.499999,-3.081494,3.685,10,3.333333,3,10,5,3.185,9.499999,3.333333,2.5,9.499999,5,-0.5348047,4,0.5348047,-1,4,1.666667,-1.666667,4,1,-2.315,4,3.333333,-3.333333,4,0.315,-2.611623,4,2.611623,-3.333333,4,2.315,-5,4,1,-5,4,3,-3,4,5,-1,4,5,-0.315,4,3.333333,-1.666667,9.499999,-2.5,-2.5,9.75,-3.0925,-1.666667,10,-3,-3.333333,10,-3.685,-2.083333,9.499999,-2.67125,-2.916667,9.499999,-3.01375,-3.333333,9.499999,-3.185,3.685,10,3.333333,3.185,9.499999,3.333333,3,10,1.666667,2.5,9.499999,1.666667,-2.315,2,3.333333,-3,2,5,-2.611623,2,2.611623,-3.333333,2,2.315,-5,2,5,-5,2,3,1.185,7.5,3.333333,1.0925,7.75,2.5,1.685,8,3.333333,1,8,1.666667,0.67125,7.5,2.083333,0.5,7.5,1.666667,1.01375,7.5,2.916667,-3.333333,9.499999,-3.185,-5,9.499999,-2.5,-3.333333,10,-3.685,-5,10,-3,3.685,10,-1.992475E-12,3.185,9.499999,-1.920284E-12,3,10,-1.666667,2.5,9.499999,-1.666667,-3.333333,3.5,2.815,-3.75,3.5,2.98625,-3.333333,4,2.315,-4.166667,3.75,2.9075,-5,4,3,-5,3.5,3.5,-4.583333,3.5,3.32875,-3.333333,5.5,0.8149999,-5,5.5,1.5,-3.333333,6,0.315,-5,6,1,1.666667,10,-3,1.666667,9.499999,-2.5,-1.039552E-12,10,-3.685,-1.068429E-12,9.499999,-3.185,-1.666667,7.5,-0.5,-1.666667,8,-1,-1.126182E-12,7.5,-1.185,-1.068429E-12,8,-1.685,-2.315,4,3.333333,-2.815,3.5,3.333333,-2.611623,4,2.611623,-2.965981,3.5,2.965981,3,10,5,3.685,10,3.333333,5,10,5,5,10,-5,3.685,10,-1.992475E-12,3.685,10,-3.333333,3.333333,10,-3.685,-5,10,-5,-1.039552E-12,10,-3.685,1.666667,10,-3,-1.666667,10,-3,-3.333333,10,-3.685,-5,10,-3,3,10,-1.666667,3,10,1.666667,-1.666667,8,-1,-1.666667,7.5,-0.5,-3.333333,8,-1.685,-3.333333,7.5,-1.185,-1.666667,6,1,-1.666667,5.5,1.5,-3.333333,6,0.315,-3.333333,5.5,0.8149999,-2.315,4,3.333333,-3,4,5,-2.815,3.5,3.333333,-3.5,3.5,5,3,10,-1.666667,3.0925,9.75,-2.5,3.685,10,-3.333333,3.081494,9.499999,-3.081494,3.01375,9.499999,-2.916667,2.67125,9.499999,-2.083333,2.5,9.499999,-1.666667,1.685,8,3.333333,1,8,5,1.185,7.5,3.333333,0.5,7.5,5,1.685,8,-1.617082E-12,1.185,7.5,-1.530452E-12,1.194188,8,-1.194188,0.8398299,7.5,-0.8398299,-0.315,6,3.333333,-0.8149999,5.5,3.333333,-1,6,1.666667,-1.5,5.5,1.666667,-3.333333,7.5,-1.185,-5,7.5,-0.5,-3.333333,8,-1.685,-5,8,-1,1.685,6,-1.328317E-12,1,6,1.666667,1.194188,6,-1.194188,-1.068429E-12,6,-1.685,-0.315,6,3.333333,-1,6,5,1,6,5,1.685,6,3.333333,-0.5348047,6,0.5348047,-1.666667,6,-1,-1.666667,6,1,-3.333333,6,-1.685,-3.333333,6,0.315,-5,6,-1,-5,6,1,-1,6,1.666667,-1.666667,9.499999,-2.5,-1.666667,10,-3,-1.068429E-12,9.499999,-3.185,-1.039552E-12,10,-3.685,1.685,8,-1.617082E-12,1,8,1.666667,1.185,7.5,-1.530452E-12,0.5,7.5,1.666667,-0.5348047,6,0.5348047,-1,6,1.666667,-1.383701,5.5,1.383701,-1.5,5.5,1.666667,-0.315,6,3.333333,-1,6,5,-0.8149999,5.5,3.333333,-1.5,5.5,5,3.685,10,-1.992475E-12,3,10,1.666667,3.185,9.499999,-1.920284E-12,2.5,9.499999,1.666667 + } + PolygonVertexIndex: *639 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,9,-7,11,10,-7,10,12,-10,9,13,-9,8,14,-8,7,15,-6,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,100,-104,105,100,-105,106,105,-105,107,106,-105,108,107,-105,107,109,-107,106,110,-106,105,111,-101,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,154,155,-154,155,156,-154,156,157,-154,158,153,-158,155,154,-160,159,154,-161,160,154,-162,162,161,-155,163,159,-161,164,163,-161,165,163,-165,166,165,-165,167,165,-167,168,167,-167,169,167,-169,170,169,-169,171,169,-171,159,172,-156,173,175,-175,176,174,-176,177,179,-179,180,178,-180,181,183,-183,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,194,-194,195,193,-195,196,198,-198,198,199,-198,198,200,-200,201,199,-201,202,201,-201,203,202,-201,204,202,-204,199,205,-198,205,206,-198,207,197,-207,208,210,-210,211,209,-211,212,208,-210,213,209,-212,214,213,-212,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,220,-223,224,223,-223,225,227,-227,228,226,-228,229,226,-229,230,229,-229,226,231,-226,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,242,244,-244,244,245,-244,246,243,-246,247,249,-249,250,248,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,259,261,-261,262,260,-262,263,265,-265,266,264,-266,264,266,-268,268,267,-267,269,268,-267,270,269,-267,271,269,-271,272,269,-272,273,271,-271,274,273,-271,275,274,-271,268,276,-268,267,277,-265,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,291,-294,295,290,-292,296,290,-296,297,299,-299,300,298,-300,301,303,-303,304,302,-304,305,307,-307,308,306,-308,309,311,-311,312,310,-312,313,315,-315,316,314,-316,316,317,-315,317,318,-315,318,319,-315,320,314,-320,317,316,-322,322,321,-317,323,321,-323,324,323,-323,325,323,-325,326,325,-325,327,325,-327,321,328,-318,329,331,-331,332,330,-332,333,335,-335,336,334,-336,337,339,-339,340,338,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1917 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.4505391,0.7707329,0.4505391,-0.4505391,0.7707329,0.4505391,-0.4505391,0.7707329,0.4505391,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *698 { + a: -19.70386,15.74803,-19.70386,23.62205,-12.60959,15.74803,-12.60959,23.62205,-19.68504,1.300509E-13,-19.68504,39.37008,19.68504,-1.20577E-14,-11.81102,31.49606,-3.937008,23.62205,3.937008,15.74803,11.81102,7.874016,19.68504,7.874016,11.81102,15.74803,3.937008,23.62205,-3.937008,31.49606,-11.81102,39.37008,-6.623053,31.49606,-13.71732,31.49606,-6.623053,39.37008,-13.71732,39.37008,10.55898,31.49606,10.55898,39.37008,17.65324,31.49606,17.65324,39.37008,-16.71059,23.62205,-16.71059,31.49606,-9.616321,23.62205,-9.616321,31.49606,0.9789996,31.49606,-0.9789996,31.49606,0.9789996,39.37008,-0.9789996,39.37008,-10.55898,31.49606,-17.65324,31.49606,-10.55898,39.37008,-17.65324,39.37008,6.623053,31.49606,6.623053,39.37008,13.71732,31.49606,13.71732,39.37008,-1.579173,31.49606,-1.579173,39.37008,5.515095,31.49606,5.515095,39.37008,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,-4.572441,15.74803,-11.66671,15.74803,-4.572441,23.62205,-11.66671,23.62205,1.579173,31.49606,-5.515095,31.49606,1.579173,39.37008,-5.515095,39.37008,-17.65324,31.49606,-17.65324,39.37008,-10.55898,31.49606,-10.55898,39.37008,-8.673442,7.874016,-8.673442,15.74803,-5.601437,7.874016,-5.601437,15.74803,-22.69712,7.874016,-22.69712,15.74803,-15.60286,7.874016,-15.60286,15.74803,5.601437,7.874016,5.601437,15.74803,8.673442,7.874016,8.673442,15.74803,2.561308,23.62205,-2.521828,23.62205,2.561308,31.49606,-2.521828,31.49606,19.68504,1.664278E-12,-19.68504,1.664278E-12,19.68504,39.37008,-19.68504,39.37008,-2.561308,23.62205,-2.561308,31.49606,2.521828,23.62205,2.521828,31.49606,-7.565708,15.74803,-7.565708,23.62205,-2.747869,15.74803,-2.747869,23.62205,19.68504,39.37008,19.68504,2.041196E-12,-19.68504,39.37008,-19.68504,1.899087E-12,9.616321,31.49606,16.71059,31.49606,9.616321,23.62205,16.71059,23.62205,2.747869,23.62205,7.565708,23.62205,2.747869,15.74803,7.565708,15.74803,-11.81102,7.874016,-19.68504,-3.214668E-12,-19.68504,7.874016,19.68504,-3.214668E-12,19.68504,39.37008,-3.937008,15.74803,3.937008,23.62205,11.81102,31.49606,11.81102,39.37008,3.937008,31.49606,-3.937008,23.62205,-11.81102,15.74803,-1.579173,31.49606,-1.579173,39.37008,5.515095,31.49606,5.515095,39.37008,12.60959,23.62205,19.70386,23.62205,12.60959,15.74803,19.70386,15.74803,-2.521828,31.49606,4.572441,31.49606,-2.521828,23.62205,4.572441,23.62205,7.565708,31.49606,14.65998,31.49606,7.565708,23.62205,14.65998,23.62205,-4.572441,23.62205,-4.572441,31.49606,2.521828,23.62205,2.521828,31.49606,15.60286,15.74803,22.69712,15.74803,15.60286,7.874016,22.69712,7.874016,-5.515095,31.49606,-5.515095,39.37008,1.579173,31.49606,1.579173,39.37008,-7.565708,23.62205,-14.65998,23.62205,-7.565708,31.49606,-14.65998,31.49606,4.572441,23.62205,11.66671,23.62205,4.572441,15.74803,11.66671,15.74803,10.55898,31.49606,10.55898,39.37008,17.65324,31.49606,17.65324,39.37008,-14.50787,-8.416188E-12,-11.81102,6.56168,-11.81102,-6.56168,-6.633858,13.12336,-3.937008,19.68504,-11.81102,19.68504,-14.50787,13.12336,-6.633858,-6.369825E-12,-6.56168,-11.81102,-13.12336,-14.50787,-14.50787,-13.12336,-4.70153,-4.70153,4.07799E-12,-14.50787,4.191677E-12,-6.633858,6.56168,-11.81102,6.56168,-3.937008,13.12336,-14.50787,13.12336,-6.633858,19.68504,-11.81102,19.68504,-3.937008,-3.937008,6.56168,2.561308,27.2884,1.801276,24.60697,-2.521828,27.2884,-1.773511,24.60697,-8.314025,13.88127,-7.565708,16.5627,-7.109565,13.88127,-2.747869,16.5627,15.83296,31.94522,9.810658,31.94522,17.65324,34.62665,10.55898,34.62665,-5.601437,2.449554,-6.361469,-0.2318707,-8.673442,2.449554,-7.925125,-0.2318707,-0.9789996,40.14373,0.9789996,40.14373,3.826273E-11,37.05423,6.623053,41.40154,13.71732,41.40154,7.37137,38.72012,14.46564,38.72012,2.105531,2.105531,3.937008,6.56168,6.56168,3.937008,9.114173,13.12336,13.12336,1.240157,10.28198,10.28198,13.12336,9.114173,19.68504,3.937008,19.68504,11.81102,11.81102,19.68504,3.937008,19.68504,1.240157,13.12336,-9.810658,31.94522,-13.73195,33.28593,-10.55898,34.62665,-17.65324,34.62665,-11.58423,31.94522,-15.13136,31.94522,-16.90493,31.94522,17.65324,34.62665,16.90493,31.94522,10.55898,34.62665,9.810658,31.94522,9.114173,13.12336,11.81102,19.68504,10.28198,10.28198,13.12336,9.114173,19.68504,19.68504,19.68504,11.81102,13.91166,21.21953,10.73868,22.56024,14.65998,23.90095,7.565708,23.90095,8.590959,21.21953,6.817391,21.21953,12.13809,21.21953,-7.37137,38.72012,-14.46564,38.72012,-6.623053,41.40154,-13.71732,41.40154,5.515095,38.0141,4.766778,35.33267,-1.579173,38.0141,-2.32749,35.33267,-16.35117,6.543022,-18.12474,6.543022,-15.60286,9.224446,-19.52415,7.883734,-22.69712,9.224446,-23.44544,6.543022,-21.67187,6.543022,-13.35791,17.26872,-20.45217,17.26872,-12.60959,19.95014,-19.70386,19.95014,1.579173,38.0141,2.32749,35.33267,-5.515095,38.0141,-4.766778,35.33267,-5.320757,24.60697,-4.572441,27.2884,1.773511,24.60697,2.521828,27.2884,8.673442,2.449554,7.925125,-0.2318707,5.601437,2.449554,6.361469,-0.2318707,-11.81102,19.68504,-14.50787,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-14.50787,-7.844894E-12,-14.50787,-13.12336,-13.12336,-14.50787,19.68504,-19.68504,4.089388E-12,-14.50787,-6.56168,-11.81102,6.56168,-11.81102,13.12336,-14.50787,19.68504,-11.81102,-11.81102,-6.56168,-11.81102,6.56168,-7.565708,23.90095,-6.817391,21.21953,-14.65998,23.90095,-13.91166,21.21953,-4.572441,13.17525,-3.824124,10.49383,-11.66671,13.17525,-10.91839,10.49383,15.60286,9.224446,22.69712,9.224446,16.35117,6.543022,23.44544,6.543022,-10.55898,34.62665,-13.73195,33.28593,-17.65324,34.62665,-15.83296,31.94522,-15.13136,31.94522,-11.58423,31.94522,-9.810658,31.94522,9.616321,30.67584,16.71059,30.67584,10.36464,27.99442,17.45891,27.99442,2.521828,27.2884,1.773511,24.60697,-2.561308,27.2884,-1.801276,24.60697,11.66671,13.17525,10.91839,10.49383,4.572441,13.17525,3.824124,10.49383,-10.36464,27.99442,-17.45891,27.99442,-9.616321,30.67584,-16.71059,30.67584,-6.633858,-5.239279E-12,-3.937008,6.56168,-4.70153,-4.70153,4.186183E-12,-6.633858,1.240157,13.12336,3.937008,19.68504,-3.937008,19.68504,-6.633858,13.12336,2.105531,2.105531,6.56168,-3.937008,6.56168,3.937008,13.12336,-6.633858,13.12336,1.240157,19.68504,-3.937008,19.68504,3.937008,3.937008,6.56168,-2.32749,35.33267,-1.579173,38.0141,4.766778,35.33267,5.515095,38.0141,-2.521828,27.2884,4.572441,27.2884,-1.773511,24.60697,5.320757,24.60697,2.747869,16.5627,7.565708,16.5627,7.109565,13.88127,8.314025,13.88127,12.60959,19.95014,19.70386,19.95014,13.35791,17.26872,20.45217,17.26872,-5.515095,38.0141,1.579173,38.0141,-4.766778,35.33267,2.32749,35.33267 + } + UVIndex: *639 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,9,6,11,10,6,10,12,9,9,13,8,8,14,7,7,15,5,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,101,103,100,104,100,103,105,100,104,106,105,104,107,106,104,108,107,104,107,109,106,106,110,105,105,111,100,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,154,155,153,155,156,153,156,157,153,158,153,157,155,154,159,159,154,160,160,154,161,162,161,154,163,159,160,164,163,160,165,163,164,166,165,164,167,165,166,168,167,166,169,167,168,170,169,168,171,169,170,159,172,155,173,175,174,176,174,175,177,179,178,180,178,179,181,183,182,184,182,183,185,187,186,188,186,187,189,191,190,192,194,193,195,193,194,196,198,197,198,199,197,198,200,199,201,199,200,202,201,200,203,202,200,204,202,203,199,205,197,205,206,197,207,197,206,208,210,209,211,209,210,212,208,209,213,209,211,214,213,211,215,217,216,218,216,217,219,221,220,222,220,221,223,220,222,224,223,222,225,227,226,228,226,227,229,226,228,230,229,228,226,231,225,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,242,244,243,244,245,243,246,243,245,247,249,248,250,248,249,251,253,252,254,252,253,255,257,256,258,256,257,259,261,260,262,260,261,263,265,264,266,264,265,264,266,267,268,267,266,269,268,266,270,269,266,271,269,270,272,269,271,273,271,270,274,273,270,275,274,270,268,276,267,267,277,264,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,291,293,295,290,291,296,290,295,297,299,298,300,298,299,301,303,302,304,302,303,305,307,306,308,306,307,309,311,310,312,310,311,313,315,314,316,314,315,316,317,314,317,318,314,318,319,314,320,314,319,317,316,321,322,321,316,323,321,322,324,323,322,325,323,324,326,325,324,327,325,326,321,328,317,329,331,330,332,330,331,333,335,334,336,334,335,337,339,338,340,338,339,341,343,342,344,342,343,345,347,346,348,346,347 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *213 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_stepsCornerInner_rock, Model::RootNode + C: "OO",4649396332319198507,0 + + ;Geometry::, Model::Mesh cliff_stepsCornerInner_rock + C: "OO",5693827381404700765,4649396332319198507 + + ;Material::dirt, Model::Mesh cliff_stepsCornerInner_rock + C: "OO",3020,4649396332319198507 + + ;Material::grass, Model::Mesh cliff_stepsCornerInner_rock + C: "OO",3024,4649396332319198507 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_rock.fbx.import new file mode 100644 index 0000000..53d5769 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://xtmftmv4hvdi" +path="res://.godot/imported/cliff_stepsCornerInner_rock.fbx-c1d28f3a1e6bb8be23f8b22ce1cc5559.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_rock.fbx" +dest_files=["res://.godot/imported/cliff_stepsCornerInner_rock.fbx-c1d28f3a1e6bb8be23f8b22ce1cc5559.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_stone.fbx new file mode 100644 index 0000000..9aa44db --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 861 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_stepsCornerInner_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_stepsCornerInner_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4850354373206417933, "Model::cliff_stepsCornerInner_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5673826591637800258, "Geometry::", "Mesh" { + Vertices: *1047 { + a: -5,4,1,-5,6,1,-3.333333,4,0.315,-3.333333,6,0.315,-5,3.609557E-14,-5,-5,10,-5,-5,0,5,-5,8,-3,-5,6,-1,-5,4,1,-5,2,3,-5,2,5,-5,4,3,-5,6,1,-5,8,-1,-5,10,-3,-3.333333,8,-3.685,-5,8,-3,-3.333333,10,-3.685,-5,10,-3,1.666667,8,-3,1.666667,10,-3,3.333333,8,-3.685,3.333333,10,-3.685,-5,6,-1,-5,8,-1,-3.333333,6,-1.685,-3.333333,8,-1.685,3.685,8,-3.333333,3.333333,8,-3.685,3.685,10,-3.333333,3.333333,10,-3.685,-1.666667,8,-3,-3.333333,8,-3.685,-1.666667,10,-3,-3.333333,10,-3.685,3.685,8,3.333333,3.685,10,3.333333,3,8,5,3,10,5,-1.666667,8,-3,-1.666667,10,-3,-1.039552E-12,8,-3.685,-1.039552E-12,10,-3.685,5,3.609557E-14,-5,-5,3.609557E-14,-5,5,0,5,-5,0,5,-1.666667,4,1,-3.333333,4,0.315,-1.666667,6,1,-3.333333,6,0.315,1.666667,8,-3,-1.039552E-12,8,-3.685,1.666667,10,-3,-1.039552E-12,10,-3.685,3.685,8,-3.333333,3.685,10,-3.333333,3,8,-1.666667,3,10,-1.666667,-3.333333,2,2.315,-3.333333,4,2.315,-2.611623,2,2.611623,-2.611623,4,2.611623,-5,2,3,-5,4,3,-3.333333,2,2.315,-3.333333,4,2.315,-2.611623,2,2.611623,-2.611623,4,2.611623,-2.315,2,3.333333,-2.315,4,3.333333,1.194188,6,-1.194188,-1.068429E-12,6,-1.685,1.194188,8,-1.194188,-1.068429E-12,8,-1.685,-5,3.609557E-14,-5,5,3.609557E-14,-5,-5,10,-5,5,10,-5,1.194188,6,-1.194188,1.194188,8,-1.194188,1.685,6,-1.328317E-12,1.685,8,-1.617082E-12,-1.666667,4,1,-1.666667,6,1,-0.5348047,4,0.5348047,-0.5348047,6,0.5348047,5,10,-5,5,3.609557E-14,-5,5,10,5,5,0,5,1.685,8,3.333333,1,8,5,1.685,6,3.333333,1,6,5,-0.5348047,6,0.5348047,-1,6,1.666667,-0.5348047,4,0.5348047,-1,4,1.666667,-3,2,5,-5,0,5,-5,2,5,5,0,5,5,10,5,-1,4,5,1,6,5,3,8,5,3,10,5,1,8,5,-1,6,5,-3,4,5,3,8,-1.666667,3,10,-1.666667,3.685,8,-2.136858E-12,3.685,10,-1.992475E-12,-0.315,6,3.333333,-1,6,5,-0.315,4,3.333333,-1,4,5,1.685,8,-1.617082E-12,1,8,1.666667,1.685,6,-1.328317E-12,1,6,1.666667,1,8,1.666667,1.685,8,3.333333,1,6,1.666667,1.685,6,3.333333,-1.666667,6,-1,-1.666667,8,-1,-1.068429E-12,6,-1.685,-1.068429E-12,8,-1.685,-2.315,4,3.333333,-3,4,5,-2.315,2,3.333333,-3,2,5,3.685,8,-2.136858E-12,3.685,10,-1.992475E-12,3,8,1.666667,3,10,1.666667,-1.666667,6,-1,-3.333333,6,-1.685,-1.666667,8,-1,-3.333333,8,-1.685,-1,6,1.666667,-0.315,6,3.333333,-1,4,1.666667,-0.315,4,3.333333,3,8,1.666667,3,10,1.666667,3.685,8,3.333333,3.685,10,3.333333,3.685,8,-2.136858E-12,3,8,1.666667,3,8,-1.666667,1.685,8,3.333333,1,8,5,3,8,5,3.685,8,3.333333,1.685,8,-1.617082E-12,1.666667,8,-3,3.333333,8,-3.685,3.685,8,-3.333333,1.194188,8,-1.194188,-1.039552E-12,8,-3.685,-1.068429E-12,8,-1.685,-1.666667,8,-3,-1.666667,8,-1,-3.333333,8,-3.685,-3.333333,8,-1.685,-5,8,-3,-5,8,-1,1,8,1.666667,1.194188,8,-1.194188,0.8398299,7.5,-0.8398299,-1.068429E-12,8,-1.685,-1.126182E-12,7.5,-1.185,-1.666667,5.5,1.5,-1.666667,6,1,-1.383701,5.5,1.383701,-0.5348047,6,0.5348047,3.081494,9.499999,-3.081494,1.666667,9.499999,-2.5,3.333333,10,-3.685,1.666667,10,-3,-2.611623,4,2.611623,-2.965981,3.5,2.965981,-3.333333,4,2.315,-3.333333,3.5,2.815,3.333333,10,-3.685,3.685,10,-3.333333,3.081494,9.499999,-3.081494,3.685,10,3.333333,3,10,5,3.185,9.499999,3.333333,2.5,9.499999,5,-0.5348047,4,0.5348047,-1,4,1.666667,-1.666667,4,1,-2.315,4,3.333333,-3.333333,4,0.315,-2.611623,4,2.611623,-3.333333,4,2.315,-5,4,1,-5,4,3,-3,4,5,-1,4,5,-0.315,4,3.333333,-1.666667,9.499999,-2.5,-2.5,9.75,-3.0925,-1.666667,10,-3,-3.333333,10,-3.685,-2.083333,9.499999,-2.67125,-2.916667,9.499999,-3.01375,-3.333333,9.499999,-3.185,3.685,10,3.333333,3.185,9.499999,3.333333,3,10,1.666667,2.5,9.499999,1.666667,-2.315,2,3.333333,-3,2,5,-2.611623,2,2.611623,-3.333333,2,2.315,-5,2,5,-5,2,3,1.185,7.5,3.333333,1.0925,7.75,2.5,1.685,8,3.333333,1,8,1.666667,0.67125,7.5,2.083333,0.5,7.5,1.666667,1.01375,7.5,2.916667,-3.333333,9.499999,-3.185,-5,9.499999,-2.5,-3.333333,10,-3.685,-5,10,-3,3.685,10,-1.992475E-12,3.185,9.499999,-1.920284E-12,3,10,-1.666667,2.5,9.499999,-1.666667,-3.333333,3.5,2.815,-3.75,3.5,2.98625,-3.333333,4,2.315,-4.166667,3.75,2.9075,-5,4,3,-5,3.5,3.5,-4.583333,3.5,3.32875,-3.333333,5.5,0.8149999,-5,5.5,1.5,-3.333333,6,0.315,-5,6,1,1.666667,10,-3,1.666667,9.499999,-2.5,-1.039552E-12,10,-3.685,-1.068429E-12,9.499999,-3.185,-1.666667,7.5,-0.5,-1.666667,8,-1,-1.126182E-12,7.5,-1.185,-1.068429E-12,8,-1.685,-2.315,4,3.333333,-2.815,3.5,3.333333,-2.611623,4,2.611623,-2.965981,3.5,2.965981,3,10,5,3.685,10,3.333333,5,10,5,5,10,-5,3.685,10,-1.992475E-12,3.685,10,-3.333333,3.333333,10,-3.685,-5,10,-5,-1.039552E-12,10,-3.685,1.666667,10,-3,-1.666667,10,-3,-3.333333,10,-3.685,-5,10,-3,3,10,-1.666667,3,10,1.666667,-1.666667,8,-1,-1.666667,7.5,-0.5,-3.333333,8,-1.685,-3.333333,7.5,-1.185,-1.666667,6,1,-1.666667,5.5,1.5,-3.333333,6,0.315,-3.333333,5.5,0.8149999,-2.315,4,3.333333,-3,4,5,-2.815,3.5,3.333333,-3.5,3.5,5,3,10,-1.666667,3.0925,9.75,-2.5,3.685,10,-3.333333,3.081494,9.499999,-3.081494,3.01375,9.499999,-2.916667,2.67125,9.499999,-2.083333,2.5,9.499999,-1.666667,1.685,8,3.333333,1,8,5,1.185,7.5,3.333333,0.5,7.5,5,1.685,8,-1.617082E-12,1.185,7.5,-1.530452E-12,1.194188,8,-1.194188,0.8398299,7.5,-0.8398299,-0.315,6,3.333333,-0.8149999,5.5,3.333333,-1,6,1.666667,-1.5,5.5,1.666667,-3.333333,7.5,-1.185,-5,7.5,-0.5,-3.333333,8,-1.685,-5,8,-1,1.685,6,-1.328317E-12,1,6,1.666667,1.194188,6,-1.194188,-1.068429E-12,6,-1.685,-0.315,6,3.333333,-1,6,5,1,6,5,1.685,6,3.333333,-0.5348047,6,0.5348047,-1.666667,6,-1,-1.666667,6,1,-3.333333,6,-1.685,-3.333333,6,0.315,-5,6,-1,-5,6,1,-1,6,1.666667,-1.666667,9.499999,-2.5,-1.666667,10,-3,-1.068429E-12,9.499999,-3.185,-1.039552E-12,10,-3.685,1.685,8,-1.617082E-12,1,8,1.666667,1.185,7.5,-1.530452E-12,0.5,7.5,1.666667,-0.5348047,6,0.5348047,-1,6,1.666667,-1.383701,5.5,1.383701,-1.5,5.5,1.666667,-0.315,6,3.333333,-1,6,5,-0.8149999,5.5,3.333333,-1.5,5.5,5,3.685,10,-1.992475E-12,3,10,1.666667,3.185,9.499999,-1.920284E-12,2.5,9.499999,1.666667 + } + PolygonVertexIndex: *639 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,8,-7,10,9,-7,11,10,-7,10,12,-10,9,13,-9,8,14,-8,7,15,-6,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,100,-104,105,100,-105,106,105,-105,107,106,-105,108,107,-105,107,109,-107,106,110,-106,105,111,-101,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,154,155,-154,155,156,-154,156,157,-154,158,153,-158,155,154,-160,159,154,-161,160,154,-162,162,161,-155,163,159,-161,164,163,-161,165,163,-165,166,165,-165,167,165,-167,168,167,-167,169,167,-169,170,169,-169,171,169,-171,159,172,-156,173,175,-175,176,174,-176,177,179,-179,180,178,-180,181,183,-183,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,194,-194,195,193,-195,196,198,-198,198,199,-198,198,200,-200,201,199,-201,202,201,-201,203,202,-201,204,202,-204,199,205,-198,205,206,-198,207,197,-207,208,210,-210,211,209,-211,212,208,-210,213,209,-212,214,213,-212,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,220,-223,224,223,-223,225,227,-227,228,226,-228,229,226,-229,230,229,-229,226,231,-226,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,242,244,-244,244,245,-244,246,243,-246,247,249,-249,250,248,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,259,261,-261,262,260,-262,263,265,-265,266,264,-266,264,266,-268,268,267,-267,269,268,-267,270,269,-267,271,269,-271,272,269,-272,273,271,-271,274,273,-271,275,274,-271,268,276,-268,267,277,-265,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,291,-294,295,290,-292,296,290,-296,297,299,-299,300,298,-300,301,303,-303,304,302,-304,305,307,-307,308,306,-308,309,311,-311,312,310,-312,313,315,-315,316,314,-316,316,317,-315,317,318,-315,318,319,-315,320,314,-320,317,316,-322,322,321,-317,323,321,-323,324,323,-323,325,323,-325,326,325,-325,327,325,-327,321,328,-318,329,331,-331,332,330,-332,333,335,-335,336,334,-336,337,339,-339,340,338,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1917 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.4505391,0.7707329,0.4505391,-0.4505391,0.7707329,0.4505391,-0.4505391,0.7707329,0.4505391,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744,-0.6790131,0.6790131,-0.2790744 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *698 { + a: -19.70386,15.74803,-19.70386,23.62205,-12.60959,15.74803,-12.60959,23.62205,-19.68504,1.300509E-13,-19.68504,39.37008,19.68504,-1.20577E-14,-11.81102,31.49606,-3.937008,23.62205,3.937008,15.74803,11.81102,7.874016,19.68504,7.874016,11.81102,15.74803,3.937008,23.62205,-3.937008,31.49606,-11.81102,39.37008,-6.623053,31.49606,-13.71732,31.49606,-6.623053,39.37008,-13.71732,39.37008,10.55898,31.49606,10.55898,39.37008,17.65324,31.49606,17.65324,39.37008,-16.71059,23.62205,-16.71059,31.49606,-9.616321,23.62205,-9.616321,31.49606,0.9789996,31.49606,-0.9789996,31.49606,0.9789996,39.37008,-0.9789996,39.37008,-10.55898,31.49606,-17.65324,31.49606,-10.55898,39.37008,-17.65324,39.37008,6.623053,31.49606,6.623053,39.37008,13.71732,31.49606,13.71732,39.37008,-1.579173,31.49606,-1.579173,39.37008,5.515095,31.49606,5.515095,39.37008,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,-4.572441,15.74803,-11.66671,15.74803,-4.572441,23.62205,-11.66671,23.62205,1.579173,31.49606,-5.515095,31.49606,1.579173,39.37008,-5.515095,39.37008,-17.65324,31.49606,-17.65324,39.37008,-10.55898,31.49606,-10.55898,39.37008,-8.673442,7.874016,-8.673442,15.74803,-5.601437,7.874016,-5.601437,15.74803,-22.69712,7.874016,-22.69712,15.74803,-15.60286,7.874016,-15.60286,15.74803,5.601437,7.874016,5.601437,15.74803,8.673442,7.874016,8.673442,15.74803,2.561308,23.62205,-2.521828,23.62205,2.561308,31.49606,-2.521828,31.49606,19.68504,1.664278E-12,-19.68504,1.664278E-12,19.68504,39.37008,-19.68504,39.37008,-2.561308,23.62205,-2.561308,31.49606,2.521828,23.62205,2.521828,31.49606,-7.565708,15.74803,-7.565708,23.62205,-2.747869,15.74803,-2.747869,23.62205,19.68504,39.37008,19.68504,2.041196E-12,-19.68504,39.37008,-19.68504,1.899087E-12,9.616321,31.49606,16.71059,31.49606,9.616321,23.62205,16.71059,23.62205,2.747869,23.62205,7.565708,23.62205,2.747869,15.74803,7.565708,15.74803,-11.81102,7.874016,-19.68504,-3.214668E-12,-19.68504,7.874016,19.68504,-3.214668E-12,19.68504,39.37008,-3.937008,15.74803,3.937008,23.62205,11.81102,31.49606,11.81102,39.37008,3.937008,31.49606,-3.937008,23.62205,-11.81102,15.74803,-1.579173,31.49606,-1.579173,39.37008,5.515095,31.49606,5.515095,39.37008,12.60959,23.62205,19.70386,23.62205,12.60959,15.74803,19.70386,15.74803,-2.521828,31.49606,4.572441,31.49606,-2.521828,23.62205,4.572441,23.62205,7.565708,31.49606,14.65998,31.49606,7.565708,23.62205,14.65998,23.62205,-4.572441,23.62205,-4.572441,31.49606,2.521828,23.62205,2.521828,31.49606,15.60286,15.74803,22.69712,15.74803,15.60286,7.874016,22.69712,7.874016,-5.515095,31.49606,-5.515095,39.37008,1.579173,31.49606,1.579173,39.37008,-7.565708,23.62205,-14.65998,23.62205,-7.565708,31.49606,-14.65998,31.49606,4.572441,23.62205,11.66671,23.62205,4.572441,15.74803,11.66671,15.74803,10.55898,31.49606,10.55898,39.37008,17.65324,31.49606,17.65324,39.37008,-14.50787,-8.416188E-12,-11.81102,6.56168,-11.81102,-6.56168,-6.633858,13.12336,-3.937008,19.68504,-11.81102,19.68504,-14.50787,13.12336,-6.633858,-6.369825E-12,-6.56168,-11.81102,-13.12336,-14.50787,-14.50787,-13.12336,-4.70153,-4.70153,4.07799E-12,-14.50787,4.191677E-12,-6.633858,6.56168,-11.81102,6.56168,-3.937008,13.12336,-14.50787,13.12336,-6.633858,19.68504,-11.81102,19.68504,-3.937008,-3.937008,6.56168,2.561308,27.2884,1.801276,24.60697,-2.521828,27.2884,-1.773511,24.60697,-8.314025,13.88127,-7.565708,16.5627,-7.109565,13.88127,-2.747869,16.5627,15.83296,31.94522,9.810658,31.94522,17.65324,34.62665,10.55898,34.62665,-5.601437,2.449554,-6.361469,-0.2318707,-8.673442,2.449554,-7.925125,-0.2318707,-0.9789996,40.14373,0.9789996,40.14373,3.826273E-11,37.05423,6.623053,41.40154,13.71732,41.40154,7.37137,38.72012,14.46564,38.72012,2.105531,2.105531,3.937008,6.56168,6.56168,3.937008,9.114173,13.12336,13.12336,1.240157,10.28198,10.28198,13.12336,9.114173,19.68504,3.937008,19.68504,11.81102,11.81102,19.68504,3.937008,19.68504,1.240157,13.12336,-9.810658,31.94522,-13.73195,33.28593,-10.55898,34.62665,-17.65324,34.62665,-11.58423,31.94522,-15.13136,31.94522,-16.90493,31.94522,17.65324,34.62665,16.90493,31.94522,10.55898,34.62665,9.810658,31.94522,9.114173,13.12336,11.81102,19.68504,10.28198,10.28198,13.12336,9.114173,19.68504,19.68504,19.68504,11.81102,13.91166,21.21953,10.73868,22.56024,14.65998,23.90095,7.565708,23.90095,8.590959,21.21953,6.817391,21.21953,12.13809,21.21953,-7.37137,38.72012,-14.46564,38.72012,-6.623053,41.40154,-13.71732,41.40154,5.515095,38.0141,4.766778,35.33267,-1.579173,38.0141,-2.32749,35.33267,-16.35117,6.543022,-18.12474,6.543022,-15.60286,9.224446,-19.52415,7.883734,-22.69712,9.224446,-23.44544,6.543022,-21.67187,6.543022,-13.35791,17.26872,-20.45217,17.26872,-12.60959,19.95014,-19.70386,19.95014,1.579173,38.0141,2.32749,35.33267,-5.515095,38.0141,-4.766778,35.33267,-5.320757,24.60697,-4.572441,27.2884,1.773511,24.60697,2.521828,27.2884,8.673442,2.449554,7.925125,-0.2318707,5.601437,2.449554,6.361469,-0.2318707,-11.81102,19.68504,-14.50787,13.12336,-19.68504,19.68504,-19.68504,-19.68504,-14.50787,-7.844894E-12,-14.50787,-13.12336,-13.12336,-14.50787,19.68504,-19.68504,4.089388E-12,-14.50787,-6.56168,-11.81102,6.56168,-11.81102,13.12336,-14.50787,19.68504,-11.81102,-11.81102,-6.56168,-11.81102,6.56168,-7.565708,23.90095,-6.817391,21.21953,-14.65998,23.90095,-13.91166,21.21953,-4.572441,13.17525,-3.824124,10.49383,-11.66671,13.17525,-10.91839,10.49383,15.60286,9.224446,22.69712,9.224446,16.35117,6.543022,23.44544,6.543022,-10.55898,34.62665,-13.73195,33.28593,-17.65324,34.62665,-15.83296,31.94522,-15.13136,31.94522,-11.58423,31.94522,-9.810658,31.94522,9.616321,30.67584,16.71059,30.67584,10.36464,27.99442,17.45891,27.99442,2.521828,27.2884,1.773511,24.60697,-2.561308,27.2884,-1.801276,24.60697,11.66671,13.17525,10.91839,10.49383,4.572441,13.17525,3.824124,10.49383,-10.36464,27.99442,-17.45891,27.99442,-9.616321,30.67584,-16.71059,30.67584,-6.633858,-5.239279E-12,-3.937008,6.56168,-4.70153,-4.70153,4.186183E-12,-6.633858,1.240157,13.12336,3.937008,19.68504,-3.937008,19.68504,-6.633858,13.12336,2.105531,2.105531,6.56168,-3.937008,6.56168,3.937008,13.12336,-6.633858,13.12336,1.240157,19.68504,-3.937008,19.68504,3.937008,3.937008,6.56168,-2.32749,35.33267,-1.579173,38.0141,4.766778,35.33267,5.515095,38.0141,-2.521828,27.2884,4.572441,27.2884,-1.773511,24.60697,5.320757,24.60697,2.747869,16.5627,7.565708,16.5627,7.109565,13.88127,8.314025,13.88127,12.60959,19.95014,19.70386,19.95014,13.35791,17.26872,20.45217,17.26872,-5.515095,38.0141,1.579173,38.0141,-4.766778,35.33267,2.32749,35.33267 + } + UVIndex: *639 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,8,6,10,9,6,11,10,6,10,12,9,9,13,8,8,14,7,7,15,5,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,101,103,100,104,100,103,105,100,104,106,105,104,107,106,104,108,107,104,107,109,106,106,110,105,105,111,100,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,154,155,153,155,156,153,156,157,153,158,153,157,155,154,159,159,154,160,160,154,161,162,161,154,163,159,160,164,163,160,165,163,164,166,165,164,167,165,166,168,167,166,169,167,168,170,169,168,171,169,170,159,172,155,173,175,174,176,174,175,177,179,178,180,178,179,181,183,182,184,182,183,185,187,186,188,186,187,189,191,190,192,194,193,195,193,194,196,198,197,198,199,197,198,200,199,201,199,200,202,201,200,203,202,200,204,202,203,199,205,197,205,206,197,207,197,206,208,210,209,211,209,210,212,208,209,213,209,211,214,213,211,215,217,216,218,216,217,219,221,220,222,220,221,223,220,222,224,223,222,225,227,226,228,226,227,229,226,228,230,229,228,226,231,225,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,242,244,243,244,245,243,246,243,245,247,249,248,250,248,249,251,253,252,254,252,253,255,257,256,258,256,257,259,261,260,262,260,261,263,265,264,266,264,265,264,266,267,268,267,266,269,268,266,270,269,266,271,269,270,272,269,271,273,271,270,274,273,270,275,274,270,268,276,267,267,277,264,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,291,293,295,290,291,296,290,295,297,299,298,300,298,299,301,303,302,304,302,303,305,307,306,308,306,307,309,311,310,312,310,311,313,315,314,316,314,315,316,317,314,317,318,314,318,319,314,320,314,319,317,316,321,322,321,316,323,321,322,324,323,322,325,323,324,326,325,324,327,325,326,321,328,317,329,331,330,332,330,331,333,335,334,336,334,335,337,339,338,340,338,339,341,343,342,344,342,343,345,347,346,348,346,347 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *213 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_stepsCornerInner_stone, Model::RootNode + C: "OO",4850354373206417933,0 + + ;Geometry::, Model::Mesh cliff_stepsCornerInner_stone + C: "OO",5673826591637800258,4850354373206417933 + + ;Material::stone, Model::Mesh cliff_stepsCornerInner_stone + C: "OO",3038,4850354373206417933 + + ;Material::grass, Model::Mesh cliff_stepsCornerInner_stone + C: "OO",3024,4850354373206417933 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_stone.fbx.import new file mode 100644 index 0000000..8517e7e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bjk8tvvi0kbbp" +path="res://.godot/imported/cliff_stepsCornerInner_stone.fbx-ee37113cce970aa87ef3f51457ce1206.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCornerInner_stone.fbx" +dest_files=["res://.godot/imported/cliff_stepsCornerInner_stone.fbx-ee37113cce970aa87ef3f51457ce1206.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_rock.fbx new file mode 100644 index 0000000..5437db6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 521 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_stepsCorner_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_stepsCorner_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5022358983052620205, "Model::cliff_stepsCorner_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5615787925579485119, "Geometry::", "Mesh" { + Vertices: *1191 { + a: -1.666667,0,5,-1.666667,2,5,-2.367869E-12,1.804779E-15,4.315,-2.367869E-12,2,4.315,-3,2,-1.666667,-3,4,-1.666667,-2.315,2,1.602643E-12,-2.315,4,1.602643E-12,-4.315,1.804779E-15,1.87697E-13,-4.315,2,1.87697E-13,-5,1.804779E-15,1.666667,-5,2,1.666667,1.685,6,-3.333333,1.685,8,-3.333333,1,6,-1.666667,1,8,-1.666667,1.666667,4,1,1.666667,6,1,3.333333,4,0.315,3.333333,6,0.315,3.333333,6,-1.685,3.333333,8,-1.685,5,6,-1,5,8,-1,-4.315,1.804779E-15,1.87697E-13,-4.315,0,-3.333333,-5,0,-1.666667,-3.333333,0,4.315,-4.315,9.023893E-15,3.333333,-5,1.804779E-15,1.666667,-1.666667,0,5,-2.367869E-12,1.804779E-15,4.315,-5,0,-5,1.666667,1.804779E-15,5,3.333333,9.023893E-15,4.315,5,3.609557E-14,5,5,3.609557E-14,-5,1.666667,6,-1,1.666667,8,-1,3.333333,6,-1.685,3.333333,8,-1.685,1.666667,2,3,1.666667,4,3,3.333333,2,2.315,3.333333,4,2.315,1.666667,2,3,-9.817995E-13,2,2.315,1.666667,4,3,-9.817995E-13,4,2.315,-1,4,-5,-1,6,-5,-0.315,4,-3.333333,-0.315,6,-3.333333,-4.315,0,-3.333333,-4.315,2,-3.333333,-5,0,-1.666667,-5,2,-1.666667,3.582566,8,-3.582566,3.582566,10,-3.582566,5,8,-3,5,10,-3,-2.315,2,-3.333333,-2.315,4,-3.333333,-3,2,-1.666667,-3,4,-1.666667,-5,0,-1.666667,-5,2,-1.666667,-4.315,1.804779E-15,1.87697E-13,-4.315,2,1.87697E-13,3,10,-5,3.582566,10,-3.582566,3,8,-5,3.582566,8,-3.582566,3.333333,9.023893E-15,4.315,3.333333,2,4.315,5,3.609557E-14,5,5,2,5,-1.666667,0,5,-3.333333,0,4.315,-1.666667,2,5,-3.333333,2,4.315,-3,2,-5,-3,4,-5,-2.315,2,-3.333333,-2.315,4,-3.333333,3.333333,2,2.315,3.333333,4,2.315,5,2,3,5,4,3,1.666667,4,1,-0.1575,4,0.1575,1.666667,6,1,-0.1575,6,0.1575,-1,4,-1.666667,-1,6,-1.666667,-0.1575,4,0.1575,-0.1575,6,0.1575,1,6,-5,1,8,-5,1.685,6,-3.333333,1.685,8,-3.333333,5,6,-1,5,4,1,5,6,1,5,2,3,5,4,3,5,3.609557E-14,-5,5,8,-3,5,10,-3,5,10,-5,5,3.609557E-14,5,5,8,-1,5,2,5,-1.666667,2,3,-1.666667,4,3,-9.817995E-13,2,2.315,-9.817995E-13,4,2.315,1.666667,1.804779E-15,5,-2.367869E-12,1.804779E-15,4.315,1.666667,2,5,-2.367869E-12,2,4.315,-4.315,9.023893E-15,3.333333,-4.315,2,3.333333,-3.333333,0,4.315,-3.333333,2,4.315,3.333333,4,0.315,3.333333,6,0.315,5,4,1,5,6,1,-3,2,1.666667,-3,4,1.666667,-2.611623,2,2.611623,-2.611623,4,2.611623,-1.666667,2,3,-2.611623,2,2.611623,-1.666667,4,3,-2.611623,4,2.611623,1.666667,1.804779E-15,5,1.666667,2,5,3.333333,9.023893E-15,4.315,3.333333,2,4.315,-0.315,4,-3.333333,-0.315,6,-3.333333,-1,4,-1.666667,-1,6,-1.666667,-5,1.804779E-15,1.666667,-5,2,1.666667,-4.315,9.023893E-15,3.333333,-4.315,2,3.333333,-5,0,-5,5,3.609557E-14,-5,-5,2,-5,-3,2,-5,-1,4,-5,3,8,-5,5,10,-5,-3,4,-5,1,6,-5,-1,6,-5,1,8,-5,3,10,-5,-5,0,-5,-5,2,-5,-4.315,0,-3.333333,-4.315,2,-3.333333,1,6,-1.666667,1,8,-1.666667,1.666667,6,-1,1.666667,8,-1,-2.315,2,1.602643E-12,-2.315,4,1.602643E-12,-3,2,1.666667,-3,4,1.666667,-2.315,4,1.602643E-12,-2.772188,3.5,0.3125,-3,4,-1.666667,-2.896797,3.75,-0.703125,-3.318047,3.5,-1.015625,-3.5,3.5,-1.458333,-2.954141,3.5,-0.1302083,-2.611623,4,2.611623,-3.087349,3.5,3.087349,-3,4,1.666667,-3.5,3.5,2.083333,-1.666667,4,3,-2.083333,3.5,3.5,-2.611623,4,2.611623,-3.087349,3.5,3.087349,-2.315,4,-3.333333,-2.772188,3.5,-3.229167,-3,4,-5,-3.5,3.5,-5,3,8,-5,1.685,8,-3.333333,1,8,-5,1.666667,8,-1,3.333333,8,-1.685,3.582566,8,-3.582566,5,8,-3,5,8,-1,1,8,-1.666667,-0.315,6,-3.333333,-0.1575,6,0.1575,-1,6,-1.666667,1,6,-1.666667,-1,6,-5,1,6,-5,1.685,6,-3.333333,1.666667,6,1,1.666667,6,-1,3.333333,6,0.315,3.333333,6,-1.685,5,6,1,5,6,-1,1.666667,6,1,1.388889,5.5,1.5,-0.1575,6,0.1575,0.577691,5.75,0.8111979,0.8948437,5.5,1.271823,-0.09324652,5.5,0.8154687,-0.5872917,5.5,0.5872917,2.5,9.499999,-5,3,10,-5,2.682052,9.499999,-4.557052,3.077976,9.75,-4.202005,3.582566,10,-3.582566,3.046155,9.499999,-3.671155,3.228207,9.499999,-3.228207,-2.083333,3.5,3.5,-1.666667,4,3,-0.3125,3.5,2.772188,-9.817995E-13,4,2.315,5,8,-1,5,7.5,-0.5,3.333333,8,-1.685,4.114583,7.75,-1.113906,4.53125,7.5,-0.6926563,3.59375,7.5,-1.077969,3.125,7.5,-1.270625,1.666667,8,-1,1.25,7.5,-0.5,1,8,-1.666667,0.5,7.5,-1.25,1.25,7.5,-0.5,1.666667,8,-1,3.125,7.5,-1.270625,3.333333,8,-1.685,-2.315,4,-3.333333,-3,4,-1.666667,-2.772188,3.5,-3.229167,-3.5,3.5,-1.458333,5,4,3,5,3.5,3.5,3.333333,4,2.315,3.229167,3.5,2.772188,-2.315,4,1.602643E-12,-3,4,1.666667,-2.772188,3.5,0.3125,-3.5,3.5,2.083333,1.685,8,-3.333333,1.270625,7.5,-3.125,1,8,-5,0.5,7.5,-5,1.388889,5.5,1.5,1.666667,6,1,3.194444,5.5,0.7579166,3.333333,6,0.315,1.666667,2,5,1.5,1.5,5.5,-2.367869E-12,2,4.315,-0.25,1.5,4.78075,-0.1575,6,0.1575,-0.5872917,5.5,0.5872917,-1,6,-1.666667,-1.5,5.5,-1.388889,-4.315,2,-3.333333,-4.78075,1.5,-3.25,-5,2,-5,-5.5,1.5,-5,-4.315,2,1.87697E-13,-4.78075,1.5,0.25,-5,2,-1.666667,-5.5,1.5,-1.5,-4.315,2,3.333333,-4.78075,1.5,3.75,-5,2,1.666667,-5.5,1.5,2,1.458333,3.5,3.5,1.666667,4,3,3.229167,3.5,2.772188,3.333333,4,2.315,1.666667,4,3,1.458333,3.5,3.5,-9.817995E-13,4,2.315,-0.3125,3.5,2.772188,5,10,-5,5,10,-3,3,10,-5,3.582566,10,-3.582566,2.8125,1.5,4.960563,2.4375,1.75,4.898937,3.25,1.5,4.78075,3.333333,2,4.315,1.666667,2,5,1.9375,1.5,5.320187,1.5,1.5,5.5,5,2,3,5,2,5,3.333333,2,2.315,3.333333,2,4.315,1.666667,2,3,1.666667,2,5,-9.817995E-13,2,2.315,-2.367869E-12,2,4.315,-1.666667,2,3,-1.666667,2,5,-2.611623,2,2.611623,-3.333333,2,4.315,-3,2,1.666667,-4.315,2,-3.333333,-3,2,-1.666667,-2.315,2,1.602643E-12,-5,2,-5,-3,2,-5,-2.315,2,-3.333333,-4.315,2,1.87697E-13,-5,2,-1.666667,-4.315,2,3.333333,-5,2,1.666667,-0.315,6,-3.333333,-1,6,-1.666667,-0.7579166,5.5,-3.194444,-0.8932292,5.75,-2.395833,-0.9434375,5.5,-2.743056,-1.314479,5.5,-1.840278,-1.5,5.5,-1.388889,5,4,1,5,4,3,3.333333,4,0.315,3.333333,4,2.315,1.666667,4,1,1.666667,4,3,-0.1575,4,0.1575,-9.817995E-13,4,2.315,-1.666667,4,3,-1,4,-1.666667,-2.315,4,-3.333333,-3,4,-5,-1,4,-5,-0.315,4,-3.333333,-2.315,4,1.602643E-12,-3,4,-1.666667,-2.611623,4,2.611623,-3,4,1.666667,-1.666667,2,5,-2,1.5,5.5,-3.333333,2,4.315,-3.75,1.5,4.78075,-4.315,2,-3.333333,-5,2,-1.666667,-4.78075,1.5,-3.25,-5.5,1.5,-1.5,-3.333333,2,4.315,-3.75,1.5,4.78075,-4.315,2,3.333333,-4.044771,1.75,4.044771,-4.007688,1.5,4.523062,-4.523062,1.5,4.007688,-4.78075,1.5,3.75,-4.315,2,1.87697E-13,-5,2,1.666667,-4.78075,1.5,0.25,-5.5,1.5,2,-2,1.5,5.5,-1.666667,2,5,-0.25,1.5,4.78075,-2.367869E-12,2,4.315,-0.315,6,-3.333333,-0.7579166,5.5,-3.194444,-1,6,-5,-1.5,5.5,-5,3.228207,9.499999,-3.228207,3.582566,10,-3.582566,5,9.499999,-2.5,5,10,-3,5,6,1,5,5.5,1.5,3.333333,6,0.315,3.194444,5.5,0.7579166,1.685,8,-3.333333,1,8,-1.666667,1.270625,7.5,-3.125,0.5,7.5,-1.25,5,2,5,5,1.5,5.5,3.333333,2,4.315,3.25,1.5,4.78075 + } + PolygonVertexIndex: *735 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,25,27,-25,28,24,-28,29,24,-29,27,25,-31,30,25,-32,25,32,-32,31,32,-34,33,32,-35,34,32,-36,36,35,-33,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,102,104,-102,102,105,-105,104,106,-102,101,106,-108,107,106,-109,109,108,-107,110,106,-105,111,101,-108,112,110,-105,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,150,-153,154,150,-154,155,150,-155,156,153,-153,157,154,-154,158,157,-154,159,154,-158,160,155,-155,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,176,-176,178,177,-176,176,179,-175,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,193,195,-193,195,196,-193,192,196,-198,197,196,-199,199,198,-197,200,195,-194,201,203,-203,202,204,-202,201,204,-206,205,204,-207,207,206,-205,202,208,-205,204,208,-210,208,210,-210,209,210,-212,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,215,-218,219,217,-217,220,219,-217,221,223,-223,224,222,-224,225,222,-225,226,225,-225,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,233,-236,237,235,-235,238,237,-235,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,259,261,-261,262,260,-262,263,265,-265,266,264,-266,267,269,-269,270,268,-270,271,273,-273,274,272,-274,275,277,-277,278,276,-278,279,281,-281,282,280,-282,283,285,-285,286,284,-286,287,289,-289,290,288,-290,291,293,-293,294,292,-294,295,297,-297,298,296,-298,299,301,-301,302,300,-302,303,300,-303,300,303,-305,305,304,-304,306,308,-308,309,307,-309,310,309,-309,311,309,-311,312,311,-311,313,311,-313,314,313,-313,315,313,-315,316,315,-315,317,315,-317,318,317,-317,317,318,-320,318,320,-320,320,318,-322,319,320,-323,322,320,-324,324,323,-321,319,325,-318,319,326,-326,327,317,-326,328,327,-326,329,331,-331,332,330,-332,333,332,-332,334,330,-333,335,330,-335,336,338,-338,339,337,-339,340,339,-339,341,339,-341,342,341,-341,343,341,-343,344,343,-343,345,344,-343,344,345,-347,346,345,-348,347,345,-349,349,348,-346,346,350,-345,346,351,-351,352,344,-351,353,352,-351,354,356,-356,357,355,-357,358,360,-360,361,359,-361,362,364,-364,365,363,-365,366,363,-366,367,365,-365,368,367,-365,369,371,-371,372,370,-372,373,375,-375,376,374,-376,377,379,-379,380,378,-380,381,383,-383,384,382,-384,385,387,-387,388,386,-388,389,391,-391,392,390,-392,393,395,-395,396,394,-396 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2205 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *794 { + a: -13.55224,-3.375059E-15,-13.55224,7.874016,-6.457974,3.730369E-15,-6.457974,7.874016,-10.55898,7.874016,-10.55898,15.74803,-3.464707,7.874016,-3.464707,15.74803,6.457974,4.122E-14,6.457974,7.874016,13.55224,4.122E-14,13.55224,7.874016,-14.65998,23.62205,-14.65998,31.49606,-7.565708,23.62205,-7.565708,31.49606,4.572441,15.74803,4.572441,23.62205,11.66671,15.74803,11.66671,23.62205,9.616321,23.62205,9.616321,31.49606,16.71059,23.62205,16.71059,31.49606,-16.98819,7.389644E-13,-16.98819,-13.12336,-19.68504,-6.56168,-13.12336,16.98819,-16.98819,13.12336,-19.68504,6.56168,-6.56168,19.68504,-9.322321E-12,16.98819,-19.68504,-19.68504,6.56168,19.68504,13.12336,16.98819,19.68504,19.68504,19.68504,-19.68504,7.565708,23.62205,7.565708,31.49606,14.65998,23.62205,14.65998,31.49606,1.579173,7.874016,1.579173,15.74803,8.673442,7.874016,8.673442,15.74803,10.55898,7.874016,3.464707,7.874016,10.55898,15.74803,3.464707,15.74803,-19.70386,15.74803,-19.70386,23.62205,-12.60959,15.74803,-12.60959,23.62205,-5.680174,4.494586E-14,-5.680174,7.874016,1.414094,4.494586E-14,1.414094,7.874016,7.683926,31.49606,7.683926,39.37008,13.71732,31.49606,13.71732,39.37008,-8.673442,7.874016,-8.673442,15.74803,-1.579173,7.874016,-1.579173,15.74803,-13.55224,4.46443E-14,-13.55224,7.874016,-6.457974,5.174973E-14,-6.457974,7.874016,-13.71732,39.37008,-7.683926,39.37008,-13.71732,31.49606,-7.683926,31.49606,18.59612,5.53162E-14,18.59612,7.874016,25.69039,1.618976E-13,25.69039,7.874016,1.414094,0,-5.680174,0,1.414094,7.874016,-5.680174,7.874016,-22.69712,7.874016,-22.69712,15.74803,-15.60286,7.874016,-15.60286,15.74803,15.60286,7.874016,15.60286,15.74803,22.69712,7.874016,22.69712,15.74803,7.607789,15.74803,-0.3029427,15.74803,7.607789,23.62205,-0.3029427,23.62205,-7.607789,15.74803,-7.607789,23.62205,0.3029427,15.74803,0.3029427,23.62205,-16.71059,23.62205,-16.71059,31.49606,-9.616321,23.62205,-9.616321,31.49606,3.937008,23.62205,-3.937008,15.74803,-3.937008,23.62205,-11.81102,7.874016,-11.81102,15.74803,19.68504,3.109659E-13,11.81102,31.49606,11.81102,39.37008,19.68504,39.37008,-19.68504,3.109659E-13,3.937008,31.49606,-19.68504,7.874016,-10.55898,7.874016,-10.55898,15.74803,-3.464707,7.874016,-3.464707,15.74803,13.55224,3.610027E-14,6.457974,3.610027E-14,13.55224,7.874016,6.457974,7.874016,-2.732847,3.552714E-14,-2.732847,7.874016,2.732847,4.006095E-26,2.732847,7.874016,12.60959,15.74803,12.60959,23.62205,19.70386,15.74803,19.70386,23.62205,1.579173,7.874016,1.579173,15.74803,5.601437,7.874016,5.601437,15.74803,-1.579173,7.874016,-5.601437,7.874016,-1.579173,15.74803,-5.601437,15.74803,-1.414094,2.658797E-15,-1.414094,7.874016,5.680174,3.108051E-14,5.680174,7.874016,-11.66671,15.74803,-11.66671,23.62205,-4.572441,15.74803,-4.572441,23.62205,-1.414094,7.41593E-15,-1.414094,7.874016,5.680174,3.583764E-14,5.680174,7.874016,19.68504,1.79265E-12,-19.68504,1.934759E-12,19.68504,7.874016,11.81102,7.874016,3.937008,15.74803,-11.81102,31.49606,-19.68504,39.37008,11.81102,15.74803,-3.937008,23.62205,3.937008,23.62205,-3.937008,31.49606,-11.81102,39.37008,-25.69039,3.046987E-14,-25.69039,7.874016,-18.59612,3.046987E-14,-18.59612,7.874016,-1.855923,23.62205,-1.855923,31.49606,1.855923,23.62205,1.855923,31.49606,3.464707,7.874016,3.464707,15.74803,10.55898,7.874016,10.55898,15.74803,-3.464707,4.487325,-3.010998,1.585144,-10.55898,4.487325,-6.895834,3.036235,-8.664243,1.585144,-10.54866,1.585144,-4.895413,1.585144,5.601437,-0.5734047,6.62178,-3.711829,1.579173,-0.5734047,2.348125,-3.711829,-1.579173,-0.5734047,-2.348125,-3.711829,-5.601437,-0.5734047,-6.62178,-3.711829,-15.60286,9.224446,-15.90778,6.543022,-22.69712,9.224446,-23.44544,6.543022,-11.81102,-19.68504,-6.633858,-13.12336,-3.937008,-19.68504,-6.56168,-3.937008,-13.12336,-6.633858,-14.10459,-14.10459,-19.68504,-11.81102,-19.68504,-3.937008,-3.937008,-6.56168,1.240157,-13.12336,0.6200787,0.6200787,3.937008,-6.56168,-3.937008,-6.56168,3.937008,-19.68504,-3.937008,-19.68504,-6.633858,-13.12336,-6.56168,3.937008,-6.56168,-3.937008,-13.12336,1.240157,-13.12336,-6.633858,-19.68504,3.937008,-19.68504,-3.937008,7.607789,14.95232,7.440336,11.96603,-0.3029427,14.95232,3.403889,13.45918,5.297846,11.96603,1.012866,11.96603,-1.129624,11.96603,-14.46564,38.72012,-13.71732,41.40154,-12.5802,38.72012,-10.69477,40.06083,-7.683926,41.40154,-8.80933,38.72012,-6.923893,38.72012,-12.82456,6.771133,-10.55898,9.075068,-5.286901,6.771133,-3.464707,9.075068,16.71059,30.67584,17.45891,27.99442,9.616321,30.67584,13.31592,29.33513,15.46364,27.99442,11.47312,27.99442,9.477854,27.99442,1.855923,25.11535,2.087914,21.89244,-1.855923,25.11535,-2.087914,21.89244,5.300123,25.20261,7.565708,27.50655,13.28117,25.20261,14.65998,27.50655,-8.673442,4.335064,-1.579173,4.335064,-7.609882,1.85477,-0.07222199,1.85477,22.69712,9.224446,23.44544,6.543022,15.60286,9.224446,15.90778,6.543022,3.464707,9.075068,10.55898,9.075068,5.286901,6.771133,12.82456,6.771133,-9.616321,30.67584,-9.477854,27.99442,-16.71059,30.67584,-17.45891,27.99442,2.812611,13.24402,4.572441,15.66249,10.49807,13.24402,11.66671,15.66249,13.55224,-5.960806,13.69365,-8.817478,6.457974,-5.960806,6.24467,-8.817478,0.3029427,14.95232,1.129624,11.96603,-7.607789,14.95232,-7.440336,11.96603,-18.59612,-1.501252,-18.98973,-4.182676,-25.69039,-1.501252,-26.43871,-4.182676,-6.457974,-5.960806,-6.24467,-8.817478,-13.55224,-5.960806,-13.69365,-8.817478,5.680174,-10.68912,6.500385,-13.73141,-1.414094,-10.68912,-0.9485963,-13.73141,0.07222199,1.85477,1.579173,4.335064,7.609882,1.85477,8.673442,4.335064,10.55898,4.487325,10.54866,1.585144,3.464707,4.487325,3.010998,1.585144,-19.68504,-19.68504,-19.68504,-11.81102,-11.81102,-19.68504,-14.10459,-14.10459,2.817418,-9.279327,1.544106,-8.019968,4.679663,-9.279327,5.680174,-6.76061,-1.414094,-6.76061,-0.9070731,-9.279327,-2.769319,-9.279327,-19.68504,11.81102,-19.68504,19.68504,-13.12336,9.114173,-13.12336,16.98819,-6.56168,11.81102,-6.56168,19.68504,3.861779E-12,9.114173,9.318747E-12,16.98819,6.56168,11.81102,6.56168,19.68504,10.28198,10.28198,13.12336,16.98819,11.81102,6.56168,16.98819,-13.12336,11.81102,-6.56168,9.114173,6.305609E-12,19.68504,-19.68504,11.81102,-19.68504,9.114173,-13.12336,16.98819,7.349535E-13,19.68504,-6.56168,16.98819,13.12336,19.68504,6.56168,-11.66671,15.66249,-4.572441,15.66249,-10.49807,13.24402,-7.387457,14.45326,-8.576704,13.24402,-4.733976,13.24402,-2.812611,13.24402,-19.68504,3.937008,-19.68504,11.81102,-13.12336,1.240157,-13.12336,9.114173,-6.56168,3.937008,-6.56168,11.81102,0.6200787,0.6200787,3.862438E-12,9.114173,6.56168,11.81102,3.937008,-6.56168,9.114173,-13.12336,11.81102,-19.68504,3.937008,-19.68504,1.240157,-13.12336,9.114173,6.25906E-12,11.81102,-6.56168,10.28198,10.28198,11.81102,6.56168,1.414094,-10.68912,0.9485963,-13.73141,-5.680174,-10.68912,-6.500385,-13.73141,-5.680174,-6.76061,1.414094,-6.76061,-4.679663,-9.279327,2.769319,-9.279327,2.732847,-11.6917,2.869489,-14.83965,-2.732847,-11.6917,1.815348E-11,-13.26568,1.434745,-14.83965,-1.434745,-14.83965,-2.869489,-14.83965,6.457974,-2.222518,13.55224,-2.222518,8.065392,-4.593653,15.51437,-4.593653,-15.51437,-4.593653,-13.55224,-2.222518,-8.065392,-4.593653,-6.457974,-2.222518,-12.60959,19.95014,-12.76672,17.26872,-19.70386,19.95014,-20.45217,17.26872,6.923893,38.72012,7.683926,41.40154,14.46564,38.72012,13.71732,41.40154,19.70386,19.95014,20.45217,17.26872,12.60959,19.95014,12.76672,17.26872,-14.65998,27.50655,-7.565708,27.50655,-13.28117,25.20261,-5.300123,25.20261,25.69039,-1.501252,26.43871,-4.182676,18.59612,-1.501252,18.98973,-4.182676 + } + UVIndex: *735 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,25,27,24,28,24,27,29,24,28,27,25,30,30,25,31,25,32,31,31,32,33,33,32,34,34,32,35,36,35,32,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,102,104,101,102,105,104,104,106,101,101,106,107,107,106,108,109,108,106,110,106,104,111,101,107,112,110,104,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,127,126,128,126,127,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,150,152,154,150,153,155,150,154,156,153,152,157,154,153,158,157,153,159,154,157,160,155,154,161,163,162,164,162,163,165,167,166,168,166,167,169,171,170,172,170,171,173,175,174,176,174,175,177,176,175,178,177,175,176,179,174,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,193,195,192,195,196,192,192,196,197,197,196,198,199,198,196,200,195,193,201,203,202,202,204,201,201,204,205,205,204,206,207,206,204,202,208,204,204,208,209,208,210,209,209,210,211,210,212,211,213,211,212,214,216,215,217,215,216,218,215,217,219,217,216,220,219,216,221,223,222,224,222,223,225,222,224,226,225,224,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,233,235,237,235,234,238,237,234,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,253,252,254,252,253,255,257,256,258,256,257,259,261,260,262,260,261,263,265,264,266,264,265,267,269,268,270,268,269,271,273,272,274,272,273,275,277,276,278,276,277,279,281,280,282,280,281,283,285,284,286,284,285,287,289,288,290,288,289,291,293,292,294,292,293,295,297,296,298,296,297,299,301,300,302,300,301,303,300,302,300,303,304,305,304,303,306,308,307,309,307,308,310,309,308,311,309,310,312,311,310,313,311,312,314,313,312,315,313,314,316,315,314,317,315,316,318,317,316,317,318,319,318,320,319,320,318,321,319,320,322,322,320,323,324,323,320,319,325,317,319,326,325,327,317,325,328,327,325,329,331,330,332,330,331,333,332,331,334,330,332,335,330,334,336,338,337,339,337,338,340,339,338,341,339,340,342,341,340,343,341,342,344,343,342,345,344,342,344,345,346,346,345,347,347,345,348,349,348,345,346,350,344,346,351,350,352,344,350,353,352,350,354,356,355,357,355,356,358,360,359,361,359,360,362,364,363,365,363,364,366,363,365,367,365,364,368,367,364,369,371,370,372,370,371,373,375,374,376,374,375,377,379,378,380,378,379,381,383,382,384,382,383,385,387,386,388,386,387,389,391,390,392,390,391,393,395,394,396,394,395 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *245 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_stepsCorner_rock, Model::RootNode + C: "OO",5022358983052620205,0 + + ;Geometry::, Model::Mesh cliff_stepsCorner_rock + C: "OO",5615787925579485119,5022358983052620205 + + ;Material::dirt, Model::Mesh cliff_stepsCorner_rock + C: "OO",3020,5022358983052620205 + + ;Material::grass, Model::Mesh cliff_stepsCorner_rock + C: "OO",3024,5022358983052620205 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_rock.fbx.import new file mode 100644 index 0000000..a3c9e9f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b05ns7ouqjufl" +path="res://.godot/imported/cliff_stepsCorner_rock.fbx-c4c245e408be8f51b703d4ac9127f26d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_rock.fbx" +dest_files=["res://.godot/imported/cliff_stepsCorner_rock.fbx-c4c245e408be8f51b703d4ac9127f26d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_stone.fbx new file mode 100644 index 0000000..48d3125 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 636 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_stepsCorner_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_stepsCorner_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5603143151741763793, "Model::cliff_stepsCorner_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4976587101159669496, "Geometry::", "Mesh" { + Vertices: *1191 { + a: -1.666667,0,5,-1.666667,2,5,-2.367869E-12,1.804779E-15,4.315,-2.367869E-12,2,4.315,-3,2,-1.666667,-3,4,-1.666667,-2.315,2,1.602643E-12,-2.315,4,1.602643E-12,-4.315,1.804779E-15,1.87697E-13,-4.315,2,1.87697E-13,-5,1.804779E-15,1.666667,-5,2,1.666667,1.685,6,-3.333333,1.685,8,-3.333333,1,6,-1.666667,1,8,-1.666667,1.666667,4,1,1.666667,6,1,3.333333,4,0.315,3.333333,6,0.315,3.333333,6,-1.685,3.333333,8,-1.685,5,6,-1,5,8,-1,-4.315,1.804779E-15,1.87697E-13,-4.315,0,-3.333333,-5,0,-1.666667,-3.333333,0,4.315,-4.315,9.023893E-15,3.333333,-5,1.804779E-15,1.666667,-1.666667,0,5,-2.367869E-12,1.804779E-15,4.315,-5,0,-5,1.666667,1.804779E-15,5,3.333333,9.023893E-15,4.315,5,3.609557E-14,5,5,3.609557E-14,-5,1.666667,6,-1,1.666667,8,-1,3.333333,6,-1.685,3.333333,8,-1.685,1.666667,2,3,1.666667,4,3,3.333333,2,2.315,3.333333,4,2.315,1.666667,2,3,-9.817995E-13,2,2.315,1.666667,4,3,-9.817995E-13,4,2.315,-1,4,-5,-1,6,-5,-0.315,4,-3.333333,-0.315,6,-3.333333,-4.315,0,-3.333333,-4.315,2,-3.333333,-5,0,-1.666667,-5,2,-1.666667,3.582566,8,-3.582566,3.582566,10,-3.582566,5,8,-3,5,10,-3,-2.315,2,-3.333333,-2.315,4,-3.333333,-3,2,-1.666667,-3,4,-1.666667,-5,0,-1.666667,-5,2,-1.666667,-4.315,1.804779E-15,1.87697E-13,-4.315,2,1.87697E-13,3,10,-5,3.582566,10,-3.582566,3,8,-5,3.582566,8,-3.582566,3.333333,9.023893E-15,4.315,3.333333,2,4.315,5,3.609557E-14,5,5,2,5,-1.666667,0,5,-3.333333,0,4.315,-1.666667,2,5,-3.333333,2,4.315,-3,2,-5,-3,4,-5,-2.315,2,-3.333333,-2.315,4,-3.333333,3.333333,2,2.315,3.333333,4,2.315,5,2,3,5,4,3,1.666667,4,1,-0.1575,4,0.1575,1.666667,6,1,-0.1575,6,0.1575,-1,4,-1.666667,-1,6,-1.666667,-0.1575,4,0.1575,-0.1575,6,0.1575,1,6,-5,1,8,-5,1.685,6,-3.333333,1.685,8,-3.333333,5,6,-1,5,4,1,5,6,1,5,2,3,5,4,3,5,3.609557E-14,-5,5,8,-3,5,10,-3,5,10,-5,5,3.609557E-14,5,5,8,-1,5,2,5,-1.666667,2,3,-1.666667,4,3,-9.817995E-13,2,2.315,-9.817995E-13,4,2.315,1.666667,1.804779E-15,5,-2.367869E-12,1.804779E-15,4.315,1.666667,2,5,-2.367869E-12,2,4.315,-4.315,9.023893E-15,3.333333,-4.315,2,3.333333,-3.333333,0,4.315,-3.333333,2,4.315,3.333333,4,0.315,3.333333,6,0.315,5,4,1,5,6,1,-3,2,1.666667,-3,4,1.666667,-2.611623,2,2.611623,-2.611623,4,2.611623,-1.666667,2,3,-2.611623,2,2.611623,-1.666667,4,3,-2.611623,4,2.611623,1.666667,1.804779E-15,5,1.666667,2,5,3.333333,9.023893E-15,4.315,3.333333,2,4.315,-0.315,4,-3.333333,-0.315,6,-3.333333,-1,4,-1.666667,-1,6,-1.666667,-5,1.804779E-15,1.666667,-5,2,1.666667,-4.315,9.023893E-15,3.333333,-4.315,2,3.333333,-5,0,-5,5,3.609557E-14,-5,-5,2,-5,-3,2,-5,-1,4,-5,3,8,-5,5,10,-5,-3,4,-5,1,6,-5,-1,6,-5,1,8,-5,3,10,-5,-5,0,-5,-5,2,-5,-4.315,0,-3.333333,-4.315,2,-3.333333,1,6,-1.666667,1,8,-1.666667,1.666667,6,-1,1.666667,8,-1,-2.315,2,1.602643E-12,-2.315,4,1.602643E-12,-3,2,1.666667,-3,4,1.666667,-2.315,4,1.602643E-12,-2.772188,3.5,0.3125,-3,4,-1.666667,-2.896797,3.75,-0.703125,-3.318047,3.5,-1.015625,-3.5,3.5,-1.458333,-2.954141,3.5,-0.1302083,-2.611623,4,2.611623,-3.087349,3.5,3.087349,-3,4,1.666667,-3.5,3.5,2.083333,-1.666667,4,3,-2.083333,3.5,3.5,-2.611623,4,2.611623,-3.087349,3.5,3.087349,-2.315,4,-3.333333,-2.772188,3.5,-3.229167,-3,4,-5,-3.5,3.5,-5,3,8,-5,1.685,8,-3.333333,1,8,-5,1.666667,8,-1,3.333333,8,-1.685,3.582566,8,-3.582566,5,8,-3,5,8,-1,1,8,-1.666667,-0.315,6,-3.333333,-0.1575,6,0.1575,-1,6,-1.666667,1,6,-1.666667,-1,6,-5,1,6,-5,1.685,6,-3.333333,1.666667,6,1,1.666667,6,-1,3.333333,6,0.315,3.333333,6,-1.685,5,6,1,5,6,-1,1.666667,6,1,1.388889,5.5,1.5,-0.1575,6,0.1575,0.577691,5.75,0.8111979,0.8948437,5.5,1.271823,-0.09324652,5.5,0.8154687,-0.5872917,5.5,0.5872917,2.5,9.499999,-5,3,10,-5,2.682052,9.499999,-4.557052,3.077976,9.75,-4.202005,3.582566,10,-3.582566,3.046155,9.499999,-3.671155,3.228207,9.499999,-3.228207,-2.083333,3.5,3.5,-1.666667,4,3,-0.3125,3.5,2.772188,-9.817995E-13,4,2.315,5,8,-1,5,7.5,-0.5,3.333333,8,-1.685,4.114583,7.75,-1.113906,4.53125,7.5,-0.6926563,3.59375,7.5,-1.077969,3.125,7.5,-1.270625,1.666667,8,-1,1.25,7.5,-0.5,1,8,-1.666667,0.5,7.5,-1.25,1.25,7.5,-0.5,1.666667,8,-1,3.125,7.5,-1.270625,3.333333,8,-1.685,-2.315,4,-3.333333,-3,4,-1.666667,-2.772188,3.5,-3.229167,-3.5,3.5,-1.458333,5,4,3,5,3.5,3.5,3.333333,4,2.315,3.229167,3.5,2.772188,-2.315,4,1.602643E-12,-3,4,1.666667,-2.772188,3.5,0.3125,-3.5,3.5,2.083333,1.685,8,-3.333333,1.270625,7.5,-3.125,1,8,-5,0.5,7.5,-5,1.388889,5.5,1.5,1.666667,6,1,3.194444,5.5,0.7579166,3.333333,6,0.315,1.666667,2,5,1.5,1.5,5.5,-2.367869E-12,2,4.315,-0.25,1.5,4.78075,-0.1575,6,0.1575,-0.5872917,5.5,0.5872917,-1,6,-1.666667,-1.5,5.5,-1.388889,-4.315,2,-3.333333,-4.78075,1.5,-3.25,-5,2,-5,-5.5,1.5,-5,-4.315,2,1.87697E-13,-4.78075,1.5,0.25,-5,2,-1.666667,-5.5,1.5,-1.5,-4.315,2,3.333333,-4.78075,1.5,3.75,-5,2,1.666667,-5.5,1.5,2,1.458333,3.5,3.5,1.666667,4,3,3.229167,3.5,2.772188,3.333333,4,2.315,1.666667,4,3,1.458333,3.5,3.5,-9.817995E-13,4,2.315,-0.3125,3.5,2.772188,5,10,-5,5,10,-3,3,10,-5,3.582566,10,-3.582566,2.8125,1.5,4.960563,2.4375,1.75,4.898937,3.25,1.5,4.78075,3.333333,2,4.315,1.666667,2,5,1.9375,1.5,5.320187,1.5,1.5,5.5,5,2,3,5,2,5,3.333333,2,2.315,3.333333,2,4.315,1.666667,2,3,1.666667,2,5,-9.817995E-13,2,2.315,-2.367869E-12,2,4.315,-1.666667,2,3,-1.666667,2,5,-2.611623,2,2.611623,-3.333333,2,4.315,-3,2,1.666667,-4.315,2,-3.333333,-3,2,-1.666667,-2.315,2,1.602643E-12,-5,2,-5,-3,2,-5,-2.315,2,-3.333333,-4.315,2,1.87697E-13,-5,2,-1.666667,-4.315,2,3.333333,-5,2,1.666667,-0.315,6,-3.333333,-1,6,-1.666667,-0.7579166,5.5,-3.194444,-0.8932292,5.75,-2.395833,-0.9434375,5.5,-2.743056,-1.314479,5.5,-1.840278,-1.5,5.5,-1.388889,5,4,1,5,4,3,3.333333,4,0.315,3.333333,4,2.315,1.666667,4,1,1.666667,4,3,-0.1575,4,0.1575,-9.817995E-13,4,2.315,-1.666667,4,3,-1,4,-1.666667,-2.315,4,-3.333333,-3,4,-5,-1,4,-5,-0.315,4,-3.333333,-2.315,4,1.602643E-12,-3,4,-1.666667,-2.611623,4,2.611623,-3,4,1.666667,-1.666667,2,5,-2,1.5,5.5,-3.333333,2,4.315,-3.75,1.5,4.78075,-4.315,2,-3.333333,-5,2,-1.666667,-4.78075,1.5,-3.25,-5.5,1.5,-1.5,-3.333333,2,4.315,-3.75,1.5,4.78075,-4.315,2,3.333333,-4.044771,1.75,4.044771,-4.007688,1.5,4.523062,-4.523062,1.5,4.007688,-4.78075,1.5,3.75,-4.315,2,1.87697E-13,-5,2,1.666667,-4.78075,1.5,0.25,-5.5,1.5,2,-2,1.5,5.5,-1.666667,2,5,-0.25,1.5,4.78075,-2.367869E-12,2,4.315,-0.315,6,-3.333333,-0.7579166,5.5,-3.194444,-1,6,-5,-1.5,5.5,-5,3.228207,9.499999,-3.228207,3.582566,10,-3.582566,5,9.499999,-2.5,5,10,-3,5,6,1,5,5.5,1.5,3.333333,6,0.315,3.194444,5.5,0.7579166,1.685,8,-3.333333,1,8,-1.666667,1.270625,7.5,-3.125,0.5,7.5,-1.25,5,2,5,5,1.5,5.5,3.333333,2,4.315,3.25,1.5,4.78075 + } + PolygonVertexIndex: *735 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,25,27,-25,28,24,-28,29,24,-29,27,25,-31,30,25,-32,25,32,-32,31,32,-34,33,32,-35,34,32,-36,36,35,-33,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,102,104,-102,102,105,-105,104,106,-102,101,106,-108,107,106,-109,109,108,-107,110,106,-105,111,101,-108,112,110,-105,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,150,-153,154,150,-154,155,150,-155,156,153,-153,157,154,-154,158,157,-154,159,154,-158,160,155,-155,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,176,-176,178,177,-176,176,179,-175,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,193,195,-193,195,196,-193,192,196,-198,197,196,-199,199,198,-197,200,195,-194,201,203,-203,202,204,-202,201,204,-206,205,204,-207,207,206,-205,202,208,-205,204,208,-210,208,210,-210,209,210,-212,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,215,-218,219,217,-217,220,219,-217,221,223,-223,224,222,-224,225,222,-225,226,225,-225,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,233,-236,237,235,-235,238,237,-235,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,259,261,-261,262,260,-262,263,265,-265,266,264,-266,267,269,-269,270,268,-270,271,273,-273,274,272,-274,275,277,-277,278,276,-278,279,281,-281,282,280,-282,283,285,-285,286,284,-286,287,289,-289,290,288,-290,291,293,-293,294,292,-294,295,297,-297,298,296,-298,299,301,-301,302,300,-302,303,300,-303,300,303,-305,305,304,-304,306,308,-308,309,307,-309,310,309,-309,311,309,-311,312,311,-311,313,311,-313,314,313,-313,315,313,-315,316,315,-315,317,315,-317,318,317,-317,317,318,-320,318,320,-320,320,318,-322,319,320,-323,322,320,-324,324,323,-321,319,325,-318,319,326,-326,327,317,-326,328,327,-326,329,331,-331,332,330,-332,333,332,-332,334,330,-333,335,330,-335,336,338,-338,339,337,-339,340,339,-339,341,339,-341,342,341,-341,343,341,-343,344,343,-343,345,344,-343,344,345,-347,346,345,-348,347,345,-349,349,348,-346,346,350,-345,346,351,-351,352,344,-351,353,352,-351,354,356,-356,357,355,-357,358,360,-360,361,359,-361,362,364,-364,365,363,-365,366,363,-366,367,365,-365,368,367,-365,369,371,-371,372,370,-372,373,375,-375,376,374,-376,377,379,-379,380,378,-380,381,383,-383,384,382,-384,385,387,-387,388,386,-388,389,391,-391,392,390,-392,393,395,-395,396,394,-396 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2205 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.4192949,0,0.9078501,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9078501,0,0.4192949,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.9249269,0,0.380145,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.9249269,0,-0.380145,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.6273635,0.7347995,0.2578464,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.580139,0.7788367,0.2384371,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.2384371,0.7788367,0.580139,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.2763904,0.751986,0.5984358,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,-0.4318894,0.7917973,0.4318894,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,0.3247995,0.5196002,0.7902664,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.7340752,0.6083648,-0.3017049,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,0.3094172,0.5809415,0.7528399,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.2619541,0.7246758,0.6373579,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.5984358,0.751986,0.2763904,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.6373579,0.7246758,0.2619541,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,-0.5984702,0.7624511,0.2459713,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,0.3017049,0.6083648,0.7340752,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,-0.2578464,0.7347995,0.6273635,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0.2971023,0.6238425,0.7228767,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,-0.7528399,0.5809415,-0.3094172,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.2459713,0.7624511,0.5984702,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.7228767,0.6238425,-0.2971023,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.4421734,0.7803624,0.4421734,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,-0.7678696,0.5574733,-0.3155944,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,0.3155944,0.5574733,0.7678696,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.6790131,0.6790131,0.2790744,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.7902664,0.5196002,-0.3247995,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *794 { + a: -13.55224,-3.375059E-15,-13.55224,7.874016,-6.457974,3.730369E-15,-6.457974,7.874016,-10.55898,7.874016,-10.55898,15.74803,-3.464707,7.874016,-3.464707,15.74803,6.457974,4.122E-14,6.457974,7.874016,13.55224,4.122E-14,13.55224,7.874016,-14.65998,23.62205,-14.65998,31.49606,-7.565708,23.62205,-7.565708,31.49606,4.572441,15.74803,4.572441,23.62205,11.66671,15.74803,11.66671,23.62205,9.616321,23.62205,9.616321,31.49606,16.71059,23.62205,16.71059,31.49606,-16.98819,7.389644E-13,-16.98819,-13.12336,-19.68504,-6.56168,-13.12336,16.98819,-16.98819,13.12336,-19.68504,6.56168,-6.56168,19.68504,-9.322321E-12,16.98819,-19.68504,-19.68504,6.56168,19.68504,13.12336,16.98819,19.68504,19.68504,19.68504,-19.68504,7.565708,23.62205,7.565708,31.49606,14.65998,23.62205,14.65998,31.49606,1.579173,7.874016,1.579173,15.74803,8.673442,7.874016,8.673442,15.74803,10.55898,7.874016,3.464707,7.874016,10.55898,15.74803,3.464707,15.74803,-19.70386,15.74803,-19.70386,23.62205,-12.60959,15.74803,-12.60959,23.62205,-5.680174,4.494586E-14,-5.680174,7.874016,1.414094,4.494586E-14,1.414094,7.874016,7.683926,31.49606,7.683926,39.37008,13.71732,31.49606,13.71732,39.37008,-8.673442,7.874016,-8.673442,15.74803,-1.579173,7.874016,-1.579173,15.74803,-13.55224,4.46443E-14,-13.55224,7.874016,-6.457974,5.174973E-14,-6.457974,7.874016,-13.71732,39.37008,-7.683926,39.37008,-13.71732,31.49606,-7.683926,31.49606,18.59612,5.53162E-14,18.59612,7.874016,25.69039,1.618976E-13,25.69039,7.874016,1.414094,0,-5.680174,0,1.414094,7.874016,-5.680174,7.874016,-22.69712,7.874016,-22.69712,15.74803,-15.60286,7.874016,-15.60286,15.74803,15.60286,7.874016,15.60286,15.74803,22.69712,7.874016,22.69712,15.74803,7.607789,15.74803,-0.3029427,15.74803,7.607789,23.62205,-0.3029427,23.62205,-7.607789,15.74803,-7.607789,23.62205,0.3029427,15.74803,0.3029427,23.62205,-16.71059,23.62205,-16.71059,31.49606,-9.616321,23.62205,-9.616321,31.49606,3.937008,23.62205,-3.937008,15.74803,-3.937008,23.62205,-11.81102,7.874016,-11.81102,15.74803,19.68504,3.109659E-13,11.81102,31.49606,11.81102,39.37008,19.68504,39.37008,-19.68504,3.109659E-13,3.937008,31.49606,-19.68504,7.874016,-10.55898,7.874016,-10.55898,15.74803,-3.464707,7.874016,-3.464707,15.74803,13.55224,3.610027E-14,6.457974,3.610027E-14,13.55224,7.874016,6.457974,7.874016,-2.732847,3.552714E-14,-2.732847,7.874016,2.732847,4.006095E-26,2.732847,7.874016,12.60959,15.74803,12.60959,23.62205,19.70386,15.74803,19.70386,23.62205,1.579173,7.874016,1.579173,15.74803,5.601437,7.874016,5.601437,15.74803,-1.579173,7.874016,-5.601437,7.874016,-1.579173,15.74803,-5.601437,15.74803,-1.414094,2.658797E-15,-1.414094,7.874016,5.680174,3.108051E-14,5.680174,7.874016,-11.66671,15.74803,-11.66671,23.62205,-4.572441,15.74803,-4.572441,23.62205,-1.414094,7.41593E-15,-1.414094,7.874016,5.680174,3.583764E-14,5.680174,7.874016,19.68504,1.79265E-12,-19.68504,1.934759E-12,19.68504,7.874016,11.81102,7.874016,3.937008,15.74803,-11.81102,31.49606,-19.68504,39.37008,11.81102,15.74803,-3.937008,23.62205,3.937008,23.62205,-3.937008,31.49606,-11.81102,39.37008,-25.69039,3.046987E-14,-25.69039,7.874016,-18.59612,3.046987E-14,-18.59612,7.874016,-1.855923,23.62205,-1.855923,31.49606,1.855923,23.62205,1.855923,31.49606,3.464707,7.874016,3.464707,15.74803,10.55898,7.874016,10.55898,15.74803,-3.464707,4.487325,-3.010998,1.585144,-10.55898,4.487325,-6.895834,3.036235,-8.664243,1.585144,-10.54866,1.585144,-4.895413,1.585144,5.601437,-0.5734047,6.62178,-3.711829,1.579173,-0.5734047,2.348125,-3.711829,-1.579173,-0.5734047,-2.348125,-3.711829,-5.601437,-0.5734047,-6.62178,-3.711829,-15.60286,9.224446,-15.90778,6.543022,-22.69712,9.224446,-23.44544,6.543022,-11.81102,-19.68504,-6.633858,-13.12336,-3.937008,-19.68504,-6.56168,-3.937008,-13.12336,-6.633858,-14.10459,-14.10459,-19.68504,-11.81102,-19.68504,-3.937008,-3.937008,-6.56168,1.240157,-13.12336,0.6200787,0.6200787,3.937008,-6.56168,-3.937008,-6.56168,3.937008,-19.68504,-3.937008,-19.68504,-6.633858,-13.12336,-6.56168,3.937008,-6.56168,-3.937008,-13.12336,1.240157,-13.12336,-6.633858,-19.68504,3.937008,-19.68504,-3.937008,7.607789,14.95232,7.440336,11.96603,-0.3029427,14.95232,3.403889,13.45918,5.297846,11.96603,1.012866,11.96603,-1.129624,11.96603,-14.46564,38.72012,-13.71732,41.40154,-12.5802,38.72012,-10.69477,40.06083,-7.683926,41.40154,-8.80933,38.72012,-6.923893,38.72012,-12.82456,6.771133,-10.55898,9.075068,-5.286901,6.771133,-3.464707,9.075068,16.71059,30.67584,17.45891,27.99442,9.616321,30.67584,13.31592,29.33513,15.46364,27.99442,11.47312,27.99442,9.477854,27.99442,1.855923,25.11535,2.087914,21.89244,-1.855923,25.11535,-2.087914,21.89244,5.300123,25.20261,7.565708,27.50655,13.28117,25.20261,14.65998,27.50655,-8.673442,4.335064,-1.579173,4.335064,-7.609882,1.85477,-0.07222199,1.85477,22.69712,9.224446,23.44544,6.543022,15.60286,9.224446,15.90778,6.543022,3.464707,9.075068,10.55898,9.075068,5.286901,6.771133,12.82456,6.771133,-9.616321,30.67584,-9.477854,27.99442,-16.71059,30.67584,-17.45891,27.99442,2.812611,13.24402,4.572441,15.66249,10.49807,13.24402,11.66671,15.66249,13.55224,-5.960806,13.69365,-8.817478,6.457974,-5.960806,6.24467,-8.817478,0.3029427,14.95232,1.129624,11.96603,-7.607789,14.95232,-7.440336,11.96603,-18.59612,-1.501252,-18.98973,-4.182676,-25.69039,-1.501252,-26.43871,-4.182676,-6.457974,-5.960806,-6.24467,-8.817478,-13.55224,-5.960806,-13.69365,-8.817478,5.680174,-10.68912,6.500385,-13.73141,-1.414094,-10.68912,-0.9485963,-13.73141,0.07222199,1.85477,1.579173,4.335064,7.609882,1.85477,8.673442,4.335064,10.55898,4.487325,10.54866,1.585144,3.464707,4.487325,3.010998,1.585144,-19.68504,-19.68504,-19.68504,-11.81102,-11.81102,-19.68504,-14.10459,-14.10459,2.817418,-9.279327,1.544106,-8.019968,4.679663,-9.279327,5.680174,-6.76061,-1.414094,-6.76061,-0.9070731,-9.279327,-2.769319,-9.279327,-19.68504,11.81102,-19.68504,19.68504,-13.12336,9.114173,-13.12336,16.98819,-6.56168,11.81102,-6.56168,19.68504,3.861779E-12,9.114173,9.318747E-12,16.98819,6.56168,11.81102,6.56168,19.68504,10.28198,10.28198,13.12336,16.98819,11.81102,6.56168,16.98819,-13.12336,11.81102,-6.56168,9.114173,6.305609E-12,19.68504,-19.68504,11.81102,-19.68504,9.114173,-13.12336,16.98819,7.349535E-13,19.68504,-6.56168,16.98819,13.12336,19.68504,6.56168,-11.66671,15.66249,-4.572441,15.66249,-10.49807,13.24402,-7.387457,14.45326,-8.576704,13.24402,-4.733976,13.24402,-2.812611,13.24402,-19.68504,3.937008,-19.68504,11.81102,-13.12336,1.240157,-13.12336,9.114173,-6.56168,3.937008,-6.56168,11.81102,0.6200787,0.6200787,3.862438E-12,9.114173,6.56168,11.81102,3.937008,-6.56168,9.114173,-13.12336,11.81102,-19.68504,3.937008,-19.68504,1.240157,-13.12336,9.114173,6.25906E-12,11.81102,-6.56168,10.28198,10.28198,11.81102,6.56168,1.414094,-10.68912,0.9485963,-13.73141,-5.680174,-10.68912,-6.500385,-13.73141,-5.680174,-6.76061,1.414094,-6.76061,-4.679663,-9.279327,2.769319,-9.279327,2.732847,-11.6917,2.869489,-14.83965,-2.732847,-11.6917,1.815526E-11,-13.26568,1.434745,-14.83965,-1.434745,-14.83965,-2.869489,-14.83965,6.457974,-2.222518,13.55224,-2.222518,8.065392,-4.593653,15.51437,-4.593653,-15.51437,-4.593653,-13.55224,-2.222518,-8.065392,-4.593653,-6.457974,-2.222518,-12.60959,19.95014,-12.76672,17.26872,-19.70386,19.95014,-20.45217,17.26872,6.923893,38.72012,7.683926,41.40154,14.46564,38.72012,13.71732,41.40154,19.70386,19.95014,20.45217,17.26872,12.60959,19.95014,12.76672,17.26872,-14.65998,27.50655,-7.565708,27.50655,-13.28117,25.20261,-5.300123,25.20261,25.69039,-1.501252,26.43871,-4.182676,18.59612,-1.501252,18.98973,-4.182676 + } + UVIndex: *735 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,25,27,24,28,24,27,29,24,28,27,25,30,30,25,31,25,32,31,31,32,33,33,32,34,34,32,35,36,35,32,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,102,104,101,102,105,104,104,106,101,101,106,107,107,106,108,109,108,106,110,106,104,111,101,107,112,110,104,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,127,126,128,126,127,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,150,152,154,150,153,155,150,154,156,153,152,157,154,153,158,157,153,159,154,157,160,155,154,161,163,162,164,162,163,165,167,166,168,166,167,169,171,170,172,170,171,173,175,174,176,174,175,177,176,175,178,177,175,176,179,174,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,193,195,192,195,196,192,192,196,197,197,196,198,199,198,196,200,195,193,201,203,202,202,204,201,201,204,205,205,204,206,207,206,204,202,208,204,204,208,209,208,210,209,209,210,211,210,212,211,213,211,212,214,216,215,217,215,216,218,215,217,219,217,216,220,219,216,221,223,222,224,222,223,225,222,224,226,225,224,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,233,235,237,235,234,238,237,234,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,253,252,254,252,253,255,257,256,258,256,257,259,261,260,262,260,261,263,265,264,266,264,265,267,269,268,270,268,269,271,273,272,274,272,273,275,277,276,278,276,277,279,281,280,282,280,281,283,285,284,286,284,285,287,289,288,290,288,289,291,293,292,294,292,293,295,297,296,298,296,297,299,301,300,302,300,301,303,300,302,300,303,304,305,304,303,306,308,307,309,307,308,310,309,308,311,309,310,312,311,310,313,311,312,314,313,312,315,313,314,316,315,314,317,315,316,318,317,316,317,318,319,318,320,319,320,318,321,319,320,322,322,320,323,324,323,320,319,325,317,319,326,325,327,317,325,328,327,325,329,331,330,332,330,331,333,332,331,334,330,332,335,330,334,336,338,337,339,337,338,340,339,338,341,339,340,342,341,340,343,341,342,344,343,342,345,344,342,344,345,346,346,345,347,347,345,348,349,348,345,346,350,344,346,351,350,352,344,350,353,352,350,354,356,355,357,355,356,358,360,359,361,359,360,362,364,363,365,363,364,366,363,365,367,365,364,368,367,364,369,371,370,372,370,371,373,375,374,376,374,375,377,379,378,380,378,379,381,383,382,384,382,383,385,387,386,388,386,387,389,391,390,392,390,391,393,395,394,396,394,395 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *245 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_stepsCorner_stone, Model::RootNode + C: "OO",5603143151741763793,0 + + ;Geometry::, Model::Mesh cliff_stepsCorner_stone + C: "OO",4976587101159669496,5603143151741763793 + + ;Material::stone, Model::Mesh cliff_stepsCorner_stone + C: "OO",3038,5603143151741763793 + + ;Material::grass, Model::Mesh cliff_stepsCorner_stone + C: "OO",3024,5603143151741763793 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_stone.fbx.import new file mode 100644 index 0000000..7fac60e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dsqrxle5bvr8o" +path="res://.godot/imported/cliff_stepsCorner_stone.fbx-15b23a0accab2800dd2cc2b6deb2e3ec.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_stepsCorner_stone.fbx" +dest_files=["res://.godot/imported/cliff_stepsCorner_stone.fbx-15b23a0accab2800dd2cc2b6deb2e3ec.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_rock.fbx new file mode 100644 index 0000000..ea16f03 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 295 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_steps_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_steps_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4817131365435498480, "Model::cliff_steps_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5124281773307457176, "Geometry::", "Mesh" { + Vertices: *1071 { + a: 1.666667,2,3,1.666667,4,3,3.333333,2,2.315,3.333333,4,2.315,-1.666667,6,-1,-3.333333,6,-1.685,-1.666667,8,-1,-3.333333,8,-1.685,-1.666667,6,-1,-1.666667,8,-1,-1.155058E-12,6,-1.685,-1.155058E-12,8,-1.685,-5,4,1,-5,6,1,-3.333333,4,0.315,-3.333333,6,0.315,5,-3.609557E-14,5,3.333333,-2.707168E-14,4.315,5,2,5,3.333333,2,4.315,-3.333333,-3.609557E-14,4.315,-5,-3.609557E-14,5,-3.333333,2,4.315,-5,2,5,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,5,8,-3,3.333333,8,-3.685,5,10,-3,3.333333,10,-3.685,-3.333333,8,-3.685,-5,8,-3,-3.333333,10,-3.685,-5,10,-3,5,6,-1,3.333333,6,-1.685,5,8,-1,3.333333,8,-1.685,5,4,1,3.333333,4,0.315,5,6,1,3.333333,6,0.315,-1.666667,8,-3,-3.333333,8,-3.685,-1.666667,10,-3,-3.333333,10,-3.685,-1.666667,2,3,-1.666667,4,3,-2.367869E-12,2,2.315,-2.367869E-12,4,2.315,5,2,3,3.333333,2,2.315,5,4,3,3.333333,4,2.315,1.666667,-3.429079E-14,5,1.666667,2,5,3.333333,-2.707168E-14,4.315,3.333333,2,4.315,-5,0,-5,-5,10,-5,-5,-3.609557E-14,5,-5,8,-3,-5,6,-1,-5,4,1,-5,2,3,-5,2,5,-5,4,3,-5,6,1,-5,8,-1,-5,10,-3,5,10,-5,5,0,-5,5,10,-3,5,8,-3,5,-3.609557E-14,5,5,6,-1,5,8,-1,5,4,1,5,6,1,5,2,3,5,4,3,5,2,5,1.666667,4,1,-1.732587E-12,4,0.315,1.666667,6,1,-1.732587E-12,6,0.315,-5,2,3,-5,4,3,-3.333333,2,2.315,-3.333333,4,2.315,-1.666667,4,1,-3.333333,4,0.315,-1.666667,6,1,-3.333333,6,0.315,1.666667,8,-3,-5.197762E-13,8,-3.685,1.666667,10,-3,-5.197762E-13,10,-3.685,1.666667,6,-1,-1.155058E-12,6,-1.685,1.666667,8,-1,-1.155058E-12,8,-1.685,-1.666667,2,3,-3.333333,2,2.315,-1.666667,4,3,-3.333333,4,2.315,1.666667,4,1,1.666667,6,1,3.333333,4,0.315,3.333333,6,0.315,-1.666667,-3.609557E-14,5,-3.333333,-3.609557E-14,4.315,-1.666667,2,5,-3.333333,2,4.315,1.666667,6,-1,1.666667,8,-1,3.333333,6,-1.685,3.333333,8,-1.685,-1.666667,8,-3,-1.666667,10,-3,-5.197762E-13,8,-3.685,-5.197762E-13,10,-3.685,5,0,-5,-5,0,-5,5,-3.609557E-14,5,3.333333,-2.707168E-14,4.315,1.666667,-3.429079E-14,5,-3.003151E-12,-3.429079E-14,4.315,-1.666667,-3.609557E-14,5,-3.333333,-3.609557E-14,4.315,-5,-3.609557E-14,5,-1.666667,-3.609557E-14,5,-1.666667,2,5,-3.003151E-12,-3.429079E-14,4.315,-3.003151E-12,2,4.315,1.666667,2,3,-2.367869E-12,2,2.315,1.666667,4,3,-2.367869E-12,4,2.315,1.666667,8,-3,1.666667,10,-3,3.333333,8,-3.685,3.333333,10,-3.685,1.666667,-3.429079E-14,5,-3.003151E-12,-3.429079E-14,4.315,1.666667,2,5,-3.003151E-12,2,4.315,-1.666667,4,1,-1.666667,6,1,-1.732587E-12,4,0.315,-1.732587E-12,6,0.315,-5,6,-1,-5,8,-1,-3.333333,6,-1.685,-3.333333,8,-1.685,5,8,-3,5,8,-1,3.333333,8,-3.685,3.333333,8,-1.685,1.666667,8,-3,1.666667,8,-1,-5.197762E-13,8,-3.685,-1.155058E-12,8,-1.685,-1.666667,8,-3,-1.666667,8,-1,-3.333333,8,-3.685,-3.333333,8,-1.685,-5,8,-3,-5,8,-1,5,10,-3,3.333333,10,-3.685,5,10,-5,-5,10,-5,-5.197762E-13,10,-3.685,1.666667,10,-3,-1.666667,10,-3,-3.333333,10,-3.685,-5,10,-3,5,4,1,5,4,3,3.333333,4,0.315,3.333333,4,2.315,1.666667,4,1,1.666667,4,3,-1.732587E-12,4,0.315,-2.367869E-12,4,2.315,-1.666667,4,1,-1.666667,4,3,-3.333333,4,0.315,-3.333333,4,2.315,-5,4,1,-5,4,3,1.666667,8,-1,1.666667,7.5,-0.5,-1.155058E-12,8,-1.685,-1.270564E-12,7.5,-1.185,5,6,1,5,5.5,1.5,3.333333,6,0.315,3.333333,5.5,0.8149999,-1.666667,9.499999,-2.5,-1.666667,10,-3,-6.93035E-13,9.499999,-3.185,-5.197762E-13,10,-3.685,3.333333,5.5,0.8149999,1.666667,5.5,1.5,3.333333,6,0.315,1.666667,6,1,-1.666667,5.5,1.5,-1.666667,6,1,-1.905846E-12,5.5,0.8149999,-1.732587E-12,6,0.315,-3.333333,3.5,2.815,-3.75,3.5,2.98625,-3.333333,4,2.315,-4.166667,3.75,2.9075,-5,4,3,-5,3.5,3.5,-4.583333,3.5,3.32875,5,2,3,5,2,5,3.333333,2,2.315,3.333333,2,4.315,1.666667,2,3,1.666667,2,5,-2.367869E-12,2,2.315,-3.003151E-12,2,4.315,-1.666667,2,3,-1.666667,2,5,-3.333333,2,2.315,-3.333333,2,4.315,-5,2,3,-5,2,5,-3.333333,9.499999,-3.185,-5,9.499999,-2.5,-3.333333,10,-3.685,-5,10,-3,5,10,-3,5,9.499999,-2.5,3.333333,10,-3.685,3.333333,9.499999,-3.185,5,4,3,5,3.5,3.5,3.333333,4,2.315,3.333333,3.5,2.815,-1.666667,4,3,-1.666667,3.5,3.5,-3.333333,4,2.315,-3.333333,3.5,2.815,-1.666667,3.5,3.5,-1.666667,4,3,-2.541128E-12,3.5,2.815,-2.367869E-12,4,2.315,1.666667,2,5,1.666667,1.5,5.5,-3.003151E-12,2,4.315,-3.118657E-12,1.5,4.815,-1.666667,1.5,5.5,-1.666667,2,5,-3.118657E-12,1.5,4.815,-3.003151E-12,2,4.315,-1.666667,2,5,-1.666667,1.5,5.5,-3.333333,2,4.315,-3.333333,1.5,4.815,3.333333,1.5,4.815,2.916667,1.5,4.98625,3.333333,2,4.315,2.5,1.75,4.9075,1.666667,2,5,1.666667,1.5,5.5,2.083333,1.5,5.32875,-3.333333,7.5,-1.185,-5,7.5,-0.5,-3.333333,8,-1.685,-5,8,-1,-1.666667,6,1,-1.666667,5.5,1.5,-3.333333,6,0.315,-3.333333,5.5,0.8149999,1.666667,6,1,1.666667,5.5,1.5,-1.732587E-12,6,0.315,0.8333334,5.75,0.9075,1.25,5.5,1.32875,0.4166667,5.5,0.98625,-1.905846E-12,5.5,0.8149999,-3.333333,1.5,4.815,-5,1.5,5.5,-3.333333,2,4.315,-5,2,5,5,2,5,5,1.5,5.5,3.333333,2,4.315,3.333333,1.5,4.815,-1.666667,10,-3,-1.666667,9.499999,-2.5,-3.333333,10,-3.685,-2.5,9.75,-3.0925,-2.083333,9.499999,-2.67125,-2.916667,9.499999,-3.01375,-3.333333,9.499999,-3.185,3.333333,9.499999,-3.185,1.666667,9.499999,-2.5,3.333333,10,-3.685,1.666667,10,-3,3.333333,3.5,2.815,1.666667,3.5,3.5,3.333333,4,2.315,1.666667,4,3,-3.333333,5.5,0.8149999,-5,5.5,1.5,-3.333333,6,0.315,-5,6,1,1.666667,4,3,1.666667,3.5,3.5,-2.367869E-12,4,2.315,-2.541128E-12,3.5,2.815,5,6,-1,5,6,1,3.333333,6,-1.685,3.333333,6,0.315,1.666667,6,-1,1.666667,6,1,-1.155058E-12,6,-1.685,-1.732587E-12,6,0.315,-1.666667,6,-1,-1.666667,6,1,-3.333333,6,-1.685,-3.333333,6,0.315,-5,6,-1,-5,6,1,1.666667,10,-3,1.666667,9.499999,-2.5,-5.197762E-13,10,-3.685,-6.93035E-13,9.499999,-3.185,-1.666667,7.5,-0.5,-1.666667,8,-1,-1.270564E-12,7.5,-1.185,-1.155058E-12,8,-1.685,5,8,-1,5,7.5,-0.5,3.333333,8,-1.685,3.333333,7.5,-1.185,-1.666667,8,-1,-1.666667,7.5,-0.5,-3.333333,8,-1.685,-3.333333,7.5,-1.185,3.333333,7.5,-1.185,2.916667,7.5,-1.01375,3.333333,8,-1.685,2.5,7.75,-1.0925,1.666667,8,-1,1.666667,7.5,-0.5,2.083333,7.5,-0.67125 + } + PolygonVertexIndex: *657 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,63,-63,65,64,-63,66,65,-63,67,66,-63,66,68,-66,65,69,-65,64,70,-64,63,71,-62,72,74,-74,75,73,-75,76,73,-76,77,76,-76,78,77,-76,79,76,-78,80,79,-78,81,76,-80,82,81,-80,83,76,-82,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,125,-128,129,125,-129,130,125,-130,131,125,-131,132,125,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,160,-160,162,160,-162,163,162,-162,164,162,-164,165,164,-164,166,164,-166,167,166,-166,168,166,-168,169,168,-168,170,168,-170,171,173,-173,174,172,-174,175,172,-175,176,172,-176,177,175,-175,178,177,-175,179,178,-175,180,182,-182,183,181,-183,184,183,-183,185,183,-185,186,185,-185,187,185,-187,188,187,-187,189,187,-189,190,189,-189,191,189,-191,192,191,-191,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,216,218,-218,218,219,-218,220,217,-220,221,223,-223,224,222,-224,225,224,-224,226,224,-226,227,226,-226,228,226,-228,229,228,-228,230,228,-230,231,230,-230,232,230,-232,233,232,-232,234,232,-234,235,237,-237,238,236,-238,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,259,261,-261,262,260,-262,263,265,-265,266,264,-266,267,269,-269,270,268,-270,269,271,-271,271,272,-271,273,270,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,283,-286,287,285,-285,288,287,-285,289,291,-291,292,290,-292,293,295,-295,296,294,-296,297,299,-299,300,298,-300,301,298,-301,302,300,-300,303,302,-300,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,323,-323,325,323,-325,326,325,-325,327,325,-327,328,327,-327,329,327,-329,330,329,-329,331,329,-331,332,331,-331,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,352,354,-354,354,355,-354,356,353,-356 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1971 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *714 { + a: 1.579173,7.874016,1.579173,15.74803,8.673442,7.874016,8.673442,15.74803,-7.565708,23.62205,-14.65998,23.62205,-7.565708,31.49606,-14.65998,31.49606,-4.572441,23.62205,-4.572441,31.49606,2.521828,23.62205,2.521828,31.49606,-19.70386,15.74803,-19.70386,23.62205,-12.60959,15.74803,-12.60959,23.62205,25.69039,-1.422342E-13,18.59612,-1.06707E-13,25.69039,7.874016,18.59612,7.874016,-18.59612,-1.421085E-13,-25.69039,-1.421085E-13,-18.59612,7.874016,-25.69039,7.874016,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,13.71732,31.49606,6.623053,31.49606,13.71732,39.37008,6.623053,39.37008,-6.623053,31.49606,-13.71732,31.49606,-6.623053,39.37008,-13.71732,39.37008,16.71059,23.62205,9.616321,23.62205,16.71059,31.49606,9.616321,31.49606,19.70386,15.74803,12.60959,15.74803,19.70386,23.62205,12.60959,23.62205,-10.55898,31.49606,-17.65324,31.49606,-10.55898,39.37008,-17.65324,39.37008,-10.55898,7.874016,-10.55898,15.74803,-3.464707,7.874016,-3.464707,15.74803,22.69712,7.874016,15.60286,7.874016,22.69712,15.74803,15.60286,15.74803,-1.414094,-6.572531E-14,-1.414094,7.874016,5.680174,-3.73036E-14,5.680174,7.874016,-19.68504,0,-19.68504,39.37008,19.68504,-1.421085E-13,-11.81102,31.49606,-3.937008,23.62205,3.937008,15.74803,11.81102,7.874016,19.68504,7.874016,11.81102,15.74803,3.937008,23.62205,-3.937008,31.49606,-11.81102,39.37008,19.68504,39.37008,19.68504,0,11.81102,39.37008,11.81102,31.49606,-19.68504,-1.421085E-13,3.937008,23.62205,3.937008,31.49606,-3.937008,15.74803,-3.937008,23.62205,-11.81102,7.874016,-11.81102,15.74803,-19.68504,7.874016,7.565708,15.74803,0.4714396,15.74803,7.565708,23.62205,0.4714396,23.62205,-22.69712,7.874016,-22.69712,15.74803,-15.60286,7.874016,-15.60286,15.74803,-4.572441,15.74803,-11.66671,15.74803,-4.572441,23.62205,-11.66671,23.62205,1.579173,31.49606,-5.515095,31.49606,1.579173,39.37008,-5.515095,39.37008,4.572441,23.62205,-2.521828,23.62205,4.572441,31.49606,-2.521828,31.49606,-1.579173,7.874016,-8.673442,7.874016,-1.579173,15.74803,-8.673442,15.74803,4.572441,15.74803,4.572441,23.62205,11.66671,15.74803,11.66671,23.62205,1.414094,-7.298599E-14,-5.680174,-7.298599E-14,1.414094,7.874016,-5.680174,7.874016,7.565708,23.62205,7.565708,31.49606,14.65998,23.62205,14.65998,31.49606,-1.579173,31.49606,-1.579173,39.37008,5.515095,31.49606,5.515095,39.37008,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,13.12336,16.98819,6.56168,19.68504,-1.182343E-11,16.98819,-6.56168,19.68504,-13.12336,16.98819,-19.68504,19.68504,-13.55224,-8.977424E-14,-13.55224,7.874016,-6.457974,-8.266881E-14,-6.457974,7.874016,10.55898,7.874016,3.464707,7.874016,10.55898,15.74803,3.464707,15.74803,10.55898,31.49606,10.55898,39.37008,17.65324,31.49606,17.65324,39.37008,13.55224,-8.253807E-14,6.457974,-8.253807E-14,13.55224,7.874016,6.457974,7.874016,-7.565708,15.74803,-7.565708,23.62205,-0.4714396,15.74803,-0.4714396,23.62205,-16.71059,23.62205,-16.71059,31.49606,-9.616321,23.62205,-9.616321,31.49606,-19.68504,-11.81102,-19.68504,-3.937008,-13.12336,-14.50787,-13.12336,-6.633858,-6.56168,-11.81102,-6.56168,-3.937008,2.037836E-12,-14.50787,4.538947E-12,-6.633858,6.56168,-11.81102,6.56168,-3.937008,13.12336,-14.50787,13.12336,-6.633858,19.68504,-11.81102,19.68504,-3.937008,-19.68504,-11.81102,-13.12336,-14.50787,-19.68504,-19.68504,19.68504,-19.68504,2.043583E-12,-14.50787,-6.56168,-11.81102,6.56168,-11.81102,13.12336,-14.50787,19.68504,-11.81102,-19.68504,3.937008,-19.68504,11.81102,-13.12336,1.240157,-13.12336,9.114173,-6.56168,3.937008,-6.56168,11.81102,6.817708E-12,1.240157,9.318819E-12,9.114173,6.56168,3.937008,6.56168,11.81102,13.12336,1.240157,13.12336,9.114173,19.68504,3.937008,19.68504,11.81102,4.572441,27.2884,5.320757,24.60697,-2.521828,27.2884,-1.773511,24.60697,19.70386,19.95014,20.45217,17.26872,12.60959,19.95014,13.35791,17.26872,-2.32749,35.33267,-1.579173,38.0141,4.766778,35.33267,5.515095,38.0141,10.91839,10.49383,3.824124,10.49383,11.66671,13.17525,4.572441,13.17525,-8.314025,13.88127,-7.565708,16.5627,-1.219756,13.88127,-0.4714396,16.5627,-16.35117,6.543022,-18.12474,6.543022,-15.60286,9.224446,-19.52415,7.883734,-22.69712,9.224446,-23.44544,6.543022,-21.67187,6.543022,-19.68504,11.81102,-19.68504,19.68504,-13.12336,9.114173,-13.12336,16.98819,-6.56168,11.81102,-6.56168,19.68504,9.320341E-12,9.114173,1.182145E-11,16.98819,6.56168,11.81102,6.56168,19.68504,13.12336,9.114173,13.12336,16.98819,19.68504,11.81102,19.68504,19.68504,-7.37137,38.72012,-14.46564,38.72012,-6.623053,41.40154,-13.71732,41.40154,13.71732,41.40154,14.46564,38.72012,6.623053,41.40154,7.37137,38.72012,22.69712,9.224446,23.44544,6.543022,15.60286,9.224446,16.35117,6.543022,-1.579173,2.449554,-0.8308563,-0.2318707,-8.673442,2.449554,-7.925125,-0.2318707,-11.30729,3.155576,-10.55898,5.837,-4.213024,3.155576,-3.464707,5.837,13.55224,-4.888698,14.30056,-7.570123,6.457974,-4.888698,7.206291,-7.570123,-14.30056,-7.570123,-13.55224,-4.888698,-7.206291,-7.570123,-6.457974,-4.888698,1.414094,-8.276144,2.162411,-10.95757,-5.680174,-8.276144,-4.931857,-10.95757,4.931857,-10.95757,3.15829,-10.95757,5.680174,-8.276144,1.758881,-9.616857,-1.414094,-8.276144,-2.162411,-10.95757,-0.3888441,-10.95757,-10.36464,27.99442,-17.45891,27.99442,-9.616321,30.67584,-16.71059,30.67584,-4.572441,13.17525,-3.824124,10.49383,-11.66671,13.17525,-10.91839,10.49383,7.565708,16.5627,8.314025,13.88127,0.4714396,16.5627,4.392732,15.22199,6.540458,13.88127,2.993324,13.88127,1.219756,13.88127,-19.34444,-4.182676,-26.43871,-4.182676,-18.59612,-1.501252,-25.69039,-1.501252,25.69039,-1.501252,26.43871,-4.182676,18.59612,-1.501252,19.34444,-4.182676,-10.55898,34.62665,-9.810658,31.94522,-17.65324,34.62665,-13.73195,33.28593,-11.58423,31.94522,-15.13136,31.94522,-16.90493,31.94522,16.90493,31.94522,9.810658,31.94522,17.65324,34.62665,10.55898,34.62665,7.925125,-0.2318707,0.8308563,-0.2318707,8.673442,2.449554,1.579173,2.449554,-13.35791,17.26872,-20.45217,17.26872,-12.60959,19.95014,-19.70386,19.95014,10.55898,5.837,11.30729,3.155576,3.464707,5.837,4.213024,3.155576,-19.68504,-3.937008,-19.68504,3.937008,-13.12336,-6.633858,-13.12336,1.240157,-6.56168,-3.937008,-6.56168,3.937008,4.542449E-12,-6.633858,6.816186E-12,1.240157,6.56168,-3.937008,6.56168,3.937008,13.12336,-6.633858,13.12336,1.240157,19.68504,-3.937008,19.68504,3.937008,1.579173,38.0141,2.32749,35.33267,-5.515095,38.0141,-4.766778,35.33267,-5.320757,24.60697,-4.572441,27.2884,1.773511,24.60697,2.521828,27.2884,16.71059,30.67584,17.45891,27.99442,9.616321,30.67584,10.36464,27.99442,-7.565708,23.90095,-6.817391,21.21953,-14.65998,23.90095,-13.91166,21.21953,13.91166,21.21953,12.13809,21.21953,14.65998,23.90095,10.73868,22.56024,7.565708,23.90095,6.817391,21.21953,8.590959,21.21953 + } + UVIndex: *657 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,63,62,65,64,62,66,65,62,67,66,62,66,68,65,65,69,64,64,70,63,63,71,61,72,74,73,75,73,74,76,73,75,77,76,75,78,77,75,79,76,77,80,79,77,81,76,79,82,81,79,83,76,81,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,125,127,129,125,128,130,125,129,131,125,130,132,125,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,160,159,162,160,161,163,162,161,164,162,163,165,164,163,166,164,165,167,166,165,168,166,167,169,168,167,170,168,169,171,173,172,174,172,173,175,172,174,176,172,175,177,175,174,178,177,174,179,178,174,180,182,181,183,181,182,184,183,182,185,183,184,186,185,184,187,185,186,188,187,186,189,187,188,190,189,188,191,189,190,192,191,190,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,216,218,217,218,219,217,220,217,219,221,223,222,224,222,223,225,224,223,226,224,225,227,226,225,228,226,227,229,228,227,230,228,229,231,230,229,232,230,231,233,232,231,234,232,233,235,237,236,238,236,237,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,253,252,254,252,253,255,257,256,258,256,257,259,261,260,262,260,261,263,265,264,266,264,265,267,269,268,270,268,269,269,271,270,271,272,270,273,270,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,283,285,287,285,284,288,287,284,289,291,290,292,290,291,293,295,294,296,294,295,297,299,298,300,298,299,301,298,300,302,300,299,303,302,299,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,323,322,325,323,324,326,325,324,327,325,326,328,327,326,329,327,328,330,329,328,331,329,330,332,331,330,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,352,354,353,354,355,353,356,353,355 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *219 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_steps_rock, Model::RootNode + C: "OO",4817131365435498480,0 + + ;Geometry::, Model::Mesh cliff_steps_rock + C: "OO",5124281773307457176,4817131365435498480 + + ;Material::dirt, Model::Mesh cliff_steps_rock + C: "OO",3020,4817131365435498480 + + ;Material::grass, Model::Mesh cliff_steps_rock + C: "OO",3024,4817131365435498480 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_rock.fbx.import new file mode 100644 index 0000000..e4b62d1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bhw255ctyh4f4" +path="res://.godot/imported/cliff_steps_rock.fbx-bbfcc7b086a525d0cce5b0b84d21c8d8.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_rock.fbx" +dest_files=["res://.godot/imported/cliff_steps_rock.fbx-bbfcc7b086a525d0cce5b0b84d21c8d8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_stone.fbx new file mode 100644 index 0000000..a564a03 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 404 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_steps_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_steps_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5507067989063033867, "Model::cliff_steps_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4903861940861959423, "Geometry::", "Mesh" { + Vertices: *1071 { + a: 1.666667,2,3,1.666667,4,3,3.333333,2,2.315,3.333333,4,2.315,-1.666667,6,-1,-3.333333,6,-1.685,-1.666667,8,-1,-3.333333,8,-1.685,-1.666667,6,-1,-1.666667,8,-1,-1.155058E-12,6,-1.685,-1.155058E-12,8,-1.685,-5,4,1,-5,6,1,-3.333333,4,0.315,-3.333333,6,0.315,5,-3.609557E-14,5,3.333333,-2.707168E-14,4.315,5,2,5,3.333333,2,4.315,-3.333333,-3.609557E-14,4.315,-5,-3.609557E-14,5,-3.333333,2,4.315,-5,2,5,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,5,8,-3,3.333333,8,-3.685,5,10,-3,3.333333,10,-3.685,-3.333333,8,-3.685,-5,8,-3,-3.333333,10,-3.685,-5,10,-3,5,6,-1,3.333333,6,-1.685,5,8,-1,3.333333,8,-1.685,5,4,1,3.333333,4,0.315,5,6,1,3.333333,6,0.315,-1.666667,8,-3,-3.333333,8,-3.685,-1.666667,10,-3,-3.333333,10,-3.685,-1.666667,2,3,-1.666667,4,3,-2.367869E-12,2,2.315,-2.367869E-12,4,2.315,5,2,3,3.333333,2,2.315,5,4,3,3.333333,4,2.315,1.666667,-3.429079E-14,5,1.666667,2,5,3.333333,-2.707168E-14,4.315,3.333333,2,4.315,-5,0,-5,-5,10,-5,-5,-3.609557E-14,5,-5,8,-3,-5,6,-1,-5,4,1,-5,2,3,-5,2,5,-5,4,3,-5,6,1,-5,8,-1,-5,10,-3,5,10,-5,5,0,-5,5,10,-3,5,8,-3,5,-3.609557E-14,5,5,6,-1,5,8,-1,5,4,1,5,6,1,5,2,3,5,4,3,5,2,5,1.666667,4,1,-1.732587E-12,4,0.315,1.666667,6,1,-1.732587E-12,6,0.315,-5,2,3,-5,4,3,-3.333333,2,2.315,-3.333333,4,2.315,-1.666667,4,1,-3.333333,4,0.315,-1.666667,6,1,-3.333333,6,0.315,1.666667,8,-3,-5.197762E-13,8,-3.685,1.666667,10,-3,-5.197762E-13,10,-3.685,1.666667,6,-1,-1.155058E-12,6,-1.685,1.666667,8,-1,-1.155058E-12,8,-1.685,-1.666667,2,3,-3.333333,2,2.315,-1.666667,4,3,-3.333333,4,2.315,1.666667,4,1,1.666667,6,1,3.333333,4,0.315,3.333333,6,0.315,-1.666667,-3.609557E-14,5,-3.333333,-3.609557E-14,4.315,-1.666667,2,5,-3.333333,2,4.315,1.666667,6,-1,1.666667,8,-1,3.333333,6,-1.685,3.333333,8,-1.685,-1.666667,8,-3,-1.666667,10,-3,-5.197762E-13,8,-3.685,-5.197762E-13,10,-3.685,5,0,-5,-5,0,-5,5,-3.609557E-14,5,3.333333,-2.707168E-14,4.315,1.666667,-3.429079E-14,5,-3.003151E-12,-3.429079E-14,4.315,-1.666667,-3.609557E-14,5,-3.333333,-3.609557E-14,4.315,-5,-3.609557E-14,5,-1.666667,-3.609557E-14,5,-1.666667,2,5,-3.003151E-12,-3.429079E-14,4.315,-3.003151E-12,2,4.315,1.666667,2,3,-2.367869E-12,2,2.315,1.666667,4,3,-2.367869E-12,4,2.315,1.666667,8,-3,1.666667,10,-3,3.333333,8,-3.685,3.333333,10,-3.685,1.666667,-3.429079E-14,5,-3.003151E-12,-3.429079E-14,4.315,1.666667,2,5,-3.003151E-12,2,4.315,-1.666667,4,1,-1.666667,6,1,-1.732587E-12,4,0.315,-1.732587E-12,6,0.315,-5,6,-1,-5,8,-1,-3.333333,6,-1.685,-3.333333,8,-1.685,5,8,-3,5,8,-1,3.333333,8,-3.685,3.333333,8,-1.685,1.666667,8,-3,1.666667,8,-1,-5.197762E-13,8,-3.685,-1.155058E-12,8,-1.685,-1.666667,8,-3,-1.666667,8,-1,-3.333333,8,-3.685,-3.333333,8,-1.685,-5,8,-3,-5,8,-1,5,10,-3,3.333333,10,-3.685,5,10,-5,-5,10,-5,-5.197762E-13,10,-3.685,1.666667,10,-3,-1.666667,10,-3,-3.333333,10,-3.685,-5,10,-3,5,4,1,5,4,3,3.333333,4,0.315,3.333333,4,2.315,1.666667,4,1,1.666667,4,3,-1.732587E-12,4,0.315,-2.367869E-12,4,2.315,-1.666667,4,1,-1.666667,4,3,-3.333333,4,0.315,-3.333333,4,2.315,-5,4,1,-5,4,3,1.666667,8,-1,1.666667,7.5,-0.5,-1.155058E-12,8,-1.685,-1.270564E-12,7.5,-1.185,5,6,1,5,5.5,1.5,3.333333,6,0.315,3.333333,5.5,0.8149999,-1.666667,9.499999,-2.5,-1.666667,10,-3,-6.93035E-13,9.499999,-3.185,-5.197762E-13,10,-3.685,3.333333,5.5,0.8149999,1.666667,5.5,1.5,3.333333,6,0.315,1.666667,6,1,-1.666667,5.5,1.5,-1.666667,6,1,-1.905846E-12,5.5,0.8149999,-1.732587E-12,6,0.315,-3.333333,3.5,2.815,-3.75,3.5,2.98625,-3.333333,4,2.315,-4.166667,3.75,2.9075,-5,4,3,-5,3.5,3.5,-4.583333,3.5,3.32875,5,2,3,5,2,5,3.333333,2,2.315,3.333333,2,4.315,1.666667,2,3,1.666667,2,5,-2.367869E-12,2,2.315,-3.003151E-12,2,4.315,-1.666667,2,3,-1.666667,2,5,-3.333333,2,2.315,-3.333333,2,4.315,-5,2,3,-5,2,5,-3.333333,9.499999,-3.185,-5,9.499999,-2.5,-3.333333,10,-3.685,-5,10,-3,5,10,-3,5,9.499999,-2.5,3.333333,10,-3.685,3.333333,9.499999,-3.185,5,4,3,5,3.5,3.5,3.333333,4,2.315,3.333333,3.5,2.815,-1.666667,4,3,-1.666667,3.5,3.5,-3.333333,4,2.315,-3.333333,3.5,2.815,-1.666667,3.5,3.5,-1.666667,4,3,-2.541128E-12,3.5,2.815,-2.367869E-12,4,2.315,1.666667,2,5,1.666667,1.5,5.5,-3.003151E-12,2,4.315,-3.118657E-12,1.5,4.815,-1.666667,1.5,5.5,-1.666667,2,5,-3.118657E-12,1.5,4.815,-3.003151E-12,2,4.315,-1.666667,2,5,-1.666667,1.5,5.5,-3.333333,2,4.315,-3.333333,1.5,4.815,3.333333,1.5,4.815,2.916667,1.5,4.98625,3.333333,2,4.315,2.5,1.75,4.9075,1.666667,2,5,1.666667,1.5,5.5,2.083333,1.5,5.32875,-3.333333,7.5,-1.185,-5,7.5,-0.5,-3.333333,8,-1.685,-5,8,-1,-1.666667,6,1,-1.666667,5.5,1.5,-3.333333,6,0.315,-3.333333,5.5,0.8149999,1.666667,6,1,1.666667,5.5,1.5,-1.732587E-12,6,0.315,0.8333334,5.75,0.9075,1.25,5.5,1.32875,0.4166667,5.5,0.98625,-1.905846E-12,5.5,0.8149999,-3.333333,1.5,4.815,-5,1.5,5.5,-3.333333,2,4.315,-5,2,5,5,2,5,5,1.5,5.5,3.333333,2,4.315,3.333333,1.5,4.815,-1.666667,10,-3,-1.666667,9.499999,-2.5,-3.333333,10,-3.685,-2.5,9.75,-3.0925,-2.083333,9.499999,-2.67125,-2.916667,9.499999,-3.01375,-3.333333,9.499999,-3.185,3.333333,9.499999,-3.185,1.666667,9.499999,-2.5,3.333333,10,-3.685,1.666667,10,-3,3.333333,3.5,2.815,1.666667,3.5,3.5,3.333333,4,2.315,1.666667,4,3,-3.333333,5.5,0.8149999,-5,5.5,1.5,-3.333333,6,0.315,-5,6,1,1.666667,4,3,1.666667,3.5,3.5,-2.367869E-12,4,2.315,-2.541128E-12,3.5,2.815,5,6,-1,5,6,1,3.333333,6,-1.685,3.333333,6,0.315,1.666667,6,-1,1.666667,6,1,-1.155058E-12,6,-1.685,-1.732587E-12,6,0.315,-1.666667,6,-1,-1.666667,6,1,-3.333333,6,-1.685,-3.333333,6,0.315,-5,6,-1,-5,6,1,1.666667,10,-3,1.666667,9.499999,-2.5,-5.197762E-13,10,-3.685,-6.93035E-13,9.499999,-3.185,-1.666667,7.5,-0.5,-1.666667,8,-1,-1.270564E-12,7.5,-1.185,-1.155058E-12,8,-1.685,5,8,-1,5,7.5,-0.5,3.333333,8,-1.685,3.333333,7.5,-1.185,-1.666667,8,-1,-1.666667,7.5,-0.5,-3.333333,8,-1.685,-3.333333,7.5,-1.185,3.333333,7.5,-1.185,2.916667,7.5,-1.01375,3.333333,8,-1.685,2.5,7.75,-1.0925,1.666667,8,-1,1.666667,7.5,-0.5,2.083333,7.5,-0.67125 + } + PolygonVertexIndex: *657 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,63,-63,65,64,-63,66,65,-63,67,66,-63,66,68,-66,65,69,-65,64,70,-64,63,71,-62,72,74,-74,75,73,-75,76,73,-76,77,76,-76,78,77,-76,79,76,-78,80,79,-78,81,76,-80,82,81,-80,83,76,-82,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,125,-128,129,125,-129,130,125,-130,131,125,-131,132,125,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,160,-160,162,160,-162,163,162,-162,164,162,-164,165,164,-164,166,164,-166,167,166,-166,168,166,-168,169,168,-168,170,168,-170,171,173,-173,174,172,-174,175,172,-175,176,172,-176,177,175,-175,178,177,-175,179,178,-175,180,182,-182,183,181,-183,184,183,-183,185,183,-185,186,185,-185,187,185,-187,188,187,-187,189,187,-189,190,189,-189,191,189,-191,192,191,-191,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,216,218,-218,218,219,-218,220,217,-220,221,223,-223,224,222,-224,225,224,-224,226,224,-226,227,226,-226,228,226,-228,229,228,-228,230,228,-230,231,230,-230,232,230,-232,233,232,-232,234,232,-234,235,237,-237,238,236,-238,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,259,261,-261,262,260,-262,263,265,-265,266,264,-266,267,269,-269,270,268,-270,269,271,-271,271,272,-271,273,270,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,283,-286,287,285,-285,288,287,-285,289,291,-291,292,290,-292,293,295,-295,296,294,-296,297,299,-299,300,298,-300,301,298,-301,302,300,-300,303,302,-300,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,323,-323,325,323,-325,326,325,-325,327,325,-327,328,327,-327,329,327,-329,330,329,-329,331,329,-331,332,331,-331,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,352,354,-354,354,355,-354,356,353,-356 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1971 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *714 { + a: 1.579173,7.874016,1.579173,15.74803,8.673442,7.874016,8.673442,15.74803,-7.565708,23.62205,-14.65998,23.62205,-7.565708,31.49606,-14.65998,31.49606,-4.572441,23.62205,-4.572441,31.49606,2.521828,23.62205,2.521828,31.49606,-19.70386,15.74803,-19.70386,23.62205,-12.60959,15.74803,-12.60959,23.62205,25.69039,-1.422342E-13,18.59612,-1.06707E-13,25.69039,7.874016,18.59612,7.874016,-18.59612,-1.421085E-13,-25.69039,-1.421085E-13,-18.59612,7.874016,-25.69039,7.874016,19.68504,0,-19.68504,0,19.68504,39.37008,-19.68504,39.37008,13.71732,31.49606,6.623053,31.49606,13.71732,39.37008,6.623053,39.37008,-6.623053,31.49606,-13.71732,31.49606,-6.623053,39.37008,-13.71732,39.37008,16.71059,23.62205,9.616321,23.62205,16.71059,31.49606,9.616321,31.49606,19.70386,15.74803,12.60959,15.74803,19.70386,23.62205,12.60959,23.62205,-10.55898,31.49606,-17.65324,31.49606,-10.55898,39.37008,-17.65324,39.37008,-10.55898,7.874016,-10.55898,15.74803,-3.464707,7.874016,-3.464707,15.74803,22.69712,7.874016,15.60286,7.874016,22.69712,15.74803,15.60286,15.74803,-1.414094,-6.572531E-14,-1.414094,7.874016,5.680174,-3.73036E-14,5.680174,7.874016,-19.68504,0,-19.68504,39.37008,19.68504,-1.421085E-13,-11.81102,31.49606,-3.937008,23.62205,3.937008,15.74803,11.81102,7.874016,19.68504,7.874016,11.81102,15.74803,3.937008,23.62205,-3.937008,31.49606,-11.81102,39.37008,19.68504,39.37008,19.68504,0,11.81102,39.37008,11.81102,31.49606,-19.68504,-1.421085E-13,3.937008,23.62205,3.937008,31.49606,-3.937008,15.74803,-3.937008,23.62205,-11.81102,7.874016,-11.81102,15.74803,-19.68504,7.874016,7.565708,15.74803,0.4714396,15.74803,7.565708,23.62205,0.4714396,23.62205,-22.69712,7.874016,-22.69712,15.74803,-15.60286,7.874016,-15.60286,15.74803,-4.572441,15.74803,-11.66671,15.74803,-4.572441,23.62205,-11.66671,23.62205,1.579173,31.49606,-5.515095,31.49606,1.579173,39.37008,-5.515095,39.37008,4.572441,23.62205,-2.521828,23.62205,4.572441,31.49606,-2.521828,31.49606,-1.579173,7.874016,-8.673442,7.874016,-1.579173,15.74803,-8.673442,15.74803,4.572441,15.74803,4.572441,23.62205,11.66671,15.74803,11.66671,23.62205,1.414094,-7.298599E-14,-5.680174,-7.298599E-14,1.414094,7.874016,-5.680174,7.874016,7.565708,23.62205,7.565708,31.49606,14.65998,23.62205,14.65998,31.49606,-1.579173,31.49606,-1.579173,39.37008,5.515095,31.49606,5.515095,39.37008,19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,13.12336,16.98819,6.56168,19.68504,-1.182343E-11,16.98819,-6.56168,19.68504,-13.12336,16.98819,-19.68504,19.68504,-13.55224,-8.977424E-14,-13.55224,7.874016,-6.457974,-8.266881E-14,-6.457974,7.874016,10.55898,7.874016,3.464707,7.874016,10.55898,15.74803,3.464707,15.74803,10.55898,31.49606,10.55898,39.37008,17.65324,31.49606,17.65324,39.37008,13.55224,-8.253807E-14,6.457974,-8.253807E-14,13.55224,7.874016,6.457974,7.874016,-7.565708,15.74803,-7.565708,23.62205,-0.4714396,15.74803,-0.4714396,23.62205,-16.71059,23.62205,-16.71059,31.49606,-9.616321,23.62205,-9.616321,31.49606,-19.68504,-11.81102,-19.68504,-3.937008,-13.12336,-14.50787,-13.12336,-6.633858,-6.56168,-11.81102,-6.56168,-3.937008,2.037836E-12,-14.50787,4.538947E-12,-6.633858,6.56168,-11.81102,6.56168,-3.937008,13.12336,-14.50787,13.12336,-6.633858,19.68504,-11.81102,19.68504,-3.937008,-19.68504,-11.81102,-13.12336,-14.50787,-19.68504,-19.68504,19.68504,-19.68504,2.043583E-12,-14.50787,-6.56168,-11.81102,6.56168,-11.81102,13.12336,-14.50787,19.68504,-11.81102,-19.68504,3.937008,-19.68504,11.81102,-13.12336,1.240157,-13.12336,9.114173,-6.56168,3.937008,-6.56168,11.81102,6.817708E-12,1.240157,9.318819E-12,9.114173,6.56168,3.937008,6.56168,11.81102,13.12336,1.240157,13.12336,9.114173,19.68504,3.937008,19.68504,11.81102,4.572441,27.2884,5.320757,24.60697,-2.521828,27.2884,-1.773511,24.60697,19.70386,19.95014,20.45217,17.26872,12.60959,19.95014,13.35791,17.26872,-2.32749,35.33267,-1.579173,38.0141,4.766778,35.33267,5.515095,38.0141,10.91839,10.49383,3.824124,10.49383,11.66671,13.17525,4.572441,13.17525,-8.314025,13.88127,-7.565708,16.5627,-1.219756,13.88127,-0.4714396,16.5627,-16.35117,6.543022,-18.12474,6.543022,-15.60286,9.224446,-19.52415,7.883734,-22.69712,9.224446,-23.44544,6.543022,-21.67187,6.543022,-19.68504,11.81102,-19.68504,19.68504,-13.12336,9.114173,-13.12336,16.98819,-6.56168,11.81102,-6.56168,19.68504,9.320341E-12,9.114173,1.182145E-11,16.98819,6.56168,11.81102,6.56168,19.68504,13.12336,9.114173,13.12336,16.98819,19.68504,11.81102,19.68504,19.68504,-7.37137,38.72012,-14.46564,38.72012,-6.623053,41.40154,-13.71732,41.40154,13.71732,41.40154,14.46564,38.72012,6.623053,41.40154,7.37137,38.72012,22.69712,9.224446,23.44544,6.543022,15.60286,9.224446,16.35117,6.543022,-1.579173,2.449554,-0.8308563,-0.2318707,-8.673442,2.449554,-7.925125,-0.2318707,-11.30729,3.155576,-10.55898,5.837,-4.213024,3.155576,-3.464707,5.837,13.55224,-4.888698,14.30056,-7.570123,6.457974,-4.888698,7.206291,-7.570123,-14.30056,-7.570123,-13.55224,-4.888698,-7.206291,-7.570123,-6.457974,-4.888698,1.414094,-8.276144,2.162411,-10.95757,-5.680174,-8.276144,-4.931857,-10.95757,4.931857,-10.95757,3.15829,-10.95757,5.680174,-8.276144,1.758881,-9.616857,-1.414094,-8.276144,-2.162411,-10.95757,-0.3888441,-10.95757,-10.36464,27.99442,-17.45891,27.99442,-9.616321,30.67584,-16.71059,30.67584,-4.572441,13.17525,-3.824124,10.49383,-11.66671,13.17525,-10.91839,10.49383,7.565708,16.5627,8.314025,13.88127,0.4714396,16.5627,4.392732,15.22199,6.540458,13.88127,2.993324,13.88127,1.219756,13.88127,-19.34444,-4.182676,-26.43871,-4.182676,-18.59612,-1.501252,-25.69039,-1.501252,25.69039,-1.501252,26.43871,-4.182676,18.59612,-1.501252,19.34444,-4.182676,-10.55898,34.62665,-9.810658,31.94522,-17.65324,34.62665,-13.73195,33.28593,-11.58423,31.94522,-15.13136,31.94522,-16.90493,31.94522,16.90493,31.94522,9.810658,31.94522,17.65324,34.62665,10.55898,34.62665,7.925125,-0.2318707,0.8308563,-0.2318707,8.673442,2.449554,1.579173,2.449554,-13.35791,17.26872,-20.45217,17.26872,-12.60959,19.95014,-19.70386,19.95014,10.55898,5.837,11.30729,3.155576,3.464707,5.837,4.213024,3.155576,-19.68504,-3.937008,-19.68504,3.937008,-13.12336,-6.633858,-13.12336,1.240157,-6.56168,-3.937008,-6.56168,3.937008,4.542449E-12,-6.633858,6.816186E-12,1.240157,6.56168,-3.937008,6.56168,3.937008,13.12336,-6.633858,13.12336,1.240157,19.68504,-3.937008,19.68504,3.937008,1.579173,38.0141,2.32749,35.33267,-5.515095,38.0141,-4.766778,35.33267,-5.320757,24.60697,-4.572441,27.2884,1.773511,24.60697,2.521828,27.2884,16.71059,30.67584,17.45891,27.99442,9.616321,30.67584,10.36464,27.99442,-7.565708,23.90095,-6.817391,21.21953,-14.65998,23.90095,-13.91166,21.21953,13.91166,21.21953,12.13809,21.21953,14.65998,23.90095,10.73868,22.56024,7.565708,23.90095,6.817391,21.21953,8.590959,21.21953 + } + UVIndex: *657 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,63,62,65,64,62,66,65,62,67,66,62,66,68,65,65,69,64,64,70,63,63,71,61,72,74,73,75,73,74,76,73,75,77,76,75,78,77,75,79,76,77,80,79,77,81,76,79,82,81,79,83,76,81,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,125,127,129,125,128,130,125,129,131,125,130,132,125,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,160,159,162,160,161,163,162,161,164,162,163,165,164,163,166,164,165,167,166,165,168,166,167,169,168,167,170,168,169,171,173,172,174,172,173,175,172,174,176,172,175,177,175,174,178,177,174,179,178,174,180,182,181,183,181,182,184,183,182,185,183,184,186,185,184,187,185,186,188,187,186,189,187,188,190,189,188,191,189,190,192,191,190,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,216,218,217,218,219,217,220,217,219,221,223,222,224,222,223,225,224,223,226,224,225,227,226,225,228,226,227,229,228,227,230,228,229,231,230,229,232,230,231,233,232,231,234,232,233,235,237,236,238,236,237,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,253,252,254,252,253,255,257,256,258,256,257,259,261,260,262,260,261,263,265,264,266,264,265,267,269,268,270,268,269,269,271,270,271,272,270,273,270,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,283,285,287,285,284,288,287,284,289,291,290,292,290,291,293,295,294,296,294,295,297,299,298,300,298,299,301,298,300,302,300,299,303,302,299,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,323,322,325,323,324,326,325,324,327,325,326,328,327,326,329,327,328,330,329,328,331,329,330,332,331,330,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,352,354,353,354,355,353,356,353,355 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *219 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_steps_stone, Model::RootNode + C: "OO",5507067989063033867,0 + + ;Geometry::, Model::Mesh cliff_steps_stone + C: "OO",4903861940861959423,5507067989063033867 + + ;Material::stone, Model::Mesh cliff_steps_stone + C: "OO",3038,5507067989063033867 + + ;Material::grass, Model::Mesh cliff_steps_stone + C: "OO",3024,5507067989063033867 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_stone.fbx.import new file mode 100644 index 0000000..4faf933 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cxqepqbg7q5at" +path="res://.godot/imported/cliff_steps_stone.fbx-53164cd9903e8039b7f85a2e42e76135.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_steps_stone.fbx" +dest_files=["res://.godot/imported/cliff_steps_stone.fbx-53164cd9903e8039b7f85a2e42e76135.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stone.fbx new file mode 100644 index 0000000..e5f475a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stone.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 16 + Millisecond: 939 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5004881859006003525, "Model::cliff_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5327430471207727252, "Geometry::", "Mesh" { + Vertices: *162 { + a: -3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-3.333333,10,-4,-5,10,-3.315,3.333333,-1.770646E-15,-4,1.666667,-1.770646E-15,-3.315,3.333333,10,-4,1.666667,10,-3.315,1.666667,-1.770646E-15,-3.315,-1.645958E-12,3.413295E-17,-4,1.666667,10,-3.315,-1.645958E-12,10,-4,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,5,-1.770646E-15,-3.315,5,0,-5,3.333333,-1.770646E-15,-4,-5,0,-5,-1.645958E-12,3.413295E-17,-4,1.666667,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-1.666667,10,-3.315,-1.645958E-12,3.413295E-17,-4,-1.645958E-12,10,-4,5,-1.770646E-15,-3.315,3.333333,-1.770646E-15,-4,5,10,-3.315,3.333333,10,-4,-5,0,-5,-5,10,-5,-5,-1.770646E-15,-3.315,-5,10,-3.315,5,10,-3.315,3.333333,10,-4,5,10,-5,-5,10,-5,-1.645958E-12,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,5,10,-5,5,0,-5,5,10,-3.315,5,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-3.333333,-1.770646E-15,-4,-1.666667,10,-3.315,-3.333333,10,-4 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,20,-19,22,19,-21,23,19,-23,24,19,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,38,-41,42,38,-42,43,41,-41,44,43,-41,45,44,-41,46,48,-48,49,47,-49,50,52,-52,53,51,-53 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *108 { + a: -6.151614,-6.971046E-15,-13.24588,-6.971046E-15,-6.151614,39.37008,-13.24588,39.37008,18.12468,-6.971046E-15,11.03041,-6.971046E-15,18.12468,39.37008,11.03041,39.37008,1.107733,-6.979939E-15,-5.986535,1.254884E-16,1.107733,39.37008,-5.986535,39.37008,19.68504,-3.716686E-29,-19.68504,-3.716686E-29,19.68504,39.37008,-19.68504,39.37008,19.68504,-13.05118,19.68504,-19.68504,13.12336,-15.74803,-19.68504,-19.68504,-6.48015E-12,-15.74803,6.56168,-13.05118,-6.56168,-13.05118,-13.12336,-15.74803,-19.68504,-13.05118,-1.107733,-7.019711E-15,-1.107733,39.37008,5.986535,8.571577E-17,5.986535,39.37008,13.24588,-6.971046E-15,6.151614,-6.971046E-15,13.24588,39.37008,6.151614,39.37008,-19.68504,0,-19.68504,39.37008,-13.05118,-6.971046E-15,-13.05118,39.37008,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,6.471809E-12,-15.74803,-6.56168,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,19.68504,39.37008,19.68504,2.842171E-14,13.05118,39.37008,13.05118,2.145066E-14,-11.03041,-6.971046E-15,-18.12468,-6.971046E-15,-11.03041,39.37008,-18.12468,39.37008 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,20,18,22,19,20,23,19,22,24,19,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,38,40,42,38,41,43,41,40,44,43,40,45,44,40,46,48,47,49,47,48,50,52,51,53,51,52 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_stone, Model::RootNode + C: "OO",5004881859006003525,0 + + ;Geometry::, Model::Mesh cliff_stone + C: "OO",5327430471207727252,5004881859006003525 + + ;Material::stone, Model::Mesh cliff_stone + C: "OO",3038,5004881859006003525 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stone.fbx.import new file mode 100644 index 0000000..f50e9a9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://t4mmp137vuhi" +path="res://.godot/imported/cliff_stone.fbx-8cb729383ac7d13ea4b2db99bdeddedf.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_stone.fbx" +dest_files=["res://.godot/imported/cliff_stone.fbx-8cb729383ac7d13ea4b2db99bdeddedf.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_rock.fbx new file mode 100644 index 0000000..5986b90 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 258 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_topDiagonal_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_topDiagonal_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5063817901514621261, "Model::cliff_topDiagonal_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5569855392083617785, "Geometry::", "Mesh" { + Vertices: *330 { + a: -6.685,10,-5,-6.191475,10,-3.808525,-7.684999,9,-5,-6.898582,9,-3.101418,0.4751917,10,2.858142,-0.231915,9,3.565248,-0.7071068,10,0.7071068,-1.414214,9,1.414214,-4.04044,10,-2.626226,-4.747547,9,-1.91912,-6.191475,10,-3.808525,-6.898582,9,-3.101418,2.626226,10,4.04044,1.91912,9,4.747547,0.4751917,10,2.858142,1.381361,9,4.451972,1.020379,9.25,3.979621,0.3058437,9,3.860823,-0.231915,9,3.565248,3.101418,9,6.898582,3.808525,10,6.191475,5,9,7.684999,5,10,6.685,-0.7071068,10,0.7071068,-1.414214,9,1.414214,-2.858142,10,-0.4751917,-3.565248,9,0.231915,3.808525,10,6.191475,3.101418,9,6.898582,2.626226,10,4.04044,1.91912,9,4.747547,-2.858142,10,-0.4751917,-3.565248,9,0.231915,-4.04044,10,-2.626226,-3.802844,9.499999,-1.197156,-4.451972,9,-1.381361,-4.747547,9,-1.91912,-3.860823,9,-0.3058437,5,10,6.685,3.808525,10,6.191475,5,10,5,2.626226,10,4.04044,-5,10,-5,-0.7071068,10,0.7071068,0.4751917,10,2.858142,-2.858142,10,-0.4751917,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-6.685,10,-5,5,-1.751014E-15,6.685,5,0,5,3.808525,-1.522782E-15,6.191475,2.626226,2.553268E-16,4.04044,-5,0,-5,-0.7071068,4.024862E-15,0.7071068,0.4751917,2.246753E-15,2.858142,-2.858142,4.21151E-15,-0.4751917,-4.04044,5.989619E-15,-2.626226,-5,3.438989E-15,-3.153641,-6.191475,7.981046E-15,-3.808525,-6.685,-8.741896E-15,-5,3.153641,-2.689368E-16,5,3.808525,-1.522782E-15,6.191475,2.626226,2.553268E-16,4.04044,-6.685,-8.741896E-15,-5,-5,0,-5,-6.685,10,-5,-5,10,-5,-0.7071068,4.024862E-15,0.7071068,-2.858142,4.21151E-15,-0.4751917,-0.7071068,10,0.7071068,-2.858142,10,-0.4751917,2.626226,2.553268E-16,4.04044,2.626226,10,4.04044,3.153641,-2.689368E-16,5,3.808525,10,6.191475,3.808525,-1.522782E-15,6.191475,-5,3.438989E-15,-3.153641,-6.191475,7.981046E-15,-3.808525,-4.04044,5.989619E-15,-2.626226,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-4.04044,5.989619E-15,-2.626226,-4.04044,10,-2.626226,-2.858142,4.21151E-15,-0.4751917,-2.858142,10,-0.4751917,5,0,5,5,-1.751014E-15,6.685,5,10,5,5,10,6.685,-0.7071068,4.024862E-15,0.7071068,-0.7071068,10,0.7071068,0.4751917,2.246753E-15,2.858142,0.4751917,10,2.858142,2.626226,2.553268E-16,4.04044,0.4751917,2.246753E-15,2.858142,2.626226,10,4.04044,0.4751917,10,2.858142,5,-1.751014E-15,6.685,3.808525,-1.522782E-15,6.191475,5,10,6.685,3.808525,10,6.191475,-6.685,10,-5,-6.191475,10,-3.808525,-6.685,-8.741896E-15,-5,-6.191475,7.981046E-15,-3.808525,-5,0,-5,5,0,5,-5,10,-5,5,10,5 + } + PolygonVertexIndex: *198 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,16,-15,18,17,-15,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,34,-34,36,35,-34,34,37,-33,38,40,-40,41,39,-41,42,41,-41,43,41,-43,44,41,-44,45,43,-43,46,45,-43,47,46,-43,48,47,-43,49,51,-51,52,50,-52,53,50,-53,54,53,-53,55,54,-53,56,53,-55,57,53,-57,58,53,-58,59,53,-59,60,53,-60,61,63,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,77,79,-79,80,78,-80,81,78,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *594 { + a: -0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *220 { + a: -28.25841,17.52922,-23.18108,17.52922,-29.76504,12.16917,-21.67445,12.16917,10.76227,25.77869,11.86099,20.32041,1.098718,25.77869,2.197436,20.32041,-18.92058,29.36612,-20.0193,23.90783,-28.58414,29.36612,-29.68286,23.90783,16.72315,22.19127,15.62443,16.73298,7.059593,22.19127,13.20854,16.73298,11.06733,18.09755,8.376763,16.73298,5.960875,16.73298,21.67445,12.16917,23.18108,17.52922,29.76504,12.16917,28.25841,17.52922,-1.098718,25.77869,-2.197436,20.32041,-10.76227,25.77869,-11.86099,20.32041,28.58414,29.36612,29.68286,23.90783,18.92058,29.36612,20.0193,23.90783,-7.059593,22.19127,-5.960875,16.73298,-16.72315,22.19127,-11.34201,19.46212,-13.20854,16.73298,-15.62443,16.73298,-8.376763,16.73298,-19.68504,26.3189,-14.99419,24.37589,-19.68504,19.68504,-10.33947,15.90724,19.68504,-19.68504,2.783885,2.783885,-1.870834,11.25253,11.25253,-1.870834,15.90724,-10.33947,24.37589,-14.99419,26.3189,-19.68504,19.68504,26.3189,19.68504,19.68504,14.99419,24.37589,10.33947,15.90724,-19.68504,-19.68504,-2.783885,2.783885,1.870834,11.25253,-11.25253,-1.870834,-15.90724,-10.33947,-19.68504,-12.41591,-24.37589,-14.99419,-26.3189,-19.68504,12.41591,19.68504,14.99419,24.37589,10.33947,15.90724,26.3189,9.348078E-14,19.68504,1.278977E-13,26.3189,39.37008,19.68504,39.37008,-1.098718,1.956152E-14,-10.76227,2.029636E-14,-1.098718,39.37008,-10.76227,39.37008,18.92058,-6.662511E-16,18.92058,39.37008,23.23142,-2.730281E-15,28.58414,39.37008,28.58414,-7.666679E-15,-23.23142,1.219787E-14,-28.58414,3.007998E-14,-18.92058,2.223972E-14,-18.92058,39.37008,-28.58414,39.37008,-16.72315,3.083684E-14,-16.72315,39.37008,-7.059593,2.383641E-14,-7.059593,39.37008,-19.68504,-1.421085E-14,-26.3189,-2.110461E-14,-19.68504,39.37008,-26.3189,39.37008,1.098718,1.955851E-14,1.098718,39.37008,10.76227,1.255808E-14,10.76227,39.37008,16.72315,9.796663E-15,7.059593,1.763693E-14,16.72315,39.37008,7.059593,39.37008,28.25841,8.97073E-15,23.18108,9.869283E-15,28.25841,39.37008,23.18108,39.37008,-28.25841,39.37008,-23.18108,39.37008,-28.25841,4.734434E-14,-23.18108,1.131827E-13,27.83885,3.155444E-29,-27.83885,-3.155444E-29,27.83885,39.37008,-27.83885,39.37008 + } + UVIndex: *198 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,16,14,18,17,14,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,34,33,36,35,33,34,37,32,38,40,39,41,39,40,42,41,40,43,41,42,44,41,43,45,43,42,46,45,42,47,46,42,48,47,42,49,51,50,52,50,51,53,50,52,54,53,52,55,54,52,56,53,54,57,53,56,58,53,57,59,53,58,60,53,59,61,63,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,77,79,78,80,78,79,81,78,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *66 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_topDiagonal_rock, Model::RootNode + C: "OO",5063817901514621261,0 + + ;Geometry::, Model::Mesh cliff_topDiagonal_rock + C: "OO",5569855392083617785,5063817901514621261 + + ;Material::grass, Model::Mesh cliff_topDiagonal_rock + C: "OO",3024,5063817901514621261 + + ;Material::dirt, Model::Mesh cliff_topDiagonal_rock + C: "OO",3020,5063817901514621261 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_rock.fbx.import new file mode 100644 index 0000000..5233407 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://de2s3syr7lfco" +path="res://.godot/imported/cliff_topDiagonal_rock.fbx-eaba593bc353be6df09f315534c8b856.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_rock.fbx" +dest_files=["res://.godot/imported/cliff_topDiagonal_rock.fbx-eaba593bc353be6df09f315534c8b856.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_stone.fbx new file mode 100644 index 0000000..3f55a2d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 368 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_topDiagonal_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_topDiagonal_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5398387357901663265, "Model::cliff_topDiagonal_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5061249114403810535, "Geometry::", "Mesh" { + Vertices: *660 { + a: -6.685,10,-5,-6.191475,10,-3.808525,-7.684999,9,-5,-6.898582,9,-3.101418,0.4751917,10,2.858142,-0.231915,9,3.565248,-0.7071068,10,0.7071068,-1.414214,9,1.414214,-4.04044,10,-2.626226,-4.747547,9,-1.91912,-6.191475,10,-3.808525,-6.898582,9,-3.101418,2.626226,10,4.04044,1.91912,9,4.747547,0.4751917,10,2.858142,1.381361,9,4.451972,1.020379,9.25,3.979621,0.3058437,9,3.860823,-0.231915,9,3.565248,3.101418,9,6.898582,3.808525,10,6.191475,5,9,7.684999,5,10,6.685,-0.7071068,10,0.7071068,-1.414214,9,1.414214,-2.858142,10,-0.4751917,-3.565248,9,0.231915,3.808525,10,6.191475,3.101418,9,6.898582,2.626226,10,4.04044,1.91912,9,4.747547,-2.858142,10,-0.4751917,-3.565248,9,0.231915,-4.04044,10,-2.626226,-3.802844,9.499999,-1.197156,-4.451972,9,-1.381361,-4.747547,9,-1.91912,-3.860823,9,-0.3058437,5,10,6.685,3.808525,10,6.191475,5,10,5,2.626226,10,4.04044,-5,10,-5,-0.7071068,10,0.7071068,0.4751917,10,2.858142,-2.858142,10,-0.4751917,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-6.685,10,-5,-7.684999,9,-5,-6.191475,10,-3.808525,-6.685,10,-5,-6.898582,9,-3.101418,5,-1.751014E-15,6.685,5,0,5,3.808525,-1.522782E-15,6.191475,2.626226,2.553268E-16,4.04044,-5,0,-5,-0.7071068,4.024862E-15,0.7071068,0.4751917,2.246753E-15,2.858142,-2.858142,4.21151E-15,-0.4751917,-4.04044,5.989619E-15,-2.626226,-5,3.438989E-15,-3.153641,-6.191475,7.981046E-15,-3.808525,-6.685,-8.741896E-15,-5,3.808525,-1.522782E-15,6.191475,5,0,5,5,-1.751014E-15,6.685,2.626226,2.553268E-16,4.04044,-5,0,-5,-0.7071068,4.024862E-15,0.7071068,0.4751917,2.246753E-15,2.858142,-2.858142,4.21151E-15,-0.4751917,-4.04044,5.989619E-15,-2.626226,-5,3.438989E-15,-3.153641,-6.191475,7.981046E-15,-3.808525,-6.685,-8.741896E-15,-5,3.153641,-2.689368E-16,5,3.808525,-1.522782E-15,6.191475,2.626226,2.553268E-16,4.04044,2.626226,2.553268E-16,4.04044,3.808525,-1.522782E-15,6.191475,3.153641,-2.689368E-16,5,-6.685,-8.741896E-15,-5,-5,0,-5,-6.685,10,-5,-5,10,-5,-6.685,10,-5,-5,0,-5,-6.685,-8.741896E-15,-5,-5,10,-5,-0.7071068,10,0.7071068,-0.231915,9,3.565248,0.4751917,10,2.858142,-1.414214,9,1.414214,-0.7071068,4.024862E-15,0.7071068,-2.858142,4.21151E-15,-0.4751917,-0.7071068,10,0.7071068,-2.858142,10,-0.4751917,-0.7071068,10,0.7071068,-2.858142,4.21151E-15,-0.4751917,-0.7071068,4.024862E-15,0.7071068,-2.858142,10,-0.4751917,2.626226,2.553268E-16,4.04044,2.626226,10,4.04044,3.153641,-2.689368E-16,5,3.808525,10,6.191475,3.808525,-1.522782E-15,6.191475,3.153641,-2.689368E-16,5,2.626226,10,4.04044,2.626226,2.553268E-16,4.04044,3.808525,10,6.191475,3.808525,-1.522782E-15,6.191475,-5,3.438989E-15,-3.153641,-6.191475,7.981046E-15,-3.808525,-4.04044,5.989619E-15,-2.626226,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-4.04044,5.989619E-15,-2.626226,-6.191475,7.981046E-15,-3.808525,-5,3.438989E-15,-3.153641,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-6.191475,10,-3.808525,-4.747547,9,-1.91912,-4.04044,10,-2.626226,-6.898582,9,-3.101418,0.4751917,10,2.858142,1.91912,9,4.747547,2.626226,10,4.04044,1.381361,9,4.451972,1.020379,9.25,3.979621,0.3058437,9,3.860823,-0.231915,9,3.565248,-4.04044,5.989619E-15,-2.626226,-4.04044,10,-2.626226,-2.858142,4.21151E-15,-0.4751917,-2.858142,10,-0.4751917,-2.858142,4.21151E-15,-0.4751917,-4.04044,10,-2.626226,-4.04044,5.989619E-15,-2.626226,-2.858142,10,-0.4751917,5,9,7.684999,3.808525,10,6.191475,3.101418,9,6.898582,5,10,6.685,5,0,5,5,-1.751014E-15,6.685,5,10,5,5,10,6.685,5,10,5,5,-1.751014E-15,6.685,5,0,5,5,10,6.685,-2.858142,10,-0.4751917,-1.414214,9,1.414214,-0.7071068,10,0.7071068,-3.565248,9,0.231915,-0.7071068,4.024862E-15,0.7071068,-0.7071068,10,0.7071068,0.4751917,2.246753E-15,2.858142,0.4751917,10,2.858142,0.4751917,2.246753E-15,2.858142,-0.7071068,10,0.7071068,-0.7071068,4.024862E-15,0.7071068,0.4751917,10,2.858142,2.626226,2.553268E-16,4.04044,0.4751917,2.246753E-15,2.858142,2.626226,10,4.04044,0.4751917,10,2.858142,2.626226,10,4.04044,0.4751917,2.246753E-15,2.858142,2.626226,2.553268E-16,4.04044,0.4751917,10,2.858142,5,-1.751014E-15,6.685,3.808525,-1.522782E-15,6.191475,5,10,6.685,3.808525,10,6.191475,5,10,6.685,3.808525,-1.522782E-15,6.191475,5,-1.751014E-15,6.685,3.808525,10,6.191475,-6.685,10,-5,-6.191475,10,-3.808525,-6.685,-8.741896E-15,-5,-6.191475,7.981046E-15,-3.808525,-6.685,-8.741896E-15,-5,-6.191475,10,-3.808525,-6.685,10,-5,-6.191475,7.981046E-15,-3.808525,2.626226,10,4.04044,3.101418,9,6.898582,3.808525,10,6.191475,1.91912,9,4.747547,-4.04044,10,-2.626226,-3.565248,9,0.231915,-2.858142,10,-0.4751917,-3.802844,9.499999,-1.197156,-4.451972,9,-1.381361,-4.747547,9,-1.91912,-3.860823,9,-0.3058437,-5,0,-5,5,0,5,-5,10,-5,5,10,5,-5,10,-5,5,0,5,-5,0,-5,5,10,5,5,10,5,3.808525,10,6.191475,5,10,6.685,2.626226,10,4.04044,-5,10,-5,-0.7071068,10,0.7071068,0.4751917,10,2.858142,-2.858142,10,-0.4751917,-4.04044,10,-2.626226,-6.191475,10,-3.808525,-6.685,10,-5 + } + PolygonVertexIndex: *396 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,16,-15,18,17,-15,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,34,-34,36,35,-34,34,37,-33,38,40,-40,41,39,-41,42,41,-41,43,41,-43,44,41,-44,45,43,-43,46,45,-43,47,46,-43,48,47,-43,49,51,-51,50,52,-50,53,55,-55,56,54,-56,57,54,-57,58,57,-57,59,58,-57,60,57,-59,61,57,-61,62,57,-62,63,57,-63,64,57,-64,65,67,-67,66,68,-66,66,69,-69,69,70,-69,70,71,-69,69,72,-71,69,73,-73,69,74,-74,69,75,-75,69,76,-76,77,79,-79,80,82,-82,83,85,-85,86,84,-86,87,89,-89,88,90,-88,91,93,-93,92,94,-92,95,97,-97,98,96,-98,99,101,-101,100,102,-100,103,105,-105,106,104,-106,107,106,-106,108,110,-110,109,111,-109,111,112,-109,113,115,-115,116,114,-116,117,114,-117,118,120,-120,119,121,-119,119,122,-122,123,125,-125,124,126,-124,127,129,-129,128,130,-128,130,131,-128,131,132,-128,132,133,-128,134,136,-136,137,135,-137,138,140,-140,139,141,-139,142,144,-144,143,145,-143,146,148,-148,149,147,-149,150,152,-152,151,153,-151,154,156,-156,155,157,-155,158,160,-160,161,159,-161,162,164,-164,163,165,-163,166,168,-168,169,167,-169,170,172,-172,171,173,-171,174,176,-176,177,175,-177,178,180,-180,179,181,-179,182,184,-184,185,183,-185,186,188,-188,187,189,-187,190,192,-192,191,193,-191,194,196,-196,195,197,-195,197,198,-195,198,199,-195,200,197,-196,201,203,-203,204,202,-204,205,207,-207,206,208,-206,209,211,-211,210,212,-210,212,213,-210,212,214,-214,212,215,-215,214,216,-214,216,217,-214,217,218,-214,218,219,-214 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1188 { + a: -0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6785984,0.6785984,0.2810847,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.2810847,0.6785984,0.6785984,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.3474294,0.692633,0.6321015,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,-0.6321015,0.692633,0.3474294,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6785984,-0.6785984,-0.2810847,0.6785984,-0.6785984,-0.2810847,0.6785984,-0.6785984,-0.2810847,0.6785984,-0.6785984,-0.2810847,0.6785984,-0.6785984,-0.2810847,0.6785984,-0.6785984,-0.2810847,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.2810847,-0.6785984,-0.6785984,0.2810847,-0.6785984,-0.6785984,0.2810847,-0.6785984,-0.6785984,0.2810847,-0.6785984,-0.6785984,0.2810847,-0.6785984,-0.6785984,0.2810847,-0.6785984,-0.6785984,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,0.3474294,-0.692633,-0.6321015,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,-0.8763484,0,0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,0.8763484,0,-0.4816777,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,-0.4816777,0,0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,0.4816777,0,-0.8763484,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,-0.9238795,0,0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.9238795,0,-0.3826834,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.6321015,-0.692633,-0.3474294,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *440 { + a: -28.25841,17.52922,-23.18108,17.52922,-29.76504,12.16917,-21.67445,12.16917,10.76227,25.77869,11.86099,20.32041,1.098718,25.77869,2.197436,20.32041,-18.92058,29.36612,-20.0193,23.90783,-28.58414,29.36612,-29.68286,23.90783,16.72315,22.19127,15.62443,16.73298,7.059593,22.19127,13.20854,16.73298,11.06733,18.09755,8.376763,16.73298,5.960875,16.73298,21.67445,12.16917,23.18108,17.52922,29.76504,12.16917,28.25841,17.52922,-1.098718,25.77869,-2.197436,20.32041,-10.76227,25.77869,-11.86099,20.32041,28.58414,29.36612,29.68286,23.90783,18.92058,29.36612,20.0193,23.90783,-7.059593,22.19127,-5.960875,16.73298,-16.72315,22.19127,-11.34201,19.46212,-13.20854,16.73298,-15.62443,16.73298,-8.376763,16.73298,-19.68504,26.3189,-14.99419,24.37589,-19.68504,19.68504,-10.33947,15.90724,19.68504,-19.68504,2.783885,2.783885,-1.870834,11.25253,11.25253,-1.870834,15.90724,-10.33947,24.37589,-14.99419,26.3189,-19.68504,-29.76504,12.16917,-23.18108,17.52922,-28.25841,17.52922,-21.67445,12.16917,19.68504,26.3189,19.68504,19.68504,14.99419,24.37589,10.33947,15.90724,-19.68504,-19.68504,-2.783885,2.783885,1.870834,11.25253,-11.25253,-1.870834,-15.90724,-10.33947,-19.68504,-12.41591,-24.37589,-14.99419,-26.3189,-19.68504,14.99419,24.37589,19.68504,19.68504,19.68504,26.3189,10.33947,15.90724,-19.68504,-19.68504,-2.783885,2.783885,1.870834,11.25253,-11.25253,-1.870834,-15.90724,-10.33947,-19.68504,-12.41591,-24.37589,-14.99419,-26.3189,-19.68504,12.41591,19.68504,14.99419,24.37589,10.33947,15.90724,10.33947,15.90724,14.99419,24.37589,12.41591,19.68504,26.3189,9.348078E-14,19.68504,1.278977E-13,26.3189,39.37008,19.68504,39.37008,26.3189,39.37008,19.68504,1.278977E-13,26.3189,9.348078E-14,19.68504,39.37008,1.098718,25.77869,11.86099,20.32041,10.76227,25.77869,2.197436,20.32041,-1.098718,1.956152E-14,-10.76227,2.029636E-14,-1.098718,39.37008,-10.76227,39.37008,-1.098718,39.37008,-10.76227,2.029636E-14,-1.098718,1.956152E-14,-10.76227,39.37008,18.92058,-6.662511E-16,18.92058,39.37008,23.23142,-2.730281E-15,28.58414,39.37008,28.58414,-7.666679E-15,23.23142,-2.730281E-15,18.92058,39.37008,18.92058,-6.662511E-16,28.58414,39.37008,28.58414,-7.666679E-15,-23.23142,1.219787E-14,-28.58414,3.007998E-14,-18.92058,2.223972E-14,-18.92058,39.37008,-28.58414,39.37008,-18.92058,2.223972E-14,-28.58414,3.007998E-14,-23.23142,1.219787E-14,-18.92058,39.37008,-28.58414,39.37008,-28.58414,29.36612,-20.0193,23.90783,-18.92058,29.36612,-29.68286,23.90783,7.059593,22.19127,15.62443,16.73298,16.72315,22.19127,13.20854,16.73298,11.06733,18.09755,8.376763,16.73298,5.960875,16.73298,-16.72315,3.083684E-14,-16.72315,39.37008,-7.059593,2.383641E-14,-7.059593,39.37008,-7.059593,2.383641E-14,-16.72315,39.37008,-16.72315,3.083684E-14,-7.059593,39.37008,29.76504,12.16917,23.18108,17.52922,21.67445,12.16917,28.25841,17.52922,-19.68504,-1.421085E-14,-26.3189,-2.110461E-14,-19.68504,39.37008,-26.3189,39.37008,-19.68504,39.37008,-26.3189,-2.110461E-14,-19.68504,-1.421085E-14,-26.3189,39.37008,-10.76227,25.77869,-2.197436,20.32041,-1.098718,25.77869,-11.86099,20.32041,1.098718,1.955851E-14,1.098718,39.37008,10.76227,1.255808E-14,10.76227,39.37008,10.76227,1.255808E-14,1.098718,39.37008,1.098718,1.955851E-14,10.76227,39.37008,16.72315,9.796663E-15,7.059593,1.763693E-14,16.72315,39.37008,7.059593,39.37008,16.72315,39.37008,7.059593,1.763693E-14,16.72315,9.796663E-15,7.059593,39.37008,28.25841,8.97073E-15,23.18108,9.869283E-15,28.25841,39.37008,23.18108,39.37008,28.25841,39.37008,23.18108,9.869283E-15,28.25841,8.97073E-15,23.18108,39.37008,-28.25841,39.37008,-23.18108,39.37008,-28.25841,4.734434E-14,-23.18108,1.131827E-13,-28.25841,4.734434E-14,-23.18108,39.37008,-28.25841,39.37008,-23.18108,1.131827E-13,18.92058,29.36612,29.68286,23.90783,28.58414,29.36612,20.0193,23.90783,-16.72315,22.19127,-5.960875,16.73298,-7.059593,22.19127,-11.34201,19.46212,-13.20854,16.73298,-15.62443,16.73298,-8.376763,16.73298,27.83885,3.155444E-29,-27.83885,-3.155444E-29,27.83885,39.37008,-27.83885,39.37008,27.83885,39.37008,-27.83885,-3.155444E-29,27.83885,3.155444E-29,-27.83885,39.37008,-19.68504,19.68504,-14.99419,24.37589,-19.68504,26.3189,-10.33947,15.90724,19.68504,-19.68504,2.783885,2.783885,-1.870834,11.25253,11.25253,-1.870834,15.90724,-10.33947,24.37589,-14.99419,26.3189,-19.68504 + } + UVIndex: *396 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,16,14,18,17,14,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,34,33,36,35,33,34,37,32,38,40,39,41,39,40,42,41,40,43,41,42,44,41,43,45,43,42,46,45,42,47,46,42,48,47,42,49,51,50,50,52,49,53,55,54,56,54,55,57,54,56,58,57,56,59,58,56,60,57,58,61,57,60,62,57,61,63,57,62,64,57,63,65,67,66,66,68,65,66,69,68,69,70,68,70,71,68,69,72,70,69,73,72,69,74,73,69,75,74,69,76,75,77,79,78,80,82,81,83,85,84,86,84,85,87,89,88,88,90,87,91,93,92,92,94,91,95,97,96,98,96,97,99,101,100,100,102,99,103,105,104,106,104,105,107,106,105,108,110,109,109,111,108,111,112,108,113,115,114,116,114,115,117,114,116,118,120,119,119,121,118,119,122,121,123,125,124,124,126,123,127,129,128,128,130,127,130,131,127,131,132,127,132,133,127,134,136,135,137,135,136,138,140,139,139,141,138,142,144,143,143,145,142,146,148,147,149,147,148,150,152,151,151,153,150,154,156,155,155,157,154,158,160,159,161,159,160,162,164,163,163,165,162,166,168,167,169,167,168,170,172,171,171,173,170,174,176,175,177,175,176,178,180,179,179,181,178,182,184,183,185,183,184,186,188,187,187,189,186,190,192,191,191,193,190,194,196,195,195,197,194,197,198,194,198,199,194,200,197,195,201,203,202,204,202,203,205,207,206,206,208,205,209,211,210,210,212,209,212,213,209,212,214,213,212,215,214,214,216,213,216,217,213,217,218,213,218,219,213 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *132 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_topDiagonal_stone, Model::RootNode + C: "OO",5398387357901663265,0 + + ;Geometry::, Model::Mesh cliff_topDiagonal_stone + C: "OO",5061249114403810535,5398387357901663265 + + ;Material::grass, Model::Mesh cliff_topDiagonal_stone + C: "OO",3024,5398387357901663265 + + ;Material::stone, Model::Mesh cliff_topDiagonal_stone + C: "OO",3038,5398387357901663265 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_stone.fbx.import new file mode 100644 index 0000000..dfd1735 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://h777hancl5vg" +path="res://.godot/imported/cliff_topDiagonal_stone.fbx-519d2e58fd8c3fd9af48809f5511536d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_topDiagonal_stone.fbx" +dest_files=["res://.godot/imported/cliff_topDiagonal_stone.fbx-519d2e58fd8c3fd9af48809f5511536d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_rock.fbx new file mode 100644 index 0000000..beb0587 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_rock.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 31 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_top_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_top_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5278219768138999384, "Model::cliff_top_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4986307327330230631, "Geometry::", "Mesh" { + Vertices: *261 { + a: 3.333333,9,-3,2.916667,9,-2.82875,3.333333,10,-4,1.666667,10,-3.315,2.5,9.25,-2.9075,2.083333,9,-2.48625,1.666667,9,-2.315,5,10,-3.315,3.333333,10,-4,5,10,-5,-5,10,-5,-5.960234E-08,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,-1.666667,9,-2.315,-2.083333,9,-2.48625,-1.666667,10,-3.315,-2.5,9.499999,-3.1575,-3.333333,10,-4,-3.333333,9,-3,-2.916667,9,-2.82875,1.666667,9,-2.315,1.25,9,-2.48625,1.666667,10,-3.315,0.8333333,9.499999,-3.1575,-5.960234E-08,10,-4,-4.470174E-08,9,-3,0.4166666,9,-2.82875,5,9,-2.315,3.333333,9,-3,5,10,-3.315,3.333333,10,-4,-3.333333,9,-3,-5,9,-2.315,-3.333333,10,-4,-5,10,-3.315,-4.470174E-08,9,-3,-1.666667,9,-2.315,-5.960234E-08,10,-4,-1.666667,10,-3.315,5,10,-5,5,0,-5,5,10,-3.315,5,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-3.333333,-1.770646E-15,-4,-1.666667,10,-3.315,-3.333333,10,-4,5,-1.770646E-15,-3.315,3.333333,-1.770646E-15,-4,5,10,-3.315,3.333333,10,-4,1.666667,-1.770646E-15,-3.315,-5.960234E-08,3.413295E-17,-4,1.666667,10,-3.315,-5.960234E-08,10,-4,3.333333,-1.770646E-15,-4,1.666667,-1.770646E-15,-3.315,3.333333,10,-4,1.666667,10,-3.315,5,-1.770646E-15,-3.315,5,0,-5,3.333333,-1.770646E-15,-4,-5,0,-5,-5.960234E-08,3.413295E-17,-4,1.666667,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-1.666667,10,-3.315,-5.960234E-08,3.413295E-17,-4,-5.960234E-08,10,-4,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-3.333333,10,-4,-5,10,-3.315,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,-5,0,-5,-5,10,-5,-5,-1.770646E-15,-3.315,-5,10,-3.315 + } + PolygonVertexIndex: *159 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,5,-4,7,9,-9,10,8,-10,11,8,-11,12,8,-12,13,11,-11,14,13,-11,15,14,-11,16,18,-18,19,17,-19,18,20,-20,20,21,-20,22,19,-22,23,25,-25,26,24,-26,25,27,-27,27,28,-27,29,26,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,65,-65,67,66,-65,68,65,-67,69,65,-69,70,65,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *477 { + a: 0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *174 { + a: 16.62805,30.04266,14.85448,30.04266,18.12468,35.40551,11.03041,35.40551,13.45507,31.38338,11.30735,30.04266,9.533781,30.04266,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,2.346548E-07,-15.74803,-6.561679,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-9.533781,30.04266,-11.30735,30.04266,-11.03041,35.40551,-13.82923,32.72409,-18.12468,35.40551,-16.62805,30.04266,-14.85448,30.04266,2.604367,33.43011,0.8308001,33.43011,1.107733,38.79296,-1.691084,36.11153,-5.986535,38.79296,-4.489901,33.43011,-2.716334,33.43011,14.74252,36.81756,7.648247,36.81756,13.24588,42.1804,6.151614,42.1804,-7.648247,36.81756,-14.74252,36.81756,-6.151614,42.1804,-13.24588,42.1804,4.489901,33.43011,-2.604367,33.43011,5.986535,38.79296,-1.107733,38.79296,19.68504,39.37008,19.68504,2.842171E-14,13.05118,39.37008,13.05118,2.145066E-14,-11.03041,-6.971046E-15,-18.12468,-6.971046E-15,-11.03041,39.37008,-18.12468,39.37008,13.24588,-6.971046E-15,6.151614,-6.971046E-15,13.24588,39.37008,6.151614,39.37008,1.107733,-6.979939E-15,-5.986535,1.254884E-16,1.107733,39.37008,-5.986535,39.37008,18.12468,-6.971046E-15,11.03041,-6.971046E-15,18.12468,39.37008,11.03041,39.37008,19.68504,-13.05118,19.68504,-19.68504,13.12336,-15.74803,-19.68504,-19.68504,-2.346549E-07,-15.74803,6.561679,-13.05118,-6.56168,-13.05118,-13.12336,-15.74803,-19.68504,-13.05118,-1.107733,-7.019711E-15,-1.107733,39.37008,5.986535,8.571577E-17,5.986535,39.37008,-6.151614,-6.971046E-15,-13.24588,-6.971046E-15,-6.151614,39.37008,-13.24588,39.37008,19.68504,-3.716686E-29,-19.68504,-3.716686E-29,19.68504,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-13.05118,-6.971046E-15,-13.05118,39.37008 + } + UVIndex: *159 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,5,3,7,9,8,10,8,9,11,8,10,12,8,11,13,11,10,14,13,10,15,14,10,16,18,17,19,17,18,18,20,19,20,21,19,22,19,21,23,25,24,26,24,25,25,27,26,27,28,26,29,26,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,65,64,67,66,64,68,65,66,69,65,68,70,65,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *53 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_top_rock, Model::RootNode + C: "OO",5278219768138999384,0 + + ;Geometry::, Model::Mesh cliff_top_rock + C: "OO",4986307327330230631,5278219768138999384 + + ;Material::grass, Model::Mesh cliff_top_rock + C: "OO",3024,5278219768138999384 + + ;Material::dirt, Model::Mesh cliff_top_rock + C: "OO",3020,5278219768138999384 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_rock.fbx.import new file mode 100644 index 0000000..38a1959 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b11pc7ri1kbfc" +path="res://.godot/imported/cliff_top_rock.fbx-2cc8222456a66c29eb8e1daa9c7329a8.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_top_rock.fbx" +dest_files=["res://.godot/imported/cliff_top_rock.fbx-2cc8222456a66c29eb8e1daa9c7329a8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_stone.fbx new file mode 100644 index 0000000..92f63e5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 169 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_top_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_top_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4761659222088586201, "Model::cliff_top_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5470497763435798015, "Geometry::", "Mesh" { + Vertices: *261 { + a: 3.333333,9,-3,2.916667,9,-2.82875,3.333333,10,-4,1.666667,10,-3.315,2.5,9.25,-2.9075,2.083333,9,-2.48625,1.666667,9,-2.315,5,10,-3.315,3.333333,10,-4,5,10,-5,-5,10,-5,-5.960234E-08,10,-4,1.666667,10,-3.315,-1.666667,10,-3.315,-3.333333,10,-4,-5,10,-3.315,-1.666667,9,-2.315,-2.083333,9,-2.48625,-1.666667,10,-3.315,-2.5,9.499999,-3.1575,-3.333333,10,-4,-3.333333,9,-3,-2.916667,9,-2.82875,1.666667,9,-2.315,1.25,9,-2.48625,1.666667,10,-3.315,0.8333333,9.499999,-3.1575,-5.960234E-08,10,-4,-4.470174E-08,9,-3,0.4166666,9,-2.82875,5,9,-2.315,3.333333,9,-3,5,10,-3.315,3.333333,10,-4,-3.333333,9,-3,-5,9,-2.315,-3.333333,10,-4,-5,10,-3.315,-4.470174E-08,9,-3,-1.666667,9,-2.315,-5.960234E-08,10,-4,-1.666667,10,-3.315,5,10,-5,5,0,-5,5,10,-3.315,5,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-3.333333,-1.770646E-15,-4,-1.666667,10,-3.315,-3.333333,10,-4,5,-1.770646E-15,-3.315,3.333333,-1.770646E-15,-4,5,10,-3.315,3.333333,10,-4,1.666667,-1.770646E-15,-3.315,-5.960234E-08,3.413295E-17,-4,1.666667,10,-3.315,-5.960234E-08,10,-4,3.333333,-1.770646E-15,-4,1.666667,-1.770646E-15,-3.315,3.333333,10,-4,1.666667,10,-3.315,5,-1.770646E-15,-3.315,5,0,-5,3.333333,-1.770646E-15,-4,-5,0,-5,-5.960234E-08,3.413295E-17,-4,1.666667,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-1.666667,-1.770646E-15,-3.315,-1.666667,10,-3.315,-5.960234E-08,3.413295E-17,-4,-5.960234E-08,10,-4,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-3.333333,10,-4,-5,10,-3.315,-5,0,-5,5,0,-5,-5,10,-5,5,10,-5,-5,0,-5,-5,10,-5,-5,-1.770646E-15,-3.315,-5,10,-3.315 + } + PolygonVertexIndex: *159 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,5,-4,7,9,-9,10,8,-10,11,8,-11,12,8,-12,13,11,-11,14,13,-11,15,14,-11,16,18,-18,19,17,-19,18,20,-20,20,21,-20,22,19,-22,23,25,-25,26,24,-26,25,27,-27,27,28,-27,29,26,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,65,-65,67,66,-65,68,65,-67,69,65,-69,70,65,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *477 { + a: 0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *174 { + a: 16.62805,30.04266,14.85448,30.04266,18.12468,35.40551,11.03041,35.40551,13.45507,31.38338,11.30735,30.04266,9.533781,30.04266,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,2.346548E-07,-15.74803,-6.561679,-13.05118,6.56168,-13.05118,13.12336,-15.74803,19.68504,-13.05118,-9.533781,30.04266,-11.30735,30.04266,-11.03041,35.40551,-13.82923,32.72409,-18.12468,35.40551,-16.62805,30.04266,-14.85448,30.04266,2.604367,33.43011,0.8308001,33.43011,1.107733,38.79296,-1.691084,36.11153,-5.986535,38.79296,-4.489901,33.43011,-2.716334,33.43011,14.74252,36.81756,7.648247,36.81756,13.24588,42.1804,6.151614,42.1804,-7.648247,36.81756,-14.74252,36.81756,-6.151614,42.1804,-13.24588,42.1804,4.489901,33.43011,-2.604367,33.43011,5.986535,38.79296,-1.107733,38.79296,19.68504,39.37008,19.68504,2.842171E-14,13.05118,39.37008,13.05118,2.145066E-14,-11.03041,-6.971046E-15,-18.12468,-6.971046E-15,-11.03041,39.37008,-18.12468,39.37008,13.24588,-6.971046E-15,6.151614,-6.971046E-15,13.24588,39.37008,6.151614,39.37008,1.107733,-6.979939E-15,-5.986535,1.254884E-16,1.107733,39.37008,-5.986535,39.37008,18.12468,-6.971046E-15,11.03041,-6.971046E-15,18.12468,39.37008,11.03041,39.37008,19.68504,-13.05118,19.68504,-19.68504,13.12336,-15.74803,-19.68504,-19.68504,-2.346549E-07,-15.74803,6.561679,-13.05118,-6.56168,-13.05118,-13.12336,-15.74803,-19.68504,-13.05118,-1.107733,-7.019711E-15,-1.107733,39.37008,5.986535,8.571577E-17,5.986535,39.37008,-6.151614,-6.971046E-15,-13.24588,-6.971046E-15,-6.151614,39.37008,-13.24588,39.37008,19.68504,-3.716686E-29,-19.68504,-3.716686E-29,19.68504,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-13.05118,-6.971046E-15,-13.05118,39.37008 + } + UVIndex: *159 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,5,3,7,9,8,10,8,9,11,8,10,12,8,11,13,11,10,14,13,10,15,14,10,16,18,17,19,17,18,18,20,19,20,21,19,22,19,21,23,25,24,26,24,25,25,27,26,27,28,26,29,26,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,65,64,67,66,64,68,65,66,69,65,68,70,65,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *53 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_top_stone, Model::RootNode + C: "OO",4761659222088586201,0 + + ;Geometry::, Model::Mesh cliff_top_stone + C: "OO",5470497763435798015,4761659222088586201 + + ;Material::grass, Model::Mesh cliff_top_stone + C: "OO",3024,4761659222088586201 + + ;Material::stone, Model::Mesh cliff_top_stone + C: "OO",3038,4761659222088586201 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_stone.fbx.import new file mode 100644 index 0000000..e493fdf --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_top_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c86c17wsemrv5" +path="res://.godot/imported/cliff_top_stone.fbx-c66931ff4193060c58fe0e508dcf87e5.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_top_stone.fbx" +dest_files=["res://.godot/imported/cliff_top_stone.fbx-c66931ff4193060c58fe0e508dcf87e5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_rock.fbx new file mode 100644 index 0000000..632bb4a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_rock.fbx @@ -0,0 +1,379 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 661 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_waterfallTop_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_waterfallTop_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5243017348658096887, "Model::cliff_waterfallTop_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5212868920062574860, "Geometry::", "Mesh" { + Vertices: *300 { + a: 2.335,9.499999,-4.32875,-2.335,9.499999,-4.32875,2.17,9.499999,-5,-2.17,9.499999,-5,2.5,8.808768,-3.6575,-2.5,8.808768,-3.6575,2.335,9.499999,-4.32875,-2.335,9.499999,-4.32875,2.5,0,-3.6575,0.8333334,4.511947E-16,-3.6575,2.5,8.808768,-3.6575,-0.8333334,4.511947E-16,-3.6575,-2.5,8.808768,-3.6575,-2.5,0,-3.6575,0.8333334,4.511947E-16,-3.6575,2.887646E-14,1.804779E-15,-4,-0.8333334,4.511947E-16,-3.6575,-5,1.770646E-15,-5,-5,10,-5,-5,0,-3.315,-5,10,-3.315,3.333333,0,-4,2.5,0,-3.6575,3.333333,10,-4,2.5,8.808768,-3.6575,2.5,9.499999,-3.6575,3.06311,10,-3.888938,-5,1.770646E-15,-5,5,1.770646E-15,-5,-5,10,-5,-2.17,9.499999,-5,-2.79,10,-5,-3.79,10,-5,2.17,9.499999,-5,5,10,-5,3.79,10,-5,2.79,10,-5,-2.79,10,-5,-3.06311,10,-3.888938,-3.79,10,-5,-3.333333,10,-4,3.79,10,-5,3.333333,10,-4,2.79,10,-5,3.06311,10,-3.888938,5,0,-3.315,3.333333,0,-4,5,10,-3.315,3.333333,10,-4,-2.335,9.499999,-4.32875,-2.5,8.808768,-3.6575,-2.5,9.499999,-3.6575,5,0,-3.315,5,1.770646E-15,-5,3.333333,0,-4,-5,1.770646E-15,-5,2.5,0,-3.6575,2.887646E-14,1.804779E-15,-4,0.8333334,4.511947E-16,-3.6575,-0.8333334,4.511947E-16,-3.6575,-2.5,0,-3.6575,-3.333333,0,-4,-5,0,-3.315,5,10,-5,5,1.770646E-15,-5,5,10,-3.315,5,0,-3.315,2.5,8.808768,-3.6575,2.335,9.499999,-4.32875,2.5,9.499999,-3.6575,-2.5,0,-3.6575,-3.333333,0,-4,-2.5,8.808768,-3.6575,-3.333333,10,-4,-2.5,9.499999,-3.6575,-3.06311,10,-3.888938,-3.333333,0,-4,-5,0,-3.315,-3.333333,10,-4,-5,10,-3.315,-5,10,-3.315,-5,10,-5,5,10,-3.315,5,9,-2.315,3.333333,10,-4,5,10,-5,5,10,-3.315,-3.333333,10,-4,-5,9,-2.315,-5,10,-3.315,-2.17,9.499999,-5,-2.335,9.499999,-4.32875,-2.79,10,-5,-2.5,9.499999,-3.6575,-3.06311,10,-3.888938,3.06311,10,-3.888938,2.5,9.499999,-3.6575,2.79,10,-5,2.17,9.499999,-5,2.335,9.499999,-4.32875 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,10,12,-12,13,11,-13,14,16,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,26,25,-24,27,29,-29,30,28,-30,31,30,-30,32,31,-30,30,33,-29,34,28,-34,35,34,-34,36,35,-34,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,54,-54,55,53,-55,56,55,-55,57,55,-57,58,57,-57,59,55,-58,60,55,-60,61,55,-61,62,55,-62,63,65,-65,66,64,-66,67,69,-69,70,72,-72,73,71,-73,74,73,-73,75,73,-75,76,78,-78,79,77,-79,40,39,-81,81,80,-40,82,84,-84,85,41,-87,42,86,-42,87,89,-89,90,92,-92,93,91,-93,94,93,-93,95,97,-97,98,96,-98,99,96,-99 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.9710923,0,0.2387042,0.9710923,0,0.2387042,0.9710923,0,0.2387042,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9710923,0,0.2387042,-0.9710923,0,0.2387042,-0.9710923,0,0.2387042,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *200 { + a: -9.192913,-17.04232,9.192913,-17.04232,-8.543307,-19.68504,8.543307,-19.68504,9.84252,34.91122,-9.84252,34.91122,9.192913,38.70462,-9.192913,38.70462,9.84252,0,3.28084,1.776357E-15,9.84252,34.68019,-3.28084,1.776357E-15,-9.84252,34.68019,-9.84252,0,8.543307,-19.68504,-8.543307,-19.68504,9.192913,-17.04232,-19.68504,6.971046E-15,-19.68504,39.37008,-13.05118,0,-13.05118,39.37008,18.12468,-1.820301E-16,14.57755,-1.820301E-16,18.12468,39.37008,14.57755,34.68019,14.57755,37.40157,16.97446,39.37008,19.68504,7.454286E-14,-19.68504,7.454286E-14,19.68504,39.37008,8.543307,37.40157,10.98425,39.37008,14.92126,39.37008,-8.543307,37.40157,-19.68504,39.37008,-14.92126,39.37008,-10.98425,39.37008,10.98425,-19.68504,12.05949,-15.31078,14.92126,-19.68504,13.12336,-15.74803,-14.92126,-19.68504,-13.12336,-15.74803,-10.98425,-19.68504,-12.05949,-15.31078,13.24588,0,6.151614,0,13.24588,39.37008,6.151614,39.37008,14.35528,37.40157,11.6339,34.68019,11.6339,37.40157,19.68504,-13.05118,19.68504,-19.68504,13.12336,-15.74803,-19.68504,-19.68504,9.84252,-14.39961,1.136868E-13,-15.74803,3.28084,-14.39961,-3.28084,-14.39961,-9.84252,-14.39961,-13.12336,-15.74803,-19.68504,-13.05118,19.68504,39.37008,19.68504,3.539276E-14,13.05118,39.37008,13.05118,2.842171E-14,-11.6339,34.68019,-14.35528,37.40157,-11.6339,37.40157,-14.57755,-1.07749E-14,-18.12468,-1.07749E-14,-14.57755,34.68019,-18.12468,39.37008,-14.57755,37.40157,-16.97446,39.37008,-6.151614,0,-13.24588,0,-6.151614,39.37008,-13.24588,39.37008,19.68504,-13.05118,19.68504,-19.68504,13.24588,42.1804,14.74252,36.81756,6.151614,42.1804,-19.68504,-19.68504,-19.68504,-13.05118,-6.151614,42.1804,-14.74252,36.81756,-13.24588,42.1804,17.07667,33.89239,14.35528,33.89239,16.494,36.97358,11.6339,33.89239,11.98953,36.97358,-11.98953,36.97358,-11.6339,33.89239,-16.494,36.97358,-17.07667,33.89239,-14.35528,33.89239 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,10,12,11,13,11,12,14,16,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,26,25,23,27,29,28,30,28,29,31,30,29,32,31,29,30,33,28,34,28,33,35,34,33,36,35,33,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,54,53,55,53,54,56,55,54,57,55,56,58,57,56,59,55,57,60,55,59,61,55,60,62,55,61,63,65,64,66,64,65,67,69,68,70,72,71,73,71,72,74,73,72,75,73,74,76,78,77,79,77,78,40,39,80,81,80,39,82,84,83,85,41,86,42,86,41,87,89,88,90,92,91,93,91,92,94,93,92,95,97,96,98,96,97,99,96,98 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,4,4,4,4,4,4, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_waterfallTop_rock, Model::RootNode + C: "OO",5243017348658096887,0 + + ;Geometry::, Model::Mesh cliff_waterfallTop_rock + C: "OO",5212868920062574860,5243017348658096887 + + ;Material::water, Model::Mesh cliff_waterfallTop_rock + C: "OO",3042,5243017348658096887 + + ;Material::_defaultMat, Model::Mesh cliff_waterfallTop_rock + C: "OO",3004,5243017348658096887 + + ;Material::dirt, Model::Mesh cliff_waterfallTop_rock + C: "OO",3020,5243017348658096887 + + ;Material::grass, Model::Mesh cliff_waterfallTop_rock + C: "OO",3024,5243017348658096887 + + ;Material::dirtDark, Model::Mesh cliff_waterfallTop_rock + C: "OO",3022,5243017348658096887 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_rock.fbx.import new file mode 100644 index 0000000..8e90033 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://basaqmcvdpjos" +path="res://.godot/imported/cliff_waterfallTop_rock.fbx-bf7f4aa7a9a182f61016d040fc30e2cd.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_rock.fbx" +dest_files=["res://.godot/imported/cliff_waterfallTop_rock.fbx-bf7f4aa7a9a182f61016d040fc30e2cd.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_stone.fbx new file mode 100644 index 0000000..69739a5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_stone.fbx @@ -0,0 +1,392 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 775 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_waterfallTop_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_waterfallTop_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5436636067376435305, "Model::cliff_waterfallTop_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5052714248846523386, "Geometry::", "Mesh" { + Vertices: *300 { + a: 2.335,9.499999,-4.32875,-2.335,9.499999,-4.32875,2.17,9.499999,-5,-2.17,9.499999,-5,2.5,8.808768,-3.6575,-2.5,8.808768,-3.6575,2.335,9.499999,-4.32875,-2.335,9.499999,-4.32875,2.5,0,-3.6575,0.8333334,4.511947E-16,-3.6575,2.5,8.808768,-3.6575,-0.8333334,4.511947E-16,-3.6575,-2.5,8.808768,-3.6575,-2.5,0,-3.6575,0.8333334,4.511947E-16,-3.6575,2.887646E-14,1.804779E-15,-4,-0.8333334,4.511947E-16,-3.6575,-5,1.770646E-15,-5,-5,10,-5,-5,0,-3.315,-5,10,-3.315,3.333333,0,-4,2.5,0,-3.6575,3.333333,10,-4,2.5,8.808768,-3.6575,2.5,9.499999,-3.6575,3.06311,10,-3.888938,-5,1.770646E-15,-5,5,1.770646E-15,-5,-5,10,-5,-2.17,9.499999,-5,-2.79,10,-5,-3.79,10,-5,2.17,9.499999,-5,5,10,-5,3.79,10,-5,2.79,10,-5,5,0,-3.315,3.333333,0,-4,5,10,-3.315,3.333333,10,-4,-2.335,9.499999,-4.32875,-2.5,8.808768,-3.6575,-2.5,9.499999,-3.6575,5,0,-3.315,5,1.770646E-15,-5,3.333333,0,-4,-5,1.770646E-15,-5,2.5,0,-3.6575,2.887646E-14,1.804779E-15,-4,0.8333334,4.511947E-16,-3.6575,-0.8333334,4.511947E-16,-3.6575,-2.5,0,-3.6575,-3.333333,0,-4,-5,0,-3.315,5,10,-5,5,1.770646E-15,-5,5,10,-3.315,5,0,-3.315,2.5,8.808768,-3.6575,2.335,9.499999,-4.32875,2.5,9.499999,-3.6575,-2.5,0,-3.6575,-3.333333,0,-4,-2.5,8.808768,-3.6575,-3.333333,10,-4,-2.5,9.499999,-3.6575,-3.06311,10,-3.888938,-3.333333,0,-4,-5,0,-3.315,-3.333333,10,-4,-5,10,-3.315,-3.333333,10,-4,-5,10,-3.315,-3.79,10,-5,-5,10,-5,5,10,-3.315,5,9,-2.315,3.333333,10,-4,5,10,-5,5,10,-3.315,3.79,10,-5,3.333333,10,-4,-3.333333,10,-4,-5,9,-2.315,-5,10,-3.315,-2.79,10,-5,-3.06311,10,-3.888938,2.79,10,-5,3.06311,10,-3.888938,-2.17,9.499999,-5,-2.335,9.499999,-4.32875,-2.79,10,-5,-2.5,9.499999,-3.6575,-3.06311,10,-3.888938,3.06311,10,-3.888938,2.5,9.499999,-3.6575,2.79,10,-5,2.17,9.499999,-5,2.335,9.499999,-4.32875 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,10,12,-12,13,11,-13,14,16,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,26,25,-24,27,29,-29,30,28,-30,31,30,-30,32,31,-30,30,33,-29,34,28,-34,35,34,-34,36,35,-34,37,39,-39,40,38,-40,41,43,-43,44,46,-46,47,45,-47,48,47,-47,49,47,-49,50,49,-49,51,47,-50,52,47,-52,53,47,-53,54,47,-54,55,57,-57,58,56,-58,59,61,-61,62,64,-64,65,63,-65,66,65,-65,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,81,-81,82,80,-82,83,85,-85,86,74,-88,72,87,-75,81,88,-83,89,82,-89,90,92,-92,93,91,-93,94,93,-93,95,97,-97,98,96,-98,99,96,-99 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0.6966615,0.7173999,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.9710923,0,0.2387042,0.9710923,0,0.2387042,0.9710923,0,0.2387042,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9710923,0,0.2387042,-0.9710923,0,0.2387042,-0.9710923,0,0.2387042,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,-0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0.2790744,0.6790131,0.6790131,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029,-0.6204097,0.769308,0.1525029 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *200 { + a: -9.192913,-17.04232,9.192913,-17.04232,-8.543307,-19.68504,8.543307,-19.68504,9.84252,34.91122,-9.84252,34.91122,9.192913,38.70462,-9.192913,38.70462,9.84252,0,3.28084,1.776357E-15,9.84252,34.68019,-3.28084,1.776357E-15,-9.84252,34.68019,-9.84252,0,8.543307,-19.68504,-8.543307,-19.68504,9.192913,-17.04232,-19.68504,6.971046E-15,-19.68504,39.37008,-13.05118,0,-13.05118,39.37008,18.12468,-1.820301E-16,14.57755,-1.820301E-16,18.12468,39.37008,14.57755,34.68019,14.57755,37.40157,16.97446,39.37008,19.68504,7.454286E-14,-19.68504,7.454286E-14,19.68504,39.37008,8.543307,37.40157,10.98425,39.37008,14.92126,39.37008,-8.543307,37.40157,-19.68504,39.37008,-14.92126,39.37008,-10.98425,39.37008,13.24588,0,6.151614,0,13.24588,39.37008,6.151614,39.37008,14.35528,37.40157,11.6339,34.68019,11.6339,37.40157,19.68504,-13.05118,19.68504,-19.68504,13.12336,-15.74803,-19.68504,-19.68504,9.84252,-14.39961,1.136868E-13,-15.74803,3.28084,-14.39961,-3.28084,-14.39961,-9.84252,-14.39961,-13.12336,-15.74803,-19.68504,-13.05118,19.68504,39.37008,19.68504,3.539276E-14,13.05118,39.37008,13.05118,2.842171E-14,-11.6339,34.68019,-14.35528,37.40157,-11.6339,37.40157,-14.57755,-1.07749E-14,-18.12468,-1.07749E-14,-14.57755,34.68019,-18.12468,39.37008,-14.57755,37.40157,-16.97446,39.37008,-6.151614,0,-13.24588,0,-6.151614,39.37008,-13.24588,39.37008,13.12336,-15.74803,19.68504,-13.05118,14.92126,-19.68504,19.68504,-19.68504,13.24588,42.1804,14.74252,36.81756,6.151614,42.1804,-19.68504,-19.68504,-19.68504,-13.05118,-14.92126,-19.68504,-13.12336,-15.74803,-6.151614,42.1804,-14.74252,36.81756,-13.24588,42.1804,10.98425,-19.68504,12.05949,-15.31078,-10.98425,-19.68504,-12.05949,-15.31078,17.07667,33.89239,14.35528,33.89239,16.494,36.97358,11.6339,33.89239,11.98953,36.97358,-11.98953,36.97358,-11.6339,33.89239,-16.494,36.97358,-17.07667,33.89239,-14.35528,33.89239 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,10,12,11,13,11,12,14,16,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,26,25,23,27,29,28,30,28,29,31,30,29,32,31,29,30,33,28,34,28,33,35,34,33,36,35,33,37,39,38,40,38,39,41,43,42,44,46,45,47,45,46,48,47,46,49,47,48,50,49,48,51,47,49,52,47,51,53,47,52,54,47,53,55,57,56,58,56,57,59,61,60,62,64,63,65,63,64,66,65,64,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,81,80,82,80,81,83,85,84,86,74,87,72,87,74,81,88,82,89,82,88,90,92,91,93,91,92,94,93,92,95,97,96,98,96,97,99,96,98 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,4,4,4,4,5,5,5,5,5,5, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_waterfallTop_stone, Model::RootNode + C: "OO",5436636067376435305,0 + + ;Geometry::, Model::Mesh cliff_waterfallTop_stone + C: "OO",5052714248846523386,5436636067376435305 + + ;Material::water, Model::Mesh cliff_waterfallTop_stone + C: "OO",3042,5436636067376435305 + + ;Material::_defaultMat, Model::Mesh cliff_waterfallTop_stone + C: "OO",3004,5436636067376435305 + + ;Material::stone, Model::Mesh cliff_waterfallTop_stone + C: "OO",3038,5436636067376435305 + + ;Material::grass, Model::Mesh cliff_waterfallTop_stone + C: "OO",3024,5436636067376435305 + + ;Material::dirt, Model::Mesh cliff_waterfallTop_stone + C: "OO",3020,5436636067376435305 + + ;Material::dirtDark, Model::Mesh cliff_waterfallTop_stone + C: "OO",3022,5436636067376435305 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_stone.fbx.import new file mode 100644 index 0000000..f0f81f4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://qbfiim6orm00" +path="res://.godot/imported/cliff_waterfallTop_stone.fbx-c102a53bb5b91e222c07a588bc5d2723.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfallTop_stone.fbx" +dest_files=["res://.godot/imported/cliff_waterfallTop_stone.fbx-c102a53bb5b91e222c07a588bc5d2723.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_rock.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_rock.fbx new file mode 100644 index 0000000..b687825 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_rock.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 461 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_waterfall_rock.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_waterfall_rock.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4824184228088395569, "Model::cliff_waterfall_rock", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5223106888368122494, "Geometry::", "Mesh" { + Vertices: *168 { + a: -5,0,-5,5,0,-5,-5,10,-5,5,10,-5,-5,0,-5,-5,10,-5,-5,-1.770646E-15,-3.315,-5,10,-3.315,5,10,-3.315,3.333333,10,-4,5,10,-5,-5,10,-5,2.5,10,-3.6575,-2.5,10,-3.6575,-3.333333,10,-4,-5,10,-3.315,-5,0,-5,3.333333,-1.770646E-15,-4,5,0,-5,5,-1.770646E-15,-3.315,2.5,-1.770646E-15,-3.6575,8.662937E-13,3.413295E-17,-4,0.8333334,-1.319451E-15,-3.6575,-0.8333334,-1.319451E-15,-3.6575,-2.5,-1.770646E-15,-3.6575,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-2.5,-1.770646E-15,-3.6575,-3.333333,-1.770646E-15,-4,-2.5,10,-3.6575,-3.333333,10,-4,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-3.333333,10,-4,-5,10,-3.315,3.333333,-1.770646E-15,-4,2.5,-1.770646E-15,-3.6575,3.333333,10,-4,2.5,10,-3.6575,5,10,-5,5,0,-5,5,10,-3.315,5,-1.770646E-15,-3.315,5,-1.770646E-15,-3.315,3.333333,-1.770646E-15,-4,5,10,-3.315,3.333333,10,-4,2.5,-1.770646E-15,-3.6575,0.8333334,-1.319451E-15,-3.6575,2.5,10,-3.6575,-0.8333334,-1.319451E-15,-3.6575,-2.5,10,-3.6575,-2.5,-1.770646E-15,-3.6575,0.8333334,-1.319451E-15,-3.6575,8.662937E-13,3.413295E-17,-4,-0.8333334,-1.319451E-15,-3.6575 + } + PolygonVertexIndex: *102 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,14,13,-12,15,14,-12,16,18,-18,19,17,-19,20,16,-18,21,16,-21,22,21,-21,23,16,-22,24,16,-24,25,16,-25,26,16,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,50,-50,50,51,-53,53,55,-55 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *306 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *112 { + a: 19.68504,-3.716686E-29,-19.68504,-3.716686E-29,19.68504,39.37008,-19.68504,39.37008,-19.68504,0,-19.68504,39.37008,-13.05118,-6.971046E-15,-13.05118,39.37008,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,-9.84252,-14.39961,9.84252,-14.39961,13.12336,-15.74803,19.68504,-13.05118,-19.68504,-19.68504,13.12336,-15.74803,19.68504,-19.68504,19.68504,-13.05118,9.84252,-14.39961,3.410605E-12,-15.74803,3.28084,-14.39961,-3.28084,-14.39961,-9.84252,-14.39961,-13.12336,-15.74803,-19.68504,-13.05118,-14.57755,-6.971046E-15,-18.12468,-6.971046E-15,-14.57755,39.37008,-18.12468,39.37008,-6.151614,-6.971046E-15,-13.24588,-6.971046E-15,-6.151614,39.37008,-13.24588,39.37008,18.12468,-6.971046E-15,14.57755,-6.971046E-15,18.12468,39.37008,14.57755,39.37008,19.68504,39.37008,19.68504,2.842171E-14,13.05118,39.37008,13.05118,2.145066E-14,13.24588,-6.971046E-15,6.151614,-6.971046E-15,13.24588,39.37008,6.151614,39.37008,9.84252,-6.971046E-15,3.28084,-5.194689E-15,9.84252,39.37008,-3.28084,-5.194689E-15,-9.84252,39.37008,-9.84252,-6.971046E-15,-18.12468,39.37008,-14.57755,39.37008,-18.12468,-6.971046E-15 + } + UVIndex: *102 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,14,13,11,15,14,11,16,18,17,19,17,18,20,16,17,21,16,20,22,21,20,23,16,21,24,16,23,25,16,24,26,16,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,50,49,50,51,52,53,55,54 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *34 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_waterfall_rock, Model::RootNode + C: "OO",4824184228088395569,0 + + ;Geometry::, Model::Mesh cliff_waterfall_rock + C: "OO",5223106888368122494,4824184228088395569 + + ;Material::dirt, Model::Mesh cliff_waterfall_rock + C: "OO",3020,4824184228088395569 + + ;Material::water, Model::Mesh cliff_waterfall_rock + C: "OO",3042,4824184228088395569 + + ;Material::_defaultMat, Model::Mesh cliff_waterfall_rock + C: "OO",3004,4824184228088395569 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_rock.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_rock.fbx.import new file mode 100644 index 0000000..d723956 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_rock.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dattjfutshajf" +path="res://.godot/imported/cliff_waterfall_rock.fbx-80983002e0aa1a5447aafbd6522ce1b0.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_rock.fbx" +dest_files=["res://.godot/imported/cliff_waterfall_rock.fbx-80983002e0aa1a5447aafbd6522ce1b0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_stone.fbx new file mode 100644 index 0000000..b504757 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 555 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "cliff_waterfall_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "cliff_waterfall_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5197927537367025202, "Model::cliff_waterfall_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4629126067903844837, "Geometry::", "Mesh" { + Vertices: *318 { + a: -5,0,-5,5,0,-5,-5,10,-5,5,10,-5,-5,10,-5,5,0,-5,-5,0,-5,5,10,-5,2.5,10,-3.6575,0.8333334,-1.319451E-15,-3.6575,2.5,-1.770646E-15,-3.6575,-0.8333334,-1.319451E-15,-3.6575,-2.5,10,-3.6575,-2.5,-1.770646E-15,-3.6575,-5,0,-5,-5,10,-5,-5,-1.770646E-15,-3.315,-5,10,-3.315,-5,-1.770646E-15,-3.315,-5,10,-5,-5,0,-5,-5,10,-3.315,5,10,-3.315,3.333333,10,-4,5,10,-5,-5,10,-5,2.5,10,-3.6575,-2.5,10,-3.6575,-3.333333,10,-4,-5,10,-3.315,5,10,-5,3.333333,10,-4,5,10,-3.315,-5,10,-5,2.5,10,-3.6575,-2.5,10,-3.6575,-3.333333,10,-4,-5,10,-3.315,-5,0,-5,3.333333,-1.770646E-15,-4,5,0,-5,5,-1.770646E-15,-3.315,2.5,-1.770646E-15,-3.6575,8.662937E-13,3.413295E-17,-4,0.8333334,-1.319451E-15,-3.6575,-0.8333334,-1.319451E-15,-3.6575,-2.5,-1.770646E-15,-3.6575,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,5,0,-5,3.333333,-1.770646E-15,-4,-5,0,-5,5,-1.770646E-15,-3.315,2.5,-1.770646E-15,-3.6575,8.662937E-13,3.413295E-17,-4,0.8333334,-1.319451E-15,-3.6575,-0.8333334,-1.319451E-15,-3.6575,-2.5,-1.770646E-15,-3.6575,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-2.5,-1.770646E-15,-3.6575,-3.333333,-1.770646E-15,-4,-2.5,10,-3.6575,-3.333333,10,-4,-2.5,10,-3.6575,-3.333333,-1.770646E-15,-4,-2.5,-1.770646E-15,-3.6575,-3.333333,10,-4,-3.333333,-1.770646E-15,-4,-5,-1.770646E-15,-3.315,-3.333333,10,-4,-5,10,-3.315,-3.333333,10,-4,-5,-1.770646E-15,-3.315,-3.333333,-1.770646E-15,-4,-5,10,-3.315,3.333333,-1.770646E-15,-4,2.5,-1.770646E-15,-3.6575,3.333333,10,-4,2.5,10,-3.6575,3.333333,10,-4,2.5,-1.770646E-15,-3.6575,3.333333,-1.770646E-15,-4,2.5,10,-3.6575,5,10,-5,5,0,-5,5,10,-3.315,5,-1.770646E-15,-3.315,5,10,-3.315,5,0,-5,5,10,-5,5,-1.770646E-15,-3.315,5,-1.770646E-15,-3.315,3.333333,-1.770646E-15,-4,5,10,-3.315,3.333333,10,-4,5,10,-3.315,3.333333,-1.770646E-15,-4,5,-1.770646E-15,-3.315,3.333333,10,-4,2.5,-1.770646E-15,-3.6575,0.8333334,-1.319451E-15,-3.6575,2.5,10,-3.6575,-0.8333334,-1.319451E-15,-3.6575,-2.5,10,-3.6575,-2.5,-1.770646E-15,-3.6575 + } + PolygonVertexIndex: *204 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,9,11,-9,11,12,-9,12,11,-14,14,16,-16,17,15,-17,18,20,-20,19,21,-19,22,24,-24,25,23,-25,26,23,-26,27,26,-26,28,27,-26,29,28,-26,30,32,-32,31,33,-31,31,34,-34,34,35,-34,35,36,-34,36,37,-34,38,40,-40,41,39,-41,42,38,-40,43,38,-43,44,43,-43,45,38,-44,44,45,-44,46,38,-46,47,38,-47,48,38,-48,49,51,-51,50,52,-50,51,53,-51,51,54,-54,54,55,-54,51,56,-55,56,55,-55,51,57,-57,51,58,-58,51,59,-59,60,62,-62,63,61,-63,64,66,-66,65,67,-65,68,70,-70,71,69,-71,72,74,-74,73,75,-73,76,78,-78,79,77,-79,80,82,-82,81,83,-81,84,86,-86,87,85,-87,88,90,-90,89,91,-89,92,94,-94,95,93,-95,96,98,-98,97,99,-97,100,102,-102,103,101,-103,104,103,-103,103,104,-106 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *612 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,0.380145,0,0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,-0.380145,0,-0.9249269,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,-0.380145,0,0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0.380145,0,-0.9249269,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *212 { + a: 19.68504,-3.716686E-29,-19.68504,-3.716686E-29,19.68504,39.37008,-19.68504,39.37008,19.68504,39.37008,-19.68504,-3.716686E-29,19.68504,-3.716686E-29,-19.68504,39.37008,9.84252,39.37008,3.28084,-5.194689E-15,9.84252,-6.971046E-15,-3.28084,-5.194689E-15,-9.84252,39.37008,-9.84252,-6.971046E-15,-19.68504,0,-19.68504,39.37008,-13.05118,-6.971046E-15,-13.05118,39.37008,-13.05118,-6.971046E-15,-19.68504,39.37008,-19.68504,0,-13.05118,39.37008,-19.68504,-13.05118,-13.12336,-15.74803,-19.68504,-19.68504,19.68504,-19.68504,-9.84252,-14.39961,9.84252,-14.39961,13.12336,-15.74803,19.68504,-13.05118,-19.68504,-19.68504,-13.12336,-15.74803,-19.68504,-13.05118,19.68504,-19.68504,-9.84252,-14.39961,9.84252,-14.39961,13.12336,-15.74803,19.68504,-13.05118,-19.68504,-19.68504,13.12336,-15.74803,19.68504,-19.68504,19.68504,-13.05118,9.84252,-14.39961,3.410605E-12,-15.74803,3.28084,-14.39961,-3.28084,-14.39961,-9.84252,-14.39961,-13.12336,-15.74803,-19.68504,-13.05118,19.68504,-19.68504,13.12336,-15.74803,-19.68504,-19.68504,19.68504,-13.05118,9.84252,-14.39961,3.410605E-12,-15.74803,3.28084,-14.39961,-3.28084,-14.39961,-9.84252,-14.39961,-13.12336,-15.74803,-19.68504,-13.05118,-14.57755,-6.971046E-15,-18.12468,-6.971046E-15,-14.57755,39.37008,-18.12468,39.37008,-14.57755,39.37008,-18.12468,-6.971046E-15,-14.57755,-6.971046E-15,-18.12468,39.37008,-6.151614,-6.971046E-15,-13.24588,-6.971046E-15,-6.151614,39.37008,-13.24588,39.37008,-6.151614,39.37008,-13.24588,-6.971046E-15,-6.151614,-6.971046E-15,-13.24588,39.37008,18.12468,-6.971046E-15,14.57755,-6.971046E-15,18.12468,39.37008,14.57755,39.37008,18.12468,39.37008,14.57755,-6.971046E-15,18.12468,-6.971046E-15,14.57755,39.37008,19.68504,39.37008,19.68504,2.842171E-14,13.05118,39.37008,13.05118,2.145066E-14,13.05118,39.37008,19.68504,2.842171E-14,19.68504,39.37008,13.05118,2.145066E-14,13.24588,-6.971046E-15,6.151614,-6.971046E-15,13.24588,39.37008,6.151614,39.37008,13.24588,39.37008,6.151614,-6.971046E-15,13.24588,-6.971046E-15,6.151614,39.37008,9.84252,-6.971046E-15,3.28084,-5.194689E-15,9.84252,39.37008,-3.28084,-5.194689E-15,-9.84252,39.37008,-9.84252,-6.971046E-15 + } + UVIndex: *204 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,9,11,8,11,12,8,12,11,13,14,16,15,17,15,16,18,20,19,19,21,18,22,24,23,25,23,24,26,23,25,27,26,25,28,27,25,29,28,25,30,32,31,31,33,30,31,34,33,34,35,33,35,36,33,36,37,33,38,40,39,41,39,40,42,38,39,43,38,42,44,43,42,45,38,43,44,45,43,46,38,45,47,38,46,48,38,47,49,51,50,50,52,49,51,53,50,51,54,53,54,55,53,51,56,54,56,55,54,51,57,56,51,58,57,51,59,58,60,62,61,63,61,62,64,66,65,65,67,64,68,70,69,71,69,70,72,74,73,73,75,72,76,78,77,79,77,78,80,82,81,81,83,80,84,86,85,87,85,86,88,90,89,89,91,88,92,94,93,95,93,94,96,98,97,97,99,96,100,102,101,103,101,102,104,103,102,103,104,105 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *68 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh cliff_waterfall_stone, Model::RootNode + C: "OO",5197927537367025202,0 + + ;Geometry::, Model::Mesh cliff_waterfall_stone + C: "OO",4629126067903844837,5197927537367025202 + + ;Material::stone, Model::Mesh cliff_waterfall_stone + C: "OO",3038,5197927537367025202 + + ;Material::water, Model::Mesh cliff_waterfall_stone + C: "OO",3042,5197927537367025202 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_stone.fbx.import new file mode 100644 index 0000000..4bb82f4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d3ooec8c6ide0" +path="res://.godot/imported/cliff_waterfall_stone.fbx-bba6d88ed8dbde1ea981af58f9b7c615.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/cliff_waterfall_stone.fbx" +dest_files=["res://.godot/imported/cliff_waterfall_stone.fbx-bba6d88ed8dbde1ea981af58f9b7c615.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crop_carrot.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crop_carrot.fbx new file mode 100644 index 0000000..d6a3c5e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crop_carrot.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 881 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crop_carrot.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crop_carrot.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5531721192900865815, "Model::crop_carrot", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5343747873765607259, "Geometry::", "Mesh" { + Vertices: *840 { + a: -1.206398,4.200111,-0.3321,-1.206398,4.200111,0.3321,-1.71571,4.16081,-0.1107,-1.71571,4.16081,0.1107,-1.71571,4.16081,-0.1107,-1.206398,4.200111,0.3321,-1.206398,4.200111,-0.3321,-1.71571,4.16081,0.1107,0.3321,4.200111,-1.206398,-0.3320999,4.200111,-1.206398,0.1107001,4.16081,-1.71571,-0.1106999,4.16081,-1.71571,0.1107001,4.16081,-1.71571,-0.3320999,4.200111,-1.206398,0.3321,4.200111,-1.206398,-0.1106999,4.16081,-1.71571,-0.1107,3.031,0.1107,0.1107,3.031,0.1107,-0.2214,3.947298,0.7322389,0.2214,3.947298,0.7322389,-0.2214,3.947298,0.7322389,0.1107,3.031,0.1107,-0.1107,3.031,0.1107,0.2214,3.947298,0.7322389,0.3321,4.200111,1.206398,0.1107,4.16081,1.71571,-0.3321,4.200111,1.206398,-0.1107,4.16081,1.71571,-0.3321,4.200111,1.206398,0.1107,4.16081,1.71571,0.3321,4.200111,1.206398,-0.1107,4.16081,1.71571,0.6389732,5.770818,-0.3321,0.6389732,5.770818,0.3321,0.2705598,4.954516,-0.2214,0.2705598,4.954516,0.2214,0.2705598,4.954516,-0.2214,0.6389732,5.770818,0.3321,0.6389732,5.770818,-0.3321,0.2705598,4.954516,0.2214,0.3321,4.200111,1.206398,-0.3321,4.200111,1.206398,0.2214,3.947298,0.7322389,-0.2214,3.947298,0.7322389,0.2214,3.947298,0.7322389,-0.3321,4.200111,1.206398,0.3321,4.200111,1.206398,-0.2214,3.947298,0.7322389,-0.2214,4.594834,0.2705598,0.2214,4.594834,0.2705598,-0.3321,5.258494,0.6389732,0.3321,5.258494,0.6389732,-0.3321,5.258494,0.6389732,0.2214,4.594834,0.2705598,-0.2214,4.594834,0.2705598,0.3321,5.258494,0.6389732,-0.1107,3.031,0.1107,0.1107,3.031,0.1107,-0.2214,4.594834,0.2705598,0.2214,4.594834,0.2705598,-0.2214,4.594834,0.2705598,0.1107,3.031,0.1107,-0.1107,3.031,0.1107,0.2214,4.594834,0.2705598,-0.6389732,4.657071,-0.3321,-0.2705597,4.172599,-0.2214,-0.6389732,4.657071,0.3321,-0.2705598,4.172599,0.2214,-0.6389732,4.657071,0.3321,-0.2705597,4.172599,-0.2214,-0.6389732,4.657071,-0.3321,-0.2705598,4.172599,0.2214,0.2705598,4.954516,-0.2214,0.2705598,4.954516,0.2214,0.1107,3.031,-0.1107,0.1107,3.031,0.1107,0.1107,3.031,-0.1107,0.2705598,4.954516,0.2214,0.2705598,4.954516,-0.2214,0.1107,3.031,0.1107,1.206398,6.194037,-0.1107,1.206398,6.194037,0.1107,0.6389732,5.770818,-0.3321,0.6389732,5.770818,0.3321,0.6389732,5.770818,-0.3321,1.206398,6.194037,0.1107,1.206398,6.194037,-0.1107,0.6389732,5.770818,0.3321,0.3321,5.258494,0.6389732,0.1107,5.602574,1.206398,-0.3321,5.258494,0.6389732,-0.1107,5.602574,1.206398,-0.3321,5.258494,0.6389732,0.1107,5.602574,1.206398,0.3321,5.258494,0.6389732,-0.1107,5.602574,1.206398,-0.2705597,4.172599,-0.2214,-0.1107,3.031,-0.1107,-0.2705598,4.172599,0.2214,-0.1107,3.031,0.1107,-0.2705598,4.172599,0.2214,-0.1107,3.031,-0.1107,-0.2705597,4.172599,-0.2214,-0.1107,3.031,0.1107,-0.6389732,4.657071,-0.3321,-0.6389732,4.657071,0.3321,-1.206398,4.90825,-0.1107,-1.206398,4.90825,0.1107,-1.206398,4.90825,-0.1107,-0.6389732,4.657071,0.3321,-0.6389732,4.657071,-0.3321,-1.206398,4.90825,0.1107,0.2214,4.594834,-0.2705598,-0.2214,4.594834,-0.2705598,0.3321,5.258494,-0.6389732,-0.3321,5.258494,-0.6389732,0.3321,5.258494,-0.6389732,-0.2214,4.594834,-0.2705598,0.2214,4.594834,-0.2705598,-0.3321,5.258494,-0.6389732,0.1107,3.031,-0.1107,0.1107,3.031,0.1107,-0.1107,3.031,-0.1107,-0.1107,3.031,0.1107,0.7322389,3.947298,-0.2214,0.7322389,3.947298,0.2214,0.1107,3.031,-0.1107,0.1107,3.031,0.1107,0.1107,3.031,-0.1107,0.7322389,3.947298,0.2214,0.7322389,3.947298,-0.2214,0.1107,3.031,0.1107,-0.7322389,3.947298,-0.2214,-0.7322389,3.947298,0.2214,-1.206398,4.200111,-0.3321,-1.206398,4.200111,0.3321,-1.206398,4.200111,-0.3321,-0.7322389,3.947298,0.2214,-0.7322389,3.947298,-0.2214,-1.206398,4.200111,0.3321,-0.7322389,3.947298,-0.2214,-0.1107,3.031,-0.1107,-0.7322389,3.947298,0.2214,-0.1107,3.031,0.1107,-0.7322389,3.947298,0.2214,-0.1107,3.031,-0.1107,-0.7322389,3.947298,-0.2214,-0.1107,3.031,0.1107,1.71571,4.16081,-0.1107,1.71571,4.16081,0.1107,1.206398,4.200111,-0.3321,1.206398,4.200111,0.3321,1.206398,4.200111,-0.3321,1.71571,4.16081,0.1107,1.71571,4.16081,-0.1107,1.206398,4.200111,0.3321,1.206398,4.200111,-0.3321,1.206398,4.200111,0.3321,0.7322389,3.947298,-0.2214,0.7322389,3.947298,0.2214,0.7322389,3.947298,-0.2214,1.206398,4.200111,0.3321,1.206398,4.200111,-0.3321,0.7322389,3.947298,0.2214,0.1107,3.031,-0.1107,-0.1107,3.031,-0.1107,0.2214,3.947298,-0.7322389,-0.2214,3.947298,-0.7322389,0.2214,3.947298,-0.7322389,-0.1107,3.031,-0.1107,0.1107,3.031,-0.1107,-0.2214,3.947298,-0.7322389,0.3321,5.258494,-0.6389732,-0.3321,5.258494,-0.6389732,0.1107,5.602574,-1.206398,-0.1107,5.602574,-1.206398,0.1107,5.602574,-1.206398,-0.3321,5.258494,-0.6389732,0.3321,5.258494,-0.6389732,-0.1107,5.602574,-1.206398,0.1107,3.031,-0.1107,-0.1107,3.031,-0.1107,0.2214,4.594834,-0.2705598,-0.2214,4.594834,-0.2705598,0.2214,4.594834,-0.2705598,-0.1107,3.031,-0.1107,0.1107,3.031,-0.1107,-0.2214,4.594834,-0.2705598,0.3321,4.200111,-1.206398,0.2214,3.947298,-0.7322389,-0.3320999,4.200111,-1.206398,-0.2214,3.947298,-0.7322389,-0.3320999,4.200111,-1.206398,0.2214,3.947298,-0.7322389,0.3321,4.200111,-1.206398,-0.2214,3.947298,-0.7322389,0.363315,3.031,-0.20976,0.363315,3.031,0.20976,-1.082867E-14,3.031,-0.41952,-0.363315,3.031,-0.20976,-1.082867E-14,3.031,0.41952,-0.363315,3.031,0.20976,0,0.262,-0.393,0.340348,0.262,-0.1965,-7.219114E-15,2.631,-0.6659999,0.5767729,2.631,-0.333,0.2314366,-4.511947E-16,0.13362,0,-4.511947E-16,0.26724,0.340348,0.262,0.1965,0,0.262,0.393,0.340348,0.262,-0.1965,0.2314366,-4.511947E-16,-0.13362,0.340348,0.262,0.1965,0.2314366,-4.511947E-16,0.13362,0,-4.511947E-16,0.26724,-0.2314366,-4.511947E-16,0.13362,0,0.262,0.393,-0.340348,0.262,0.1965,-0.340348,0.262,-0.1965,0,0.262,-0.393,-0.5767729,2.631,-0.333,-7.219114E-15,2.631,-0.6659999,-0.340348,0.262,-0.1965,-0.340348,0.262,0.1965,-0.2314366,-4.511947E-16,-0.13362,-0.2314366,-4.511947E-16,0.13362,0.2314366,-4.511947E-16,0.13362,0.2314366,-4.511947E-16,-0.13362,0,-4.511947E-16,0.26724,0,-4.511947E-16,-0.26724,-0.2314366,-4.511947E-16,0.13362,-0.2314366,-4.511947E-16,-0.13362,0,-4.511947E-16,-0.26724,0.2314366,-4.511947E-16,-0.13362,0,0.262,-0.393,0.340348,0.262,-0.1965,-7.219114E-15,2.631,0.6659999,-0.5767729,2.631,0.333,-1.082867E-14,3.031,0.41952,-0.363315,3.031,0.20976,-0.2314366,-4.511947E-16,-0.13362,0,-4.511947E-16,-0.26724,-0.340348,0.262,-0.1965,0,0.262,-0.393,-0.5767729,2.631,-0.333,-0.363315,3.031,-0.20976,-0.5767729,2.631,0.333,-0.363315,3.031,0.20976,-0.5767729,2.631,-0.333,-7.219114E-15,2.631,-0.6659999,-0.363315,3.031,-0.20976,-1.082867E-14,3.031,-0.41952,-0.5767729,2.631,-0.333,-0.5767729,2.631,0.333,-0.340348,0.262,-0.1965,-0.340348,0.262,0.1965,0.5767729,2.631,-0.333,0.340348,0.262,-0.1965,0.5767729,2.631,0.333,0.340348,0.262,0.1965,0.340348,0.262,0.1965,0,0.262,0.393,0.5767729,2.631,0.333,-7.219114E-15,2.631,0.6659999,0.5767729,2.631,-0.333,0.5767729,2.631,0.333,0.363315,3.031,-0.20976,0.363315,3.031,0.20976,0.5767729,2.631,0.333,-7.219114E-15,2.631,0.6659999,0.363315,3.031,0.20976,-1.082867E-14,3.031,0.41952,-7.219114E-15,2.631,-0.6659999,0.5767729,2.631,-0.333,-1.082867E-14,3.031,-0.41952,0.363315,3.031,-0.20976,0,0.262,0.393,-0.340348,0.262,0.1965,-7.219114E-15,2.631,0.6659999,-0.5767729,2.631,0.333 + } + PolygonVertexIndex: *444 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,129,131,-129,132,134,-134,135,133,-135,136,138,-138,137,139,-137,140,142,-142,143,141,-143,144,146,-146,145,147,-145,148,150,-150,151,149,-151,152,154,-154,153,155,-153,156,158,-158,159,157,-159,160,162,-162,161,163,-161,164,166,-166,167,165,-167,168,170,-170,169,171,-169,172,174,-174,175,173,-175,176,178,-178,177,179,-177,180,182,-182,183,181,-183,184,186,-186,185,187,-185,188,190,-190,191,189,-191,192,194,-194,193,195,-193,196,198,-198,120,197,-199,122,120,-199,199,122,-199,123,122,-200,120,121,-198,200,197,-122,123,200,-122,201,200,-124,199,201,-124,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,229,-229,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1332 { + a: -0.07693703,0.997036,0,-0.07693703,0.997036,0,-0.07693703,0.997036,0,-0.07693703,0.997036,0,-0.07693703,0.997036,0,-0.07693703,0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0,0.997036,0.07693703,0,0.997036,0.07693703,0,0.997036,0.07693703,0,0.997036,0.07693703,0,0.997036,0.07693703,0,0.997036,0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0.7959921,0.605307,0,0.7959921,0.605307,0,0.7959921,0.605307,0,0.7959921,0.605307,0,0.7959921,0.605307,0,0.7959921,0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,0.9903375,0.1386784,0,0.9903375,0.1386784,0,0.9903375,0.1386784,0,0.9903375,0.1386784,0,0.9903375,0.1386784,0,0.9903375,0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,0.4047785,0.9144148,0,0.4047785,0.9144148,0,0.4047785,0.9144148,0,0.4047785,0.9144148,0,0.4047785,0.9144148,0,0.4047785,0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8275743,0.5613562,0,-0.8275743,0.5613562,0,-0.8275743,0.5613562,0,-0.8275743,0.5613562,0,-0.8275743,0.5613562,0,-0.8275743,0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0.4704844,0.8824083,0,0.4704844,0.8824083,0,0.4704844,0.8824083,0,0.4704844,0.8824083,0,0.4704844,0.8824083,0,0.4704844,0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,0.07693703,0.997036,0,0.07693703,0.997036,0,0.07693703,0.997036,0,0.07693703,0.997036,0,0.07693703,0.997036,0,0.07693703,0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0,0.101693,0.9948158,0,0.101693,0.9948158,0,0.101693,0.9948158,0,0.101693,0.9948158,0,0.101693,0.9948158,0,0.101693,0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4975285,-0.09930616,-0.8617446,0.4975285,-0.09930616,-0.8617446,0.4975285,-0.09930616,-0.8617446,0.4975285,-0.09930616,-0.8617446,0.4975285,-0.09930616,-0.8617446,0.4975285,-0.09930616,-0.8617446,0.461698,-0.3838485,0.7996844,0.461698,-0.3838485,0.7996844,0.461698,-0.3838485,0.7996844,0.461698,-0.3838485,0.7996844,0.461698,-0.3838485,0.7996844,0.461698,-0.3838485,0.7996844,0.9233961,-0.3838485,0,0.9233961,-0.3838485,0,0.9233961,-0.3838485,0,0.9233961,-0.3838485,0,0.9233961,-0.3838485,0,0.9233961,-0.3838485,0,-0.461698,-0.3838485,0.7996844,-0.461698,-0.3838485,0.7996844,-0.461698,-0.3838485,0.7996844,-0.461698,-0.3838485,0.7996844,-0.461698,-0.3838485,0.7996844,-0.461698,-0.3838485,0.7996844,-0.4975285,-0.09930616,-0.8617446,-0.4975285,-0.09930616,-0.8617446,-0.4975285,-0.09930616,-0.8617446,-0.4975285,-0.09930616,-0.8617446,-0.4975285,-0.09930616,-0.8617446,-0.4975285,-0.09930616,-0.8617446,-0.9233961,-0.3838485,0,-0.9233961,-0.3838485,0,-0.9233961,-0.3838485,0,-0.9233961,-0.3838485,0,-0.9233961,-0.3838485,0,-0.9233961,-0.3838485,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.461698,-0.3838485,-0.7996844,0.461698,-0.3838485,-0.7996844,0.461698,-0.3838485,-0.7996844,0.461698,-0.3838485,-0.7996844,0.461698,-0.3838485,-0.7996844,0.461698,-0.3838485,-0.7996844,-0.4411194,0.4708022,0.7640412,-0.4411194,0.4708022,0.7640412,-0.4411194,0.4708022,0.7640412,-0.4411194,0.4708022,0.7640412,-0.4411194,0.4708022,0.7640412,-0.4411194,0.4708022,0.7640412,-0.461698,-0.3838485,-0.7996844,-0.461698,-0.3838485,-0.7996844,-0.461698,-0.3838485,-0.7996844,-0.461698,-0.3838485,-0.7996844,-0.461698,-0.3838485,-0.7996844,-0.461698,-0.3838485,-0.7996844,-0.8822388,0.4708022,0,-0.8822388,0.4708022,0,-0.8822388,0.4708022,0,-0.8822388,0.4708022,0,-0.8822388,0.4708022,0,-0.8822388,0.4708022,0,-0.4411194,0.4708022,-0.7640412,-0.4411194,0.4708022,-0.7640412,-0.4411194,0.4708022,-0.7640412,-0.4411194,0.4708022,-0.7640412,-0.4411194,0.4708022,-0.7640412,-0.4411194,0.4708022,-0.7640412,-0.995057,-0.09930616,0,-0.995057,-0.09930616,0,-0.995057,-0.09930616,0,-0.995057,-0.09930616,0,-0.995057,-0.09930616,0,-0.995057,-0.09930616,0,0.995057,-0.09930616,0,0.995057,-0.09930616,0,0.995057,-0.09930616,0,0.995057,-0.09930616,0,0.995057,-0.09930616,0,0.995057,-0.09930616,0,0.4975285,-0.09930616,0.8617446,0.4975285,-0.09930616,0.8617446,0.4975285,-0.09930616,0.8617446,0.4975285,-0.09930616,0.8617446,0.4975285,-0.09930616,0.8617446,0.4975285,-0.09930616,0.8617446,0.8822388,0.4708022,0,0.8822388,0.4708022,0,0.8822388,0.4708022,0,0.8822388,0.4708022,0,0.8822388,0.4708022,0,0.8822388,0.4708022,0,0.4411194,0.4708022,0.7640412,0.4411194,0.4708022,0.7640412,0.4411194,0.4708022,0.7640412,0.4411194,0.4708022,0.7640412,0.4411194,0.4708022,0.7640412,0.4411194,0.4708022,0.7640412,0.4411194,0.4708022,-0.7640412,0.4411194,0.4708022,-0.7640412,0.4411194,0.4708022,-0.7640412,0.4411194,0.4708022,-0.7640412,0.4411194,0.4708022,-0.7640412,0.4411194,0.4708022,-0.7640412,-0.4975285,-0.09930616,0.8617446,-0.4975285,-0.09930616,0.8617446,-0.4975285,-0.09930616,0.8617446,-0.4975285,-0.09930616,0.8617446,-0.4975285,-0.09930616,0.8617446,-0.4975285,-0.09930616,0.8617446 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *560 { + a: -1.30748,-3.463301,1.30748,-3.463301,-0.4358267,-5.474426,0.4358268,-5.474426,-0.4358267,-5.474426,1.30748,-3.463301,-1.30748,-3.463301,0.4358268,-5.474426,-1.30748,-3.463301,1.30748,-3.463301,-0.4358267,-5.474426,0.4358268,-5.474426,-0.4358267,-5.474426,1.30748,-3.463301,-1.30748,-3.463301,0.4358268,-5.474426,0.4358268,10.12016,-0.4358268,10.12016,0.8716536,14.47925,-0.8716536,14.47925,0.8716536,14.47925,-0.4358268,10.12016,0.4358268,10.12016,-0.8716536,14.47925,1.30748,-3.463301,0.4358268,-5.474426,-1.30748,-3.463301,-0.4358268,-5.474426,-1.30748,-3.463301,0.4358268,-5.474426,1.30748,-3.463301,-0.4358268,-5.474426,-1.30748,21.74324,1.30748,21.74324,-0.8716536,18.2173,0.8716536,18.2173,-0.8716536,18.2173,1.30748,21.74324,-1.30748,21.74324,0.8716536,18.2173,-1.30748,11.97096,1.30748,11.97096,-0.8716536,9.855417,0.8716536,9.855417,-0.8716536,9.855417,1.30748,11.97096,-1.30748,11.97096,0.8716536,9.855417,0.8716536,16.33331,-0.8716536,16.33331,1.30748,19.32174,-1.30748,19.32174,1.30748,19.32174,-0.8716536,16.33331,0.8716536,16.33331,-1.30748,19.32174,0.4358268,11.91553,-0.4358268,11.91553,0.8716536,18.10444,-0.8716536,18.10444,0.8716536,18.10444,-0.4358268,11.91553,0.4358268,11.91553,-0.8716536,18.10444,1.30748,16.11719,0.8716536,13.72097,-1.30748,16.11719,-0.8716536,13.72097,-1.30748,16.11719,0.8716536,13.72097,1.30748,16.11719,-0.8716536,13.72097,-0.8716536,19.52718,0.8716536,19.52718,-0.4358268,11.92817,0.4358268,11.92817,-0.4358268,11.92817,0.8716536,19.52718,-0.8716536,19.52718,0.4358268,11.92817,-0.4358268,18.38695,0.4358268,18.38695,-1.30748,15.60005,1.30748,15.60005,-1.30748,15.60005,0.4358268,18.38695,-0.4358268,18.38695,1.30748,15.60005,-1.30748,12.88557,-0.4358268,15.49816,1.30748,12.88557,0.4358268,15.49816,1.30748,12.88557,-0.4358268,15.49816,-1.30748,12.88557,0.4358268,15.49816,0.8716536,16.41654,0.4358267,11.87821,-0.8716536,16.41654,-0.4358268,11.87821,-0.8716536,16.41654,0.4358267,11.87821,0.8716536,16.41654,-0.4358268,11.87821,1.30748,9.721924,-1.30748,9.721924,0.4358267,12.16497,-0.4358268,12.16497,0.4358267,12.16497,-1.30748,9.721924,1.30748,9.721924,-0.4358268,12.16497,0.8716536,16.33331,-0.8716536,16.33331,1.30748,19.32174,-1.30748,19.32174,1.30748,19.32174,-0.8716536,16.33331,0.8716536,16.33331,-1.30748,19.32174,-0.4358268,-0.4358268,-0.4358268,0.4358268,0.4358267,-0.4358268,0.4358268,0.4358268,-0.8716536,14.47925,0.8716536,14.47925,-0.4358268,10.12016,0.4358268,10.12016,-0.4358268,10.12016,0.8716536,14.47925,-0.8716536,14.47925,0.4358268,10.12016,0.8716536,9.855417,-0.8716536,9.855417,1.30748,11.97096,-1.30748,11.97096,1.30748,11.97096,-0.8716536,9.855417,0.8716536,9.855417,-1.30748,11.97096,0.8716536,14.47925,0.4358267,10.12016,-0.8716536,14.47925,-0.4358268,10.12016,-0.8716536,14.47925,0.4358267,10.12016,0.8716536,14.47925,-0.4358268,10.12016,0.4358268,-5.474426,-0.4358268,-5.474426,1.30748,-3.463301,-1.30748,-3.463301,1.30748,-3.463301,-0.4358268,-5.474426,0.4358268,-5.474426,-1.30748,-3.463301,-1.30748,11.97096,1.30748,11.97096,-0.8716536,9.855417,0.8716536,9.855417,-0.8716536,9.855417,1.30748,11.97096,-1.30748,11.97096,0.8716536,9.855417,0.4358267,10.12016,-0.4358268,10.12016,0.8716536,14.47925,-0.8716536,14.47925,0.8716536,14.47925,-0.4358268,10.12016,0.4358267,10.12016,-0.8716536,14.47925,1.30748,12.88557,-1.30748,12.88557,0.4358268,15.49816,-0.4358268,15.49816,0.4358268,15.49816,-1.30748,12.88557,1.30748,12.88557,-0.4358268,15.49816,0.4358268,11.91553,-0.4358267,11.91553,0.8716536,18.10444,-0.8716536,18.10444,0.8716536,18.10444,-0.4358267,11.91553,0.4358268,11.91553,-0.8716536,18.10444,1.30748,11.97096,0.8716535,9.855417,-1.30748,11.97096,-0.8716536,9.855417,-1.30748,11.97096,0.8716535,9.855417,1.30748,11.97096,-0.8716536,9.855417,-1.430374,-0.8258268,-1.430374,0.8258268,4.263256E-14,-1.651654,1.430374,-0.8258268,4.263256E-14,1.651654,1.430374,0.8258268,0.773622,1.159463,-0.773622,1.159463,1.311024,10.53257,-1.311024,10.53257,0.526063,0.3497504,-0.526063,0.3497504,0.773622,1.466818,-0.773622,1.466818,0.773622,1.466818,0.526063,0.3497504,-0.773622,1.466818,-0.526063,0.3497504,0.526063,0.3497504,-0.526063,0.3497504,0.773622,1.466818,-0.773622,1.466818,0.773622,1.159463,-0.773622,1.159463,1.311024,10.53257,-1.311024,10.53257,-0.773622,1.466818,0.773622,1.466818,-0.526063,0.3497504,0.526063,0.3497504,0.9111679,0.526063,0.9111679,-0.526063,0,1.052126,0,-1.052126,-0.9111679,0.526063,-0.9111679,-0.526063,0.526063,0.3497504,-0.526063,0.3497504,0.773622,1.466818,-0.773622,1.466818,1.311024,8.069387,-1.311024,8.069387,0.8258268,9.854395,-0.8258268,9.854395,0.526063,0.3497504,-0.526063,0.3497504,0.773622,1.466818,-0.773622,1.466818,-1.311024,8.069387,-0.8258268,9.854395,1.311024,8.069387,0.8258268,9.854395,1.311024,8.069387,-1.311024,8.069387,0.8258268,9.854395,-0.8258268,9.854395,-1.311024,10.53257,1.311024,10.53257,-0.773622,1.159463,0.773622,1.159463,1.311024,10.53257,0.773622,1.159463,-1.311024,10.53257,-0.773622,1.159463,0.773622,1.159463,-0.773622,1.159463,1.311024,10.53257,-1.311024,10.53257,1.311024,8.069387,-1.311024,8.069387,0.8258268,9.854395,-0.8258268,9.854395,1.311024,8.069387,-1.311024,8.069387,0.8258268,9.854395,-0.8258268,9.854395,1.311024,8.069387,-1.311024,8.069387,0.8258268,9.854395,-0.8258268,9.854395,0.773622,1.159463,-0.773622,1.159463,1.311024,10.53257,-1.311024,10.53257 + } + UVIndex: *444 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,129,131,128,132,134,133,135,133,134,136,138,137,137,139,136,140,142,141,143,141,142,144,146,145,145,147,144,148,150,149,151,149,150,152,154,153,153,155,152,156,158,157,159,157,158,160,162,161,161,163,160,164,166,165,167,165,166,168,170,169,169,171,168,172,174,173,175,173,174,176,178,177,177,179,176,180,182,181,183,181,182,184,186,185,185,187,184,188,190,189,191,189,190,192,194,193,193,195,192,196,198,197,120,197,198,122,120,198,199,122,198,123,122,199,120,121,197,200,197,121,123,200,121,201,200,123,199,201,123,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,229,228,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *148 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crop_carrot, Model::RootNode + C: "OO",5531721192900865815,0 + + ;Geometry::, Model::Mesh crop_carrot + C: "OO",5343747873765607259,5531721192900865815 + + ;Material::grass, Model::Mesh crop_carrot + C: "OO",3024,5531721192900865815 + + ;Material::leafsFall, Model::Mesh crop_carrot + C: "OO",3028,5531721192900865815 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crop_carrot.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crop_carrot.fbx.import new file mode 100644 index 0000000..9a0d1a6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crop_carrot.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cxwi3kuu7mcwj" +path="res://.godot/imported/crop_carrot.fbx-c605785a68fededbf983d0558b3e58e0.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crop_carrot.fbx" +dest_files=["res://.godot/imported/crop_carrot.fbx-c605785a68fededbf983d0558b3e58e0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crop_melon.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crop_melon.fbx new file mode 100644 index 0000000..9230409 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crop_melon.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 17 + Millisecond: 996 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crop_melon.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crop_melon.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4769475009946146145, "Model::crop_melon", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4722854374076867815, "Geometry::", "Mesh" { + Vertices: *765 { + a: 1.808261,0.87,-0.4845221,1.43154,0,-0.38358,2.088,0.87,2.165734E-14,1.653,0,0,-2.088,2.61,0,-1.808261,2.61,0.4845221,-2.088,0.87,2.165734E-14,-1.808261,0.87,0.4845221,-1.653,0,0,-2.088,0.87,2.165734E-14,-1.43154,0,0.38358,-1.808261,0.87,0.4845221,-1.044,2.61,-1.808261,-1.323739,2.61,-1.323739,-1.044,0.87,-1.808261,-1.323739,0.87,-1.323739,1.044,0.87,-1.808261,1.044,2.61,-1.808261,0.4845221,0.87,-1.808261,0.4845221,2.61,-1.808261,-1.323739,0.87,1.323739,-1.323739,2.61,1.323739,-1.044,0.87,1.808261,-1.044,2.61,1.808261,1.653,0,0,1.43154,0,-0.38358,1.43154,0,0.38358,1.23975,0,0.71577,1.23975,0,-0.71577,1.04796,0,1.04796,1.04796,0,-1.04796,0.8265,0,1.43154,0.8265,0,-1.43154,0.38358,0,1.43154,0.38358,0,-1.43154,3.609557E-15,0,1.43154,3.609557E-15,0,-1.43154,-0.38358,0,1.43154,-0.38358,0,-1.43154,-0.8265,0,1.43154,-0.8265,0,-1.43154,-1.04796,0,-1.04796,-1.04796,0,1.04796,-1.23975,0,0.71577,-1.23975,0,-0.71577,-1.43154,0,0.38358,-1.43154,0,-0.38358,-1.653,0,0,-1.808261,2.61,-0.4845221,-1.43154,3.48,-0.38358,-2.088,2.61,0,-1.653,3.48,0,1.808261,2.61,-0.4845221,1.808261,0.87,-0.4845221,2.088,2.61,0,2.088,0.87,2.165734E-14,-0.8265,0,-1.43154,-0.38358,0,-1.43154,-1.044,0.87,-1.808261,-0.4845221,0.87,-1.808261,-0.2497431,3.48,-0.6643801,-0.38358,3.48,-0.6643801,-0.38358,3.48,-1.43154,-0.8265,3.48,-1.43154,-0.4504985,3.48,-0.5484738,-1.04796,3.48,-1.04796,-1.808261,0.87,-0.4845221,-2.088,0.87,2.165734E-14,-1.43154,0,-0.38358,-1.653,0,0,0.8265,0,1.43154,0.38358,0,1.43154,1.044,0.87,1.808261,0.4845221,0.87,1.808261,1.044,2.61,-1.808261,1.323739,2.61,-1.323739,0.8265,3.48,-1.43154,1.04796,3.48,-1.04796,1.04796,0,1.04796,0.8265,0,1.43154,1.323739,0.87,1.323739,1.044,0.87,1.808261,-0.38358,0,1.43154,-0.8265,0,1.43154,-0.4845221,0.87,1.808261,-1.044,0.87,1.808261,-1.044,2.61,-1.808261,-0.8265,3.48,-1.43154,-1.323739,2.61,-1.323739,-1.04796,3.48,-1.04796,-0.4845221,2.61,1.808261,-1.044,2.61,1.808261,-0.38358,3.48,1.43154,-0.8265,3.48,1.43154,1.044,2.61,-1.808261,1.044,0.87,-1.808261,1.323739,2.61,-1.323739,1.323739,0.87,-1.323739,-1.044,0.87,-1.808261,-0.4845221,0.87,-1.808261,-1.044,2.61,-1.808261,-0.4845221,2.61,-1.808261,1.653,3.48,0,2.088,2.61,0,1.43154,3.48,0.38358,1.808261,2.61,0.4845221,1.323739,2.61,1.323739,1.323739,0.87,1.323739,1.044,2.61,1.808261,1.044,0.87,1.808261,1.43154,3.48,-0.38358,0.76716,3.48,1.443823E-14,0.7002416,3.48,-0.1159062,0.7002416,3.48,0.1159062,1.43154,3.48,0.38358,1.653,3.48,0,1.04796,3.48,1.04796,0.8265,3.48,1.43154,0.4504985,3.48,0.5484738,0.38358,3.48,1.43154,0.38358,3.48,0.6643801,0.2497431,3.48,0.6643801,1.044,0.87,-1.808261,0.8265,0,-1.43154,1.323739,0.87,-1.323739,1.04796,0,-1.04796,1.044,0.87,1.808261,0.4845221,0.87,1.808261,1.044,2.61,1.808261,0.4845221,2.61,1.808261,1.808261,2.61,-0.4845221,2.088,2.61,0,1.43154,3.48,-0.38358,1.653,3.48,0,-2.088,2.61,0,-1.653,3.48,0,-1.808261,2.61,0.4845221,-1.43154,3.48,0.38358,0.38358,0,-1.43154,0.8265,0,-1.43154,0.4845221,0.87,-1.808261,1.044,0.87,-1.808261,0.4845221,2.61,-1.808261,1.044,2.61,-1.808261,0.38358,3.48,-1.43154,0.8265,3.48,-1.43154,-1.044,2.61,-1.808261,-0.4845221,2.61,-1.808261,-0.8265,3.48,-1.43154,-0.38358,3.48,-1.43154,-0.2497431,3.48,0.6643801,-0.38358,3.48,1.43154,-0.38358,3.48,0.6643801,-0.8265,3.48,1.43154,-0.4504985,3.48,0.5484738,-1.04796,3.48,1.04796,-1.044,0.87,-1.808261,-1.323739,0.87,-1.323739,-0.8265,0,-1.43154,-1.04796,0,-1.04796,1.044,2.61,1.808261,0.4845221,2.61,1.808261,0.8265,3.48,1.43154,0.38358,3.48,1.43154,-1.04796,3.48,1.04796,-0.8265,3.48,1.43154,-1.323739,2.61,1.323739,-1.044,2.61,1.808261,1.04796,3.48,-1.04796,0.4504985,3.48,-0.5484738,0.8265,3.48,-1.43154,0.38358,3.48,-1.43154,0.38358,3.48,-0.6643801,0.2497431,3.48,-0.6643801,-1.808261,2.61,-0.4845221,-2.088,2.61,0,-1.808261,0.87,-0.4845221,-2.088,0.87,2.165734E-14,-1.044,0.87,1.808261,-1.044,2.61,1.808261,-0.4845221,0.87,1.808261,-0.4845221,2.61,1.808261,-1.04796,0,1.04796,-1.323739,0.87,1.323739,-0.8265,0,1.43154,-1.044,0.87,1.808261,-0.7002416,3.48,-0.1159062,-0.76716,3.48,3.609557E-14,-1.43154,3.48,-0.38358,-1.43154,3.48,0.38358,-1.653,3.48,0,-0.7002416,3.48,0.1159062,1.653,0,0,1.43154,0,0.38358,2.088,0.87,2.165734E-14,1.808261,0.87,0.4845221,1.04796,3.48,1.04796,1.323739,2.61,1.323739,0.8265,3.48,1.43154,1.044,2.61,1.808261,2.088,2.61,0,2.088,0.87,2.165734E-14,1.808261,2.61,0.4845221,1.808261,0.87,0.4845221,1.566,0.87,-0.9041305,1.23975,0,-0.71577,3.609557E-15,0.87,-1.808261,3.609557E-15,2.61,-1.808261,-1.566,2.61,-0.9041305,-1.23975,3.48,-0.71577,3.609557E-15,0,-1.43154,3.609557E-15,0.87,-1.808261,-1.566,0.87,-0.9041305,-1.23975,0,-0.71577,3.609557E-15,2.61,1.808261,3.609557E-15,3.48,1.43154,-1.566,0.87,-0.9041305,-1.566,2.61,-0.9041305,1.23975,0,0.71577,1.566,0.87,0.9041305,-1.566,0.87,0.9041305,-1.566,2.61,0.9041305,1.23975,3.48,-0.71577,0.38358,3.48,0,0.19179,3.48,0.33219,3.609557E-15,3.48,1.43154,-0.19179,3.48,0.33219,0.19179,3.48,-0.33219,3.609557E-15,3.48,-1.43154,-0.19179,3.48,-0.33219,-0.38358,3.48,1.443823E-14,-1.23975,3.48,-0.71577,-1.23975,3.48,0.71577,-0.2497431,3.48,0.6643801,-0.19179,3.48,0.33219,-0.38358,3.48,1.43154,1.23975,3.48,0.71577,-1.23975,3.48,0.71577,-1.566,2.61,0.9041305,3.609557E-15,2.61,-1.808261,3.609557E-15,3.48,-1.43154,1.566,2.61,-0.9041305,1.566,0.87,-0.9041305,-1.23975,0,0.71577,-1.566,0.87,0.9041305,3.609557E-15,0,1.43154,3.609557E-15,0.87,1.808261,1.23975,3.48,0.71577,1.566,2.61,0.9041305,1.566,2.61,-0.9041305,1.23975,3.48,-0.71577,3.609557E-15,0.87,1.808261,3.609557E-15,2.61,1.808261,1.566,0.87,0.9041305,1.566,2.61,0.9041305 + } + PolygonVertexIndex: *708 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,25,-28,29,28,-28,30,28,-30,31,30,-30,32,30,-32,33,32,-32,34,32,-34,35,34,-34,36,34,-36,37,36,-36,38,36,-38,39,38,-38,40,38,-40,41,40,-40,42,41,-40,43,41,-43,44,41,-44,45,44,-44,46,44,-46,47,46,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,61,-64,65,64,-64,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,111,113,-111,113,114,-111,115,110,-115,116,118,-118,119,117,-119,120,119,-119,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,153,-153,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,169,-172,173,172,-172,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,189,-189,187,189,-192,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,124,204,-126,205,125,-205,0,205,-205,1,205,-1,206,99,-19,101,18,-100,19,18,-102,207,19,-102,88,208,-90,209,89,-209,48,209,-209,49,209,-49,57,59,-211,138,210,-60,211,138,-60,211,140,-139,157,159,-213,213,212,-160,66,212,-214,68,66,-214,161,163,-215,90,214,-164,92,90,-164,215,92,-164,15,216,-14,217,13,-217,176,217,-217,174,217,-177,193,195,-219,219,218,-196,78,218,-220,80,78,-220,7,220,-6,221,5,-221,21,221,-221,20,21,-221,111,112,-114,112,118,-114,118,112,-170,169,112,-169,168,112,-223,110,222,-113,120,118,-170,223,120,-170,224,120,-224,121,120,-225,224,225,-122,119,121,-226,226,225,-225,151,225,-227,169,172,-224,227,223,-173,173,227,-173,227,173,-229,171,228,-174,229,227,-229,60,229,-229,62,60,-229,229,60,-231,61,230,-61,152,230,-62,154,152,-62,64,154,-62,155,154,-65,191,155,-65,186,191,-65,64,65,-187,231,186,-66,188,186,-232,186,187,-192,189,155,-192,232,155,-190,152,150,-231,226,230,-151,233,235,-235,114,113,-237,116,236,-114,118,116,-114,137,136,-238,238,237,-137,164,237,-239,166,164,-239,147,149,-240,142,239,-150,144,142,-150,240,144,-150,96,241,-98,242,97,-242,52,242,-242,53,242,-53,10,243,-12,244,11,-244,182,244,-244,183,244,-183,71,73,-246,82,245,-74,246,82,-74,246,84,-83,104,247,-106,248,105,-248,196,248,-248,197,248,-197,75,77,-250,250,249,-78,130,249,-251,132,130,-251,251,127,-181,129,180,-128,181,180,-130,252,181,-130,203,202,-254,254,253,-203,106,253,-255,107,253,-107,223,227,-225,229,224,-228,226,224,-230,230,226,-230 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2124 { + a: 0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0.7947195,-0.3973597,-0.4588315,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,-0.7947195,0.3973597,-0.4588315,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,0,-0.3973597,-0.9176629,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,-0.7947195,-0.3973597,-0.4588315,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,0,0.3973597,0.9176629,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,0.7947195,-0.3973597,0.4588315,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,-0.7947195,0.3973597,0.4588315,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0,0.3973597,-0.9176629,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,-0.7947195,-0.3973597,0.4588315,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0,-0.3973597,0.9176629,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0.7947195,0.3973597,-0.4588315,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *510 { + a: -1.907567,5.972035,-1.510157,2.239513,-4.110236,5.972035,-3.253937,2.239513,-4.110236,10.27559,-1.907567,10.27559,-4.110236,3.425197,-1.907567,3.425197,-3.253937,2.239513,-4.110236,5.972035,-1.510157,2.239513,-1.907567,5.972035,-4.110236,10.27559,-1.907567,10.27559,-4.110236,3.425197,-1.907567,3.425197,-4.110236,3.425197,-4.110236,10.27559,-1.907567,3.425197,-1.907567,10.27559,1.907567,3.425197,1.907567,10.27559,4.110236,3.425197,4.110236,10.27559,6.507874,0,5.635984,-1.510157,5.635984,1.510157,4.880906,2.817992,4.880906,-2.817992,4.125827,4.125827,4.125827,-4.125827,3.253937,5.635984,3.253937,-5.635984,1.510157,5.635984,1.510157,-5.635984,1.421085E-14,5.635984,1.421085E-14,-5.635984,-1.510157,5.635984,-1.510157,-5.635984,-3.253937,5.635984,-3.253937,-5.635984,-4.125827,-4.125827,-4.125827,4.125827,-4.880906,2.817992,-4.880906,-2.817992,-5.635984,1.510157,-5.635984,-1.510157,-6.507874,0,1.907567,6.60067,1.510157,10.33319,4.110236,6.60067,3.253937,10.33319,-1.907567,10.27559,-1.907567,3.425197,-4.110236,10.27559,-4.110236,3.425197,3.253937,2.239513,1.510157,2.239513,4.110236,5.972035,1.907567,5.972035,0.9832404,-2.615669,1.510157,-2.615669,1.510157,-5.635984,3.253937,-5.635984,1.773616,-2.159346,4.125827,-4.125827,1.907567,5.972035,4.110236,5.972035,1.510157,2.239513,3.253937,2.239513,3.253937,2.239513,1.510157,2.239513,4.110236,5.972035,1.907567,5.972035,4.110236,6.60067,1.907567,6.60067,3.253937,10.33319,1.510157,10.33319,-1.510157,2.239513,-3.253937,2.239513,-1.907567,5.972035,-4.110236,5.972035,-1.510157,2.239513,-3.253937,2.239513,-1.907567,5.972035,-4.110236,5.972035,-4.110236,6.60067,-3.253937,10.33319,-1.907567,6.60067,-1.510157,10.33319,-1.907567,6.60067,-4.110236,6.60067,-1.510157,10.33319,-3.253937,10.33319,4.110236,10.27559,4.110236,3.425197,1.907567,10.27559,1.907567,3.425197,4.110236,3.425197,1.907567,3.425197,4.110236,10.27559,1.907567,10.27559,3.253937,10.33319,4.110236,6.60067,1.510157,10.33319,1.907567,6.60067,-1.907567,10.27559,-1.907567,3.425197,-4.110236,10.27559,-4.110236,3.425197,-5.635984,-1.510157,-3.020315,5.684342E-14,-2.756856,-0.4563235,-2.756856,0.4563235,-5.635984,1.510157,-6.507874,0,-4.125827,4.125827,-3.253937,5.635984,-1.773616,2.159346,-1.510157,5.635984,-1.510157,2.615669,-0.9832404,2.615669,4.110236,5.972035,3.253937,2.239513,1.907567,5.972035,1.510157,2.239513,4.110236,3.425197,1.907567,3.425197,4.110236,10.27559,1.907567,10.27559,-1.907567,6.60067,-4.110236,6.60067,-1.510157,10.33319,-3.253937,10.33319,-4.110236,6.60067,-3.253937,10.33319,-1.907567,6.60067,-1.510157,10.33319,-1.510157,2.239513,-3.253937,2.239513,-1.907567,5.972035,-4.110236,5.972035,-1.907567,6.60067,-4.110236,6.60067,-1.510157,10.33319,-3.253937,10.33319,4.110236,6.60067,1.907567,6.60067,3.253937,10.33319,1.510157,10.33319,0.9832404,2.615669,1.510157,5.635984,1.510157,2.615669,3.253937,5.635984,1.773616,2.159346,4.125827,4.125827,-4.110236,5.972035,-1.907567,5.972035,-3.253937,2.239513,-1.510157,2.239513,4.110236,6.60067,1.907567,6.60067,3.253937,10.33319,1.510157,10.33319,1.510157,10.33319,3.253937,10.33319,1.907567,6.60067,4.110236,6.60067,-4.125827,-4.125827,-1.773616,-2.159346,-3.253937,-5.635984,-1.510157,-5.635984,-1.510157,-2.615669,-0.9832404,-2.615669,1.907567,10.27559,4.110236,10.27559,1.907567,3.425197,4.110236,3.425197,-4.110236,3.425197,-4.110236,10.27559,-1.907567,3.425197,-1.907567,10.27559,1.510157,2.239513,1.907567,5.972035,3.253937,2.239513,4.110236,5.972035,2.756856,-0.4563235,3.020315,1.421085E-13,5.635984,-1.510157,5.635984,1.510157,6.507874,0,2.756856,0.4563235,3.253937,2.239513,1.510157,2.239513,4.110236,5.972035,1.907567,5.972035,-1.510157,10.33319,-1.907567,6.60067,-3.253937,10.33319,-4.110236,6.60067,4.110236,10.27559,4.110236,3.425197,1.907567,10.27559,1.907567,3.425197,-7.993606E-14,5.972035,-3.730349E-14,2.239513,1.703531E-13,3.425197,1.703531E-13,10.27559,-7.283063E-14,6.60067,-5.417888E-14,10.33319,1.645674E-13,2.239513,2.116143E-13,5.972035,-5.151435E-14,5.972035,-3.730349E-14,2.239513,-3.637952E-14,6.60067,-2.583986E-14,10.33319,-8.926193E-14,3.425197,-8.926193E-14,10.27559,3.508305E-14,2.239513,1.021405E-14,5.972035,-6.217249E-15,3.425197,-5.551115E-14,10.27559,-4.880906,-2.817992,-1.510157,-4.203895E-45,-0.7550787,1.307835,-1.421085E-14,5.635984,0.7550787,1.307835,-0.7550787,-1.307835,-1.421085E-14,-5.635984,0.7550787,-1.307835,1.510157,5.684342E-14,4.880906,-2.817992,4.880906,2.817992,0.9832404,2.615669,0.7550787,1.307835,1.510157,5.635984,-4.880906,2.817992,-5.684342E-14,10.33319,-3.597123E-14,6.60067,1.890904E-13,6.60067,1.46736E-13,10.33319,-6.439294E-14,10.27559,-1.065814E-13,3.425197,-5.861978E-14,2.239513,1.065814E-14,5.972035,-3.085902E-14,2.239513,-4.271952E-14,5.972035,2.04281E-14,10.33319,-7.549517E-15,6.60067,-3.330669E-14,6.60067,-3.419487E-14,10.33319,-5.500064E-14,3.425197,-5.500064E-14,10.27559,-1.998401E-14,3.425197,-1.998401E-14,10.27559 + } + UVIndex: *708 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,25,27,29,28,27,30,28,29,31,30,29,32,30,31,33,32,31,34,32,33,35,34,33,36,34,35,37,36,35,38,36,37,39,38,37,40,38,39,41,40,39,42,41,39,43,41,42,44,41,43,45,44,43,46,44,45,47,46,45,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,61,63,65,64,63,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,111,113,110,113,114,110,115,110,114,116,118,117,119,117,118,120,119,118,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,153,152,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,169,171,173,172,171,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,189,188,187,189,191,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,124,204,125,205,125,204,0,205,204,1,205,0,206,99,18,101,18,99,19,18,101,207,19,101,88,208,89,209,89,208,48,209,208,49,209,48,57,59,210,138,210,59,211,138,59,211,140,138,157,159,212,213,212,159,66,212,213,68,66,213,161,163,214,90,214,163,92,90,163,215,92,163,15,216,13,217,13,216,176,217,216,174,217,176,193,195,218,219,218,195,78,218,219,80,78,219,7,220,5,221,5,220,21,221,220,20,21,220,111,112,113,112,118,113,118,112,169,169,112,168,168,112,222,110,222,112,120,118,169,223,120,169,224,120,223,121,120,224,224,225,121,119,121,225,226,225,224,151,225,226,169,172,223,227,223,172,173,227,172,227,173,228,171,228,173,229,227,228,60,229,228,62,60,228,229,60,230,61,230,60,152,230,61,154,152,61,64,154,61,155,154,64,191,155,64,186,191,64,64,65,186,231,186,65,188,186,231,186,187,191,189,155,191,232,155,189,152,150,230,226,230,150,233,235,234,114,113,236,116,236,113,118,116,113,137,136,237,238,237,136,164,237,238,166,164,238,147,149,239,142,239,149,144,142,149,240,144,149,96,241,97,242,97,241,52,242,241,53,242,52,10,243,11,244,11,243,182,244,243,183,244,182,71,73,245,82,245,73,246,82,73,246,84,82,104,247,105,248,105,247,196,248,247,197,248,196,75,77,249,250,249,77,130,249,250,132,130,250,251,127,180,129,180,127,181,180,129,252,181,129,203,202,253,254,253,202,106,253,254,107,253,106,223,227,224,229,224,227,226,224,229,230,226,229 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *236 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crop_melon, Model::RootNode + C: "OO",4769475009946146145,0 + + ;Geometry::, Model::Mesh crop_melon + C: "OO",4722854374076867815,4769475009946146145 + + ;Material::grass, Model::Mesh crop_melon + C: "OO",3024,4769475009946146145 + + ;Material::leafsDark, Model::Mesh crop_melon + C: "OO",3026,4769475009946146145 + + ;Material::dirt, Model::Mesh crop_melon + C: "OO",3020,4769475009946146145 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crop_melon.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crop_melon.fbx.import new file mode 100644 index 0000000..8d4bc17 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crop_melon.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://calm0v2vs4t2" +path="res://.godot/imported/crop_melon.fbx-562ea96d09d143bc0b177198c4bb9046.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crop_melon.fbx" +dest_files=["res://.godot/imported/crop_melon.fbx-562ea96d09d143bc0b177198c4bb9046.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crop_pumpkin.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crop_pumpkin.fbx new file mode 100644 index 0000000..d7d1891 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crop_pumpkin.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 18 + Millisecond: 98 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crop_pumpkin.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crop_pumpkin.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5240914013014911079, "Model::crop_pumpkin", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5735716594115762257, "Geometry::", "Mesh" { + Vertices: *702 { + a: -2.206351,1.995,-0.6979302,-1.33,2.66,-1.227249E-13,-1.995,1.995,-9.384848E-14,1.995,1.995,-1.949161E-13,1.995,0.665,-1.949161E-13,2.206351,1.995,0.6979302,2.206351,0.665,0.6979302,1.7076,0.665,1.56179,0.9974999,0.665,1.727721,1.7076,1.995,1.56179,0.9974999,1.995,1.727721,1.33,2.66,-2.021352E-13,1.995,1.995,-1.949161E-13,2.206351,1.995,0.6979302,-1.7076,1.995,-1.56179,-0.9974999,1.995,-1.727721,-0.665,2.66,-1.151814,0.9974999,1.995,-1.727721,0.665,2.66,-1.151814,0.49875,1.995,-2.259721,1.7076,1.995,1.56179,0.9974999,1.995,1.727721,0.665,2.66,1.151814,-0.49875,0.665,2.259721,-0.665,0,1.151814,-0.9974999,0.665,1.727721,2.206351,1.995,-0.6979302,1.33,2.66,-2.021352E-13,1.7076,1.995,-1.56179,0.665,2.66,-1.151814,0.9974999,0.665,1.727721,0.665,0,1.151814,0.49875,0.665,2.259721,0.9974999,1.995,1.727721,0.9974999,0.665,1.727721,0.49875,1.995,2.259721,0.49875,0.665,2.259721,0.49875,1.995,-2.259721,0.49875,0.665,-2.259721,0.9974999,1.995,-1.727721,0.9974999,0.665,-1.727721,-0.49875,0.665,-2.259721,0.49875,0.665,-2.259721,-0.49875,1.995,-2.259721,0.49875,1.995,-2.259721,-1.7076,0.665,-1.56179,-1.7076,1.995,-1.56179,-2.206351,0.665,-0.6979302,-2.206351,1.995,-0.6979302,-1.7076,0.665,-1.56179,-0.9974999,0.665,-1.727721,-1.7076,1.995,-1.56179,-0.9974999,1.995,-1.727721,2.206351,1.995,-0.6979302,2.206351,0.665,-0.6979302,1.995,1.995,-1.949161E-13,1.995,0.665,-1.949161E-13,-1.995,0.665,-9.384848E-14,-1.33,0,0,-2.206351,0.665,-0.6979302,-0.665,0,-1.151814,-0.49875,0.665,-2.259721,-0.9974999,0.665,-1.727721,0.665,2.66,-1.151814,-0.665,2.66,-1.151814,0.49875,1.995,-2.259721,-0.49875,1.995,-2.259721,2.206351,0.665,0.6979302,1.33,0,-3.392984E-13,1.7076,0.665,1.56179,0.665,0,1.151814,0.49875,0.665,2.259721,-0.49875,0.665,2.259721,0.49875,1.995,2.259721,-0.49875,1.995,2.259721,1.7076,0.665,1.56179,0.665,0,1.151814,0.9974999,0.665,1.727721,-0.49875,0.665,-2.259721,-0.49875,1.995,-2.259721,-0.9974999,0.665,-1.727721,-0.9974999,1.995,-1.727721,2.206351,1.995,0.6979302,1.7076,1.995,1.56179,1.33,2.66,-2.021352E-13,0.665,2.66,1.151814,0.665,0,-1.151814,0.9974999,0.665,-1.727721,0.49875,0.665,-2.259721,-1.7076,0.665,-1.56179,-0.665,0,-1.151814,-0.9974999,0.665,-1.727721,0.665,2.66,1.151814,0.9974999,1.995,1.727721,0.49875,1.995,2.259721,0.665,2.66,1.151814,0.49875,1.995,2.259721,-0.665,2.66,1.151814,-0.49875,1.995,2.259721,-0.665,2.66,-1.151814,-1.33,2.66,-1.227249E-13,-1.7076,1.995,-1.56179,-2.206351,1.995,-0.6979302,1.33,2.66,-2.021352E-13,2.206351,1.995,-0.6979302,1.995,1.995,-1.949161E-13,0.665,0,-1.151814,0.49875,0.665,-2.259721,-0.665,0,-1.151814,-0.49875,0.665,-2.259721,-0.665,2.66,1.151814,-0.49875,1.995,2.259721,-0.9974999,1.995,1.727721,-0.9974999,0.665,1.727721,-0.665,0,1.151814,-1.7076,0.665,1.56179,2.206351,1.995,0.6979302,2.206351,0.665,0.6979302,1.7076,1.995,1.56179,1.7076,0.665,1.56179,1.33,2.66,-2.021352E-13,0.745869,2.66,-2.093543E-13,0.665,2.66,-1.151814,0.3729345,2.66,-0.6459416,-0.665,2.66,-1.151814,-0.3729345,2.66,-0.6459416,-0.745869,2.66,-1.660396E-13,-1.33,2.66,-1.227249E-13,0.665,2.66,1.151814,0.3729345,2.66,0.6459416,-0.665,2.66,1.151814,-0.3729345,2.66,0.6459416,0.665,0,1.151814,-0.665,0,1.151814,0.49875,0.665,2.259721,-0.49875,0.665,2.259721,-1.995,1.995,-9.384848E-14,-1.33,2.66,-1.227249E-13,-2.206351,1.995,0.6979302,1.995,0.665,-1.949161E-13,2.206351,0.665,-0.6979302,1.33,0,-3.392984E-13,-1.995,0.665,-9.384848E-14,-1.995,1.995,-9.384848E-14,-2.206351,0.665,0.6979302,-2.206351,1.995,0.6979302,-0.665,2.66,1.151814,-1.7076,1.995,1.56179,-1.33,2.66,-1.227249E-13,-2.206351,1.995,0.6979302,-0.9974999,0.665,1.727721,-0.9974999,1.995,1.727721,-0.49875,0.665,2.259721,-0.49875,1.995,2.259721,1.33,0,-3.392984E-13,0.665,0,-1.151814,0.665,0,1.151814,-0.665,0,1.151814,-0.665,0,-1.151814,-1.33,0,0,0.9974999,0.665,-1.727721,1.7076,0.665,-1.56179,0.9974999,1.995,-1.727721,1.7076,1.995,-1.56179,-0.9974999,0.665,1.727721,-1.7076,0.665,1.56179,-0.9974999,1.995,1.727721,-1.7076,1.995,1.56179,0.9974999,1.995,-1.727721,1.7076,1.995,-1.56179,0.665,2.66,-1.151814,-0.665,0,-1.151814,-1.7076,0.665,-1.56179,-1.33,0,0,-2.206351,0.665,-0.6979302,-0.665,0,1.151814,-1.33,0,0,-1.7076,0.665,1.56179,-2.206351,0.665,0.6979302,1.995,0.665,-1.949161E-13,1.33,0,-3.392984E-13,2.206351,0.665,0.6979302,-0.49875,1.995,-2.259721,-0.665,2.66,-1.151814,-0.9974999,1.995,-1.727721,-2.206351,0.665,0.6979302,-2.206351,1.995,0.6979302,-1.7076,0.665,1.56179,-1.7076,1.995,1.56179,0.9974999,0.665,-1.727721,0.665,0,-1.151814,1.7076,0.665,-1.56179,-2.206351,0.665,-0.6979302,-2.206351,1.995,-0.6979302,-1.995,0.665,-9.384848E-14,-1.995,1.995,-9.384848E-14,-0.9974999,1.995,1.727721,-1.7076,1.995,1.56179,-0.665,2.66,1.151814,1.7076,1.995,-1.56179,1.7076,0.665,-1.56179,2.206351,1.995,-0.6979302,2.206351,0.665,-0.6979302,-1.33,0,0,-1.995,0.665,-9.384848E-14,-2.206351,0.665,0.6979302,2.206351,0.665,-0.6979302,1.7076,0.665,-1.56179,1.33,0,-3.392984E-13,0.665,0,-1.151814,0.11305,2.66,0.11305,-0.11305,2.66,0.11305,0.1887935,3.3383,0.1887935,-0.1887935,3.3383,0.1887935,-0.11305,2.66,-0.11305,0.11305,2.66,-0.11305,-0.1887935,3.3383,-0.1887935,0.1887935,3.3383,-0.1887935,0.1887935,3.3383,-0.1887935,0.1887935,3.3383,0.1887935,-0.1887935,3.3383,-0.1887935,-0.1887935,3.3383,0.1887935,0.1887935,3.3383,-0.1887935,0.11305,2.66,-0.11305,0.1887935,3.3383,0.1887935,0.11305,2.66,0.11305,-0.1887935,3.3383,-0.1887935,-0.1887935,3.3383,0.1887935,-0.11305,2.66,-0.11305,-0.11305,2.66,0.11305,0.11305,2.66,-0.11305,-0.11305,2.66,-0.11305,-0.11305,2.66,0.11305,0.11305,2.66,0.11305 + } + PolygonVertexIndex: *360 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,10,8,-10,11,13,-13,14,16,-16,17,19,-19,20,22,-22,23,25,-25,26,28,-28,29,27,-29,30,32,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,62,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,91,-91,92,94,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,108,-108,109,107,-109,110,112,-112,113,115,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,123,-123,125,123,-125,126,125,-125,127,126,-125,120,121,-129,129,128,-122,130,128,-130,127,130,-127,131,130,-130,126,130,-132,132,134,-134,135,133,-135,136,138,-138,139,141,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,155,-158,159,158,-158,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,184,-184,185,187,-187,188,186,-188,189,191,-191,192,194,-194,195,193,-195,196,198,-198,199,201,-201,202,200,-202,203,205,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,121,123,-130,230,129,-124,125,230,-124,231,230,-126,232,231,-126,230,233,-130,131,129,-234,232,131,-234,125,131,-233,126,131,-126 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1080 { + a: -0.6914328,0.6914328,0.209383,-0.6914328,0.6914328,0.209383,-0.6914328,0.6914328,0.209383,0.957079,0,-0.2898272,0.957079,0,-0.2898272,0.957079,0,-0.2898272,0.957079,0,-0.2898272,0.957079,0,-0.2898272,0.957079,0,-0.2898272,0.2275418,0,0.9737683,0.2275418,0,0.9737683,0.2275418,0,0.9737683,0.2275418,0,0.9737683,0.2275418,0,0.9737683,0.2275418,0,0.9737683,0.6914328,0.6914328,-0.209383,0.6914328,0.6914328,-0.209383,0.6914328,0.6914328,-0.209383,-0.1643855,0.6914328,-0.7034899,-0.1643855,0.6914328,-0.7034899,-0.1643855,0.6914328,-0.7034899,0.5270475,0.6914328,-0.4941069,0.5270475,0.6914328,-0.4941069,0.5270475,0.6914328,-0.4941069,0.1643855,0.6914328,0.7034899,0.1643855,0.6914328,0.7034899,0.1643855,0.6914328,0.7034899,-0.5270475,-0.6914328,0.4941069,-0.5270475,-0.6914328,0.4941069,-0.5270475,-0.6914328,0.4941069,0.4456925,0.8574055,-0.2573207,0.4456925,0.8574055,-0.2573207,0.4456925,0.8574055,-0.2573207,0.4456925,0.8574055,-0.2573207,0.4456925,0.8574055,-0.2573207,0.4456925,0.8574055,-0.2573207,0.5270475,-0.6914328,0.4941069,0.5270475,-0.6914328,0.4941069,0.5270475,-0.6914328,0.4941069,0.7295372,0,0.6839411,0.7295372,0,0.6839411,0.7295372,0,0.6839411,0.7295372,0,0.6839411,0.7295372,0,0.6839411,0.7295372,0,0.6839411,0.7295372,0,-0.6839411,0.7295372,0,-0.6839411,0.7295372,0,-0.6839411,0.7295372,0,-0.6839411,0.7295372,0,-0.6839411,0.7295372,0,-0.6839411,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.2275418,0,-0.9737683,-0.2275418,0,-0.9737683,-0.2275418,0,-0.9737683,-0.2275418,0,-0.9737683,-0.2275418,0,-0.9737683,-0.2275418,0,-0.9737683,0.957079,0,0.2898272,0.957079,0,0.2898272,0.957079,0,0.2898272,0.957079,0,0.2898272,0.957079,0,0.2898272,0.957079,0,0.2898272,-0.6914328,-0.6914328,0.209383,-0.6914328,-0.6914328,0.209383,-0.6914328,-0.6914328,0.209383,-0.5270475,-0.6914328,-0.4941069,-0.5270475,-0.6914328,-0.4941069,-0.5270475,-0.6914328,-0.4941069,0,0.8574055,-0.5146414,0,0.8574055,-0.5146414,0,0.8574055,-0.5146414,0,0.8574055,-0.5146414,0,0.8574055,-0.5146414,0,0.8574055,-0.5146414,0.4456925,-0.8574055,0.2573207,0.4456925,-0.8574055,0.2573207,0.4456925,-0.8574055,0.2573207,0.4456925,-0.8574055,0.2573207,0.4456925,-0.8574055,0.2573207,0.4456925,-0.8574055,0.2573207,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.1643855,-0.6914328,0.7034899,0.1643855,-0.6914328,0.7034899,0.1643855,-0.6914328,0.7034899,-0.7295372,0,-0.6839411,-0.7295372,0,-0.6839411,-0.7295372,0,-0.6839411,-0.7295372,0,-0.6839411,-0.7295372,0,-0.6839411,-0.7295372,0,-0.6839411,0.4456925,0.8574055,0.2573207,0.4456925,0.8574055,0.2573207,0.4456925,0.8574055,0.2573207,0.4456925,0.8574055,0.2573207,0.4456925,0.8574055,0.2573207,0.4456925,0.8574055,0.2573207,0.5270475,-0.6914328,-0.4941069,0.5270475,-0.6914328,-0.4941069,0.5270475,-0.6914328,-0.4941069,-0.1643855,-0.6914328,-0.7034899,-0.1643855,-0.6914328,-0.7034899,-0.1643855,-0.6914328,-0.7034899,0.5270475,0.6914328,0.4941069,0.5270475,0.6914328,0.4941069,0.5270475,0.6914328,0.4941069,0,0.8574055,0.5146414,0,0.8574055,0.5146414,0,0.8574055,0.5146414,0,0.8574055,0.5146414,0,0.8574055,0.5146414,0,0.8574055,0.5146414,-0.4456925,0.8574055,-0.2573207,-0.4456925,0.8574055,-0.2573207,-0.4456925,0.8574055,-0.2573207,-0.4456925,0.8574055,-0.2573207,-0.4456925,0.8574055,-0.2573207,-0.4456925,0.8574055,-0.2573207,0.6914328,0.6914328,0.209383,0.6914328,0.6914328,0.209383,0.6914328,0.6914328,0.209383,0,-0.8574055,-0.5146414,0,-0.8574055,-0.5146414,0,-0.8574055,-0.5146414,0,-0.8574055,-0.5146414,0,-0.8574055,-0.5146414,0,-0.8574055,-0.5146414,-0.5270475,0.6914328,0.4941069,-0.5270475,0.6914328,0.4941069,-0.5270475,0.6914328,0.4941069,-0.1643855,-0.6914328,0.7034899,-0.1643855,-0.6914328,0.7034899,-0.1643855,-0.6914328,0.7034899,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8574055,0.5146414,0,-0.8574055,0.5146414,0,-0.8574055,0.5146414,0,-0.8574055,0.5146414,0,-0.8574055,0.5146414,0,-0.8574055,0.5146414,-0.6914328,0.6914328,-0.209383,-0.6914328,0.6914328,-0.209383,-0.6914328,0.6914328,-0.209383,0.6914328,-0.6914328,0.209383,0.6914328,-0.6914328,0.209383,0.6914328,-0.6914328,0.209383,-0.957079,0,-0.2898272,-0.957079,0,-0.2898272,-0.957079,0,-0.2898272,-0.957079,0,-0.2898272,-0.957079,0,-0.2898272,-0.957079,0,-0.2898272,-0.4456925,0.8574055,0.2573207,-0.4456925,0.8574055,0.2573207,-0.4456925,0.8574055,0.2573207,-0.4456925,0.8574055,0.2573207,-0.4456925,0.8574055,0.2573207,-0.4456925,0.8574055,0.2573207,-0.7295372,0,0.6839411,-0.7295372,0,0.6839411,-0.7295372,0,0.6839411,-0.7295372,0,0.6839411,-0.7295372,0,0.6839411,-0.7295372,0,0.6839411,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.2275418,0,-0.9737683,0.2275418,0,-0.9737683,0.2275418,0,-0.9737683,0.2275418,0,-0.9737683,0.2275418,0,-0.9737683,0.2275418,0,-0.9737683,-0.2275418,0,0.9737683,-0.2275418,0,0.9737683,-0.2275418,0,0.9737683,-0.2275418,0,0.9737683,-0.2275418,0,0.9737683,-0.2275418,0,0.9737683,0.1643855,0.6914328,-0.7034899,0.1643855,0.6914328,-0.7034899,0.1643855,0.6914328,-0.7034899,-0.4456925,-0.8574055,-0.2573207,-0.4456925,-0.8574055,-0.2573207,-0.4456925,-0.8574055,-0.2573207,-0.4456925,-0.8574055,-0.2573207,-0.4456925,-0.8574055,-0.2573207,-0.4456925,-0.8574055,-0.2573207,-0.4456925,-0.8574055,0.2573207,-0.4456925,-0.8574055,0.2573207,-0.4456925,-0.8574055,0.2573207,-0.4456925,-0.8574055,0.2573207,-0.4456925,-0.8574055,0.2573207,-0.4456925,-0.8574055,0.2573207,0.6914328,-0.6914328,-0.209383,0.6914328,-0.6914328,-0.209383,0.6914328,-0.6914328,-0.209383,-0.5270475,0.6914328,-0.4941069,-0.5270475,0.6914328,-0.4941069,-0.5270475,0.6914328,-0.4941069,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0.1643855,-0.6914328,-0.7034899,0.1643855,-0.6914328,-0.7034899,0.1643855,-0.6914328,-0.7034899,-0.957079,0,0.2898272,-0.957079,0,0.2898272,-0.957079,0,0.2898272,-0.957079,0,0.2898272,-0.957079,0,0.2898272,-0.957079,0,0.2898272,-0.1643855,0.6914328,0.7034899,-0.1643855,0.6914328,0.7034899,-0.1643855,0.6914328,0.7034899,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,-0.6914328,-0.6914328,-0.209383,-0.6914328,-0.6914328,-0.209383,-0.6914328,-0.6914328,-0.209383,0.4456925,-0.8574055,-0.2573207,0.4456925,-0.8574055,-0.2573207,0.4456925,-0.8574055,-0.2573207,0.4456925,-0.8574055,-0.2573207,0.4456925,-0.8574055,-0.2573207,0.4456925,-0.8574055,-0.2573207,0,-0.1109769,0.9938231,0,-0.1109769,0.9938231,0,-0.1109769,0.9938231,0,-0.1109769,0.9938231,0,-0.1109769,0.9938231,0,-0.1109769,0.9938231,0,-0.1109769,-0.9938231,0,-0.1109769,-0.9938231,0,-0.1109769,-0.9938231,0,-0.1109769,-0.9938231,0,-0.1109769,-0.9938231,0,-0.1109769,-0.9938231,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9938231,-0.1109769,0,0.9938231,-0.1109769,0,0.9938231,-0.1109769,0,0.9938231,-0.1109769,0,0.9938231,-0.1109769,0,0.9938231,-0.1109769,0,-0.9938231,-0.1109769,0,-0.9938231,-0.1109769,0,-0.9938231,-0.1109769,0,-0.9938231,-0.1109769,0,-0.9938231,-0.1109769,0,-0.9938231,-0.1109769,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *468 { + a: -5.14738,0.4766391,-1.517599,4.100618,-2.276399,0.4766391,-2.276399,7.854331,-2.276399,2.61811,-5.14738,7.854331,-5.14738,2.61811,5.14738,2.61811,2.276399,2.61811,5.14738,7.854331,2.276399,7.854331,-1.517599,4.100618,-2.276399,0.4766391,-5.14738,0.4766391,5.14738,0.4766391,2.276399,0.4766391,1.517599,4.100618,2.276399,0.4766391,1.517599,4.100618,5.14738,0.4766391,5.14738,0.4766391,2.276399,0.4766391,1.517599,4.100618,5.14738,7.089079,1.517599,3.4651,2.276399,7.089079,-1.963583,-3.585778,-2.61811,1.501474,1.963583,-3.585778,2.61811,1.501474,-2.276399,7.089079,-1.517599,3.4651,-5.14738,7.089079,-2.276399,7.854331,-2.276399,2.61811,-5.14738,7.854331,-5.14738,2.61811,5.14738,7.854331,5.14738,2.61811,2.276399,7.854331,2.276399,2.61811,1.963583,2.61811,-1.963583,2.61811,1.963583,7.854331,-1.963583,7.854331,-1.963583,2.61811,-1.963583,7.854331,1.963583,2.61811,1.963583,7.854331,5.14738,2.61811,2.276399,2.61811,5.14738,7.854331,2.276399,7.854331,5.14738,7.854331,5.14738,2.61811,2.276399,7.854331,2.276399,2.61811,-2.276399,7.089079,-1.517599,3.4651,-5.14738,7.089079,-1.517599,3.4651,-5.14738,7.089079,-2.276399,7.089079,-2.61811,1.501474,2.61811,1.501474,-1.963583,-3.585778,1.963583,-3.585778,1.963583,8.975329,2.61811,3.888077,-1.963583,8.975329,-2.61811,3.888077,1.963583,2.61811,-1.963583,2.61811,1.963583,7.854331,-1.963583,7.854331,5.14738,7.089079,1.517599,3.4651,2.276399,7.089079,-5.14738,2.61811,-5.14738,7.854331,-2.276399,2.61811,-2.276399,7.854331,1.963583,-3.585778,-1.963583,-3.585778,2.61811,1.501474,-2.61811,1.501474,1.517599,3.4651,2.276399,7.089079,5.14738,7.089079,5.14738,7.089079,1.517599,3.4651,2.276399,7.089079,-1.517599,4.100618,-2.276399,0.4766391,-5.14738,0.4766391,2.61811,1.501474,1.963583,-3.585778,-2.61811,1.501474,-1.963583,-3.585778,-2.61811,1.501474,2.61811,1.501474,-1.963583,-3.585778,1.963583,-3.585778,1.517599,4.100618,5.14738,0.4766391,2.276399,0.4766391,-2.61811,3.888077,-1.963583,8.975329,2.61811,3.888077,1.963583,8.975329,1.517599,4.100618,5.14738,0.4766391,2.276399,0.4766391,-2.276399,7.089079,-1.517599,3.4651,-5.14738,7.089079,1.963583,7.854331,1.963583,2.61811,-1.963583,7.854331,-1.963583,2.61811,-5.23622,-7.958079E-13,-2.936492,-8.242296E-13,-2.61811,-4.5347,-1.468246,-2.543077,2.61811,-4.5347,1.468246,-2.543077,2.936492,-6.536993E-13,5.23622,-4.831691E-13,-2.61811,4.5347,-1.468246,2.543077,2.61811,4.5347,1.468246,2.543077,2.61811,3.888077,-2.61811,3.888077,1.963583,8.975329,-1.963583,8.975329,2.276399,0.4766391,1.517599,4.100618,5.14738,0.4766391,2.276399,7.089079,5.14738,7.089079,1.517599,3.4651,2.276399,2.61811,2.276399,7.854331,5.14738,2.61811,5.14738,7.854331,2.61811,1.501474,1.963583,-3.585778,-2.61811,1.501474,-1.963583,-3.585778,2.276399,2.61811,2.276399,7.854331,5.14738,2.61811,5.14738,7.854331,5.23622,-1.33582E-12,2.61811,-4.5347,2.61811,4.5347,-2.61811,4.5347,-2.61811,-4.5347,-5.23622,0,-2.276399,2.61811,-5.14738,2.61811,-2.276399,7.854331,-5.14738,7.854331,-2.276399,2.61811,-5.14738,2.61811,-2.276399,7.854331,-5.14738,7.854331,-2.276399,0.4766391,-5.14738,0.4766391,-1.517599,4.100618,-2.61811,3.888077,-1.963583,8.975329,2.61811,3.888077,1.963583,8.975329,2.61811,3.888077,-2.61811,3.888077,1.963583,8.975329,-1.963583,8.975329,-2.276399,7.089079,-1.517599,3.4651,-5.14738,7.089079,-5.14738,0.4766391,-1.517599,4.100618,-2.276399,0.4766391,-1.963583,2.61811,-1.963583,7.854331,1.963583,2.61811,1.963583,7.854331,-2.276399,7.089079,-1.517599,3.4651,-5.14738,7.089079,-5.14738,2.61811,-5.14738,7.854331,-2.276399,2.61811,-2.276399,7.854331,-2.276399,0.4766391,-5.14738,0.4766391,-1.517599,4.100618,1.963583,7.854331,1.963583,2.61811,-1.963583,7.854331,-1.963583,2.61811,1.517599,3.4651,2.276399,7.089079,5.14738,7.089079,-1.963583,8.975329,1.963583,8.975329,-2.61811,3.888077,2.61811,3.888077,0.4450787,10.45715,-0.4450787,10.45715,0.7432815,13.14422,-0.7432815,13.14422,0.4450787,10.45715,-0.4450787,10.45715,0.7432815,13.14422,-0.7432815,13.14422,-0.7432815,-0.7432815,-0.7432815,0.7432815,0.7432815,-0.7432815,0.7432815,0.7432815,0.7432815,13.14422,0.4450787,10.45715,-0.7432815,13.14422,-0.4450787,10.45715,-0.7432815,13.14422,0.7432815,13.14422,-0.4450787,10.45715,0.4450787,10.45715,-0.4450787,-0.4450787,0.4450787,-0.4450787,0.4450787,0.4450787,-0.4450787,0.4450787 + } + UVIndex: *360 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,10,8,9,11,13,12,14,16,15,17,19,18,20,22,21,23,25,24,26,28,27,29,27,28,30,32,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,62,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,91,90,92,94,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,108,107,109,107,108,110,112,111,113,115,114,116,118,117,119,117,118,120,122,121,123,121,122,124,123,122,125,123,124,126,125,124,127,126,124,120,121,128,129,128,121,130,128,129,127,130,126,131,130,129,126,130,131,132,134,133,135,133,134,136,138,137,139,141,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,155,157,159,158,157,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,184,183,185,187,186,188,186,187,189,191,190,192,194,193,195,193,194,196,198,197,199,201,200,202,200,201,203,205,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,121,123,129,230,129,123,125,230,123,231,230,125,232,231,125,230,233,129,131,129,233,232,131,233,125,131,232,126,131,125 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *120 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crop_pumpkin, Model::RootNode + C: "OO",5240914013014911079,0 + + ;Geometry::, Model::Mesh crop_pumpkin + C: "OO",5735716594115762257,5240914013014911079 + + ;Material::leafsFall, Model::Mesh crop_pumpkin + C: "OO",3028,5240914013014911079 + + ;Material::grass, Model::Mesh crop_pumpkin + C: "OO",3024,5240914013014911079 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crop_pumpkin.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crop_pumpkin.fbx.import new file mode 100644 index 0000000..713d447 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crop_pumpkin.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://byyj6kaugckgb" +path="res://.godot/imported/crop_pumpkin.fbx-f8566a62937eea52bbef2f2cd7ef1e59.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crop_pumpkin.fbx" +dest_files=["res://.godot/imported/crop_pumpkin.fbx-f8566a62937eea52bbef2f2cd7ef1e59.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crop_turnip.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crop_turnip.fbx new file mode 100644 index 0000000..dda30de --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crop_turnip.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 18 + Millisecond: 209 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crop_turnip.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crop_turnip.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4861123920565156213, "Model::crop_turnip", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5625198854188688631, "Geometry::", "Mesh" { + Vertices: *972 { + a: 0.7322389,4.359951,-0.2214,0.7322389,4.359951,0.2214,0.1107,3.443653,-0.1107,0.1107,3.443653,0.1107,0.1107,3.443653,-0.1107,0.7322389,4.359951,0.2214,0.7322389,4.359951,-0.2214,0.1107,3.443653,0.1107,0.3321,4.612764,1.206398,0.1107,4.573463,1.71571,-0.3321,4.612764,1.206398,-0.1107,4.573463,1.71571,-0.3321,4.612764,1.206398,0.1107,4.573463,1.71571,0.3321,4.612764,1.206398,-0.1107,4.573463,1.71571,-0.6389732,5.069724,-0.3321,-0.6389732,5.069724,0.3321,-1.206398,5.320903,-0.1107,-1.206398,5.320903,0.1107,-1.206398,5.320903,-0.1107,-0.6389732,5.069724,0.3321,-0.6389732,5.069724,-0.3321,-1.206398,5.320903,0.1107,0.3321,5.671148,0.6389732,0.1107,6.015227,1.206398,-0.3321,5.671148,0.6389732,-0.1107,6.015227,1.206398,-0.3321,5.671148,0.6389732,0.1107,6.015227,1.206398,0.3321,5.671148,0.6389732,-0.1107,6.015227,1.206398,1.206398,6.60669,-0.1107,1.206398,6.60669,0.1107,0.6389732,6.183471,-0.3321,0.6389732,6.183471,0.3321,0.6389732,6.183471,-0.3321,1.206398,6.60669,0.1107,1.206398,6.60669,-0.1107,0.6389732,6.183471,0.3321,0.1107,3.443653,-0.1107,-0.1107,3.443653,-0.1107,0.2214,4.359951,-0.7322389,-0.2214,4.359951,-0.7322389,0.2214,4.359951,-0.7322389,-0.1107,3.443653,-0.1107,0.1107,3.443653,-0.1107,-0.2214,4.359951,-0.7322389,0.6389732,6.183471,-0.3321,0.6389732,6.183471,0.3321,0.2705598,5.367169,-0.2214,0.2705598,5.367169,0.2214,0.2705598,5.367169,-0.2214,0.6389732,6.183471,0.3321,0.6389732,6.183471,-0.3321,0.2705598,5.367169,0.2214,0.3321,4.612764,-1.206398,0.2214,4.359951,-0.7322389,-0.3320999,4.612764,-1.206398,-0.2214,4.359951,-0.7322389,-0.3320999,4.612764,-1.206398,0.2214,4.359951,-0.7322389,0.3321,4.612764,-1.206398,-0.2214,4.359951,-0.7322389,0.3321,4.612764,-1.206398,-0.3320999,4.612764,-1.206398,0.1107001,4.573463,-1.71571,-0.1106999,4.573463,-1.71571,0.1107001,4.573463,-1.71571,-0.3320999,4.612764,-1.206398,0.3321,4.612764,-1.206398,-0.1106999,4.573463,-1.71571,0.1107,3.443653,-0.1107,-0.1107,3.443653,-0.1107,0.2214,5.007487,-0.2705598,-0.2214,5.007487,-0.2705598,0.2214,5.007487,-0.2705598,-0.1107,3.443653,-0.1107,0.1107,3.443653,-0.1107,-0.2214,5.007487,-0.2705598,0.3321,5.671148,-0.6389732,-0.3321,5.671148,-0.6389732,0.1107,6.015227,-1.206398,-0.1107,6.015227,-1.206398,0.1107,6.015227,-1.206398,-0.3321,5.671148,-0.6389732,0.3321,5.671148,-0.6389732,-0.1107,6.015227,-1.206398,-0.2705597,4.585252,-0.2214,-0.1107,3.443653,-0.1107,-0.2705598,4.585252,0.2214,-0.1107,3.443653,0.1107,-0.2705598,4.585252,0.2214,-0.1107,3.443653,-0.1107,-0.2705597,4.585252,-0.2214,-0.1107,3.443653,0.1107,-0.6389732,5.069724,-0.3321,-0.2705597,4.585252,-0.2214,-0.6389732,5.069724,0.3321,-0.2705598,4.585252,0.2214,-0.6389732,5.069724,0.3321,-0.2705597,4.585252,-0.2214,-0.6389732,5.069724,-0.3321,-0.2705598,4.585252,0.2214,0.2705598,5.367169,-0.2214,0.2705598,5.367169,0.2214,0.1107,3.443653,-0.1107,0.1107,3.443653,0.1107,0.1107,3.443653,-0.1107,0.2705598,5.367169,0.2214,0.2705598,5.367169,-0.2214,0.1107,3.443653,0.1107,1.71571,4.573463,-0.1107,1.71571,4.573463,0.1107,1.206398,4.612764,-0.3321,1.206398,4.612764,0.3321,1.206398,4.612764,-0.3321,1.71571,4.573463,0.1107,1.71571,4.573463,-0.1107,1.206398,4.612764,0.3321,-0.7322389,4.359951,-0.2214,-0.1107,3.443653,-0.1107,-0.7322389,4.359951,0.2214,-0.1107,3.443653,0.1107,-0.7322389,4.359951,0.2214,-0.1107,3.443653,-0.1107,-0.7322389,4.359951,-0.2214,-0.1107,3.443653,0.1107,-0.2214,5.007487,0.2705598,0.2214,5.007487,0.2705598,-0.3321,5.671148,0.6389732,0.3321,5.671148,0.6389732,-0.3321,5.671148,0.6389732,0.2214,5.007487,0.2705598,-0.2214,5.007487,0.2705598,0.3321,5.671148,0.6389732,-0.1107,3.443653,0.1107,0.1107,3.443653,0.1107,-0.2214,5.007487,0.2705598,0.2214,5.007487,0.2705598,-0.2214,5.007487,0.2705598,0.1107,3.443653,0.1107,-0.1107,3.443653,0.1107,0.2214,5.007487,0.2705598,-0.1107,3.443653,0.1107,0.1107,3.443653,0.1107,-0.2214,4.359951,0.7322389,0.2214,4.359951,0.7322389,-0.2214,4.359951,0.7322389,0.1107,3.443653,0.1107,-0.1107,3.443653,0.1107,0.2214,4.359951,0.7322389,-0.7322389,4.359951,-0.2214,-0.7322389,4.359951,0.2214,-1.206398,4.612764,-0.3321,-1.206398,4.612764,0.3321,-1.206398,4.612764,-0.3321,-0.7322389,4.359951,0.2214,-0.7322389,4.359951,-0.2214,-1.206398,4.612764,0.3321,0.2214,5.007487,-0.2705598,-0.2214,5.007487,-0.2705598,0.3321,5.671148,-0.6389732,-0.3321,5.671148,-0.6389732,0.3321,5.671148,-0.6389732,-0.2214,5.007487,-0.2705598,0.2214,5.007487,-0.2705598,-0.3321,5.671148,-0.6389732,1.206398,4.612764,-0.3321,1.206398,4.612764,0.3321,0.7322389,4.359951,-0.2214,0.7322389,4.359951,0.2214,0.7322389,4.359951,-0.2214,1.206398,4.612764,0.3321,1.206398,4.612764,-0.3321,0.7322389,4.359951,0.2214,-1.206398,4.612764,-0.3321,-1.206398,4.612764,0.3321,-1.71571,4.573463,-0.1107,-1.71571,4.573463,0.1107,-1.71571,4.573463,-0.1107,-1.206398,4.612764,0.3321,-1.206398,4.612764,-0.3321,-1.71571,4.573463,0.1107,0.3321,4.612764,1.206398,-0.3321,4.612764,1.206398,0.2214,4.359951,0.7322389,-0.2214,4.359951,0.7322389,0.2214,4.359951,0.7322389,-0.3321,4.612764,1.206398,0.3321,4.612764,1.206398,-0.2214,4.359951,0.7322389,0.1843394,3.223948,0.1843394,-0.1843394,3.223948,0.1843394,0.1107,3.443653,0.1107,-0.1107,3.443653,0.1107,-0.1843394,3.223948,-0.1843394,-0.1107,3.443653,-0.1107,-0.1843394,3.223948,0.1843394,-0.1107,3.443653,0.1107,-0.1843394,3.223948,-0.1843394,0.1843394,3.223948,-0.1843394,-0.1107,3.443653,-0.1107,0.1107,3.443653,-0.1107,0.1107,3.443653,-0.1107,0.1107,3.443653,0.1107,-0.1107,3.443653,-0.1107,-0.1107,3.443653,0.1107,0.1843394,3.223948,-0.1843394,0.1843394,3.223948,0.1843394,0.1107,3.443653,-0.1107,0.1107,3.443653,0.1107,0,2.901554,0.8643588,-0.7485567,2.901554,0.4321794,0,3.223948,0.5762392,-0.4990378,3.223948,0.2881196,0,2.901554,-0.8643588,0.7485567,2.901554,-0.4321794,0,3.223948,-0.5762392,0.4990378,3.223948,-0.2881196,0.7485567,2.901554,-0.4321794,0.7485567,2.901554,0.4321794,0.4990378,3.223948,-0.2881196,0.4990378,3.223948,0.2881196,-0.9656382,2.417961,-0.5575114,0,2.417961,-1.115023,-0.7485567,2.901554,-0.4321794,0,2.901554,-0.8643588,0.2170815,-3.205931E-30,0.125332,0,-3.205931E-30,0.2506641,0.4453913,1.450777,0.2571467,0,1.450777,0.5142935,-0.2170815,-3.205931E-30,-0.125332,0,-3.205931E-30,-0.2506641,-0.4453913,1.450777,-0.2571467,0,1.450777,-0.5142935,0.7485567,2.901554,0.4321794,0,2.901554,0.8643588,0.4990378,3.223948,0.2881196,0,3.223948,0.5762392,0.4453913,1.450777,-0.2571467,0.2170815,-3.205931E-30,-0.125332,0.4453913,1.450777,0.2571467,0.2170815,-3.205931E-30,0.125332,0,-3.205931E-30,-0.2506641,0.2170815,-3.205931E-30,-0.125332,0,1.450777,-0.5142935,0.4453913,1.450777,-0.2571467,0.9656382,2.417961,-0.5575114,0.4453913,1.450777,-0.2571467,0.9656382,2.417961,0.5575114,0.4453913,1.450777,0.2571467,0,1.450777,0.5142935,-0.4453913,1.450777,0.2571467,0,2.417961,1.115023,-0.9656382,2.417961,0.5575114,-0.7485567,2.901554,-0.4321794,0,2.901554,-0.8643588,-0.4990378,3.223948,-0.2881196,0,3.223948,-0.5762392,0.4990378,3.223948,-0.2881196,0.4990378,3.223948,0.2881196,0,3.223948,-0.5762392,0.1843394,3.223948,-0.1843394,-0.1843394,3.223948,-0.1843394,-0.4990378,3.223948,-0.2881196,-0.1843394,3.223948,0.1843394,0.1843394,3.223948,0.1843394,0,3.223948,0.5762392,-0.4990378,3.223948,0.2881196,0,1.450777,-0.5142935,0.4453913,1.450777,-0.2571467,0,2.417961,-1.115023,0.9656382,2.417961,-0.5575114,0,2.417961,1.115023,-0.9656382,2.417961,0.5575114,0,2.901554,0.8643588,-0.7485567,2.901554,0.4321794,-0.4453913,1.450777,-0.2571467,0,1.450777,-0.5142935,-0.9656382,2.417961,-0.5575114,0,2.417961,-1.115023,0.9656382,2.417961,0.5575114,0,2.417961,1.115023,0.7485567,2.901554,0.4321794,0,2.901554,0.8643588,-0.7485567,2.901554,-0.4321794,-0.4990378,3.223948,-0.2881196,-0.7485567,2.901554,0.4321794,-0.4990378,3.223948,0.2881196,0,-3.205931E-30,0.2506641,-0.2170815,-3.205931E-30,0.125332,0,1.450777,0.5142935,-0.4453913,1.450777,0.2571467,0,2.417961,-1.115023,0.9656382,2.417961,-0.5575114,0,2.901554,-0.8643588,0.7485567,2.901554,-0.4321794,0.4453913,1.450777,0.2571467,0,1.450777,0.5142935,0.9656382,2.417961,0.5575114,0,2.417961,1.115023,-0.9656382,2.417961,-0.5575114,-0.9656382,2.417961,0.5575114,-0.4453913,1.450777,-0.2571467,-0.4453913,1.450777,0.2571467,-0.4453913,1.450777,-0.2571467,-0.4453913,1.450777,0.2571467,-0.2170815,-3.205931E-30,-0.125332,-0.2170815,-3.205931E-30,0.125332,0.2170815,-3.205931E-30,0.125332,0.2170815,-3.205931E-30,-0.125332,0,-3.205931E-30,0.2506641,0,-3.205931E-30,-0.2506641,-0.2170815,-3.205931E-30,0.125332,-0.2170815,-3.205931E-30,-0.125332,0.9656382,2.417961,-0.5575114,0.9656382,2.417961,0.5575114,0.7485567,2.901554,-0.4321794,0.7485567,2.901554,0.4321794,-0.9656382,2.417961,-0.5575114,-0.7485567,2.901554,-0.4321794,-0.9656382,2.417961,0.5575114,-0.7485567,2.901554,0.4321794 + } + PolygonVertexIndex: *504 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,123,121,-123,124,126,-126,125,127,-125,128,130,-130,131,129,-131,132,134,-134,133,135,-133,136,138,-138,139,137,-139,140,142,-142,141,143,-141,144,146,-146,147,145,-147,148,150,-150,149,151,-149,152,154,-154,155,153,-155,156,158,-158,157,159,-157,160,162,-162,163,161,-163,164,166,-166,165,167,-165,168,170,-170,171,169,-171,172,174,-174,173,175,-173,176,178,-178,179,177,-179,180,182,-182,181,183,-181,184,186,-186,187,185,-187,188,190,-190,189,191,-189,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,263,-263,265,264,-263,266,264,-266,263,267,-262,268,261,-268,266,268,-268,269,268,-267,265,269,-267,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,313,-313,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1512 { + a: -0.8275743,0.5613562,0,-0.8275743,0.5613562,0,-0.8275743,0.5613562,0,-0.8275743,0.5613562,0,-0.8275743,0.5613562,0,-0.8275743,0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0.8275743,-0.5613562,0,0,0.997036,0.07693703,0,0.997036,0.07693703,0,0.997036,0.07693703,0,0.997036,0.07693703,0,0.997036,0.07693703,0,0.997036,0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,0,-0.997036,-0.07693703,0.4047785,0.9144148,0,0.4047785,0.9144148,0,0.4047785,0.9144148,0,0.4047785,0.9144148,0,0.4047785,0.9144148,0,0.4047785,0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,-0.4047785,-0.9144148,0,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,0.8550734,-0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,0,-0.8550734,0.5185071,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,-0.5978731,0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0.5978731,-0.8015907,0,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,0.5613562,0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,0,-0.5613562,-0.8275743,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,-0.9114707,0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0.9114707,-0.4113651,0,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,0.8824083,0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,-0.8824083,-0.4704844,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,0.997036,-0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,-0.997036,0.07693703,0,0.101693,0.9948158,0,0.101693,0.9948158,0,0.101693,0.9948158,0,0.101693,0.9948158,0,0.101693,0.9948158,0,0.101693,0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,-0.101693,-0.9948158,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,0.8550734,0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0,-0.8550734,-0.5185071,0.9903375,0.1386784,0,0.9903375,0.1386784,0,0.9903375,0.1386784,0,0.9903375,0.1386784,0,0.9903375,0.1386784,0,0.9903375,0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,-0.9903375,-0.1386784,0,0.7959921,0.605307,0,0.7959921,0.605307,0,0.7959921,0.605307,0,0.7959921,0.605307,0,0.7959921,0.605307,0,0.7959921,0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.7959921,-0.605307,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,-0.9965643,0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,0.9965643,-0.08282254,0,0.07693703,0.997036,0,0.07693703,0.997036,0,0.07693703,0.997036,0,0.07693703,0.997036,0,0.07693703,0.997036,0,0.07693703,0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,-0.07693703,-0.997036,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,0.8275743,0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,-0.8275743,-0.5613562,0,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,0.4853545,-0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,-0.4853545,0.8743175,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,0.101693,-0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0,-0.101693,0.9948158,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,0.5613562,-0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0,-0.5613562,0.8275743,0.4704844,0.8824083,0,0.4704844,0.8824083,0,0.4704844,0.8824083,0,0.4704844,0.8824083,0,0.4704844,0.8824083,0,0.4704844,0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,-0.4704844,-0.8824083,0,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,0.4853545,0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,0,-0.4853545,-0.8743175,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,-0.4704844,0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,0.4704844,-0.8824083,0,-0.07693703,0.997036,0,-0.07693703,0.997036,0,-0.07693703,0.997036,0,-0.07693703,0.997036,0,-0.07693703,0.997036,0,-0.07693703,0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0.07693703,-0.997036,0,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,0.8824083,-0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,-0.8824083,0.4704844,0,0.3177985,0.9481582,0,0.3177985,0.9481582,0,0.3177985,0.9481582,0,0.3177985,0.9481582,0,0.3177985,0.9481582,0,0.3177985,0.9481582,-0.9481582,0.3177985,0,-0.9481582,0.3177985,0,-0.9481582,0.3177985,0,-0.9481582,0.3177985,0,-0.9481582,0.3177985,0,-0.9481582,0.3177985,0,0,0.3177985,-0.9481582,0,0.3177985,-0.9481582,0,0.3177985,-0.9481582,0,0.3177985,-0.9481582,0,0.3177985,-0.9481582,0,0.3177985,-0.9481582,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9481582,0.3177985,0,0.9481582,0.3177985,0,0.9481582,0.3177985,0,0.9481582,0.3177985,0,0.9481582,0.3177985,0,0.9481582,0.3177985,0,-0.3954076,0.612055,0.6848661,-0.3954076,0.612055,0.6848661,-0.3954076,0.612055,0.6848661,-0.3954076,0.612055,0.6848661,-0.3954076,0.612055,0.6848661,-0.3954076,0.612055,0.6848661,0.3954076,0.612055,-0.6848661,0.3954076,0.612055,-0.6848661,0.3954076,0.612055,-0.6848661,0.3954076,0.612055,-0.6848661,0.3954076,0.612055,-0.6848661,0.3954076,0.612055,-0.6848661,0.7908152,0.6120549,0,0.7908152,0.6120549,0,0.7908152,0.6120549,0,0.7908152,0.6120549,0,0.7908152,0.6120549,0,0.7908152,0.6120549,0,-0.4561495,0.4095251,-0.7900741,-0.4561495,0.4095251,-0.7900741,-0.4561495,0.4095251,-0.7900741,-0.4561495,0.4095251,-0.7900741,-0.4561495,0.4095251,-0.7900741,-0.4561495,0.4095251,-0.7900741,0.4939213,-0.1554575,0.8554968,0.4939213,-0.1554575,0.8554968,0.4939213,-0.1554575,0.8554968,0.4939213,-0.1554575,0.8554968,0.4939213,-0.1554575,0.8554968,0.4939213,-0.1554575,0.8554968,-0.4939213,-0.1554575,-0.8554968,-0.4939213,-0.1554575,-0.8554968,-0.4939213,-0.1554575,-0.8554968,-0.4939213,-0.1554575,-0.8554968,-0.4939213,-0.1554575,-0.8554968,-0.4939213,-0.1554575,-0.8554968,0.3954076,0.612055,0.6848661,0.3954076,0.612055,0.6848661,0.3954076,0.612055,0.6848661,0.3954076,0.612055,0.6848661,0.3954076,0.612055,0.6848661,0.3954076,0.612055,0.6848661,0.9878426,-0.1554575,0,0.9878426,-0.1554575,0,0.9878426,-0.1554575,0,0.9878426,-0.1554575,0,0.9878426,-0.1554575,0,0.9878426,-0.1554575,0,0.4939213,-0.1554575,-0.8554968,0.4939213,-0.1554575,-0.8554968,0.4939213,-0.1554575,-0.8554968,0.4939213,-0.1554575,-0.8554968,0.4939213,-0.1554575,-0.8554968,0.4939213,-0.1554575,-0.8554968,0.8806781,-0.4737153,0,0.8806781,-0.4737153,0,0.8806781,-0.4737153,0,0.8806781,-0.4737153,0,0.8806781,-0.4737153,0,0.8806781,-0.4737153,0,-0.440339,-0.4737152,0.7626895,-0.440339,-0.4737152,0.7626895,-0.440339,-0.4737152,0.7626895,-0.440339,-0.4737152,0.7626895,-0.440339,-0.4737152,0.7626895,-0.440339,-0.4737152,0.7626895,-0.3954076,0.612055,-0.6848661,-0.3954076,0.612055,-0.6848661,-0.3954076,0.612055,-0.6848661,-0.3954076,0.612055,-0.6848661,-0.3954076,0.612055,-0.6848661,-0.3954076,0.612055,-0.6848661,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.440339,-0.4737152,-0.7626895,0.440339,-0.4737152,-0.7626895,0.440339,-0.4737152,-0.7626895,0.440339,-0.4737152,-0.7626895,0.440339,-0.4737152,-0.7626895,0.440339,-0.4737152,-0.7626895,-0.4561495,0.4095251,0.7900741,-0.4561495,0.4095251,0.7900741,-0.4561495,0.4095251,0.7900741,-0.4561495,0.4095251,0.7900741,-0.4561495,0.4095251,0.7900741,-0.4561495,0.4095251,0.7900741,-0.440339,-0.4737152,-0.7626895,-0.440339,-0.4737152,-0.7626895,-0.440339,-0.4737152,-0.7626895,-0.440339,-0.4737152,-0.7626895,-0.440339,-0.4737152,-0.7626895,-0.440339,-0.4737152,-0.7626895,0.4561495,0.4095251,0.7900741,0.4561495,0.4095251,0.7900741,0.4561495,0.4095251,0.7900741,0.4561495,0.4095251,0.7900741,0.4561495,0.4095251,0.7900741,0.4561495,0.4095251,0.7900741,-0.7908152,0.6120549,0,-0.7908152,0.6120549,0,-0.7908152,0.6120549,0,-0.7908152,0.6120549,0,-0.7908152,0.6120549,0,-0.7908152,0.6120549,0,-0.4939213,-0.1554575,0.8554968,-0.4939213,-0.1554575,0.8554968,-0.4939213,-0.1554575,0.8554968,-0.4939213,-0.1554575,0.8554968,-0.4939213,-0.1554575,0.8554968,-0.4939213,-0.1554575,0.8554968,0.4561495,0.4095251,-0.7900741,0.4561495,0.4095251,-0.7900741,0.4561495,0.4095251,-0.7900741,0.4561495,0.4095251,-0.7900741,0.4561495,0.4095251,-0.7900741,0.4561495,0.4095251,-0.7900741,0.440339,-0.4737152,0.7626895,0.440339,-0.4737152,0.7626895,0.440339,-0.4737152,0.7626895,0.440339,-0.4737152,0.7626895,0.440339,-0.4737152,0.7626895,0.440339,-0.4737152,0.7626895,-0.8806781,-0.4737153,0,-0.8806781,-0.4737153,0,-0.8806781,-0.4737153,0,-0.8806781,-0.4737153,0,-0.8806781,-0.4737153,0,-0.8806781,-0.4737153,0,-0.9878426,-0.1554575,0,-0.9878426,-0.1554575,0,-0.9878426,-0.1554575,0,-0.9878426,-0.1554575,0,-0.9878426,-0.1554575,0,-0.9878426,-0.1554575,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9122989,0.409525,0,0.9122989,0.409525,0,0.9122989,0.409525,0,0.9122989,0.409525,0,0.9122989,0.409525,0,0.9122989,0.409525,0,-0.9122989,0.409525,0,-0.9122989,0.409525,0,-0.9122989,0.409525,0,-0.9122989,0.409525,0,-0.9122989,0.409525,0,-0.9122989,0.409525,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *648 { + a: -0.8716536,15.82374,0.8716536,15.82374,-0.4358268,11.46465,0.4358268,11.46465,-0.4358268,11.46465,0.8716536,15.82374,-0.8716536,15.82374,0.4358268,11.46465,1.30748,-3.338307,0.4358268,-5.349433,-1.30748,-3.338307,-0.4358268,-5.349433,-1.30748,-3.338307,0.4358268,-5.349433,1.30748,-3.338307,-0.4358268,-5.349433,1.30748,10.37953,-1.30748,10.37953,0.4358267,12.82258,-0.4358268,12.82258,0.4358267,12.82258,-1.30748,10.37953,1.30748,10.37953,-0.4358268,12.82258,-1.30748,13.72795,-0.4358268,16.34054,1.30748,13.72795,0.4358268,16.34054,1.30748,13.72795,-0.4358268,16.34054,-1.30748,13.72795,0.4358268,16.34054,-0.4358268,19.35827,0.4358268,19.35827,-1.30748,16.57137,1.30748,16.57137,-1.30748,16.57137,0.4358268,19.35827,-0.4358268,19.35827,1.30748,16.57137,0.4358267,11.46465,-0.4358268,11.46465,0.8716536,15.82374,-0.8716536,15.82374,0.8716536,15.82374,-0.4358268,11.46465,0.4358267,11.46465,-0.8716536,15.82374,-1.30748,23.22403,1.30748,23.22403,-0.8716536,19.6981,0.8716536,19.6981,-0.8716536,19.6981,1.30748,23.22403,-1.30748,23.22403,0.8716536,19.6981,1.30748,12.73531,0.8716535,10.61977,-1.30748,12.73531,-0.8716536,10.61977,-1.30748,12.73531,0.8716535,10.61977,1.30748,12.73531,-0.8716536,10.61977,-1.30748,-3.338307,1.30748,-3.338307,-0.4358267,-5.349433,0.4358268,-5.349433,-0.4358267,-5.349433,1.30748,-3.338307,-1.30748,-3.338307,0.4358268,-5.349433,0.4358268,13.53172,-0.4358267,13.53172,0.8716536,19.72064,-0.8716536,19.72064,0.8716536,19.72064,-0.4358267,13.53172,0.4358268,13.53172,-0.8716536,19.72064,1.30748,13.72795,-1.30748,13.72795,0.4358268,16.34054,-0.4358268,16.34054,0.4358268,16.34054,-1.30748,13.72795,1.30748,13.72795,-0.4358268,16.34054,0.8716536,18.02547,0.4358267,13.48713,-0.8716536,18.02547,-0.4358268,13.48713,-0.8716536,18.02547,0.4358267,13.48713,0.8716536,18.02547,-0.4358268,13.48713,1.30748,17.41038,0.8716536,15.01416,-1.30748,17.41038,-0.8716536,15.01416,-1.30748,17.41038,0.8716536,15.01416,1.30748,17.41038,-0.8716536,15.01416,-0.8716536,21.14621,0.8716536,21.14621,-0.4358268,13.54721,0.4358268,13.54721,-0.4358268,13.54721,0.8716536,21.14621,-0.8716536,21.14621,0.4358268,13.54721,0.4358268,-5.349433,-0.4358268,-5.349433,1.30748,-3.338307,-1.30748,-3.338307,1.30748,-3.338307,-0.4358268,-5.349433,0.4358268,-5.349433,-1.30748,-3.338307,0.8716536,15.82374,0.4358267,11.46465,-0.8716536,15.82374,-0.4358268,11.46465,-0.8716536,15.82374,0.4358267,11.46465,0.8716536,15.82374,-0.4358268,11.46465,0.8716536,17.75375,-0.8716536,17.75375,1.30748,20.74217,-1.30748,20.74217,1.30748,20.74217,-0.8716536,17.75375,0.8716536,17.75375,-1.30748,20.74217,0.4358268,13.53172,-0.4358268,13.53172,0.8716536,19.72064,-0.8716536,19.72064,0.8716536,19.72064,-0.4358268,13.53172,0.4358268,13.53172,-0.8716536,19.72064,0.4358268,11.46465,-0.4358268,11.46465,0.8716536,15.82374,-0.8716536,15.82374,0.8716536,15.82374,-0.4358268,11.46465,0.4358268,11.46465,-0.8716536,15.82374,0.8716536,10.61977,-0.8716536,10.61977,1.30748,12.73531,-1.30748,12.73531,1.30748,12.73531,-0.8716536,10.61977,0.8716536,10.61977,-1.30748,12.73531,0.8716536,17.75375,-0.8716536,17.75375,1.30748,20.74217,-1.30748,20.74217,1.30748,20.74217,-0.8716536,17.75375,0.8716536,17.75375,-1.30748,20.74217,-1.30748,12.73531,1.30748,12.73531,-0.8716536,10.61977,0.8716536,10.61977,-0.8716536,10.61977,1.30748,12.73531,-1.30748,12.73531,0.8716536,10.61977,-1.30748,-3.338307,1.30748,-3.338307,-0.4358267,-5.349433,0.4358268,-5.349433,-0.4358267,-5.349433,1.30748,-3.338307,-1.30748,-3.338307,0.4358268,-5.349433,-1.30748,12.73531,1.30748,12.73531,-0.8716536,10.61977,0.8716536,10.61977,-0.8716536,10.61977,1.30748,12.73531,-1.30748,12.73531,0.8716536,10.61977,0.7257457,11.80406,-0.7257457,11.80406,0.4358268,12.71633,-0.4358268,12.71633,-0.7257457,11.80406,-0.4358267,12.71633,0.7257457,11.80406,0.4358268,12.71633,0.7257457,11.80406,-0.7257457,11.80406,0.4358267,12.71633,-0.4358268,12.71633,-0.4358268,-0.4358268,-0.4358268,0.4358268,0.4358267,-0.4358268,0.4358268,0.4358268,0.7257457,11.80406,-0.7257457,11.80406,0.4358268,12.71633,-0.4358268,12.71633,1.701494,7.230059,-1.701494,7.230059,1.134329,8.835075,-1.134329,8.835075,1.701494,7.230059,-1.701494,7.230059,1.134329,8.835075,-1.134329,8.835075,1.701494,7.230059,-1.701494,7.230059,1.134329,8.835075,-1.134329,8.835075,2.194927,7.127757,-2.194927,7.127757,1.701494,9.21469,-1.701494,9.21469,0.4934332,0.132862,-0.4934332,0.132862,1.012389,5.914876,-1.012389,5.914876,0.4934332,0.132862,-0.4934332,0.132862,1.012389,5.914876,-1.012389,5.914876,1.701494,7.230059,-1.701494,7.230059,1.134329,8.835075,-1.134329,8.835075,1.012389,5.914876,0.4934332,0.132862,-1.012389,5.914876,-0.4934332,0.132862,0.4934332,0.132862,-0.4934332,0.132862,1.012389,5.914876,-1.012389,5.914876,2.194927,10.18458,1.012389,5.86085,-2.194927,10.18458,-1.012389,5.86085,1.012389,5.86085,-1.012389,5.86085,2.194927,10.18458,-2.194927,10.18458,1.701494,7.230059,-1.701494,7.230059,1.134329,8.835075,-1.134329,8.835075,-1.964716,-1.134329,-1.964716,1.134329,4.98088E-16,-2.268658,-0.7257457,-0.7257457,0.7257457,-0.7257457,1.964716,-1.134329,0.7257457,0.7257457,-0.7257457,0.7257457,4.98088E-16,2.268658,1.964716,1.134329,1.012389,5.86085,-1.012389,5.86085,2.194927,10.18458,-2.194927,10.18458,2.194927,7.127757,-2.194927,7.127757,1.701494,9.21469,-1.701494,9.21469,1.012389,5.86085,-1.012389,5.86085,2.194927,10.18458,-2.194927,10.18458,2.194927,7.127757,-2.194927,7.127757,1.701494,9.21469,-1.701494,9.21469,-1.701494,7.230059,-1.134329,8.835075,1.701494,7.230059,1.134329,8.835075,0.4934332,0.132862,-0.4934332,0.132862,1.012389,5.914876,-1.012389,5.914876,2.194927,7.127757,-2.194927,7.127757,1.701494,9.21469,-1.701494,9.21469,1.012389,5.86085,-1.012389,5.86085,2.194927,10.18458,-2.194927,10.18458,-2.194927,10.18458,2.194927,10.18458,-1.012389,5.86085,1.012389,5.86085,-1.012389,5.914876,1.012389,5.914876,-0.4934332,0.132862,0.4934332,0.132862,0.8546514,0.4934332,0.8546514,-0.4934332,0,0.9868664,0,-0.9868664,-0.8546514,0.4934332,-0.8546514,-0.4934332,2.194927,7.127757,-2.194927,7.127757,1.701494,9.21469,-1.701494,9.21469,-2.194927,7.127757,-1.701494,9.21469,2.194927,7.127757,1.701494,9.21469 + } + UVIndex: *504 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,123,121,122,124,126,125,125,127,124,128,130,129,131,129,130,132,134,133,133,135,132,136,138,137,139,137,138,140,142,141,141,143,140,144,146,145,147,145,146,148,150,149,149,151,148,152,154,153,155,153,154,156,158,157,157,159,156,160,162,161,163,161,162,164,166,165,165,167,164,168,170,169,171,169,170,172,174,173,173,175,172,176,178,177,179,177,178,180,182,181,181,183,180,184,186,185,187,185,186,188,190,189,189,191,188,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,263,262,265,264,262,266,264,265,263,267,261,268,261,267,266,268,267,269,268,266,265,269,266,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,313,312,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *168 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crop_turnip, Model::RootNode + C: "OO",4861123920565156213,0 + + ;Geometry::, Model::Mesh crop_turnip + C: "OO",5625198854188688631,4861123920565156213 + + ;Material::grass, Model::Mesh crop_turnip + C: "OO",3024,4861123920565156213 + + ;Material::woodBirch, Model::Mesh crop_turnip + C: "OO",3050,4861123920565156213 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crop_turnip.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crop_turnip.fbx.import new file mode 100644 index 0000000..1c71641 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crop_turnip.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dkqk1k8au4umr" +path="res://.godot/imported/crop_turnip.fbx-7b83392d2d66d3e0c0a99221e68cf415.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crop_turnip.fbx" +dest_files=["res://.godot/imported/crop_turnip.fbx-7b83392d2d66d3e0c0a99221e68cf415.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageA.fbx new file mode 100644 index 0000000..5d49e56 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageA.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 18 + Millisecond: 331 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_bambooStageA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_bambooStageA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5242001825909449936, "Model::crops_bambooStageA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5047851371256536321, "Geometry::", "Mesh" { + Vertices: *1620 { + a: 1.088178,0,-1.398518,1.088178,1,-1.398518,0.8881778,0,-1.052108,0.8881778,1,-1.052108,0.8881778,0,-1.052108,0.8881778,1,-1.052108,1.088178,0,-0.7056979,1.088178,1,-0.7056979,0.9681778,3.24,-1.052108,0.9681778,4.04,-1.052108,1.128178,3.24,-0.7749799,1.128178,4.04,-0.7749799,1.608178,4.04,-1.052108,1.448178,4.04,-0.7749799,1.448178,4.04,-1.329236,1.128178,4.04,-1.329236,1.128178,4.04,-0.7749799,0.9681778,4.04,-1.052108,1.448178,3.24,-0.7749799,1.128178,3.24,-0.7749799,1.448178,4.04,-0.7749799,1.128178,4.04,-0.7749799,1.128178,3.24,-1.329236,1.448178,3.24,-1.329236,1.128178,4.04,-1.329236,1.448178,4.04,-1.329236,1.608178,4.04,-1.052108,1.608178,3.24,-1.052108,1.448178,4.04,-0.7749799,1.448178,3.24,-0.7749799,1.448178,4.04,-1.329236,1.448178,3.24,-1.329236,1.608178,4.04,-1.052108,1.608178,3.24,-1.052108,1.155379,1.5,1.196586,1.155379,0,1.196586,0.9553788,1.5,1.542996,0.9553788,0,1.542996,0.3713788,4.05,1.196586,0.4353788,4.289999,1.196586,0.5633789,4.05,1.529139,0.5953789,4.289999,1.473714,0.9473788,4.05,1.529139,0.5633789,4.05,1.529139,0.9153789,4.289999,1.473714,0.5953789,4.289999,1.473714,0.3553789,1.5,1.196586,0.2753789,1.8,1.196586,0.5553789,1.5,1.542996,0.5153788,1.8,1.612278,1.480178,3,-1.384662,1.448178,2.76,-1.329236,1.672178,3,-1.052108,1.608178,2.76,-1.052108,0.5553789,0,0.8501751,0.5553789,1.5,0.8501751,0.3553789,0,1.196586,0.3553789,1.5,1.196586,0.5953789,4.289999,0.9194572,0.5953789,5.49,0.9194572,0.4353788,4.289999,1.196586,0.4353788,5.49,1.196586,0.5633789,4.05,0.8640317,0.9473788,4.05,0.8640317,0.5953789,4.289999,0.9194572,0.9153789,4.289999,0.9194572,0.5153788,1.8,0.7808932,0.5553789,2.1,0.8501751,0.2753789,1.8,1.196586,0.3553789,2.1,1.196586,0.5153788,1.8,0.7808932,0.2753789,1.8,1.196586,0.5553789,1.5,0.8501751,0.3553789,1.5,1.196586,1.128178,3.24,-1.329236,1.128178,4.04,-1.329236,0.9681778,3.24,-1.052108,0.9681778,4.04,-1.052108,0.5953789,4.289999,0.9194572,0.9153789,4.289999,0.9194572,0.5953789,5.49,0.9194572,0.9153789,5.49,0.9194572,0.4353788,4.289999,1.196586,0.4353788,5.49,1.196586,0.5953789,4.289999,1.473714,0.5953789,5.49,1.473714,0.9953787,1.8,0.7808932,1.235379,1.8,1.196586,0.9553788,2.1,0.8501751,1.155379,2.1,1.196586,1.075379,4.289999,1.196586,1.139379,4.05,1.196586,0.9153789,4.289999,1.473714,0.9473788,4.05,1.529139,0.4353788,3.81,1.196586,0.3713788,4.05,1.196586,0.5953789,3.81,1.473714,0.5633789,4.05,1.529139,0.9473788,4.05,0.8640317,1.139379,4.05,1.196586,0.9153789,4.289999,0.9194572,1.075379,4.289999,1.196586,0.9953787,1.8,1.612278,0.5153788,1.8,1.612278,0.9553788,2.1,1.542996,0.5553789,2.1,1.542996,0.5553789,0,0.8501751,0.9553788,0,0.8501751,0.5553789,1.5,0.8501751,0.9553788,1.5,0.8501751,1.075379,5.49,1.196586,0.9153789,5.49,1.473714,0.9153789,5.49,0.9194572,0.5953789,5.49,0.9194572,0.5953789,5.49,1.473714,0.4353788,5.49,1.196586,0.9553788,1.5,1.542996,0.5553789,1.5,1.542996,0.9953787,1.8,1.612278,0.5153788,1.8,1.612278,0.9953787,1.8,0.7808932,0.9553788,1.5,0.8501751,1.235379,1.8,1.196586,1.155379,1.5,1.196586,0.2753789,1.8,1.196586,0.3553789,2.1,1.196586,0.5153788,1.8,1.612278,0.5553789,2.1,1.542996,1.155379,0,1.196586,0.9553788,0,0.8501751,0.9553788,0,1.542996,0.5553789,0,1.542996,0.5553789,0,0.8501751,0.3553789,0,1.196586,0.5153788,1.8,0.7808932,0.9953787,1.8,0.7808932,0.5553789,2.1,0.8501751,0.9553788,2.1,0.8501751,-1.344768,3.63,-0.0128807,-0.960768,3.63,-0.0128807,-1.312768,3.87,0.04254492,-0.9927681,3.87,0.04254492,-1.392768,1.6,-0.09601914,-1.352768,1.9,-0.02673712,-1.632768,1.6,0.3196731,-1.552768,1.9,0.3196731,-1.472768,3.39,0.3196731,-1.536768,3.63,0.3196731,-1.312768,3.39,0.5968012,-1.344768,3.63,0.6522268,-1.392768,1.6,-0.09601914,-0.912768,1.6,-0.09601914,-1.352768,1.9,-0.02673712,-0.9527682,1.9,-0.02673712,-1.312768,3.39,0.04254492,-0.9927681,3.39,0.04254492,-1.344768,3.63,-0.0128807,-0.960768,3.63,-0.0128807,0.9153789,4.289999,1.473714,0.5953789,4.289999,1.473714,0.9153789,5.49,1.473714,0.5953789,5.49,1.473714,-1.632768,1.6,0.3196731,-1.552768,1.9,0.3196731,-1.392768,1.6,0.7353652,-1.352768,1.9,0.6660832,-0.832768,3.87,0.3196731,-0.7687681,3.63,0.3196731,-0.9927681,3.87,0.5968012,-0.960768,3.63,0.6522268,-1.392768,1.6,-0.09601914,-1.632768,1.6,0.3196731,-1.352768,1.3,-0.02673712,-1.552768,1.3,0.3196731,0.5553789,1.5,0.8501751,0.9553788,1.5,0.8501751,0.5153788,1.8,0.7808932,0.9953787,1.8,0.7808932,-0.7687681,3.63,0.3196731,-0.832768,3.39,0.3196731,-0.960768,3.63,0.6522268,-0.9927681,3.39,0.5968012,1.155379,2.1,1.196586,1.235379,1.8,1.196586,0.9553788,2.1,1.542996,0.9953787,1.8,1.612278,-0.960768,3.63,-0.0128807,-0.7687681,3.63,0.3196731,-0.9927681,3.87,0.04254492,-0.832768,3.87,0.3196731,-0.6727681,1.6,0.3196731,-0.752768,1.3,0.3196731,-0.912768,1.6,0.7353652,-0.9527682,1.3,0.6660832,-1.536768,3.63,0.3196731,-1.472768,3.87,0.3196731,-1.344768,3.63,0.6522268,-1.312768,3.87,0.5968012,0.9473788,4.05,0.8640317,0.9153789,3.81,0.9194572,1.139379,4.05,1.196586,1.075379,3.81,1.196586,-0.832768,4.91,0.3196731,-0.9927681,4.91,0.5968012,-0.9927681,4.91,0.04254492,-1.312768,4.91,0.04254492,-1.312768,4.91,0.5968012,-1.472768,4.91,0.3196731,1.235379,1.8,1.196586,1.155379,1.5,1.196586,0.9953787,1.8,1.612278,0.9553788,1.5,1.542996,0.9553788,0,1.542996,0.5553789,0,1.542996,0.9553788,1.5,1.542996,0.5553789,1.5,1.542996,-1.344768,3.63,-0.0128807,-1.312768,3.87,0.04254492,-1.536768,3.63,0.3196731,-1.472768,3.87,0.3196731,-1.552768,0,0.3196731,-1.552768,1.3,0.3196731,-1.352768,0,0.6660832,-1.352768,1.3,0.6660832,0.9553788,1.5,0.8501751,0.9553788,0,0.8501751,1.155379,1.5,1.196586,1.155379,0,1.196586,0.5953789,3.81,0.9194572,0.9153789,3.81,0.9194572,0.5633789,4.05,0.8640317,0.9473788,4.05,0.8640317,0.9153789,3.81,1.473714,0.5953789,3.81,1.473714,0.9473788,4.05,1.529139,0.5633789,4.05,1.529139,0.5633789,4.05,0.8640317,0.3713788,4.05,1.196586,0.5953789,3.81,0.9194572,0.4353788,3.81,1.196586,-0.9927681,3.87,0.5968012,-1.312768,3.87,0.5968012,-0.9927681,4.91,0.5968012,-1.312768,4.91,0.5968012,-0.9527682,0,0.6660832,-1.352768,0,0.6660832,-0.9527682,1.3,0.6660832,-1.352768,1.3,0.6660832,1.448178,2.76,-0.7749799,1.128178,2.76,-0.7749799,1.480178,3,-0.7195544,1.096178,3,-0.7195544,0.5633789,4.05,0.8640317,0.5953789,4.289999,0.9194572,0.3713788,4.05,1.196586,0.4353788,4.289999,1.196586,1.128178,2.76,-1.329236,1.448178,2.76,-1.329236,1.096178,3,-1.384662,1.480178,3,-1.384662,1.139379,4.05,1.196586,1.075379,3.81,1.196586,0.9473788,4.05,1.529139,0.9153789,3.81,1.473714,-0.832768,4.91,0.3196731,-0.832768,3.87,0.3196731,-0.9927681,4.91,0.5968012,-0.9927681,3.87,0.5968012,-0.9927681,3.39,0.5968012,-1.312768,3.39,0.5968012,-0.960768,3.63,0.6522268,-1.344768,3.63,0.6522268,-0.912768,1.6,-0.09601914,-0.6727681,1.6,0.3196731,-0.9527682,1.9,-0.02673712,-0.752768,1.9,0.3196731,-0.960768,3.63,0.6522268,-1.344768,3.63,0.6522268,-0.9927681,3.87,0.5968012,-1.312768,3.87,0.5968012,-1.552768,1.3,0.3196731,-1.632768,1.6,0.3196731,-1.352768,1.3,0.6660832,-1.392768,1.6,0.7353652,0.3553789,0,1.196586,0.3553789,1.5,1.196586,0.5553789,0,1.542996,0.5553789,1.5,1.542996,1.688178,0,-1.052108,1.488178,0,-1.398518,1.488178,0,-0.7056979,1.088178,0,-0.7056979,1.088178,0,-1.398518,0.8881778,0,-1.052108,-1.352768,0,-0.02673712,-1.352768,1.3,-0.02673712,-1.552768,0,0.3196731,-1.552768,1.3,0.3196731,-1.312768,3.87,0.04254492,-0.9927681,3.87,0.04254492,-1.312768,4.91,0.04254492,-0.9927681,4.91,0.04254492,-0.752768,0,0.3196731,-0.9527682,0,-0.02673712,-0.9527682,0,0.6660832,-1.352768,0,0.6660832,-1.352768,0,-0.02673712,-1.552768,0,0.3196731,-0.912768,1.6,0.7353652,-1.392768,1.6,0.7353652,-0.9527682,1.9,0.6660832,-1.352768,1.9,0.6660832,-0.9527682,1.3,-0.02673712,-0.9527682,0,-0.02673712,-0.752768,1.3,0.3196731,-0.752768,0,0.3196731,1.480178,3,-0.7195544,1.096178,3,-0.7195544,1.448178,3.24,-0.7749799,1.128178,3.24,-0.7749799,1.528178,1.3,-1.4678,1.768178,1.3,-1.052108,1.488178,1.6,-1.398518,1.688178,1.6,-1.052108,1.048178,1.3,-1.4678,1.088178,1.6,-1.398518,0.8081777,1.3,-1.052108,0.8881778,1.6,-1.052108,1.688178,1,-1.052108,1.688178,0,-1.052108,1.488178,1,-0.7056979,1.488178,0,-0.7056979,0.9681778,2.76,-1.052108,0.9041778,3,-1.052108,1.128178,2.76,-0.7749799,1.096178,3,-0.7195544,1.480178,3,-1.384662,1.672178,3,-1.052108,1.448178,3.24,-1.329236,1.608178,3.24,-1.052108,-1.352768,1.3,-0.02673712,-0.9527682,1.3,-0.02673712,-1.392768,1.6,-0.09601914,-0.912768,1.6,-0.09601914,1.768178,1.3,-1.052108,1.688178,1,-1.052108,1.528178,1.3,-0.636416,1.488178,1,-0.7056979,1.088178,1,-1.398518,1.488178,1,-1.398518,1.048178,1.3,-1.4678,1.528178,1.3,-1.4678,-0.9927681,4.91,0.04254492,-0.9927681,3.87,0.04254492,-0.832768,4.91,0.3196731,-0.832768,3.87,0.3196731,1.048178,1.3,-1.4678,0.8081777,1.3,-1.052108,1.088178,1,-1.398518,0.8881778,1,-1.052108,-1.352768,0,-0.02673712,-0.9527682,0,-0.02673712,-1.352768,1.3,-0.02673712,-0.9527682,1.3,-0.02673712,1.096178,3,-1.384662,1.480178,3,-1.384662,1.128178,3.24,-1.329236,1.448178,3.24,-1.329236,1.488178,1,-1.398518,1.488178,0,-1.398518,1.688178,1,-1.052108,1.688178,0,-1.052108,1.688178,1.6,-1.052108,1.768178,1.3,-1.052108,1.488178,1.6,-0.7056979,1.528178,1.3,-0.636416,1.048178,1.3,-1.4678,1.528178,1.3,-1.4678,1.088178,1.6,-1.398518,1.488178,1.6,-1.398518,0.8881778,1,-1.052108,0.8081777,1.3,-1.052108,1.088178,1,-0.7056979,1.048178,1.3,-0.636416,-0.752768,1.9,0.3196731,-0.6727681,1.6,0.3196731,-0.9527682,1.9,0.6660832,-0.912768,1.6,0.7353652,0.9153789,5.49,0.9194572,0.9153789,4.289999,0.9194572,1.075379,5.49,1.196586,1.075379,4.289999,1.196586,-0.9527682,1.3,0.6660832,-1.352768,1.3,0.6660832,-0.912768,1.6,0.7353652,-1.392768,1.6,0.7353652,1.088178,0,-1.398518,1.488178,0,-1.398518,1.088178,1,-1.398518,1.488178,1,-1.398518,0.8081777,1.3,-1.052108,0.8881778,1.6,-1.052108,1.048178,1.3,-0.636416,1.088178,1.6,-0.7056979,1.488178,0,-0.7056979,1.088178,0,-0.7056979,1.488178,1,-0.7056979,1.088178,1,-0.7056979,-1.344768,3.63,-0.0128807,-1.536768,3.63,0.3196731,-1.312768,3.39,0.04254492,-1.472768,3.39,0.3196731,1.075379,5.49,1.196586,1.075379,4.289999,1.196586,0.9153789,5.49,1.473714,0.9153789,4.289999,1.473714,-0.752768,1.3,0.3196731,-0.752768,0,0.3196731,-0.9527682,1.3,0.6660832,-0.9527682,0,0.6660832,1.096178,3,-1.384662,1.128178,3.24,-1.329236,0.9041778,3,-1.052108,0.9681778,3.24,-1.052108,-0.912768,1.6,-0.09601914,-0.9527682,1.3,-0.02673712,-0.6727681,1.6,0.3196731,-0.752768,1.3,0.3196731,-1.472768,3.87,0.3196731,-1.472768,4.91,0.3196731,-1.312768,3.87,0.5968012,-1.312768,4.91,0.5968012,-0.960768,3.63,-0.0128807,-0.9927681,3.39,0.04254492,-0.7687681,3.63,0.3196731,-0.832768,3.39,0.3196731,-1.312768,3.87,0.04254492,-1.312768,4.91,0.04254492,-1.472768,3.87,0.3196731,-1.472768,4.91,0.3196731,1.528178,1.3,-0.636416,1.048178,1.3,-0.636416,1.488178,1.6,-0.7056979,1.088178,1.6,-0.7056979,1.672178,3,-1.052108,1.608178,2.76,-1.052108,1.480178,3,-0.7195544,1.448178,2.76,-0.7749799,0.9041778,3,-1.052108,0.9681778,3.24,-1.052108,1.096178,3,-0.7195544,1.128178,3.24,-0.7749799,1.608178,3.24,-1.052108,1.672178,3,-1.052108,1.448178,3.24,-0.7749799,1.480178,3,-0.7195544,1.096178,3,-1.384662,0.9041778,3,-1.052108,1.128178,2.76,-1.329236,0.9681778,2.76,-1.052108,1.528178,1.3,-1.4678,1.488178,1,-1.398518,1.768178,1.3,-1.052108,1.688178,1,-1.052108,1.488178,1,-0.7056979,1.088178,1,-0.7056979,1.528178,1.3,-0.636416,1.048178,1.3,-0.636416,-0.9527682,1.9,-0.02673712,-0.752768,1.9,0.3196731,-0.9927681,3.39,0.04254492,-0.832768,3.39,0.3196731,-1.352768,1.9,-0.02673712,-1.312768,3.39,0.04254492,-1.552768,1.9,0.3196731,-1.472768,3.39,0.3196731,-1.552768,1.9,0.3196731,-1.472768,3.39,0.3196731,-1.352768,1.9,0.6660832,-1.312768,3.39,0.5968012,-0.9527682,1.9,0.6660832,-1.352768,1.9,0.6660832,-0.9927681,3.39,0.5968012,-1.312768,3.39,0.5968012,-0.832768,3.39,0.3196731,-0.752768,1.9,0.3196731,-0.9927681,3.39,0.5968012,-0.9527682,1.9,0.6660832,-1.352768,1.9,-0.02673712,-0.9527682,1.9,-0.02673712,-1.312768,3.39,0.04254492,-0.9927681,3.39,0.04254492,0.5553789,2.1,0.8501751,0.5953789,3.81,0.9194572,0.3553789,2.1,1.196586,0.4353788,3.81,1.196586,0.4353788,3.81,1.196586,0.5953789,3.81,1.473714,0.3553789,2.1,1.196586,0.5553789,2.1,1.542996,1.075379,3.81,1.196586,1.155379,2.1,1.196586,0.9153789,3.81,1.473714,0.9553788,2.1,1.542996,0.9553788,2.1,1.542996,0.5553789,2.1,1.542996,0.9153789,3.81,1.473714,0.5953789,3.81,1.473714,0.9553788,2.1,0.8501751,1.155379,2.1,1.196586,0.9153789,3.81,0.9194572,1.075379,3.81,1.196586,0.5553789,2.1,0.8501751,0.9553788,2.1,0.8501751,0.5953789,3.81,0.9194572,0.9153789,3.81,0.9194572,1.688178,1.6,-1.052108,1.488178,1.6,-0.7056979,1.608178,2.76,-1.052108,1.448178,2.76,-0.7749799,0.8881778,1.6,-1.052108,0.9681778,2.76,-1.052108,1.088178,1.6,-0.7056979,1.128178,2.76,-0.7749799,1.088178,1.6,-1.398518,1.488178,1.6,-1.398518,1.128178,2.76,-1.329236,1.448178,2.76,-1.329236,1.088178,1.6,-1.398518,1.128178,2.76,-1.329236,0.8881778,1.6,-1.052108,0.9681778,2.76,-1.052108,1.488178,1.6,-0.7056979,1.088178,1.6,-0.7056979,1.448178,2.76,-0.7749799,1.128178,2.76,-0.7749799,1.488178,1.6,-1.398518,1.688178,1.6,-1.052108,1.448178,2.76,-1.329236,1.608178,2.76,-1.052108 + } + PolygonVertexIndex: *828 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,13,-16,17,16,-16,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,111,-114,115,114,-114,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,129,-132,133,132,-132,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,203,-206,207,206,-206,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,289,-292,293,292,-292,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,303,-306,307,306,-306,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,432,434,-434,435,433,-435,436,438,-438,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,454,-454,455,453,-455,456,458,-458,459,457,-459,460,462,-462,463,461,-463,464,466,-466,467,465,-467,468,470,-470,471,469,-471,472,474,-474,475,473,-475,476,478,-478,479,477,-479,480,482,-482,483,481,-483,484,486,-486,487,485,-487,488,490,-490,491,489,-491,492,494,-494,495,493,-495,496,498,-498,499,497,-499,500,502,-502,503,501,-503,504,506,-506,507,505,-507,508,510,-510,511,509,-511,512,514,-514,515,513,-515,516,518,-518,519,517,-519,520,522,-522,523,521,-523,524,526,-526,527,525,-527,528,530,-530,531,529,-531,532,534,-534,535,533,-535,536,538,-538,539,537,-539 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2484 { + a: -0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0.8650906,0.04644782,-0.4994605,0.8650906,0.04644782,-0.4994605,0.8650906,0.04644782,-0.4994605,0.8650906,0.04644782,-0.4994605,0.8650906,0.04644782,-0.4994605,0.8650906,0.04644782,-0.4994605,-0.8650907,0.04644783,-0.4994604,-0.8650907,0.04644783,-0.4994604,-0.8650907,0.04644783,-0.4994604,-0.8650907,0.04644783,-0.4994604,-0.8650907,0.04644783,-0.4994604,-0.8650907,0.04644783,-0.4994604,-0.8650907,0.04644784,0.4994604,-0.8650907,0.04644784,0.4994604,-0.8650907,0.04644784,0.4994604,-0.8650907,0.04644784,0.4994604,-0.8650907,0.04644784,0.4994604,-0.8650907,0.04644784,0.4994604,0,0.04644782,0.9989207,0,0.04644782,0.9989207,0,0.04644782,0.9989207,0,0.04644782,0.9989207,0,0.04644782,0.9989207,0,0.04644782,0.9989207,0.8650906,0.04644782,0.4994605,0.8650906,0.04644782,0.4994605,0.8650906,0.04644782,0.4994605,0.8650906,0.04644782,0.4994605,0.8650906,0.04644782,0.4994605,0.8650906,0.04644782,0.4994605,0,0.04644782,-0.9989207,0,0.04644782,-0.9989207,0,0.04644782,-0.9989207,0,0.04644782,-0.9989207,0,0.04644782,-0.9989207,0,0.04644782,-0.9989207,-0.8653157,0.04048259,-0.4995899,-0.8653157,0.04048259,-0.4995899,-0.8653157,0.04048259,-0.4995899,-0.8653157,0.04048259,-0.4995899,-0.8653157,0.04048259,-0.4995899,-0.8653157,0.04048259,-0.4995899,-0.8653154,0.0404826,0.4995902,-0.8653154,0.0404826,0.4995902,-0.8653154,0.0404826,0.4995902,-0.8653154,0.0404826,0.4995902,-0.8653154,0.0404826,0.4995902,-0.8653154,0.0404826,0.4995902,0.8653154,0.04048261,0.4995904,0.8653154,0.04048261,0.4995904,0.8653154,0.04048261,0.4995904,0.8653154,0.04048261,0.4995904,0.8653154,0.04048261,0.4995904,0.8653154,0.04048261,0.4995904,0,0.04048261,0.9991803,0,0.04048261,0.9991803,0,0.04048261,0.9991803,0,0.04048261,0.9991803,0,0.04048261,0.9991803,0,0.04048261,0.9991803,0.8653156,0.04048259,-0.4995899,0.8653156,0.04048259,-0.4995899,0.8653156,0.04048259,-0.4995899,0.8653156,0.04048259,-0.4995899,0.8653156,0.04048259,-0.4995899,0.8653156,0.04048259,-0.4995899,0,0.0404826,-0.9991803,0,0.0404826,-0.9991803,0,0.0404826,-0.9991803,0,0.0404826,-0.9991803,0,0.0404826,-0.9991803,0,0.0404826,-0.9991803,0.864485,0.05961966,0.4991105,0.864485,0.05961966,0.4991105,0.864485,0.05961966,0.4991105,0.864485,0.05961966,0.4991105,0.864485,0.05961966,0.4991105,0.864485,0.05961966,0.4991105,-0.8644849,0.05961964,0.4991105,-0.8644849,0.05961964,0.4991105,-0.8644849,0.05961964,0.4991105,-0.8644849,0.05961964,0.4991105,-0.8644849,0.05961964,0.4991105,-0.8644849,0.05961964,0.4991105,0,0.05961967,-0.9982211,0,0.05961967,-0.9982211,0,0.05961967,-0.9982211,0,0.05961967,-0.9982211,0,0.05961967,-0.9982211,0,0.05961967,-0.9982211,-0.8644847,0.05961967,-0.4991109,-0.8644847,0.05961967,-0.4991109,-0.8644847,0.05961967,-0.4991109,-0.8644847,0.05961967,-0.4991109,-0.8644847,0.05961967,-0.4991109,-0.8644847,0.05961967,-0.4991109,0,0.05961966,0.9982211,0,0.05961966,0.9982211,0,0.05961966,0.9982211,0,0.05961966,0.9982211,0,0.05961966,0.9982211,0,0.05961966,0.9982211,0.8644847,0.05961967,-0.4991107,0.8644847,0.05961967,-0.4991107,0.8644847,0.05961967,-0.4991107,0.8644847,0.05961967,-0.4991107,0.8644847,0.05961967,-0.4991107,0.8644847,0.05961967,-0.4991107 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1080 { + a: -6.910399,0,-6.910399,3.937008,-5.335597,0,-5.335597,3.937008,-1.838834,0,-1.838834,3.937008,-0.2640294,0,-0.2640294,3.937008,-1.681353,12.75591,-1.681353,15.90551,-0.4215098,12.75591,-0.4215098,15.90551,-6.331409,-4.142159,-5.701488,-3.051102,-5.701488,-5.233214,-4.441645,-5.233214,-4.441645,-3.051102,-3.811723,-4.142159,5.701488,12.75591,4.441645,12.75591,5.701488,15.90551,4.441645,15.90551,-4.441645,12.75591,-5.701488,12.75591,-4.441645,15.90551,-5.701488,15.90551,6.752918,15.90551,6.752918,12.75591,5.493075,15.90551,5.493075,12.75591,1.68135,15.90551,1.68135,12.75591,0.4215081,15.90551,0.4215081,12.75591,-1.805448,5.905512,-1.805448,0,-3.38025,5.905512,-3.38025,0,4.810877,15.29087,4.936862,16.26062,6.322688,15.29087,6.196704,16.26062,3.729838,14.18131,2.218027,14.18131,3.603854,15.15106,2.344011,15.15106,4.779382,6.011439,4.621901,7.223628,6.354184,6.011439,6.511664,7.223628,1.807334,13.25706,1.68135,12.28731,0.2955239,13.25706,0.4215081,12.28731,1.80545,0,1.80545,5.905512,3.380254,0,3.380254,5.905512,1.96293,16.88976,1.96293,21.61417,3.222773,16.88976,3.222773,21.61417,-2.218027,16.30141,-3.729838,16.30141,-2.344011,17.27116,-3.603854,17.27116,1.647969,7.646173,1.805449,8.858363,3.537734,7.646173,3.380253,8.858363,1.647969,6.163578,3.537734,6.163578,1.805449,4.951388,3.380253,4.951388,-6.752919,12.75591,-6.752919,15.90551,-5.493077,12.75591,-5.493077,15.90551,-2.344011,16.88976,-3.603854,16.88976,-2.344011,21.61417,-3.603854,21.61417,4.936862,16.88976,4.936862,21.61417,6.196704,16.88976,6.196704,21.61417,-4.621901,6.487108,-6.511665,6.487108,-4.779381,7.699297,-6.354185,7.699297,-1.962928,15.10156,-1.836943,14.13181,-3.22277,15.10156,-3.348754,14.13181,4.936862,14.81132,4.810877,15.78107,6.196704,14.81132,6.322688,15.78107,-4.810877,15.19186,-6.322689,15.19186,-4.936861,16.16161,-6.196704,16.16161,3.918814,5.476568,2.029051,5.476568,3.761334,6.688756,2.186531,6.688756,-2.186531,0,-3.761334,0,-2.186531,5.905512,-3.761334,5.905512,-4.233775,4.710967,-3.603854,5.802022,-3.603854,3.61991,-2.344011,3.61991,-2.344011,5.802022,-1.71409,4.710967,3.761334,7.120996,2.186531,7.120996,3.918814,8.333184,2.029051,8.333184,-4.621901,7.322644,-4.779381,6.110455,-6.511665,7.322644,-6.354185,6.110455,4.621901,6.586123,4.779382,7.798313,6.511664,6.586123,6.354184,7.798313,4.548736,4.710967,3.761334,3.347147,3.761334,6.074786,2.186531,6.074786,2.186531,3.347147,1.399129,4.710967,-2.029051,7.596666,-3.918814,7.596666,-2.186531,8.808855,-3.761334,8.808855,5.294363,13.91342,3.782551,13.91342,5.168378,14.88317,3.908536,14.88317,2.414288,5.026594,2.571768,6.238782,4.304051,5.026594,4.146571,6.238782,-1.809209,14.2757,-1.935193,15.24545,-0.5493665,14.2757,-0.4233823,15.24545,5.483339,6.052605,3.593575,6.052605,5.325859,7.264794,3.751056,7.264794,5.168378,12.96649,3.908536,12.96649,5.294363,13.93624,3.782551,13.93624,3.603854,16.88976,2.344011,16.88976,3.603854,21.61417,2.344011,21.61417,-2.12417,4.743397,-1.96669,5.955586,-0.2344059,4.743397,-0.3918862,5.955586,-2.729248,15.34279,-2.603264,14.37304,-3.989091,15.34279,-4.115075,14.37304,2.414288,7.248742,4.304051,7.248742,2.571768,6.036552,4.146571,6.036552,-2.186531,5.000897,-3.761334,5.000897,-2.029051,6.213086,-3.918814,6.213086,-2.603264,13.47663,-2.729248,12.50687,-4.115075,13.47663,-3.989091,12.50687,-1.805447,6.639249,-1.647967,5.42706,-3.38025,6.639248,-3.53773,5.42706,1.935193,14.65624,0.4233824,14.65624,1.809209,15.62599,0.5493666,15.62599,-2.414288,5.763113,-2.571768,4.550923,-4.304051,5.763113,-4.146571,4.550923,-1.935193,12.60421,-1.809209,13.57397,-0.4233823,12.60421,-0.5493665,13.57397,-4.810877,15.88009,-4.936861,14.91034,-6.322689,15.88009,-6.196704,14.91034,3.278614,1.258555,3.908536,2.349611,3.908536,0.1674997,5.168378,0.1674997,5.168378,2.349611,5.7983,1.258555,-1.647967,8.382692,-1.805447,7.170504,-3.53773,8.382692,-3.38025,7.170504,3.761334,0,2.186531,0,3.761334,5.905512,2.186531,5.905512,2.603264,12.88741,2.729248,13.85716,4.115075,12.88741,3.989091,13.85716,-1.96669,0,-1.96669,5.11811,-0.3918863,0,-0.3918863,5.11811,-4.779381,5.905512,-4.779381,0,-6.354185,5.905512,-6.354185,0,-2.344011,13.80078,-3.603854,13.80078,-2.218027,14.77053,-3.729838,14.77053,3.603854,15.92088,2.344011,15.92088,3.729838,16.89063,2.218027,16.89063,1.836946,14.72102,3.348757,14.72102,1.96293,13.75127,3.222773,13.75127,-3.908536,15.23622,-5.168378,15.23622,-3.908536,19.33071,-5.168378,19.33071,-3.751056,0,-5.325859,0,-3.751056,5.11811,-5.325859,5.11811,5.701488,9.900926,4.441645,9.900926,5.827472,10.87068,4.31566,10.87068,1.836946,16.35092,1.96293,17.32067,3.348757,16.35092,3.222773,17.32067,-4.441645,11.76504,-5.701488,11.76504,-4.31566,12.73479,-5.827472,12.73479,-1.836943,16.94014,-1.962928,15.97038,-3.348754,16.94014,-3.22277,15.97038,-2.729249,19.33071,-2.729249,15.23622,-3.989091,19.33071,-3.989091,15.23622,-3.908536,13.53289,-5.168378,13.53289,-3.782551,14.50264,-5.294363,14.50264,2.12417,6.79542,0.2344059,6.79542,1.96669,8.007608,0.3918863,8.007608,-3.782551,13.34703,-5.294363,13.34703,-3.908536,14.31678,-5.168378,14.31678,-1.96669,6.319749,-2.12417,7.531939,-0.3918862,6.319749,-0.2344059,7.531939,4.779382,0,4.779382,5.905512,6.354185,0,6.354185,5.905512,6.646369,-4.142159,5.858968,-5.505978,5.858968,-2.778338,4.284165,-2.778338,4.284165,-5.505978,3.496763,-4.142159,2.571768,0,2.571768,5.11811,4.146572,0,4.146572,5.11811,5.168378,15.23622,3.908536,15.23622,5.168378,19.33071,3.908536,19.33071,-2.963654,1.258555,-3.751056,-0.1052642,-3.751056,2.622375,-5.325859,2.622375,-5.325859,-0.1052642,-6.11326,1.258555,-3.593575,5.486211,-5.483339,5.486211,-3.751056,6.6984,-5.325859,6.6984,1.96669,5.11811,1.96669,0,0.3918867,5.11811,0.3918867,0,5.827472,12.14558,4.31566,12.14558,5.701488,13.11533,4.441645,13.11533,1.996311,3.164267,0.1065476,3.164267,1.838831,4.376457,0.2640279,4.376457,-7.067879,5.140866,-6.910399,6.353055,-5.178116,5.140866,-5.335597,6.353055,6.910399,3.937008,6.910399,0,5.335595,3.937008,5.335595,0,-1.681353,9.378654,-1.807338,10.3484,-0.4215102,9.378654,-0.2955261,10.3484,1.807334,9.759191,0.2955239,9.759191,1.68135,10.72894,0.4215081,10.72894,5.325859,5.010541,3.751056,5.010541,5.483339,6.222731,3.593575,6.222731,7.067879,5.877386,6.910399,4.665197,5.178114,5.877386,5.335595,4.665197,-4.284165,5.074983,-5.858968,5.074983,-4.126684,6.287172,-6.016448,6.287172,1.80921,19.33071,1.80921,15.23622,0.5493671,19.33071,0.5493671,15.23622,-7.067879,4.832843,-5.178116,4.832843,-6.910399,3.620654,-5.335597,3.620654,5.325859,0,3.751056,0,5.325859,5.11811,3.751056,5.11811,-4.31566,10.28146,-5.827472,10.28146,-4.441645,11.25121,-5.701488,11.25121,1.838831,3.937008,1.838831,0,0.2640278,3.937008,0.2640278,0,6.910399,5.308513,7.067879,4.096324,5.335595,5.308513,5.178114,4.096324,-4.126684,3.686539,-6.016448,3.686539,-4.284165,4.898728,-5.858968,4.898728,-1.838834,2.688595,-1.996314,3.900784,-0.2640298,2.688595,-0.1065497,3.900784,-2.571768,7.724411,-2.414288,6.512222,-4.146571,7.724411,-4.304051,6.512222,-4.936861,21.61417,-4.936861,16.88976,-6.196704,21.61417,-6.196704,16.88976,-3.751056,5.576935,-5.325859,5.576935,-3.593575,6.789124,-5.483339,6.789124,-4.284165,0,-5.858968,0,-4.284165,3.937008,-5.858968,3.937008,-1.996314,6.072925,-1.838834,7.285114,-0.1065497,6.072925,-0.2640298,7.285114,5.858968,0,4.284165,0,5.858968,3.937008,4.284165,3.937008,2.603264,14.96226,4.115075,14.96226,2.729248,13.9925,3.989091,13.9925,-1.962928,21.61417,-1.962928,16.88976,-3.22277,21.61417,-3.22277,16.88976,-2.571768,5.11811,-2.571768,0,-4.146572,5.11811,-4.146572,0,-6.878903,11.73579,-6.752919,12.70554,-5.367092,11.73579,-5.493077,12.70554,2.12417,5.479916,1.96669,4.267726,0.2344059,5.479916,0.3918863,4.267726,-1.809209,15.23622,-1.809209,19.33071,-0.5493666,15.23622,-0.5493666,19.33071,1.935193,13.19343,1.809209,12.22368,0.4233824,13.19343,0.5493666,12.22368,2.729249,15.23622,2.729249,19.33071,3.989091,15.23622,3.989091,19.33071,6.016448,5.550653,4.126684,5.550653,5.858968,6.762842,4.284165,6.762842,6.878902,12.32501,6.752918,11.35525,5.367091,12.32501,5.493075,11.35525,-1.807338,12.66785,-1.681353,13.6376,-0.2955261,12.66785,-0.4215102,13.6376,6.752918,11.661,6.878902,10.69125,5.493075,11.661,5.367091,10.69125,-6.878903,11.28046,-5.367092,11.28046,-6.752919,10.31071,-5.493077,10.31071,1.996311,6.809443,1.838831,5.597254,0.1065476,6.809443,0.2640279,5.597254,5.858968,3.210867,4.284165,3.210867,6.016448,4.423057,4.126684,4.423057,1.96669,7.620683,0.3918867,7.620683,1.80921,13.49316,0.5493671,13.49316,2.571768,7.255564,2.729249,13.12804,4.146572,7.255564,3.989091,13.12804,-1.96669,7.197107,-1.809209,13.06959,-0.3918863,7.197107,-0.5493666,13.06959,-3.751056,7.350438,-5.325859,7.350438,-3.908536,13.22292,-5.168378,13.22292,-2.729249,13.43471,-2.571768,7.562226,-3.989091,13.43471,-4.146572,7.562226,5.325859,7.467352,3.751056,7.467352,5.168378,13.33983,3.908536,13.33983,1.80545,8.405347,1.96293,15.14315,3.380254,8.405347,3.222773,15.14315,4.936862,14.95244,6.196704,14.95244,4.779382,8.214635,6.354185,8.214635,-1.962928,14.74392,-1.805448,8.006108,-3.22277,14.74392,-3.38025,8.006108,3.761334,8.015016,2.186531,8.015016,3.603854,14.75282,2.344011,14.75282,-4.779381,8.196821,-6.354185,8.196821,-4.936861,14.93463,-6.196704,14.93463,-2.186531,8.39644,-3.761334,8.39644,-2.344011,15.13425,-3.603854,15.13425,6.910399,6.068318,5.335595,6.068318,6.752918,10.64338,5.493075,10.64338,-1.838834,6.59203,-1.681353,11.1671,-0.2640294,6.59203,-0.4215098,11.1671,-4.284165,5.959743,-5.858968,5.959743,-4.441645,10.53481,-5.701488,10.53481,-6.910399,6.345076,-6.752919,10.92014,-5.335597,6.345076,-5.493077,10.92014,5.858968,6.453651,4.284165,6.453651,5.701488,11.02872,4.441645,11.02872,1.838831,5.821364,0.2640278,5.821364,1.68135,10.39643,0.4215081,10.39643 + } + UVIndex: *828 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,13,15,17,16,15,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,111,113,115,114,113,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,129,131,133,132,131,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,203,205,207,206,205,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,289,291,293,292,291,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,303,305,307,306,305,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,432,434,433,435,433,434,436,438,437,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,448,450,449,451,449,450,452,454,453,455,453,454,456,458,457,459,457,458,460,462,461,463,461,462,464,466,465,467,465,466,468,470,469,471,469,470,472,474,473,475,473,474,476,478,477,479,477,478,480,482,481,483,481,482,484,486,485,487,485,486,488,490,489,491,489,490,492,494,493,495,493,494,496,498,497,499,497,498,500,502,501,503,501,502,504,506,505,507,505,506,508,510,509,511,509,510,512,514,513,515,513,514,516,518,517,519,517,518,520,522,521,523,521,522,524,526,525,527,525,526,528,530,529,531,529,530,532,534,533,535,533,534,536,538,537,539,537,538 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *276 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_bambooStageA, Model::RootNode + C: "OO",5242001825909449936,0 + + ;Geometry::, Model::Mesh crops_bambooStageA + C: "OO",5047851371256536321,5242001825909449936 + + ;Material::grass, Model::Mesh crops_bambooStageA + C: "OO",3024,5242001825909449936 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageA.fbx.import new file mode 100644 index 0000000..8ee6c7f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://xdsphwnl663d" +path="res://.godot/imported/crops_bambooStageA.fbx-0d18c2ad802046956f35bcdbee3175be.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageA.fbx" +dest_files=["res://.godot/imported/crops_bambooStageA.fbx-0d18c2ad802046956f35bcdbee3175be.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageB.fbx new file mode 100644 index 0000000..6647726 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageB.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 18 + Millisecond: 490 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_bambooStageB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_bambooStageB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5738022848415961365, "Model::crops_bambooStageB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5247319470686338024, "Geometry::", "Mesh" { + Vertices: *2988 { + a: 1.088178,0,-1.398518,1.088178,1,-1.398518,0.8881778,0,-1.052108,0.8881778,1,-1.052108,1.088178,1.6,-1.398518,1.088178,2.6,-1.398518,0.8881778,1.6,-1.052108,0.8881778,2.6,-1.052108,1.088178,1.6,-1.398518,1.488178,1.6,-1.398518,1.088178,2.6,-1.398518,1.488178,2.6,-1.398518,1.688178,2.6,-1.052108,1.688178,1.6,-1.052108,1.488178,2.6,-0.7056979,1.488178,1.6,-0.7056979,0.8881778,0,-1.052108,0.8881778,1,-1.052108,1.088178,0,-0.7056979,1.088178,1,-0.7056979,1.488178,2.6,-1.398518,1.488178,1.6,-1.398518,1.688178,2.6,-1.052108,1.688178,1.6,-1.052108,0.8881778,1.6,-1.052108,0.8881778,2.6,-1.052108,1.088178,1.6,-0.7056979,1.088178,2.6,-0.7056979,1.488178,1.6,-0.7056979,1.088178,1.6,-0.7056979,1.488178,2.6,-0.7056979,1.088178,2.6,-0.7056979,1.155379,1.5,1.196586,1.155379,0,1.196586,0.9553788,1.5,1.542996,0.9553788,0,1.542996,0.2753789,3.9,1.196586,0.3553789,4.2,1.196586,0.5153788,3.9,1.612278,0.5553789,4.2,1.542996,0.5553789,2.1,0.8501751,0.5553789,3.2,0.8501751,0.3553789,2.1,1.196586,0.3553789,3.2,1.196586,0.5553789,3.6,0.8501751,0.3553789,3.6,1.196586,0.5553789,4.2,0.8501751,0.3553789,4.2,1.196586,0.5553789,4.7,0.8501751,0.3553789,4.7,1.196586,0.5553789,5.3,0.8501751,0.3553789,5.3,1.196586,0.5553789,5.7,0.8501751,0.3553789,5.7,1.196586,0.5553789,6.8,0.8501751,0.3553789,6.8,1.196586,0.9953787,3.9,1.612278,0.5153788,3.9,1.612278,0.9553788,4.2,1.542996,0.5553789,4.2,1.542996,0.3553789,1.5,1.196586,0.2753789,1.8,1.196586,0.5553789,1.5,1.542996,0.5153788,1.8,1.612278,1.528178,2.9,-1.4678,1.488178,2.6,-1.398518,1.768178,2.9,-1.052108,1.688178,2.6,-1.052108,1.155379,3.2,1.196586,1.155379,2.1,1.196586,0.9553788,3.2,1.542996,0.9553788,2.1,1.542996,0.9553788,3.6,1.542996,1.155379,3.6,1.196586,0.9553788,4.2,1.542996,1.155379,4.2,1.196586,0.9553788,4.7,1.542996,1.155379,4.7,1.196586,0.9553788,5.3,1.542996,1.155379,5.3,1.196586,0.9553788,5.7,1.542996,1.155379,5.7,1.196586,0.9553788,6.8,1.542996,1.155379,6.8,1.196586,0.9553788,2.1,1.542996,0.5553789,2.1,1.542996,0.9553788,3.2,1.542996,0.5553789,3.2,1.542996,0.9553788,3.6,1.542996,0.5553789,3.6,1.542996,0.9553788,4.2,1.542996,0.5553789,4.2,1.542996,0.9553788,4.7,1.542996,0.5553789,4.7,1.542996,0.9553788,5.3,1.542996,0.5553789,5.3,1.542996,0.9553788,5.7,1.542996,0.5553789,5.7,1.542996,0.9553788,6.8,1.542996,0.5553789,6.8,1.542996,0.5553789,0,0.8501751,0.5553789,1.5,0.8501751,0.3553789,0,1.196586,0.3553789,1.5,1.196586,0.9553788,3.2,0.8501751,0.9553788,2.1,0.8501751,1.155379,3.2,1.196586,1.155379,2.1,1.196586,1.155379,3.6,1.196586,0.9553788,3.6,0.8501751,1.155379,4.2,1.196586,0.9553788,4.2,0.8501751,1.155379,4.7,1.196586,0.9553788,4.7,0.8501751,1.155379,5.3,1.196586,0.9553788,5.3,0.8501751,1.155379,5.7,1.196586,0.9553788,5.7,0.8501751,1.155379,6.8,1.196586,0.9553788,6.8,0.8501751,0.5153788,3.9,0.7808932,0.9953787,3.9,0.7808932,0.5553789,4.2,0.8501751,0.9553788,4.2,0.8501751,0.5153788,1.8,0.7808932,0.5553789,2.1,0.8501751,0.2753789,1.8,1.196586,0.3553789,2.1,1.196586,0.5153788,1.8,0.7808932,0.2753789,1.8,1.196586,0.5553789,1.5,0.8501751,0.3553789,1.5,1.196586,0.5553789,4.7,0.8501751,0.9553788,4.7,0.8501751,0.5553789,5.3,0.8501751,0.9553788,5.3,0.8501751,0.5553789,5.7,0.8501751,0.9553788,5.7,0.8501751,0.5553789,6.8,0.8501751,0.9553788,6.8,0.8501751,0.9553788,4.2,0.8501751,0.5553789,4.2,0.8501751,0.9553788,3.6,0.8501751,0.5553789,3.6,0.8501751,0.9553788,3.2,0.8501751,0.5553789,3.2,0.8501751,0.9553788,2.1,0.8501751,0.5553789,2.1,0.8501751,0.3553789,4.7,1.196586,0.3553789,5.3,1.196586,0.5553789,4.7,1.542996,0.5553789,5.3,1.542996,0.3553789,5.7,1.196586,0.5553789,5.7,1.542996,0.3553789,6.8,1.196586,0.5553789,6.8,1.542996,0.5553789,4.2,1.542996,0.3553789,4.2,1.196586,0.5553789,3.6,1.542996,0.3553789,3.6,1.196586,0.5553789,3.2,1.542996,0.3553789,3.2,1.196586,0.5553789,2.1,1.542996,0.3553789,2.1,1.196586,0.9953787,1.8,0.7808932,1.235379,1.8,1.196586,0.9553788,2.1,0.8501751,1.155379,2.1,1.196586,1.155379,4.2,1.196586,1.235379,3.9,1.196586,0.9553788,4.2,1.542996,0.9953787,3.9,1.612278,0.3553789,3.6,1.196586,0.2753789,3.9,1.196586,0.5553789,3.6,1.542996,0.5153788,3.9,1.612278,0.9953787,3.9,0.7808932,1.235379,3.9,1.196586,0.9553788,4.2,0.8501751,1.155379,4.2,1.196586,0.9953787,1.8,1.612278,0.5153788,1.8,1.612278,0.9553788,2.1,1.542996,0.5553789,2.1,1.542996,0.5553789,0,0.8501751,0.9553788,0,0.8501751,0.5553789,1.5,0.8501751,0.9553788,1.5,0.8501751,0.9553788,1.5,1.542996,0.5553789,1.5,1.542996,0.9953787,1.8,1.612278,0.5153788,1.8,1.612278,0.9953787,1.8,0.7808932,0.9553788,1.5,0.8501751,1.235379,1.8,1.196586,1.155379,1.5,1.196586,0.2753789,1.8,1.196586,0.3553789,2.1,1.196586,0.5153788,1.8,1.612278,0.5553789,2.1,1.542996,1.155379,0,1.196586,0.9553788,0,0.8501751,0.9553788,0,1.542996,0.5553789,0,1.542996,0.5553789,0,0.8501751,0.3553789,0,1.196586,0.5153788,1.8,0.7808932,0.9953787,1.8,0.7808932,0.5553789,2.1,0.8501751,0.9553788,2.1,0.8501751,-1.392768,3.5,-0.09601914,-0.912768,3.5,-0.09601914,-1.352768,3.8,-0.02673712,-0.9527682,3.8,-0.02673712,-1.392768,1.6,-0.09601914,-1.352768,1.9,-0.02673712,-1.632768,1.6,0.3196731,-1.552768,1.9,0.3196731,-1.552768,3.2,0.3196731,-1.632768,3.5,0.3196731,-1.352768,3.2,0.6660832,-1.392768,3.5,0.7353652,-1.392768,1.6,-0.09601914,-0.912768,1.6,-0.09601914,-1.352768,1.9,-0.02673712,-0.9527682,1.9,-0.02673712,-1.352768,3.2,-0.02673712,-0.9527682,3.2,-0.02673712,-1.392768,3.5,-0.09601914,-0.912768,3.5,-0.09601914,-1.632768,1.6,0.3196731,-1.552768,1.9,0.3196731,-1.392768,1.6,0.7353652,-1.352768,1.9,0.6660832,-0.752768,3.8,0.3196731,-0.6727681,3.5,0.3196731,-0.9527682,3.8,0.6660832,-0.912768,3.5,0.7353652,-1.392768,1.6,-0.09601914,-1.632768,1.6,0.3196731,-1.352768,1.3,-0.02673712,-1.552768,1.3,0.3196731,0.5553789,1.5,0.8501751,0.9553788,1.5,0.8501751,0.5153788,1.8,0.7808932,0.9953787,1.8,0.7808932,-0.6727681,3.5,0.3196731,-0.752768,3.2,0.3196731,-0.912768,3.5,0.7353652,-0.9527682,3.2,0.6660832,1.155379,2.1,1.196586,1.235379,1.8,1.196586,0.9553788,2.1,1.542996,0.9953787,1.8,1.612278,-0.912768,3.5,-0.09601914,-0.6727681,3.5,0.3196731,-0.9527682,3.8,-0.02673712,-0.752768,3.8,0.3196731,-0.6727681,1.6,0.3196731,-0.752768,1.3,0.3196731,-0.912768,1.6,0.7353652,-0.9527682,1.3,0.6660832,-1.632768,3.5,0.3196731,-1.552768,3.8,0.3196731,-1.392768,3.5,0.7353652,-1.352768,3.8,0.6660832,0.9953787,3.9,0.7808932,0.9553788,3.6,0.8501751,1.235379,3.9,1.196586,1.155379,3.6,1.196586,1.235379,1.8,1.196586,1.155379,1.5,1.196586,0.9953787,1.8,1.612278,0.9553788,1.5,1.542996,-1.352768,1.9,-0.02673712,-1.352768,3.2,-0.02673712,-1.552768,1.9,0.3196731,-1.552768,3.2,0.3196731,-1.352768,3.8,-0.02673712,-1.552768,3.8,0.3196731,-1.352768,4.5,-0.02673712,-1.552768,4.5,0.3196731,-1.352768,5.1,-0.02673712,-1.552768,5.1,0.3196731,-1.352768,6.4,-0.02673712,-1.552768,6.4,0.3196731,0.9553788,0,1.542996,0.5553789,0,1.542996,0.9553788,1.5,1.542996,0.5553789,1.5,1.542996,-1.392768,3.5,-0.09601914,-1.352768,3.8,-0.02673712,-1.632768,3.5,0.3196731,-1.552768,3.8,0.3196731,-1.552768,0,0.3196731,-1.552768,1.3,0.3196731,-1.352768,0,0.6660832,-1.352768,1.3,0.6660832,0.9553788,1.5,0.8501751,0.9553788,0,0.8501751,1.155379,1.5,1.196586,1.155379,0,1.196586,0.5553789,3.6,0.8501751,0.9553788,3.6,0.8501751,0.5153788,3.9,0.7808932,0.9953787,3.9,0.7808932,0.9553788,3.6,1.542996,0.5553789,3.6,1.542996,0.9953787,3.9,1.612278,0.5153788,3.9,1.612278,0.5153788,3.9,0.7808932,0.2753789,3.9,1.196586,0.5553789,3.6,0.8501751,0.3553789,3.6,1.196586,-0.9527682,3.8,0.6660832,-1.352768,3.8,0.6660832,-0.9527682,4.5,0.6660832,-1.352768,4.5,0.6660832,-1.352768,3.2,0.6660832,-0.9527682,3.2,0.6660832,-1.352768,1.9,0.6660832,-0.9527682,1.9,0.6660832,-0.9527682,5.1,0.6660832,-1.352768,5.1,0.6660832,-0.9527682,6.4,0.6660832,-1.352768,6.4,0.6660832,-0.9527682,0,0.6660832,-1.352768,0,0.6660832,-0.9527682,1.3,0.6660832,-1.352768,1.3,0.6660832,1.488178,2.6,-0.7056979,1.088178,2.6,-0.7056979,1.528178,2.9,-0.636416,1.048178,2.9,-0.636416,0.5153788,3.9,0.7808932,0.5553789,4.2,0.8501751,0.2753789,3.9,1.196586,0.3553789,4.2,1.196586,1.088178,2.6,-1.398518,1.488178,2.6,-1.398518,1.048178,2.9,-1.4678,1.528178,2.9,-1.4678,1.235379,3.9,1.196586,1.155379,3.6,1.196586,0.9953787,3.9,1.612278,0.9553788,3.6,1.542996,-0.752768,4.5,0.3196731,-0.752768,3.8,0.3196731,-0.9527682,4.5,0.6660832,-0.9527682,3.8,0.6660832,-0.752768,3.2,0.3196731,-0.9527682,3.2,0.6660832,-0.752768,1.9,0.3196731,-0.9527682,1.9,0.6660832,-0.9527682,5.1,0.6660832,-0.752768,5.1,0.3196731,-0.9527682,6.4,0.6660832,-0.752768,6.4,0.3196731,-0.9527682,3.2,0.6660832,-1.352768,3.2,0.6660832,-0.912768,3.5,0.7353652,-1.392768,3.5,0.7353652,-0.9527682,3.2,-0.02673712,-0.9527682,1.9,-0.02673712,-0.752768,3.2,0.3196731,-0.752768,1.9,0.3196731,-0.752768,3.8,0.3196731,-0.9527682,3.8,-0.02673712,-0.752768,4.5,0.3196731,-0.9527682,4.5,-0.02673712,-0.752768,5.1,0.3196731,-0.9527682,5.1,-0.02673712,-0.752768,6.4,0.3196731,-0.9527682,6.4,-0.02673712,-0.912768,1.6,-0.09601914,-0.6727681,1.6,0.3196731,-0.9527682,1.9,-0.02673712,-0.752768,1.9,0.3196731,-0.912768,3.5,0.7353652,-1.392768,3.5,0.7353652,-0.9527682,3.8,0.6660832,-1.352768,3.8,0.6660832,-1.552768,1.3,0.3196731,-1.632768,1.6,0.3196731,-1.352768,1.3,0.6660832,-1.392768,1.6,0.7353652,0.3553789,0,1.196586,0.3553789,1.5,1.196586,0.5553789,0,1.542996,0.5553789,1.5,1.542996,1.688178,0,-1.052108,1.488178,0,-1.398518,1.488178,0,-0.7056979,1.088178,0,-0.7056979,1.088178,0,-1.398518,0.8881778,0,-1.052108,-1.352768,0,-0.02673712,-1.352768,1.3,-0.02673712,-1.552768,0,0.3196731,-1.552768,1.3,0.3196731,-1.352768,4.5,-0.02673712,-0.9527682,4.5,-0.02673712,-1.352768,5.1,-0.02673712,-0.9527682,5.1,-0.02673712,-1.352768,6.4,-0.02673712,-0.9527682,6.4,-0.02673712,-0.9527682,3.8,-0.02673712,-1.352768,3.8,-0.02673712,-0.9527682,3.2,-0.02673712,-1.352768,3.2,-0.02673712,-0.9527682,1.9,-0.02673712,-1.352768,1.9,-0.02673712,-0.752768,0,0.3196731,-0.9527682,0,-0.02673712,-0.9527682,0,0.6660832,-1.352768,0,0.6660832,-1.352768,0,-0.02673712,-1.552768,0,0.3196731,-0.912768,1.6,0.7353652,-1.392768,1.6,0.7353652,-0.9527682,1.9,0.6660832,-1.352768,1.9,0.6660832,-0.9527682,1.3,-0.02673712,-0.9527682,0,-0.02673712,-0.752768,1.3,0.3196731,-0.752768,0,0.3196731,1.528178,2.9,-0.636416,1.048178,2.9,-0.636416,1.488178,3.2,-0.7056979,1.088178,3.2,-0.7056979,1.528178,1.3,-1.4678,1.768178,1.3,-1.052108,1.488178,1.6,-1.398518,1.688178,1.6,-1.052108,1.048178,1.3,-1.4678,1.088178,1.6,-1.398518,0.8081777,1.3,-1.052108,0.8881778,1.6,-1.052108,1.688178,1,-1.052108,1.688178,0,-1.052108,1.488178,1,-0.7056979,1.488178,0,-0.7056979,0.8881778,2.6,-1.052108,0.8081777,2.9,-1.052108,1.088178,2.6,-0.7056979,1.048178,2.9,-0.636416,1.528178,2.9,-1.4678,1.768178,2.9,-1.052108,1.488178,3.2,-1.398518,1.688178,3.2,-1.052108,-1.352768,1.3,-0.02673712,-0.9527682,1.3,-0.02673712,-1.392768,1.6,-0.09601914,-0.912768,1.6,-0.09601914,1.768178,1.3,-1.052108,1.688178,1,-1.052108,1.528178,1.3,-0.636416,1.488178,1,-0.7056979,1.088178,1,-1.398518,1.488178,1,-1.398518,1.048178,1.3,-1.4678,1.528178,1.3,-1.4678,1.048178,1.3,-1.4678,0.8081777,1.3,-1.052108,1.088178,1,-1.398518,0.8881778,1,-1.052108,-1.352768,0,-0.02673712,-0.9527682,0,-0.02673712,-1.352768,1.3,-0.02673712,-0.9527682,1.3,-0.02673712,1.048178,2.9,-1.4678,1.528178,2.9,-1.4678,1.088178,3.2,-1.398518,1.488178,3.2,-1.398518,1.488178,1,-1.398518,1.488178,0,-1.398518,1.688178,1,-1.052108,1.688178,0,-1.052108,-1.552768,1.9,0.3196731,-1.552768,3.2,0.3196731,-1.352768,1.9,0.6660832,-1.352768,3.2,0.6660832,-1.552768,3.8,0.3196731,-1.352768,3.8,0.6660832,-1.552768,4.5,0.3196731,-1.352768,4.5,0.6660832,-1.552768,5.1,0.3196731,-1.352768,5.1,0.6660832,-1.552768,6.4,0.3196731,-1.352768,6.4,0.6660832,1.688178,1.6,-1.052108,1.768178,1.3,-1.052108,1.488178,1.6,-0.7056979,1.528178,1.3,-0.636416,1.048178,1.3,-1.4678,1.528178,1.3,-1.4678,1.088178,1.6,-1.398518,1.488178,1.6,-1.398518,0.8881778,1,-1.052108,0.8081777,1.3,-1.052108,1.088178,1,-0.7056979,1.048178,1.3,-0.636416,-0.752768,1.9,0.3196731,-0.6727681,1.6,0.3196731,-0.9527682,1.9,0.6660832,-0.912768,1.6,0.7353652,-0.9527682,1.3,0.6660832,-1.352768,1.3,0.6660832,-0.912768,1.6,0.7353652,-1.392768,1.6,0.7353652,1.088178,0,-1.398518,1.488178,0,-1.398518,1.088178,1,-1.398518,1.488178,1,-1.398518,0.8081777,1.3,-1.052108,0.8881778,1.6,-1.052108,1.048178,1.3,-0.636416,1.088178,1.6,-0.7056979,1.488178,0,-0.7056979,1.088178,0,-0.7056979,1.488178,1,-0.7056979,1.088178,1,-0.7056979,-1.392768,3.5,-0.09601914,-1.632768,3.5,0.3196731,-1.352768,3.2,-0.02673712,-1.552768,3.2,0.3196731,-0.752768,1.3,0.3196731,-0.752768,0,0.3196731,-0.9527682,1.3,0.6660832,-0.9527682,0,0.6660832,1.048178,2.9,-1.4678,1.088178,3.2,-1.398518,0.8081777,2.9,-1.052108,0.8881778,3.2,-1.052108,-0.912768,1.6,-0.09601914,-0.9527682,1.3,-0.02673712,-0.6727681,1.6,0.3196731,-0.752768,1.3,0.3196731,-0.912768,3.5,-0.09601914,-0.9527682,3.2,-0.02673712,-0.6727681,3.5,0.3196731,-0.752768,3.2,0.3196731,1.528178,1.3,-0.636416,1.048178,1.3,-0.636416,1.488178,1.6,-0.7056979,1.088178,1.6,-0.7056979,1.768178,2.9,-1.052108,1.688178,2.6,-1.052108,1.528178,2.9,-0.636416,1.488178,2.6,-0.7056979,0.8081777,2.9,-1.052108,0.8881778,3.2,-1.052108,1.048178,2.9,-0.636416,1.088178,3.2,-0.7056979,1.688178,3.2,-1.052108,1.768178,2.9,-1.052108,1.488178,3.2,-0.7056979,1.528178,2.9,-0.636416,1.048178,2.9,-1.4678,0.8081777,2.9,-1.052108,1.088178,2.6,-1.398518,0.8881778,2.6,-1.052108,1.528178,1.3,-1.4678,1.488178,1,-1.398518,1.768178,1.3,-1.052108,1.688178,1,-1.052108,1.488178,1,-0.7056979,1.088178,1,-0.7056979,1.528178,1.3,-0.636416,1.048178,1.3,-0.636416,1.048178,4.5,-1.4678,1.088178,4.8,-1.398518,0.8081777,4.5,-1.052108,0.8881778,4.8,-1.052108,1.528178,6.1,-0.636416,1.048178,6.1,-0.636416,1.488178,6.4,-0.7056979,1.088178,6.4,-0.7056979,1.688178,4.2,-1.052108,1.688178,3.2,-1.052108,1.488178,4.2,-0.7056979,1.488178,3.2,-0.7056979,1.528178,4.5,-1.4678,1.768178,4.5,-1.052108,1.488178,4.8,-1.398518,1.688178,4.8,-1.052108,1.488178,4.2,-1.398518,1.488178,3.2,-1.398518,1.688178,4.2,-1.052108,1.688178,3.2,-1.052108,1.155379,5.3,1.196586,1.235379,5,1.196586,0.9553788,5.3,1.542996,0.9953787,5,1.612278,-1.352768,4.5,-0.02673712,-0.9527682,4.5,-0.02673712,-1.392768,4.8,-0.09601914,-0.912768,4.8,-0.09601914,-0.9527682,7,0.6660832,-1.352768,7,0.6660832,-0.9527682,8.3,0.6660832,-1.352768,8.3,0.6660832,-0.6727681,4.8,0.3196731,-0.752768,4.5,0.3196731,-0.912768,4.8,0.7353652,-0.9527682,4.5,0.6660832,0.8081777,4.5,-1.052108,0.8881778,4.8,-1.052108,1.048178,4.5,-0.636416,1.088178,4.8,-0.7056979,1.048178,6.1,-1.4678,1.528178,6.1,-1.4678,1.088178,6.4,-1.398518,1.488178,6.4,-1.398518,1.088178,4.2,-1.398518,1.488178,4.2,-1.398518,1.048178,4.5,-1.4678,1.528178,4.5,-1.4678,1.088178,3.2,-1.398518,1.488178,3.2,-1.398518,1.088178,4.2,-1.398518,1.488178,4.2,-1.398518,-0.912768,4.8,-0.09601914,-0.6727681,4.8,0.3196731,-0.9527682,5.1,-0.02673712,-0.752768,5.1,0.3196731,0.9553788,6.8,1.542996,0.5553789,6.8,1.542996,0.9953787,7.1,1.612278,0.5153788,7.1,1.612278,1.235379,7.1,1.196586,1.155379,6.8,1.196586,0.9953787,7.1,1.612278,0.9553788,6.8,1.542996,1.488178,3.2,-0.7056979,1.088178,3.2,-0.7056979,1.488178,4.2,-0.7056979,1.088178,4.2,-0.7056979,1.048178,4.5,-1.4678,0.8081777,4.5,-1.052108,1.088178,4.2,-1.398518,0.8881778,4.2,-1.052108,-0.752768,8.3,0.3196731,-0.752768,7,0.3196731,-0.9527682,8.3,0.6660832,-0.9527682,7,0.6660832,0.8881778,5.8,-1.052108,0.8081777,6.1,-1.052108,1.088178,5.8,-0.7056979,1.048178,6.1,-0.636416,-1.552768,4.5,0.3196731,-1.632768,4.8,0.3196731,-1.352768,4.5,0.6660832,-1.392768,4.8,0.7353652,0.8881778,4.2,-1.052108,0.8081777,4.5,-1.052108,1.088178,4.2,-0.7056979,1.048178,4.5,-0.636416,1.235379,5,1.196586,1.155379,4.7,1.196586,0.9953787,5,1.612278,0.9553788,4.7,1.542996,1.528178,6.1,-1.4678,1.768178,6.1,-1.052108,1.488178,6.4,-1.398518,1.688178,6.4,-1.052108,-1.632768,6.7,0.3196731,-1.552768,7,0.3196731,-1.392768,6.7,0.7353652,-1.352768,7,0.6660832,-0.9527682,8.3,-0.02673712,-0.9527682,7,-0.02673712,-0.752768,8.3,0.3196731,-0.752768,7,0.3196731,-1.392768,6.7,-0.09601914,-1.352768,7,-0.02673712,-1.632768,6.7,0.3196731,-1.552768,7,0.3196731,1.488178,5.8,-0.7056979,1.088178,5.8,-0.7056979,1.528178,6.1,-0.636416,1.048178,6.1,-0.636416,0.5553789,4.7,0.8501751,0.9553788,4.7,0.8501751,0.5153788,5,0.7808932,0.9953787,5,0.7808932,-0.912768,4.8,0.7353652,-1.392768,4.8,0.7353652,-0.9527682,5.1,0.6660832,-1.352768,5.1,0.6660832,1.768178,4.5,-1.052108,1.688178,4.2,-1.052108,1.528178,4.5,-0.636416,1.488178,4.2,-0.7056979,1.048178,4.5,-1.4678,1.528178,4.5,-1.4678,1.088178,4.8,-1.398518,1.488178,4.8,-1.398518,0.5153788,7.1,0.7808932,0.2753789,7.1,1.196586,0.5553789,6.8,0.8501751,0.3553789,6.8,1.196586,1.768178,6.1,-1.052108,1.688178,5.8,-1.052108,1.528178,6.1,-0.636416,1.488178,5.8,-0.7056979,0.9553788,8.9,0.8501751,0.9553788,7.4,0.8501751,1.155379,8.9,1.196586,1.155379,7.4,1.196586,0.5553789,6.8,0.8501751,0.9553788,6.8,0.8501751,0.5153788,7.1,0.7808932,0.9953787,7.1,0.7808932,-1.392768,6.7,-0.09601914,-1.632768,6.7,0.3196731,-1.352768,6.4,-0.02673712,-1.552768,6.4,0.3196731,-0.9527682,6.4,0.6660832,-1.352768,6.4,0.6660832,-0.912768,6.7,0.7353652,-1.392768,6.7,0.7353652,-0.912768,6.7,0.7353652,-1.392768,6.7,0.7353652,-0.9527682,7,0.6660832,-1.352768,7,0.6660832,0.9953787,7.1,0.7808932,0.9553788,6.8,0.8501751,1.235379,7.1,1.196586,1.155379,6.8,1.196586,1.688178,6.4,-1.052108,1.768178,6.1,-1.052108,1.488178,6.4,-0.7056979,1.528178,6.1,-0.636416,-0.912768,4.8,-0.09601914,-0.9527682,4.5,-0.02673712,-0.6727681,4.8,0.3196731,-0.752768,4.5,0.3196731,0.9953787,5,0.7808932,1.235379,5,1.196586,0.9553788,5.3,0.8501751,1.155379,5.3,1.196586,-0.912768,6.7,-0.09601914,-0.9527682,6.4,-0.02673712,-0.6727681,6.7,0.3196731,-0.752768,6.4,0.3196731,0.3553789,6.8,1.196586,0.2753789,7.1,1.196586,0.5553789,6.8,1.542996,0.5153788,7.1,1.612278,0.2753789,7.1,1.196586,0.3553789,7.4,1.196586,0.5153788,7.1,1.612278,0.5553789,7.4,1.542996,0.5153788,7.1,0.7808932,0.5553789,7.4,0.8501751,0.2753789,7.1,1.196586,0.3553789,7.4,1.196586,1.528178,6.1,-1.4678,1.488178,5.8,-1.398518,1.768178,6.1,-1.052108,1.688178,5.8,-1.052108,0.8881778,6.4,-1.052108,0.8881778,7.4,-1.052108,1.088178,6.4,-0.7056979,1.088178,7.4,-0.7056979,-1.352768,7,-0.02673712,-0.9527682,7,-0.02673712,-1.352768,8.3,-0.02673712,-0.9527682,8.3,-0.02673712,1.488178,4.8,-0.7056979,1.088178,4.8,-0.7056979,1.488178,5.8,-0.7056979,1.088178,5.8,-0.7056979,-1.552768,7,0.3196731,-1.552768,8.3,0.3196731,-1.352768,7,0.6660832,-1.352768,8.3,0.6660832,-0.912768,6.7,-0.09601914,-0.6727681,6.7,0.3196731,-0.9527682,7,-0.02673712,-0.752768,7,0.3196731,-0.752768,5.1,0.3196731,-0.6727681,4.8,0.3196731,-0.9527682,5.1,0.6660832,-0.912768,4.8,0.7353652,1.155379,8.9,1.196586,1.155379,7.4,1.196586,0.9553788,8.9,1.542996,0.9553788,7.4,1.542996,1.048178,6.1,-1.4678,0.8081777,6.1,-1.052108,1.088178,5.8,-1.398518,0.8881778,5.8,-1.052108,-1.352768,7,-0.02673712,-1.352768,8.3,-0.02673712,-1.552768,7,0.3196731,-1.552768,8.3,0.3196731,1.048178,6.1,-1.4678,1.088178,6.4,-1.398518,0.8081777,6.1,-1.052108,0.8881778,6.4,-1.052108,1.528178,4.5,-1.4678,1.488178,4.2,-1.398518,1.768178,4.5,-1.052108,1.688178,4.2,-1.052108,1.528178,4.5,-0.636416,1.048178,4.5,-0.636416,1.488178,4.8,-0.7056979,1.088178,4.8,-0.7056979,1.688178,4.8,-1.052108,1.768178,4.5,-1.052108,1.488178,4.8,-0.7056979,1.528178,4.5,-0.636416,1.155379,7.4,1.196586,1.235379,7.1,1.196586,0.9553788,7.4,1.542996,0.9953787,7.1,1.612278,0.5153788,7.1,0.7808932,0.9953787,7.1,0.7808932,0.5553789,7.4,0.8501751,0.9553788,7.4,0.8501751,1.088178,5.8,-1.398518,1.488178,5.8,-1.398518,1.048178,6.1,-1.4678,1.528178,6.1,-1.4678,-0.752768,8.3,0.3196731,-0.9527682,8.3,0.6660832,-0.9527682,8.3,-0.02673712,-1.352768,8.3,-0.02673712,-1.352768,8.3,0.6660832,-1.552768,8.3,0.3196731,0.8081777,6.1,-1.052108,0.8881778,6.4,-1.052108,1.048178,6.1,-0.636416,1.088178,6.4,-0.7056979,1.488178,5.8,-1.398518,1.488178,4.8,-1.398518,1.688178,5.8,-1.052108,1.688178,4.8,-1.052108,1.088178,4.8,-1.398518,1.488178,4.8,-1.398518,1.088178,5.8,-1.398518,1.488178,5.8,-1.398518,-0.9527682,4.5,0.6660832,-1.352768,4.5,0.6660832,-0.912768,4.8,0.7353652,-1.392768,4.8,0.7353652,1.488178,6.4,-0.7056979,1.088178,6.4,-0.7056979,1.488178,7.4,-0.7056979,1.088178,7.4,-0.7056979,-0.6727681,6.7,0.3196731,-0.752768,6.4,0.3196731,-0.912768,6.7,0.7353652,-0.9527682,6.4,0.6660832,1.488178,4.2,-0.7056979,1.088178,4.2,-0.7056979,1.528178,4.5,-0.636416,1.048178,4.5,-0.636416,0.3553789,4.7,1.196586,0.2753789,5,1.196586,0.5553789,4.7,1.542996,0.5153788,5,1.612278,0.9553788,7.4,1.542996,0.5553789,7.4,1.542996,0.9553788,8.9,1.542996,0.5553789,8.9,1.542996,1.688178,7.4,-1.052108,1.488178,7.4,-0.7056979,1.488178,7.4,-1.398518,1.088178,7.4,-1.398518,1.088178,7.4,-0.7056979,0.8881778,7.4,-1.052108,0.8881778,4.8,-1.052108,0.8881778,5.8,-1.052108,1.088178,4.8,-0.7056979,1.088178,5.8,-0.7056979,-1.392768,4.8,-0.09601914,-1.352768,5.1,-0.02673712,-1.632768,4.8,0.3196731,-1.552768,5.1,0.3196731,1.088178,3.2,-1.398518,1.088178,4.2,-1.398518,0.8881778,3.2,-1.052108,0.8881778,4.2,-1.052108,1.488178,7.4,-1.398518,1.488178,6.4,-1.398518,1.688178,7.4,-1.052108,1.688178,6.4,-1.052108,0.5553789,7.4,0.8501751,0.5553789,8.9,0.8501751,0.3553789,7.4,1.196586,0.3553789,8.9,1.196586,0.5153788,5,0.7808932,0.2753789,5,1.196586,0.5553789,4.7,0.8501751,0.3553789,4.7,1.196586,1.088178,6.4,-1.398518,1.088178,7.4,-1.398518,0.8881778,6.4,-1.052108,0.8881778,7.4,-1.052108,1.688178,7.4,-1.052108,1.688178,6.4,-1.052108,1.488178,7.4,-0.7056979,1.488178,6.4,-0.7056979,0.3553789,7.4,1.196586,0.3553789,8.9,1.196586,0.5553789,7.4,1.542996,0.5553789,8.9,1.542996,-1.392768,4.8,-0.09601914,-0.912768,4.8,-0.09601914,-1.352768,5.1,-0.02673712,-0.9527682,5.1,-0.02673712,0.9953787,7.1,1.612278,0.5153788,7.1,1.612278,0.9553788,7.4,1.542996,0.5553789,7.4,1.542996,-1.392768,6.7,-0.09601914,-0.912768,6.7,-0.09601914,-1.352768,7,-0.02673712,-0.9527682,7,-0.02673712,1.088178,6.4,-1.398518,1.488178,6.4,-1.398518,1.088178,7.4,-1.398518,1.488178,7.4,-1.398518,0.5553789,7.4,0.8501751,0.9553788,7.4,0.8501751,0.5553789,8.9,0.8501751,0.9553788,8.9,0.8501751,1.155379,8.9,1.196586,0.9553788,8.9,1.542996,0.9553788,8.9,0.8501751,0.5553789,8.9,0.8501751,0.5553789,8.9,1.542996,0.3553789,8.9,1.196586,0.9953787,7.1,0.7808932,1.235379,7.1,1.196586,0.9553788,7.4,0.8501751,1.155379,7.4,1.196586,-1.632768,4.8,0.3196731,-1.552768,5.1,0.3196731,-1.392768,4.8,0.7353652,-1.352768,5.1,0.6660832,0.5153788,5,0.7808932,0.9953787,5,0.7808932,0.5553789,5.3,0.8501751,0.9553788,5.3,0.8501751,1.688178,5.8,-1.052108,1.688178,4.8,-1.052108,1.488178,5.8,-0.7056979,1.488178,4.8,-0.7056979,0.9553788,4.7,1.542996,0.5553789,4.7,1.542996,0.9953787,5,1.612278,0.5153788,5,1.612278,-1.352768,6.4,-0.02673712,-0.9527682,6.4,-0.02673712,-1.392768,6.7,-0.09601914,-0.912768,6.7,-0.09601914,1.088178,4.8,-1.398518,1.088178,5.8,-1.398518,0.8881778,4.8,-1.052108,0.8881778,5.8,-1.052108,0.8881778,3.2,-1.052108,0.8881778,4.2,-1.052108,1.088178,3.2,-0.7056979,1.088178,4.2,-0.7056979,-0.752768,7,0.3196731,-0.6727681,6.7,0.3196731,-0.9527682,7,0.6660832,-0.912768,6.7,0.7353652,0.9953787,5,1.612278,0.5153788,5,1.612278,0.9553788,5.3,1.542996,0.5553789,5.3,1.542996,0.9953787,5,0.7808932,0.9553788,4.7,0.8501751,1.235379,5,1.196586,1.155379,4.7,1.196586,0.5153788,5,0.7808932,0.5553789,5.3,0.8501751,0.2753789,5,1.196586,0.3553789,5.3,1.196586,0.2753789,5,1.196586,0.3553789,5.3,1.196586,0.5153788,5,1.612278,0.5553789,5.3,1.542996,-1.552768,6.4,0.3196731,-1.632768,6.7,0.3196731,-1.352768,6.4,0.6660832,-1.392768,6.7,0.7353652,-1.392768,4.8,-0.09601914,-1.632768,4.8,0.3196731,-1.352768,4.5,-0.02673712,-1.552768,4.5,0.3196731 + } + PolygonVertexIndex: *1692 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,41,43,-45,45,44,-44,44,45,-47,47,46,-46,46,47,-49,49,48,-48,48,49,-51,51,50,-50,50,51,-53,53,52,-52,52,53,-55,55,54,-54,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,70,68,-73,73,72,-69,72,73,-75,75,74,-74,74,75,-77,77,76,-76,76,77,-79,79,78,-78,78,79,-81,81,80,-80,80,81,-83,83,82,-82,84,86,-86,87,85,-87,86,88,-88,89,87,-89,88,90,-90,91,89,-91,90,92,-92,93,91,-93,92,94,-94,95,93,-95,94,96,-96,97,95,-97,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,106,104,-109,109,108,-105,108,109,-111,111,110,-110,110,111,-113,113,112,-112,112,113,-115,115,114,-114,114,115,-117,117,116,-116,116,117,-119,119,118,-118,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,134,136,-136,137,135,-137,136,138,-138,139,137,-139,133,140,-133,141,132,-141,140,142,-142,143,141,-143,142,144,-144,145,143,-145,144,146,-146,147,145,-147,148,150,-150,151,149,-151,149,151,-153,153,152,-152,152,153,-155,155,154,-154,150,148,-157,157,156,-149,156,157,-159,159,158,-158,158,159,-161,161,160,-160,160,161,-163,163,162,-162,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,201,-204,205,204,-204,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,275,277,-279,279,278,-278,278,279,-281,281,280,-280,280,281,-283,283,282,-282,282,283,-285,285,284,-284,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,312,-312,313,311,-313,314,316,-316,317,315,-317,315,318,-315,319,314,-319,318,320,-320,321,319,-321,316,322,-318,323,317,-323,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,347,349,-351,351,350,-350,350,351,-353,353,352,-352,348,346,-355,355,354,-347,354,355,-357,357,356,-356,358,360,-360,361,359,-361,362,364,-364,365,363,-365,364,362,-367,367,366,-363,366,367,-369,369,368,-368,368,369,-371,371,370,-370,370,371,-373,373,372,-372,374,376,-376,377,375,-377,378,380,-380,381,379,-381,382,384,-384,385,383,-385,386,388,-388,389,387,-389,390,392,-392,393,391,-393,394,391,-394,395,394,-394,396,398,-398,399,397,-399,400,402,-402,403,401,-403,402,404,-404,405,403,-405,401,406,-401,407,400,-407,406,408,-408,409,407,-409,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,413,-416,417,416,-416,418,420,-420,421,419,-421,422,424,-424,425,423,-425,426,428,-428,429,427,-429,430,432,-432,433,431,-433,434,436,-436,437,435,-437,438,440,-440,441,439,-441,442,444,-444,445,443,-445,446,448,-448,449,447,-449,450,452,-452,453,451,-453,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,465,463,-465,466,468,-468,469,467,-469,470,472,-472,473,471,-473,474,476,-476,477,475,-477,478,480,-480,481,479,-481,479,481,-483,483,482,-482,482,483,-485,485,484,-484,484,485,-487,487,486,-486,486,487,-489,489,488,-488,490,492,-492,493,491,-493,494,496,-496,497,495,-497,498,500,-500,501,499,-501,502,504,-504,505,503,-505,506,508,-508,509,507,-509,510,512,-512,513,511,-513,514,516,-516,517,515,-517,518,520,-520,521,519,-521,522,524,-524,525,523,-525,526,528,-528,529,527,-529,530,532,-532,533,531,-533,534,536,-536,537,535,-537,538,540,-540,541,539,-541,542,544,-544,545,543,-545,546,548,-548,549,547,-549,550,552,-552,553,551,-553,554,556,-556,557,555,-557,558,560,-560,561,559,-561,562,564,-564,565,563,-565,566,568,-568,569,567,-569,570,572,-572,573,571,-573,574,576,-576,577,575,-577,578,580,-580,581,579,-581,582,584,-584,585,583,-585,586,588,-588,589,587,-589,590,592,-592,593,591,-593,594,596,-596,597,595,-597,598,600,-600,601,599,-601,602,604,-604,605,603,-605,606,608,-608,609,607,-609,610,612,-612,613,611,-613,614,616,-616,617,615,-617,618,620,-620,621,619,-621,622,624,-624,625,623,-625,626,628,-628,629,627,-629,630,632,-632,633,631,-633,634,636,-636,637,635,-637,638,640,-640,641,639,-641,642,644,-644,645,643,-645,646,648,-648,649,647,-649,650,652,-652,653,651,-653,654,656,-656,657,655,-657,658,660,-660,661,659,-661,662,664,-664,665,663,-665,666,668,-668,669,667,-669,670,672,-672,673,671,-673,674,676,-676,677,675,-677,678,680,-680,681,679,-681,682,684,-684,685,683,-685,686,688,-688,689,687,-689,690,692,-692,693,691,-693,694,696,-696,697,695,-697,698,700,-700,701,699,-701,702,704,-704,705,703,-705,706,708,-708,709,707,-709,710,712,-712,713,711,-713,714,716,-716,717,715,-717,718,720,-720,721,719,-721,722,724,-724,725,723,-725,726,728,-728,729,727,-729,730,732,-732,733,731,-733,734,736,-736,737,735,-737,738,740,-740,741,739,-741,742,744,-744,745,743,-745,746,748,-748,749,747,-749,750,752,-752,753,751,-753,754,756,-756,757,755,-757,758,760,-760,761,759,-761,762,764,-764,765,763,-765,766,768,-768,769,767,-769,770,772,-772,773,771,-773,774,776,-776,777,775,-777,778,780,-780,781,779,-781,782,784,-784,785,783,-785,786,788,-788,789,787,-789,790,792,-792,793,791,-793,794,796,-796,797,795,-797,798,800,-800,801,799,-801,802,804,-804,805,803,-805,806,808,-808,809,807,-809,810,812,-812,813,811,-813,814,816,-816,817,815,-817,818,820,-820,821,819,-821,822,824,-824,825,823,-825,826,828,-828,829,827,-829,830,827,-830,831,830,-830,832,834,-834,835,833,-835,836,838,-838,839,837,-839,840,842,-842,843,841,-843,844,846,-846,847,845,-847,848,850,-850,851,849,-851,852,854,-854,855,853,-855,856,858,-858,859,857,-859,860,862,-862,863,861,-863,864,866,-866,867,865,-867,868,870,-870,871,869,-871,872,869,-872,873,872,-872,874,876,-876,877,875,-877,878,880,-880,881,879,-881,882,884,-884,885,883,-885,886,888,-888,889,887,-889,890,892,-892,893,891,-893,894,896,-896,897,895,-897,898,900,-900,901,899,-901,902,904,-904,905,903,-905,906,908,-908,909,907,-909,910,912,-912,913,911,-913,914,916,-916,917,915,-917,918,920,-920,921,919,-921,922,924,-924,925,923,-925,926,928,-928,929,927,-929,930,932,-932,933,931,-933,934,931,-934,935,934,-934,936,938,-938,939,937,-939,940,942,-942,943,941,-943,944,946,-946,947,945,-947,948,950,-950,951,949,-951,952,954,-954,955,953,-955,956,958,-958,959,957,-959,960,962,-962,963,961,-963,964,966,-966,967,965,-967,968,970,-970,971,969,-971,972,974,-974,975,973,-975,976,978,-978,979,977,-979,980,982,-982,983,981,-983,984,986,-986,987,985,-987,988,990,-990,991,989,-991,992,994,-994,995,993,-995 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *5076 { + a: -0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0.843816,-0.2250174,0.4871773,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,-0.8438157,-0.2250176,-0.4871776,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,-0.843816,-0.2250177,0.4871773,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0.8438159,-0.2250174,-0.4871776,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,-0.8438157,0.2250175,-0.4871776,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8438159,0.2250173,-0.4871777,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0.8438159,0.2250173,0.4871777,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,0.8438159,-0.2250176,0.4871775,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,-0.843816,0.2250176,0.4871773,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,0.2250173,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8438159,0.2250178,-0.4871774,0.8438159,0.2250178,-0.4871774,0.8438159,0.2250178,-0.4871774,0.8438159,0.2250178,-0.4871774,0.8438159,0.2250178,-0.4871774,0.8438159,0.2250178,-0.4871774,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0,-0.2250171,0.9743547,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0.8438159,-0.2250171,0.4871777,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,0.8660253,0,0.5000002,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250173,0.4871774,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,-0.843816,-0.2250175,0.4871773,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,-0.2250173,0.4871777,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,0.8438159,0.2250174,-0.4871776,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,-0.8438159,0.2250174,0.4871774,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,0.8660253,0,-0.5000002,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,-0.8438159,0.2250174,-0.4871774,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,-0.2250175,-0.9743547,0,0.2250176,0.9743547,0,0.2250176,0.9743547,0,0.2250176,0.9743547,0,0.2250176,0.9743547,0,0.2250176,0.9743547,0,0.2250176,0.9743547,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,0,0.2250172,-0.9743547,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,-0.8438161,-0.2250174,-0.4871771,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.843816,-0.2250172,0.4871772,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0.8660255,0,-0.4999999,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,0,-0.2250173,-0.9743547,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,-0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,-0.2250172,-0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.843816,0.2250174,0.4871773,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.8438159,-0.2250176,-0.4871775,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.843816,0.2250173,-0.4871773,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,0.8438159,-0.2250177,-0.4871775,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,-0.2250174,0.4871776,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.8438159,0.2250177,0.4871775,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,-0.843816,0.2250177,-0.4871772,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,-0.8660254,0,0.5000001,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250177,-0.4871775,0.8438159,0.2250178,0.4871774,0.8438159,0.2250178,0.4871774,0.8438159,0.2250178,0.4871774,0.8438159,0.2250178,0.4871774,0.8438159,0.2250178,0.4871774,0.8438159,0.2250178,0.4871774,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,0.8660253,0,0.5000003,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8438159,-0.2250175,-0.4871777,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8660253,0,-0.5000001,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,-0.8438157,0.2250176,-0.4871776,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0.8438159,-0.2250172,-0.4871777,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0,0.2250174,0.9743547,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.843816,0.2250173,0.4871773,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0.8438159,0.2250175,0.4871777,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,-0.2250171,-0.9743547,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,-0.843816,0.2250177,0.4871773,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,-0.2250174,0.9743547,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0.8438159,-0.2250177,0.4871774,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,-0.8438159,-0.2250175,0.4871776,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8438159,0.2250175,-0.4871774,-0.8438159,0.2250175,-0.4871774,-0.8438159,0.2250175,-0.4871774,-0.8438159,0.2250175,-0.4871774,-0.8438159,0.2250175,-0.4871774,-0.8438159,0.2250175,-0.4871774,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,0.8660253,0,-0.5000003,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.8660256,0,-0.4999998,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.843816,-0.2250176,-0.4871772,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,-0.8660253,0,0.5000001,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250177,-0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250175,0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0.2250176,-0.9743547,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,0.843816,0.2250175,-0.4871773,-0.8438159,0.2250175,0.4871774,-0.8438159,0.2250175,0.4871774,-0.8438159,0.2250175,0.4871774,-0.8438159,0.2250175,0.4871774,-0.8438159,0.2250175,0.4871774,-0.8438159,0.2250175,0.4871774,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0,0.2250175,-0.9743547,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0.8660255,0,0.4999999,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250173,0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,0,-0.2250176,-0.9743547,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660253,0,-0.5000004,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0.8438159,0.2250177,0.4871774,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0,0.2250173,0.9743547,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,0.843816,-0.2250173,-0.4871773,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.843816,0.2250176,-0.4871772,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,0.2250175,0.4871776,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774,-0.8438159,-0.2250174,-0.4871774 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1992 { + a: -6.910399,0,-6.910399,3.937008,-5.335597,0,-5.335597,3.937008,-6.910399,6.299212,-6.910399,10.23622,-5.335597,6.299212,-5.335597,10.23622,-4.284165,6.299212,-5.858968,6.299212,-4.284165,10.23622,-5.858968,10.23622,6.910399,10.23622,6.910399,6.299212,5.335595,10.23622,5.335595,6.299212,-1.838834,0,-1.838834,3.937008,-0.2640294,0,-0.2640294,3.937008,1.838831,10.23622,1.838831,6.299212,0.2640278,10.23622,0.2640278,6.299212,-1.838834,6.299212,-1.838834,10.23622,-0.2640294,6.299212,-0.2640294,10.23622,5.858968,6.299212,4.284165,6.299212,5.858968,10.23622,4.284165,10.23622,-1.805448,5.905512,-1.805448,0,-3.38025,5.905512,-3.38025,0,4.621901,14.64181,4.779382,15.854,6.511664,14.64181,6.354184,15.854,1.80545,8.267716,1.80545,12.59842,3.380254,8.267716,3.380254,12.59842,1.80545,14.17323,3.380254,14.17323,1.80545,16.53543,3.380254,16.53543,1.80545,18.50394,3.380254,18.50394,1.80545,20.86614,3.380254,20.86614,1.80545,22.44094,3.380254,22.44094,1.80545,26.77165,3.380254,26.77165,3.918814,13.53226,2.029051,13.53226,3.761334,14.74444,2.186531,14.74444,4.779382,6.011439,4.621901,7.223628,6.354184,6.011439,6.511664,7.223628,1.996311,12.94711,1.838831,11.73492,0.1065476,12.94711,0.2640279,11.73492,-1.805448,12.59842,-1.805448,8.267716,-3.38025,12.59842,-3.38025,8.267716,-3.38025,14.17323,-1.805448,14.17323,-3.38025,16.53543,-1.805448,16.53543,-3.38025,18.50394,-1.805448,18.50394,-3.38025,20.86614,-1.805448,20.86614,-3.38025,22.44094,-1.805448,22.44094,-3.38025,26.77165,-1.805448,26.77165,3.761334,8.267716,2.186531,8.267716,3.761334,12.59842,2.186531,12.59842,3.761334,14.17323,2.186531,14.17323,3.761334,16.53543,2.186531,16.53543,3.761334,18.50394,2.186531,18.50394,3.761334,20.86614,2.186531,20.86614,3.761334,22.44094,2.186531,22.44094,3.761334,26.77165,2.186531,26.77165,1.80545,0,1.80545,5.905512,3.380254,0,3.380254,5.905512,-4.779381,12.59842,-4.779381,8.267716,-6.354185,12.59842,-6.354185,8.267716,-6.354185,14.17323,-4.779381,14.17323,-6.354185,16.53543,-4.779381,16.53543,-6.354185,18.50394,-4.779381,18.50394,-6.354185,20.86614,-4.779381,20.86614,-6.354185,22.44094,-4.779381,22.44094,-6.354185,26.77165,-4.779381,26.77165,-2.029051,15.65236,-3.918814,15.65236,-2.186531,16.86454,-3.761334,16.86454,1.647969,7.646173,1.805449,8.858363,3.537734,7.646173,3.380253,8.858363,1.647969,6.163578,3.537734,6.163578,1.805449,4.951388,3.380253,4.951388,-2.186531,18.50394,-3.761334,18.50394,-2.186531,20.86614,-3.761334,20.86614,-2.186531,22.44094,-3.761334,22.44094,-2.186531,26.77165,-3.761334,26.77165,-3.761334,16.53543,-2.186531,16.53543,-3.761334,14.17323,-2.186531,14.17323,-3.761334,12.59842,-2.186531,12.59842,-3.761334,8.267716,-2.186531,8.267716,4.779382,18.50394,4.779382,20.86614,6.354185,18.50394,6.354185,20.86614,4.779382,22.44094,6.354185,22.44094,4.779382,26.77165,6.354185,26.77165,6.354185,16.53543,4.779382,16.53543,6.354185,14.17323,4.779382,14.17323,6.354185,12.59842,4.779382,12.59842,6.354185,8.267716,4.779382,8.267716,-4.621901,6.487108,-6.511665,6.487108,-4.779381,7.699297,-6.354185,7.699297,-1.805447,14.69494,-1.647967,13.48275,-3.38025,14.69494,-3.53773,13.48275,4.779382,14.06713,4.621901,15.27932,6.354184,14.06713,6.511664,15.27932,-4.621901,14.5428,-6.511665,14.5428,-4.779381,15.75498,-6.354185,15.75498,3.918814,5.476568,2.029051,5.476568,3.761334,6.688756,2.186531,6.688756,-2.186531,0,-3.761334,0,-2.186531,5.905512,-3.761334,5.905512,3.761334,7.120996,2.186531,7.120996,3.918814,8.333184,2.029051,8.333184,-4.621901,7.322644,-4.779381,6.110455,-6.511665,7.322644,-6.354185,6.110455,4.621901,6.586123,4.779382,7.798313,6.511664,6.586123,6.354184,7.798313,4.548736,4.710967,3.761334,3.347147,3.761334,6.074786,2.186531,6.074786,2.186531,3.347147,1.399129,4.710967,-2.029051,7.596666,-3.918814,7.596666,-2.186531,8.808855,-3.761334,8.808855,5.483339,13.34108,3.593575,13.34108,5.325859,14.55327,3.751056,14.55327,2.414288,5.026594,2.571768,6.238782,4.304051,5.026594,4.146571,6.238782,-1.96669,13.60823,-2.12417,14.82042,-0.3918862,13.60823,-0.2344059,14.82042,5.483339,6.052605,3.593575,6.052605,5.325859,7.264794,3.751056,7.264794,5.325859,12.29902,3.751056,12.29902,5.483339,13.51121,3.593575,13.51121,-2.12417,4.743397,-1.96669,5.955586,-0.2344059,4.743397,-0.3918862,5.955586,-2.571768,15.01289,-2.414288,13.8007,-4.146571,15.01289,-4.304051,13.8007,2.414288,7.248742,4.304051,7.248742,2.571768,6.036552,4.146571,6.036552,-2.186531,5.000897,-3.761334,5.000897,-2.029051,6.213086,-3.918814,6.213086,-2.414288,13.05159,-2.571768,11.8394,-4.304051,13.05159,-4.146571,11.8394,-1.805447,6.639249,-1.647967,5.42706,-3.38025,6.639248,-3.53773,5.42706,2.12417,14.0839,0.2344059,14.0839,1.96669,15.29609,0.3918863,15.29609,-2.414288,5.763113,-2.571768,4.550923,-4.304051,5.763113,-4.146571,4.550923,-2.12417,12.03188,-1.96669,13.24407,-0.2344059,12.03188,-0.3918862,13.24407,-4.621901,15.37833,-4.779381,14.16614,-6.511665,15.37833,-6.354185,14.16614,-1.647967,8.382692,-1.805447,7.170504,-3.53773,8.382692,-3.38025,7.170504,2.571768,7.480315,2.571768,12.59842,4.146572,7.480315,4.146572,12.59842,2.571768,14.96063,4.146572,14.96063,2.571768,17.71654,4.146572,17.71654,2.571768,20.07874,4.146572,20.07874,2.571768,25.19685,4.146572,25.19685,3.761334,0,2.186531,0,3.761334,5.905512,2.186531,5.905512,2.414288,12.31507,2.571768,13.52726,4.304051,12.31507,4.146571,13.52726,-1.96669,0,-1.96669,5.11811,-0.3918863,0,-0.3918863,5.11811,-4.779381,5.905512,-4.779381,0,-6.354185,5.905512,-6.354185,0,-2.186531,13.05659,-3.761334,13.05659,-2.029051,14.26878,-3.918814,14.26878,3.761334,15.17668,2.186531,15.17668,3.918814,16.38887,2.029051,16.38887,1.647969,14.21927,3.537734,14.21927,1.805449,13.00708,3.380253,13.00708,-3.751056,14.96063,-5.325859,14.96063,-3.751056,17.71654,-5.325859,17.71654,-5.325859,12.59842,-3.751056,12.59842,-5.325859,7.480315,-3.751056,7.480315,-3.751056,20.07874,-5.325859,20.07874,-3.751056,25.19685,-5.325859,25.19685,-3.751056,0,-5.325859,0,-3.751056,5.11811,-5.325859,5.11811,5.858968,9.348536,4.284165,9.348536,6.016448,10.56073,4.126684,10.56073,1.647969,15.70186,1.805449,16.91405,3.537734,15.70186,3.380253,16.91405,-4.284165,11.21265,-5.858968,11.21265,-4.126684,12.42484,-6.016448,12.42484,-1.647967,16.43838,-1.805447,15.22619,-3.53773,16.43838,-3.38025,15.22619,-2.571768,17.71654,-2.571768,14.96063,-4.146572,17.71654,-4.146572,14.96063,-2.571768,12.59842,-4.146572,12.59842,-2.571768,7.480315,-4.146572,7.480315,-4.146572,20.07874,-2.571768,20.07874,-4.146572,25.19685,-2.571768,25.19685,-3.751056,12.86542,-5.325859,12.86542,-3.593575,14.0776,-5.483339,14.0776,1.96669,12.59842,1.96669,7.480315,0.3918867,12.59842,0.3918867,7.480315,0.3918867,14.96063,1.96669,14.96063,0.3918867,17.71654,1.96669,17.71654,0.3918867,20.07874,1.96669,20.07874,0.3918867,25.19685,1.96669,25.19685,2.12417,6.79542,0.2344059,6.79542,1.96669,8.007608,0.3918863,8.007608,-3.593575,12.77469,-5.483339,12.77469,-3.751056,13.98688,-5.325859,13.98688,-1.96669,6.319749,-2.12417,7.531939,-0.3918862,6.319749,-0.2344059,7.531939,4.779382,0,4.779382,5.905512,6.354185,0,6.354185,5.905512,6.646369,-4.142159,5.858968,-5.505978,5.858968,-2.778338,4.284165,-2.778338,4.284165,-5.505978,3.496763,-4.142159,2.571768,0,2.571768,5.11811,4.146572,0,4.146572,5.11811,5.325859,17.71654,3.751056,17.71654,5.325859,20.07874,3.751056,20.07874,5.325859,25.19685,3.751056,25.19685,3.751056,14.96063,5.325859,14.96063,3.751056,12.59842,5.325859,12.59842,3.751056,7.480315,5.325859,7.480315,-2.963654,1.258555,-3.751056,-0.1052642,-3.751056,2.622375,-5.325859,2.622375,-5.325859,-0.1052642,-6.11326,1.258555,-3.593575,5.486211,-5.483339,5.486211,-3.751056,6.6984,-5.325859,6.6984,1.96669,5.11811,1.96669,0,0.3918867,5.11811,0.3918867,0,6.016448,11.68832,4.126684,11.68832,5.858968,12.90051,4.284165,12.90051,1.996311,3.164267,0.1065476,3.164267,1.838831,4.376457,0.2640279,4.376457,-7.067879,5.140866,-6.910399,6.353055,-5.178116,5.140866,-5.335597,6.353055,6.910399,3.937008,6.910399,0,5.335595,3.937008,5.335595,0,-1.838834,8.826263,-1.996314,10.03845,-0.2640298,8.826263,-0.1065497,10.03845,1.996311,9.301934,0.1065476,9.301934,1.838831,10.51412,0.2640279,10.51412,5.325859,5.010541,3.751056,5.010541,5.483339,6.222731,3.593575,6.222731,7.067879,5.877386,6.910399,4.665197,5.178114,5.877386,5.335595,4.665197,-4.284165,5.074983,-5.858968,5.074983,-4.126684,6.287172,-6.016448,6.287172,-7.067879,4.832843,-5.178116,4.832843,-6.910399,3.620654,-5.335597,3.620654,5.325859,0,3.751056,0,5.325859,5.11811,3.751056,5.11811,-4.126684,9.824206,-6.016448,9.824206,-4.284165,11.0364,-5.858968,11.0364,1.838831,3.937008,1.838831,0,0.2640278,3.937008,0.2640278,0,-1.96669,7.480315,-1.96669,12.59842,-0.3918863,7.480315,-0.3918863,12.59842,-1.96669,14.96063,-0.3918863,14.96063,-1.96669,17.71654,-0.3918863,17.71654,-1.96669,20.07874,-0.3918863,20.07874,-1.96669,25.19685,-0.3918863,25.19685,6.910399,5.308513,7.067879,4.096324,5.335595,5.308513,5.178114,4.096324,-4.126684,3.686539,-6.016448,3.686539,-4.284165,4.898728,-5.858968,4.898728,-1.838834,2.688595,-1.996314,3.900784,-0.2640298,2.688595,-0.1065497,3.900784,-2.571768,7.724411,-2.414288,6.512222,-4.146571,7.724411,-4.304051,6.512222,-3.751056,5.576935,-5.325859,5.576935,-3.593575,6.789124,-5.483339,6.789124,-4.284165,0,-5.858968,0,-4.284165,3.937008,-5.858968,3.937008,-1.996314,6.072925,-1.838834,7.285114,-0.1065497,6.072925,-0.2640298,7.285114,5.858968,0,4.284165,0,5.858968,3.937008,4.284165,3.937008,2.414288,14.53722,4.304051,14.53722,2.571768,13.32503,4.146571,13.32503,-2.571768,5.11811,-2.571768,0,-4.146572,5.11811,-4.146572,0,-7.067879,11.27853,-6.910399,12.49072,-5.178116,11.27853,-5.335597,12.49072,2.12417,5.479916,1.96669,4.267726,0.2344059,5.479916,0.3918863,4.267726,2.12417,12.7684,1.96669,11.55621,0.2344059,12.7684,0.3918863,11.55621,6.016448,5.550653,4.126684,5.550653,5.858968,6.762842,4.284165,6.762842,7.067879,12.01505,6.910399,10.80286,5.178114,12.01505,5.335595,10.80286,-1.996314,12.21059,-1.838834,13.42278,-0.1065497,12.21059,-0.2640298,13.42278,6.910399,11.44618,7.067879,10.23399,5.335595,11.44618,5.178114,10.23399,-7.067879,10.97051,-5.178116,10.97051,-6.910399,9.758322,-5.335597,9.758322,1.996311,6.809443,1.838831,5.597254,0.1065476,6.809443,0.2640279,5.597254,5.858968,3.210867,4.284165,3.210867,6.016448,4.423057,4.126684,4.423057,-7.067879,17.4162,-6.910399,18.62839,-5.178116,17.4162,-5.335597,18.62839,6.016448,23.96366,4.126684,23.96366,5.858968,25.17585,4.284165,25.17585,6.910399,16.53543,6.910399,12.59842,5.335595,16.53543,5.335595,12.59842,1.996311,15.4396,0.1065476,15.4396,1.838831,16.65179,0.2640279,16.65179,1.838831,16.53543,1.838831,12.59842,0.2640278,16.53543,0.2640278,12.59842,-1.805447,18.91459,-1.647967,17.70239,-3.38025,18.91459,-3.53773,17.70239,5.325859,17.28588,3.751056,17.28588,5.483339,18.49807,3.593575,18.49807,-3.751056,27.55906,-5.325859,27.55906,-3.751056,32.67717,-5.325859,32.67717,-2.414288,18.03845,-2.571768,16.82626,-4.304051,18.03845,-4.146571,16.82626,-1.996314,18.34826,-1.838834,19.56045,-0.1065497,18.34826,-0.2640298,19.56045,-4.126684,22.09954,-6.016448,22.09954,-4.284165,23.31173,-5.858968,23.31173,-4.284165,17.35032,-5.858968,17.35032,-4.126684,18.56251,-6.016448,18.56251,-4.284165,12.59842,-5.858968,12.59842,-4.284165,16.53543,-5.858968,16.53543,2.12417,19.07076,0.2344059,19.07076,1.96669,20.28294,0.3918863,20.28294,3.761334,27.45202,2.186531,27.45202,3.918814,28.66421,2.029051,28.66421,-1.647967,28.71372,-1.805447,27.50153,-3.53773,28.71372,-3.38025,27.50153,5.858968,12.59842,4.284165,12.59842,5.858968,16.53543,4.284165,16.53543,-7.067879,17.10818,-5.178116,17.10818,-6.910399,15.89599,-5.335597,15.89599,-2.571768,32.67717,-2.571768,27.55906,-4.146572,32.67717,-4.146572,27.55906,-1.838834,21.1016,-1.996314,22.31379,-0.2640298,21.1016,-0.1065497,22.31379,-1.96669,18.59509,-2.12417,19.80727,-0.3918862,18.59509,-0.2344059,19.80727,-1.838834,14.96393,-1.996314,16.17612,-0.2640298,14.96393,-0.1065497,16.17612,-1.647967,20.65803,-1.805447,19.44584,-3.53773,20.65803,-3.38025,19.44584,1.996311,21.57727,0.1065476,21.57727,1.838831,22.78946,0.2640279,22.78946,-2.12417,24.30721,-1.96669,25.5194,-0.2344059,24.30721,-0.3918862,25.5194,1.96669,32.67717,1.96669,27.55906,0.3918867,32.67717,0.3918867,27.55906,2.414288,24.59041,2.571768,25.8026,4.304051,24.59041,4.146571,25.8026,5.858968,21.62387,4.284165,21.62387,6.016448,22.83606,4.126684,22.83606,-2.186531,17.27623,-3.761334,17.27623,-2.029051,18.48842,-3.918814,18.48842,-3.593575,17.76155,-5.483339,17.76155,-3.751056,18.97373,-5.325859,18.97373,7.067879,18.15272,6.910399,16.94053,5.178114,18.15272,5.335595,16.94053,-4.126684,15.96187,-6.016448,15.96187,-4.284165,17.17406,-5.858968,17.17406,1.647969,26.4946,3.537734,26.4946,1.805449,25.28241,3.380253,25.28241,7.067879,24.29039,6.910399,23.0782,5.178114,24.29039,5.335595,23.0782,-4.779381,35.03937,-4.779381,29.13386,-6.354185,35.03937,-6.354185,29.13386,-2.186531,25.33192,-3.761334,25.33192,-2.029051,26.54411,-3.918814,26.54411,2.414288,26.81256,4.304051,26.81256,2.571768,25.60037,4.146571,25.60037,-3.751056,25.14075,-5.325859,25.14075,-3.593575,26.35294,-5.483339,26.35294,-3.593575,25.05003,-5.483339,25.05003,-3.751056,26.26221,-5.325859,26.26221,-4.621901,27.65367,-4.779381,26.44148,-6.511665,27.65367,-6.354185,26.44148,6.910399,23.72152,7.067879,22.50933,5.335595,23.72152,5.178114,22.50933,2.12417,17.75525,1.96669,16.54306,0.2344059,17.75525,0.3918863,16.54306,-4.621901,18.76244,-6.511665,18.76244,-4.779381,19.97463,-6.354185,19.97463,2.12417,25.04373,1.96669,23.83154,0.2344059,25.04373,0.3918863,23.83154,4.779382,26.34246,4.621901,27.55465,6.354184,26.34246,6.511664,27.55465,4.621901,26.91715,4.779382,28.12934,6.511664,26.91715,6.354184,28.12934,1.647969,27.9772,1.805449,29.18938,3.537734,27.9772,3.380253,29.18938,1.996311,25.22245,1.838831,24.01026,0.1065476,25.22245,0.2640279,24.01026,-1.838834,25.19685,-1.838834,29.13386,-0.2640294,25.19685,-0.2640294,29.13386,5.325859,27.55906,3.751056,27.55906,5.325859,32.67717,3.751056,32.67717,5.858968,18.89764,4.284165,18.89764,5.858968,22.83465,4.284165,22.83465,-1.96669,27.55906,-1.96669,32.67717,-0.3918863,27.55906,-0.3918863,32.67717,2.12417,26.35923,0.2344059,26.35923,1.96669,27.57142,0.3918863,27.57142,-2.571768,19.99975,-2.414288,18.78756,-4.146571,19.99975,-4.304051,18.78756,-1.805448,35.03937,-1.805448,29.13386,-3.38025,35.03937,-3.38025,29.13386,-7.067879,23.24585,-5.178116,23.24585,-6.910399,22.03366,-5.335597,22.03366,2.571768,27.55906,2.571768,32.67717,4.146572,27.55906,4.146572,32.67717,-7.067879,23.55387,-6.910399,24.76606,-5.178116,23.55387,-5.335597,24.76606,1.996311,19.08478,1.838831,17.87259,0.1065476,19.08478,0.2640279,17.87259,6.016448,17.82599,4.126684,17.82599,5.858968,19.03818,4.284165,19.03818,6.910399,17.58385,7.067879,16.37166,5.335595,17.58385,5.178114,16.37166,-1.805447,26.97027,-1.647967,25.75808,-3.38025,26.97027,-3.53773,25.75808,-2.029051,27.92769,-3.918814,27.92769,-2.186531,29.13988,-3.761334,29.13988,-4.284165,23.48799,-5.858968,23.48799,-4.126684,24.70018,-6.016448,24.70018,2.963654,1.258555,3.751056,2.622375,3.751056,-0.1052642,5.325859,-0.1052642,5.325859,2.622375,6.11326,1.258555,-1.996314,24.48593,-1.838834,25.69812,-0.1065497,24.48593,-0.2640298,25.69812,1.838831,22.83465,1.838831,18.89764,0.2640278,22.83465,0.2640278,18.89764,-4.284165,18.89764,-5.858968,18.89764,-4.284165,22.83465,-5.858968,22.83465,-3.751056,17.85227,-5.325859,17.85227,-3.593575,19.06446,-5.483339,19.06446,5.858968,25.19685,4.284165,25.19685,5.858968,29.13386,4.284165,29.13386,-2.414288,25.32693,-2.571768,24.11474,-4.304051,25.32693,-4.146571,24.11474,5.858968,15.4862,4.284165,15.4862,6.016448,16.69839,4.126684,16.69839,4.779382,18.28677,4.621901,19.49896,6.354184,18.28677,6.511664,19.49896,3.761334,29.13386,2.186531,29.13386,3.761334,35.03937,2.186531,35.03937,-6.646369,-4.142159,-5.858968,-2.778338,-5.858968,-5.505978,-4.284165,-5.505978,-4.284165,-2.778338,-3.496763,-4.142159,-1.838834,18.89764,-1.838834,22.83465,-0.2640294,18.89764,-0.2640294,22.83465,2.414288,17.30193,2.571768,18.51412,4.304051,17.30193,4.146571,18.51412,-6.910399,12.59842,-6.910399,16.53543,-5.335597,12.59842,-5.335597,16.53543,1.838831,29.13386,1.838831,25.19685,0.2640278,29.13386,0.2640278,25.19685,1.80545,29.13386,1.80545,35.03937,3.380254,29.13386,3.380254,35.03937,1.647969,18.43891,3.537734,18.43891,1.805449,17.22672,3.380253,17.22672,-6.910399,25.19685,-6.910399,29.13386,-5.335597,25.19685,-5.335597,29.13386,6.910399,29.13386,6.910399,25.19685,5.335595,29.13386,5.335595,25.19685,4.779382,29.13386,4.779382,35.03937,6.354185,29.13386,6.354185,35.03937,5.483339,18.32794,3.593575,18.32794,5.325859,19.54013,3.751056,19.54013,3.918814,25.80759,2.029051,25.80759,3.761334,27.01978,2.186531,27.01978,5.483339,25.61642,3.593575,25.61642,5.325859,26.82861,3.751056,26.82861,-4.284165,25.19685,-5.858968,25.19685,-4.284165,29.13386,-5.858968,29.13386,-2.186531,29.13386,-3.761334,29.13386,-2.186531,35.03937,-3.761334,35.03937,-4.548736,4.710967,-3.761334,6.074786,-3.761334,3.347147,-2.186531,3.347147,-2.186531,6.074786,-1.399129,4.710967,-4.621901,26.81813,-6.511665,26.81813,-4.779381,28.03032,-6.354185,28.03032,-2.12417,17.01873,-1.96669,18.23092,-0.2344059,17.01873,-0.3918862,18.23092,-2.029051,19.872,-3.918814,19.872,-2.186531,21.08419,-3.761334,21.08419,6.910399,22.83465,6.910399,18.89764,5.335595,22.83465,5.335595,18.89764,3.761334,19.39633,2.186531,19.39633,3.918814,20.60852,2.029051,20.60852,5.325859,24.57436,3.751056,24.57436,5.483339,25.78654,3.593575,25.78654,-6.910399,18.89764,-6.910399,22.83465,-5.335597,18.89764,-5.335597,22.83465,-1.838834,12.59842,-1.838834,16.53543,-0.2640294,12.59842,-0.2640294,16.53543,-2.571768,27.28823,-2.414288,26.07604,-4.146571,27.28823,-4.304051,26.07604,3.918814,17.7519,2.029051,17.7519,3.761334,18.96409,2.186531,18.96409,-4.621901,19.59798,-4.779381,18.38579,-6.511665,19.59798,-6.354185,18.38579,1.647969,19.92151,1.805449,21.1337,3.537734,19.92151,3.380253,21.1337,4.621901,18.86146,4.779382,20.07365,6.511664,18.86146,6.354184,20.07365,-1.96669,25.88357,-2.12417,27.09575,-0.3918862,25.88357,-0.2344059,27.09575,2.414288,19.52408,4.304051,19.52408,2.571768,18.31189,4.146571,18.31189 + } + UVIndex: *1692 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,41,43,44,45,44,43,44,45,46,47,46,45,46,47,48,49,48,47,48,49,50,51,50,49,50,51,52,53,52,51,52,53,54,55,54,53,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,70,68,72,73,72,68,72,73,74,75,74,73,74,75,76,77,76,75,76,77,78,79,78,77,78,79,80,81,80,79,80,81,82,83,82,81,84,86,85,87,85,86,86,88,87,89,87,88,88,90,89,91,89,90,90,92,91,93,91,92,92,94,93,95,93,94,94,96,95,97,95,96,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,106,104,108,109,108,104,108,109,110,111,110,109,110,111,112,113,112,111,112,113,114,115,114,113,114,115,116,117,116,115,116,117,118,119,118,117,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,134,136,135,137,135,136,136,138,137,139,137,138,133,140,132,141,132,140,140,142,141,143,141,142,142,144,143,145,143,144,144,146,145,147,145,146,148,150,149,151,149,150,149,151,152,153,152,151,152,153,154,155,154,153,150,148,156,157,156,148,156,157,158,159,158,157,158,159,160,161,160,159,160,161,162,163,162,161,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,201,203,205,204,203,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,275,277,278,279,278,277,278,279,280,281,280,279,280,281,282,283,282,281,282,283,284,285,284,283,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,312,311,313,311,312,314,316,315,317,315,316,315,318,314,319,314,318,318,320,319,321,319,320,316,322,317,323,317,322,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,347,349,350,351,350,349,350,351,352,353,352,351,348,346,354,355,354,346,354,355,356,357,356,355,358,360,359,361,359,360,362,364,363,365,363,364,364,362,366,367,366,362,366,367,368,369,368,367,368,369,370,371,370,369,370,371,372,373,372,371,374,376,375,377,375,376,378,380,379,381,379,380,382,384,383,385,383,384,386,388,387,389,387,388,390,392,391,393,391,392,394,391,393,395,394,393,396,398,397,399,397,398,400,402,401,403,401,402,402,404,403,405,403,404,401,406,400,407,400,406,406,408,407,409,407,408,408,410,409,411,409,410,412,414,413,415,413,414,416,413,415,417,416,415,418,420,419,421,419,420,422,424,423,425,423,424,426,428,427,429,427,428,430,432,431,433,431,432,434,436,435,437,435,436,438,440,439,441,439,440,442,444,443,445,443,444,446,448,447,449,447,448,450,452,451,453,451,452,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,465,463,464,466,468,467,469,467,468,470,472,471,473,471,472,474,476,475,477,475,476,478,480,479,481,479,480,479,481,482,483,482,481,482,483,484,485,484,483,484,485,486,487,486,485,486,487,488,489,488,487,490,492,491,493,491,492,494,496,495,497,495,496,498,500,499,501,499,500,502,504,503,505,503,504,506,508,507,509,507,508,510,512,511,513,511,512,514,516,515,517,515,516,518,520,519,521,519,520,522,524,523,525,523,524,526,528,527,529,527,528,530,532,531,533,531,532,534,536,535,537,535,536,538,540,539,541,539,540,542,544,543,545,543,544,546,548,547,549,547,548,550,552,551,553,551,552,554,556,555,557,555,556,558,560,559,561,559,560,562,564,563,565,563,564,566,568,567,569,567,568,570,572,571,573,571,572,574,576,575,577,575,576,578,580,579,581,579,580,582,584,583,585,583,584,586,588,587,589,587,588,590,592,591,593,591,592,594,596,595,597,595,596,598,600,599,601,599,600,602,604,603,605,603,604,606,608,607,609,607,608,610,612,611,613,611,612,614,616,615,617,615,616,618,620,619,621,619,620,622,624,623,625,623,624,626,628,627,629,627,628,630,632,631,633,631,632,634,636,635,637,635,636,638,640,639,641,639,640,642,644,643,645,643,644,646,648,647,649,647,648,650,652,651,653,651,652,654,656,655,657,655,656,658,660,659,661,659,660,662,664,663,665,663,664,666,668,667,669,667,668,670,672,671,673,671,672,674,676,675,677,675,676,678,680,679,681,679,680,682,684,683,685,683,684,686,688,687,689,687,688,690,692,691,693,691,692,694,696,695,697,695,696,698,700,699,701,699,700,702,704,703,705,703,704,706,708,707,709,707,708,710,712,711,713,711,712,714,716,715,717,715,716,718,720,719,721,719,720,722,724,723,725,723,724,726,728,727,729,727,728,730,732,731,733,731,732,734,736,735,737,735,736,738,740,739,741,739,740,742,744,743,745,743,744,746,748,747,749,747,748,750,752,751,753,751,752,754,756,755,757,755,756,758,760,759,761,759,760,762,764,763,765,763,764,766,768,767,769,767,768,770,772,771,773,771,772,774,776,775,777,775,776,778,780,779,781,779,780,782,784,783,785,783,784,786,788,787,789,787,788,790,792,791,793,791,792,794,796,795,797,795,796,798,800,799,801,799,800,802,804,803,805,803,804,806,808,807,809,807,808,810,812,811,813,811,812,814,816,815,817,815,816,818,820,819,821,819,820,822,824,823,825,823,824,826,828,827,829,827,828,830,827,829,831,830,829,832,834,833,835,833,834,836,838,837,839,837,838,840,842,841,843,841,842,844,846,845,847,845,846,848,850,849,851,849,850,852,854,853,855,853,854,856,858,857,859,857,858,860,862,861,863,861,862,864,866,865,867,865,866,868,870,869,871,869,870,872,869,871,873,872,871,874,876,875,877,875,876,878,880,879,881,879,880,882,884,883,885,883,884,886,888,887,889,887,888,890,892,891,893,891,892,894,896,895,897,895,896,898,900,899,901,899,900,902,904,903,905,903,904,906,908,907,909,907,908,910,912,911,913,911,912,914,916,915,917,915,916,918,920,919,921,919,920,922,924,923,925,923,924,926,928,927,929,927,928,930,932,931,933,931,932,934,931,933,935,934,933,936,938,937,939,937,938,940,942,941,943,941,942,944,946,945,947,945,946,948,950,949,951,949,950,952,954,953,955,953,954,956,958,957,959,957,958,960,962,961,963,961,962,964,966,965,967,965,966,968,970,969,971,969,970,972,974,973,975,973,974,976,978,977,979,977,978,980,982,981,983,981,982,984,986,985,987,985,986,988,990,989,991,989,990,992,994,993,995,993,994 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *564 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_bambooStageB, Model::RootNode + C: "OO",5738022848415961365,0 + + ;Geometry::, Model::Mesh crops_bambooStageB + C: "OO",5247319470686338024,5738022848415961365 + + ;Material::grass, Model::Mesh crops_bambooStageB + C: "OO",3024,5738022848415961365 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageB.fbx.import new file mode 100644 index 0000000..f0cdb5f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://lww8no6nxdlq" +path="res://.godot/imported/crops_bambooStageB.fbx-7133088aa85a0e7d2cac89346d18c458.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_bambooStageB.fbx" +dest_files=["res://.godot/imported/crops_bambooStageB.fbx-7133088aa85a0e7d2cac89346d18c458.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageA.fbx new file mode 100644 index 0000000..4e4cd46 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageA.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 18 + Millisecond: 582 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_cornStageA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_cornStageA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5155147546658226976, "Model::crops_cornStageA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4624948351507655460, "Geometry::", "Mesh" { + Vertices: *600 { + a: -0.375,0,-0.375,-0.25,0.5,-0.25,-0.375,0,0.375,-0.25,0.5,0.25,0.125,5,-0.125,0.125,5,0.125,-0.125,5,-0.125,-0.125,5,0.125,0.375,0,0.375,0.375,0,-0.375,-0.375,0,0.375,-0.375,0,-0.375,0.375,0,0.375,-0.375,0,0.375,0.25,0.5,0.25,-0.25,0.5,0.25,0.25,2.5,-0.25,0.25,0.5,-0.25,0.25,2.5,0.25,0.25,0.5,0.25,0.25,2.5,0.25,-0.25,2.5,0.25,0.125,5,0.125,-0.125,5,0.125,-0.25,2.5,-0.25,-0.125,5,-0.125,-0.25,2.5,0.25,-0.125,5,0.125,-0.375,0,-0.375,0.375,0,-0.375,-0.25,0.5,-0.25,0.25,0.5,-0.25,0.375,0,-0.375,0.375,0,0.375,0.25,0.5,-0.25,0.25,0.5,0.25,0.25,2.5,-0.25,0.25,2.5,0.25,0.125,5,-0.125,0.125,5,0.125,-0.25,0.5,-0.25,0.25,0.5,-0.25,-0.25,2.5,-0.25,0.25,2.5,-0.25,-0.25,2.5,-0.25,0.25,2.5,-0.25,-0.125,5,-0.125,0.125,5,-0.125,0.25,0.5,0.25,-0.25,0.5,0.25,0.25,2.5,0.25,-0.25,2.5,0.25,-0.25,0.5,-0.25,-0.25,2.5,-0.25,-0.25,0.5,0.25,-0.25,2.5,0.25,-0.4354373,1.161836,0.3214,-0.862797,1.442706,0.4321,-0.4354373,1.161836,-0.3214,-0.862797,1.442706,-0.4321,-0.4354373,1.161836,-0.3214,-0.862797,1.442706,0.4321,-0.4354373,1.161836,0.3214,-0.862797,1.442706,-0.4321,-0.4354373,1.161836,-0.3214,-0.25,0.5,-0.25,-0.4354373,1.161836,0.3214,-0.25,0.5,0.25,-0.4354373,1.161836,0.3214,-0.25,0.5,-0.25,-0.4354373,1.161836,-0.3214,-0.25,0.5,0.25,-0.862797,1.442706,0.4321,-1.52101,1.588326,0.2107,-0.862797,1.442706,-0.4321,-1.52101,1.588326,-0.2107,-0.862797,1.442706,-0.4321,-1.52101,1.588326,0.2107,-0.862797,1.442706,0.4321,-1.52101,1.588326,-0.2107,0.862797,1.442706,0.4321,0.4354373,1.161836,0.3214,0.862797,1.442706,-0.4321,0.4354373,1.161836,-0.3214,0.862797,1.442706,-0.4321,0.4354373,1.161836,0.3214,0.862797,1.442706,0.4321,0.4354373,1.161836,-0.3214,1.52101,1.588326,0.2106999,0.862797,1.442706,0.4321,1.52101,1.588326,-0.2107,0.862797,1.442706,-0.4321,1.52101,1.588326,-0.2107,0.862797,1.442706,0.4321,1.52101,1.588326,0.2106999,0.862797,1.442706,-0.4321,0.4354373,1.161836,-0.3214,0.4354373,1.161836,0.3214,0.25,0.5,-0.25,0.25,0.5,0.25,0.25,0.5,-0.25,0.4354373,1.161836,0.3214,0.4354373,1.161836,-0.3214,0.25,0.5,0.25,0.862797,4.050189,-0.4321,0.862797,4.050189,0.4321,0.4354373,3.588326,-0.3214,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.862797,4.050189,0.4321,0.862797,4.050189,-0.4321,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.4354373,3.588326,0.3214,0.25,2.5,-0.25,0.25,2.5,0.25,0.25,2.5,-0.25,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.25,2.5,0.25,1.52101,4.289647,0.2106999,0.862797,4.050189,0.4321,1.52101,4.289647,-0.2107,0.862797,4.050189,-0.4321,1.52101,4.289647,-0.2107,0.862797,4.050189,0.4321,1.52101,4.289647,0.2106999,0.862797,4.050189,-0.4321,-0.4354373,3.044163,0.3214,-0.862797,3.275095,0.4321,-0.4354373,3.044163,-0.3214,-0.862797,3.275095,-0.4321,-0.4354373,3.044163,-0.3214,-0.862797,3.275095,0.4321,-0.4354373,3.044163,0.3214,-0.862797,3.275095,-0.4321,-0.862797,3.275095,0.4321,-1.52101,3.394823,0.2107,-0.862797,3.275095,-0.4321,-1.52101,3.394823,-0.2106999,-0.862797,3.275095,-0.4321,-1.52101,3.394823,0.2107,-0.862797,3.275095,0.4321,-1.52101,3.394823,-0.2106999,-0.4354373,3.044163,-0.3214,-0.25,2.5,-0.25,-0.4354373,3.044163,0.3214,-0.25,2.5,0.25,-0.4354373,3.044163,0.3214,-0.25,2.5,-0.25,-0.4354373,3.044163,-0.3214,-0.25,2.5,0.25,0.4321,2.050189,-0.862797,-0.4321,2.050189,-0.862797,0.2107,2.289646,-1.52101,-0.2107,2.289646,-1.52101,0.2107,2.289646,-1.52101,-0.4321,2.050189,-0.862797,0.4321,2.050189,-0.862797,-0.2107,2.289646,-1.52101,0.25,0.5,-0.25,-0.25,0.5,-0.25,0.3214,1.588326,-0.4354373,-0.3214,1.588326,-0.4354373,0.3214,1.588326,-0.4354373,-0.25,0.5,-0.25,0.25,0.5,-0.25,-0.3214,1.588326,-0.4354373,-0.3214,1.588326,-0.4354373,-0.4321,2.050189,-0.862797,0.3214,1.588326,-0.4354373,0.4321,2.050189,-0.862797,0.3214,1.588326,-0.4354373,-0.4321,2.050189,-0.862797,-0.3214,1.588326,-0.4354373,0.4321,2.050189,-0.862797,-0.25,0.5,0.25,0.25,0.5,0.25,-0.3214,1.588326,0.4354373,0.3214,1.588326,0.4354373,-0.3214,1.588326,0.4354373,0.25,0.5,0.25,-0.25,0.5,0.25,0.3214,1.588326,0.4354373,0.4321,2.050189,0.862797,0.2107,2.289646,1.52101,-0.4321,2.050189,0.862797,-0.2106999,2.289646,1.52101,-0.4321,2.050189,0.862797,0.2107,2.289646,1.52101,0.4321,2.050189,0.862797,-0.2106999,2.289646,1.52101,0.3214,1.588326,0.4354373,0.4321,2.050189,0.862797,-0.3214,1.588326,0.4354373,-0.4321,2.050189,0.862797,-0.3214,1.588326,0.4354373,0.4321,2.050189,0.862797,0.3214,1.588326,0.4354373,-0.4321,2.050189,0.862797 + } + PolygonVertexIndex: *300 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,123,121,-123,124,126,-126,125,127,-125,128,130,-130,131,129,-131,132,134,-134,133,135,-133,136,138,-138,139,137,-139,140,142,-142,141,143,-141,144,146,-146,147,145,-147,148,150,-150,149,151,-149,152,154,-154,155,153,-155,156,158,-158,157,159,-157,160,162,-162,163,161,-163,164,166,-166,165,167,-165,168,170,-170,171,169,-171,172,174,-174,173,175,-173,176,178,-178,179,177,-179,180,182,-182,181,183,-181,184,186,-186,187,185,-187,188,190,-190,189,191,-189,192,194,-194,195,193,-195,196,198,-198,197,199,-197 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *900 { + a: -0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5492238,0.8356753,0,0.5492238,0.8356753,0,0.5492238,0.8356753,0,0.5492238,0.8356753,0,0.5492238,0.8356753,0,0.5492238,0.8356753,0,-0.5492238,-0.8356753,0,-0.5492238,-0.8356753,0,-0.5492238,-0.8356753,0,-0.5492238,-0.8356753,0,-0.5492238,-0.8356753,0,-0.5492238,-0.8356753,0,0.9629174,0.2697961,0,0.9629174,0.2697961,0,0.9629174,0.2697961,0,0.9629174,0.2697961,0,0.9629174,0.2697961,0,0.9629174,0.2697961,0,-0.9629174,-0.2697961,0,-0.9629174,-0.2697961,0,-0.9629174,-0.2697961,0,-0.9629174,-0.2697961,0,-0.9629174,-0.2697961,0,-0.9629174,-0.2697961,0,0.2160114,0.9763908,0,0.2160114,0.9763908,0,0.2160114,0.9763908,0,0.2160114,0.9763908,0,0.2160114,0.9763908,0,0.2160114,0.9763908,0,-0.2160114,-0.9763908,0,-0.2160114,-0.9763908,0,-0.2160114,-0.9763908,0,-0.2160114,-0.9763908,0,-0.2160114,-0.9763908,0,-0.2160114,-0.9763908,0,-0.5492238,0.8356753,0,-0.5492238,0.8356753,0,-0.5492238,0.8356753,0,-0.5492238,0.8356753,0,-0.5492238,0.8356753,0,-0.5492238,0.8356753,0,0.5492238,-0.8356753,0,0.5492238,-0.8356753,0,0.5492238,-0.8356753,0,0.5492238,-0.8356753,0,0.5492238,-0.8356753,0,0.5492238,-0.8356753,0,-0.2160114,0.9763908,0,-0.2160114,0.9763908,0,-0.2160114,0.9763908,0,-0.2160114,0.9763908,0,-0.2160114,0.9763908,0,-0.2160114,0.9763908,0,0.2160114,-0.9763908,0,0.2160114,-0.9763908,0,0.2160114,-0.9763908,0,0.2160114,-0.9763908,0,0.2160114,-0.9763908,0,0.2160114,-0.9763908,0,-0.9629174,0.2697961,0,-0.9629174,0.2697961,0,-0.9629174,0.2697961,0,-0.9629174,0.2697961,0,-0.9629174,0.2697961,0,-0.9629174,0.2697961,0,0.9629174,-0.2697961,0,0.9629174,-0.2697961,0,0.9629174,-0.2697961,0,0.9629174,-0.2697961,0,0.9629174,-0.2697961,0,0.9629174,-0.2697961,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,0.167967,-0.9857926,0,0.167967,-0.9857926,0,0.167967,-0.9857926,0,0.167967,-0.9857926,0,0.167967,-0.9857926,0,0.167967,-0.9857926,0,-0.167967,0.9857926,0,-0.167967,0.9857926,0,-0.167967,0.9857926,0,-0.167967,0.9857926,0,-0.167967,0.9857926,0,-0.167967,0.9857926,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *400 { + a: -1.476378,-0.3580742,-0.984252,1.671013,1.476378,-0.3580742,0.984252,1.671013,-0.492126,-0.492126,-0.492126,0.492126,0.492126,-0.492126,0.492126,0.492126,1.476378,1.476378,1.476378,-1.476378,-1.476378,1.476378,-1.476378,-1.476378,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,0.984252,9.84252,0.984252,1.968504,-0.984252,9.84252,-0.984252,1.968504,0.984252,9.781089,-0.984252,9.781089,0.492126,19.6359,-0.492126,19.6359,-0.984252,9.781089,-0.492126,19.6359,0.984252,9.781089,0.492126,19.6359,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,0.984252,9.781089,-0.984252,9.781089,0.492126,19.6359,-0.492126,19.6359,0.984252,1.968504,-0.984252,1.968504,0.984252,9.84252,-0.984252,9.84252,0.984252,9.781089,-0.984252,9.781089,0.492126,19.6359,-0.492126,19.6359,0.984252,1.968504,-0.984252,1.968504,0.984252,9.84252,-0.984252,9.84252,-0.984252,1.968504,-0.984252,9.84252,0.984252,1.968504,0.984252,9.84252,-1.265354,3.944852,-1.701181,5.958216,1.265354,3.944852,1.701181,5.958216,1.265354,3.944852,-1.701181,5.958216,-1.265354,3.944852,1.701181,5.958216,1.265354,4.867054,0.984252,2.161054,-1.265354,4.867054,-0.984252,2.161054,-1.265354,4.867054,0.984252,2.161054,1.265354,4.867054,-0.984252,2.161054,-1.701181,4.543575,-0.8295276,7.197625,1.701181,4.543575,0.8295276,7.197625,1.701181,4.543575,-0.8295276,7.197625,-1.701181,4.543575,0.8295276,7.197625,1.701181,5.958216,1.265354,3.944852,-1.701181,5.958216,-1.265354,3.944852,-1.701181,5.958216,1.265354,3.944852,1.701181,5.958216,-1.265354,3.944852,0.8295276,7.197625,1.701181,4.543575,-0.8295275,7.197625,-1.701181,4.543575,-0.8295275,7.197625,1.701181,4.543575,0.8295276,7.197625,-1.701181,4.543575,-1.265354,4.867054,1.265354,4.867054,-0.9842519,2.161054,0.984252,2.161054,-0.9842519,2.161054,1.265354,4.867054,-1.265354,4.867054,0.984252,2.161054,-1.701181,14.01095,1.701181,14.01095,-1.265354,11.53359,1.265354,11.53359,-1.265354,11.53359,1.701181,14.01095,-1.701181,14.01095,1.265354,11.53359,-1.265354,14.2145,1.265354,14.2145,-0.9842519,9.868005,0.984252,9.868005,-0.9842519,9.868005,1.265354,14.2145,-1.265354,14.2145,0.984252,9.868005,0.8295276,11.40117,1.701181,8.643618,-0.8295275,11.40117,-1.701181,8.643618,-0.8295275,11.40117,1.701181,8.643618,0.8295276,11.40117,-1.701181,8.643618,-1.265354,7.205826,-1.701181,9.118279,1.265354,7.205826,1.701181,9.118279,1.265354,7.205826,-1.701181,9.118279,-1.265354,7.205826,1.701181,9.118279,-1.701181,5.649559,-0.8295275,8.283471,1.701181,5.649559,0.8295276,8.283471,1.701181,5.649559,-0.8295275,8.283471,-1.701181,5.649559,0.8295276,8.283471,1.265354,11.89726,0.984252,9.633906,-1.265354,11.89726,-0.9842519,9.633906,-1.265354,11.89726,0.984252,9.633906,1.265354,11.89726,-0.9842519,9.633906,1.701181,5.951666,-1.701181,5.951666,0.8295276,8.709213,-0.8295276,8.709213,0.8295276,8.709213,-1.701181,5.951666,1.701181,5.951666,-0.8295276,8.709213,0.984252,2.105859,-0.984252,2.105859,1.265354,6.452357,-1.265354,6.452357,1.265354,6.452357,-0.984252,2.105859,0.984252,2.105859,-1.265354,6.452357,-1.265354,5.754129,-1.701181,8.231488,1.265354,5.754129,1.701181,8.231488,1.265354,5.754129,-1.701181,8.231488,-1.265354,5.754129,1.701181,8.231488,0.984252,2.105859,-0.9842519,2.105859,1.265354,6.452357,-1.265354,6.452357,1.265354,6.452357,-0.9842519,2.105859,0.984252,2.105859,-1.265354,6.452357,-1.701181,5.951666,-0.8295275,8.709213,1.701181,5.951666,0.8295276,8.709213,1.701181,5.951666,-0.8295275,8.709213,-1.701181,5.951666,0.8295276,8.709213,-1.265354,5.754129,-1.701181,8.231488,1.265354,5.754129,1.701181,8.231488,1.265354,5.754129,-1.701181,8.231488,-1.265354,5.754129,1.701181,8.231488 + } + UVIndex: *300 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,123,121,122,124,126,125,125,127,124,128,130,129,131,129,130,132,134,133,133,135,132,136,138,137,139,137,138,140,142,141,141,143,140,144,146,145,147,145,146,148,150,149,149,151,148,152,154,153,155,153,154,156,158,157,157,159,156,160,162,161,163,161,162,164,166,165,165,167,164,168,170,169,171,169,170,172,174,173,173,175,172,176,178,177,179,177,178,180,182,181,181,183,180,184,186,185,187,185,186,188,190,189,189,191,188,192,194,193,195,193,194,196,198,197,197,199,196 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *100 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_cornStageA, Model::RootNode + C: "OO",5155147546658226976,0 + + ;Geometry::, Model::Mesh crops_cornStageA + C: "OO",4624948351507655460,5155147546658226976 + + ;Material::grass, Model::Mesh crops_cornStageA + C: "OO",3024,5155147546658226976 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageA.fbx.import new file mode 100644 index 0000000..a27ddfd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://djbntxcyckypx" +path="res://.godot/imported/crops_cornStageA.fbx-b87d2810c4699aa219c79956f33fe94b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageA.fbx" +dest_files=["res://.godot/imported/crops_cornStageA.fbx-b87d2810c4699aa219c79956f33fe94b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageB.fbx new file mode 100644 index 0000000..7935d68 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageB.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 18 + Millisecond: 675 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_cornStageB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_cornStageB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4714169820104775436, "Model::crops_cornStageB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4955416056234979311, "Geometry::", "Mesh" { + Vertices: *648 { + a: -0.25,5,-0.25,-0.25,7.5,-0.25,-0.25,5,0.25,-0.25,7.5,0.25,-0.25,2.5,0.25,-0.25,2.5,-0.25,-0.25,0.5,0.25,-0.25,0.5,-0.25,-0.25,5,-0.25,0.25,5,-0.25,-0.25,7.5,-0.25,0.25,7.5,-0.25,0.25,2.5,-0.25,-0.25,2.5,-0.25,0.25,0.5,-0.25,-0.25,0.5,-0.25,0.25,2.5,-0.25,0.25,0.5,-0.25,0.25,2.5,0.25,0.25,0.5,0.25,0.25,5,0.25,0.25,5,-0.25,0.25,7.5,0.25,0.25,7.5,-0.25,0.25,2.5,0.25,-0.25,2.5,0.25,0.25,5,0.25,-0.25,5,0.25,0.25,7.5,0.25,-0.25,7.5,0.25,-0.25,0.5,0.25,0.25,0.5,0.25,-0.375,0,-0.375,0.375,0,-0.375,-0.25,0.5,-0.25,0.25,0.5,-0.25,0.375,0,0.375,-0.375,0,0.375,0.25,0.5,0.25,-0.25,0.5,0.25,0.375,0,-0.375,0.375,0,0.375,0.25,0.5,-0.25,0.25,0.5,0.25,0.125,10,-0.125,0.125,10,0.125,-0.125,10,-0.125,-0.125,10,0.125,-0.375,0,-0.375,-0.25,0.5,-0.25,-0.375,0,0.375,-0.25,0.5,0.25,-0.25,7.5,-0.25,0.25,7.5,-0.25,-0.125,10,-0.125,0.125,10,-0.125,0.25,7.5,0.25,-0.25,7.5,0.25,0.125,10,0.125,-0.125,10,0.125,0.25,7.5,-0.25,0.25,7.5,0.25,0.125,10,-0.125,0.125,10,0.125,-0.25,7.5,-0.25,-0.125,10,-0.125,-0.25,7.5,0.25,-0.125,10,0.125,0.375,0,0.375,0.375,0,-0.375,-0.375,0,0.375,-0.375,0,-0.375,0.25,5,-0.25,-0.25,5,-0.25,0.3214,6.088326,-0.4354373,-0.3214,6.088326,-0.4354373,0.3214,6.088326,-0.4354373,-0.25,5,-0.25,0.25,5,-0.25,-0.3214,6.088326,-0.4354373,0.4321,6.550189,-0.862797,-0.4321,6.550189,-0.862797,0.2106999,6.789647,-1.52101,-0.2107,6.789647,-1.52101,0.2106999,6.789647,-1.52101,-0.4321,6.550189,-0.862797,0.4321,6.550189,-0.862797,-0.2107,6.789647,-1.52101,-0.3214,6.088326,-0.4354373,-0.4321,6.550189,-0.862797,0.3214,6.088326,-0.4354373,0.4321,6.550189,-0.862797,0.3214,6.088326,-0.4354373,-0.4321,6.550189,-0.862797,-0.3214,6.088326,-0.4354373,0.4321,6.550189,-0.862797,0.4321,6.550189,0.862797,0.2107,6.789647,1.52101,-0.4321,6.550189,0.862797,-0.2107,6.789647,1.52101,-0.4321,6.550189,0.862797,0.2107,6.789647,1.52101,0.4321,6.550189,0.862797,-0.2107,6.789647,1.52101,-0.25,5,0.25,0.25,5,0.25,-0.3214,6.088326,0.4354373,0.3214,6.088326,0.4354373,-0.3214,6.088326,0.4354373,0.25,5,0.25,-0.25,5,0.25,0.3214,6.088326,0.4354373,0.3214,6.088326,0.4354373,0.4321,6.550189,0.862797,-0.3214,6.088326,0.4354373,-0.4321,6.550189,0.862797,-0.3214,6.088326,0.4354373,0.4321,6.550189,0.862797,0.3214,6.088326,0.4354373,-0.4321,6.550189,0.862797,0.862797,4.050189,-0.4321,0.862797,4.050189,0.4321,0.4354373,3.588326,-0.3214,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.862797,4.050189,0.4321,0.862797,4.050189,-0.4321,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.4354373,3.588326,0.3214,0.25,2.5,-0.25,0.25,2.5,0.25,0.25,2.5,-0.25,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.25,2.5,0.25,1.52101,4.289647,0.2106999,0.862797,4.050189,0.4321,1.52101,4.289647,-0.2107,0.862797,4.050189,-0.4321,1.52101,4.289647,-0.2107,0.862797,4.050189,0.4321,1.52101,4.289647,0.2106999,0.862797,4.050189,-0.4321,1.52101,9.289646,0.2106999,0.862797,9.050189,0.4321,1.52101,9.289646,-0.2107,0.862797,9.050189,-0.4321,1.52101,9.289646,-0.2107,0.862797,9.050189,0.4321,1.52101,9.289646,0.2106999,0.862797,9.050189,-0.4321,0.862797,9.050189,-0.4321,0.862797,9.050189,0.4321,0.4354373,8.588326,-0.3214,0.4354373,8.588326,0.3214,0.4354373,8.588326,-0.3214,0.862797,9.050189,0.4321,0.862797,9.050189,-0.4321,0.4354373,8.588326,0.3214,0.4354373,8.588326,-0.3214,0.4354373,8.588326,0.3214,0.25,7.5,-0.25,0.25,7.5,0.25,0.25,7.5,-0.25,0.4354373,8.588326,0.3214,0.4354373,8.588326,-0.3214,0.25,7.5,0.25,-0.862797,4.050189,0.4321,-1.52101,4.289647,0.2107,-0.862797,4.050189,-0.4321,-1.52101,4.289647,-0.2106999,-0.862797,4.050189,-0.4321,-1.52101,4.289647,0.2107,-0.862797,4.050189,0.4321,-1.52101,4.289647,-0.2106999,-0.4354373,3.588326,-0.3214,-0.25,2.5,-0.25,-0.4354373,3.588326,0.3214,-0.25,2.5,0.25,-0.4354373,3.588326,0.3214,-0.25,2.5,-0.25,-0.4354373,3.588326,-0.3214,-0.25,2.5,0.25,-0.862797,4.050189,-0.4321,-0.4354373,3.588326,-0.3214,-0.862797,4.050189,0.4321,-0.4354373,3.588326,0.3214,-0.862797,4.050189,0.4321,-0.4354373,3.588326,-0.3214,-0.862797,4.050189,-0.4321,-0.4354373,3.588326,0.3214,-0.862797,9.050189,-0.4321,-0.4354373,8.588326,-0.3214,-0.862797,9.050189,0.4321,-0.4354373,8.588326,0.3214,-0.862797,9.050189,0.4321,-0.4354373,8.588326,-0.3214,-0.862797,9.050189,-0.4321,-0.4354373,8.588326,0.3214,-0.862797,9.050189,0.4321,-1.52101,9.289646,0.2107,-0.862797,9.050189,-0.4321,-1.52101,9.289646,-0.2106999,-0.862797,9.050189,-0.4321,-1.52101,9.289646,0.2107,-0.862797,9.050189,0.4321,-1.52101,9.289646,-0.2106999,-0.4354373,8.588326,-0.3214,-0.25,7.5,-0.25,-0.4354373,8.588326,0.3214,-0.25,7.5,0.25,-0.4354373,8.588326,0.3214,-0.25,7.5,-0.25,-0.4354373,8.588326,-0.3214,-0.25,7.5,0.25 + } + PolygonVertexIndex: *348 { + a: 0,2,-2,3,1,-3,2,0,-5,5,4,-1,4,5,-7,7,6,-6,8,10,-10,11,9,-11,9,12,-9,13,8,-13,12,14,-14,15,13,-15,16,18,-18,19,17,-19,18,16,-21,21,20,-17,20,21,-23,23,22,-22,24,26,-26,27,25,-27,26,28,-28,29,27,-29,25,30,-25,31,24,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,123,121,-123,124,126,-126,125,127,-125,128,130,-130,131,129,-131,132,134,-134,133,135,-133,136,138,-138,139,137,-139,140,142,-142,141,143,-141,144,146,-146,147,145,-147,148,150,-150,149,151,-149,152,154,-154,155,153,-155,156,158,-158,157,159,-157,160,162,-162,163,161,-163,164,166,-166,165,167,-165,168,170,-170,171,169,-171,172,174,-174,173,175,-173,176,178,-178,179,177,-179,180,182,-182,181,183,-181,184,186,-186,187,185,-187,188,190,-190,189,191,-189,192,194,-194,195,193,-195,196,198,-198,197,199,-197,200,202,-202,203,201,-203,204,206,-206,205,207,-205,208,210,-210,211,209,-211,212,214,-214,213,215,-213 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1044 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *432 { + a: -0.984252,19.68504,-0.984252,29.52756,0.984252,19.68504,0.984252,29.52756,0.984252,9.84252,-0.984252,9.84252,0.984252,1.968504,-0.984252,1.968504,0.984252,19.68504,-0.984252,19.68504,0.984252,29.52756,-0.984252,29.52756,-0.984252,9.84252,0.984252,9.84252,-0.984252,1.968504,0.984252,1.968504,0.984252,9.84252,0.984252,1.968504,-0.984252,9.84252,-0.984252,1.968504,-0.984252,19.68504,0.984252,19.68504,-0.984252,29.52756,0.984252,29.52756,0.984252,9.84252,-0.984252,9.84252,0.984252,19.68504,-0.984252,19.68504,0.984252,29.52756,-0.984252,29.52756,-0.984252,1.968504,0.984252,1.968504,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,-0.492126,-0.492126,-0.492126,0.492126,0.492126,-0.492126,0.492126,0.492126,-1.476378,-0.3580742,-0.984252,1.671013,1.476378,-0.3580742,0.984252,1.671013,0.984252,29.44157,-0.984252,29.44157,0.492126,39.29638,-0.492126,39.29638,0.984252,29.44157,-0.984252,29.44157,0.492126,39.29638,-0.492126,39.29638,0.984252,29.44157,-0.984252,29.44157,0.492126,39.29638,-0.492126,39.29638,-0.984252,29.44157,-0.492126,39.29638,0.984252,29.44157,0.492126,39.29638,1.476378,1.476378,1.476378,-1.476378,-1.476378,1.476378,-1.476378,-1.476378,0.984252,19.57069,-0.9842519,19.57069,1.265354,23.91719,-1.265354,23.91719,1.265354,23.91719,-0.9842519,19.57069,0.984252,19.57069,-1.265354,23.91719,1.701181,12.00856,-1.701181,12.00856,0.8295276,14.76611,-0.8295275,14.76611,0.8295276,14.76611,-1.701181,12.00856,1.701181,12.00856,-0.8295275,14.76611,-1.265354,18.75792,-1.701181,21.23528,1.265354,18.75792,1.701181,21.23528,1.265354,18.75792,-1.701181,21.23528,-1.265354,18.75792,1.701181,21.23528,-1.701181,12.00856,-0.8295276,14.76611,1.701181,12.00856,0.8295276,14.76611,1.701181,12.00856,-0.8295276,14.76611,-1.701181,12.00856,0.8295276,14.76611,0.984252,19.57069,-0.984252,19.57069,1.265354,23.91719,-1.265354,23.91719,1.265354,23.91719,-0.984252,19.57069,0.984252,19.57069,-1.265354,23.91719,-1.265354,18.75792,-1.701181,21.23528,1.265354,18.75792,1.701181,21.23528,1.265354,18.75792,-1.701181,21.23528,-1.265354,18.75792,1.701181,21.23528,-1.701181,14.01095,1.701181,14.01095,-1.265354,11.53359,1.265354,11.53359,-1.265354,11.53359,1.701181,14.01095,-1.701181,14.01095,1.265354,11.53359,-1.265354,14.2145,1.265354,14.2145,-0.9842519,9.868005,0.984252,9.868005,-0.9842519,9.868005,1.265354,14.2145,-1.265354,14.2145,0.984252,9.868005,0.8295276,11.40117,1.701181,8.643618,-0.8295275,11.40117,-1.701181,8.643618,-0.8295275,11.40117,1.701181,8.643618,0.8295276,11.40117,-1.701181,8.643618,0.8295276,18.13105,1.701181,15.3735,-0.8295275,18.13105,-1.701181,15.3735,-0.8295275,18.13105,1.701181,15.3735,0.8295276,18.13105,-1.701181,15.3735,-1.701181,28.45961,1.701181,28.45961,-1.265354,25.98225,1.265354,25.98225,-1.265354,25.98225,1.701181,28.45961,-1.701181,28.45961,1.265354,25.98225,-1.265354,33.61987,1.265354,33.61987,-0.9842519,29.27337,0.984252,29.27337,-0.9842519,29.27337,1.265354,33.61987,-1.265354,33.61987,0.984252,29.27337,-1.701181,8.643618,-0.8295275,11.40117,1.701181,8.643618,0.8295276,11.40117,1.701181,8.643618,-0.8295275,11.40117,-1.701181,8.643618,0.8295276,11.40117,1.265354,14.2145,0.984252,9.868005,-1.265354,14.2145,-0.9842519,9.868005,-1.265354,14.2145,0.984252,9.868005,1.265354,14.2145,-0.9842519,9.868005,1.701181,14.01095,1.265354,11.53359,-1.701181,14.01095,-1.265354,11.53359,-1.701181,14.01095,1.265354,11.53359,1.701181,14.01095,-1.265354,11.53359,1.701181,28.45961,1.265354,25.98225,-1.701181,28.45961,-1.265354,25.98225,-1.701181,28.45961,1.265354,25.98225,1.701181,28.45961,-1.265354,25.98225,-1.701181,15.3735,-0.8295275,18.13105,1.701181,15.3735,0.8295276,18.13105,1.701181,15.3735,-0.8295275,18.13105,-1.701181,15.3735,0.8295276,18.13105,1.265354,33.61987,0.984252,29.27337,-1.265354,33.61987,-0.9842519,29.27337,-1.265354,33.61987,0.984252,29.27337,1.265354,33.61987,-0.9842519,29.27337 + } + UVIndex: *348 { + a: 0,2,1,3,1,2,2,0,4,5,4,0,4,5,6,7,6,5,8,10,9,11,9,10,9,12,8,13,8,12,12,14,13,15,13,14,16,18,17,19,17,18,18,16,20,21,20,16,20,21,22,23,22,21,24,26,25,27,25,26,26,28,27,29,27,28,25,30,24,31,24,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,123,121,122,124,126,125,125,127,124,128,130,129,131,129,130,132,134,133,133,135,132,136,138,137,139,137,138,140,142,141,141,143,140,144,146,145,147,145,146,148,150,149,149,151,148,152,154,153,155,153,154,156,158,157,157,159,156,160,162,161,163,161,162,164,166,165,165,167,164,168,170,169,171,169,170,172,174,173,173,175,172,176,178,177,179,177,178,180,182,181,181,183,180,184,186,185,187,185,186,188,190,189,189,191,188,192,194,193,195,193,194,196,198,197,197,199,196,200,202,201,203,201,202,204,206,205,205,207,204,208,210,209,211,209,210,212,214,213,213,215,212 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *116 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_cornStageB, Model::RootNode + C: "OO",4714169820104775436,0 + + ;Geometry::, Model::Mesh crops_cornStageB + C: "OO",4955416056234979311,4714169820104775436 + + ;Material::grass, Model::Mesh crops_cornStageB + C: "OO",3024,4714169820104775436 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageB.fbx.import new file mode 100644 index 0000000..2990964 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b83c47itumplo" +path="res://.godot/imported/crops_cornStageB.fbx-df2164b2e00fbc6eff267c7a00828b90.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageB.fbx" +dest_files=["res://.godot/imported/crops_cornStageB.fbx-df2164b2e00fbc6eff267c7a00828b90.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageC.fbx new file mode 100644 index 0000000..a0918c7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageC.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 18 + Millisecond: 773 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_cornStageC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_cornStageC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5525522855632289709, "Model::crops_cornStageC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4773477629226485772, "Geometry::", "Mesh" { + Vertices: *816 { + a: 0.862797,9.050189,-0.4321,0.862797,9.050189,0.4321,0.4354373,8.588326,-0.3214,0.4354373,8.588326,0.3214,0.4354373,8.588326,-0.3214,0.862797,9.050189,0.4321,0.862797,9.050189,-0.4321,0.4354373,8.588326,0.3214,1.52101,9.289646,0.2106999,0.862797,9.050189,0.4321,1.52101,9.289646,-0.2107,0.862797,9.050189,-0.4321,1.52101,9.289646,-0.2107,0.862797,9.050189,0.4321,1.52101,9.289646,0.2106999,0.862797,9.050189,-0.4321,0.4354373,8.588326,-0.3214,0.4354373,8.588326,0.3214,0.25,7.5,-0.25,0.25,7.5,0.25,0.25,7.5,-0.25,0.4354373,8.588326,0.3214,0.4354373,8.588326,-0.3214,0.25,7.5,0.25,-0.4354373,8.044163,0.3214,-0.862797,8.275095,0.4321,-0.4354373,8.044163,-0.3214,-0.862797,8.275095,-0.4321,-0.4354373,8.044163,-0.3214,-0.862797,8.275095,0.4321,-0.4354373,8.044163,0.3214,-0.862797,8.275095,-0.4321,-0.862797,8.275095,0.4321,-1.52101,8.394822,0.2107,-0.862797,8.275095,-0.4321,-1.52101,8.394822,-0.2106999,-0.862797,8.275095,-0.4321,-1.52101,8.394822,0.2107,-0.862797,8.275095,0.4321,-1.52101,8.394822,-0.2106999,-0.4354373,8.044163,-0.3214,-0.25,7.5,-0.25,-0.4354373,8.044163,0.3214,-0.25,7.5,0.25,-0.4354373,8.044163,0.3214,-0.25,7.5,-0.25,-0.4354373,8.044163,-0.3214,-0.25,7.5,0.25,-0.25,10,0.25,0.25,10,0.25,-0.3214,11.08833,0.4354373,0.3214,11.08833,0.4354373,-0.3214,11.08833,0.4354373,0.25,10,0.25,-0.25,10,0.25,0.3214,11.08833,0.4354373,0.3214,11.08833,0.4354373,0.4321,11.55019,0.862797,-0.3214,11.08833,0.4354373,-0.4321,11.55019,0.862797,-0.3214,11.08833,0.4354373,0.4321,11.55019,0.862797,0.3214,11.08833,0.4354373,-0.4321,11.55019,0.862797,0.4321,11.55019,0.862797,0.2107,11.78965,1.52101,-0.4321,11.55019,0.862797,-0.2107,11.78965,1.52101,-0.4321,11.55019,0.862797,0.2107,11.78965,1.52101,0.4321,11.55019,0.862797,-0.2107,11.78965,1.52101,0.4321,10.77509,-0.862797,0.3214,10.54416,-0.4354373,-0.4321,10.77509,-0.862797,-0.3214,10.54416,-0.4354373,-0.4321,10.77509,-0.862797,0.3214,10.54416,-0.4354373,0.4321,10.77509,-0.862797,-0.3214,10.54416,-0.4354373,0.4321,10.77509,-0.862797,-0.4321,10.77509,-0.862797,0.2106999,10.89482,-1.52101,-0.2107,10.89482,-1.52101,0.2106999,10.89482,-1.52101,-0.4321,10.77509,-0.862797,0.4321,10.77509,-0.862797,-0.2107,10.89482,-1.52101,0.25,10,-0.25,-0.25,10,-0.25,0.3214,10.54416,-0.4354373,-0.3214,10.54416,-0.4354373,0.3214,10.54416,-0.4354373,-0.25,10,-0.25,0.25,10,-0.25,-0.3214,10.54416,-0.4354373,-0.4354373,3.044163,0.3214,-0.862797,3.275095,0.4321,-0.4354373,3.044163,-0.3214,-0.862797,3.275095,-0.4321,-0.4354373,3.044163,-0.3214,-0.862797,3.275095,0.4321,-0.4354373,3.044163,0.3214,-0.862797,3.275095,-0.4321,-0.862797,3.275095,0.4321,-1.52101,3.394823,0.2107,-0.862797,3.275095,-0.4321,-1.52101,3.394823,-0.2106999,-0.862797,3.275095,-0.4321,-1.52101,3.394823,0.2107,-0.862797,3.275095,0.4321,-1.52101,3.394823,-0.2106999,-0.4354373,3.044163,-0.3214,-0.25,2.5,-0.25,-0.4354373,3.044163,0.3214,-0.25,2.5,0.25,-0.4354373,3.044163,0.3214,-0.25,2.5,-0.25,-0.4354373,3.044163,-0.3214,-0.25,2.5,0.25,0.4354373,3.588326,-0.3214,0.4354373,3.588326,0.3214,0.25,2.5,-0.25,0.25,2.5,0.25,0.25,2.5,-0.25,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.25,2.5,0.25,1.52101,4.289647,0.2106999,0.862797,4.050189,0.4321,1.52101,4.289647,-0.2107,0.862797,4.050189,-0.4321,1.52101,4.289647,-0.2107,0.862797,4.050189,0.4321,1.52101,4.289647,0.2106999,0.862797,4.050189,-0.4321,0.862797,4.050189,-0.4321,0.862797,4.050189,0.4321,0.4354373,3.588326,-0.3214,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.862797,4.050189,0.4321,0.862797,4.050189,-0.4321,0.4354373,3.588326,0.3214,-0.25,5,-0.25,0.25,5,-0.25,-0.25,7.5,-0.25,0.25,7.5,-0.25,0.25,2.5,-0.25,-0.25,2.5,-0.25,0.25,0.5,-0.25,-0.25,0.5,-0.25,-0.25,10,-0.25,0.25,10,-0.25,0.25,7.5,-0.25,0.25,5,-0.25,0.25,7.5,0.25,0.25,5,0.25,0.25,2.5,-0.25,0.25,2.5,0.25,0.25,0.5,-0.25,0.25,0.5,0.25,0.25,10,-0.25,0.25,10,0.25,0.25,2.5,0.25,-0.25,2.5,0.25,0.25,5,0.25,-0.25,5,0.25,0.25,7.5,0.25,-0.25,7.5,0.25,-0.25,0.5,0.25,0.25,0.5,0.25,-0.25,10,0.25,0.25,10,0.25,-0.25,5,-0.25,-0.25,5,0.25,-0.25,2.5,-0.25,-0.25,2.5,0.25,-0.25,7.5,-0.25,-0.25,7.5,0.25,-0.25,0.5,0.25,-0.25,0.5,-0.25,-0.25,10,0.25,-0.25,10,-0.25,0.375,0,0.375,-0.375,0,0.375,0.25,0.5,0.25,-0.25,0.5,0.25,-0.375,0,-0.375,-0.25,0.5,-0.25,-0.375,0,0.375,-0.25,0.5,0.25,-0.375,0,-0.375,0.375,0,-0.375,-0.25,0.5,-0.25,0.25,0.5,-0.25,0.375,0,0.375,0.375,0,-0.375,-0.375,0,0.375,-0.375,0,-0.375,0.375,0,-0.375,0.375,0,0.375,0.25,0.5,-0.25,0.25,0.5,0.25,-0.25,10,-0.25,0.25,10,-0.25,-0.125,12.5,-0.125,0.125,12.5,-0.125,0.25,10,0.25,-0.25,10,0.25,0.125,12.5,0.125,-0.125,12.5,0.125,-0.25,10,-0.25,-0.125,12.5,-0.125,-0.25,10,0.25,-0.125,12.5,0.125,0.25,10,-0.25,0.25,10,0.25,0.125,12.5,-0.125,0.125,12.5,0.125,0.125,12.5,-0.125,0.125,12.5,0.125,-0.125,12.5,-0.125,-0.125,12.5,0.125,0.4321,5.775095,0.862797,-0.4321,5.775095,0.862797,0.3214,5.544163,0.4354373,-0.3214,5.544163,0.4354373,0.3214,5.544163,0.4354373,-0.4321,5.775095,0.862797,0.4321,5.775095,0.862797,-0.3214,5.544163,0.4354373,-0.25,5,0.25,0.25,5,0.25,-0.3214,5.544163,0.4354373,0.3214,5.544163,0.4354373,-0.3214,5.544163,0.4354373,0.25,5,0.25,-0.25,5,0.25,0.3214,5.544163,0.4354373,0.4321,5.775095,0.862797,0.2107,5.894823,1.52101,-0.4321,5.775095,0.862797,-0.2107,5.894823,1.52101,-0.4321,5.775095,0.862797,0.2107,5.894823,1.52101,0.4321,5.775095,0.862797,-0.2107,5.894823,1.52101,0.4321,6.550189,-0.862797,-0.4321,6.550189,-0.862797,0.2106999,6.789647,-1.52101,-0.2107,6.789647,-1.52101,0.2106999,6.789647,-1.52101,-0.4321,6.550189,-0.862797,0.4321,6.550189,-0.862797,-0.2107,6.789647,-1.52101,0.25,5,-0.25,-0.25,5,-0.25,0.3214,6.088326,-0.4354373,-0.3214,6.088326,-0.4354373,0.3214,6.088326,-0.4354373,-0.25,5,-0.25,0.25,5,-0.25,-0.3214,6.088326,-0.4354373,-0.3214,6.088326,-0.4354373,-0.4321,6.550189,-0.862797,0.3214,6.088326,-0.4354373,0.4321,6.550189,-0.862797,0.3214,6.088326,-0.4354373,-0.4321,6.550189,-0.862797,-0.3214,6.088326,-0.4354373,0.4321,6.550189,-0.862797 + } + PolygonVertexIndex: *444 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,123,121,-123,124,126,-126,125,127,-125,128,130,-130,131,129,-131,132,134,-134,133,135,-133,136,138,-138,139,137,-139,140,142,-142,141,143,-141,144,146,-146,147,145,-147,145,148,-145,149,144,-149,148,150,-150,151,149,-151,146,152,-148,153,147,-153,154,156,-156,157,155,-157,155,157,-159,159,158,-158,158,159,-161,161,160,-160,154,162,-157,163,156,-163,164,166,-166,167,165,-167,166,168,-168,169,167,-169,165,170,-165,171,164,-171,169,168,-173,173,172,-169,174,176,-176,177,175,-177,174,175,-179,179,178,-176,177,176,-181,181,180,-177,179,182,-179,183,178,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,229,231,-229,232,234,-234,235,233,-235,236,238,-238,237,239,-237,240,242,-242,243,241,-243,244,246,-246,245,247,-245,248,250,-250,251,249,-251,252,254,-254,253,255,-253,256,258,-258,259,257,-259,260,262,-262,261,263,-261,264,266,-266,267,265,-267,268,270,-270,269,271,-269 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1332 { + a: -0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *544 { + a: -1.701181,28.45961,1.701181,28.45961,-1.265354,25.98225,1.265354,25.98225,-1.265354,25.98225,1.701181,28.45961,-1.701181,28.45961,1.265354,25.98225,0.8295276,18.13105,1.701181,15.3735,-0.8295275,18.13105,-1.701181,15.3735,-0.8295275,18.13105,1.701181,15.3735,0.8295276,18.13105,-1.701181,15.3735,-1.265354,33.61987,1.265354,33.61987,-0.9842519,29.27337,0.984252,29.27337,-0.9842519,29.27337,1.265354,33.61987,-1.265354,33.61987,0.984252,29.27337,-1.265354,16.56409,-1.701181,18.47655,1.265354,16.56409,1.701181,18.47655,1.265354,16.56409,-1.701181,18.47655,-1.265354,16.56409,1.701181,18.47655,-1.701181,9.172449,-0.8295275,11.80636,1.701181,9.172449,0.8295276,11.80636,1.701181,9.172449,-0.8295275,11.80636,-1.701181,9.172449,0.8295276,11.80636,1.265354,30.53011,0.984252,28.26676,-1.265354,30.53011,-0.9842519,28.26676,-1.265354,30.53011,0.984252,28.26676,1.265354,30.53011,-0.9842519,28.26676,0.984252,38.97606,-0.984252,38.97606,1.265354,43.32256,-1.265354,43.32256,1.265354,43.32256,-0.984252,38.97606,0.984252,38.97606,-1.265354,43.32256,-1.265354,33.20658,-1.701181,35.68394,1.265354,33.20658,1.701181,35.68394,1.265354,33.20658,-1.701181,35.68394,-1.265354,33.20658,1.701181,35.68394,-1.701181,18.73844,-0.8295276,21.49599,1.701181,18.73844,0.8295276,21.49599,1.701181,18.73844,-0.8295276,21.49599,-1.701181,18.73844,0.8295276,21.49599,1.701181,23.15568,1.265354,21.24323,-1.701181,23.15568,-1.265354,21.24323,-1.701181,23.15568,1.265354,21.24323,1.701181,23.15568,-1.265354,21.24323,1.701181,10.93389,-1.701181,10.93389,0.8295276,13.56781,-0.8295275,13.56781,0.8295276,13.56781,-1.701181,10.93389,1.701181,10.93389,-0.8295275,13.56781,0.984252,37.58318,-0.9842519,37.58318,1.265354,39.84653,-1.265354,39.84653,1.265354,39.84653,-0.9842519,37.58318,0.984252,37.58318,-1.265354,39.84653,-1.265354,7.205826,-1.701181,9.118279,1.265354,7.205826,1.701181,9.118279,1.265354,7.205826,-1.701181,9.118279,-1.265354,7.205826,1.701181,9.118279,-1.701181,5.649559,-0.8295275,8.283471,1.701181,5.649559,0.8295276,8.283471,1.701181,5.649559,-0.8295275,8.283471,-1.701181,5.649559,0.8295276,8.283471,1.265354,11.89726,0.984252,9.633906,-1.265354,11.89726,-0.9842519,9.633906,-1.265354,11.89726,0.984252,9.633906,1.265354,11.89726,-0.9842519,9.633906,-1.265354,14.2145,1.265354,14.2145,-0.9842519,9.868005,0.984252,9.868005,-0.9842519,9.868005,1.265354,14.2145,-1.265354,14.2145,0.984252,9.868005,0.8295276,11.40117,1.701181,8.643618,-0.8295275,11.40117,-1.701181,8.643618,-0.8295275,11.40117,1.701181,8.643618,0.8295276,11.40117,-1.701181,8.643618,-1.701181,14.01095,1.701181,14.01095,-1.265354,11.53359,1.265354,11.53359,-1.265354,11.53359,1.701181,14.01095,-1.701181,14.01095,1.265354,11.53359,0.984252,19.68504,-0.984252,19.68504,0.984252,29.52756,-0.9842519,29.52756,-0.984252,9.84252,0.9842519,9.84252,-0.984252,1.968504,0.984252,1.968504,0.984252,39.37008,-0.984252,39.37008,0.984252,29.52756,0.984252,19.68504,-0.984252,29.52756,-0.984252,19.68504,0.984252,9.84252,-0.984252,9.84252,0.984252,1.968504,-0.984252,1.968504,0.984252,39.37008,-0.984252,39.37008,0.984252,9.84252,-0.9842519,9.84252,0.984252,19.68504,-0.984252,19.68504,0.9842519,29.52756,-0.984252,29.52756,-0.984252,1.968504,0.984252,1.968504,-0.984252,39.37008,0.984252,39.37008,-0.984252,19.68504,0.984252,19.68504,-0.984252,9.84252,0.984252,9.84252,-0.984252,29.52756,0.984252,29.52756,0.984252,1.968504,-0.984252,1.968504,0.9842519,39.37008,-0.984252,39.37008,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,-1.476378,-0.3580742,-0.984252,1.671013,1.476378,-0.3580742,0.984252,1.671013,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,1.476378,1.476378,1.476378,-1.476378,-1.476378,1.476378,-1.476378,-1.476378,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,0.984252,39.27181,-0.984252,39.27181,0.492126,49.12662,-0.492126,49.12662,0.984252,39.27181,-0.984252,39.27181,0.492126,49.12662,-0.492126,49.12662,-0.984252,39.27181,-0.492126,49.12662,0.9842519,39.27181,0.492126,49.12662,0.984252,39.27181,-0.984252,39.27181,0.492126,49.12662,-0.492126,49.12662,-0.492126,-0.492126,-0.492126,0.492126,0.492126,-0.492126,0.492126,0.492126,-1.701181,13.79741,1.701181,13.79741,-1.265354,11.88496,1.265354,11.88496,-1.265354,11.88496,1.701181,13.79741,-1.701181,13.79741,1.265354,11.88496,0.984252,18.95033,-0.984252,18.95033,1.265354,21.21368,-1.265354,21.21368,1.265354,21.21368,-0.984252,18.95033,0.984252,18.95033,-1.265354,21.21368,-1.701181,7.411005,-0.8295276,10.04492,1.701181,7.411005,0.8295276,10.04492,1.701181,7.411005,-0.8295276,10.04492,-1.701181,7.411005,0.8295276,10.04492,1.701181,12.00856,-1.701181,12.00856,0.8295276,14.76611,-0.8295275,14.76611,0.8295276,14.76611,-1.701181,12.00856,1.701181,12.00856,-0.8295275,14.76611,0.984252,19.57069,-0.9842519,19.57069,1.265354,23.91719,-1.265354,23.91719,1.265354,23.91719,-0.9842519,19.57069,0.984252,19.57069,-1.265354,23.91719,-1.265354,18.75792,-1.701181,21.23528,1.265354,18.75792,1.701181,21.23528,1.265354,18.75792,-1.701181,21.23528,-1.265354,18.75792,1.701181,21.23528 + } + UVIndex: *444 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,123,121,122,124,126,125,125,127,124,128,130,129,131,129,130,132,134,133,133,135,132,136,138,137,139,137,138,140,142,141,141,143,140,144,146,145,147,145,146,145,148,144,149,144,148,148,150,149,151,149,150,146,152,147,153,147,152,154,156,155,157,155,156,155,157,158,159,158,157,158,159,160,161,160,159,154,162,156,163,156,162,164,166,165,167,165,166,166,168,167,169,167,168,165,170,164,171,164,170,169,168,172,173,172,168,174,176,175,177,175,176,174,175,178,179,178,175,177,176,180,181,180,176,179,182,178,183,178,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,229,231,228,232,234,233,235,233,234,236,238,237,237,239,236,240,242,241,243,241,242,244,246,245,245,247,244,248,250,249,251,249,250,252,254,253,253,255,252,256,258,257,259,257,258,260,262,261,261,263,260,264,266,265,267,265,266,268,270,269,269,271,268 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *148 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_cornStageC, Model::RootNode + C: "OO",5525522855632289709,0 + + ;Geometry::, Model::Mesh crops_cornStageC + C: "OO",4773477629226485772,5525522855632289709 + + ;Material::grass, Model::Mesh crops_cornStageC + C: "OO",3024,5525522855632289709 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageC.fbx.import new file mode 100644 index 0000000..d28d8ee --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://laxn2gtgyu0h" +path="res://.godot/imported/crops_cornStageC.fbx-9921a5dc682886c90356a60ed36654b8.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageC.fbx" +dest_files=["res://.godot/imported/crops_cornStageC.fbx-9921a5dc682886c90356a60ed36654b8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageD.fbx new file mode 100644 index 0000000..4b6e0d0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageD.fbx @@ -0,0 +1,681 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 18 + Millisecond: 958 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_cornStageD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_cornStageD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5482349919634799375, "Model::crops_cornStageD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5574567105068959008, "Geometry::", "Mesh" { + Vertices: *816 { + a: 0.862797,9.050189,-0.4321,0.862797,9.050189,0.4321,0.4354373,8.588326,-0.3214,0.4354373,8.588326,0.3214,0.4354373,8.588326,-0.3214,0.862797,9.050189,0.4321,0.862797,9.050189,-0.4321,0.4354373,8.588326,0.3214,1.52101,9.289646,0.2106999,0.862797,9.050189,0.4321,1.52101,9.289646,-0.2107,0.862797,9.050189,-0.4321,1.52101,9.289646,-0.2107,0.862797,9.050189,0.4321,1.52101,9.289646,0.2106999,0.862797,9.050189,-0.4321,0.4354373,8.588326,-0.3214,0.4354373,8.588326,0.3214,0.25,7.5,-0.25,0.25,7.5,0.25,0.25,7.5,-0.25,0.4354373,8.588326,0.3214,0.4354373,8.588326,-0.3214,0.25,7.5,0.25,-0.4354373,8.044163,0.3214,-0.862797,8.275095,0.4321,-0.4354373,8.044163,-0.3214,-0.862797,8.275095,-0.4321,-0.4354373,8.044163,-0.3214,-0.862797,8.275095,0.4321,-0.4354373,8.044163,0.3214,-0.862797,8.275095,-0.4321,-0.862797,8.275095,0.4321,-1.52101,8.394822,0.2107,-0.862797,8.275095,-0.4321,-1.52101,8.394822,-0.2106999,-0.862797,8.275095,-0.4321,-1.52101,8.394822,0.2107,-0.862797,8.275095,0.4321,-1.52101,8.394822,-0.2106999,-0.4354373,8.044163,-0.3214,-0.25,7.5,-0.25,-0.4354373,8.044163,0.3214,-0.25,7.5,0.25,-0.4354373,8.044163,0.3214,-0.25,7.5,-0.25,-0.4354373,8.044163,-0.3214,-0.25,7.5,0.25,-0.25,10,0.25,0.25,10,0.25,-0.3214,11.08833,0.4354373,0.3214,11.08833,0.4354373,-0.3214,11.08833,0.4354373,0.25,10,0.25,-0.25,10,0.25,0.3214,11.08833,0.4354373,0.3214,11.08833,0.4354373,0.4321,11.55019,0.862797,-0.3214,11.08833,0.4354373,-0.4321,11.55019,0.862797,-0.3214,11.08833,0.4354373,0.4321,11.55019,0.862797,0.3214,11.08833,0.4354373,-0.4321,11.55019,0.862797,0.4321,11.55019,0.862797,0.2107,11.78965,1.52101,-0.4321,11.55019,0.862797,-0.2107,11.78965,1.52101,-0.4321,11.55019,0.862797,0.2107,11.78965,1.52101,0.4321,11.55019,0.862797,-0.2107,11.78965,1.52101,0.4321,10.77509,-0.862797,0.3214,10.54416,-0.4354373,-0.4321,10.77509,-0.862797,-0.3214,10.54416,-0.4354373,-0.4321,10.77509,-0.862797,0.3214,10.54416,-0.4354373,0.4321,10.77509,-0.862797,-0.3214,10.54416,-0.4354373,0.4321,10.77509,-0.862797,-0.4321,10.77509,-0.862797,0.2106999,10.89482,-1.52101,-0.2107,10.89482,-1.52101,0.2106999,10.89482,-1.52101,-0.4321,10.77509,-0.862797,0.4321,10.77509,-0.862797,-0.2107,10.89482,-1.52101,0.25,10,-0.25,-0.25,10,-0.25,0.3214,10.54416,-0.4354373,-0.3214,10.54416,-0.4354373,0.3214,10.54416,-0.4354373,-0.25,10,-0.25,0.25,10,-0.25,-0.3214,10.54416,-0.4354373,-0.4354373,3.044163,0.3214,-0.862797,3.275095,0.4321,-0.4354373,3.044163,-0.3214,-0.862797,3.275095,-0.4321,-0.4354373,3.044163,-0.3214,-0.862797,3.275095,0.4321,-0.4354373,3.044163,0.3214,-0.862797,3.275095,-0.4321,-0.862797,3.275095,0.4321,-1.52101,3.394823,0.2107,-0.862797,3.275095,-0.4321,-1.52101,3.394823,-0.2106999,-0.862797,3.275095,-0.4321,-1.52101,3.394823,0.2107,-0.862797,3.275095,0.4321,-1.52101,3.394823,-0.2106999,-0.4354373,3.044163,-0.3214,-0.25,2.5,-0.25,-0.4354373,3.044163,0.3214,-0.25,2.5,0.25,-0.4354373,3.044163,0.3214,-0.25,2.5,-0.25,-0.4354373,3.044163,-0.3214,-0.25,2.5,0.25,0.4354373,3.588326,-0.3214,0.4354373,3.588326,0.3214,0.25,2.5,-0.25,0.25,2.5,0.25,0.25,2.5,-0.25,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.25,2.5,0.25,1.52101,4.289647,0.2106999,0.862797,4.050189,0.4321,1.52101,4.289647,-0.2107,0.862797,4.050189,-0.4321,1.52101,4.289647,-0.2107,0.862797,4.050189,0.4321,1.52101,4.289647,0.2106999,0.862797,4.050189,-0.4321,0.862797,4.050189,-0.4321,0.862797,4.050189,0.4321,0.4354373,3.588326,-0.3214,0.4354373,3.588326,0.3214,0.4354373,3.588326,-0.3214,0.862797,4.050189,0.4321,0.862797,4.050189,-0.4321,0.4354373,3.588326,0.3214,-0.25,5,-0.25,0.25,5,-0.25,-0.25,7.5,-0.25,0.25,7.5,-0.25,0.25,2.5,-0.25,-0.25,2.5,-0.25,0.25,0.5,-0.25,-0.25,0.5,-0.25,-0.25,10,-0.25,0.25,10,-0.25,0.25,7.5,-0.25,0.25,5,-0.25,0.25,7.5,0.25,0.25,5,0.25,0.25,2.5,-0.25,0.25,2.5,0.25,0.25,0.5,-0.25,0.25,0.5,0.25,0.25,10,-0.25,0.25,10,0.25,0.25,2.5,0.25,-0.25,2.5,0.25,0.25,5,0.25,-0.25,5,0.25,0.25,7.5,0.25,-0.25,7.5,0.25,-0.25,0.5,0.25,0.25,0.5,0.25,-0.25,10,0.25,0.25,10,0.25,-0.25,5,-0.25,-0.25,5,0.25,-0.25,2.5,-0.25,-0.25,2.5,0.25,-0.25,7.5,-0.25,-0.25,7.5,0.25,-0.25,0.5,0.25,-0.25,0.5,-0.25,-0.25,10,0.25,-0.25,10,-0.25,0.375,0,0.375,-0.375,0,0.375,0.25,0.5,0.25,-0.25,0.5,0.25,-0.375,0,-0.375,-0.25,0.5,-0.25,-0.375,0,0.375,-0.25,0.5,0.25,-0.375,0,-0.375,0.375,0,-0.375,-0.25,0.5,-0.25,0.25,0.5,-0.25,0.375,0,0.375,0.375,0,-0.375,-0.375,0,0.375,-0.375,0,-0.375,0.375,0,-0.375,0.375,0,0.375,0.25,0.5,-0.25,0.25,0.5,0.25,-0.25,10,-0.25,0.25,10,-0.25,-0.125,12.5,-0.125,0.125,12.5,-0.125,0.25,10,0.25,-0.25,10,0.25,0.125,12.5,0.125,-0.125,12.5,0.125,-0.25,10,-0.25,-0.125,12.5,-0.125,-0.25,10,0.25,-0.125,12.5,0.125,0.25,10,-0.25,0.25,10,0.25,0.125,12.5,-0.125,0.125,12.5,0.125,0.125,12.5,-0.125,0.125,12.5,0.125,-0.125,12.5,-0.125,-0.125,12.5,0.125,0.4321,5.775095,0.862797,-0.4321,5.775095,0.862797,0.3214,5.544163,0.4354373,-0.3214,5.544163,0.4354373,0.3214,5.544163,0.4354373,-0.4321,5.775095,0.862797,0.4321,5.775095,0.862797,-0.3214,5.544163,0.4354373,-0.25,5,0.25,0.25,5,0.25,-0.3214,5.544163,0.4354373,0.3214,5.544163,0.4354373,-0.3214,5.544163,0.4354373,0.25,5,0.25,-0.25,5,0.25,0.3214,5.544163,0.4354373,0.4321,5.775095,0.862797,0.2107,5.894823,1.52101,-0.4321,5.775095,0.862797,-0.2107,5.894823,1.52101,-0.4321,5.775095,0.862797,0.2107,5.894823,1.52101,0.4321,5.775095,0.862797,-0.2107,5.894823,1.52101,0.4321,6.550189,-0.862797,-0.4321,6.550189,-0.862797,0.2106999,6.789647,-1.52101,-0.2107,6.789647,-1.52101,0.2106999,6.789647,-1.52101,-0.4321,6.550189,-0.862797,0.4321,6.550189,-0.862797,-0.2107,6.789647,-1.52101,0.25,5,-0.25,-0.25,5,-0.25,0.3214,6.088326,-0.4354373,-0.3214,6.088326,-0.4354373,0.3214,6.088326,-0.4354373,-0.25,5,-0.25,0.25,5,-0.25,-0.3214,6.088326,-0.4354373,-0.3214,6.088326,-0.4354373,-0.4321,6.550189,-0.862797,0.3214,6.088326,-0.4354373,0.4321,6.550189,-0.862797,0.3214,6.088326,-0.4354373,-0.4321,6.550189,-0.862797,-0.3214,6.088326,-0.4354373,0.4321,6.550189,-0.862797 + } + PolygonVertexIndex: *444 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,123,121,-123,124,126,-126,125,127,-125,128,130,-130,131,129,-131,132,134,-134,133,135,-133,136,138,-138,139,137,-139,140,142,-142,141,143,-141,144,146,-146,147,145,-147,145,148,-145,149,144,-149,148,150,-150,151,149,-151,146,152,-148,153,147,-153,154,156,-156,157,155,-157,155,157,-159,159,158,-158,158,159,-161,161,160,-160,154,162,-157,163,156,-163,164,166,-166,167,165,-167,166,168,-168,169,167,-169,165,170,-165,171,164,-171,169,168,-173,173,172,-169,174,176,-176,177,175,-177,174,175,-179,179,178,-176,177,176,-181,181,180,-177,179,182,-179,183,178,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,229,231,-229,232,234,-234,235,233,-235,236,238,-238,237,239,-237,240,242,-242,243,241,-243,244,246,-246,245,247,-245,248,250,-250,251,249,-251,252,254,-254,253,255,-253,256,258,-258,259,257,-259,260,262,-262,261,263,-261,264,266,-266,267,265,-267,268,270,-270,269,271,-269 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1332 { + a: -0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,0.8797697,0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,-0.8797697,-0.4754001,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,0.9838558,0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,-0.9838558,-0.1789628,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,0.3225606,0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0,-0.3225606,-0.9465488,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,0.4754001,0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,-0.4754001,-0.8797697,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,0.1789628,0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,-0.1789628,-0.9838558,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,0.9465488,0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9465488,-0.3225606,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,-0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,0,0.04993761,0.9987524,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,-0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0.9987524,0.04993761,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,0.8797697,-0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,-0.8797697,0.4754001,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,0.3225606,-0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,-0.3225606,0.9465488,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,0.9838558,-0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,-0.9838558,0.1789628,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *544 { + a: -1.701181,28.45961,1.701181,28.45961,-1.265354,25.98225,1.265354,25.98225,-1.265354,25.98225,1.701181,28.45961,-1.701181,28.45961,1.265354,25.98225,0.8295276,18.13105,1.701181,15.3735,-0.8295275,18.13105,-1.701181,15.3735,-0.8295275,18.13105,1.701181,15.3735,0.8295276,18.13105,-1.701181,15.3735,-1.265354,33.61987,1.265354,33.61987,-0.9842519,29.27337,0.984252,29.27337,-0.9842519,29.27337,1.265354,33.61987,-1.265354,33.61987,0.984252,29.27337,-1.265354,16.56409,-1.701181,18.47655,1.265354,16.56409,1.701181,18.47655,1.265354,16.56409,-1.701181,18.47655,-1.265354,16.56409,1.701181,18.47655,-1.701181,9.172449,-0.8295275,11.80636,1.701181,9.172449,0.8295276,11.80636,1.701181,9.172449,-0.8295275,11.80636,-1.701181,9.172449,0.8295276,11.80636,1.265354,30.53011,0.984252,28.26676,-1.265354,30.53011,-0.9842519,28.26676,-1.265354,30.53011,0.984252,28.26676,1.265354,30.53011,-0.9842519,28.26676,0.984252,38.97606,-0.984252,38.97606,1.265354,43.32256,-1.265354,43.32256,1.265354,43.32256,-0.984252,38.97606,0.984252,38.97606,-1.265354,43.32256,-1.265354,33.20658,-1.701181,35.68394,1.265354,33.20658,1.701181,35.68394,1.265354,33.20658,-1.701181,35.68394,-1.265354,33.20658,1.701181,35.68394,-1.701181,18.73844,-0.8295276,21.49599,1.701181,18.73844,0.8295276,21.49599,1.701181,18.73844,-0.8295276,21.49599,-1.701181,18.73844,0.8295276,21.49599,1.701181,23.15568,1.265354,21.24323,-1.701181,23.15568,-1.265354,21.24323,-1.701181,23.15568,1.265354,21.24323,1.701181,23.15568,-1.265354,21.24323,1.701181,10.93389,-1.701181,10.93389,0.8295276,13.56781,-0.8295275,13.56781,0.8295276,13.56781,-1.701181,10.93389,1.701181,10.93389,-0.8295275,13.56781,0.984252,37.58318,-0.9842519,37.58318,1.265354,39.84653,-1.265354,39.84653,1.265354,39.84653,-0.9842519,37.58318,0.984252,37.58318,-1.265354,39.84653,-1.265354,7.205826,-1.701181,9.118279,1.265354,7.205826,1.701181,9.118279,1.265354,7.205826,-1.701181,9.118279,-1.265354,7.205826,1.701181,9.118279,-1.701181,5.649559,-0.8295275,8.283471,1.701181,5.649559,0.8295276,8.283471,1.701181,5.649559,-0.8295275,8.283471,-1.701181,5.649559,0.8295276,8.283471,1.265354,11.89726,0.984252,9.633906,-1.265354,11.89726,-0.9842519,9.633906,-1.265354,11.89726,0.984252,9.633906,1.265354,11.89726,-0.9842519,9.633906,-1.265354,14.2145,1.265354,14.2145,-0.9842519,9.868005,0.984252,9.868005,-0.9842519,9.868005,1.265354,14.2145,-1.265354,14.2145,0.984252,9.868005,0.8295276,11.40117,1.701181,8.643618,-0.8295275,11.40117,-1.701181,8.643618,-0.8295275,11.40117,1.701181,8.643618,0.8295276,11.40117,-1.701181,8.643618,-1.701181,14.01095,1.701181,14.01095,-1.265354,11.53359,1.265354,11.53359,-1.265354,11.53359,1.701181,14.01095,-1.701181,14.01095,1.265354,11.53359,0.984252,19.68504,-0.984252,19.68504,0.984252,29.52756,-0.9842519,29.52756,-0.984252,9.84252,0.9842519,9.84252,-0.984252,1.968504,0.984252,1.968504,0.984252,39.37008,-0.984252,39.37008,0.984252,29.52756,0.984252,19.68504,-0.984252,29.52756,-0.984252,19.68504,0.984252,9.84252,-0.984252,9.84252,0.984252,1.968504,-0.984252,1.968504,0.984252,39.37008,-0.984252,39.37008,0.984252,9.84252,-0.9842519,9.84252,0.984252,19.68504,-0.984252,19.68504,0.9842519,29.52756,-0.984252,29.52756,-0.984252,1.968504,0.984252,1.968504,-0.984252,39.37008,0.984252,39.37008,-0.984252,19.68504,0.984252,19.68504,-0.984252,9.84252,0.984252,9.84252,-0.984252,29.52756,0.984252,29.52756,0.984252,1.968504,-0.984252,1.968504,0.9842519,39.37008,-0.984252,39.37008,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,-1.476378,-0.3580742,-0.984252,1.671013,1.476378,-0.3580742,0.984252,1.671013,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,1.476378,1.476378,1.476378,-1.476378,-1.476378,1.476378,-1.476378,-1.476378,1.476378,-0.3580742,-1.476378,-0.3580742,0.984252,1.671013,-0.984252,1.671013,0.984252,39.27181,-0.984252,39.27181,0.492126,49.12662,-0.492126,49.12662,0.984252,39.27181,-0.984252,39.27181,0.492126,49.12662,-0.492126,49.12662,-0.984252,39.27181,-0.492126,49.12662,0.9842519,39.27181,0.492126,49.12662,0.984252,39.27181,-0.984252,39.27181,0.492126,49.12662,-0.492126,49.12662,-0.492126,-0.492126,-0.492126,0.492126,0.492126,-0.492126,0.492126,0.492126,-1.701181,13.79741,1.701181,13.79741,-1.265354,11.88496,1.265354,11.88496,-1.265354,11.88496,1.701181,13.79741,-1.701181,13.79741,1.265354,11.88496,0.984252,18.95033,-0.984252,18.95033,1.265354,21.21368,-1.265354,21.21368,1.265354,21.21368,-0.984252,18.95033,0.984252,18.95033,-1.265354,21.21368,-1.701181,7.411005,-0.8295276,10.04492,1.701181,7.411005,0.8295276,10.04492,1.701181,7.411005,-0.8295276,10.04492,-1.701181,7.411005,0.8295276,10.04492,1.701181,12.00856,-1.701181,12.00856,0.8295276,14.76611,-0.8295275,14.76611,0.8295276,14.76611,-1.701181,12.00856,1.701181,12.00856,-0.8295275,14.76611,0.984252,19.57069,-0.9842519,19.57069,1.265354,23.91719,-1.265354,23.91719,1.265354,23.91719,-0.9842519,19.57069,0.984252,19.57069,-1.265354,23.91719,-1.265354,18.75792,-1.701181,21.23528,1.265354,18.75792,1.701181,21.23528,1.265354,18.75792,-1.701181,21.23528,-1.265354,18.75792,1.701181,21.23528 + } + UVIndex: *444 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,123,121,122,124,126,125,125,127,124,128,130,129,131,129,130,132,134,133,133,135,132,136,138,137,139,137,138,140,142,141,141,143,140,144,146,145,147,145,146,145,148,144,149,144,148,148,150,149,151,149,150,146,152,147,153,147,152,154,156,155,157,155,156,155,157,158,159,158,157,158,159,160,161,160,159,154,162,156,163,156,162,164,166,165,167,165,166,166,168,167,169,167,168,165,170,164,171,164,170,169,168,172,173,172,168,174,176,175,177,175,176,174,175,178,179,178,175,177,176,180,181,180,176,179,182,178,183,178,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,229,231,228,232,234,233,235,233,234,236,238,237,237,239,236,240,242,241,243,241,242,244,246,245,245,247,244,248,250,249,251,249,250,252,254,253,253,255,252,256,258,257,259,257,258,260,262,261,261,263,260,264,266,265,267,265,266,268,270,269,269,271,268 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *148 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5519771841412119916, "Model::corn", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.375,2.370591,-2.207858 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5571803861918674198, "Geometry::", "Mesh" { + Vertices: *246 { + a: 0,1.513593,1.328148,-0.75,0.9335734,1.095335,-0.75,1.127688,1.81978,-0.75,1.127688,1.81978,-0.75,0.9335734,1.095335,0,1.513593,1.328148,-1.625,0,1.474895,-1.125,0,1.474895,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.125,0.1294095,1.957858,-1.625,0.1294095,1.957858,-1,0.6447248,1.949189,-1.75,0.6447248,1.949189,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.625,0,1.474895,-1.625,0.1294095,1.957858,-0.75,0.9335734,1.095335,-1,0.4506105,1.224745,-0.75,1.127688,1.81978,-1,0.6447248,1.949189,-0.75,1.127688,1.81978,-1,0.4506105,1.224745,-0.75,0.9335734,1.095335,-1,0.6447248,1.949189,-2,0.9335734,1.095335,-2,1.127688,1.81978,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.75,0.4506105,1.224745,-2,1.127688,1.81978,-2,0.9335734,1.095335,-1.75,0.6447248,1.949189,-1,0.4506105,1.224745,-1.125,0,1.474895,-1,0.6447248,1.949189,-1.125,0.1294095,1.957858,-1.125,0.1294095,1.957858,-1.125,0,1.474895,-1.625,0.1294095,1.957858,-1.625,0,1.474895,-2,1.127688,1.81978,-2,0.9335734,1.095335,-2.75,1.513593,1.328148,-2.75,1.513593,1.328148,-2,0.9335734,1.095335,-2,1.127688,1.81978,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.75,0.8688687,0.8538539,-1,0.8688687,0.8538539,-1.75,0.8688687,0.8538539,-1,0.4506105,1.224745,-1.75,0.4506105,1.224745,-1,0.8688687,0.8538539,-1,0.8688687,0.8538539,-1.375,1.157717,0,-1.75,0.8688687,0.8538539,-1.75,0.8688687,0.8538539,-1.375,1.157717,0,-1,0.8688687,0.8538539,-1.58875,1.941234,0.9922718,-1.58875,2.051879,1.405205,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.16125,1.941234,0.9922718,-1.16125,2.051879,1.405205,-1.58875,1.941234,0.9922718,-1.58875,2.051879,1.405205,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.58875,1.941234,0.9922718,-1.16125,1.941234,0.9922718,-1.16125,1.941234,0.9922718,-1,0.4506105,1.224745,-1.16125,2.051879,1.405205,-1,0.6447248,1.949189,-1,0.6447248,1.949189,-1.75,0.6447248,1.949189,-1.16125,2.051879,1.405205,-1.58875,2.051879,1.405205 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,23,25,-23,26,28,-28,29,27,-29,30,32,-32,31,33,-31,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,47,-47,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,61,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: 0.5547002,-0.8036988,0.2153505,0.5547002,-0.8036988,0.2153505,0.5547002,-0.8036988,0.2153505,-0.5547002,0.8036988,-0.2153505,-0.5547002,0.8036988,-0.2153505,-0.5547002,0.8036988,-0.2153505,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,-0.5547002,-0.8036988,0.2153505,-0.5547002,-0.8036988,0.2153505,-0.5547002,-0.8036988,0.2153505,0.5547002,0.8036988,-0.2153505,0.5547002,0.8036988,-0.2153505,0.5547002,0.8036988,-0.2153505,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,-0.9472658,-0.3204488,0,-0.9472658,-0.3204488,0,-0.9472658,-0.3204488,0,0.9472658,0.3204488,0,0.9472658,0.3204488,0,0.9472658,0.3204488,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *164 { + a: -4.874473,5.066766,-5.088657,1.229112,-7.74746,2.513453,-7.74746,2.513453,-5.088657,1.229112,-4.874473,5.066766,6.397638,-2.818343,4.429134,-2.818343,6.889764,-0.7892561,3.937008,-0.7892561,-4.429134,0.3797643,-6.397638,0.3797643,-3.937008,2.408852,-6.889764,2.408852,4.366898,3.408333,7.213089,4.194439,5.381463,1.583493,7.278924,2.107563,-4.655637,2.288972,-5.287228,0.1806905,-7.484194,3.136341,-8.115786,1.028059,-7.484194,3.136341,-5.287228,0.1806905,-4.655637,2.288972,-8.115786,1.028059,3.266136,6.927192,6.094693,7.774561,3.897727,4.81891,6.726284,5.666279,3.897727,4.81891,6.094693,7.774561,3.266136,6.927192,6.726284,5.666279,-5.065979,0.8772227,-6.080544,-0.9476175,-7.912171,1.663329,-7.978005,-0.4235469,-4.429134,7.57732,-4.429134,5.608816,-6.397638,7.57732,-6.397638,5.608816,3.829127,10.62507,1.170323,9.340725,0.9561391,13.17838,0.9561391,13.17838,1.170323,9.340725,3.829127,10.62507,6.889764,-1.871785,3.937008,-1.871785,6.889764,0.3290694,3.937008,0.3290694,6.889764,0.3290694,3.937008,-1.871785,6.889764,-1.871785,3.937008,0.3290694,3.937008,-2.088184,5.413386,1.460587,6.889764,-2.088184,6.889764,-2.088184,5.413386,1.460587,3.937008,-2.088184,4.079034,6.967508,5.704127,7.405459,5.011585,1.067383,7.862625,1.835719,4.57185,5.751533,4.57185,7.434604,6.254921,5.751533,6.254921,7.434604,6.889764,1.009852,3.937008,1.009852,6.254921,6.949389,4.57185,6.949389,-3.777917,8.084855,-4.710468,2.184731,-5.40301,8.522806,-7.561508,2.953066,-3.937008,-0.3995375,-6.889764,-0.3995375,-4.57185,5.539999,-6.254921,5.539999 + } + UVIndex: *114 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,23,25,22,26,28,27,29,27,28,30,32,31,31,33,30,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,47,46,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,61,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5153936182577839820, "Model::corn", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",2.207858,4.87059,1.375 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-90,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5177881362959831633, "Geometry::", "Mesh" { + Vertices: *246 { + a: 0,1.513593,1.328148,-0.75,0.9335734,1.095335,-0.75,1.127688,1.81978,-0.75,1.127688,1.81978,-0.75,0.9335734,1.095335,0,1.513593,1.328148,-1.625,0,1.474895,-1.125,0,1.474895,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.125,0.1294095,1.957858,-1.625,0.1294095,1.957858,-1,0.6447248,1.949189,-1.75,0.6447248,1.949189,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.625,0,1.474895,-1.625,0.1294095,1.957858,-0.75,0.9335734,1.095335,-1,0.4506105,1.224745,-0.75,1.127688,1.81978,-1,0.6447248,1.949189,-0.75,1.127688,1.81978,-1,0.4506105,1.224745,-0.75,0.9335734,1.095335,-1,0.6447248,1.949189,-2,0.9335734,1.095335,-2,1.127688,1.81978,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.75,0.4506105,1.224745,-2,1.127688,1.81978,-2,0.9335734,1.095335,-1.75,0.6447248,1.949189,-1,0.4506105,1.224745,-1.125,0,1.474895,-1,0.6447248,1.949189,-1.125,0.1294095,1.957858,-1.125,0.1294095,1.957858,-1.125,0,1.474895,-1.625,0.1294095,1.957858,-1.625,0,1.474895,-2,1.127688,1.81978,-2,0.9335734,1.095335,-2.75,1.513593,1.328148,-2.75,1.513593,1.328148,-2,0.9335734,1.095335,-2,1.127688,1.81978,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.75,0.8688687,0.8538539,-1,0.8688687,0.8538539,-1.75,0.8688687,0.8538539,-1,0.4506105,1.224745,-1.75,0.4506105,1.224745,-1,0.8688687,0.8538539,-1,0.8688687,0.8538539,-1.375,1.157717,0,-1.75,0.8688687,0.8538539,-1.75,0.8688687,0.8538539,-1.375,1.157717,0,-1,0.8688687,0.8538539,-1.58875,1.941234,0.9922718,-1.58875,2.051879,1.405205,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.16125,1.941234,0.9922718,-1.16125,2.051879,1.405205,-1.58875,1.941234,0.9922718,-1.58875,2.051879,1.405205,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.58875,1.941234,0.9922718,-1.16125,1.941234,0.9922718,-1.16125,1.941234,0.9922718,-1,0.4506105,1.224745,-1.16125,2.051879,1.405205,-1,0.6447248,1.949189,-1,0.6447248,1.949189,-1.75,0.6447248,1.949189,-1.16125,2.051879,1.405205,-1.58875,2.051879,1.405205 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,23,25,-23,26,28,-28,29,27,-29,30,32,-32,31,33,-31,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,47,-47,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,61,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: 0.5547002,-0.8036988,0.2153505,0.5547002,-0.8036988,0.2153505,0.5547002,-0.8036988,0.2153505,-0.5547002,0.8036988,-0.2153505,-0.5547002,0.8036988,-0.2153505,-0.5547002,0.8036988,-0.2153505,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,-0.5547002,-0.8036988,0.2153505,-0.5547002,-0.8036988,0.2153505,-0.5547002,-0.8036988,0.2153505,0.5547002,0.8036988,-0.2153505,0.5547002,0.8036988,-0.2153505,0.5547002,0.8036988,-0.2153505,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,-0.9472658,-0.3204488,0,-0.9472658,-0.3204488,0,-0.9472658,-0.3204488,0,0.9472658,0.3204488,0,0.9472658,0.3204488,0,0.9472658,0.3204488,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *164 { + a: -4.874473,5.066766,-5.088657,1.229112,-7.74746,2.513453,-7.74746,2.513453,-5.088657,1.229112,-4.874473,5.066766,6.397638,-2.818343,4.429134,-2.818343,6.889764,-0.7892561,3.937008,-0.7892561,-4.429134,0.3797643,-6.397638,0.3797643,-3.937008,2.408852,-6.889764,2.408852,4.366898,3.408333,7.213089,4.194439,5.381463,1.583493,7.278924,2.107563,-4.655637,2.288972,-5.287228,0.1806905,-7.484194,3.136341,-8.115786,1.028059,-7.484194,3.136341,-5.287228,0.1806905,-4.655637,2.288972,-8.115786,1.028059,3.266136,6.927192,6.094693,7.774561,3.897727,4.81891,6.726284,5.666279,3.897727,4.81891,6.094693,7.774561,3.266136,6.927192,6.726284,5.666279,-5.065979,0.8772227,-6.080544,-0.9476175,-7.912171,1.663329,-7.978005,-0.4235469,-4.429134,7.57732,-4.429134,5.608816,-6.397638,7.57732,-6.397638,5.608816,3.829127,10.62507,1.170323,9.340725,0.9561391,13.17838,0.9561391,13.17838,1.170323,9.340725,3.829127,10.62507,6.889764,-1.871785,3.937008,-1.871785,6.889764,0.3290694,3.937008,0.3290694,6.889764,0.3290694,3.937008,-1.871785,6.889764,-1.871785,3.937008,0.3290694,3.937008,-2.088184,5.413386,1.460587,6.889764,-2.088184,6.889764,-2.088184,5.413386,1.460587,3.937008,-2.088184,4.079034,6.967508,5.704127,7.405459,5.011585,1.067383,7.862625,1.835719,4.57185,5.751533,4.57185,7.434604,6.254921,5.751533,6.254921,7.434604,6.889764,1.009852,3.937008,1.009852,6.254921,6.949389,4.57185,6.949389,-3.777917,8.084855,-4.710468,2.184731,-5.40301,8.522806,-7.561508,2.953066,-3.937008,-0.3995375,-6.889764,-0.3995375,-4.57185,5.539999,-6.254921,5.539999 + } + UVIndex: *114 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,23,25,22,26,28,27,29,27,28,30,32,31,31,33,30,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,47,46,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,61,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4984086538412263135, "Model::corn", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-1.375,7.37059,2.207858 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-180,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5345422440744921644, "Geometry::", "Mesh" { + Vertices: *246 { + a: 0,1.513593,1.328148,-0.75,0.9335734,1.095335,-0.75,1.127688,1.81978,-0.75,1.127688,1.81978,-0.75,0.9335734,1.095335,0,1.513593,1.328148,-1.625,0,1.474895,-1.125,0,1.474895,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.125,0.1294095,1.957858,-1.625,0.1294095,1.957858,-1,0.6447248,1.949189,-1.75,0.6447248,1.949189,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.625,0,1.474895,-1.625,0.1294095,1.957858,-0.75,0.9335734,1.095335,-1,0.4506105,1.224745,-0.75,1.127688,1.81978,-1,0.6447248,1.949189,-0.75,1.127688,1.81978,-1,0.4506105,1.224745,-0.75,0.9335734,1.095335,-1,0.6447248,1.949189,-2,0.9335734,1.095335,-2,1.127688,1.81978,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.75,0.4506105,1.224745,-2,1.127688,1.81978,-2,0.9335734,1.095335,-1.75,0.6447248,1.949189,-1,0.4506105,1.224745,-1.125,0,1.474895,-1,0.6447248,1.949189,-1.125,0.1294095,1.957858,-1.125,0.1294095,1.957858,-1.125,0,1.474895,-1.625,0.1294095,1.957858,-1.625,0,1.474895,-2,1.127688,1.81978,-2,0.9335734,1.095335,-2.75,1.513593,1.328148,-2.75,1.513593,1.328148,-2,0.9335734,1.095335,-2,1.127688,1.81978,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.75,0.8688687,0.8538539,-1,0.8688687,0.8538539,-1.75,0.8688687,0.8538539,-1,0.4506105,1.224745,-1.75,0.4506105,1.224745,-1,0.8688687,0.8538539,-1,0.8688687,0.8538539,-1.375,1.157717,0,-1.75,0.8688687,0.8538539,-1.75,0.8688687,0.8538539,-1.375,1.157717,0,-1,0.8688687,0.8538539,-1.58875,1.941234,0.9922718,-1.58875,2.051879,1.405205,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.16125,1.941234,0.9922718,-1.16125,2.051879,1.405205,-1.58875,1.941234,0.9922718,-1.58875,2.051879,1.405205,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.58875,1.941234,0.9922718,-1.16125,1.941234,0.9922718,-1.16125,1.941234,0.9922718,-1,0.4506105,1.224745,-1.16125,2.051879,1.405205,-1,0.6447248,1.949189,-1,0.6447248,1.949189,-1.75,0.6447248,1.949189,-1.16125,2.051879,1.405205,-1.58875,2.051879,1.405205 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,23,25,-23,26,28,-28,29,27,-29,30,32,-32,31,33,-31,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,47,-47,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,61,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: 0.5547002,-0.8036988,0.2153505,0.5547002,-0.8036988,0.2153505,0.5547002,-0.8036988,0.2153505,-0.5547002,0.8036988,-0.2153505,-0.5547002,0.8036988,-0.2153505,-0.5547002,0.8036988,-0.2153505,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,-0.5547002,-0.8036988,0.2153505,-0.5547002,-0.8036988,0.2153505,-0.5547002,-0.8036988,0.2153505,0.5547002,0.8036988,-0.2153505,0.5547002,0.8036988,-0.2153505,0.5547002,0.8036988,-0.2153505,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,-0.9472658,-0.3204488,0,-0.9472658,-0.3204488,0,-0.9472658,-0.3204488,0,0.9472658,0.3204488,0,0.9472658,0.3204488,0,0.9472658,0.3204488,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *164 { + a: -4.874473,5.066766,-5.088657,1.229112,-7.74746,2.513453,-7.74746,2.513453,-5.088657,1.229112,-4.874473,5.066766,6.397638,-2.818343,4.429134,-2.818343,6.889764,-0.7892561,3.937008,-0.7892561,-4.429134,0.3797643,-6.397638,0.3797643,-3.937008,2.408852,-6.889764,2.408852,4.366898,3.408333,7.213089,4.194439,5.381463,1.583493,7.278924,2.107563,-4.655637,2.288972,-5.287228,0.1806905,-7.484194,3.136341,-8.115786,1.028059,-7.484194,3.136341,-5.287228,0.1806905,-4.655637,2.288972,-8.115786,1.028059,3.266136,6.927192,6.094693,7.774561,3.897727,4.81891,6.726284,5.666279,3.897727,4.81891,6.094693,7.774561,3.266136,6.927192,6.726284,5.666279,-5.065979,0.8772227,-6.080544,-0.9476175,-7.912171,1.663329,-7.978005,-0.4235469,-4.429134,7.57732,-4.429134,5.608816,-6.397638,7.57732,-6.397638,5.608816,3.829127,10.62507,1.170323,9.340725,0.9561391,13.17838,0.9561391,13.17838,1.170323,9.340725,3.829127,10.62507,6.889764,-1.871785,3.937008,-1.871785,6.889764,0.3290694,3.937008,0.3290694,6.889764,0.3290694,3.937008,-1.871785,6.889764,-1.871785,3.937008,0.3290694,3.937008,-2.088184,5.413386,1.460587,6.889764,-2.088184,6.889764,-2.088184,5.413386,1.460587,3.937008,-2.088184,4.079034,6.967508,5.704127,7.405459,5.011585,1.067383,7.862625,1.835719,4.57185,5.751533,4.57185,7.434604,6.254921,5.751533,6.254921,7.434604,6.889764,1.009852,3.937008,1.009852,6.254921,6.949389,4.57185,6.949389,-3.777917,8.084855,-4.710468,2.184731,-5.40301,8.522806,-7.561508,2.953066,-3.937008,-0.3995375,-6.889764,-0.3995375,-4.57185,5.539999,-6.254921,5.539999 + } + UVIndex: *114 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,23,25,22,26,28,27,29,27,28,30,32,31,31,33,30,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,47,46,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,61,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4624906965313099167, "Model::corn", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-2.207858,9.87059,-1.375 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-270,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5018187819215292419, "Geometry::", "Mesh" { + Vertices: *246 { + a: 0,1.513593,1.328148,-0.75,0.9335734,1.095335,-0.75,1.127688,1.81978,-0.75,1.127688,1.81978,-0.75,0.9335734,1.095335,0,1.513593,1.328148,-1.625,0,1.474895,-1.125,0,1.474895,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.125,0.1294095,1.957858,-1.625,0.1294095,1.957858,-1,0.6447248,1.949189,-1.75,0.6447248,1.949189,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.625,0,1.474895,-1.625,0.1294095,1.957858,-0.75,0.9335734,1.095335,-1,0.4506105,1.224745,-0.75,1.127688,1.81978,-1,0.6447248,1.949189,-0.75,1.127688,1.81978,-1,0.4506105,1.224745,-0.75,0.9335734,1.095335,-1,0.6447248,1.949189,-2,0.9335734,1.095335,-2,1.127688,1.81978,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.75,0.4506105,1.224745,-2,1.127688,1.81978,-2,0.9335734,1.095335,-1.75,0.6447248,1.949189,-1,0.4506105,1.224745,-1.125,0,1.474895,-1,0.6447248,1.949189,-1.125,0.1294095,1.957858,-1.125,0.1294095,1.957858,-1.125,0,1.474895,-1.625,0.1294095,1.957858,-1.625,0,1.474895,-2,1.127688,1.81978,-2,0.9335734,1.095335,-2.75,1.513593,1.328148,-2.75,1.513593,1.328148,-2,0.9335734,1.095335,-2,1.127688,1.81978,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.75,0.8688687,0.8538539,-1,0.8688687,0.8538539,-1.75,0.8688687,0.8538539,-1,0.4506105,1.224745,-1.75,0.4506105,1.224745,-1,0.8688687,0.8538539,-1,0.8688687,0.8538539,-1.375,1.157717,0,-1.75,0.8688687,0.8538539,-1.75,0.8688687,0.8538539,-1.375,1.157717,0,-1,0.8688687,0.8538539,-1.58875,1.941234,0.9922718,-1.58875,2.051879,1.405205,-1.75,0.4506105,1.224745,-1.75,0.6447248,1.949189,-1.16125,1.941234,0.9922718,-1.16125,2.051879,1.405205,-1.58875,1.941234,0.9922718,-1.58875,2.051879,1.405205,-1.75,0.4506105,1.224745,-1,0.4506105,1.224745,-1.58875,1.941234,0.9922718,-1.16125,1.941234,0.9922718,-1.16125,1.941234,0.9922718,-1,0.4506105,1.224745,-1.16125,2.051879,1.405205,-1,0.6447248,1.949189,-1,0.6447248,1.949189,-1.75,0.6447248,1.949189,-1.16125,2.051879,1.405205,-1.58875,2.051879,1.405205 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,23,25,-23,26,28,-28,29,27,-29,30,32,-32,31,33,-31,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,47,-47,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,61,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: 0.5547002,-0.8036988,0.2153505,0.5547002,-0.8036988,0.2153505,0.5547002,-0.8036988,0.2153505,-0.5547002,0.8036988,-0.2153505,-0.5547002,0.8036988,-0.2153505,-0.5547002,0.8036988,-0.2153505,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,-0.4853628,-0.8743129,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,0,0.01681996,0.9998585,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,-0.9701425,-0.2342714,0.06277286,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,0.8944272,-0.4319751,0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,0.4319751,-0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,-0.8944272,-0.4319751,0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.8944272,0.4319751,-0.1157474,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0.9701425,-0.2342714,0.06277286,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,0,-0.9659258,0.2588191,-0.5547002,-0.8036988,0.2153505,-0.5547002,-0.8036988,0.2153505,-0.5547002,-0.8036988,0.2153505,0.5547002,0.8036988,-0.2153505,0.5547002,0.8036988,-0.2153505,0.5547002,0.8036988,-0.2153505,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,-0.66347,-0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,0.66347,0.7482029,0,-0.9472658,-0.3204488,0,-0.9472658,-0.3204488,0,-0.9472658,-0.3204488,0,0.9472658,0.3204488,0,0.9472658,0.3204488,0,0.9472658,0.3204488,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,-0.9942715,0.1032422,-0.02766366,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0,-0.1540942,-0.9880561,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0.9942715,0.1032422,-0.02766366,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289,0,0.3605786,0.9327289 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *164 { + a: -4.874473,5.066766,-5.088657,1.229112,-7.74746,2.513453,-7.74746,2.513453,-5.088657,1.229112,-4.874473,5.066766,6.397638,-2.818343,4.429134,-2.818343,6.889764,-0.7892561,3.937008,-0.7892561,-4.429134,0.3797643,-6.397638,0.3797643,-3.937008,2.408852,-6.889764,2.408852,4.366898,3.408333,7.213089,4.194439,5.381463,1.583493,7.278924,2.107563,-4.655637,2.288972,-5.287228,0.1806905,-7.484194,3.136341,-8.115786,1.028059,-7.484194,3.136341,-5.287228,0.1806905,-4.655637,2.288972,-8.115786,1.028059,3.266136,6.927192,6.094693,7.774561,3.897727,4.81891,6.726284,5.666279,3.897727,4.81891,6.094693,7.774561,3.266136,6.927192,6.726284,5.666279,-5.065979,0.8772227,-6.080544,-0.9476175,-7.912171,1.663329,-7.978005,-0.4235469,-4.429134,7.57732,-4.429134,5.608816,-6.397638,7.57732,-6.397638,5.608816,3.829127,10.62507,1.170323,9.340725,0.9561391,13.17838,0.9561391,13.17838,1.170323,9.340725,3.829127,10.62507,6.889764,-1.871785,3.937008,-1.871785,6.889764,0.3290694,3.937008,0.3290694,6.889764,0.3290694,3.937008,-1.871785,6.889764,-1.871785,3.937008,0.3290694,3.937008,-2.088184,5.413386,1.460587,6.889764,-2.088184,6.889764,-2.088184,5.413386,1.460587,3.937008,-2.088184,4.079034,6.967508,5.704127,7.405459,5.011585,1.067383,7.862625,1.835719,4.57185,5.751533,4.57185,7.434604,6.254921,5.751533,6.254921,7.434604,6.889764,1.009852,3.937008,1.009852,6.254921,6.949389,4.57185,6.949389,-3.777917,8.084855,-4.710468,2.184731,-5.40301,8.522806,-7.561508,2.953066,-3.937008,-0.3995375,-6.889764,-0.3995375,-4.57185,5.539999,-6.254921,5.539999 + } + UVIndex: *114 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,23,25,22,26,28,27,29,27,28,30,32,31,31,33,30,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,47,46,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,61,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3018, "Material::corn", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.7372549,0.3921569 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.7372549,0.3921569 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_cornStageD, Model::RootNode + C: "OO",5482349919634799375,0 + + ;Geometry::, Model::Mesh crops_cornStageD + C: "OO",5574567105068959008,5482349919634799375 + + ;Material::grass, Model::Mesh crops_cornStageD + C: "OO",3024,5482349919634799375 + + ;Model::Mesh corn, Model::USING PARENT + C: "OO",5519771841412119916,5482349919634799375 + + ;Geometry::, Model::Mesh corn + C: "OO",5571803861918674198,5519771841412119916 + + ;Material::grass, Model::Mesh corn + C: "OO",3024,5519771841412119916 + + ;Material::corn, Model::Mesh corn + C: "OO",3018,5519771841412119916 + + ;Model::Mesh corn, Model::USING PARENT + C: "OO",5153936182577839820,5482349919634799375 + + ;Geometry::, Model::Mesh corn + C: "OO",5177881362959831633,5153936182577839820 + + ;Material::grass, Model::Mesh corn + C: "OO",3024,5153936182577839820 + + ;Material::corn, Model::Mesh corn + C: "OO",3018,5153936182577839820 + + ;Model::Mesh corn, Model::USING PARENT + C: "OO",4984086538412263135,5482349919634799375 + + ;Geometry::, Model::Mesh corn + C: "OO",5345422440744921644,4984086538412263135 + + ;Material::grass, Model::Mesh corn + C: "OO",3024,4984086538412263135 + + ;Material::corn, Model::Mesh corn + C: "OO",3018,4984086538412263135 + + ;Model::Mesh corn, Model::USING PARENT + C: "OO",4624906965313099167,5482349919634799375 + + ;Geometry::, Model::Mesh corn + C: "OO",5018187819215292419,4624906965313099167 + + ;Material::grass, Model::Mesh corn + C: "OO",3024,4624906965313099167 + + ;Material::corn, Model::Mesh corn + C: "OO",3018,4624906965313099167 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageD.fbx.import new file mode 100644 index 0000000..3cab420 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://chbe0cdynkdrl" +path="res://.godot/imported/crops_cornStageD.fbx-3f5ffce99eb2d16f14fe1d856713e2e7.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_cornStageD.fbx" +dest_files=["res://.godot/imported/crops_cornStageD.fbx-3f5ffce99eb2d16f14fe1d856713e2e7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRow.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRow.fbx new file mode 100644 index 0000000..785abfe --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRow.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 55 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_dirtDoubleRow.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_dirtDoubleRow.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4873864365516556978, "Model::crops_dirtDoubleRow", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4720037171254725657, "Geometry::", "Mesh" { + Vertices: *432 { + a: 5,0.5,-1.266571,5,0,-0.62,3.75,0.5,-1.266571,3.75,0,-0.62,-1.25,0,-5,-1.25,0.5,-4.353428,-3.75,0,-4.353428,-3.75,0.5,-3.706857,-3.75,0,-4.353428,-3.75,0.5,-3.706857,-5,0,-4.353428,-5,0.5,-3.706857,1.25,0.5,-1.913143,1.25,0,-1.266571,-1.25,0.5,-1.913143,-1.25,0,-1.266571,-1.25,0.5,-1.913143,-1.25,0,-1.266571,-3.75,0.5,-1.266571,-3.75,0,-0.62,5,0,-4.353428,5,0.5,-3.706857,3.75,0,-4.353428,3.75,0.5,-3.706857,3.75,0.5,-1.266571,3.75,0,-0.62,1.25,0.5,-1.913143,1.25,0,-1.266571,1.25,0,-5,1.25,0.5,-4.353428,-1.25,0,-5,-1.25,0.5,-4.353428,-3.75,0.5,-1.266571,-3.75,0,-0.62,-5,0.5,-1.266571,-5,0,-0.62,3.75,0,-4.353428,3.75,0.5,-3.706857,1.25,0,-5,1.25,0.5,-4.353428,1.25,0.5,3.086857,1.25,0,3.733428,-1.25,0.5,3.086857,-1.25,0,3.733428,-1.25,0,7.219114E-14,-1.25,0.5,0.6465715,-3.75,0,0.6465715,-3.75,0.5,1.293143,5,0.5,3.733428,5,0,4.38,3.75,0.5,3.733428,3.75,0,4.38,5,0,0.6465715,5,0.5,1.293143,3.75,0,0.6465715,3.75,0.5,1.293143,3.75,0,0.6465715,3.75,0.5,1.293143,1.25,0,7.219114E-14,1.25,0.5,0.6465715,3.75,0.5,3.733428,3.75,0,4.38,1.25,0.5,3.086857,1.25,0,3.733428,-3.75,0.5,3.733428,-3.75,0,4.38,-5,0.5,3.733428,-5,0,4.38,-3.75,0,0.6465715,-3.75,0.5,1.293143,-5,0,0.6465715,-5,0.5,1.293143,1.25,0,7.219114E-14,1.25,0.5,0.6465715,-1.25,0,7.219114E-14,-1.25,0.5,0.6465715,-1.25,0.5,3.086857,-1.25,0,3.733428,-3.75,0.5,3.733428,-3.75,0,4.38,5,0,-0.62,5,0,-4.353428,3.75,0,-0.62,3.75,0,-4.353428,1.25,0,-1.266571,1.25,0,-5,-1.25,0,-1.266571,-1.25,0,-5,-3.75,0,-0.62,-3.75,0,-4.353428,-5,0,-0.62,-5,0,-4.353428,5,0,-4.353428,5,0,-0.62,5,0.5,-3.706857,5,0.5,-1.266571,5,0.5,-3.706857,5,0.5,-1.266571,3.75,0.5,-3.706857,3.75,0.5,-1.266571,1.25,0.5,-4.353428,1.25,0.5,-1.913143,-1.25,0.5,-4.353428,-1.25,0.5,-1.913143,-3.75,0.5,-3.706857,-3.75,0.5,-1.266571,-5,0.5,-3.706857,-5,0.5,-1.266571,-5,0,-4.353428,-5,0.5,-3.706857,-5,0,-0.62,-5,0.5,-1.266571,5,0,0.6465715,5,0,4.38,5,0.5,1.293143,5,0.5,3.733428,5,0,4.38,5,0,0.6465715,3.75,0,4.38,3.75,0,0.6465715,1.25,0,3.733428,1.25,0,7.219114E-14,-1.25,0,3.733428,-1.25,0,7.219114E-14,-3.75,0,4.38,-3.75,0,0.6465715,-5,0,4.38,-5,0,0.6465715,5,0.5,1.293143,5,0.5,3.733428,3.75,0.5,1.293143,3.75,0.5,3.733428,1.25,0.5,0.6465715,1.25,0.5,3.086857,-1.25,0.5,0.6465715,-1.25,0.5,3.086857,-3.75,0.5,1.293143,-3.75,0.5,3.733428,-5,0.5,1.293143,-5,0.5,3.733428,-5,0,0.6465715,-5,0.5,1.293143,-5,0,4.38,-5,0.5,3.733428 + } + PolygonVertexIndex: *264 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,83,-83,85,83,-85,86,85,-85,87,85,-87,88,87,-87,89,87,-89,90,89,-89,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,99,-99,101,99,-101,102,101,-101,103,101,-103,104,103,-103,105,103,-105,106,105,-105,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,119,-119,121,119,-121,122,121,-121,123,121,-123,124,123,-123,125,123,-125,126,125,-125,127,125,-127,128,130,-130,131,129,-131,132,131,-131,133,131,-133,134,133,-133,135,133,-135,136,135,-135,137,135,-137,138,137,-137,139,137,-139,140,142,-142,143,141,-143 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *792 { + a: 0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,-0.1562687,0.7813435,0.6042206,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *288 { + a: 19.68504,5.148837,19.68504,1.930939,14.76378,5.148837,14.76378,1.930939,-0.1644431,-15.85362,0.4729388,-12.69948,10.00193,-15.85362,10.63931,-12.69948,14.76378,-13.55839,14.76378,-10.3405,19.68504,-13.55839,19.68504,-10.3405,4.92126,7.16253,4.92126,3.944632,-4.92126,7.16253,-4.92126,3.944632,-2.878541,7.888999,-3.515924,4.734857,-13.04491,7.888999,-13.68229,4.734857,-19.68504,-13.55839,-19.68504,-10.3405,-14.76378,-13.55839,-14.76378,-10.3405,13.04491,7.888999,13.68229,4.734857,2.878541,7.888999,3.515924,4.734857,-4.92126,-15.57209,-4.92126,-12.35419,4.92126,-15.57209,4.92126,-12.35419,-14.76378,5.148837,-14.76378,1.930939,-19.68504,5.148837,-19.68504,1.930939,-10.00193,-15.85362,-10.63931,-12.69948,0.1644431,-15.85362,-0.4729388,-12.69948,4.92126,-8.409556,4.92126,-11.62745,-4.92126,-8.409556,-4.92126,-11.62745,4.764493,-0.9627981,5.401875,2.191344,14.93086,-0.9627981,15.56824,2.191344,19.68504,-10.42325,19.68504,-13.64115,14.76378,-10.42325,14.76378,-13.64115,-19.68504,2.013693,-19.68504,5.231591,-14.76378,2.013693,-14.76378,5.231591,-14.93086,-0.9627981,-15.56824,2.191344,-4.764493,-0.9627981,-5.401875,2.191344,17.97385,-7.001825,18.61123,-10.15597,7.807478,-7.001825,8.44486,-10.15597,-14.76378,-10.42325,-14.76378,-13.64115,-19.68504,-10.42325,-19.68504,-13.64115,14.76378,2.013693,14.76378,5.231591,19.68504,2.013693,19.68504,5.231591,-4.92126,2.248333E-13,-4.92126,3.217898,4.92126,2.248333E-13,4.92126,3.217898,-7.807478,-7.001825,-8.44486,-10.15597,-17.97385,-7.001825,-18.61123,-10.15597,19.68504,-2.440945,19.68504,-17.13948,14.76378,-2.440945,14.76378,-17.13948,4.92126,-4.986502,4.92126,-19.68504,-4.92126,-4.986502,-4.92126,-19.68504,-14.76378,-2.440945,-14.76378,-17.13948,-19.68504,-2.440945,-19.68504,-17.13948,17.13948,0,2.440945,0,14.59393,1.968504,4.986502,1.968504,-19.68504,-14.59393,-19.68504,-4.986502,-14.76378,-14.59393,-14.76378,-4.986502,-4.92126,-17.13948,-4.92126,-7.532059,4.92126,-17.13948,4.92126,-7.532059,14.76378,-14.59393,14.76378,-4.986502,19.68504,-14.59393,19.68504,-4.986502,-17.13948,0,-14.59393,1.968504,-2.440945,0,-4.986502,1.968504,-2.545557,0,-17.24409,0,-5.091114,1.968504,-14.69854,1.968504,19.68504,17.24409,19.68504,2.545557,14.76378,17.24409,14.76378,2.545557,4.92126,14.69854,4.92126,2.842171E-13,-4.92126,14.69854,-4.92126,2.842171E-13,-14.76378,17.24409,-14.76378,2.545557,-19.68504,17.24409,-19.68504,2.545557,-19.68504,5.091114,-19.68504,14.69854,-14.76378,5.091114,-14.76378,14.69854,-4.92126,2.545557,-4.92126,12.15298,4.92126,2.545557,4.92126,12.15298,14.76378,5.091114,14.76378,14.69854,19.68504,5.091114,19.68504,14.69854,2.545557,0,5.091114,1.968504,17.24409,0,14.69854,1.968504 + } + UVIndex: *264 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,83,82,85,83,84,86,85,84,87,85,86,88,87,86,89,87,88,90,89,88,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,99,98,101,99,100,102,101,100,103,101,102,104,103,102,105,103,104,106,105,104,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,119,118,121,119,120,122,121,120,123,121,122,124,123,122,125,123,124,126,125,124,127,125,126,128,130,129,131,129,130,132,131,130,133,131,132,134,133,132,135,133,134,136,135,134,137,135,136,138,137,136,139,137,138,140,142,141,143,141,142 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *88 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_dirtDoubleRow, Model::RootNode + C: "OO",4873864365516556978,0 + + ;Geometry::, Model::Mesh crops_dirtDoubleRow + C: "OO",4720037171254725657,4873864365516556978 + + ;Material::dirtDark, Model::Mesh crops_dirtDoubleRow + C: "OO",3022,4873864365516556978 + + ;Material::dirt, Model::Mesh crops_dirtDoubleRow + C: "OO",3020,4873864365516556978 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRow.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRow.fbx.import new file mode 100644 index 0000000..c0db4b9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRow.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://coogcoglum0r3" +path="res://.godot/imported/crops_dirtDoubleRow.fbx-42efca5f61d3e90cf63461b172c96fa9.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRow.fbx" +dest_files=["res://.godot/imported/crops_dirtDoubleRow.fbx-42efca5f61d3e90cf63461b172c96fa9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowCorner.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowCorner.fbx new file mode 100644 index 0000000..3cceb04 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowCorner.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 147 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_dirtDoubleRowCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_dirtDoubleRowCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4906638516007735054, "Model::crops_dirtDoubleRowCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5483625623300032411, "Geometry::", "Mesh" { + Vertices: *270 { + a: 5,-3.205931E-30,-4.353428,5,-3.205931E-30,-0.62,5,0.5,-3.706857,5,0.5,-1.266571,0.62,-3.205931E-30,-5,4.353428,-3.205931E-30,-5,1.266571,0.5,-5,3.706857,0.5,-5,5,0.5,1.293143,5,0.5,3.733428,1.853428,0.5,0.4500216,2.739622,0.5,3.435844,0.6332856,0.5,2.563371,-0.4500216,0.5,-1.853428,-1.175467,0.5,1.175467,-1.293143,0.5,-5,-2.563371,0.5,-0.6332858,-3.733428,0.5,-5,-3.435844,0.5,-2.739623,5,-3.205931E-30,0.6465715,5,-3.205931E-30,4.38,5,0.5,1.293143,5,0.5,3.733428,5,0.5,-3.706857,5,0.5,-1.266571,4.085609,0.5,-4.085609,3.133286,0.5,-1.766756,3.706857,0.5,-5,1.266571,0.5,-5,1.766756,0.5,-3.133286,-4.38,-3.205931E-30,-5,-0.6465715,-3.205931E-30,-5,-3.733428,0.5,-5,-1.293143,0.5,-5,2.176714,-3.205931E-30,-0.1099257,1.853428,0.5,0.4500216,0.1099257,-3.205931E-30,-2.176714,-0.4500216,0.5,-1.853428,-3.733428,0.5,-5,-3.435844,0.5,-2.739623,-4.060384,-3.205931E-30,-2.572277,-4.38,-3.205931E-30,-5,0.1099257,-3.205931E-30,-2.176714,-0.4500216,0.5,-1.853428,-0.6465715,-3.205931E-30,-5,-1.293143,0.5,-5,-2.563371,0.5,-0.6332858,-3.123318,-3.205931E-30,-0.31,-3.435844,0.5,-2.739623,-4.060384,-3.205931E-30,-2.572277,2.739622,0.5,3.435844,5,0.5,3.733428,2.572277,-3.205931E-30,4.060384,5,-3.205931E-30,4.38,-1.175467,0.5,1.175467,0.6332856,0.5,2.563371,-1.632662,-3.205931E-30,1.632662,0.31,-3.205931E-30,3.123318,0.6332856,0.5,2.563371,2.739622,0.5,3.435844,0.31,-3.205931E-30,3.123318,2.572277,-3.205931E-30,4.060384,-1.175467,0.5,1.175467,-1.632662,-3.205931E-30,1.632662,-2.563371,0.5,-0.6332858,-3.123318,-3.205931E-30,-0.31,1.766756,0.5,-3.133286,1.206809,-3.205931E-30,-2.81,1.266571,0.5,-5,0.62,-3.205931E-30,-5,4.542805,-3.205931E-30,-4.542805,4.085609,0.5,-4.085609,4.353428,-3.205931E-30,-5,3.706857,0.5,-5,5,0.5,-1.266571,5,-3.205931E-30,-0.62,3.133286,0.5,-1.766756,2.81,-3.205931E-30,-1.206809,3.133286,0.5,-1.766756,2.81,-3.205931E-30,-1.206809,1.766756,0.5,-3.133286,1.206809,-3.205931E-30,-2.81,5,0.5,-3.706857,4.085609,0.5,-4.085609,5,-3.205931E-30,-4.353428,4.542805,-3.205931E-30,-4.542805,5,0.5,1.293143,1.853428,0.5,0.4500216,5,-3.205931E-30,0.6465715,2.176714,-3.205931E-30,-0.1099257 + } + PolygonVertexIndex: *150 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,12,-14,15,14,-14,16,14,-16,17,16,-16,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,26,-26,28,26,-28,29,26,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,38,41,-41,42,44,-44,45,43,-45,46,48,-48,48,49,-48,50,52,-52,51,52,-54,54,56,-56,55,56,-58,58,60,-60,59,60,-62,62,64,-64,64,65,-64,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *450 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.4419244,0.7806444,-0.4419244,0.4419244,0.7806444,-0.4419244,0.4419244,0.7806444,-0.4419244,0.4419244,0.7806444,-0.4419244,0.4419244,0.7806444,-0.4419244,0.4419244,0.7806444,-0.4419244,-0.6097617,0.7885089,0.08027664,-0.6097617,0.7885089,0.08027664,-0.6097617,0.7885089,0.08027664,-0.6097617,0.7885089,0.08027664,-0.6097617,0.7885089,0.08027664,-0.6097617,0.7885089,0.08027664,0.60368,0.7806444,-0.1617556,0.60368,0.7806444,-0.1617556,0.60368,0.7806444,-0.1617556,0.60368,0.7806444,-0.1617556,0.60368,0.7806444,-0.1617556,0.60368,0.7806444,-0.1617556,-0.5682074,0.7885089,0.2353592,-0.5682074,0.7885089,0.2353592,-0.5682074,0.7885089,0.2353592,-0.5682074,0.7885089,0.2353592,-0.5682074,0.7885089,0.2353592,-0.5682074,0.7885089,0.2353592,-0.08027664,0.7885089,0.6097617,-0.08027664,0.7885089,0.6097617,-0.08027664,0.7885089,0.6097617,-0.08027664,0.7885089,0.6097617,-0.08027664,0.7885089,0.6097617,-0.08027664,0.7885089,0.6097617,-0.3744024,0.7885089,0.4879307,-0.3744024,0.7885089,0.4879307,-0.3744024,0.7885089,0.4879307,-0.3744024,0.7885089,0.4879307,-0.3744024,0.7885089,0.4879307,-0.3744024,0.7885089,0.4879307,-0.2353592,0.7885089,0.5682074,-0.2353592,0.7885089,0.5682074,-0.2353592,0.7885089,0.5682074,-0.2353592,0.7885089,0.5682074,-0.2353592,0.7885089,0.5682074,-0.2353592,0.7885089,0.5682074,-0.4879307,0.7885089,0.3744024,-0.4879307,0.7885089,0.3744024,-0.4879307,0.7885089,0.3744024,-0.4879307,0.7885089,0.3744024,-0.4879307,0.7885089,0.3744024,-0.4879307,0.7885089,0.3744024,-0.60368,0.7806444,0.1617556,-0.60368,0.7806444,0.1617556,-0.60368,0.7806444,0.1617556,-0.60368,0.7806444,0.1617556,-0.60368,0.7806444,0.1617556,-0.60368,0.7806444,0.1617556,0.592995,0.7668274,-0.2456266,0.592995,0.7668274,-0.2456266,0.592995,0.7668274,-0.2456266,0.592995,0.7668274,-0.2456266,0.592995,0.7668274,-0.2456266,0.592995,0.7668274,-0.2456266,-0.1617555,0.7806444,0.60368,-0.1617555,0.7806444,0.60368,-0.1617555,0.7806444,0.60368,-0.1617555,0.7806444,0.60368,-0.1617555,0.7806444,0.60368,-0.1617555,0.7806444,0.60368,-0.4419244,0.7806444,0.4419244,-0.4419244,0.7806444,0.4419244,-0.4419244,0.7806444,0.4419244,-0.4419244,0.7806444,0.4419244,-0.4419244,0.7806444,0.4419244,-0.4419244,0.7806444,0.4419244,0.2456266,0.7668274,-0.5929951,0.2456266,0.7668274,-0.5929951,0.2456266,0.7668274,-0.5929951,0.2456266,0.7668274,-0.5929951,0.2456266,0.7668274,-0.5929951,0.2456266,0.7668274,-0.5929951,0.1617555,0.7806444,-0.60368,0.1617555,0.7806444,-0.60368,0.1617555,0.7806444,-0.60368,0.1617555,0.7806444,-0.60368,0.1617555,0.7806444,-0.60368,0.1617555,0.7806444,-0.60368 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *180 { + a: 17.13948,2.131628E-13,2.440945,2.131628E-13,14.59393,1.968504,4.986502,1.968504,-2.440945,1.616499E-07,-17.13948,1.616499E-07,-4.986501,1.968504,-14.59393,1.968504,-19.68504,5.091114,-19.68504,14.69854,-7.296963,1.771739,-10.78591,13.52695,-2.493251,10.09201,1.771739,-7.296963,4.627821,4.627821,5.091114,-19.68504,10.09201,-2.493251,14.69854,-19.68504,13.52695,-10.78592,-2.545557,1.421085E-13,-17.24409,1.421085E-13,-5.091114,1.968504,-14.69854,1.968504,-19.68504,-14.59393,-19.68504,-4.986502,-16.08508,-16.08508,-12.33577,-6.955732,-14.59393,-19.68504,-4.986501,-19.68504,-6.955732,-12.33577,17.24409,7.548323E-08,2.545557,7.548323E-08,14.69854,1.968504,5.091114,1.968504,-5.753702,-4.969381,-6.41254,-1.819651,5.753702,-4.969381,6.41254,-1.819651,-21.43517,-8.254094,-12.45926,-8.254094,-12.127,-11.45479,-21.76744,-11.45479,8.165723,-2.057813,7.506885,1.091917,19.67313,-2.057813,20.33196,1.091917,-6.165509,-5.38889,-5.833248,-8.589588,-15.14142,-5.38889,-15.47369,-8.589588,12.45926,-8.254094,21.43517,-8.254094,12.127,-11.45479,21.76744,-11.45479,-0.8542585,-3.905751,8.121656,-3.905751,-1.18652,-7.106449,8.453918,-7.106449,6.165509,-5.38889,15.14142,-5.38889,5.833247,-8.589588,15.47369,-8.589588,0.8542582,-3.905751,1.18652,-7.106449,-8.121656,-3.905751,-8.453918,-7.106449,-10.11516,8.967587,-9.456325,5.817857,-17.72369,8.967587,-18.38252,5.817857,9.679323,-17.91919,8.705181,-14.85228,11.62761,-17.91919,12.60175,-14.85228,17.72369,8.967587,18.38252,5.817857,10.11516,8.967587,9.456325,5.817857,3.804261,11.87916,4.4631,8.729425,-3.804262,11.87916,-4.4631,8.729425,-12.60175,-14.85228,-8.705183,-14.85228,-11.62761,-17.91919,-9.679326,-17.91919,-20.33196,1.091917,-7.506885,1.091917,-19.67313,-2.057813,-8.165723,-2.057813 + } + UVIndex: *150 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,12,13,15,14,13,16,14,15,17,16,15,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,26,25,28,26,27,29,26,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,38,41,40,42,44,43,45,43,44,46,48,47,48,49,47,50,52,51,51,52,53,54,56,55,55,56,57,58,60,59,59,60,61,62,64,63,64,65,63,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *50 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_dirtDoubleRowCorner, Model::RootNode + C: "OO",4906638516007735054,0 + + ;Geometry::, Model::Mesh crops_dirtDoubleRowCorner + C: "OO",5483625623300032411,4906638516007735054 + + ;Material::dirt, Model::Mesh crops_dirtDoubleRowCorner + C: "OO",3020,4906638516007735054 + + ;Material::dirtDark, Model::Mesh crops_dirtDoubleRowCorner + C: "OO",3022,4906638516007735054 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowCorner.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowCorner.fbx.import new file mode 100644 index 0000000..8fce943 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cevsw3ls0cjvb" +path="res://.godot/imported/crops_dirtDoubleRowCorner.fbx-3d29fb882dc435d2e60ec6e1e1a5a2a7.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowCorner.fbx" +dest_files=["res://.godot/imported/crops_dirtDoubleRowCorner.fbx-3d29fb882dc435d2e60ec6e1e1a5a2a7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowEnd.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowEnd.fbx new file mode 100644 index 0000000..ba310df --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowEnd.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 237 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_dirtDoubleRowEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_dirtDoubleRowEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5427789571913605647, "Model::crops_dirtDoubleRowEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4925897312784543666, "Geometry::", "Mesh" { + Vertices: *336 { + a: -1.25,0,-5,-1.25,0.5,-4.353428,-3.75,0,-4.353428,-3.75,0.5,-3.706857,-3.75,0,-4.353428,-3.75,0.5,-3.706857,-5,0,-4.353428,-5,0.5,-3.706857,8.662937E-14,0.5,-1.913143,8.662937E-14,0,-1.266571,-1.25,0.5,-1.913143,-1.25,0,-1.266571,-1.25,0.5,-1.913143,-1.25,0,-1.266571,-3.75,0.5,-1.266571,-3.75,0,-0.62,8.662937E-14,0,-5,8.662937E-14,0.5,-4.353428,-1.25,0,-5,-1.25,0.5,-4.353428,-3.75,0.5,-1.266571,-3.75,0,-0.62,-5,0.5,-1.266571,-5,0,-0.62,-1.25,0,7.219114E-14,-1.25,0.5,0.6465715,-3.75,0,0.6465715,-3.75,0.5,1.293143,-3.75,0.5,3.733428,-3.75,0,4.38,-5,0.5,3.733428,-5,0,4.38,-3.75,0,0.6465715,-3.75,0.5,1.293143,-5,0,0.6465715,-5,0.5,1.293143,8.662937E-14,0.5,0.6465715,-1.25,0.5,0.6465715,0,0,0,-1.25,0,7.219114E-14,-1.25,0.5,3.086857,-1.25,0,3.733428,-3.75,0.5,3.733428,-3.75,0,4.38,8.662937E-14,0.5,3.086857,8.662937E-14,0,3.733428,-1.25,0.5,3.086857,-1.25,0,3.733428,1,1.602965E-30,-3.853428,1,1.602965E-30,-2.413143,8.662937E-14,0.5,-4.353428,8.662937E-14,0.5,-1.913143,8.662937E-14,0.5,-1.913143,1,1.602965E-30,-2.413143,8.662937E-14,0,-1.266571,8.662937E-14,0,-5,1,1.602965E-30,-3.853428,8.662937E-14,0.5,-4.353428,1,3.205931E-30,1.146572,8.662937E-14,0.5,0.6465715,0,0,0,8.662937E-14,0.5,3.086857,1,3.205931E-30,2.586857,8.662937E-14,0,3.733428,1,3.205931E-30,1.146572,1,3.205931E-30,2.586857,8.662937E-14,0.5,0.6465715,8.662937E-14,0.5,3.086857,8.662937E-14,0.5,-4.353428,8.662937E-14,0.5,-1.913143,-1.25,0.5,-4.353428,-1.25,0.5,-1.913143,-3.75,0.5,-3.706857,-3.75,0.5,-1.266571,-5,0.5,-3.706857,-5,0.5,-1.266571,-5,0,-4.353428,-5,0.5,-3.706857,-5,0,-0.62,-5,0.5,-1.266571,8.662937E-14,0.5,0.6465715,8.662937E-14,0.5,3.086857,-1.25,0.5,0.6465715,-1.25,0.5,3.086857,-3.75,0.5,1.293143,-3.75,0.5,3.733428,-5,0.5,1.293143,-5,0.5,3.733428,-5,0,0.6465715,-5,0.5,1.293143,-5,0,4.38,-5,0.5,3.733428,1,1.602965E-30,-2.413143,1,1.602965E-30,-3.853428,8.662937E-14,0,-1.266571,8.662937E-14,0,-5,-1.25,0,-1.266571,-1.25,0,-5,-3.75,0,-0.62,-3.75,0,-4.353428,-5,0,-0.62,-5,0,-4.353428,1,3.205931E-30,2.586857,1,3.205931E-30,1.146572,8.662937E-14,0,3.733428,0,0,0,-1.25,0,3.733428,-1.25,0,7.219114E-14,-3.75,0,4.38,-3.75,0,0.6465715,-5,0,4.38,-5,0,0.6465715 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,57,-57,58,60,-60,61,63,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,71,-71,73,71,-73,74,73,-73,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,83,-83,85,83,-85,86,85,-85,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,95,-95,97,95,-97,98,97,-97,99,97,-99,100,99,-99,101,99,-101,102,104,-104,105,103,-105,106,105,-105,107,105,-107,108,107,-107,109,107,-109,110,109,-109,111,109,-111 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: -0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,-0.1562687,0.7813435,-0.6042206,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0,0.791062,-0.611736,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0.1562687,0.7813435,0.6042206,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0,0.791062,0.611736,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.5742308,0.6476373,0.5008243,0.5742308,0.6476373,0.5008243,0.5742308,0.6476373,0.5008243,0.5742308,0.6476373,-0.5008243,0.5742308,0.6476373,-0.5008243,0.5742308,0.6476373,-0.5008243,0.5742308,0.6476373,-0.5008243,0.5742308,0.6476373,-0.5008243,0.5742308,0.6476373,-0.5008243,0.5742308,0.6476373,0.5008243,0.5742308,0.6476373,0.5008243,0.5742308,0.6476373,0.5008243,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *224 { + a: -0.1644431,-15.85362,0.4729388,-12.69948,10.00193,-15.85362,10.63931,-12.69948,14.76378,-13.55839,14.76378,-10.3405,19.68504,-13.55839,19.68504,-10.3405,3.410605E-13,7.16253,3.410605E-13,3.944632,-4.92126,7.16253,-4.92126,3.944632,-2.878541,7.888999,-3.515924,4.734857,-13.04491,7.888999,-13.68229,4.734857,-3.410605E-13,-15.57209,-3.410605E-13,-12.35419,4.92126,-15.57209,4.92126,-12.35419,-14.76378,5.148837,-14.76378,1.930939,-19.68504,5.148837,-19.68504,1.930939,4.764493,-0.9627981,5.401875,2.191344,14.93086,-0.9627981,15.56824,2.191344,-14.76378,-10.42325,-14.76378,-13.64115,-19.68504,-10.42325,-19.68504,-13.64115,14.76378,2.013693,14.76378,5.231591,19.68504,2.013693,19.68504,5.231591,-2.675626E-13,3.217898,4.92126,3.217898,0,0,4.92126,1.1243E-13,-7.807478,-7.001825,-8.44486,-10.15597,-17.97385,-7.001825,-18.61123,-10.15597,3.410605E-13,-8.409556,3.410605E-13,-11.62745,-4.92126,-8.409556,-4.92126,-11.62745,15.17098,-3.521367,9.500563,-3.521367,17.13948,0.8803417,7.532059,0.8803417,5.676418,4.706206,9.747722,2.122694,3.757999,2.122694,14.83532,-8.379685,8.8456,-8.379685,12.9169,-5.796174,-5.989722,4.440892E-16,-1.918419,2.583512,0,0,-9.158904,-3.673479,-5.087601,-6.256991,-11.07732,-6.256991,-4.514061,-3.521367,-10.18448,-3.521367,-2.545557,0.8803417,-12.15298,0.8803417,-3.410605E-13,-17.13948,-3.410605E-13,-7.532059,4.92126,-17.13948,4.92126,-7.532059,14.76378,-14.59393,14.76378,-4.986502,19.68504,-14.59393,19.68504,-4.986502,-17.13948,0,-14.59393,1.968504,-2.440945,0,-4.986502,1.968504,-3.410605E-13,2.545557,-3.410605E-13,12.15298,4.92126,2.545557,4.92126,12.15298,14.76378,5.091114,14.76378,14.69854,19.68504,5.091114,19.68504,14.69854,2.545557,0,5.091114,1.968504,17.24409,0,14.69854,1.968504,3.937008,-9.500563,3.937008,-15.17098,3.410605E-13,-4.986502,3.410605E-13,-19.68504,-4.92126,-4.986502,-4.92126,-19.68504,-14.76378,-2.440945,-14.76378,-17.13948,-19.68504,-2.440945,-19.68504,-17.13948,3.937008,10.18448,3.937008,4.514061,3.410605E-13,14.69854,0,0,-4.92126,14.69854,-4.92126,2.842171E-13,-14.76378,17.24409,-14.76378,2.545557,-19.68504,17.24409,-19.68504,2.545557 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,57,56,58,60,59,61,63,62,64,66,65,67,65,66,68,70,69,71,69,70,72,71,70,73,71,72,74,73,72,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,83,82,85,83,84,86,85,84,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,95,94,97,95,96,98,97,96,99,97,98,100,99,98,101,99,100,102,104,103,105,103,104,106,105,104,107,105,106,108,107,106,109,107,108,110,109,108,111,109,110 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_dirtDoubleRowEnd, Model::RootNode + C: "OO",5427789571913605647,0 + + ;Geometry::, Model::Mesh crops_dirtDoubleRowEnd + C: "OO",4925897312784543666,5427789571913605647 + + ;Material::dirtDark, Model::Mesh crops_dirtDoubleRowEnd + C: "OO",3022,5427789571913605647 + + ;Material::dirt, Model::Mesh crops_dirtDoubleRowEnd + C: "OO",3020,5427789571913605647 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowEnd.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowEnd.fbx.import new file mode 100644 index 0000000..672ad7f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bbfranpyi13sj" +path="res://.godot/imported/crops_dirtDoubleRowEnd.fbx-5a7fff21d0969a984c52b92b42b959a3.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_dirtDoubleRowEnd.fbx" +dest_files=["res://.godot/imported/crops_dirtDoubleRowEnd.fbx-5a7fff21d0969a984c52b92b42b959a3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRow.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRow.fbx new file mode 100644 index 0000000..dad78c1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRow.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 323 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_dirtRow.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_dirtRow.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4836279773841536863, "Model::crops_dirtRow", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5131169854504935175, "Geometry::", "Mesh" { + Vertices: *216 { + a: 1.25,0.5,1.55,1.25,0,2.17,-1.25,0.5,1.55,-1.25,0,2.17,-1.25,0,-3.41,-1.25,0.5,-2.79,-3.75,0,-2.79,-3.75,0.5,-2.17,-3.75,0.5,2.17,-3.75,0,2.79,-5,0.5,2.17,-5,0,2.79,1.25,0,-3.41,1.25,0.5,-2.79,-1.25,0,-3.41,-1.25,0.5,-2.79,3.75,0,-2.79,3.75,0.5,-2.17,1.25,0,-3.41,1.25,0.5,-2.79,-1.25,0.5,1.55,-1.25,0,2.17,-3.75,0.5,2.17,-3.75,0,2.79,5,0.5,2.17,5,0,2.79,3.75,0.5,2.17,3.75,0,2.79,3.75,0.5,2.17,3.75,0,2.79,1.25,0.5,1.55,1.25,0,2.17,-3.75,0,-2.79,-3.75,0.5,-2.17,-5,0,-2.79,-5,0.5,-2.17,5,0,-2.79,5,0.5,-2.17,3.75,0,-2.79,3.75,0.5,-2.17,-5,0,-2.79,-5,0.5,-2.17,-5,0,2.79,-5,0.5,2.17,5,0.5,-2.17,5,0.5,2.17,3.75,0.5,-2.17,3.75,0.5,2.17,1.25,0.5,-2.79,1.25,0.5,1.55,-1.25,0.5,-2.79,-1.25,0.5,1.55,-3.75,0.5,-2.17,-3.75,0.5,2.17,-5,0.5,-2.17,-5,0.5,2.17,5,0,2.79,5,0,-2.79,3.75,0,2.79,3.75,0,-2.79,1.25,0,2.17,1.25,0,-3.41,-1.25,0,2.17,-1.25,0,-3.41,-3.75,0,2.79,-3.75,0,-2.79,-5,0,2.79,-5,0,-2.79,5,0,-2.79,5,0,2.79,5,0.5,-2.17,5,0.5,2.17 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,47,-49,50,49,-49,51,49,-51,52,51,-51,53,51,-53,54,53,-53,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,59,-61,62,61,-61,63,61,-63,64,63,-63,65,63,-65,66,65,-65,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.1538296,0.7691479,0.6202806,-0.1538296,0.7691479,0.6202806,-0.1538296,0.7691479,0.6202806,-0.1538296,0.7691479,0.6202806,-0.1538296,0.7691479,0.6202806,-0.1538296,0.7691479,0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 4.92126,-3.514425,4.92126,-6.650222,-4.92126,-3.514425,-4.92126,-6.650222,1.545008,-10.93348,2.132563,-7.853217,11.68569,-10.93348,12.27324,-7.853217,-14.76378,-5.414488,-14.76378,-8.550285,-19.68504,-5.414488,-19.68504,-8.550285,-4.92126,-10.45035,-4.92126,-7.314552,4.92126,-10.45035,4.92126,-7.314552,-11.68569,-10.93348,-12.27324,-7.853217,-1.545008,-10.93348,-2.132563,-7.853217,-6.245451,-2.386479,-6.833007,-5.466738,-16.38613,-2.386479,-16.97369,-5.466738,19.68504,-5.414488,19.68504,-8.550285,14.76378,-5.414488,14.76378,-8.550285,16.38613,-2.386479,16.97369,-5.466738,6.245451,-2.386479,6.833007,-5.466738,14.76378,-8.550285,14.76378,-5.414488,19.68504,-8.550285,19.68504,-5.414488,-19.68504,-8.550285,-19.68504,-5.414488,-14.76378,-8.550285,-14.76378,-5.414488,-10.98425,0,-8.543307,1.968504,10.98425,0,8.543307,1.968504,-19.68504,-8.543307,-19.68504,8.543307,-14.76378,-8.543307,-14.76378,8.543307,-4.92126,-10.98425,-4.92126,6.102362,4.92126,-10.98425,4.92126,6.102362,14.76378,-8.543307,14.76378,8.543307,19.68504,-8.543307,19.68504,8.543307,19.68504,10.98425,19.68504,-10.98425,14.76378,10.98425,14.76378,-10.98425,4.92126,8.543307,4.92126,-13.4252,-4.92126,8.543307,-4.92126,-13.4252,-14.76378,10.98425,-14.76378,-10.98425,-19.68504,10.98425,-19.68504,-10.98425,10.98425,0,-10.98425,0,8.543307,1.968504,-8.543307,1.968504 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,47,48,50,49,48,51,49,50,52,51,50,53,51,52,54,53,52,55,53,54,56,58,57,59,57,58,60,59,58,61,59,60,62,61,60,63,61,62,64,63,62,65,63,64,66,65,64,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_dirtRow, Model::RootNode + C: "OO",4836279773841536863,0 + + ;Geometry::, Model::Mesh crops_dirtRow + C: "OO",5131169854504935175,4836279773841536863 + + ;Material::dirtDark, Model::Mesh crops_dirtRow + C: "OO",3022,4836279773841536863 + + ;Material::dirt, Model::Mesh crops_dirtRow + C: "OO",3020,4836279773841536863 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRow.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRow.fbx.import new file mode 100644 index 0000000..cdc1721 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRow.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bnlrluitlcs6s" +path="res://.godot/imported/crops_dirtRow.fbx-29cf661061e51e45a4744955892f1867.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRow.fbx" +dest_files=["res://.godot/imported/crops_dirtRow.fbx-29cf661061e51e45a4744955892f1867.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowCorner.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowCorner.fbx new file mode 100644 index 0000000..779e1ab --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowCorner.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 406 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_dirtRowCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_dirtRowCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4622623382046531930, "Model::crops_dirtRowCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4934040556253174087, "Geometry::", "Mesh" { + Vertices: *105 { + a: -1.209402,0.5,-1.415,-1.746338,0,-1.105,-2.17,0.5,-5,-2.79,0,-5,3.490542,0,-3.490542,3.067074,0.5,-3.067074,2.79,0,-5,2.17,0.5,-5,5,0,2.79,1.105,0,1.746338,5,0.5,2.17,1.415,0.5,1.209402,1.415,0.5,1.209402,1.105,0,1.746338,-1.209402,0.5,-1.415,-1.746338,0,-1.105,5,0.5,-2.17,3.067074,0.5,-3.067074,5,0,-2.79,3.490542,0,-3.490542,5,0.5,2.17,1.415,0.5,1.209402,5,0.5,-2.17,3.067074,0.5,-3.067074,2.17,0.5,-5,-2.17,0.5,-5,-1.209402,0.5,-1.415,-2.79,0,-5,2.79,0,-5,-2.17,0.5,-5,2.17,0.5,-5,5,0,-2.79,5,0,2.79,5,0.5,-2.17,5,0.5,2.17 + } + PolygonVertexIndex: *57 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,21,-24,25,21,-25,26,21,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *171 { + a: -0.619056,0.7676294,0.1658756,-0.619056,0.7676294,0.1658756,-0.619056,0.7676294,0.1658756,-0.619056,0.7676294,0.1658756,-0.619056,0.7676294,0.1658756,-0.619056,0.7676294,0.1658756,0.6026951,0.7473419,-0.2797118,0.6026951,0.7473419,-0.2797118,0.6026951,0.7473419,-0.2797118,0.6026951,0.7473419,-0.2797118,0.6026951,0.7473419,-0.2797118,0.6026951,0.7473419,-0.2797118,-0.1658756,0.7676294,0.619056,-0.1658756,0.7676294,0.619056,-0.1658756,0.7676294,0.619056,-0.1658756,0.7676294,0.619056,-0.1658756,0.7676294,0.619056,-0.1658756,0.7676294,0.619056,-0.4531805,0.7676294,0.4531805,-0.4531805,0.7676294,0.4531805,-0.4531805,0.7676294,0.4531805,-0.4531805,0.7676294,0.4531805,-0.4531805,0.7676294,0.4531805,-0.4531805,0.7676294,0.4531805,0.2797118,0.7473419,-0.6026951,0.2797118,0.7473419,-0.6026951,0.2797118,0.7473419,-0.6026951,0.2797118,0.7473419,-0.6026951,0.2797118,0.7473419,-0.6026951,0.2797118,0.7473419,-0.6026951,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *70 { + a: -6.613391,-1.162063,-5.981628,-4.233561,-21.22546,-1.162063,-21.85722,-4.233561,6.680111,-13.63929,5.869689,-10.67664,13.23168,-13.63929,14.25925,-10.67664,21.85722,-4.233561,5.981628,-4.233561,21.22546,-1.162063,6.613391,-1.162063,7.306034,1.700963,7.937797,-1.370534,-7.306034,1.700963,-7.937797,-1.370534,-14.25925,-10.67664,-5.869689,-10.67664,-13.23168,-13.63929,-6.680111,-13.63929,-19.68504,8.543307,-5.570866,4.761426,-19.68504,-8.543307,-12.07509,-12.07509,-8.543307,-19.68504,8.543307,-19.68504,4.761426,-5.570866,10.98425,-3.043655E-25,-10.98425,-3.043655E-25,8.543307,1.968504,-8.543307,1.968504,10.98425,-1.776357E-14,-10.98425,-1.776357E-14,8.543307,1.968504,-8.543307,1.968504 + } + UVIndex: *57 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,21,23,25,21,24,26,21,25,27,29,28,30,28,29,31,33,32,34,32,33 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *19 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_dirtRowCorner, Model::RootNode + C: "OO",4622623382046531930,0 + + ;Geometry::, Model::Mesh crops_dirtRowCorner + C: "OO",4934040556253174087,4622623382046531930 + + ;Material::dirtDark, Model::Mesh crops_dirtRowCorner + C: "OO",3022,4622623382046531930 + + ;Material::dirt, Model::Mesh crops_dirtRowCorner + C: "OO",3020,4622623382046531930 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowCorner.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowCorner.fbx.import new file mode 100644 index 0000000..0603f9b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://l60terspit6c" +path="res://.godot/imported/crops_dirtRowCorner.fbx-31268ecc18ff37ecce8a44a2a2f9e565.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowCorner.fbx" +dest_files=["res://.godot/imported/crops_dirtRowCorner.fbx-31268ecc18ff37ecce8a44a2a2f9e565.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowEnd.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowEnd.fbx new file mode 100644 index 0000000..97ef512 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowEnd.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 490 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_dirtRowEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_dirtRowEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5025691790000587015, "Model::crops_dirtRowEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4773504002492744484, "Geometry::", "Mesh" { + Vertices: *168 { + a: -1.25,0.5,1.55,-1.25,0,2.17,-3.75,0.5,2.17,-3.75,0,2.79,8.662937E-14,0.5,1.55,8.662937E-14,0,2.17,-1.25,0.5,1.55,-1.25,0,2.17,-1.25,0,-3.41,-1.25,0.5,-2.79,-3.75,0,-2.79,-3.75,0.5,-2.17,-3.75,0,-2.79,-3.75,0.5,-2.17,-5,0,-2.79,-5,0.5,-2.17,-3.75,0.5,2.17,-3.75,0,2.79,-5,0.5,2.17,-5,0,2.79,8.662937E-14,0,-3.41,8.662937E-14,0.5,-2.79,-1.25,0,-3.41,-1.25,0.5,-2.79,8.662937E-14,0.5,-2.79,8.662937E-14,0,-3.41,1,0,-1.91,8.662937E-14,0.5,1.55,1,0,0.67,8.662937E-14,0,2.17,1,0,-1.91,1,0,0.67,8.662937E-14,0.5,-2.79,8.662937E-14,0.5,1.55,-5,0,-2.79,-5,0.5,-2.17,-5,0,2.79,-5,0.5,2.17,8.662937E-14,0.5,-2.79,8.662937E-14,0.5,1.55,-1.25,0.5,-2.79,-1.25,0.5,1.55,-3.75,0.5,-2.17,-3.75,0.5,2.17,-5,0.5,-2.17,-5,0.5,2.17,1,0,0.67,1,0,-1.91,8.662937E-14,0,2.17,8.662937E-14,0,-3.41,-1.25,0,2.17,-1.25,0,-3.41,-3.75,0,2.79,-3.75,0,-2.79,-5,0,2.79,-5,0,-2.79 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,29,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,41,-41,43,41,-43,44,43,-43,45,43,-45,46,48,-48,49,47,-49,50,49,-49,51,49,-51,52,51,-51,53,51,-53,54,53,-53,55,53,-55 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0.1538296,0.7691479,0.6202806,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0.6855392,0.5667124,-0.4570262,0.6855392,0.5667124,-0.4570262,0.6855392,0.5667124,-0.4570262,0.6855392,0.5667124,0.4570262,0.6855392,0.5667124,0.4570262,0.6855392,0.5667124,0.4570262,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *112 { + a: -6.245451,-2.386479,-6.833007,-5.466738,-16.38613,-2.386479,-16.97369,-5.466738,3.410605E-13,-3.514425,3.410605E-13,-6.650222,-4.92126,-3.514425,-4.92126,-6.650222,1.545008,-10.93348,2.132563,-7.853217,11.68569,-10.93348,12.27324,-7.853217,14.76378,-8.550285,14.76378,-5.414488,19.68504,-8.550285,19.68504,-5.414488,-14.76378,-5.414488,-14.76378,-8.550285,-19.68504,-5.414488,-19.68504,-8.550285,-3.410605E-13,-10.45035,-3.410605E-13,-7.314552,4.92126,-10.45035,4.92126,-7.314552,9.13945,-1.831079,11.17044,-4.220284,4.072897,-4.220284,-5.077472,-0.29643,-0.0109193,-2.685636,-7.108461,-2.685636,7.519685,-3.521367,-2.637795,-3.521367,10.98425,0.8803417,-6.102362,0.8803417,-10.98425,0,-8.543307,1.968504,10.98425,0,8.543307,1.968504,-3.410605E-13,-10.98425,-3.410605E-13,6.102362,4.92126,-10.98425,4.92126,6.102362,14.76378,-8.543307,14.76378,8.543307,19.68504,-8.543307,19.68504,8.543307,3.937008,2.637795,3.937008,-7.519685,3.410605E-13,8.543307,3.410605E-13,-13.4252,-4.92126,8.543307,-4.92126,-13.4252,-14.76378,10.98425,-14.76378,-10.98425,-19.68504,10.98425,-19.68504,-10.98425 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,29,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,41,40,43,41,42,44,43,42,45,43,44,46,48,47,49,47,48,50,49,48,51,49,50,52,51,50,53,51,52,54,53,52,55,53,54 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_dirtRowEnd, Model::RootNode + C: "OO",5025691790000587015,0 + + ;Geometry::, Model::Mesh crops_dirtRowEnd + C: "OO",4773504002492744484,5025691790000587015 + + ;Material::dirtDark, Model::Mesh crops_dirtRowEnd + C: "OO",3022,5025691790000587015 + + ;Material::dirt, Model::Mesh crops_dirtRowEnd + C: "OO",3020,5025691790000587015 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowEnd.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowEnd.fbx.import new file mode 100644 index 0000000..b304412 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c0tk8lytklgi5" +path="res://.godot/imported/crops_dirtRowEnd.fbx-f0665728c95f42c7378ab9ac5f64fa95.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_dirtRowEnd.fbx" +dest_files=["res://.godot/imported/crops_dirtRowEnd.fbx-f0665728c95f42c7378ab9ac5f64fa95.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtSingle.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtSingle.fbx new file mode 100644 index 0000000..778968a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtSingle.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 574 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_dirtSingle.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_dirtSingle.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5566485793359183729, "Model::crops_dirtSingle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4738207385779750483, "Geometry::", "Mesh" { + Vertices: *180 { + a: -0.66,0.5,-1.143154,0.66,0.5,-1.143154,-0.5,1,-0.8660254,0.5,1,-0.8660254,1,1,0,0.5,1,0.8660254,0.5,1,-0.8660254,-0.5,1,-0.8660254,-0.5,1,0.8660254,-1,1,0,1,1,0,1.32,0.5,5.775292E-14,0.5,1,0.8660254,0.66,0.5,1.143154,-0.66,0.5,-1.143154,-0.5,1,-0.8660254,-1.32,0.5,5.775292E-14,-1,1,0,0.66,0.5,-1.143154,1.32,0.5,5.775292E-14,0.5,1,-0.8660254,1,1,0,0.66,0.5,1.143154,-0.66,0.5,1.143154,0.5,1,0.8660254,-0.5,1,0.8660254,2,0,0,1,0,-1.732051,1,0,1.732051,-1,0,1.732051,-1,0,-1.732051,-2,0,0,-0.66,0.5,1.143154,-1,0,1.732051,-1.32,0.5,5.775292E-14,-2,0,0,2,0,0,1,0,1.732051,1.32,0.5,5.775292E-14,0.66,0.5,1.143154,1,0,1.732051,-1,0,1.732051,0.66,0.5,1.143154,-0.66,0.5,1.143154,2,0,0,1.32,0.5,5.775292E-14,1,0,-1.732051,0.66,0.5,-1.143154,-1,1,0,-0.5,1,0.8660254,-1.32,0.5,5.775292E-14,-0.66,0.5,1.143154,-0.66,0.5,-1.143154,-1.32,0.5,5.775292E-14,-1,0,-1.732051,-2,0,0,1,0,-1.732051,0.66,0.5,-1.143154,-1,0,-1.732051,-0.66,0.5,-1.143154 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,8,-8,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,27,-30,31,30,-30,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0,0.4847743,-0.8746393,0,0.4847743,-0.8746393,0,0.4847743,-0.8746393,0,0.4847743,-0.8746393,0,0.4847743,-0.8746393,0,0.4847743,-0.8746393,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7574598,0.4847743,0.4373196,0.7574598,0.4847743,0.4373196,0.7574598,0.4847743,0.4373196,0.7574598,0.4847743,0.4373196,0.7574598,0.4847743,0.4373196,0.7574598,0.4847743,0.4373196,-0.7574598,0.4847743,-0.4373196,-0.7574598,0.4847743,-0.4373196,-0.7574598,0.4847743,-0.4373196,-0.7574598,0.4847743,-0.4373196,-0.7574598,0.4847743,-0.4373196,-0.7574598,0.4847743,-0.4373196,0.7574598,0.4847743,-0.4373196,0.7574598,0.4847743,-0.4373196,0.7574598,0.4847743,-0.4373196,0.7574598,0.4847743,-0.4373196,0.7574598,0.4847743,-0.4373196,0.7574598,0.4847743,-0.4373196,0,0.4847743,0.8746393,0,0.4847743,0.8746393,0,0.4847743,0.8746393,0,0.4847743,0.8746393,0,0.4847743,0.8746393,0,0.4847743,0.8746393,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5605137,0.7622986,0.3236127,-0.5605137,0.7622986,0.3236127,-0.5605137,0.7622986,0.3236127,-0.5605137,0.7622986,0.3236127,-0.5605137,0.7622986,0.3236127,-0.5605137,0.7622986,0.3236127,0.5605137,0.7622986,0.3236127,0.5605137,0.7622986,0.3236127,0.5605137,0.7622986,0.3236127,0.5605137,0.7622986,0.3236127,0.5605137,0.7622986,0.3236127,0.5605137,0.7622986,0.3236127,0,0.7622986,0.6472255,0,0.7622986,0.6472255,0,0.7622986,0.6472255,0,0.7622986,0.6472255,0,0.7622986,0.6472255,0,0.7622986,0.6472255,0.5605137,0.7622986,-0.3236127,0.5605137,0.7622986,-0.3236127,0.5605137,0.7622986,-0.3236127,0.5605137,0.7622986,-0.3236127,0.5605137,0.7622986,-0.3236127,0.5605137,0.7622986,-0.3236127,-0.7574598,0.4847743,0.4373196,-0.7574598,0.4847743,0.4373196,-0.7574598,0.4847743,0.4373196,-0.7574598,0.4847743,0.4373196,-0.7574598,0.4847743,0.4373196,-0.7574598,0.4847743,0.4373196,-0.5605137,0.7622986,-0.3236127,-0.5605137,0.7622986,-0.3236127,-0.5605137,0.7622986,-0.3236127,-0.5605137,0.7622986,-0.3236127,-0.5605137,0.7622986,-0.3236127,-0.5605137,0.7622986,-0.3236127,0,0.7622986,-0.6472255,0,0.7622986,-0.6472255,0,0.7622986,-0.6472255,0,0.7622986,-0.6472255,0,0.7622986,-0.6472255,0,0.7622986,-0.6472255 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *120 { + a: 2.598425,-0.4600465,-2.598425,-0.4600465,1.968504,1.7906,-1.968504,1.7906,-3.937008,0,-1.968504,3.409549,-1.968504,-3.409549,1.968504,-3.409549,1.968504,3.409549,3.937008,0,1.968504,1.7906,2.598425,-0.4600465,-1.968504,1.7906,-2.598425,-0.4600465,-2.598425,-0.4600465,-1.968504,1.7906,2.598425,-0.4600465,1.968504,1.7906,2.598425,-0.4600465,-2.598425,-0.4600465,1.968504,1.7906,-1.968504,1.7906,2.598425,-0.4600465,-2.598425,-0.4600465,1.968504,1.7906,-1.968504,1.7906,7.874016,0,3.937008,-6.819098,3.937008,6.819098,-3.937008,6.819098,-3.937008,-6.819098,-7.874016,0,2.598425,-2.156739,3.937008,-5.198189,-2.598425,-2.156739,-3.937008,-5.198189,3.937008,-5.198189,-3.937008,-5.198189,2.598425,-2.156739,-2.598425,-2.156739,3.937008,-5.198189,-3.937008,-5.198189,2.598425,-2.156739,-2.598425,-2.156739,-3.937008,-5.198189,-2.598425,-2.156739,3.937008,-5.198189,2.598425,-2.156739,-1.968504,1.7906,1.968504,1.7906,-2.598425,-0.4600465,2.598425,-0.4600465,-2.598425,-2.156739,2.598425,-2.156739,-3.937008,-5.198189,3.937008,-5.198189,-3.937008,-5.198189,-2.598425,-2.156739,3.937008,-5.198189,2.598425,-2.156739 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,8,7,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,27,29,31,30,29,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_dirtSingle, Model::RootNode + C: "OO",5566485793359183729,0 + + ;Geometry::, Model::Mesh crops_dirtSingle + C: "OO",4738207385779750483,5566485793359183729 + + ;Material::dirt, Model::Mesh crops_dirtSingle + C: "OO",3020,5566485793359183729 + + ;Material::dirtDark, Model::Mesh crops_dirtSingle + C: "OO",3022,5566485793359183729 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtSingle.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtSingle.fbx.import new file mode 100644 index 0000000..2794423 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_dirtSingle.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://difv1dvuowtlc" +path="res://.godot/imported/crops_dirtSingle.fbx-35111b70ebff8d5ab6a865c4d0d17521.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_dirtSingle.fbx" +dest_files=["res://.godot/imported/crops_dirtSingle.fbx-35111b70ebff8d5ab6a865c4d0d17521.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageA.fbx new file mode 100644 index 0000000..a941241 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageA.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 662 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_leafsStageA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_leafsStageA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5166488205856870222, "Model::crops_leafsStageA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5344180015434866076, "Geometry::", "Mesh" { + Vertices: *444 { + a: 0.411392,1.953057,0.5573598,0.5530881,2.544242,1.10438,-0.411392,1.953057,0.5573598,-0.5530879,2.544242,1.10438,-0.411392,1.953057,0.5573598,0.5530881,2.544242,1.10438,0.411392,1.953057,0.5573598,-0.5530879,2.544242,1.10438,0.32,0.42,-0.32,0.32,1.98,-0.32,0.32,0.42,0.32,0.32,1.06,0.32,0.32,1.98,0.32,0.32,0.42,0.32,0.32,1.98,-0.32,0.32,0.42,-0.32,0.32,1.06,0.32,0.32,1.98,0.32,0.5530879,1.904242,-1.10438,-0.5530881,1.904242,-1.10438,0.2696959,2.210747,-1.946893,-0.2696961,2.210747,-1.946893,0.2696959,2.210747,-1.946893,-0.5530881,1.904242,-1.10438,0.5530879,1.904242,-1.10438,-0.2696961,2.210747,-1.946893,1.10438,3.964242,-0.5530881,1.10438,3.964242,0.5530879,0.5573598,3.373057,-0.411392,0.5573598,3.373057,0.411392,0.5573598,3.373057,-0.411392,1.10438,3.964242,0.5530879,1.10438,3.964242,-0.5530881,0.5573598,3.373057,0.411392,0.5573598,3.373057,-0.411392,0.5573598,3.373057,0.411392,0.32,1.98,-0.32,0.32,1.98,0.32,0.32,1.98,-0.32,0.5573598,3.373057,0.411392,0.5573598,3.373057,-0.411392,0.32,1.98,0.32,1.946893,4.270748,0.2696959,1.10438,3.964242,0.5530879,1.946893,4.270748,-0.2696961,1.10438,3.964242,-0.5530881,1.946893,4.270748,-0.2696961,1.10438,3.964242,0.5530879,1.946893,4.270748,0.2696959,1.10438,3.964242,-0.5530881,0.32,0.42,-0.32,-0.32,0.42,-0.32,0.411392,1.313057,-0.5573598,-0.411392,1.313057,-0.5573598,0.411392,1.313057,-0.5573598,-0.32,0.42,-0.32,0.32,0.42,-0.32,-0.411392,1.313057,-0.5573598,-1.10438,3.824242,-0.5530879,-0.5573598,3.233057,-0.411392,-1.10438,3.824242,0.5530881,-0.5573598,3.233057,0.411392,-1.10438,3.824242,0.5530881,-0.5573598,3.233057,-0.411392,-1.10438,3.824242,-0.5530879,-0.5573598,3.233057,0.411392,-1.10438,3.824242,0.5530881,-1.946893,4.130747,0.2696961,-1.10438,3.824242,-0.5530879,-1.946893,4.130747,-0.2696959,-1.10438,3.824242,-0.5530879,-1.946893,4.130747,0.2696961,-1.10438,3.824242,0.5530881,-1.946893,4.130747,-0.2696959,-0.5573598,3.233057,-0.411392,-0.32,1.84,-0.32,-0.5573598,3.233057,0.411392,-0.32,1.84,0.32,-0.5573598,3.233057,0.411392,-0.32,1.84,-0.32,-0.5573598,3.233057,-0.411392,-0.32,1.84,0.32,0.5530881,2.544242,1.10438,0.2696961,2.850747,1.946893,-0.5530879,2.544242,1.10438,-0.2696959,2.850747,1.946893,-0.5530879,2.544242,1.10438,0.2696961,2.850747,1.946893,0.5530881,2.544242,1.10438,-0.2696959,2.850747,1.946893,-0.32,1.84,-0.32,-0.32,0.42,-0.32,-0.32,1.84,0.32,-0.32,0.42,0.32,-0.32,1.06,0.32,-0.32,1.84,0.32,-0.32,0.42,-0.32,-0.32,1.84,-0.32,-0.32,0.42,0.32,-0.32,1.06,0.32,-0.32,1.06,0.32,0.32,1.06,0.32,-0.411392,1.953057,0.5573598,0.411392,1.953057,0.5573598,-0.411392,1.953057,0.5573598,0.32,1.06,0.32,-0.32,1.06,0.32,0.411392,1.953057,0.5573598,-0.32,0.42,0.32,0.32,0.42,0.32,-0.32,1.06,0.32,0.32,1.06,0.32,-0.32,1.06,0.32,0.32,0.42,0.32,-0.32,0.42,0.32,0.32,1.06,0.32,-0.16,0,-0.16,0.16,0,-0.16,-0.32,0.42,-0.32,0.32,0.42,-0.32,-0.32,0.42,-0.32,-0.32,0.42,0.32,-0.16,0,-0.16,-0.16,4.511947E-16,0.16,0.16,4.511947E-16,0.16,-0.16,4.511947E-16,0.16,0.32,0.42,0.32,-0.32,0.42,0.32,-0.411392,1.313057,-0.5573598,-0.5530881,1.904242,-1.10438,0.411392,1.313057,-0.5573598,0.5530879,1.904242,-1.10438,0.411392,1.313057,-0.5573598,-0.5530881,1.904242,-1.10438,-0.411392,1.313057,-0.5573598,0.5530879,1.904242,-1.10438,0.32,0.42,-0.32,0.16,0,-0.16,0.32,0.42,0.32,0.16,4.511947E-16,0.16,0.32,0.42,0.32,-0.32,0.42,0.32,0.32,0.42,-0.32,-0.32,0.42,-0.32,0.16,4.511947E-16,0.16,0.16,0,-0.16,-0.16,4.511947E-16,0.16,-0.16,0,-0.16 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,9,-12,13,15,-15,14,16,-14,14,17,-17,18,20,-20,21,19,-21,22,24,-24,23,25,-23,26,28,-28,29,27,-29,30,32,-32,31,33,-31,34,36,-36,37,35,-37,38,40,-40,39,41,-39,42,44,-44,45,43,-45,46,48,-48,47,49,-47,50,52,-52,53,51,-53,54,56,-56,55,57,-55,58,60,-60,61,59,-61,62,64,-64,63,65,-63,66,68,-68,69,67,-69,70,72,-72,71,73,-71,74,76,-76,77,75,-77,78,80,-80,79,81,-79,82,84,-84,85,83,-85,86,88,-88,87,89,-87,90,92,-92,93,91,-93,94,93,-93,95,97,-97,96,98,-96,98,99,-96,100,102,-102,103,101,-103,104,106,-106,105,107,-105,108,110,-110,111,109,-111,112,114,-114,113,115,-113,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,133,135,-133,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0,0.2568657,0.9664471,0,0.2568657,0.9664471,0,0.2568657,0.9664471,0,0.2568657,0.9664471,0,0.2568657,0.9664471,0,0.2568657,0.9664471,0,-0.2568657,-0.9664471,0,-0.2568657,-0.9664471,0,-0.2568657,-0.9664471,0,-0.2568657,-0.9664471,0,-0.2568657,-0.9664471,0,-0.2568657,-0.9664471,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.2568657,-0.9664471,0,0.2568657,-0.9664471,0,0.2568657,-0.9664471,0,0.2568657,-0.9664471,0,0.2568657,-0.9664471,0,0.2568657,-0.9664471,0,-0.2568657,0.9664471,0,-0.2568657,0.9664471,0,-0.2568657,0.9664471,0,-0.2568657,0.9664471,0,-0.2568657,0.9664471,0,-0.2568657,0.9664471,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3559954,-0.9344878,0,-0.3559954,-0.9344878,0,-0.3559954,-0.9344878,0,-0.3559954,-0.9344878,0,-0.3559954,-0.9344878,0,-0.3559954,-0.9344878,-0.9344878,-0.3559954,0,-0.9344878,-0.3559954,0,-0.9344878,-0.3559954,0,-0.9344878,-0.3559954,0,-0.9344878,-0.3559954,0,-0.9344878,-0.3559954,0,0,-0.3559954,0.9344878,0,-0.3559954,0.9344878,0,-0.3559954,0.9344878,0,-0.3559954,0.9344878,0,-0.3559954,0.9344878,0,-0.3559954,0.9344878,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0.9344878,-0.3559954,0,0.9344878,-0.3559954,0,0.9344878,-0.3559954,0,0.9344878,-0.3559954,0,0.9344878,-0.3559954,0,0.9344878,-0.3559954,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *296 { + a: -1.619653,7.134107,-2.177512,10.30513,1.619654,7.134107,2.177512,10.30513,1.619654,7.134107,-2.177512,10.30513,-1.619653,7.134107,2.177512,10.30513,-1.259843,1.653543,-1.259843,7.795276,1.259843,1.653543,1.259843,4.173228,1.259843,7.795276,1.259843,1.653543,-1.259843,7.795276,-1.259843,1.653543,1.259843,4.173228,1.259843,7.795276,2.177512,6.649029,-2.177512,6.649029,1.061795,10.17869,-1.061795,10.17869,1.061795,10.17869,-2.177512,6.649029,2.177512,6.649029,-1.061795,10.17869,-2.177512,14.40854,2.177512,14.40854,-1.619653,11.23753,1.619654,11.23753,-1.619653,11.23753,2.177512,14.40854,-2.177512,14.40854,1.619654,11.23753,-1.619653,13.45966,1.619654,13.45966,-1.259843,7.896137,1.259843,7.896137,-1.259843,7.896137,1.619654,13.45966,-1.619653,13.45966,1.259843,7.896137,1.061795,12.9514,2.177512,9.421741,-1.061795,12.9514,-2.177512,9.421741,-1.061795,12.9514,2.177512,9.421741,1.061795,12.9514,-2.177512,9.421741,1.259843,1.921672,-1.259843,1.921672,1.619654,5.559711,-1.619654,5.559711,1.619654,5.559711,-1.259843,1.921672,1.259843,1.921672,-1.619654,5.559711,2.177512,14.00398,1.619654,10.83296,-2.177512,14.00398,-1.619653,10.83296,-2.177512,14.00398,1.619654,10.83296,2.177512,14.00398,-1.619653,10.83296,-2.177512,9.233304,-1.061795,12.76296,2.177512,9.233304,1.061795,12.76296,2.177512,9.233304,-1.061795,12.76296,-2.177512,9.233304,1.061795,12.76296,1.619654,12.91631,1.259843,7.352787,-1.619654,12.91631,-1.259843,7.352787,-1.619654,12.91631,1.259843,7.352787,1.619654,12.91631,-1.259843,7.352787,-2.177512,7.510454,-1.061795,11.04011,2.177512,7.510454,1.061795,11.04011,2.177512,7.510454,-1.061795,11.04011,-2.177512,7.510454,1.061795,11.04011,1.259843,7.244094,1.259843,1.653543,-1.259843,7.244094,-1.259843,1.653543,-1.259843,4.173228,-1.259843,7.244094,1.259843,1.653543,1.259843,7.244094,-1.259843,1.653543,-1.259843,4.173228,1.259843,4.356815,-1.259843,4.356815,1.619654,7.994853,-1.619654,7.994853,1.619654,7.994853,-1.259843,4.356815,1.259843,4.356815,-1.619654,7.994853,1.259843,1.653543,-1.259843,1.653543,1.259843,4.173228,-1.259843,4.173228,1.259843,4.173228,-1.259843,1.653543,1.259843,1.653543,-1.259843,4.173228,0.6299213,0.224249,-0.6299213,0.224249,1.259843,1.993714,-1.259843,1.993714,-1.259843,1.993714,1.259843,1.993714,-0.6299213,0.224249,0.6299213,0.224249,0.6299213,0.224249,-0.6299213,0.224249,1.259843,1.993714,-1.259843,1.993714,-1.619653,5.284679,-2.177512,8.455698,1.619654,5.284679,2.177512,8.455698,1.619654,5.284679,-2.177512,8.455698,-1.619653,5.284679,2.177512,8.455698,1.259843,1.993714,0.6299213,0.224249,-1.259843,1.993714,-0.6299213,0.224249,-1.259843,1.259843,1.259843,1.259843,-1.259843,-1.259843,1.259843,-1.259843,0.6299213,0.6299213,0.6299213,-0.6299213,-0.6299213,0.6299213,-0.6299213,-0.6299213 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,9,11,13,15,14,14,16,13,14,17,16,18,20,19,21,19,20,22,24,23,23,25,22,26,28,27,29,27,28,30,32,31,31,33,30,34,36,35,37,35,36,38,40,39,39,41,38,42,44,43,45,43,44,46,48,47,47,49,46,50,52,51,53,51,52,54,56,55,55,57,54,58,60,59,61,59,60,62,64,63,63,65,62,66,68,67,69,67,68,70,72,71,71,73,70,74,76,75,77,75,76,78,80,79,79,81,78,82,84,83,85,83,84,86,88,87,87,89,86,90,92,91,93,91,92,94,93,92,95,97,96,96,98,95,98,99,95,100,102,101,103,101,102,104,106,105,105,107,104,108,110,109,111,109,110,112,114,113,113,115,112,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,133,135,132,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_leafsStageA, Model::RootNode + C: "OO",5166488205856870222,0 + + ;Geometry::, Model::Mesh crops_leafsStageA + C: "OO",5344180015434866076,5166488205856870222 + + ;Material::grass, Model::Mesh crops_leafsStageA + C: "OO",3024,5166488205856870222 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageA.fbx.import new file mode 100644 index 0000000..a45c8fe --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://jr2ywf7784ao" +path="res://.godot/imported/crops_leafsStageA.fbx-a5f78eb83ea8fd1ebdef3cd7645b8295.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageA.fbx" +dest_files=["res://.godot/imported/crops_leafsStageA.fbx-a5f78eb83ea8fd1ebdef3cd7645b8295.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageB.fbx new file mode 100644 index 0000000..8e642fa --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageB.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 750 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_leafsStageB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_leafsStageB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5382907555087571236, "Model::crops_leafsStageB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4849693976033889836, "Geometry::", "Mesh" { + Vertices: *492 { + a: 0.411392,3.953057,0.5573598,0.5530881,4.544242,1.10438,-0.411392,3.953057,0.5573598,-0.5530879,4.544242,1.10438,-0.411392,3.953057,0.5573598,0.5530881,4.544242,1.10438,0.411392,3.953057,0.5573598,-0.5530879,4.544242,1.10438,0.32,1.92,-0.32,0.32,4.48,-0.32,0.32,1.92,0.32,0.32,2.56,0.32,0.32,4.48,0.32,0.32,1.92,0.32,0.32,4.48,-0.32,0.32,1.92,-0.32,0.32,2.56,0.32,0.32,4.48,0.32,0.5530879,3.904242,-1.10438,-0.5530881,3.904242,-1.10438,0.2696959,4.210747,-1.946893,-0.2696961,4.210747,-1.946893,0.2696959,4.210747,-1.946893,-0.5530881,3.904242,-1.10438,0.5530879,3.904242,-1.10438,-0.2696961,4.210747,-1.946893,1.10438,6.464242,-0.5530881,1.10438,6.464242,0.5530879,0.5573598,5.873056,-0.411392,0.5573598,5.873056,0.411392,0.5573598,5.873056,-0.411392,1.10438,6.464242,0.5530879,1.10438,6.464242,-0.5530881,0.5573598,5.873056,0.411392,0.5573598,5.873056,-0.411392,0.5573598,5.873056,0.411392,0.32,4.48,-0.32,0.32,4.48,0.32,0.32,4.48,-0.32,0.5573598,5.873056,0.411392,0.5573598,5.873056,-0.411392,0.32,4.48,0.32,1.946893,6.770747,0.2696959,1.10438,6.464242,0.5530879,1.946893,6.770747,-0.2696961,1.10438,6.464242,-0.5530881,1.946893,6.770747,-0.2696961,1.10438,6.464242,0.5530879,1.946893,6.770747,0.2696959,1.10438,6.464242,-0.5530881,0.32,1.92,-0.32,-0.32,1.92,-0.32,0.411392,3.313057,-0.5573598,-0.411392,3.313057,-0.5573598,0.411392,3.313057,-0.5573598,-0.32,1.92,-0.32,0.32,1.92,-0.32,-0.411392,3.313057,-0.5573598,-1.10438,5.824242,-0.5530879,-0.5573598,5.233057,-0.411392,-1.10438,5.824242,0.5530881,-0.5573598,5.233057,0.411392,-1.10438,5.824242,0.5530881,-0.5573598,5.233057,-0.411392,-1.10438,5.824242,-0.5530879,-0.5573598,5.233057,0.411392,-1.10438,5.824242,0.5530881,-1.946893,6.130747,0.2696961,-1.10438,5.824242,-0.5530879,-1.946893,6.130747,-0.2696959,-1.10438,5.824242,-0.5530879,-1.946893,6.130747,0.2696961,-1.10438,5.824242,0.5530881,-1.946893,6.130747,-0.2696959,-0.5573598,5.233057,-0.411392,-0.32,3.84,-0.32,-0.5573598,5.233057,0.411392,-0.32,3.84,0.32,-0.5573598,5.233057,0.411392,-0.32,3.84,-0.32,-0.5573598,5.233057,-0.411392,-0.32,3.84,0.32,0.24,2.255973E-16,0.24,-0.24,2.255973E-16,0.24,0.16,0.5,0.16,-0.16,0.5,0.16,0.24,2.255973E-16,0.24,0.24,-2.255973E-16,-0.24,-0.24,2.255973E-16,0.24,-0.24,-2.255973E-16,-0.24,-0.24,-2.255973E-16,-0.24,0.24,-2.255973E-16,-0.24,-0.16,0.5,-0.16,0.16,0.5,-0.16,-0.24,-2.255973E-16,-0.24,-0.16,0.5,-0.16,-0.24,2.255973E-16,0.24,-0.16,0.5,0.16,0.5530881,4.544242,1.10438,0.2696961,4.850748,1.946893,-0.5530879,4.544242,1.10438,-0.2696959,4.850748,1.946893,-0.5530879,4.544242,1.10438,0.2696961,4.850748,1.946893,0.5530881,4.544242,1.10438,-0.2696959,4.850748,1.946893,-0.32,3.84,-0.32,-0.32,1.92,-0.32,-0.32,3.84,0.32,-0.32,1.92,0.32,-0.32,2.56,0.32,-0.32,3.84,0.32,-0.32,1.92,-0.32,-0.32,3.84,-0.32,-0.32,1.92,0.32,-0.32,2.56,0.32,-0.32,2.56,0.32,0.32,2.56,0.32,-0.411392,3.953057,0.5573598,0.411392,3.953057,0.5573598,-0.411392,3.953057,0.5573598,0.32,2.56,0.32,-0.32,2.56,0.32,0.411392,3.953057,0.5573598,-0.32,1.92,0.32,0.32,1.92,0.32,-0.32,2.56,0.32,0.32,2.56,0.32,-0.32,2.56,0.32,0.32,1.92,0.32,-0.32,1.92,0.32,0.32,2.56,0.32,-0.16,0.5,-0.16,0.16,0.5,-0.16,-0.32,1.92,-0.32,0.32,1.92,-0.32,-0.32,1.92,-0.32,-0.32,1.92,0.32,-0.16,0.5,-0.16,-0.16,0.5,0.16,0.24,-2.255973E-16,-0.24,0.24,2.255973E-16,0.24,0.16,0.5,-0.16,0.16,0.5,0.16,0.16,0.5,0.16,-0.16,0.5,0.16,0.32,1.92,0.32,-0.32,1.92,0.32,-0.411392,3.313057,-0.5573598,-0.5530881,3.904242,-1.10438,0.411392,3.313057,-0.5573598,0.5530879,3.904242,-1.10438,0.411392,3.313057,-0.5573598,-0.5530881,3.904242,-1.10438,-0.411392,3.313057,-0.5573598,0.5530879,3.904242,-1.10438,0.32,1.92,-0.32,0.16,0.5,-0.16,0.32,1.92,0.32,0.16,0.5,0.16,0.32,1.92,0.32,-0.32,1.92,0.32,0.32,1.92,-0.32,-0.32,1.92,-0.32 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,9,-12,13,15,-15,14,16,-14,14,17,-17,18,20,-20,21,19,-21,22,24,-24,23,25,-23,26,28,-28,29,27,-29,30,32,-32,31,33,-31,34,36,-36,37,35,-37,38,40,-40,39,41,-39,42,44,-44,45,43,-45,46,48,-48,47,49,-47,50,52,-52,53,51,-53,54,56,-56,55,57,-55,58,60,-60,61,59,-61,62,64,-64,63,65,-63,66,68,-68,69,67,-69,70,72,-72,71,73,-71,74,76,-76,77,75,-77,78,80,-80,79,81,-79,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,103,105,-103,106,108,-108,109,107,-109,110,109,-109,111,113,-113,112,114,-112,114,115,-112,116,118,-118,119,117,-119,120,122,-122,121,123,-121,124,126,-126,127,125,-127,128,130,-130,129,131,-129,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,153,155,-153,156,158,-158,159,157,-159,160,162,-162,163,161,-163 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,0.6791583,-0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,0,-0.6791583,0.7339918,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,0.9397444,0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,0,-0.9397444,-0.3418779,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,-0.7339918,0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,0.7339918,-0.6791583,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,-0.9857926,0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,0.9857926,-0.1679669,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,-0.3418779,0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0.3418779,-0.9397444,0,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,0.1679669,0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0,-0.1679669,-0.9857926,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,0.7339918,0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,-0.7339918,-0.6791583,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,0.3418779,0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,-0.3418779,-0.9397444,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,0.9857926,0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,-0.9857926,-0.1679669,0,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,0.9397444,-0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,0,-0.9397444,0.3418779,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,0.1679669,-0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,-0.1679669,0.9857926,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1119675,-0.9937118,0,-0.1119675,-0.9937118,0,-0.1119675,-0.9937118,0,-0.1119675,-0.9937118,0,-0.1119675,-0.9937118,0,-0.1119675,-0.9937118,-0.9937118,-0.1119675,0,-0.9937118,-0.1119675,0,-0.9937118,-0.1119675,0,-0.9937118,-0.1119675,0,-0.9937118,-0.1119675,0,-0.9937118,-0.1119675,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0,-0.1119675,0.9937118,0,-0.1119675,0.9937118,0,-0.1119675,0.9937118,0,-0.1119675,0.9937118,0,-0.1119675,0.9937118,0,-0.1119675,0.9937118,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,0.6791583,0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0,-0.6791583,-0.7339918,0.9937118,-0.1119675,0,0.9937118,-0.1119675,0,0.9937118,-0.1119675,0,0.9937118,-0.1119675,0,0.9937118,-0.1119675,0,0.9937118,-0.1119675,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *328 { + a: -1.619653,12.91357,-2.177512,16.08459,1.619654,12.91357,2.177512,16.08459,1.619654,12.91357,-2.177512,16.08459,-1.619653,12.91357,2.177512,16.08459,-1.259843,7.559055,-1.259843,17.63779,1.259843,7.559055,1.259843,10.07874,1.259843,17.63779,1.259843,7.559055,-1.259843,17.63779,-1.259843,7.559055,1.259843,10.07874,1.259843,17.63779,2.177512,9.340981,-2.177512,9.340981,1.061795,12.87064,-1.061795,12.87064,1.061795,12.87064,-2.177512,9.340981,2.177512,9.340981,-1.061795,12.87064,-2.177512,21.63287,2.177512,21.63287,-1.619653,18.46185,1.619654,18.46185,-1.619653,18.46185,2.177512,21.63287,-2.177512,21.63287,1.619654,18.46185,-1.619653,23.16234,1.619654,23.16234,-1.259843,17.59882,1.259843,17.59882,-1.259843,17.59882,1.619654,23.16234,-1.619653,23.16234,1.259843,17.59882,1.061795,16.31634,2.177512,12.78668,-1.061795,16.31634,-2.177512,12.78668,-1.061795,16.31634,2.177512,12.78668,1.061795,16.31634,-2.177512,12.78668,1.259843,7.663273,-1.259843,7.663273,1.619654,13.22679,-1.619654,13.22679,1.619654,13.22679,-1.259843,7.663273,1.259843,7.663273,-1.619654,13.22679,2.177512,19.78345,1.619654,16.61243,-2.177512,19.78345,-1.619653,16.61243,-2.177512,19.78345,1.619654,16.61243,2.177512,19.78345,-1.619653,16.61243,-2.177512,11.92526,-1.061795,15.45492,2.177512,11.92526,1.061795,15.45492,2.177512,11.92526,-1.061795,15.45492,-2.177512,11.92526,1.061795,15.45492,1.619654,20.67845,1.259843,15.11493,-1.619654,20.67845,-1.259843,15.11493,-1.619654,20.67845,1.259843,15.11493,1.619654,20.67845,-1.259843,15.11493,0.9448819,-0.1492824,-0.9448819,-0.1492824,0.6299213,1.844259,-0.6299213,1.844259,0.9448819,0.9448819,0.9448819,-0.9448819,-0.9448819,0.9448819,-0.9448819,-0.9448819,0.9448819,-0.1492824,-0.9448819,-0.1492824,0.6299213,1.844259,-0.6299213,1.844259,-0.9448819,-0.1492824,-0.6299213,1.844259,0.9448819,-0.1492824,0.6299213,1.844259,-2.177512,10.20241,-1.061795,13.73207,2.177512,10.20241,1.061795,13.73207,2.177512,10.20241,-1.061795,13.73207,-2.177512,10.20241,1.061795,13.73207,1.259843,15.11811,1.259843,7.559055,-1.259843,15.11811,-1.259843,7.559055,-1.259843,10.07874,-1.259843,15.11811,1.259843,7.559055,1.259843,15.11811,-1.259843,7.559055,-1.259843,10.07874,1.259843,10.14716,-1.259843,10.14716,1.619654,15.71068,-1.619654,15.71068,1.619654,15.71068,-1.259843,10.14716,1.259843,10.14716,-1.619654,15.71068,1.259843,7.559055,-1.259843,7.559055,1.259843,10.07874,-1.259843,10.07874,1.259843,10.07874,-1.259843,7.559055,1.259843,7.559055,-1.259843,10.07874,0.6299213,2.026656,-0.6299213,2.026656,1.259843,7.652584,-1.259843,7.652584,-1.259843,7.652584,1.259843,7.652584,-0.6299213,2.026656,0.6299213,2.026656,0.9448819,-0.1492824,-0.9448819,-0.1492824,0.6299213,1.844259,-0.6299213,1.844259,0.6299213,2.026656,-0.6299213,2.026656,1.259843,7.652584,-1.259843,7.652584,-1.619653,11.06414,-2.177512,14.23516,1.619654,11.06414,2.177512,14.23516,1.619654,11.06414,-2.177512,14.23516,-1.619653,11.06414,2.177512,14.23516,1.259843,7.652584,0.6299213,2.026656,-1.259843,7.652584,-0.6299213,2.026656,-1.259843,1.259843,1.259843,1.259843,-1.259843,-1.259843,1.259843,-1.259843 + } + UVIndex: *252 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,9,11,13,15,14,14,16,13,14,17,16,18,20,19,21,19,20,22,24,23,23,25,22,26,28,27,29,27,28,30,32,31,31,33,30,34,36,35,37,35,36,38,40,39,39,41,38,42,44,43,45,43,44,46,48,47,47,49,46,50,52,51,53,51,52,54,56,55,55,57,54,58,60,59,61,59,60,62,64,63,63,65,62,66,68,67,69,67,68,70,72,71,71,73,70,74,76,75,77,75,76,78,80,79,79,81,78,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,103,105,102,106,108,107,109,107,108,110,109,108,111,113,112,112,114,111,114,115,111,116,118,117,119,117,118,120,122,121,121,123,120,124,126,125,127,125,126,128,130,129,129,131,128,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,153,155,152,156,158,157,159,157,158,160,162,161,163,161,162 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_leafsStageB, Model::RootNode + C: "OO",5382907555087571236,0 + + ;Geometry::, Model::Mesh crops_leafsStageB + C: "OO",4849693976033889836,5382907555087571236 + + ;Material::grass, Model::Mesh crops_leafsStageB + C: "OO",3024,5382907555087571236 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageB.fbx.import new file mode 100644 index 0000000..85e137f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://t5716uyo7vrl" +path="res://.godot/imported/crops_leafsStageB.fbx-c131e1461eb7de06cc526210e4c009de.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_leafsStageB.fbx" +dest_files=["res://.godot/imported/crops_leafsStageB.fbx-c131e1461eb7de06cc526210e4c009de.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageA.fbx new file mode 100644 index 0000000..8dfa5dc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageA.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 19 + Millisecond: 965 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_wheatStageA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_wheatStageA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5716791864504886703, "Model::crops_wheatStageA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4989272687285083779, "Geometry::", "Mesh" { + Vertices: *4320 { + a: -1.337087,0,0.4903437,-1.389663,0,0.7685961,-1.388365,2.346999,0.5253236,-1.424643,2.346999,0.7173176,-1.388365,2.346999,0.5253236,-1.389663,0,0.7685961,-1.337087,0,0.4903437,-1.424643,2.346999,0.7173176,-1.615338,0,0.4377676,-1.580359,2.346999,0.489046,-1.667915,0,0.7160199,-1.616636,2.346999,0.6810402,-1.667915,0,0.7160199,-1.580359,2.346999,0.489046,-1.615338,0,0.4377676,-1.616636,2.346999,0.6810402,-1.663947,2.681118,0.3665096,-1.265829,2.681118,0.4417348,-1.580359,3.349357,0.489046,-1.388365,3.349357,0.5253236,-1.580359,3.349357,0.489046,-1.265829,2.681118,0.4417348,-1.663947,2.681118,0.3665096,-1.388365,3.349357,0.5253236,-1.341055,2.681118,0.8398541,-1.739173,2.681118,0.7646289,-1.424643,3.349357,0.7173176,-1.616636,3.349357,0.6810402,-1.424643,3.349357,0.7173176,-1.739173,2.681118,0.7646289,-1.341055,2.681118,0.8398541,-1.616636,3.349357,0.6810402,-1.424643,2.346999,0.7173176,-1.616636,2.346999,0.6810402,-1.341055,2.681118,0.8398541,-1.739173,2.681118,0.7646289,-1.341055,2.681118,0.8398541,-1.616636,2.346999,0.6810402,-1.424643,2.346999,0.7173176,-1.739173,2.681118,0.7646289,-1.663947,2.681118,0.3665096,-1.580359,3.349357,0.489046,-1.739173,2.681118,0.7646289,-1.616636,3.349357,0.6810402,-1.739173,2.681118,0.7646289,-1.580359,3.349357,0.489046,-1.663947,2.681118,0.3665096,-1.616636,3.349357,0.6810402,-1.337087,0,0.4903437,-1.615338,0,0.4377676,-1.389663,0,0.7685961,-1.667915,0,0.7160199,-1.389663,0,0.7685961,-1.615338,0,0.4377676,-1.337087,0,0.4903437,-1.667915,0,0.7160199,-1.389663,0,0.7685961,-1.667915,0,0.7160199,-1.424643,2.346999,0.7173176,-1.616636,2.346999,0.6810402,-1.424643,2.346999,0.7173176,-1.667915,0,0.7160199,-1.389663,0,0.7685961,-1.616636,2.346999,0.6810402,-1.265829,2.681118,0.4417348,-1.341055,2.681118,0.8398541,-1.388365,3.349357,0.5253236,-1.424643,3.349357,0.7173176,-1.388365,3.349357,0.5253236,-1.341055,2.681118,0.8398541,-1.265829,2.681118,0.4417348,-1.424643,3.349357,0.7173176,-1.580359,2.346999,0.489046,-1.388365,2.346999,0.5253236,-1.663947,2.681118,0.3665096,-1.265829,2.681118,0.4417348,-1.663947,2.681118,0.3665096,-1.388365,2.346999,0.5253236,-1.580359,2.346999,0.489046,-1.265829,2.681118,0.4417348,-1.663947,2.681118,0.3665096,-1.739173,2.681118,0.7646289,-1.580359,2.346999,0.489046,-1.616636,2.346999,0.6810402,-1.580359,2.346999,0.489046,-1.739173,2.681118,0.7646289,-1.663947,2.681118,0.3665096,-1.616636,2.346999,0.6810402,-1.265829,2.681118,0.4417348,-1.341055,2.681118,0.8398541,-1.663947,2.681118,0.3665096,-1.739173,2.681118,0.7646289,-1.663947,2.681118,0.3665096,-1.341055,2.681118,0.8398541,-1.265829,2.681118,0.4417348,-1.739173,2.681118,0.7646289,-1.388365,3.349357,0.5253236,-1.424643,3.349357,0.7173176,-1.580359,3.349357,0.489046,-1.616636,3.349357,0.6810402,-1.580359,3.349357,0.489046,-1.424643,3.349357,0.7173176,-1.388365,3.349357,0.5253236,-1.616636,3.349357,0.6810402,-1.265829,2.681118,0.4417348,-1.388365,2.346999,0.5253236,-1.341055,2.681118,0.8398541,-1.424643,2.346999,0.7173176,-1.341055,2.681118,0.8398541,-1.388365,2.346999,0.5253236,-1.265829,2.681118,0.4417348,-1.424643,2.346999,0.7173176,-1.615338,0,0.4377676,-1.337087,0,0.4903437,-1.580359,2.346999,0.489046,-1.388365,2.346999,0.5253236,-1.580359,2.346999,0.489046,-1.337087,0,0.4903437,-1.615338,0,0.4377676,-1.388365,2.346999,0.5253236,-0.585256,0,1.801017,-0.8304927,0,1.659429,-0.6013216,2.346999,1.741059,-0.7705349,2.346999,1.643363,-0.6013216,2.346999,1.741059,-0.8304927,0,1.659429,-0.585256,0,1.801017,-0.7705349,2.346999,1.643363,-0.3603488,2.681118,1.533454,-0.5036259,2.346999,1.571845,-0.5629308,2.681118,1.884336,-0.6013216,2.346999,1.741059,-0.5629308,2.681118,1.884336,-0.5036259,2.346999,1.571845,-0.3603488,2.681118,1.533454,-0.6013216,2.346999,1.741059,-0.6889048,0,1.414192,-0.6728393,2.346999,1.47415,-0.8304927,0,1.659429,-0.7705349,2.346999,1.643363,-0.8304927,0,1.659429,-0.6728393,2.346999,1.47415,-0.6889048,0,1.414192,-0.7705349,2.346999,1.643363,-0.4436681,0,1.555779,-0.585256,0,1.801017,-0.5036259,2.346999,1.571845,-0.6013216,2.346999,1.741059,-0.5036259,2.346999,1.571845,-0.585256,0,1.801017,-0.4436681,0,1.555779,-0.6013216,2.346999,1.741059,-0.5629308,2.681118,1.884336,-0.913812,2.681118,1.681755,-0.6013216,3.349357,1.741059,-0.7705349,3.349357,1.643363,-0.6013216,3.349357,1.741059,-0.913812,2.681118,1.681755,-0.5629308,2.681118,1.884336,-0.7705349,3.349357,1.643363,-0.3603488,2.681118,1.533454,-0.5629308,2.681118,1.884336,-0.5036259,3.349357,1.571845,-0.6013216,3.349357,1.741059,-0.5036259,3.349357,1.571845,-0.5629308,2.681118,1.884336,-0.3603488,2.681118,1.533454,-0.6013216,3.349357,1.741059,-0.5036259,3.349357,1.571845,-0.6013216,3.349357,1.741059,-0.6728393,3.349357,1.47415,-0.7705349,3.349357,1.643363,-0.6728393,3.349357,1.47415,-0.6013216,3.349357,1.741059,-0.5036259,3.349357,1.571845,-0.7705349,3.349357,1.643363,-0.6013216,2.346999,1.741059,-0.7705349,2.346999,1.643363,-0.5629308,2.681118,1.884336,-0.913812,2.681118,1.681755,-0.5629308,2.681118,1.884336,-0.7705349,2.346999,1.643363,-0.6013216,2.346999,1.741059,-0.913812,2.681118,1.681755,-0.3603488,2.681118,1.533454,-0.5629308,2.681118,1.884336,-0.71123,2.681118,1.330873,-0.913812,2.681118,1.681755,-0.71123,2.681118,1.330873,-0.5629308,2.681118,1.884336,-0.3603488,2.681118,1.533454,-0.913812,2.681118,1.681755,-0.71123,2.681118,1.330873,-0.913812,2.681118,1.681755,-0.6728393,2.346999,1.47415,-0.7705349,2.346999,1.643363,-0.6728393,2.346999,1.47415,-0.913812,2.681118,1.681755,-0.71123,2.681118,1.330873,-0.7705349,2.346999,1.643363,-0.6889048,0,1.414192,-0.4436681,0,1.555779,-0.6728393,2.346999,1.47415,-0.5036259,2.346999,1.571845,-0.6728393,2.346999,1.47415,-0.4436681,0,1.555779,-0.6889048,0,1.414192,-0.5036259,2.346999,1.571845,-0.6728393,2.346999,1.47415,-0.5036259,2.346999,1.571845,-0.71123,2.681118,1.330873,-0.3603488,2.681118,1.533454,-0.71123,2.681118,1.330873,-0.5036259,2.346999,1.571845,-0.6728393,2.346999,1.47415,-0.3603488,2.681118,1.533454,-0.4436681,0,1.555779,-0.6889048,0,1.414192,-0.585256,0,1.801017,-0.8304927,0,1.659429,-0.585256,0,1.801017,-0.6889048,0,1.414192,-0.4436681,0,1.555779,-0.8304927,0,1.659429,-0.71123,2.681118,1.330873,-0.6728393,3.349357,1.47415,-0.913812,2.681118,1.681755,-0.7705349,3.349357,1.643363,-0.913812,2.681118,1.681755,-0.6728393,3.349357,1.47415,-0.71123,2.681118,1.330873,-0.7705349,3.349357,1.643363,-0.71123,2.681118,1.330873,-0.3603488,2.681118,1.533454,-0.6728393,3.349357,1.47415,-0.5036259,3.349357,1.571845,-0.6728393,3.349357,1.47415,-0.3603488,2.681118,1.533454,-0.71123,2.681118,1.330873,-0.5036259,3.349357,1.571845,2.060845,1.681118,0.6738899,2.060845,1.681118,1.079054,2.165731,1.346999,0.7787762,2.165731,1.346999,0.9741676,2.165731,1.346999,0.7787762,2.060845,1.681118,1.079054,2.060845,1.681118,0.6738899,2.165731,1.346999,0.9741676,2.466008,1.681118,0.6738899,2.361122,1.346999,0.7787762,2.466008,1.681118,1.079054,2.361122,1.346999,0.9741676,2.466008,1.681118,1.079054,2.361122,1.346999,0.7787762,2.466008,1.681118,0.6738899,2.361122,1.346999,0.9741676,2.121839,0,0.7348839,2.405014,0,0.7348839,2.165731,1.346999,0.7787762,2.361122,1.346999,0.7787762,2.165731,1.346999,0.7787762,2.405014,0,0.7348839,2.121839,0,0.7348839,2.361122,1.346999,0.7787762,2.405014,0,0.7348839,2.405014,0,1.01806,2.361122,1.346999,0.7787762,2.361122,1.346999,0.9741676,2.361122,1.346999,0.7787762,2.405014,0,1.01806,2.405014,0,0.7348839,2.361122,1.346999,0.9741676,2.361122,1.346999,0.9741676,2.165731,1.346999,0.9741676,2.466008,1.681118,1.079054,2.060845,1.681118,1.079054,2.466008,1.681118,1.079054,2.165731,1.346999,0.9741676,2.361122,1.346999,0.9741676,2.060845,1.681118,1.079054,2.165731,1.346999,0.7787762,2.361122,1.346999,0.7787762,2.060845,1.681118,0.6738899,2.466008,1.681118,0.6738899,2.060845,1.681118,0.6738899,2.361122,1.346999,0.7787762,2.165731,1.346999,0.7787762,2.466008,1.681118,0.6738899,2.466008,1.681118,1.079054,2.060845,1.681118,1.079054,2.361122,2.349357,0.9741676,2.165731,2.349357,0.9741676,2.361122,2.349357,0.9741676,2.060845,1.681118,1.079054,2.466008,1.681118,1.079054,2.165731,2.349357,0.9741676,2.060845,1.681118,0.6738899,2.466008,1.681118,0.6738899,2.165731,2.349357,0.7787762,2.361122,2.349357,0.7787762,2.165731,2.349357,0.7787762,2.466008,1.681118,0.6738899,2.060845,1.681118,0.6738899,2.361122,2.349357,0.7787762,2.466008,1.681118,0.6738899,2.466008,1.681118,1.079054,2.361122,2.349357,0.7787762,2.361122,2.349357,0.9741676,2.361122,2.349357,0.7787762,2.466008,1.681118,1.079054,2.466008,1.681118,0.6738899,2.361122,2.349357,0.9741676,2.405014,0,1.01806,2.405014,0,0.7348839,2.121839,0,1.01806,2.121839,0,0.7348839,2.121839,0,1.01806,2.405014,0,0.7348839,2.405014,0,1.01806,2.121839,0,0.7348839,2.361122,2.349357,0.7787762,2.361122,2.349357,0.9741676,2.165731,2.349357,0.7787762,2.165731,2.349357,0.9741676,2.165731,2.349357,0.7787762,2.361122,2.349357,0.9741676,2.361122,2.349357,0.7787762,2.165731,2.349357,0.9741676,2.466008,1.681118,0.6738899,2.466008,1.681118,1.079054,2.060845,1.681118,0.6738899,2.060845,1.681118,1.079054,2.060845,1.681118,0.6738899,2.466008,1.681118,1.079054,2.466008,1.681118,0.6738899,2.060845,1.681118,1.079054,2.121839,0,0.7348839,2.165731,1.346999,0.7787762,2.121839,0,1.01806,2.165731,1.346999,0.9741676,2.121839,0,1.01806,2.165731,1.346999,0.7787762,2.121839,0,0.7348839,2.165731,1.346999,0.9741676,2.060845,1.681118,0.6738899,2.165731,2.349357,0.7787762,2.060845,1.681118,1.079054,2.165731,2.349357,0.9741676,2.060845,1.681118,1.079054,2.165731,2.349357,0.7787762,2.060845,1.681118,0.6738899,2.165731,2.349357,0.9741676,2.405014,0,1.01806,2.121839,0,1.01806,2.361122,1.346999,0.9741676,2.165731,1.346999,0.9741676,2.361122,1.346999,0.9741676,2.121839,0,1.01806,2.405014,0,1.01806,2.165731,1.346999,0.9741676,0.8201777,1.346999,1.933203,0.9730921,1.346999,1.811569,0.6727998,1.681118,1.916411,0.9898834,1.681118,1.664191,0.6727998,1.681118,1.916411,0.9730921,1.346999,1.811569,0.8201777,1.346999,1.933203,0.9898834,1.681118,1.664191,1.1564,0,1.971511,0.9347849,0,2.147792,1.094726,1.346999,1.964484,0.9418117,1.346999,2.086118,1.094726,1.346999,1.964484,0.9347849,0,2.147792,1.1564,0,1.971511,0.9418117,1.346999,2.086118,1.094726,1.346999,1.964484,0.9418117,1.346999,2.086118,1.242104,1.681118,1.981276,0.9250203,1.681118,2.233496,1.242104,1.681118,1.981276,0.9418117,1.346999,2.086118,1.094726,1.346999,1.964484,0.9250203,1.681118,2.233496,0.9801188,0,1.749895,1.1564,0,1.971511,0.9730921,1.346999,1.811569,1.094726,1.346999,1.964484,0.9730921,1.346999,1.811569,1.1564,0,1.971511,0.9801188,0,1.749895,1.094726,1.346999,1.964484,1.242104,1.681118,1.981276,0.9250203,1.681118,2.233496,1.094726,2.349357,1.964484,0.9418117,2.349357,2.086118,1.094726,2.349357,1.964484,0.9250203,1.681118,2.233496,1.242104,1.681118,1.981276,0.9418117,2.349357,2.086118,0.6727998,1.681118,1.916411,0.8201777,2.349357,1.933203,0.9250203,1.681118,2.233496,0.9418117,2.349357,2.086118,0.9250203,1.681118,2.233496,0.8201777,2.349357,1.933203,0.6727998,1.681118,1.916411,0.9418117,2.349357,2.086118,1.242104,1.681118,1.981276,0.9250203,1.681118,2.233496,0.9898834,1.681118,1.664191,0.6727998,1.681118,1.916411,0.9898834,1.681118,1.664191,0.9250203,1.681118,2.233496,1.242104,1.681118,1.981276,0.6727998,1.681118,1.916411,0.6727998,1.681118,1.916411,0.9898834,1.681118,1.664191,0.8201777,2.349357,1.933203,0.9730921,2.349357,1.811569,0.8201777,2.349357,1.933203,0.9898834,1.681118,1.664191,0.6727998,1.681118,1.916411,0.9730921,2.349357,1.811569,1.094726,2.349357,1.964484,0.9418117,2.349357,2.086118,0.9730921,2.349357,1.811569,0.8201777,2.349357,1.933203,0.9730921,2.349357,1.811569,0.9418117,2.349357,2.086118,1.094726,2.349357,1.964484,0.8201777,2.349357,1.933203,0.9898834,1.681118,1.664191,1.242104,1.681118,1.981276,0.9730921,2.349357,1.811569,1.094726,2.349357,1.964484,0.9730921,2.349357,1.811569,1.242104,1.681118,1.981276,0.9898834,1.681118,1.664191,1.094726,2.349357,1.964484,0.9898834,1.681118,1.664191,0.9730921,1.346999,1.811569,1.242104,1.681118,1.981276,1.094726,1.346999,1.964484,1.242104,1.681118,1.981276,0.9730921,1.346999,1.811569,0.9898834,1.681118,1.664191,1.094726,1.346999,1.964484,0.6727998,1.681118,1.916411,0.9250203,1.681118,2.233496,0.8201777,1.346999,1.933203,0.9418117,1.346999,2.086118,0.8201777,1.346999,1.933203,0.9250203,1.681118,2.233496,0.6727998,1.681118,1.916411,0.9418117,1.346999,2.086118,1.1564,0,1.971511,0.9801188,0,1.749895,0.9347849,0,2.147792,0.7585037,0,1.926176,0.9347849,0,2.147792,0.9801188,0,1.749895,1.1564,0,1.971511,0.7585037,0,1.926176,0.7585037,0,1.926176,0.8201777,1.346999,1.933203,0.9347849,0,2.147792,0.9418117,1.346999,2.086118,0.9347849,0,2.147792,0.8201777,1.346999,1.933203,0.7585037,0,1.926176,0.9418117,1.346999,2.086118,0.7585037,0,1.926176,0.9801188,0,1.749895,0.8201777,1.346999,1.933203,0.9730921,1.346999,1.811569,0.8201777,1.346999,1.933203,0.9801188,0,1.749895,0.7585037,0,1.926176,0.9730921,1.346999,1.811569,-1.211929,0,-2.103976,-1.489221,0,-2.1614,-1.269353,0,-1.826684,-1.546645,0,-1.884109,-1.269353,0,-1.826684,-1.489221,0,-2.1614,-1.211929,0,-2.103976,-1.546645,0,-1.884109,-1.139833,1.681118,-2.151334,-1.221995,1.681118,-1.754589,-1.536579,1.681118,-2.233496,-1.618741,1.681118,-1.836751,-1.536579,1.681118,-2.233496,-1.221995,1.681118,-1.754589,-1.139833,1.681118,-2.151334,-1.618741,1.681118,-1.836751,-1.26381,2.349357,-2.069897,-1.303433,2.349357,-1.878565,-1.455141,2.349357,-2.109519,-1.494764,2.349357,-1.918188,-1.455141,2.349357,-2.109519,-1.303433,2.349357,-1.878565,-1.26381,2.349357,-2.069897,-1.494764,2.349357,-1.918188,-1.536579,1.681118,-2.233496,-1.618741,1.681118,-1.836751,-1.455141,1.346999,-2.109519,-1.494764,1.346999,-1.918188,-1.455141,1.346999,-2.109519,-1.618741,1.681118,-1.836751,-1.536579,1.681118,-2.233496,-1.494764,1.346999,-1.918188,-1.211929,0,-2.103976,-1.269353,0,-1.826684,-1.26381,1.346999,-2.069897,-1.303433,1.346999,-1.878565,-1.26381,1.346999,-2.069897,-1.269353,0,-1.826684,-1.211929,0,-2.103976,-1.303433,1.346999,-1.878565,-1.489221,0,-2.1614,-1.455141,1.346999,-2.109519,-1.546645,0,-1.884109,-1.494764,1.346999,-1.918188,-1.546645,0,-1.884109,-1.455141,1.346999,-2.109519,-1.489221,0,-2.1614,-1.494764,1.346999,-1.918188,-1.489221,0,-2.1614,-1.211929,0,-2.103976,-1.455141,1.346999,-2.109519,-1.26381,1.346999,-2.069897,-1.455141,1.346999,-2.109519,-1.211929,0,-2.103976,-1.489221,0,-2.1614,-1.26381,1.346999,-2.069897,-1.303433,1.346999,-1.878565,-1.494764,1.346999,-1.918188,-1.221995,1.681118,-1.754589,-1.618741,1.681118,-1.836751,-1.221995,1.681118,-1.754589,-1.494764,1.346999,-1.918188,-1.303433,1.346999,-1.878565,-1.618741,1.681118,-1.836751,-1.139833,1.681118,-2.151334,-1.221995,1.681118,-1.754589,-1.26381,2.349357,-2.069897,-1.303433,2.349357,-1.878565,-1.26381,2.349357,-2.069897,-1.221995,1.681118,-1.754589,-1.139833,1.681118,-2.151334,-1.303433,2.349357,-1.878565,-1.139833,1.681118,-2.151334,-1.26381,1.346999,-2.069897,-1.221995,1.681118,-1.754589,-1.303433,1.346999,-1.878565,-1.221995,1.681118,-1.754589,-1.26381,1.346999,-2.069897,-1.139833,1.681118,-2.151334,-1.303433,1.346999,-1.878565,-1.536579,1.681118,-2.233496,-1.455141,2.349357,-2.109519,-1.618741,1.681118,-1.836751,-1.494764,2.349357,-1.918188,-1.618741,1.681118,-1.836751,-1.455141,2.349357,-2.109519,-1.536579,1.681118,-2.233496,-1.494764,2.349357,-1.918188,-1.455141,1.346999,-2.109519,-1.26381,1.346999,-2.069897,-1.536579,1.681118,-2.233496,-1.139833,1.681118,-2.151334,-1.536579,1.681118,-2.233496,-1.26381,1.346999,-2.069897,-1.455141,1.346999,-2.109519,-1.139833,1.681118,-2.151334,-1.536579,1.681118,-2.233496,-1.139833,1.681118,-2.151334,-1.455141,2.349357,-2.109519,-1.26381,2.349357,-2.069897,-1.455141,2.349357,-2.109519,-1.139833,1.681118,-2.151334,-1.536579,1.681118,-2.233496,-1.26381,2.349357,-2.069897,-1.269353,0,-1.826684,-1.546645,0,-1.884109,-1.303433,1.346999,-1.878565,-1.494764,1.346999,-1.918188,-1.303433,1.346999,-1.878565,-1.546645,0,-1.884109,-1.269353,0,-1.826684,-1.494764,1.346999,-1.918188,-1.221995,1.681118,-1.754589,-1.618741,1.681118,-1.836751,-1.303433,2.349357,-1.878565,-1.494764,2.349357,-1.918188,-1.303433,2.349357,-1.878565,-1.618741,1.681118,-1.836751,-1.221995,1.681118,-1.754589,-1.494764,2.349357,-1.918188,-2.52807,1.804779E-15,1.296663,-2.484179,0.8469987,1.340556,-2.52807,1.804779E-15,1.579839,-2.484179,0.8469987,1.535947,-2.52807,1.804779E-15,1.579839,-2.484179,0.8469987,1.340556,-2.52807,1.804779E-15,1.296663,-2.484179,0.8469987,1.535947,-2.183902,1.181118,1.235669,-2.183902,1.181118,1.640833,-2.589064,1.181118,1.235669,-2.589064,1.181118,1.640833,-2.589064,1.181118,1.235669,-2.183902,1.181118,1.640833,-2.183902,1.181118,1.235669,-2.589064,1.181118,1.640833,-2.244896,1.804779E-15,1.579839,-2.244896,1.804779E-15,1.296663,-2.52807,1.804779E-15,1.579839,-2.52807,1.804779E-15,1.296663,-2.52807,1.804779E-15,1.579839,-2.244896,1.804779E-15,1.296663,-2.244896,1.804779E-15,1.579839,-2.52807,1.804779E-15,1.296663,-2.484179,0.8469987,1.340556,-2.288788,0.8469987,1.340556,-2.589064,1.181118,1.235669,-2.183902,1.181118,1.235669,-2.589064,1.181118,1.235669,-2.288788,0.8469987,1.340556,-2.484179,0.8469987,1.340556,-2.183902,1.181118,1.235669,-2.52807,1.804779E-15,1.296663,-2.244896,1.804779E-15,1.296663,-2.484179,0.8469987,1.340556,-2.288788,0.8469987,1.340556,-2.484179,0.8469987,1.340556,-2.244896,1.804779E-15,1.296663,-2.52807,1.804779E-15,1.296663,-2.288788,0.8469987,1.340556,-2.183902,1.181118,1.235669,-2.288788,0.8469987,1.340556,-2.183902,1.181118,1.640833,-2.288788,0.8469987,1.535947,-2.183902,1.181118,1.640833,-2.288788,0.8469987,1.340556,-2.183902,1.181118,1.235669,-2.288788,0.8469987,1.535947,-2.183902,1.181118,1.235669,-2.183902,1.181118,1.640833,-2.288788,1.849357,1.340556,-2.288788,1.849357,1.535947,-2.288788,1.849357,1.340556,-2.183902,1.181118,1.640833,-2.183902,1.181118,1.235669,-2.288788,1.849357,1.535947,-2.244896,1.804779E-15,1.579839,-2.52807,1.804779E-15,1.579839,-2.288788,0.8469987,1.535947,-2.484179,0.8469987,1.535947,-2.288788,0.8469987,1.535947,-2.52807,1.804779E-15,1.579839,-2.244896,1.804779E-15,1.579839,-2.484179,0.8469987,1.535947,-2.183902,1.181118,1.640833,-2.589064,1.181118,1.640833,-2.288788,1.849357,1.535947,-2.484179,1.849357,1.535947,-2.288788,1.849357,1.535947,-2.589064,1.181118,1.640833,-2.183902,1.181118,1.640833,-2.484179,1.849357,1.535947,-2.589064,1.181118,1.235669,-2.484179,1.849357,1.340556,-2.589064,1.181118,1.640833,-2.484179,1.849357,1.535947,-2.589064,1.181118,1.640833,-2.484179,1.849357,1.340556,-2.589064,1.181118,1.235669,-2.484179,1.849357,1.535947,-2.288788,1.849357,1.340556,-2.288788,1.849357,1.535947,-2.484179,1.849357,1.340556,-2.484179,1.849357,1.535947,-2.484179,1.849357,1.340556,-2.288788,1.849357,1.535947,-2.288788,1.849357,1.340556,-2.484179,1.849357,1.535947,-2.589064,1.181118,1.235669,-2.589064,1.181118,1.640833,-2.484179,0.8469987,1.340556,-2.484179,0.8469987,1.535947,-2.484179,0.8469987,1.340556,-2.589064,1.181118,1.640833,-2.589064,1.181118,1.235669,-2.484179,0.8469987,1.535947,-2.288788,0.8469987,1.535947,-2.484179,0.8469987,1.535947,-2.183902,1.181118,1.640833,-2.589064,1.181118,1.640833,-2.183902,1.181118,1.640833,-2.484179,0.8469987,1.535947,-2.288788,0.8469987,1.535947,-2.589064,1.181118,1.640833,-2.589064,1.181118,1.235669,-2.183902,1.181118,1.235669,-2.484179,1.849357,1.340556,-2.288788,1.849357,1.340556,-2.484179,1.849357,1.340556,-2.183902,1.181118,1.235669,-2.589064,1.181118,1.235669,-2.288788,1.849357,1.340556,-2.244896,1.804779E-15,1.296663,-2.244896,1.804779E-15,1.579839,-2.288788,0.8469987,1.340556,-2.288788,0.8469987,1.535947,-2.288788,0.8469987,1.340556,-2.244896,1.804779E-15,1.579839,-2.244896,1.804779E-15,1.296663,-2.288788,0.8469987,1.535947,0.5355872,0,1.229114,0.3475799,0,1.440871,0.4736235,0.8469987,1.232795,0.3438985,0.8469987,1.378908,0.4736235,0.8469987,1.232795,0.3475799,0,1.440871,0.5355872,0,1.229114,0.3438985,0.8469987,1.378908,0.3475799,0,1.440871,0.1358215,0,1.252863,0.3438985,0.8469987,1.378908,0.1977852,0.8469987,1.249182,0.3438985,0.8469987,1.378908,0.1358215,0,1.252863,0.3475799,0,1.440871,0.1977852,0.8469987,1.249182,0.6216938,1.181118,1.223998,0.3526957,1.181118,1.526978,0.4736235,1.849357,1.232795,0.3438985,1.849357,1.378908,0.4736235,1.849357,1.232795,0.3526957,1.181118,1.526978,0.6216938,1.181118,1.223998,0.3438985,1.849357,1.378908,0.3187129,1.181118,0.9549991,0.3275102,1.849357,1.103069,0.04971485,1.181118,1.257979,0.1977852,1.849357,1.249182,0.04971485,1.181118,1.257979,0.3275102,1.849357,1.103069,0.3187129,1.181118,0.9549991,0.1977852,1.849357,1.249182,0.3275102,0.8469987,1.103069,0.4736235,0.8469987,1.232795,0.3187129,1.181118,0.9549991,0.6216938,1.181118,1.223998,0.3187129,1.181118,0.9549991,0.4736235,0.8469987,1.232795,0.3275102,0.8469987,1.103069,0.6216938,1.181118,1.223998,0.3187129,1.181118,0.9549991,0.6216938,1.181118,1.223998,0.3275102,1.849357,1.103069,0.4736235,1.849357,1.232795,0.3275102,1.849357,1.103069,0.6216938,1.181118,1.223998,0.3187129,1.181118,0.9549991,0.4736235,1.849357,1.232795,0.3238288,0,1.041106,0.5355872,0,1.229114,0.3275102,0.8469987,1.103069,0.4736235,0.8469987,1.232795,0.3275102,0.8469987,1.103069,0.5355872,0,1.229114,0.3238288,0,1.041106,0.4736235,0.8469987,1.232795,0.3187129,1.181118,0.9549991,0.04971485,1.181118,1.257979,0.3275102,0.8469987,1.103069,0.1977852,0.8469987,1.249182,0.3275102,0.8469987,1.103069,0.04971485,1.181118,1.257979,0.3187129,1.181118,0.9549991,0.1977852,0.8469987,1.249182,0.3526957,1.181118,1.526978,0.04971485,1.181118,1.257979,0.3438985,1.849357,1.378908,0.1977852,1.849357,1.249182,0.3438985,1.849357,1.378908,0.04971485,1.181118,1.257979,0.3526957,1.181118,1.526978,0.1977852,1.849357,1.249182,0.5355872,0,1.229114,0.3238288,0,1.041106,0.3475799,0,1.440871,0.1358215,0,1.252863,0.3475799,0,1.440871,0.3238288,0,1.041106,0.5355872,0,1.229114,0.1358215,0,1.252863,0.3238288,0,1.041106,0.3275102,0.8469987,1.103069,0.1358215,0,1.252863,0.1977852,0.8469987,1.249182,0.1358215,0,1.252863,0.3275102,0.8469987,1.103069,0.3238288,0,1.041106,0.1977852,0.8469987,1.249182,0.4736235,1.849357,1.232795,0.3438985,1.849357,1.378908,0.3275102,1.849357,1.103069,0.1977852,1.849357,1.249182,0.3275102,1.849357,1.103069,0.3438985,1.849357,1.378908,0.4736235,1.849357,1.232795,0.1977852,1.849357,1.249182,0.6216938,1.181118,1.223998,0.3526957,1.181118,1.526978,0.3187129,1.181118,0.9549991,0.04971485,1.181118,1.257979,0.3187129,1.181118,0.9549991,0.3526957,1.181118,1.526978,0.6216938,1.181118,1.223998,0.04971485,1.181118,1.257979,0.3438985,0.8469987,1.378908,0.1977852,0.8469987,1.249182,0.3526957,1.181118,1.526978,0.04971485,1.181118,1.257979,0.3526957,1.181118,1.526978,0.1977852,0.8469987,1.249182,0.3438985,0.8469987,1.378908,0.04971485,1.181118,1.257979,0.6216938,1.181118,1.223998,0.4736235,0.8469987,1.232795,0.3526957,1.181118,1.526978,0.3438985,0.8469987,1.378908,0.3526957,1.181118,1.526978,0.4736235,0.8469987,1.232795,0.6216938,1.181118,1.223998,0.3438985,0.8469987,1.378908,0.2890381,1.681118,-0.651204,0.5755314,1.681118,-0.3647107,0.2890378,2.349357,-0.5028727,0.4272,2.349357,-0.3647105,0.2890378,2.349357,-0.5028727,0.5755314,1.681118,-0.3647107,0.2890381,1.681118,-0.651204,0.4272,2.349357,-0.3647105,0.2890374,1.346999,-0.226548,0.1508753,1.346999,-0.3647101,0.2890372,1.681118,-0.07821657,0.002543861,1.681118,-0.3647098,0.2890372,1.681118,-0.07821657,0.1508753,1.346999,-0.3647101,0.2890374,1.346999,-0.226548,0.002543861,1.681118,-0.3647098,0.4892729,0,-0.3647106,0.2890373,0,-0.164475,0.4272,1.346999,-0.3647105,0.2890374,1.346999,-0.226548,0.4272,1.346999,-0.3647105,0.2890373,0,-0.164475,0.4892729,0,-0.3647106,0.2890374,1.346999,-0.226548,0.5755314,1.681118,-0.3647107,0.4272,1.346999,-0.3647105,0.2890372,1.681118,-0.07821657,0.2890374,1.346999,-0.226548,0.2890372,1.681118,-0.07821657,0.4272,1.346999,-0.3647105,0.5755314,1.681118,-0.3647107,0.2890374,1.346999,-0.226548,0.2890379,0,-0.5649456,0.4892729,0,-0.3647106,0.2890378,1.346999,-0.5028727,0.4272,1.346999,-0.3647105,0.2890378,1.346999,-0.5028727,0.4892729,0,-0.3647106,0.2890379,0,-0.5649456,0.4272,1.346999,-0.3647105,0.2890372,1.681118,-0.07821657,0.002543861,1.681118,-0.3647098,0.2890374,2.349357,-0.226548,0.1508753,2.349357,-0.3647101,0.2890374,2.349357,-0.226548,0.002543861,1.681118,-0.3647098,0.2890372,1.681118,-0.07821657,0.1508753,2.349357,-0.3647101,0.2890381,1.681118,-0.651204,0.2890378,2.349357,-0.5028727,0.002543861,1.681118,-0.3647098,0.1508753,2.349357,-0.3647101,0.002543861,1.681118,-0.3647098,0.2890378,2.349357,-0.5028727,0.2890381,1.681118,-0.651204,0.1508753,2.349357,-0.3647101,0.4892729,0,-0.3647106,0.2890379,0,-0.5649456,0.2890373,0,-0.164475,0.08880232,0,-0.36471,0.2890373,0,-0.164475,0.2890379,0,-0.5649456,0.4892729,0,-0.3647106,0.08880232,0,-0.36471,0.5755314,1.681118,-0.3647107,0.2890372,1.681118,-0.07821657,0.4272,2.349357,-0.3647105,0.2890374,2.349357,-0.226548,0.4272,2.349357,-0.3647105,0.2890372,1.681118,-0.07821657,0.5755314,1.681118,-0.3647107,0.2890374,2.349357,-0.226548,0.2890381,1.681118,-0.651204,0.002543861,1.681118,-0.3647098,0.2890378,1.346999,-0.5028727,0.1508753,1.346999,-0.3647101,0.2890378,1.346999,-0.5028727,0.002543861,1.681118,-0.3647098,0.2890381,1.681118,-0.651204,0.1508753,1.346999,-0.3647101,0.2890378,1.346999,-0.5028727,0.4272,1.346999,-0.3647105,0.2890381,1.681118,-0.651204,0.5755314,1.681118,-0.3647107,0.2890381,1.681118,-0.651204,0.4272,1.346999,-0.3647105,0.2890378,1.346999,-0.5028727,0.5755314,1.681118,-0.3647107,0.4272,2.349357,-0.3647105,0.2890374,2.349357,-0.226548,0.2890378,2.349357,-0.5028727,0.1508753,2.349357,-0.3647101,0.2890378,2.349357,-0.5028727,0.2890374,2.349357,-0.226548,0.4272,2.349357,-0.3647105,0.1508753,2.349357,-0.3647101,0.5755314,1.681118,-0.3647107,0.2890372,1.681118,-0.07821657,0.2890381,1.681118,-0.651204,0.002543861,1.681118,-0.3647098,0.2890381,1.681118,-0.651204,0.2890372,1.681118,-0.07821657,0.5755314,1.681118,-0.3647107,0.002543861,1.681118,-0.3647098,0.2890373,0,-0.164475,0.08880232,0,-0.36471,0.2890374,1.346999,-0.226548,0.1508753,1.346999,-0.3647101,0.2890374,1.346999,-0.226548,0.08880232,0,-0.36471,0.2890373,0,-0.164475,0.1508753,1.346999,-0.3647101,0.2890379,0,-0.5649456,0.2890378,1.346999,-0.5028727,0.08880232,0,-0.36471,0.1508753,1.346999,-0.3647101,0.08880232,0,-0.36471,0.2890378,1.346999,-0.5028727,0.2890379,0,-0.5649456,0.1508753,1.346999,-0.3647101,2.457067,1.346999,-1.383419,2.287853,1.346999,-1.481114,2.495458,1.681118,-1.240141,2.144577,1.681118,-1.442723,2.495458,1.681118,-1.240141,2.287853,1.346999,-1.481114,2.457067,1.346999,-1.383419,2.144577,1.681118,-1.442723,2.473132,0,-1.323461,2.227895,0,-1.465048,2.457067,1.346999,-1.383419,2.287853,1.346999,-1.481114,2.457067,1.346999,-1.383419,2.227895,0,-1.465048,2.473132,0,-1.323461,2.287853,1.346999,-1.481114,2.369483,0,-1.710286,2.61472,0,-1.568698,2.385549,1.346999,-1.650328,2.554762,1.346999,-1.552632,2.385549,1.346999,-1.650328,2.61472,0,-1.568698,2.369483,0,-1.710286,2.554762,1.346999,-1.552632,2.61472,0,-1.568698,2.473132,0,-1.323461,2.554762,1.346999,-1.552632,2.457067,1.346999,-1.383419,2.554762,1.346999,-1.552632,2.473132,0,-1.323461,2.61472,0,-1.568698,2.457067,1.346999,-1.383419,2.347158,1.681118,-1.793605,2.144577,1.681118,-1.442723,2.385549,1.346999,-1.650328,2.287853,1.346999,-1.481114,2.385549,1.346999,-1.650328,2.144577,1.681118,-1.442723,2.347158,1.681118,-1.793605,2.287853,1.346999,-1.481114,2.347158,1.681118,-1.793605,2.69804,1.681118,-1.591024,2.385549,2.349357,-1.650328,2.554762,2.349357,-1.552632,2.385549,2.349357,-1.650328,2.69804,1.681118,-1.591024,2.347158,1.681118,-1.793605,2.554762,2.349357,-1.552632,2.69804,1.681118,-1.591024,2.554762,1.346999,-1.552632,2.495458,1.681118,-1.240141,2.457067,1.346999,-1.383419,2.495458,1.681118,-1.240141,2.554762,1.346999,-1.552632,2.69804,1.681118,-1.591024,2.457067,1.346999,-1.383419,2.69804,1.681118,-1.591024,2.495458,1.681118,-1.240141,2.554762,2.349357,-1.552632,2.457067,2.349357,-1.383419,2.554762,2.349357,-1.552632,2.495458,1.681118,-1.240141,2.69804,1.681118,-1.591024,2.457067,2.349357,-1.383419,2.385549,1.346999,-1.650328,2.554762,1.346999,-1.552632,2.347158,1.681118,-1.793605,2.69804,1.681118,-1.591024,2.347158,1.681118,-1.793605,2.554762,1.346999,-1.552632,2.385549,1.346999,-1.650328,2.69804,1.681118,-1.591024,2.347158,1.681118,-1.793605,2.385549,2.349357,-1.650328,2.144577,1.681118,-1.442723,2.287853,2.349357,-1.481114,2.144577,1.681118,-1.442723,2.385549,2.349357,-1.650328,2.347158,1.681118,-1.793605,2.287853,2.349357,-1.481114,2.369483,0,-1.710286,2.385549,1.346999,-1.650328,2.227895,0,-1.465048,2.287853,1.346999,-1.481114,2.227895,0,-1.465048,2.385549,1.346999,-1.650328,2.369483,0,-1.710286,2.287853,1.346999,-1.481114,2.495458,1.681118,-1.240141,2.144577,1.681118,-1.442723,2.457067,2.349357,-1.383419,2.287853,2.349357,-1.481114,2.457067,2.349357,-1.383419,2.144577,1.681118,-1.442723,2.495458,1.681118,-1.240141,2.287853,2.349357,-1.481114,2.61472,0,-1.568698,2.369483,0,-1.710286,2.473132,0,-1.323461,2.227895,0,-1.465048,2.473132,0,-1.323461,2.369483,0,-1.710286,2.61472,0,-1.568698,2.227895,0,-1.465048,2.69804,1.681118,-1.591024,2.495458,1.681118,-1.240141,2.347158,1.681118,-1.793605,2.144577,1.681118,-1.442723,2.347158,1.681118,-1.793605,2.495458,1.681118,-1.240141,2.69804,1.681118,-1.591024,2.144577,1.681118,-1.442723,2.554762,2.349357,-1.552632,2.457067,2.349357,-1.383419,2.385549,2.349357,-1.650328,2.287853,2.349357,-1.481114,2.385549,2.349357,-1.650328,2.457067,2.349357,-1.383419,2.554762,2.349357,-1.552632,2.287853,2.349357,-1.481114,-0.4991604,0,-1.164924,-0.7443972,0,-1.306511,-0.6407484,0,-0.9196862,-0.8859851,0,-1.061274,-0.6407484,0,-0.9196862,-0.7443972,0,-1.306511,-0.4991604,0,-1.164924,-0.8859851,0,-1.061274,-0.656814,2.346999,-0.9796441,-0.8260273,2.346999,-1.077339,-0.6184232,2.681118,-0.8363668,-0.9693044,2.681118,-1.038948,-0.6184232,2.681118,-0.8363668,-0.8260273,2.346999,-1.077339,-0.656814,2.346999,-0.9796441,-0.9693044,2.681118,-1.038948,-0.7667224,2.681118,-1.38983,-0.7283317,3.349357,-1.246553,-0.9693044,2.681118,-1.038948,-0.8260273,3.349357,-1.077339,-0.9693044,2.681118,-1.038948,-0.7283317,3.349357,-1.246553,-0.7667224,2.681118,-1.38983,-0.8260273,3.349357,-1.077339,-0.5591183,3.349357,-1.148858,-0.656814,3.349357,-0.9796441,-0.7283317,3.349357,-1.246553,-0.8260273,3.349357,-1.077339,-0.7283317,3.349357,-1.246553,-0.656814,3.349357,-0.9796441,-0.5591183,3.349357,-1.148858,-0.8260273,3.349357,-1.077339,-0.4158412,2.681118,-1.187249,-0.6184232,2.681118,-0.8363668,-0.7667224,2.681118,-1.38983,-0.9693044,2.681118,-1.038948,-0.7667224,2.681118,-1.38983,-0.6184232,2.681118,-0.8363668,-0.4158412,2.681118,-1.187249,-0.9693044,2.681118,-1.038948,-0.7283317,2.346999,-1.246553,-0.5591183,2.346999,-1.148858,-0.7667224,2.681118,-1.38983,-0.4158412,2.681118,-1.187249,-0.7667224,2.681118,-1.38983,-0.5591183,2.346999,-1.148858,-0.7283317,2.346999,-1.246553,-0.4158412,2.681118,-1.187249,-0.7443972,0,-1.306511,-0.7283317,2.346999,-1.246553,-0.8859851,0,-1.061274,-0.8260273,2.346999,-1.077339,-0.8859851,0,-1.061274,-0.7283317,2.346999,-1.246553,-0.7443972,0,-1.306511,-0.8260273,2.346999,-1.077339,-0.7443972,0,-1.306511,-0.4991604,0,-1.164924,-0.7283317,2.346999,-1.246553,-0.5591183,2.346999,-1.148858,-0.7283317,2.346999,-1.246553,-0.4991604,0,-1.164924,-0.7443972,0,-1.306511,-0.5591183,2.346999,-1.148858,-0.6407484,0,-0.9196862,-0.8859851,0,-1.061274,-0.656814,2.346999,-0.9796441,-0.8260273,2.346999,-1.077339,-0.656814,2.346999,-0.9796441,-0.8859851,0,-1.061274,-0.6407484,0,-0.9196862,-0.8260273,2.346999,-1.077339,-0.4991604,0,-1.164924,-0.6407484,0,-0.9196862,-0.5591183,2.346999,-1.148858,-0.656814,2.346999,-0.9796441,-0.5591183,2.346999,-1.148858,-0.6407484,0,-0.9196862,-0.4991604,0,-1.164924,-0.656814,2.346999,-0.9796441,-0.7667224,2.681118,-1.38983,-0.9693044,2.681118,-1.038948,-0.7283317,2.346999,-1.246553,-0.8260273,2.346999,-1.077339,-0.7283317,2.346999,-1.246553,-0.9693044,2.681118,-1.038948,-0.7667224,2.681118,-1.38983,-0.8260273,2.346999,-1.077339,-0.6184232,2.681118,-0.8363668,-0.9693044,2.681118,-1.038948,-0.656814,3.349357,-0.9796441,-0.8260273,3.349357,-1.077339,-0.656814,3.349357,-0.9796441,-0.9693044,2.681118,-1.038948,-0.6184232,2.681118,-0.8363668,-0.8260273,3.349357,-1.077339,-0.4158412,2.681118,-1.187249,-0.6184232,2.681118,-0.8363668,-0.5591183,3.349357,-1.148858,-0.656814,3.349357,-0.9796441,-0.5591183,3.349357,-1.148858,-0.6184232,2.681118,-0.8363668,-0.4158412,2.681118,-1.187249,-0.656814,3.349357,-0.9796441,-0.4158412,2.681118,-1.187249,-0.5591183,2.346999,-1.148858,-0.6184232,2.681118,-0.8363668,-0.656814,2.346999,-0.9796441,-0.6184232,2.681118,-0.8363668,-0.5591183,2.346999,-1.148858,-0.4158412,2.681118,-1.187249,-0.656814,2.346999,-0.9796441,-0.7667224,2.681118,-1.38983,-0.4158412,2.681118,-1.187249,-0.7283317,3.349357,-1.246553,-0.5591183,3.349357,-1.148858,-0.7283317,3.349357,-1.246553,-0.4158412,2.681118,-1.187249,-0.7667224,2.681118,-1.38983,-0.5591183,3.349357,-1.148858,-2.227895,0,-0.7078764,-2.473132,0,-0.5662889,-2.287853,1.346999,-0.7239422,-2.457067,1.346999,-0.6262469,-2.287853,1.346999,-0.7239422,-2.473132,0,-0.5662889,-2.227895,0,-0.7078764,-2.457067,1.346999,-0.6262469,-2.554762,1.346999,-0.7954607,-2.385549,1.346999,-0.8931561,-2.69804,1.681118,-0.8338519,-2.347158,1.681118,-1.036433,-2.69804,1.681118,-0.8338519,-2.385549,1.346999,-0.8931561,-2.554762,1.346999,-0.7954607,-2.347158,1.681118,-1.036433,-2.287853,1.346999,-0.7239422,-2.457067,1.346999,-0.6262469,-2.144577,1.681118,-0.685551,-2.495458,1.681118,-0.4829696,-2.144577,1.681118,-0.685551,-2.457067,1.346999,-0.6262469,-2.287853,1.346999,-0.7239422,-2.495458,1.681118,-0.4829696,-2.61472,0,-0.8115265,-2.369483,0,-0.953114,-2.554762,1.346999,-0.7954607,-2.385549,1.346999,-0.8931561,-2.554762,1.346999,-0.7954607,-2.369483,0,-0.953114,-2.61472,0,-0.8115265,-2.385549,1.346999,-0.8931561,-2.69804,1.681118,-0.8338519,-2.495458,1.681118,-0.4829696,-2.554762,1.346999,-0.7954607,-2.457067,1.346999,-0.6262469,-2.554762,1.346999,-0.7954607,-2.495458,1.681118,-0.4829696,-2.69804,1.681118,-0.8338519,-2.457067,1.346999,-0.6262469,-2.347158,1.681118,-1.036433,-2.144577,1.681118,-0.685551,-2.385549,2.349357,-0.8931561,-2.287853,2.349357,-0.7239422,-2.385549,2.349357,-0.8931561,-2.144577,1.681118,-0.685551,-2.347158,1.681118,-1.036433,-2.287853,2.349357,-0.7239422,-2.227895,0,-0.7078764,-2.369483,0,-0.953114,-2.473132,0,-0.5662889,-2.61472,0,-0.8115265,-2.473132,0,-0.5662889,-2.369483,0,-0.953114,-2.227895,0,-0.7078764,-2.61472,0,-0.8115265,-2.69804,1.681118,-0.8338519,-2.554762,2.349357,-0.7954607,-2.495458,1.681118,-0.4829696,-2.457067,2.349357,-0.6262469,-2.495458,1.681118,-0.4829696,-2.554762,2.349357,-0.7954607,-2.69804,1.681118,-0.8338519,-2.457067,2.349357,-0.6262469,-2.61472,0,-0.8115265,-2.554762,1.346999,-0.7954607,-2.473132,0,-0.5662889,-2.457067,1.346999,-0.6262469,-2.473132,0,-0.5662889,-2.554762,1.346999,-0.7954607,-2.61472,0,-0.8115265,-2.457067,1.346999,-0.6262469,-2.347158,1.681118,-1.036433,-2.385549,1.346999,-0.8931561,-2.144577,1.681118,-0.685551,-2.287853,1.346999,-0.7239422,-2.144577,1.681118,-0.685551,-2.385549,1.346999,-0.8931561,-2.347158,1.681118,-1.036433,-2.287853,1.346999,-0.7239422,-2.144577,1.681118,-0.685551,-2.495458,1.681118,-0.4829696,-2.347158,1.681118,-1.036433,-2.69804,1.681118,-0.8338519,-2.347158,1.681118,-1.036433,-2.495458,1.681118,-0.4829696,-2.144577,1.681118,-0.685551,-2.69804,1.681118,-0.8338519,-2.287853,2.349357,-0.7239422,-2.457067,2.349357,-0.6262469,-2.385549,2.349357,-0.8931561,-2.554762,2.349357,-0.7954607,-2.385549,2.349357,-0.8931561,-2.457067,2.349357,-0.6262469,-2.287853,2.349357,-0.7239422,-2.554762,2.349357,-0.7954607,-2.369483,0,-0.953114,-2.227895,0,-0.7078764,-2.385549,1.346999,-0.8931561,-2.287853,1.346999,-0.7239422,-2.385549,1.346999,-0.8931561,-2.227895,0,-0.7078764,-2.369483,0,-0.953114,-2.287853,1.346999,-0.7239422,-2.144577,1.681118,-0.685551,-2.495458,1.681118,-0.4829696,-2.287853,2.349357,-0.7239422,-2.457067,2.349357,-0.6262469,-2.287853,2.349357,-0.7239422,-2.495458,1.681118,-0.4829696,-2.144577,1.681118,-0.685551,-2.457067,2.349357,-0.6262469,-2.69804,1.681118,-0.8338519,-2.347158,1.681118,-1.036433,-2.554762,2.349357,-0.7954607,-2.385549,2.349357,-0.8931561,-2.554762,2.349357,-0.7954607,-2.347158,1.681118,-1.036433,-2.69804,1.681118,-0.8338519,-2.385549,2.349357,-0.8931561,0.9249963,1.181118,-1.762187,0.9249963,1.181118,-1.357023,0.5198336,1.181118,-1.762187,0.5198336,1.181118,-1.357023,0.5198336,1.181118,-1.762187,0.9249963,1.181118,-1.357023,0.9249963,1.181118,-1.762187,0.5198336,1.181118,-1.357023,0.8640025,0,-1.418017,0.5808275,0,-1.418017,0.8201103,0.8469987,-1.46191,0.6247196,0.8469987,-1.46191,0.8201103,0.8469987,-1.46191,0.5808275,0,-1.418017,0.8640025,0,-1.418017,0.6247196,0.8469987,-1.46191,0.5808275,0,-1.701193,0.8640025,0,-1.701193,0.6247196,0.8469987,-1.657301,0.8201103,0.8469987,-1.657301,0.6247196,0.8469987,-1.657301,0.8640025,0,-1.701193,0.5808275,0,-1.701193,0.8201103,0.8469987,-1.657301,0.8640025,0,-1.418017,0.8640025,0,-1.701193,0.5808275,0,-1.418017,0.5808275,0,-1.701193,0.5808275,0,-1.418017,0.8640025,0,-1.701193,0.8640025,0,-1.418017,0.5808275,0,-1.701193,0.9249963,1.181118,-1.762187,0.8201103,0.8469987,-1.657301,0.9249963,1.181118,-1.357023,0.8201103,0.8469987,-1.46191,0.9249963,1.181118,-1.357023,0.8201103,0.8469987,-1.657301,0.9249963,1.181118,-1.762187,0.8201103,0.8469987,-1.46191,0.8201103,1.849357,-1.657301,0.8201103,1.849357,-1.46191,0.6247196,1.849357,-1.657301,0.6247196,1.849357,-1.46191,0.6247196,1.849357,-1.657301,0.8201103,1.849357,-1.46191,0.8201103,1.849357,-1.657301,0.6247196,1.849357,-1.46191,0.5198336,1.181118,-1.762187,0.5198336,1.181118,-1.357023,0.6247196,0.8469987,-1.657301,0.6247196,0.8469987,-1.46191,0.6247196,0.8469987,-1.657301,0.5198336,1.181118,-1.357023,0.5198336,1.181118,-1.762187,0.6247196,0.8469987,-1.46191,0.8640025,0,-1.701193,0.8640025,0,-1.418017,0.8201103,0.8469987,-1.657301,0.8201103,0.8469987,-1.46191,0.8201103,0.8469987,-1.657301,0.8640025,0,-1.418017,0.8640025,0,-1.701193,0.8201103,0.8469987,-1.46191,0.5198336,1.181118,-1.762187,0.9249963,1.181118,-1.762187,0.6247196,1.849357,-1.657301,0.8201103,1.849357,-1.657301,0.6247196,1.849357,-1.657301,0.9249963,1.181118,-1.762187,0.5198336,1.181118,-1.762187,0.8201103,1.849357,-1.657301,0.8201103,0.8469987,-1.46191,0.6247196,0.8469987,-1.46191,0.9249963,1.181118,-1.357023,0.5198336,1.181118,-1.357023,0.9249963,1.181118,-1.357023,0.6247196,0.8469987,-1.46191,0.8201103,0.8469987,-1.46191,0.5198336,1.181118,-1.357023,0.5198336,1.181118,-1.762187,0.6247196,1.849357,-1.657301,0.5198336,1.181118,-1.357023,0.6247196,1.849357,-1.46191,0.5198336,1.181118,-1.357023,0.6247196,1.849357,-1.657301,0.5198336,1.181118,-1.762187,0.6247196,1.849357,-1.46191,0.5808275,0,-1.701193,0.6247196,0.8469987,-1.657301,0.5808275,0,-1.418017,0.6247196,0.8469987,-1.46191,0.5808275,0,-1.418017,0.6247196,0.8469987,-1.657301,0.5808275,0,-1.701193,0.6247196,0.8469987,-1.46191,0.6247196,0.8469987,-1.657301,0.8201103,0.8469987,-1.657301,0.5198336,1.181118,-1.762187,0.9249963,1.181118,-1.762187,0.5198336,1.181118,-1.762187,0.8201103,0.8469987,-1.657301,0.6247196,0.8469987,-1.657301,0.9249963,1.181118,-1.762187,0.9249963,1.181118,-1.357023,0.5198336,1.181118,-1.357023,0.8201103,1.849357,-1.46191,0.6247196,1.849357,-1.46191,0.8201103,1.849357,-1.46191,0.5198336,1.181118,-1.357023,0.9249963,1.181118,-1.357023,0.6247196,1.849357,-1.46191,0.9249963,1.181118,-1.762187,0.9249963,1.181118,-1.357023,0.8201103,1.849357,-1.657301,0.8201103,1.849357,-1.46191,0.8201103,1.849357,-1.657301,0.9249963,1.181118,-1.357023,0.9249963,1.181118,-1.762187,0.8201103,1.849357,-1.46191 + } + PolygonVertexIndex: *2160 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,123,121,-123,124,126,-126,125,127,-125,128,130,-130,131,129,-131,132,134,-134,133,135,-133,136,138,-138,139,137,-139,140,142,-142,141,143,-141,144,146,-146,147,145,-147,148,150,-150,149,151,-149,152,154,-154,155,153,-155,156,158,-158,157,159,-157,160,162,-162,163,161,-163,164,166,-166,165,167,-165,168,170,-170,171,169,-171,172,174,-174,173,175,-173,176,178,-178,179,177,-179,180,182,-182,181,183,-181,184,186,-186,187,185,-187,188,190,-190,189,191,-189,192,194,-194,195,193,-195,196,198,-198,197,199,-197,200,202,-202,203,201,-203,204,206,-206,205,207,-205,208,210,-210,211,209,-211,212,214,-214,213,215,-213,216,218,-218,219,217,-219,220,222,-222,221,223,-221,224,226,-226,227,225,-227,228,230,-230,229,231,-229,232,234,-234,235,233,-235,236,238,-238,237,239,-237,240,242,-242,243,241,-243,244,246,-246,245,247,-245,248,250,-250,251,249,-251,252,254,-254,253,255,-253,256,258,-258,259,257,-259,260,262,-262,261,263,-261,264,266,-266,267,265,-267,268,270,-270,269,271,-269,272,274,-274,275,273,-275,276,278,-278,277,279,-277,280,282,-282,283,281,-283,284,286,-286,285,287,-285,288,290,-290,291,289,-291,292,294,-294,293,295,-293,296,298,-298,299,297,-299,300,302,-302,301,303,-301,304,306,-306,307,305,-307,308,310,-310,309,311,-309,312,314,-314,315,313,-315,316,318,-318,317,319,-317,320,322,-322,323,321,-323,324,326,-326,325,327,-325,328,330,-330,331,329,-331,332,334,-334,333,335,-333,336,338,-338,339,337,-339,340,342,-342,341,343,-341,344,346,-346,347,345,-347,348,350,-350,349,351,-349,352,354,-354,355,353,-355,356,358,-358,357,359,-357,360,362,-362,363,361,-363,364,366,-366,365,367,-365,368,370,-370,371,369,-371,372,374,-374,373,375,-373,376,378,-378,379,377,-379,380,382,-382,381,383,-381,384,386,-386,387,385,-387,388,390,-390,389,391,-389,392,394,-394,395,393,-395,396,398,-398,397,399,-397,400,402,-402,403,401,-403,404,406,-406,405,407,-405,408,410,-410,411,409,-411,412,414,-414,413,415,-413,416,418,-418,419,417,-419,420,422,-422,421,423,-421,424,426,-426,427,425,-427,428,430,-430,429,431,-429,432,434,-434,435,433,-435,436,438,-438,437,439,-437,440,442,-442,443,441,-443,444,446,-446,445,447,-445,448,450,-450,451,449,-451,452,454,-454,453,455,-453,456,458,-458,459,457,-459,460,462,-462,461,463,-461,464,466,-466,467,465,-467,468,470,-470,469,471,-469,472,474,-474,475,473,-475,476,478,-478,477,479,-477,480,482,-482,483,481,-483,484,486,-486,485,487,-485,488,490,-490,491,489,-491,492,494,-494,493,495,-493,496,498,-498,499,497,-499,500,502,-502,501,503,-501,504,506,-506,507,505,-507,508,510,-510,509,511,-509,512,514,-514,515,513,-515,516,518,-518,517,519,-517,520,522,-522,523,521,-523,524,526,-526,525,527,-525,528,530,-530,531,529,-531,532,534,-534,533,535,-533,536,538,-538,539,537,-539,540,542,-542,541,543,-541,544,546,-546,547,545,-547,548,550,-550,549,551,-549,552,554,-554,555,553,-555,556,558,-558,557,559,-557,560,562,-562,563,561,-563,564,566,-566,565,567,-565,568,570,-570,571,569,-571,572,574,-574,573,575,-573,576,578,-578,579,577,-579,580,582,-582,581,583,-581,584,586,-586,587,585,-587,588,590,-590,589,591,-589,592,594,-594,595,593,-595,596,598,-598,597,599,-597,600,602,-602,603,601,-603,604,606,-606,605,607,-605,608,610,-610,611,609,-611,612,614,-614,613,615,-613,616,618,-618,619,617,-619,620,622,-622,621,623,-621,624,626,-626,627,625,-627,628,630,-630,629,631,-629,632,634,-634,635,633,-635,636,638,-638,637,639,-637,640,642,-642,643,641,-643,644,646,-646,645,647,-645,648,650,-650,651,649,-651,652,654,-654,653,655,-653,656,658,-658,659,657,-659,660,662,-662,661,663,-661,664,666,-666,667,665,-667,668,670,-670,669,671,-669,672,674,-674,675,673,-675,676,678,-678,677,679,-677,680,682,-682,683,681,-683,684,686,-686,685,687,-685,688,690,-690,691,689,-691,692,694,-694,693,695,-693,696,698,-698,699,697,-699,700,702,-702,701,703,-701,704,706,-706,707,705,-707,708,710,-710,709,711,-709,712,714,-714,715,713,-715,716,718,-718,717,719,-717,720,722,-722,723,721,-723,724,726,-726,725,727,-725,728,730,-730,731,729,-731,732,734,-734,733,735,-733,736,738,-738,739,737,-739,740,742,-742,741,743,-741,744,746,-746,747,745,-747,748,750,-750,749,751,-749,752,754,-754,755,753,-755,756,758,-758,757,759,-757,760,762,-762,763,761,-763,764,766,-766,765,767,-765,768,770,-770,771,769,-771,772,774,-774,773,775,-773,776,778,-778,779,777,-779,780,782,-782,781,783,-781,784,786,-786,787,785,-787,788,790,-790,789,791,-789,792,794,-794,795,793,-795,796,798,-798,797,799,-797,800,802,-802,803,801,-803,804,806,-806,805,807,-805,808,810,-810,811,809,-811,812,814,-814,813,815,-813,816,818,-818,819,817,-819,820,822,-822,821,823,-821,824,826,-826,827,825,-827,828,830,-830,829,831,-829,832,834,-834,835,833,-835,836,838,-838,837,839,-837,840,842,-842,843,841,-843,844,846,-846,845,847,-845,848,850,-850,851,849,-851,852,854,-854,853,855,-853,856,858,-858,859,857,-859,860,862,-862,861,863,-861,864,866,-866,867,865,-867,868,870,-870,869,871,-869,872,874,-874,875,873,-875,876,878,-878,877,879,-877,880,882,-882,883,881,-883,884,886,-886,885,887,-885,888,890,-890,891,889,-891,892,894,-894,893,895,-893,896,898,-898,899,897,-899,900,902,-902,901,903,-901,904,906,-906,907,905,-907,908,910,-910,909,911,-909,912,914,-914,915,913,-915,916,918,-918,917,919,-917,920,922,-922,923,921,-923,924,926,-926,925,927,-925,928,930,-930,931,929,-931,932,934,-934,933,935,-933,936,938,-938,939,937,-939,940,942,-942,941,943,-941,944,946,-946,947,945,-947,948,950,-950,949,951,-949,952,954,-954,955,953,-955,956,958,-958,957,959,-957,960,962,-962,963,961,-963,964,966,-966,965,967,-965,968,970,-970,971,969,-971,972,974,-974,973,975,-973,976,978,-978,979,977,-979,980,982,-982,981,983,-981,984,986,-986,987,985,-987,988,990,-990,989,991,-989,992,994,-994,995,993,-995,996,998,-998,997,999,-997,1000,1002,-1002,1003,1001,-1003,1004,1006,-1006,1005,1007,-1005,1008,1010,-1010,1011,1009,-1011,1012,1014,-1014,1013,1015,-1013,1016,1018,-1018,1019,1017,-1019,1020,1022,-1022,1021,1023,-1021,1024,1026,-1026,1027,1025,-1027,1028,1030,-1030,1029,1031,-1029,1032,1034,-1034,1035,1033,-1035,1036,1038,-1038,1037,1039,-1037,1040,1042,-1042,1043,1041,-1043,1044,1046,-1046,1045,1047,-1045,1048,1050,-1050,1051,1049,-1051,1052,1054,-1054,1053,1055,-1053,1056,1058,-1058,1059,1057,-1059,1060,1062,-1062,1061,1063,-1061,1064,1066,-1066,1067,1065,-1067,1068,1070,-1070,1069,1071,-1069,1072,1074,-1074,1075,1073,-1075,1076,1078,-1078,1077,1079,-1077,1080,1082,-1082,1083,1081,-1083,1084,1086,-1086,1085,1087,-1085,1088,1090,-1090,1091,1089,-1091,1092,1094,-1094,1093,1095,-1093,1096,1098,-1098,1099,1097,-1099,1100,1102,-1102,1101,1103,-1101,1104,1106,-1106,1107,1105,-1107,1108,1110,-1110,1109,1111,-1109,1112,1114,-1114,1115,1113,-1115,1116,1118,-1118,1117,1119,-1117,1120,1122,-1122,1123,1121,-1123,1124,1126,-1126,1125,1127,-1125,1128,1130,-1130,1131,1129,-1131,1132,1134,-1134,1133,1135,-1133,1136,1138,-1138,1139,1137,-1139,1140,1142,-1142,1141,1143,-1141,1144,1146,-1146,1147,1145,-1147,1148,1150,-1150,1149,1151,-1149,1152,1154,-1154,1155,1153,-1155,1156,1158,-1158,1157,1159,-1157,1160,1162,-1162,1163,1161,-1163,1164,1166,-1166,1165,1167,-1165,1168,1170,-1170,1171,1169,-1171,1172,1174,-1174,1173,1175,-1173,1176,1178,-1178,1179,1177,-1179,1180,1182,-1182,1181,1183,-1181,1184,1186,-1186,1187,1185,-1187,1188,1190,-1190,1189,1191,-1189,1192,1194,-1194,1195,1193,-1195,1196,1198,-1198,1197,1199,-1197,1200,1202,-1202,1203,1201,-1203,1204,1206,-1206,1205,1207,-1205,1208,1210,-1210,1211,1209,-1211,1212,1214,-1214,1213,1215,-1213,1216,1218,-1218,1219,1217,-1219,1220,1222,-1222,1221,1223,-1221,1224,1226,-1226,1227,1225,-1227,1228,1230,-1230,1229,1231,-1229,1232,1234,-1234,1235,1233,-1235,1236,1238,-1238,1237,1239,-1237,1240,1242,-1242,1243,1241,-1243,1244,1246,-1246,1245,1247,-1245,1248,1250,-1250,1251,1249,-1251,1252,1254,-1254,1253,1255,-1253,1256,1258,-1258,1259,1257,-1259,1260,1262,-1262,1261,1263,-1261,1264,1266,-1266,1267,1265,-1267,1268,1270,-1270,1269,1271,-1269,1272,1274,-1274,1275,1273,-1275,1276,1278,-1278,1277,1279,-1277,1280,1282,-1282,1283,1281,-1283,1284,1286,-1286,1285,1287,-1285,1288,1290,-1290,1291,1289,-1291,1292,1294,-1294,1293,1295,-1293,1296,1298,-1298,1299,1297,-1299,1300,1302,-1302,1301,1303,-1301,1304,1306,-1306,1307,1305,-1307,1308,1310,-1310,1309,1311,-1309,1312,1314,-1314,1315,1313,-1315,1316,1318,-1318,1317,1319,-1317,1320,1322,-1322,1323,1321,-1323,1324,1326,-1326,1325,1327,-1325,1328,1330,-1330,1331,1329,-1331,1332,1334,-1334,1333,1335,-1333,1336,1338,-1338,1339,1337,-1339,1340,1342,-1342,1341,1343,-1341,1344,1346,-1346,1347,1345,-1347,1348,1350,-1350,1349,1351,-1349,1352,1354,-1354,1355,1353,-1355,1356,1358,-1358,1357,1359,-1357,1360,1362,-1362,1363,1361,-1363,1364,1366,-1366,1365,1367,-1365,1368,1370,-1370,1371,1369,-1371,1372,1374,-1374,1373,1375,-1373,1376,1378,-1378,1379,1377,-1379,1380,1382,-1382,1381,1383,-1381,1384,1386,-1386,1387,1385,-1387,1388,1390,-1390,1389,1391,-1389,1392,1394,-1394,1395,1393,-1395,1396,1398,-1398,1397,1399,-1397,1400,1402,-1402,1403,1401,-1403,1404,1406,-1406,1405,1407,-1405,1408,1410,-1410,1411,1409,-1411,1412,1414,-1414,1413,1415,-1413,1416,1418,-1418,1419,1417,-1419,1420,1422,-1422,1421,1423,-1421,1424,1426,-1426,1427,1425,-1427,1428,1430,-1430,1429,1431,-1429,1432,1434,-1434,1435,1433,-1435,1436,1438,-1438,1437,1439,-1437 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *6480 { + a: 0.982441,0.01869812,0.1856342,0.982441,0.01869812,0.1856342,0.982441,0.01869812,0.1856342,0.982441,0.01869812,0.1856342,0.982441,0.01869812,0.1856342,0.982441,0.01869812,0.1856342,-0.982441,-0.01869812,-0.1856342,-0.982441,-0.01869812,-0.1856342,-0.982441,-0.01869812,-0.1856342,-0.982441,-0.01869812,-0.1856342,-0.982441,-0.01869812,-0.1856342,-0.982441,-0.01869812,-0.1856342,-0.982441,0.01869812,-0.1856342,-0.982441,0.01869812,-0.1856342,-0.982441,0.01869812,-0.1856342,-0.982441,0.01869812,-0.1856342,-0.982441,0.01869812,-0.1856342,-0.982441,0.01869812,-0.1856342,0.982441,-0.01869812,0.1856342,0.982441,-0.01869812,0.1856342,0.982441,-0.01869812,0.1856342,0.982441,-0.01869812,0.1856342,0.982441,-0.01869812,0.1856342,0.982441,-0.01869812,0.1856342,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,-0.183421,-0.1550609,0.970728,-0.183421,-0.1550609,0.970728,-0.183421,-0.1550609,0.970728,-0.183421,-0.1550609,0.970728,-0.183421,-0.1550609,0.970728,-0.183421,-0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,0.183421,-0.1550609,-0.970728,0.183421,-0.1550609,-0.970728,0.183421,-0.1550609,-0.970728,0.183421,-0.1550609,-0.970728,0.183421,-0.1550609,-0.970728,0.183421,-0.1550609,-0.970728,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,0.1771434,0.2995078,-0.9375048,0.1771434,0.2995078,-0.9375048,0.1771434,0.2995078,-0.9375048,0.1771434,0.2995078,-0.9375048,0.1771434,0.2995078,-0.9375048,0.1771434,0.2995078,-0.9375048,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,0.9707281,-0.1550604,0.183421,0.9707281,-0.1550604,0.183421,0.9707281,-0.1550604,0.183421,0.9707281,-0.1550604,0.183421,0.9707281,-0.1550604,0.183421,0.9707281,-0.1550604,0.183421,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1856342,0.01869817,0.982441,-0.1856342,0.01869817,0.982441,-0.1856342,0.01869817,0.982441,-0.1856342,0.01869817,0.982441,-0.1856342,0.01869817,0.982441,-0.1856342,0.01869817,0.982441,0.1856342,-0.01869817,-0.982441,0.1856342,-0.01869817,-0.982441,0.1856342,-0.01869817,-0.982441,0.1856342,-0.01869817,-0.982441,0.1856342,-0.01869817,-0.982441,0.1856342,-0.01869817,-0.982441,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,-0.9707281,-0.1550604,-0.183421,-0.9707281,-0.1550604,-0.183421,-0.9707281,-0.1550604,-0.183421,-0.9707281,-0.1550604,-0.183421,-0.9707281,-0.1550604,-0.183421,-0.9707281,-0.1550604,-0.183421,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,-0.1771434,0.2995078,0.9375048,-0.1771434,0.2995078,0.9375048,-0.1771434,0.2995078,0.9375048,-0.1771434,0.2995078,0.9375048,-0.1771434,0.2995078,0.9375048,-0.1771434,0.2995078,0.9375048,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,0.9375051,0.2995069,0.1771434,0.9375051,0.2995069,0.1771434,0.9375051,0.2995069,0.1771434,0.9375051,0.2995069,0.1771434,0.9375051,0.2995069,0.1771434,0.9375051,0.2995069,0.1771434,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,-0.9375051,0.2995069,-0.1771434,-0.9375051,0.2995069,-0.1771434,-0.9375051,0.2995069,-0.1771434,-0.9375051,0.2995069,-0.1771434,-0.9375051,0.2995069,-0.1771434,-0.9375051,0.2995069,-0.1771434,0.1856342,0.01869817,-0.982441,0.1856342,0.01869817,-0.982441,0.1856342,0.01869817,-0.982441,0.1856342,0.01869817,-0.982441,0.1856342,0.01869817,-0.982441,0.1856342,0.01869817,-0.982441,-0.1856342,-0.01869817,0.982441,-0.1856342,-0.01869817,0.982441,-0.1856342,-0.01869817,0.982441,-0.1856342,-0.01869817,0.982441,-0.1856342,-0.01869817,0.982441,-0.1856342,-0.01869817,0.982441,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,0,0.03256795,-0.9994696,0,0.03256795,-0.9994696,0,0.03256795,-0.9994696,0,0.03256795,-0.9994696,0,0.03256795,-0.9994696,0,0.03256795,-0.9994696,0,-0.03256795,0.9994696,0,-0.03256795,0.9994696,0,-0.03256795,0.9994696,0,-0.03256795,0.9994696,0,-0.03256795,0.9994696,0,-0.03256795,0.9994696,0.9994696,0.03256784,0,0.9994696,0.03256784,0,0.9994696,0.03256784,0,0.9994696,0.03256784,0,0.9994696,0.03256784,0,0.9994696,0.03256784,0,-0.9994696,-0.03256784,0,-0.9994696,-0.03256784,0,-0.9994696,-0.03256784,0,-0.9994696,-0.03256784,0,-0.9994696,-0.03256784,0,-0.9994696,-0.03256784,0,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9994696,0.03256784,0,-0.9994696,0.03256784,0,-0.9994696,0.03256784,0,-0.9994696,0.03256784,0,-0.9994696,0.03256784,0,-0.9994696,0.03256784,0,0.9994696,-0.03256784,0,0.9994696,-0.03256784,0,0.9994696,-0.03256784,0,0.9994696,-0.03256784,0,0.9994696,-0.03256784,0,0.9994696,-0.03256784,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0,0.03256795,0.9994696,0,0.03256795,0.9994696,0,0.03256795,0.9994696,0,0.03256795,0.9994696,0,0.03256795,0.9994696,0,0.03256795,0.9994696,0,-0.03256795,-0.9994696,0,-0.03256795,-0.9994696,0,-0.03256795,-0.9994696,0,-0.03256795,-0.9994696,0,-0.03256795,-0.9994696,0,-0.03256795,-0.9994696,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,0.5939374,0.2995078,0.7466816,0.5939374,0.2995078,0.7466816,0.5939374,0.2995078,0.7466816,0.5939374,0.2995078,0.7466816,0.5939374,0.2995078,0.7466816,0.5939374,0.2995078,0.7466816,0.6221844,0.03256795,0.782193,0.6221844,0.03256795,0.782193,0.6221844,0.03256795,0.782193,0.6221844,0.03256795,0.782193,0.6221844,0.03256795,0.782193,0.6221844,0.03256795,0.782193,-0.6221844,-0.03256795,-0.782193,-0.6221844,-0.03256795,-0.782193,-0.6221844,-0.03256795,-0.782193,-0.6221844,-0.03256795,-0.782193,-0.6221844,-0.03256795,-0.782193,-0.6221844,-0.03256795,-0.782193,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,-0.5939374,0.2995078,-0.7466816,-0.5939374,0.2995078,-0.7466816,-0.5939374,0.2995078,-0.7466816,-0.5939374,0.2995078,-0.7466816,-0.5939374,0.2995078,-0.7466816,-0.5939374,0.2995078,-0.7466816,0.782193,0.03256784,-0.6221844,0.782193,0.03256784,-0.6221844,0.782193,0.03256784,-0.6221844,0.782193,0.03256784,-0.6221844,0.782193,0.03256784,-0.6221844,0.782193,0.03256784,-0.6221844,-0.782193,-0.03256784,0.6221844,-0.782193,-0.03256784,0.6221844,-0.782193,-0.03256784,0.6221844,-0.782193,-0.03256784,0.6221844,-0.782193,-0.03256784,0.6221844,-0.782193,-0.03256784,0.6221844,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,-0.6149853,-0.1550609,-0.7731425,-0.6149853,-0.1550609,-0.7731425,-0.6149853,-0.1550609,-0.7731425,-0.6149853,-0.1550609,-0.7731425,-0.6149853,-0.1550609,-0.7731425,-0.6149853,-0.1550609,-0.7731425,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,0.7731425,-0.1550604,-0.6149853,0.7731425,-0.1550604,-0.6149853,0.7731425,-0.1550604,-0.6149853,0.7731425,-0.1550604,-0.6149853,0.7731425,-0.1550604,-0.6149853,0.7731425,-0.1550604,-0.6149853,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,0.6149853,-0.1550609,0.7731425,0.6149853,-0.1550609,0.7731425,0.6149853,-0.1550609,0.7731425,0.6149853,-0.1550609,0.7731425,0.6149853,-0.1550609,0.7731425,0.6149853,-0.1550609,0.7731425,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,-0.7731425,-0.1550604,0.6149853,-0.7731425,-0.1550604,0.6149853,-0.7731425,-0.1550604,0.6149853,-0.7731425,-0.1550604,0.6149853,-0.7731425,-0.1550604,0.6149853,-0.7731425,-0.1550604,0.6149853,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,-0.7466819,0.2995069,0.5939376,-0.7466819,0.2995069,0.5939376,-0.7466819,0.2995069,0.5939376,-0.7466819,0.2995069,0.5939376,-0.7466819,0.2995069,0.5939376,-0.7466819,0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,0.7466819,0.2995069,-0.5939376,0.7466819,0.2995069,-0.5939376,0.7466819,0.2995069,-0.5939376,0.7466819,0.2995069,-0.5939376,0.7466819,0.2995069,-0.5939376,0.7466819,0.2995069,-0.5939376,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.782193,0.03256784,0.6221844,-0.782193,0.03256784,0.6221844,-0.782193,0.03256784,0.6221844,-0.782193,0.03256784,0.6221844,-0.782193,0.03256784,0.6221844,-0.782193,0.03256784,0.6221844,0.782193,-0.03256784,-0.6221844,0.782193,-0.03256784,-0.6221844,0.782193,-0.03256784,-0.6221844,0.782193,-0.03256784,-0.6221844,0.782193,-0.03256784,-0.6221844,0.782193,-0.03256784,-0.6221844,-0.6221844,0.03256795,-0.782193,-0.6221844,0.03256795,-0.782193,-0.6221844,0.03256795,-0.782193,-0.6221844,0.03256795,-0.782193,-0.6221844,0.03256795,-0.782193,-0.6221844,0.03256795,-0.782193,0.6221844,-0.03256795,0.782193,0.6221844,-0.03256795,0.782193,0.6221844,-0.03256795,0.782193,0.6221844,-0.03256795,0.782193,0.6221844,-0.03256795,0.782193,0.6221844,-0.03256795,0.782193,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,0.9342704,0.2995078,0.1934781,0.9342704,0.2995078,0.1934781,0.9342704,0.2995078,0.1934781,0.9342704,0.2995078,0.1934781,0.9342704,0.2995078,0.1934781,0.9342704,0.2995078,0.1934781,0.9787034,0.03256795,0.2026798,0.9787034,0.03256795,0.2026798,0.9787034,0.03256795,0.2026798,0.9787034,0.03256795,0.2026798,0.9787034,0.03256795,0.2026798,0.9787034,0.03256795,0.2026798,-0.9787034,-0.03256795,-0.2026798,-0.9787034,-0.03256795,-0.2026798,-0.9787034,-0.03256795,-0.2026798,-0.9787034,-0.03256795,-0.2026798,-0.9787034,-0.03256795,-0.2026798,-0.9787034,-0.03256795,-0.2026798,-0.9787034,0.03256795,-0.2026798,-0.9787034,0.03256795,-0.2026798,-0.9787034,0.03256795,-0.2026798,-0.9787034,0.03256795,-0.2026798,-0.9787034,0.03256795,-0.2026798,-0.9787034,0.03256795,-0.2026798,0.9787034,-0.03256795,0.2026798,0.9787034,-0.03256795,0.2026798,0.9787034,-0.03256795,0.2026798,0.9787034,-0.03256795,0.2026798,0.9787034,-0.03256795,0.2026798,0.9787034,-0.03256795,0.2026798,0.2026798,0.03256784,-0.9787034,0.2026798,0.03256784,-0.9787034,0.2026798,0.03256784,-0.9787034,0.2026798,0.03256784,-0.9787034,0.2026798,0.03256784,-0.9787034,0.2026798,0.03256784,-0.9787034,-0.2026798,-0.03256784,0.9787034,-0.2026798,-0.03256784,0.9787034,-0.2026798,-0.03256784,0.9787034,-0.2026798,-0.03256784,0.9787034,-0.2026798,-0.03256784,0.9787034,-0.2026798,-0.03256784,0.9787034,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,0.1934782,0.2995069,-0.9342708,0.1934782,0.2995069,-0.9342708,0.1934782,0.2995069,-0.9342708,0.1934782,0.2995069,-0.9342708,0.1934782,0.2995069,-0.9342708,0.1934782,0.2995069,-0.9342708,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,-0.967379,-0.1550609,-0.2003346,-0.967379,-0.1550609,-0.2003346,-0.967379,-0.1550609,-0.2003346,-0.967379,-0.1550609,-0.2003346,-0.967379,-0.1550609,-0.2003346,-0.967379,-0.1550609,-0.2003346,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,-0.9342704,0.2995078,-0.1934781,-0.9342704,0.2995078,-0.1934781,-0.9342704,0.2995078,-0.1934781,-0.9342704,0.2995078,-0.1934781,-0.9342704,0.2995078,-0.1934781,-0.9342704,0.2995078,-0.1934781,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,0.967379,-0.1550609,0.2003346,0.967379,-0.1550609,0.2003346,0.967379,-0.1550609,0.2003346,0.967379,-0.1550609,0.2003346,0.967379,-0.1550609,0.2003346,0.967379,-0.1550609,0.2003346,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,-0.1934782,0.2995069,0.9342708,-0.1934782,0.2995069,0.9342708,-0.1934782,0.2995069,0.9342708,-0.1934782,0.2995069,0.9342708,-0.1934782,0.2995069,0.9342708,-0.1934782,0.2995069,0.9342708,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,-0.2003346,-0.1550604,0.967379,-0.2003346,-0.1550604,0.967379,-0.2003346,-0.1550604,0.967379,-0.2003346,-0.1550604,0.967379,-0.2003346,-0.1550604,0.967379,-0.2003346,-0.1550604,0.967379,-0.2026798,0.03256784,0.9787034,-0.2026798,0.03256784,0.9787034,-0.2026798,0.03256784,0.9787034,-0.2026798,0.03256784,0.9787034,-0.2026798,0.03256784,0.9787034,-0.2026798,0.03256784,0.9787034,0.2026798,-0.03256784,-0.9787034,0.2026798,-0.03256784,-0.9787034,0.2026798,-0.03256784,-0.9787034,0.2026798,-0.03256784,-0.9787034,0.2026798,-0.03256784,-0.9787034,0.2026798,-0.03256784,-0.9787034,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,0.2003346,-0.1550604,-0.967379,0.2003346,-0.1550604,-0.967379,0.2003346,-0.1550604,-0.967379,0.2003346,-0.1550604,-0.967379,0.2003346,-0.1550604,-0.967379,0.2003346,-0.1550604,-0.967379,-0.99866,0.05175133,0,-0.99866,0.05175133,0,-0.99866,0.05175133,0,-0.99866,0.05175133,0,-0.99866,0.05175133,0,-0.99866,0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,0,0.05175149,0.99866,0,0.05175149,0.99866,0,0.05175149,0.99866,0,0.05175149,0.99866,0,0.05175149,0.99866,0,0.05175149,0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0.99866,0.05175133,0,0.99866,0.05175133,0,0.99866,0.05175133,0,0.99866,0.05175133,0,0.99866,0.05175133,0,0.99866,0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,0.7467961,0.05175149,0.6630365,0.7467961,0.05175149,0.6630365,0.7467961,0.05175149,0.6630365,0.7467961,0.05175149,0.6630365,0.7467961,0.05175149,0.6630365,0.7467961,0.05175149,0.6630365,-0.7467961,-0.05175149,-0.6630365,-0.7467961,-0.05175149,-0.6630365,-0.7467961,-0.05175149,-0.6630365,-0.7467961,-0.05175149,-0.6630365,-0.7467961,-0.05175149,-0.6630365,-0.7467961,-0.05175149,-0.6630365,-0.6630365,0.05175133,0.7467961,-0.6630365,0.05175133,0.7467961,-0.6630365,0.05175133,0.7467961,-0.6630365,0.05175133,0.7467961,-0.6630365,0.05175133,0.7467961,-0.6630365,0.05175133,0.7467961,0.6630365,-0.05175133,-0.7467961,0.6630365,-0.05175133,-0.7467961,0.6630365,-0.05175133,-0.7467961,0.6630365,-0.05175133,-0.7467961,0.6630365,-0.05175133,-0.7467961,0.6630365,-0.05175133,-0.7467961,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,-0.7387534,-0.1550609,-0.6558959,-0.7387534,-0.1550609,-0.6558959,-0.7387534,-0.1550609,-0.6558959,-0.7387534,-0.1550609,-0.6558959,-0.7387534,-0.1550609,-0.6558959,-0.7387534,-0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,0.7387534,-0.1550609,0.6558959,0.7387534,-0.1550609,0.6558959,0.7387534,-0.1550609,0.6558959,0.7387534,-0.1550609,0.6558959,0.7387534,-0.1550609,0.6558959,0.7387534,-0.1550609,0.6558959,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,-0.633448,0.2995069,0.7134698,-0.633448,0.2995069,0.7134698,-0.633448,0.2995069,0.7134698,-0.633448,0.2995069,0.7134698,-0.633448,0.2995069,0.7134698,-0.633448,0.2995069,0.7134698,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,-0.655896,-0.1550604,0.7387535,-0.655896,-0.1550604,0.7387535,-0.655896,-0.1550604,0.7387535,-0.655896,-0.1550604,0.7387535,-0.655896,-0.1550604,0.7387535,-0.655896,-0.1550604,0.7387535,0.6630365,0.05175133,-0.7467961,0.6630365,0.05175133,-0.7467961,0.6630365,0.05175133,-0.7467961,0.6630365,0.05175133,-0.7467961,0.6630365,0.05175133,-0.7467961,0.6630365,0.05175133,-0.7467961,-0.6630365,-0.05175133,0.7467961,-0.6630365,-0.05175133,0.7467961,-0.6630365,-0.05175133,0.7467961,-0.6630365,-0.05175133,0.7467961,-0.6630365,-0.05175133,0.7467961,-0.6630365,-0.05175133,0.7467961,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,0.7134696,0.2995078,0.6334479,0.7134696,0.2995078,0.6334479,0.7134696,0.2995078,0.6334479,0.7134696,0.2995078,0.6334479,0.7134696,0.2995078,0.6334479,0.7134696,0.2995078,0.6334479,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,0.655896,-0.1550604,-0.7387535,0.655896,-0.1550604,-0.7387535,0.655896,-0.1550604,-0.7387535,0.655896,-0.1550604,-0.7387535,0.655896,-0.1550604,-0.7387535,0.655896,-0.1550604,-0.7387535,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7467961,0.05175149,-0.6630365,-0.7467961,0.05175149,-0.6630365,-0.7467961,0.05175149,-0.6630365,-0.7467961,0.05175149,-0.6630365,-0.7467961,0.05175149,-0.6630365,-0.7467961,0.05175149,-0.6630365,0.7467961,-0.05175149,0.6630365,0.7467961,-0.05175149,0.6630365,0.7467961,-0.05175149,0.6630365,0.7467961,-0.05175149,0.6630365,0.7467961,-0.05175149,0.6630365,0.7467961,-0.05175149,0.6630365,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,0.633448,0.2995069,-0.7134698,0.633448,0.2995069,-0.7134698,0.633448,0.2995069,-0.7134698,0.633448,0.2995069,-0.7134698,0.633448,0.2995069,-0.7134698,0.633448,0.2995069,-0.7134698,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,-0.7134696,0.2995078,-0.6334479,-0.7134696,0.2995078,-0.6334479,-0.7134696,0.2995078,-0.6334479,-0.7134696,0.2995078,-0.6334479,-0.7134696,0.2995078,-0.6334479,-0.7134696,0.2995078,-0.6334479,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,-0.6985542,-0.1550609,0.6985542,-0.6985542,-0.1550609,0.6985542,-0.6985542,-0.1550609,0.6985542,-0.6985542,-0.1550609,0.6985542,-0.6985542,-0.1550609,0.6985542,-0.6985542,-0.1550609,0.6985542,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,0.6746462,0.2995078,-0.6746463,0.6746462,0.2995078,-0.6746463,0.6746462,0.2995078,-0.6746463,0.6746462,0.2995078,-0.6746463,0.6746462,0.2995078,-0.6746463,0.6746462,0.2995078,-0.6746463,0.7067317,0.03256784,0.7067317,0.7067317,0.03256784,0.7067317,0.7067317,0.03256784,0.7067317,0.7067317,0.03256784,0.7067317,0.7067317,0.03256784,0.7067317,0.7067317,0.03256784,0.7067317,-0.7067317,-0.03256784,-0.7067317,-0.7067317,-0.03256784,-0.7067317,-0.7067317,-0.03256784,-0.7067317,-0.7067317,-0.03256784,-0.7067317,-0.7067317,-0.03256784,-0.7067317,-0.7067317,-0.03256784,-0.7067317,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,-0.6746464,0.2995069,-0.6746464,-0.6746464,0.2995069,-0.6746464,-0.6746464,0.2995069,-0.6746464,-0.6746464,0.2995069,-0.6746464,-0.6746464,0.2995069,-0.6746464,-0.6746464,0.2995069,-0.6746464,0.7067317,0.03256795,-0.7067317,0.7067317,0.03256795,-0.7067317,0.7067317,0.03256795,-0.7067317,0.7067317,0.03256795,-0.7067317,0.7067317,0.03256795,-0.7067317,0.7067317,0.03256795,-0.7067317,-0.7067317,-0.03256795,0.7067317,-0.7067317,-0.03256795,0.7067317,-0.7067317,-0.03256795,0.7067317,-0.7067317,-0.03256795,0.7067317,-0.7067317,-0.03256795,0.7067317,-0.7067317,-0.03256795,0.7067317,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,0.6985542,-0.1550609,-0.6985542,0.6985542,-0.1550609,-0.6985542,0.6985542,-0.1550609,-0.6985542,0.6985542,-0.1550609,-0.6985542,0.6985542,-0.1550609,-0.6985542,0.6985542,-0.1550609,-0.6985542,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,0.6985543,-0.1550604,0.6985543,0.6985543,-0.1550604,0.6985543,0.6985543,-0.1550604,0.6985543,0.6985543,-0.1550604,0.6985543,0.6985543,-0.1550604,0.6985543,0.6985543,-0.1550604,0.6985543,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,-0.6985543,-0.1550604,-0.6985543,-0.6985543,-0.1550604,-0.6985543,-0.6985543,-0.1550604,-0.6985543,-0.6985543,-0.1550604,-0.6985543,-0.6985543,-0.1550604,-0.6985543,-0.6985543,-0.1550604,-0.6985543,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,0.6746464,0.2995069,0.6746464,0.6746464,0.2995069,0.6746464,0.6746464,0.2995069,0.6746464,0.6746464,0.2995069,0.6746464,0.6746464,0.2995069,0.6746464,0.6746464,0.2995069,0.6746464,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,-0.6746462,0.2995078,0.6746463,-0.6746462,0.2995078,0.6746463,-0.6746462,0.2995078,0.6746463,-0.6746462,0.2995078,0.6746463,-0.6746462,0.2995078,0.6746463,-0.6746462,0.2995078,0.6746463,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7067317,0.03256795,0.7067317,-0.7067317,0.03256795,0.7067317,-0.7067317,0.03256795,0.7067317,-0.7067317,0.03256795,0.7067317,-0.7067317,0.03256795,0.7067317,-0.7067317,0.03256795,0.7067317,0.7067317,-0.03256795,-0.7067317,0.7067317,-0.03256795,-0.7067317,0.7067317,-0.03256795,-0.7067317,0.7067317,-0.03256795,-0.7067317,0.7067317,-0.03256795,-0.7067317,0.7067317,-0.03256795,-0.7067317,-0.7067317,0.03256784,-0.7067317,-0.7067317,0.03256784,-0.7067317,-0.7067317,0.03256784,-0.7067317,-0.7067317,0.03256784,-0.7067317,-0.7067317,0.03256784,-0.7067317,-0.7067317,0.03256784,-0.7067317,0.7067317,-0.03256784,0.7067317,0.7067317,-0.03256784,0.7067317,0.7067317,-0.03256784,0.7067317,0.7067317,-0.03256784,0.7067317,0.7067317,-0.03256784,0.7067317,0.7067317,-0.03256784,0.7067317,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,-0.4997347,0.03256795,0.865566,-0.4997347,0.03256795,0.865566,-0.4997347,0.03256795,0.865566,-0.4997347,0.03256795,0.865566,-0.4997347,0.03256795,0.865566,-0.4997347,0.03256795,0.865566,0.4997347,-0.03256795,-0.865566,0.4997347,-0.03256795,-0.865566,0.4997347,-0.03256795,-0.865566,0.4997347,-0.03256795,-0.865566,0.4997347,-0.03256795,-0.865566,0.4997347,-0.03256795,-0.865566,0.4997347,0.03256795,-0.865566,0.4997347,0.03256795,-0.865566,0.4997347,0.03256795,-0.865566,0.4997347,0.03256795,-0.865566,0.4997347,0.03256795,-0.865566,0.4997347,0.03256795,-0.865566,-0.4997347,-0.03256795,0.865566,-0.4997347,-0.03256795,0.865566,-0.4997347,-0.03256795,0.865566,-0.4997347,-0.03256795,0.865566,-0.4997347,-0.03256795,0.865566,-0.4997347,-0.03256795,0.865566,0.865566,0.03256784,0.4997347,0.865566,0.03256784,0.4997347,0.865566,0.03256784,0.4997347,0.865566,0.03256784,0.4997347,0.865566,0.03256784,0.4997347,0.865566,0.03256784,0.4997347,-0.865566,-0.03256784,-0.4997347,-0.865566,-0.03256784,-0.4997347,-0.865566,-0.03256784,-0.4997347,-0.865566,-0.03256784,-0.4997347,-0.865566,-0.03256784,-0.4997347,-0.865566,-0.03256784,-0.4997347,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,-0.865566,0.03256784,-0.4997347,-0.865566,0.03256784,-0.4997347,-0.865566,0.03256784,-0.4997347,-0.865566,0.03256784,-0.4997347,-0.865566,0.03256784,-0.4997347,-0.865566,0.03256784,-0.4997347,0.865566,-0.03256784,0.4997347,0.865566,-0.03256784,0.4997347,0.865566,-0.03256784,0.4997347,0.865566,-0.03256784,0.4997347,0.865566,-0.03256784,0.4997347,0.865566,-0.03256784,0.4997347,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,0.4770469,0.2995078,-0.8262695,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0.8555508,-0.1550604,0.4939525,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.4770469,0.2995078,0.8262695,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,-0.865874,0.01869812,-0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.865874,-0.01869812,0.4999126,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,0.4999126,0.01869817,-0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,-0.01869817,0.865874,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,-0.4999126,0.01869817,0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.4999126,-0.01869817,-0.865874,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,0.865874,0.01869812,0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.865874,-0.01869812,-0.4999126,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,0.8262697,0.2995069,0.4770471,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.4939525,-0.1550609,-0.8555508,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,-0.8555508,-0.1550604,-0.4939525,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,-0.8262697,0.2995069,-0.4770471,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,-0.4939525,-0.1550609,0.8555508,0.4997347,0.03256795,0.865566,0.4997347,0.03256795,0.865566,0.4997347,0.03256795,0.865566,0.4997347,0.03256795,0.865566,0.4997347,0.03256795,0.865566,0.4997347,0.03256795,0.865566,-0.4997347,-0.03256795,-0.865566,-0.4997347,-0.03256795,-0.865566,-0.4997347,-0.03256795,-0.865566,-0.4997347,-0.03256795,-0.865566,-0.4997347,-0.03256795,-0.865566,-0.4997347,-0.03256795,-0.865566,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,0.4770469,0.2995078,0.8262695,0.4770469,0.2995078,0.8262695,0.4770469,0.2995078,0.8262695,0.4770469,0.2995078,0.8262695,0.4770469,0.2995078,0.8262695,0.4770469,0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,-0.4770469,0.2995078,-0.8262695,-0.4770469,0.2995078,-0.8262695,-0.4770469,0.2995078,-0.8262695,-0.4770469,0.2995078,-0.8262695,-0.4770469,0.2995078,-0.8262695,-0.4770469,0.2995078,-0.8262695,-0.4997347,0.03256795,-0.865566,-0.4997347,0.03256795,-0.865566,-0.4997347,0.03256795,-0.865566,-0.4997347,0.03256795,-0.865566,-0.4997347,0.03256795,-0.865566,-0.4997347,0.03256795,-0.865566,0.4997347,-0.03256795,0.865566,0.4997347,-0.03256795,0.865566,0.4997347,-0.03256795,0.865566,0.4997347,-0.03256795,0.865566,0.4997347,-0.03256795,0.865566,0.4997347,-0.03256795,0.865566,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,0.8262697,0.2995069,-0.4770471,0.8262697,0.2995069,-0.4770471,0.8262697,0.2995069,-0.4770471,0.8262697,0.2995069,-0.4770471,0.8262697,0.2995069,-0.4770471,0.8262697,0.2995069,-0.4770471,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,-0.8555508,-0.1550604,0.4939525,-0.8555508,-0.1550604,0.4939525,-0.8555508,-0.1550604,0.4939525,-0.8555508,-0.1550604,0.4939525,-0.8555508,-0.1550604,0.4939525,-0.8555508,-0.1550604,0.4939525,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,0.8555508,-0.1550604,-0.4939525,0.8555508,-0.1550604,-0.4939525,0.8555508,-0.1550604,-0.4939525,0.8555508,-0.1550604,-0.4939525,0.8555508,-0.1550604,-0.4939525,0.8555508,-0.1550604,-0.4939525,-0.865566,0.03256784,0.4997347,-0.865566,0.03256784,0.4997347,-0.865566,0.03256784,0.4997347,-0.865566,0.03256784,0.4997347,-0.865566,0.03256784,0.4997347,-0.865566,0.03256784,0.4997347,0.865566,-0.03256784,-0.4997347,0.865566,-0.03256784,-0.4997347,0.865566,-0.03256784,-0.4997347,0.865566,-0.03256784,-0.4997347,0.865566,-0.03256784,-0.4997347,0.865566,-0.03256784,-0.4997347,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,-0.8262697,0.2995069,0.4770471,-0.8262697,0.2995069,0.4770471,-0.8262697,0.2995069,0.4770471,-0.8262697,0.2995069,0.4770471,-0.8262697,0.2995069,0.4770471,-0.8262697,0.2995069,0.4770471,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.865566,0.03256784,-0.4997347,0.865566,0.03256784,-0.4997347,0.865566,0.03256784,-0.4997347,0.865566,0.03256784,-0.4997347,0.865566,0.03256784,-0.4997347,0.865566,0.03256784,-0.4997347,-0.865566,-0.03256784,0.4997347,-0.865566,-0.03256784,0.4997347,-0.865566,-0.03256784,0.4997347,-0.865566,-0.03256784,0.4997347,-0.865566,-0.03256784,0.4997347,-0.865566,-0.03256784,0.4997347,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,-0.4939525,-0.1550609,-0.8555508,-0.4939525,-0.1550609,-0.8555508,-0.4939525,-0.1550609,-0.8555508,-0.4939525,-0.1550609,-0.8555508,-0.4939525,-0.1550609,-0.8555508,-0.4939525,-0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,0.4939525,-0.1550609,0.8555508,0.4939525,-0.1550609,0.8555508,0.4939525,-0.1550609,0.8555508,0.4939525,-0.1550609,0.8555508,0.4939525,-0.1550609,0.8555508,0.4939525,-0.1550609,0.8555508,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.05175149,0.99866,0,0.05175149,0.99866,0,0.05175149,0.99866,0,0.05175149,0.99866,0,0.05175149,0.99866,0,0.05175149,0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,-0.05175149,-0.99866,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,0.05175149,-0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0,-0.05175149,0.99866,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,-0.9540941,0.2995069,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.9540941,0.2995069,0,0.99866,0.05175133,0,0.99866,0.05175133,0,0.99866,0.05175133,0,0.99866,0.05175133,0,0.99866,0.05175133,0,0.99866,0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,-0.99866,-0.05175133,0,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.1550609,0.9879049,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,0,0.2995079,-0.9540939,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,0.987905,-0.1550604,0,-0.99866,0.05175133,0,-0.99866,0.05175133,0,-0.99866,0.05175133,0,-0.99866,0.05175133,0,-0.99866,0.05175133,0,-0.99866,0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0.99866,-0.05175133,0,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.2995079,0.9540939,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0,-0.1550609,-0.9879049,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0,-0.987905,-0.1550604,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *2880 { + a: -2.874293,0.09001585,-3.989159,0.09001585,-3.047097,9.331784,-3.816355,9.331784,-3.047097,9.331784,-3.989159,0.09001585,-2.874293,0.09001585,-3.816355,9.331784,2.874293,-0.1108617,3.047097,9.130906,3.989159,-0.1108617,3.816355,9.130906,3.989159,-0.1108617,3.047097,9.130906,2.874293,-0.1108617,3.816355,9.130906,6.169162,10.83637,4.574034,10.83637,5.756226,13.49944,4.98697,13.49944,5.756226,13.49944,4.574034,10.83637,6.169162,10.83637,4.98697,13.49944,-4.574034,9.772115,-6.169162,9.772115,-4.98697,12.43519,-5.756226,12.43519,-4.98697,12.43519,-6.169162,9.772115,-4.574034,9.772115,-5.756226,12.43519,-4.98697,9.959001,-5.756226,9.959001,-4.574034,11.33772,-6.169162,11.33772,-4.574034,11.33772,-5.756226,9.959001,-4.98697,9.959001,-6.169162,11.33772,2.634159,9.47132,3.047097,12.13439,4.229293,9.47132,3.816355,12.13439,4.229293,9.47132,3.047097,12.13439,2.634159,9.47132,3.816355,12.13439,-5.264122,1.930487,-6.3596,1.723495,-5.471116,3.025969,-6.566594,2.818976,-5.471116,3.025969,-6.3596,1.723495,-5.264122,1.930487,-6.566594,2.818976,-4.814167,-0.07459,-5.929029,-0.07459,-4.98697,9.167178,-5.756226,9.167178,-4.98697,9.167178,-5.929029,-0.07459,-4.814167,-0.07459,-5.756226,9.167178,-2.634159,11.13717,-4.229293,11.13717,-3.047097,13.80024,-3.816355,13.80024,-3.047097,13.80024,-4.229293,11.13717,-2.634159,11.13717,-3.816355,13.80024,5.756226,7.903343,4.98697,7.903343,6.169162,9.282065,4.574034,9.282065,6.169162,9.282065,4.98697,7.903343,5.756226,7.903343,4.574034,9.282065,2.634159,11.91873,4.229293,11.91873,3.047097,10.54,3.816355,10.54,3.047097,10.54,4.229293,11.91873,2.634159,11.91873,3.816355,10.54,4.98358,1.739113,5.279743,3.306512,6.550973,1.442951,6.847136,3.01035,6.550973,1.442951,5.279743,3.306512,4.98358,1.739113,6.847136,3.01035,5.466005,2.068203,5.608831,2.824085,6.221885,1.925378,6.36471,2.68126,6.221885,1.925378,5.608831,2.824085,5.466005,2.068203,6.36471,2.68126,-2.634159,8.701065,-3.047097,7.322343,-4.229293,8.701065,-3.816355,7.322343,-4.229293,8.701065,-3.047097,7.322343,-2.634159,8.701065,-3.816355,7.322343,5.929029,0.05374404,4.814167,0.05374404,5.756226,9.295512,4.98697,9.295512,5.756226,9.295512,4.814167,0.05374404,5.929029,0.05374404,4.98697,9.295512,1.54985,-0.1363608,0.4349875,-0.1363608,1.377046,9.105408,0.6077912,9.105408,1.377046,9.105408,0.4349875,-0.1363608,1.54985,-0.1363608,0.6077912,9.105408,-5.937734,10.60713,-6.350672,9.22841,-7.532868,10.60713,-7.11993,9.22841,-7.532868,10.60713,-6.350672,9.22841,-5.937734,10.60713,-7.11993,9.22841,6.177868,0.008133448,6.350672,9.249902,7.292734,0.008133448,7.11993,9.249902,7.292734,0.008133448,6.350672,9.249902,6.177868,0.008133448,7.11993,9.249902,-6.177868,-0.02897927,-7.292734,-0.02897927,-6.350672,9.212789,-7.11993,9.212789,-6.350672,9.212789,-7.292734,-0.02897927,-6.177868,-0.02897927,-7.11993,9.212789,1.789983,9.259859,0.1948543,9.259859,1.377046,11.92293,0.6077912,11.92293,1.377046,11.92293,0.1948543,9.259859,1.789983,9.259859,0.6077912,11.92293,-5.937734,10.15036,-7.532868,10.15036,-6.350672,12.81343,-7.11993,12.81343,-6.350672,12.81343,-7.532868,10.15036,-5.937734,10.15036,-7.11993,12.81343,1.982779,6.188366,2.367408,6.854563,2.648973,5.803739,3.033602,6.469935,2.648973,5.803739,2.367408,6.854563,1.982779,6.188366,3.033602,6.469935,1.377046,10.94845,0.6077912,10.94845,1.789983,12.32717,0.1948543,12.32717,1.789983,12.32717,0.6077912,10.94845,1.377046,10.94845,0.1948543,12.32717,1.418696,6.03722,2.216263,7.418646,2.800118,5.239655,3.597685,6.621082,2.800118,5.239655,2.216263,7.418646,1.418696,6.03722,3.597685,6.621082,5.937734,10.01266,7.532868,10.01266,6.350672,8.633938,7.11993,8.633938,6.350672,8.633938,7.532868,10.01266,5.937734,10.01266,7.11993,8.633938,-0.4349875,0.1155149,-1.54985,0.1155149,-0.6077912,9.357283,-1.377046,9.357283,-0.6077912,9.357283,-1.54985,0.1155149,-0.4349875,0.1155149,-1.377046,9.357283,-0.6077912,6.913897,-1.377046,6.913897,-0.1948543,8.292619,-1.789983,8.292619,-0.1948543,8.292619,-1.377046,6.913897,-0.6077912,6.913897,-1.789983,8.292619,-1.746725,6.125115,-2.712224,5.567685,-2.304157,7.090618,-3.269657,6.533186,-2.304157,7.090618,-2.712224,5.567685,-1.746725,6.125115,-3.269657,6.533186,5.937734,10.45813,6.350672,13.1212,7.532868,10.45813,7.11993,13.1212,7.532868,10.45813,6.350672,13.1212,5.937734,10.45813,7.11993,13.1212,-0.1948543,11.34862,-1.789983,11.34862,-0.6077912,14.01169,-1.377046,14.01169,-0.6077912,14.01169,-1.789983,11.34862,-0.1948543,11.34862,-1.377046,14.01169,2.65311,3.884676,4.248244,3.884676,3.066048,2.505953,3.835305,2.505953,3.066048,2.505953,4.248244,3.884676,2.65311,3.884676,3.835305,2.505953,-2.65311,9.222564,-3.066048,7.843842,-4.248244,9.222564,-3.835305,7.843842,-4.248244,9.222564,-3.066048,7.843842,-2.65311,9.222564,-3.835305,7.843842,-8.353696,0.09422702,-9.468558,0.09422702,-8.5265,5.400186,-9.295754,5.400186,-8.5265,5.400186,-9.468558,0.09422702,-8.353696,0.09422702,-9.295754,5.400186,-2.893244,-0.3083705,-4.00811,-0.3083705,-3.066048,4.997589,-3.835305,4.997589,-3.066048,4.997589,-4.00811,-0.3083705,-2.893244,-0.3083705,-3.835305,4.997589,9.295754,6.208402,8.5265,6.208402,9.708692,7.587124,8.113563,7.587124,9.708692,7.587124,8.5265,6.208402,9.295754,6.208402,8.113563,7.587124,-8.5265,4.141392,-9.295754,4.141392,-8.113563,5.520115,-9.708692,5.520115,-8.113563,5.520115,-9.295754,4.141392,-8.5265,4.141392,-9.708692,5.520115,9.708692,5.879786,8.113563,5.879786,9.295754,8.542857,8.5265,8.542857,9.295754,8.542857,8.113563,5.879786,9.708692,5.879786,8.5265,8.542857,-8.113563,6.949917,-9.708692,6.949917,-8.5265,9.612988,-9.295754,9.612988,-8.5265,9.612988,-9.708692,6.949917,-8.113563,6.949917,-9.295754,9.612988,-2.65311,5.03309,-4.248244,5.03309,-3.066048,7.69616,-3.835305,7.69616,-3.066048,7.69616,-4.248244,5.03309,-2.65311,5.03309,-3.835305,7.69616,9.468558,4.00811,9.468558,2.893244,8.353696,4.00811,8.353696,2.893244,8.353696,4.00811,9.468558,2.893244,9.468558,4.00811,8.353696,2.893244,-9.295754,3.066048,-9.295754,3.835305,-8.5265,3.066048,-8.5265,3.835305,-8.5265,3.066048,-9.295754,3.835305,-9.295754,3.066048,-8.5265,3.835305,-9.708692,2.65311,-9.708692,4.248244,-8.113563,2.65311,-8.113563,4.248244,-8.113563,2.65311,-9.708692,4.248244,-9.708692,2.65311,-8.113563,4.248244,2.893244,0.2720619,3.066048,5.578021,4.00811,0.2720619,3.835305,5.578021,4.00811,0.2720619,3.066048,5.578021,2.893244,0.2720619,3.835305,5.578021,2.65311,7.796616,3.066048,10.45969,4.248244,7.796616,3.835305,10.45969,4.248244,7.796616,3.066048,10.45969,2.65311,7.796616,3.835305,10.45969,9.468558,-0.1305359,8.353696,-0.1305359,9.295754,5.175423,8.5265,5.175423,9.295754,5.175423,8.353696,-0.1305359,9.468558,-0.1305359,8.5265,5.175423,2.210903,2.673642,1.441648,2.673642,2.62384,4.052365,1.028711,4.052365,2.62384,4.052365,1.441648,2.673642,2.210903,2.673642,1.028711,4.052365,-1.268844,-0.2901364,-2.383707,-0.2901364,-1.441648,5.015823,-2.210903,5.015823,-1.441648,5.015823,-2.383707,-0.2901364,-1.268844,-0.2901364,-2.210903,5.015823,-1.441648,7.676151,-2.210903,7.676151,-1.028711,9.054874,-2.62384,9.054874,-1.028711,9.054874,-2.210903,7.676151,-1.441648,7.676151,-2.62384,9.054874,-7.793783,0.04132353,-8.908648,0.04132353,-7.966587,5.347283,-8.735844,5.347283,-7.966587,5.347283,-8.908648,0.04132353,-7.793783,0.04132353,-8.735844,5.347283,-1.028711,5.119905,-2.62384,5.119905,-1.441648,7.782975,-2.210903,7.782975,-1.441648,7.782975,-2.62384,5.119905,-1.028711,5.119905,-2.210903,7.782975,7.553648,6.13167,7.966587,8.794741,9.148783,6.13167,8.735844,8.794741,9.148783,6.13167,7.966587,8.794741,7.553648,6.13167,8.735844,8.794741,-4.890173,7.8003,-3.641812,8.79329,-3.897179,6.551935,-2.648818,7.544926,-3.897179,6.551935,-3.641812,8.79329,-4.890173,7.8003,-2.648818,7.544926,2.62384,7.709799,1.028711,7.709799,2.210903,10.37287,1.441648,10.37287,2.210903,10.37287,1.028711,7.709799,2.62384,7.709799,1.441648,10.37287,-4.309945,7.73419,-3.70792,8.213062,-3.831071,7.132163,-3.229046,7.611035,-3.831071,7.132163,-3.70792,8.213062,-4.309945,7.73419,-3.229046,7.611035,-7.553648,6.698036,-9.148783,6.698036,-7.966587,9.361107,-8.735844,9.361107,-7.966587,9.361107,-9.148783,6.698036,-7.553648,6.698036,-8.735844,9.361107,-7.553648,6.006638,-7.966587,4.627915,-9.148783,6.006638,-8.735844,4.627915,-9.148783,6.006638,-7.966587,4.627915,-7.553648,6.006638,-8.735844,4.627915,7.553648,7.100602,9.148783,7.100602,7.966587,5.72188,8.735844,5.72188,7.966587,5.72188,9.148783,7.100602,7.553648,7.100602,8.735844,5.72188,4.552756,7.761855,3.858736,6.889352,3.680256,8.455873,2.986235,7.58337,3.680256,8.455873,3.858736,6.889352,4.552756,7.761855,2.986235,7.58337,7.793783,-0.07763219,7.966587,5.228327,8.908648,-0.07763219,8.735844,5.228327,8.908648,-0.07763219,7.966587,5.228327,7.793783,-0.07763219,8.735844,5.228327,2.383707,0.2538275,1.268844,0.2538275,2.210903,5.559787,1.441648,5.559787,2.210903,5.559787,1.268844,0.2538275,2.383707,0.2538275,1.441648,5.559787,-4.771373,-8.28337,-5.863075,-8.50945,-4.997453,-7.191671,-6.089155,-7.417752,-4.997453,-7.191671,-5.863075,-8.50945,-4.771373,-8.28337,-6.089155,-7.417752,4.487532,-8.469817,4.811004,-6.907831,6.049523,-8.79329,6.372995,-7.231304,6.049523,-8.79329,4.811004,-6.907831,4.487532,-8.469817,6.372995,-7.231304,4.975629,-8.149199,5.131624,-7.395927,5.728903,-8.305195,5.884899,-7.551923,5.728903,-8.305195,5.131624,-7.395927,4.975629,-8.149199,5.884899,-7.551923,-7.383824,8.623049,-5.788695,8.623049,-6.970887,7.244326,-6.201632,7.244326,-6.970887,7.244326,-5.788695,8.623049,-7.383824,8.623049,-6.201632,7.244326,7.143691,0.2068716,6.028829,0.2068716,6.970887,5.512831,6.201632,5.512831,6.970887,5.512831,6.028829,0.2068716,7.143691,0.2068716,6.201632,5.512831,-7.143691,-0.2431805,-6.970887,5.062779,-6.028829,-0.2431805,-6.201632,5.062779,-6.028829,-0.2431805,-6.970887,5.062779,-7.143691,-0.2431805,-6.201632,5.062779,7.466865,-0.2326546,6.351999,-0.2326546,7.294061,5.073305,6.524804,5.073305,7.294061,5.073305,6.351999,-0.2326546,7.466865,-0.2326546,6.524804,5.073305,-6.524804,3.202267,-7.294061,3.202267,-6.111865,4.58099,-7.706999,4.58099,-6.111865,4.58099,-7.294061,3.202267,-6.524804,3.202267,-7.706999,4.58099,7.383824,7.486235,5.788695,7.486235,6.970887,10.14931,6.201632,10.14931,6.970887,10.14931,5.788695,7.486235,7.383824,7.486235,6.201632,10.14931,7.383824,4.48419,6.970887,3.105468,5.788695,4.48419,6.201632,3.105468,5.788695,4.48419,6.970887,3.105468,7.383824,4.48419,6.201632,3.105468,-7.383824,5.343469,-6.970887,8.006539,-5.788695,5.343469,-6.201632,8.006539,-5.788695,5.343469,-6.970887,8.006539,-7.383824,5.343469,-6.201632,8.006539,7.294061,7.147528,6.524804,7.147528,7.706999,8.52625,6.111865,8.52625,7.706999,8.52625,6.524804,7.147528,7.294061,7.147528,6.111865,8.52625,7.706999,5.393585,6.111865,5.393585,7.294061,8.056655,6.524804,8.056655,7.294061,8.056655,6.111865,5.393585,7.706999,5.393585,6.524804,8.056655,-6.351999,0.196346,-7.466865,0.196346,-6.524804,5.502305,-7.294061,5.502305,-6.524804,5.502305,-7.466865,0.196346,-6.351999,0.196346,-7.294061,5.502305,-6.111865,7.436121,-7.706999,7.436121,-6.524804,10.09919,-7.294061,10.09919,-6.524804,10.09919,-7.706999,7.436121,-6.111865,7.436121,-7.294061,10.09919,5.104974,-0.5150828,5.277778,2.824032,6.21984,-0.5150828,6.047035,2.824032,6.21984,-0.5150828,5.277778,2.824032,5.104974,-0.5150828,6.047035,2.824032,8.598039,4.86484,8.598039,6.459974,10.19317,4.86484,10.19317,6.459974,10.19317,4.86484,8.598039,6.459974,8.598039,4.86484,10.19317,6.459974,-8.838172,6.21984,-8.838172,5.104974,-9.953033,6.21984,-9.953033,5.104974,-9.953033,6.21984,-8.838172,5.104974,-8.838172,6.21984,-9.953033,5.104974,9.780231,1.600824,9.010975,1.600824,10.19317,2.979547,8.598039,2.979547,10.19317,2.979547,9.010975,1.600824,9.780231,1.600824,8.598039,2.979547,9.953033,0.26419,8.838172,0.26419,9.780231,3.603305,9.010975,3.603305,9.780231,3.603305,8.838172,0.26419,9.953033,0.26419,9.010975,3.603305,-4.86484,1.861434,-5.277778,0.4827116,-6.459974,1.861434,-6.047035,0.4827116,-6.459974,1.861434,-5.277778,0.4827116,-4.86484,1.861434,-6.047035,0.4827116,-4.86484,5.927044,-6.459974,5.927044,-5.277778,8.590115,-6.047035,8.590115,-5.277778,8.590115,-6.459974,5.927044,-4.86484,5.927044,-6.047035,8.590115,-8.838172,-0.321886,-9.953033,-0.321886,-9.010975,3.017229,-9.780231,3.017229,-9.010975,3.017229,-9.953033,-0.321886,-8.838172,-0.321886,-9.780231,3.017229,-8.598039,3.592139,-10.19317,3.592139,-9.010975,6.25521,-9.780231,6.25521,-9.010975,6.25521,-10.19317,3.592139,-8.598039,3.592139,-9.780231,6.25521,4.86484,3.013272,5.277778,5.676342,6.459974,3.013272,6.047035,5.676342,6.459974,3.013272,5.277778,5.676342,4.86484,3.013272,6.047035,5.676342,9.010975,5.277778,9.010975,6.047035,9.780231,5.277778,9.780231,6.047035,9.780231,5.277778,9.010975,6.047035,9.010975,5.277778,9.780231,6.047035,4.86484,7.48953,6.459974,7.48953,5.277778,6.110807,6.047035,6.110807,5.277778,6.110807,6.459974,7.48953,4.86484,7.48953,6.047035,6.110807,-9.010975,4.992694,-9.780231,4.992694,-8.598039,6.371417,-10.19317,6.371417,-8.598039,6.371417,-9.780231,4.992694,-9.010975,4.992694,-10.19317,6.371417,10.19317,5.348175,8.598039,5.348175,9.780231,8.011246,9.010975,8.011246,9.780231,8.011246,8.598039,5.348175,10.19317,5.348175,9.010975,8.011246,-5.104974,0.4573872,-6.21984,0.4573872,-5.277778,3.796502,-6.047035,3.796502,-5.277778,3.796502,-6.21984,0.4573872,-5.104974,0.4573872,-6.047035,3.796502,-2.218655,-0.2478676,-3.333518,-0.2478676,-2.391459,3.091247,-3.160714,3.091247,-2.391459,3.091247,-3.333518,-0.2478676,-2.218655,-0.2478676,-3.160714,3.091247,4.789574,-0.172514,3.674708,-0.172514,4.61677,3.166601,3.847513,3.166601,4.61677,3.166601,3.674708,-0.172514,4.789574,-0.172514,3.847513,3.166601,-1.978522,3.813917,-3.573651,3.813917,-2.391459,6.476988,-3.160714,6.476988,-2.391459,6.476988,-3.573651,3.813917,-1.978522,3.813917,-3.160714,6.476988,1.978522,5.126397,2.391459,7.789468,3.573651,5.126397,3.160714,7.789468,3.573651,5.126397,2.391459,7.789468,1.978522,5.126397,3.160714,7.789468,-3.847513,2.465302,-4.61677,2.465302,-3.434574,3.844025,-5.029708,3.844025,-3.434574,3.844025,-4.61677,2.465302,-3.847513,2.465302,-5.029708,3.844025,-3.434574,4.90062,-5.029708,4.90062,-3.847513,7.56369,-4.61677,7.56369,-3.847513,7.56369,-5.029708,4.90062,-3.434574,4.90062,-4.61677,7.56369,-3.674708,0.1148184,-4.789574,0.1148184,-3.847513,3.453933,-4.61677,3.453933,-3.847513,3.453933,-4.789574,0.1148184,-3.674708,0.1148184,-4.61677,3.453933,1.978522,3.407923,3.573651,3.407923,2.391459,2.0292,3.160714,2.0292,2.391459,2.0292,3.573651,3.407923,1.978522,3.407923,3.160714,2.0292,5.029708,4.039697,3.434574,4.039697,4.61677,6.702768,3.847513,6.702768,4.61677,6.702768,3.434574,4.039697,5.029708,4.039697,3.847513,6.702768,2.108611,4.83903,1.274917,4.098842,1.368425,5.672722,0.5347303,4.932533,1.368425,5.672722,1.274917,4.098842,2.108611,4.83903,0.5347303,4.932533,2.218655,0.1901717,2.391459,3.529287,3.333518,0.1901717,3.160714,3.529287,3.333518,0.1901717,2.391459,3.529287,2.218655,0.1901717,3.160714,3.529287,-1.86466,4.853523,-1.353931,5.428771,-1.28941,4.342793,-0.7786818,4.91804,-1.28941,4.342793,-1.353931,5.428771,-1.86466,4.853523,-0.7786818,4.91804,-2.447614,4.81889,-1.388566,6.011724,-1.254776,3.759839,-0.1957278,4.952673,-1.254776,3.759839,-1.388566,6.011724,-2.447614,4.81889,-0.1957278,4.952673,4.61677,4.128217,3.847513,4.128217,5.029708,5.506939,3.434574,5.506939,5.029708,5.506939,3.847513,4.128217,4.61677,4.128217,3.434574,5.506939,-1.978522,5.943042,-2.391459,4.564319,-3.573651,5.943042,-3.160714,4.564319,-3.573651,5.943042,-2.391459,4.564319,-1.978522,5.943042,-3.160714,4.564319,1.008228,6.132647,-0.5869003,6.132647,0.5952916,8.795718,-0.1739634,8.795718,0.5952916,8.795718,-0.5869003,6.132647,1.008228,6.132647,-0.1739634,8.795718,0.1739634,4.629805,-0.5952916,4.629805,0.5869003,6.008528,-1.008228,6.008528,0.5869003,6.008528,-0.5952916,4.629805,0.1739634,4.629805,-1.008228,6.008528,2.377392,-0.01129346,1.262526,-0.01129346,2.204588,5.294666,1.43533,5.294666,2.204588,5.294666,1.262526,-0.01129346,2.377392,-0.01129346,1.43533,5.294666,2.617526,6.490525,2.204588,5.111802,1.022392,6.490525,1.43533,5.111802,1.022392,6.490525,2.204588,5.111802,2.617526,6.490525,1.43533,5.111802,0.7680952,-0.07742678,-0.3467671,-0.07742678,0.5952916,5.228532,-0.1739634,5.228532,0.5952916,5.228532,-0.3467671,-0.07742678,0.7680952,-0.07742678,-0.1739634,5.228532,0.5869003,6.697056,-1.008228,6.697056,0.1739634,9.360127,-0.5952916,9.360127,0.1739634,9.360127,-1.008228,6.697056,0.5869003,6.697056,-0.5952916,9.360127,-2.617526,6.382187,-2.204588,9.045258,-1.022392,6.382187,-1.43533,9.045258,-1.022392,6.382187,-2.204588,9.045258,-2.617526,6.382187,-1.43533,9.045258,1.926271,-1.435869,1.137945,-2.224195,1.137942,-0.6475395,0.3496155,-1.435866,1.137942,-0.6475395,1.137945,-2.224195,1.926271,-1.435869,0.3496155,-1.435866,2.617526,6.447519,1.022392,6.447519,2.204588,9.110589,1.43533,9.110589,2.204588,9.110589,1.022392,6.447519,2.617526,6.447519,1.43533,9.110589,-2.617526,6.616715,-1.022392,6.616715,-2.204588,5.237993,-1.43533,5.237993,-2.204588,5.237993,-1.022392,6.616715,-2.617526,6.616715,-1.43533,5.237993,0.5952916,5.719989,-0.1739634,5.719989,1.008228,7.098711,-0.5869003,7.098711,1.008228,7.098711,-0.1739634,5.719989,0.5952916,5.719989,-0.5869003,7.098711,-1.68189,-1.435868,-1.137943,-0.8919211,-1.137944,-1.979814,-0.5939971,-1.435866,-1.137944,-1.979814,-1.137943,-0.8919211,-1.68189,-1.435868,-0.5939971,-1.435866,-2.265872,-1.435869,-1.137942,-0.3079392,-1.137945,-2.563796,-0.0100152,-1.435866,-1.137945,-2.563796,-1.137942,-0.3079392,-2.265872,-1.435869,-0.0100152,-1.435866,0.3467671,0.04111788,-0.7680952,0.04111788,0.1739634,5.347077,-0.5952916,5.347077,0.1739634,5.347077,-0.7680952,0.04111788,0.3467671,0.04111788,-0.5952916,5.347077,-2.377392,-0.02501521,-2.204588,5.280944,-1.262526,-0.02501521,-1.43533,5.280944,-1.262526,-0.02501521,-2.204588,5.280944,-2.377392,-0.02501521,-1.43533,5.280944,5.654224,2.198326,4.884969,2.198326,6.067161,3.577049,4.472033,3.577049,6.067161,3.577049,4.884969,2.198326,5.654224,2.198326,4.472033,3.577049,5.827028,0.3055126,4.712166,0.3055126,5.654224,5.611472,4.884969,5.611472,5.654224,5.611472,4.712166,0.3055126,5.827028,0.3055126,4.884969,5.611472,-4.712166,-0.3418215,-5.827028,-0.3418215,-4.884969,4.964138,-5.654224,4.964138,-4.884969,4.964138,-5.827028,-0.3418215,-4.712166,-0.3418215,-5.654224,4.964138,10.49564,-0.1897737,9.380774,-0.1897737,10.32284,5.116186,9.553579,5.116186,10.32284,5.116186,9.380774,-0.1897737,10.49564,-0.1897737,9.553579,5.116186,-10.73577,4.975339,-9.14064,4.975339,-10.32284,3.596617,-9.553579,3.596617,-10.32284,3.596617,-9.14064,4.975339,-10.73577,4.975339,-9.553579,3.596617,-4.472033,4.873824,-6.067161,4.873824,-4.884969,7.536895,-5.654224,7.536895,-4.884969,7.536895,-6.067161,4.873824,-4.472033,4.873824,-5.654224,7.536895,10.73577,8.131901,10.32284,6.753178,9.14064,8.131901,9.553579,6.753178,9.14064,8.131901,10.32284,6.753178,10.73577,8.131901,9.553579,6.753178,10.73577,5.597747,9.14064,5.597747,10.32284,8.260818,9.553579,8.260818,10.32284,8.260818,9.14064,5.597747,10.73577,5.597747,9.553579,8.260818,-4.884969,8.151468,-5.654224,8.151468,-4.472033,9.53019,-6.067161,9.53019,-4.472033,9.53019,-5.654224,8.151468,-4.884969,8.151468,-6.067161,9.53019,-10.73577,7.231959,-10.32284,9.89503,-9.14064,7.231959,-9.553579,9.89503,-9.14064,7.231959,-10.32284,9.89503,-10.73577,7.231959,-9.553579,9.89503,-10.49564,0.1534651,-10.32284,5.459424,-9.380774,0.1534651,-9.553579,5.459424,-9.380774,0.1534651,-10.32284,5.459424,-10.49564,0.1534651,-9.553579,5.459424,6.067161,7.955879,4.472033,7.955879,5.654224,10.61895,4.884969,10.61895,5.654224,10.61895,4.472033,7.955879,6.067161,7.955879,4.884969,10.61895,10.29417,-6.175977,9.328675,-6.733408,9.736742,-5.210475,8.771242,-5.767906,9.736742,-5.210475,9.328675,-6.733408,10.29417,-6.175977,8.771242,-5.767906,-10.6222,-6.263873,-9.824636,-4.882446,-9.240781,-7.061437,-8.443214,-5.680011,-9.240781,-7.061437,-9.824636,-4.882446,-10.6222,-6.263873,-8.443214,-5.680011,-10.05812,-6.112726,-9.673491,-5.44653,-9.391926,-6.497354,-9.007297,-5.831157,-9.391926,-6.497354,-9.673491,-5.44653,-10.05812,-6.112726,-9.007297,-5.831157,-1.965199,-4.586314,-2.930698,-5.143745,-2.522631,-3.620812,-3.488131,-4.178243,-2.522631,-3.620812,-2.930698,-5.143745,-1.965199,-4.586314,-3.488131,-4.178243,-4.167872,8.202819,-4.937128,8.202819,-3.754936,9.581542,-5.350064,9.581542,-3.754936,9.581542,-4.937128,8.202819,-4.167872,8.202819,-5.350064,9.581542,-3.229399,9.59833,-2.816461,12.2614,-1.634265,9.59833,-2.047203,12.2614,-1.634265,9.59833,-2.816461,12.2614,-3.229399,9.59833,-2.047203,12.2614,2.201253,-4.523063,2.585882,-3.856866,2.867447,-4.90769,3.252076,-4.241494,2.867447,-4.90769,2.585882,-3.856866,2.201253,-4.523063,3.252076,-4.241494,1.63717,-4.674209,2.434737,-3.292783,3.018592,-5.471774,3.816159,-4.090347,3.018592,-5.471774,2.434737,-3.292783,1.63717,-4.674209,3.816159,-4.090347,4.937128,9.659525,4.167872,9.659525,5.350064,11.03825,3.754936,11.03825,5.350064,11.03825,4.167872,9.659525,4.937128,9.659525,3.754936,11.03825,-2.989265,-0.09554608,-2.816461,9.146222,-1.874399,-0.09554608,-2.047203,9.146222,-1.874399,-0.09554608,-2.816461,9.146222,-2.989265,-0.09554608,-2.047203,9.146222,5.109931,-0.0558938,3.995069,-0.0558938,4.937128,9.185874,4.167872,9.185874,4.937128,9.185874,3.995069,-0.0558938,5.109931,-0.0558938,4.167872,9.185874,-3.995069,0.03504784,-5.109931,0.03504784,-4.167872,9.276816,-4.937128,9.276816,-4.167872,9.276816,-5.109931,0.03504784,-3.995069,0.03504784,-4.937128,9.276816,2.989265,0.07470026,1.874399,0.07470026,2.816461,9.316468,2.047203,9.316468,2.816461,9.316468,1.874399,0.07470026,2.989265,0.07470026,2.047203,9.316468,-3.229399,11.6734,-1.634265,11.6734,-2.816461,10.29468,-2.047203,10.29468,-2.816461,10.29468,-1.634265,11.6734,-3.229399,11.6734,-2.047203,10.29468,-3.754936,10.68132,-5.350064,10.68132,-4.167872,13.34439,-4.937128,13.34439,-4.167872,13.34439,-5.350064,10.68132,-3.754936,10.68132,-4.937128,13.34439,3.229399,11.01016,1.634265,11.01016,2.816461,13.67323,2.047203,13.67323,2.816461,13.67323,1.634265,11.01016,3.229399,11.01016,2.047203,13.67323,3.229399,8.946391,2.816461,7.567668,1.634265,8.946391,2.047203,7.567668,1.634265,8.946391,2.816461,7.567668,3.229399,8.946391,2.047203,7.567668,5.350064,9.927159,3.754936,9.927159,4.937128,12.59023,4.167872,12.59023,4.937128,12.59023,3.754936,9.927159,5.350064,9.927159,4.167872,12.59023,-6.202661,0.2214347,-7.317523,0.2214347,-6.375465,5.527394,-7.14472,5.527394,-6.375465,5.527394,-7.317523,0.2214347,-6.202661,0.2214347,-7.14472,5.527394,7.14472,7.378254,6.375465,7.378254,7.557657,8.756977,5.962528,8.756977,7.557657,8.756977,6.375465,7.378254,7.14472,7.378254,5.962528,8.756977,-6.375465,2.971539,-7.14472,2.971539,-5.962528,4.350262,-7.557657,4.350262,-5.962528,4.350262,-7.14472,2.971539,-6.375465,2.971539,-7.557657,4.350262,7.317523,-0.2577436,6.202661,-0.2577436,7.14472,5.048215,6.375465,5.048215,7.14472,5.048215,6.202661,-0.2577436,7.317523,-0.2577436,6.375465,5.048215,-8.15416,8.578315,-6.559027,8.578315,-7.741222,7.199592,-6.971965,7.199592,-7.741222,7.199592,-6.559027,8.578315,-8.15416,8.578315,-6.971965,7.199592,8.15416,7.463076,6.559027,7.463076,7.741222,10.12615,6.971965,10.12615,7.741222,10.12615,6.559027,7.463076,8.15416,7.463076,6.971965,10.12615,-8.771242,-2.786915,-9.328675,-3.752417,-9.736742,-2.229484,-10.29417,-3.194986,-9.736742,-2.229484,-9.328675,-3.752417,-8.771242,-2.786915,-10.29417,-3.194986,-8.15416,5.36663,-7.741222,8.029701,-6.559027,5.36663,-6.971965,8.029701,-6.559027,5.36663,-7.741222,8.029701,-8.15416,5.36663,-6.971965,8.029701,-7.914026,-0.238316,-7.741222,5.067643,-6.79916,-0.238316,-6.971965,5.067643,-6.79916,-0.238316,-7.741222,5.067643,-7.914026,-0.238316,-6.971965,5.067643,8.15416,4.528925,7.741222,3.150203,6.559027,4.528925,6.971965,3.150203,6.559027,4.528925,7.741222,3.150203,8.15416,4.528925,6.971965,3.150203,8.443214,-2.69902,9.824636,-1.901455,9.240781,-4.080446,10.6222,-3.282882,9.240781,-4.080446,9.824636,-1.901455,8.443214,-2.69902,10.6222,-3.282882,9.007297,-2.850166,9.673491,-2.465539,9.391926,-3.516363,10.05812,-3.131735,9.391926,-3.516363,9.673491,-2.465539,9.007297,-2.850166,10.05812,-3.131735,7.914026,0.2020073,6.79916,0.2020073,7.741222,5.507967,6.971965,5.507967,7.741222,5.507967,6.79916,0.2020073,7.914026,0.2020073,6.971965,5.507967,-5.962528,7.555572,-7.557657,7.555572,-6.375465,10.21864,-7.14472,10.21864,-6.375465,10.21864,-7.557657,7.555572,-5.962528,7.555572,-7.14472,10.21864,7.557657,5.274131,5.962528,5.274131,7.14472,7.937202,6.375465,7.937202,7.14472,7.937202,5.962528,5.274131,7.557657,5.274131,6.375465,7.937202,-3.641718,-6.937746,-3.641718,-5.342612,-2.046589,-6.937746,-2.046589,-5.342612,-2.046589,-6.937746,-3.641718,-5.342612,-3.641718,-6.937746,-2.046589,-5.342612,3.401585,0.2889155,2.286722,0.2889155,3.228781,3.628031,2.459526,3.628031,3.228781,3.628031,2.286722,0.2889155,3.401585,0.2889155,2.459526,3.628031,-2.286722,-0.3466114,-3.401585,-0.3466114,-2.459526,2.992504,-3.228781,2.992504,-2.459526,2.992504,-3.401585,-0.3466114,-2.286722,-0.3466114,-3.228781,2.992504,3.401585,-5.582746,3.401585,-6.697612,2.286722,-5.582746,2.286722,-6.697612,2.286722,-5.582746,3.401585,-6.697612,3.401585,-5.582746,2.286722,-6.697612,6.937746,5.527326,6.524807,4.148603,5.342612,5.527326,5.75555,4.148603,5.342612,5.527326,6.524807,4.148603,6.937746,5.527326,5.75555,4.148603,-3.228781,-6.524807,-3.228781,-5.75555,-2.459526,-6.524807,-2.459526,-5.75555,-2.459526,-6.524807,-3.228781,-5.75555,-3.228781,-6.524807,-2.459526,-5.75555,-6.937746,3.823638,-5.342612,3.823638,-6.524807,2.444916,-5.75555,2.444916,-6.524807,2.444916,-5.342612,3.823638,-6.937746,3.823638,-5.75555,2.444916,6.697612,-0.1760365,5.582746,-0.1760365,6.524807,3.163079,5.75555,3.163079,6.524807,3.163079,5.582746,-0.1760365,6.697612,-0.1760365,5.75555,3.163079,-2.046589,3.518055,-3.641718,3.518055,-2.459526,6.181126,-3.228781,6.181126,-2.459526,6.181126,-3.641718,3.518055,-2.046589,3.518055,-3.228781,6.181126,3.228781,1.457728,2.459526,1.457728,3.641718,2.83645,2.046589,2.83645,3.641718,2.83645,2.459526,1.457728,3.228781,1.457728,2.046589,2.83645,-6.937746,4.911174,-6.524807,7.574244,-5.342612,4.911174,-5.75555,7.574244,-5.342612,4.911174,-6.524807,7.574244,-6.937746,4.911174,-5.75555,7.574244,-6.697612,0.1183409,-6.524807,3.457456,-5.582746,0.1183409,-5.75555,3.457456,-5.582746,0.1183409,-6.524807,3.457456,-6.697612,0.1183409,-5.75555,3.457456,-2.459526,5.135791,-3.228781,5.135791,-2.046589,6.514514,-3.641718,6.514514,-2.046589,6.514514,-3.228781,5.135791,-2.459526,5.135791,-3.641718,6.514514,3.641718,5.422259,2.046589,5.422259,3.228781,8.08533,2.459526,8.08533,3.228781,8.08533,2.046589,5.422259,3.641718,5.422259,2.459526,8.08533,6.937746,4.029142,5.342612,4.029142,6.524807,6.692213,5.75555,6.692213,6.524807,6.692213,5.342612,4.029142,6.937746,4.029142,5.75555,6.692213 + } + UVIndex: *2160 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,123,121,122,124,126,125,125,127,124,128,130,129,131,129,130,132,134,133,133,135,132,136,138,137,139,137,138,140,142,141,141,143,140,144,146,145,147,145,146,148,150,149,149,151,148,152,154,153,155,153,154,156,158,157,157,159,156,160,162,161,163,161,162,164,166,165,165,167,164,168,170,169,171,169,170,172,174,173,173,175,172,176,178,177,179,177,178,180,182,181,181,183,180,184,186,185,187,185,186,188,190,189,189,191,188,192,194,193,195,193,194,196,198,197,197,199,196,200,202,201,203,201,202,204,206,205,205,207,204,208,210,209,211,209,210,212,214,213,213,215,212,216,218,217,219,217,218,220,222,221,221,223,220,224,226,225,227,225,226,228,230,229,229,231,228,232,234,233,235,233,234,236,238,237,237,239,236,240,242,241,243,241,242,244,246,245,245,247,244,248,250,249,251,249,250,252,254,253,253,255,252,256,258,257,259,257,258,260,262,261,261,263,260,264,266,265,267,265,266,268,270,269,269,271,268,272,274,273,275,273,274,276,278,277,277,279,276,280,282,281,283,281,282,284,286,285,285,287,284,288,290,289,291,289,290,292,294,293,293,295,292,296,298,297,299,297,298,300,302,301,301,303,300,304,306,305,307,305,306,308,310,309,309,311,308,312,314,313,315,313,314,316,318,317,317,319,316,320,322,321,323,321,322,324,326,325,325,327,324,328,330,329,331,329,330,332,334,333,333,335,332,336,338,337,339,337,338,340,342,341,341,343,340,344,346,345,347,345,346,348,350,349,349,351,348,352,354,353,355,353,354,356,358,357,357,359,356,360,362,361,363,361,362,364,366,365,365,367,364,368,370,369,371,369,370,372,374,373,373,375,372,376,378,377,379,377,378,380,382,381,381,383,380,384,386,385,387,385,386,388,390,389,389,391,388,392,394,393,395,393,394,396,398,397,397,399,396,400,402,401,403,401,402,404,406,405,405,407,404,408,410,409,411,409,410,412,414,413,413,415,412,416,418,417,419,417,418,420,422,421,421,423,420,424,426,425,427,425,426,428,430,429,429,431,428,432,434,433,435,433,434,436,438,437,437,439,436,440,442,441,443,441,442,444,446,445,445,447,444,448,450,449,451,449,450,452,454,453,453,455,452,456,458,457,459,457,458,460,462,461,461,463,460,464,466,465,467,465,466,468,470,469,469,471,468,472,474,473,475,473,474,476,478,477,477,479,476,480,482,481,483,481,482,484,486,485,485,487,484,488,490,489,491,489,490,492,494,493,493,495,492,496,498,497,499,497,498,500,502,501,501,503,500,504,506,505,507,505,506,508,510,509,509,511,508,512,514,513,515,513,514,516,518,517,517,519,516,520,522,521,523,521,522,524,526,525,525,527,524,528,530,529,531,529,530,532,534,533,533,535,532,536,538,537,539,537,538,540,542,541,541,543,540,544,546,545,547,545,546,548,550,549,549,551,548,552,554,553,555,553,554,556,558,557,557,559,556,560,562,561,563,561,562,564,566,565,565,567,564,568,570,569,571,569,570,572,574,573,573,575,572,576,578,577,579,577,578,580,582,581,581,583,580,584,586,585,587,585,586,588,590,589,589,591,588,592,594,593,595,593,594,596,598,597,597,599,596,600,602,601,603,601,602,604,606,605,605,607,604,608,610,609,611,609,610,612,614,613,613,615,612,616,618,617,619,617,618,620,622,621,621,623,620,624,626,625,627,625,626,628,630,629,629,631,628,632,634,633,635,633,634,636,638,637,637,639,636,640,642,641,643,641,642,644,646,645,645,647,644,648,650,649,651,649,650,652,654,653,653,655,652,656,658,657,659,657,658,660,662,661,661,663,660,664,666,665,667,665,666,668,670,669,669,671,668,672,674,673,675,673,674,676,678,677,677,679,676,680,682,681,683,681,682,684,686,685,685,687,684,688,690,689,691,689,690,692,694,693,693,695,692,696,698,697,699,697,698,700,702,701,701,703,700,704,706,705,707,705,706,708,710,709,709,711,708,712,714,713,715,713,714,716,718,717,717,719,716,720,722,721,723,721,722,724,726,725,725,727,724,728,730,729,731,729,730,732,734,733,733,735,732,736,738,737,739,737,738,740,742,741,741,743,740,744,746,745,747,745,746,748,750,749,749,751,748,752,754,753,755,753,754,756,758,757,757,759,756,760,762,761,763,761,762,764,766,765,765,767,764,768,770,769,771,769,770,772,774,773,773,775,772,776,778,777,779,777,778,780,782,781,781,783,780,784,786,785,787,785,786,788,790,789,789,791,788,792,794,793,795,793,794,796,798,797,797,799,796,800,802,801,803,801,802,804,806,805,805,807,804,808,810,809,811,809,810,812,814,813,813,815,812,816,818,817,819,817,818,820,822,821,821,823,820,824,826,825,827,825,826,828,830,829,829,831,828,832,834,833,835,833,834,836,838,837,837,839,836,840,842,841,843,841,842,844,846,845,845,847,844,848,850,849,851,849,850,852,854,853,853,855,852,856,858,857,859,857,858,860,862,861,861,863,860,864,866,865,867,865,866,868,870,869,869,871,868,872,874,873,875,873,874,876,878,877,877,879,876,880,882,881,883,881,882,884,886,885,885,887,884,888,890,889,891,889,890,892,894,893,893,895,892,896,898,897,899,897,898,900,902,901,901,903,900,904,906,905,907,905,906,908,910,909,909,911,908,912,914,913,915,913,914,916,918,917,917,919,916,920,922,921,923,921,922,924,926,925,925,927,924,928,930,929,931,929,930,932,934,933,933,935,932,936,938,937,939,937,938,940,942,941,941,943,940,944,946,945,947,945,946,948,950,949,949,951,948,952,954,953,955,953,954,956,958,957,957,959,956,960,962,961,963,961,962,964,966,965,965,967,964,968,970,969,971,969,970,972,974,973,973,975,972,976,978,977,979,977,978,980,982,981,981,983,980,984,986,985,987,985,986,988,990,989,989,991,988,992,994,993,995,993,994,996,998,997,997,999,996,1000,1002,1001,1003,1001,1002,1004,1006,1005,1005,1007,1004,1008,1010,1009,1011,1009,1010,1012,1014,1013,1013,1015,1012,1016,1018,1017,1019,1017,1018,1020,1022,1021,1021,1023,1020,1024,1026,1025,1027,1025,1026,1028,1030,1029,1029,1031,1028,1032,1034,1033,1035,1033,1034,1036,1038,1037,1037,1039,1036,1040,1042,1041,1043,1041,1042,1044,1046,1045,1045,1047,1044,1048,1050,1049,1051,1049,1050,1052,1054,1053,1053,1055,1052,1056,1058,1057,1059,1057,1058,1060,1062,1061,1061,1063,1060,1064,1066,1065,1067,1065,1066,1068,1070,1069,1069,1071,1068,1072,1074,1073,1075,1073,1074,1076,1078,1077,1077,1079,1076,1080,1082,1081,1083,1081,1082,1084,1086,1085,1085,1087,1084,1088,1090,1089,1091,1089,1090,1092,1094,1093,1093,1095,1092,1096,1098,1097,1099,1097,1098,1100,1102,1101,1101,1103,1100,1104,1106,1105,1107,1105,1106,1108,1110,1109,1109,1111,1108,1112,1114,1113,1115,1113,1114,1116,1118,1117,1117,1119,1116,1120,1122,1121,1123,1121,1122,1124,1126,1125,1125,1127,1124,1128,1130,1129,1131,1129,1130,1132,1134,1133,1133,1135,1132,1136,1138,1137,1139,1137,1138,1140,1142,1141,1141,1143,1140,1144,1146,1145,1147,1145,1146,1148,1150,1149,1149,1151,1148,1152,1154,1153,1155,1153,1154,1156,1158,1157,1157,1159,1156,1160,1162,1161,1163,1161,1162,1164,1166,1165,1165,1167,1164,1168,1170,1169,1171,1169,1170,1172,1174,1173,1173,1175,1172,1176,1178,1177,1179,1177,1178,1180,1182,1181,1181,1183,1180,1184,1186,1185,1187,1185,1186,1188,1190,1189,1189,1191,1188,1192,1194,1193,1195,1193,1194,1196,1198,1197,1197,1199,1196,1200,1202,1201,1203,1201,1202,1204,1206,1205,1205,1207,1204,1208,1210,1209,1211,1209,1210,1212,1214,1213,1213,1215,1212,1216,1218,1217,1219,1217,1218,1220,1222,1221,1221,1223,1220,1224,1226,1225,1227,1225,1226,1228,1230,1229,1229,1231,1228,1232,1234,1233,1235,1233,1234,1236,1238,1237,1237,1239,1236,1240,1242,1241,1243,1241,1242,1244,1246,1245,1245,1247,1244,1248,1250,1249,1251,1249,1250,1252,1254,1253,1253,1255,1252,1256,1258,1257,1259,1257,1258,1260,1262,1261,1261,1263,1260,1264,1266,1265,1267,1265,1266,1268,1270,1269,1269,1271,1268,1272,1274,1273,1275,1273,1274,1276,1278,1277,1277,1279,1276,1280,1282,1281,1283,1281,1282,1284,1286,1285,1285,1287,1284,1288,1290,1289,1291,1289,1290,1292,1294,1293,1293,1295,1292,1296,1298,1297,1299,1297,1298,1300,1302,1301,1301,1303,1300,1304,1306,1305,1307,1305,1306,1308,1310,1309,1309,1311,1308,1312,1314,1313,1315,1313,1314,1316,1318,1317,1317,1319,1316,1320,1322,1321,1323,1321,1322,1324,1326,1325,1325,1327,1324,1328,1330,1329,1331,1329,1330,1332,1334,1333,1333,1335,1332,1336,1338,1337,1339,1337,1338,1340,1342,1341,1341,1343,1340,1344,1346,1345,1347,1345,1346,1348,1350,1349,1349,1351,1348,1352,1354,1353,1355,1353,1354,1356,1358,1357,1357,1359,1356,1360,1362,1361,1363,1361,1362,1364,1366,1365,1365,1367,1364,1368,1370,1369,1371,1369,1370,1372,1374,1373,1373,1375,1372,1376,1378,1377,1379,1377,1378,1380,1382,1381,1381,1383,1380,1384,1386,1385,1387,1385,1386,1388,1390,1389,1389,1391,1388,1392,1394,1393,1395,1393,1394,1396,1398,1397,1397,1399,1396,1400,1402,1401,1403,1401,1402,1404,1406,1405,1405,1407,1404,1408,1410,1409,1411,1409,1410,1412,1414,1413,1413,1415,1412,1416,1418,1417,1419,1417,1418,1420,1422,1421,1421,1423,1420,1424,1426,1425,1427,1425,1426,1428,1430,1429,1429,1431,1428,1432,1434,1433,1435,1433,1434,1436,1438,1437,1437,1439,1436 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *720 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_wheatStageA, Model::RootNode + C: "OO",5716791864504886703,0 + + ;Geometry::, Model::Mesh crops_wheatStageA + C: "OO",4989272687285083779,5716791864504886703 + + ;Material::grass, Model::Mesh crops_wheatStageA + C: "OO",3024,5716791864504886703 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageA.fbx.import new file mode 100644 index 0000000..107c0ec --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c1faieoavwmc7" +path="res://.godot/imported/crops_wheatStageA.fbx-69b778664b92f6033f9a522dbb5fa7d9.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageA.fbx" +dest_files=["res://.godot/imported/crops_wheatStageA.fbx-69b778664b92f6033f9a522dbb5fa7d9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageB.fbx new file mode 100644 index 0000000..9baa7a1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 20 + Millisecond: 110 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "crops_wheatStageB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "crops_wheatStageB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5430866779927192620, "Model::crops_wheatStageB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5331565623694924578, "Geometry::", "Mesh" { + Vertices: *2232 { + a: -1.337087,0,0.4903437,-1.389663,0,0.7685961,-1.388365,4.346999,0.5253236,-1.424643,4.346999,0.7173176,-1.615338,0,0.4377676,-1.580359,4.346999,0.489046,-1.667915,0,0.7160199,-1.616636,4.346999,0.6810402,-1.663947,4.681118,0.3665096,-1.265829,4.681118,0.4417348,-1.580359,5.349357,0.489046,-1.388365,5.349357,0.5253236,-1.341055,4.681118,0.8398541,-1.739173,4.681118,0.7646289,-1.424643,5.349357,0.7173176,-1.616636,5.349357,0.6810402,-1.424643,4.346999,0.7173176,-1.616636,4.346999,0.6810402,-1.341055,4.681118,0.8398541,-1.739173,4.681118,0.7646289,-1.663947,4.681118,0.3665096,-1.580359,5.349357,0.489046,-1.739173,4.681118,0.7646289,-1.616636,5.349357,0.6810402,-1.337087,0,0.4903437,-1.615338,0,0.4377676,-1.389663,0,0.7685961,-1.667915,0,0.7160199,-1.389663,0,0.7685961,-1.667915,0,0.7160199,-1.424643,4.346999,0.7173176,-1.616636,4.346999,0.6810402,-1.265829,4.681118,0.4417348,-1.341055,4.681118,0.8398541,-1.388365,5.349357,0.5253236,-1.424643,5.349357,0.7173176,-1.580359,4.346999,0.489046,-1.388365,4.346999,0.5253236,-1.663947,4.681118,0.3665096,-1.265829,4.681118,0.4417348,-1.663947,4.681118,0.3665096,-1.739173,4.681118,0.7646289,-1.580359,4.346999,0.489046,-1.616636,4.346999,0.6810402,-1.388365,5.349357,0.5253236,-1.424643,5.349357,0.7173176,-1.580359,5.349357,0.489046,-1.616636,5.349357,0.6810402,-1.265829,4.681118,0.4417348,-1.388365,4.346999,0.5253236,-1.341055,4.681118,0.8398541,-1.424643,4.346999,0.7173176,-1.615338,0,0.4377676,-1.337087,0,0.4903437,-1.580359,4.346999,0.489046,-1.388365,4.346999,0.5253236,-0.585256,0,1.801017,-0.8304927,0,1.659429,-0.6013216,4.346999,1.741059,-0.7705349,4.346999,1.643363,-0.3603488,4.681118,1.533454,-0.5036259,4.346999,1.571845,-0.5629308,4.681118,1.884336,-0.6013216,4.346999,1.741059,-0.6889048,0,1.414192,-0.6728393,4.346999,1.47415,-0.8304927,0,1.659429,-0.7705349,4.346999,1.643363,-0.4436681,0,1.555779,-0.585256,0,1.801017,-0.5036259,4.346999,1.571845,-0.6013216,4.346999,1.741059,-0.5629308,4.681118,1.884336,-0.913812,4.681118,1.681755,-0.6013216,5.349357,1.741059,-0.7705349,5.349357,1.643363,-0.3603488,4.681118,1.533454,-0.5629308,4.681118,1.884336,-0.5036259,5.349357,1.571845,-0.6013216,5.349357,1.741059,-0.5036259,5.349357,1.571845,-0.6013216,5.349357,1.741059,-0.6728393,5.349357,1.47415,-0.7705349,5.349357,1.643363,-0.6013216,4.346999,1.741059,-0.7705349,4.346999,1.643363,-0.5629308,4.681118,1.884336,-0.913812,4.681118,1.681755,-0.71123,4.681118,1.330873,-0.913812,4.681118,1.681755,-0.6728393,4.346999,1.47415,-0.7705349,4.346999,1.643363,-0.6889048,0,1.414192,-0.4436681,0,1.555779,-0.6728393,4.346999,1.47415,-0.5036259,4.346999,1.571845,-0.6728393,4.346999,1.47415,-0.5036259,4.346999,1.571845,-0.71123,4.681118,1.330873,-0.3603488,4.681118,1.533454,-0.4436681,0,1.555779,-0.6889048,0,1.414192,-0.585256,0,1.801017,-0.8304927,0,1.659429,-0.71123,4.681118,1.330873,-0.6728393,5.349357,1.47415,-0.913812,4.681118,1.681755,-0.7705349,5.349357,1.643363,-0.71123,4.681118,1.330873,-0.3603488,4.681118,1.533454,-0.6728393,5.349357,1.47415,-0.5036259,5.349357,1.571845,2.060845,3.681118,0.6738899,2.060845,3.681118,1.079054,2.165731,3.346999,0.7787762,2.165731,3.346999,0.9741676,2.466008,3.681118,0.6738899,2.361122,3.346999,0.7787762,2.466008,3.681118,1.079054,2.361122,3.346999,0.9741676,2.121839,0,0.7348839,2.405014,0,0.7348839,2.165731,3.346999,0.7787762,2.361122,3.346999,0.7787762,2.405014,0,0.7348839,2.405014,0,1.01806,2.361122,3.346999,0.7787762,2.361122,3.346999,0.9741676,2.361122,3.346999,0.9741676,2.165731,3.346999,0.9741676,2.466008,3.681118,1.079054,2.060845,3.681118,1.079054,2.165731,3.346999,0.7787762,2.361122,3.346999,0.7787762,2.060845,3.681118,0.6738899,2.466008,3.681118,0.6738899,2.466008,3.681118,1.079054,2.060845,3.681118,1.079054,2.361122,4.349357,0.9741676,2.165731,4.349357,0.9741676,2.060845,3.681118,0.6738899,2.466008,3.681118,0.6738899,2.165731,4.349357,0.7787762,2.361122,4.349357,0.7787762,2.466008,3.681118,0.6738899,2.466008,3.681118,1.079054,2.361122,4.349357,0.7787762,2.361122,4.349357,0.9741676,2.405014,0,1.01806,2.405014,0,0.7348839,2.121839,0,1.01806,2.121839,0,0.7348839,2.361122,4.349357,0.7787762,2.361122,4.349357,0.9741676,2.165731,4.349357,0.7787762,2.165731,4.349357,0.9741676,2.121839,0,0.7348839,2.165731,3.346999,0.7787762,2.121839,0,1.01806,2.165731,3.346999,0.9741676,2.060845,3.681118,0.6738899,2.165731,4.349357,0.7787762,2.060845,3.681118,1.079054,2.165731,4.349357,0.9741676,2.405014,0,1.01806,2.121839,0,1.01806,2.361122,3.346999,0.9741676,2.165731,3.346999,0.9741676,0.8201777,3.346999,1.933203,0.9730921,3.346999,1.811569,0.6727998,3.681118,1.916411,0.9898834,3.681118,1.664191,1.1564,0,1.971511,0.9347849,0,2.147792,1.094726,3.346999,1.964484,0.9418117,3.346999,2.086118,1.094726,3.346999,1.964484,0.9418117,3.346999,2.086118,1.242104,3.681118,1.981276,0.9250203,3.681118,2.233496,0.9801188,0,1.749895,1.1564,0,1.971511,0.9730921,3.346999,1.811569,1.094726,3.346999,1.964484,1.242104,3.681118,1.981276,0.9250203,3.681118,2.233496,1.094726,4.349357,1.964484,0.9418117,4.349357,2.086118,0.6727998,3.681118,1.916411,0.8201777,4.349357,1.933203,0.9250203,3.681118,2.233496,0.9418117,4.349357,2.086118,0.6727998,3.681118,1.916411,0.9898834,3.681118,1.664191,0.8201777,4.349357,1.933203,0.9730921,4.349357,1.811569,1.094726,4.349357,1.964484,0.9418117,4.349357,2.086118,0.9730921,4.349357,1.811569,0.8201777,4.349357,1.933203,0.9898834,3.681118,1.664191,1.242104,3.681118,1.981276,0.9730921,4.349357,1.811569,1.094726,4.349357,1.964484,0.9898834,3.681118,1.664191,0.9730921,3.346999,1.811569,1.242104,3.681118,1.981276,1.094726,3.346999,1.964484,0.6727998,3.681118,1.916411,0.9250203,3.681118,2.233496,0.8201777,3.346999,1.933203,0.9418117,3.346999,2.086118,1.1564,0,1.971511,0.9801188,0,1.749895,0.9347849,0,2.147792,0.7585037,0,1.926176,0.7585037,0,1.926176,0.8201777,3.346999,1.933203,0.9347849,0,2.147792,0.9418117,3.346999,2.086118,0.7585037,0,1.926176,0.9801188,0,1.749895,0.8201777,3.346999,1.933203,0.9730921,3.346999,1.811569,-1.211929,0,-2.103976,-1.489221,0,-2.1614,-1.269353,0,-1.826684,-1.546645,0,-1.884109,-1.26381,4.349357,-2.069897,-1.303433,4.349357,-1.878565,-1.455141,4.349357,-2.109519,-1.494764,4.349357,-1.918188,-1.536579,3.681118,-2.233496,-1.618741,3.681118,-1.836751,-1.455141,3.346999,-2.109519,-1.494764,3.346999,-1.918188,-1.211929,0,-2.103976,-1.269353,0,-1.826684,-1.26381,3.346999,-2.069897,-1.303433,3.346999,-1.878565,-1.489221,0,-2.1614,-1.455141,3.346999,-2.109519,-1.546645,0,-1.884109,-1.494764,3.346999,-1.918188,-1.489221,0,-2.1614,-1.211929,0,-2.103976,-1.455141,3.346999,-2.109519,-1.26381,3.346999,-2.069897,-1.303433,3.346999,-1.878565,-1.494764,3.346999,-1.918188,-1.221995,3.681118,-1.754589,-1.618741,3.681118,-1.836751,-1.139833,3.681118,-2.151334,-1.221995,3.681118,-1.754589,-1.26381,4.349357,-2.069897,-1.303433,4.349357,-1.878565,-1.139833,3.681118,-2.151334,-1.26381,3.346999,-2.069897,-1.221995,3.681118,-1.754589,-1.303433,3.346999,-1.878565,-1.536579,3.681118,-2.233496,-1.455141,4.349357,-2.109519,-1.618741,3.681118,-1.836751,-1.494764,4.349357,-1.918188,-1.455141,3.346999,-2.109519,-1.26381,3.346999,-2.069897,-1.536579,3.681118,-2.233496,-1.139833,3.681118,-2.151334,-1.536579,3.681118,-2.233496,-1.139833,3.681118,-2.151334,-1.455141,4.349357,-2.109519,-1.26381,4.349357,-2.069897,-1.269353,0,-1.826684,-1.546645,0,-1.884109,-1.303433,3.346999,-1.878565,-1.494764,3.346999,-1.918188,-1.221995,3.681118,-1.754589,-1.618741,3.681118,-1.836751,-1.303433,4.349357,-1.878565,-1.494764,4.349357,-1.918188,-2.52807,1.804779E-15,1.296663,-2.484179,2.846999,1.340556,-2.52807,1.804779E-15,1.579839,-2.484179,2.846999,1.535947,-2.244896,1.804779E-15,1.579839,-2.244896,1.804779E-15,1.296663,-2.52807,1.804779E-15,1.579839,-2.52807,1.804779E-15,1.296663,-2.484179,2.846999,1.340556,-2.288788,2.846999,1.340556,-2.589064,3.181118,1.235669,-2.183902,3.181118,1.235669,-2.52807,1.804779E-15,1.296663,-2.244896,1.804779E-15,1.296663,-2.484179,2.846999,1.340556,-2.288788,2.846999,1.340556,-2.183902,3.181118,1.235669,-2.288788,2.846999,1.340556,-2.183902,3.181118,1.640833,-2.288788,2.846999,1.535947,-2.183902,3.181118,1.235669,-2.183902,3.181118,1.640833,-2.288788,3.849357,1.340556,-2.288788,3.849357,1.535947,-2.244896,1.804779E-15,1.579839,-2.52807,1.804779E-15,1.579839,-2.288788,2.846999,1.535947,-2.484179,2.846999,1.535947,-2.183902,3.181118,1.640833,-2.589064,3.181118,1.640833,-2.288788,3.849357,1.535947,-2.484179,3.849357,1.535947,-2.589064,3.181118,1.235669,-2.484179,3.849357,1.340556,-2.589064,3.181118,1.640833,-2.484179,3.849357,1.535947,-2.288788,3.849357,1.340556,-2.288788,3.849357,1.535947,-2.484179,3.849357,1.340556,-2.484179,3.849357,1.535947,-2.589064,3.181118,1.235669,-2.589064,3.181118,1.640833,-2.484179,2.846999,1.340556,-2.484179,2.846999,1.535947,-2.288788,2.846999,1.535947,-2.484179,2.846999,1.535947,-2.183902,3.181118,1.640833,-2.589064,3.181118,1.640833,-2.589064,3.181118,1.235669,-2.183902,3.181118,1.235669,-2.484179,3.849357,1.340556,-2.288788,3.849357,1.340556,-2.244896,1.804779E-15,1.296663,-2.244896,1.804779E-15,1.579839,-2.288788,2.846999,1.340556,-2.288788,2.846999,1.535947,0.5355872,0,1.229114,0.3475799,0,1.440871,0.4736235,2.846999,1.232795,0.3438985,2.846999,1.378908,0.3475799,0,1.440871,0.1358215,0,1.252863,0.3438985,2.846999,1.378908,0.1977852,2.846999,1.249182,0.6216938,3.181118,1.223998,0.3526957,3.181118,1.526978,0.4736235,3.849357,1.232795,0.3438985,3.849357,1.378908,0.3187129,3.181118,0.9549991,0.3275102,3.849357,1.103069,0.04971485,3.181118,1.257979,0.1977852,3.849357,1.249182,0.3275102,2.846999,1.103069,0.4736235,2.846999,1.232795,0.3187129,3.181118,0.9549991,0.6216938,3.181118,1.223998,0.3187129,3.181118,0.9549991,0.6216938,3.181118,1.223998,0.3275102,3.849357,1.103069,0.4736235,3.849357,1.232795,0.3238288,0,1.041106,0.5355872,0,1.229114,0.3275102,2.846999,1.103069,0.4736235,2.846999,1.232795,0.3187129,3.181118,0.9549991,0.04971485,3.181118,1.257979,0.3275102,2.846999,1.103069,0.1977852,2.846999,1.249182,0.3526957,3.181118,1.526978,0.04971485,3.181118,1.257979,0.3438985,3.849357,1.378908,0.1977852,3.849357,1.249182,0.5355872,0,1.229114,0.3238288,0,1.041106,0.3475799,0,1.440871,0.1358215,0,1.252863,0.3238288,0,1.041106,0.3275102,2.846999,1.103069,0.1358215,0,1.252863,0.1977852,2.846999,1.249182,0.4736235,3.849357,1.232795,0.3438985,3.849357,1.378908,0.3275102,3.849357,1.103069,0.1977852,3.849357,1.249182,0.3438985,2.846999,1.378908,0.1977852,2.846999,1.249182,0.3526957,3.181118,1.526978,0.04971485,3.181118,1.257979,0.6216938,3.181118,1.223998,0.4736235,2.846999,1.232795,0.3526957,3.181118,1.526978,0.3438985,2.846999,1.378908,0.2890381,3.681118,-0.651204,0.5755314,3.681118,-0.3647107,0.2890378,4.349357,-0.5028727,0.4272,4.349357,-0.3647105,0.2890374,3.346999,-0.226548,0.1508753,3.346999,-0.3647101,0.2890372,3.681118,-0.07821657,0.002543861,3.681118,-0.3647098,0.4892729,0,-0.3647106,0.2890373,0,-0.164475,0.4272,3.346999,-0.3647105,0.2890374,3.346999,-0.226548,0.5755314,3.681118,-0.3647107,0.4272,3.346999,-0.3647105,0.2890372,3.681118,-0.07821657,0.2890374,3.346999,-0.226548,0.2890379,0,-0.5649456,0.4892729,0,-0.3647106,0.2890378,3.346999,-0.5028727,0.4272,3.346999,-0.3647105,0.2890372,3.681118,-0.07821657,0.002543861,3.681118,-0.3647098,0.2890374,4.349357,-0.226548,0.1508753,4.349357,-0.3647101,0.2890381,3.681118,-0.651204,0.2890378,4.349357,-0.5028727,0.002543861,3.681118,-0.3647098,0.1508753,4.349357,-0.3647101,0.4892729,0,-0.3647106,0.2890379,0,-0.5649456,0.2890373,0,-0.164475,0.08880232,0,-0.36471,0.5755314,3.681118,-0.3647107,0.2890372,3.681118,-0.07821657,0.4272,4.349357,-0.3647105,0.2890374,4.349357,-0.226548,0.2890381,3.681118,-0.651204,0.002543861,3.681118,-0.3647098,0.2890378,3.346999,-0.5028727,0.1508753,3.346999,-0.3647101,0.2890378,3.346999,-0.5028727,0.4272,3.346999,-0.3647105,0.2890381,3.681118,-0.651204,0.5755314,3.681118,-0.3647107,0.4272,4.349357,-0.3647105,0.2890374,4.349357,-0.226548,0.2890378,4.349357,-0.5028727,0.1508753,4.349357,-0.3647101,0.2890373,0,-0.164475,0.08880232,0,-0.36471,0.2890374,3.346999,-0.226548,0.1508753,3.346999,-0.3647101,0.2890379,0,-0.5649456,0.2890378,3.346999,-0.5028727,0.08880232,0,-0.36471,0.1508753,3.346999,-0.3647101,2.457067,3.346999,-1.383419,2.287853,3.346999,-1.481114,2.495458,3.681118,-1.240141,2.144577,3.681118,-1.442723,2.473132,0,-1.323461,2.227895,0,-1.465048,2.457067,3.346999,-1.383419,2.287853,3.346999,-1.481114,2.369483,0,-1.710286,2.61472,0,-1.568698,2.385549,3.346999,-1.650328,2.554762,3.346999,-1.552632,2.61472,0,-1.568698,2.473132,0,-1.323461,2.554762,3.346999,-1.552632,2.457067,3.346999,-1.383419,2.347158,3.681118,-1.793605,2.144577,3.681118,-1.442723,2.385549,3.346999,-1.650328,2.287853,3.346999,-1.481114,2.347158,3.681118,-1.793605,2.69804,3.681118,-1.591024,2.385549,4.349357,-1.650328,2.554762,4.349357,-1.552632,2.69804,3.681118,-1.591024,2.554762,3.346999,-1.552632,2.495458,3.681118,-1.240141,2.457067,3.346999,-1.383419,2.69804,3.681118,-1.591024,2.495458,3.681118,-1.240141,2.554762,4.349357,-1.552632,2.457067,4.349357,-1.383419,2.385549,3.346999,-1.650328,2.554762,3.346999,-1.552632,2.347158,3.681118,-1.793605,2.69804,3.681118,-1.591024,2.347158,3.681118,-1.793605,2.385549,4.349357,-1.650328,2.144577,3.681118,-1.442723,2.287853,4.349357,-1.481114,2.369483,0,-1.710286,2.385549,3.346999,-1.650328,2.227895,0,-1.465048,2.287853,3.346999,-1.481114,2.495458,3.681118,-1.240141,2.144577,3.681118,-1.442723,2.457067,4.349357,-1.383419,2.287853,4.349357,-1.481114,2.61472,0,-1.568698,2.369483,0,-1.710286,2.473132,0,-1.323461,2.227895,0,-1.465048,2.554762,4.349357,-1.552632,2.457067,4.349357,-1.383419,2.385549,4.349357,-1.650328,2.287853,4.349357,-1.481114,-0.4991604,0,-1.164924,-0.7443972,0,-1.306511,-0.6407484,0,-0.9196862,-0.8859851,0,-1.061274,-0.656814,4.346999,-0.9796441,-0.8260273,4.346999,-1.077339,-0.6184232,4.681118,-0.8363668,-0.9693044,4.681118,-1.038948,-0.7667224,4.681118,-1.38983,-0.7283317,5.349357,-1.246553,-0.9693044,4.681118,-1.038948,-0.8260273,5.349357,-1.077339,-0.5591183,5.349357,-1.148858,-0.656814,5.349357,-0.9796441,-0.7283317,5.349357,-1.246553,-0.8260273,5.349357,-1.077339,-0.7283317,4.346999,-1.246553,-0.5591183,4.346999,-1.148858,-0.7667224,4.681118,-1.38983,-0.4158412,4.681118,-1.187249,-0.7443972,0,-1.306511,-0.7283317,4.346999,-1.246553,-0.8859851,0,-1.061274,-0.8260273,4.346999,-1.077339,-0.7443972,0,-1.306511,-0.4991604,0,-1.164924,-0.7283317,4.346999,-1.246553,-0.5591183,4.346999,-1.148858,-0.6407484,0,-0.9196862,-0.8859851,0,-1.061274,-0.656814,4.346999,-0.9796441,-0.8260273,4.346999,-1.077339,-0.4991604,0,-1.164924,-0.6407484,0,-0.9196862,-0.5591183,4.346999,-1.148858,-0.656814,4.346999,-0.9796441,-0.7667224,4.681118,-1.38983,-0.9693044,4.681118,-1.038948,-0.7283317,4.346999,-1.246553,-0.8260273,4.346999,-1.077339,-0.6184232,4.681118,-0.8363668,-0.9693044,4.681118,-1.038948,-0.656814,5.349357,-0.9796441,-0.8260273,5.349357,-1.077339,-0.4158412,4.681118,-1.187249,-0.6184232,4.681118,-0.8363668,-0.5591183,5.349357,-1.148858,-0.656814,5.349357,-0.9796441,-0.4158412,4.681118,-1.187249,-0.5591183,4.346999,-1.148858,-0.6184232,4.681118,-0.8363668,-0.656814,4.346999,-0.9796441,-0.7667224,4.681118,-1.38983,-0.4158412,4.681118,-1.187249,-0.7283317,5.349357,-1.246553,-0.5591183,5.349357,-1.148858,-2.227895,0,-0.7078764,-2.473132,0,-0.5662889,-2.287853,3.346999,-0.7239422,-2.457067,3.346999,-0.6262469,-2.554762,3.346999,-0.7954607,-2.385549,3.346999,-0.8931561,-2.69804,3.681118,-0.8338519,-2.347158,3.681118,-1.036433,-2.287853,3.346999,-0.7239422,-2.457067,3.346999,-0.6262469,-2.144577,3.681118,-0.685551,-2.495458,3.681118,-0.4829696,-2.61472,0,-0.8115265,-2.369483,0,-0.953114,-2.554762,3.346999,-0.7954607,-2.385549,3.346999,-0.8931561,-2.69804,3.681118,-0.8338519,-2.495458,3.681118,-0.4829696,-2.554762,3.346999,-0.7954607,-2.457067,3.346999,-0.6262469,-2.347158,3.681118,-1.036433,-2.144577,3.681118,-0.685551,-2.385549,4.349357,-0.8931561,-2.287853,4.349357,-0.7239422,-2.227895,0,-0.7078764,-2.369483,0,-0.953114,-2.473132,0,-0.5662889,-2.61472,0,-0.8115265,-2.69804,3.681118,-0.8338519,-2.554762,4.349357,-0.7954607,-2.495458,3.681118,-0.4829696,-2.457067,4.349357,-0.6262469,-2.61472,0,-0.8115265,-2.554762,3.346999,-0.7954607,-2.473132,0,-0.5662889,-2.457067,3.346999,-0.6262469,-2.347158,3.681118,-1.036433,-2.385549,3.346999,-0.8931561,-2.144577,3.681118,-0.685551,-2.287853,3.346999,-0.7239422,-2.287853,4.349357,-0.7239422,-2.457067,4.349357,-0.6262469,-2.385549,4.349357,-0.8931561,-2.554762,4.349357,-0.7954607,-2.369483,0,-0.953114,-2.227895,0,-0.7078764,-2.385549,3.346999,-0.8931561,-2.287853,3.346999,-0.7239422,-2.144577,3.681118,-0.685551,-2.495458,3.681118,-0.4829696,-2.287853,4.349357,-0.7239422,-2.457067,4.349357,-0.6262469,-2.69804,3.681118,-0.8338519,-2.347158,3.681118,-1.036433,-2.554762,4.349357,-0.7954607,-2.385549,4.349357,-0.8931561,0.8640025,0,-1.418017,0.5808275,0,-1.418017,0.8201103,2.846999,-1.46191,0.6247196,2.846999,-1.46191,0.5808275,0,-1.701193,0.8640025,0,-1.701193,0.6247196,2.846999,-1.657301,0.8201103,2.846999,-1.657301,0.8640025,0,-1.418017,0.8640025,0,-1.701193,0.5808275,0,-1.418017,0.5808275,0,-1.701193,0.9249963,3.181118,-1.762187,0.8201103,2.846999,-1.657301,0.9249963,3.181118,-1.357023,0.8201103,2.846999,-1.46191,0.8201103,3.849357,-1.657301,0.8201103,3.849357,-1.46191,0.6247196,3.849357,-1.657301,0.6247196,3.849357,-1.46191,0.5198336,3.181118,-1.762187,0.5198336,3.181118,-1.357023,0.6247196,2.846999,-1.657301,0.6247196,2.846999,-1.46191,0.8640025,0,-1.701193,0.8640025,0,-1.418017,0.8201103,2.846999,-1.657301,0.8201103,2.846999,-1.46191,0.5198336,3.181118,-1.762187,0.9249963,3.181118,-1.762187,0.6247196,3.849357,-1.657301,0.8201103,3.849357,-1.657301,0.8201103,2.846999,-1.46191,0.6247196,2.846999,-1.46191,0.9249963,3.181118,-1.357023,0.5198336,3.181118,-1.357023,0.5198336,3.181118,-1.762187,0.6247196,3.849357,-1.657301,0.5198336,3.181118,-1.357023,0.6247196,3.849357,-1.46191,0.5808275,0,-1.701193,0.6247196,2.846999,-1.657301,0.5808275,0,-1.418017,0.6247196,2.846999,-1.46191,0.6247196,2.846999,-1.657301,0.8201103,2.846999,-1.657301,0.5198336,3.181118,-1.762187,0.9249963,3.181118,-1.762187,0.9249963,3.181118,-1.357023,0.5198336,3.181118,-1.357023,0.8201103,3.849357,-1.46191,0.6247196,3.849357,-1.46191,0.9249963,3.181118,-1.762187,0.9249963,3.181118,-1.357023,0.8201103,3.849357,-1.657301,0.8201103,3.849357,-1.46191,-1.265829,4.681118,0.4417348,-1.341055,4.681118,0.8398541,-1.663947,4.681118,0.3665096,-1.739173,4.681118,0.7646289,-1.663947,4.681118,0.3665096,-1.341055,4.681118,0.8398541,-0.3603488,4.681118,1.533454,-0.5629308,4.681118,1.884336,-0.71123,4.681118,1.330873,-0.913812,4.681118,1.681755,-0.71123,4.681118,1.330873,-0.5629308,4.681118,1.884336,2.466008,3.681118,0.6738899,2.466008,3.681118,1.079054,2.060845,3.681118,0.6738899,2.060845,3.681118,1.079054,2.060845,3.681118,0.6738899,2.466008,3.681118,1.079054,1.242104,3.681118,1.981276,0.9250203,3.681118,2.233496,0.9898834,3.681118,1.664191,0.6727998,3.681118,1.916411,0.9898834,3.681118,1.664191,0.9250203,3.681118,2.233496,-1.139833,3.681118,-2.151334,-1.221995,3.681118,-1.754589,-1.536579,3.681118,-2.233496,-1.618741,3.681118,-1.836751,-1.536579,3.681118,-2.233496,-1.221995,3.681118,-1.754589,-2.183902,3.181118,1.235669,-2.183902,3.181118,1.640833,-2.589064,3.181118,1.235669,-2.589064,3.181118,1.640833,-2.589064,3.181118,1.235669,-2.183902,3.181118,1.640833,0.6216938,3.181118,1.223998,0.3526957,3.181118,1.526978,0.3187129,3.181118,0.9549991,0.04971485,3.181118,1.257979,0.3187129,3.181118,0.9549991,0.3526957,3.181118,1.526978,0.5755314,3.681118,-0.3647107,0.2890372,3.681118,-0.07821657,0.2890381,3.681118,-0.651204,0.002543861,3.681118,-0.3647098,0.2890381,3.681118,-0.651204,0.2890372,3.681118,-0.07821657,2.69804,3.681118,-1.591024,2.495458,3.681118,-1.240141,2.347158,3.681118,-1.793605,2.144577,3.681118,-1.442723,2.347158,3.681118,-1.793605,2.495458,3.681118,-1.240141,-0.4158412,4.681118,-1.187249,-0.6184232,4.681118,-0.8363668,-0.7667224,4.681118,-1.38983,-0.9693044,4.681118,-1.038948,-0.7667224,4.681118,-1.38983,-0.6184232,4.681118,-0.8363668,-2.144577,3.681118,-0.685551,-2.495458,3.681118,-0.4829696,-2.347158,3.681118,-1.036433,-2.69804,3.681118,-0.8338519,-2.347158,3.681118,-1.036433,-2.495458,3.681118,-0.4829696,0.9249963,3.181118,-1.762187,0.9249963,3.181118,-1.357023,0.5198336,3.181118,-1.762187,0.5198336,3.181118,-1.357023,0.5198336,3.181118,-1.762187,0.9249963,3.181118,-1.357023 + } + PolygonVertexIndex: *1080 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,432,434,-434,435,433,-435,436,438,-438,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,454,-454,455,453,-455,456,458,-458,459,457,-459,460,462,-462,463,461,-463,464,466,-466,467,465,-467,468,470,-470,471,469,-471,472,474,-474,475,473,-475,476,478,-478,479,477,-479,480,482,-482,483,481,-483,484,486,-486,487,485,-487,488,490,-490,491,489,-491,492,494,-494,495,493,-495,496,498,-498,499,497,-499,500,502,-502,503,501,-503,504,506,-506,507,505,-507,508,510,-510,511,509,-511,512,514,-514,515,513,-515,516,518,-518,519,517,-519,520,522,-522,523,521,-523,524,526,-526,527,525,-527,528,530,-530,531,529,-531,532,534,-534,535,533,-535,536,538,-538,539,537,-539,540,542,-542,543,541,-543,544,546,-546,547,545,-547,548,550,-550,551,549,-551,552,554,-554,555,553,-555,556,558,-558,559,557,-559,560,562,-562,563,561,-563,564,566,-566,567,565,-567,568,570,-570,571,569,-571,572,574,-574,575,573,-575,576,578,-578,579,577,-579,580,582,-582,583,581,-583,584,586,-586,587,585,-587,588,590,-590,591,589,-591,592,594,-594,595,593,-595,596,598,-598,599,597,-599,600,602,-602,603,601,-603,604,606,-606,607,605,-607,608,610,-610,611,609,-611,612,614,-614,615,613,-615,616,618,-618,619,617,-619,620,622,-622,623,621,-623,624,626,-626,627,625,-627,628,630,-630,631,629,-631,632,634,-634,635,633,-635,636,638,-638,639,637,-639,640,642,-642,643,641,-643,644,646,-646,647,645,-647,648,650,-650,651,649,-651,652,654,-654,655,653,-655,656,658,-658,659,657,-659,660,662,-662,663,661,-663,664,666,-666,667,665,-667,668,670,-670,671,669,-671,672,674,-674,675,677,-677,678,680,-680,681,683,-683,684,686,-686,687,689,-689,690,692,-692,693,695,-695,696,698,-698,699,701,-701,702,704,-704,705,707,-707,708,710,-710,711,713,-713,714,716,-716,717,719,-719,720,722,-722,723,725,-725,726,728,-728,729,731,-731,732,734,-734,735,737,-737,738,740,-740,741,743,-743 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3240 { + a: 0.9825627,0.0100966,0.1856571,0.9825627,0.0100966,0.1856571,0.9825627,0.0100966,0.1856571,0.9825627,0.0100966,0.1856571,0.9825627,0.0100966,0.1856571,0.9825627,0.0100966,0.1856571,-0.9825627,0.0100966,-0.1856571,-0.9825627,0.0100966,-0.1856571,-0.9825627,0.0100966,-0.1856571,-0.9825627,0.0100966,-0.1856571,-0.9825627,0.0100966,-0.1856571,-0.9825627,0.0100966,-0.1856571,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,0.183421,0.1550609,-0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.183421,0.1550609,0.970728,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,-0.1771434,-0.2995078,0.9375048,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,-0.9707281,0.1550604,-0.183421,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.1856571,0.01009663,0.9825627,-0.1856571,0.01009663,0.9825627,-0.1856571,0.01009663,0.9825627,-0.1856571,0.01009663,0.9825627,-0.1856571,0.01009663,0.9825627,-0.1856571,0.01009663,0.9825627,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,0.9707281,0.1550604,0.183421,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,0.1771434,-0.2995078,-0.9375048,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,-0.9375051,-0.2995069,-0.1771434,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,0.9375051,-0.2995069,0.1771434,0.1856571,0.01009663,-0.9825627,0.1856571,0.01009663,-0.9825627,0.1856571,0.01009663,-0.9825627,0.1856571,0.01009663,-0.9825627,0.1856571,0.01009663,-0.9825627,0.1856571,0.01009663,-0.9825627,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0,0.01311279,-0.9999141,0,0.01311279,-0.9999141,0,0.01311279,-0.9999141,0,0.01311279,-0.9999141,0,0.01311279,-0.9999141,0,0.01311279,-0.9999141,0.9999141,0.01311275,0,0.9999141,0.01311275,0,0.9999141,0.01311275,0,0.9999141,0.01311275,0,0.9999141,0.01311275,0,0.9999141,0.01311275,0,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9999141,0.01311275,0,-0.9999141,0.01311275,0,-0.9999141,0.01311275,0,-0.9999141,0.01311275,0,-0.9999141,0.01311275,0,-0.9999141,0.01311275,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,0,0.01311279,0.9999141,0,0.01311279,0.9999141,0,0.01311279,0.9999141,0,0.01311279,0.9999141,0,0.01311279,0.9999141,0,0.01311279,0.9999141,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,-0.5939374,-0.2995078,-0.7466816,0.6224611,0.01311279,0.7825409,0.6224611,0.01311279,0.7825409,0.6224611,0.01311279,0.7825409,0.6224611,0.01311279,0.7825409,0.6224611,0.01311279,0.7825409,0.6224611,0.01311279,0.7825409,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,0.5939374,-0.2995078,0.7466816,0.7825409,0.01311275,-0.6224611,0.7825409,0.01311275,-0.6224611,0.7825409,0.01311275,-0.6224611,0.7825409,0.01311275,-0.6224611,0.7825409,0.01311275,-0.6224611,0.7825409,0.01311275,-0.6224611,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,0.6149853,0.1550609,0.7731425,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,-0.7731425,0.1550604,0.6149853,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,-0.6149853,0.1550609,-0.7731425,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,0.7731425,0.1550604,-0.6149853,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,0.7466819,-0.2995069,-0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,-0.7466819,-0.2995069,0.5939376,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7825409,0.01311275,0.6224611,-0.7825409,0.01311275,0.6224611,-0.7825409,0.01311275,0.6224611,-0.7825409,0.01311275,0.6224611,-0.7825409,0.01311275,0.6224611,-0.7825409,0.01311275,0.6224611,-0.6224611,0.01311279,-0.7825409,-0.6224611,0.01311279,-0.7825409,-0.6224611,0.01311279,-0.7825409,-0.6224611,0.01311279,-0.7825409,-0.6224611,0.01311279,-0.7825409,-0.6224611,0.01311279,-0.7825409,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,-0.9342704,-0.2995078,-0.1934781,0.9791386,0.01311279,0.2027699,0.9791386,0.01311279,0.2027699,0.9791386,0.01311279,0.2027699,0.9791386,0.01311279,0.2027699,0.9791386,0.01311279,0.2027699,0.9791386,0.01311279,0.2027699,-0.9791386,0.01311279,-0.2027699,-0.9791386,0.01311279,-0.2027699,-0.9791386,0.01311279,-0.2027699,-0.9791386,0.01311279,-0.2027699,-0.9791386,0.01311279,-0.2027699,-0.9791386,0.01311279,-0.2027699,0.2027699,0.01311275,-0.9791386,0.2027699,0.01311275,-0.9791386,0.2027699,0.01311275,-0.9791386,0.2027699,0.01311275,-0.9791386,0.2027699,0.01311275,-0.9791386,0.2027699,0.01311275,-0.9791386,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,-0.1934782,-0.2995069,0.9342708,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,0.967379,0.1550609,0.2003346,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,0.9342704,-0.2995078,0.1934781,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,-0.967379,0.1550609,-0.2003346,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,0.1934782,-0.2995069,-0.9342708,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,0.2003346,0.1550604,-0.967379,-0.2027699,0.01311275,0.9791386,-0.2027699,0.01311275,0.9791386,-0.2027699,0.01311275,0.9791386,-0.2027699,0.01311275,0.9791386,-0.2027699,0.01311275,0.9791386,-0.2027699,0.01311275,0.9791386,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,-0.2003346,0.1550604,0.967379,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0.7477093,0.0154152,0.6638473,0.7477093,0.0154152,0.6638473,0.7477093,0.0154152,0.6638473,0.7477093,0.0154152,0.6638473,0.7477093,0.0154152,0.6638473,0.7477093,0.0154152,0.6638473,-0.6638473,0.01541515,0.7477093,-0.6638473,0.01541515,0.7477093,-0.6638473,0.01541515,0.7477093,-0.6638473,0.01541515,0.7477093,-0.6638473,0.01541515,0.7477093,-0.6638473,0.01541515,0.7477093,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,0.7387534,0.1550609,0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,-0.7387534,0.1550609,-0.6558959,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,0.633448,-0.2995069,-0.7134698,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,0.655896,0.1550604,-0.7387535,0.6638473,0.01541515,-0.7477093,0.6638473,0.01541515,-0.7477093,0.6638473,0.01541515,-0.7477093,0.6638473,0.01541515,-0.7477093,0.6638473,0.01541515,-0.7477093,0.6638473,0.01541515,-0.7477093,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,-0.7134696,-0.2995078,-0.6334479,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,-0.655896,0.1550604,0.7387535,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7477093,0.0154152,-0.6638473,-0.7477093,0.0154152,-0.6638473,-0.7477093,0.0154152,-0.6638473,-0.7477093,0.0154152,-0.6638473,-0.7477093,0.0154152,-0.6638473,-0.7477093,0.0154152,-0.6638473,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,-0.633448,-0.2995069,0.7134698,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,0.7134696,-0.2995078,0.6334479,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,0.6985542,0.1550609,-0.6985542,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,-0.6746462,-0.2995078,0.6746463,0.707046,0.01311275,0.707046,0.707046,0.01311275,0.707046,0.707046,0.01311275,0.707046,0.707046,0.01311275,0.707046,0.707046,0.01311275,0.707046,0.707046,0.01311275,0.707046,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,0.6746464,-0.2995069,0.6746464,0.707046,0.01311279,-0.707046,0.707046,0.01311279,-0.707046,0.707046,0.01311279,-0.707046,0.707046,0.01311279,-0.707046,0.707046,0.01311279,-0.707046,0.707046,0.01311279,-0.707046,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,-0.6985542,0.1550609,0.6985542,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,-0.6985543,0.1550604,-0.6985543,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,0.6985543,0.1550604,0.6985543,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,-0.6746464,-0.2995069,-0.6746464,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,0.6746462,-0.2995078,-0.6746463,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.707046,0.01311279,0.707046,-0.707046,0.01311279,0.707046,-0.707046,0.01311279,0.707046,-0.707046,0.01311279,0.707046,-0.707046,0.01311279,0.707046,-0.707046,0.01311279,0.707046,-0.707046,0.01311275,-0.707046,-0.707046,0.01311275,-0.707046,-0.707046,0.01311275,-0.707046,-0.707046,0.01311275,-0.707046,-0.707046,0.01311275,-0.707046,-0.707046,0.01311275,-0.707046,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4999571,0.01311279,0.8659509,-0.4999571,0.01311279,0.8659509,-0.4999571,0.01311279,0.8659509,-0.4999571,0.01311279,0.8659509,-0.4999571,0.01311279,0.8659509,-0.4999571,0.01311279,0.8659509,0.4999571,0.01311279,-0.8659509,0.4999571,0.01311279,-0.8659509,0.4999571,0.01311279,-0.8659509,0.4999571,0.01311279,-0.8659509,0.4999571,0.01311279,-0.8659509,0.4999571,0.01311279,-0.8659509,0.8659509,0.01311275,0.4999571,0.8659509,0.01311275,0.4999571,0.8659509,0.01311275,0.4999571,0.8659509,0.01311275,0.4999571,0.8659509,0.01311275,0.4999571,0.8659509,0.01311275,0.4999571,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8659509,0.01311275,-0.4999571,-0.8659509,0.01311275,-0.4999571,-0.8659509,0.01311275,-0.4999571,-0.8659509,0.01311275,-0.4999571,-0.8659509,0.01311275,-0.4999571,-0.8659509,0.01311275,-0.4999571,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.4770469,-0.2995078,0.8262695,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,-0.8555508,0.1550604,-0.4939525,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,-0.8262695,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,-0.8659813,0.0100966,-0.4999745,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,0.4999745,0.01009663,-0.8659813,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,-0.4999745,0.01009663,0.8659813,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,0.8659813,0.0100966,0.4999745,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.8262697,-0.2995069,-0.4770471,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,0.8555508,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8555508,0.1550604,0.4939525,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.8262697,-0.2995069,0.4770471,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4939525,0.1550609,-0.8555508,0.4999571,0.01311279,0.8659509,0.4999571,0.01311279,0.8659509,0.4999571,0.01311279,0.8659509,0.4999571,0.01311279,0.8659509,0.4999571,0.01311279,0.8659509,0.4999571,0.01311279,0.8659509,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,-0.4770469,-0.2995078,-0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,0.4770469,-0.2995078,0.8262695,-0.4999571,0.01311279,-0.8659509,-0.4999571,0.01311279,-0.8659509,-0.4999571,0.01311279,-0.8659509,-0.4999571,0.01311279,-0.8659509,-0.4999571,0.01311279,-0.8659509,-0.4999571,0.01311279,-0.8659509,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,-0.8262697,-0.2995069,0.4770471,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,0.8555508,0.1550604,-0.4939525,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,-0.8555508,0.1550604,0.4939525,-0.8659509,0.01311275,0.4999571,-0.8659509,0.01311275,0.4999571,-0.8659509,0.01311275,0.4999571,-0.8659509,0.01311275,0.4999571,-0.8659509,0.01311275,0.4999571,-0.8659509,0.01311275,0.4999571,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,0.8262697,-0.2995069,-0.4770471,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8659509,0.01311275,-0.4999571,0.8659509,0.01311275,-0.4999571,0.8659509,0.01311275,-0.4999571,0.8659509,0.01311275,-0.4999571,0.8659509,0.01311275,-0.4999571,0.8659509,0.01311275,-0.4999571,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,0.4939525,0.1550609,0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,-0.4939525,0.1550609,-0.8555508,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.0154152,0.9998811,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0,0.0154152,-0.9998811,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0.9540941,-0.2995069,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,-0.9540941,-0.2995069,0,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0.9998811,0.01541515,0,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,0.1550609,-0.9879049,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,0,-0.2995079,0.9540939,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.987905,0.1550604,0,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,-0.9998811,0.01541515,0,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,-0.2995079,-0.9540939,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0,0.1550609,0.9879049,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0.987905,0.1550604,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1488 { + a: -2.874293,0.0486067,-3.989159,0.0486067,-3.047097,17.16365,-3.816355,17.16365,2.874293,-0.05986301,3.047097,17.05518,3.989159,-0.05986301,3.816355,17.05518,6.169162,18.61515,4.574034,18.61515,5.756226,21.27822,4.98697,21.27822,-4.574034,17.55089,-6.169162,17.55089,-4.98697,20.21396,-5.756226,20.21396,-4.98697,17.47155,-5.756226,17.47155,-4.574034,18.85027,-6.169162,18.85027,2.634159,17.2501,3.047097,19.91317,4.229293,17.2501,3.816355,19.91317,-5.264122,1.930487,-6.3596,1.723495,-5.471116,3.025969,-6.566594,2.818976,-4.814167,-0.04027706,-5.929029,-0.04027706,-4.98697,17.07476,-5.756226,17.07476,-2.634159,18.91595,-4.229293,18.91595,-3.047097,21.57902,-3.816355,21.57902,5.756226,15.41589,4.98697,15.41589,6.169162,16.79461,4.574034,16.79461,2.634159,19.43128,4.229293,19.43128,3.047097,18.05256,3.816355,18.05256,5.466005,2.068203,5.608831,2.824085,6.221885,1.925378,6.36471,2.68126,-2.634159,16.21362,-3.047097,14.8349,-4.229293,16.21362,-3.816355,14.8349,5.929029,0.02902067,4.814167,0.02902067,5.756226,17.14406,4.98697,17.14406,1.54985,-0.07363202,0.4349875,-0.07363202,1.377046,17.04141,0.6077912,17.04141,-5.937734,18.11968,-6.350672,16.74096,-7.532868,18.11968,-7.11993,16.74096,6.177868,0.004391894,6.350672,17.11943,7.292734,0.004391894,7.11993,17.11943,-6.177868,-0.01564821,-7.292734,-0.01564821,-6.350672,17.09939,-7.11993,17.09939,1.789983,17.03864,0.1948543,17.03864,1.377046,19.70171,0.6077912,19.70171,-5.937734,17.92914,-7.532868,17.92914,-6.350672,20.59221,-7.11993,20.59221,1.982779,6.188366,2.367408,6.854563,2.648973,5.803739,3.033602,6.469935,1.377046,18.461,0.6077912,18.461,1.789983,19.83972,0.1948543,19.83972,5.937734,17.52521,7.532868,17.52521,6.350672,16.14649,7.11993,16.14649,-0.4349875,0.06237563,-1.54985,0.06237563,-0.6077912,17.17742,-1.377046,17.17742,-0.6077912,14.42645,-1.377046,14.42645,-0.1948543,15.80517,-1.789983,15.80517,-1.746725,6.125115,-2.712224,5.567685,-2.304157,7.090618,-3.269657,6.533186,5.937734,18.23691,6.350672,20.89998,7.532868,18.23691,7.11993,20.89998,-0.1948543,19.1274,-1.789983,19.1274,-0.6077912,21.79047,-1.377046,21.79047,2.65311,11.39723,4.248244,11.39723,3.066048,10.01851,3.835305,10.01851,-2.65311,16.73512,-3.066048,15.35639,-4.248244,16.73512,-3.835305,15.35639,-8.353696,0.0379385,-9.468558,0.0379385,-8.5265,13.21623,-9.295754,13.21623,-2.893244,-0.1241588,-4.00811,-0.1241588,-3.066048,13.05413,-3.835305,13.05413,9.295754,13.72095,8.5265,13.72095,9.708692,15.09967,8.113563,15.09967,-8.5265,11.65394,-9.295754,11.65394,-8.113563,13.03267,-9.708692,13.03267,9.708692,13.65857,8.113563,13.65857,9.295754,16.32164,8.5265,16.32164,-8.113563,14.7287,-9.708692,14.7287,-8.5265,17.39177,-9.295754,17.39177,-2.65311,12.81187,-4.248244,12.81187,-3.066048,15.47494,-3.835305,15.47494,9.468558,4.00811,9.468558,2.893244,8.353696,4.00811,8.353696,2.893244,-9.295754,3.066048,-9.295754,3.835305,-8.5265,3.066048,-8.5265,3.835305,2.893244,0.1095399,3.066048,13.28783,4.00811,0.1095399,3.835305,13.28783,2.65311,15.5754,3.066048,18.23847,4.248244,15.5754,3.835305,18.23847,9.468558,-0.0525575,8.353696,-0.0525575,9.295754,13.12574,8.5265,13.12574,2.210903,10.18619,1.441648,10.18619,2.62384,11.56491,1.028711,11.56491,-1.268844,-0.1168172,-2.383707,-0.1168172,-1.441648,13.06148,-2.210903,13.06148,-1.441648,15.1887,-2.210903,15.1887,-1.028711,16.56742,-2.62384,16.56742,-7.793783,0.01663804,-8.908648,0.01663804,-7.966587,13.19493,-8.735844,13.19493,-1.028711,12.89868,-2.62384,12.89868,-1.441648,15.56175,-2.210903,15.56175,7.553648,13.91045,7.966587,16.57352,9.148783,13.91045,8.735844,16.57352,2.62384,15.48858,1.028711,15.48858,2.210903,18.15165,1.441648,18.15165,-4.309945,7.73419,-3.70792,8.213062,-3.831071,7.132163,-3.229046,7.611035,-7.553648,14.47682,-9.148783,14.47682,-7.966587,17.13989,-8.735844,17.13989,-7.553648,13.51919,-7.966587,12.14047,-9.148783,13.51919,-8.735844,12.14047,7.553648,14.61315,9.148783,14.61315,7.966587,13.23443,8.735844,13.23443,4.552756,7.761855,3.858736,6.889352,3.680256,8.455873,2.986235,7.58337,7.793783,-0.03125695,7.966587,13.14704,8.908648,-0.03125695,8.735844,13.14704,2.383707,0.1021982,1.268844,0.1021982,2.210903,13.28049,1.441648,13.28049,-4.771373,-8.28337,-5.863075,-8.50945,-4.997453,-7.191671,-6.089155,-7.417752,4.975629,-8.149199,5.131624,-7.395927,5.728903,-8.305195,5.884899,-7.551923,-7.383824,16.1356,-5.788695,16.1356,-6.970887,14.75688,-6.201632,14.75688,7.143691,0.08329243,6.028829,0.08329243,6.970887,13.26159,6.201632,13.26159,-7.143691,-0.09791143,-6.970887,13.08038,-6.028829,-0.09791143,-6.201632,13.08038,7.466865,-0.09367342,6.351999,-0.09367342,7.294061,13.08462,6.524804,13.08462,-6.524804,10.71482,-7.294061,10.71482,-6.111865,12.09354,-7.706999,12.09354,7.383824,15.26501,5.788695,15.26501,6.970887,17.92808,6.201632,17.92808,7.383824,11.99674,6.970887,10.61802,5.788695,11.99674,6.201632,10.61802,-7.383824,13.12225,-6.970887,15.78532,-5.788695,13.12225,-6.201632,15.78532,7.294061,14.66008,6.524804,14.66008,7.706999,16.0388,6.111865,16.0388,7.706999,13.17236,6.111865,13.17236,7.294061,15.83543,6.524804,15.83543,-6.351999,0.07905451,-7.466865,0.07905451,-6.524804,13.25735,-7.294061,13.25735,-6.111865,15.2149,-7.706999,15.2149,-6.524804,17.87797,-7.294061,17.87797,5.104974,-0.1534275,5.277778,11.05656,6.21984,-0.1534275,6.047035,11.05656,-8.838172,6.21984,-8.838172,5.104974,-9.953033,6.21984,-9.953033,5.104974,9.780231,9.113374,9.010975,9.113374,10.19317,10.4921,8.598039,10.4921,9.953033,0.07869419,8.838172,0.07869419,9.780231,11.28868,9.010975,11.28868,-4.86484,9.373986,-5.277778,7.995264,-6.459974,9.373986,-6.047035,7.995264,-4.86484,13.70582,-6.459974,13.70582,-5.277778,16.36889,-6.047035,16.36889,-8.838172,-0.09588006,-9.953033,-0.09588006,-9.010975,11.11411,-9.780231,11.11411,-8.598039,11.37092,-10.19317,11.37092,-9.010975,14.03399,-9.780231,14.03399,4.86484,10.79205,5.277778,13.45512,6.459974,10.79205,6.047035,13.45512,9.010975,5.277778,9.010975,6.047035,9.780231,5.277778,9.780231,6.047035,4.86484,15.00208,6.459974,15.00208,5.277778,13.62336,6.047035,13.62336,-9.010975,12.50524,-9.780231,12.50524,-8.598039,13.88397,-10.19317,13.88397,10.19317,13.12695,8.598039,13.12695,9.780231,15.79002,9.010975,15.79002,-5.104974,0.1362417,-6.21984,0.1362417,-5.277778,11.34623,-6.047035,11.34623,-2.218655,-0.07383224,-3.333518,-0.07383224,-2.391459,11.13616,-3.160714,11.13616,4.789574,-0.05138667,3.674708,-0.05138667,4.61677,11.1586,3.847513,11.1586,-1.978522,11.5927,-3.573651,11.5927,-2.391459,14.25577,-3.160714,14.25577,1.978522,12.90518,2.391459,15.56825,3.573651,12.90518,3.160714,15.56825,-3.847513,9.977855,-4.61677,9.977855,-3.434574,11.35658,-5.029708,11.35658,-3.434574,12.6794,-5.029708,12.6794,-3.847513,15.34247,-4.61677,15.34247,-3.674708,0.03420091,-4.789574,0.03420091,-3.847513,11.24419,-4.61677,11.24419,1.978522,10.92047,3.573651,10.92047,2.391459,9.54175,3.160714,9.54175,5.029708,11.81848,3.434574,11.81848,4.61677,14.48155,3.847513,14.48155,2.108611,4.83903,1.274917,4.098842,1.368425,5.672722,0.5347303,4.932533,2.218655,0.05664636,2.391459,11.26663,3.333518,0.05664636,3.160714,11.26663,-1.86466,4.853523,-1.353931,5.428771,-1.28941,4.342793,-0.7786818,4.91804,4.61677,11.64077,3.847513,11.64077,5.029708,13.01949,3.434574,13.01949,-1.978522,13.45559,-2.391459,12.07687,-3.573651,13.45559,-3.160714,12.07687,1.008228,13.91143,-0.5869003,13.91143,0.5952916,16.5745,-0.1739634,16.5745,0.1739634,12.14235,-0.5952916,12.14235,0.5869003,13.52108,-1.008228,13.52108,2.377392,-0.00454707,1.262526,-0.00454707,2.204588,13.17375,1.43533,13.17375,2.617526,14.00308,2.204588,12.62435,1.022392,14.00308,1.43533,12.62435,0.7680952,-0.03117424,-0.3467671,-0.03117424,0.5952916,13.14712,-0.1739634,13.14712,0.5869003,14.47583,-1.008228,14.47583,0.1739634,17.13891,-0.5952916,17.13891,-2.617526,14.16097,-2.204588,16.82404,-1.022392,14.16097,-1.43533,16.82404,1.926271,-1.435869,1.137945,-2.224195,1.137942,-0.6475395,0.3496155,-1.435866,2.617526,14.2263,1.022392,14.2263,2.204588,16.88937,1.43533,16.88937,-2.617526,14.12927,-1.022392,14.12927,-2.204588,12.75055,-1.43533,12.75055,0.5952916,13.23254,-0.1739634,13.23254,1.008228,14.61126,-0.5869003,14.61126,-1.68189,-1.435868,-1.137943,-0.8919211,-1.137944,-1.979814,-0.5939971,-1.435866,0.3467671,0.01655524,-0.7680952,0.01655524,0.1739634,13.19485,-0.5952916,13.19485,-2.377392,-0.01007184,-2.204588,13.16822,-1.262526,-0.01007184,-1.43533,13.16822,5.654224,9.710876,4.884969,9.710876,6.067161,11.0896,4.472033,11.0896,5.827028,0.1230081,4.712166,0.1230081,5.654224,13.3013,4.884969,13.3013,-4.712166,-0.1376271,-5.827028,-0.1376271,-4.884969,13.04067,-5.654224,13.04067,10.49564,-0.07640836,9.380774,-0.07640836,10.32284,13.10188,9.553579,13.10188,-10.73577,12.48789,-9.14064,12.48789,-10.32284,11.10917,-9.553579,11.10917,-4.472033,12.6526,-6.067161,12.6526,-4.884969,15.31567,-5.654224,15.31567,10.73577,15.64445,10.32284,14.26573,9.14064,15.64445,9.553579,14.26573,10.73577,13.37653,9.14064,13.37653,10.32284,16.0396,9.553579,16.0396,-4.884969,15.66402,-5.654224,15.66402,-4.472033,17.04274,-6.067161,17.04274,-10.73577,15.01074,-10.32284,17.67381,-9.14064,15.01074,-9.553579,17.67381,-10.49564,0.06178945,-10.32284,13.24008,-9.380774,0.06178945,-9.553579,13.24008,6.067161,15.73466,4.472033,15.73466,5.654224,18.39773,4.884969,18.39773,10.29417,-6.175977,9.328675,-6.733408,9.736742,-5.210475,8.771242,-5.767906,-10.05812,-6.112726,-9.673491,-5.44653,-9.391926,-6.497354,-9.007297,-5.831157,-1.965199,-4.586314,-2.930698,-5.143745,-2.522631,-3.620812,-3.488131,-4.178243,-4.167872,15.71537,-4.937128,15.71537,-3.754936,17.09409,-5.350064,17.09409,-3.229399,17.37711,-2.816461,20.04018,-1.634265,17.37711,-2.047203,20.04018,2.201253,-4.523063,2.585882,-3.856866,2.867447,-4.90769,3.252076,-4.241494,4.937128,17.17208,4.167872,17.17208,5.350064,18.5508,3.754936,18.5508,-2.989265,-0.05159291,-2.816461,17.06345,-1.874399,-0.05159291,-2.047203,17.06345,5.109931,-0.0301815,3.995069,-0.0301815,4.937128,17.08486,4.167872,17.08486,-3.995069,0.01892511,-5.109931,0.01892511,-4.167872,17.13397,-4.937128,17.13397,2.989265,0.0403366,1.874399,0.0403366,2.816461,17.15538,2.047203,17.15538,-3.229399,19.18595,-1.634265,19.18595,-2.816461,17.80723,-2.047203,17.80723,-3.754936,18.4601,-5.350064,18.4601,-4.167872,21.12317,-4.937128,21.12317,3.229399,18.78893,1.634265,18.78893,2.816461,21.45201,2.047203,21.45201,3.229399,16.45894,2.816461,15.08022,1.634265,16.45894,2.047203,15.08022,5.350064,17.70594,3.754936,17.70594,4.937128,20.36901,4.167872,20.36901,-6.202661,0.08915596,-7.317523,0.08915596,-6.375465,13.26745,-7.14472,13.26745,7.14472,14.8908,6.375465,14.8908,7.557657,16.26953,5.962528,16.26953,-6.375465,10.48409,-7.14472,10.48409,-5.962528,11.86281,-7.557657,11.86281,7.317523,-0.103775,6.202661,-0.103775,7.14472,13.07452,6.375465,13.07452,-8.15416,16.09087,-6.559027,16.09087,-7.741222,14.71214,-6.971965,14.71214,8.15416,15.24186,6.559027,15.24186,7.741222,17.90493,6.971965,17.90493,-8.771242,-2.786915,-9.328675,-3.752417,-9.736742,-2.229484,-10.29417,-3.194986,-8.15416,13.14541,-7.741222,15.80848,-6.559027,13.14541,-6.971965,15.80848,-7.914026,-0.09595285,-7.741222,13.08234,-6.79916,-0.09595285,-6.971965,13.08234,8.15416,12.04148,7.741222,10.66276,6.559027,12.04148,6.971965,10.66276,9.007297,-2.850166,9.673491,-2.465539,9.391926,-3.516363,10.05812,-3.131735,7.914026,0.08133394,6.79916,0.08133394,7.741222,13.25963,6.971965,13.25963,-5.962528,15.33435,-7.557657,15.33435,-6.375465,17.99742,-7.14472,17.99742,7.557657,13.05291,5.962528,13.05291,7.14472,15.71598,6.375465,15.71598,3.401585,0.08605914,2.286722,0.08605914,3.228781,11.29605,2.459526,11.29605,-2.286722,-0.103245,-3.401585,-0.103245,-2.459526,11.10674,-3.228781,11.10674,3.401585,-5.582746,3.401585,-6.697612,2.286722,-5.582746,2.286722,-6.697612,6.937746,13.03988,6.524807,11.66116,5.342612,13.03988,5.75555,11.66116,-3.228781,-6.524807,-3.228781,-5.75555,-2.459526,-6.524807,-2.459526,-5.75555,-6.937746,11.33619,-5.342612,11.33619,-6.524807,9.957468,-5.75555,9.957468,6.697612,-0.05243593,5.582746,-0.05243593,6.524807,11.15755,5.75555,11.15755,-2.046589,11.29683,-3.641718,11.29683,-2.459526,13.9599,-3.228781,13.9599,3.228781,8.970278,2.459526,8.970278,3.641718,10.349,2.046589,10.349,-6.937746,12.68995,-6.524807,15.35302,-5.342612,12.68995,-5.75555,15.35302,-6.697612,0.03525017,-6.524807,11.24524,-5.582746,0.03525017,-5.75555,11.24524,-2.459526,12.64834,-3.228781,12.64834,-2.046589,14.02706,-3.641718,14.02706,3.641718,13.20104,2.046589,13.20104,3.228781,15.86411,2.459526,15.86411,6.937746,11.80792,5.342612,11.80792,6.524807,14.47099,5.75555,14.47099,3.816355,18.05256,3.047097,18.05256,4.229293,19.43128,3.816355,18.05256,3.047097,18.05256,4.229293,19.43128,0.1948543,19.83972,1.789983,19.83972,0.6077912,18.461,0.1948543,19.83972,1.789983,19.83972,0.6077912,18.461,-8.5265,3.835305,-8.5265,3.066048,-9.295754,3.835305,-8.5265,3.835305,-8.5265,3.066048,-9.295754,3.835305,8.735844,16.57352,9.148783,13.91045,7.966587,16.57352,8.735844,16.57352,9.148783,13.91045,7.966587,16.57352,-6.089155,-7.417752,-4.997453,-7.191671,-5.863075,-8.50945,-6.089155,-7.417752,-4.997453,-7.191671,-5.863075,-8.50945,6.047035,11.05656,6.21984,-0.1534275,5.277778,11.05656,6.047035,11.05656,6.21984,-0.1534275,5.277778,11.05656,-0.7786818,4.91804,-1.28941,4.342793,-1.353931,5.428771,-0.7786818,4.91804,-1.28941,4.342793,-1.353931,5.428771,-0.5939971,-1.435866,-1.137944,-1.979814,-1.137943,-0.8919211,-0.5939971,-1.435866,-1.137944,-1.979814,-1.137943,-0.8919211,8.771242,-5.767906,9.736742,-5.210475,9.328675,-6.733408,8.771242,-5.767906,9.736742,-5.210475,9.328675,-6.733408,3.252076,-4.241494,2.867447,-4.90769,2.585882,-3.856866,3.252076,-4.241494,2.867447,-4.90769,2.585882,-3.856866,6.971965,10.66276,6.559027,12.04148,7.741222,10.66276,6.971965,10.66276,6.559027,12.04148,7.741222,10.66276,6.375465,15.71598,7.14472,15.71598,5.962528,13.05291,6.375465,15.71598,7.14472,15.71598,5.962528,13.05291 + } + UVIndex: *1080 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,432,434,433,435,433,434,436,438,437,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,448,450,449,451,449,450,452,454,453,455,453,454,456,458,457,459,457,458,460,462,461,463,461,462,464,466,465,467,465,466,468,470,469,471,469,470,472,474,473,475,473,474,476,478,477,479,477,478,480,482,481,483,481,482,484,486,485,487,485,486,488,490,489,491,489,490,492,494,493,495,493,494,496,498,497,499,497,498,500,502,501,503,501,502,504,506,505,507,505,506,508,510,509,511,509,510,512,514,513,515,513,514,516,518,517,519,517,518,520,522,521,523,521,522,524,526,525,527,525,526,528,530,529,531,529,530,532,534,533,535,533,534,536,538,537,539,537,538,540,542,541,543,541,542,544,546,545,547,545,546,548,550,549,551,549,550,552,554,553,555,553,554,556,558,557,559,557,558,560,562,561,563,561,562,564,566,565,567,565,566,568,570,569,571,569,570,572,574,573,575,573,574,576,578,577,579,577,578,580,582,581,583,581,582,584,586,585,587,585,586,588,590,589,591,589,590,592,594,593,595,593,594,596,598,597,599,597,598,600,602,601,603,601,602,604,606,605,607,605,606,608,610,609,611,609,610,612,614,613,615,613,614,616,618,617,619,617,618,620,622,621,623,621,622,624,626,625,627,625,626,628,630,629,631,629,630,632,634,633,635,633,634,636,638,637,639,637,638,640,642,641,643,641,642,644,646,645,647,645,646,648,650,649,651,649,650,652,654,653,655,653,654,656,658,657,659,657,658,660,662,661,663,661,662,664,666,665,667,665,666,668,670,669,671,669,670,672,674,673,675,677,676,678,680,679,681,683,682,684,686,685,687,689,688,690,692,691,693,695,694,696,698,697,699,701,700,702,704,703,705,707,706,708,710,709,711,713,712,714,716,715,717,719,718,720,722,721,723,725,724,726,728,727,729,731,730,732,734,733,735,737,736,738,740,739,741,743,742 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *360 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh crops_wheatStageB, Model::RootNode + C: "OO",5430866779927192620,0 + + ;Geometry::, Model::Mesh crops_wheatStageB + C: "OO",5331565623694924578,5430866779927192620 + + ;Material::woodInner, Model::Mesh crops_wheatStageB + C: "OO",3054,5430866779927192620 + + ;Material::_defaultMat, Model::Mesh crops_wheatStageB + C: "OO",3004,5430866779927192620 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageB.fbx.import new file mode 100644 index 0000000..c00ac13 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://t8u36dyauw1l" +path="res://.godot/imported/crops_wheatStageB.fbx-80482ee60eb407f0ec0a9762d4621a16.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/crops_wheatStageB.fbx" +dest_files=["res://.godot/imported/crops_wheatStageB.fbx-80482ee60eb407f0ec0a9762d4621a16.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_bend.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_bend.fbx new file mode 100644 index 0000000..cc54e9d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_bend.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 20 + Millisecond: 222 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_bend.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_bend.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5377672314118621049, "Model::fence_bend", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5422830428098244120, "Geometry::", "Mesh" { + Vertices: *1080 { + a: 0.924541,0.6210492,3.849079,2.017087,0.6210492,4.219949,0.924541,1.242098,3.849079,2.017087,1.242098,4.219949,2.017087,0.6210492,4.219949,3.148693,0.6210492,4.445039,2.017087,1.242098,4.219949,3.148693,1.242098,4.445039,-3.563078,0.6210492,0.2397499,-3.563078,1.242098,0.2397499,-2.903252,0.6210492,1.22725,-2.903252,1.242098,1.22725,3.148693,0.6210492,4.445039,4.3,0.6210492,4.5205,3.148693,1.242098,4.445039,4.3,1.242098,4.5205,-1.937035,0.6210492,1.937035,-1.06958,0.6210492,2.697773,-1.937035,1.242098,1.937035,-1.06958,1.242098,2.697773,-1.06958,0.6210492,2.697773,-0.11025,0.6210492,3.338777,-1.06958,1.242098,2.697773,-0.11025,1.242098,3.338777,4.3,0.6210492,4.7795,3.114887,0.6210492,4.701823,4.3,1.242098,4.7795,3.114887,1.242098,4.701823,3.114887,0.6210492,4.701823,1.950052,0.6210492,4.470123,3.114887,1.242098,4.701823,1.950052,1.242098,4.470123,1.950052,0.6210492,4.470123,0.8254261,0.6210492,4.088364,1.950052,1.242098,4.470123,0.8254261,1.242098,4.088364,0.8254261,0.6210492,4.088364,-0.2397499,0.6210492,3.563078,0.8254261,1.242098,4.088364,-0.2397499,1.242098,3.563078,-4.088364,0.6210492,-0.8254261,-4.088364,1.242098,-0.8254261,-3.563078,0.6210492,0.2397499,-3.563078,1.242098,0.2397499,-4.445039,1.242098,-3.148693,-4.445039,0.6210492,-3.148693,-4.219949,1.242098,-2.017087,-4.219949,0.6210492,-2.017087,-2.903252,0.6210492,1.22725,-2.903252,1.242098,1.22725,-2.120176,0.6210492,2.120176,-2.120176,1.242098,2.120176,-0.11025,0.6210492,3.338777,0.924541,0.6210492,3.849079,-0.11025,1.242098,3.338777,0.924541,1.242098,3.849079,-4.701823,0.6210492,-3.114887,-4.701823,1.242098,-3.114887,-4.470123,0.6210492,-1.950052,-4.470123,1.242098,-1.950052,-1.22725,0.6210492,2.903252,-2.120176,0.6210492,2.120176,-1.22725,1.242098,2.903252,-2.120176,1.242098,2.120176,-4.7795,0.6210492,-4.3,-4.7795,1.242098,-4.3,-4.701823,0.6210492,-3.114887,-4.701823,1.242098,-3.114887,-0.2397499,0.6210492,3.563078,-1.22725,0.6210492,2.903252,-0.2397499,1.242098,3.563078,-1.22725,1.242098,2.903252,-4.219949,1.242098,-2.017087,-4.219949,0.6210492,-2.017087,-3.849079,1.242098,-0.924541,-3.849079,0.6210492,-0.924541,-3.338777,2.829224,0.11025,-3.338777,2.208175,0.11025,-2.697773,2.829224,1.06958,-2.697773,2.208175,1.06958,2.017087,2.208175,4.219949,3.148693,2.208175,4.445039,2.017087,2.829224,4.219949,3.148693,2.829224,4.445039,-3.338777,1.242098,0.11025,-3.338777,0.6210492,0.11025,-2.697773,1.242098,1.06958,-2.697773,0.6210492,1.06958,-1.937035,2.208175,1.937035,-1.06958,2.208175,2.697773,-1.937035,2.829224,1.937035,-1.06958,2.829224,2.697773,-4.470123,2.208175,-1.950052,-4.470123,2.829224,-1.950052,-4.088364,2.208175,-0.8254261,-4.088364,2.829224,-0.8254261,-2.697773,2.829224,1.06958,-2.697773,2.208175,1.06958,-1.937035,2.829224,1.937035,-1.937035,2.208175,1.937035,-4.088364,2.208175,-0.8254261,-4.088364,2.829224,-0.8254261,-3.563078,2.208175,0.2397499,-3.563078,2.829224,0.2397499,-3.849079,2.829224,-0.924541,-3.849079,2.208175,-0.924541,-3.338777,2.829224,0.11025,-3.338777,2.208175,0.11025,-3.849079,1.242098,-0.924541,-3.849079,0.6210492,-0.924541,-3.338777,1.242098,0.11025,-3.338777,0.6210492,0.11025,-4.5205,2.829224,-4.3,-4.5205,2.208175,-4.3,-4.445039,2.829224,-3.148693,-4.445039,2.208175,-3.148693,-4.5205,1.242098,-4.3,-4.5205,0.6210492,-4.3,-4.445039,1.242098,-3.148693,-4.445039,0.6210492,-3.148693,-4.219949,2.829224,-2.017087,-4.219949,2.208175,-2.017087,-3.849079,2.829224,-0.924541,-3.849079,2.208175,-0.924541,0.8254261,2.208175,4.088364,-0.2397499,2.208175,3.563078,0.8254261,2.829224,4.088364,-0.2397499,2.829224,3.563078,-3.563078,2.208175,0.2397499,-3.563078,2.829224,0.2397499,-2.903252,2.208175,1.22725,-2.903252,2.829224,1.22725,0.924541,2.208175,3.849079,2.017087,2.208175,4.219949,0.924541,2.829224,3.849079,2.017087,2.829224,4.219949,-1.06958,2.208175,2.697773,-0.11025,2.208175,3.338777,-1.06958,2.829224,2.697773,-0.11025,2.829224,3.338777,-1.22725,2.208175,2.903252,-2.120176,2.208175,2.120176,-1.22725,2.829224,2.903252,-2.120176,2.829224,2.120176,-4.445039,2.829224,-3.148693,-4.445039,2.208175,-3.148693,-4.219949,2.829224,-2.017087,-4.219949,2.208175,-2.017087,-0.2397499,2.208175,3.563078,-1.22725,2.208175,2.903252,-0.2397499,2.829224,3.563078,-1.22725,2.829224,2.903252,4.3,2.208175,4.7795,3.114887,2.208175,4.701823,4.3,2.829224,4.7795,3.114887,2.829224,4.701823,1.950052,2.208175,4.470123,0.8254261,2.208175,4.088364,1.950052,2.829224,4.470123,0.8254261,2.829224,4.088364,-4.7795,2.208175,-4.3,-4.7795,2.829224,-4.3,-4.701823,2.208175,-3.114887,-4.701823,2.829224,-3.114887,-2.697773,1.242098,1.06958,-2.697773,0.6210492,1.06958,-1.937035,1.242098,1.937035,-1.937035,0.6210492,1.937035,-4.470123,0.6210492,-1.950052,-4.470123,1.242098,-1.950052,-4.088364,0.6210492,-0.8254261,-4.088364,1.242098,-0.8254261,3.148693,2.208175,4.445039,4.3,2.208175,4.5205,3.148693,2.829224,4.445039,4.3,2.829224,4.5205,-0.11025,2.208175,3.338777,0.924541,2.208175,3.849079,-0.11025,2.829224,3.338777,0.924541,2.829224,3.849079,-4.701823,2.208175,-3.114887,-4.701823,2.829224,-3.114887,-4.470123,2.208175,-1.950052,-4.470123,2.829224,-1.950052,3.114887,2.208175,4.701823,1.950052,2.208175,4.470123,3.114887,2.829224,4.701823,1.950052,2.829224,4.470123,-2.903252,2.208175,1.22725,-2.903252,2.829224,1.22725,-2.120176,2.208175,2.120176,-2.120176,2.829224,2.120176,-5,0,-5,-4.3,0,-5,-5,3.450273,-5,-4.3,3.450273,-5,-4.3,3.450273,-5,-4.3,3.450273,-4.3,-5,3.450273,-5,-5,3.450273,-4.3,5,3.450273,4.3,5,0,4.3,5,3.450273,5,5,0,5,-5,0,-4.3,-4.5205,0.6210492,-4.3,-4.3,0,-4.3,-4.3,3.450273,-4.3,-4.5205,1.242098,-4.3,-4.5205,2.208175,-4.3,-4.7795,1.242098,-4.3,-4.5205,2.829224,-4.3,-4.7795,2.829224,-4.3,-4.7795,0.6210492,-4.3,-5,3.450273,-4.3,-4.7795,2.208175,-4.3,-5,0,-5,-5,3.450273,-5,-5,0,-4.3,-5,3.450273,-4.3,4.3,0,4.3,5,0,4.3,4.3,3.450273,4.3,5,3.450273,4.3,5,3.450273,4.3,5,3.450273,5,4.3,3.450273,4.3,4.3,3.450273,5,4.3,1.242098,4.5205,4.3,1.242098,4.7795,3.148693,1.242098,4.445039,3.114887,1.242098,4.701823,2.017087,1.242098,4.219949,1.950052,1.242098,4.470123,0.924541,1.242098,3.849079,0.8254261,1.242098,4.088364,-0.11025,1.242098,3.338777,-0.2397499,1.242098,3.563078,-1.06958,1.242098,2.697773,-1.22725,1.242098,2.903252,-1.937035,1.242098,1.937035,-2.120176,1.242098,2.120176,-2.697773,1.242098,1.06958,-2.903252,1.242098,1.22725,-3.338777,1.242098,0.11025,-3.563078,1.242098,0.2397499,-3.849079,1.242098,-0.924541,-4.088364,1.242098,-0.8254261,-4.219949,1.242098,-2.017087,-4.470123,1.242098,-1.950052,-4.445039,1.242098,-3.148693,-4.5205,1.242098,-4.3,-4.701823,1.242098,-3.114887,-4.7795,1.242098,-4.3,4.3,3.450273,4.3,4.3,0.6210492,4.5205,4.3,0,4.3,4.3,0,5,4.3,0.6210492,4.7795,4.3,1.242098,4.7795,4.3,2.208175,4.7795,4.3,2.829224,4.7795,4.3,2.829224,4.5205,4.3,3.450273,5,4.3,1.242098,4.5205,4.3,2.208175,4.5205,-4.3,0,-4.3,-4.3,0,-5,-5,0,-4.3,-5,0,-5,5,0,4.3,4.3,0,4.3,5,0,5,4.3,0,5,5,0,5,4.3,0,5,5,3.450273,5,4.3,3.450273,5,-4.3,3.450273,-5,-4.3,0,-5,-4.3,3.450273,-4.3,-4.3,0,-4.3,4.3,0.6210492,4.7795,4.3,0.6210492,4.5205,3.114887,0.6210492,4.701823,3.148693,0.6210492,4.445039,2.017087,0.6210492,4.219949,1.950052,0.6210492,4.470123,0.924541,0.6210492,3.849079,0.8254261,0.6210492,4.088364,-0.11025,0.6210492,3.338777,-0.2397499,0.6210492,3.563078,-1.06958,0.6210492,2.697773,-1.22725,0.6210492,2.903252,-1.937035,0.6210492,1.937035,-2.120176,0.6210492,2.120176,-2.697773,0.6210492,1.06958,-2.903252,0.6210492,1.22725,-3.338777,0.6210492,0.11025,-3.563078,0.6210492,0.2397499,-3.849079,0.6210492,-0.924541,-4.088364,0.6210492,-0.8254261,-4.219949,0.6210492,-2.017087,-4.470123,0.6210492,-1.950052,-4.445039,0.6210492,-3.148693,-4.5205,0.6210492,-4.3,-4.701823,0.6210492,-3.114887,-4.7795,0.6210492,-4.3,4.3,2.208175,4.7795,4.3,2.208175,4.5205,3.114887,2.208175,4.701823,3.148693,2.208175,4.445039,2.017087,2.208175,4.219949,1.950052,2.208175,4.470123,0.924541,2.208175,3.849079,0.8254261,2.208175,4.088364,-0.11025,2.208175,3.338777,-0.2397499,2.208175,3.563078,-1.06958,2.208175,2.697773,-1.22725,2.208175,2.903252,-1.937035,2.208175,1.937035,-2.120176,2.208175,2.120176,-2.697773,2.208175,1.06958,-2.903252,2.208175,1.22725,-3.338777,2.208175,0.11025,-3.563078,2.208175,0.2397499,-3.849079,2.208175,-0.924541,-4.088364,2.208175,-0.8254261,-4.219949,2.208175,-2.017087,-4.470123,2.208175,-1.950052,-4.445039,2.208175,-3.148693,-4.5205,2.208175,-4.3,-4.701823,2.208175,-3.114887,-4.7795,2.208175,-4.3,4.3,2.829224,4.5205,4.3,2.829224,4.7795,3.148693,2.829224,4.445039,3.114887,2.829224,4.701823,2.017087,2.829224,4.219949,1.950052,2.829224,4.470123,0.924541,2.829224,3.849079,0.8254261,2.829224,4.088364,-0.11025,2.829224,3.338777,-0.2397499,2.829224,3.563078,-1.06958,2.829224,2.697773,-1.22725,2.829224,2.903252,-1.937035,2.829224,1.937035,-2.120176,2.829224,2.120176,-2.697773,2.829224,1.06958,-2.903252,2.829224,1.22725,-3.338777,2.829224,0.11025,-3.563078,2.829224,0.2397499,-3.849079,2.829224,-0.924541,-4.088364,2.829224,-0.8254261,-4.219949,2.829224,-2.017087,-4.470123,2.829224,-1.950052,-4.445039,2.829224,-3.148693,-4.5205,2.829224,-4.3,-4.701823,2.829224,-3.114887,-4.7795,2.829224,-4.3 + } + PolygonVertexIndex: *720 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,205,-208,209,208,-208,210,208,-210,211,209,-208,212,211,-208,205,213,-205,214,204,-214,210,214,-214,207,214,-213,215,214,-211,209,215,-211,212,214,-216,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,231,-231,233,231,-233,234,233,-233,235,233,-235,236,235,-235,237,235,-237,238,237,-237,239,237,-239,240,239,-239,241,239,-241,242,241,-241,243,241,-243,244,243,-243,245,243,-245,246,245,-245,247,245,-247,248,247,-247,249,247,-249,250,249,-249,251,249,-251,252,249,-252,253,252,-252,254,256,-256,257,255,-257,258,255,-258,259,258,-258,260,259,-258,261,260,-258,255,262,-255,263,254,-263,261,263,-263,257,263,-262,264,262,-256,265,262,-265,264,259,-266,260,265,-260,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,285,-285,287,286,-285,288,286,-288,289,288,-288,290,288,-290,291,290,-290,292,290,-292,293,292,-292,294,292,-294,295,294,-294,296,294,-296,297,296,-296,298,296,-298,299,298,-298,300,298,-300,301,300,-300,302,300,-302,303,302,-302,304,302,-304,305,304,-304,306,305,-304,307,305,-307,308,310,-310,311,309,-311,312,311,-311,313,312,-311,314,312,-314,315,314,-314,316,314,-316,317,316,-316,318,316,-318,319,318,-318,320,318,-320,321,320,-320,322,320,-322,323,322,-322,324,322,-324,325,324,-324,326,324,-326,327,326,-326,328,326,-328,329,328,-328,330,328,-330,331,330,-330,332,331,-330,333,331,-333,334,336,-336,337,335,-337,338,337,-337,339,337,-339,340,339,-339,341,339,-341,342,341,-341,343,341,-343,344,343,-343,345,343,-345,346,345,-345,347,345,-347,348,347,-347,349,347,-349,350,349,-349,351,349,-351,352,351,-351,353,351,-353,354,353,-353,355,353,-355,356,355,-355,357,355,-357,358,355,-358,359,358,-358 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2160 { + a: 0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.3826834,0,-0.9238795,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.2588193,0,-0.9659257,-0.8660256,0,0.4999998,-0.7933533,0,0.6087615,-0.8660256,0,0.4999998,-0.7933533,0,0.6087615,-0.8660256,0,0.4999998,-0.7933533,0,0.6087615,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.0654031,0,-0.9978589,0.0654031,0,-0.9978589,0.0654031,0,-0.9978589,0.1305262,0,-0.9914449,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087615,0,-0.7933533,0.6087615,0,-0.7933533,0.6087615,0,-0.7933533,0.7071068,0,-0.7071068,0.6087615,0,-0.7933533,0.6087615,0,-0.7933533,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.6087615,0,-0.7933533,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.06540313,0,0.9978589,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.1305261,0,0.9914449,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.2588191,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.3826834,0,0.9238795,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,-0.7933533,0,0.6087615,-0.7071068,0,0.7071068,-0.7933533,0,0.6087615,-0.7071068,0,0.7071068,-0.7933533,0,0.6087615,-0.7071068,0,0.7071068,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.4999999,0,-0.8660254,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.6087615,0,0.7933533,-0.6087615,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087615,0,0.7933533,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.6087615,0,0.7933533,-0.6087615,0,0.7933533,-0.6087615,0,0.7933533,-0.4999998,0,0.8660256,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.7933533,0,-0.6087615,0.8660254,0,-0.4999999,0.7933533,0,-0.6087615,0.8660254,0,-0.4999999,0.7933533,0,-0.6087615,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.2588193,0,-0.9659257,0.8660254,0,-0.4999999,0.7933533,0,-0.6087615,0.8660254,0,-0.4999999,0.7933533,0,-0.6087615,0.8660254,0,-0.4999999,0.7933533,0,-0.6087615,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.6087615,0,-0.7933533,0.6087615,0,-0.7933533,0.6087615,0,-0.7933533,0.7071068,0,-0.7071068,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,0.7933533,0,-0.6087615,0.7071068,0,-0.7071068,0.7933533,0,-0.6087615,0.7071068,0,-0.7071068,0.7933533,0,-0.6087615,0.7071068,0,-0.7071068,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.3826834,0,0.9238795,-0.8660256,0,0.4999998,-0.7933533,0,0.6087615,-0.8660256,0,0.4999998,-0.7933533,0,0.6087615,-0.8660256,0,0.4999998,-0.7933533,0,0.6087615,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.3826834,0,-0.9238795,0.6087615,0,-0.7933533,0.6087615,0,-0.7933533,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.6087615,0,-0.7933533,-0.6087615,0,0.7933533,-0.6087615,0,0.7933533,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.6087615,0,0.7933533,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.6087615,0,0.7933533,-0.6087615,0,0.7933533,-0.6087615,0,0.7933533,-0.4999998,0,0.8660256,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.06540313,0,0.9978589,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.2588191,0,0.9659258,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,0.7933533,0,-0.6087615,0.7071068,0,-0.7071068,0.7933533,0,-0.6087615,0.7071068,0,-0.7071068,0.7933533,0,-0.6087615,0.7071068,0,-0.7071068,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.0654031,0,-0.9978589,0.0654031,0,-0.9978589,0.0654031,0,-0.9978589,0.1305262,0,-0.9914449,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.4999999,0,-0.8660254,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.1305261,0,0.9914449,-0.7933533,0,0.6087615,-0.7071068,0,0.7071068,-0.7933533,0,0.6087615,-0.7071068,0,0.7071068,-0.7933533,0,0.6087615,-0.7071068,0,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *720 { + a: -8.317806,2.445076,-12.86024,2.445076,-8.317806,4.89015,-12.86024,4.89015,-11.02992,2.445076,-15.57235,2.445076,-11.02992,4.89015,-15.57235,4.89015,-7.00864,2.445076,-7.00864,4.89015,-2.332828,2.445076,-2.332828,4.89015,-13.51445,2.445076,-18.05688,2.445076,-13.51445,4.89015,-18.05688,4.89015,0.7053686,2.445076,-3.837059,2.445076,0.7053686,4.89015,-3.837059,4.89015,-2.399524,2.445076,-6.941952,2.445076,-2.399524,4.89015,-6.941952,4.89015,18.12357,2.445076,13.44776,2.445076,18.12357,4.89015,13.44776,4.89015,15.63904,2.445076,10.96323,2.445076,15.63904,4.89015,10.96323,4.89015,12.92692,2.445076,8.251117,2.445076,12.92692,4.89015,8.251117,4.89015,10.03361,2.445076,5.357806,2.445076,10.03361,4.89015,5.357806,4.89015,-10.03361,2.445076,-10.03361,4.89015,-5.357806,2.445076,-5.357806,4.89015,15.57235,4.89015,15.57235,2.445076,11.02992,4.89015,11.02992,2.445076,-3.903752,2.445076,-3.903752,4.89015,0.7720557,2.445076,0.7720557,4.89015,-5.424497,2.445076,-9.966925,2.445076,-5.424497,4.89015,-9.966925,4.89015,-15.63904,2.445076,-15.63904,4.89015,-10.96323,2.445076,-10.96323,4.89015,3.903752,2.445076,-0.7720557,2.445076,3.903752,4.89015,-0.7720557,4.89015,-18.12357,2.445076,-18.12357,4.89015,-13.44776,2.445076,-13.44776,4.89015,7.00864,2.445076,2.332828,2.445076,7.00864,4.89015,2.332828,4.89015,12.86024,4.89015,12.86024,2.445076,8.317806,4.89015,8.317806,2.445076,6.941952,11.13868,6.941952,8.693603,2.399524,11.13868,2.399524,8.693603,-11.02992,8.693603,-15.57235,8.693603,-11.02992,11.13868,-15.57235,11.13868,6.941952,4.89015,6.941952,2.445076,2.399524,4.89015,2.399524,2.445076,0.7053686,8.693603,-3.837059,8.693603,0.7053686,11.13868,-3.837059,11.13868,-12.92692,8.693603,-12.92692,11.13868,-8.251117,8.693603,-8.251117,11.13868,3.837059,11.13868,3.837059,8.693603,-0.7053686,11.13868,-0.7053686,8.693603,-10.03361,8.693603,-10.03361,11.13868,-5.357806,8.693603,-5.357806,11.13868,9.966925,11.13868,9.966925,8.693603,5.424497,11.13868,5.424497,8.693603,9.966925,4.89015,9.966925,2.445076,5.424497,4.89015,5.424497,2.445076,18.05688,11.13868,18.05688,8.693603,13.51445,11.13868,13.51445,8.693603,18.05688,4.89015,18.05688,2.445076,13.51445,4.89015,13.51445,2.445076,12.86024,11.13868,12.86024,8.693603,8.317806,11.13868,8.317806,8.693603,10.03361,8.693603,5.357806,8.693603,10.03361,11.13868,5.357806,11.13868,-7.00864,8.693603,-7.00864,11.13868,-2.332828,8.693603,-2.332828,11.13868,-8.317806,8.693603,-12.86024,8.693603,-8.317806,11.13868,-12.86024,11.13868,-2.399524,8.693603,-6.941952,8.693603,-2.399524,11.13868,-6.941952,11.13868,3.903752,8.693603,-0.7720557,8.693603,3.903752,11.13868,-0.7720557,11.13868,15.57235,11.13868,15.57235,8.693603,11.02992,11.13868,11.02992,8.693603,7.00864,8.693603,2.332828,8.693603,7.00864,11.13868,2.332828,11.13868,18.12357,8.693603,13.44776,8.693603,18.12357,11.13868,13.44776,11.13868,12.92692,8.693603,8.251117,8.693603,12.92692,11.13868,8.251117,11.13868,-18.12357,8.693603,-18.12357,11.13868,-13.44776,8.693603,-13.44776,11.13868,3.837059,4.89015,3.837059,2.445076,-0.7053686,4.89015,-0.7053686,2.445076,-12.92692,2.445076,-12.92692,4.89015,-8.251117,2.445076,-8.251117,4.89015,-13.51445,8.693603,-18.05688,8.693603,-13.51445,11.13868,-18.05688,11.13868,-5.424497,8.693603,-9.966925,8.693603,-5.424497,11.13868,-9.966925,11.13868,-15.63904,8.693603,-15.63904,11.13868,-10.96323,8.693603,-10.96323,11.13868,15.63904,8.693603,10.96323,8.693603,15.63904,11.13868,10.96323,11.13868,-3.903752,8.693603,-3.903752,11.13868,0.7720557,8.693603,0.7720557,11.13868,19.68504,-4.118762E-14,16.92913,-4.118762E-14,19.68504,13.58375,16.92913,13.58375,16.92913,-19.68504,16.92913,-16.92913,19.68504,-19.68504,19.68504,-16.92913,-16.92913,13.58375,-16.92913,4.118762E-14,-19.68504,13.58375,-19.68504,4.118762E-14,-19.68504,0,-17.79725,2.445076,-16.92913,0,-16.92913,13.58375,-17.79725,4.89015,-17.79725,8.693603,-18.81693,4.89015,-17.79725,11.13868,-18.81693,11.13868,-18.81693,2.445076,-19.68504,13.58375,-18.81693,8.693603,-19.68504,-8.237525E-14,-19.68504,13.58375,-16.92913,-8.237525E-14,-16.92913,13.58375,-16.92913,0,-19.68504,0,-16.92913,13.58375,-19.68504,13.58375,-19.68504,16.92913,-19.68504,19.68504,-16.92913,16.92913,-16.92913,19.68504,-16.92913,17.79725,-16.92913,18.81693,-12.39643,17.50015,-12.26334,18.51112,-7.941288,16.61397,-7.677369,17.59891,-3.639925,15.15385,-3.249709,16.09592,0.4340551,13.14479,0.9438973,14.02787,4.210945,10.62115,4.831693,11.43013,7.626122,7.626122,8.34715,8.34715,10.62115,4.210945,11.43013,4.831693,13.14479,0.4340551,14.02787,0.9438973,15.15385,-3.639925,16.09592,-3.249709,16.61397,-7.941288,17.59891,-7.677369,17.50015,-12.39643,17.79725,-16.92913,18.51112,-12.26334,18.81693,-16.92913,16.92913,13.58375,17.79725,2.445076,16.92913,0,19.68504,0,18.81693,2.445076,18.81693,4.89015,18.81693,8.693603,18.81693,11.13868,17.79725,11.13868,19.68504,13.58375,17.79725,4.89015,17.79725,8.693603,-16.92913,-16.92913,-16.92913,-19.68504,-19.68504,-16.92913,-19.68504,-19.68504,19.68504,16.92913,16.92913,16.92913,19.68504,19.68504,16.92913,19.68504,19.68504,-1.647505E-13,16.92913,-1.647505E-13,19.68504,13.58375,16.92913,13.58375,19.68504,13.58375,19.68504,0,16.92913,13.58375,16.92913,0,16.92913,18.81693,16.92913,17.79725,12.26334,18.51112,12.39643,17.50015,7.941288,16.61397,7.677369,17.59891,3.639925,15.15385,3.249709,16.09592,-0.4340551,13.14479,-0.9438973,14.02787,-4.210945,10.62115,-4.831693,11.43013,-7.626122,7.626122,-8.34715,8.34715,-10.62115,4.210945,-11.43013,4.831693,-13.14479,0.4340551,-14.02787,0.9438973,-15.15385,-3.639925,-16.09592,-3.249709,-16.61397,-7.941288,-17.59891,-7.677369,-17.50015,-12.39643,-17.79725,-16.92913,-18.51112,-12.26334,-18.81693,-16.92913,16.92913,18.81693,16.92913,17.79725,12.26334,18.51112,12.39643,17.50015,7.941288,16.61397,7.677369,17.59891,3.639925,15.15385,3.249709,16.09592,-0.4340551,13.14479,-0.9438973,14.02787,-4.210945,10.62115,-4.831693,11.43013,-7.626122,7.626122,-8.34715,8.34715,-10.62115,4.210945,-11.43013,4.831693,-13.14479,0.4340551,-14.02787,0.9438973,-15.15385,-3.639925,-16.09592,-3.249709,-16.61397,-7.941288,-17.59891,-7.677369,-17.50015,-12.39643,-17.79725,-16.92913,-18.51112,-12.26334,-18.81693,-16.92913,-16.92913,17.79725,-16.92913,18.81693,-12.39643,17.50015,-12.26334,18.51112,-7.941288,16.61397,-7.677369,17.59891,-3.639925,15.15385,-3.249709,16.09592,0.4340551,13.14479,0.9438973,14.02787,4.210945,10.62115,4.831693,11.43013,7.626122,7.626122,8.34715,8.34715,10.62115,4.210945,11.43013,4.831693,13.14479,0.4340551,14.02787,0.9438973,15.15385,-3.639925,16.09592,-3.249709,16.61397,-7.941288,17.59891,-7.677369,17.50015,-12.39643,17.79725,-16.92913,18.51112,-12.26334,18.81693,-16.92913 + } + UVIndex: *720 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,205,207,209,208,207,210,208,209,211,209,207,212,211,207,205,213,204,214,204,213,210,214,213,207,214,212,215,214,210,209,215,210,212,214,215,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,231,230,233,231,232,234,233,232,235,233,234,236,235,234,237,235,236,238,237,236,239,237,238,240,239,238,241,239,240,242,241,240,243,241,242,244,243,242,245,243,244,246,245,244,247,245,246,248,247,246,249,247,248,250,249,248,251,249,250,252,249,251,253,252,251,254,256,255,257,255,256,258,255,257,259,258,257,260,259,257,261,260,257,255,262,254,263,254,262,261,263,262,257,263,261,264,262,255,265,262,264,264,259,265,260,265,259,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,284,283,285,283,284,286,285,284,287,286,284,288,286,287,289,288,287,290,288,289,291,290,289,292,290,291,293,292,291,294,292,293,295,294,293,296,294,295,297,296,295,298,296,297,299,298,297,300,298,299,301,300,299,302,300,301,303,302,301,304,302,303,305,304,303,306,305,303,307,305,306,308,310,309,311,309,310,312,311,310,313,312,310,314,312,313,315,314,313,316,314,315,317,316,315,318,316,317,319,318,317,320,318,319,321,320,319,322,320,321,323,322,321,324,322,323,325,324,323,326,324,325,327,326,325,328,326,327,329,328,327,330,328,329,331,330,329,332,331,329,333,331,332,334,336,335,337,335,336,338,337,336,339,337,338,340,339,338,341,339,340,342,341,340,343,341,342,344,343,342,345,343,344,346,345,344,347,345,346,348,347,346,349,347,348,350,349,348,351,349,350,352,351,350,353,351,352,354,353,352,355,353,354,356,355,354,357,355,356,358,355,357,359,358,357 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *240 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_bend, Model::RootNode + C: "OO",5377672314118621049,0 + + ;Geometry::, Model::Mesh fence_bend + C: "OO",5422830428098244120,5377672314118621049 + + ;Material::woodDark, Model::Mesh fence_bend + C: "OO",3052,5377672314118621049 + + ;Material::wood, Model::Mesh fence_bend + C: "OO",3044,5377672314118621049 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_bend.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_bend.fbx.import new file mode 100644 index 0000000..f6d6e5d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_bend.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dvvd7cta5yuv0" +path="res://.godot/imported/fence_bend.fbx-f79a6a7d3e811b3f77b8cd9162d5f325.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_bend.fbx" +dest_files=["res://.godot/imported/fence_bend.fbx-f79a6a7d3e811b3f77b8cd9162d5f325.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_bendCenter.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_bendCenter.fbx new file mode 100644 index 0000000..70840f0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_bendCenter.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 20 + Millisecond: 383 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_bendCenter.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_bendCenter.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5057671842315212274, "Model::fence_bendCenter", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4930364754964963214, "Geometry::", "Mesh" { + Vertices: *1326 { + a: 2.017087,0.6210492,4.219949,3.148693,0.6210492,4.445039,2.017087,1.242098,4.219949,3.148693,1.242098,4.445039,-4.219949,1.242098,-2.017087,-4.219949,0.6210492,-2.017087,-3.849079,1.242098,-0.924541,-3.849079,0.6210492,-0.924541,1.950052,0.6210492,4.470123,0.8254261,0.6210492,4.088364,1.950052,1.242098,4.470123,0.8254261,1.242098,4.088364,-4.470123,2.208175,-1.950052,-4.470123,2.829224,-1.950052,-4.088364,2.208175,-0.8254261,-4.088364,2.829224,-0.8254261,-0.2397499,0.6210492,3.563078,-1.22725,0.6210492,2.903252,-0.2397499,1.242098,3.563078,-1.22725,1.242098,2.903252,-3.338777,1.242098,0.11025,-3.338777,0.6210492,0.11025,-2.697773,1.242098,1.06958,-2.697773,0.6210492,1.06958,-3.563078,2.208175,0.2397499,-3.563078,2.829224,0.2397499,-2.903252,2.208175,1.22725,-2.903252,2.829224,1.22725,-1.22725,0.6210492,2.903252,-1.829605,0.6210492,2.375,-1.22725,1.242098,2.903252,-1.829605,1.242098,2.375,-3.849079,1.242098,-0.924541,-3.849079,0.6210492,-0.924541,-3.338777,1.242098,0.11025,-3.338777,0.6210492,0.11025,0.8254261,2.208175,4.088364,-0.2397499,2.208175,3.563078,0.8254261,2.829224,4.088364,-0.2397499,2.829224,3.563078,-4.445039,2.829224,-3.148693,-4.445039,2.208175,-3.148693,-4.219949,2.829224,-2.017087,-4.219949,2.208175,-2.017087,2.017087,2.208175,4.219949,3.148693,2.208175,4.445039,2.017087,2.829224,4.219949,3.148693,2.829224,4.445039,-1.06958,2.208175,2.697773,-0.11025,2.208175,3.338777,-1.06958,2.829224,2.697773,-0.11025,2.829224,3.338777,-4.088364,0.6210492,-0.8254261,-4.088364,1.242098,-0.8254261,-3.563078,0.6210492,0.2397499,-3.563078,1.242098,0.2397499,-4.701823,0.6210492,-3.114887,-4.701823,1.242098,-3.114887,-4.470123,0.6210492,-1.950052,-4.470123,1.242098,-1.950052,-1.675,0.6210492,2.166834,-1.06958,0.6210492,2.697773,-1.675,1.242098,2.166834,-1.06958,1.242098,2.697773,1.950052,2.208175,4.470123,0.8254261,2.208175,4.088364,1.950052,2.829224,4.470123,0.8254261,2.829224,4.088364,-0.2397499,2.208175,3.563078,-1.22725,2.208175,2.903252,-0.2397499,2.829224,3.563078,-1.22725,2.829224,2.903252,-3.849079,2.829224,-0.924541,-3.849079,2.208175,-0.924541,-3.338777,2.829224,0.11025,-3.338777,2.208175,0.11025,3.148693,2.208175,4.445039,4.3,2.208175,4.5205,3.148693,2.829224,4.445039,4.3,2.829224,4.5205,4.3,2.208175,4.7795,3.114887,2.208175,4.701823,4.3,2.829224,4.7795,3.114887,2.829224,4.701823,3.114887,0.6210492,4.701823,1.950052,0.6210492,4.470123,3.114887,1.242098,4.701823,1.950052,1.242098,4.470123,0.924541,0.6210492,3.849079,2.017087,0.6210492,4.219949,0.924541,1.242098,3.849079,2.017087,1.242098,4.219949,-4.7795,0.6210492,-4.3,-4.7795,1.242098,-4.3,-4.701823,0.6210492,-3.114887,-4.701823,1.242098,-3.114887,-4.470123,0.6210492,-1.950052,-4.470123,1.242098,-1.950052,-4.088364,0.6210492,-0.8254261,-4.088364,1.242098,-0.8254261,-4.219949,2.829224,-2.017087,-4.219949,2.208175,-2.017087,-3.849079,2.829224,-0.924541,-3.849079,2.208175,-0.924541,-4.701823,2.208175,-3.114887,-4.701823,2.829224,-3.114887,-4.470123,2.208175,-1.950052,-4.470123,2.829224,-1.950052,0.924541,2.208175,3.849079,2.017087,2.208175,4.219949,0.924541,2.829224,3.849079,2.017087,2.829224,4.219949,0.8254261,0.6210492,4.088364,-0.2397499,0.6210492,3.563078,0.8254261,1.242098,4.088364,-0.2397499,1.242098,3.563078,-4.445039,1.242098,-3.148693,-4.445039,0.6210492,-3.148693,-4.219949,1.242098,-2.017087,-4.219949,0.6210492,-2.017087,-4.088364,2.208175,-0.8254261,-4.088364,2.829224,-0.8254261,-3.563078,2.208175,0.2397499,-3.563078,2.829224,0.2397499,-3.563078,0.6210492,0.2397499,-3.563078,1.242098,0.2397499,-2.903252,0.6210492,1.22725,-2.903252,1.242098,1.22725,3.114887,2.208175,4.701823,1.950052,2.208175,4.470123,3.114887,2.829224,4.701823,1.950052,2.829224,4.470123,3.148693,0.6210492,4.445039,4.3,0.6210492,4.5205,3.148693,1.242098,4.445039,4.3,1.242098,4.5205,-3.338777,2.829224,0.11025,-3.338777,2.208175,0.11025,-2.697773,2.829224,1.06958,-2.697773,2.208175,1.06958,-4.5205,2.829224,-4.3,-4.5205,2.208175,-4.3,-4.445039,2.829224,-3.148693,-4.445039,2.208175,-3.148693,-0.11025,0.6210492,3.338777,0.924541,0.6210492,3.849079,-0.11025,1.242098,3.338777,0.924541,1.242098,3.849079,-4.5205,1.242098,-4.3,-4.5205,0.6210492,-4.3,-4.445039,1.242098,-3.148693,-4.445039,0.6210492,-3.148693,-2.697773,2.829224,1.06958,-2.697773,2.208175,1.06958,-2.166834,2.829224,1.675,-2.166834,2.208175,1.675,-1.06958,0.6210492,2.697773,-0.11025,0.6210492,3.338777,-1.06958,1.242098,2.697773,-0.11025,1.242098,3.338777,4.3,0.6210492,4.7795,3.114887,0.6210492,4.701823,4.3,1.242098,4.7795,3.114887,1.242098,4.701823,-4.7795,2.208175,-4.3,-4.7795,2.829224,-4.3,-4.701823,2.208175,-3.114887,-4.701823,2.829224,-3.114887,-0.11025,2.208175,3.338777,0.924541,2.208175,3.849079,-0.11025,2.829224,3.338777,0.924541,2.829224,3.849079,-2.903252,0.6210492,1.22725,-2.903252,1.242098,1.22725,-2.375,0.6210492,1.829605,-2.375,1.242098,1.829605,-1.675,2.208175,2.166834,-1.06958,2.208175,2.697773,-1.675,2.829224,2.166834,-1.06958,2.829224,2.697773,-2.697773,1.242098,1.06958,-2.697773,0.6210492,1.06958,-2.166834,1.242098,1.675,-2.166834,0.6210492,1.675,-1.22725,2.208175,2.903252,-1.829605,2.208175,2.375,-1.22725,2.829224,2.903252,-1.829605,2.829224,2.375,-2.903252,2.208175,1.22725,-2.903252,2.829224,1.22725,-2.375,2.208175,1.829605,-2.375,2.829224,1.829605,-1.22725,2.208175,2.903252,-1.675,2.208175,2.375,-1.829605,2.208175,2.375,-1.675,2.208175,2.166834,-1.06958,2.208175,2.697773,-0.2397499,2.208175,3.563078,-0.11025,2.208175,3.338777,0.8254261,2.208175,4.088364,0.924541,2.208175,3.849079,1.950052,2.208175,4.470123,2.017087,2.208175,4.219949,3.114887,2.208175,4.701823,3.148693,2.208175,4.445039,4.3,2.208175,4.5205,4.3,2.208175,4.7795,4.3,1.242098,4.5205,4.3,1.242098,4.7795,3.148693,1.242098,4.445039,3.114887,1.242098,4.701823,2.017087,1.242098,4.219949,1.950052,1.242098,4.470123,0.924541,1.242098,3.849079,0.8254261,1.242098,4.088364,-0.11025,1.242098,3.338777,-0.2397499,1.242098,3.563078,-1.06958,1.242098,2.697773,-1.22725,1.242098,2.903252,-1.675,1.242098,2.166834,-1.675,1.242098,2.375,-1.829605,1.242098,2.375,-1.22725,0.6210492,2.903252,-1.675,0.6210492,2.375,-1.829605,0.6210492,2.375,-1.675,0.6210492,2.166834,-1.06958,0.6210492,2.697773,-0.2397499,0.6210492,3.563078,-0.11025,0.6210492,3.338777,0.8254261,0.6210492,4.088364,0.924541,0.6210492,3.849079,1.950052,0.6210492,4.470123,2.017087,0.6210492,4.219949,3.114887,0.6210492,4.701823,3.148693,0.6210492,4.445039,4.3,0.6210492,4.5205,4.3,0.6210492,4.7795,-4.3,0,-4.3,-4.3,0,-5,-5,0,-4.3,-5,0,-5,-2.166834,2.829224,1.675,-2.375,2.829224,1.675,-2.697773,2.829224,1.06958,-2.375,2.829224,1.829605,-2.903252,2.829224,1.22725,-3.338777,2.829224,0.11025,-3.563078,2.829224,0.2397499,-3.849079,2.829224,-0.924541,-4.088364,2.829224,-0.8254261,-4.219949,2.829224,-2.017087,-4.470123,2.829224,-1.950052,-4.445039,2.829224,-3.148693,-4.5205,2.829224,-4.3,-4.701823,2.829224,-3.114887,-4.7795,2.829224,-4.3,-5,0,-5,-4.3,0,-5,-5,3.450273,-5,-4.3,3.450273,-5,5,0,5,5,0,4.3,4.3,0,5,4.3,0,4.3,4.3,0,4.7795,4.3,0,4.5205,-2.375,1.242098,1.675,-2.166834,1.242098,1.675,-2.375,2.208175,1.675,-2.166834,2.208175,1.675,-1.675,3.450273,1.675,-2.166834,0.6210492,1.675,-1.675,0,1.675,-2.375,0.6210492,1.675,-2.375,0,1.675,-2.166834,2.829224,1.675,-2.375,3.450273,1.675,-2.375,2.829224,1.675,4.3,0,4.3,5,0,4.3,4.3,3.450273,4.3,5,3.450273,4.3,-5,3.450273,-5,-5,3.450273,-4.3,-5,0,-5,-5,0,-4.3,5,0,5,4.3,0,5,5,3.450273,5,4.3,3.450273,5,-1.675,3.450273,1.675,-1.675,3.450273,2.375,-2.375,3.450273,1.675,-2.375,3.450273,2.375,-2.375,2.208175,1.829605,-2.375,2.208175,1.675,-2.903252,2.208175,1.22725,-2.697773,2.208175,1.06958,-3.338777,2.208175,0.11025,-3.563078,2.208175,0.2397499,-3.849079,2.208175,-0.924541,-4.088364,2.208175,-0.8254261,-4.219949,2.208175,-2.017087,-4.470123,2.208175,-1.950052,-4.445039,2.208175,-3.148693,-4.5205,2.208175,-4.3,-4.701823,2.208175,-3.114887,-4.7795,2.208175,-4.3,-2.166834,2.208175,1.675,-2.166834,1.242098,1.675,-2.375,1.242098,1.675,-2.697773,1.242098,1.06958,-2.375,1.242098,1.829605,-2.903252,1.242098,1.22725,-3.338777,1.242098,0.11025,-3.563078,1.242098,0.2397499,-3.849079,1.242098,-0.924541,-4.088364,1.242098,-0.8254261,-4.219949,1.242098,-2.017087,-4.470123,1.242098,-1.950052,-4.445039,1.242098,-3.148693,-4.5205,1.242098,-4.3,-4.701823,1.242098,-3.114887,-4.7795,1.242098,-4.3,-1.675,0,1.675,-1.675,2.829224,2.166834,-1.675,3.450273,1.675,-1.675,3.450273,2.375,-1.675,2.829224,2.375,-1.675,0.6210492,2.166834,-1.675,0,2.375,-1.675,2.208175,2.166834,-1.675,1.242098,2.166834,-1.675,0.6210492,2.375,-1.675,2.208175,2.375,-1.675,1.242098,2.375,4.3,1.242098,4.5205,4.3,2.208175,4.5205,4.3,1.242098,4.7795,4.3,2.208175,4.7795,4.3,0,5,4.3,0.6210492,4.7795,4.3,0,4.7795,4.3,0.6210492,4.5205,4.3,0,4.5205,4.3,2.829224,4.7795,4.3,2.829224,4.5205,4.3,3.450273,4.3,4.3,0,4.3,4.3,3.450273,5,-1.675,1.242098,2.375,-1.829605,1.242098,2.375,-1.675,2.208175,2.375,-1.829605,2.208175,2.375,-2.375,3.450273,2.375,-1.829605,0.6210492,2.375,-2.375,0,2.375,-1.675,0.6210492,2.375,-1.675,0,2.375,-1.829605,2.829224,2.375,-1.675,3.450273,2.375,-1.675,2.829224,2.375,-5,0,-4.3,-4.5205,0.6210492,-4.3,-4.3,0,-4.3,-4.3,3.450273,-4.3,-4.5205,1.242098,-4.3,-4.5205,2.208175,-4.3,-4.7795,1.242098,-4.3,-4.5205,2.829224,-4.3,-4.7795,2.829224,-4.3,-4.7795,0.6210492,-4.3,-5,3.450273,-4.3,-4.7795,2.208175,-4.3,5,3.450273,4.3,5,3.450273,5,4.3,3.450273,4.3,4.3,3.450273,5,4.3,2.829224,4.5205,4.3,2.829224,4.7795,3.148693,2.829224,4.445039,3.114887,2.829224,4.701823,2.017087,2.829224,4.219949,1.950052,2.829224,4.470123,0.924541,2.829224,3.849079,0.8254261,2.829224,4.088364,-0.11025,2.829224,3.338777,-0.2397499,2.829224,3.563078,-1.06958,2.829224,2.697773,-1.22725,2.829224,2.903252,-1.675,2.829224,2.166834,-1.675,2.829224,2.375,-1.829605,2.829224,2.375,-4.3,3.450273,-5,-4.3,0,-5,-4.3,3.450273,-4.3,-4.3,0,-4.3,5,3.450273,4.3,5,0,4.3,5,3.450273,5,5,0,5,-2.375,0,1.675,-2.375,0.6210492,1.675,-2.375,0,1.8955,-2.375,0.6210492,1.829605,-2.375,1.242098,1.829605,-2.375,2.208175,1.829605,-2.375,2.829224,1.829605,-2.375,3.450273,2.375,-2.375,3.450273,1.675,-2.375,2.829224,1.675,-2.375,0,2.375,-2.375,2.208175,1.675,-2.375,1.242098,1.675,-2.375,0.6210492,1.829605,-2.375,0.6210492,1.675,-2.903252,0.6210492,1.22725,-2.697773,0.6210492,1.06958,-3.338777,0.6210492,0.11025,-3.563078,0.6210492,0.2397499,-3.849079,0.6210492,-0.924541,-4.088364,0.6210492,-0.8254261,-4.219949,0.6210492,-2.017087,-4.470123,0.6210492,-1.950052,-4.445039,0.6210492,-3.148693,-4.5205,0.6210492,-4.3,-4.701823,0.6210492,-3.114887,-4.7795,0.6210492,-4.3,-2.166834,0.6210492,1.675,-4.3,3.450273,-5,-4.3,3.450273,-4.3,-5,3.450273,-5,-5,3.450273,-4.3,-1.675,0,2.375,-1.675,0,1.675,-2.375,0,2.375,-2.375,0,1.675,-2.375,0,2.375,-1.675,0,1.675,-2.375,0,1.8955,-2.375,0,2.375,-2.375,0,1.675 + } + PolygonVertexIndex: *894 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,193,195,-193,195,196,-193,192,196,-198,196,198,-198,197,198,-200,198,200,-200,199,200,-202,200,202,-202,201,202,-204,202,204,-204,204,205,-204,206,203,-206,207,209,-209,210,208,-210,211,210,-210,212,210,-212,213,212,-212,214,212,-214,215,214,-214,216,214,-216,217,216,-216,218,216,-218,219,218,-218,220,218,-220,221,218,-221,222,224,-224,223,225,-223,225,226,-223,222,226,-228,226,228,-228,227,228,-230,228,230,-230,229,230,-232,230,232,-232,231,232,-234,232,234,-234,234,235,-234,236,233,-236,237,239,-239,240,238,-240,241,243,-243,244,242,-244,245,244,-244,246,245,-244,247,245,-247,248,247,-247,249,247,-249,250,249,-249,251,249,-251,252,251,-251,253,251,-253,254,251,-254,255,254,-254,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,263,-263,265,263,-265,266,268,-268,268,269,-268,269,270,-268,267,270,-272,270,272,-272,271,272,-274,274,273,-273,275,270,-270,276,270,-276,277,276,-276,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,297,-297,299,298,-297,300,298,-300,301,300,-300,302,300,-302,303,302,-302,304,302,-304,305,304,-304,306,305,-304,307,305,-307,295,297,-309,309,311,-311,312,310,-312,313,312,-312,314,313,-312,315,313,-315,316,315,-315,317,315,-317,318,317,-317,319,317,-319,320,319,-319,321,319,-321,322,319,-322,323,322,-322,324,326,-326,327,325,-327,328,325,-328,325,329,-325,330,324,-330,331,329,-326,332,329,-332,333,330,-330,331,334,-333,335,332,-335,336,338,-338,339,337,-339,339,338,-341,338,341,-341,342,340,-342,341,343,-343,344,342,-344,345,339,-341,343,346,-345,336,346,-344,337,346,-337,346,347,-345,348,344,-348,349,347,-347,345,349,-347,340,349,-346,350,352,-352,352,353,-352,353,354,-352,351,354,-356,354,356,-356,355,356,-358,358,357,-357,359,354,-354,360,354,-360,361,360,-360,362,364,-364,365,363,-365,366,363,-366,367,366,-366,368,366,-368,369,367,-366,370,369,-366,363,371,-363,372,362,-372,368,372,-372,365,372,-371,373,372,-369,367,373,-369,370,372,-374,374,376,-376,377,375,-377,378,380,-380,381,379,-381,382,381,-381,383,381,-383,384,383,-383,385,383,-385,386,385,-385,387,385,-387,388,387,-387,389,387,-389,390,389,-389,391,389,-391,392,389,-392,393,395,-395,396,394,-396,397,399,-399,400,398,-400,401,403,-403,404,402,-404,405,404,-404,406,405,-404,407,406,-404,403,408,-408,408,409,-408,410,407,-410,411,408,-404,406,412,-406,413,405,-413,414,416,-416,417,415,-417,418,417,-417,419,418,-417,420,418,-420,421,420,-420,422,420,-422,423,422,-422,424,422,-424,425,424,-424,426,425,-424,427,425,-427,415,417,-429,429,431,-431,432,430,-432,433,435,-435,436,438,-438,439,441,-441 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2682 { + a: 0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.2588193,0,-0.9659257,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.2588191,0,0.9659258,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.6087616,0,0.7933532,-0.6087616,0,0.7933532,-0.6087616,0,0.7933532,-0.4999998,0,0.8660256,0.8660254,0,-0.4999999,0.7933533,0,-0.6087614,0.8660254,0,-0.4999999,0.7933533,0,-0.6087614,0.8660254,0,-0.4999999,0.7933533,0,-0.6087614,-0.8660256,0,0.4999998,-0.7933532,0,0.6087616,-0.8660256,0,0.4999998,-0.7933532,0,0.6087616,-0.8660256,0,0.4999998,-0.7933532,0,0.6087616,-0.6087616,0,0.7933532,-0.6087616,0,0.7933532,-0.6593463,0,0.7518393,-0.6593463,0,0.7518393,-0.6593463,0,0.7518393,-0.6087616,0,0.7933532,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.3826834,0,0.9238795,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.2588193,0,-0.9659257,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.6087614,0,-0.7933533,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,0.6593457,0,-0.7518399,0.6593457,0,-0.7518399,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6593457,0,-0.7518399,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.2588191,0,0.9659258,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.6087616,0,0.7933532,-0.6087616,0,0.7933532,-0.6087616,0,0.7933532,-0.4999998,0,0.8660256,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.9238795,0,-0.3826834,0.8660254,0,-0.4999999,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.0654031,0,-0.9978589,0.0654031,0,-0.9978589,0.0654031,0,-0.9978589,0.1305262,0,-0.9914449,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.06540313,0,0.9978589,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.1305261,0,0.9914449,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.3826834,0,-0.9238795,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,-0.9659258,0,0.2588191,-0.9238795,0,0.3826834,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,0.9659257,0,-0.2588193,0.9238795,0,-0.3826834,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,-0.9914449,0,0.1305261,-0.9659258,0,0.2588191,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.2588193,0,-0.9659257,0.3826834,0,-0.9238795,-0.3826834,0,0.9238795,-0.3826834,0,0.9238795,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.4999998,0,0.8660256,-0.3826834,0,0.9238795,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,0.9914449,0,-0.1305262,0.9659257,0,-0.2588193,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.9238795,0,0.3826834,-0.8660256,0,0.4999998,-0.8660256,0,0.4999998,-0.7933532,0,0.6087616,-0.8660256,0,0.4999998,-0.7933532,0,0.6087616,-0.8660256,0,0.4999998,-0.7933532,0,0.6087616,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.2588191,0,0.9659258,-0.1305261,0,0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.0654031,0,-0.9978589,0.0654031,0,-0.9978589,0.0654031,0,-0.9978589,0.1305262,0,-0.9914449,0.8660254,0,-0.4999999,0.7933533,0,-0.6087614,0.8660254,0,-0.4999999,0.7933533,0,-0.6087614,0.8660254,0,-0.4999999,0.7933533,0,-0.6087614,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.4999999,0,-0.8660254,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.9978589,0,-0.0654031,0.9914449,0,-0.1305262,0.7933533,0,-0.6087614,0.7518399,0,-0.6593457,0.7933533,0,-0.6087614,0.7518399,0,-0.6593457,0.7933533,0,-0.6087614,0.7518399,0,-0.6593457,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.6087614,0,-0.7933533,-0.06540313,0,0.9978589,-0.06540313,0,0.9978589,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.1305261,0,0.9914449,-0.06540313,0,0.9978589,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,-0.9978589,0,0.06540313,-0.9914449,0,0.1305261,0.4999999,0,-0.8660254,0.4999999,0,-0.8660254,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.4999999,0,-0.8660254,-0.7933532,0,0.6087616,-0.7518393,0,0.6593463,-0.7933532,0,0.6087616,-0.7518393,0,0.6593463,-0.7933532,0,0.6087616,-0.7518393,0,0.6593463,0.6593457,0,-0.7518399,0.6593457,0,-0.7518399,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6593457,0,-0.7518399,0.7933533,0,-0.6087614,0.7518399,0,-0.6593457,0.7933533,0,-0.6087614,0.7518399,0,-0.6593457,0.7933533,0,-0.6087614,0.7518399,0,-0.6593457,-0.6087616,0,0.7933532,-0.6087616,0,0.7933532,-0.6593463,0,0.7518393,-0.6593463,0,0.7518393,-0.6593463,0,0.7518393,-0.6087616,0,0.7933532,-0.7933532,0,0.6087616,-0.7518393,0,0.6593463,-0.7933532,0,0.6087616,-0.7518393,0,0.6593463,-0.7933532,0,0.6087616,-0.7518393,0,0.6593463,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *884 { + a: -11.02992,2.445076,-15.57235,2.445076,-11.02992,4.89015,-15.57235,4.89015,12.86024,4.89015,12.86024,2.445076,8.317806,4.89015,8.317806,2.445076,12.92692,2.445076,8.251117,2.445076,12.92692,4.89015,8.251117,4.89015,-12.92692,8.693603,-12.92692,11.13868,-8.251117,8.693603,-8.251117,11.13868,7.00864,2.445076,2.332828,2.445076,7.00864,4.89015,2.332828,4.89015,6.941952,4.89015,6.941952,2.445076,2.399524,4.89015,2.399524,2.445076,-7.00864,8.693603,-7.00864,11.13868,-2.332828,8.693603,-2.332828,11.13868,3.903754,2.445076,0.7495213,2.445076,3.903754,4.89015,0.7495213,4.89015,9.966925,4.89015,9.966925,2.445076,5.424497,4.89015,5.424497,2.445076,10.03361,8.693603,5.357806,8.693603,10.03361,11.13868,5.357806,11.13868,15.57235,11.13868,15.57235,8.693603,11.02992,11.13868,11.02992,8.693603,-11.02992,8.693603,-15.57235,8.693603,-11.02992,11.13868,-15.57235,11.13868,-2.399524,8.693603,-6.941952,8.693603,-2.399524,11.13868,-6.941952,11.13868,-10.03361,2.445076,-10.03361,4.89015,-5.357806,2.445076,-5.357806,4.89015,-15.63904,2.445076,-15.63904,4.89015,-10.96323,2.445076,-10.96323,4.89015,-0.6667759,2.445076,-3.837056,2.445076,-0.6667759,4.89015,-3.837056,4.89015,12.92692,8.693603,8.251117,8.693603,12.92692,11.13868,8.251117,11.13868,7.00864,8.693603,2.332828,8.693603,7.00864,11.13868,2.332828,11.13868,9.966925,11.13868,9.966925,8.693603,5.424497,11.13868,5.424497,8.693603,-13.51445,8.693603,-18.05688,8.693603,-13.51445,11.13868,-18.05688,11.13868,18.12357,8.693603,13.44776,8.693603,18.12357,11.13868,13.44776,11.13868,15.63904,2.445076,10.96323,2.445076,15.63904,4.89015,10.96323,4.89015,-8.317806,2.445076,-12.86024,2.445076,-8.317806,4.89015,-12.86024,4.89015,-18.12357,2.445076,-18.12357,4.89015,-13.44776,2.445076,-13.44776,4.89015,-12.92692,2.445076,-12.92692,4.89015,-8.251117,2.445076,-8.251117,4.89015,12.86024,11.13868,12.86024,8.693603,8.317806,11.13868,8.317806,8.693603,-15.63904,8.693603,-15.63904,11.13868,-10.96323,8.693603,-10.96323,11.13868,-8.317806,8.693603,-12.86024,8.693603,-8.317806,11.13868,-12.86024,11.13868,10.03361,2.445076,5.357806,2.445076,10.03361,4.89015,5.357806,4.89015,15.57235,4.89015,15.57235,2.445076,11.02992,4.89015,11.02992,2.445076,-10.03361,8.693603,-10.03361,11.13868,-5.357806,8.693603,-5.357806,11.13868,-7.00864,2.445076,-7.00864,4.89015,-2.332828,2.445076,-2.332828,4.89015,15.63904,8.693603,10.96323,8.693603,15.63904,11.13868,10.96323,11.13868,-13.51445,2.445076,-18.05688,2.445076,-13.51445,4.89015,-18.05688,4.89015,6.941952,11.13868,6.941952,8.693603,2.399524,11.13868,2.399524,8.693603,18.05688,11.13868,18.05688,8.693603,13.51445,11.13868,13.51445,8.693603,-5.424497,2.445076,-9.966925,2.445076,-5.424497,4.89015,-9.966925,4.89015,18.05688,4.89015,18.05688,2.445076,13.51445,4.89015,13.51445,2.445076,3.837056,11.13868,3.837056,8.693603,0.6667759,11.13868,0.6667759,8.693603,-2.399524,2.445076,-6.941952,2.445076,-2.399524,4.89015,-6.941952,4.89015,18.12357,2.445076,13.44776,2.445076,18.12357,4.89015,13.44776,4.89015,-18.12357,8.693603,-18.12357,11.13868,-13.44776,8.693603,-13.44776,11.13868,-5.424497,8.693603,-9.966925,8.693603,-5.424497,11.13868,-9.966925,11.13868,-3.903754,2.445076,-3.903754,4.89015,-0.7495213,2.445076,-0.7495213,4.89015,-0.6667759,8.693603,-3.837056,8.693603,-0.6667759,11.13868,-3.837056,11.13868,3.837056,4.89015,3.837056,2.445076,0.6667759,4.89015,0.6667759,2.445076,3.903754,8.693603,0.7495213,8.693603,3.903754,11.13868,0.7495213,11.13868,-3.903754,8.693603,-3.903754,11.13868,-0.7495213,8.693603,-0.7495213,11.13868,-4.831693,11.43013,-6.594488,9.350393,-7.20317,9.350393,-6.594488,8.530843,-4.210945,10.62115,-0.9438973,14.02787,-0.4340551,13.14479,3.249709,16.09592,3.639925,15.15385,7.677369,17.59891,7.941288,16.61397,12.26334,18.51112,12.39643,17.50015,16.92913,17.79725,16.92913,18.81693,-16.92913,17.79725,-16.92913,18.81693,-12.39643,17.50015,-12.26334,18.51112,-7.941288,16.61397,-7.677369,17.59891,-3.639925,15.15385,-3.249709,16.09592,0.4340551,13.14479,0.9438973,14.02787,4.210945,10.62115,4.831693,11.43013,6.594488,8.530843,6.594488,9.350393,7.20317,9.350393,-4.831693,11.43013,-6.594488,9.350393,-7.20317,9.350393,-6.594488,8.530843,-4.210945,10.62115,-0.9438973,14.02787,-0.4340551,13.14479,3.249709,16.09592,3.639925,15.15385,7.677369,17.59891,7.941288,16.61397,12.26334,18.51112,12.39643,17.50015,16.92913,17.79725,16.92913,18.81693,-16.92913,-16.92913,-16.92913,-19.68504,-19.68504,-16.92913,-19.68504,-19.68504,8.530843,6.594488,9.350393,6.594488,10.62115,4.210945,9.350393,7.20317,11.43013,4.831693,13.14479,0.4340551,14.02787,0.9438973,15.15385,-3.639925,16.09592,-3.249709,16.61397,-7.941288,17.59891,-7.677369,17.50015,-12.39643,17.79725,-16.92913,18.51112,-12.26334,18.81693,-16.92913,19.68504,4.118762E-14,16.92913,4.118762E-14,19.68504,13.58375,16.92913,13.58375,19.68504,19.68504,19.68504,16.92913,16.92913,19.68504,16.92913,16.92913,16.92913,18.81693,16.92913,17.79725,9.350393,4.89015,8.530843,4.89015,9.350393,8.693603,8.530843,8.693603,6.594488,13.58375,8.530843,2.445076,6.594488,0,9.350393,2.445076,9.350393,0,8.530843,11.13868,9.350393,13.58375,9.350393,11.13868,-16.92913,0,-19.68504,0,-16.92913,13.58375,-19.68504,13.58375,-19.68504,13.58375,-16.92913,13.58375,-19.68504,-4.118762E-14,-16.92913,-4.118762E-14,19.68504,-4.118762E-14,16.92913,-4.118762E-14,19.68504,13.58375,16.92913,13.58375,6.594488,6.594488,6.594488,9.350393,9.350393,6.594488,9.350393,9.350393,-9.350393,7.20317,-9.350393,6.594488,-11.43013,4.831693,-10.62115,4.210945,-13.14479,0.4340551,-14.02787,0.9438973,-15.15385,-3.639925,-16.09592,-3.249709,-16.61397,-7.941288,-17.59891,-7.677369,-17.50015,-12.39643,-17.79725,-16.92913,-18.51112,-12.26334,-18.81693,-16.92913,-8.530843,6.594488,8.530843,6.594488,9.350393,6.594488,10.62115,4.210945,9.350393,7.20317,11.43013,4.831693,13.14479,0.4340551,14.02787,0.9438973,15.15385,-3.639925,16.09592,-3.249709,16.61397,-7.941288,17.59891,-7.677369,17.50015,-12.39643,17.79725,-16.92913,18.51112,-12.26334,18.81693,-16.92913,-6.594488,0,-8.530843,11.13868,-6.594488,13.58375,-9.350393,13.58375,-9.350393,11.13868,-8.530843,2.445076,-9.350393,0,-8.530843,8.693603,-8.530843,4.89015,-9.350393,2.445076,-9.350393,8.693603,-9.350393,4.89015,17.79725,4.89015,17.79725,8.693603,18.81693,4.89015,18.81693,8.693603,19.68504,0,18.81693,2.445076,18.81693,0,17.79725,2.445076,17.79725,0,18.81693,11.13868,17.79725,11.13868,16.92913,13.58375,16.92913,0,19.68504,13.58375,-6.594488,4.89015,-7.20317,4.89015,-6.594488,8.693603,-7.20317,8.693603,-9.350393,13.58375,-7.20317,2.445076,-9.350393,0,-6.594488,2.445076,-6.594488,0,-7.20317,11.13868,-6.594488,13.58375,-6.594488,11.13868,-19.68504,0,-17.79725,2.445076,-16.92913,0,-16.92913,13.58375,-17.79725,4.89015,-17.79725,8.693603,-18.81693,4.89015,-17.79725,11.13868,-18.81693,11.13868,-18.81693,2.445076,-19.68504,13.58375,-18.81693,8.693603,-19.68504,16.92913,-19.68504,19.68504,-16.92913,16.92913,-16.92913,19.68504,-16.92913,17.79725,-16.92913,18.81693,-12.39643,17.50015,-12.26334,18.51112,-7.941288,16.61397,-7.677369,17.59891,-3.639925,15.15385,-3.249709,16.09592,0.4340551,13.14479,0.9438973,14.02787,4.210945,10.62115,4.831693,11.43013,6.594488,8.530843,6.594488,9.350393,7.20317,9.350393,19.68504,13.58375,19.68504,0,16.92913,13.58375,16.92913,0,-16.92913,13.58375,-16.92913,0,-19.68504,13.58375,-19.68504,0,6.594488,0,6.594488,2.445076,7.462598,0,7.20317,2.445076,7.20317,4.89015,7.20317,8.693603,7.20317,11.13868,9.350393,13.58375,6.594488,13.58375,6.594488,11.13868,9.350393,0,6.594488,8.693603,6.594488,4.89015,-9.350393,7.20317,-9.350393,6.594488,-11.43013,4.831693,-10.62115,4.210945,-13.14479,0.4340551,-14.02787,0.9438973,-15.15385,-3.639925,-16.09592,-3.249709,-16.61397,-7.941288,-17.59891,-7.677369,-17.50015,-12.39643,-17.79725,-16.92913,-18.51112,-12.26334,-18.81693,-16.92913,-8.530843,6.594488,16.92913,-19.68504,16.92913,-16.92913,19.68504,-19.68504,19.68504,-16.92913,7.20317,8.693603,7.20317,4.89015,6.594488,8.693603,7.20317,8.693603,7.20317,4.89015,6.594488,8.693603,7.20317,8.693603,7.20317,4.89015,6.594488,8.693603 + } + UVIndex: *894 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,193,195,192,195,196,192,192,196,197,196,198,197,197,198,199,198,200,199,199,200,201,200,202,201,201,202,203,202,204,203,204,205,203,206,203,205,207,209,208,210,208,209,211,210,209,212,210,211,213,212,211,214,212,213,215,214,213,216,214,215,217,216,215,218,216,217,219,218,217,220,218,219,221,218,220,222,224,223,223,225,222,225,226,222,222,226,227,226,228,227,227,228,229,228,230,229,229,230,231,230,232,231,231,232,233,232,234,233,234,235,233,236,233,235,237,239,238,240,238,239,241,243,242,244,242,243,245,244,243,246,245,243,247,245,246,248,247,246,249,247,248,250,249,248,251,249,250,252,251,250,253,251,252,254,251,253,255,254,253,256,258,257,259,257,258,260,262,261,263,261,262,264,263,262,265,263,264,266,268,267,268,269,267,269,270,267,267,270,271,270,272,271,271,272,273,274,273,272,275,270,269,276,270,275,277,276,275,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,297,296,299,298,296,300,298,299,301,300,299,302,300,301,303,302,301,304,302,303,305,304,303,306,305,303,307,305,306,295,297,308,309,311,310,312,310,311,313,312,311,314,313,311,315,313,314,316,315,314,317,315,316,318,317,316,319,317,318,320,319,318,321,319,320,322,319,321,323,322,321,324,326,325,327,325,326,328,325,327,325,329,324,330,324,329,331,329,325,332,329,331,333,330,329,331,334,332,335,332,334,336,338,337,339,337,338,339,338,340,338,341,340,342,340,341,341,343,342,344,342,343,345,339,340,343,346,344,336,346,343,337,346,336,346,347,344,348,344,347,349,347,346,345,349,346,340,349,345,350,352,351,352,353,351,353,354,351,351,354,355,354,356,355,355,356,357,358,357,356,359,354,353,360,354,359,361,360,359,362,364,363,365,363,364,366,363,365,367,366,365,368,366,367,369,367,365,370,369,365,363,371,362,372,362,371,368,372,371,365,372,370,373,372,368,367,373,368,370,372,373,374,376,375,377,375,376,378,380,379,381,379,380,382,381,380,383,381,382,384,383,382,385,383,384,386,385,384,387,385,386,388,387,386,389,387,388,390,389,388,391,389,390,392,389,391,393,395,394,396,394,395,397,399,398,400,398,399,401,403,402,404,402,403,405,404,403,406,405,403,407,406,403,403,408,407,408,409,407,410,407,409,411,408,403,406,412,405,413,405,412,414,416,415,417,415,416,418,417,416,419,418,416,420,418,419,421,420,419,422,420,421,423,422,421,424,422,423,425,424,423,426,425,423,427,425,426,415,417,428,429,431,430,432,430,431,433,435,434,436,438,437,439,441,440 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *298 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_bendCenter, Model::RootNode + C: "OO",5057671842315212274,0 + + ;Geometry::, Model::Mesh fence_bendCenter + C: "OO",4930364754964963214,5057671842315212274 + + ;Material::woodDark, Model::Mesh fence_bendCenter + C: "OO",3052,5057671842315212274 + + ;Material::wood, Model::Mesh fence_bendCenter + C: "OO",3044,5057671842315212274 + + ;Material::_defaultMat, Model::Mesh fence_bendCenter + C: "OO",3004,5057671842315212274 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_bendCenter.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_bendCenter.fbx.import new file mode 100644 index 0000000..808a92b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_bendCenter.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c62wqf7acxb0x" +path="res://.godot/imported/fence_bendCenter.fbx-a3811ded6e3994fb38ab19bb85f5fb52.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_bendCenter.fbx" +dest_files=["res://.godot/imported/fence_bendCenter.fbx-a3811ded6e3994fb38ab19bb85f5fb52.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_corner.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_corner.fbx new file mode 100644 index 0000000..7e8610b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_corner.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 20 + Millisecond: 479 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_corner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_corner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5066696039881491468, "Model::fence_corner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4735496595979196255, "Geometry::", "Mesh" { + Vertices: *504 { + a: -4.5205,2.829224,-4.3,-4.5205,2.208175,-4.3,-4.5205,2.829224,4.3,-4.5205,2.208175,4.3,4.3,0.6210492,4.7795,-4.3,0.6210492,4.7795,4.3,1.242098,4.7795,-4.3,1.242098,4.7795,-4.7795,0.6210492,-4.3,-4.7795,1.242098,-4.3,-4.7795,0.6210492,4.3,-4.7795,1.242098,4.3,-4.7795,2.208175,-4.3,-4.7795,2.829224,-4.3,-4.7795,2.208175,4.3,-4.7795,2.829224,4.3,-4.3,2.208175,4.5205,4.3,2.208175,4.5205,-4.3,2.829224,4.5205,4.3,2.829224,4.5205,-4.5205,1.242098,-4.3,-4.5205,0.6210492,-4.3,-4.5205,1.242098,4.3,-4.5205,0.6210492,4.3,4.3,2.208175,4.7795,-4.3,2.208175,4.7795,4.3,2.829224,4.7795,-4.3,2.829224,4.7795,-4.3,0.6210492,4.5205,4.3,0.6210492,4.5205,-4.3,1.242098,4.5205,4.3,1.242098,4.5205,-4.5205,1.242098,-4.3,-4.5205,1.242098,4.3,-4.7795,1.242098,-4.3,-4.7795,1.242098,4.3,4.3,0.6210492,4.7795,4.3,0.6210492,4.5205,-4.3,0.6210492,4.7795,-4.3,0.6210492,4.5205,-4.3,0,-4.3,-4.3,0,-5,-5,0,-4.3,-5,0,-5,-4.3,0,5,-5,0,5,-4.3,3.450273,5,-5,3.450273,5,-5,0,-5,-4.3,0,-5,-5,3.450273,-5,-4.3,3.450273,-5,4.3,1.242098,4.5205,4.3,2.208175,4.5205,4.3,1.242098,4.7795,4.3,2.208175,4.7795,4.3,0,5,4.3,0.6210492,4.7795,4.3,0.6210492,4.5205,4.3,0,4.3,4.3,3.450273,4.3,4.3,2.829224,4.7795,4.3,2.829224,4.5205,4.3,3.450273,5,-5,0,-4.3,-4.5205,0.6210492,-4.3,-4.3,0,-4.3,-4.3,3.450273,-4.3,-4.5205,1.242098,-4.3,-4.5205,2.208175,-4.3,-4.7795,1.242098,-4.3,-4.5205,2.829224,-4.3,-4.7795,2.829224,-4.3,-4.7795,0.6210492,-4.3,-5,3.450273,-4.3,-4.7795,2.208175,-4.3,4.3,2.208175,4.7795,4.3,2.208175,4.5205,-4.3,2.208175,4.7795,-4.3,2.208175,4.5205,-4.3,3.450273,-5,-4.3,0,-5,-4.3,3.450273,-4.3,-4.3,0,-4.3,5,0,5,5,0,4.3,4.3,0,5,4.3,0,4.3,-5,0,4.3,-5,3.450273,4.3,-5,0,5,-5,3.450273,5,5,3.450273,4.3,5,0,4.3,5,3.450273,5,5,0,5,-4.5205,2.208175,4.3,-4.5205,2.208175,-4.3,-4.7795,2.208175,4.3,-4.7795,2.208175,-4.3,-5,0,-5,-5,3.450273,-5,-5,0,-4.3,-5,3.450273,-4.3,-4.5205,2.829224,-4.3,-4.5205,2.829224,4.3,-4.7795,2.829224,-4.3,-4.7795,2.829224,4.3,-4.3,3.450273,4.3,-4.3,3.450273,5,-5,3.450273,4.3,-5,3.450273,5,5,0,5,4.3,0,5,5,3.450273,5,4.3,3.450273,5,-4.3,0,4.3,-4.3,2.829224,4.5205,-4.3,3.450273,4.3,-4.3,3.450273,5,-4.3,2.829224,4.7795,-4.3,2.208175,4.7795,-4.3,1.242098,4.7795,-4.3,0.6210492,4.7795,-4.3,0.6210492,4.5205,-4.3,0,5,-4.3,2.208175,4.5205,-4.3,1.242098,4.5205,4.3,0,4.3,5,0,4.3,4.3,3.450273,4.3,5,3.450273,4.3,-4.3,0,5,-4.3,0,4.3,-5,0,5,-5,0,4.3,-4.5205,0.6210492,4.3,-4.5205,0.6210492,-4.3,-4.7795,0.6210492,4.3,-4.7795,0.6210492,-4.3,4.3,1.242098,4.5205,4.3,1.242098,4.7795,-4.3,1.242098,4.5205,-4.3,1.242098,4.7795,4.3,2.829224,4.5205,4.3,2.829224,4.7795,-4.3,2.829224,4.5205,-4.3,2.829224,4.7795,-4.3,0,4.3,-4.7795,0.6210492,4.3,-5,0,4.3,-5,3.450273,4.3,-4.7795,1.242098,4.3,-4.7795,2.208175,4.3,-4.5205,1.242098,4.3,-4.7795,2.829224,4.3,-4.5205,2.829224,4.3,-4.5205,0.6210492,4.3,-4.3,3.450273,4.3,-4.5205,2.208175,4.3,5,3.450273,4.3,5,3.450273,5,4.3,3.450273,4.3,4.3,3.450273,5,-4.3,3.450273,-5,-4.3,3.450273,-4.3,-5,3.450273,-5,-5,3.450273,-4.3 + } + PolygonVertexIndex: *348 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,55,54,-57,54,57,-57,57,58,-57,56,58,-60,60,59,-59,61,55,-57,58,62,-61,52,62,-59,53,62,-53,63,60,-63,61,63,-63,56,63,-62,64,66,-66,67,65,-67,68,65,-68,69,68,-68,70,68,-70,71,69,-68,72,71,-68,65,73,-65,74,64,-74,70,74,-74,67,74,-73,75,74,-71,69,75,-71,72,74,-76,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,117,-120,121,120,-120,122,121,-120,123,122,-120,117,124,-117,125,116,-125,123,125,-125,119,125,-124,126,124,-118,127,124,-127,126,121,-128,122,127,-122,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,149,-152,153,152,-152,154,152,-154,155,153,-152,156,155,-152,149,157,-149,158,148,-158,154,158,-158,151,158,-157,159,158,-155,153,159,-155,156,158,-160,160,162,-162,163,161,-163,164,166,-166,167,165,-167 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1044 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *336 { + a: 16.92913,11.13868,16.92913,8.693603,-16.92913,11.13868,-16.92913,8.693603,16.92913,2.445076,-16.92913,2.445076,16.92913,4.89015,-16.92913,4.89015,-16.92913,2.445076,-16.92913,4.89015,16.92913,2.445076,16.92913,4.89015,-16.92913,8.693603,-16.92913,11.13868,16.92913,8.693603,16.92913,11.13868,16.92913,8.693603,-16.92913,8.693603,16.92913,11.13868,-16.92913,11.13868,16.92913,4.89015,16.92913,2.445076,-16.92913,4.89015,-16.92913,2.445076,16.92913,8.693603,-16.92913,8.693603,16.92913,11.13868,-16.92913,11.13868,16.92913,2.445076,-16.92913,2.445076,16.92913,4.89015,-16.92913,4.89015,17.79725,-16.92913,17.79725,16.92913,18.81693,-16.92913,18.81693,16.92913,16.92913,18.81693,16.92913,17.79725,-16.92913,18.81693,-16.92913,17.79725,-16.92913,-16.92913,-16.92913,-19.68504,-19.68504,-16.92913,-19.68504,-19.68504,-16.92913,4.118762E-14,-19.68504,4.118762E-14,-16.92913,13.58375,-19.68504,13.58375,19.68504,0,16.92913,0,19.68504,13.58375,16.92913,13.58375,17.79725,4.89015,17.79725,8.693603,18.81693,4.89015,18.81693,8.693603,19.68504,0,18.81693,2.445076,17.79725,2.445076,16.92913,0,16.92913,13.58375,18.81693,11.13868,17.79725,11.13868,19.68504,13.58375,-19.68504,0,-17.79725,2.445076,-16.92913,0,-16.92913,13.58375,-17.79725,4.89015,-17.79725,8.693603,-18.81693,4.89015,-17.79725,11.13868,-18.81693,11.13868,-18.81693,2.445076,-19.68504,13.58375,-18.81693,8.693603,16.92913,18.81693,16.92913,17.79725,-16.92913,18.81693,-16.92913,17.79725,19.68504,13.58375,19.68504,0,16.92913,13.58375,16.92913,0,19.68504,19.68504,19.68504,16.92913,16.92913,19.68504,16.92913,16.92913,16.92913,-2.059381E-14,16.92913,13.58375,19.68504,-2.059381E-14,19.68504,13.58375,-16.92913,13.58375,-16.92913,0,-19.68504,13.58375,-19.68504,0,-17.79725,16.92913,-17.79725,-16.92913,-18.81693,16.92913,-18.81693,-16.92913,-19.68504,-6.178144E-14,-19.68504,13.58375,-16.92913,-6.178144E-14,-16.92913,13.58375,17.79725,-16.92913,17.79725,16.92913,18.81693,-16.92913,18.81693,16.92913,16.92913,16.92913,16.92913,19.68504,19.68504,16.92913,19.68504,19.68504,19.68504,-1.235629E-13,16.92913,-1.235629E-13,19.68504,13.58375,16.92913,13.58375,-16.92913,0,-17.79725,11.13868,-16.92913,13.58375,-19.68504,13.58375,-18.81693,11.13868,-18.81693,8.693603,-18.81693,4.89015,-18.81693,2.445076,-17.79725,2.445076,-19.68504,0,-17.79725,8.693603,-17.79725,4.89015,-16.92913,0,-19.68504,0,-16.92913,13.58375,-19.68504,13.58375,-16.92913,19.68504,-16.92913,16.92913,-19.68504,19.68504,-19.68504,16.92913,-17.79725,16.92913,-17.79725,-16.92913,-18.81693,16.92913,-18.81693,-16.92913,-16.92913,17.79725,-16.92913,18.81693,16.92913,17.79725,16.92913,18.81693,-16.92913,17.79725,-16.92913,18.81693,16.92913,17.79725,16.92913,18.81693,16.92913,0,18.81693,2.445076,19.68504,0,19.68504,13.58375,18.81693,4.89015,18.81693,8.693603,17.79725,4.89015,18.81693,11.13868,17.79725,11.13868,17.79725,2.445076,16.92913,13.58375,17.79725,8.693603,-19.68504,16.92913,-19.68504,19.68504,-16.92913,16.92913,-16.92913,19.68504,16.92913,-19.68504,16.92913,-16.92913,19.68504,-19.68504,19.68504,-16.92913 + } + UVIndex: *348 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,55,54,56,54,57,56,57,58,56,56,58,59,60,59,58,61,55,56,58,62,60,52,62,58,53,62,52,63,60,62,61,63,62,56,63,61,64,66,65,67,65,66,68,65,67,69,68,67,70,68,69,71,69,67,72,71,67,65,73,64,74,64,73,70,74,73,67,74,72,75,74,70,69,75,70,72,74,75,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,117,119,121,120,119,122,121,119,123,122,119,117,124,116,125,116,124,123,125,124,119,125,123,126,124,117,127,124,126,126,121,127,122,127,121,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,149,151,153,152,151,154,152,153,155,153,151,156,155,151,149,157,148,158,148,157,154,158,157,151,158,156,159,158,154,153,159,154,156,158,159,160,162,161,163,161,162,164,166,165,167,165,166 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *116 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_corner, Model::RootNode + C: "OO",5066696039881491468,0 + + ;Geometry::, Model::Mesh fence_corner + C: "OO",4735496595979196255,5066696039881491468 + + ;Material::woodDark, Model::Mesh fence_corner + C: "OO",3052,5066696039881491468 + + ;Material::wood, Model::Mesh fence_corner + C: "OO",3044,5066696039881491468 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_corner.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_corner.fbx.import new file mode 100644 index 0000000..d8f93e1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_corner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b0mcil0e6fc28" +path="res://.godot/imported/fence_corner.fbx-6b1b6450ce85e81b8aaf52bdab305f5b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_corner.fbx" +dest_files=["res://.godot/imported/fence_corner.fbx-6b1b6450ce85e81b8aaf52bdab305f5b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_gate.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_gate.fbx new file mode 100644 index 0000000..0fb8f31 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_gate.fbx @@ -0,0 +1,439 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 20 + Millisecond: 638 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_gate.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_gate.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4944627839188770584, "Model::fence_gate", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4710235992956834870, "Geometry::", "Mesh" { + Vertices: *576 { + a: -4.3,0,5,-4.3,0,4.3,-5,0,5,-5,0,4.3,4.3,3.450273,4.3,4.3,0.6210492,4.5205,4.3,0,4.3,4.3,0,5,4.3,0.6210492,4.7795,4.3,1.242098,4.7795,4.3,2.208175,4.7795,4.3,2.829224,4.7795,4.3,2.829224,4.5205,4.3,3.450273,5,4.3,1.242098,4.5205,4.3,2.208175,4.5205,5,0,5,4.3,0,5,5,3.450273,5,4.3,3.450273,5,1.5,0,4.3,1.5,3.450273,4.3,1.5,0,5,1.5,3.450273,5,2.2,0,5,2.2,0,4.3,1.5,0,5,1.5,0,4.3,-2.2,0.6210492,4.7795,-2.2,0.6210492,4.5205,-4.3,0.6210492,4.7795,-4.3,0.6210492,4.5205,-4.3,0,5,-5,0,5,-4.3,3.450273,5,-5,3.450273,5,-1.5,3.450273,4.3,-1.5,0,4.3,-1.5,3.450273,5,-1.5,0,5,-1.5,3.450273,4.3,-1.5,3.450273,5,-2.2,3.450273,4.3,-2.2,3.450273,5,2.2,3.450273,4.3,2.2,3.450273,5,1.5,3.450273,4.3,1.5,3.450273,5,1.5,0,4.3,2.2,0,4.3,1.5,3.450273,4.3,2.2,3.450273,4.3,2.2,0,5,1.5,0,5,2.2,3.450273,5,1.5,3.450273,5,5,0,5,5,0,4.3,4.3,0,5,4.3,0,4.3,4.3,0,4.3,5,0,4.3,4.3,3.450273,4.3,5,3.450273,4.3,-4.3,0,4.3,-4.3,2.829224,4.5205,-4.3,3.450273,4.3,-4.3,3.450273,5,-4.3,2.829224,4.7795,-4.3,2.208175,4.7795,-4.3,1.242098,4.7795,-4.3,0.6210492,4.7795,-4.3,0.6210492,4.5205,-4.3,0,5,-4.3,2.208175,4.5205,-4.3,1.242098,4.5205,-5,0,4.3,-4.3,0,4.3,-5,3.450273,4.3,-4.3,3.450273,4.3,-1.5,0,5,-1.5,0,4.3,-2.2,0,5,-2.2,0,4.3,5,3.450273,4.3,5,3.450273,5,4.3,3.450273,4.3,4.3,3.450273,5,4.3,2.829224,4.5205,4.3,2.829224,4.7795,2.2,2.829224,4.5205,2.2,2.829224,4.7795,-5,0,4.3,-5,3.450273,4.3,-5,0,5,-5,3.450273,5,4.3,0.6210492,4.7795,4.3,0.6210492,4.5205,2.2,0.6210492,4.7795,2.2,0.6210492,4.5205,-2.2,1.242098,4.5205,-2.2,1.242098,4.7795,-4.3,1.242098,4.5205,-4.3,1.242098,4.7795,4.3,1.242098,4.5205,4.3,1.242098,4.7795,2.2,1.242098,4.5205,2.2,1.242098,4.7795,-2.2,0,4.3,-1.5,0,4.3,-2.2,3.450273,4.3,-1.5,3.450273,4.3,2.2,2.208175,4.5205,2.2,1.242098,4.5205,2.2,2.208175,4.7795,2.2,1.242098,4.7795,2.2,3.450273,5,2.2,2.829224,4.7795,2.2,2.829224,4.5205,2.2,3.450273,4.3,2.2,0,4.3,2.2,0.6210492,4.7795,2.2,0.6210492,4.5205,2.2,0,5,4.3,2.208175,4.7795,4.3,2.208175,4.5205,2.2,2.208175,4.7795,2.2,2.208175,4.5205,-4.3,3.450273,4.3,-4.3,3.450273,5,-5,3.450273,4.3,-5,3.450273,5,-2.2,2.208175,4.7795,-2.2,2.208175,4.5205,-4.3,2.208175,4.7795,-4.3,2.208175,4.5205,5,3.450273,4.3,5,0,4.3,5,3.450273,5,5,0,5,-2.2,2.829224,4.5205,-2.2,2.829224,4.7795,-4.3,2.829224,4.5205,-4.3,2.829224,4.7795,-1.5,0,5,-2.2,0,5,-1.5,3.450273,5,-2.2,3.450273,5,-4.3,2.208175,4.5205,-2.2,2.208175,4.5205,-4.3,2.829224,4.5205,-2.2,2.829224,4.5205,-2.2,2.208175,4.7795,-4.3,2.208175,4.7795,-2.2,2.829224,4.7795,-4.3,2.829224,4.7795,-2.2,0.6210492,4.7795,-4.3,0.6210492,4.7795,-2.2,1.242098,4.7795,-4.3,1.242098,4.7795,4.3,0.6210492,4.7795,2.2,0.6210492,4.7795,4.3,1.242098,4.7795,2.2,1.242098,4.7795,-4.3,0.6210492,4.5205,-2.2,0.6210492,4.5205,-4.3,1.242098,4.5205,-2.2,1.242098,4.5205,2.2,0.6210492,4.5205,4.3,0.6210492,4.5205,2.2,1.242098,4.5205,4.3,1.242098,4.5205,4.3,2.208175,4.7795,2.2,2.208175,4.7795,4.3,2.829224,4.7795,2.2,2.829224,4.7795,-2.2,3.450273,4.3,-2.2,0.6210492,4.5205,-2.2,0,4.3,-2.2,0,5,-2.2,0.6210492,4.7795,-2.2,1.242098,4.7795,-2.2,2.208175,4.7795,-2.2,2.829224,4.7795,-2.2,2.829224,4.5205,-2.2,3.450273,5,-2.2,1.242098,4.5205,-2.2,2.208175,4.5205,2.2,2.208175,4.5205,4.3,2.208175,4.5205,2.2,2.829224,4.5205,4.3,2.829224,4.5205 + } + PolygonVertexIndex: *384 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,8,-8,10,9,-8,11,10,-8,5,12,-5,13,4,-13,11,13,-13,7,13,-12,14,12,-6,15,12,-15,14,9,-16,10,15,-10,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,65,-68,69,68,-68,70,69,-68,71,70,-68,65,72,-65,73,64,-73,71,73,-73,67,73,-72,74,72,-66,75,72,-75,74,69,-76,70,75,-70,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,115,114,-117,114,117,-117,117,118,-117,116,118,-120,120,119,-119,121,115,-117,118,122,-121,112,122,-119,113,122,-113,123,120,-123,121,123,-123,116,123,-122,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,177,-180,181,180,-180,182,181,-180,183,182,-180,177,184,-177,185,176,-185,183,185,-185,179,185,-184,186,184,-178,187,184,-187,186,181,-188,182,187,-182,188,190,-190,191,189,-191 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1152 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,0,0,1,0,0,1,0,0,1,-0.9486833,0,0.3162278,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9486833,0,0.3162278,-1,0,0,-1,0,0,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-1,0,0,-1,0,0,-0.9486833,0,0.3162278,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9486833,0,0.3162278,-1,0,0,-1,0,0,-1,0,0,-0.9486833,0,0.3162278,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *384 { + a: -16.92913,19.68504,-16.92913,16.92913,-19.68504,19.68504,-19.68504,16.92913,16.92913,13.58375,17.79725,2.445076,16.92913,0,19.68504,0,18.81693,2.445076,18.81693,4.89015,18.81693,8.693603,18.81693,11.13868,17.79725,11.13868,19.68504,13.58375,17.79725,4.89015,17.79725,8.693603,19.68504,0,16.92913,0,19.68504,13.58375,16.92913,13.58375,16.92913,0,16.92913,13.58375,19.68504,0,19.68504,13.58375,8.661417,19.68504,8.661417,16.92913,5.905512,19.68504,5.905512,16.92913,-8.661418,18.81693,-8.661418,17.79725,-16.92913,18.81693,-16.92913,17.79725,-16.92913,0,-19.68504,0,-16.92913,13.58375,-19.68504,13.58375,-16.92913,13.58375,-16.92913,0,-19.68504,13.58375,-19.68504,0,5.905512,16.92913,5.905512,19.68504,8.661418,16.92913,8.661418,19.68504,-8.661417,16.92913,-8.661417,19.68504,-5.905512,16.92913,-5.905512,19.68504,-5.905512,0,-8.661417,0,-5.905512,13.58375,-8.661417,13.58375,8.661417,0,5.905512,0,8.661417,13.58375,5.905512,13.58375,19.68504,19.68504,19.68504,16.92913,16.92913,19.68504,16.92913,16.92913,-16.92913,0,-19.68504,0,-16.92913,13.58375,-19.68504,13.58375,-16.92913,0,-17.79725,11.13868,-16.92913,13.58375,-19.68504,13.58375,-18.81693,11.13868,-18.81693,8.693603,-18.81693,4.89015,-18.81693,2.445076,-17.79725,2.445076,-19.68504,0,-17.79725,8.693603,-17.79725,4.89015,19.68504,0,16.92913,0,19.68504,13.58375,16.92913,13.58375,-5.905512,19.68504,-5.905512,16.92913,-8.661418,19.68504,-8.661418,16.92913,-19.68504,16.92913,-19.68504,19.68504,-16.92913,16.92913,-16.92913,19.68504,-16.92913,17.79725,-16.92913,18.81693,-8.661417,17.79725,-8.661417,18.81693,16.92913,0,16.92913,13.58375,19.68504,0,19.68504,13.58375,16.92913,18.81693,16.92913,17.79725,8.661417,18.81693,8.661417,17.79725,8.661418,17.79725,8.661418,18.81693,16.92913,17.79725,16.92913,18.81693,-16.92913,17.79725,-16.92913,18.81693,-8.661417,17.79725,-8.661417,18.81693,8.661418,0,5.905512,0,8.661418,13.58375,5.905512,13.58375,-17.79725,8.693603,-17.79725,4.89015,-18.81693,8.693603,-18.81693,4.89015,-19.68504,13.58375,-18.81693,11.13868,-17.79725,11.13868,-16.92913,13.58375,-16.92913,0,-18.81693,2.445076,-17.79725,2.445076,-19.68504,0,16.92913,18.81693,16.92913,17.79725,8.661417,18.81693,8.661417,17.79725,16.92913,16.92913,16.92913,19.68504,19.68504,16.92913,19.68504,19.68504,-8.661418,18.81693,-8.661418,17.79725,-16.92913,18.81693,-16.92913,17.79725,-16.92913,13.58375,-16.92913,-2.059381E-14,-19.68504,13.58375,-19.68504,-2.059381E-14,8.661418,17.79725,8.661418,18.81693,16.92913,17.79725,16.92913,18.81693,-5.905512,0,-8.661418,0,-5.905512,13.58375,-8.661418,13.58375,16.92913,8.693603,8.661418,8.693603,16.92913,11.13868,8.661418,11.13868,-8.661418,8.693603,-16.92913,8.693603,-8.661418,11.13868,-16.92913,11.13868,-8.661418,2.445076,-16.92913,2.445076,-8.661418,4.89015,-16.92913,4.89015,16.92913,2.445076,8.661417,2.445076,16.92913,4.89015,8.661417,4.89015,16.92913,2.445076,8.661418,2.445076,16.92913,4.89015,8.661418,4.89015,-8.661417,2.445076,-16.92913,2.445076,-8.661417,4.89015,-16.92913,4.89015,16.92913,8.693603,8.661417,8.693603,16.92913,11.13868,8.661417,11.13868,16.92913,13.58375,17.79725,2.445076,16.92913,0,19.68504,0,18.81693,2.445076,18.81693,4.89015,18.81693,8.693603,18.81693,11.13868,17.79725,11.13868,19.68504,13.58375,17.79725,4.89015,17.79725,8.693603,-8.661417,8.693603,-16.92913,8.693603,-8.661417,11.13868,-16.92913,11.13868 + } + UVIndex: *384 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,8,7,10,9,7,11,10,7,5,12,4,13,4,12,11,13,12,7,13,11,14,12,5,15,12,14,14,9,15,10,15,9,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,65,67,69,68,67,70,69,67,71,70,67,65,72,64,73,64,72,71,73,72,67,73,71,74,72,65,75,72,74,74,69,75,70,75,69,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,115,114,116,114,117,116,117,118,116,116,118,119,120,119,118,121,115,116,118,122,120,112,122,118,113,122,112,123,120,122,121,123,122,116,123,121,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,177,179,181,180,179,182,181,179,183,182,179,177,184,176,185,176,184,183,185,184,179,185,183,186,184,177,187,184,186,186,181,187,182,187,181,188,190,189,191,189,190 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *128 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5376451728427738413, "Model::gate", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",1.5,1.725137,4.65 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-90,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1.866667,0.75,0.75 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5054626589678367183, "Geometry::", "Mesh" { + Vertices: *1092 { + a: 0.1875,-1.660654,0.341889,-0.1875,-1.660654,0.341889,0.1875,-1.68394,0.4104889,-0.1875,-1.68394,0.4104889,0.1875,1.753523,0.9319996,0.1875,1.8606,1.279409,-0.1875,1.753523,0.9319996,-0.1875,1.8606,1.279409,0.1875,1.925464,2.362887,-0.1875,1.925464,2.362887,0.1875,1.947188,2,-0.1875,1.947188,2,0.1875,-1.486132,3.885553,-0.1875,-1.486132,3.885553,0.1875,-1.425896,3.925801,-0.1875,-1.425896,3.925801,0.1875,1.925464,1.637113,-0.1875,1.925464,1.637113,0.1875,1.8606,1.279409,-0.1875,1.8606,1.279409,-0.1875,-1.540598,0.1622133,0.1875,-1.540598,0.1622133,-0.1875,-1.486132,0.1144473,0.1875,-1.486132,0.1144473,0.1875,-1.588364,0.21668,0.1875,-1.540598,0.1622133,-0.1875,-1.588364,0.21668,-0.1875,-1.540598,0.1622133,0.1875,1.197188,5.775292E-14,0.1875,0.9468666,5.775292E-14,0.1875,1.419431,0.2876929,0.1875,0.9468666,0.1850733,0.1875,0.5531334,0.1850733,0.1875,-0.5531334,0.1850733,0.1875,-0.9468666,0.1850733,0.1875,-1.588364,0.21668,0.1875,-1.628612,0.2769154,0.1875,-1.660654,0.341889,0.1875,0.9468666,0.5096871,0.1875,1.605763,0.5998458,0.1875,-1.68394,0.4104889,0.1875,-1.698074,0.4815414,0.1875,0.9974252,0.5751351,0.1875,1.152478,0.8348874,0.1875,1.753523,0.9319996,0.1875,1.275433,1.111283,0.1875,1.8606,1.279409,0.1875,1.364535,1.400374,0.1875,1.925464,1.637113,0.1875,1.418511,1.69803,0.1875,1.947188,2,0.1875,1.436589,2,0.1875,1.925464,2.362887,0.1875,1.418511,2.30197,0.1875,1.364535,2.599626,0.1875,1.8606,2.720591,0.1875,1.275433,2.888717,0.1875,1.753523,3.068,0.1875,1.152478,3.165112,0.1875,1.605763,3.400154,0.1875,0.9974252,3.424865,0.1875,1.419431,3.712307,0.1875,0.9468666,3.490313,0.1875,-1.132295,3.490313,0.1875,-1.698074,3.518459,0.1875,-1.68394,3.589511,0.1875,-1.660654,3.658111,0.1875,-1.628612,3.723084,0.1875,1.197188,4,0.1875,-1.588364,3.78332,0.1875,-1.540598,3.837787,0.1875,-1.486132,3.885553,0.1875,-1.425896,3.925801,0.1875,-1.360923,3.957842,0.1875,-1.292323,3.981129,0.1875,-1.22127,3.995262,0.1875,-1.148981,4,0.1875,-1.1546,3.488851,0.1875,-1.160123,3.487752,0.1875,-1.165455,3.485942,0.1875,-1.170506,3.483452,0.1875,-1.175188,3.480323,0.1875,-1.179422,3.47661,0.1875,-1.183135,3.472376,0.1875,-1.186263,3.467694,0.1875,-1.188754,3.462644,0.1875,-1.190564,3.457311,0.1875,-1.191663,3.451788,0.1875,-1.702812,3.446169,0.1875,-1.193125,3.429484,0.1875,-1.193125,0.5705162,0.1875,-1.702812,0.5538308,0.1875,-1.191663,0.5482116,0.1875,-1.190564,0.5426886,0.1875,-1.188754,0.5373563,0.1875,-1.186263,0.5323058,0.1875,-1.183135,0.5276237,0.1875,-1.179422,0.5233898,0.1875,-1.175188,0.5196769,0.1875,-1.170506,0.5165483,0.1875,-1.165455,0.5140578,0.1875,-1.160123,0.5122476,0.1875,-1.1546,0.511149,0.1875,-1.132295,0.5096871,0.1875,-0.9468666,5.775292E-14,0.1875,-1.148981,5.775292E-14,0.1875,-1.22127,0.004738099,0.1875,-1.292323,0.01887133,0.1875,-1.360923,0.04215786,0.1875,-1.425896,0.07419926,0.1875,-1.486132,0.1144473,0.1875,-1.540598,0.1622133,0.1875,0.5531334,5.775292E-14,0.1875,-0.5531334,5.775292E-14,0.1875,-1.292323,3.981129,-0.1875,-1.292323,3.981129,0.1875,-1.22127,3.995262,-0.1875,-1.22127,3.995262,-0.1875,-1.22127,0.004738099,0.1875,-1.22127,0.004738099,-0.1875,-1.148981,2.887646E-14,0.1875,-1.148981,5.775292E-14,0.1875,-1.360923,3.957842,-0.1875,-1.360923,3.957842,0.1875,-1.292323,3.981129,-0.1875,-1.292323,3.981129,0.1875,-1.540598,3.837787,-0.1875,-1.540598,3.837787,0.1875,-1.486132,3.885553,-0.1875,-1.486132,3.885553,0.1875,1.419431,3.712307,0.1875,1.197188,4,-0.1875,1.419431,3.712307,-0.1875,1.197188,4,0.1875,1.925464,2.362887,0.1875,1.8606,2.720591,-0.1875,1.925464,2.362887,-0.1875,1.8606,2.720591,-0.1875,-1.360923,0.04215786,0.1875,-1.360923,0.04215786,-0.1875,-1.292323,0.01887133,0.1875,-1.292323,0.01887133,0.1875,-1.628612,3.723084,-0.1875,-1.628612,3.723084,0.1875,-1.588364,3.78332,-0.1875,-1.588364,3.78332,-0.1875,-1.148981,2.887646E-14,0.1875,-1.148981,5.775292E-14,-0.1875,-0.9468666,2.887646E-14,0.1875,-0.9468666,5.775292E-14,-0.1875,-1.486132,0.1144473,0.1875,-1.486132,0.1144473,-0.1875,-1.425896,0.07419926,0.1875,-1.425896,0.07419926,-0.1875,-1.292323,0.01887133,0.1875,-1.292323,0.01887133,-0.1875,-1.22127,0.004738099,0.1875,-1.22127,0.004738099,0.1875,-1.22127,3.995262,-0.1875,-1.22127,3.995262,0.1875,-1.148981,4,-0.1875,-1.148981,4,0.1875,-1.540598,3.837787,0.1875,-1.588364,3.78332,-0.1875,-1.540598,3.837787,-0.1875,-1.588364,3.78332,0.1875,1.753523,3.068,0.1875,1.605763,3.400154,-0.1875,1.753523,3.068,-0.1875,1.605763,3.400154,0.1875,-1.702812,3.446169,0.1875,-1.702812,0.5538308,-0.1875,-1.702812,3.446169,-0.1875,-1.702812,0.5538308,-0.1875,-1.425896,0.07419926,0.1875,-1.425896,0.07419926,-0.1875,-1.360923,0.04215786,0.1875,-1.360923,0.04215786,0.1875,-1.660654,0.341889,0.1875,-1.628612,0.2769154,-0.1875,-1.660654,0.341889,-0.1875,-1.628612,0.2769154,0.1875,1.753523,3.068,-0.1875,1.753523,3.068,0.1875,1.8606,2.720591,-0.1875,1.8606,2.720591,0.1875,1.419431,0.2876929,-0.1875,1.419431,0.2876929,0.1875,1.197188,5.775292E-14,-0.1875,1.197188,2.887646E-14,-0.1875,0.9468666,2.887646E-14,0.1875,0.9468666,5.775292E-14,-0.1875,1.197188,2.887646E-14,0.1875,1.197188,5.775292E-14,0.1875,-1.702812,0.5538308,0.1875,-1.698074,0.4815414,-0.1875,-1.702812,0.5538308,-0.1875,-1.698074,0.4815414,0.1875,1.419431,3.712307,-0.1875,1.419431,3.712307,0.1875,1.605763,3.400154,-0.1875,1.605763,3.400154,0.1875,-1.628612,3.723084,0.1875,-1.660654,3.658111,-0.1875,-1.628612,3.723084,-0.1875,-1.660654,3.658111,0.1875,-1.588364,0.21668,-0.1875,-1.588364,0.21668,0.1875,-1.628612,0.2769154,-0.1875,-1.628612,0.2769154,0.1875,-1.702812,3.446169,-0.1875,-1.702812,3.446169,0.1875,-1.698074,3.518459,-0.1875,-1.698074,3.518459,0.1875,-1.425896,3.925801,-0.1875,-1.425896,3.925801,0.1875,-1.360923,3.957842,-0.1875,-1.360923,3.957842,-0.1875,-0.5531334,2.887646E-14,0.1875,-0.5531334,5.775292E-14,-0.1875,0.5531334,2.887646E-14,0.1875,0.5531334,5.775292E-14,0.1875,-1.68394,3.589511,0.1875,-1.698074,3.518459,-0.1875,-1.68394,3.589511,-0.1875,-1.698074,3.518459,0.1875,-1.68394,0.4104889,-0.1875,-1.68394,0.4104889,0.1875,-1.698074,0.4815414,-0.1875,-1.698074,0.4815414,0.1875,-1.148981,4,-0.1875,-1.148981,4,0.1875,1.197188,4,-0.1875,1.197188,4,0.1875,1.419431,0.2876929,0.1875,1.605763,0.5998458,-0.1875,1.419431,0.2876929,-0.1875,1.605763,0.5998458,-0.1875,-1.148981,2.887646E-14,-0.1875,-0.9468666,2.887646E-14,-0.1875,-1.22127,0.004738099,-0.1875,-0.9468666,0.1850733,-0.1875,-1.292323,0.01887133,-0.1875,-1.360923,0.04215786,-0.1875,-1.425896,0.07419926,-0.1875,-1.486132,0.1144473,-0.1875,-1.540598,0.1622133,-0.1875,-1.588364,0.21668,-0.1875,-0.5531334,0.1850733,-0.1875,0.5531334,0.1850733,-0.1875,0.9468666,0.1850733,-0.1875,1.419431,0.2876929,-0.1875,1.197188,2.887646E-14,-0.1875,0.9468666,2.887646E-14,-0.1875,-1.628612,0.2769154,-0.1875,-1.660654,0.341889,-0.1875,0.9468666,0.5096871,-0.1875,1.605763,0.5998458,-0.1875,-1.68394,0.4104889,-0.1875,-1.698074,0.4815414,-0.1875,-1.132295,0.5096871,-0.1875,-1.1546,0.511149,-0.1875,-1.702812,0.5538308,-0.1875,-1.160123,0.5122476,-0.1875,-1.165455,0.5140578,-0.1875,-1.170506,0.5165483,-0.1875,-1.175188,0.5196769,-0.1875,-1.179422,0.5233898,-0.1875,-1.183135,0.5276237,-0.1875,-1.186263,0.5323058,-0.1875,-1.188754,0.5373563,-0.1875,-1.190564,0.5426886,-0.1875,-1.191663,0.5482116,-0.1875,-1.193125,0.5705162,-0.1875,-1.702812,3.446169,-0.1875,-1.193125,3.429484,-0.1875,-1.191663,3.451788,-0.1875,-1.698074,3.518459,-0.1875,-1.190564,3.457311,-0.1875,-1.188754,3.462644,-0.1875,-1.186263,3.467694,-0.1875,-1.183135,3.472376,-0.1875,-1.179422,3.47661,-0.1875,-1.175188,3.480323,-0.1875,-1.170506,3.483452,-0.1875,-1.165455,3.485942,-0.1875,-1.160123,3.487752,-0.1875,-1.1546,3.488851,-0.1875,-1.132295,3.490313,-0.1875,0.9468666,3.490313,-0.1875,1.419431,3.712307,-0.1875,0.9974252,3.424865,-0.1875,1.605763,3.400154,-0.1875,1.152478,3.165112,-0.1875,1.753523,3.068,-0.1875,1.275433,2.888717,-0.1875,1.8606,2.720591,-0.1875,1.364535,2.599626,-0.1875,1.925464,2.362887,-0.1875,1.418511,2.30197,-0.1875,1.947188,2,-0.1875,1.436589,2,-0.1875,1.418511,1.69803,-0.1875,1.925464,1.637113,-0.1875,1.364535,1.400374,-0.1875,1.8606,1.279409,-0.1875,1.275433,1.111283,-0.1875,1.753523,0.9319996,-0.1875,1.152478,0.8348874,-0.1875,0.9974252,0.5751351,-0.1875,-1.68394,3.589511,-0.1875,-1.660654,3.658111,-0.1875,-1.628612,3.723084,-0.1875,1.197188,4,-0.1875,-1.588364,3.78332,-0.1875,-1.540598,3.837787,-0.1875,-1.486132,3.885553,-0.1875,-1.425896,3.925801,-0.1875,-1.360923,3.957842,-0.1875,-1.292323,3.981129,-0.1875,-1.22127,3.995262,-0.1875,-1.148981,4,-0.1875,-0.5531334,2.887646E-14,-0.1875,0.5531334,2.887646E-14,0.1875,1.925464,1.637113,0.1875,1.947188,2,-0.1875,1.925464,1.637113,-0.1875,1.947188,2,0.1875,1.753523,0.9319996,-0.1875,1.753523,0.9319996,0.1875,1.605763,0.5998458,-0.1875,1.605763,0.5998458,0.1875,-1.68394,3.589511,-0.1875,-1.68394,3.589511,0.1875,-1.660654,3.658111,-0.1875,-1.660654,3.658111,0.1875,0.6731297,1.012127,0.1875,-0.6906849,1.012127,0.1875,0.7056384,1.066587,0.1875,-0.6906849,2,0.1875,0.8041424,1.288017,0.1875,0.875525,1.519618,0.1875,0.9187666,1.758081,0.1875,0.9332495,2,0.1875,0.9187666,2.241919,0.1875,-0.6906849,2.34853,0.1875,0.875525,2.480382,0.1875,-0.6906849,2.987873,0.1875,0.8041424,2.711983,0.1875,0.7056384,2.933413,0.1875,0.6731297,2.987873,-0.1875,-0.6906849,1.012127,-0.1875,0.6731297,1.012127,-0.1875,-0.6906849,2.987873,-0.1875,0.7056384,1.066587,-0.1875,0.8041424,1.288017,-0.1875,0.875525,1.519618,-0.1875,0.9187666,1.758081,-0.1875,0.9332495,2,-0.1875,0.9187666,2.241919,-0.1875,0.875525,2.480382,-0.1875,0.8041424,2.711983,-0.1875,0.7056384,2.933413,-0.1875,0.6731297,2.987873 + } + PolygonVertexIndex: *1188 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,31,-31,33,32,-31,34,33,-31,35,34,-31,36,35,-31,37,36,-31,38,37,-31,39,38,-31,40,37,-39,41,40,-39,42,38,-40,43,42,-40,44,43,-40,45,43,-45,46,45,-45,47,45,-47,48,47,-47,49,47,-49,50,49,-49,51,49,-51,52,51,-51,53,51,-53,54,53,-53,55,54,-53,56,54,-56,57,56,-56,58,56,-58,59,58,-58,60,58,-60,61,60,-60,62,60,-62,63,62,-62,64,63,-62,65,64,-62,66,65,-62,67,66,-62,68,67,-62,69,67,-69,70,69,-69,71,70,-69,72,71,-69,73,72,-69,74,73,-69,75,74,-69,76,75,-69,63,64,-78,77,64,-79,78,64,-80,79,64,-81,80,64,-82,81,64,-83,82,64,-84,83,64,-85,84,64,-86,85,64,-87,86,64,-88,64,88,-88,87,88,-90,89,88,-91,88,91,-91,90,91,-93,92,91,-94,93,91,-95,94,91,-96,95,91,-97,96,91,-98,97,91,-99,98,91,-100,99,91,-101,100,91,-102,101,91,-103,91,41,-103,103,102,-42,38,103,-42,104,34,-106,106,105,-35,107,106,-35,108,107,-35,109,108,-35,110,109,-35,111,110,-35,35,111,-35,112,32,-114,33,113,-33,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,241,-241,243,241,-243,244,241,-244,245,241,-245,246,241,-246,247,241,-247,248,241,-248,249,248,-248,250,249,-248,247,251,-251,251,252,-251,253,250,-253,254,251,-248,255,251,-255,256,251,-256,257,251,-257,258,256,-256,259,256,-259,260,256,-260,260,259,-262,262,261,-260,263,261,-263,264,263,-263,265,264,-263,266,265,-263,267,266,-263,268,267,-263,269,268,-263,270,269,-263,271,270,-263,272,271,-263,273,272,-263,274,273,-263,275,273,-275,276,275,-275,277,276,-275,278,276,-278,279,278,-278,280,279,-278,281,280,-278,282,281,-278,283,282,-278,284,283,-278,285,284,-278,286,285,-278,287,286,-278,288,287,-278,289,288,-278,277,290,-290,289,290,-292,290,292,-292,291,292,-294,292,294,-294,293,294,-296,294,296,-296,295,296,-298,296,298,-298,297,298,-300,298,300,-300,299,300,-302,301,300,-303,300,303,-303,302,303,-305,303,305,-305,304,305,-307,305,307,-307,306,307,-309,307,257,-309,308,257,-310,309,257,-257,310,290,-278,311,290,-311,312,290,-312,313,290,-313,314,313,-313,315,313,-315,316,313,-316,317,313,-317,318,313,-318,319,313,-319,320,313,-320,321,313,-321,322,248,-324,249,323,-249,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,339,-339,341,339,-341,342,339,-342,343,339,-343,344,339,-344,345,339,-345,346,345,-345,347,345,-347,348,347,-347,349,347,-349,350,347,-350,351,353,-353,354,352,-354,355,354,-354,356,355,-354,357,356,-354,358,357,-354,359,358,-354,360,359,-354,361,360,-354,362,361,-354,363,362,-354,239,241,-323,248,322,-242,220,190,-222,191,221,-191,113,33,-105,34,104,-34,323,249,-254,250,253,-250,29,31,-113,32,112,-32,148,218,-150,219,149,-219,43,45,-337,338,336,-46,340,338,-46,47,340,-46,341,340,-48,49,341,-48,342,341,-50,51,342,-50,343,342,-52,344,343,-52,53,344,-52,346,344,-54,54,346,-54,348,346,-55,56,348,-55,349,348,-57,58,349,-57,350,349,-59,347,350,-59,58,89,-348,347,89,-346,345,89,-340,339,89,-338,89,90,-338,337,90,-43,90,92,-43,92,93,-43,93,94,-43,94,95,-43,95,96,-43,96,97,-43,97,98,-43,98,99,-43,99,100,-43,100,101,-43,101,102,-43,102,103,-43,38,42,-104,43,337,-43,336,337,-44,60,89,-59,62,89,-61,87,89,-63,86,87,-63,85,86,-63,84,85,-63,83,84,-63,82,83,-63,81,82,-63,80,81,-63,79,80,-63,78,79,-63,77,78,-63,63,77,-63,260,261,-257,309,256,-262,263,309,-262,264,309,-264,265,309,-265,266,309,-266,267,309,-267,268,309,-268,269,309,-269,270,309,-270,271,309,-271,272,309,-272,273,309,-273,351,309,-274,275,351,-274,308,309,-352,353,351,-276,363,353,-276,293,363,-276,291,293,-276,289,291,-276,276,289,-276,278,289,-277,279,289,-279,280,289,-280,281,289,-281,282,289,-282,283,289,-283,284,289,-284,285,289,-285,286,289,-286,287,289,-287,288,289,-288,363,293,-363,293,295,-363,362,295,-362,295,297,-362,361,297,-361,297,299,-361,360,299,-360,299,301,-360,359,301,-359,358,301,-358,301,302,-358,357,302,-357,302,304,-357,356,304,-356,304,306,-356,355,306,-355,354,306,-353,306,308,-353,351,352,-309 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3564 { + a: 0,-0.9238795,-0.3826834,0,-0.9659258,-0.258819,0,-0.9238795,-0.3826834,0,-0.9659258,-0.258819,0,-0.9238795,-0.3826834,0,-0.9659258,-0.258819,0,0.9363292,-0.3511235,0,0.9363292,-0.3511235,0,0.9715325,-0.2369065,0,0.9715325,-0.2369065,0,0.9715325,-0.2369065,0,0.9363292,-0.3511235,0,0.9928576,0.1193054,0,1,0,0,0.9928576,0.1193054,0,1,0,0,0.9928576,0.1193054,0,1,0,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,-0.6087614,0.7933533,0,-0.5,0.8660254,0,0.9928576,-0.1193054,0,0.9715325,-0.2369065,0,0.9928576,-0.1193054,0,0.9715325,-0.2369065,0,0.9928576,-0.1193054,0,0.9715325,-0.2369065,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7071068,-0.7071068,0,-0.6087614,-0.7933533,0,-0.7933533,-0.6087614,0,-0.7933533,-0.6087614,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7933533,-0.6087614,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.258819,0.9659258,0,-0.1305262,0.9914449,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.1305262,-0.9914449,0,-0.06540313,-0.9978589,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.3826834,0.9238795,0,-0.258819,0.9659258,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,-0.7071068,0.7071068,0,-0.6087614,0.7933533,0,0.8264908,0.5629504,0,0.8264908,0.5629504,0,0.791372,0.6113349,0,0.791372,0.6113349,0,0.791372,0.6113349,0,0.8264908,0.5629504,0,0.9928576,0.1193054,0,0.9928576,0.1193054,0,0.9715325,0.2369065,0,0.9715325,0.2369065,0,0.9715325,0.2369065,0,0.9928576,0.1193054,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.3826834,-0.9238795,0,-0.258819,-0.9659258,0,-0.8660254,0.5,0,-0.7933533,0.6087614,0,-0.8660254,0.5,0,-0.7933533,0.6087614,0,-0.8660254,0.5,0,-0.7933533,0.6087614,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.6087614,-0.7933533,0,-0.5,-0.8660254,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.258819,-0.9659258,0,-0.1305262,-0.9914449,0,-0.1305262,0.9914449,0,-0.06540313,0.9978589,0,-0.1305262,0.9914449,0,-0.06540313,0.9978589,0,-0.1305262,0.9914449,0,-0.06540313,0.9978589,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7933533,0.6087614,0,-0.7071068,0.7071068,0,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.8877506,0.4603246,0,0.8877506,0.4603246,0,0.8877506,0.4603246,0,0.9363292,0.3511235,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.5,-0.8660254,0,-0.3826834,-0.9238795,0,-0.9238795,-0.3826834,0,-0.9238795,-0.3826834,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.9238795,-0.3826834,0,0.9363292,0.3511235,0,0.9715325,0.2369065,0,0.9363292,0.3511235,0,0.9715325,0.2369065,0,0.9363292,0.3511235,0,0.9715325,0.2369065,0,0.8264908,-0.5629504,0,0.791372,-0.6113349,0,0.8264908,-0.5629504,0,0.791372,-0.6113349,0,0.8264908,-0.5629504,0,0.791372,-0.6113349,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9978589,-0.06540313,0,-0.9978589,-0.06540313,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9914449,-0.1305262,0,-0.9978589,-0.06540313,0,0.8264908,0.5629504,0,0.8877506,0.4603246,0,0.8264908,0.5629504,0,0.8877506,0.4603246,0,0.8264908,0.5629504,0,0.8877506,0.4603246,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.9238795,0.3826834,0,-0.8660254,0.5,0,-0.7933533,-0.6087614,0,-0.8660254,-0.5,0,-0.7933533,-0.6087614,0,-0.8660254,-0.5,0,-0.7933533,-0.6087614,0,-0.8660254,-0.5,0,-0.9978589,0.06540313,0,-0.9914449,0.1305262,0,-0.9978589,0.06540313,0,-0.9914449,0.1305262,0,-0.9978589,0.06540313,0,-0.9914449,0.1305262,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,-0.5,0.8660254,0,-0.3826834,0.9238795,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9914449,0.1305262,0,-0.9659258,0.258819,0,-0.9659258,-0.258819,0,-0.9914449,-0.1305262,0,-0.9659258,-0.258819,0,-0.9914449,-0.1305262,0,-0.9659258,-0.258819,0,-0.9914449,-0.1305262,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8264908,-0.5629504,0,0.8264908,-0.5629504,0,0.8877506,-0.4603246,0,0.8877506,-0.4603246,0,0.8877506,-0.4603246,0,0.8264908,-0.5629504,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.9928576,-0.1193054,0,0.9928576,-0.1193054,0,1,0,0,1,0,0,1,0,0,0.9928576,-0.1193054,0,0.9363292,-0.3511235,0,0.8877506,-0.4603246,0,0.9363292,-0.3511235,0,0.8877506,-0.4603246,0,0.9363292,-0.3511235,0,0.8877506,-0.4603246,0,-0.9659258,0.258819,0,-0.9238795,0.3826834,0,-0.9659258,0.258819,0,-0.9238795,0.3826834,0,-0.9659258,0.258819,0,-0.9238795,0.3826834,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *728 { + a: -0.738189,-3.37616,0.738189,-3.37616,-0.738189,-3.661375,0.738189,-3.661375,-0.738189,5.539921,-0.738189,6.971169,0.738189,5.539921,0.738189,6.971169,0.738189,-8.833069,-0.738189,-8.833069,0.738189,-7.401822,-0.738189,-7.401822,0.738189,3.633953,-0.738189,3.633953,0.738189,3.919168,-0.738189,3.919168,-0.738189,7.694462,0.738189,7.694462,-0.738189,6.263215,0.738189,6.263215,0.738189,-4.981251,-0.738189,-4.981251,0.738189,-4.696036,-0.738189,-4.696036,-0.738189,-4.764528,-0.738189,-4.479313,0.738189,-4.764528,0.738189,-4.479313,-2.273737E-13,4.71334,-2.273737E-13,3.727821,-1.132649,5.588312,-0.7286351,3.727821,-0.7286351,2.177691,-0.7286351,-2.177691,-0.7286351,-3.727821,-0.8530708,-6.253403,-1.090218,-6.41186,-1.34602,-6.538007,-2.006642,3.727821,-2.361598,6.321902,-1.616098,-6.629686,-1.895832,-6.685329,-2.264312,3.926871,-3.286958,4.537315,-3.66929,6.903634,-4.37513,5.021392,-5.037045,7.325195,-5.513283,5.372187,-6.445326,7.580565,-6.685158,5.584688,-7.874016,7.666096,-7.874016,5.655861,-9.302706,7.580565,-9.062874,5.584688,-10.23475,5.372187,-10.71099,7.325195,-11.3729,5.021392,-12.07874,6.903634,-12.46107,4.537315,-13.38643,6.321902,-13.48372,3.926871,-14.61538,5.588312,-13.74139,3.727821,-13.74139,-4.457856,-13.8522,-6.685329,-14.13193,-6.629686,-14.40201,-6.538007,-14.65781,-6.41186,-15.74803,4.71334,-14.89496,-6.253403,-15.1094,-6.065348,-15.29745,-5.850912,-15.45591,-5.613765,-15.58206,-5.357963,-15.67373,-5.087885,-15.72938,-4.80815,-15.74803,-4.523547,-13.73563,-4.545669,-13.73131,-4.567413,-13.72418,-4.588407,-13.71438,-4.608291,-13.70206,-4.626725,-13.68744,-4.643393,-13.67077,-4.658011,-13.65234,-4.670328,-13.63246,-4.680133,-13.61146,-4.68726,-13.58972,-4.691585,-13.5676,-6.703983,-13.5019,-4.69734,-2.246127,-4.69734,-2.180436,-6.703983,-2.158314,-4.691585,-2.136569,-4.68726,-2.115576,-4.680133,-2.095692,-4.670328,-2.077258,-4.658011,-2.06059,-4.643393,-2.045972,-4.626725,-2.033655,-4.608291,-2.023849,-4.588407,-2.016723,-4.567413,-2.012398,-4.545669,-2.006642,-4.457856,-2.273737E-13,-3.727821,-2.273737E-13,-4.523547,-0.01865393,-4.80815,-0.07429656,-5.087885,-0.1659758,-5.357963,-0.2921231,-5.613765,-0.4505799,-5.850912,-0.638635,-6.065348,-2.273737E-13,2.177691,-2.273737E-13,-2.177691,0.738189,-1.932329,-0.738189,-1.932329,0.738189,-1.647114,-0.738189,-1.647114,0.738189,-4.799076,-0.738189,-4.799076,0.738189,-4.513861,-0.738189,-4.513861,0.738189,-0.06492925,-0.738189,-0.06492925,0.738189,0.2202855,-0.738189,0.2202855,0.738189,5.402147,-0.738189,5.402147,0.738189,5.687362,-0.738189,5.687362,0.738189,-8.149876,0.738189,-9.581123,-0.738189,-8.149876,-0.738189,-9.581123,0.738189,-7.800869,0.738189,-9.232117,-0.738189,-7.800869,-0.738189,-9.232117,0.738189,-5.126968,-0.738189,-5.126968,0.738189,-4.841753,-0.738189,-4.841753,0.738189,8.625288,-0.738189,8.625288,0.738189,8.910502,-0.738189,8.910502,0.738189,-4.523547,-0.738189,-4.523547,0.738189,-3.727821,-0.738189,-3.727821,0.738189,-5.115184,-0.738189,-5.115184,0.738189,-4.829969,-0.738189,-4.829969,0.738189,-5.004617,-0.738189,-5.004617,0.738189,-4.719402,-0.738189,-4.719402,0.738189,-3.769105,-0.738189,-3.769105,0.738189,-3.483891,-0.738189,-3.483891,0.738189,7.360684,0.738189,7.075469,-0.738189,7.360684,-0.738189,7.075469,0.738189,-8.230033,0.738189,-9.661281,-0.738189,-8.230033,-0.738189,-9.661281,0.738189,13.5676,0.738189,2.180436,-0.738189,13.5676,-0.738189,2.180436,0.738189,-5.164035,-0.738189,-5.164035,0.738189,-4.87882,-0.738189,-4.87882,-0.738189,-4.098895,-0.738189,-3.81368,0.738189,-4.098895,0.738189,-3.81368,0.738189,-9.509508,-0.738189,-9.509508,0.738189,-8.07826,-0.738189,-8.07826,-0.738189,4.312676,0.738189,4.312676,-0.738189,2.881429,0.738189,2.881429,0.738189,3.727821,-0.738189,3.727821,0.738189,4.71334,-0.738189,4.71334,-0.738189,-2.614229,-0.738189,-2.329015,0.738189,-2.614229,0.738189,-2.329015,0.738189,-9.685266,-0.738189,-9.685266,0.738189,-8.254019,-0.738189,-8.254019,0.738189,10.3103,0.738189,10.02509,-0.738189,10.3103,-0.738189,10.02509,-0.738189,-4.183507,0.738189,-4.183507,-0.738189,-4.468722,0.738189,-4.468722,0.738189,13.10008,-0.738189,13.10008,0.738189,13.3853,-0.738189,13.3853,0.738189,1.801141,-0.738189,1.801141,0.738189,2.086356,-0.738189,2.086356,0.738189,-2.177691,-0.738189,-2.177691,0.738189,2.177691,-0.738189,2.177691,0.738189,12.56701,0.738189,12.28179,-0.738189,12.56701,-0.738189,12.28179,-0.738189,-2.878433,0.738189,-2.878433,-0.738189,-3.163647,0.738189,-3.163647,0.738189,-4.523547,-0.738189,-4.523547,0.738189,4.71334,-0.738189,4.71334,-0.738189,3.836864,-0.738189,5.268112,0.738189,3.836864,0.738189,5.268112,1.136868E-13,-4.523547,1.136868E-13,-3.727821,0.01865393,-4.80815,0.7286351,-3.727821,0.07429656,-5.087885,0.1659758,-5.357963,0.2921231,-5.613765,0.4505799,-5.850912,0.638635,-6.065348,0.8530708,-6.253403,0.7286351,-2.177691,0.7286351,2.177691,0.7286351,3.727821,1.132649,5.588312,1.136868E-13,4.71334,1.136868E-13,3.727821,1.090218,-6.41186,1.34602,-6.538007,2.006642,3.727821,2.361598,6.321902,1.616098,-6.629686,1.895832,-6.685329,2.006642,-4.457856,2.012398,-4.545669,2.180436,-6.703983,2.016723,-4.567413,2.023849,-4.588407,2.033655,-4.608291,2.045972,-4.626725,2.06059,-4.643393,2.077258,-4.658011,2.095692,-4.670328,2.115576,-4.680133,2.136569,-4.68726,2.158314,-4.691585,2.246127,-4.69734,13.5676,-6.703983,13.5019,-4.69734,13.58972,-4.691585,13.8522,-6.685329,13.61146,-4.68726,13.63246,-4.680133,13.65234,-4.670328,13.67077,-4.658011,13.68744,-4.643393,13.70206,-4.626725,13.71438,-4.608291,13.72418,-4.588407,13.73131,-4.567413,13.73563,-4.545669,13.74139,-4.457856,13.74139,3.727821,14.61538,5.588312,13.48372,3.926871,13.38643,6.321902,12.46107,4.537315,12.07874,6.903634,11.3729,5.021392,10.71099,7.325195,10.23475,5.372187,9.302706,7.580565,9.062874,5.584688,7.874016,7.666096,7.874016,5.655861,6.685158,5.584688,6.445326,7.580565,5.513283,5.372187,5.037045,7.325195,4.37513,5.021392,3.66929,6.903634,3.286958,4.537315,2.264312,3.926871,14.13193,-6.629686,14.40201,-6.538007,14.65781,-6.41186,15.74803,4.71334,14.89496,-6.253403,15.1094,-6.065348,15.29745,-5.850912,15.45591,-5.613765,15.58206,-5.357963,15.67373,-5.087885,15.72938,-4.80815,15.74803,-4.523547,1.136868E-13,-2.177691,1.136868E-13,2.177691,-0.738189,6.886818,-0.738189,8.318066,0.738189,6.886818,0.738189,8.318066,-0.738189,6.158515,0.738189,6.158515,-0.738189,4.727268,0.738189,4.727268,0.738189,11.25091,-0.738189,11.25091,0.738189,11.53613,-0.738189,11.53613,-3.984751,2.650117,-3.984751,-2.719232,-4.199161,2.778104,-7.874016,-2.719232,-5.070934,3.165915,-5.982749,3.446949,-6.921579,3.617192,-7.874016,3.674211,-8.826452,3.617192,-9.246182,-2.719232,-9.765283,3.446949,-11.76328,-2.719232,-10.6771,3.165915,-11.54887,2.778104,-11.76328,2.650117,3.984751,-2.719232,3.984751,2.650117,11.76328,-2.719232,4.199161,2.778104,5.070934,3.165915,5.982749,3.446949,6.921579,3.617192,7.874016,3.674211,8.826452,3.617192,9.765283,3.446949,10.6771,3.165915,11.54887,2.778104,11.76328,2.650117 + } + UVIndex: *1188 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,31,30,33,32,30,34,33,30,35,34,30,36,35,30,37,36,30,38,37,30,39,38,30,40,37,38,41,40,38,42,38,39,43,42,39,44,43,39,45,43,44,46,45,44,47,45,46,48,47,46,49,47,48,50,49,48,51,49,50,52,51,50,53,51,52,54,53,52,55,54,52,56,54,55,57,56,55,58,56,57,59,58,57,60,58,59,61,60,59,62,60,61,63,62,61,64,63,61,65,64,61,66,65,61,67,66,61,68,67,61,69,67,68,70,69,68,71,70,68,72,71,68,73,72,68,74,73,68,75,74,68,76,75,68,63,64,77,77,64,78,78,64,79,79,64,80,80,64,81,81,64,82,82,64,83,83,64,84,84,64,85,85,64,86,86,64,87,64,88,87,87,88,89,89,88,90,88,91,90,90,91,92,92,91,93,93,91,94,94,91,95,95,91,96,96,91,97,97,91,98,98,91,99,99,91,100,100,91,101,101,91,102,91,41,102,103,102,41,38,103,41,104,34,105,106,105,34,107,106,34,108,107,34,109,108,34,110,109,34,111,110,34,35,111,34,112,32,113,33,113,32,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,241,240,243,241,242,244,241,243,245,241,244,246,241,245,247,241,246,248,241,247,249,248,247,250,249,247,247,251,250,251,252,250,253,250,252,254,251,247,255,251,254,256,251,255,257,251,256,258,256,255,259,256,258,260,256,259,260,259,261,262,261,259,263,261,262,264,263,262,265,264,262,266,265,262,267,266,262,268,267,262,269,268,262,270,269,262,271,270,262,272,271,262,273,272,262,274,273,262,275,273,274,276,275,274,277,276,274,278,276,277,279,278,277,280,279,277,281,280,277,282,281,277,283,282,277,284,283,277,285,284,277,286,285,277,287,286,277,288,287,277,289,288,277,277,290,289,289,290,291,290,292,291,291,292,293,292,294,293,293,294,295,294,296,295,295,296,297,296,298,297,297,298,299,298,300,299,299,300,301,301,300,302,300,303,302,302,303,304,303,305,304,304,305,306,305,307,306,306,307,308,307,257,308,308,257,309,309,257,256,310,290,277,311,290,310,312,290,311,313,290,312,314,313,312,315,313,314,316,313,315,317,313,316,318,313,317,319,313,318,320,313,319,321,313,320,322,248,323,249,323,248,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,339,338,341,339,340,342,339,341,343,339,342,344,339,343,345,339,344,346,345,344,347,345,346,348,347,346,349,347,348,350,347,349,351,353,352,354,352,353,355,354,353,356,355,353,357,356,353,358,357,353,359,358,353,360,359,353,361,360,353,362,361,353,363,362,353,239,241,322,248,322,241,220,190,221,191,221,190,113,33,104,34,104,33,323,249,253,250,253,249,29,31,112,32,112,31,148,218,149,219,149,218,43,45,336,338,336,45,340,338,45,47,340,45,341,340,47,49,341,47,342,341,49,51,342,49,343,342,51,344,343,51,53,344,51,346,344,53,54,346,53,348,346,54,56,348,54,349,348,56,58,349,56,350,349,58,347,350,58,58,89,347,347,89,345,345,89,339,339,89,337,89,90,337,337,90,42,90,92,42,92,93,42,93,94,42,94,95,42,95,96,42,96,97,42,97,98,42,98,99,42,99,100,42,100,101,42,101,102,42,102,103,42,38,42,103,43,337,42,336,337,43,60,89,58,62,89,60,87,89,62,86,87,62,85,86,62,84,85,62,83,84,62,82,83,62,81,82,62,80,81,62,79,80,62,78,79,62,77,78,62,63,77,62,260,261,256,309,256,261,263,309,261,264,309,263,265,309,264,266,309,265,267,309,266,268,309,267,269,309,268,270,309,269,271,309,270,272,309,271,273,309,272,351,309,273,275,351,273,308,309,351,353,351,275,363,353,275,293,363,275,291,293,275,289,291,275,276,289,275,278,289,276,279,289,278,280,289,279,281,289,280,282,289,281,283,289,282,284,289,283,285,289,284,286,289,285,287,289,286,288,289,287,363,293,362,293,295,362,362,295,361,295,297,361,361,297,360,297,299,360,360,299,359,299,301,359,359,301,358,358,301,357,301,302,357,357,302,356,302,304,356,356,304,355,304,306,355,355,306,354,354,306,352,306,308,352,351,352,308 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *396 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_gate, Model::RootNode + C: "OO",4944627839188770584,0 + + ;Geometry::, Model::Mesh fence_gate + C: "OO",4710235992956834870,4944627839188770584 + + ;Material::wood, Model::Mesh fence_gate + C: "OO",3044,4944627839188770584 + + ;Material::woodDark, Model::Mesh fence_gate + C: "OO",3052,4944627839188770584 + + ;Model::Mesh gate, Model::USING PARENT + C: "OO",5376451728427738413,4944627839188770584 + + ;Geometry::, Model::Mesh gate + C: "OO",5054626589678367183,5376451728427738413 + + ;Material::wood, Model::Mesh gate + C: "OO",3044,5376451728427738413 + + ;Material::stone, Model::Mesh gate + C: "OO",3038,5376451728427738413 + + ;Material::woodDark, Model::Mesh gate + C: "OO",3052,5376451728427738413 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_gate.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_gate.fbx.import new file mode 100644 index 0000000..57ea670 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_gate.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c3fvwliybfotn" +path="res://.godot/imported/fence_gate.fbx-76cb45b2c8652f77bcaabce35a57b5df.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_gate.fbx" +dest_files=["res://.godot/imported/fence_gate.fbx-76cb45b2c8652f77bcaabce35a57b5df.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_planks.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_planks.fbx new file mode 100644 index 0000000..f342383 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_planks.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 20 + Millisecond: 729 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_planks.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_planks.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4757830976600911747, "Model::fence_planks", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4739395035578151992, "Geometry::", "Mesh" { + Vertices: *480 { + a: -5,2.208175,5,-5,2.829224,5,-5,2.208175,5.259,-5,2.829224,5.259,5,1.242098,5,5,0.6210492,5,5,1.242098,5.259,5,0.6210492,5.259,4.3,0.6210492,5,5,0.6210492,5,4.3,1.242098,5,5,1.242098,5,5,0.6210492,5.259,-5,0.6210492,5.259,5,1.242098,5.259,-5,1.242098,5.259,5,2.829224,5,5,2.208175,5,5,2.829224,5.259,5,2.208175,5.259,5,2.208175,5.259,-5,2.208175,5.259,5,2.829224,5.259,-5,2.829224,5.259,5,1.242098,5.259,-5,1.242098,5.259,5,1.242098,5,4.3,1.242098,5,3.6,1.242098,5,-3.6,1.242098,5,-4.3,1.242098,5,-5,1.242098,5,5,0.6210492,5.259,5,0.6210492,5,-5,0.6210492,5.259,4.3,0.6210492,5,3.6,0.6210492,5,-3.6,0.6210492,5,-4.3,0.6210492,5,-5,0.6210492,5,-5,0.6210492,5,-5,1.242098,5,-5,0.6210492,5.259,-5,1.242098,5.259,4.3,2.208175,5,5,2.208175,5,4.3,2.829224,5,5,2.829224,5,5,2.208175,5.259,5,2.208175,5,-5,2.208175,5.259,4.3,2.208175,5,3.6,2.208175,5,-3.6,2.208175,5,-4.3,2.208175,5,-5,2.208175,5,5,2.829224,5.259,-5,2.829224,5.259,5,2.829224,5,4.3,2.829224,5,3.6,2.829224,5,-3.6,2.829224,5,-4.3,2.829224,5,-5,2.829224,5,3.6,0,4.3,4.3,0,4.3,3.6,3.450273,4.3,4.3,3.450273,4.3,4.3,3.450273,5,3.6,3.450273,5,4.3,3.450273,4.3,3.6,3.450273,4.3,-3.6,2.208175,5,3.6,2.208175,5,-3.6,2.829224,5,3.6,2.829224,5,-5,2.208175,5,-4.3,2.208175,5,-5,2.829224,5,-4.3,2.829224,5,4.3,3.450273,4.3,4.3,0,4.3,4.3,3.450273,5,4.3,0,5,4.3,2.829224,5,4.3,2.208175,5,4.3,1.242098,5,4.3,0.6210492,5,-3.6,2.829224,5,-4.3,2.829224,5,-3.6,3.450273,5,-4.3,3.450273,5,-3.6,1.242098,5,-4.3,1.242098,5,-3.6,2.208175,5,-4.3,2.208175,5,-3.6,0,5,-4.3,0,5,-3.6,0.6210492,5,-4.3,0.6210492,5,-3.6,0,5,-3.6,0,4.3,-4.3,0,5,-4.3,0,4.3,3.6,0,4.3,3.6,3.450273,4.3,3.6,0,5,3.6,3.450273,5,3.6,0.6210492,5,3.6,1.242098,5,3.6,2.208175,5,3.6,2.829224,5,4.3,0,5,3.6,0,5,4.3,0.6210492,5,3.6,0.6210492,5,-4.3,0,4.3,-3.6,0,4.3,-4.3,3.450273,4.3,-3.6,3.450273,4.3,-4.3,0,4.3,-4.3,3.450273,4.3,-4.3,0,5,-4.3,3.450273,5,-4.3,0.6210492,5,-4.3,1.242098,5,-4.3,2.208175,5,-4.3,2.829224,5,-3.6,3.450273,5,-4.3,3.450273,5,-3.6,3.450273,4.3,-4.3,3.450273,4.3,-5,0.6210492,5,-4.3,0.6210492,5,-5,1.242098,5,-4.3,1.242098,5,4.3,0,5,4.3,0,4.3,3.6,0,5,3.6,0,4.3,4.3,2.829224,5,3.6,2.829224,5,4.3,3.450273,5,3.6,3.450273,5,-3.6,0.6210492,5,3.6,0.6210492,5,-3.6,1.242098,5,3.6,1.242098,5,4.3,1.242098,5,3.6,1.242098,5,4.3,2.208175,5,3.6,2.208175,5,-3.6,3.450273,4.3,-3.6,0,4.3,-3.6,3.450273,5,-3.6,0,5,-3.6,2.829224,5,-3.6,2.208175,5,-3.6,1.242098,5,-3.6,0.6210492,5 + } + PolygonVertexIndex: *288 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,25,-28,29,25,-29,30,25,-30,31,25,-31,32,34,-34,35,33,-35,36,35,-35,37,36,-35,38,37,-35,39,38,-35,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,53,52,-51,54,53,-51,55,54,-51,56,58,-58,59,57,-59,60,57,-60,61,57,-61,62,57,-62,63,57,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,83,-83,85,83,-85,86,83,-86,87,83,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,107,-107,109,107,-109,110,107,-110,111,107,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,123,-123,125,123,-125,126,123,-126,127,123,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,155,-155,157,155,-157,158,155,-158,159,155,-159 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *864 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *320 { + a: 19.68504,8.693603,19.68504,11.13868,20.70473,8.693603,20.70473,11.13868,-19.68504,4.89015,-19.68504,2.445076,-20.70473,4.89015,-20.70473,2.445076,-16.92913,2.445076,-19.68504,2.445076,-16.92913,4.89015,-19.68504,4.89015,19.68504,2.445076,-19.68504,2.445076,19.68504,4.89015,-19.68504,4.89015,-19.68504,11.13868,-19.68504,8.693603,-20.70473,11.13868,-20.70473,8.693603,19.68504,8.693603,-19.68504,8.693603,19.68504,11.13868,-19.68504,11.13868,-19.68504,20.70473,19.68504,20.70473,-19.68504,19.68504,-16.92913,19.68504,-14.17323,19.68504,14.17323,19.68504,16.92913,19.68504,19.68504,19.68504,19.68504,20.70473,19.68504,19.68504,-19.68504,20.70473,16.92913,19.68504,14.17323,19.68504,-14.17323,19.68504,-16.92913,19.68504,-19.68504,19.68504,19.68504,2.445076,19.68504,4.89015,20.70473,2.445076,20.70473,4.89015,-16.92913,8.693603,-19.68504,8.693603,-16.92913,11.13868,-19.68504,11.13868,19.68504,20.70473,19.68504,19.68504,-19.68504,20.70473,16.92913,19.68504,14.17323,19.68504,-14.17323,19.68504,-16.92913,19.68504,-19.68504,19.68504,-19.68504,20.70473,19.68504,20.70473,-19.68504,19.68504,-16.92913,19.68504,-14.17323,19.68504,14.17323,19.68504,16.92913,19.68504,19.68504,19.68504,-14.17323,0,-16.92913,0,-14.17323,13.58375,-16.92913,13.58375,-16.92913,19.68504,-14.17323,19.68504,-16.92913,16.92913,-14.17323,16.92913,14.17323,8.693603,-14.17323,8.693603,14.17323,11.13868,-14.17323,11.13868,19.68504,8.693603,16.92913,8.693603,19.68504,11.13868,16.92913,11.13868,-16.92913,13.58375,-16.92913,7.733502E-31,-19.68504,13.58375,-19.68504,7.733502E-31,-19.68504,11.13868,-19.68504,8.693603,-19.68504,4.89015,-19.68504,2.445076,-14.17323,11.13868,-16.92913,11.13868,-14.17323,13.58375,-16.92913,13.58375,-14.17323,4.89015,-16.92913,4.89015,-14.17323,8.693603,-16.92913,8.693603,-14.17323,0,-16.92913,0,-14.17323,2.445076,-16.92913,2.445076,-14.17323,19.68504,-14.17323,16.92913,-16.92913,19.68504,-16.92913,16.92913,16.92913,2.509888E-30,16.92913,13.58375,19.68504,2.509888E-30,19.68504,13.58375,19.68504,2.445076,19.68504,4.89015,19.68504,8.693603,19.68504,11.13868,16.92913,0,14.17323,0,16.92913,2.445076,14.17323,2.445076,16.92913,0,14.17323,0,16.92913,13.58375,14.17323,13.58375,16.92913,7.333315E-30,16.92913,13.58375,19.68504,7.333315E-30,19.68504,13.58375,19.68504,2.445076,19.68504,4.89015,19.68504,8.693603,19.68504,11.13868,14.17323,19.68504,16.92913,19.68504,14.17323,16.92913,16.92913,16.92913,19.68504,2.445076,16.92913,2.445076,19.68504,4.89015,16.92913,4.89015,16.92913,19.68504,16.92913,16.92913,14.17323,19.68504,14.17323,16.92913,16.92913,11.13868,14.17323,11.13868,16.92913,13.58375,14.17323,13.58375,14.17323,2.445076,-14.17323,2.445076,14.17323,4.89015,-14.17323,4.89015,16.92913,4.89015,14.17323,4.89015,16.92913,8.693603,14.17323,8.693603,-16.92913,13.58375,-16.92913,1.277415E-29,-19.68504,13.58375,-19.68504,1.277415E-29,-19.68504,11.13868,-19.68504,8.693603,-19.68504,4.89015,-19.68504,2.445076 + } + UVIndex: *288 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,25,27,29,25,28,30,25,29,31,25,30,32,34,33,35,33,34,36,35,34,37,36,34,38,37,34,39,38,34,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,53,52,50,54,53,50,55,54,50,56,58,57,59,57,58,60,57,59,61,57,60,62,57,61,63,57,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,83,82,85,83,84,86,83,85,87,83,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,107,106,109,107,108,110,107,109,111,107,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,123,122,125,123,124,126,123,125,127,123,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,155,154,157,155,156,158,155,157,159,155,158 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *96 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_planks, Model::RootNode + C: "OO",4757830976600911747,0 + + ;Geometry::, Model::Mesh fence_planks + C: "OO",4739395035578151992,4757830976600911747 + + ;Material::wood, Model::Mesh fence_planks + C: "OO",3044,4757830976600911747 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_planks.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_planks.fbx.import new file mode 100644 index 0000000..7631541 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_planks.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cp4ex4618qqro" +path="res://.godot/imported/fence_planks.fbx-5a91dd41965873efc89fc6f65baa2e5f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_planks.fbx" +dest_files=["res://.godot/imported/fence_planks.fbx-5a91dd41965873efc89fc6f65baa2e5f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_planksDouble.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_planksDouble.fbx new file mode 100644 index 0000000..1b74308 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_planksDouble.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 20 + Millisecond: 823 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_planksDouble.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_planksDouble.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5014334239838921113, "Model::fence_planksDouble", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4840161745401185692, "Geometry::", "Mesh" { + Vertices: *738 { + a: 5,1.242098,5,4.230769,1.242098,5,5,2.208175,5,4.230769,2.208175,5,5,0.6210492,5.259,-5,0.6210492,5.259,5,1.242098,5.259,-5,1.242098,5.259,5,0,5,5,0,4.660365,4.230769,0,5,4.230769,0,4.660365,-1.153846,2.829224,5,-1.923077,2.829224,5,-1.153846,3.450273,5,-1.923077,3.450273,5,-1.923077,0,4.660365,-1.153846,0,4.660365,-1.923077,3.450273,4.660365,-1.153846,3.450273,4.660365,5,1.242098,5.259,-5,1.242098,5.259,5,1.242098,5,4.230769,1.242098,5,1.923077,1.242098,5,1.153846,1.242098,5,-1.153846,1.242098,5,-1.923077,1.242098,5,-4.230768,1.242098,5,-5,1.242098,5,-5,0,4.660365,-5,3.450273,4.660365,-5,0,5,-5,3.450273,5,-5,0.6210492,5,-5,1.242098,5,-5,2.208175,5,-5,2.829224,5,1.923077,0.6210492,5,4.230769,0.6210492,5,1.923077,1.242098,5,4.230769,1.242098,5,5,3.450273,5,4.230769,3.450273,5,5,3.450273,4.660365,4.230769,3.450273,4.660365,-4.230768,0,5,-5,0,5,-4.230768,0.6210492,5,-5,0.6210492,5,-1.153846,3.450273,4.660365,-1.153846,0,4.660365,-1.153846,3.450273,5,-1.153846,0,5,-1.153846,2.829224,5,-1.153846,2.208175,5,-1.153846,1.242098,5,-1.153846,0.6210492,5,-1.153846,0,5,-1.153846,0,4.660365,-1.923077,0,5,-1.923077,0,4.660365,-1.153846,1.242098,5,-1.923077,1.242098,5,-1.153846,2.208175,5,-1.923077,2.208175,5,-4.230768,2.208175,5,-1.923077,2.208175,5,-4.230768,2.829224,5,-1.923077,2.829224,5,-4.230768,1.242098,5,-5,1.242098,5,-4.230768,2.208175,5,-5,2.208175,5,4.230769,0,4.660365,5,0,4.660365,4.230769,3.450273,4.660365,5,3.450273,4.660365,5,0,5,4.230769,0,5,5,0.6210492,5,4.230769,0.6210492,5,-1.153846,0,5,-1.923077,0,5,-1.153846,0.6210492,5,-1.923077,0.6210492,5,-1.153846,2.208175,5,1.153846,2.208175,5,-1.153846,2.829224,5,1.153846,2.829224,5,-4.230768,0.6210492,5,-1.923077,0.6210492,5,-4.230768,1.242098,5,-1.923077,1.242098,5,5,2.829224,5.259,-5,2.829224,5.259,5,2.829224,5,4.230769,2.829224,5,1.923077,2.829224,5,1.153846,2.829224,5,-1.153846,2.829224,5,-1.923077,2.829224,5,-4.230768,2.829224,5,-5,2.829224,5,-5,0.6210492,5,-5,1.242098,5,-5,0.6210492,5.259,-5,1.242098,5.259,-1.153846,3.450273,5,-1.923077,3.450273,5,-1.153846,3.450273,4.660365,-1.923077,3.450273,4.660365,-5,2.208175,5,-5,2.829224,5,-5,2.208175,5.259,-5,2.829224,5.259,-4.230768,3.450273,5,-5,3.450273,5,-4.230768,3.450273,4.660365,-5,3.450273,4.660365,-5,0,4.660365,-4.230768,0,4.660365,-5,3.450273,4.660365,-4.230768,3.450273,4.660365,-1.923077,0,4.660365,-1.923077,3.450273,4.660365,-1.923077,0,5,-1.923077,3.450273,5,-1.923077,0.6210492,5,-1.923077,1.242098,5,-1.923077,2.208175,5,-1.923077,2.829224,5,1.153846,0,4.660365,1.153846,3.450273,4.660365,1.153846,0,5,1.153846,3.450273,5,1.153846,0.6210492,5,1.153846,1.242098,5,1.153846,2.208175,5,1.153846,2.829224,5,-1.153846,0.6210492,5,1.153846,0.6210492,5,-1.153846,1.242098,5,1.153846,1.242098,5,1.923077,2.208175,5,4.230769,2.208175,5,1.923077,2.829224,5,4.230769,2.829224,5,1.923077,0,5,1.153846,0,5,1.923077,0.6210492,5,1.153846,0.6210492,5,-4.230768,3.450273,4.660365,-4.230768,0,4.660365,-4.230768,3.450273,5,-4.230768,0,5,-4.230768,2.829224,5,-4.230768,2.208175,5,-4.230768,1.242098,5,-4.230768,0.6210492,5,1.153846,0,4.660365,1.923077,0,4.660365,1.153846,3.450273,4.660365,1.923077,3.450273,4.660365,4.230769,0,4.660365,4.230769,3.450273,4.660365,4.230769,0,5,4.230769,3.450273,5,4.230769,0.6210492,5,4.230769,1.242098,5,4.230769,2.208175,5,4.230769,2.829224,5,1.923077,2.829224,5,1.153846,2.829224,5,1.923077,3.450273,5,1.153846,3.450273,5,5,2.829224,5,4.230769,2.829224,5,5,3.450273,5,4.230769,3.450273,5,1.923077,1.242098,5,1.153846,1.242098,5,1.923077,2.208175,5,1.153846,2.208175,5,1.923077,3.450273,5,1.153846,3.450273,5,1.923077,3.450273,4.660365,1.153846,3.450273,4.660365,5,1.242098,5,5,0.6210492,5,5,1.242098,5.259,5,0.6210492,5.259,5,0,5,5,2.208175,5,5,2.829224,5,5,3.450273,5,5,0,4.660365,5,3.450273,4.660365,5,0.6210492,5.259,5,0.6210492,5,-5,0.6210492,5.259,4.230769,0.6210492,5,1.923077,0.6210492,5,1.153846,0.6210492,5,-1.153846,0.6210492,5,-1.923077,0.6210492,5,-4.230768,0.6210492,5,-5,0.6210492,5,1.923077,3.450273,4.660365,1.923077,0,4.660365,1.923077,3.450273,5,1.923077,0,5,1.923077,2.829224,5,1.923077,2.208175,5,1.923077,1.242098,5,1.923077,0.6210492,5,-4.230768,2.829224,5,-5,2.829224,5,-4.230768,3.450273,5,-5,3.450273,5,5,2.208175,5.259,-5,2.208175,5.259,5,2.829224,5.259,-5,2.829224,5.259,5,2.208175,5.259,5,2.208175,5,-5,2.208175,5.259,4.230769,2.208175,5,1.923077,2.208175,5,1.153846,2.208175,5,-1.153846,2.208175,5,-1.923077,2.208175,5,-4.230768,2.208175,5,-5,2.208175,5,-4.230768,0,5,-4.230768,0,4.660365,-5,0,5,-5,0,4.660365,5,2.829224,5,5,2.208175,5,5,2.829224,5.259,5,2.208175,5.259,1.923077,0,5,1.923077,0,4.660365,1.153846,0,5,1.153846,0,4.660365 + } + PolygonVertexIndex: *456 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,21,-24,25,21,-25,26,21,-26,27,21,-27,28,21,-28,29,21,-29,30,32,-32,33,31,-33,34,33,-33,35,33,-35,36,33,-36,37,33,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,53,-53,55,53,-55,56,53,-56,57,53,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,95,-98,99,95,-99,100,95,-100,101,95,-101,102,95,-102,103,95,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,127,-127,129,127,-129,130,127,-130,131,127,-131,132,134,-134,135,133,-135,136,135,-135,137,135,-137,138,135,-138,139,135,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,155,-155,157,155,-157,158,155,-158,159,155,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,167,-167,169,167,-169,170,167,-170,171,167,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,189,192,-189,188,192,-194,193,192,-195,194,192,-196,192,196,-196,197,195,-197,198,200,-200,201,199,-201,202,201,-201,203,202,-201,204,203,-201,205,204,-201,206,205,-201,207,206,-201,208,210,-210,211,209,-211,212,211,-211,213,211,-213,214,211,-214,215,211,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,227,-227,229,228,-227,230,229,-227,231,230,-227,232,231,-227,233,232,-227,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1368 { + a: 0.9486833,0,0.3162278,0.9486833,0,0.3162278,0,0,1,0,0,1,0,0,1,0.9486833,0,0.3162278,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,-0.8944272,0,0.4472136,-0.7071068,0,0.7071068,-0.8944272,0,0.4472136,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0,0.7071068,0.9486833,0,0.3162278,0,0,1,0,0,1,0,0,1,0.9486833,0,0.3162278,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,0.7071068,-1,0,0,-1,0,0,-0.7071068,0,0.7071068,-1,0,0,-1,0,0,-0.7071068,0,0.7071068,-1,0,0,-0.8944272,0,0.4472136,-0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9486833,0,0.3162278,1,0,0,0.9486833,0,0.3162278,1,0,0,0.9486833,0,0.3162278,1,0,0,0.9486833,0,0.3162278,0.7071068,0,0.7071068,0.9486833,0,0.3162278,0.9486833,0,0.3162278,0.7071068,0,0.7071068,0.9486833,0,0.3162278,0.9486833,0,0.3162278,0.7071068,0,0.7071068,1,0,0,1,0,0,0.7071068,0,0.7071068,1,0,0,0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,0.9486833,0,0.3162278,1,0,0,0.9486833,0,0.3162278,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *492 { + a: 19.68504,4.89015,16.65657,4.89015,19.68504,8.693603,16.65657,8.693603,19.68504,2.445076,-19.68504,2.445076,19.68504,4.89015,-19.68504,4.89015,19.68504,19.68504,19.68504,18.34789,16.65657,19.68504,16.65657,18.34789,-4.5427,11.13868,-7.57117,11.13868,-4.5427,13.58375,-7.57117,13.58375,7.57117,0,4.5427,0,7.57117,13.58375,4.5427,13.58375,-19.68504,20.70473,19.68504,20.70473,-19.68504,19.68504,-16.65657,19.68504,-7.57117,19.68504,-4.542701,19.68504,4.5427,19.68504,7.57117,19.68504,16.65657,19.68504,19.68504,19.68504,18.34789,0,18.34789,13.58375,19.68504,0,19.68504,13.58375,19.68504,2.445076,19.68504,4.89015,19.68504,8.693603,19.68504,11.13868,-7.57117,2.445076,-16.65657,2.445076,-7.57117,4.89015,-16.65657,4.89015,-19.68504,19.68504,-16.65657,19.68504,-19.68504,18.34789,-16.65657,18.34789,-16.65657,7.779884E-12,-19.68504,7.779884E-12,-16.65657,2.445076,-19.68504,2.445076,-18.34789,13.58375,-18.34789,9.154843E-31,-19.68504,13.58375,-19.68504,9.154843E-31,-19.68504,11.13868,-19.68504,8.693603,-19.68504,4.89015,-19.68504,2.445076,-4.5427,19.68504,-4.5427,18.34789,-7.57117,19.68504,-7.57117,18.34789,-4.5427,4.89015,-7.57117,4.89015,-4.5427,8.693603,-7.57117,8.693603,16.65657,8.693603,7.57117,8.693603,16.65657,11.13868,7.57117,11.13868,-16.65657,4.89015,-19.68504,4.89015,-16.65657,8.693603,-19.68504,8.693603,-16.65657,0,-19.68504,0,-16.65657,13.58375,-19.68504,13.58375,19.68504,-1.28859E-26,16.65657,-1.28859E-26,19.68504,2.445076,16.65657,2.445076,-4.5427,0,-7.57117,0,-4.5427,2.445076,-7.57117,2.445076,4.5427,8.693603,-4.542701,8.693603,4.5427,11.13868,-4.542701,11.13868,16.65657,2.445076,7.57117,2.445076,16.65657,4.89015,7.57117,4.89015,-19.68504,20.70473,19.68504,20.70473,-19.68504,19.68504,-16.65657,19.68504,-7.57117,19.68504,-4.542701,19.68504,4.5427,19.68504,7.57117,19.68504,16.65657,19.68504,19.68504,19.68504,19.68504,2.445076,19.68504,4.89015,20.70473,2.445076,20.70473,4.89015,4.5427,19.68504,7.57117,19.68504,4.5427,18.34789,7.57117,18.34789,19.68504,8.693603,19.68504,11.13868,20.70473,8.693603,20.70473,11.13868,16.65657,19.68504,19.68504,19.68504,16.65657,18.34789,19.68504,18.34789,19.68504,0,16.65657,0,19.68504,13.58375,16.65657,13.58375,18.34789,0,18.34789,13.58375,19.68504,0,19.68504,13.58375,19.68504,2.445076,19.68504,4.89015,19.68504,8.693603,19.68504,11.13868,18.34789,1.830066E-30,18.34789,13.58375,19.68504,1.830066E-30,19.68504,13.58375,19.68504,2.445076,19.68504,4.89015,19.68504,8.693603,19.68504,11.13868,4.5427,2.445076,-4.542701,2.445076,4.5427,4.89015,-4.542701,4.89015,-7.57117,8.693603,-16.65657,8.693603,-7.57117,11.13868,-16.65657,11.13868,7.57117,0,4.542701,0,7.57117,2.445076,4.542701,2.445076,-18.34789,13.58375,-18.34789,3.35676E-30,-19.68504,13.58375,-19.68504,3.35676E-30,-19.68504,11.13868,-19.68504,8.693603,-19.68504,4.89015,-19.68504,2.445076,-4.542701,0,-7.57117,0,-4.542701,13.58375,-7.57117,13.58375,18.34789,-1.527125E-29,18.34789,13.58375,19.68504,-1.527125E-29,19.68504,13.58375,19.68504,2.445076,19.68504,4.89015,19.68504,8.693603,19.68504,11.13868,7.57117,11.13868,4.542701,11.13868,7.57117,13.58375,4.542701,13.58375,19.68504,11.13868,16.65657,11.13868,19.68504,13.58375,16.65657,13.58375,7.57117,4.89015,4.542701,4.89015,7.57117,8.693603,4.542701,8.693603,-7.57117,19.68504,-4.542701,19.68504,-7.57117,18.34789,-4.542701,18.34789,-19.68504,4.89015,-19.68504,2.445076,-20.70473,4.89015,-20.70473,2.445076,-19.68504,-1.143939E-21,-19.68504,8.693603,-19.68504,11.13868,-19.68504,13.58375,-18.34789,-1.143939E-21,-18.34789,13.58375,19.68504,20.70473,19.68504,19.68504,-19.68504,20.70473,16.65657,19.68504,7.57117,19.68504,4.542701,19.68504,-4.5427,19.68504,-7.57117,19.68504,-16.65657,19.68504,-19.68504,19.68504,-18.34789,13.58375,-18.34789,-1.525808E-30,-19.68504,13.58375,-19.68504,-1.525808E-30,-19.68504,11.13868,-19.68504,8.693603,-19.68504,4.89015,-19.68504,2.445076,-16.65657,11.13868,-19.68504,11.13868,-16.65657,13.58375,-19.68504,13.58375,19.68504,8.693603,-19.68504,8.693603,19.68504,11.13868,-19.68504,11.13868,19.68504,20.70473,19.68504,19.68504,-19.68504,20.70473,16.65657,19.68504,7.57117,19.68504,4.542701,19.68504,-4.5427,19.68504,-7.57117,19.68504,-16.65657,19.68504,-19.68504,19.68504,-16.65657,19.68504,-16.65657,18.34789,-19.68504,19.68504,-19.68504,18.34789,-19.68504,11.13868,-19.68504,8.693603,-20.70473,11.13868,-20.70473,8.693603,7.57117,19.68504,7.57117,18.34789,4.542701,19.68504,4.542701,18.34789 + } + UVIndex: *456 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,21,23,25,21,24,26,21,25,27,21,26,28,21,27,29,21,28,30,32,31,33,31,32,34,33,32,35,33,34,36,33,35,37,33,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,53,52,55,53,54,56,53,55,57,53,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,95,97,99,95,98,100,95,99,101,95,100,102,95,101,103,95,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,127,126,129,127,128,130,127,129,131,127,130,132,134,133,135,133,134,136,135,134,137,135,136,138,135,137,139,135,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,155,154,157,155,156,158,155,157,159,155,158,160,162,161,163,161,162,164,166,165,167,165,166,168,167,166,169,167,168,170,167,169,171,167,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,189,192,188,188,192,193,193,192,194,194,192,195,192,196,195,197,195,196,198,200,199,201,199,200,202,201,200,203,202,200,204,203,200,205,204,200,206,205,200,207,206,200,208,210,209,211,209,210,212,211,210,213,211,212,214,211,213,215,211,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,227,226,229,228,226,230,229,226,231,230,226,232,231,226,233,232,226,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *152 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_planksDouble, Model::RootNode + C: "OO",5014334239838921113,0 + + ;Geometry::, Model::Mesh fence_planksDouble + C: "OO",4840161745401185692,5014334239838921113 + + ;Material::wood, Model::Mesh fence_planksDouble + C: "OO",3044,5014334239838921113 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_planksDouble.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_planksDouble.fbx.import new file mode 100644 index 0000000..aaf7f98 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_planksDouble.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b16w6myjn270g" +path="res://.godot/imported/fence_planksDouble.fbx-76e0eacb27c32d5722df5b0cfe860a0e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_planksDouble.fbx" +dest_files=["res://.godot/imported/fence_planksDouble.fbx-76e0eacb27c32d5722df5b0cfe860a0e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simple.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_simple.fbx new file mode 100644 index 0000000..6c60de0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simple.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 20 + Millisecond: 915 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_simple.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_simple.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4773669450842487390, "Model::fence_simple", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5702962654198846829, "Geometry::", "Mesh" { + Vertices: *288 { + a: 4.3,2.208175,4.7795,4.3,2.208175,4.5205,-4.3,2.208175,4.7795,-4.3,2.208175,4.5205,4.3,0.6210492,4.7795,4.3,0.6210492,4.5205,-4.3,0.6210492,4.7795,-4.3,0.6210492,4.5205,-4.3,0,5,-5,0,5,-4.3,3.450273,5,-5,3.450273,5,5,0,5,4.3,0,5,5,3.450273,5,4.3,3.450273,5,4.3,1.242098,4.5205,4.3,1.242098,4.7795,-4.3,1.242098,4.5205,-4.3,1.242098,4.7795,4.3,0,4.3,5,0,4.3,4.3,3.450273,4.3,5,3.450273,4.3,-4.3,3.450273,4.3,-4.3,3.450273,5,-5,3.450273,4.3,-5,3.450273,5,5,0,5,5,0,4.3,4.3,0,5,4.3,0,4.3,-4.3,0,5,-4.3,0,4.3,-5,0,5,-5,0,4.3,4.3,2.829224,4.5205,4.3,2.829224,4.7795,-4.3,2.829224,4.5205,-4.3,2.829224,4.7795,-4.3,0,4.3,-4.3,2.829224,4.5205,-4.3,3.450273,4.3,-4.3,3.450273,5,-4.3,2.829224,4.7795,-4.3,2.208175,4.7795,-4.3,1.242098,4.7795,-4.3,0.6210492,4.7795,-4.3,0.6210492,4.5205,-4.3,0,5,-4.3,2.208175,4.5205,-4.3,1.242098,4.5205,5,3.450273,4.3,5,3.450273,5,4.3,3.450273,4.3,4.3,3.450273,5,5,3.450273,4.3,5,0,4.3,5,3.450273,5,5,0,5,-5,0,4.3,-4.3,0,4.3,-5,3.450273,4.3,-4.3,3.450273,4.3,-5,0,4.3,-5,3.450273,4.3,-5,0,5,-5,3.450273,5,4.3,3.450273,4.3,4.3,0.6210492,4.5205,4.3,0,4.3,4.3,0,5,4.3,0.6210492,4.7795,4.3,1.242098,4.7795,4.3,2.208175,4.7795,4.3,2.829224,4.7795,4.3,2.829224,4.5205,4.3,3.450273,5,4.3,1.242098,4.5205,4.3,2.208175,4.5205,-4.3,0.6210492,4.5205,4.3,0.6210492,4.5205,-4.3,1.242098,4.5205,4.3,1.242098,4.5205,4.3,2.208175,4.7795,-4.3,2.208175,4.7795,4.3,2.829224,4.7795,-4.3,2.829224,4.7795,-4.3,2.208175,4.5205,4.3,2.208175,4.5205,-4.3,2.829224,4.5205,4.3,2.829224,4.5205,4.3,0.6210492,4.7795,-4.3,0.6210492,4.7795,4.3,1.242098,4.7795,-4.3,1.242098,4.7795 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,45,-44,47,46,-44,41,48,-41,49,40,-49,47,49,-49,43,49,-48,50,48,-42,51,48,-51,50,45,-52,46,51,-46,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,69,-72,73,72,-72,74,73,-72,75,74,-72,69,76,-69,77,68,-77,75,77,-77,71,77,-76,78,76,-70,79,76,-79,78,73,-80,74,79,-74,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: 16.92913,18.81693,16.92913,17.79725,-16.92913,18.81693,-16.92913,17.79725,16.92913,18.81693,16.92913,17.79725,-16.92913,18.81693,-16.92913,17.79725,-16.92913,0,-19.68504,0,-16.92913,13.58375,-19.68504,13.58375,19.68504,0,16.92913,0,19.68504,13.58375,16.92913,13.58375,-16.92913,17.79725,-16.92913,18.81693,16.92913,17.79725,16.92913,18.81693,-16.92913,0,-19.68504,0,-16.92913,13.58375,-19.68504,13.58375,16.92913,16.92913,16.92913,19.68504,19.68504,16.92913,19.68504,19.68504,19.68504,19.68504,19.68504,16.92913,16.92913,19.68504,16.92913,16.92913,-16.92913,19.68504,-16.92913,16.92913,-19.68504,19.68504,-19.68504,16.92913,-16.92913,17.79725,-16.92913,18.81693,16.92913,17.79725,16.92913,18.81693,-16.92913,0,-17.79725,11.13868,-16.92913,13.58375,-19.68504,13.58375,-18.81693,11.13868,-18.81693,8.693603,-18.81693,4.89015,-18.81693,2.445076,-17.79725,2.445076,-19.68504,0,-17.79725,8.693603,-17.79725,4.89015,-19.68504,16.92913,-19.68504,19.68504,-16.92913,16.92913,-16.92913,19.68504,-16.92913,13.58375,-16.92913,2.059381E-14,-19.68504,13.58375,-19.68504,2.059381E-14,19.68504,0,16.92913,0,19.68504,13.58375,16.92913,13.58375,16.92913,0,16.92913,13.58375,19.68504,0,19.68504,13.58375,16.92913,13.58375,17.79725,2.445076,16.92913,0,19.68504,0,18.81693,2.445076,18.81693,4.89015,18.81693,8.693603,18.81693,11.13868,17.79725,11.13868,19.68504,13.58375,17.79725,4.89015,17.79725,8.693603,16.92913,2.445076,-16.92913,2.445076,16.92913,4.89015,-16.92913,4.89015,16.92913,8.693603,-16.92913,8.693603,16.92913,11.13868,-16.92913,11.13868,16.92913,8.693603,-16.92913,8.693603,16.92913,11.13868,-16.92913,11.13868,16.92913,2.445076,-16.92913,2.445076,16.92913,4.89015,-16.92913,4.89015 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,46,45,43,47,46,43,41,48,40,49,40,48,47,49,48,43,49,47,50,48,41,51,48,50,50,45,51,46,51,45,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,69,71,73,72,71,74,73,71,75,74,71,69,76,68,77,68,76,75,77,76,71,77,75,78,76,69,79,76,78,78,73,79,74,79,73,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_simple, Model::RootNode + C: "OO",4773669450842487390,0 + + ;Geometry::, Model::Mesh fence_simple + C: "OO",5702962654198846829,4773669450842487390 + + ;Material::wood, Model::Mesh fence_simple + C: "OO",3044,4773669450842487390 + + ;Material::woodDark, Model::Mesh fence_simple + C: "OO",3052,4773669450842487390 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simple.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_simple.fbx.import new file mode 100644 index 0000000..36c581f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simple.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bbyjuvjkb4wns" +path="res://.godot/imported/fence_simple.fbx-d3b27217d94a181a9e6a433d10f04a5d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_simple.fbx" +dest_files=["res://.godot/imported/fence_simple.fbx-d3b27217d94a181a9e6a433d10f04a5d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleCenter.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleCenter.fbx new file mode 100644 index 0000000..a165ead --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleCenter.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 10 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_simpleCenter.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_simpleCenter.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4616434632224118609, "Model::fence_simpleCenter", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4717711873273376566, "Geometry::", "Mesh" { + Vertices: *504 { + a: -4.3,0,5,-4.3,0,4.3,-5,0,5,-5,0,4.3,-5,0,4.3,-5,3.450273,4.3,-5,0,5,-5,3.450273,5,-0.3499999,3.450273,4.3,-0.3499999,0.6210492,4.5205,-0.3499999,0,4.3,-0.3499999,0,5,-0.3499999,0.6210492,4.7795,-0.3499999,1.242098,4.7795,-0.3499999,2.208175,4.7795,-0.3499999,2.829224,4.7795,-0.3499999,2.829224,4.5205,-0.3499999,3.450273,5,-0.3499999,1.242098,4.5205,-0.3499999,2.208175,4.5205,-0.3499999,1.242098,4.5205,-0.3499999,1.242098,4.7795,-4.3,1.242098,4.5205,-4.3,1.242098,4.7795,5,3.450273,4.3,5,3.450273,5,4.3,3.450273,4.3,4.3,3.450273,5,-4.3,0,5,-5,0,5,-4.3,3.450273,5,-5,3.450273,5,-0.3499999,2.208175,4.7795,-0.3499999,2.208175,4.5205,-4.3,2.208175,4.7795,-4.3,2.208175,4.5205,5,0,5,4.3,0,5,5,3.450273,5,4.3,3.450273,5,-4.3,0,4.3,-4.3,2.829224,4.5205,-4.3,3.450273,4.3,-4.3,3.450273,5,-4.3,2.829224,4.7795,-4.3,2.208175,4.7795,-4.3,1.242098,4.7795,-4.3,0.6210492,4.7795,-4.3,0.6210492,4.5205,-4.3,0,5,-4.3,2.208175,4.5205,-4.3,1.242098,4.5205,0.349999,0,4.3,0.349999,2.829224,4.5205,0.349999,3.450273,4.3,0.349999,3.450273,5,0.349999,2.829224,4.7795,0.349999,2.208175,4.7795,0.349999,1.242098,4.7795,0.349999,0.6210492,4.7795,0.349999,0.6210492,4.5205,0.349999,0,5,0.349999,2.208175,4.5205,0.349999,1.242098,4.5205,5,3.450273,4.3,5,0,4.3,5,3.450273,5,5,0,5,4.3,1.242098,4.5205,4.3,1.242098,4.7795,0.349999,1.242098,4.5205,0.349999,1.242098,4.7795,-5,0,4.3,-4.3,0,4.3,-5,3.450273,4.3,-4.3,3.450273,4.3,0.349999,0,5,-0.3499999,0,5,0.349999,3.450273,5,-0.3499999,3.450273,5,5,0,5,5,0,4.3,4.3,0,5,4.3,0,4.3,-4.3,3.450273,4.3,-4.3,3.450273,5,-5,3.450273,4.3,-5,3.450273,5,4.3,2.829224,4.5205,4.3,2.829224,4.7795,0.349999,2.829224,4.5205,0.349999,2.829224,4.7795,-0.3499999,2.829224,4.5205,-0.3499999,2.829224,4.7795,-4.3,2.829224,4.5205,-4.3,2.829224,4.7795,4.3,2.208175,4.7795,4.3,2.208175,4.5205,0.349999,2.208175,4.7795,0.349999,2.208175,4.5205,-0.3499999,0,4.3,0.349999,0,4.3,-0.3499999,3.450273,4.3,0.349999,3.450273,4.3,4.3,0,4.3,5,0,4.3,4.3,3.450273,4.3,5,3.450273,4.3,4.3,0.6210492,4.7795,4.3,0.6210492,4.5205,0.349999,0.6210492,4.7795,0.349999,0.6210492,4.5205,0.349999,3.450273,4.3,0.349999,3.450273,5,-0.3499999,3.450273,4.3,-0.3499999,3.450273,5,0.349999,0,5,0.349999,0,4.3,-0.3499999,0,5,-0.3499999,0,4.3,-0.3499999,0.6210492,4.7795,-0.3499999,0.6210492,4.5205,-4.3,0.6210492,4.7795,-4.3,0.6210492,4.5205,-0.3499999,0.6210492,4.7795,-4.3,0.6210492,4.7795,-0.3499999,1.242098,4.7795,-4.3,1.242098,4.7795,4.3,2.208175,4.7795,0.349999,2.208175,4.7795,4.3,2.829224,4.7795,0.349999,2.829224,4.7795,0.349999,2.208175,4.5205,4.3,2.208175,4.5205,0.349999,2.829224,4.5205,4.3,2.829224,4.5205,4.3,1.242098,4.5205,4.3,2.208175,4.5205,4.3,1.242098,4.7795,4.3,2.208175,4.7795,4.3,0,5,4.3,0.6210492,4.7795,4.3,0.6210492,4.5205,4.3,0,4.3,4.3,3.450273,4.3,4.3,2.829224,4.7795,4.3,2.829224,4.5205,4.3,3.450273,5,-4.3,2.208175,4.5205,-0.3499999,2.208175,4.5205,-4.3,2.829224,4.5205,-0.3499999,2.829224,4.5205,-0.3499999,2.208175,4.7795,-4.3,2.208175,4.7795,-0.3499999,2.829224,4.7795,-4.3,2.829224,4.7795,0.349999,0.6210492,4.5205,4.3,0.6210492,4.5205,0.349999,1.242098,4.5205,4.3,1.242098,4.5205,-4.3,0.6210492,4.5205,-0.3499999,0.6210492,4.5205,-4.3,1.242098,4.5205,-0.3499999,1.242098,4.5205,4.3,0.6210492,4.7795,0.349999,0.6210492,4.7795,4.3,1.242098,4.7795,0.349999,1.242098,4.7795 + } + PolygonVertexIndex: *348 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,14,13,-12,15,14,-12,9,16,-9,17,8,-17,15,17,-17,11,17,-16,18,16,-10,19,16,-19,18,13,-20,14,19,-14,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,45,-44,47,46,-44,41,48,-41,49,40,-49,47,49,-49,43,49,-48,50,48,-42,51,48,-51,50,45,-52,46,51,-46,52,54,-54,55,53,-55,56,53,-56,57,56,-56,58,57,-56,59,58,-56,53,60,-53,61,52,-61,59,61,-61,55,61,-60,62,60,-54,63,60,-63,62,57,-64,58,63,-58,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,139,138,-141,138,141,-141,141,142,-141,140,142,-144,144,143,-143,145,139,-141,142,146,-145,136,146,-143,137,146,-137,147,144,-147,145,147,-147,140,147,-146,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1044 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-0.9486833,0,0.3162278,-1,0,0,-1,0,0,-1,0,0,-0.9486833,0,0.3162278,-1,0,0,-0.9486833,0,0.3162278,-1,0,0,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,-1,0,0,-0.9486833,0,0.3162278,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9486833,0,0.3162278,-0.9486833,0,0.3162278,0,0,1,0,0,1,0,0,1,-0.9486833,0,0.3162278 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *336 { + a: -16.92913,19.68504,-16.92913,16.92913,-19.68504,19.68504,-19.68504,16.92913,16.92913,-2.059381E-14,16.92913,13.58375,19.68504,-2.059381E-14,19.68504,13.58375,16.92913,13.58375,17.79725,2.445076,16.92913,0,19.68504,0,18.81693,2.445076,18.81693,4.89015,18.81693,8.693603,18.81693,11.13868,17.79725,11.13868,19.68504,13.58375,17.79725,4.89015,17.79725,8.693603,1.377952,17.79725,1.377952,18.81693,16.92913,17.79725,16.92913,18.81693,-19.68504,16.92913,-19.68504,19.68504,-16.92913,16.92913,-16.92913,19.68504,-16.92913,1.029691E-14,-19.68504,1.029691E-14,-16.92913,13.58375,-19.68504,13.58375,-1.377952,18.81693,-1.377952,17.79725,-16.92913,18.81693,-16.92913,17.79725,19.68504,1.029691E-14,16.92913,1.029691E-14,19.68504,13.58375,16.92913,13.58375,-16.92913,0,-17.79725,11.13868,-16.92913,13.58375,-19.68504,13.58375,-18.81693,11.13868,-18.81693,8.693603,-18.81693,4.89015,-18.81693,2.445076,-17.79725,2.445076,-19.68504,0,-17.79725,8.693603,-17.79725,4.89015,-16.92913,0,-17.79725,11.13868,-16.92913,13.58375,-19.68504,13.58375,-18.81693,11.13868,-18.81693,8.693603,-18.81693,4.89015,-18.81693,2.445076,-17.79725,2.445076,-19.68504,0,-17.79725,8.693603,-17.79725,4.89015,-16.92913,13.58375,-16.92913,0,-19.68504,13.58375,-19.68504,0,-16.92913,17.79725,-16.92913,18.81693,-1.377949,17.79725,-1.377949,18.81693,19.68504,0,16.92913,0,19.68504,13.58375,16.92913,13.58375,1.377949,0,-1.377952,0,1.377949,13.58375,-1.377952,13.58375,19.68504,19.68504,19.68504,16.92913,16.92913,19.68504,16.92913,16.92913,16.92913,16.92913,16.92913,19.68504,19.68504,16.92913,19.68504,19.68504,-16.92913,17.79725,-16.92913,18.81693,-1.377949,17.79725,-1.377949,18.81693,1.377952,17.79725,1.377952,18.81693,16.92913,17.79725,16.92913,18.81693,16.92913,18.81693,16.92913,17.79725,1.377949,18.81693,1.377949,17.79725,1.377952,0,-1.377949,0,1.377952,13.58375,-1.377949,13.58375,-16.92913,0,-19.68504,0,-16.92913,13.58375,-19.68504,13.58375,16.92913,18.81693,16.92913,17.79725,1.377949,18.81693,1.377949,17.79725,-1.377949,16.92913,-1.377949,19.68504,1.377952,16.92913,1.377952,19.68504,1.377949,19.68504,1.377949,16.92913,-1.377952,19.68504,-1.377952,16.92913,-1.377952,18.81693,-1.377952,17.79725,-16.92913,18.81693,-16.92913,17.79725,-1.377952,2.445076,-16.92913,2.445076,-1.377952,4.89015,-16.92913,4.89015,16.92913,8.693603,1.377949,8.693603,16.92913,11.13868,1.377949,11.13868,-1.377949,8.693603,-16.92913,8.693603,-1.377949,11.13868,-16.92913,11.13868,17.79725,4.89015,17.79725,8.693603,18.81693,4.89015,18.81693,8.693603,19.68504,0,18.81693,2.445076,17.79725,2.445076,16.92913,0,16.92913,13.58375,18.81693,11.13868,17.79725,11.13868,19.68504,13.58375,16.92913,8.693603,1.377952,8.693603,16.92913,11.13868,1.377952,11.13868,-1.377952,8.693603,-16.92913,8.693603,-1.377952,11.13868,-16.92913,11.13868,-1.377949,2.445076,-16.92913,2.445076,-1.377949,4.89015,-16.92913,4.89015,16.92913,2.445076,1.377952,2.445076,16.92913,4.89015,1.377952,4.89015,16.92913,2.445076,1.377949,2.445076,16.92913,4.89015,1.377949,4.89015 + } + UVIndex: *348 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,14,13,11,15,14,11,9,16,8,17,8,16,15,17,16,11,17,15,18,16,9,19,16,18,18,13,19,14,19,13,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,46,45,43,47,46,43,41,48,40,49,40,48,47,49,48,43,49,47,50,48,41,51,48,50,50,45,51,46,51,45,52,54,53,55,53,54,56,53,55,57,56,55,58,57,55,59,58,55,53,60,52,61,52,60,59,61,60,55,61,59,62,60,53,63,60,62,62,57,63,58,63,57,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,139,138,140,138,141,140,141,142,140,140,142,143,144,143,142,145,139,140,142,146,144,136,146,142,137,146,136,147,144,146,145,147,146,140,147,145,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *116 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_simpleCenter, Model::RootNode + C: "OO",4616434632224118609,0 + + ;Geometry::, Model::Mesh fence_simpleCenter + C: "OO",4717711873273376566,4616434632224118609 + + ;Material::wood, Model::Mesh fence_simpleCenter + C: "OO",3044,4616434632224118609 + + ;Material::woodDark, Model::Mesh fence_simpleCenter + C: "OO",3052,4616434632224118609 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleCenter.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleCenter.fbx.import new file mode 100644 index 0000000..265445e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleCenter.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://csdny85l6g6cg" +path="res://.godot/imported/fence_simpleCenter.fbx-9d460ba967c6039e86e935ddccf8965b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_simpleCenter.fbx" +dest_files=["res://.godot/imported/fence_simpleCenter.fbx-9d460ba967c6039e86e935ddccf8965b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonal.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonal.fbx new file mode 100644 index 0000000..4612844 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonal.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 102 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_simpleDiagonal.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_simpleDiagonal.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5594191553681142142, "Model::fence_simpleDiagonal", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5411466672247414447, "Geometry::", "Mesh" { + Vertices: *360 { + a: -4.3,3.450273,-5,-4.3,3.450273,-4.3,-5,3.450273,-5,-5,3.450273,-4.3,4.483141,1.242098,4.3,4.3,1.242098,4.3,-4.3,1.242098,-4.483141,4.3,1.242098,4.48314,-4.3,1.242098,-4.3,-4.48314,1.242098,-4.3,4.3,0.6210492,4.48314,4.3,0.6210492,4.3,-4.48314,0.6210492,-4.3,-4.3,0.6210492,-4.3,-4.3,0.6210492,-4.483141,4.483141,0.6210492,4.3,5,3.450273,4.3,5,3.450273,5,4.3,3.450273,4.3,4.3,3.450273,5,4.3,0,4.3,4.3,0.6210492,4.3,4.3,0,5,4.3,0.6210492,4.48314,4.3,1.242098,4.48314,4.3,2.208175,4.48314,4.3,2.829224,4.48314,4.3,3.450273,5,4.3,3.450273,4.3,4.3,2.829224,4.3,4.3,2.208175,4.3,4.3,1.242098,4.3,5,0,5,5,0,4.3,4.3,0,5,4.3,0,4.3,4.3,1.242098,4.3,4.483141,1.242098,4.3,4.3,2.208175,4.3,4.483141,2.208175,4.3,5,3.450273,4.3,4.483141,0.6210492,4.3,5,0,4.3,4.3,0.6210492,4.3,4.3,0,4.3,4.483141,2.829224,4.3,4.3,3.450273,4.3,4.3,2.829224,4.3,-5,0,-5,-4.3,0,-5,-5,3.450273,-5,-4.3,3.450273,-5,4.3,2.208175,4.48314,4.3,2.208175,4.3,-4.48314,2.208175,-4.3,-4.3,2.208175,-4.3,-4.3,2.208175,-4.483141,4.483141,2.208175,4.3,5,0,5,4.3,0,5,5,3.450273,5,4.3,3.450273,5,4.483141,2.829224,4.3,4.3,2.829224,4.3,-4.3,2.829224,-4.483141,4.3,2.829224,4.48314,-4.3,2.829224,-4.3,-4.48314,2.829224,-4.3,-4.3,0,-4.3,-4.3,0,-5,-5,0,-4.3,-5,0,-5,-5,0,-5,-5,3.450273,-5,-5,0,-4.3,-5,3.450273,-4.3,5,3.450273,4.3,5,0,4.3,5,3.450273,5,5,0,5,-4.3,1.242098,-4.3,-4.48314,1.242098,-4.3,-4.3,2.208175,-4.3,-4.48314,2.208175,-4.3,-5,3.450273,-4.3,-4.48314,0.6210492,-4.3,-5,0,-4.3,-4.3,0.6210492,-4.3,-4.3,0,-4.3,-4.48314,2.829224,-4.3,-4.3,3.450273,-4.3,-4.3,2.829224,-4.3,-4.3,0,-5,-4.3,2.829224,-4.483141,-4.3,3.450273,-5,-4.3,3.450273,-4.3,-4.3,2.829224,-4.3,-4.3,0.6210492,-4.483141,-4.3,0,-4.3,-4.3,2.208175,-4.483141,-4.3,1.242098,-4.483141,-4.3,2.208175,-4.3,-4.3,1.242098,-4.3,-4.3,0.6210492,-4.3,-4.3,1.242098,-4.483141,-4.3,0.6210492,-4.483141,4.483141,1.242098,4.3,4.483141,0.6210492,4.3,-4.48314,0.6210492,-4.3,-4.48314,1.242098,-4.3,4.3,0.6210492,4.48314,4.3,1.242098,4.48314,-4.48314,2.208175,-4.3,-4.48314,2.829224,-4.3,4.3,2.208175,4.48314,4.3,2.829224,4.48314,-4.3,2.829224,-4.483141,-4.3,2.208175,-4.483141,4.483141,2.829224,4.3,4.483141,2.208175,4.3 + } + PolygonVertexIndex: *240 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,12,-12,13,11,-13,13,14,-12,15,11,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,24,-23,26,25,-23,22,27,-27,27,28,-27,29,26,-29,25,30,-25,31,24,-31,32,34,-34,35,33,-35,36,38,-38,38,39,-38,39,40,-38,37,40,-42,40,42,-42,41,42,-44,44,43,-43,45,40,-40,46,40,-46,47,46,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,55,56,-54,57,53,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,65,-65,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,82,83,-82,83,84,-82,81,84,-86,84,86,-86,85,86,-88,88,87,-87,89,84,-84,90,84,-90,91,90,-90,92,94,-94,95,93,-95,96,93,-96,93,97,-93,98,92,-98,99,97,-94,100,97,-100,99,101,-101,102,100,-102,103,98,-98,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *720 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: 16.92913,-19.68504,16.92913,-16.92913,19.68504,-19.68504,19.68504,-16.92913,-17.65016,16.92913,-16.92913,16.92913,16.92913,-17.65016,-16.92913,17.65016,16.92913,-16.92913,17.65016,-16.92913,16.92913,17.65016,16.92913,16.92913,-17.65016,-16.92913,-16.92913,-16.92913,-16.92913,-17.65016,17.65016,16.92913,-19.68504,16.92913,-19.68504,19.68504,-16.92913,16.92913,-16.92913,19.68504,16.92913,0,16.92913,2.445076,19.68504,0,17.65016,2.445076,17.65016,4.89015,17.65016,8.693603,17.65016,11.13868,19.68504,13.58375,16.92913,13.58375,16.92913,11.13868,16.92913,8.693603,16.92913,4.89015,19.68504,19.68504,19.68504,16.92913,16.92913,19.68504,16.92913,16.92913,-16.92913,4.89015,-17.65016,4.89015,-16.92913,8.693603,-17.65016,8.693603,-19.68504,13.58375,-17.65016,2.445076,-19.68504,0,-16.92913,2.445076,-16.92913,0,-17.65016,11.13868,-16.92913,13.58375,-16.92913,11.13868,19.68504,-4.118762E-14,16.92913,-4.118762E-14,19.68504,13.58375,16.92913,13.58375,16.92913,17.65016,16.92913,16.92913,-17.65016,-16.92913,-16.92913,-16.92913,-16.92913,-17.65016,17.65016,16.92913,19.68504,0,16.92913,0,19.68504,13.58375,16.92913,13.58375,-17.65016,16.92913,-16.92913,16.92913,16.92913,-17.65016,-16.92913,17.65016,16.92913,-16.92913,17.65016,-16.92913,-16.92913,-16.92913,-16.92913,-19.68504,-19.68504,-16.92913,-19.68504,-19.68504,-19.68504,0,-19.68504,13.58375,-16.92913,0,-16.92913,13.58375,-16.92913,13.58375,-16.92913,-4.118762E-14,-19.68504,13.58375,-19.68504,-4.118762E-14,-16.92913,4.89015,-17.65016,4.89015,-16.92913,8.693603,-17.65016,8.693603,-19.68504,13.58375,-17.65016,2.445076,-19.68504,-6.225908E-29,-16.92913,2.445076,-16.92913,-6.225908E-29,-17.65016,11.13868,-16.92913,13.58375,-16.92913,11.13868,19.68504,0,17.65016,11.13868,19.68504,13.58375,16.92913,13.58375,16.92913,11.13868,17.65016,2.445076,16.92913,0,17.65016,8.693603,17.65016,4.89015,16.92913,8.693603,16.92913,4.89015,16.92913,2.445076,24.45125,4.89015,24.45125,2.445076,-24.45125,4.89015,-24.45125,2.445076,-24.45125,2.445076,-24.45125,4.89015,24.45125,2.445076,24.45125,4.89015,-24.45125,8.693603,-24.45125,11.13868,24.45125,8.693603,24.45125,11.13868,24.45125,11.13868,24.45125,8.693603,-24.45125,11.13868,-24.45125,8.693603 + } + UVIndex: *240 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,12,11,13,11,12,13,14,11,15,11,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,24,22,26,25,22,22,27,26,27,28,26,29,26,28,25,30,24,31,24,30,32,34,33,35,33,34,36,38,37,38,39,37,39,40,37,37,40,41,40,42,41,41,42,43,44,43,42,45,40,39,46,40,45,47,46,45,48,50,49,51,49,50,52,54,53,55,53,54,55,56,53,57,53,56,58,60,59,61,59,60,62,64,63,65,63,64,66,65,64,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,82,83,81,83,84,81,81,84,85,84,86,85,85,86,87,88,87,86,89,84,83,90,84,89,91,90,89,92,94,93,95,93,94,96,93,95,93,97,92,98,92,97,99,97,93,100,97,99,99,101,100,102,100,101,103,98,97,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *80 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_simpleDiagonal, Model::RootNode + C: "OO",5594191553681142142,0 + + ;Geometry::, Model::Mesh fence_simpleDiagonal + C: "OO",5411466672247414447,5594191553681142142 + + ;Material::wood, Model::Mesh fence_simpleDiagonal + C: "OO",3044,5594191553681142142 + + ;Material::woodDark, Model::Mesh fence_simpleDiagonal + C: "OO",3052,5594191553681142142 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonal.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonal.fbx.import new file mode 100644 index 0000000..36269c8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonal.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://djioyl4l2coug" +path="res://.godot/imported/fence_simpleDiagonal.fbx-50f736ddcfb90c21e3ef353f98d55be0.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonal.fbx" +dest_files=["res://.godot/imported/fence_simpleDiagonal.fbx-50f736ddcfb90c21e3ef353f98d55be0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonalCenter.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonalCenter.fbx new file mode 100644 index 0000000..4775029 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonalCenter.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 209 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_simpleDiagonalCenter.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_simpleDiagonalCenter.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4945520437491169195, "Model::fence_simpleDiagonalCenter", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5291988199008276016, "Geometry::", "Mesh" { + Vertices: *654 { + a: 4.483141,1.242098,4.3,4.3,1.242098,4.3,0.349999,1.242098,0.1668601,4.3,1.242098,4.48314,0.349999,1.242098,0.3499999,0.1668601,1.242098,0.3499999,-0.1668601,2.829224,-0.349999,-0.3499999,2.829224,-0.349999,-4.3,2.829224,-4.483141,-0.3499999,2.829224,-0.1668601,-4.3,2.829224,-4.3,-4.48314,2.829224,-4.3,4.3,0.6210492,4.48314,4.3,0.6210492,4.3,0.1668601,0.6210492,0.3499999,0.349999,0.6210492,0.3499999,0.349999,0.6210492,0.1668601,4.483141,0.6210492,4.3,-4.3,1.242098,-4.3,-4.48314,1.242098,-4.3,-4.3,2.208175,-4.3,-4.48314,2.208175,-4.3,-5,3.450273,-4.3,-4.48314,0.6210492,-4.3,-5,1.127987E-16,-4.3,-4.3,0.6210492,-4.3,-4.3,1.127987E-16,-4.3,-4.48314,2.829224,-4.3,-4.3,3.450273,-4.3,-4.3,2.829224,-4.3,-5,0,-5,-4.3,1.127987E-16,-5,-5,3.450273,-5,-4.3,3.450273,-5,5,0,5,5,1.127987E-16,4.3,4.3,1.127987E-16,5,4.3,1.127987E-16,4.3,5,3.450273,4.3,5,3.450273,5,4.3,3.450273,4.3,4.3,3.450273,5,-0.3499999,0,-0.349999,-0.3499999,0.6210492,-0.349999,-0.3499999,0,0.3499999,-0.3499999,0.6210492,-0.1668601,-0.3499999,1.242098,-0.1668601,-0.3499999,2.208175,-0.1668601,-0.3499999,2.829224,-0.1668601,-0.3499999,3.450273,0.3499999,-0.3499999,3.450273,-0.349999,-0.3499999,2.829224,-0.349999,-0.3499999,2.208175,-0.349999,-0.3499999,1.242098,-0.349999,4.483141,2.829224,4.3,4.3,2.829224,4.3,0.349999,2.829224,0.1668601,4.3,2.829224,4.48314,0.349999,2.829224,0.3499999,0.1668601,2.829224,0.3499999,5,3.450273,4.3,5,1.127987E-16,4.3,5,3.450273,5,5,0,5,-4.3,1.127987E-16,-5,-4.3,2.829224,-4.483141,-4.3,3.450273,-5,-4.3,3.450273,-4.3,-4.3,2.829224,-4.3,-4.3,0.6210492,-4.483141,-4.3,1.127987E-16,-4.3,-4.3,2.208175,-4.483141,-4.3,1.242098,-4.483141,-4.3,2.208175,-4.3,-4.3,1.242098,-4.3,-4.3,0.6210492,-4.3,-4.3,1.127987E-16,-4.3,-4.3,1.127987E-16,-5,-5,1.127987E-16,-4.3,-5,0,-5,4.3,1.242098,4.3,4.483141,1.242098,4.3,4.3,2.208175,4.3,4.483141,2.208175,4.3,5,3.450273,4.3,4.483141,0.6210492,4.3,5,1.127987E-16,4.3,4.3,0.6210492,4.3,4.3,1.127987E-16,4.3,4.483141,2.829224,4.3,4.3,3.450273,4.3,4.3,2.829224,4.3,-0.3499999,2.208175,-0.1668601,-0.3499999,2.208175,-0.349999,-4.48314,2.208175,-4.3,-4.3,2.208175,-4.3,-4.3,2.208175,-4.483141,-0.1668601,2.208175,-0.349999,-4.3,3.450273,-5,-4.3,3.450273,-4.3,-5,3.450273,-5,-5,3.450273,-4.3,0.349999,1.242098,0.3499999,0.1668601,1.242098,0.3499999,0.349999,2.208175,0.3499999,0.1668601,2.208175,0.3499999,-0.3499999,3.450273,0.3499999,0.1668601,0.6210492,0.3499999,-0.3499999,0,0.3499999,0.349999,0.6210492,0.3499999,0.349999,0,0.3499999,0.1668601,2.829224,0.3499999,0.349999,3.450273,0.3499999,0.349999,2.829224,0.3499999,0.349999,3.450273,-0.349999,0.349999,3.450273,0.3499999,-0.3499999,3.450273,-0.349999,-0.3499999,3.450273,0.3499999,-0.3499999,1.242098,-0.349999,-0.1668601,1.242098,-0.349999,-0.3499999,2.208175,-0.349999,-0.1668601,2.208175,-0.349999,0.349999,3.450273,-0.349999,-0.1668601,0.6210492,-0.349999,0.349999,0,-0.349999,-0.3499999,0.6210492,-0.349999,-0.3499999,0,-0.349999,-0.1668601,2.829224,-0.349999,-0.3499999,3.450273,-0.349999,-0.3499999,2.829224,-0.349999,4.3,1.127987E-16,4.3,4.3,0.6210492,4.3,4.3,1.127987E-16,5,4.3,0.6210492,4.48314,4.3,1.242098,4.48314,4.3,2.208175,4.48314,4.3,2.829224,4.48314,4.3,3.450273,5,4.3,3.450273,4.3,4.3,2.829224,4.3,4.3,2.208175,4.3,4.3,1.242098,4.3,-5,3.450273,-5,-5,3.450273,-4.3,-5,0,-5,-5,1.127987E-16,-4.3,-0.1668601,1.242098,-0.349999,-0.3499999,1.242098,-0.349999,-4.3,1.242098,-4.483141,-0.3499999,1.242098,-0.1668601,-4.3,1.242098,-4.3,-4.48314,1.242098,-4.3,5,0,5,4.3,1.127987E-16,5,5,3.450273,5,4.3,3.450273,5,4.3,2.208175,4.48314,4.3,2.208175,4.3,0.1668601,2.208175,0.3499999,0.349999,2.208175,0.3499999,0.349999,2.208175,0.1668601,4.483141,2.208175,4.3,0.349999,0,-0.349999,0.349999,2.829224,0.1668601,0.349999,3.450273,-0.349999,0.349999,3.450273,0.3499999,0.349999,2.829224,0.3499999,0.349999,0.6210492,0.1668601,0.349999,0,0.3499999,0.349999,2.208175,0.1668601,0.349999,1.242098,0.1668601,0.349999,2.208175,0.3499999,0.349999,1.242098,0.3499999,0.349999,0.6210492,0.3499999,-0.3499999,0.6210492,-0.1668601,-0.3499999,0.6210492,-0.349999,-4.48314,0.6210492,-4.3,-4.3,0.6210492,-4.3,-4.3,0.6210492,-4.483141,-0.1668601,0.6210492,-0.349999,0.349999,0,0.3499999,0.349999,0,-0.349999,-0.3499999,0,0.3499999,-0.3499999,0,-0.349999,-0.3499999,0,0.3499999,0.349999,0,-0.349999,0.349999,2.208175,0.1668601,4.483141,2.208175,4.3,0.349999,2.829224,0.1668601,4.483141,2.829224,4.3,-4.3,2.829224,-4.483141,-4.3,2.208175,-4.483141,-0.1668601,2.829224,-0.349999,-0.1668601,2.208175,-0.349999,-0.3499999,0.6210492,-0.1668601,-4.48314,0.6210492,-4.3,-0.3499999,1.242098,-0.1668601,-4.48314,1.242098,-4.3,-4.3,1.242098,-4.483141,-4.3,0.6210492,-4.483141,-0.1668601,1.242098,-0.349999,-0.1668601,0.6210492,-0.349999,0.1668601,2.208175,0.3499999,0.1668601,2.829224,0.3499999,4.3,2.208175,4.48314,4.3,2.829224,4.48314,-0.3499999,2.208175,-0.1668601,-4.48314,2.208175,-4.3,-0.3499999,2.829224,-0.1668601,-4.48314,2.829224,-4.3,0.349999,0.6210492,0.1668601,4.483141,0.6210492,4.3,0.349999,1.242098,0.1668601,4.483141,1.242098,4.3,0.1668601,0.6210492,0.3499999,0.1668601,1.242098,0.3499999,4.3,0.6210492,4.48314,4.3,1.242098,4.48314 + } + PolygonVertexIndex: *444 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,7,-9,10,9,-9,11,9,-11,12,14,-14,15,13,-15,15,16,-14,17,13,-17,18,20,-20,20,21,-20,21,22,-20,19,22,-24,22,24,-24,23,24,-26,26,25,-25,27,22,-22,28,22,-28,29,28,-28,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,45,-45,47,46,-45,48,47,-45,44,49,-49,49,50,-49,51,48,-51,47,52,-47,53,46,-53,54,56,-56,57,55,-57,58,57,-57,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,65,-68,65,69,-65,70,64,-70,71,69,-66,72,69,-72,71,73,-73,74,72,-74,75,70,-70,76,78,-78,79,77,-79,80,82,-82,82,83,-82,83,84,-82,81,84,-86,84,86,-86,85,86,-88,88,87,-87,89,84,-84,90,84,-90,91,90,-90,92,94,-94,95,93,-95,95,96,-94,97,93,-97,98,100,-100,101,99,-101,102,104,-104,104,105,-104,105,106,-104,103,106,-108,106,108,-108,107,108,-110,110,109,-109,111,106,-106,112,106,-112,113,112,-112,114,116,-116,117,115,-117,118,120,-120,120,121,-120,121,122,-120,119,122,-124,122,124,-124,123,124,-126,126,125,-125,127,122,-122,128,122,-128,129,128,-128,130,132,-132,133,131,-133,134,133,-133,135,134,-133,136,135,-133,132,137,-137,137,138,-137,139,136,-139,135,140,-135,141,134,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,149,-149,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,159,160,-158,161,157,-161,162,164,-164,165,163,-165,166,163,-166,163,167,-163,168,162,-168,169,167,-164,170,167,-170,169,171,-171,172,170,-172,173,168,-168,174,176,-176,177,175,-177,177,178,-176,179,175,-179,180,182,-182,183,185,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1332 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,-0.7071067,0,0.7071068,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067,-0.7071068,0,0.7071067 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *436 { + a: -17.65016,16.92913,-16.92913,16.92913,-1.377949,0.6569296,-16.92913,17.65016,-1.377949,1.377952,-0.6569296,1.377952,0.6569296,-1.377949,1.377952,-1.377949,16.92913,-17.65016,1.377952,-0.6569296,16.92913,-16.92913,17.65016,-16.92913,16.92913,17.65016,16.92913,16.92913,0.6569296,1.377952,1.377949,1.377952,1.377949,0.6569296,17.65016,16.92913,-16.92913,4.89015,-17.65016,4.89015,-16.92913,8.693603,-17.65016,8.693603,-19.68504,13.58375,-17.65016,2.445076,-19.68504,4.440894E-16,-16.92913,2.445076,-16.92913,4.440894E-16,-17.65016,11.13868,-16.92913,13.58375,-16.92913,11.13868,19.68504,4.118762E-14,16.92913,4.163171E-14,19.68504,13.58375,16.92913,13.58375,19.68504,19.68504,19.68504,16.92913,16.92913,19.68504,16.92913,16.92913,-19.68504,16.92913,-19.68504,19.68504,-16.92913,16.92913,-16.92913,19.68504,-1.377949,0,-1.377949,2.445076,1.377952,0,-0.6569296,2.445076,-0.6569296,4.89015,-0.6569296,8.693603,-0.6569296,11.13868,1.377952,13.58375,-1.377949,13.58375,-1.377949,11.13868,-1.377949,8.693603,-1.377949,4.89015,-17.65016,16.92913,-16.92913,16.92913,-1.377949,0.6569296,-16.92913,17.65016,-1.377949,1.377952,-0.6569296,1.377952,-16.92913,13.58375,-16.92913,4.440894E-16,-19.68504,13.58375,-19.68504,0,19.68504,4.440894E-16,17.65016,11.13868,19.68504,13.58375,16.92913,13.58375,16.92913,11.13868,17.65016,2.445076,16.92913,4.440894E-16,17.65016,8.693603,17.65016,4.89015,16.92913,8.693603,16.92913,4.89015,16.92913,2.445076,-16.92913,-16.92913,-16.92913,-19.68504,-19.68504,-16.92913,-19.68504,-19.68504,-16.92913,4.89015,-17.65016,4.89015,-16.92913,8.693603,-17.65016,8.693603,-19.68504,13.58375,-17.65016,2.445076,-19.68504,4.440894E-16,-16.92913,2.445076,-16.92913,4.440894E-16,-17.65016,11.13868,-16.92913,13.58375,-16.92913,11.13868,-1.377952,-0.6569296,-1.377952,-1.377949,-17.65016,-16.92913,-16.92913,-16.92913,-16.92913,-17.65016,-0.6569296,-1.377949,16.92913,-19.68504,16.92913,-16.92913,19.68504,-19.68504,19.68504,-16.92913,1.377949,4.89015,0.6569296,4.89015,1.377949,8.693603,0.6569296,8.693603,-1.377952,13.58375,0.6569296,2.445076,-1.377952,0,1.377949,2.445076,1.377949,0,0.6569296,11.13868,1.377949,13.58375,1.377949,11.13868,-1.377949,-1.377949,-1.377949,1.377952,1.377952,-1.377949,1.377952,1.377952,1.377952,4.89015,0.6569296,4.89015,1.377952,8.693603,0.6569296,8.693603,-1.377949,13.58375,0.6569296,2.445076,-1.377949,0,1.377952,2.445076,1.377952,0,0.6569296,11.13868,1.377952,13.58375,1.377952,11.13868,16.92913,4.440894E-16,16.92913,2.445076,19.68504,4.440894E-16,17.65016,2.445076,17.65016,4.89015,17.65016,8.693603,17.65016,11.13868,19.68504,13.58375,16.92913,13.58375,16.92913,11.13868,16.92913,8.693603,16.92913,4.89015,-19.68504,13.58375,-16.92913,13.58375,-19.68504,-4.118762E-14,-16.92913,-4.074353E-14,0.6569296,-1.377949,1.377952,-1.377949,16.92913,-17.65016,1.377952,-0.6569296,16.92913,-16.92913,17.65016,-16.92913,19.68504,-4.118762E-14,16.92913,-4.074353E-14,19.68504,13.58375,16.92913,13.58375,16.92913,17.65016,16.92913,16.92913,0.6569296,1.377952,1.377949,1.377952,1.377949,0.6569296,17.65016,16.92913,1.377949,0,-0.6569296,11.13868,1.377949,13.58375,-1.377952,13.58375,-1.377952,11.13868,-0.6569296,2.445076,-1.377952,0,-0.6569296,8.693603,-0.6569296,4.89015,-1.377952,8.693603,-1.377952,4.89015,-1.377952,2.445076,-1.377952,-0.6569296,-1.377952,-1.377949,-17.65016,-16.92913,-16.92913,-16.92913,-16.92913,-17.65016,-0.6569296,-1.377949,-0.6569296,1.377952,-1.377949,1.377952,-16.92913,17.65016,-0.6569296,1.377952,-1.377949,1.377952,-16.92913,17.65016,-1.438876,8.693603,-24.45125,8.693603,-1.438876,11.13868,-24.45125,11.13868,24.45125,11.13868,24.45125,8.693603,1.438876,11.13868,1.438876,8.693603,-1.438879,2.445076,-24.45125,2.445076,-1.438879,4.89015,-24.45125,4.89015,24.45125,4.89015,24.45125,2.445076,1.438876,4.89015,1.438876,2.445076,1.438879,8.693603,1.438879,11.13868,24.45125,8.693603,24.45125,11.13868,-1.438879,8.693603,-24.45125,8.693603,-1.438879,11.13868,-24.45125,11.13868,-1.438876,2.445076,-24.45125,2.445076,-1.438876,4.89015,-24.45125,4.89015,1.438879,2.445076,1.438879,4.89015,24.45125,2.445076,24.45125,4.89015 + } + UVIndex: *444 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,7,8,10,9,8,11,9,10,12,14,13,15,13,14,15,16,13,17,13,16,18,20,19,20,21,19,21,22,19,19,22,23,22,24,23,23,24,25,26,25,24,27,22,21,28,22,27,29,28,27,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,45,44,47,46,44,48,47,44,44,49,48,49,50,48,51,48,50,47,52,46,53,46,52,54,56,55,57,55,56,58,57,56,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,65,67,65,69,64,70,64,69,71,69,65,72,69,71,71,73,72,74,72,73,75,70,69,76,78,77,79,77,78,80,82,81,82,83,81,83,84,81,81,84,85,84,86,85,85,86,87,88,87,86,89,84,83,90,84,89,91,90,89,92,94,93,95,93,94,95,96,93,97,93,96,98,100,99,101,99,100,102,104,103,104,105,103,105,106,103,103,106,107,106,108,107,107,108,109,110,109,108,111,106,105,112,106,111,113,112,111,114,116,115,117,115,116,118,120,119,120,121,119,121,122,119,119,122,123,122,124,123,123,124,125,126,125,124,127,122,121,128,122,127,129,128,127,130,132,131,133,131,132,134,133,132,135,134,132,136,135,132,132,137,136,137,138,136,139,136,138,135,140,134,141,134,140,142,144,143,145,143,144,146,148,147,149,147,148,150,149,148,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,159,160,157,161,157,160,162,164,163,165,163,164,166,163,165,163,167,162,168,162,167,169,167,163,170,167,169,169,171,170,172,170,171,173,168,167,174,176,175,177,175,176,177,178,175,179,175,178,180,182,181,183,185,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *148 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_simpleDiagonalCenter, Model::RootNode + C: "OO",4945520437491169195,0 + + ;Geometry::, Model::Mesh fence_simpleDiagonalCenter + C: "OO",5291988199008276016,4945520437491169195 + + ;Material::wood, Model::Mesh fence_simpleDiagonalCenter + C: "OO",3044,4945520437491169195 + + ;Material::_defaultMat, Model::Mesh fence_simpleDiagonalCenter + C: "OO",3004,4945520437491169195 + + ;Material::woodDark, Model::Mesh fence_simpleDiagonalCenter + C: "OO",3052,4945520437491169195 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonalCenter.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonalCenter.fbx.import new file mode 100644 index 0000000..fe32aba --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonalCenter.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://72lddu3b5jsg" +path="res://.godot/imported/fence_simpleDiagonalCenter.fbx-e74f02b3b23a676ba4a7adae77836ee2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_simpleDiagonalCenter.fbx" +dest_files=["res://.godot/imported/fence_simpleDiagonalCenter.fbx-e74f02b3b23a676ba4a7adae77836ee2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleHigh.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleHigh.fbx new file mode 100644 index 0000000..e29bfa6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleHigh.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 291 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_simpleHigh.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_simpleHigh.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5338335804033886545, "Model::fence_simpleHigh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5723253993018558554, "Geometry::", "Mesh" { + Vertices: *216 { + a: -4.3,3.050273,4.3,-4.3,0,4.3,-4.3,3.050273,5,-4.3,0,5,-5,0,4.3,-4.3,0,4.3,-5,3.050273,4.3,-4.3,3.050273,4.3,-4.3,0,5,-4.3,0,4.3,-5,0,5,-5,0,4.3,5,0,5,4.3,0,5,5,3.050273,5,4.3,3.050273,5,5.20603,3.050273,5.206029,-5.206029,3.050273,5.206029,5.20603,3.450273,5.206029,-5.206029,3.450273,5.206029,5.20603,3.050273,4.093972,5,3.050273,5,5.20603,3.050273,5.206029,-5.206029,3.050273,5.206029,4.3,3.050273,5,4.3,3.050273,4.3,-4.3,3.050273,5,-5,3.050273,5,-5,3.050273,4.3,5,3.050273,4.3,-5.206029,3.050273,4.093972,-4.3,3.050273,4.3,4.3,0,4.3,5,0,4.3,4.3,3.050273,4.3,5,3.050273,4.3,5.20603,3.450273,4.093972,5.20603,3.050273,4.093972,5.20603,3.450273,5.206029,5.20603,3.050273,5.206029,-5.206029,3.050273,4.093972,5.20603,3.050273,4.093972,-5.206029,3.450273,4.093972,5.20603,3.450273,4.093972,-5.206029,3.050273,4.093972,-5.206029,3.450273,4.093972,-5.206029,3.050273,5.206029,-5.206029,3.450273,5.206029,5,3.050273,4.3,5,0,4.3,5,3.050273,5,5,0,5,4.3,0,4.3,4.3,3.050273,4.3,4.3,0,5,4.3,3.050273,5,5,0,5,5,0,4.3,4.3,0,5,4.3,0,4.3,5.20603,3.450273,4.093972,5.20603,3.450273,5.206029,-5.206029,3.450273,4.093972,-5.206029,3.450273,5.206029,-4.3,0,5,-5,0,5,-4.3,3.050273,5,-5,3.050273,5,-5,0,4.3,-5,3.050273,4.3,-5,0,5,-5,3.050273,5 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,21,-24,25,24,-24,26,25,-24,27,26,-24,28,27,-24,21,29,-21,30,20,-30,25,30,-30,23,30,-29,31,30,-26,26,31,-26,28,30,-32,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: -16.92913,12.00895,-16.92913,0,-19.68504,12.00895,-19.68504,0,19.68504,0,16.92913,0,19.68504,12.00895,16.92913,12.00895,-16.92913,19.68504,-16.92913,16.92913,-19.68504,19.68504,-19.68504,16.92913,19.68504,0,16.92913,0,19.68504,12.00895,16.92913,12.00895,20.49618,12.00895,-20.49618,12.00895,20.49618,13.58375,-20.49618,13.58375,20.49618,16.118,19.68504,19.68504,20.49618,20.49618,-20.49618,20.49618,16.92913,19.68504,16.92913,16.92913,-16.92913,19.68504,-19.68504,19.68504,-19.68504,16.92913,19.68504,16.92913,-20.49618,16.118,-16.92913,16.92913,-16.92913,0,-19.68504,0,-16.92913,12.00895,-19.68504,12.00895,-16.118,13.58375,-16.118,12.00895,-20.49618,13.58375,-20.49618,12.00895,20.49618,12.00895,-20.49618,12.00895,20.49618,13.58375,-20.49618,13.58375,16.118,12.00895,16.118,13.58375,20.49618,12.00895,20.49618,13.58375,-16.92913,12.00895,-16.92913,0,-19.68504,12.00895,-19.68504,0,16.92913,0,16.92913,12.00895,19.68504,0,19.68504,12.00895,19.68504,19.68504,19.68504,16.92913,16.92913,19.68504,16.92913,16.92913,-20.49618,16.118,-20.49618,20.49618,20.49618,16.118,20.49618,20.49618,-16.92913,0,-19.68504,0,-16.92913,12.00895,-19.68504,12.00895,16.92913,9.31776E-14,16.92913,12.00895,19.68504,9.31776E-14,19.68504,12.00895 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,21,23,25,24,23,26,25,23,27,26,23,28,27,23,21,29,20,30,20,29,25,30,29,23,30,28,31,30,25,26,31,25,28,30,31,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_simpleHigh, Model::RootNode + C: "OO",5338335804033886545,0 + + ;Geometry::, Model::Mesh fence_simpleHigh + C: "OO",5723253993018558554,5338335804033886545 + + ;Material::wood, Model::Mesh fence_simpleHigh + C: "OO",3044,5338335804033886545 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleHigh.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleHigh.fbx.import new file mode 100644 index 0000000..47eaf49 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleHigh.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bajb7dot88v6q" +path="res://.godot/imported/fence_simpleHigh.fbx-bd134e39fb34de3325ed271e39edcc47.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_simpleHigh.fbx" +dest_files=["res://.godot/imported/fence_simpleHigh.fbx-bd134e39fb34de3325ed271e39edcc47.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleLow.fbx b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleLow.fbx new file mode 100644 index 0000000..8f360da --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleLow.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 372 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "fence_simpleLow.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "fence_simpleLow.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4696472232255826290, "Model::fence_simpleLow", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4689923548564298037, "Geometry::", "Mesh" { + Vertices: *216 { + a: 4.3,-2.003707E-31,5,4.3,1.550273,5,5,0,5,5,1.550273,5,5,1.550273,4.3,5,-2.003707E-31,4.3,5,1.550273,5,5,0,5,5.20603,1.950273,4.093972,5.20603,1.550273,4.093972,5.20603,1.950273,5.206029,5.20603,1.550273,5.206029,5.20603,1.950273,4.093972,5.20603,1.950273,5.206029,-5.206029,1.950273,4.093972,-5.206029,1.950273,5.206029,4.3,-2.003707E-31,4.3,4.3,1.550273,4.3,4.3,-2.003707E-31,5,4.3,1.550273,5,4.3,-2.003707E-31,4.3,5,-2.003707E-31,4.3,4.3,1.550273,4.3,5,1.550273,4.3,-4.3,-2.003707E-31,5,-4.3,-2.003707E-31,4.3,-5,0,5,-5,-2.003707E-31,4.3,-4.3,-2.003707E-31,5,-5,0,5,-4.3,1.550273,5,-5,1.550273,5,-5,-2.003707E-31,4.3,-4.3,-2.003707E-31,4.3,-5,1.550273,4.3,-4.3,1.550273,4.3,-4.3,1.550273,4.3,-4.3,-2.003707E-31,4.3,-4.3,1.550273,5,-4.3,-2.003707E-31,5,5,0,5,5,-2.003707E-31,4.3,4.3,-2.003707E-31,5,4.3,-2.003707E-31,4.3,-5.206029,1.550273,4.093972,-5.206029,1.950273,4.093972,-5.206029,1.550273,5.206029,-5.206029,1.950273,5.206029,-5.206029,1.550273,4.093972,5.20603,1.550273,4.093972,-5.206029,1.950273,4.093972,5.20603,1.950273,4.093972,5.20603,1.550273,5.206029,-5.206029,1.550273,5.206029,5.20603,1.950273,5.206029,-5.206029,1.950273,5.206029,-5,-2.003707E-31,4.3,-5,1.550273,4.3,-5,0,5,-5,1.550273,5,5.20603,1.550273,4.093972,5,1.550273,5,5.20603,1.550273,5.206029,-5.206029,1.550273,5.206029,4.3,1.550273,5,4.3,1.550273,4.3,-4.3,1.550273,5,-5,1.550273,5,-5,1.550273,4.3,5,1.550273,4.3,-5.206029,1.550273,4.093972,-4.3,1.550273,4.3 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,61,-64,65,64,-64,66,65,-64,67,66,-64,68,67,-64,61,69,-61,70,60,-70,65,70,-70,63,70,-69,71,70,-66,66,71,-66,68,70,-72 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 16.92913,-7.888609E-31,16.92913,6.103437,19.68504,0,19.68504,6.103437,-16.92913,6.103437,-16.92913,-7.888609E-31,-19.68504,6.103437,-19.68504,0,-16.118,7.67824,-16.118,6.103437,-20.49618,7.67824,-20.49618,6.103437,-20.49618,16.118,-20.49618,20.49618,20.49618,16.118,20.49618,20.49618,16.92913,-7.888609E-31,16.92913,6.103437,19.68504,-7.888609E-31,19.68504,6.103437,-16.92913,-7.888609E-31,-19.68504,-7.888609E-31,-16.92913,6.103437,-19.68504,6.103437,-16.92913,19.68504,-16.92913,16.92913,-19.68504,19.68504,-19.68504,16.92913,-16.92913,-7.888609E-31,-19.68504,0,-16.92913,6.103437,-19.68504,6.103437,19.68504,-7.888609E-31,16.92913,-7.888609E-31,19.68504,6.103437,16.92913,6.103437,-16.92913,6.103437,-16.92913,-7.888609E-31,-19.68504,6.103437,-19.68504,-7.888609E-31,19.68504,19.68504,19.68504,16.92913,16.92913,19.68504,16.92913,16.92913,16.118,6.103437,16.118,7.67824,20.49618,6.103437,20.49618,7.67824,20.49618,6.103437,-20.49618,6.103437,20.49618,7.67824,-20.49618,7.67824,20.49618,6.103437,-20.49618,6.103437,20.49618,7.67824,-20.49618,7.67824,16.92913,1.833336E-13,16.92913,6.103437,19.68504,1.833336E-13,19.68504,6.103437,20.49618,16.118,19.68504,19.68504,20.49618,20.49618,-20.49618,20.49618,16.92913,19.68504,16.92913,16.92913,-16.92913,19.68504,-19.68504,19.68504,-19.68504,16.92913,19.68504,16.92913,-20.49618,16.118,-16.92913,16.92913 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,61,63,65,64,63,66,65,63,67,66,63,68,67,63,61,69,60,70,60,69,65,70,69,63,70,68,71,70,65,66,71,65,68,70,71 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh fence_simpleLow, Model::RootNode + C: "OO",4696472232255826290,0 + + ;Geometry::, Model::Mesh fence_simpleLow + C: "OO",4689923548564298037,4696472232255826290 + + ;Material::wood, Model::Mesh fence_simpleLow + C: "OO",3044,4696472232255826290 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleLow.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleLow.fbx.import new file mode 100644 index 0000000..0fe7101 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/fence_simpleLow.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://csh531tamyqgh" +path="res://.godot/imported/fence_simpleLow.fbx-cf36fcac80301916684abbd5eab39d95.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/fence_simpleLow.fbx" +dest_files=["res://.godot/imported/fence_simpleLow.fbx-cf36fcac80301916684abbd5eab39d95.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleA.fbx new file mode 100644 index 0000000..901ce91 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 468 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "flower_purpleA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "flower_purpleA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4703197901702392741, "Model::flower_purpleA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5265453446108843861, "Geometry::", "Mesh" { + Vertices: *402 { + a: 0.1825,0,0.3160993,0.1825,0,0,-0.09125,0,0.1580496,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,-0.5226725,0.8729668,-0.9052953,0.001869785,0.6243979,-0.62896,-0.5456302,0.6243979,-0.3128607,-0.5456302,0.6243979,-0.3128607,0.001869785,0.6243979,-0.62896,-0.5226725,0.8729668,-0.9052953,-0.365,0,0,-0.09125,0,0.1580496,-0.5456302,0.6243979,0.3128607,0.1825,0,0.3160993,0.001869785,0.6243979,0.62896,-0.5456302,0.6243979,0.3128607,-0.09125,0,0.1580496,-0.365,0,0,0.1825,0,0.3160993,0.001869785,0.6243979,0.62896,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,0.001869785,0.6243979,-0.62896,-0.365,0,0,-0.5456302,0.6243979,-0.3128607,0.001869785,0.6243979,-0.62896,-0.09125,0,-0.1580496,0.1825,0,-0.3160993,-0.365,0,0,-0.5456302,0.6243979,-0.3128607,0.1825,0,-0.3160993,0.5437604,0.6243979,-0.3160993,0.1825,0,0,0.5437604,0.6243979,0.3160993,0.1825,0,0.3160993,0.1825,0,0,0.5437604,0.6243979,-0.3160993,0.1825,0,-0.3160993,0.5437604,0.6243979,0.3160993,0.1825,0,0.3160993,0.001869785,0.6243979,0.62896,-0.5226725,0.8729668,0.9052953,-0.5456302,0.6243979,0.3128607,-0.5456302,0.6243979,0.3128607,-0.5226725,0.8729668,0.9052953,0.001869785,0.6243979,0.62896,0.5437604,0.6243979,-0.3160993,1.045345,0.8729668,4.710285E-09,0.5437604,0.6243979,0.3160993,0.5437604,0.6243979,0.3160993,1.045345,0.8729668,4.710285E-09,0.5437604,0.6243979,-0.3160993,-0.365,0,0,-0.09125,0,-0.1580496,-0.228125,1.325,2.887646E-14,0.1825,0,-0.3160993,0.045625,1.325,-0.1580496,-0.09125,1.325,-0.07902481,0.1825,0,-0.3160993,0.1825,0,0,0.045625,1.325,-0.1580496,0.045625,1.325,1.443823E-14,0.1825,0,0.3160993,0.045625,1.325,0.1580496,0.1825,0,0.3160993,-0.09125,0,0.1580496,0.045625,1.325,0.1580496,-0.365,0,0,-0.228125,1.325,2.887646E-14,-0.09125,1.325,0.07902481,-0.295625,1.325,-0.25,-0.295625,2.425,-0.25,-0.295625,1.325,0.25,-0.295625,2.425,0.25,-0.455625,2.325,-0.41,-0.455625,2.325,0.41,-0.295625,1.325,-0.25,-0.295625,1.325,0.25,-0.295625,1.325,-0.25,-0.455625,2.325,0.41,-0.455625,2.325,-0.41,-0.295625,1.325,0.25,0.204375,2.425,-0.25,0.204375,2.425,0.25,-0.295625,2.425,-0.25,-0.295625,2.425,0.25,0.204375,1.325,0.25,-0.295625,1.325,0.25,0.364375,2.325,0.41,-0.455625,2.325,0.41,0.364375,2.325,0.41,-0.295625,1.325,0.25,0.204375,1.325,0.25,-0.455625,2.325,0.41,0.204375,1.325,0.25,-0.295625,1.325,0.25,0.204375,2.425,0.25,-0.295625,2.425,0.25,0.204375,2.425,-0.25,0.204375,1.325,-0.25,0.204375,2.425,0.25,0.204375,1.325,0.25,0.204375,1.325,-0.25,0.045625,1.325,0.1580496,0.204375,1.325,0.25,-0.295625,1.325,0.25,-0.09125,1.325,0.07902481,-0.228125,1.325,2.887646E-14,0.045625,1.325,-0.1580496,-0.295625,1.325,-0.25,0.045625,1.325,1.443823E-14,-0.09125,1.325,-0.07902481,0.364375,2.325,-0.41,0.204375,1.325,-0.25,0.364375,2.325,0.41,0.204375,1.325,0.25,0.364375,2.325,0.41,0.204375,1.325,-0.25,0.364375,2.325,-0.41,0.204375,1.325,0.25,-0.295625,1.325,-0.25,0.204375,1.325,-0.25,-0.455625,2.325,-0.41,0.364375,2.325,-0.41,-0.455625,2.325,-0.41,0.204375,1.325,-0.25,-0.295625,1.325,-0.25,0.364375,2.325,-0.41,-0.295625,1.325,-0.25,0.204375,1.325,-0.25,-0.295625,2.425,-0.25,0.204375,2.425,-0.25 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,11,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,18,20,-18,20,21,-18,22,24,-24,25,23,-25,26,25,-25,27,29,-29,28,30,-28,30,31,-28,32,34,-34,35,33,-35,36,35,-35,37,39,-39,38,40,-38,40,41,-38,42,44,-44,45,47,-47,48,50,-50,51,53,-53,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,62,-62,63,61,-63,64,61,-64,65,64,-64,66,68,-68,69,67,-69,70,69,-69,71,70,-69,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,81,83,-81,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,108,-108,105,110,-105,111,104,-111,107,111,-110,112,110,-106,113,111,-111,109,111,-114,114,116,-116,117,115,-117,118,120,-120,119,121,-119,122,124,-124,125,123,-125,126,128,-128,127,129,-127,130,132,-132,133,131,-133 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.2220167,0.8960102,0.3845443,0.2220167,0.8960102,0.3845443,0.2220167,0.8960102,0.3845443,-0.2220167,-0.8960102,-0.3845443,-0.2220167,-0.8960102,-0.3845443,-0.2220167,-0.8960102,-0.3845443,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.2220167,0.8960102,-0.3845443,0.2220167,0.8960102,-0.3845443,0.2220167,0.8960102,-0.3845443,-0.2220167,-0.8960102,0.3845443,-0.2220167,-0.8960102,0.3845443,-0.2220167,-0.8960102,0.3845443,-0.4440334,0.8960102,0,-0.4440334,0.8960102,0,-0.4440334,0.8960102,0,0.4440334,-0.8960102,0,0.4440334,-0.8960102,0,0.4440334,-0.8960102,0,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *268 { + a: 0.718504,1.244485,0.718504,0,-0.359252,0.6222427,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,1.854356E-08,5.213647,1.244485,3.009718,-1.244485,3.009718,-1.244485,3.009718,1.244485,3.009718,1.854356E-08,5.213647,1.244485,0.3598227,-1.64202E-13,0.3598227,1.244485,3.199882,-1.244485,0.3598227,-1.244485,3.199882,1.244485,3.199882,-1.64202E-13,0.3598227,1.244485,0.3598227,-1.244485,0.3598227,-1.244485,3.199882,1.244485,0.3598227,1.560418E-13,0.3598227,1.244485,3.199882,-1.244485,0.3598227,-1.244485,3.199882,1.244485,3.199882,1.560418E-13,0.3598227,1.244485,0.3598227,-1.244485,0.3598227,-1.244485,3.199882,-1.244485,0.3598227,-1.244485,3.199882,-6.459835E-18,0.3598227,1.244485,3.199882,1.244485,0.3598227,-6.459835E-18,0.3598227,-1.244485,3.199882,-1.244485,0.3598227,1.244485,3.199882,1.244485,0.3598227,-1.244485,3.009718,1.854361E-08,5.213647,1.244485,3.009718,1.244485,3.009718,1.854361E-08,5.213647,-1.244485,3.009718,-1.244485,3.009718,1.854442E-08,5.213647,1.244485,3.009718,1.244485,3.009718,1.854442E-08,5.213647,-1.244485,3.009718,1.244485,-0.037062,-1.303402E-13,-0.037062,0.7778033,5.186427,-1.244485,-0.037062,-0.466682,5.186427,0.1555607,5.186427,1.244485,-0.07382993,1.006801E-17,-0.07382993,0.6222427,5.170465,-5.68409E-14,5.170465,-1.244485,-0.07382993,-0.6222427,5.170465,1.244485,-0.037062,9.05942E-14,-0.037062,0.466682,5.186427,-1.244485,-0.037062,-0.7778033,5.186427,-0.1555607,5.186427,-0.984252,5.216536,-0.984252,9.547244,0.984252,5.216536,0.984252,9.547244,-1.614173,9.321984,1.614173,9.321984,-0.984252,5.334901,0.984252,5.334901,-0.984252,5.334901,1.614173,9.321984,-1.614173,9.321984,0.984252,5.334901,-0.804626,-0.984252,-0.804626,0.984252,1.163878,-0.984252,1.163878,0.984252,0.804626,5.306521,-1.163878,5.306521,1.434547,9.293605,-1.793799,9.293605,1.434547,9.293605,-1.163878,5.306521,0.804626,5.306521,-1.793799,9.293605,0.804626,5.216536,-1.163878,5.216536,0.804626,9.547244,-1.163878,9.547244,0.984252,9.547244,0.984252,5.216536,-0.984252,9.547244,-0.984252,5.216536,0.804626,-0.984252,0.179626,0.6222427,0.804626,0.984252,-1.163878,0.984252,-0.359252,0.3111213,-0.8981299,1.136868E-13,0.179626,-0.6222427,-1.163878,-0.984252,0.179626,5.684342E-14,-0.359252,-0.3111213,1.614173,9.265225,0.984252,5.278142,-1.614173,9.265225,-0.984252,5.278142,-1.614173,9.265225,0.984252,5.278142,1.614173,9.265225,-0.984252,5.278142,1.163878,5.306521,-0.804626,5.306521,1.793799,9.293605,-1.434547,9.293605,1.793799,9.293605,-0.804626,5.306521,1.163878,5.306521,-1.434547,9.293605,1.163878,5.216536,-0.804626,5.216536,1.163878,9.547244,-0.804626,9.547244 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,11,10,12,14,13,15,13,14,16,15,14,17,19,18,18,20,17,20,21,17,22,24,23,25,23,24,26,25,24,27,29,28,28,30,27,30,31,27,32,34,33,35,33,34,36,35,34,37,39,38,38,40,37,40,41,37,42,44,43,45,47,46,48,50,49,51,53,52,54,56,55,57,55,56,58,57,56,59,58,56,60,62,61,63,61,62,64,61,63,65,64,63,66,68,67,69,67,68,70,69,68,71,70,68,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,81,83,80,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,108,107,105,110,104,111,104,110,107,111,109,112,110,105,113,111,110,109,111,113,114,116,115,117,115,116,118,120,119,119,121,118,122,124,123,125,123,124,126,128,127,127,129,126,130,132,131,133,131,132 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3006, "Material::colorPurple", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6235294,0.5372549,1 + P: "DiffuseColor", "Color", "", "A",0.6235294,0.5372549,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh flower_purpleA, Model::RootNode + C: "OO",4703197901702392741,0 + + ;Geometry::, Model::Mesh flower_purpleA + C: "OO",5265453446108843861,4703197901702392741 + + ;Material::grass, Model::Mesh flower_purpleA + C: "OO",3024,4703197901702392741 + + ;Material::colorPurple, Model::Mesh flower_purpleA + C: "OO",3006,4703197901702392741 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleA.fbx.import new file mode 100644 index 0000000..9c15dd9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cnnmvbk0jh28f" +path="res://.godot/imported/flower_purpleA.fbx-af3c2b172bc1d933610152d35aa98850.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/flower_purpleA.fbx" +dest_files=["res://.godot/imported/flower_purpleA.fbx-af3c2b172bc1d933610152d35aa98850.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleB.fbx new file mode 100644 index 0000000..aec4176 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 569 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "flower_purpleB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "flower_purpleB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5530536177608721251, "Model::flower_purpleB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5700525899175450864, "Geometry::", "Mesh" { + Vertices: *468 { + a: 0.1825,0,0.3160993,0.1825,0,0,-0.09125,0,0.1580496,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,0.1825,0,0.3160993,-0.09125,0,0.1580496,0.045625,1.325,0.1580496,-0.365,0,0,-0.228125,1.325,2.887646E-14,-0.045625,1.325,0.1053664,-0.09125,1.325,0.07902481,-0.136875,1.325,0.05268321,0.1825,0,-0.3160993,0.1825,0,0,0.045625,1.325,-0.1580496,0.045625,1.325,-0.05268321,0.045625,1.325,1.443823E-14,0.1825,0,0.3160993,0.045625,1.325,0.05268321,0.045625,1.325,0.1580496,-0.365,0,0,-0.09125,0,-0.1580496,-0.228125,1.325,2.887646E-14,0.1825,0,-0.3160993,0.045625,1.325,-0.1580496,-0.136875,1.325,-0.05268321,-0.09125,1.325,-0.07902481,-0.045625,1.325,-0.1053664,-0.365,0,0,-0.09125,0,0.1580496,-0.5963597,0.8195495,0.3085655,0.1825,0,0.3160993,0.03095431,0.8195495,0.6707454,-0.5963597,0.8195495,0.3085655,-0.09125,0,0.1580496,-0.365,0,0,0.1825,0,0.3160993,0.03095431,0.8195495,0.6707454,-0.5031826,0.6195495,1.195898,-0.7840865,0.6195495,1.033718,-0.2868615,0.9195495,1.021219,-0.7409705,0.9195495,0.7590387,-0.2868615,0.9195495,1.021219,-0.7840865,0.6195495,1.033718,-0.5031826,0.6195495,1.195898,-0.7409705,0.9195495,0.7590387,0.03095431,0.8195495,0.6707454,-0.2868615,0.9195495,1.021219,-0.5963597,0.8195495,0.3085655,-0.7409705,0.9195495,0.7590387,-0.5963597,0.8195495,0.3085655,-0.2868615,0.9195495,1.021219,0.03095431,0.8195495,0.6707454,-0.7409705,0.9195495,0.7590387,1.027832,0.9195495,-0.2621799,1.287269,0.6195495,-0.1621799,1.027832,0.9195495,0.2621799,1.287269,0.6195495,0.1621799,1.027832,0.9195495,0.2621799,1.287269,0.6195495,-0.1621799,1.027832,0.9195495,-0.2621799,1.287269,0.6195495,0.1621799,1.027832,0.9195495,-0.2621799,1.027832,0.9195495,0.2621799,0.5654054,0.8195495,-0.3621799,0.5654054,0.8195495,0.3621799,0.5654054,0.8195495,-0.3621799,1.027832,0.9195495,0.2621799,1.027832,0.9195495,-0.2621799,0.5654054,0.8195495,0.3621799,0.5654054,0.8195495,-0.3621799,0.5654054,0.8195495,0.3621799,0.1825,0,-0.3160993,0.1825,0,0,0.1825,0,0.3160993,0.1825,0,-0.3160993,0.5654054,0.8195495,0.3621799,0.5654054,0.8195495,-0.3621799,0.1825,0,0,0.1825,0,0.3160993,-0.7840865,0.6195495,-1.033718,-0.5031826,0.6195495,-1.195898,-0.7409705,0.9195495,-0.7590387,-0.2868615,0.9195495,-1.021219,-0.7409705,0.9195495,-0.7590387,-0.5031826,0.6195495,-1.195898,-0.7840865,0.6195495,-1.033718,-0.2868615,0.9195495,-1.021219,0.03095431,0.8195495,-0.6707454,-0.5963597,0.8195495,-0.3085655,-0.2868615,0.9195495,-1.021219,-0.7409705,0.9195495,-0.7590387,-0.2868615,0.9195495,-1.021219,-0.5963597,0.8195495,-0.3085655,0.03095431,0.8195495,-0.6707454,-0.7409705,0.9195495,-0.7590387,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,0.03095431,0.8195495,-0.6707454,-0.365,0,0,-0.5963597,0.8195495,-0.3085655,0.03095431,0.8195495,-0.6707454,-0.09125,0,-0.1580496,0.1825,0,-0.3160993,-0.365,0,0,-0.5963597,0.8195495,-0.3085655,-0.045625,1.705,-0.81225,0.6948267,1.705,0.47025,-0.045625,2.085,-0.491625,0.3246009,2.085,0.149625,0.5467364,1.325,0.342,0.2505557,1.325,-0.171,-0.045625,1.325,0.342,0.045625,1.325,0.1580496,-0.045625,1.325,0.1053664,-0.6379864,1.325,0.342,-0.09125,1.325,0.07902481,-0.136875,1.325,0.05268321,-0.228125,1.325,2.887646E-14,-0.3418057,1.325,-0.171,0.045625,1.325,-0.1580496,-0.045625,1.325,-0.684,0.045625,1.325,0.05268321,0.045625,1.325,1.443823E-14,0.045625,1.325,-0.05268321,-0.045625,1.325,-0.1053664,-0.09125,1.325,-0.07902481,-0.136875,1.325,-0.05268321,-0.045625,1.705,-0.81225,-0.7860767,1.705,0.47025,-0.045625,1.325,-0.684,-0.3418057,1.325,-0.171,-0.6379864,1.325,0.342,-0.045625,1.705,-0.81225,-0.045625,1.325,-0.684,0.6948267,1.705,0.47025,0.2505557,1.325,-0.171,0.5467364,1.325,0.342,0.5467364,1.325,0.342,-0.045625,1.325,0.342,0.6948267,1.705,0.47025,-0.6379864,1.325,0.342,-0.7860767,1.705,0.47025,0.6948267,1.705,0.47025,-0.7860767,1.705,0.47025,0.3246009,2.085,0.149625,-0.4158508,2.085,0.149625,-0.045625,2.085,-0.491625,0.3246009,2.085,0.149625,-0.4158508,2.085,0.149625,-0.045625,1.705,-0.81225,-0.045625,2.085,-0.491625,-0.7860767,1.705,0.47025,-0.4158508,2.085,0.149625 + } + PolygonVertexIndex: *294 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,10,-12,13,10,-13,14,16,-16,17,15,-17,18,15,-18,19,15,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,26,-25,28,26,-28,29,26,-29,30,32,-32,33,31,-33,34,33,-33,35,37,-37,36,38,-36,38,39,-36,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,73,-76,77,79,-79,78,80,-78,78,81,-81,82,84,-84,85,83,-85,86,88,-88,87,89,-87,90,92,-92,93,91,-93,94,96,-96,95,97,-95,98,100,-100,101,99,-101,102,101,-101,103,105,-105,104,106,-104,106,107,-104,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,115,-115,114,117,-117,118,116,-118,119,118,-118,120,119,-118,121,120,-118,115,122,-114,123,113,-123,124,122,-116,125,122,-125,126,122,-126,127,123,-123,128,123,-128,121,123,-129,129,121,-129,120,121,-130,130,132,-132,133,131,-133,134,131,-134,135,137,-137,138,136,-138,139,138,-138,140,142,-142,143,141,-143,144,143,-143,145,147,-147,148,146,-148,149,151,-151,152,154,-154,155,153,-155 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *882 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,1,0,0,1,0,0,1,0,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *312 { + a: 0.718504,1.244485,0.718504,0,-0.359252,0.6222427,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,1.244485,-0.037062,1.116329E-13,-0.037062,0.466682,5.186427,-1.244485,-0.037062,-0.7778033,5.186427,0.05185356,5.186427,-0.1555607,5.186427,-0.3629749,5.186427,1.244485,-0.07382993,1.454555E-18,-0.07382993,0.6222427,5.170465,0.2074142,5.170465,-5.684306E-14,5.170465,-1.244485,-0.07382993,-0.2074142,5.170465,-0.6222427,5.170465,1.244485,-0.037062,-1.558753E-13,-0.037062,0.7778033,5.186427,-1.244485,-0.037062,-0.466682,5.186427,0.3629749,5.186427,0.1555607,5.186427,-0.05185356,5.186427,1.244485,0.3041377,-1.09357E-13,0.3041377,1.425905,3.865505,-1.244485,0.3041377,-1.425905,3.865505,1.425905,3.865505,-1.09357E-13,0.3041377,1.244485,0.3041377,-1.244485,0.3041377,-1.425905,3.865505,0.6385037,-1.470103,-0.6385037,-1.470103,1.032205,0.0913937,-1.032205,0.0913937,1.032205,0.0913937,-0.6385037,-1.470103,0.6385037,-1.470103,-1.032205,0.0913937,-1.425905,2.857698,-1.032205,4.720358,1.425905,2.857698,1.032205,4.720358,1.425905,2.857698,-1.032205,4.720358,-1.425905,2.857698,1.032205,4.720358,1.032205,0.0913937,0.6385037,-1.470103,-1.032205,0.0913937,-0.6385037,-1.470103,-1.032205,0.0913937,0.6385037,-1.470103,1.032205,0.0913937,-0.6385037,-1.470103,-1.032205,4.720358,1.032205,4.720358,-1.425905,2.857698,1.425905,2.857698,-1.425905,2.857698,1.032205,4.720358,-1.032205,4.720358,1.425905,2.857698,-1.425905,3.865505,1.425905,3.865505,-1.244485,0.3041377,9.680132E-18,0.3041377,1.244485,0.3041377,-1.244485,0.3041377,1.425905,3.865505,-1.425905,3.865505,9.680132E-18,0.3041377,1.244485,0.3041377,0.6385037,-1.470103,-0.6385037,-1.470103,1.032205,0.0913937,-1.032205,0.0913937,1.032205,0.0913937,-0.6385037,-1.470103,0.6385037,-1.470103,-1.032205,0.0913937,1.425905,2.857698,-1.425905,2.857698,1.032205,4.720358,-1.032205,4.720358,1.032205,4.720358,-1.425905,2.857698,1.425905,2.857698,-1.032205,4.720358,1.244485,0.3041377,-1.934564E-13,0.3041377,1.425905,3.865505,-1.244485,0.3041377,-1.425905,3.865505,1.425905,3.865505,-1.934564E-13,0.3041377,1.244485,0.3041377,-1.244485,0.3041377,-1.425905,3.865505,2.859219,5.623714,-2.971109,5.623714,1.766032,7.247462,-1.149132,7.247462,2.152505,1.346457,0.9864397,-0.6732283,-0.179626,1.346457,0.179626,0.6222427,-0.179626,0.4148284,-2.511757,1.346457,-0.359252,0.3111213,-0.538878,0.2074142,-0.8981299,1.136868E-13,-1.345692,-0.6732283,0.179626,-0.6222427,-0.179626,-2.692913,0.179626,0.2074142,0.179626,5.684342E-14,0.179626,-0.2074142,-0.179626,-0.4148284,-0.359252,-0.3111213,-0.538878,-0.2074142,-2.679593,6.910957,3.150735,6.910957,-2.242318,5.393743,0.08981299,5.393743,2.421944,5.393743,2.859219,6.859188,2.421944,5.341972,-2.971109,6.859188,0.08981299,5.341972,-2.242318,5.341972,2.152505,5.373195,-0.179626,5.373195,2.735538,6.952166,-2.511757,5.373195,-3.09479,6.952166,2.735538,3.936482,-3.09479,3.936482,1.277956,5.893933,-1.637208,5.893933,0.179626,-1.935531,-1.277956,0.5890748,1.637208,0.5890748,-2.679593,5.502781,-1.586406,7.126529,3.150735,5.502781,1.328758,7.126529 + } + UVIndex: *294 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,9,8,11,10,8,12,10,11,13,10,12,14,16,15,17,15,16,18,15,17,19,15,18,20,19,18,21,19,20,22,24,23,25,23,24,26,25,24,27,26,24,28,26,27,29,26,28,30,32,31,33,31,32,34,33,32,35,37,36,36,38,35,38,39,35,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,73,75,77,79,78,78,80,77,78,81,80,82,84,83,85,83,84,86,88,87,87,89,86,90,92,91,93,91,92,94,96,95,95,97,94,98,100,99,101,99,100,102,101,100,103,105,104,104,106,103,106,107,103,108,110,109,111,109,110,112,114,113,115,113,114,116,115,114,114,117,116,118,116,117,119,118,117,120,119,117,121,120,117,115,122,113,123,113,122,124,122,115,125,122,124,126,122,125,127,123,122,128,123,127,121,123,128,129,121,128,120,121,129,130,132,131,133,131,132,134,131,133,135,137,136,138,136,137,139,138,137,140,142,141,143,141,142,144,143,142,145,147,146,148,146,147,149,151,150,152,154,153,155,153,154 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *98 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3006, "Material::colorPurple", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6235294,0.5372549,1 + P: "DiffuseColor", "Color", "", "A",0.6235294,0.5372549,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh flower_purpleB, Model::RootNode + C: "OO",5530536177608721251,0 + + ;Geometry::, Model::Mesh flower_purpleB + C: "OO",5700525899175450864,5530536177608721251 + + ;Material::grass, Model::Mesh flower_purpleB + C: "OO",3024,5530536177608721251 + + ;Material::colorPurple, Model::Mesh flower_purpleB + C: "OO",3006,5530536177608721251 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleB.fbx.import new file mode 100644 index 0000000..bf67667 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dkqhd4enkgn56" +path="res://.godot/imported/flower_purpleB.fbx-effd572a817adba86e2e870d94bd41d0.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/flower_purpleB.fbx" +dest_files=["res://.godot/imported/flower_purpleB.fbx-effd572a817adba86e2e870d94bd41d0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleC.fbx new file mode 100644 index 0000000..a604b90 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleC.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 668 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "flower_purpleC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "flower_purpleC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4773410913383252967, "Model::flower_purpleC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5692983178924672200, "Geometry::", "Mesh" { + Vertices: *408 { + a: -0.5226725,0.5531294,-0.9052953,0.001869785,0.324446,-0.62896,-0.5456302,0.324446,-0.3128607,-0.5456302,0.324446,-0.3128607,0.001869785,0.324446,-0.62896,-0.5226725,0.5531294,-0.9052953,0.001869785,0.324446,0.62896,-0.5226725,0.5531294,0.9052953,-0.5456302,0.324446,0.3128607,-0.5456302,0.324446,0.3128607,-0.5226725,0.5531294,0.9052953,0.001869785,0.324446,0.62896,0.5437604,0.324446,-0.3160993,1.045345,0.5531294,4.710285E-09,0.5437604,0.324446,0.3160993,0.5437604,0.324446,0.3160993,1.045345,0.5531294,4.710285E-09,0.5437604,0.324446,-0.3160993,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,0.001869785,0.324446,-0.62896,-0.5456302,0.324446,-0.3128607,-0.365,0,0,0.001869785,0.324446,-0.62896,-0.09125,0,-0.1580496,0.1825,0,-0.3160993,-0.5456302,0.324446,-0.3128607,-0.365,0,0,0.5437604,0.324446,-0.3160993,0.5437604,0.324446,0.3160993,0.1825,0,-0.3160993,0.1825,0,0.3160993,0.1825,0,0,0.1825,0,-0.3160993,0.5437604,0.324446,0.3160993,0.5437604,0.324446,-0.3160993,0.1825,0,0.3160993,0.1825,0,0,0.1825,0,0.3160993,0.001869785,0.324446,0.62896,-0.09125,0,0.1580496,-0.5456302,0.324446,0.3128607,-0.365,0,0,-0.09125,0,0.1580496,0.001869785,0.324446,0.62896,0.1825,0,0.3160993,-0.5456302,0.324446,0.3128607,-0.365,0,0,0.1825,0,0.3160993,0.1825,0,0,-0.09125,0,0.1580496,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,-0.365,0,0,-0.09125,0,-0.1580496,-0.228125,1.325,2.887646E-14,0.1825,0,-0.3160993,0.045625,1.325,-0.1580496,-0.09125,1.325,-0.07902481,0.1825,0,-0.3160993,0.1825,0,0,0.045625,1.325,-0.1580496,0.045625,1.325,0.1580496,0.1825,0,0.3160993,0.1825,0,0.3160993,-0.09125,0,0.1580496,0.045625,1.325,0.1580496,-0.365,0,0,-0.228125,1.325,2.887646E-14,-0.09125,1.325,0.07902481,-0.760625,1.825,0,-0.403125,1.825,0.6192082,-0.545625,1.325,2.887646E-14,-0.295625,1.325,0.4330127,0.669375,1.825,0,0.454375,1.325,2.887646E-14,0.311875,1.825,0.6192082,0.204375,1.325,0.4330127,0.311875,1.825,-0.6192082,0.1325497,1.575,-0.3086076,-0.403125,1.825,-0.6192082,-0.2237997,1.575,-0.3086076,-0.2237997,1.575,0.3086076,-0.403125,1.825,0.6192082,-0.4019744,1.575,0,-0.760625,1.825,0,0.204375,1.325,0.4330127,-0.295625,1.325,0.4330127,0.311875,1.825,0.6192082,-0.403125,1.825,0.6192082,0.454375,1.325,2.887646E-14,0.204375,1.325,-0.4330127,0.204375,1.325,0.4330127,0.045625,1.325,0.1580496,-0.295625,1.325,0.4330127,-0.09125,1.325,0.07902481,-0.228125,1.325,2.887646E-14,0.045625,1.325,-0.1580496,-0.295625,1.325,-0.4330127,-0.09125,1.325,-0.07902481,-0.545625,1.325,2.887646E-14,0.669375,1.825,0,0.311875,1.825,0.6192082,0.3107243,1.575,0,0.1325497,1.575,0.3086076,-0.295625,1.325,-0.4330127,0.204375,1.325,-0.4330127,-0.403125,1.825,-0.6192082,0.311875,1.825,-0.6192082,0.669375,1.825,0,0.3107243,1.575,0,0.311875,1.825,-0.6192082,0.1325497,1.575,-0.3086076,0.311875,1.825,0.6192082,-0.403125,1.825,0.6192082,0.1325497,1.575,0.3086076,-0.2237997,1.575,0.3086076,0.311875,1.825,-0.6192082,0.204375,1.325,-0.4330127,0.669375,1.825,0,0.454375,1.325,2.887646E-14,-0.403125,1.825,-0.6192082,-0.760625,1.825,0,-0.295625,1.325,-0.4330127,-0.545625,1.325,2.887646E-14,-0.2237997,1.575,-0.3086076,-0.4019744,1.575,0,-0.403125,1.825,-0.6192082,-0.760625,1.825,0,0.3107243,1.575,0,0.1325497,1.575,0.3086076,0.1325497,1.575,-0.3086076,-0.2237997,1.575,-0.3086076,-0.2237997,1.575,0.3086076,-0.4019744,1.575,0 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,19,-21,22,19,-22,23,25,-25,24,26,-24,24,27,-27,28,30,-30,31,29,-31,32,31,-31,33,35,-35,34,36,-34,36,37,-34,38,40,-40,41,39,-41,42,41,-41,43,45,-45,44,46,-44,46,47,-44,48,50,-50,51,49,-51,52,51,-51,53,52,-51,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,62,-62,63,61,-63,64,61,-64,65,67,-67,68,66,-68,69,68,-68,70,69,-68,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,94,-94,96,94,-96,97,96,-96,94,98,-93,99,92,-99,95,99,-98,100,99,-99,97,99,-101,101,99,-96,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,131,-134,135,134,-134 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0.2074203,0.909894,0.3592626,0.2074203,0.909894,0.3592626,0.2074203,0.909894,0.3592626,-0.2074203,-0.909894,-0.3592626,-0.2074203,-0.909894,-0.3592626,-0.2074203,-0.909894,-0.3592626,0.2074203,0.909894,-0.3592626,0.2074203,0.909894,-0.3592626,0.2074203,0.909894,-0.3592626,-0.2074203,-0.909894,0.3592626,-0.2074203,-0.909894,0.3592626,-0.2074203,-0.909894,0.3592626,-0.4148407,0.909894,0,-0.4148407,0.909894,0,-0.4148407,0.909894,0,0.4148407,-0.909894,0,0.4148407,-0.909894,0,0.4148407,-0.909894,0,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,-0.4993344,0.05158218,-0.8648725,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,0.9947067,0.1027551,0,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.4993344,0.05158218,0.8648725,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *272 { + a: 1.854351E-08,4.648086,1.244485,2.477787,-1.244485,2.477787,-1.244485,2.477787,1.244485,2.477787,1.854351E-08,4.648086,-1.244485,2.477787,1.854358E-08,4.648086,1.244485,2.477787,1.244485,2.477787,1.854358E-08,4.648086,-1.244485,2.477787,-1.244485,2.477787,1.854443E-08,4.648086,1.244485,2.477787,1.244485,2.477787,1.854443E-08,4.648086,-1.244485,2.477787,1.244485,0.5345659,1.563749E-13,0.5345659,1.244485,2.446243,-1.244485,2.446243,-1.244485,0.5345659,1.244485,2.446243,1.563749E-13,0.5345659,1.244485,0.5345659,-1.244485,2.446243,-1.244485,0.5345659,-1.244485,2.446243,1.244485,2.446243,-1.244485,0.5345659,1.244485,0.5345659,-7.922454E-18,0.5345659,-1.244485,0.5345659,1.244485,2.446243,-1.244485,2.446243,1.244485,0.5345659,-7.922454E-18,0.5345659,-1.244485,0.5345659,-1.244485,2.446243,-1.797729E-13,0.5345659,1.244485,2.446243,1.244485,0.5345659,-1.797729E-13,0.5345659,-1.244485,2.446243,-1.244485,0.5345659,1.244485,2.446243,1.244485,0.5345659,0.718504,1.244485,0.718504,0,-0.359252,0.6222427,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,1.244485,-0.037062,-1.567635E-13,-0.037062,0.7778033,5.186427,-1.244485,-0.037062,-0.466682,5.186427,0.1555607,5.186427,1.244485,-0.07382993,-1.119532E-17,-0.07382993,0.6222427,5.170465,-0.6222427,5.170465,-1.244485,-0.07382993,1.244485,-0.037062,1.167955E-13,-0.037062,0.466682,5.186427,-1.244485,-0.037062,-0.7778033,5.186427,-0.1555607,5.186427,-1.497293,7.638358,1.317667,7.638358,-1.074065,5.537793,0.894439,5.537793,1.317667,7.529783,0.894439,5.429218,-1.497293,7.529783,-1.074065,5.429218,1.227854,6.404219,0.5218492,4.834479,-1.587106,6.404219,-0.8811011,4.834479,-0.6116621,4.955662,-1.317667,6.525401,0.7912881,4.955662,1.497293,6.525401,0.804626,5.483505,-1.163878,5.483505,1.227854,7.584071,-1.587106,7.584071,1.788878,1.136868E-13,0.804626,-1.704774,0.804626,1.704774,0.179626,0.6222427,-1.163878,1.704774,-0.359252,0.3111213,-0.8981299,1.136868E-13,0.179626,-0.6222427,-1.163878,-1.704774,-0.359252,-0.3111213,-2.14813,1.136868E-13,-1.317667,6.283036,1.497293,6.283036,-0.6116621,4.713296,0.7912881,4.713296,1.163878,5.483505,-0.804626,5.483505,1.587106,7.584071,-1.227854,7.584071,1.317667,6.283036,0.6116621,4.713296,-1.497293,6.283036,-0.7912881,4.713296,-1.227854,6.404219,1.587106,6.404219,-0.5218492,4.834479,0.8811011,4.834479,1.497293,7.529783,1.074065,5.429218,-1.317667,7.529783,-0.894439,5.429218,-1.317667,7.638358,1.497293,7.638358,-0.894439,5.537793,1.074065,5.537793,0.6116621,4.955662,-0.7912881,4.955662,1.317667,6.525401,-1.497293,6.525401,-1.223324,0,-0.5218492,1.214991,-0.5218492,-1.214991,0.8811011,-1.214991,0.8811011,1.214991,1.582576,0 + } + UVIndex: *234 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,19,20,22,19,21,23,25,24,24,26,23,24,27,26,28,30,29,31,29,30,32,31,30,33,35,34,34,36,33,36,37,33,38,40,39,41,39,40,42,41,40,43,45,44,44,46,43,46,47,43,48,50,49,51,49,50,52,51,50,53,52,50,54,56,55,57,55,56,58,57,56,59,58,56,60,62,61,63,61,62,64,61,63,65,67,66,68,66,67,69,68,67,70,69,67,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,94,93,96,94,95,97,96,95,94,98,92,99,92,98,95,99,97,100,99,98,97,99,100,101,99,95,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,131,133,135,134,133 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3006, "Material::colorPurple", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6235294,0.5372549,1 + P: "DiffuseColor", "Color", "", "A",0.6235294,0.5372549,1 + } + } + + Material: 3014, "Material::colorWhite", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh flower_purpleC, Model::RootNode + C: "OO",4773410913383252967,0 + + ;Geometry::, Model::Mesh flower_purpleC + C: "OO",5692983178924672200,4773410913383252967 + + ;Material::grass, Model::Mesh flower_purpleC + C: "OO",3024,4773410913383252967 + + ;Material::colorPurple, Model::Mesh flower_purpleC + C: "OO",3006,4773410913383252967 + + ;Material::colorWhite, Model::Mesh flower_purpleC + C: "OO",3014,4773410913383252967 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleC.fbx.import new file mode 100644 index 0000000..71f8688 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_purpleC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cdjwelmy68bo6" +path="res://.godot/imported/flower_purpleC.fbx-588e83b2e65443d7466301c4c96f1f7e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/flower_purpleC.fbx" +dest_files=["res://.godot/imported/flower_purpleC.fbx-588e83b2e65443d7466301c4c96f1f7e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_redA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/flower_redA.fbx new file mode 100644 index 0000000..b605a76 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_redA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 761 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "flower_redA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "flower_redA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4786797461640528257, "Model::flower_redA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4757102398650078912, "Geometry::", "Mesh" { + Vertices: *402 { + a: 0.1825,0,0.3160993,0.1825,0,0,-0.09125,0,0.1580496,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,0.1825,0,0.3160993,-0.09125,0,0.1580496,0.045625,1.825,0.1580496,-0.365,0,0,-0.228125,1.825,2.887646E-14,-0.09125,1.825,0.07902481,-0.5226725,0.8729668,-0.9052953,0.001869785,0.6243979,-0.62896,-0.5456302,0.6243979,-0.3128607,-0.5456302,0.6243979,-0.3128607,0.001869785,0.6243979,-0.62896,-0.5226725,0.8729668,-0.9052953,-0.365,0,0,-0.09125,0,0.1580496,-0.5456302,0.6243979,0.3128607,0.1825,0,0.3160993,0.001869785,0.6243979,0.62896,-0.5456302,0.6243979,0.3128607,-0.09125,0,0.1580496,-0.365,0,0,0.1825,0,0.3160993,0.001869785,0.6243979,0.62896,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,0.001869785,0.6243979,-0.62896,-0.365,0,0,-0.5456302,0.6243979,-0.3128607,0.001869785,0.6243979,-0.62896,-0.09125,0,-0.1580496,0.1825,0,-0.3160993,-0.365,0,0,-0.5456302,0.6243979,-0.3128607,0.1825,0,-0.3160993,0.1825,0,0,0.045625,1.825,-0.1580496,0.045625,1.825,1.443823E-14,0.1825,0,0.3160993,0.045625,1.825,0.1580496,0.1825,0,-0.3160993,0.5437604,0.6243979,-0.3160993,0.1825,0,0,0.5437604,0.6243979,0.3160993,0.1825,0,0.3160993,0.1825,0,0,0.5437604,0.6243979,-0.3160993,0.1825,0,-0.3160993,0.5437604,0.6243979,0.3160993,0.1825,0,0.3160993,-0.365,0,0,-0.09125,0,-0.1580496,-0.228125,1.825,2.887646E-14,0.1825,0,-0.3160993,0.045625,1.825,-0.1580496,-0.09125,1.825,-0.07902481,0.001869785,0.6243979,0.62896,-0.5226725,0.8729668,0.9052953,-0.5456302,0.6243979,0.3128607,-0.5456302,0.6243979,0.3128607,-0.5226725,0.8729668,0.9052953,0.001869785,0.6243979,0.62896,0.5437604,0.6243979,-0.3160993,1.045345,0.8729668,4.710285E-09,0.5437604,0.6243979,0.3160993,0.5437604,0.6243979,0.3160993,1.045345,0.8729668,4.710285E-09,0.5437604,0.6243979,-0.3160993,-0.295625,1.825,-0.25,-0.295625,2.925,-0.25,-0.295625,1.825,0.25,-0.295625,2.925,0.25,-0.455625,2.825,-0.41,-0.455625,2.825,0.41,-0.295625,1.825,-0.25,-0.295625,1.825,0.25,-0.295625,1.825,-0.25,-0.455625,2.825,0.41,-0.455625,2.825,-0.41,-0.295625,1.825,0.25,0.204375,2.925,-0.25,0.204375,2.925,0.25,-0.295625,2.925,-0.25,-0.295625,2.925,0.25,0.204375,1.825,0.25,-0.295625,1.825,0.25,0.364375,2.825,0.41,-0.455625,2.825,0.41,0.364375,2.825,0.41,-0.295625,1.825,0.25,0.204375,1.825,0.25,-0.455625,2.825,0.41,0.204375,1.825,0.25,-0.295625,1.825,0.25,0.204375,2.925,0.25,-0.295625,2.925,0.25,0.204375,2.925,-0.25,0.204375,1.825,-0.25,0.204375,2.925,0.25,0.204375,1.825,0.25,0.204375,1.825,-0.25,0.045625,1.825,0.1580496,0.204375,1.825,0.25,-0.295625,1.825,0.25,-0.09125,1.825,0.07902481,-0.228125,1.825,2.887646E-14,0.045625,1.825,-0.1580496,-0.295625,1.825,-0.25,0.045625,1.825,1.443823E-14,-0.09125,1.825,-0.07902481,0.364375,2.825,-0.41,0.204375,1.825,-0.25,0.364375,2.825,0.41,0.204375,1.825,0.25,0.364375,2.825,0.41,0.204375,1.825,-0.25,0.364375,2.825,-0.41,0.204375,1.825,0.25,-0.295625,1.825,-0.25,0.204375,1.825,-0.25,-0.455625,2.825,-0.41,0.364375,2.825,-0.41,-0.455625,2.825,-0.41,0.204375,1.825,-0.25,-0.295625,1.825,-0.25,0.364375,2.825,-0.41,-0.295625,1.825,-0.25,0.204375,1.825,-0.25,-0.295625,2.925,-0.25,0.204375,2.925,-0.25 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,14,-14,15,17,-17,18,20,-20,21,19,-21,22,21,-21,23,25,-25,24,26,-24,26,27,-24,28,30,-30,31,29,-31,32,31,-31,33,35,-35,34,36,-34,36,37,-34,38,40,-40,41,39,-41,42,39,-42,43,42,-42,44,46,-46,47,45,-47,48,47,-47,49,51,-51,50,52,-50,52,53,-50,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,62,-62,63,65,-65,66,68,-68,69,71,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,81,83,-81,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,108,-108,105,110,-105,111,104,-111,107,111,-110,112,110,-106,113,111,-111,109,111,-114,114,116,-116,117,115,-117,118,120,-120,119,121,-119,122,124,-124,125,123,-125,126,128,-128,127,129,-127,130,132,-132,133,131,-133 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,0.2220167,0.8960102,0.3845443,0.2220167,0.8960102,0.3845443,0.2220167,0.8960102,0.3845443,-0.2220167,-0.8960102,-0.3845443,-0.2220167,-0.8960102,-0.3845443,-0.2220167,-0.8960102,-0.3845443,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,0.2220167,0.8960102,-0.3845443,0.2220167,0.8960102,-0.3845443,0.2220167,0.8960102,-0.3845443,-0.2220167,-0.8960102,0.3845443,-0.2220167,-0.8960102,0.3845443,-0.2220167,-0.8960102,0.3845443,-0.4440334,0.8960102,0,-0.4440334,0.8960102,0,-0.4440334,0.8960102,0,0.4440334,-0.8960102,0,0.4440334,-0.8960102,0,0.4440334,-0.8960102,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *268 { + a: 0.718504,1.244485,0.718504,0,-0.359252,0.6222427,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,1.244485,-0.02692497,1.037503E-13,-0.02692497,0.466682,7.163165,-1.244485,-0.02692497,-0.7778033,7.163165,-0.1555607,7.163165,1.854361E-08,5.213647,1.244485,3.009718,-1.244485,3.009718,-1.244485,3.009718,1.244485,3.009718,1.854361E-08,5.213647,1.244485,0.3598227,-1.64202E-13,0.3598227,1.244485,3.199882,-1.244485,0.3598227,-1.244485,3.199882,1.244485,3.199882,-1.64202E-13,0.3598227,1.244485,0.3598227,-1.244485,0.3598227,-1.244485,3.199882,1.244485,0.3598227,1.560418E-13,0.3598227,1.244485,3.199882,-1.244485,0.3598227,-1.244485,3.199882,1.244485,3.199882,1.560418E-13,0.3598227,1.244485,0.3598227,-1.244485,0.3598227,-1.244485,3.199882,1.244485,-0.05373687,0,-0.05373687,0.6222427,7.151482,-5.684342E-14,7.151482,-1.244485,-0.05373687,-0.6222427,7.151482,-1.244485,0.3598227,-1.244485,3.199882,-6.459835E-18,0.3598227,1.244485,3.199882,1.244485,0.3598227,-6.459835E-18,0.3598227,-1.244485,3.199882,-1.244485,0.3598227,1.244485,3.199882,1.244485,0.3598227,1.244485,-0.02692497,-1.435518E-13,-0.02692497,0.7778033,7.163165,-1.244485,-0.02692497,-0.466682,7.163165,0.1555607,7.163165,-1.244485,3.009718,1.854366E-08,5.213647,1.244485,3.009718,1.244485,3.009718,1.854366E-08,5.213647,-1.244485,3.009718,-1.244485,3.009718,1.854442E-08,5.213647,1.244485,3.009718,1.244485,3.009718,1.854442E-08,5.213647,-1.244485,3.009718,-0.984252,7.18504,-0.984252,11.51575,0.984252,7.18504,0.984252,11.51575,-1.614173,11.26576,1.614173,11.26576,-0.984252,7.278681,0.984252,7.278681,-0.984252,7.278681,1.614173,11.26576,-1.614173,11.26576,0.984252,7.278681,-0.804626,-0.984252,-0.804626,0.984252,1.163878,-0.984252,1.163878,0.984252,0.804626,7.250302,-1.163878,7.250302,1.434547,11.23739,-1.793799,11.23739,1.434547,11.23739,-1.163878,7.250302,0.804626,7.250302,-1.793799,11.23739,0.804626,7.18504,-1.163878,7.18504,0.804626,11.51575,-1.163878,11.51575,0.984252,11.51575,0.984252,7.18504,-0.984252,11.51575,-0.984252,7.18504,0.804626,-0.984252,0.179626,0.6222427,0.804626,0.984252,-1.163878,0.984252,-0.359252,0.3111213,-0.8981299,1.136868E-13,0.179626,-0.6222427,-1.163878,-0.984252,0.179626,5.684342E-14,-0.359252,-0.3111213,1.614173,11.20901,0.984252,7.221923,-1.614173,11.20901,-0.984252,7.221923,-1.614173,11.20901,0.984252,7.221923,1.614173,11.20901,-0.984252,7.221923,1.163878,7.250302,-0.804626,7.250302,1.793799,11.23739,-1.434547,11.23739,1.793799,11.23739,-0.804626,7.250302,1.163878,7.250302,-1.434547,11.23739,1.163878,7.18504,-0.804626,7.18504,1.163878,11.51575,-0.804626,11.51575 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,9,8,11,10,8,12,14,13,15,17,16,18,20,19,21,19,20,22,21,20,23,25,24,24,26,23,26,27,23,28,30,29,31,29,30,32,31,30,33,35,34,34,36,33,36,37,33,38,40,39,41,39,40,42,39,41,43,42,41,44,46,45,47,45,46,48,47,46,49,51,50,50,52,49,52,53,49,54,56,55,57,55,56,58,57,56,59,58,56,60,62,61,63,65,64,66,68,67,69,71,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,81,83,80,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,108,107,105,110,104,111,104,110,107,111,109,112,110,105,113,111,110,109,111,113,114,116,115,117,115,116,118,120,119,119,121,118,122,124,123,125,123,124,126,128,127,127,129,126,130,132,131,133,131,132 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh flower_redA, Model::RootNode + C: "OO",4786797461640528257,0 + + ;Geometry::, Model::Mesh flower_redA + C: "OO",4757102398650078912,4786797461640528257 + + ;Material::grass, Model::Mesh flower_redA + C: "OO",3024,4786797461640528257 + + ;Material::colorRed, Model::Mesh flower_redA + C: "OO",3008,4786797461640528257 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_redA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/flower_redA.fbx.import new file mode 100644 index 0000000..497898e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_redA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://lu7xd1x2abac" +path="res://.godot/imported/flower_redA.fbx-1a50bcb3b5220df18ecd4fc8ad6259db.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/flower_redA.fbx" +dest_files=["res://.godot/imported/flower_redA.fbx-1a50bcb3b5220df18ecd4fc8ad6259db.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_redB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/flower_redB.fbx new file mode 100644 index 0000000..8dc3bae --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_redB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 860 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "flower_redB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "flower_redB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4908336795433653104, "Model::flower_redB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5063877234746832978, "Geometry::", "Mesh" { + Vertices: *468 { + a: 0.1825,0,0.3160993,0.1825,0,0,-0.09125,0,0.1580496,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,0.1825,0,0.3160993,-0.09125,0,0.1580496,0.045625,1.825,0.1580496,-0.365,0,0,-0.228125,1.825,2.887646E-14,-0.045625,1.825,0.1053664,-0.09125,1.825,0.07902481,-0.136875,1.825,0.05268321,0.1825,0,-0.3160993,0.1825,0,0,0.045625,1.825,-0.1580496,0.045625,1.825,-0.05268321,0.045625,1.825,1.443823E-14,0.1825,0,0.3160993,0.045625,1.825,0.05268321,0.045625,1.825,0.1580496,-0.365,0,0,-0.09125,0,-0.1580496,-0.228125,1.825,2.887646E-14,0.1825,0,-0.3160993,0.045625,1.825,-0.1580496,-0.136875,1.825,-0.05268321,-0.09125,1.825,-0.07902481,-0.045625,1.825,-0.1053664,-0.365,0,0,-0.09125,0,0.1580496,-0.5963597,0.8195495,0.3085655,0.1825,0,0.3160993,0.03095431,0.8195495,0.6707454,-0.5963597,0.8195495,0.3085655,-0.09125,0,0.1580496,-0.365,0,0,0.1825,0,0.3160993,0.03095431,0.8195495,0.6707454,-0.5031826,0.6195495,1.195898,-0.7840865,0.6195495,1.033718,-0.2868615,0.9195495,1.021219,-0.7409705,0.9195495,0.7590387,-0.2868615,0.9195495,1.021219,-0.7840865,0.6195495,1.033718,-0.5031826,0.6195495,1.195898,-0.7409705,0.9195495,0.7590387,0.03095431,0.8195495,0.6707454,-0.2868615,0.9195495,1.021219,-0.5963597,0.8195495,0.3085655,-0.7409705,0.9195495,0.7590387,-0.5963597,0.8195495,0.3085655,-0.2868615,0.9195495,1.021219,0.03095431,0.8195495,0.6707454,-0.7409705,0.9195495,0.7590387,1.027832,0.9195495,-0.2621799,1.287269,0.6195495,-0.1621799,1.027832,0.9195495,0.2621799,1.287269,0.6195495,0.1621799,1.027832,0.9195495,0.2621799,1.287269,0.6195495,-0.1621799,1.027832,0.9195495,-0.2621799,1.287269,0.6195495,0.1621799,1.027832,0.9195495,-0.2621799,1.027832,0.9195495,0.2621799,0.5654054,0.8195495,-0.3621799,0.5654054,0.8195495,0.3621799,0.5654054,0.8195495,-0.3621799,1.027832,0.9195495,0.2621799,1.027832,0.9195495,-0.2621799,0.5654054,0.8195495,0.3621799,0.5654054,0.8195495,-0.3621799,0.5654054,0.8195495,0.3621799,0.1825,0,-0.3160993,0.1825,0,0,0.1825,0,0.3160993,0.1825,0,-0.3160993,0.5654054,0.8195495,0.3621799,0.5654054,0.8195495,-0.3621799,0.1825,0,0,0.1825,0,0.3160993,-0.7840865,0.6195495,-1.033718,-0.5031826,0.6195495,-1.195898,-0.7409705,0.9195495,-0.7590387,-0.2868615,0.9195495,-1.021219,-0.7409705,0.9195495,-0.7590387,-0.5031826,0.6195495,-1.195898,-0.7840865,0.6195495,-1.033718,-0.2868615,0.9195495,-1.021219,0.03095431,0.8195495,-0.6707454,-0.5963597,0.8195495,-0.3085655,-0.2868615,0.9195495,-1.021219,-0.7409705,0.9195495,-0.7590387,-0.2868615,0.9195495,-1.021219,-0.5963597,0.8195495,-0.3085655,0.03095431,0.8195495,-0.6707454,-0.7409705,0.9195495,-0.7590387,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,0.03095431,0.8195495,-0.6707454,-0.365,0,0,-0.5963597,0.8195495,-0.3085655,0.03095431,0.8195495,-0.6707454,-0.09125,0,-0.1580496,0.1825,0,-0.3160993,-0.365,0,0,-0.5963597,0.8195495,-0.3085655,-0.045625,2.205,-0.81225,0.6948267,2.205,0.47025,-0.045625,2.585,-0.491625,0.3246009,2.585,0.149625,0.5467364,1.825,0.342,0.2505557,1.825,-0.171,-0.045625,1.825,0.342,0.045625,1.825,0.1580496,-0.045625,1.825,0.1053664,-0.6379864,1.825,0.342,-0.09125,1.825,0.07902481,-0.136875,1.825,0.05268321,-0.228125,1.825,2.887646E-14,-0.3418057,1.825,-0.171,0.045625,1.825,-0.1580496,-0.045625,1.825,-0.684,0.045625,1.825,0.05268321,0.045625,1.825,1.443823E-14,0.045625,1.825,-0.05268321,-0.045625,1.825,-0.1053664,-0.09125,1.825,-0.07902481,-0.136875,1.825,-0.05268321,-0.045625,2.205,-0.81225,-0.7860767,2.205,0.47025,-0.045625,1.825,-0.684,-0.3418057,1.825,-0.171,-0.6379864,1.825,0.342,-0.045625,2.205,-0.81225,-0.045625,1.825,-0.684,0.6948267,2.205,0.47025,0.2505557,1.825,-0.171,0.5467364,1.825,0.342,0.5467364,1.825,0.342,-0.045625,1.825,0.342,0.6948267,2.205,0.47025,-0.6379864,1.825,0.342,-0.7860767,2.205,0.47025,0.6948267,2.205,0.47025,-0.7860767,2.205,0.47025,0.3246009,2.585,0.149625,-0.4158508,2.585,0.149625,-0.045625,2.585,-0.491625,0.3246009,2.585,0.149625,-0.4158508,2.585,0.149625,-0.045625,2.205,-0.81225,-0.045625,2.585,-0.491625,-0.7860767,2.205,0.47025,-0.4158508,2.585,0.149625 + } + PolygonVertexIndex: *294 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,10,-12,13,10,-13,14,16,-16,17,15,-17,18,15,-18,19,15,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,26,-25,28,26,-28,29,26,-29,30,32,-32,33,31,-33,34,33,-33,35,37,-37,36,38,-36,38,39,-36,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,73,-76,77,79,-79,78,80,-78,78,81,-81,82,84,-84,85,83,-85,86,88,-88,87,89,-87,90,92,-92,93,91,-93,94,96,-96,95,97,-95,98,100,-100,101,99,-101,102,101,-101,103,105,-105,104,106,-104,106,107,-104,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,115,-115,114,117,-117,118,116,-118,119,118,-118,120,119,-118,121,120,-118,115,122,-114,123,113,-123,124,122,-116,125,122,-125,126,122,-126,127,123,-123,128,123,-128,121,123,-129,129,121,-129,120,121,-130,130,132,-132,133,131,-133,134,131,-134,135,137,-137,138,136,-138,139,138,-138,140,142,-142,143,141,-143,144,143,-143,145,147,-147,148,146,-148,149,151,-151,152,154,-154,155,153,-155 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *882 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,1,0,0,1,0,0,1,0,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *312 { + a: 0.718504,1.244485,0.718504,0,-0.359252,0.6222427,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,1.244485,-0.02692497,1.125766E-13,-0.02692497,0.466682,7.163165,-1.244485,-0.02692497,-0.7778033,7.163165,0.05185356,7.163165,-0.1555607,7.163165,-0.3629749,7.163165,1.244485,-0.05373687,5.038654E-19,-0.05373687,0.6222427,7.151482,0.2074142,7.151482,-5.684329E-14,7.151482,-1.244485,-0.05373687,-0.2074142,7.151482,-0.6222427,7.151482,1.244485,-0.02692497,-1.548206E-13,-0.02692497,0.7778033,7.163165,-1.244485,-0.02692497,-0.466682,7.163165,0.3629749,7.163165,0.1555607,7.163165,-0.05185356,7.163165,1.244485,0.3041377,-1.09357E-13,0.3041377,1.425905,3.865505,-1.244485,0.3041377,-1.425905,3.865505,1.425905,3.865505,-1.09357E-13,0.3041377,1.244485,0.3041377,-1.244485,0.3041377,-1.425905,3.865505,0.6385037,-1.470103,-0.6385037,-1.470103,1.032205,0.0913937,-1.032205,0.0913937,1.032205,0.0913937,-0.6385037,-1.470103,0.6385037,-1.470103,-1.032205,0.0913937,-1.425905,2.857698,-1.032205,4.720358,1.425905,2.857698,1.032205,4.720358,1.425905,2.857698,-1.032205,4.720358,-1.425905,2.857698,1.032205,4.720358,1.032205,0.0913937,0.6385037,-1.470103,-1.032205,0.0913937,-0.6385037,-1.470103,-1.032205,0.0913937,0.6385037,-1.470103,1.032205,0.0913937,-0.6385037,-1.470103,-1.032205,4.720358,1.032205,4.720358,-1.425905,2.857698,1.425905,2.857698,-1.425905,2.857698,1.032205,4.720358,-1.032205,4.720358,1.425905,2.857698,-1.425905,3.865505,1.425905,3.865505,-1.244485,0.3041377,9.680132E-18,0.3041377,1.244485,0.3041377,-1.244485,0.3041377,1.425905,3.865505,-1.425905,3.865505,9.680132E-18,0.3041377,1.244485,0.3041377,0.6385037,-1.470103,-0.6385037,-1.470103,1.032205,0.0913937,-1.032205,0.0913937,1.032205,0.0913937,-0.6385037,-1.470103,0.6385037,-1.470103,-1.032205,0.0913937,1.425905,2.857698,-1.425905,2.857698,1.032205,4.720358,-1.032205,4.720358,1.032205,4.720358,-1.425905,2.857698,1.425905,2.857698,-1.032205,4.720358,1.244485,0.3041377,-1.934564E-13,0.3041377,1.425905,3.865505,-1.244485,0.3041377,-1.425905,3.865505,1.425905,3.865505,-1.934564E-13,0.3041377,1.244485,0.3041377,-1.244485,0.3041377,-1.425905,3.865505,2.859219,7.437423,-2.971109,7.437423,1.766032,9.061171,-1.149132,9.061171,2.152505,1.346457,0.9864397,-0.6732283,-0.179626,1.346457,0.179626,0.6222427,-0.179626,0.4148284,-2.511757,1.346457,-0.359252,0.3111213,-0.538878,0.2074142,-0.8981299,1.136868E-13,-1.345692,-0.6732283,0.179626,-0.6222427,-0.179626,-2.692913,0.179626,0.2074142,0.179626,5.684342E-14,0.179626,-0.2074142,-0.179626,-0.4148284,-0.359252,-0.3111213,-0.538878,-0.2074142,-2.679593,8.852017,3.150735,8.852017,-2.242318,7.334803,0.08981299,7.334803,2.421944,7.334803,2.859219,8.800248,2.421944,7.283033,-2.971109,8.800248,0.08981299,7.283033,-2.242318,7.283033,2.152505,7.238338,-0.179626,7.238338,2.735538,8.817308,-2.511757,7.238338,-3.09479,8.817308,2.735538,5.440993,-3.09479,5.440993,1.277956,7.398444,-1.637208,7.398444,0.179626,-1.935531,-1.277956,0.5890748,1.637208,0.5890748,-2.679593,7.31649,-1.586406,8.940238,3.150735,7.31649,1.328758,8.940238 + } + UVIndex: *294 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,9,8,11,10,8,12,10,11,13,10,12,14,16,15,17,15,16,18,15,17,19,15,18,20,19,18,21,19,20,22,24,23,25,23,24,26,25,24,27,26,24,28,26,27,29,26,28,30,32,31,33,31,32,34,33,32,35,37,36,36,38,35,38,39,35,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,73,75,77,79,78,78,80,77,78,81,80,82,84,83,85,83,84,86,88,87,87,89,86,90,92,91,93,91,92,94,96,95,95,97,94,98,100,99,101,99,100,102,101,100,103,105,104,104,106,103,106,107,103,108,110,109,111,109,110,112,114,113,115,113,114,116,115,114,114,117,116,118,116,117,119,118,117,120,119,117,121,120,117,115,122,113,123,113,122,124,122,115,125,122,124,126,122,125,127,123,122,128,123,127,121,123,128,129,121,128,120,121,129,130,132,131,133,131,132,134,131,133,135,137,136,138,136,137,139,138,137,140,142,141,143,141,142,144,143,142,145,147,146,148,146,147,149,151,150,152,154,153,155,153,154 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *98 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh flower_redB, Model::RootNode + C: "OO",4908336795433653104,0 + + ;Geometry::, Model::Mesh flower_redB + C: "OO",5063877234746832978,4908336795433653104 + + ;Material::grass, Model::Mesh flower_redB + C: "OO",3024,4908336795433653104 + + ;Material::colorRed, Model::Mesh flower_redB + C: "OO",3008,4908336795433653104 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_redB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/flower_redB.fbx.import new file mode 100644 index 0000000..302f428 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_redB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c2q8il57gi4j" +path="res://.godot/imported/flower_redB.fbx-e7ff9c5cc5241df04a05ee56cd4cd52e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/flower_redB.fbx" +dest_files=["res://.godot/imported/flower_redB.fbx-e7ff9c5cc5241df04a05ee56cd4cd52e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_redC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/flower_redC.fbx new file mode 100644 index 0000000..fe2e895 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_redC.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 21 + Millisecond: 958 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "flower_redC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "flower_redC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5577587462237574373, "Model::flower_redC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5567432702250765700, "Geometry::", "Mesh" { + Vertices: *408 { + a: -0.5226725,0.5531294,-0.9052953,0.001869785,0.324446,-0.62896,-0.5456302,0.324446,-0.3128607,-0.5456302,0.324446,-0.3128607,0.001869785,0.324446,-0.62896,-0.5226725,0.5531294,-0.9052953,0.001869785,0.324446,0.62896,-0.5226725,0.5531294,0.9052953,-0.5456302,0.324446,0.3128607,-0.5456302,0.324446,0.3128607,-0.5226725,0.5531294,0.9052953,0.001869785,0.324446,0.62896,0.5437604,0.324446,-0.3160993,1.045345,0.5531294,4.710285E-09,0.5437604,0.324446,0.3160993,0.5437604,0.324446,0.3160993,1.045345,0.5531294,4.710285E-09,0.5437604,0.324446,-0.3160993,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,0.001869785,0.324446,-0.62896,-0.5456302,0.324446,-0.3128607,-0.365,0,0,0.001869785,0.324446,-0.62896,-0.09125,0,-0.1580496,0.1825,0,-0.3160993,-0.5456302,0.324446,-0.3128607,-0.365,0,0,0.5437604,0.324446,-0.3160993,0.5437604,0.324446,0.3160993,0.1825,0,-0.3160993,0.1825,0,0.3160993,0.1825,0,0,0.1825,0,-0.3160993,0.5437604,0.324446,0.3160993,0.5437604,0.324446,-0.3160993,0.1825,0,0.3160993,0.1825,0,0,0.1825,0,0.3160993,0.001869785,0.324446,0.62896,-0.09125,0,0.1580496,-0.5456302,0.324446,0.3128607,-0.365,0,0,-0.09125,0,0.1580496,0.001869785,0.324446,0.62896,0.1825,0,0.3160993,-0.5456302,0.324446,0.3128607,-0.365,0,0,0.1825,0,0.3160993,0.1825,0,0,-0.09125,0,0.1580496,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,-0.365,0,0,-0.09125,0,-0.1580496,-0.228125,1.825,2.887646E-14,0.1825,0,-0.3160993,0.045625,1.825,-0.1580496,-0.09125,1.825,-0.07902481,0.1825,0,0.3160993,-0.09125,0,0.1580496,0.045625,1.825,0.1580496,-0.365,0,0,-0.228125,1.825,2.887646E-14,-0.09125,1.825,0.07902481,0.1825,0,-0.3160993,0.1825,0,0,0.045625,1.825,-0.1580496,0.045625,1.825,0.1580496,0.1825,0,0.3160993,-0.760625,2.325,0,-0.403125,2.325,0.6192082,-0.545625,1.825,2.887646E-14,-0.295625,1.825,0.4330127,0.669375,2.325,0,0.454375,1.825,2.887646E-14,0.311875,2.325,0.6192082,0.204375,1.825,0.4330127,0.311875,2.325,-0.6192082,0.1325497,2.075,-0.3086076,-0.403125,2.325,-0.6192082,-0.2237997,2.075,-0.3086076,-0.2237997,2.075,0.3086076,-0.403125,2.325,0.6192082,-0.4019744,2.075,0,-0.760625,2.325,0,0.204375,1.825,0.4330127,-0.295625,1.825,0.4330127,0.311875,2.325,0.6192082,-0.403125,2.325,0.6192082,0.454375,1.825,2.887646E-14,0.204375,1.825,-0.4330127,0.204375,1.825,0.4330127,0.045625,1.825,0.1580496,-0.295625,1.825,0.4330127,-0.09125,1.825,0.07902481,-0.228125,1.825,2.887646E-14,0.045625,1.825,-0.1580496,-0.295625,1.825,-0.4330127,-0.09125,1.825,-0.07902481,-0.545625,1.825,2.887646E-14,0.669375,2.325,0,0.311875,2.325,0.6192082,0.3107243,2.075,0,0.1325497,2.075,0.3086076,-0.295625,1.825,-0.4330127,0.204375,1.825,-0.4330127,-0.403125,2.325,-0.6192082,0.311875,2.325,-0.6192082,0.669375,2.325,0,0.3107243,2.075,0,0.311875,2.325,-0.6192082,0.1325497,2.075,-0.3086076,0.311875,2.325,0.6192082,-0.403125,2.325,0.6192082,0.1325497,2.075,0.3086076,-0.2237997,2.075,0.3086076,0.311875,2.325,-0.6192082,0.204375,1.825,-0.4330127,0.669375,2.325,0,0.454375,1.825,2.887646E-14,-0.403125,2.325,-0.6192082,-0.760625,2.325,0,-0.295625,1.825,-0.4330127,-0.545625,1.825,2.887646E-14,-0.2237997,2.075,-0.3086076,-0.4019744,2.075,0,-0.403125,2.325,-0.6192082,-0.760625,2.325,0,0.3107243,2.075,0,0.1325497,2.075,0.3086076,0.1325497,2.075,-0.3086076,-0.2237997,2.075,-0.3086076,-0.2237997,2.075,0.3086076,-0.4019744,2.075,0 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,19,-21,22,19,-22,23,25,-25,24,26,-24,24,27,-27,28,30,-30,31,29,-31,32,31,-31,33,35,-35,34,36,-34,36,37,-34,38,40,-40,41,39,-41,42,41,-41,43,45,-45,44,46,-44,46,47,-44,48,50,-50,51,49,-51,52,51,-51,53,52,-51,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,62,-62,63,61,-63,64,63,-63,65,64,-63,66,68,-68,69,67,-69,70,67,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,94,-94,96,94,-96,97,96,-96,94,98,-93,99,92,-99,95,99,-98,100,99,-99,97,99,-101,101,99,-96,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,131,-134,135,134,-134 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0.2074203,0.909894,0.3592626,0.2074203,0.909894,0.3592626,0.2074203,0.909894,0.3592626,-0.2074203,-0.909894,-0.3592626,-0.2074203,-0.909894,-0.3592626,-0.2074203,-0.909894,-0.3592626,0.2074203,0.909894,-0.3592626,0.2074203,0.909894,-0.3592626,0.2074203,0.909894,-0.3592626,-0.2074203,-0.909894,0.3592626,-0.2074203,-0.909894,0.3592626,-0.2074203,-0.909894,0.3592626,-0.4148407,0.909894,0,-0.4148407,0.909894,0,-0.4148407,0.909894,0,0.4148407,-0.909894,0,0.4148407,-0.909894,0,0.4148407,-0.909894,0,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,-0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,-0.4996488,0.03747366,0.8654172,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,0.9971993,0.07478995,0,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *272 { + a: 1.854351E-08,4.648086,1.244485,2.477787,-1.244485,2.477787,-1.244485,2.477787,1.244485,2.477787,1.854351E-08,4.648086,-1.244485,2.477787,1.854358E-08,4.648086,1.244485,2.477787,1.244485,2.477787,1.854358E-08,4.648086,-1.244485,2.477787,-1.244485,2.477787,1.854443E-08,4.648086,1.244485,2.477787,1.244485,2.477787,1.854443E-08,4.648086,-1.244485,2.477787,1.244485,0.5345659,1.563749E-13,0.5345659,1.244485,2.446243,-1.244485,2.446243,-1.244485,0.5345659,1.244485,2.446243,1.563749E-13,0.5345659,1.244485,0.5345659,-1.244485,2.446243,-1.244485,0.5345659,-1.244485,2.446243,1.244485,2.446243,-1.244485,0.5345659,1.244485,0.5345659,-7.922454E-18,0.5345659,-1.244485,0.5345659,1.244485,2.446243,-1.244485,2.446243,1.244485,0.5345659,-7.922454E-18,0.5345659,-1.244485,0.5345659,-1.244485,2.446243,-1.797729E-13,0.5345659,1.244485,2.446243,1.244485,0.5345659,-1.797729E-13,0.5345659,-1.244485,2.446243,-1.244485,0.5345659,1.244485,2.446243,1.244485,0.5345659,0.718504,1.244485,0.718504,0,-0.359252,0.6222427,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,1.244485,-0.02692497,-1.566525E-13,-0.02692497,0.7778033,7.163165,-1.244485,-0.02692497,-0.466682,7.163165,0.1555607,7.163165,1.244485,-0.02692497,1.1674E-13,-0.02692497,0.466682,7.163165,-1.244485,-0.02692497,-0.7778033,7.163165,-0.1555607,7.163165,1.244485,-0.05373687,1.030125E-17,-0.05373687,0.6222427,7.151482,-0.6222427,7.151482,-1.244485,-0.05373687,-1.497293,9.483103,1.317667,9.483103,-1.074065,7.382538,0.894439,7.382538,1.317667,9.374528,0.894439,7.273963,-1.497293,9.374528,-1.074065,7.273963,1.227854,7.638502,0.5218492,6.068763,-1.587106,7.638502,-0.8811011,6.068763,-0.6116621,6.189946,-1.317667,7.759685,0.7912881,6.189946,1.497293,7.759685,0.804626,7.32825,-1.163878,7.32825,1.227854,9.428816,-1.587106,9.428816,1.788878,1.136868E-13,0.804626,-1.704774,0.804626,1.704774,0.179626,0.6222427,-1.163878,1.704774,-0.359252,0.3111213,-0.8981299,1.136868E-13,0.179626,-0.6222427,-1.163878,-1.704774,-0.359252,-0.3111213,-2.14813,1.136868E-13,-1.317667,7.51732,1.497293,7.51732,-0.6116621,5.94758,0.7912881,5.94758,1.163878,7.32825,-0.804626,7.32825,1.587106,9.428816,-1.227854,9.428816,1.317667,7.51732,0.6116621,5.94758,-1.497293,7.51732,-0.7912881,5.94758,-1.227854,7.638502,1.587106,7.638502,-0.5218492,6.068763,0.8811011,6.068763,1.497293,9.374528,1.074065,7.273963,-1.317667,9.374528,-0.894439,7.273963,-1.317667,9.483103,1.497293,9.483103,-0.894439,7.382538,1.074065,7.382538,0.6116621,6.189946,-0.7912881,6.189946,1.317667,7.759685,-1.497293,7.759685,-1.223324,0,-0.5218492,1.214991,-0.5218492,-1.214991,0.8811011,-1.214991,0.8811011,1.214991,1.582576,0 + } + UVIndex: *234 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,19,20,22,19,21,23,25,24,24,26,23,24,27,26,28,30,29,31,29,30,32,31,30,33,35,34,34,36,33,36,37,33,38,40,39,41,39,40,42,41,40,43,45,44,44,46,43,46,47,43,48,50,49,51,49,50,52,51,50,53,52,50,54,56,55,57,55,56,58,57,56,59,58,56,60,62,61,63,61,62,64,63,62,65,64,62,66,68,67,69,67,68,70,67,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,94,93,96,94,95,97,96,95,94,98,92,99,92,98,95,99,97,100,99,98,97,99,100,101,99,95,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,131,133,135,134,133 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } + + Material: 3014, "Material::colorWhite", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh flower_redC, Model::RootNode + C: "OO",5577587462237574373,0 + + ;Geometry::, Model::Mesh flower_redC + C: "OO",5567432702250765700,5577587462237574373 + + ;Material::grass, Model::Mesh flower_redC + C: "OO",3024,5577587462237574373 + + ;Material::colorRed, Model::Mesh flower_redC + C: "OO",3008,5577587462237574373 + + ;Material::colorWhite, Model::Mesh flower_redC + C: "OO",3014,5577587462237574373 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_redC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/flower_redC.fbx.import new file mode 100644 index 0000000..546ea06 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_redC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://7hdlcumt1gsy" +path="res://.godot/imported/flower_redC.fbx-2be4936d8d71d8536c1f72a391e39fad.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/flower_redC.fbx" +dest_files=["res://.godot/imported/flower_redC.fbx-2be4936d8d71d8536c1f72a391e39fad.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowA.fbx new file mode 100644 index 0000000..cd730fe --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 54 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "flower_yellowA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "flower_yellowA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5190300692076901155, "Model::flower_yellowA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5509381841000570017, "Geometry::", "Mesh" { + Vertices: *402 { + a: 0.1825,0,0.3160993,0.1825,0,0,-0.09125,0,0.1580496,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,-0.5226725,0.8729668,-0.9052953,0.001869785,0.6243979,-0.62896,-0.5456302,0.6243979,-0.3128607,-0.5456302,0.6243979,-0.3128607,0.001869785,0.6243979,-0.62896,-0.5226725,0.8729668,-0.9052953,-0.365,0,0,-0.09125,0,0.1580496,-0.5456302,0.6243979,0.3128607,0.1825,0,0.3160993,0.001869785,0.6243979,0.62896,-0.5456302,0.6243979,0.3128607,-0.09125,0,0.1580496,-0.365,0,0,0.1825,0,0.3160993,0.001869785,0.6243979,0.62896,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,0.001869785,0.6243979,-0.62896,-0.365,0,0,-0.5456302,0.6243979,-0.3128607,0.001869785,0.6243979,-0.62896,-0.09125,0,-0.1580496,0.1825,0,-0.3160993,-0.365,0,0,-0.5456302,0.6243979,-0.3128607,0.1825,0,-0.3160993,0.5437604,0.6243979,-0.3160993,0.1825,0,0,0.5437604,0.6243979,0.3160993,0.1825,0,0.3160993,0.1825,0,0,0.5437604,0.6243979,-0.3160993,0.1825,0,-0.3160993,0.5437604,0.6243979,0.3160993,0.1825,0,0.3160993,0.001869785,0.6243979,0.62896,-0.5226725,0.8729668,0.9052953,-0.5456302,0.6243979,0.3128607,-0.5456302,0.6243979,0.3128607,-0.5226725,0.8729668,0.9052953,0.001869785,0.6243979,0.62896,0.5437604,0.6243979,-0.3160993,1.045345,0.8729668,4.710285E-09,0.5437604,0.6243979,0.3160993,0.5437604,0.6243979,0.3160993,1.045345,0.8729668,4.710285E-09,0.5437604,0.6243979,-0.3160993,0.1825,0,0.3160993,-0.09125,0,0.1580496,0.045625,0.8249999,0.1580496,-0.365,0,0,-0.228125,0.8249999,2.887646E-14,-0.09125,0.8249999,0.07902481,-0.365,0,0,-0.09125,0,-0.1580496,-0.228125,0.8249999,2.887646E-14,0.1825,0,-0.3160993,0.045625,0.8249999,-0.1580496,-0.09125,0.8249999,-0.07902481,0.1825,0,-0.3160993,0.1825,0,0,0.045625,0.8249999,-0.1580496,0.045625,0.8249999,1.443823E-14,0.1825,0,0.3160993,0.045625,0.8249999,0.1580496,-0.295625,0.8249999,-0.25,-0.295625,1.925,-0.25,-0.295625,0.8249999,0.25,-0.295625,1.925,0.25,-0.455625,1.825,-0.41,-0.455625,1.825,0.41,-0.295625,0.8249999,-0.25,-0.295625,0.8249999,0.25,-0.295625,0.8249999,-0.25,-0.455625,1.825,0.41,-0.455625,1.825,-0.41,-0.295625,0.8249999,0.25,0.204375,1.925,-0.25,0.204375,1.925,0.25,-0.295625,1.925,-0.25,-0.295625,1.925,0.25,0.204375,0.8249999,0.25,-0.295625,0.8249999,0.25,0.364375,1.825,0.41,-0.455625,1.825,0.41,0.364375,1.825,0.41,-0.295625,0.8249999,0.25,0.204375,0.8249999,0.25,-0.455625,1.825,0.41,0.204375,0.8249999,0.25,-0.295625,0.8249999,0.25,0.204375,1.925,0.25,-0.295625,1.925,0.25,0.204375,1.925,-0.25,0.204375,0.8249999,-0.25,0.204375,1.925,0.25,0.204375,0.8249999,0.25,0.204375,0.8249999,-0.25,0.045625,0.8249999,0.1580496,0.204375,0.8249999,0.25,-0.295625,0.8249999,0.25,-0.09125,0.8249999,0.07902481,-0.228125,0.8249999,2.887646E-14,0.045625,0.8249999,-0.1580496,-0.295625,0.8249999,-0.25,0.045625,0.8249999,1.443823E-14,-0.09125,0.8249999,-0.07902481,0.364375,1.825,-0.41,0.204375,0.8249999,-0.25,0.364375,1.825,0.41,0.204375,0.8249999,0.25,0.364375,1.825,0.41,0.204375,0.8249999,-0.25,0.364375,1.825,-0.41,0.204375,0.8249999,0.25,-0.295625,0.8249999,-0.25,0.204375,0.8249999,-0.25,-0.455625,1.825,-0.41,0.364375,1.825,-0.41,-0.455625,1.825,-0.41,0.204375,0.8249999,-0.25,-0.295625,0.8249999,-0.25,0.364375,1.825,-0.41,-0.295625,0.8249999,-0.25,0.204375,0.8249999,-0.25,-0.295625,1.925,-0.25,0.204375,1.925,-0.25 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,11,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,18,20,-18,20,21,-18,22,24,-24,25,23,-25,26,25,-25,27,29,-29,28,30,-28,30,31,-28,32,34,-34,35,33,-35,36,35,-35,37,39,-39,38,40,-38,40,41,-38,42,44,-44,45,47,-47,48,50,-50,51,53,-53,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,62,-62,63,61,-63,64,63,-63,65,64,-63,66,68,-68,69,67,-69,70,67,-70,71,70,-70,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,81,83,-81,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,108,-108,105,110,-105,111,104,-111,107,111,-110,112,110,-106,113,111,-111,109,111,-114,114,116,-116,117,115,-117,118,120,-120,119,121,-119,122,124,-124,125,123,-125,126,128,-128,127,129,-127,130,132,-132,133,131,-133 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.2220167,0.8960102,0.3845443,0.2220167,0.8960102,0.3845443,0.2220167,0.8960102,0.3845443,-0.2220167,-0.8960102,-0.3845443,-0.2220167,-0.8960102,-0.3845443,-0.2220167,-0.8960102,-0.3845443,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,0.4327832,0.5007943,-0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,-0.4327832,-0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,0.4327832,0.5007943,0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.4327832,-0.5007943,-0.7496025,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,-0.8655664,0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.8655664,-0.5007942,0,0.2220167,0.8960102,-0.3845443,0.2220167,0.8960102,-0.3845443,0.2220167,0.8960102,-0.3845443,-0.2220167,-0.8960102,0.3845443,-0.2220167,-0.8960102,0.3845443,-0.2220167,-0.8960102,0.3845443,-0.4440334,0.8960102,0,-0.4440334,0.8960102,0,-0.4440334,0.8960102,0,0.4440334,-0.8960102,0,0.4440334,-0.8960102,0,0.4440334,-0.8960102,0,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,-0.9874407,-0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0.9874407,0.1579905,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,-0.1579905,0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0.1579905,-0.9874407,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,0.9874407,-0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,-0.9874407,0.1579905,0,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,-0.1579905,-0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0.1579905,0.9874407,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *268 { + a: 0.718504,1.244485,0.718504,0,-0.359252,0.6222427,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,1.854356E-08,5.213647,1.244485,3.009718,-1.244485,3.009718,-1.244485,3.009718,1.244485,3.009718,1.854356E-08,5.213647,1.244485,0.3598227,-1.64202E-13,0.3598227,1.244485,3.199882,-1.244485,0.3598227,-1.244485,3.199882,1.244485,3.199882,-1.64202E-13,0.3598227,1.244485,0.3598227,-1.244485,0.3598227,-1.244485,3.199882,1.244485,0.3598227,1.560418E-13,0.3598227,1.244485,3.199882,-1.244485,0.3598227,-1.244485,3.199882,1.244485,3.199882,1.560418E-13,0.3598227,1.244485,0.3598227,-1.244485,0.3598227,-1.244485,3.199882,-1.244485,0.3598227,-1.244485,3.199882,-6.459835E-18,0.3598227,1.244485,3.199882,1.244485,0.3598227,-6.459835E-18,0.3598227,-1.244485,3.199882,-1.244485,0.3598227,1.244485,3.199882,1.244485,0.3598227,-1.244485,3.009718,1.854361E-08,5.213647,1.244485,3.009718,1.244485,3.009718,1.854361E-08,5.213647,-1.244485,3.009718,-1.244485,3.009718,1.854442E-08,5.213647,1.244485,3.009718,1.244485,3.009718,1.854442E-08,5.213647,-1.244485,3.009718,1.244485,-0.05939914,9.070522E-14,-0.05939914,0.466682,3.199789,-1.244485,-0.05939914,-0.7778033,3.199789,-0.1555607,3.199789,1.244485,-0.05939914,-1.304512E-13,-0.05939914,0.7778033,3.199789,-1.244485,-0.05939914,-0.466682,3.199789,0.1555607,3.199789,1.244485,-0.1175988,-7.491816E-19,-0.1175988,0.6222427,3.174832,-5.684361E-14,3.174832,-1.244485,-0.1175988,-0.6222427,3.174832,-0.984252,3.248031,-0.984252,7.57874,0.984252,3.248031,0.984252,7.57874,-1.614173,7.378203,1.614173,7.378203,-0.984252,3.39112,0.984252,3.39112,-0.984252,3.39112,1.614173,7.378203,-1.614173,7.378203,0.984252,3.39112,-0.804626,-0.984252,-0.804626,0.984252,1.163878,-0.984252,1.163878,0.984252,0.804626,3.362741,-1.163878,3.362741,1.434547,7.349824,-1.793799,7.349824,1.434547,7.349824,-1.163878,3.362741,0.804626,3.362741,-1.793799,7.349824,0.804626,3.248031,-1.163878,3.248031,0.804626,7.57874,-1.163878,7.57874,0.984252,7.57874,0.984252,3.248031,-0.984252,7.57874,-0.984252,3.248031,0.804626,-0.984252,0.179626,0.6222427,0.804626,0.984252,-1.163878,0.984252,-0.359252,0.3111213,-0.8981299,1.136868E-13,0.179626,-0.6222427,-1.163878,-0.984252,0.179626,5.684342E-14,-0.359252,-0.3111213,1.614173,7.321445,0.984252,3.334362,-1.614173,7.321445,-0.984252,3.334362,-1.614173,7.321445,0.984252,3.334362,1.614173,7.321445,-0.984252,3.334362,1.163878,3.362741,-0.804626,3.362741,1.793799,7.349824,-1.434547,7.349824,1.793799,7.349824,-0.804626,3.362741,1.163878,3.362741,-1.434547,7.349824,1.163878,3.248031,-0.804626,3.248031,1.163878,7.57874,-0.804626,7.57874 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,11,10,12,14,13,15,13,14,16,15,14,17,19,18,18,20,17,20,21,17,22,24,23,25,23,24,26,25,24,27,29,28,28,30,27,30,31,27,32,34,33,35,33,34,36,35,34,37,39,38,38,40,37,40,41,37,42,44,43,45,47,46,48,50,49,51,53,52,54,56,55,57,55,56,58,57,56,59,58,56,60,62,61,63,61,62,64,63,62,65,64,62,66,68,67,69,67,68,70,67,69,71,70,69,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,81,83,80,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,108,107,105,110,104,111,104,110,107,111,109,112,110,105,113,111,110,109,111,113,114,116,115,117,115,116,118,120,119,119,121,118,122,124,123,125,123,124,126,128,127,127,129,126,130,132,131,133,131,132 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3016, "Material::colorYellow", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9960784,0.6941177,0.2784314 + P: "DiffuseColor", "Color", "", "A",0.9960784,0.6941177,0.2784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh flower_yellowA, Model::RootNode + C: "OO",5190300692076901155,0 + + ;Geometry::, Model::Mesh flower_yellowA + C: "OO",5509381841000570017,5190300692076901155 + + ;Material::grass, Model::Mesh flower_yellowA + C: "OO",3024,5190300692076901155 + + ;Material::colorYellow, Model::Mesh flower_yellowA + C: "OO",3016,5190300692076901155 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowA.fbx.import new file mode 100644 index 0000000..7f2a9a5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cwg8fo8t74qfw" +path="res://.godot/imported/flower_yellowA.fbx-898051c53b90604018ef5453f4c6fe13.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/flower_yellowA.fbx" +dest_files=["res://.godot/imported/flower_yellowA.fbx-898051c53b90604018ef5453f4c6fe13.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowB.fbx new file mode 100644 index 0000000..06fd8dd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 153 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "flower_yellowB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "flower_yellowB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4702142768433850145, "Model::flower_yellowB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5015557099618627050, "Geometry::", "Mesh" { + Vertices: *702 { + a: 0.1825,0,0.3160993,0.1825,0,0,-0.09125,0,0.1580496,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,0.1825,0,0.3160993,-0.09125,0,0.1580496,0.045625,0.8249999,0.1580496,-0.365,0,0,-0.228125,0.8249999,2.887646E-14,-0.045625,0.8249999,0.1053664,-0.09125,0.8249999,0.07902481,-0.136875,0.8249999,0.05268321,0.1825,0,-0.3160993,0.1825,0,0,0.045625,0.8249999,-0.1580496,0.045625,0.8249999,-0.05268321,0.045625,0.8249999,1.443823E-14,0.1825,0,0.3160993,0.045625,0.8249999,0.05268321,0.045625,0.8249999,0.1580496,-0.365,0,0,-0.09125,0,-0.1580496,-0.228125,0.8249999,2.887646E-14,0.1825,0,-0.3160993,0.045625,0.8249999,-0.1580496,-0.136875,0.8249999,-0.05268321,-0.09125,0.8249999,-0.07902481,-0.045625,0.8249999,-0.1053664,-0.365,0,0,-0.09125,0,0.1580496,-0.5963597,0.8195495,0.3085655,0.1825,0,0.3160993,0.03095431,0.8195495,0.6707454,-0.5963597,0.8195495,0.3085655,-0.09125,0,0.1580496,-0.365,0,0,0.1825,0,0.3160993,0.03095431,0.8195495,0.6707454,-0.5031826,0.6195495,1.195898,-0.7840865,0.6195495,1.033718,-0.2868615,0.9195495,1.021219,-0.7409705,0.9195495,0.7590387,-0.2868615,0.9195495,1.021219,-0.7840865,0.6195495,1.033718,-0.5031826,0.6195495,1.195898,-0.7409705,0.9195495,0.7590387,0.03095431,0.8195495,0.6707454,-0.2868615,0.9195495,1.021219,-0.5963597,0.8195495,0.3085655,-0.7409705,0.9195495,0.7590387,-0.5963597,0.8195495,0.3085655,-0.2868615,0.9195495,1.021219,0.03095431,0.8195495,0.6707454,-0.7409705,0.9195495,0.7590387,1.027832,0.9195495,-0.2621799,1.287269,0.6195495,-0.1621799,1.027832,0.9195495,0.2621799,1.287269,0.6195495,0.1621799,1.027832,0.9195495,0.2621799,1.287269,0.6195495,-0.1621799,1.027832,0.9195495,-0.2621799,1.287269,0.6195495,0.1621799,1.027832,0.9195495,-0.2621799,1.027832,0.9195495,0.2621799,0.5654054,0.8195495,-0.3621799,0.5654054,0.8195495,0.3621799,0.5654054,0.8195495,-0.3621799,1.027832,0.9195495,0.2621799,1.027832,0.9195495,-0.2621799,0.5654054,0.8195495,0.3621799,0.5654054,0.8195495,-0.3621799,0.5654054,0.8195495,0.3621799,0.1825,0,-0.3160993,0.1825,0,0,0.1825,0,0.3160993,0.1825,0,-0.3160993,0.5654054,0.8195495,0.3621799,0.5654054,0.8195495,-0.3621799,0.1825,0,0,0.1825,0,0.3160993,-0.7840865,0.6195495,-1.033718,-0.5031826,0.6195495,-1.195898,-0.7409705,0.9195495,-0.7590387,-0.2868615,0.9195495,-1.021219,-0.7409705,0.9195495,-0.7590387,-0.5031826,0.6195495,-1.195898,-0.7840865,0.6195495,-1.033718,-0.2868615,0.9195495,-1.021219,0.03095431,0.8195495,-0.6707454,-0.5963597,0.8195495,-0.3085655,-0.2868615,0.9195495,-1.021219,-0.7409705,0.9195495,-0.7590387,-0.2868615,0.9195495,-1.021219,-0.5963597,0.8195495,-0.3085655,0.03095431,0.8195495,-0.6707454,-0.7409705,0.9195495,-0.7590387,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,0.03095431,0.8195495,-0.6707454,-0.365,0,0,-0.5963597,0.8195495,-0.3085655,0.03095431,0.8195495,-0.6707454,-0.09125,0,-0.1580496,0.1825,0,-0.3160993,-0.365,0,0,-0.5963597,0.8195495,-0.3085655,-0.09125,0,0.1580496,0.1825,0,0,0.1825,0,0.3160993,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,0.045625,0.8249999,0.1580496,-0.09125,0,0.1580496,0.1825,0,0.3160993,-0.365,0,0,-0.228125,0.8249999,2.887646E-14,-0.045625,0.8249999,0.1053664,-0.09125,0.8249999,0.07902481,-0.136875,0.8249999,0.05268321,0.045625,0.8249999,-0.1580496,0.1825,0,0,0.1825,0,-0.3160993,0.045625,0.8249999,-0.05268321,0.045625,0.8249999,1.443823E-14,0.1825,0,0.3160993,0.045625,0.8249999,0.05268321,0.045625,0.8249999,0.1580496,-0.228125,0.8249999,2.887646E-14,-0.09125,0,-0.1580496,-0.365,0,0,0.1825,0,-0.3160993,0.045625,0.8249999,-0.1580496,-0.136875,0.8249999,-0.05268321,-0.09125,0.8249999,-0.07902481,-0.045625,0.8249999,-0.1053664,-0.045625,1.205,-0.81225,0.6948267,1.205,0.47025,-0.045625,1.585,-0.491625,0.3246009,1.585,0.149625,-0.045625,1.585,-0.491625,0.6948267,1.205,0.47025,-0.045625,1.205,-0.81225,0.3246009,1.585,0.149625,0.5467364,0.8249999,0.342,0.2505557,0.8249999,-0.171,-0.045625,0.8249999,0.342,0.045625,0.8249999,0.1580496,-0.045625,0.8249999,0.1053664,-0.6379864,0.8249999,0.342,-0.09125,0.8249999,0.07902481,-0.136875,0.8249999,0.05268321,-0.228125,0.8249999,2.887646E-14,-0.3418057,0.8249999,-0.171,0.045625,0.8249999,-0.1580496,-0.045625,0.8249999,-0.684,0.045625,0.8249999,0.05268321,0.045625,0.8249999,1.443823E-14,0.045625,0.8249999,-0.05268321,-0.045625,0.8249999,-0.1053664,-0.09125,0.8249999,-0.07902481,-0.136875,0.8249999,-0.05268321,-0.045625,0.8249999,0.342,0.2505557,0.8249999,-0.171,0.5467364,0.8249999,0.342,0.045625,0.8249999,0.1580496,-0.045625,0.8249999,0.1053664,-0.6379864,0.8249999,0.342,-0.09125,0.8249999,0.07902481,-0.136875,0.8249999,0.05268321,-0.228125,0.8249999,2.887646E-14,-0.3418057,0.8249999,-0.171,0.045625,0.8249999,-0.1580496,-0.045625,0.8249999,-0.684,0.045625,0.8249999,0.05268321,0.045625,0.8249999,1.443823E-14,0.045625,0.8249999,-0.05268321,-0.045625,0.8249999,-0.1053664,-0.09125,0.8249999,-0.07902481,-0.136875,0.8249999,-0.05268321,-0.045625,1.205,-0.81225,-0.7860767,1.205,0.47025,-0.045625,0.8249999,-0.684,-0.3418057,0.8249999,-0.171,-0.6379864,0.8249999,0.342,-0.045625,0.8249999,-0.684,-0.7860767,1.205,0.47025,-0.045625,1.205,-0.81225,-0.3418057,0.8249999,-0.171,-0.6379864,0.8249999,0.342,-0.045625,1.205,-0.81225,-0.045625,0.8249999,-0.684,0.6948267,1.205,0.47025,0.2505557,0.8249999,-0.171,0.5467364,0.8249999,0.342,0.6948267,1.205,0.47025,-0.045625,0.8249999,-0.684,-0.045625,1.205,-0.81225,0.2505557,0.8249999,-0.171,0.5467364,0.8249999,0.342,0.5467364,0.8249999,0.342,-0.045625,0.8249999,0.342,0.6948267,1.205,0.47025,-0.6379864,0.8249999,0.342,-0.7860767,1.205,0.47025,0.6948267,1.205,0.47025,-0.045625,0.8249999,0.342,0.5467364,0.8249999,0.342,-0.6379864,0.8249999,0.342,-0.7860767,1.205,0.47025,0.6948267,1.205,0.47025,-0.7860767,1.205,0.47025,0.3246009,1.585,0.149625,-0.4158508,1.585,0.149625,0.3246009,1.585,0.149625,-0.7860767,1.205,0.47025,0.6948267,1.205,0.47025,-0.4158508,1.585,0.149625,-0.045625,1.585,-0.491625,0.3246009,1.585,0.149625,-0.4158508,1.585,0.149625,-0.4158508,1.585,0.149625,0.3246009,1.585,0.149625,-0.045625,1.585,-0.491625,-0.045625,1.205,-0.81225,-0.045625,1.585,-0.491625,-0.7860767,1.205,0.47025,-0.4158508,1.585,0.149625,-0.7860767,1.205,0.47025,-0.045625,1.585,-0.491625,-0.045625,1.205,-0.81225,-0.4158508,1.585,0.149625 + } + PolygonVertexIndex: *462 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,10,-12,13,10,-13,14,16,-16,17,15,-17,18,15,-18,19,15,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,26,-25,28,26,-28,29,26,-29,30,32,-32,33,31,-33,34,33,-33,35,37,-37,36,38,-36,38,39,-36,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,73,-76,77,79,-79,78,80,-78,78,81,-81,82,84,-84,85,83,-85,86,88,-88,87,89,-87,90,92,-92,93,91,-93,94,96,-96,95,97,-95,98,100,-100,101,99,-101,102,101,-101,103,105,-105,104,106,-104,106,107,-104,108,110,-110,109,111,-109,111,112,-109,112,113,-109,114,116,-116,115,117,-115,117,118,-115,118,119,-115,118,120,-120,118,121,-121,122,124,-124,123,125,-123,123,126,-126,123,127,-127,127,128,-127,127,129,-129,130,132,-132,131,133,-131,133,134,-131,134,135,-131,134,136,-136,134,137,-137,138,140,-140,141,139,-141,142,144,-144,143,145,-143,146,148,-148,149,147,-149,150,149,-149,148,151,-151,152,150,-152,153,152,-152,154,153,-152,155,154,-152,149,156,-148,157,147,-157,158,156,-150,159,156,-159,160,156,-160,161,157,-157,162,157,-162,155,157,-163,163,155,-163,154,155,-164,164,166,-166,165,167,-165,167,168,-165,169,164,-169,168,170,-170,170,171,-170,171,172,-170,172,173,-170,174,167,-166,165,175,-175,174,176,-168,174,177,-177,174,178,-178,175,179,-175,175,180,-180,175,173,-181,173,181,-181,173,172,-182,182,184,-184,185,183,-185,186,183,-186,187,189,-189,188,190,-188,188,191,-191,192,194,-194,195,193,-195,196,195,-195,197,199,-199,198,200,-198,200,201,-198,202,204,-204,205,203,-205,206,205,-205,207,209,-209,208,210,-208,210,211,-208,212,214,-214,215,213,-215,216,218,-218,217,219,-217,220,222,-222,223,225,-225,226,228,-228,229,227,-229,230,232,-232,231,233,-231 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1386 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,0.4529964,0.423293,-0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.4529964,-0.423293,0.7846128,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,-0.3781956,0.6541196,0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.3781956,-0.6541196,-0.6550539,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,0.1056824,0.9774073,-0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,-0.1056824,-0.9774073,0.1830474,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,0.7563912,0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.7563912,-0.6541196,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,-0.2113649,0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,0.2113649,-0.9774073,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,-0.9059929,0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,0.9059929,-0.4232931,0,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,-0.3781956,0.6541196,-0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.3781956,-0.6541196,0.6550539,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,0.1056824,0.9774073,0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,-0.1056824,-0.9774073,-0.1830474,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,0.4529964,0.423293,0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,-0.4529964,-0.423293,-0.7846128,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,0.4982885,-0.08267058,-0.863061,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,-0.9865149,-0.1636718,0,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.4982885,-0.08267058,0.863061,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,0.7979247,0.3887005,-0.4606821,-0.7979247,-0.3887005,0.4606821,-0.7979247,-0.3887005,0.4606821,-0.7979247,-0.3887005,0.4606821,-0.7979247,-0.3887005,0.4606821,-0.7979247,-0.3887005,0.4606821,-0.7979247,-0.3887005,0.4606821,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,-0.8539519,-0.1663974,-0.4930294,0.8539519,0.1663974,0.4930294,0.8539519,0.1663974,0.4930294,0.8539519,0.1663974,0.4930294,0.8539519,0.1663974,0.4930294,0.8539519,0.1663974,0.4930294,0.8539519,0.1663974,0.4930294,0.8539519,0.1663974,0.4930294,0.8539519,0.1663974,0.4930294,0.8539519,0.1663974,0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,0.8539519,-0.1663974,-0.4930294,-0.8539519,0.1663974,0.4930294,-0.8539519,0.1663974,0.4930294,-0.8539519,0.1663974,0.4930294,-0.8539519,0.1663974,0.4930294,-0.8539519,0.1663974,0.4930294,-0.8539519,0.1663974,0.4930294,-0.8539519,0.1663974,0.4930294,-0.8539519,0.1663974,0.4930294,-0.8539519,0.1663974,0.4930294,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,-0.3197787,0.9474923,0,0.3197787,-0.9474923,0,0.3197787,-0.9474923,0,0.3197787,-0.9474923,0,0.3197787,-0.9474923,0,0.3197787,-0.9474923,0,0.3197787,-0.9474923,0,0.3197787,-0.9474923,0,0.3197787,-0.9474923,0,0.3197787,-0.9474923,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,0.6448709,0.7642915,0,-0.6448709,-0.7642915,0,-0.6448709,-0.7642915,0,-0.6448709,-0.7642915,0,-0.6448709,-0.7642915,0,-0.6448709,-0.7642915,0,-0.6448709,-0.7642915,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,-0.7979247,0.3887005,-0.4606821,0.7979247,-0.3887005,0.4606821,0.7979247,-0.3887005,0.4606821,0.7979247,-0.3887005,0.4606821,0.7979247,-0.3887005,0.4606821,0.7979247,-0.3887005,0.4606821,0.7979247,-0.3887005,0.4606821 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *468 { + a: 0.718504,1.244485,0.718504,0,-0.359252,0.6222427,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,1.244485,-0.05939914,1.115774E-13,-0.05939914,0.466682,3.199789,-1.244485,-0.05939914,-0.7778033,3.199789,0.05185356,3.199789,-0.1555607,3.199789,-0.3629749,3.199789,1.244485,-0.1175988,-9.573442E-18,-0.1175988,0.6222427,3.174832,0.2074142,3.174832,-5.684581E-14,3.174832,-1.244485,-0.1175988,-0.2074142,3.174832,-0.6222427,3.174832,1.244485,-0.05939914,-1.558753E-13,-0.05939914,0.7778033,3.199789,-1.244485,-0.05939914,-0.466682,3.199789,0.3629749,3.199789,0.1555607,3.199789,-0.05185356,3.199789,1.244485,0.3041377,-1.09357E-13,0.3041377,1.425905,3.865505,-1.244485,0.3041377,-1.425905,3.865505,1.425905,3.865505,-1.09357E-13,0.3041377,1.244485,0.3041377,-1.244485,0.3041377,-1.425905,3.865505,0.6385037,-1.470103,-0.6385037,-1.470103,1.032205,0.0913937,-1.032205,0.0913937,1.032205,0.0913937,-0.6385037,-1.470103,0.6385037,-1.470103,-1.032205,0.0913937,-1.425905,2.857698,-1.032205,4.720358,1.425905,2.857698,1.032205,4.720358,1.425905,2.857698,-1.032205,4.720358,-1.425905,2.857698,1.032205,4.720358,1.032205,0.0913937,0.6385037,-1.470103,-1.032205,0.0913937,-0.6385037,-1.470103,-1.032205,0.0913937,0.6385037,-1.470103,1.032205,0.0913937,-0.6385037,-1.470103,-1.032205,4.720358,1.032205,4.720358,-1.425905,2.857698,1.425905,2.857698,-1.425905,2.857698,1.032205,4.720358,-1.032205,4.720358,1.425905,2.857698,-1.425905,3.865505,1.425905,3.865505,-1.244485,0.3041377,9.680132E-18,0.3041377,1.244485,0.3041377,-1.244485,0.3041377,1.425905,3.865505,-1.425905,3.865505,9.680132E-18,0.3041377,1.244485,0.3041377,0.6385037,-1.470103,-0.6385037,-1.470103,1.032205,0.0913937,-1.032205,0.0913937,1.032205,0.0913937,-0.6385037,-1.470103,0.6385037,-1.470103,-1.032205,0.0913937,1.425905,2.857698,-1.425905,2.857698,1.032205,4.720358,-1.032205,4.720358,1.032205,4.720358,-1.425905,2.857698,1.425905,2.857698,-1.032205,4.720358,1.244485,0.3041377,-1.934564E-13,0.3041377,1.425905,3.865505,-1.244485,0.3041377,-1.425905,3.865505,1.425905,3.865505,-1.934564E-13,0.3041377,1.244485,0.3041377,-1.244485,0.3041377,-1.425905,3.865505,-0.359252,0.6222427,0.718504,0,0.718504,1.244485,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,0.466682,3.199789,1.115774E-13,-0.05939914,1.244485,-0.05939914,-1.244485,-0.05939914,-0.7778033,3.199789,0.05185356,3.199789,-0.1555607,3.199789,-0.3629749,3.199789,0.6222427,3.174832,-9.573442E-18,-0.1175988,1.244485,-0.1175988,0.2074142,3.174832,-5.684581E-14,3.174832,-1.244485,-0.1175988,-0.2074142,3.174832,-0.6222427,3.174832,0.7778033,3.199789,-1.558753E-13,-0.05939914,1.244485,-0.05939914,-1.244485,-0.05939914,-0.466682,3.199789,0.3629749,3.199789,0.1555607,3.199789,-0.05185356,3.199789,2.859219,3.810005,-2.971109,3.810005,1.766032,5.433753,-1.149132,5.433753,1.766032,5.433753,-2.971109,3.810005,2.859219,3.810005,-1.149132,5.433753,2.152505,1.346457,0.9864397,-0.6732283,-0.179626,1.346457,0.179626,0.6222427,-0.179626,0.4148284,-2.511757,1.346457,-0.359252,0.3111213,-0.538878,0.2074142,-0.8981299,1.136868E-13,-1.345692,-0.6732283,0.179626,-0.6222427,-0.179626,-2.692913,0.179626,0.2074142,0.179626,5.684342E-14,0.179626,-0.2074142,-0.179626,-0.4148284,-0.359252,-0.3111213,-0.538878,-0.2074142,-0.179626,1.346457,0.9864397,-0.6732283,2.152505,1.346457,0.179626,0.6222427,-0.179626,0.4148284,-2.511757,1.346457,-0.359252,0.3111213,-0.538878,0.2074142,-0.8981299,1.136868E-13,-1.345692,-0.6732283,0.179626,-0.6222427,-0.179626,-2.692913,0.179626,0.2074142,0.179626,5.684342E-14,0.179626,-0.2074142,-0.179626,-0.4148284,-0.359252,-0.3111213,-0.538878,-0.2074142,-2.679593,4.969897,3.150735,4.969897,-2.242318,3.452682,0.08981299,3.452682,2.421944,3.452682,-2.242318,3.452682,3.150735,4.969897,-2.679593,4.969897,0.08981299,3.452682,2.421944,3.452682,2.859219,4.918127,2.421944,3.400912,-2.971109,4.918127,0.08981299,3.400912,-2.242318,3.400912,-2.971109,4.918127,2.421944,3.400912,2.859219,4.918127,0.08981299,3.400912,-2.242318,3.400912,2.152505,3.508053,-0.179626,3.508053,2.735538,5.087024,-2.511757,3.508053,-3.09479,5.087024,2.735538,5.087024,-0.179626,3.508053,2.152505,3.508053,-2.511757,3.508053,-3.09479,5.087024,2.735538,2.431971,-3.09479,2.431971,1.277956,4.389422,-1.637208,4.389422,1.277956,4.389422,-3.09479,2.431971,2.735538,2.431971,-1.637208,4.389422,0.179626,-1.935531,-1.277956,0.5890748,1.637208,0.5890748,1.637208,0.5890748,-1.277956,0.5890748,0.179626,-1.935531,-2.679593,3.689072,-1.586406,5.31282,3.150735,3.689072,1.328758,5.31282,3.150735,3.689072,-1.586406,5.31282,-2.679593,3.689072,1.328758,5.31282 + } + UVIndex: *462 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,10,9,8,11,10,8,12,10,11,13,10,12,14,16,15,17,15,16,18,15,17,19,15,18,20,19,18,21,19,20,22,24,23,25,23,24,26,25,24,27,26,24,28,26,27,29,26,28,30,32,31,33,31,32,34,33,32,35,37,36,36,38,35,38,39,35,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,73,75,77,79,78,78,80,77,78,81,80,82,84,83,85,83,84,86,88,87,87,89,86,90,92,91,93,91,92,94,96,95,95,97,94,98,100,99,101,99,100,102,101,100,103,105,104,104,106,103,106,107,103,108,110,109,109,111,108,111,112,108,112,113,108,114,116,115,115,117,114,117,118,114,118,119,114,118,120,119,118,121,120,122,124,123,123,125,122,123,126,125,123,127,126,127,128,126,127,129,128,130,132,131,131,133,130,133,134,130,134,135,130,134,136,135,134,137,136,138,140,139,141,139,140,142,144,143,143,145,142,146,148,147,149,147,148,150,149,148,148,151,150,152,150,151,153,152,151,154,153,151,155,154,151,149,156,147,157,147,156,158,156,149,159,156,158,160,156,159,161,157,156,162,157,161,155,157,162,163,155,162,154,155,163,164,166,165,165,167,164,167,168,164,169,164,168,168,170,169,170,171,169,171,172,169,172,173,169,174,167,165,165,175,174,174,176,167,174,177,176,174,178,177,175,179,174,175,180,179,175,173,180,173,181,180,173,172,181,182,184,183,185,183,184,186,183,185,187,189,188,188,190,187,188,191,190,192,194,193,195,193,194,196,195,194,197,199,198,198,200,197,200,201,197,202,204,203,205,203,204,206,205,204,207,209,208,208,210,207,210,211,207,212,214,213,215,213,214,216,218,217,217,219,216,220,222,221,223,225,224,226,228,227,229,227,228,230,232,231,231,233,230 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *154 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3016, "Material::colorYellow", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9960784,0.6941177,0.2784314 + P: "DiffuseColor", "Color", "", "A",0.9960784,0.6941177,0.2784314 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh flower_yellowB, Model::RootNode + C: "OO",4702142768433850145,0 + + ;Geometry::, Model::Mesh flower_yellowB + C: "OO",5015557099618627050,4702142768433850145 + + ;Material::grass, Model::Mesh flower_yellowB + C: "OO",3024,4702142768433850145 + + ;Material::colorYellow, Model::Mesh flower_yellowB + C: "OO",3016,4702142768433850145 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowB.fbx.import new file mode 100644 index 0000000..90ffcd0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dohn0w68yiulc" +path="res://.godot/imported/flower_yellowB.fbx-56b941c6d984fbd61a553b2471ab97c2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/flower_yellowB.fbx" +dest_files=["res://.godot/imported/flower_yellowB.fbx-56b941c6d984fbd61a553b2471ab97c2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowC.fbx new file mode 100644 index 0000000..3cc954f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowC.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 252 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "flower_yellowC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "flower_yellowC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4861009695924160758, "Model::flower_yellowC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5373676108857659411, "Geometry::", "Mesh" { + Vertices: *408 { + a: -0.5226725,0.5531294,-0.9052953,0.001869785,0.324446,-0.62896,-0.5456302,0.324446,-0.3128607,-0.5456302,0.324446,-0.3128607,0.001869785,0.324446,-0.62896,-0.5226725,0.5531294,-0.9052953,0.001869785,0.324446,0.62896,-0.5226725,0.5531294,0.9052953,-0.5456302,0.324446,0.3128607,-0.5456302,0.324446,0.3128607,-0.5226725,0.5531294,0.9052953,0.001869785,0.324446,0.62896,0.5437604,0.324446,-0.3160993,1.045345,0.5531294,4.710285E-09,0.5437604,0.324446,0.3160993,0.5437604,0.324446,0.3160993,1.045345,0.5531294,4.710285E-09,0.5437604,0.324446,-0.3160993,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,0.001869785,0.324446,-0.62896,-0.5456302,0.324446,-0.3128607,-0.365,0,0,0.001869785,0.324446,-0.62896,-0.09125,0,-0.1580496,0.1825,0,-0.3160993,-0.5456302,0.324446,-0.3128607,-0.365,0,0,0.5437604,0.324446,-0.3160993,0.5437604,0.324446,0.3160993,0.1825,0,-0.3160993,0.1825,0,0.3160993,0.1825,0,0,0.1825,0,-0.3160993,0.5437604,0.324446,0.3160993,0.5437604,0.324446,-0.3160993,0.1825,0,0.3160993,0.1825,0,0,0.1825,0,0.3160993,0.001869785,0.324446,0.62896,-0.09125,0,0.1580496,-0.5456302,0.324446,0.3128607,-0.365,0,0,-0.09125,0,0.1580496,0.001869785,0.324446,0.62896,0.1825,0,0.3160993,-0.5456302,0.324446,0.3128607,-0.365,0,0,0.1825,0,0.3160993,0.1825,0,0,-0.09125,0,0.1580496,0.1825,0,-0.3160993,-0.09125,0,-0.1580496,-0.365,0,0,-0.365,0,0,-0.09125,0,-0.1580496,-0.228125,0.8249999,2.887646E-14,0.1825,0,-0.3160993,0.045625,0.8249999,-0.1580496,-0.09125,0.8249999,-0.07902481,0.1825,0,0.3160993,-0.09125,0,0.1580496,0.045625,0.8249999,0.1580496,-0.365,0,0,-0.228125,0.8249999,2.887646E-14,-0.09125,0.8249999,0.07902481,0.1825,0,-0.3160993,0.1825,0,0,0.045625,0.8249999,-0.1580496,0.045625,0.8249999,0.1580496,0.1825,0,0.3160993,-0.760625,1.325,0,-0.403125,1.325,0.6192082,-0.545625,0.8249999,2.887646E-14,-0.295625,0.8249999,0.4330127,0.669375,1.325,0,0.454375,0.8249999,2.887646E-14,0.311875,1.325,0.6192082,0.204375,0.8249999,0.4330127,0.311875,1.325,-0.6192082,0.1325497,1.075,-0.3086076,-0.403125,1.325,-0.6192082,-0.2237997,1.075,-0.3086076,-0.2237997,1.075,0.3086076,-0.403125,1.325,0.6192082,-0.4019744,1.075,0,-0.760625,1.325,0,0.204375,0.8249999,0.4330127,-0.295625,0.8249999,0.4330127,0.311875,1.325,0.6192082,-0.403125,1.325,0.6192082,0.454375,0.8249999,2.887646E-14,0.204375,0.8249999,-0.4330127,0.204375,0.8249999,0.4330127,0.045625,0.8249999,0.1580496,-0.295625,0.8249999,0.4330127,-0.09125,0.8249999,0.07902481,-0.228125,0.8249999,2.887646E-14,0.045625,0.8249999,-0.1580496,-0.295625,0.8249999,-0.4330127,-0.09125,0.8249999,-0.07902481,-0.545625,0.8249999,2.887646E-14,0.669375,1.325,0,0.311875,1.325,0.6192082,0.3107243,1.075,0,0.1325497,1.075,0.3086076,-0.295625,0.8249999,-0.4330127,0.204375,0.8249999,-0.4330127,-0.403125,1.325,-0.6192082,0.311875,1.325,-0.6192082,0.669375,1.325,0,0.3107243,1.075,0,0.311875,1.325,-0.6192082,0.1325497,1.075,-0.3086076,0.311875,1.325,0.6192082,-0.403125,1.325,0.6192082,0.1325497,1.075,0.3086076,-0.2237997,1.075,0.3086076,0.311875,1.325,-0.6192082,0.204375,0.8249999,-0.4330127,0.669375,1.325,0,0.454375,0.8249999,2.887646E-14,-0.403125,1.325,-0.6192082,-0.760625,1.325,0,-0.295625,0.8249999,-0.4330127,-0.545625,0.8249999,2.887646E-14,-0.2237997,1.075,-0.3086076,-0.4019744,1.075,0,-0.403125,1.325,-0.6192082,-0.760625,1.325,0,0.3107243,1.075,0,0.1325497,1.075,0.3086076,0.1325497,1.075,-0.3086076,-0.2237997,1.075,-0.3086076,-0.2237997,1.075,0.3086076,-0.4019744,1.075,0 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,19,-21,22,19,-22,23,25,-25,24,26,-24,24,27,-27,28,30,-30,31,29,-31,32,31,-31,33,35,-35,34,36,-34,36,37,-34,38,40,-40,41,39,-41,42,41,-41,43,45,-45,44,46,-44,46,47,-44,48,50,-50,51,49,-51,52,51,-51,53,52,-51,54,56,-56,57,55,-57,58,57,-57,59,58,-57,60,62,-62,63,61,-63,64,63,-63,65,64,-63,66,68,-68,69,67,-69,70,67,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,94,-94,96,94,-96,97,96,-96,94,98,-93,99,92,-99,95,99,-98,100,99,-99,97,99,-101,101,99,-96,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,131,-134,135,134,-134 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0.2074203,0.909894,0.3592626,0.2074203,0.909894,0.3592626,0.2074203,0.909894,0.3592626,-0.2074203,-0.909894,-0.3592626,-0.2074203,-0.909894,-0.3592626,-0.2074203,-0.909894,-0.3592626,0.2074203,0.909894,-0.3592626,0.2074203,0.909894,-0.3592626,0.2074203,0.909894,-0.3592626,-0.2074203,-0.909894,0.3592626,-0.2074203,-0.909894,0.3592626,-0.2074203,-0.909894,0.3592626,-0.4148407,0.909894,0,-0.4148407,0.909894,0,-0.4148407,0.909894,0,0.4148407,-0.909894,0,0.4148407,-0.909894,0,0.4148407,-0.909894,0,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,0.3340906,0.7439986,0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.3340906,-0.7439986,-0.5786619,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,-0.6681811,0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.6681811,-0.7439986,0,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,0.3340906,0.7439986,-0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,-0.3340906,-0.7439986,0.5786619,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,-0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,-0.4982885,0.08267058,0.863061,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,0.9865149,0.1636718,0,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,-0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0.8115789,-0.3489789,0.4685653,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0,0.7790062,0.6270161,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0.5430119,0.7790062,-0.3135081,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-0.3489789,0.9371306,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,-0.5430119,0.7790062,-0.3135081,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,0,-0.3489789,-0.9371306,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,-0.5430119,0.7790062,0.3135081,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0,0.7790062,-0.6270161,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,-0.8115789,-0.3489789,-0.4685653,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0.5430119,0.7790062,0.3135081,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *272 { + a: 1.854351E-08,4.648086,1.244485,2.477787,-1.244485,2.477787,-1.244485,2.477787,1.244485,2.477787,1.854351E-08,4.648086,-1.244485,2.477787,1.854358E-08,4.648086,1.244485,2.477787,1.244485,2.477787,1.854358E-08,4.648086,-1.244485,2.477787,-1.244485,2.477787,1.854443E-08,4.648086,1.244485,2.477787,1.244485,2.477787,1.854443E-08,4.648086,-1.244485,2.477787,1.244485,0.5345659,1.563749E-13,0.5345659,1.244485,2.446243,-1.244485,2.446243,-1.244485,0.5345659,1.244485,2.446243,1.563749E-13,0.5345659,1.244485,0.5345659,-1.244485,2.446243,-1.244485,0.5345659,-1.244485,2.446243,1.244485,2.446243,-1.244485,0.5345659,1.244485,0.5345659,-7.922454E-18,0.5345659,-1.244485,0.5345659,1.244485,2.446243,-1.244485,2.446243,1.244485,0.5345659,-7.922454E-18,0.5345659,-1.244485,0.5345659,-1.244485,2.446243,-1.797729E-13,0.5345659,1.244485,2.446243,1.244485,0.5345659,-1.797729E-13,0.5345659,-1.244485,2.446243,-1.244485,0.5345659,1.244485,2.446243,1.244485,0.5345659,0.718504,1.244485,0.718504,0,-0.359252,0.6222427,0.718504,-1.244485,-0.359252,-0.6222427,-1.437008,0,1.244485,-0.05939914,-1.566525E-13,-0.05939914,0.7778033,3.199789,-1.244485,-0.05939914,-0.466682,3.199789,0.1555607,3.199789,1.244485,-0.05939914,1.16851E-13,-0.05939914,0.466682,3.199789,-1.244485,-0.05939914,-0.7778033,3.199789,-0.1555607,3.199789,1.244485,-0.1175988,8.521941E-18,-0.1175988,0.6222427,3.174832,-0.6222427,3.174832,-1.244485,-0.1175988,-1.497293,5.793612,1.317667,5.793612,-1.074065,3.693047,0.894439,3.693047,1.317667,5.685038,0.894439,3.584473,-1.497293,5.685038,-1.074065,3.584473,1.227854,5.169935,0.5218492,3.600195,-1.587106,5.169935,-0.8811011,3.600195,-0.6116621,3.721378,-1.317667,5.291118,0.7912881,3.721378,1.497293,5.291118,0.804626,3.63876,-1.163878,3.63876,1.227854,5.739325,-1.587106,5.739325,1.788878,1.136868E-13,0.804626,-1.704774,0.804626,1.704774,0.179626,0.6222427,-1.163878,1.704774,-0.359252,0.3111213,-0.8981299,1.136868E-13,0.179626,-0.6222427,-1.163878,-1.704774,-0.359252,-0.3111213,-2.14813,1.136868E-13,-1.317667,5.048752,1.497293,5.048752,-0.6116621,3.479012,0.7912881,3.479012,1.163878,3.63876,-0.804626,3.63876,1.587106,5.739325,-1.227854,5.739325,1.317667,5.048752,0.6116621,3.479012,-1.497293,5.048752,-0.7912881,3.479012,-1.227854,5.169935,1.587106,5.169935,-0.5218492,3.600195,0.8811011,3.600195,1.497293,5.685038,1.074065,3.584473,-1.317667,5.685038,-0.894439,3.584473,-1.317667,5.793612,1.497293,5.793612,-0.894439,3.693047,1.074065,3.693047,0.6116621,3.721378,-0.7912881,3.721378,1.317667,5.291118,-1.497293,5.291118,-1.223324,0,-0.5218492,1.214991,-0.5218492,-1.214991,0.8811011,-1.214991,0.8811011,1.214991,1.582576,0 + } + UVIndex: *234 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,19,20,22,19,21,23,25,24,24,26,23,24,27,26,28,30,29,31,29,30,32,31,30,33,35,34,34,36,33,36,37,33,38,40,39,41,39,40,42,41,40,43,45,44,44,46,43,46,47,43,48,50,49,51,49,50,52,51,50,53,52,50,54,56,55,57,55,56,58,57,56,59,58,56,60,62,61,63,61,62,64,63,62,65,64,62,66,68,67,69,67,68,70,67,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,94,93,96,94,95,97,96,95,94,98,92,99,92,98,95,99,97,100,99,98,97,99,100,101,99,95,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,131,133,135,134,133 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3016, "Material::colorYellow", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9960784,0.6941177,0.2784314 + P: "DiffuseColor", "Color", "", "A",0.9960784,0.6941177,0.2784314 + } + } + + Material: 3014, "Material::colorWhite", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh flower_yellowC, Model::RootNode + C: "OO",4861009695924160758,0 + + ;Geometry::, Model::Mesh flower_yellowC + C: "OO",5373676108857659411,4861009695924160758 + + ;Material::grass, Model::Mesh flower_yellowC + C: "OO",3024,4861009695924160758 + + ;Material::colorYellow, Model::Mesh flower_yellowC + C: "OO",3016,4861009695924160758 + + ;Material::colorWhite, Model::Mesh flower_yellowC + C: "OO",3014,4861009695924160758 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowC.fbx.import new file mode 100644 index 0000000..674b55e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/flower_yellowC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://5edjqhiphfgf" +path="res://.godot/imported/flower_yellowC.fbx-691b36aa29b326b708e758e4596f75b4.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/flower_yellowC.fbx" +dest_files=["res://.godot/imported/flower_yellowC.fbx-691b36aa29b326b708e758e4596f75b4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/grass.fbx b/assets/models/kenney_nature-kit/Models/FBX format/grass.fbx new file mode 100644 index 0000000..2ccb2d4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/grass.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 369 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "grass.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "grass.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4907611884380710917, "Model::grass", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5403495611288580306, "Geometry::", "Mesh" { + Vertices: *792 { + a: -1.281393,0,1.022604,-0.8813928,0,1.022604,-1.281393,0.3288743,0.9416214,-0.8813928,0.3288743,0.9416214,-1.281393,0.3288743,0.9416214,-0.8813928,0,1.022604,-1.281393,0,1.022604,-0.8813928,0.3288743,0.9416214,0.7306023,1.607721,0.618791,0.5115848,0.9567357,0.618791,0.7306023,1.607721,1.018791,0.5115846,0.9567357,1.018791,0.7306023,1.607721,1.018791,0.5115848,0.9567357,0.618791,0.7306023,1.607721,0.618791,0.5115846,0.9567357,1.018791,0.2686376,0.4625398,1.018791,0.2686376,0.4625398,0.618791,-0.1693977,0.7772629,1.018791,-0.1693977,0.7772629,0.618791,-0.1693977,0.7772629,1.018791,0.2686376,0.4625398,0.618791,0.2686376,0.4625398,1.018791,-0.1693977,0.7772629,0.618791,1.21377,1.8034,-0.3181168,0.8137693,1.8034,-0.3181168,1.213769,1.62306,-0.1181169,0.8137693,1.62306,-0.1181169,1.213769,1.62306,-0.1181169,0.8137693,1.8034,-0.3181168,1.21377,1.8034,-0.3181168,0.8137693,1.62306,-0.1181169,0.8137693,0.9658635,0.1009007,1.213769,0.9658635,0.1009007,0.8137693,1.62306,-0.1181169,1.213769,1.62306,-0.1181169,0.8137693,1.62306,-0.1181169,1.213769,0.9658635,0.1009007,0.8137693,0.9658635,0.1009007,1.213769,1.62306,-0.1181169,0.4422592,0,-1.02844,0.8422592,0,-1.02844,0.4422592,0.8247918,-1.109422,0.8422592,0.8247918,-1.109422,0.4422592,0.8247918,-1.109422,0.8422592,0,-1.02844,0.4422592,0,-1.02844,0.8422592,0.8247918,-1.109422,0.8422592,1.386,-1.32844,0.8422592,1.54,-1.52844,0.4422592,1.386,-1.32844,0.4422592,1.54,-1.52844,0.4422592,1.386,-1.32844,0.8422592,1.54,-1.52844,0.8422592,1.386,-1.32844,0.4422592,1.54,-1.52844,-0.06461045,2.286,-0.7538433,-0.2646104,2.54,-0.7538433,-0.06461045,2.286,-0.3538436,-0.2646104,2.54,-0.3538436,-0.06461045,2.286,-0.3538436,-0.2646104,2.54,-0.7538433,-0.06461045,2.286,-0.7538433,-0.2646104,2.54,-0.3538436,0.8353894,1.160094,-0.7538433,0.3973543,0.690358,-0.7538433,0.8353894,1.160094,-0.3538436,0.3973543,0.690358,-0.3538436,0.8353894,1.160094,-0.3538436,0.3973543,0.690358,-0.7538433,0.8353894,1.160094,-0.7538433,0.3973543,0.690358,-0.3538436,0.8137693,0,0.1818831,1.213769,0,0.1818831,0.8137693,0.9658635,0.1009007,1.213769,0.9658635,0.1009007,0.8137693,0.9658635,0.1009007,1.213769,0,0.1818831,0.8137693,0,0.1818831,1.213769,0.9658635,0.1009007,0.2237328,0.5856023,1.97437,-0.1762672,0.5856023,1.97437,0.2237328,0.9840599,2.193388,-0.1762672,0.9840599,2.193388,0.2237328,0.9840599,2.193388,-0.1762672,0.5856023,1.97437,0.2237328,0.5856023,1.97437,-0.1762672,0.9840599,2.193388,0.5115848,0.9567357,0.618791,0.4306024,0,0.618791,0.5115846,0.9567357,1.018791,0.4306024,0,1.018791,0.5115846,0.9567357,1.018791,0.4306024,0,0.618791,0.5115848,0.9567357,0.618791,0.4306024,0,1.018791,0.3973543,0.690358,-0.7538433,0.2353895,0,-0.7538433,0.3973543,0.690358,-0.3538436,0.2353895,0,-0.3538436,0.3973543,0.690358,-0.3538436,0.2353895,0,-0.7538433,0.3973543,0.690358,-0.7538433,0.2353895,0,-0.3538436,-1.281393,0.3288743,0.9416214,-0.8813928,0.3288743,0.9416214,-1.281393,0.5526481,0.7226037,-0.8813928,0.5526481,0.7226037,-1.281393,0.5526481,0.7226037,-0.8813928,0.3288743,0.9416214,-1.281393,0.3288743,0.9416214,-0.8813928,0.5526481,0.7226037,0.1544071,1.360371,-0.7538433,-0.06461045,2.286,-0.7538433,0.1544071,1.360371,-0.3538436,-0.06461045,2.286,-0.3538436,0.1544071,1.360371,-0.3538436,-0.06461045,2.286,-0.7538433,0.1544071,1.360371,-0.7538433,-0.06461045,2.286,-0.3538436,0.2353895,0,-0.7538433,0.1544071,1.360371,-0.7538433,0.2353895,0,-0.3538436,0.1544071,1.360371,-0.3538436,0.2353895,0,-0.3538436,0.1544071,1.360371,-0.7538433,0.2353895,0,-0.7538433,0.1544071,1.360371,-0.3538436,0.2237328,0,1.893388,-0.1762672,0,1.893388,0.2237328,0.5856023,1.97437,-0.1762672,0.5856023,1.97437,0.2237328,0.5856023,1.97437,-0.1762672,0,1.893388,0.2237328,0,1.893388,-0.1762672,0.5856023,1.97437,-1.622374,1.386,-0.1238055,-1.622374,1.386,-0.5238054,-1.822374,1.54,-0.1238055,-1.822374,1.54,-0.5238054,-1.822374,1.54,-0.1238055,-1.622374,1.386,-0.5238054,-1.622374,1.386,-0.1238055,-1.822374,1.54,-0.5238054,0.2237328,1.0934,2.393388,0.2237328,0.9840599,2.193388,-0.1762672,1.0934,2.393388,-0.1762672,0.9840599,2.193388,-0.1762672,1.0934,2.393388,0.2237328,0.9840599,2.193388,0.2237328,1.0934,2.393388,-0.1762672,0.9840599,2.193388,1.788366,0.9840599,0.3887528,1.569348,0.5856023,0.3887528,1.788366,0.9840599,0.7887527,1.569348,0.5856023,0.7887527,1.788366,0.9840599,0.7887527,1.569348,0.5856023,0.3887528,1.788366,0.9840599,0.3887528,1.569348,0.5856023,0.7887527,-1.403356,0.8247918,-0.5238054,-1.622374,1.386,-0.5238054,-1.403356,0.8247918,-0.1238055,-1.622374,1.386,-0.1238055,-1.403356,0.8247918,-0.1238055,-1.622374,1.386,-0.5238054,-1.403356,0.8247918,-0.5238054,-1.622374,1.386,-0.1238055,-0.1477775,1.8,0.3830641,-0.5477775,1.8,0.3830641,-0.1477775,2,0.5830641,-0.5477775,2,0.5830641,-0.1477775,2,0.5830641,-0.5477775,1.8,0.3830641,-0.1477775,1.8,0.3830641,-0.5477775,2,0.5830641,-0.8813928,0.5751746,1.448604,-0.8813928,0.3422795,1.137599,-1.281393,0.5751746,1.448604,-1.281393,0.3422795,1.137599,-1.281393,0.5751746,1.448604,-0.8813928,0.3422795,1.137599,-0.8813928,0.5751746,1.448604,-1.281393,0.3422795,1.137599,-0.8813928,0.5526481,0.7226037,-0.8813928,0.6140534,0.5226038,-1.281393,0.5526481,0.7226037,-1.281393,0.6140534,0.5226038,-1.281393,0.5526481,0.7226037,-0.8813928,0.6140534,0.5226038,-0.8813928,0.5526481,0.7226037,-1.281393,0.6140534,0.5226038,-0.8813928,0,1.022604,-1.281393,0,1.022604,-0.8813928,0.3422795,1.137599,-1.281393,0.3422795,1.137599,-0.8813928,0.3422795,1.137599,-1.281393,0,1.022604,-0.8813928,0,1.022604,-1.281393,0.3422795,1.137599,0.4422592,0.8247918,-1.109422,0.8422592,0.8247918,-1.109422,0.4422592,1.386,-1.32844,0.8422592,1.386,-1.32844,0.4422592,1.386,-1.32844,0.8422592,0.8247918,-1.109422,0.4422592,0.8247918,-1.109422,0.8422592,1.386,-1.32844,0.9306023,1.786357,1.018791,0.9306023,1.786357,0.618791,0.7306023,1.607721,1.018791,0.7306023,1.607721,0.618791,0.7306023,1.607721,1.018791,0.9306023,1.786357,0.618791,0.9306023,1.786357,1.018791,0.7306023,1.607721,0.618791,1.988366,1.0934,0.7887527,1.988366,1.0934,0.3887528,1.788366,0.9840599,0.7887527,1.788366,0.9840599,0.3887528,1.788366,0.9840599,0.7887527,1.988366,1.0934,0.3887528,1.988366,1.0934,0.7887527,1.788366,0.9840599,0.3887528,0.4306024,0,0.618791,0.2686376,0.4625398,0.618791,0.4306024,0,1.018791,0.2686376,0.4625398,1.018791,0.4306024,0,1.018791,0.2686376,0.4625398,0.618791,0.4306024,0,0.618791,0.2686376,0.4625398,1.018791,-1.322374,0,-0.5238054,-1.403356,0.8247918,-0.5238054,-1.322374,0,-0.1238055,-1.403356,0.8247918,-0.1238055,-1.322374,0,-0.1238055,-1.403356,0.8247918,-0.5238054,-1.322374,0,-0.5238054,-1.403356,0.8247918,-0.1238055,1.569348,0.5856023,0.3887528,1.488366,0,0.3887528,1.569348,0.5856023,0.7887527,1.488366,0,0.7887527,1.569348,0.5856023,0.7887527,1.488366,0,0.3887528,1.569348,0.5856023,0.3887528,1.488366,0,0.7887527,-0.1477775,0,0.08306415,-0.5477775,0,0.08306415,-0.1477775,1.071158,0.1640465,-0.5477775,1.071158,0.1640465,-0.1477775,1.071158,0.1640465,-0.5477775,0,0.08306415,-0.1477775,0,0.08306415,-0.5477775,1.071158,0.1640465,-0.1477775,1.071158,0.1640465,-0.5477775,1.071158,0.1640465,-0.1477775,1.8,0.3830641,-0.5477775,1.8,0.3830641,-0.1477775,1.8,0.3830641,-0.5477775,1.071158,0.1640465,-0.1477775,1.071158,0.1640465,-0.5477775,1.8,0.3830641 + } + PolygonVertexIndex: *396 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,123,121,-123,124,126,-126,125,127,-125,128,130,-130,131,129,-131,132,134,-134,133,135,-133,136,138,-138,139,137,-139,140,142,-142,141,143,-141,144,146,-146,147,145,-147,148,150,-150,149,151,-149,152,154,-154,155,153,-155,156,158,-158,157,159,-157,160,162,-162,163,161,-163,164,166,-166,165,167,-165,168,170,-170,171,169,-171,172,174,-174,173,175,-173,176,178,-178,179,177,-179,180,182,-182,181,183,-181,184,186,-186,187,185,-187,188,190,-190,189,191,-189,192,194,-194,195,193,-195,196,198,-198,197,199,-197,200,202,-202,203,201,-203,204,206,-206,205,207,-205,208,210,-210,211,209,-211,212,214,-214,213,215,-213,216,218,-218,219,217,-219,220,222,-222,221,223,-221,224,226,-226,227,225,-227,228,230,-230,229,231,-229,232,234,-234,235,233,-235,236,238,-238,237,239,-237,240,242,-242,243,241,-243,244,246,-246,245,247,-245,248,250,-250,251,249,-251,252,254,-254,253,255,-253,256,258,-258,259,257,-259,260,262,-262,261,263,-261 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1188 { + a: 0,-0.2390992,-0.9709952,0,-0.2390992,-0.9709952,0,-0.2390992,-0.9709952,0,-0.2390992,-0.9709952,0,-0.2390992,-0.9709952,0,-0.2390992,-0.9709952,0,0.2390992,0.9709952,0,0.2390992,0.9709952,0,0.2390992,0.9709952,0,0.2390992,0.9709952,0,0.2390992,0.9709952,0,0.2390992,0.9709952,0.9477962,-0.3188767,0,0.9477962,-0.3188767,0,0.9477962,-0.3188767,0,0.9477962,-0.3188767,0,0.9477962,-0.3188767,0,0.9477962,-0.3188767,0,-0.9477962,0.3188767,0,-0.9477962,0.3188767,0,-0.9477962,0.3188767,0,-0.9477962,0.3188767,0,-0.9477962,0.3188767,0,-0.9477962,0.3188767,0,-0.5834959,-0.8121161,0,-0.5834959,-0.8121161,0,-0.5834959,-0.8121161,0,-0.5834959,-0.8121161,0,-0.5834959,-0.8121161,0,-0.5834959,-0.8121161,0,0.5834959,0.8121161,0,0.5834959,0.8121161,0,0.5834959,0.8121161,0,0.5834959,0.8121161,0,0.5834959,0.8121161,0,0.5834959,0.8121161,0,0,-0.7426657,-0.6696623,0,-0.7426657,-0.6696623,0,-0.7426657,-0.6696623,0,-0.7426657,-0.6696623,0,-0.7426657,-0.6696623,0,-0.7426657,-0.6696623,0,0.7426657,0.6696623,0,0.7426657,0.6696623,0,0.7426657,0.6696623,0,0.7426657,0.6696623,0,0.7426657,0.6696623,0,0.7426657,0.6696623,0,-0.3161656,-0.948704,0,-0.3161656,-0.948704,0,-0.3161656,-0.948704,0,-0.3161656,-0.948704,0,-0.3161656,-0.948704,0,-0.3161656,-0.948704,0,0.3161656,0.948704,0,0.3161656,0.948704,0,0.3161656,0.948704,0,0.3161656,0.948704,0,0.3161656,0.948704,0,0.3161656,0.948704,0,-0.09771487,-0.9952145,0,-0.09771487,-0.9952145,0,-0.09771487,-0.9952145,0,-0.09771487,-0.9952145,0,-0.09771487,-0.9952145,0,-0.09771487,-0.9952145,0,0.09771487,0.9952145,0,0.09771487,0.9952145,0,0.09771487,0.9952145,0,0.09771487,0.9952145,0,0.09771487,0.9952145,0,0.09771487,0.9952145,0,-0.7923295,-0.6100933,0,-0.7923295,-0.6100933,0,-0.7923295,-0.6100933,0,-0.7923295,-0.6100933,0,-0.7923295,-0.6100933,0,-0.7923295,-0.6100933,0,0.7923295,0.6100933,0,0.7923295,0.6100933,0,0.7923295,0.6100933,0,0.7923295,0.6100933,0,0.7923295,0.6100933,0,0.7923295,0.6100933,-0.7856739,-0.618641,0,-0.7856739,-0.618641,0,-0.7856739,-0.618641,0,-0.7856739,-0.618641,0,-0.7856739,-0.618641,0,-0.7856739,-0.618641,0,0.7856739,0.618641,0,0.7856739,0.618641,0,0.7856739,0.618641,0,0.7856739,0.618641,0,0.7856739,0.618641,0,0.7856739,0.618641,0,0.7313544,-0.6819977,0,0.7313544,-0.6819977,0,0.7313544,-0.6819977,0,0.7313544,-0.6819977,0,0.7313544,-0.6819977,0,0.7313544,-0.6819977,0,-0.7313544,0.6819977,0,-0.7313544,0.6819977,0,-0.7313544,0.6819977,0,-0.7313544,0.6819977,0,-0.7313544,0.6819977,0,-0.7313544,0.6819977,0,0,-0.08355138,-0.9965035,0,-0.08355138,-0.9965035,0,-0.08355138,-0.9965035,0,-0.08355138,-0.9965035,0,-0.08355138,-0.9965035,0,-0.08355138,-0.9965035,0,0.08355138,0.9965035,0,0.08355138,0.9965035,0,0.08355138,0.9965035,0,0.08355138,0.9965035,0,0.08355138,0.9965035,0,0.08355138,0.9965035,0,-0.4816929,0.8763401,0,-0.4816929,0.8763401,0,-0.4816929,0.8763401,0,-0.4816929,0.8763401,0,-0.4816929,0.8763401,0,-0.4816929,0.8763401,0,0.4816929,-0.8763401,0,0.4816929,-0.8763401,0,0.4816929,-0.8763401,0,0.4816929,-0.8763401,0,0.4816929,-0.8763401,0,0.4816929,-0.8763401,0.9964368,-0.08434284,0,0.9964368,-0.08434284,0,0.9964368,-0.08434284,0,0.9964368,-0.08434284,0,0.9964368,-0.08434284,0,0.9964368,-0.08434284,0,-0.9964368,0.08434284,0,-0.9964368,0.08434284,0,-0.9964368,0.08434284,0,-0.9964368,0.08434284,0,-0.9964368,0.08434284,0,-0.9964368,0.08434284,0,0.9735655,-0.2284081,0,0.9735655,-0.2284081,0,0.9735655,-0.2284081,0,0.9735655,-0.2284081,0,0.9735655,-0.2284081,0,0.9735655,-0.2284081,0,-0.9735655,0.2284081,0,-0.9735655,0.2284081,0,-0.9735655,0.2284081,0,-0.9735655,0.2284081,0,-0.9735655,0.2284081,0,-0.9735655,0.2284081,0,0,-0.6994711,-0.7146608,0,-0.6994711,-0.7146608,0,-0.6994711,-0.7146608,0,-0.6994711,-0.7146608,0,-0.6994711,-0.7146608,0,-0.6994711,-0.7146608,0,0.6994711,0.7146608,0,0.6994711,0.7146608,0,0.6994711,0.7146608,0,0.6994711,0.7146608,0,0.6994711,0.7146608,0,0.6994711,0.7146608,-0.9731299,-0.230257,0,-0.9731299,-0.230257,0,-0.9731299,-0.230257,0,-0.9731299,-0.230257,0,-0.9731299,-0.230257,0,-0.9731299,-0.230257,0,0.9731299,0.230257,0,0.9731299,0.230257,0,0.9731299,0.230257,0,0.9731299,0.230257,0,0.9731299,0.230257,0,0.9731299,0.230257,0,-0.9982328,-0.05942445,0,-0.9982328,-0.05942445,0,-0.9982328,-0.05942445,0,-0.9982328,-0.05942445,0,-0.9982328,-0.05942445,0,-0.9982328,-0.05942445,0,0.9982328,0.05942445,0,0.9982328,0.05942445,0,0.9982328,0.05942445,0,0.9982328,0.05942445,0,0.9982328,0.05942445,0,0.9982328,0.05942445,0,0,-0.1369847,0.9905731,0,-0.1369847,0.9905731,0,-0.1369847,0.9905731,0,-0.1369847,0.9905731,0,-0.1369847,0.9905731,0,-0.1369847,0.9905731,0,0.1369847,-0.9905731,0,0.1369847,-0.9905731,0,0.1369847,-0.9905731,0,0.1369847,-0.9905731,0,0.1369847,-0.9905731,0,0.1369847,-0.9905731,-0.6100933,-0.7923295,0,-0.6100933,-0.7923295,0,-0.6100933,-0.7923295,0,-0.6100933,-0.7923295,0,-0.6100933,-0.7923295,0,-0.6100933,-0.7923295,0,0.6100933,0.7923295,0,0.6100933,0.7923295,0,0.6100933,0.7923295,0,0.6100933,0.7923295,0,0.6100933,0.7923295,0,0.6100933,0.7923295,0,0,-0.8774357,0.4796941,0,-0.8774357,0.4796941,0,-0.8774357,0.4796941,0,-0.8774357,0.4796941,0,-0.8774357,0.4796941,0,-0.8774357,0.4796941,0,0.8774357,-0.4796941,0,0.8774357,-0.4796941,0,0.8774357,-0.4796941,0,0.8774357,-0.4796941,0,0.8774357,-0.4796941,0,0.8774357,-0.4796941,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,-0.7071066,0.7071069,0,0.7071066,-0.7071069,0,0.7071066,-0.7071069,0,0.7071066,-0.7071069,0,0.7071066,-0.7071069,0,0.7071066,-0.7071069,0,0.7071066,-0.7071069,0,-0.8004427,0.5994093,0,-0.8004427,0.5994093,0,-0.8004427,0.5994093,0,-0.8004427,0.5994093,0,-0.8004427,0.5994093,0,-0.8004427,0.5994093,0,0.8004427,-0.5994093,0,0.8004427,-0.5994093,0,0.8004427,-0.5994093,0,0.8004427,-0.5994093,0,0.8004427,-0.5994093,0,0.8004427,-0.5994093,0,-0.9559577,-0.2935044,0,-0.9559577,-0.2935044,0,-0.9559577,-0.2935044,0,-0.9559577,-0.2935044,0,-0.9559577,-0.2935044,0,-0.9559577,-0.2935044,0,0.9559577,0.2935044,0,0.9559577,0.2935044,0,0.9559577,0.2935044,0,0.9559577,0.2935044,0,0.9559577,0.2935044,0,0.9559577,0.2935044,0,-0.3184744,0.9479314,0,-0.3184744,0.9479314,0,-0.3184744,0.9479314,0,-0.3184744,0.9479314,0,-0.3184744,0.9479314,0,-0.3184744,0.9479314,0,0.3184744,-0.9479314,0,0.3184744,-0.9479314,0,0.3184744,-0.9479314,0,0.3184744,-0.9479314,0,0.3184744,-0.9479314,0,0.3184744,-0.9479314,0,-0.3635568,-0.9315721,0,-0.3635568,-0.9315721,0,-0.3635568,-0.9315721,0,-0.3635568,-0.9315721,0,-0.3635568,-0.9315721,0,-0.3635568,-0.9315721,0,0.3635568,0.9315721,0,0.3635568,0.9315721,0,0.3635568,0.9315721,0,0.3635568,0.9315721,0,0.3635568,0.9315721,0,0.3635568,0.9315721,0.6661497,-0.745818,0,0.6661497,-0.745818,0,0.6661497,-0.745818,0,0.6661497,-0.745818,0,0.6661497,-0.745818,0,0.6661497,-0.745818,0,-0.6661497,0.745818,0,-0.6661497,0.745818,0,-0.6661497,0.745818,0,-0.6661497,0.745818,0,-0.6661497,0.745818,0,-0.6661497,0.745818,0,0.4796941,-0.8774357,0,0.4796941,-0.8774357,0,0.4796941,-0.8774357,0,0.4796941,-0.8774357,0,0.4796941,-0.8774357,0,0.4796941,-0.8774357,0,-0.4796941,0.8774357,0,-0.4796941,0.8774357,0,-0.4796941,0.8774357,0,-0.4796941,0.8774357,0,-0.4796941,0.8774357,0,-0.4796941,0.8774357,0,-0.94381,-0.3304883,0,-0.94381,-0.3304883,0,-0.94381,-0.3304883,0,-0.94381,-0.3304883,0,-0.94381,-0.3304883,0,-0.94381,-0.3304883,0,0.94381,0.3304883,0,0.94381,0.3304883,0,0.94381,0.3304883,0,0.94381,0.3304883,0,0.94381,0.3304883,0,0.94381,0.3304883,0,-0.9952145,-0.09771487,0,-0.9952145,-0.09771487,0,-0.9952145,-0.09771487,0,-0.9952145,-0.09771487,0,-0.9952145,-0.09771487,0,-0.9952145,-0.09771487,0,0.9952145,0.09771487,0,0.9952145,0.09771487,0,0.9952145,0.09771487,0,0.9952145,0.09771487,0,0.9952145,0.09771487,0,0.9952145,0.09771487,0,0.9905731,-0.1369847,0,0.9905731,-0.1369847,0,0.9905731,-0.1369847,0,0.9905731,-0.1369847,0,0.9905731,-0.1369847,0,0.9905731,-0.1369847,0,-0.9905731,0.1369847,0,-0.9905731,0.1369847,0,-0.9905731,0.1369847,0,-0.9905731,0.1369847,0,-0.9905731,0.1369847,0,-0.9905731,0.1369847,0,0,-0.07538751,0.9971544,0,-0.07538751,0.9971544,0,-0.07538751,0.9971544,0,-0.07538751,0.9971544,0,-0.07538751,0.9971544,0,-0.07538751,0.9971544,0,0.07538751,-0.9971544,0,0.07538751,-0.9971544,0,0.07538751,-0.9971544,0,0.07538751,-0.9971544,0,0.07538751,-0.9971544,0,0.07538751,-0.9971544,0,-0.2877879,0.9576942,0,-0.2877879,0.9576942,0,-0.2877879,0.9576942,0,-0.2877879,0.9576942,0,-0.2877879,0.9576942,0,-0.2877879,0.9576942,0,0.2877879,-0.9576942,0,0.2877879,-0.9576942,0,0.2877879,-0.9576942,0,0.2877879,-0.9576942,0,0.2877879,-0.9576942,0,0.2877879,-0.9576942 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *528 { + a: 5.044854,-0.9626132,3.47005,-0.9626132,5.044854,0.3708442,3.47005,0.3708442,5.044854,0.3708442,3.47005,-0.9626132,5.044854,-0.9626132,3.47005,0.3708442,-2.436184,6.916393,-2.436185,4.212295,-4.010988,6.916393,-4.010988,4.212295,-4.010988,6.916393,-2.436185,4.212295,-2.436184,6.916393,-4.010988,4.212295,4.010988,0.2036424,2.436185,0.2036424,4.010988,2.327166,2.436185,2.327166,4.010988,2.327166,2.436185,0.2036424,4.010988,0.2036424,2.436185,2.327166,-4.778622,5.684738,-3.203816,5.684738,-4.778618,4.624502,-3.203816,4.624502,-4.778618,4.624502,-3.203816,5.684738,-4.778622,5.684738,-3.203816,4.624502,-3.203816,3.481958,-4.778618,3.481958,-3.203816,6.209244,-4.778618,6.209244,-3.203816,6.209244,-4.778618,3.481958,-3.203816,3.481958,-4.778618,6.209244,-1.741178,0.3956453,-3.315981,0.3956453,-1.741178,3.658472,-3.315981,3.658472,-1.741178,3.658472,-3.315981,0.3956453,-1.741178,0.3956453,-3.315981,3.658472,-3.315981,7.473039,-3.315981,8.46682,-1.741178,7.473039,-1.741178,8.46682,-1.741178,7.473039,-3.315981,8.46682,-3.315981,7.473039,-1.741178,8.46682,-2.967887,7.22843,-2.967887,8.501222,-1.393085,7.22843,-1.393085,8.501222,-1.393085,7.22843,-2.967887,8.501222,-2.967887,7.22843,-1.393085,8.501222,2.967887,5.58336,2.967887,3.054689,1.393085,5.58336,1.393085,3.054689,1.393085,5.58336,2.967887,3.054689,2.967887,5.58336,1.393085,3.054689,-3.203816,-0.05982908,-4.778618,-0.05982908,-3.203816,3.756126,-4.778618,3.756126,-3.203816,3.756126,-4.778618,-0.05982908,-3.203816,-0.05982908,-4.778618,3.756126,0.8808376,5.764671,-0.6939655,5.764671,0.8808376,7.554765,-0.6939655,7.554765,0.8808376,7.554765,-0.6939655,5.764671,0.8808376,5.764671,-0.6939655,7.554765,-2.436185,3.923131,-2.436185,0.1429852,-4.010988,3.923131,-4.010988,0.1429852,-4.010988,3.923131,-2.436185,0.1429852,-2.436185,3.923131,-4.010988,0.1429852,2.967887,3.003416,2.967887,0.2116728,1.393085,3.003416,1.393085,0.2116728,1.393085,3.003416,2.967887,0.2116728,2.967887,3.003416,1.393085,0.2116728,5.044854,-1.66773,3.47005,-1.667731,5.044854,-0.4349788,3.47005,-0.4349787,5.044854,-0.4349788,3.47005,-1.667731,5.044854,-1.66773,3.47005,-0.4349787,-2.967887,5.071907,-2.967887,8.81674,-1.393085,5.071907,-1.393085,8.81674,-1.393085,5.071907,-2.967887,8.81674,-2.967887,5.071907,-1.393085,8.81674,-2.967887,-0.05507044,-2.967887,5.310202,-1.393085,-0.05507044,-1.393085,5.310202,-1.393085,-0.05507044,-2.967887,5.310202,-2.967887,-0.05507044,-1.393085,5.310202,0.8808376,1.021123,-0.6939655,1.021123,0.8808376,3.348584,-0.6939655,3.348584,0.8808376,3.348584,-0.6939655,1.021123,0.8808376,1.021123,-0.6939655,3.348584,-0.4874232,8.389938,-2.062226,8.389938,-0.4874232,9.383718,-2.062226,9.383718,-0.4874232,9.383718,-2.062226,8.389938,-0.4874232,8.389938,-2.062226,9.383718,0.8808376,10.33284,0.8808376,9.435451,-0.6939655,10.33284,-0.6939655,9.435451,-0.6939655,10.33284,0.8808376,9.435451,0.8808376,10.33284,-0.6939655,9.435451,-1.530523,6.786671,-1.530523,4.996577,-3.105326,6.786671,-3.105326,4.996577,-3.105326,6.786671,-1.530523,4.996577,-1.530523,6.786671,-3.105326,4.996577,-2.062226,5.033672,-2.062226,7.405449,-0.4874232,5.033672,-0.4874232,7.405449,-0.4874232,5.033672,-2.062226,7.405449,-2.062226,5.033672,-0.4874232,7.405449,-0.581801,6.0774,-2.156604,6.0774,-0.581801,7.190954,-2.156604,7.190954,-0.581801,7.190954,-2.156604,6.0774,-0.581801,6.0774,-2.156604,7.190954,-3.47005,5.922399,-3.47005,4.392709,-5.044854,5.922399,-5.044854,4.392709,-5.044854,5.922399,-3.47005,4.392709,-3.47005,5.922399,-5.044854,4.392709,3.47005,-2.081,3.47005,-1.257322,5.044854,-2.081,5.044854,-1.257322,5.044854,-2.081,3.47005,-1.257322,3.47005,-2.081,5.044854,-1.257322,-3.470051,1.282178,-5.044854,1.282178,-3.47005,2.703754,-5.044854,2.703754,-3.47005,2.703754,-5.044854,1.282178,-3.470051,1.282178,-5.044854,2.703754,-1.741178,4.612957,-3.315981,4.612957,-1.741178,6.984734,-3.315981,6.984734,-1.741178,6.984734,-3.315981,4.612957,-1.741178,4.612957,-3.315981,6.984734,-4.010988,7.417486,-2.436185,7.417486,-4.010988,6.36173,-2.436185,6.36173,-4.010988,6.36173,-2.436185,7.417486,-4.010988,7.417486,-2.436185,6.36173,-3.105326,8.933704,-1.530523,8.933704,-3.105326,8.036315,-1.530523,8.036315,-3.105326,8.036315,-1.530523,8.933704,-3.105326,8.933704,-1.530523,8.036315,2.436185,-0.5602719,2.436185,1.369166,4.010988,-0.5602719,4.010988,1.369166,4.010988,-0.5602719,2.436185,1.369166,2.436185,-0.5602719,4.010988,1.369166,-2.062226,0.5087228,-2.062226,3.771549,-0.4874232,0.5087228,-0.4874232,3.771549,-0.4874232,0.5087228,-2.062226,3.771549,-2.062226,0.5087228,-0.4874232,3.771549,-1.530523,3.130152,-1.530523,0.8026905,-3.105326,3.130152,-3.105326,0.8026905,-3.105326,3.130152,-1.530523,0.8026905,-1.530523,3.130152,-3.105326,0.8026905,-0.581801,0.02465354,-2.156604,0.02465354,-0.581801,4.253846,-2.156604,4.253846,-0.581801,4.253846,-2.156604,0.02465354,-0.581801,0.02465354,-2.156604,4.253846,-0.581801,4.224616,-2.156604,4.224616,-0.581801,7.220829,-2.156604,7.220829,-0.581801,7.220829,-2.156604,4.224616,-0.581801,4.224616,-2.156604,7.220829 + } + UVIndex: *396 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,123,121,122,124,126,125,125,127,124,128,130,129,131,129,130,132,134,133,133,135,132,136,138,137,139,137,138,140,142,141,141,143,140,144,146,145,147,145,146,148,150,149,149,151,148,152,154,153,155,153,154,156,158,157,157,159,156,160,162,161,163,161,162,164,166,165,165,167,164,168,170,169,171,169,170,172,174,173,173,175,172,176,178,177,179,177,178,180,182,181,181,183,180,184,186,185,187,185,186,188,190,189,189,191,188,192,194,193,195,193,194,196,198,197,197,199,196,200,202,201,203,201,202,204,206,205,205,207,204,208,210,209,211,209,210,212,214,213,213,215,212,216,218,217,219,217,218,220,222,221,221,223,220,224,226,225,227,225,226,228,230,229,229,231,228,232,234,233,235,233,234,236,238,237,237,239,236,240,242,241,243,241,242,244,246,245,245,247,244,248,250,249,251,249,250,252,254,253,253,255,252,256,258,257,259,257,258,260,262,261,261,263,260 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *132 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh grass, Model::RootNode + C: "OO",4907611884380710917,0 + + ;Geometry::, Model::Mesh grass + C: "OO",5403495611288580306,4907611884380710917 + + ;Material::grass, Model::Mesh grass + C: "OO",3024,4907611884380710917 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/grass.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/grass.fbx.import new file mode 100644 index 0000000..20cd22f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/grass.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cb0732hga8d02" +path="res://.godot/imported/grass.fbx-eff0f3a67d5ec5c40395d6d0a5acc107.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/grass.fbx" +dest_files=["res://.godot/imported/grass.fbx-eff0f3a67d5ec5c40395d6d0a5acc107.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/grass_large.fbx b/assets/models/kenney_nature-kit/Models/FBX format/grass_large.fbx new file mode 100644 index 0000000..8702bc6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/grass_large.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 486 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "grass_large.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "grass_large.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5395751848548387004, "Model::grass_large", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5526161818292330754, "Geometry::", "Mesh" { + Vertices: *1344 { + a: -0.6437016,0.7783776,-1.532879,-0.8627191,0.4632032,-1.532879,-0.6437016,0.7783776,-1.132879,-0.8627191,0.4632032,-1.132879,-0.6437016,0.7783776,-1.132879,-0.8627191,0.4632032,-1.532879,-0.6437016,0.7783776,-1.532879,-0.8627191,0.4632032,-1.132879,-0.4437015,0.864864,-1.132879,-0.4437015,0.864864,-1.532879,-0.6437016,0.7783776,-1.132879,-0.6437016,0.7783776,-1.532879,-0.6437016,0.7783776,-1.132879,-0.4437015,0.864864,-1.532879,-0.4437015,0.864864,-1.132879,-0.6437016,0.7783776,-1.532879,0.8365587,0,1.295899,0.7555764,0.3288743,1.295899,0.8365587,0,1.695899,0.7555764,0.3288743,1.695899,0.8365587,0,1.695899,0.7555764,0.3288743,1.295899,0.8365587,0,1.295899,0.7555764,0.3288743,1.695899,0.432746,0,-0.0160965,0.832746,0,-0.01609649,0.432746,0.9567357,-0.09707889,0.832746,0.9567357,-0.09707889,0.432746,0.9567357,-0.09707889,0.832746,0,-0.01609649,0.432746,0,-0.0160965,0.832746,0.9567357,-0.09707889,1.407343,0.9840599,0.1907731,1.188325,0.5856023,0.1907731,1.407343,0.9840599,0.5907731,1.188325,0.5856023,0.5907731,1.407343,0.9840599,0.5907731,1.188325,0.5856023,0.1907731,1.407343,0.9840599,0.1907731,1.188325,0.5856023,0.5907731,0.6027077,0.9840599,-1.37386,0.6027077,1.0934,-1.57386,0.2027077,0.9840599,-1.37386,0.2027077,1.0934,-1.57386,0.2027077,0.9840599,-1.37386,0.6027077,1.0934,-1.57386,0.6027077,0.9840599,-1.37386,0.2027077,1.0934,-1.57386,-1.814976,0,0.9660962,-1.414976,0,0.9660962,-1.814976,0.4632032,0.8851137,-1.414976,0.4632032,0.8851137,-1.814976,0.4632032,0.8851137,-1.414976,0,0.9660962,-1.814976,0,0.9660962,-1.414976,0.4632032,0.8851137,-1.28686,1.08108,2.120955,-1.28686,1.08108,1.720955,-1.48686,1.2012,2.120955,-1.48686,1.2012,1.720955,-1.48686,1.2012,2.120955,-1.28686,1.08108,1.720955,-1.28686,1.08108,2.120955,-1.48686,1.2012,1.720955,-1.814976,0.4632032,0.8851137,-1.414976,0.4632032,0.8851137,-1.814976,0.7783776,0.6660961,-1.414976,0.7783776,0.6660961,-1.814976,0.7783776,0.6660961,-1.414976,0.4632032,0.8851137,-1.814976,0.4632032,0.8851137,-1.414976,0.7783776,0.6660961,-0.5398887,1.360371,0.2600987,-0.9398888,1.360371,0.2600987,-0.5398887,2.286,0.4791163,-0.9398888,2.286,0.4791163,-0.5398887,2.286,0.4791163,-0.9398888,1.360371,0.2600987,-0.5398887,1.360371,0.2600987,-0.9398888,2.286,0.4791163,0.1970191,1.8,0.5622833,-0.02199849,1.071158,0.5622833,0.1970191,1.8,0.9622833,-0.02199849,1.071158,0.9622833,0.1970191,1.8,0.9622833,-0.02199849,1.071158,0.5622833,0.1970191,1.8,0.5622833,-0.02199849,1.071158,0.9622833,-0.3098505,0.8247918,1.317862,-0.7098504,0.8247918,1.317862,-0.3098505,1.386,1.53688,-0.7098504,1.386,1.53688,-0.3098505,1.386,1.53688,-0.7098504,0.8247918,1.317862,-0.3098505,0.8247918,1.317862,-0.7098504,1.386,1.53688,-1.414976,0.7783776,0.6660961,-1.414976,0.864864,0.4660961,-1.814976,0.7783776,0.6660961,-1.814976,0.864864,0.4660961,-1.814976,0.7783776,0.6660961,-1.414976,0.864864,0.4660961,-1.414976,0.7783776,0.6660961,-1.814976,0.864864,0.4660961,0.832746,1.607721,-0.3160965,0.832746,1.786357,-0.5160965,0.432746,1.607721,-0.3160965,0.432746,1.786357,-0.5160965,0.432746,1.607721,-0.3160965,0.832746,1.786357,-0.5160965,0.832746,1.607721,-0.3160965,0.432746,1.786357,-0.5160965,-0.9868603,0,1.720955,-1.067842,0.6433377,1.720955,-0.9868605,0,2.120955,-1.067842,0.6433377,2.120955,-0.9868605,0,2.120955,-1.067842,0.6433377,1.720955,-0.9868603,0,1.720955,-1.067842,0.6433377,2.120955,-0.3098505,1.54,1.73688,-0.3098505,1.386,1.53688,-0.7098504,1.54,1.73688,-0.7098504,1.386,1.53688,-0.7098504,1.54,1.73688,-0.3098505,1.386,1.53688,-0.3098505,1.54,1.73688,-0.7098504,1.386,1.53688,-1.067842,0.6433377,1.720955,-1.28686,1.08108,1.720955,-1.067842,0.6433377,2.120955,-1.28686,1.08108,2.120955,-1.067842,0.6433377,2.120955,-1.28686,1.08108,1.720955,-1.067842,0.6433377,1.720955,-1.28686,1.08108,2.120955,0.432746,0.9567357,-0.09707889,0.832746,0.9567357,-0.09707889,0.432746,1.607721,-0.3160965,0.832746,1.607721,-0.3160965,0.432746,1.607721,-0.3160965,0.832746,0.9567357,-0.09707889,0.432746,0.9567357,-0.09707889,0.832746,1.607721,-0.3160965,-0.02199849,1.071158,0.5622833,-0.1029809,0,0.5622833,-0.02199849,1.071158,0.9622833,-0.1029809,0,0.9622833,-0.02199849,1.071158,0.9622833,-0.1029809,0,0.5622833,-0.02199849,1.071158,0.5622833,-0.1029809,0,0.9622833,-1.214485,0,-0.4277533,-1.295467,0.8247918,-0.4277533,-1.214485,0,-0.02775329,-1.295467,0.8247918,-0.02775329,-1.214485,0,-0.02775329,-1.295467,0.8247918,-0.4277533,-1.214485,0,-0.4277533,-1.295467,0.8247918,-0.02775329,0.5365588,0.5526481,1.695899,0.5365588,0.5526481,1.295899,0.3365587,0.6140534,1.695899,0.3365587,0.6140534,1.295899,0.3365587,0.6140534,1.695899,0.5365588,0.5526481,1.295899,0.5365588,0.5526481,1.695899,0.3365587,0.6140534,1.295899,-0.3098505,0,1.23688,-0.7098504,0,1.23688,-0.3098505,0.8247918,1.317862,-0.7098504,0.8247918,1.317862,-0.3098505,0.8247918,1.317862,-0.7098504,0,1.23688,-0.3098505,0,1.23688,-0.7098504,0.8247918,1.317862,1.179718,0.7675668,-1.957935,0.9606996,0.4567698,-1.957935,1.179718,0.7675668,-1.557935,0.9606996,0.4567698,-1.557935,1.179718,0.7675668,-1.557935,0.9606996,0.4567698,-1.957935,1.179718,0.7675668,-1.957935,0.9606996,0.4567698,-1.557935,-0.8627191,0.4632032,-1.532879,-0.9437015,0,-1.532879,-0.8627191,0.4632032,-1.132879,-0.9437015,0,-1.132879,-0.8627191,0.4632032,-1.132879,-0.9437015,0,-1.532879,-0.8627191,0.4632032,-1.532879,-0.9437015,0,-1.132879,1.991418,0.4567698,0.9487656,1.591418,0.4567698,0.9487656,1.991418,0.7675668,1.167783,1.591418,0.7675668,1.167783,1.991418,0.7675668,1.167783,1.591418,0.4567698,0.9487656,1.991418,0.4567698,0.9487656,1.591418,0.7675668,1.167783,-0.08514426,0.9658635,-0.7992635,-0.3041619,1.62306,-0.7992635,-0.08514427,0.9658635,-0.3992635,-0.3041619,1.62306,-0.3992635,-0.08514427,0.9658635,-0.3992635,-0.3041619,1.62306,-0.7992635,-0.08514426,0.9658635,-0.7992635,-0.3041619,1.62306,-0.3992635,-1.295467,0.8247918,-0.4277533,-1.514485,1.386,-0.4277533,-1.295467,0.8247918,-0.02775329,-1.514485,1.386,-0.02775329,-1.295467,0.8247918,-0.02775329,-1.514485,1.386,-0.4277533,-1.295467,0.8247918,-0.4277533,-1.514485,1.386,-0.02775329,0.2027077,0,-1.07386,0.6027077,0,-1.07386,0.2027077,0.5856023,-1.154842,0.6027077,0.5856023,-1.154842,0.2027077,0.5856023,-1.154842,0.6027077,0,-1.07386,0.2027077,0,-1.07386,0.6027077,0.5856023,-1.154842,0.7555764,0.3288743,1.295899,0.5365588,0.5526481,1.295899,0.7555764,0.3288743,1.695899,0.5365588,0.5526481,1.695899,0.7555764,0.3288743,1.695899,0.5365588,0.5526481,1.295899,0.7555764,0.3288743,1.295899,0.5365588,0.5526481,1.695899,-2.098561,0,-0.7047632,-1.69856,0,-0.7047632,-2.098561,0.6433377,-0.7857457,-1.69856,0.6433377,-0.7857457,-2.098561,0.6433377,-0.7857457,-1.69856,0,-0.7047632,-2.098561,0,-0.7047632,-1.69856,0.6433377,-0.7857457,-2.098561,0.6433377,-0.7857457,-1.69856,0.6433377,-0.7857457,-2.098561,1.08108,-1.004763,-1.69856,1.08108,-1.004763,-2.098561,1.08108,-1.004763,-1.69856,0.6433377,-0.7857457,-2.098561,0.6433377,-0.7857457,-1.69856,1.08108,-1.004763,1.707834,0,-0.8030763,1.307833,0,-0.8030763,1.707834,0.3288743,-0.7220939,1.307833,0.3288743,-0.7220939,1.707834,0.3288743,-0.7220939,1.307833,0,-0.8030763,1.707834,0,-0.8030763,1.307833,0.3288743,-0.7220939,0.2027077,0.5856023,-1.154842,0.6027077,0.5856023,-1.154842,0.2027077,0.9840599,-1.37386,0.6027077,0.9840599,-1.37386,0.2027077,0.9840599,-1.37386,0.6027077,0.5856023,-1.154842,0.2027077,0.5856023,-1.154842,0.6027077,0.9840599,-1.37386,-0.5398887,0,0.1791163,-0.9398888,0,0.1791163,-0.5398887,1.360371,0.2600987,-0.9398888,1.360371,0.2600987,-0.5398887,1.360371,0.2600987,-0.9398888,0,0.1791163,-0.5398887,0,0.1791163,-0.9398888,1.360371,0.2600987,-1.514485,1.386,-0.02775329,-1.514485,1.386,-0.4277533,-1.714485,1.54,-0.02775329,-1.714485,1.54,-0.4277533,-1.714485,1.54,-0.02775329,-1.514485,1.386,-0.4277533,-1.514485,1.386,-0.02775329,-1.714485,1.54,-0.4277533,0.9515536,0.3422795,1.295899,0.8365587,0,1.295899,0.9515536,0.3422795,1.695899,0.8365587,0,1.695899,0.9515536,0.3422795,1.695899,0.8365587,0,1.295899,0.9515536,0.3422795,1.295899,0.8365587,0,1.695899,-0.004161857,0,-0.7992635,-0.08514426,0.9658635,-0.7992635,-0.004161857,0,-0.3992635,-0.08514427,0.9658635,-0.3992635,-0.004161857,0,-0.3992635,-0.08514426,0.9658635,-0.7992635,-0.004161857,0,-0.7992635,-0.08514427,0.9658635,-0.3992635,-0.5398887,2.286,0.4791163,-0.9398888,2.286,0.4791163,-0.5398887,2.54,0.6791163,-0.9398888,2.54,0.6791163,-0.5398887,2.54,0.6791163,-0.9398888,2.286,0.4791163,-0.5398887,2.286,0.4791163,-0.9398888,2.54,0.6791163,-1.69856,1.08108,-1.004763,-1.69856,1.2012,-1.204763,-2.098561,1.08108,-1.004763,-2.098561,1.2012,-1.204763,-2.098561,1.08108,-1.004763,-1.69856,1.2012,-1.204763,-1.69856,1.08108,-1.004763,-2.098561,1.2012,-1.204763,1.991418,0.852852,1.367783,1.991418,0.7675668,1.167783,1.591418,0.852852,1.367783,1.591418,0.7675668,1.167783,1.591418,0.852852,1.367783,1.991418,0.7675668,1.167783,1.991418,0.852852,1.367783,1.591418,0.7675668,1.167783,-0.9398888,0.690358,0.0171515,-0.5398887,0.690358,0.0171515,-0.9398888,1.160094,-0.4208837,-0.5398887,1.160094,-0.4208837,-0.9398888,1.160094,-0.4208837,-0.5398887,0.690358,0.0171515,-0.9398888,0.690358,0.0171515,-0.5398887,1.160094,-0.4208837,1.707834,0.6140534,-0.3030763,1.707834,0.5526481,-0.5030763,1.307833,0.6140534,-0.3030763,1.307833,0.5526481,-0.5030763,1.307833,0.6140534,-0.3030763,1.707834,0.5526481,-0.5030763,1.707834,0.6140534,-0.3030763,1.307833,0.5526481,-0.5030763,-1.024684,0.3751945,-1.532879,-1.243701,0.630486,-1.532879,-1.024684,0.3751945,-1.132879,-1.243701,0.630486,-1.132879,-1.024684,0.3751945,-1.132879,-1.243701,0.630486,-1.532879,-1.024684,0.3751945,-1.532879,-1.243701,0.630486,-1.132879,-0.3041619,1.62306,-0.3992635,-0.3041619,1.62306,-0.7992635,-0.5041618,1.8034,-0.3992635,-0.5041618,1.8034,-0.7992635,-0.5041618,1.8034,-0.3992635,-0.3041619,1.62306,-0.7992635,-0.3041619,1.62306,-0.3992635,-0.5041618,1.8034,-0.7992635,1.188325,0.5856023,0.1907731,1.107342,0,0.1907731,1.188325,0.5856023,0.5907731,1.107342,0,0.5907731,1.188325,0.5856023,0.5907731,1.107342,0,0.1907731,1.188325,0.5856023,0.1907731,1.107342,0,0.5907731,0.9606996,0.4567698,-1.957935,0.8797178,0,-1.957935,0.9606996,0.4567698,-1.557935,0.8797178,0,-1.557935,0.9606996,0.4567698,-1.557935,0.8797178,0,-1.957935,0.9606996,0.4567698,-1.957935,0.8797178,0,-1.557935,-0.9437015,0,-1.532879,-1.024684,0.3751945,-1.532879,-0.9437015,0,-1.132879,-1.024684,0.3751945,-1.132879,-0.9437015,0,-1.132879,-1.024684,0.3751945,-1.532879,-0.9437015,0,-1.532879,-1.024684,0.3751945,-1.132879,0.832746,0.7772629,0.5839035,0.832746,0.4625398,0.1458683,0.432746,0.7772629,0.5839035,0.432746,0.4625398,0.1458683,0.432746,0.7772629,0.5839035,0.832746,0.4625398,0.1458683,0.832746,0.7772629,0.5839035,0.432746,0.4625398,0.1458683,1.379718,0.852852,-1.557935,1.379718,0.852852,-1.957935,1.179718,0.7675668,-1.557935,1.179718,0.7675668,-1.957935,1.179718,0.7675668,-1.557935,1.379718,0.852852,-1.957935,1.379718,0.852852,-1.557935,1.179718,0.7675668,-1.957935,1.607342,1.0934,0.5907731,1.607342,1.0934,0.1907731,1.407343,0.9840599,0.5907731,1.407343,0.9840599,0.1907731,1.407343,0.9840599,0.5907731,1.607342,1.0934,0.1907731,1.607342,1.0934,0.5907731,1.407343,0.9840599,0.1907731,0.832746,0,-0.01609649,0.432746,0,-0.0160965,0.832746,0.4625398,0.1458683,0.432746,0.4625398,0.1458683,0.832746,0.4625398,0.1458683,0.432746,0,-0.0160965,0.832746,0,-0.01609649,0.432746,0.4625398,0.1458683,-0.9398888,0,0.1791163,-0.5398887,0,0.1791163,-0.9398888,0.690358,0.0171515,-0.5398887,0.690358,0.0171515,-0.9398888,0.690358,0.0171515,-0.5398887,0,0.1791163,-0.9398888,0,0.1791163,-0.5398887,0.690358,0.0171515,1.707834,0.3288743,-0.7220939,1.307833,0.3288743,-0.7220939,1.707834,0.5526481,-0.5030763,1.307833,0.5526481,-0.5030763,1.707834,0.5526481,-0.5030763,1.307833,0.3288743,-0.7220939,1.707834,0.3288743,-0.7220939,1.307833,0.5526481,-0.5030763,0.3970191,2,0.5622833,0.1970191,1.8,0.5622833,0.3970191,2,0.9622833,0.1970191,1.8,0.9622833,0.3970191,2,0.9622833,0.1970191,1.8,0.5622833,0.3970191,2,0.5622833,0.1970191,1.8,0.9622833,1.991418,0,0.8677831,1.591418,0,0.8677831,1.991418,0.4567698,0.9487656,1.591418,0.4567698,0.9487656,1.991418,0.4567698,0.9487656,1.591418,0,0.8677831,1.991418,0,0.8677831,1.591418,0.4567698,0.9487656,1.262559,0.5751746,1.695899,1.262559,0.5751746,1.295899,0.9515536,0.3422795,1.695899,0.9515536,0.3422795,1.295899,0.9515536,0.3422795,1.695899,1.262559,0.5751746,1.295899,1.262559,0.5751746,1.695899,0.9515536,0.3422795,1.295899 + } + PolygonVertexIndex: *672 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,123,121,-123,124,126,-126,125,127,-125,128,130,-130,131,129,-131,132,134,-134,133,135,-133,136,138,-138,139,137,-139,140,142,-142,141,143,-141,144,146,-146,147,145,-147,148,150,-150,149,151,-149,152,154,-154,155,153,-155,156,158,-158,157,159,-157,160,162,-162,163,161,-163,164,166,-166,165,167,-165,168,170,-170,171,169,-171,172,174,-174,173,175,-173,176,178,-178,179,177,-179,180,182,-182,181,183,-181,184,186,-186,187,185,-187,188,190,-190,189,191,-189,192,194,-194,195,193,-195,196,198,-198,197,199,-197,200,202,-202,203,201,-203,204,206,-206,205,207,-205,208,210,-210,211,209,-211,212,214,-214,213,215,-213,216,218,-218,219,217,-219,220,222,-222,221,223,-221,224,226,-226,227,225,-227,228,230,-230,229,231,-229,232,234,-234,235,233,-235,236,238,-238,237,239,-237,240,242,-242,243,241,-243,244,246,-246,245,247,-245,248,250,-250,251,249,-251,252,254,-254,253,255,-253,256,258,-258,259,257,-259,260,262,-262,261,263,-261,264,266,-266,267,265,-267,268,270,-270,269,271,-269,272,274,-274,275,273,-275,276,278,-278,277,279,-277,280,282,-282,283,281,-283,284,286,-286,285,287,-285,288,290,-290,291,289,-291,292,294,-294,293,295,-293,296,298,-298,299,297,-299,300,302,-302,301,303,-301,304,306,-306,307,305,-307,308,310,-310,309,311,-309,312,314,-314,315,313,-315,316,318,-318,317,319,-317,320,322,-322,323,321,-323,324,326,-326,325,327,-325,328,330,-330,331,329,-331,332,334,-334,333,335,-333,336,338,-338,339,337,-339,340,342,-342,341,343,-341,344,346,-346,347,345,-347,348,350,-350,349,351,-349,352,354,-354,355,353,-355,356,358,-358,357,359,-357,360,362,-362,363,361,-363,364,366,-366,365,367,-365,368,370,-370,371,369,-371,372,374,-374,373,375,-373,376,378,-378,379,377,-379,380,382,-382,381,383,-381,384,386,-386,387,385,-387,388,390,-390,389,391,-389,392,394,-394,395,393,-395,396,398,-398,397,399,-397,400,402,-402,403,401,-403,404,406,-406,405,407,-405,408,410,-410,411,409,-411,412,414,-414,413,415,-413,416,418,-418,419,417,-419,420,422,-422,421,423,-421,424,426,-426,427,425,-427,428,430,-430,429,431,-429,432,434,-434,435,433,-435,436,438,-438,437,439,-437,440,442,-442,443,441,-443,444,446,-446,445,447,-445 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2016 { + a: 0.8211913,-0.5706532,0,0.8211913,-0.5706532,0,0.8211913,-0.5706532,0,0.8211913,-0.5706532,0,0.8211913,-0.5706532,0,0.8211913,-0.5706532,0,-0.8211913,0.5706532,0,-0.8211913,0.5706532,0,-0.8211913,0.5706532,0,-0.8211913,0.5706532,0,-0.8211913,0.5706532,0,-0.8211913,0.5706532,0,0.3969106,-0.9178572,0,0.3969106,-0.9178572,0,0.3969106,-0.9178572,0,0.3969106,-0.9178572,0,0.3969106,-0.9178572,0,0.3969106,-0.9178572,0,-0.3969106,0.9178572,0,-0.3969106,0.9178572,0,-0.3969106,0.9178572,0,-0.3969106,0.9178572,0,-0.3969106,0.9178572,0,-0.3969106,0.9178572,0,-0.9709952,-0.239099,0,-0.9709952,-0.239099,0,-0.9709952,-0.239099,0,-0.9709952,-0.239099,0,-0.9709952,-0.239099,0,-0.9709952,-0.239099,0,0.9709952,0.239099,0,0.9709952,0.239099,0,0.9709952,0.239099,0,0.9709952,0.239099,0,0.9709952,0.239099,0,0.9709952,0.239099,0,0,-0.08434288,-0.9964368,0,-0.08434288,-0.9964368,0,-0.08434288,-0.9964368,0,-0.08434288,-0.9964368,0,-0.08434288,-0.9964368,0,-0.08434288,-0.9964368,0,0.08434288,0.9964368,0,0.08434288,0.9964368,0,0.08434288,0.9964368,0,0.08434288,0.9964368,0,0.08434288,0.9964368,0,0.08434288,0.9964368,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,0.8763401,-0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,-0.8763401,0.4816929,0,0,-0.8774357,-0.4796941,0,-0.8774357,-0.4796941,0,-0.8774357,-0.4796941,0,-0.8774357,-0.4796941,0,-0.8774357,-0.4796941,0,-0.8774357,-0.4796941,0,0.8774357,0.4796941,0,0.8774357,0.4796941,0,0.8774357,0.4796941,0,0.8774357,0.4796941,0,0.8774357,0.4796941,0,0.8774357,0.4796941,0,-0.172219,-0.9850587,0,-0.172219,-0.9850587,0,-0.172219,-0.9850587,0,-0.172219,-0.9850587,0,-0.172219,-0.9850587,0,-0.172219,-0.9850587,0,0.172219,0.9850587,0,0.172219,0.9850587,0,0.172219,0.9850587,0,0.172219,0.9850587,0,0.172219,0.9850587,0,0.172219,0.9850587,-0.514874,-0.8572659,0,-0.514874,-0.8572659,0,-0.514874,-0.8572659,0,-0.514874,-0.8572659,0,-0.514874,-0.8572659,0,-0.514874,-0.8572659,0,0.514874,0.8572659,0,0.514874,0.8572659,0,0.514874,0.8572659,0,0.514874,0.8572659,0,0.514874,0.8572659,0,0.514874,0.8572659,0,0,-0.5706533,-0.8211911,0,-0.5706533,-0.8211911,0,-0.5706533,-0.8211911,0,-0.5706533,-0.8211911,0,-0.5706533,-0.8211911,0,-0.5706533,-0.8211911,0,0.5706533,0.8211911,0,0.5706533,0.8211911,0,0.5706533,0.8211911,0,0.5706533,0.8211911,0,0.5706533,0.8211911,0,0.5706533,0.8211911,0,-0.230257,0.9731299,0,-0.230257,0.9731299,0,-0.230257,0.9731299,0,-0.230257,0.9731299,0,-0.230257,0.9731299,0,-0.230257,0.9731299,0,0.230257,-0.9731299,0,0.230257,-0.9731299,0,0.230257,-0.9731299,0,0.230257,-0.9731299,0,0.230257,-0.9731299,0,0.230257,-0.9731299,0.9576942,-0.2877879,0,0.9576942,-0.2877879,0,0.9576942,-0.2877879,0,0.9576942,-0.2877879,0,0.9576942,-0.2877879,0,0.9576942,-0.2877879,0,-0.9576942,0.2877879,0,-0.9576942,0.2877879,0,-0.9576942,0.2877879,0,-0.9576942,0.2877879,0,-0.9576942,0.2877879,0,-0.9576942,0.2877879,0,0,-0.3635568,0.9315721,0,-0.3635568,0.9315721,0,-0.3635568,0.9315721,0,-0.3635568,0.9315721,0,-0.3635568,0.9315721,0,-0.3635568,0.9315721,0,0.3635568,-0.9315721,0,0.3635568,-0.9315721,0,0.3635568,-0.9315721,0,0.3635568,-0.9315721,0,0.3635568,-0.9315721,0,0.3635568,-0.9315721,0,-0.9178572,-0.3969108,0,-0.9178572,-0.3969108,0,-0.9178572,-0.3969108,0,-0.9178572,-0.3969108,0,-0.9178572,-0.3969108,0,-0.9178572,-0.3969108,0,0.9178572,0.3969108,0,0.9178572,0.3969108,0,0.9178572,0.3969108,0,0.9178572,0.3969108,0,0.9178572,0.3969108,0,0.9178572,0.3969108,0,-0.7458178,-0.6661499,0,-0.7458178,-0.6661499,0,-0.7458178,-0.6661499,0,-0.7458178,-0.6661499,0,-0.7458178,-0.6661499,0,-0.7458178,-0.6661499,0,0.7458178,0.6661499,0,0.7458178,0.6661499,0,0.7458178,0.6661499,0,0.7458178,0.6661499,0,0.7458178,0.6661499,0,0.7458178,0.6661499,-0.9921704,-0.1248923,0,-0.9921704,-0.1248923,0,-0.9921704,-0.1248923,0,-0.9921704,-0.1248923,0,-0.9921704,-0.1248923,0,-0.9921704,-0.1248923,0,0.9921704,0.1248923,0,0.9921704,0.1248923,0,0.9921704,0.1248923,0,0.9921704,0.1248923,0,0.9921704,0.1248923,0,0.9921704,0.1248923,0,0,-0.7923295,0.6100933,0,-0.7923295,0.6100933,0,-0.7923295,0.6100933,0,-0.7923295,0.6100933,0,-0.7923295,0.6100933,0,-0.7923295,0.6100933,0,0.7923295,-0.6100933,0,0.7923295,-0.6100933,0,0.7923295,-0.6100933,0,0.7923295,-0.6100933,0,0.7923295,-0.6100933,0,0.7923295,-0.6100933,-0.8943071,-0.4474536,0,-0.8943071,-0.4474536,0,-0.8943071,-0.4474536,0,-0.8943071,-0.4474536,0,-0.8943071,-0.4474536,0,-0.8943071,-0.4474536,0,0.8943071,0.4474536,0,0.8943071,0.4474536,0,0.8943071,0.4474536,0,0.8943071,0.4474536,0,0.8943071,0.4474536,0,0.8943071,0.4474536,0,0,-0.3188767,-0.9477962,0,-0.3188767,-0.9477962,0,-0.3188767,-0.9477962,0,-0.3188767,-0.9477962,0,-0.3188767,-0.9477962,0,-0.3188767,-0.9477962,0,0.3188767,0.9477962,0,0.3188767,0.9477962,0,0.3188767,0.9477962,0,0.3188767,0.9477962,0,0.3188767,0.9477962,0,0.3188767,0.9477962,0.9971544,-0.07538754,0,0.9971544,-0.07538754,0,0.9971544,-0.07538754,0,0.9971544,-0.07538754,0,0.9971544,-0.07538754,0,0.9971544,-0.07538754,0,-0.9971544,0.07538754,0,-0.9971544,0.07538754,0,-0.9971544,0.07538754,0,-0.9971544,0.07538754,0,-0.9971544,0.07538754,0,-0.9971544,0.07538754,0,-0.9952145,-0.09771501,0,-0.9952145,-0.09771501,0,-0.9952145,-0.09771501,0,-0.9952145,-0.09771501,0,-0.9952145,-0.09771501,0,-0.9952145,-0.09771501,0,0.9952145,0.09771501,0,0.9952145,0.09771501,0,0.9952145,0.09771501,0,0.9952145,0.09771501,0,0.9952145,0.09771501,0,0.9952145,0.09771501,0,-0.2935042,-0.9559578,0,-0.2935042,-0.9559578,0,-0.2935042,-0.9559578,0,-0.2935042,-0.9559578,0,-0.2935042,-0.9559578,0,-0.2935042,-0.9559578,0,0.2935042,0.9559578,0,0.2935042,0.9559578,0,0.2935042,0.9559578,0,0.2935042,0.9559578,0,0.2935042,0.9559578,0,0.2935042,0.9559578,0,0,-0.09771487,0.9952145,0,-0.09771487,0.9952145,0,-0.09771487,0.9952145,0,-0.09771487,0.9952145,0,-0.09771487,0.9952145,0,-0.09771487,0.9952145,0,0.09771487,-0.9952145,0,0.09771487,-0.9952145,0,0.09771487,-0.9952145,0,0.09771487,-0.9952145,0,0.09771487,-0.9952145,0,0.09771487,-0.9952145,0.8174238,-0.5760368,0,0.8174238,-0.5760368,0,0.8174238,-0.5760368,0,0.8174238,-0.5760368,0,0.8174238,-0.5760368,0,0.8174238,-0.5760368,0,-0.8174238,0.5760368,0,-0.8174238,0.5760368,0,-0.8174238,0.5760368,0,-0.8174238,0.5760368,0,-0.8174238,0.5760368,0,-0.8174238,0.5760368,0,0.9850587,-0.172219,0,0.9850587,-0.172219,0,0.9850587,-0.172219,0,0.9850587,-0.172219,0,0.9850587,-0.172219,0,0.9850587,-0.172219,0,-0.9850587,0.172219,0,-0.9850587,0.172219,0,-0.9850587,0.172219,0,-0.9850587,0.172219,0,-0.9850587,0.172219,0,-0.9850587,0.172219,0,0,-0.5760356,0.8174246,0,-0.5760356,0.8174246,0,-0.5760356,0.8174246,0,-0.5760356,0.8174246,0,-0.5760356,0.8174246,0,-0.5760356,0.8174246,0,0.5760356,-0.8174246,0,0.5760356,-0.8174246,0,0.5760356,-0.8174246,0,0.5760356,-0.8174246,0,0.5760356,-0.8174246,0,0.5760356,-0.8174246,-0.948704,-0.3161656,0,-0.948704,-0.3161656,0,-0.948704,-0.3161656,0,-0.948704,-0.3161656,0,-0.948704,-0.3161656,0,-0.948704,-0.3161656,0,0.948704,0.3161656,0,0.948704,0.3161656,0,0.948704,0.3161656,0,0.948704,0.3161656,0,0.948704,0.3161656,0,0.948704,0.3161656,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,-0.9315721,-0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0.9315721,0.3635568,0,0,-0.1369847,-0.9905731,0,-0.1369847,-0.9905731,0,-0.1369847,-0.9905731,0,-0.1369847,-0.9905731,0,-0.1369847,-0.9905731,0,-0.1369847,-0.9905731,0,0.1369847,0.9905731,0,0.1369847,0.9905731,0,0.1369847,0.9905731,0,0.1369847,0.9905731,0,0.1369847,0.9905731,0,0.1369847,0.9905731,-0.7146611,-0.6994708,0,-0.7146611,-0.6994708,0,-0.7146611,-0.6994708,0,-0.7146611,-0.6994708,0,-0.7146611,-0.6994708,0,-0.7146611,-0.6994708,0,0.7146611,0.6994708,0,0.7146611,0.6994708,0,0.7146611,0.6994708,0,0.7146611,0.6994708,0,0.7146611,0.6994708,0,0.7146611,0.6994708,0,0,-0.124893,-0.9921703,0,-0.124893,-0.9921703,0,-0.124893,-0.9921703,0,-0.124893,-0.9921703,0,-0.124893,-0.9921703,0,-0.124893,-0.9921703,0,0.124893,0.9921703,0,0.124893,0.9921703,0,0.124893,0.9921703,0,0.124893,0.9921703,0,0.124893,0.9921703,0,0.124893,0.9921703,0,-0.4474525,-0.8943077,0,-0.4474525,-0.8943077,0,-0.4474525,-0.8943077,0,-0.4474525,-0.8943077,0,-0.4474525,-0.8943077,0,-0.4474525,-0.8943077,0,0.4474525,0.8943077,0,0.4474525,0.8943077,0,0.4474525,0.8943077,0,0.4474525,0.8943077,0,0.4474525,0.8943077,0,0.4474525,0.8943077,0,-0.239099,0.9709952,0,-0.239099,0.9709952,0,-0.239099,0.9709952,0,-0.239099,0.9709952,0,-0.239099,0.9709952,0,-0.239099,0.9709952,0,0.239099,-0.9709952,0,0.239099,-0.9709952,0,0.239099,-0.9709952,0,0.239099,-0.9709952,0,0.239099,-0.9709952,0,0.239099,-0.9709952,0,-0.4816929,-0.8763401,0,-0.4816929,-0.8763401,0,-0.4816929,-0.8763401,0,-0.4816929,-0.8763401,0,-0.4816929,-0.8763401,0,-0.4816929,-0.8763401,0,0.4816929,0.8763401,0,0.4816929,0.8763401,0,0.4816929,0.8763401,0,0.4816929,0.8763401,0,0.4816929,0.8763401,0,0.4816929,0.8763401,0,-0.05942444,0.9982328,0,-0.05942444,0.9982328,0,-0.05942444,0.9982328,0,-0.05942444,0.9982328,0,-0.05942444,0.9982328,0,-0.05942444,0.9982328,0,0.05942444,-0.9982328,0,0.05942444,-0.9982328,0,0.05942444,-0.9982328,0,0.05942444,-0.9982328,0,0.05942444,-0.9982328,0,0.05942444,-0.9982328,-0.6100935,-0.7923294,0,-0.6100935,-0.7923294,0,-0.6100935,-0.7923294,0,-0.6100935,-0.7923294,0,-0.6100935,-0.7923294,0,-0.6100935,-0.7923294,0,0.6100935,0.7923294,0,0.6100935,0.7923294,0,0.6100935,0.7923294,0,0.6100935,0.7923294,0,0.6100935,0.7923294,0,0.6100935,0.7923294,0,0.9479314,-0.3184746,0,0.9479314,-0.3184746,0,0.9479314,-0.3184746,0,0.9479314,-0.3184746,0,0.9479314,-0.3184746,0,0.9479314,-0.3184746,0,-0.9479314,0.3184746,0,-0.9479314,0.3184746,0,-0.9479314,0.3184746,0,-0.9479314,0.3184746,0,-0.9479314,0.3184746,0,-0.9479314,0.3184746,0,-0.9965035,-0.08355139,0,-0.9965035,-0.08355139,0,-0.9965035,-0.08355139,0,-0.9965035,-0.08355139,0,-0.9965035,-0.08355139,0,-0.9965035,-0.08355139,0,0.9965035,0.08355139,0,0.9965035,0.08355139,0,0.9965035,0.08355139,0,0.9965035,0.08355139,0,0.9965035,0.08355139,0,0.9965035,0.08355139,0,0,-0.618641,0.7856738,0,-0.618641,0.7856738,0,-0.618641,0.7856738,0,-0.618641,0.7856738,0,-0.618641,0.7856738,0,-0.618641,0.7856738,0,0.618641,-0.7856738,0,0.618641,-0.7856738,0,0.618641,-0.7856738,0,0.618641,-0.7856738,0,0.618641,-0.7856738,0,0.618641,-0.7856738,0,-0.8572659,-0.514874,0,-0.8572659,-0.514874,0,-0.8572659,-0.514874,0,-0.8572659,-0.514874,0,-0.8572659,-0.514874,0,-0.8572659,-0.514874,0,0.8572659,0.514874,0,0.8572659,0.514874,0,0.8572659,0.514874,0,0.8572659,0.514874,0,0.8572659,0.514874,0,0.8572659,0.514874,0,-0.9198581,0.3922513,0,-0.9198581,0.3922513,0,-0.9198581,0.3922513,0,-0.9198581,0.3922513,0,-0.9198581,0.3922513,0,-0.9198581,0.3922513,0,0.9198581,-0.3922513,0,0.9198581,-0.3922513,0,0.9198581,-0.3922513,0,0.9198581,-0.3922513,0,0.9198581,-0.3922513,0,0.9198581,-0.3922513,0,-0.6819977,-0.7313543,0,-0.6819977,-0.7313543,0,-0.6819977,-0.7313543,0,-0.6819977,-0.7313543,0,-0.6819977,-0.7313543,0,-0.6819977,-0.7313543,0,0.6819977,0.7313543,0,0.6819977,0.7313543,0,0.6819977,0.7313543,0,0.6819977,0.7313543,0,0.6819977,0.7313543,0,0.6819977,0.7313543,0,-0.9559578,0.2935044,0,-0.9559578,0.2935044,0,-0.9559578,0.2935044,0,-0.9559578,0.2935044,0,-0.9559578,0.2935044,0,-0.9559578,0.2935044,0,0.9559578,-0.2935044,0,0.9559578,-0.2935044,0,0.9559578,-0.2935044,0,0.9559578,-0.2935044,0,0.9559578,-0.2935044,0,0.9559578,-0.2935044,-0.7589682,-0.6511278,0,-0.7589682,-0.6511278,0,-0.7589682,-0.6511278,0,-0.7589682,-0.6511278,0,-0.7589682,-0.6511278,0,-0.7589682,-0.6511278,0,0.7589682,0.6511278,0,0.7589682,0.6511278,0,0.7589682,0.6511278,0,0.7589682,0.6511278,0,0.7589682,0.6511278,0,0.7589682,0.6511278,0,-0.6696621,-0.7426659,0,-0.6696621,-0.7426659,0,-0.6696621,-0.7426659,0,-0.6696621,-0.7426659,0,-0.6696621,-0.7426659,0,-0.6696621,-0.7426659,0,0.6696621,0.7426659,0,0.6696621,0.7426659,0,0.6696621,0.7426659,0,0.6696621,0.7426659,0,0.6696621,0.7426659,0,0.6696621,0.7426659,0,0.9905731,-0.1369849,0,0.9905731,-0.1369849,0,0.9905731,-0.1369849,0,0.9905731,-0.1369849,0,0.9905731,-0.1369849,0,0.9905731,-0.1369849,0,-0.9905731,0.1369849,0,-0.9905731,0.1369849,0,-0.9905731,0.1369849,0,-0.9905731,0.1369849,0,-0.9905731,0.1369849,0,-0.9905731,0.1369849,0,0.9846447,-0.1745702,0,0.9846447,-0.1745702,0,0.9846447,-0.1745702,0,0.9846447,-0.1745702,0,0.9846447,-0.1745702,0,0.9846447,-0.1745702,0,-0.9846447,0.1745702,0,-0.9846447,0.1745702,0,-0.9846447,0.1745702,0,-0.9846447,0.1745702,0,-0.9846447,0.1745702,0,-0.9846447,0.1745702,0,-0.9774899,-0.2109825,0,-0.9774899,-0.2109825,0,-0.9774899,-0.2109825,0,-0.9774899,-0.2109825,0,-0.9774899,-0.2109825,0,-0.9774899,-0.2109825,0,0.9774899,0.2109825,0,0.9774899,0.2109825,0,0.9774899,0.2109825,0,0.9774899,0.2109825,0,0.9774899,0.2109825,0,0.9774899,0.2109825,0,0,-0.8121161,0.5834959,0,-0.8121161,0.5834959,0,-0.8121161,0.5834959,0,-0.8121161,0.5834959,0,-0.8121161,0.5834959,0,-0.8121161,0.5834959,0,0.8121161,-0.5834959,0,0.8121161,-0.5834959,0,0.8121161,-0.5834959,0,0.8121161,-0.5834959,0,0.8121161,-0.5834959,0,0.8121161,-0.5834959,0.3922513,-0.9198581,0,0.3922513,-0.9198581,0,0.3922513,-0.9198581,0,0.3922513,-0.9198581,0,0.3922513,-0.9198581,0,0.3922513,-0.9198581,0,-0.3922513,0.9198581,0,-0.3922513,0.9198581,0,-0.3922513,0.9198581,0,-0.3922513,0.9198581,0,-0.3922513,0.9198581,0,-0.3922513,0.9198581,0,0.4796943,-0.8774357,0,0.4796943,-0.8774357,0,0.4796943,-0.8774357,0,0.4796943,-0.8774357,0,0.4796943,-0.8774357,0,0.4796943,-0.8774357,0,-0.4796943,0.8774357,0,-0.4796943,0.8774357,0,-0.4796943,0.8774357,0,-0.4796943,0.8774357,0,-0.4796943,0.8774357,0,-0.4796943,0.8774357,0,0,-0.3304884,0.94381,0,-0.3304884,0.94381,0,-0.3304884,0.94381,0,-0.3304884,0.94381,0,-0.3304884,0.94381,0,-0.3304884,0.94381,0,0.3304884,-0.94381,0,0.3304884,-0.94381,0,0.3304884,-0.94381,0,0.3304884,-0.94381,0,0.3304884,-0.94381,0,0.3304884,-0.94381,0,-0.2284081,-0.9735655,0,-0.2284081,-0.9735655,0,-0.2284081,-0.9735655,0,-0.2284081,-0.9735655,0,-0.2284081,-0.9735655,0,-0.2284081,-0.9735655,0,0.2284081,0.9735655,0,0.2284081,0.9735655,0,0.2284081,0.9735655,0,0.2284081,0.9735655,0,0.2284081,0.9735655,0,0.2284081,0.9735655,0,-0.6994711,0.7146609,0,-0.6994711,0.7146609,0,-0.6994711,0.7146609,0,-0.6994711,0.7146609,0,-0.6994711,0.7146609,0,-0.6994711,0.7146609,0,0.6994711,-0.7146609,0,0.6994711,-0.7146609,0,0.6994711,-0.7146609,0,0.6994711,-0.7146609,0,0.6994711,-0.7146609,0,0.6994711,-0.7146609,0.7071069,-0.7071066,0,0.7071069,-0.7071066,0,0.7071069,-0.7071066,0,0.7071069,-0.7071066,0,0.7071069,-0.7071066,0,0.7071069,-0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,-0.7071069,0.7071066,0,0,-0.1745714,0.9846445,0,-0.1745714,0.9846445,0,-0.1745714,0.9846445,0,-0.1745714,0.9846445,0,-0.1745714,0.9846445,0,-0.1745714,0.9846445,0,0.1745714,-0.9846445,0,0.1745714,-0.9846445,0,0.1745714,-0.9846445,0,0.1745714,-0.9846445,0,0.1745714,-0.9846445,0,0.1745714,-0.9846445,0.5994092,-0.8004428,0,0.5994092,-0.8004428,0,0.5994092,-0.8004428,0,0.5994092,-0.8004428,0,0.5994092,-0.8004428,0,0.5994092,-0.8004428,0,-0.5994092,0.8004428,0,-0.5994092,0.8004428,0,-0.5994092,0.8004428,0,-0.5994092,0.8004428,0,-0.5994092,0.8004428,0,-0.5994092,0.8004428,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *896 { + a: 6.034957,1.070341,6.034957,-0.4406888,4.460154,1.070341,4.460154,-0.4406888,4.460154,1.070341,6.034957,-0.4406888,6.034957,1.070341,4.460154,-0.4406888,4.460154,-0.2518934,6.034957,-0.2518934,4.460154,-1.109763,6.034957,-1.109763,4.460154,-1.109763,6.034957,-0.2518934,4.460154,-0.2518934,6.034957,-1.109763,5.101964,-0.7874817,5.101964,0.5459757,6.676767,-0.7874817,6.676767,0.5459757,6.676767,-0.7874817,5.101964,0.5459757,5.101964,-0.7874817,6.676767,0.5459757,-1.703724,0.005344984,-3.278527,0.005344981,-1.703724,3.78549,-3.278527,3.78549,-1.703724,3.78549,-3.278527,0.005344981,-1.703724,0.005344984,-3.278527,3.78549,-0.7510752,6.064087,-0.7510752,4.273993,-2.325878,6.064087,-2.325878,4.273993,-2.325878,6.064087,-0.7510752,4.273993,-0.7510752,6.064087,-2.325878,4.273993,-2.372865,6.604416,-2.372865,7.501806,-0.7980619,6.604416,-0.7980619,7.501806,-0.7980619,6.604416,-2.372865,7.501806,-2.372865,6.604416,-0.7980619,7.501806,7.145576,-0.6550399,5.570773,-0.6550399,7.145576,1.196255,5.570773,1.196255,7.145576,1.196255,5.570773,-0.6550399,7.145576,-0.6550399,5.570773,1.196255,8.350216,6.534651,6.775413,6.534651,8.350216,7.453155,6.775413,7.453155,8.350216,7.453155,6.775413,6.534651,8.350216,6.534651,6.775413,7.453155,7.145576,-0.491003,5.570773,-0.491003,7.145576,1.020027,5.570773,1.020027,7.145576,1.020027,5.570773,-0.491003,7.145576,-0.491003,5.570773,1.020027,-2.125546,5.447666,-3.70035,5.447666,-2.125546,9.192499,-3.70035,9.192499,-2.125546,9.192499,-3.70035,5.447666,-2.125546,5.447666,-3.70035,9.192499,-2.213714,7.010036,-2.213714,4.013823,-3.788517,7.010036,-3.788517,4.013823,-3.788517,7.010036,-2.213714,4.013823,-2.213714,7.010036,-3.788517,4.013823,-1.219884,4.911302,-2.794687,4.911302,-1.219884,7.283079,-2.794687,7.283079,-1.219884,7.283079,-2.794687,4.911302,-1.219884,4.911302,-2.794687,7.283079,5.570773,-1.190688,5.570773,-0.3328182,7.145576,-1.190688,7.145576,-0.3328182,7.145576,-1.190688,5.570773,-0.3328182,5.570773,-1.190688,7.145576,-0.3328182,-3.278527,5.14462,-3.278527,6.200376,-1.703724,5.14462,-1.703724,6.200376,-1.703724,5.14462,-3.278527,6.200376,-3.278527,5.14462,-1.703724,6.200376,6.775414,0.4852409,6.775414,3.038054,8.350217,0.485241,8.350217,3.038054,8.350217,0.485241,6.775414,3.038054,6.775414,0.4852409,8.350217,3.038054,-1.219884,9.117027,-1.219884,8.123247,-2.794687,9.117027,-2.794687,8.123247,-2.794687,9.117027,-1.219884,8.123247,-1.219884,9.117027,-2.794687,8.123247,6.775413,4.146266,6.775413,6.073338,8.350216,4.146266,8.350216,6.073338,8.350216,4.146266,6.775413,6.073338,6.775413,4.146266,8.350216,6.073338,-1.703724,3.691916,-3.278527,3.691916,-1.703724,6.396014,-3.278527,6.396014,-1.703724,6.396014,-3.278527,3.691916,-1.703724,3.691916,-3.278527,6.396014,-2.213714,4.198628,-2.213714,-0.03056486,-3.788517,4.198628,-3.788517,-0.03056486,-3.788517,4.198628,-2.213714,-0.03056486,-2.213714,4.198628,-3.788517,-0.03056486,-1.684068,0.4672183,-1.684068,3.730045,-0.1092649,0.4672183,-0.1092649,3.730045,-0.1092649,0.4672183,-1.684068,3.730045,-1.684068,0.4672183,-0.1092649,3.730045,6.676767,-1.380799,5.101964,-1.380799,6.676767,-0.5571207,5.101964,-0.5571207,6.676767,-0.5571207,5.101964,-1.380799,6.676767,-1.380799,5.101964,-0.5571207,-1.219884,0.4758329,-2.794687,0.4758329,-1.219884,3.73866,-2.794687,3.73866,-1.219884,3.73866,-2.794687,0.4758329,-1.219884,0.4758329,-2.794687,3.73866,7.708405,5.145622,7.708405,3.648712,6.133603,5.145622,6.133603,3.648712,6.133603,5.145622,7.708405,3.648712,7.708405,5.145622,6.133603,3.648712,6.034957,1.21144,6.034957,-0.6398557,4.460154,1.21144,4.460154,-0.6398557,4.460154,1.21144,6.034957,-0.6398557,6.034957,1.21144,4.460154,-0.6398557,7.840227,3.621644,6.265424,3.621644,7.840227,5.118553,6.265424,5.118553,7.840227,5.118553,6.265424,3.621644,7.840227,3.621644,6.265424,5.118553,-3.146707,3.713537,-3.146707,6.440823,-1.571903,3.713537,-1.571903,6.440823,-1.571903,3.713537,-3.146707,6.440823,-3.146707,3.713537,-1.571903,6.440823,-1.684068,4.879248,-1.684068,7.251025,-0.1092649,4.879248,-0.1092649,7.251025,-0.1092649,4.879248,-1.684068,7.251025,-1.684068,4.879248,-0.1092649,7.251025,-0.7980619,0.5791434,-2.372865,0.5791434,-0.7980619,2.906605,-2.372865,2.906605,-0.7980619,2.906605,-2.372865,0.5791434,-0.7980619,0.5791434,-2.372865,2.906605,5.101964,-1.155394,5.101964,0.07735758,6.676767,-1.155394,6.676767,0.07735758,6.676767,-1.155394,5.101964,0.07735758,5.101964,-1.155394,6.676767,0.07735758,8.26205,0.3465354,6.687246,0.3465354,8.26205,2.899349,6.687246,2.899349,8.26205,2.899349,6.687246,0.3465354,8.26205,0.3465354,6.687246,2.899349,8.26205,3.649314,6.687246,3.649314,8.26205,5.576385,6.687246,5.576385,8.26205,5.576385,6.687246,3.649314,8.26205,3.649314,6.687246,5.576385,6.723754,-0.7559635,5.148951,-0.7559635,6.723754,0.5774938,5.148951,0.5774938,6.723754,0.5774938,5.148951,-0.7559635,6.723754,-0.7559635,5.148951,0.5774938,-0.7980619,4.210496,-2.372865,4.210496,-0.7980619,6.00059,-2.372865,6.00059,-0.7980619,6.00059,-2.372865,4.210496,-0.7980619,4.210496,-2.372865,6.00059,-2.125546,0.04190506,-3.70035,0.04190506,-2.125546,5.407178,-3.70035,5.407178,-2.125546,5.407178,-3.70035,0.04190506,-2.125546,0.04190506,-3.70035,5.407178,-0.1092649,8.05339,-1.684068,8.05339,-0.1092649,9.04717,-1.684068,9.04717,-0.1092649,9.04717,-1.684068,8.05339,-0.1092649,8.05339,-1.684068,9.04717,-5.101964,2.470485,-5.101964,1.048908,-6.676767,2.470485,-6.676767,1.048908,-6.676767,2.470485,-5.101964,1.048908,-5.101964,2.470485,-6.676767,1.048908,-3.146707,0.001369014,-3.146707,3.817324,-1.571903,0.001369013,-1.571903,3.817324,-1.571903,0.001369013,-3.146707,3.817324,-3.146707,0.001369014,-1.571903,3.817324,-2.125546,8.237997,-3.70035,8.237997,-2.125546,9.51079,-3.70035,9.51079,-2.125546,9.51079,-3.70035,8.237997,-2.125546,8.237997,-3.70035,9.51079,6.687246,5.582555,6.687246,6.501059,8.26205,5.582555,8.26205,6.501059,8.26205,5.582555,6.687246,6.501059,6.687246,5.582555,8.26205,6.501059,7.840227,6.270466,7.840227,5.414463,6.265424,6.270466,6.265424,5.414463,6.265424,6.270466,7.840227,5.414463,7.840227,6.270466,6.265424,5.414463,3.70035,1.941728,2.125546,1.941728,3.70035,4.470399,2.125546,4.470399,3.70035,4.470399,2.125546,1.941728,3.70035,1.941728,2.125546,4.470399,6.723754,-0.4311054,6.723754,-1.254784,5.148951,-0.4311054,5.148951,-1.254784,5.148951,-0.4311054,6.723754,-1.254784,6.723754,-0.4311054,5.148951,-1.254784,-6.034957,3.747877,-6.034957,5.072154,-4.460154,3.747877,-4.460154,5.072154,-4.460154,3.747877,-6.034957,5.072154,-6.034957,3.747877,-4.460154,5.072154,-1.571903,5.168474,-3.146707,5.168474,-1.571903,6.228711,-3.146707,6.228711,-1.571903,6.228711,-3.146707,5.168474,-1.571903,5.168474,-3.146707,6.228711,-0.7510752,2.924663,-0.7510752,0.5972017,-2.325878,2.924663,-2.325878,0.5972017,-2.325878,2.924663,-0.7510752,0.5972017,-0.7510752,2.924663,-2.325878,0.5972017,7.708405,2.430967,7.708405,0.6046163,6.133603,2.430967,6.133603,0.6046163,6.133603,2.430967,7.708405,0.6046163,7.708405,2.430967,6.133603,0.6046163,-6.034957,0.7838759,-6.034957,2.295036,-4.460154,0.7838759,-4.460154,2.295036,-4.460154,0.7838759,-6.034957,2.295036,-6.034957,0.7838759,-4.460154,2.295036,3.278527,3.652469,3.278527,1.528945,1.703724,3.652469,1.703724,1.528945,1.703724,3.652469,3.278527,1.528945,3.278527,3.652469,1.703724,1.528945,6.133603,6.313688,7.708405,6.313688,6.133603,5.457685,7.708405,5.457685,6.133603,5.457685,7.708405,6.313688,6.133603,6.313688,7.708405,5.457685,-2.325878,7.61747,-0.7510752,7.61747,-2.325878,6.720081,-0.7510752,6.720081,-2.325878,6.720081,-0.7510752,7.61747,-2.325878,7.61747,-0.7510752,6.720081,3.278527,-0.02094373,1.703724,-0.02094374,3.278527,1.908494,1.703725,1.908494,3.278527,1.908494,1.703724,-0.02094374,3.278527,-0.02094373,1.703725,1.908494,3.70035,-0.1610693,2.125546,-0.1610693,3.70035,2.630674,2.125546,2.630674,3.70035,2.630674,2.125546,-0.1610693,3.70035,-0.1610693,2.125546,2.630674,6.723754,-1.06319,5.148951,-1.06319,6.723754,0.1695617,5.148951,0.1695617,6.723754,0.1695617,5.148951,-1.06319,6.723754,-1.06319,5.148951,0.1695617,-2.213714,6.673026,-2.213714,5.559472,-3.788517,6.673026,-3.788517,5.559472,-3.788517,6.673026,-2.213714,5.559472,-2.213714,6.673026,-3.788517,5.559472,7.840227,0.5964176,6.265424,0.5964176,7.840227,2.422768,6.265424,2.422768,7.840227,2.422768,6.265424,0.5964176,7.840227,0.5964176,6.265424,2.422768,-6.676767,5.336106,-5.101964,5.336106,-6.676767,3.806416,-5.101964,3.806416,-6.676767,3.806416,-5.101964,5.336106,-6.676767,5.336106,-5.101964,3.806416 + } + UVIndex: *672 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,123,121,122,124,126,125,125,127,124,128,130,129,131,129,130,132,134,133,133,135,132,136,138,137,139,137,138,140,142,141,141,143,140,144,146,145,147,145,146,148,150,149,149,151,148,152,154,153,155,153,154,156,158,157,157,159,156,160,162,161,163,161,162,164,166,165,165,167,164,168,170,169,171,169,170,172,174,173,173,175,172,176,178,177,179,177,178,180,182,181,181,183,180,184,186,185,187,185,186,188,190,189,189,191,188,192,194,193,195,193,194,196,198,197,197,199,196,200,202,201,203,201,202,204,206,205,205,207,204,208,210,209,211,209,210,212,214,213,213,215,212,216,218,217,219,217,218,220,222,221,221,223,220,224,226,225,227,225,226,228,230,229,229,231,228,232,234,233,235,233,234,236,238,237,237,239,236,240,242,241,243,241,242,244,246,245,245,247,244,248,250,249,251,249,250,252,254,253,253,255,252,256,258,257,259,257,258,260,262,261,261,263,260,264,266,265,267,265,266,268,270,269,269,271,268,272,274,273,275,273,274,276,278,277,277,279,276,280,282,281,283,281,282,284,286,285,285,287,284,288,290,289,291,289,290,292,294,293,293,295,292,296,298,297,299,297,298,300,302,301,301,303,300,304,306,305,307,305,306,308,310,309,309,311,308,312,314,313,315,313,314,316,318,317,317,319,316,320,322,321,323,321,322,324,326,325,325,327,324,328,330,329,331,329,330,332,334,333,333,335,332,336,338,337,339,337,338,340,342,341,341,343,340,344,346,345,347,345,346,348,350,349,349,351,348,352,354,353,355,353,354,356,358,357,357,359,356,360,362,361,363,361,362,364,366,365,365,367,364,368,370,369,371,369,370,372,374,373,373,375,372,376,378,377,379,377,378,380,382,381,381,383,380,384,386,385,387,385,386,388,390,389,389,391,388,392,394,393,395,393,394,396,398,397,397,399,396,400,402,401,403,401,402,404,406,405,405,407,404,408,410,409,411,409,410,412,414,413,413,415,412,416,418,417,419,417,418,420,422,421,421,423,420,424,426,425,427,425,426,428,430,429,429,431,428,432,434,433,435,433,434,436,438,437,437,439,436,440,442,441,443,441,442,444,446,445,445,447,444 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *224 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh grass_large, Model::RootNode + C: "OO",5395751848548387004,0 + + ;Geometry::, Model::Mesh grass_large + C: "OO",5526161818292330754,5395751848548387004 + + ;Material::grass, Model::Mesh grass_large + C: "OO",3024,5395751848548387004 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/grass_large.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/grass_large.fbx.import new file mode 100644 index 0000000..a98859a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/grass_large.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://7uakkfk18pdm" +path="res://.godot/imported/grass_large.fbx-e32512cba5e9b7e0a8a4dd72810e3048.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/grass_large.fbx" +dest_files=["res://.godot/imported/grass_large.fbx-e32512cba5e9b7e0a8a4dd72810e3048.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/grass_leafs.fbx b/assets/models/kenney_nature-kit/Models/FBX format/grass_leafs.fbx new file mode 100644 index 0000000..8d59466 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/grass_leafs.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 567 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "grass_leafs.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "grass_leafs.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4999269923487391991, "Model::grass_leafs", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5151350701295128350, "Geometry::", "Mesh" { + Vertices: *252 { + a: -0.2327772,0.432,-1.238818,-0.7294272,0.9119999,-0.8587199,-0.8102772,0.432,-0.2385591,-0.8102772,0.432,-0.2385591,-0.7294272,0.9119999,-0.8587199,-0.2327772,0.432,-1.238818,-0.2327772,0.432,-1.238818,-0.8102772,0.432,-0.2385591,-0.1802772,0,-1.147886,-0.7052772,0,-0.2385591,-0.1802772,0,-1.147886,-0.8102772,0.432,-0.2385591,-0.2327772,0.432,-1.238818,-0.7052772,0,-0.2385591,0.6062087,-1.804779E-15,0.1334806,-0.303118,-1.804779E-15,0.6584806,0.6971413,0.432,0.1859806,-0.303118,0.432,0.7634807,0.6971413,0.432,0.1859806,-0.303118,-1.804779E-15,0.6584806,0.6062087,-1.804779E-15,0.1334806,-0.303118,0.432,0.7634807,0.6971413,0.432,0.1859806,-0.303118,0.432,0.7634807,0.3170428,0.9119999,0.6826306,0.3170428,0.9119999,0.6826306,-0.303118,0.432,0.7634807,0.6971413,0.432,0.1859806,-1.11446,0.675,0.3405221,-0.114201,0.675,-0.2369779,-0.7343618,1.425,-0.1561279,-0.7343618,1.425,-0.1561279,-0.114201,0.675,-0.2369779,-1.11446,0.675,0.3405221,-1.023528,0,0.3930221,-0.114201,0,-0.1319779,-1.11446,0.675,0.3405221,-0.114201,0.675,-0.2369779,-1.11446,0.675,0.3405221,-0.114201,0,-0.1319779,-1.023528,0,0.3930221,-0.114201,0.675,-0.2369779,0.2301404,0.432,-0.8633107,1.2304,0.432,-0.2858107,0.8503011,0.9119999,-0.7824607,0.8503011,0.9119999,-0.7824607,1.2304,0.432,-0.2858107,0.2301404,0.432,-0.8633107,0.2301404,-1.804779E-15,-0.7583107,1.139467,-1.804779E-15,-0.2333107,0.2301404,0.432,-0.8633107,1.2304,0.432,-0.2858107,0.2301404,0.432,-0.8633107,1.139467,-1.804779E-15,-0.2333107,0.2301404,-1.804779E-15,-0.7583107,1.2304,0.432,-0.2858107,1.141224,1.425,0.2620954,0.9011621,0.675,-0.3154046,0.9011621,0.675,0.8395953,0.9011621,0.675,0.8395953,0.9011621,0.675,-0.3154046,1.141224,1.425,0.2620954,0.9011621,0.675,-0.3154046,0.8102295,0,-0.2629046,0.9011621,0.675,0.8395953,0.8102295,0,0.7870954,0.9011621,0.675,0.8395953,0.8102295,0,-0.2629046,0.9011621,0.675,-0.3154046,0.8102295,0,0.7870954,-0.05882578,0.675,1.334264,-1.059085,0.675,0.7567641,-0.6789866,1.425,1.253414,-0.6789866,1.425,1.253414,-1.059085,0.675,0.7567641,-0.05882578,0.675,1.334264,-0.05882578,0,1.229264,-0.9681524,0,0.7042641,-0.05882578,0.675,1.334264,-1.059085,0.675,0.7567641,-0.05882578,0.675,1.334264,-0.9681524,0,0.7042641,-0.05882578,0,1.229264,-1.059085,0.675,0.7567641 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,11,13,-11,14,16,-16,17,15,-17,18,20,-20,19,21,-19,22,24,-24,25,27,-27,28,30,-30,31,33,-33,34,36,-36,37,35,-37,38,40,-40,39,41,-39,42,44,-44,45,47,-47,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,61,-61,62,64,-64,65,63,-65,66,68,-68,67,69,-67,70,72,-72,73,75,-75,76,78,-78,79,77,-79,80,82,-82,81,83,-81 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: -0.8287554,-0.290206,-0.4784821,-0.8287554,-0.290206,-0.4784821,-0.7745565,-0.4473064,-0.4471904,0.8287554,0.290206,0.4784821,0.8287554,0.290206,0.4784821,0.7745565,0.4473064,0.4471904,-0.8287554,-0.290206,-0.4784821,-0.8474547,-0.2059786,-0.4892782,-0.8287554,-0.290206,-0.4784821,-0.8474547,-0.2059786,-0.4892782,-0.8287554,-0.290206,-0.4784821,-0.8474547,-0.2059786,-0.4892782,0.8474547,0.2059786,0.4892782,0.8287554,0.290206,0.4784821,0.8287554,0.290206,0.4784821,0.8287554,0.290206,0.4784821,0.8474547,0.2059786,0.4892782,0.8474547,0.2059786,0.4892782,0.4892783,-0.2059786,0.8474547,0.4784821,-0.290206,0.8287554,0.4892783,-0.2059786,0.8474547,0.4784821,-0.290206,0.8287554,0.4892783,-0.2059786,0.8474547,0.4784821,-0.290206,0.8287554,-0.4784821,0.290206,-0.8287554,-0.4892783,0.2059786,-0.8474547,-0.4892783,0.2059786,-0.8474547,-0.4892783,0.2059786,-0.8474547,-0.4784821,0.290206,-0.8287554,-0.4784821,0.290206,-0.8287554,0.4784821,-0.290206,0.8287554,0.4471904,-0.4473064,0.7745565,0.4784821,-0.290206,0.8287554,-0.4471904,0.4473064,-0.7745565,-0.4784821,0.290206,-0.8287554,-0.4784821,0.290206,-0.8287554,-0.4898641,-0.2003314,-0.8484694,-0.4762006,-0.3048474,-0.8248036,-0.4898641,-0.2003314,-0.8484694,0.4762006,0.3048474,0.8248036,0.4898641,0.2003314,0.8484694,0.4898641,0.2003314,0.8484694,-0.4955238,-0.133509,-0.8582724,-0.4898641,-0.2003314,-0.8484694,-0.4955238,-0.133509,-0.8582724,-0.4898641,-0.2003314,-0.8484694,-0.4955238,-0.133509,-0.8582724,-0.4898641,-0.2003314,-0.8484694,0.4898641,0.2003314,0.8484694,0.4955238,0.133509,0.8582724,0.4955238,0.133509,0.8582724,0.4955238,0.133509,0.8582724,0.4898641,0.2003314,0.8484694,0.4898641,0.2003314,0.8484694,0.4784821,-0.290206,-0.8287554,0.4471904,-0.4473064,-0.7745565,0.4784821,-0.290206,-0.8287554,-0.4471904,0.4473064,0.7745565,-0.4784821,0.290206,0.8287554,-0.4784821,0.290206,0.8287554,0.4892783,-0.2059786,-0.8474547,0.4784821,-0.290206,-0.8287554,0.4892783,-0.2059786,-0.8474547,0.4784821,-0.290206,-0.8287554,0.4892783,-0.2059786,-0.8474547,0.4784821,-0.290206,-0.8287554,-0.4784821,0.290206,0.8287554,-0.4892783,0.2059786,0.8474547,-0.4892783,0.2059786,0.8474547,-0.4892783,0.2059786,0.8474547,-0.4784821,0.290206,0.8287554,-0.4784821,0.290206,0.8287554,0.9524012,-0.3048474,0,0.9797282,-0.2003314,0,0.9797282,-0.2003314,0,-0.9797282,0.2003314,0,-0.9524012,0.3048474,0,-0.9797282,0.2003314,0,0.9797282,-0.2003314,0,0.9797282,-0.2003314,0,0.9910476,-0.133509,0,0.9910476,-0.133509,0,0.9910476,-0.133509,0,0.9797282,-0.2003314,0,-0.9797282,0.2003314,0,-0.9797282,0.2003314,0,-0.9910476,0.133509,0,-0.9910476,0.133509,0,-0.9910476,0.133509,0,-0.9797282,0.2003314,0,-0.4898641,-0.2003314,0.8484694,-0.4762006,-0.3048474,0.8248036,-0.4898641,-0.2003314,0.8484694,0.4762006,0.3048474,-0.8248036,0.4898641,0.2003314,-0.8484694,0.4898641,0.2003314,-0.8484694,-0.4955238,-0.133509,0.8582724,-0.4898641,-0.2003314,0.8484694,-0.4955238,-0.133509,0.8582724,-0.4898641,-0.2003314,0.8484694,-0.4955238,-0.133509,0.8582724,-0.4898641,-0.2003314,0.8484694,0.4898641,0.2003314,-0.8484694,0.4955238,0.133509,-0.8582724,0.4955238,0.133509,-0.8582724,0.4955238,0.133509,-0.8582724,0.4898641,0.2003314,-0.8484694,0.4898641,0.2003314,-0.8484694 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: -3.765589,2.966973,-1.491967,5.079903,0.7816549,2.966973,0.7816549,2.966973,-1.491967,5.079903,-3.765589,2.966973,-3.765589,2.330098,0.7816549,2.330098,-3.558896,0.5920405,0.574962,0.5920405,-3.558896,0.5920405,0.7816549,2.330098,-3.765589,2.330098,0.574962,0.5920405,1.804141,0.3395419,-2.329717,0.3395419,2.010834,2.077599,-2.53641,2.077599,2.010834,2.077599,-2.329717,0.3395419,1.804141,0.3395419,-2.53641,2.077599,2.010834,2.418643,-2.53641,2.418643,-0.2627882,4.531573,-0.2627882,4.531573,-2.53641,2.418643,2.010834,2.418643,4.470126,2.845832,-0.07711799,2.845832,2.196504,5.946159,2.196504,5.946159,-0.07711799,2.845832,4.470126,2.845832,4.263433,0.0900906,0.1295749,0.0900906,4.470126,2.771577,-0.07711799,2.771577,4.470126,2.771577,0.1295749,0.0900906,4.263433,0.0900906,-0.07711799,2.771577,0.9147558,3.040442,-3.632488,3.040442,-1.358866,5.153372,-1.358866,5.153372,-3.632488,3.040442,0.9147558,3.040442,0.7080629,0.6258721,-3.425795,0.6258721,0.9147558,2.36393,-3.632488,2.36393,0.9147558,2.36393,-3.425795,0.6258721,0.7080629,0.6258721,-3.632488,2.36393,-1.031872,6.712878,1.24175,3.61255,-3.305494,3.61255,-3.305494,3.61255,1.24175,3.61255,-1.031872,6.712878,1.24175,3.107364,1.035058,0.4258778,-3.305494,3.107364,-3.098801,0.4258778,-3.305494,3.107364,1.035058,0.4258778,1.24175,3.107364,-3.098801,0.4258778,2.425935,3.953112,-2.121309,3.953112,0.1523128,7.05344,0.1523128,7.05344,-2.121309,3.953112,2.425935,3.953112,2.219242,0.5750281,-1.914616,0.5750281,2.425935,3.256514,-2.121309,3.256514,2.425935,3.256514,-1.914616,0.5750281,2.219242,0.5750281,-2.121309,3.256514 + } + UVIndex: *108 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,11,13,10,14,16,15,17,15,16,18,20,19,19,21,18,22,24,23,25,27,26,28,30,29,31,33,32,34,36,35,37,35,36,38,40,39,39,41,38,42,44,43,45,47,46,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,61,60,62,64,63,65,63,64,66,68,67,67,69,66,70,72,71,73,75,74,76,78,77,79,77,78,80,82,81,81,83,80 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh grass_leafs, Model::RootNode + C: "OO",4999269923487391991,0 + + ;Geometry::, Model::Mesh grass_leafs + C: "OO",5151350701295128350,4999269923487391991 + + ;Material::grass, Model::Mesh grass_leafs + C: "OO",3024,4999269923487391991 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/grass_leafs.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/grass_leafs.fbx.import new file mode 100644 index 0000000..119cce5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/grass_leafs.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c662p18gqbncp" +path="res://.godot/imported/grass_leafs.fbx-0d1d8ff1be0208e8d9a6d41e1bb23f4a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/grass_leafs.fbx" +dest_files=["res://.godot/imported/grass_leafs.fbx-0d1d8ff1be0208e8d9a6d41e1bb23f4a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/grass_leafsLarge.fbx b/assets/models/kenney_nature-kit/Models/FBX format/grass_leafsLarge.fbx new file mode 100644 index 0000000..eac14ba --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/grass_leafsLarge.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 678 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "grass_leafsLarge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "grass_leafsLarge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5440951597020078385, "Model::grass_leafsLarge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5198092605826074334, "Geometry::", "Mesh" { + Vertices: *1008 { + a: 0.1621753,0,1.48938,1.071502,0,0.9643805,0.07124265,0.675,1.43688,1.071502,0.675,0.8593805,0.07124265,0.675,1.43688,1.071502,0,0.9643805,0.1621753,0,1.48938,1.071502,0.675,0.8593805,-0.9180695,0.432,-1.79509,-0.9705695,-1.804779E-15,-1.704158,-0.3405695,0.432,-0.794831,-0.4455695,-1.804779E-15,-0.794831,-0.3405695,0.432,-0.794831,-0.9705695,-1.804779E-15,-1.704158,-0.9180695,0.432,-1.79509,-0.4455695,-1.804779E-15,-0.794831,-1.366955,0,-1.908179,-0.3169548,0,-1.908179,-1.419455,0.675,-1.999111,-0.2644548,0.675,-1.999111,-1.419455,0.675,-1.999111,-0.3169548,0,-1.908179,-1.366955,0,-1.908179,-0.2644548,0.675,-1.999111,-1.389861,0.432,-2.328349,-1.886511,0.9119999,-1.94825,-1.967361,0.432,-1.328089,-1.967361,0.432,-1.328089,-1.886511,0.9119999,-1.94825,-1.389861,0.432,-2.328349,-0.07307259,1.425,1.258454,-0.3131348,0.675,0.6809538,-0.3131348,0.675,1.835954,-0.3131348,0.675,1.835954,-0.3131348,0.675,0.6809538,-0.07307259,1.425,1.258454,-1.419455,0.675,-1.999111,-0.2644548,0.675,-1.999111,-0.8419548,1.425,-2.239173,-0.8419548,1.425,-2.239173,-0.2644548,0.675,-1.999111,-1.419455,0.675,-1.999111,-2.328757,0.675,1.33688,-1.328498,0.675,0.7593805,-1.948659,1.425,0.8402305,-1.948659,1.425,0.8402305,-1.328498,0.675,0.7593805,-2.328757,0.675,1.33688,2.03107,0.9119999,-0.249476,2.111919,0.432,-0.8696368,1.53442,0.432,0.1306226,1.53442,0.432,0.1306226,2.111919,0.432,-0.8696368,2.03107,0.9119999,-0.249476,1.360468,0,-2.33746,2.269795,0,-1.81246,1.360468,0.675,-2.44246,2.360728,0.675,-1.86496,1.360468,0.675,-2.44246,2.269795,0,-1.81246,1.360468,0,-2.33746,2.360728,0.675,-1.86496,1.360468,0.675,-2.44246,2.360728,0.675,-1.86496,1.980629,1.425,-2.36161,1.980629,1.425,-2.36161,2.360728,0.675,-1.86496,1.360468,0.675,-2.44246,-1.341028,0.675,-0.9837481,-0.763528,0.675,0.01651128,-1.236028,0,-0.9837481,-0.711028,0,-0.07442138,-1.236028,0,-0.9837481,-0.763528,0.675,0.01651128,-1.341028,0.675,-0.9837481,-0.711028,0,-0.07442138,-0.4214195,0.9119999,-1.414992,-0.9180695,0.432,-1.79509,-0.3405695,0.432,-0.794831,-0.3405695,0.432,-0.794831,-0.9180695,0.432,-1.79509,-0.4214195,0.9119999,-1.414992,0.604501,0.432,-1.294177,1.60476,0.432,-1.871677,0.9845995,0.9119999,-1.790827,0.9845995,0.9119999,-1.790827,1.60476,0.432,-1.871677,0.604501,0.432,-1.294177,-1.342609,0,-0.3926719,-2.251936,0,-0.9176719,-1.342609,0.432,-0.2876719,-2.342869,0.432,-0.8651718,-1.342609,0.432,-0.2876719,-2.251936,0,-0.9176719,-1.342609,0,-0.3926719,-2.342869,0.432,-0.8651718,-1.273123,0,2.225623,-2.182449,0,1.700623,-1.273123,0.675,2.330622,-2.273382,0.675,1.753123,-1.273123,0.675,2.330622,-2.182449,0,1.700623,-1.273123,0,2.225623,-2.273382,0.675,1.753123,1.126877,0,2.325623,0.2175505,0,1.800622,1.126877,0.675,2.430622,0.1266179,0.675,1.853123,1.126877,0.675,2.430622,0.2175505,0,1.800622,1.126877,0,2.325623,0.1266179,0.675,1.853123,-0.9841566,0.432,0.1330477,0.01610271,0.432,0.7105476,-0.3639959,0.9119999,0.2138977,-0.3639959,0.9119999,0.2138977,0.01610271,0.432,0.7105476,-0.9841566,0.432,0.1330477,1.791912,-1.804779E-15,1.229839,0.882585,-1.804779E-15,1.754839,1.882844,0.432,1.282339,0.882585,0.432,1.859839,1.882844,0.432,1.282339,0.882585,-1.804779E-15,1.754839,1.791912,-1.804779E-15,1.229839,0.882585,0.432,1.859839,1.126877,0.675,2.430622,0.1266179,0.675,1.853123,0.5067164,1.425,2.349772,0.5067164,1.425,2.349772,0.1266179,0.675,1.853123,1.126877,0.675,2.430622,0.9529257,0.432,-0.14246,0.3754258,0.432,0.8577994,1.005426,0,-0.05152737,0.4804258,0,0.8577994,1.005426,0,-0.05152737,0.3754258,0.432,0.8577994,0.9529257,0.432,-0.14246,0.4804258,0,0.8577994,-1.447074,0.432,-0.24246,-1.943724,0.9119999,0.1376385,-2.024574,0.432,0.7577993,-2.024574,0.432,0.7577993,-1.943724,0.9119999,0.1376385,-1.447074,0.432,-0.24246,-2.237825,0,1.389381,-1.328498,0,0.8643805,-2.328757,0.675,1.33688,-1.328498,0.675,0.7593805,-2.328757,0.675,1.33688,-1.328498,0,0.8643805,-2.237825,0,1.389381,-1.328498,0.675,0.7593805,0.4004802,0.675,-1.947791,0.1604179,1.425,-1.370291,0.4004802,0.675,-0.7927912,0.4004802,0.675,-0.7927912,0.1604179,1.425,-1.370291,0.4004802,0.675,-1.947791,2.086865,0.675,0.7809538,1.995932,0,0.8334538,2.086865,0.675,1.935954,1.995932,0,1.883454,2.086865,0.675,1.935954,1.995932,0,0.8334538,2.086865,0.675,0.7809538,1.995932,0,1.883454,-0.5171556,0.432,1.182339,-1.517415,0.432,1.759839,-0.8972541,0.9119999,1.678989,-0.8972541,0.9119999,1.678989,-1.517415,0.432,1.759839,-0.5171556,0.432,1.182339,0.04936397,1.425,-0.4189625,0.130214,0.675,-1.039123,-0.447286,0.675,-0.03886394,-0.447286,0.675,-0.03886394,0.130214,0.675,-1.039123,0.04936397,1.425,-0.4189625,2.111919,0.432,-0.8696368,2.00692,0,-0.8696368,1.53442,0.432,0.1306226,1.48192,0,0.03968988,1.53442,0.432,0.1306226,2.00692,0,-0.8696368,2.111919,0.432,-0.8696368,1.48192,0,0.03968988,-1.342609,0.432,-0.2876719,-2.342869,0.432,-0.8651718,-1.96277,0.9119999,-0.3685219,-1.96277,0.9119999,-0.3685219,-2.342869,0.432,-0.8651718,-1.342609,0.432,-0.2876719,1.071502,0.432,-0.2448852,0.07124265,0.432,-0.8223852,0.4513412,0.9119999,-0.3257352,0.4513412,0.9119999,-0.3257352,0.07124265,0.432,-0.8223852,1.071502,0.432,-0.2448852,-1.389861,0.432,-2.328349,-1.967361,0.432,-1.328089,-1.337361,-1.804779E-15,-2.237416,-1.862361,-1.804779E-15,-1.328089,-1.337361,-1.804779E-15,-2.237416,-1.967361,0.432,-1.328089,-1.389861,0.432,-2.328349,-1.862361,-1.804779E-15,-1.328089,1.071502,-1.804779E-15,-0.3498852,0.1621753,-1.804779E-15,-0.8748852,1.071502,0.432,-0.2448852,0.07124265,0.432,-0.8223852,1.071502,0.432,-0.2448852,0.1621753,-1.804779E-15,-0.8748852,1.071502,-1.804779E-15,-0.3498852,0.07124265,0.432,-0.8223852,0.9529257,0.432,-0.14246,0.4562758,0.9119999,0.2376385,0.3754258,0.432,0.8577994,0.3754258,0.432,0.8577994,0.4562758,0.9119999,0.2376385,0.9529257,0.432,-0.14246,-0.3131348,0.675,0.6809538,-0.4040675,0,0.7334538,-0.3131348,0.675,1.835954,-0.4040675,0,1.783454,-0.3131348,0.675,1.835954,-0.4040675,0,0.7334538,-0.3131348,0.675,0.6809538,-0.4040675,0,1.783454,-1.447074,0.432,-0.24246,-2.024574,0.432,0.7577993,-1.394574,0,-0.1515274,-1.919574,0,0.7577993,-1.394574,0,-0.1515274,-2.024574,0.432,0.7577993,-1.447074,0.432,-0.24246,-1.919574,0,0.7577993,2.32517,0,-1.501218,1.415843,0,-0.976218,2.416103,0.675,-1.448718,1.415843,0.675,-0.871218,2.416103,0.675,-1.448718,1.415843,0,-0.976218,2.32517,0,-1.501218,1.415843,0.675,-0.871218,0.02521398,0,-1.039123,-0.499786,0,-0.1297966,0.130214,0.675,-1.039123,-0.447286,0.675,-0.03886394,0.130214,0.675,-1.039123,-0.499786,0,-0.1297966,0.02521398,0,-1.039123,-0.447286,0.675,-0.03886394,2.416103,0.675,-1.448718,1.415843,0.675,-0.871218,2.036004,1.425,-0.952068,2.036004,1.425,-0.952068,1.415843,0.675,-0.871218,2.416103,0.675,-1.448718,2.326927,1.425,1.358454,2.086865,0.675,0.7809538,2.086865,0.675,1.935954,2.086865,0.675,1.935954,2.086865,0.675,0.7809538,2.326927,1.425,1.358454,-1.341028,0.675,-0.9837481,-1.260178,1.425,-0.3635873,-0.763528,0.675,0.01651128,-0.763528,0.675,0.01651128,-1.260178,1.425,-0.3635873,-1.341028,0.675,-0.9837481,0.6954336,-1.804779E-15,-1.241677,1.60476,-1.804779E-15,-1.766677,0.604501,0.432,-1.294177,1.60476,0.432,-1.871677,0.604501,0.432,-1.294177,1.60476,-1.804779E-15,-1.766677,0.6954336,-1.804779E-15,-1.241677,1.60476,0.432,-1.871677,-0.6080883,-1.804779E-15,1.129839,-1.517415,-1.804779E-15,1.654839,-0.5171556,0.432,1.182339,-1.517415,0.432,1.759839,-0.5171556,0.432,1.182339,-1.517415,-1.804779E-15,1.654839,-0.6080883,-1.804779E-15,1.129839,-1.517415,0.432,1.759839,0.07124265,0.675,1.43688,1.071502,0.675,0.8593805,0.4513412,1.425,0.9402305,0.4513412,1.425,0.9402305,1.071502,0.675,0.8593805,0.07124265,0.675,1.43688,0.4004802,0.675,-1.947791,0.4004802,0.675,-0.7927912,0.4914128,0,-1.895291,0.4914128,0,-0.8452913,0.4914128,0,-1.895291,0.4004802,0.675,-0.7927912,0.4004802,0.675,-1.947791,0.4914128,0,-0.8452913,-0.9841566,-1.804779E-15,0.2380477,-0.07482997,-1.804779E-15,0.7630476,-0.9841566,0.432,0.1330477,0.01610271,0.432,0.7105476,-0.9841566,0.432,0.1330477,-0.07482997,-1.804779E-15,0.7630476,-0.9841566,-1.804779E-15,0.2380477,0.01610271,0.432,0.7105476,1.415843,0.432,0.2330477,2.416103,0.432,0.8105476,2.036004,0.9119999,0.3138977,2.036004,0.9119999,0.3138977,2.416103,0.432,0.8105476,1.415843,0.432,0.2330477,1.882844,0.432,1.282339,0.882585,0.432,1.859839,1.502746,0.9119999,1.778989,1.502746,0.9119999,1.778989,0.882585,0.432,1.859839,1.882844,0.432,1.282339,-1.273123,0.675,2.330622,-2.273382,0.675,1.753123,-1.893284,1.425,2.249773,-1.893284,1.425,2.249773,-2.273382,0.675,1.753123,-1.273123,0.675,2.330622,1.415843,-1.804779E-15,0.3380477,2.32517,-1.804779E-15,0.8630477,1.415843,0.432,0.2330477,2.416103,0.432,0.8105476,1.415843,0.432,0.2330477,2.32517,-1.804779E-15,0.8630477,1.415843,-1.804779E-15,0.3380477,2.416103,0.432,0.8105476 + } + PolygonVertexIndex: *432 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,29,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,50,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,59,61,-59,62,64,-64,65,67,-67,68,70,-70,71,69,-71,72,74,-74,73,75,-73,76,78,-78,79,81,-81,82,84,-84,85,87,-87,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,117,-117,118,120,-120,121,119,-121,122,124,-124,123,125,-123,126,128,-128,129,131,-131,132,134,-134,135,133,-135,136,138,-138,137,139,-137,140,142,-142,143,145,-145,146,148,-148,149,147,-149,150,152,-152,151,153,-151,154,156,-156,157,159,-159,160,162,-162,163,161,-163,164,166,-166,165,167,-165,168,170,-170,171,173,-173,174,176,-176,177,179,-179,180,182,-182,183,181,-183,184,186,-186,185,187,-185,188,190,-190,191,193,-193,194,196,-196,197,199,-199,200,202,-202,203,201,-203,204,206,-206,205,207,-205,208,210,-210,211,209,-211,212,214,-214,213,215,-213,216,218,-218,219,221,-221,222,224,-224,225,223,-225,226,228,-228,227,229,-227,230,232,-232,233,231,-233,234,236,-236,235,237,-235,238,240,-240,241,239,-241,242,244,-244,243,245,-243,246,248,-248,249,247,-249,250,252,-252,251,253,-251,254,256,-256,257,259,-259,260,262,-262,263,265,-265,266,268,-268,269,271,-271,272,274,-274,275,273,-275,276,278,-278,277,279,-277,280,282,-282,283,281,-283,284,286,-286,285,287,-285,288,290,-290,291,293,-293,294,296,-296,297,295,-297,298,300,-300,299,301,-299,302,304,-304,305,303,-305,306,308,-308,307,309,-307,310,312,-312,313,315,-315,316,318,-318,319,321,-321,322,324,-324,325,327,-327,328,330,-330,331,329,-331,332,334,-334,333,335,-333 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1296 { + a: -0.4955238,-0.133509,-0.8582724,-0.4898641,-0.2003314,-0.8484694,-0.4955238,-0.133509,-0.8582724,-0.4898641,-0.2003314,-0.8484694,-0.4955238,-0.133509,-0.8582724,-0.4898641,-0.2003314,-0.8484694,0.4898641,0.2003314,0.8484694,0.4955238,0.133509,0.8582724,0.4955238,0.133509,0.8582724,0.4955238,0.133509,0.8582724,0.4898641,0.2003314,0.8484694,0.4898641,0.2003314,0.8484694,0.8287554,-0.290206,-0.4784821,0.8287554,-0.290206,-0.4784821,0.8474547,-0.2059786,-0.4892782,0.8474547,-0.2059786,-0.4892782,0.8474547,-0.2059786,-0.4892782,0.8287554,-0.290206,-0.4784821,-0.8287554,0.290206,0.4784821,-0.8287554,0.290206,0.4784821,-0.8474547,0.2059786,0.4892782,-0.8474547,0.2059786,0.4892782,-0.8474547,0.2059786,0.4892782,-0.8287554,0.290206,0.4784821,0,-0.133509,-0.9910476,0,-0.2003314,-0.9797282,0,-0.133509,-0.9910476,0,-0.2003314,-0.9797282,0,-0.133509,-0.9910476,0,-0.2003314,-0.9797282,0,0.2003314,0.9797282,0,0.133509,0.9910476,0,0.133509,0.9910476,0,0.133509,0.9910476,0,0.2003314,0.9797282,0,0.2003314,0.9797282,-0.8287553,-0.290206,-0.4784822,-0.8287553,-0.290206,-0.4784822,-0.7745565,-0.4473064,-0.4471904,0.8287553,0.290206,0.4784822,0.8287553,0.290206,0.4784822,0.7745565,0.4473064,0.4471904,0.9524012,-0.3048474,0,0.9797282,-0.2003314,0,0.9797282,-0.2003314,0,-0.9797282,0.2003314,0,-0.9524012,0.3048474,0,-0.9797282,0.2003314,0,0,-0.2003314,-0.9797282,0,-0.3048474,-0.9524012,0,-0.2003314,-0.9797282,0,0.3048474,0.9524012,0,0.2003314,0.9797282,0,0.2003314,0.9797282,-0.4898641,-0.2003314,-0.8484694,-0.4762006,-0.3048474,-0.8248036,-0.4898641,-0.2003314,-0.8484694,0.4762006,0.3048474,0.8248036,0.4898641,0.2003314,0.8484694,0.4898641,0.2003314,0.8484694,0.7745565,-0.4473064,0.4471904,0.8287554,-0.290206,0.4784821,0.8287554,-0.290206,0.4784821,-0.8287554,0.290206,-0.4784821,-0.7745565,0.4473064,-0.4471904,-0.8287554,0.290206,-0.4784821,0.4955238,-0.133509,-0.8582724,0.4898641,-0.2003314,-0.8484694,0.4955238,-0.133509,-0.8582724,0.4898641,-0.2003314,-0.8484694,0.4955238,-0.133509,-0.8582724,0.4898641,-0.2003314,-0.8484694,-0.4898641,0.2003314,0.8484694,-0.4955238,0.133509,0.8582724,-0.4955238,0.133509,0.8582724,-0.4955238,0.133509,0.8582724,-0.4898641,0.2003314,0.8484694,-0.4898641,0.2003314,0.8484694,0.4898641,-0.2003314,-0.8484694,0.4762006,-0.3048474,-0.8248036,0.4898641,-0.2003314,-0.8484694,-0.4762006,0.3048474,0.8248036,-0.4898641,0.2003314,0.8484694,-0.4898641,0.2003314,0.8484694,-0.8484694,-0.2003314,0.4898641,-0.8582724,-0.1335091,0.4955238,-0.8484694,-0.2003314,0.4898641,-0.8582724,-0.1335091,0.4955238,-0.8484694,-0.2003314,0.4898641,-0.8582724,-0.1335091,0.4955238,0.8582724,0.1335091,-0.4955238,0.8484694,0.2003314,-0.4898641,0.8484694,0.2003314,-0.4898641,0.8484694,0.2003314,-0.4898641,0.8582724,0.1335091,-0.4955238,0.8582724,0.1335091,-0.4955238,0.7745565,-0.4473064,-0.4471904,0.8287554,-0.290206,-0.4784821,0.8287554,-0.290206,-0.4784821,-0.8287554,0.290206,0.4784821,-0.7745565,0.4473064,0.4471904,-0.8287554,0.290206,0.4784821,-0.4784821,-0.290206,-0.8287554,-0.4471904,-0.4473064,-0.7745565,-0.4784821,-0.290206,-0.8287554,0.4471904,0.4473064,0.7745565,0.4784821,0.290206,0.8287554,0.4784821,0.290206,0.8287554,-0.4892783,-0.2059786,0.8474547,-0.4784821,-0.290206,0.8287554,-0.4892783,-0.2059786,0.8474547,-0.4784821,-0.290206,0.8287554,-0.4892783,-0.2059786,0.8474547,-0.4784821,-0.290206,0.8287554,0.4784821,0.290206,-0.8287554,0.4892783,0.2059786,-0.8474547,0.4892783,0.2059786,-0.8474547,0.4892783,0.2059786,-0.8474547,0.4784821,0.290206,-0.8287554,0.4784821,0.290206,-0.8287554,-0.4955238,-0.133509,0.8582724,-0.4898641,-0.2003314,0.8484694,-0.4955238,-0.133509,0.8582724,-0.4898641,-0.2003314,0.8484694,-0.4955238,-0.133509,0.8582724,-0.4898641,-0.2003314,0.8484694,0.4898641,0.2003314,-0.8484694,0.4955238,0.133509,-0.8582724,0.4955238,0.133509,-0.8582724,0.4955238,0.133509,-0.8582724,0.4898641,0.2003314,-0.8484694,0.4898641,0.2003314,-0.8484694,-0.4955238,-0.133509,0.8582724,-0.4898641,-0.2003314,0.8484694,-0.4955238,-0.133509,0.8582724,-0.4898641,-0.2003314,0.8484694,-0.4955238,-0.133509,0.8582724,-0.4898641,-0.2003314,0.8484694,0.4898641,0.2003314,-0.8484694,0.4955238,0.133509,-0.8582724,0.4955238,0.133509,-0.8582724,0.4955238,0.133509,-0.8582724,0.4898641,0.2003314,-0.8484694,0.4898641,0.2003314,-0.8484694,0.4784821,-0.290206,-0.8287554,0.4471904,-0.4473064,-0.7745565,0.4784821,-0.290206,-0.8287554,-0.4471904,0.4473064,0.7745565,-0.4784821,0.290206,0.8287554,-0.4784821,0.290206,0.8287554,0.4892783,-0.2059786,0.8474547,0.4784821,-0.290206,0.8287554,0.4892783,-0.2059786,0.8474547,0.4784821,-0.290206,0.8287554,0.4892783,-0.2059786,0.8474547,0.4784821,-0.290206,0.8287554,-0.4784821,0.290206,-0.8287554,-0.4892783,0.2059786,-0.8474547,-0.4892783,0.2059786,-0.8474547,-0.4892783,0.2059786,-0.8474547,-0.4784821,0.290206,-0.8287554,-0.4784821,0.290206,-0.8287554,-0.4898641,-0.2003314,0.8484694,-0.4762006,-0.3048474,0.8248036,-0.4898641,-0.2003314,0.8484694,0.4762006,0.3048474,-0.8248036,0.4898641,0.2003314,-0.8484694,0.4898641,0.2003314,-0.8484694,-0.8287554,-0.290206,-0.4784821,-0.8474547,-0.2059786,-0.4892782,-0.8287554,-0.290206,-0.4784821,-0.8474547,-0.2059786,-0.4892782,-0.8287554,-0.290206,-0.4784821,-0.8474547,-0.2059786,-0.4892782,0.8474547,0.2059786,0.4892782,0.8287554,0.290206,0.4784821,0.8287554,0.290206,0.4784821,0.8287554,0.290206,0.4784821,0.8474547,0.2059786,0.4892782,0.8474547,0.2059786,0.4892782,-0.8287554,-0.290206,-0.4784821,-0.8287554,-0.290206,-0.4784821,-0.7745565,-0.4473064,-0.4471904,0.8287554,0.290206,0.4784821,0.8287554,0.290206,0.4784821,0.7745565,0.4473064,0.4471904,-0.4955238,-0.133509,-0.8582724,-0.4898641,-0.2003314,-0.8484694,-0.4955238,-0.133509,-0.8582724,-0.4898641,-0.2003314,-0.8484694,-0.4955238,-0.133509,-0.8582724,-0.4898641,-0.2003314,-0.8484694,0.4898641,0.2003314,0.8484694,0.4955238,0.133509,0.8582724,0.4955238,0.133509,0.8582724,0.4955238,0.133509,0.8582724,0.4898641,0.2003314,0.8484694,0.4898641,0.2003314,0.8484694,-0.9797282,-0.2003314,0,-0.9797282,-0.2003314,0,-0.9524012,-0.3048474,0,0.9797282,0.2003314,0,0.9797282,0.2003314,0,0.9524012,0.3048474,0,0.9797282,-0.2003314,0,0.9797282,-0.2003314,0,0.9910476,-0.133509,0,0.9910476,-0.133509,0,0.9910476,-0.133509,0,0.9797282,-0.2003314,0,-0.9797282,0.2003314,0,-0.9797282,0.2003314,0,-0.9910476,0.133509,0,-0.9910476,0.133509,0,-0.9910476,0.133509,0,-0.9797282,0.2003314,0,0.4784821,-0.290206,0.8287554,0.4471904,-0.4473064,0.7745565,0.4784821,-0.290206,0.8287554,-0.4471904,0.4473064,-0.7745565,-0.4784821,0.290206,-0.8287554,-0.4784821,0.290206,-0.8287554,0.8248036,-0.3048474,0.4762006,0.8484694,-0.2003314,0.4898641,0.8484694,-0.2003314,0.4898641,-0.8484694,0.2003314,-0.4898641,-0.8248036,0.3048474,-0.4762006,-0.8484694,0.2003314,-0.4898641,0.8287554,-0.290206,0.4784821,0.8287554,-0.290206,0.4784821,0.8474547,-0.2059786,0.4892782,0.8474547,-0.2059786,0.4892782,0.8474547,-0.2059786,0.4892782,0.8287554,-0.290206,0.4784821,-0.8287554,0.290206,-0.4784821,-0.8287554,0.290206,-0.4784821,-0.8474547,0.2059786,-0.4892782,-0.8474547,0.2059786,-0.4892782,-0.8474547,0.2059786,-0.4892782,-0.8287554,0.290206,-0.4784821,-0.4784821,-0.290206,0.8287554,-0.4471904,-0.4473064,0.7745565,-0.4784821,-0.290206,0.8287554,0.4471904,0.4473064,-0.7745565,0.4784821,0.290206,-0.8287554,0.4784821,0.290206,-0.8287554,-0.4784821,-0.290206,0.8287554,-0.4471904,-0.4473064,0.7745565,-0.4784821,-0.290206,0.8287554,0.4471904,0.4473064,-0.7745565,0.4784821,0.290206,-0.8287554,0.4784821,0.290206,-0.8287554,-0.8287553,-0.290206,-0.4784822,-0.8474547,-0.2059786,-0.4892783,-0.8287553,-0.290206,-0.4784822,-0.8474547,-0.2059786,-0.4892783,-0.8287553,-0.290206,-0.4784822,-0.8474547,-0.2059786,-0.4892783,0.8474547,0.2059786,0.4892783,0.8287553,0.290206,0.4784822,0.8287553,0.290206,0.4784822,0.8287553,0.290206,0.4784822,0.8474547,0.2059786,0.4892783,0.8474547,0.2059786,0.4892783,-0.4892783,-0.2059786,0.8474547,-0.4784821,-0.290206,0.8287554,-0.4892783,-0.2059786,0.8474547,-0.4784821,-0.290206,0.8287554,-0.4892783,-0.2059786,0.8474547,-0.4784821,-0.290206,0.8287554,0.4784821,0.290206,-0.8287554,0.4892783,0.2059786,-0.8474547,0.4892783,0.2059786,-0.8474547,0.4892783,0.2059786,-0.8474547,0.4784821,0.290206,-0.8287554,0.4784821,0.290206,-0.8287554,-0.8287554,-0.290206,-0.4784821,-0.8287554,-0.290206,-0.4784821,-0.7745565,-0.4473064,-0.4471904,0.8287554,0.290206,0.4784821,0.8287554,0.290206,0.4784821,0.7745565,0.4473064,0.4471904,0.9797282,-0.2003314,0,0.9797282,-0.2003314,0,0.9910476,-0.133509,0,0.9910476,-0.133509,0,0.9910476,-0.133509,0,0.9797282,-0.2003314,0,-0.9797282,0.2003314,0,-0.9797282,0.2003314,0,-0.9910476,0.133509,0,-0.9910476,0.133509,0,-0.9910476,0.133509,0,-0.9797282,0.2003314,0,-0.8287554,-0.290206,-0.4784821,-0.8474547,-0.2059786,-0.4892782,-0.8287554,-0.290206,-0.4784821,-0.8474547,-0.2059786,-0.4892782,-0.8287554,-0.290206,-0.4784821,-0.8474547,-0.2059786,-0.4892782,0.8474547,0.2059786,0.4892782,0.8287554,0.290206,0.4784821,0.8287554,0.290206,0.4784821,0.8287554,0.290206,0.4784821,0.8474547,0.2059786,0.4892782,0.8474547,0.2059786,0.4892782,0.4955238,-0.133509,0.8582724,0.4898641,-0.2003314,0.8484694,0.4955238,-0.133509,0.8582724,0.4898641,-0.2003314,0.8484694,0.4955238,-0.133509,0.8582724,0.4898641,-0.2003314,0.8484694,-0.4898641,0.2003314,-0.8484694,-0.4955238,0.133509,-0.8582724,-0.4955238,0.133509,-0.8582724,-0.4955238,0.133509,-0.8582724,-0.4898641,0.2003314,-0.8484694,-0.4898641,0.2003314,-0.8484694,0.8582724,-0.1335091,0.4955238,0.8484694,-0.2003314,0.4898641,0.8582724,-0.1335091,0.4955238,0.8484694,-0.2003314,0.4898641,0.8582724,-0.1335091,0.4955238,0.8484694,-0.2003314,0.4898641,-0.8484694,0.2003314,-0.4898641,-0.8582724,0.1335091,-0.4955238,-0.8582724,0.1335091,-0.4955238,-0.8582724,0.1335091,-0.4955238,-0.8484694,0.2003314,-0.4898641,-0.8484694,0.2003314,-0.4898641,0.4898641,-0.2003314,0.8484694,0.4762006,-0.3048474,0.8248036,0.4898641,-0.2003314,0.8484694,-0.4762006,0.3048474,-0.8248036,-0.4898641,0.2003314,-0.8484694,-0.4898641,0.2003314,-0.8484694,0.9524012,-0.3048474,0,0.9797282,-0.2003314,0,0.9797282,-0.2003314,0,-0.9797282,0.2003314,0,-0.9524012,0.3048474,0,-0.9797282,0.2003314,0,-0.8484694,-0.2003314,0.4898641,-0.8484694,-0.2003314,0.4898641,-0.8248037,-0.3048474,0.4762006,0.8484694,0.2003314,-0.4898641,0.8484694,0.2003314,-0.4898641,0.8248037,0.3048474,-0.4762006,-0.4892783,-0.2059786,-0.8474547,-0.4784821,-0.290206,-0.8287554,-0.4892783,-0.2059786,-0.8474547,-0.4784821,-0.290206,-0.8287554,-0.4892783,-0.2059786,-0.8474547,-0.4784821,-0.290206,-0.8287554,0.4784821,0.290206,0.8287554,0.4892783,0.2059786,0.8474547,0.4892783,0.2059786,0.8474547,0.4892783,0.2059786,0.8474547,0.4784821,0.290206,0.8287554,0.4784821,0.290206,0.8287554,0.4892783,-0.2059786,0.8474547,0.4784821,-0.290206,0.8287554,0.4892783,-0.2059786,0.8474547,0.4784821,-0.290206,0.8287554,0.4892783,-0.2059786,0.8474547,0.4784821,-0.290206,0.8287554,-0.4784821,0.290206,-0.8287554,-0.4892783,0.2059786,-0.8474547,-0.4892783,0.2059786,-0.8474547,-0.4892783,0.2059786,-0.8474547,-0.4784821,0.290206,-0.8287554,-0.4784821,0.290206,-0.8287554,-0.4898641,-0.2003314,-0.8484694,-0.4762006,-0.3048474,-0.8248036,-0.4898641,-0.2003314,-0.8484694,0.4762006,0.3048474,0.8248036,0.4898641,0.2003314,0.8484694,0.4898641,0.2003314,0.8484694,-0.9797282,-0.2003314,0,-0.9910476,-0.133509,0,-0.9797282,-0.2003314,0,-0.9910476,-0.133509,0,-0.9797282,-0.2003314,0,-0.9910476,-0.133509,0,0.9910476,0.133509,0,0.9797282,0.2003314,0,0.9797282,0.2003314,0,0.9797282,0.2003314,0,0.9910476,0.133509,0,0.9910476,0.133509,0,0.4892783,-0.2059786,-0.8474547,0.4784821,-0.290206,-0.8287554,0.4892783,-0.2059786,-0.8474547,0.4784821,-0.290206,-0.8287554,0.4892783,-0.2059786,-0.8474547,0.4784821,-0.290206,-0.8287554,-0.4784821,0.290206,0.8287554,-0.4892783,0.2059786,0.8474547,-0.4892783,0.2059786,0.8474547,-0.4892783,0.2059786,0.8474547,-0.4784821,0.290206,0.8287554,-0.4784821,0.290206,0.8287554,0.4784821,-0.290206,-0.8287554,0.4471904,-0.4473064,-0.7745565,0.4784821,-0.290206,-0.8287554,-0.4471904,0.4473064,0.7745565,-0.4784821,0.290206,0.8287554,-0.4784821,0.290206,0.8287554,0.4784821,-0.290206,0.8287554,0.4471904,-0.4473064,0.7745565,0.4784821,-0.290206,0.8287554,-0.4471904,0.4473064,-0.7745565,-0.4784821,0.290206,-0.8287554,-0.4784821,0.290206,-0.8287554,-0.4898641,-0.2003314,0.8484694,-0.4762006,-0.3048474,0.8248036,-0.4898641,-0.2003314,0.8484694,0.4762006,0.3048474,-0.8248036,0.4898641,0.2003314,-0.8484694,0.4898641,0.2003314,-0.8484694,0.4892783,-0.2059786,-0.8474547,0.4784821,-0.290206,-0.8287554,0.4892783,-0.2059786,-0.8474547,0.4784821,-0.290206,-0.8287554,0.4892783,-0.2059786,-0.8474547,0.4784821,-0.290206,-0.8287554,-0.4784821,0.290206,0.8287554,-0.4892783,0.2059786,0.8474547,-0.4892783,0.2059786,0.8474547,-0.4892783,0.2059786,0.8474547,-0.4784821,0.290206,0.8287554,-0.4784821,0.290206,0.8287554 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *672 { + a: 2.378907,-0.7205961,-1.754952,-0.7205961,2.5856,1.96089,-1.961645,1.96089,2.5856,1.96089,-1.754952,-0.7205961,2.378907,-0.7205961,-1.961645,1.96089,7.927672,1.747416,7.720979,0.00935906,3.380428,1.747416,3.587121,0.00935906,3.380428,1.747416,7.720979,0.00935906,7.927672,1.747416,3.587121,0.00935906,5.381712,1.002989,1.247854,1.002989,5.588405,3.684474,1.041161,3.684474,5.588405,3.684474,1.247854,1.002989,5.381712,1.002989,1.041161,3.684474,-5.202672,5.691014,-2.92905,7.803944,-0.6554281,5.691014,-0.6554281,5.691014,-2.92905,7.803944,-5.202672,5.691014,-4.954543,5.255495,-2.68092,2.155167,-7.228165,2.155167,-7.228165,2.155167,-2.68092,2.155167,-4.954543,5.255495,5.588405,4.930294,1.041161,4.930294,3.314783,8.030622,3.314783,8.030622,1.041161,4.930294,5.588405,4.930294,10.57167,2.538916,6.024422,2.538916,8.298044,5.639244,8.298044,5.639244,6.024422,2.538916,10.57167,2.538916,4.848769,6.089261,7.122391,3.976331,2.575147,3.976331,2.575147,3.976331,7.122391,3.976331,4.848769,6.089261,-0.03728324,1.421574,-4.171142,1.421574,0.1694097,4.10306,-4.377834,4.10306,0.1694097,4.10306,-4.171142,1.421574,-0.03728324,1.421574,-4.377834,4.10306,0.1694097,5.886069,-4.377834,5.886069,-2.104212,8.986397,-2.104212,8.986397,-4.377834,5.886069,0.1694097,5.886069,-5.993956,2.985591,-1.446712,2.985591,-5.787263,0.304105,-1.653405,0.304105,-5.787263,0.304105,-1.446712,2.985591,-5.993956,2.985591,-1.653405,0.304105,5.65405,3.814543,7.927672,1.701613,3.380428,1.701613,3.380428,1.701613,7.927672,1.701613,5.65405,3.814543,-4.608667,2.962639,-9.155911,2.962639,-6.882289,5.075569,-6.882289,5.075569,-9.155911,2.962639,-4.608667,2.962639,-5.350668,0.2686162,-9.484527,0.2686162,-5.143975,2.006674,-9.691219,2.006674,-5.143975,2.006674,-9.484527,0.2686162,-5.350668,0.2686162,-9.691219,2.006674,0.04037248,1.347709,-4.093486,1.347709,0.2470654,4.029195,-4.300179,4.029195,0.2470654,4.029195,-4.093486,1.347709,0.04037248,1.347709,-4.300179,4.029195,8.42014,0.7624783,4.286282,0.7624783,8.626833,3.443964,4.079589,3.443964,8.626833,3.443964,4.286282,0.7624783,8.42014,0.7624783,4.079589,3.443964,3.093625,0.451665,-1.453619,0.451665,0.8200032,2.564595,0.8200032,2.564595,-1.453619,0.451665,3.093625,0.451665,3.688668,1.590275,-0.4451908,1.590275,3.89536,3.328332,-0.6518838,3.328332,3.89536,3.328332,-0.4451908,1.590275,3.688668,1.590275,-0.6518838,3.328332,8.626833,4.381126,4.079589,4.381126,6.353211,7.481454,6.353211,7.481454,4.079589,4.381126,8.626833,4.381126,-2.361563,1.052846,2.185682,1.052846,-2.15487,-0.6852118,1.978989,-0.6852118,-2.15487,-0.6852118,2.185682,1.052846,-2.361563,1.052846,1.978989,-0.6852118,2.021892,3.941595,4.295514,6.054525,6.569136,3.941595,6.569136,3.941595,4.295514,6.054525,2.021892,3.941595,10.36497,-0.0443242,6.231115,-0.0443242,10.57167,2.637162,6.024422,2.637162,10.57167,2.637162,6.231115,-0.0443242,10.36497,-0.0443242,6.024422,2.637162,-7.668469,2.050336,-5.394847,5.150664,-3.121225,2.050336,-3.121225,2.050336,-5.394847,5.150664,-7.668469,2.050336,-3.074621,3.7306,-3.281314,1.049114,-7.621865,3.7306,-7.415172,1.049114,-7.621865,3.7306,-3.281314,1.049114,-3.074621,3.7306,-7.415172,1.049114,-4.090706,2.868984,-8.637951,2.868984,-6.364328,4.981914,-6.364328,4.981914,-8.637951,2.868984,-4.090706,2.868984,1.525646,5.143088,3.799268,2.04276,-0.7479758,2.04276,-0.7479758,2.04276,3.799268,2.04276,1.525646,5.143088,7.122391,2.794894,6.915698,1.056836,2.575147,2.794894,2.78184,1.056836,2.575147,2.794894,6.915698,1.056836,7.122391,2.794894,2.78184,1.056836,-5.143975,2.26462,-9.691219,2.26462,-7.417597,4.377549,-7.417597,4.377549,-9.691219,2.26462,-5.143975,2.26462,3.171281,0.2041904,-1.375963,0.2041904,0.8976589,2.31712,0.8976589,2.31712,-1.375963,0.2041904,3.171281,0.2041904,-5.202672,3.584482,-0.6554281,3.584482,-4.995979,1.846425,-0.8621209,1.846425,-4.995979,1.846425,-0.6554281,3.584482,-5.202672,3.584482,-0.8621209,1.846425,2.964588,-0.6801838,-1.16927,-0.6801838,3.171281,1.057874,-1.375963,1.057874,3.171281,1.057874,-1.16927,-0.6801838,2.964588,-0.6801838,-1.375963,1.057874,-2.361563,0.1932717,-0.08794057,2.306201,2.185682,0.1932717,2.185682,0.1932717,-0.08794057,2.306201,-2.361563,0.1932717,-2.68092,2.469098,-2.887613,-0.2123884,-7.228165,2.469098,-7.021472,-0.2123884,-7.228165,2.469098,-2.887613,-0.2123884,-2.68092,2.469098,-7.021472,-0.2123884,2.021892,2.778898,6.569136,2.778898,2.228585,1.040841,6.362443,1.040841,2.228585,1.040841,6.569136,2.778898,2.021892,2.778898,6.362443,1.040841,10.88293,-0.07227775,6.749076,-0.07227775,11.08963,2.609208,6.542383,2.609208,11.08963,2.609208,6.749076,-0.07227775,10.88293,-0.07227775,6.542383,2.609208,3.592575,-0.2616176,-0.541283,-0.2616176,3.799268,2.419868,-0.7479758,2.419868,3.799268,2.419868,-0.541283,-0.2616176,3.592575,-0.2616176,-0.7479758,2.419868,11.08963,2.475088,6.542383,2.475088,8.816005,5.575416,8.816005,5.575416,6.542383,2.475088,11.08963,2.475088,-5.348243,8.135943,-3.074621,5.035615,-7.621865,5.035615,-7.621865,5.035615,-3.074621,5.035615,-5.348243,8.135943,-5.993956,3.334501,-3.720334,6.434829,-1.446712,3.334501,-1.446712,3.334501,-3.720334,6.434829,-5.993956,3.334501,-4.81536,0.5900449,-8.949219,0.5900449,-4.608667,2.328102,-9.155911,2.328102,-4.608667,2.328102,-8.949219,0.5900449,-4.81536,0.5900449,-9.155911,2.328102,-4.2974,0.5469179,-8.431257,0.5469179,-4.090706,2.284975,-8.637951,2.284975,-4.090706,2.284975,-8.431257,0.5469179,-4.2974,0.5469179,-8.637951,2.284975,2.5856,0.9947528,-1.961645,0.9947528,0.3119776,4.095081,0.3119776,4.095081,-1.961645,0.9947528,2.5856,0.9947528,-7.668469,2.423187,-3.121225,2.423187,-7.461777,-0.2582994,-3.327918,-0.2582994,-7.461777,-0.2582994,-3.121225,2.423187,-7.668469,2.423187,-3.327918,-0.2582994,2.886932,-0.5662252,-1.246926,-0.5662252,3.093625,1.171832,-1.453619,1.171832,3.093625,1.171832,-1.246926,-0.5662252,2.886932,-0.5662252,-1.453619,1.171832,-5.286142,2.412412,-9.833386,2.412412,-7.559764,4.525342,-7.559764,4.525342,-9.833386,2.412412,-5.286142,2.412412,3.89536,5.134754,-0.6518838,5.134754,1.621738,7.247684,1.621738,7.247684,-0.6518838,5.134754,3.89536,5.134754,0.2470654,5.717411,-4.300179,5.717411,-2.026557,8.817739,-2.026557,8.817739,-4.300179,5.717411,0.2470654,5.717411,-5.492836,0.3366727,-9.626694,0.3366727,-5.286142,2.07473,-9.833386,2.07473,-5.286142,2.07473,-9.626694,0.3366727,-5.492836,0.3366727,-9.833386,2.07473 + } + UVIndex: *432 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,29,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,50,49,51,53,52,54,56,55,57,55,56,58,60,59,59,61,58,62,64,63,65,67,66,68,70,69,71,69,70,72,74,73,73,75,72,76,78,77,79,81,80,82,84,83,85,87,86,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,117,116,118,120,119,121,119,120,122,124,123,123,125,122,126,128,127,129,131,130,132,134,133,135,133,134,136,138,137,137,139,136,140,142,141,143,145,144,146,148,147,149,147,148,150,152,151,151,153,150,154,156,155,157,159,158,160,162,161,163,161,162,164,166,165,165,167,164,168,170,169,171,173,172,174,176,175,177,179,178,180,182,181,183,181,182,184,186,185,185,187,184,188,190,189,191,193,192,194,196,195,197,199,198,200,202,201,203,201,202,204,206,205,205,207,204,208,210,209,211,209,210,212,214,213,213,215,212,216,218,217,219,221,220,222,224,223,225,223,224,226,228,227,227,229,226,230,232,231,233,231,232,234,236,235,235,237,234,238,240,239,241,239,240,242,244,243,243,245,242,246,248,247,249,247,248,250,252,251,251,253,250,254,256,255,257,259,258,260,262,261,263,265,264,266,268,267,269,271,270,272,274,273,275,273,274,276,278,277,277,279,276,280,282,281,283,281,282,284,286,285,285,287,284,288,290,289,291,293,292,294,296,295,297,295,296,298,300,299,299,301,298,302,304,303,305,303,304,306,308,307,307,309,306,310,312,311,313,315,314,316,318,317,319,321,320,322,324,323,325,327,326,328,330,329,331,329,330,332,334,333,333,335,332 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *144 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh grass_leafsLarge, Model::RootNode + C: "OO",5440951597020078385,0 + + ;Geometry::, Model::Mesh grass_leafsLarge + C: "OO",5198092605826074334,5440951597020078385 + + ;Material::grass, Model::Mesh grass_leafsLarge + C: "OO",3024,5440951597020078385 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/grass_leafsLarge.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/grass_leafsLarge.fbx.import new file mode 100644 index 0000000..4fa0cbd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/grass_leafsLarge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://clmds3qfsjyxa" +path="res://.godot/imported/grass_leafsLarge.fbx-cd9d79a5164fc45cca43906248525b7f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/grass_leafsLarge.fbx" +dest_files=["res://.godot/imported/grass_leafsLarge.fbx-cd9d79a5164fc45cca43906248525b7f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_grass.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_grass.fbx new file mode 100644 index 0000000..ef1729c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_grass.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 804 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_grass.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_grass.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4835832849072924847, "Model::ground_grass", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4854861570041222154, "Geometry::", "Mesh" { + Vertices: *12 { + a: 5,0,-5,5,0,5,-5,0,-5,-5,0,5 + } + PolygonVertexIndex: *6 { + a: 0,2,-2,3,1,-3 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *18 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *8 { + a: -19.68504,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504 + } + UVIndex: *6 { + a: 0,2,1,3,1,2 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *2 { + a: 0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_grass, Model::RootNode + C: "OO",4835832849072924847,0 + + ;Geometry::, Model::Mesh ground_grass + C: "OO",4854861570041222154,4835832849072924847 + + ;Material::grass, Model::Mesh ground_grass + C: "OO",3024,4835832849072924847 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_grass.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_grass.fbx.import new file mode 100644 index 0000000..dd56df0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_grass.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://okldlkorrpia" +path="res://.godot/imported/ground_grass.fbx-e369269b8f8d633f70fdebb0d97bd46d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_grass.fbx" +dest_files=["res://.godot/imported/ground_grass.fbx-e369269b8f8d633f70fdebb0d97bd46d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBend.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBend.fbx new file mode 100644 index 0000000..def197e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBend.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 895 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathBend.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathBend.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4741819956483950919, "Model::ground_pathBend", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4871210015388212134, "Geometry::", "Mesh" { + Vertices: *135 { + a: -2.79,0,-5,-3.490542,0,-3.490542,-3.79,0,-5,-4.173555,0,-4.173555,-5,0,-2.79,-5,0,-3.79,2.17,-0.5,-5,1.209402,-0.5,-1.415,-2.17,-0.5,-5,-1.415,-0.5,1.209402,-5,-0.5,2.17,-3.067074,-0.5,-3.067074,-5,-0.5,-2.17,3.79,0,-5,2.612363,0,-0.605,2.79,0,-5,1.746338,0,-1.105,-0.605,0,2.612363,-1.105,0,1.746338,-5,0,3.79,-5,0,2.79,-5,0,-5,-5,0,5,5,0,5,5,0,-5,-1.105,0,1.746338,-5,0,2.79,-1.415,-0.5,1.209402,-5,-0.5,2.17,1.746338,0,-1.105,-1.105,0,1.746338,1.209402,-0.5,-1.415,-1.415,-0.5,1.209402,2.79,0,-5,1.746338,0,-1.105,2.17,-0.5,-5,1.209402,-0.5,-1.415,-3.067074,-0.5,-3.067074,-5,-0.5,-2.17,-3.490542,0,-3.490542,-5,0,-2.79,-2.17,-0.5,-5,-3.067074,-0.5,-3.067074,-2.79,0,-5,-3.490542,0,-3.490542 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,10,-12,13,15,-15,16,14,-16,17,14,-17,18,17,-17,19,17,-19,20,19,-19,2,21,-4,5,3,-22,22,23,-18,14,17,-24,24,14,-24,13,14,-25,19,22,-18,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *90 { + a: 10.98425,-19.68504,13.74229,-13.74229,14.92126,-19.68504,16.43132,-16.43132,19.68504,-10.98425,19.68504,-14.92126,-8.543307,-19.68504,-4.761426,-5.570866,8.543307,-19.68504,5.570866,4.761426,19.68504,8.543307,12.07509,-12.07509,19.68504,-8.543307,-14.92126,-19.68504,-10.28489,-2.38189,-10.98425,-19.68504,-6.875346,-4.350394,2.38189,10.28489,4.350394,6.875346,19.68504,14.92126,19.68504,10.98425,19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,-19.68504,-19.68504,5.981628,4.233561,21.85722,4.233561,6.613391,1.162063,21.22546,1.162063,-7.937797,1.370534,7.937797,1.370534,-7.306034,-1.700963,7.306034,-1.700963,-21.85722,4.233561,-5.981628,4.233561,-21.22546,1.162063,-6.613391,1.162063,-5.869689,10.67664,-14.25925,10.67664,-6.680111,13.63929,-13.23168,13.63929,14.25925,10.67664,5.869689,10.67664,13.23168,13.63929,6.680111,13.63929 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,8,7,9,7,8,10,9,8,11,10,8,12,10,11,13,15,14,16,14,15,17,14,16,18,17,16,19,17,18,20,19,18,2,21,3,5,3,21,22,23,17,14,17,23,24,14,23,13,14,24,19,22,17,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathBend, Model::RootNode + C: "OO",4741819956483950919,0 + + ;Geometry::, Model::Mesh ground_pathBend + C: "OO",4871210015388212134,4741819956483950919 + + ;Material::dirt, Model::Mesh ground_pathBend + C: "OO",3020,4741819956483950919 + + ;Material::grass, Model::Mesh ground_pathBend + C: "OO",3024,4741819956483950919 + + ;Material::dirtDark, Model::Mesh ground_pathBend + C: "OO",3022,4741819956483950919 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBend.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBend.fbx.import new file mode 100644 index 0000000..444cd81 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBend.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cp4nnfbl88sc8" +path="res://.godot/imported/ground_pathBend.fbx-ec6843139a4eb2c0e7ef6997011e69aa.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathBend.fbx" +dest_files=["res://.godot/imported/ground_pathBend.fbx-ec6843139a4eb2c0e7ef6997011e69aa.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBendBank.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBendBank.fbx new file mode 100644 index 0000000..9d05d55 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBendBank.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 22 + Millisecond: 984 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathBendBank.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathBendBank.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4714632639575917599, "Model::ground_pathBendBank", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5724644652142933265, "Geometry::", "Mesh" { + Vertices: *144 { + a: -2.79,0,-5,-3.490542,0,-3.490542,-3.79,0,-5,-4.173555,0,-4.173555,-5,0,-2.79,-5,0,-3.79,2.17,-0.5,-5,1.209402,-0.5,-1.415,-2.17,-0.5,-5,-1.415,-0.5,1.209402,-5,-0.5,2.17,-3.067074,-0.5,-3.067074,-5,-0.5,-2.17,4.659258,0,-2.411809,3.660254,0,5.760759E-09,3.79,0,-5,2.79,0,-5,2.071068,0,2.071068,1.746338,0,-1.105,-5.875878E-08,0,3.660254,-1.105,0,1.746338,-2.411809,0,4.659258,-5,0,2.79,-5,0,3.79,-5,0,-5,5,0,-5,5,0,5,-5,0,5,-1.105,0,1.746338,-5,0,2.79,-1.415,-0.5,1.209402,-5,-0.5,2.17,1.746338,0,-1.105,-1.105,0,1.746338,1.209402,-0.5,-1.415,-1.415,-0.5,1.209402,2.79,0,-5,1.746338,0,-1.105,2.17,-0.5,-5,1.209402,-0.5,-1.415,-3.067074,-0.5,-3.067074,-5,-0.5,-2.17,-3.490542,0,-3.490542,-5,0,-2.79,-2.17,-0.5,-5,-3.067074,-0.5,-3.067074,-2.79,0,-5,-3.490542,0,-3.490542 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,8,-8,9,7,-9,10,9,-9,11,10,-9,12,10,-12,13,15,-15,16,14,-16,17,14,-17,18,17,-17,19,17,-19,20,19,-19,21,19,-21,22,21,-21,23,21,-23,2,24,-4,5,3,-25,25,15,-14,25,13,-27,13,14,-27,14,17,-27,17,19,-27,19,21,-27,27,26,-22,23,27,-22,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.2797118,0.7473419,0.6026951,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118,0.6026951,0.7473419,0.2797118 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: 10.98425,-19.68504,13.74229,-13.74229,14.92126,-19.68504,16.43132,-16.43132,19.68504,-10.98425,19.68504,-14.92126,-8.543307,-19.68504,-4.761426,-5.570866,8.543307,-19.68504,5.570866,4.761426,19.68504,8.543307,12.07509,-12.07509,19.68504,-8.543307,-18.34354,-9.495313,-14.41045,2.268015E-08,-14.92126,-19.68504,-10.98425,-19.68504,-8.15381,8.153811,-6.875346,-4.350394,2.313338E-07,14.41045,4.350394,6.875346,9.495314,18.34354,19.68504,10.98425,19.68504,14.92126,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,19.68504,5.981628,4.233561,21.85722,4.233561,6.613391,1.162063,21.22546,1.162063,-7.937797,1.370534,7.937797,1.370534,-7.306034,-1.700963,7.306034,-1.700963,-21.85722,4.233561,-5.981628,4.233561,-21.22546,1.162063,-6.613391,1.162063,-5.869689,10.67664,-14.25925,10.67664,-6.680111,13.63929,-13.23168,13.63929,14.25925,10.67664,5.869689,10.67664,13.23168,13.63929,6.680111,13.63929 + } + UVIndex: *114 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,8,7,9,7,8,10,9,8,11,10,8,12,10,11,13,15,14,16,14,15,17,14,16,18,17,16,19,17,18,20,19,18,21,19,20,22,21,20,23,21,22,2,24,3,5,3,24,25,15,13,25,13,26,13,14,26,14,17,26,17,19,26,19,21,26,27,26,21,23,27,21,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathBendBank, Model::RootNode + C: "OO",4714632639575917599,0 + + ;Geometry::, Model::Mesh ground_pathBendBank + C: "OO",5724644652142933265,4714632639575917599 + + ;Material::dirt, Model::Mesh ground_pathBendBank + C: "OO",3020,4714632639575917599 + + ;Material::grass, Model::Mesh ground_pathBendBank + C: "OO",3024,4714632639575917599 + + ;Material::dirtDark, Model::Mesh ground_pathBendBank + C: "OO",3022,4714632639575917599 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBendBank.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBendBank.fbx.import new file mode 100644 index 0000000..8531046 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathBendBank.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dg7pvb8qlext3" +path="res://.godot/imported/ground_pathBendBank.fbx-91ad3c112d5c9200c435eb8c15e50326.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathBendBank.fbx" +dest_files=["res://.godot/imported/ground_pathBendBank.fbx-91ad3c112d5c9200c435eb8c15e50326.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCorner.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCorner.fbx new file mode 100644 index 0000000..bb792c9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCorner.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 75 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5422574487901316966, "Model::ground_pathCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4926054707621670970, "Geometry::", "Mesh" { + Vertices: *90 { + a: 2.17,-0.5,-5,1.209402,-0.5,-1.415,-2.17,-0.5,-5,-1.415,-0.5,1.209402,-5,-0.5,2.17,-5,-0.5,-5,-5,-0.5,-2.17,3.79,0,-5,2.612363,0,-0.605,2.79,0,-5,1.746338,0,-1.105,-0.605,0,2.612363,-1.105,0,1.746338,-5,0,3.79,-5,0,2.79,-1.105,0,1.746338,-5,0,2.79,-1.415,-0.5,1.209402,-5,-0.5,2.17,1.746338,0,-1.105,-1.105,0,1.746338,1.209402,-0.5,-1.415,-1.415,-0.5,1.209402,2.79,0,-5,1.746338,0,-1.105,2.17,-0.5,-5,1.209402,-0.5,-1.415,-5,0,5,5,0,5,5,0,-5 + } + PolygonVertexIndex: *66 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,4,-6,7,9,-9,10,8,-10,11,8,-11,12,11,-11,13,11,-13,14,13,-13,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,28,-12,8,11,-29,29,8,-29,7,8,-30,13,27,-12 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *198 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.1658756,0.7676294,-0.619056,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.4531805,0.7676294,-0.4531805,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,-0.619056,0.7676294,-0.1658756,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *60 { + a: -8.543307,-19.68504,-4.761426,-5.570866,8.543307,-19.68504,5.570866,4.761426,19.68504,8.543307,19.68504,-19.68504,19.68504,-8.543307,-14.92126,-19.68504,-10.28489,-2.38189,-10.98425,-19.68504,-6.875346,-4.350394,2.38189,10.28489,4.350394,6.875346,19.68504,14.92126,19.68504,10.98425,5.981628,4.233561,21.85722,4.233561,6.613391,1.162063,21.22546,1.162063,-7.937797,1.370534,7.937797,1.370534,-7.306034,-1.700963,7.306034,-1.700963,-21.85722,4.233561,-5.981628,4.233561,-21.22546,1.162063,-6.613391,1.162063,19.68504,19.68504,-19.68504,19.68504,-19.68504,-19.68504 + } + UVIndex: *66 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,4,5,7,9,8,10,8,9,11,8,10,12,11,10,13,11,12,14,13,12,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,28,11,8,11,28,29,8,28,7,8,29,13,27,11 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *22 { + a: 0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathCorner, Model::RootNode + C: "OO",5422574487901316966,0 + + ;Geometry::, Model::Mesh ground_pathCorner + C: "OO",4926054707621670970,5422574487901316966 + + ;Material::dirt, Model::Mesh ground_pathCorner + C: "OO",3020,5422574487901316966 + + ;Material::dirtDark, Model::Mesh ground_pathCorner + C: "OO",3022,5422574487901316966 + + ;Material::grass, Model::Mesh ground_pathCorner + C: "OO",3024,5422574487901316966 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCorner.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCorner.fbx.import new file mode 100644 index 0000000..237587a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dssxyug64e0al" +path="res://.godot/imported/ground_pathCorner.fbx-8c29f01e65c778c6a7712278372f83b9.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathCorner.fbx" +dest_files=["res://.godot/imported/ground_pathCorner.fbx-8c29f01e65c778c6a7712278372f83b9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCornerSmall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCornerSmall.fbx new file mode 100644 index 0000000..3ca47b9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCornerSmall.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 166 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathCornerSmall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathCornerSmall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4846722156067907130, "Model::ground_pathCornerSmall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5396823427590283099, "Geometry::", "Mesh" { + Vertices: *96 { + a: 5,0,-3.79,4.395,0,-3.79,5,0,-5,3.79,0,-5,3.79,0,-4.395,5,-0.5,-2.17,3.75,-0.5,-2.17,5,0,-2.79,3.75,0,-2.79,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-5,2.17,-0.5,-5,3.75,-0.5,-2.17,2.17,-0.5,-3.75,3.75,0,-2.79,2.79,0,-3.75,-2.17,-0.5,-5,-5,-0.5,2.17,-5,-0.5,-5,-5,-0.5,-2.17,-5,-0.5,5,2.17,-0.5,-5,2.17,-0.5,-3.75,3.75,-0.5,-2.17,5,-0.5,-2.17,5,-0.5,5,5,-0.5,2.17,5,0,-2.79,3.75,0,-2.79,2.79,0,-5,2.79,0,-3.75 + } + PolygonVertexIndex: *72 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,18,21,-18,17,21,-23,22,21,-24,23,21,-25,24,21,-26,21,26,-26,27,25,-27,28,0,-30,1,29,-1,4,29,-2,3,29,-5,30,29,-4,31,29,-31 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *216 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *64 { + a: -19.68504,-14.92126,-17.30315,-14.92126,-19.68504,-19.68504,-14.92126,-19.68504,-14.92126,-17.30315,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,4.398538,9.385145,-4.398538,9.385145,2.672529,12.00318,-2.672529,12.00318,8.543307,-19.68504,19.68504,8.543307,19.68504,-19.68504,19.68504,-8.543307,19.68504,19.68504,-8.543307,-19.68504,-8.543307,-14.76378,-14.76378,-8.543307,-19.68504,-8.543307,-19.68504,19.68504,-19.68504,8.543307,-19.68504,-10.98425,-14.76378,-10.98425,-10.98425,-19.68504,-10.98425,-14.76378 + } + UVIndex: *72 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,18,21,17,17,21,22,22,21,23,23,21,24,24,21,25,21,26,25,27,25,26,28,0,29,1,29,0,4,29,1,3,29,4,30,29,3,31,29,30 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *24 { + a: 0,0,0,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathCornerSmall, Model::RootNode + C: "OO",4846722156067907130,0 + + ;Geometry::, Model::Mesh ground_pathCornerSmall + C: "OO",5396823427590283099,4846722156067907130 + + ;Material::grass, Model::Mesh ground_pathCornerSmall + C: "OO",3024,4846722156067907130 + + ;Material::dirtDark, Model::Mesh ground_pathCornerSmall + C: "OO",3022,4846722156067907130 + + ;Material::dirt, Model::Mesh ground_pathCornerSmall + C: "OO",3020,4846722156067907130 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCornerSmall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCornerSmall.fbx.import new file mode 100644 index 0000000..335b116 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCornerSmall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c6ibf2bbbtoso" +path="res://.godot/imported/ground_pathCornerSmall.fbx-75dea240609556ac95d7f8d376420da2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathCornerSmall.fbx" +dest_files=["res://.godot/imported/ground_pathCornerSmall.fbx-75dea240609556ac95d7f8d376420da2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCross.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCross.fbx new file mode 100644 index 0000000..d25c480 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCross.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 267 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathCross.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathCross.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4999330652202601862, "Model::ground_pathCross", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4744341940317664006, "Geometry::", "Mesh" { + Vertices: *300 { + a: 5,-5.639933E-17,-2.79,3.75,-5.639933E-17,-2.79,5,-5.639933E-17,-3.79,4.395,-5.639933E-17,-3.79,3.79,-5.639933E-17,-4.395,3.79,-5.639933E-17,-5,2.79,-5.639933E-17,-5,2.79,-5.639933E-17,-3.75,-2.79,-5.639933E-17,-5,-2.79,-5.639933E-17,-3.75,-3.79,-5.639933E-17,-5,-3.75,-5.639933E-17,-2.79,-3.79,-5.639933E-17,-4.395,-5,-5.639933E-17,-2.79,-4.395,-5.639933E-17,-3.79,-5,-5.639933E-17,-3.79,5,0,2.79,5,0,3.79,3.75,0,2.79,4.395,0,3.79,3.79,0,4.395,3.79,0,5,2.79,0,5,2.79,0,3.75,-2.79,0,5,-3.79,0,5,-2.79,0,3.75,-3.75,0,2.79,-3.79,0,4.395,-5,0,2.79,-4.395,0,3.79,-5,0,3.79,2.17,-0.5,-5,2.17,-0.5,-3.75,-2.17,-0.5,-5,-2.17,-0.5,3.75,-2.17,-0.5,5,-2.17,-0.5,-3.75,-3.75,-0.5,2.17,-3.75,-0.5,-2.17,-5,-0.5,2.17,-5,-0.5,-2.17,2.17,-0.5,5,2.17,-0.5,3.75,3.75,-0.5,-2.17,3.75,-0.5,2.17,5,-0.5,-2.17,5,-0.5,2.17,5,-0.5,-2.17,3.75,-0.5,-2.17,5,-5.639933E-17,-2.79,3.75,-5.639933E-17,-2.79,2.79,-5.639933E-17,-3.75,2.17,-0.5,-3.75,2.79,-5.639933E-17,-5,2.17,-0.5,-5,-3.75,-5.639933E-17,-2.79,-3.75,-0.5,-2.17,-5,-5.639933E-17,-2.79,-5,-0.5,-2.17,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-2.79,-5.639933E-17,-5,-2.79,-5.639933E-17,-3.75,-2.17,-0.5,5,-2.79,0,5,-2.17,-0.5,3.75,-2.79,0,3.75,-3.75,0,2.79,-5,0,2.79,-3.75,-0.5,2.17,-5,-0.5,2.17,5,0,2.79,3.75,0,2.79,5,-0.5,2.17,3.75,-0.5,2.17,2.79,0,3.75,2.79,0,5,2.17,-0.5,3.75,2.17,-0.5,5,3.75,-0.5,2.17,3.75,0,2.79,2.17,-0.5,3.75,2.79,0,3.75,-2.17,-0.5,-3.75,-3.75,-0.5,-2.17,-2.79,-5.639933E-17,-3.75,-3.75,-5.639933E-17,-2.79,-2.17,-0.5,3.75,-2.79,0,3.75,-3.75,-0.5,2.17,-3.75,0,2.79,3.75,-0.5,-2.17,2.17,-0.5,-3.75,3.75,-5.639933E-17,-2.79,2.79,-5.639933E-17,-3.75,-5,0,5,5,0,5,-5,-5.639933E-17,-5,5,-5.639933E-17,-5 + } + PolygonVertexIndex: *222 { + a: 0,2,-2,3,1,-3,4,1,-4,5,1,-5,6,1,-6,7,1,-7,8,10,-10,11,9,-11,12,11,-11,13,11,-13,14,13,-13,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,20,-19,22,21,-19,23,22,-19,24,26,-26,27,25,-27,28,25,-28,29,28,-28,30,28,-30,31,30,-30,32,34,-34,35,33,-35,36,33,-36,37,35,-35,38,35,-38,39,38,-38,40,38,-40,41,40,-40,36,42,-34,42,43,-34,33,43,-45,43,45,-45,44,45,-47,47,46,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,25,28,-97,30,96,-29,31,96,-31,17,19,-98,21,97,-20,20,21,-20,10,98,-13,14,12,-99,15,14,-99,2,99,-4,5,3,-100,4,3,-6 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *666 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.5316743,0.6592761,-0.5316743,-0.5316743,0.6592761,-0.5316743,-0.5316743,0.6592761,-0.5316743,-0.5316743,0.6592761,-0.5316743,-0.5316743,0.6592761,-0.5316743,-0.5316743,0.6592761,-0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,-0.5316743,0.5316743,0.6592761,-0.5316743,0.5316743,0.6592761,-0.5316743,0.5316743,0.6592761,-0.5316743,0.5316743,0.6592761,-0.5316743,0.5316743,0.6592761,-0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *200 { + a: -19.68504,-10.98425,-14.76378,-10.98425,-19.68504,-14.92126,-17.30315,-14.92126,-14.92126,-17.30315,-14.92126,-19.68504,-10.98425,-19.68504,-10.98425,-14.76378,10.98425,-19.68504,10.98425,-14.76378,14.92126,-19.68504,14.76378,-10.98425,14.92126,-17.30315,19.68504,-10.98425,17.30315,-14.92126,19.68504,-14.92126,-19.68504,10.98425,-19.68504,14.92126,-14.76378,10.98425,-17.30315,14.92126,-14.92126,17.30315,-14.92126,19.68504,-10.98425,19.68504,-10.98425,14.76378,10.98425,19.68504,14.92126,19.68504,10.98425,14.76378,14.76378,10.98425,14.92126,17.30315,19.68504,10.98425,17.30315,14.92126,19.68504,14.92126,-8.543307,-19.68504,-8.543307,-14.76378,8.543307,-19.68504,8.543307,14.76378,8.543307,19.68504,8.543307,-14.76378,14.76378,8.543307,14.76378,-8.543307,19.68504,8.543307,19.68504,-8.543307,-8.543307,19.68504,-8.543307,14.76378,-14.76378,-8.543307,-14.76378,8.543307,-19.68504,-8.543307,-19.68504,8.543307,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,-19.68504,5.414488,-19.68504,8.550285,-14.76378,5.414488,-14.76378,8.550285,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,-4.398538,9.385145,-2.672529,12.00318,4.398538,9.385145,2.672529,12.00318,4.398538,9.385145,-4.398538,9.385145,2.672529,12.00318,-2.672529,12.00318,-4.398538,9.385145,-2.672529,12.00318,4.398538,9.385145,2.672529,12.00318,4.398538,9.385145,-4.398538,9.385145,2.672529,12.00318,-2.672529,12.00318,19.68504,19.68504,-19.68504,19.68504,19.68504,-19.68504,-19.68504,-19.68504 + } + UVIndex: *222 { + a: 0,2,1,3,1,2,4,1,3,5,1,4,6,1,5,7,1,6,8,10,9,11,9,10,12,11,10,13,11,12,14,13,12,15,13,14,16,18,17,19,17,18,20,19,18,21,20,18,22,21,18,23,22,18,24,26,25,27,25,26,28,25,27,29,28,27,30,28,29,31,30,29,32,34,33,35,33,34,36,33,35,37,35,34,38,35,37,39,38,37,40,38,39,41,40,39,36,42,33,42,43,33,33,43,44,43,45,44,44,45,46,47,46,45,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,25,28,96,30,96,28,31,96,30,17,19,97,21,97,19,20,21,19,10,98,12,14,12,98,15,14,98,2,99,3,5,3,99,4,3,5 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *74 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathCross, Model::RootNode + C: "OO",4999330652202601862,0 + + ;Geometry::, Model::Mesh ground_pathCross + C: "OO",4744341940317664006,4999330652202601862 + + ;Material::dirt, Model::Mesh ground_pathCross + C: "OO",3020,4999330652202601862 + + ;Material::dirtDark, Model::Mesh ground_pathCross + C: "OO",3022,4999330652202601862 + + ;Material::grass, Model::Mesh ground_pathCross + C: "OO",3024,4999330652202601862 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCross.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCross.fbx.import new file mode 100644 index 0000000..ce6a129 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathCross.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d8yknr77bn53" +path="res://.godot/imported/ground_pathCross.fbx-583c96cdcb40ff4c08b841dca51b945a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathCross.fbx" +dest_files=["res://.godot/imported/ground_pathCross.fbx-583c96cdcb40ff4c08b841dca51b945a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEnd.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEnd.fbx new file mode 100644 index 0000000..e27f1e9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEnd.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 363 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5295590416288142399, "Model::ground_pathEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5424749080625677319, "Geometry::", "Mesh" { + Vertices: *198 { + a: 3.41,0,-1.25,2.79,-0.5,-1.25,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-5,2.17,-0.5,-5,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,-5,-2.79,0,-5,-1.55,-0.5,-1.25,-1.86,-0.25,1.25,-2.17,0,-1.25,-2.17,0,1.25,-2.17,0,1.25,-1.86,-0.25,1.25,-2.79,0,3.75,3.41,0,1.25,3.1,-0.25,1.25,3.41,0,-1.25,2.79,-0.5,-1.25,3.1,-0.25,1.25,3.41,0,1.25,2.79,0,3.75,5,0,5,4.41,0,-1.25,5,0,-5,3.79,0,-5,4.41,0,1.25,3.79,0,-3.75,3.29,0,3.75,-5,0,5,2.79,0,3.75,-2.79,0,3.75,-3.29,0,3.75,-3.79,0,-3.75,-3.17,0,-1.25,-3.17,0,1.25,-3.79,0,-5,-5,0,-5,2.79,-0.5,-1.25,-1.55,-0.5,-1.25,2.17,-0.5,-3.75,2.17,-0.5,-5,-2.17,-0.5,-5,-2.17,-0.5,-3.75,3.1,-0.25,1.25,-1.86,-0.25,1.25,2.79,-0.5,-1.25,-1.55,-0.5,-1.25,2.79,0,3.75,-2.79,0,3.75,-2.79,0,-5,-2.79,0,-3.75,-2.17,0,-1.25,-2.17,0,1.25,3.41,0,1.25,3.41,0,-1.25,2.79,0,-5,2.79,0,-3.75 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,25,-25,26,24,-26,27,29,-29,30,32,-32,33,31,-33,34,30,-32,35,31,-34,34,36,-31,37,30,-37,38,37,-37,39,37,-39,40,37,-40,41,37,-41,41,40,-43,43,42,-41,44,37,-42,45,37,-45,46,48,-48,49,47,-49,50,47,-50,51,47,-51,52,54,-54,55,53,-55,52,53,-57,57,56,-54,43,58,-43,44,42,-59,41,42,-45,43,40,-59,40,39,-59,58,39,-60,59,39,-61,61,60,-40,62,33,-64,64,63,-34,65,63,-65,62,36,-34,33,36,-36,35,36,-32,34,31,-37,38,36,-63 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: -0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *132 { + a: -1.545008,10.93348,-2.132563,7.853217,-11.68569,10.93348,-12.27324,7.853217,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,6.245451,2.386479,6.833007,5.466738,16.38613,2.386479,16.97369,5.466738,14.76378,5.414488,14.76378,8.550285,19.68504,5.414488,19.68504,8.550285,4.92126,3.514425,-4.92126,5.082324,4.92126,6.650222,-4.92126,6.650222,-6.833007,5.466738,-6.539229,3.926608,-16.97369,5.466738,4.92126,10.45035,4.92126,8.88245,-4.92126,10.45035,-4.92126,7.314552,1.838786,9.393347,1.545008,10.93348,11.68569,10.93348,-19.68504,19.68504,-17.36221,-4.92126,-19.68504,-19.68504,-14.92126,-19.68504,-17.36221,4.92126,-14.92126,-14.76378,-12.95276,14.76378,19.68504,19.68504,-10.98425,14.76378,10.98425,14.76378,12.95276,14.76378,14.92126,-14.76378,12.48032,-4.92126,12.48032,4.92126,14.92126,-19.68504,19.68504,-19.68504,-10.98425,-4.92126,6.102362,-4.92126,-8.543307,-14.76378,-8.543307,-19.68504,8.543307,-19.68504,8.543307,-14.76378,-12.20472,4.7989,7.322834,4.7989,-10.98425,-5.09271,6.102362,-5.09271,-10.98425,14.69051,10.98425,14.69051,10.98425,-19.68504,10.98425,-14.76378,8.543307,-4.92126,8.543307,4.92126,-13.4252,4.92126,-13.4252,-4.92126,-10.98425,-19.68504,-10.98425,-14.76378 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,25,24,26,24,25,27,29,28,30,32,31,33,31,32,34,30,31,35,31,33,34,36,30,37,30,36,38,37,36,39,37,38,40,37,39,41,37,40,41,40,42,43,42,40,44,37,41,45,37,44,46,48,47,49,47,48,50,47,49,51,47,50,52,54,53,55,53,54,52,53,56,57,56,53,43,58,42,44,42,58,41,42,44,43,40,58,40,39,58,58,39,59,59,39,60,61,60,39,62,33,63,64,63,33,65,63,64,62,36,33,33,36,35,35,36,31,34,31,36,38,36,62 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathEnd, Model::RootNode + C: "OO",5295590416288142399,0 + + ;Geometry::, Model::Mesh ground_pathEnd + C: "OO",5424749080625677319,5295590416288142399 + + ;Material::dirtDark, Model::Mesh ground_pathEnd + C: "OO",3022,5295590416288142399 + + ;Material::grass, Model::Mesh ground_pathEnd + C: "OO",3024,5295590416288142399 + + ;Material::dirt, Model::Mesh ground_pathEnd + C: "OO",3020,5295590416288142399 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEnd.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEnd.fbx.import new file mode 100644 index 0000000..f203e93 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b4j0siby8w12b" +path="res://.godot/imported/ground_pathEnd.fbx-317ec0baeecac1153a0c8f1b5e7f98c0.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathEnd.fbx" +dest_files=["res://.godot/imported/ground_pathEnd.fbx-317ec0baeecac1153a0c8f1b5e7f98c0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEndClosed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEndClosed.fbx new file mode 100644 index 0000000..0c129d0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEndClosed.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 457 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathEndClosed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathEndClosed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5674092657872242144, "Model::ground_pathEndClosed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5301785177639479825, "Geometry::", "Mesh" { + Vertices: *252 { + a: 5,0,5,4.41,0,-1.25,5,0,-5,3.79,0,-5,4.41,0,1.443823E-14,3.79,0,-3.75,3.973069,0,1.982926,1.598253,0,3.728436,-5,0,5,-0.3582529,0,3.728436,-2.733069,0,1.982926,-3.17,0,1.155058E-13,-3.17,0,-1.25,-3.79,0,-3.75,-3.79,0,-5,-5,0,-5,-2.17,-0.5,-5,-2.17,-0.5,-3.947883,-2.79,0,-5,-2.79,0,-3.87215,-1.55,-0.5,-1.447883,-2.17,0,-1.37215,-2.17,-0.5,-3.947883,-2.79,0,-3.87215,3.41,0,-1.12785,2.79,-0.5,-1.052117,2.79,0,-3.62785,2.17,-0.5,-3.552117,2.79,0,-3.62785,2.17,-0.5,-3.552117,2.79,0,-5,2.17,-0.5,-5,-1.55,-0.5,-0.1763654,-2.17,0,-0.1088675,-1.55,-0.5,-1.447883,-2.17,0,-1.37215,-1.247792,-0.5,1.195148,-1.816231,0,1.496643,-1.55,-0.5,-0.1763654,-2.17,0,-0.1088675,3.41,0,-0.1088675,2.79,-0.5,-0.1763654,3.41,0,-1.12785,2.79,-0.5,-1.052117,3.41,0,-0.1088675,3.056231,0,1.496643,2.79,-0.5,-0.1763654,2.487792,-0.5,1.195148,0.07507454,-0.5,2.167465,-0.09076683,0,2.764874,-1.247792,-0.5,1.195148,-1.816231,0,1.496643,3.056231,0,1.496643,1.330767,0,2.764874,2.487792,-0.5,1.195148,1.164925,-0.5,2.167465,1.330767,0,2.764874,-0.09076683,0,2.764874,1.164925,-0.5,2.167465,0.07507454,-0.5,2.167465,2.79,-0.5,-0.1763654,2.487792,-0.5,1.195148,2.79,-0.5,-1.052117,2.17,-0.5,-3.552117,1.164925,-0.5,2.167465,2.17,-0.5,-5,-2.17,-0.5,-5,0.07507454,-0.5,2.167465,-1.55,-0.5,-1.447883,-1.247792,-0.5,1.195148,-1.55,-0.5,-0.1763654,-2.17,-0.5,-3.947883,3.41,0,-0.1088675,3.41,0,-1.12785,2.79,0,-5,2.79,0,-3.62785,3.056231,0,1.496643,1.330767,0,2.764874,-0.09076683,0,2.764874,-1.816231,0,1.496643,-2.17,0,-0.1088675,-2.17,0,-1.37215,-2.79,0,-3.87215,-2.79,0,-5 + } + PolygonVertexIndex: *204 { + a: 0,2,-2,3,1,-3,4,0,-2,5,1,-4,4,6,-1,6,7,-1,8,0,-8,9,8,-8,10,8,-10,11,8,-11,12,8,-12,13,8,-13,14,8,-14,15,8,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,61,-64,65,64,-64,66,64,-66,67,64,-67,68,67,-67,69,67,-69,70,69,-69,71,68,-67,72,3,-74,74,73,-4,75,73,-75,3,72,-6,72,6,-6,5,6,-2,4,1,-7,76,6,-73,7,6,-77,77,7,-77,9,7,-78,78,9,-78,79,9,-79,10,9,-80,80,10,-80,81,10,-81,82,10,-82,11,10,-83,11,82,-13,12,82,-15,83,14,-83,13,12,-15 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *612 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,0.3868558,0.7571794,-0.5263285,0.3868558,0.7571794,-0.5263285,0.3868558,0.7571794,-0.5263285,0.3868558,0.7571794,-0.5263285,0.3868558,0.7571794,-0.5263285,0.3868558,0.7571794,-0.5263285,-0.3868558,0.7571794,-0.5263285,-0.3868558,0.7571794,-0.5263285,-0.3868558,0.7571794,-0.5263285,-0.3868558,0.7571794,-0.5263285,-0.3868558,0.7571794,-0.5263285,-0.3868558,0.7571794,-0.5263285,0,0.7668561,-0.6418191,0,0.7668561,-0.6418191,0,0.7668561,-0.6418191,0,0.7668561,-0.6418191,0,0.7668561,-0.6418191,0,0.7668561,-0.6418191,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: -19.68504,19.68504,-17.36221,-4.92126,-19.68504,-19.68504,-14.92126,-19.68504,-17.36221,5.684342E-14,-14.92126,-14.76378,-15.642,7.806795,-6.292334,14.67888,19.68504,19.68504,1.410444,14.67888,10.76011,7.806795,12.48032,4.547474E-13,12.48032,-4.92126,14.92126,-14.76378,14.92126,-19.68504,19.68504,-19.68504,19.68504,5.414488,15.54285,5.414488,19.68504,8.550285,15.24468,8.550285,7.001611,2.306686,7.299772,5.442483,17.14229,2.306686,17.44045,5.442483,-1.078243,10.97507,-1.376404,7.839277,-11.21892,10.97507,-11.51708,7.839277,-14.28288,8.550285,-13.98471,5.414488,-19.68504,8.550285,-19.68504,5.414488,0.6943518,3.514425,0.4286122,6.650222,5.700326,3.514425,5.402165,6.650222,-3.537968,3.286839,-4.215578,6.422636,1.99122,3.286839,2.256959,6.422636,-0.4286122,10.45035,-0.6943518,7.314552,-4.440355,10.45035,-4.142194,7.314552,-3.307467,10.13374,3.165071,10.13374,-3.041728,6.997942,2.487461,6.997942,-5.291945,3.787849,-6.158801,6.801448,1.171678,3.787849,2.271947,6.801448,-6.205583,8.990647,2.225165,8.990647,-5.105314,5.977048,1.35831,5.977048,-5.23924,8.347482,0.3573497,8.347482,-4.586321,5.280412,-0.2955691,5.280412,-10.98425,-0.6943518,-9.794456,4.705307,-10.98425,-4.142194,-8.543307,-13.98471,-4.586321,8.533329,-8.543307,-19.68504,8.543307,-19.68504,-0.2955691,8.533329,6.102362,-5.700326,4.912566,4.705307,6.102362,-0.6943518,8.543307,-15.54285,-13.4252,-0.4286122,-13.4252,-4.440355,-10.98425,-19.68504,-10.98425,-14.28288,-12.03241,5.892296,-5.23924,10.88533,0.3573497,10.88533,7.150517,5.892296,8.543307,-0.4286122,8.543307,-5.402165,10.98425,-15.24468,10.98425,-19.68504 + } + UVIndex: *204 { + a: 0,2,1,3,1,2,4,0,1,5,1,3,4,6,0,6,7,0,8,0,7,9,8,7,10,8,9,11,8,10,12,8,11,13,8,12,14,8,13,15,8,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,61,63,65,64,63,66,64,65,67,64,66,68,67,66,69,67,68,70,69,68,71,68,66,72,3,73,74,73,3,75,73,74,3,72,5,72,6,5,5,6,1,4,1,6,76,6,72,7,6,76,77,7,76,9,7,77,78,9,77,79,9,78,10,9,79,80,10,79,81,10,80,82,10,81,11,10,82,11,82,12,12,82,14,83,14,82,13,12,14 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *68 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathEndClosed, Model::RootNode + C: "OO",5674092657872242144,0 + + ;Geometry::, Model::Mesh ground_pathEndClosed + C: "OO",5301785177639479825,5674092657872242144 + + ;Material::grass, Model::Mesh ground_pathEndClosed + C: "OO",3024,5674092657872242144 + + ;Material::dirtDark, Model::Mesh ground_pathEndClosed + C: "OO",3022,5674092657872242144 + + ;Material::dirt, Model::Mesh ground_pathEndClosed + C: "OO",3020,5674092657872242144 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEndClosed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEndClosed.fbx.import new file mode 100644 index 0000000..f70d7b0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathEndClosed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dkvyoak6t66lt" +path="res://.godot/imported/ground_pathEndClosed.fbx-128944c3f3c8948f5a7d40e3b2c9761d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathEndClosed.fbx" +dest_files=["res://.godot/imported/ground_pathEndClosed.fbx-128944c3f3c8948f5a7d40e3b2c9761d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathOpen.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathOpen.fbx new file mode 100644 index 0000000..b6e5239 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathOpen.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 536 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathOpen.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathOpen.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5264619440067603149, "Model::ground_pathOpen", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5154487697888508344, "Geometry::", "Mesh" { + Vertices: *30 { + a: 5,-0.5,-5,5,-0.5,-2.17,2.17,-0.5,-5,-5,-0.5,5,5,-0.5,5,5,-0.5,2.17,-2.17,-0.5,-5,-5,-0.5,2.17,-5,-0.5,-5,-5,-0.5,-2.17 + } + PolygonVertexIndex: *24 { + a: 0,2,-2,2,3,-2,3,4,-2,5,1,-5,6,3,-3,7,3,-7,6,8,-8,9,7,-9 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *72 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *20 { + a: -19.68504,-19.68504,-19.68504,-8.543307,-8.543307,-19.68504,19.68504,19.68504,-19.68504,19.68504,-19.68504,8.543307,8.543307,-19.68504,19.68504,8.543307,19.68504,-19.68504,19.68504,-8.543307 + } + UVIndex: *24 { + a: 0,2,1,2,3,1,3,4,1,5,1,4,6,3,2,7,3,6,6,8,7,9,7,8 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *8 { + a: 0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathOpen, Model::RootNode + C: "OO",5264619440067603149,0 + + ;Geometry::, Model::Mesh ground_pathOpen + C: "OO",5154487697888508344,5264619440067603149 + + ;Material::dirt, Model::Mesh ground_pathOpen + C: "OO",3020,5264619440067603149 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathOpen.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathOpen.fbx.import new file mode 100644 index 0000000..023a449 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathOpen.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ddw0seut7vkar" +path="res://.godot/imported/ground_pathOpen.fbx-4ed9659b36b52018317363be002bcf94.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathOpen.fbx" +dest_files=["res://.godot/imported/ground_pathOpen.fbx-4ed9659b36b52018317363be002bcf94.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathRocks.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathRocks.fbx new file mode 100644 index 0000000..f33e08b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathRocks.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 636 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathRocks.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathRocks.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5387126989513101937, "Model::ground_pathRocks", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4778207314418264969, "Geometry::", "Mesh" { + Vertices: *420 { + a: 3.41,0,1.25,2.79,-0.5,1.25,3.41,0,-1.25,2.79,-0.5,-1.25,3.41,0,-1.25,2.79,-0.5,-1.25,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-5,2.17,-0.5,-5,3.41,0,1.25,2.79,0,3.75,2.79,-0.5,1.25,2.17,-0.5,3.75,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,5,-2.79,0,5,-2.17,-0.5,3.75,-2.79,0,3.75,2.79,0,3.75,2.79,0,5,2.17,-0.5,3.75,2.17,-0.5,5,-1.55,-0.5,1.25,-2.17,0,1.25,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,-5,-2.79,0,-5,-1.55,-0.5,1.25,-2.17,-0.5,3.75,-2.17,0,1.25,-2.79,0,3.75,1.652315,-0.5,-1.735761,0.6903682,-0.5,-1.909553,1.442855,3.609557E-15,-2.187027,1.064712,3.609557E-15,-2.255345,2.102825,-0.5,-2.517286,1.57786,3.609557E-15,-2.421227,1.300739,-0.5,-3.173785,1.229814,3.609557E-15,-2.7061,0.5928065,-0.5,-2.886996,1.300739,-0.5,-3.173785,1.027885,3.609557E-15,-2.624297,1.229814,3.609557E-15,-2.7061,0.5928065,-0.5,-2.886996,1.027885,3.609557E-15,-2.624297,0.6903682,-0.5,-1.909553,1.064712,3.609557E-15,-2.255345,2.102825,-0.5,-2.517286,1.652315,-0.5,-1.735761,1.57786,3.609557E-15,-2.421227,1.442855,3.609557E-15,-2.187027,-0.1125069,-0.5,3.631854,-1.325223,-0.5,3.631854,-0.4913989,2.819967E-17,3.129586,-0.9491587,2.819967E-17,3.129586,0.2189412,-0.5,2.471447,-0.1125069,-0.5,3.631854,-0.3611057,2.819967E-17,2.673428,-0.4913989,2.819967E-17,3.129586,-0.6322587,2.819967E-17,2.478862,-1.024891,2.819967E-17,2.871494,-0.6858938,-0.5,1.822183,-1.590729,-0.5,2.727018,0.2189412,-0.5,2.471447,-0.3611057,2.819967E-17,2.673428,-0.6858938,-0.5,1.822183,-0.6322587,2.819967E-17,2.478862,-0.9491587,2.819967E-17,3.129586,-1.325223,-0.5,3.631854,-1.024891,2.819967E-17,2.871494,-1.590729,-0.5,2.727018,-3.17,0,1.25,-3.79,0,3.75,-3.17,0,-1.25,-3.79,0,-3.75,-3.79,0,-5,-3.79,0,5,-5,0,5,-5,0,-5,5,0,5,4.41,0,-1.25,5,0,-5,3.79,0,-5,4.41,0,1.25,3.79,0,-3.75,3.79,0,5,3.79,0,3.75,-2.79,0,-5,-2.79,0,5,-2.79,0,3.75,-2.79,0,-3.75,-2.17,0,-1.25,-2.17,0,1.25,3.41,0,1.25,3.41,0,-1.25,2.79,0,-5,2.79,0,-3.75,2.79,0,5,2.79,0,3.75,1.57786,3.609557E-15,-2.421227,1.442855,3.609557E-15,-2.187027,1.229814,3.609557E-15,-2.7061,1.064712,3.609557E-15,-2.255345,1.027885,3.609557E-15,-2.624297,-0.3611057,2.819967E-17,2.673428,-0.4913989,2.819967E-17,3.129586,-0.6322587,2.819967E-17,2.478862,-0.9491587,2.819967E-17,3.129586,-1.024891,2.819967E-17,2.871494,2.102825,-0.5,-2.517286,1.300739,-0.5,-3.173785,2.17,-0.5,-5,-2.17,-0.5,-5,0.5928065,-0.5,-2.886996,0.2189412,-0.5,2.471447,-0.6858938,-0.5,1.822183,-1.55,-0.5,-1.25,-1.55,-0.5,1.25,-2.17,-0.5,-3.75,-1.590729,-0.5,2.727018,-2.17,-0.5,3.75,-2.17,-0.5,5,2.17,-0.5,5,2.17,-0.5,3.75,2.17,-0.5,-3.75,2.79,-0.5,-1.25,2.79,-0.5,1.25,-0.1125069,-0.5,3.631854,1.652315,-0.5,-1.735761,0.6903682,-0.5,-1.909553,-1.325223,-0.5,3.631854 + } + PolygonVertexIndex: *306 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,81,-84,85,81,-85,86,85,-85,87,86,-85,88,90,-90,91,89,-91,92,88,-90,93,89,-92,88,92,-95,95,94,-93,80,96,-83,84,82,-97,83,82,-85,80,97,-97,97,98,-97,96,98,-100,99,98,-101,101,100,-99,85,97,-81,81,85,-81,102,91,-104,104,103,-92,105,103,-105,102,94,-92,94,95,-92,91,95,-94,93,95,-90,92,89,-96,106,94,-103,107,106,-103,108,110,-110,111,109,-111,112,111,-111,113,115,-115,116,114,-116,117,116,-116,118,120,-120,121,119,-121,122,119,-122,123,122,-122,124,123,-122,125,124,-122,126,124,-126,127,125,-122,124,126,-129,129,128,-127,130,128,-130,118,131,-121,131,132,-121,120,132,-134,133,132,-135,135,134,-133,130,131,-137,136,131,-119,137,136,-119,123,136,-138,138,123,-138,122,123,-139,139,130,-137,128,130,-140 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *918 { + a: -0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *280 { + a: 4.92126,10.45035,4.92126,7.314552,-4.92126,10.45035,-4.92126,7.314552,-1.545008,10.93348,-2.132563,7.853217,-11.68569,10.93348,-12.27324,7.853217,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,1.545008,10.93348,11.68569,10.93348,2.132563,7.853217,12.27324,7.853217,6.245451,2.386479,6.833007,5.466738,16.38613,2.386479,16.97369,5.466738,-19.68504,5.414488,-19.68504,8.550285,-14.76378,5.414488,-14.76378,8.550285,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,-4.92126,3.514425,-4.92126,6.650222,4.92126,3.514425,4.92126,6.650222,14.76378,5.414488,14.76378,8.550285,19.68504,5.414488,19.68504,8.550285,-6.245451,2.386479,-16.38613,2.386479,-6.833007,5.466738,-16.97369,5.466738,5.186587,3.447356,1.338083,3.447356,4.059214,5.985173,2.546358,5.985174,-0.1293318,-9.676741,1.230501,-7.138924,3.951378,-9.676741,3.001229,-7.138924,-6.430749,-7.622606,-9.437905,-7.622606,-7.630006,-5.084789,-8.487757,-5.084789,-11.07813,0.6513014,-9.878865,3.189117,-7.210803,0.6513014,-8.41908,3.189117,12.72073,-2.929928,9.16925,-2.929928,11.3609,-0.3921101,10.29662,-0.3921104,-0.4429407,-11.5223,-5.217412,-11.5223,-1.934641,-8.732096,-3.736845,-8.732096,-9.119196,-3.870086,-13.87044,-3.870086,-10.51102,-1.079881,-12.37874,-1.07988,8.661004,3.643262,10.84709,3.643262,6.982198,0.8530561,12.02011,0.8530561,-6.372911,3.857733,-4.981093,6.647939,-1.988368,3.857733,-3.667173,6.647939,10.77059,-4.999784,12.25116,-7.789989,9.711643,-4.999784,8.53862,-7.789989,12.48032,4.92126,14.92126,14.76378,12.48032,-4.92126,14.92126,-14.76378,14.92126,-19.68504,14.92126,19.68504,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-17.36221,-4.92126,-19.68504,-19.68504,-14.92126,-19.68504,-17.36221,4.92126,-14.92126,-14.76378,-14.92126,19.68504,-14.92126,14.76378,10.98425,-19.68504,10.98425,19.68504,10.98425,14.76378,10.98425,-14.76378,8.543307,-4.92126,8.543307,4.92126,-13.4252,4.92126,-13.4252,-4.92126,-10.98425,-19.68504,-10.98425,-14.76378,-10.98425,19.68504,-10.98425,14.76378,-6.212047,-9.53239,-5.680532,-8.610341,-4.841786,-10.65394,-4.191779,-8.87931,-4.046793,-10.33188,1.421676,10.52531,1.934641,12.32121,2.489208,9.7593,3.736845,12.32121,4.035003,11.3051,-8.278839,-9.910574,-5.121021,-12.49522,-8.543307,-19.68504,8.543307,-19.68504,-2.333884,-11.36613,-0.861973,9.730104,2.700369,7.17395,6.102362,-4.92126,6.102362,4.92126,8.543307,-14.76378,6.262712,10.73629,8.543307,14.76378,8.543307,19.68504,-8.543307,19.68504,-8.543307,14.76378,-8.543307,-14.76378,-10.98425,-4.92126,-10.98425,4.92126,0.4429407,14.29864,-6.505178,-6.833704,-2.717985,-7.517924,5.217412,14.29864 + } + UVIndex: *306 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,81,83,85,81,84,86,85,84,87,86,84,88,90,89,91,89,90,92,88,89,93,89,91,88,92,94,95,94,92,80,96,82,84,82,96,83,82,84,80,97,96,97,98,96,96,98,99,99,98,100,101,100,98,85,97,80,81,85,80,102,91,103,104,103,91,105,103,104,102,94,91,94,95,91,91,95,93,93,95,89,92,89,95,106,94,102,107,106,102,108,110,109,111,109,110,112,111,110,113,115,114,116,114,115,117,116,115,118,120,119,121,119,120,122,119,121,123,122,121,124,123,121,125,124,121,126,124,125,127,125,121,124,126,128,129,128,126,130,128,129,118,131,120,131,132,120,120,132,133,133,132,134,135,134,132,130,131,136,136,131,118,137,136,118,123,136,137,138,123,137,122,123,138,139,130,136,128,130,139 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *102 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathRocks, Model::RootNode + C: "OO",5387126989513101937,0 + + ;Geometry::, Model::Mesh ground_pathRocks + C: "OO",4778207314418264969,5387126989513101937 + + ;Material::dirtDark, Model::Mesh ground_pathRocks + C: "OO",3022,5387126989513101937 + + ;Material::grass, Model::Mesh ground_pathRocks + C: "OO",3024,5387126989513101937 + + ;Material::dirt, Model::Mesh ground_pathRocks + C: "OO",3020,5387126989513101937 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathRocks.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathRocks.fbx.import new file mode 100644 index 0000000..5f08ed7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathRocks.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dqj4tp47q2r44" +path="res://.godot/imported/ground_pathRocks.fbx-df0366e481073ac2ba49de69c7261b01.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathRocks.fbx" +dest_files=["res://.godot/imported/ground_pathRocks.fbx-df0366e481073ac2ba49de69c7261b01.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSide.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSide.fbx new file mode 100644 index 0000000..70ea782 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSide.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 725 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathSide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathSide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5742105466725565638, "Model::ground_pathSide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5301904497858863246, "Geometry::", "Mesh" { + Vertices: *132 { + a: 5,0,3.79,3.75,0,3.79,5,0,2.79,3.75,0,2.79,1.25,0,4.41,1.25,0,3.41,-1.25,0,4.41,-1.25,0,3.41,-3.75,0,3.79,-3.75,0,2.79,-5,0,3.79,-5,0,2.79,5,-0.5,-5,5,-0.5,-2.17,-5,-0.5,-5,3.75,-0.5,2.17,1.25,-0.5,2.79,-1.25,-0.5,2.79,-3.75,-0.5,2.17,-5,-0.5,2.17,-5,-0.5,-2.17,5,-0.5,2.17,1.25,0,3.41,-1.25,0,3.41,1.25,-0.5,2.79,-1.25,-0.5,2.79,3.75,0,2.79,1.25,0,3.41,3.75,-0.5,2.17,1.25,-0.5,2.79,5,0,2.79,3.75,0,2.79,5,-0.5,2.17,3.75,-0.5,2.17,-1.25,0,3.41,-3.75,0,2.79,-1.25,-0.5,2.79,-3.75,-0.5,2.17,-3.75,0,2.79,-5,0,2.79,-3.75,-0.5,2.17,-5,-0.5,2.17,-5,0,5,5,0,5 + } + PolygonVertexIndex: *102 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,7,6,-6,8,6,-8,9,8,-8,10,8,-10,11,10,-10,12,14,-14,15,13,-15,16,15,-15,17,16,-15,18,17,-15,19,18,-15,20,19,-15,13,15,-22,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,43,-5,0,4,-44,1,4,-1,6,42,-5,8,42,-7,10,42,-9 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *306 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *88 { + a: -19.68504,14.92126,-14.76378,14.92126,-19.68504,10.98425,-14.76378,10.98425,-4.92126,17.36221,-4.92126,13.4252,4.92126,17.36221,4.92126,13.4252,14.76378,14.92126,14.76378,10.98425,19.68504,14.92126,19.68504,10.98425,-19.68504,-19.68504,-19.68504,-8.543307,19.68504,-19.68504,-14.76378,8.543307,-4.92126,10.98425,4.92126,10.98425,14.76378,8.543307,19.68504,8.543307,19.68504,-8.543307,-19.68504,8.543307,-4.92126,10.45035,4.92126,10.45035,-4.92126,7.314552,4.92126,7.314552,-11.68569,10.93348,-1.545008,10.93348,-12.27324,7.853217,-2.132563,7.853217,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,1.545008,10.93348,11.68569,10.93348,2.132563,7.853217,12.27324,7.853217,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,19.68504,19.68504,-19.68504,19.68504 + } + UVIndex: *102 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,7,6,5,8,6,7,9,8,7,10,8,9,11,10,9,12,14,13,15,13,14,16,15,14,17,16,14,18,17,14,19,18,14,20,19,14,13,15,21,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,43,4,0,4,43,1,4,0,6,42,4,8,42,6,10,42,8 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *34 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathSide, Model::RootNode + C: "OO",5742105466725565638,0 + + ;Geometry::, Model::Mesh ground_pathSide + C: "OO",5301904497858863246,5742105466725565638 + + ;Material::dirt, Model::Mesh ground_pathSide + C: "OO",3020,5742105466725565638 + + ;Material::dirtDark, Model::Mesh ground_pathSide + C: "OO",3022,5742105466725565638 + + ;Material::grass, Model::Mesh ground_pathSide + C: "OO",3024,5742105466725565638 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSide.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSide.fbx.import new file mode 100644 index 0000000..bda6958 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://8jdhpix5sk4e" +path="res://.godot/imported/ground_pathSide.fbx-f46f79582381c20052d8b735d6f6b6ef.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathSide.fbx" +dest_files=["res://.godot/imported/ground_pathSide.fbx-f46f79582381c20052d8b735d6f6b6ef.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSideOpen.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSideOpen.fbx new file mode 100644 index 0000000..d31bdfb --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSideOpen.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 814 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathSideOpen.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathSideOpen.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4967124639062593435, "Model::ground_pathSideOpen", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5074688299900522934, "Geometry::", "Mesh" { + Vertices: *162 { + a: 5,0,-3.79,4.395,0,-3.79,5,0,-5,3.79,0,-5,3.79,0,-4.395,-3.79,0,-5,-3.79,0,-4.395,-5,0,-5,-4.395,0,-3.79,-5,0,-3.79,5,-0.5,-2.17,3.75,-0.5,-2.17,5,0,-2.79,3.75,0,-2.79,2.79,0,-5,2.79,0,-3.75,2.17,-0.5,-5,2.17,-0.5,-3.75,-3.75,0,-2.79,-3.75,-0.5,-2.17,-5,0,-2.79,-5,-0.5,-2.17,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-2.79,0,-5,-2.79,0,-3.75,-2.17,-0.5,-3.75,-3.75,-0.5,-2.17,-2.79,0,-3.75,-3.75,0,-2.79,3.75,-0.5,-2.17,2.17,-0.5,-3.75,3.75,0,-2.79,2.79,0,-3.75,2.17,-0.5,-5,2.17,-0.5,-3.75,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-5,-0.5,5,3.75,-0.5,-2.17,5,-0.5,-2.17,5,-0.5,5,5,-0.5,2.17,-3.75,-0.5,-2.17,-5,-0.5,2.17,-5,-0.5,-2.17,-2.79,0,-5,-2.79,0,-3.75,-3.75,0,-2.79,-5,0,-2.79,2.79,0,-5,3.75,0,-2.79,2.79,0,-3.75,5,0,-2.79 + } + PolygonVertexIndex: *120 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,8,6,-8,9,8,-8,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,36,37,-36,37,38,-36,35,38,-40,39,38,-41,38,41,-41,42,40,-42,43,38,-38,44,38,-44,43,45,-45,46,5,-48,48,47,-6,6,48,-6,49,48,-7,8,49,-7,9,49,-9,3,50,-5,51,4,-51,52,51,-51,4,51,-2,1,51,-1,53,0,-52 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *360 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *108 { + a: -19.68504,-14.92126,-17.30315,-14.92126,-19.68504,-19.68504,-14.92126,-19.68504,-14.92126,-17.30315,14.92126,-19.68504,14.92126,-17.30315,19.68504,-19.68504,17.30315,-14.92126,19.68504,-14.92126,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,4.398538,9.385145,-4.398538,9.385145,2.672529,12.00318,-2.672529,12.00318,4.398538,9.385145,-4.398538,9.385145,2.672529,12.00318,-2.672529,12.00318,-8.543307,-19.68504,-8.543307,-14.76378,8.543307,-19.68504,8.543307,-14.76378,19.68504,19.68504,-14.76378,-8.543307,-19.68504,-8.543307,-19.68504,19.68504,-19.68504,8.543307,14.76378,-8.543307,19.68504,8.543307,19.68504,-8.543307,10.98425,-19.68504,10.98425,-14.76378,14.76378,-10.98425,19.68504,-10.98425,-10.98425,-19.68504,-14.76378,-10.98425,-10.98425,-14.76378,-19.68504,-10.98425 + } + UVIndex: *120 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,8,6,7,9,8,7,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,36,37,35,37,38,35,35,38,39,39,38,40,38,41,40,42,40,41,43,38,37,44,38,43,43,45,44,46,5,47,48,47,5,6,48,5,49,48,6,8,49,6,9,49,8,3,50,4,51,4,50,52,51,50,4,51,1,1,51,0,53,0,51 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *40 { + a: 0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathSideOpen, Model::RootNode + C: "OO",4967124639062593435,0 + + ;Geometry::, Model::Mesh ground_pathSideOpen + C: "OO",5074688299900522934,4967124639062593435 + + ;Material::grass, Model::Mesh ground_pathSideOpen + C: "OO",3024,4967124639062593435 + + ;Material::dirtDark, Model::Mesh ground_pathSideOpen + C: "OO",3022,4967124639062593435 + + ;Material::dirt, Model::Mesh ground_pathSideOpen + C: "OO",3020,4967124639062593435 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSideOpen.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSideOpen.fbx.import new file mode 100644 index 0000000..1408fbf --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSideOpen.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bkhlf7foloc28" +path="res://.godot/imported/ground_pathSideOpen.fbx-c4b2726abbb5c8e28c3b473e4fd8f9ff.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathSideOpen.fbx" +dest_files=["res://.godot/imported/ground_pathSideOpen.fbx-c4b2726abbb5c8e28c3b473e4fd8f9ff.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSplit.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSplit.fbx new file mode 100644 index 0000000..f7dc52c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSplit.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 23 + Millisecond: 908 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathSplit.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathSplit.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5666513200021304919, "Model::ground_pathSplit", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4922896910237421277, "Geometry::", "Mesh" { + Vertices: *270 { + a: 5,0,3.79,3.75,0,3.79,5,0,2.79,3.75,0,2.79,1.25,0,4.41,1.25,0,3.41,-1.25,0,4.41,-1.25,0,3.41,-3.75,0,3.79,-3.75,0,2.79,-5,0,3.79,-5,0,2.79,5,-0.5,2.17,3.75,-0.5,2.17,5,-0.5,-2.17,3.75,-0.5,-2.17,1.25,-0.5,2.79,2.17,-0.5,-3.75,2.17,-0.5,-5,-2.17,-0.5,-5,-1.25,-0.5,2.79,-2.17,-0.5,-3.75,-3.75,-0.5,2.17,-3.75,-0.5,-2.17,-5,-0.5,2.17,-5,-0.5,-2.17,-2.79,0,-5,-2.79,0,-3.75,-3.79,0,-5,-3.75,0,-2.79,-3.79,0,-4.395,-5,0,-2.79,-4.395,0,-3.79,-5,0,-3.79,3.79,0,-5,3.79,0,-4.395,2.79,0,-5,3.75,0,-2.79,2.79,0,-3.75,4.395,0,-3.79,5,0,-3.79,5,0,-2.79,1.25,0,3.41,-1.25,0,3.41,1.25,-0.5,2.79,-1.25,-0.5,2.79,3.75,0,2.79,1.25,0,3.41,3.75,-0.5,2.17,1.25,-0.5,2.79,5,0,2.79,3.75,0,2.79,5,-0.5,2.17,3.75,-0.5,2.17,-1.25,0,3.41,-3.75,0,2.79,-1.25,-0.5,2.79,-3.75,-0.5,2.17,-3.75,0,2.79,-5,0,2.79,-3.75,-0.5,2.17,-5,-0.5,2.17,5,-0.5,-2.17,3.75,-0.5,-2.17,5,0,-2.79,3.75,0,-2.79,2.79,0,-5,2.79,0,-3.75,2.17,-0.5,-5,2.17,-0.5,-3.75,-3.75,0,-2.79,-3.75,-0.5,-2.17,-5,0,-2.79,-5,-0.5,-2.17,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-2.79,0,-5,-2.79,0,-3.75,-2.17,-0.5,-3.75,-3.75,-0.5,-2.17,-2.79,0,-3.75,-3.75,0,-2.79,3.75,-0.5,-2.17,2.17,-0.5,-3.75,3.75,0,-2.79,2.79,0,-3.75,5,0,-5,-5,0,5,5,0,5,-5,0,-5 + } + PolygonVertexIndex: *204 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,7,6,-6,8,6,-8,9,8,-8,10,8,-10,11,10,-10,12,14,-14,15,13,-15,16,13,-16,17,16,-16,18,16,-18,19,16,-19,20,16,-20,21,20,-20,22,20,-22,23,22,-22,24,22,-24,25,24,-24,26,28,-28,29,27,-29,30,29,-29,31,29,-31,32,31,-31,33,31,-33,34,36,-36,37,35,-37,38,37,-37,35,37,-40,39,37,-41,41,40,-38,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,40,86,-40,34,39,-87,35,39,-35,87,88,-5,0,4,-89,1,4,-1,6,87,-5,8,87,-7,10,87,-9,28,89,-31,32,30,-90,33,32,-90 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *612 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,-0.5316743,0.6592761,0.5316743,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *180 { + a: -19.68504,14.92126,-14.76378,14.92126,-19.68504,10.98425,-14.76378,10.98425,-4.92126,17.36221,-4.92126,13.4252,4.92126,17.36221,4.92126,13.4252,14.76378,14.92126,14.76378,10.98425,19.68504,14.92126,19.68504,10.98425,-19.68504,8.543307,-14.76378,8.543307,-19.68504,-8.543307,-14.76378,-8.543307,-4.92126,10.98425,-8.543307,-14.76378,-8.543307,-19.68504,8.543307,-19.68504,4.92126,10.98425,8.543307,-14.76378,14.76378,8.543307,14.76378,-8.543307,19.68504,8.543307,19.68504,-8.543307,10.98425,-19.68504,10.98425,-14.76378,14.92126,-19.68504,14.76378,-10.98425,14.92126,-17.30315,19.68504,-10.98425,17.30315,-14.92126,19.68504,-14.92126,-14.92126,-19.68504,-14.92126,-17.30315,-10.98425,-19.68504,-14.76378,-10.98425,-10.98425,-14.76378,-17.30315,-14.92126,-19.68504,-14.92126,-19.68504,-10.98425,-4.92126,10.45035,4.92126,10.45035,-4.92126,7.314552,4.92126,7.314552,-11.68569,10.93348,-1.545008,10.93348,-12.27324,7.853217,-2.132563,7.853217,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,1.545008,10.93348,11.68569,10.93348,2.132563,7.853217,12.27324,7.853217,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,4.398538,9.385145,-4.398538,9.385145,2.672529,12.00318,-2.672529,12.00318,4.398538,9.385145,-4.398538,9.385145,2.672529,12.00318,-2.672529,12.00318,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,-19.68504 + } + UVIndex: *204 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,7,6,5,8,6,7,9,8,7,10,8,9,11,10,9,12,14,13,15,13,14,16,13,15,17,16,15,18,16,17,19,16,18,20,16,19,21,20,19,22,20,21,23,22,21,24,22,23,25,24,23,26,28,27,29,27,28,30,29,28,31,29,30,32,31,30,33,31,32,34,36,35,37,35,36,38,37,36,35,37,39,39,37,40,41,40,37,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,40,86,39,34,39,86,35,39,34,87,88,4,0,4,88,1,4,0,6,87,4,8,87,6,10,87,8,28,89,30,32,30,89,33,32,89 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *68 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathSplit, Model::RootNode + C: "OO",5666513200021304919,0 + + ;Geometry::, Model::Mesh ground_pathSplit + C: "OO",4922896910237421277,5666513200021304919 + + ;Material::dirt, Model::Mesh ground_pathSplit + C: "OO",3020,5666513200021304919 + + ;Material::dirtDark, Model::Mesh ground_pathSplit + C: "OO",3022,5666513200021304919 + + ;Material::grass, Model::Mesh ground_pathSplit + C: "OO",3024,5666513200021304919 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSplit.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSplit.fbx.import new file mode 100644 index 0000000..a0cca55 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathSplit.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://epumwbvcbx27" +path="res://.godot/imported/ground_pathSplit.fbx-9f503d092dc458dd728e0594e501821a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathSplit.fbx" +dest_files=["res://.godot/imported/ground_pathSplit.fbx-9f503d092dc458dd728e0594e501821a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathStraight.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathStraight.fbx new file mode 100644 index 0000000..1a4074c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathStraight.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 1 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathStraight.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathStraight.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4903691168657611948, "Model::ground_pathStraight", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5431043978749942014, "Geometry::", "Mesh" { + Vertices: *240 { + a: 3.41,0,1.25,2.79,-0.5,1.25,3.41,0,-1.25,2.79,-0.5,-1.25,3.41,0,-1.25,2.79,-0.5,-1.25,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-5,2.17,-0.5,-5,3.41,0,1.25,2.79,0,3.75,2.79,-0.5,1.25,2.17,-0.5,3.75,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,5,-2.79,0,5,-2.17,-0.5,3.75,-2.79,0,3.75,2.79,0,3.75,2.79,0,5,2.17,-0.5,3.75,2.17,-0.5,5,-1.55,-0.5,1.25,-2.17,0,1.25,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,-5,-2.79,0,-5,-1.55,-0.5,1.25,-2.17,-0.5,3.75,-2.17,0,1.25,-2.79,0,3.75,-3.17,0,1.25,-3.79,0,3.75,-3.17,0,-1.25,-3.79,0,-3.75,-3.79,0,-5,-3.79,0,5,-5,0,5,-5,0,-5,5,0,5,4.41,0,-1.25,5,0,-5,3.79,0,-5,4.41,0,1.25,3.79,0,-3.75,3.79,0,5,3.79,0,3.75,-1.55,-0.5,1.25,-1.55,-0.5,-1.25,2.17,-0.5,-5,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-2.17,-0.5,5,2.17,-0.5,5,2.17,-0.5,3.75,2.17,-0.5,-3.75,2.79,-0.5,-1.25,2.79,-0.5,1.25,-2.17,-0.5,3.75,-2.79,0,-5,-2.79,0,5,-2.79,0,3.75,-2.79,0,-3.75,-2.17,0,-1.25,-2.17,0,1.25,3.41,0,1.25,3.41,0,-1.25,2.79,0,-5,2.79,0,-3.75,2.79,0,5,2.79,0,3.75 + } + PolygonVertexIndex: *186 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,41,-45,46,45,-45,47,46,-45,48,50,-50,51,49,-51,52,48,-50,53,49,-52,48,52,-55,55,54,-53,56,58,-58,59,57,-59,60,57,-60,56,61,-59,61,62,-59,62,63,-59,58,63,-65,64,63,-66,66,65,-64,67,61,-57,40,68,-43,44,42,-69,43,42,-45,40,69,-69,69,70,-69,68,70,-72,71,70,-73,73,72,-71,45,69,-41,41,45,-41,74,51,-76,76,75,-52,77,75,-77,74,54,-52,54,55,-52,51,55,-54,53,55,-50,52,49,-56,78,54,-75,79,78,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *558 { + a: -0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *160 { + a: 4.92126,10.45035,4.92126,7.314552,-4.92126,10.45035,-4.92126,7.314552,-1.545008,10.93348,-2.132563,7.853217,-11.68569,10.93348,-12.27324,7.853217,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,1.545008,10.93348,11.68569,10.93348,2.132563,7.853217,12.27324,7.853217,6.245451,2.386479,6.833007,5.466738,16.38613,2.386479,16.97369,5.466738,-19.68504,5.414488,-19.68504,8.550285,-14.76378,5.414488,-14.76378,8.550285,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,-4.92126,3.514425,-4.92126,6.650222,4.92126,3.514425,4.92126,6.650222,14.76378,5.414488,14.76378,8.550285,19.68504,5.414488,19.68504,8.550285,-6.245451,2.386479,-16.38613,2.386479,-6.833007,5.466738,-16.97369,5.466738,12.48032,4.92126,14.92126,14.76378,12.48032,-4.92126,14.92126,-14.76378,14.92126,-19.68504,14.92126,19.68504,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-17.36221,-4.92126,-19.68504,-19.68504,-14.92126,-19.68504,-17.36221,4.92126,-14.92126,-14.76378,-14.92126,19.68504,-14.92126,14.76378,6.102362,4.92126,6.102362,-4.92126,-8.543307,-19.68504,8.543307,-19.68504,8.543307,-14.76378,8.543307,19.68504,-8.543307,19.68504,-8.543307,14.76378,-8.543307,-14.76378,-10.98425,-4.92126,-10.98425,4.92126,8.543307,14.76378,10.98425,-19.68504,10.98425,19.68504,10.98425,14.76378,10.98425,-14.76378,8.543307,-4.92126,8.543307,4.92126,-13.4252,4.92126,-13.4252,-4.92126,-10.98425,-19.68504,-10.98425,-14.76378,-10.98425,19.68504,-10.98425,14.76378 + } + UVIndex: *186 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,41,44,46,45,44,47,46,44,48,50,49,51,49,50,52,48,49,53,49,51,48,52,54,55,54,52,56,58,57,59,57,58,60,57,59,56,61,58,61,62,58,62,63,58,58,63,64,64,63,65,66,65,63,67,61,56,40,68,42,44,42,68,43,42,44,40,69,68,69,70,68,68,70,71,71,70,72,73,72,70,45,69,40,41,45,40,74,51,75,76,75,51,77,75,76,74,54,51,54,55,51,51,55,53,53,55,49,52,49,55,78,54,74,79,78,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *62 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathStraight, Model::RootNode + C: "OO",4903691168657611948,0 + + ;Geometry::, Model::Mesh ground_pathStraight + C: "OO",5431043978749942014,4903691168657611948 + + ;Material::dirtDark, Model::Mesh ground_pathStraight + C: "OO",3022,4903691168657611948 + + ;Material::grass, Model::Mesh ground_pathStraight + C: "OO",3024,4903691168657611948 + + ;Material::dirt, Model::Mesh ground_pathStraight + C: "OO",3020,4903691168657611948 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathStraight.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathStraight.fbx.import new file mode 100644 index 0000000..f48bdf7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathStraight.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dfthyedlgpj0y" +path="res://.godot/imported/ground_pathStraight.fbx-74ec802f328504872cab3f932f59aac7.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathStraight.fbx" +dest_files=["res://.godot/imported/ground_pathStraight.fbx-74ec802f328504872cab3f932f59aac7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathTile.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathTile.fbx new file mode 100644 index 0000000..d8fb16e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathTile.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 99 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_pathTile.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_pathTile.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5244109798677258783, "Model::ground_pathTile", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5577923470966082199, "Geometry::", "Mesh" { + Vertices: *306 { + a: 5,1.127987E-16,5,3.411809,1.127987E-16,-0.2742104,5,1.127987E-16,-5,2.275878,1.127987E-16,-2.225159,0.720243,1.127987E-16,-3.780793,-5,1.127987E-16,-5,3.976473,1.127987E-16,1.899832,2.608905,1.127987E-16,-1.117056,-1.404794,1.127987E-16,-3.211392,-2.155137,1.127987E-16,-2.071429,-2.529888,1.127987E-16,-0.8309131,-3.511574,1.127987E-16,0.428237,-3.511574,1.127987E-16,2.428237,2.49363,1.127987E-16,3.525002,-5,1.127987E-16,5,0.498106,1.127987E-16,3.160288,-0.6806579,1.127987E-16,3.108822,-1.779523,1.127987E-16,3.428237,2.90773,1.127987E-16,1.635163,2.538045,1.127987E-16,0.2118158,1.748553,1.127987E-16,-0.6169497,1.41911,1.127987E-16,-1.71313,0.4309819,1.127987E-16,-2.701257,-0.7987158,1.127987E-16,-2.371761,-1.2693,1.127987E-16,-1.656823,-1.655567,1.127987E-16,-0.3781857,-2.543688,1.127987E-16,0.760954,-2.543688,1.127987E-16,1.869428,-1.653177,1.127987E-16,2.383564,-0.7977212,1.127987E-16,2.134903,0.6067324,1.127987E-16,2.196223,2.140102,1.127987E-16,2.47647,2.362589,-0.5,1.285652,1.748486,-0.5,1.958698,2.06684,-0.5,0.146974,1.435247,-0.5,-0.5160384,0.5217901,-0.5,1.734499,1.171692,-0.5,-1.392982,0.3811898,-0.5,-2.183484,-0.6017727,-0.5,1.685444,-0.6025684,-0.5,-1.919887,-1.286137,-0.5,1.884372,-0.9790356,-0.5,-1.347937,-1.288049,-0.5,-0.3250271,-1.998546,-0.5,1.473063,-1.998546,-0.5,0.5862846,0.5217901,-0.5,1.734499,1.748486,-0.5,1.958698,0.6067324,1.127987E-16,2.196223,2.140102,1.127987E-16,2.47647,-0.7987158,1.127987E-16,-2.371761,-0.6025684,-0.5,-1.919887,-1.2693,1.127987E-16,-1.656823,-0.9790356,-0.5,-1.347937,1.41911,1.127987E-16,-1.71313,1.171692,-0.5,-1.392982,0.4309819,1.127987E-16,-2.701257,0.3811898,-0.5,-2.183484,-1.998546,-0.5,0.5862846,-1.998546,-0.5,1.473063,-2.543688,1.127987E-16,0.760954,-2.543688,1.127987E-16,1.869428,1.748553,1.127987E-16,-0.6169497,2.538045,1.127987E-16,0.2118158,1.435247,-0.5,-0.5160384,2.06684,-0.5,0.146974,-1.286137,-0.5,1.884372,-1.653177,1.127987E-16,2.383564,-1.998546,-0.5,1.473063,-2.543688,1.127987E-16,1.869428,-1.286137,-0.5,1.884372,-0.6017727,-0.5,1.685444,-1.653177,1.127987E-16,2.383564,-0.7977212,1.127987E-16,2.134903,2.90773,1.127987E-16,1.635163,2.140102,1.127987E-16,2.47647,2.362589,-0.5,1.285652,1.748486,-0.5,1.958698,-1.2693,1.127987E-16,-1.656823,-0.9790356,-0.5,-1.347937,-1.655567,1.127987E-16,-0.3781857,-1.288049,-0.5,-0.3250271,2.06684,-0.5,0.146974,2.538045,1.127987E-16,0.2118158,2.362589,-0.5,1.285652,2.90773,1.127987E-16,1.635163,-1.655567,1.127987E-16,-0.3781857,-1.288049,-0.5,-0.3250271,-2.543688,1.127987E-16,0.760954,-1.998546,-0.5,0.5862846,0.4309819,1.127987E-16,-2.701257,0.3811898,-0.5,-2.183484,-0.7987158,1.127987E-16,-2.371761,-0.6025684,-0.5,-1.919887,-0.6017727,-0.5,1.685444,0.5217901,-0.5,1.734499,-0.7977212,1.127987E-16,2.134903,0.6067324,1.127987E-16,2.196223,1.41911,1.127987E-16,-1.71313,1.748553,1.127987E-16,-0.6169497,1.171692,-0.5,-1.392982,1.435247,-0.5,-0.5160384 + } + PolygonVertexIndex: *258 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,0,-2,7,1,-4,8,4,-6,9,8,-6,10,9,-6,11,10,-6,12,11,-6,6,13,-1,14,0,-14,5,14,-13,15,14,-14,16,14,-16,17,14,-17,12,14,-18,1,7,-19,19,18,-8,3,19,-8,20,19,-4,21,20,-4,4,21,-4,22,21,-5,8,22,-5,23,22,-9,24,23,-9,25,24,-9,9,25,-9,26,25,-10,10,26,-10,11,26,-11,27,26,-12,11,12,-28,12,17,-28,27,17,-29,28,17,-30,17,16,-30,16,15,-30,29,15,-31,30,15,-32,15,13,-32,31,13,-19,18,13,-2,6,1,-14,32,34,-34,35,33,-35,36,33,-36,37,36,-36,38,36,-38,39,36,-39,40,39,-39,41,39,-41,42,41,-41,43,41,-43,44,41,-44,45,44,-44,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *774 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.1351128,0.6597193,-0.7392665,0.1351128,0.6597193,-0.7392665,0.1351128,0.6597193,-0.7392665,0.1351128,0.6597193,-0.7392665,0.1351128,0.6597193,-0.7392665,0.1351128,0.6597193,-0.7392665,0.6444606,0.6361834,0.4241948,0.6444606,0.6361834,0.4241948,0.6444606,0.6361834,0.4241948,0.6444606,0.6361834,0.4241948,0.6444606,0.6361834,0.4241948,0.6444606,0.6361834,0.4241948,-0.5514417,0.6259582,0.5514421,-0.5514417,0.6259582,0.5514421,-0.5514417,0.6259582,0.5514421,-0.5514417,0.6259582,0.5514421,-0.5514417,0.6259582,0.5514421,-0.5514417,0.6259582,0.5514421,0.6759352,0.7369611,0,0.6759352,0.7369611,0,0.6759352,0.7369611,0,0.6759352,0.7369611,0,0.6759352,0.7369611,0,0.6759352,0.7369611,0,-0.622812,0.5100029,0.5932979,-0.622812,0.5100029,0.5932979,-0.622812,0.5100029,0.5932979,-0.622812,0.5100029,0.5932979,-0.622812,0.5100029,0.5932979,-0.622812,0.5100029,0.5932979,0.3151581,0.7763384,-0.54587,0.3151581,0.7763384,-0.54587,0.3151581,0.7763384,-0.54587,0.3151581,0.7763384,-0.54587,0.3151581,0.7763384,-0.54587,0.3151581,0.7763384,-0.54587,-0.2228918,0.6019418,-0.766802,-0.2228918,0.6019418,-0.766802,-0.2228918,0.6019418,-0.766802,-0.2228918,0.6019418,-0.766802,-0.2228918,0.6019418,-0.766802,-0.2228918,0.6019418,-0.766802,-0.455544,0.7872202,-0.415649,-0.455544,0.7872202,-0.415649,-0.455544,0.7872202,-0.415649,-0.455544,0.7872202,-0.415649,-0.455544,0.7872202,-0.415649,-0.455544,0.7872202,-0.415649,0.7715665,0.5919093,0.2330845,0.7715665,0.5919093,0.2330845,0.7715665,0.5919093,0.2330845,0.7715665,0.5919093,0.2330845,0.7715665,0.5919093,0.2330845,0.7715665,0.5919093,0.2330845,-0.7267695,0.6604348,0.1887637,-0.7267695,0.6604348,0.1887637,-0.7267695,0.6604348,0.1887637,-0.7267695,0.6604348,0.1887637,-0.7267695,0.6604348,0.1887637,-0.7267695,0.6604348,0.1887637,0.6627253,0.5420592,0.5166884,0.6627253,0.5420592,0.5166884,0.6627253,0.5420592,0.5166884,0.6627253,0.5420592,0.5166884,0.6627253,0.5420592,0.5166884,0.6627253,0.5420592,0.5166884,0.1853617,0.6979113,0.6917808,0.1853617,0.6979113,0.6917808,0.1853617,0.6979113,0.6917808,0.1853617,0.6979113,0.6917808,0.1853617,0.6979113,0.6917808,0.1853617,0.6979113,0.6917808,0.03217843,0.6751192,-0.7370065,0.03217843,0.6751192,-0.7370065,0.03217843,0.6751192,-0.7370065,0.03217843,0.6751192,-0.7370065,0.03217843,0.6751192,-0.7370065,0.03217843,0.6751192,-0.7370065,-0.7999589,0.5497862,0.2404179,-0.7999589,0.5497862,0.2404179,-0.7999589,0.5497862,0.2404179,-0.7999589,0.5497862,0.2404179,-0.7999589,0.5497862,0.2404179,-0.7999589,0.5497862,0.2404179 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *204 { + a: -19.68504,19.68504,-13.43232,-1.079568,-19.68504,-19.68504,-8.96015,-8.760469,-2.835602,-14.88501,19.68504,-19.68504,-15.65541,7.479653,-10.27128,-4.397858,5.530685,-12.64328,8.484793,-8.155231,9.960189,-3.271311,13.82509,1.685972,13.82509,9.559988,-9.817441,13.87796,19.68504,19.68504,-1.961047,12.44208,2.679755,12.23946,7.005996,13.497,-11.44776,6.437652,-9.992302,0.8339204,-6.884068,-2.428936,-5.587046,-6.744605,-1.696779,-10.63487,3.144551,-9.337641,4.997244,-6.522926,6.51798,-1.48892,10.01452,2.995882,10.01452,7.359951,6.508571,9.38411,3.140635,8.405128,-2.38871,8.646545,-8.4256,9.749884,-9.301531,5.061623,-6.883804,7.711409,-8.137165,0.5786378,-5.650578,-2.031647,-2.054292,6.828738,-4.612961,-5.484182,-1.500747,-8.596394,2.369184,6.635604,2.372317,-7.558611,5.063533,7.41879,3.854471,-5.306839,5.07106,-1.279634,7.868291,5.799462,7.868291,2.308207,-3.248543,2.708629,-8.158053,2.708629,-3.904332,5.32802,-10.04122,5.32802,6.070783,4.9371,5.009349,2.385697,2.701051,4.9371,2.313563,2.385697,-0.8185151,5.458227,-0.6160446,2.93404,-6.320181,5.458227,-5.017377,2.93404,-2.308207,4.468044,-5.799462,4.468044,-2.995882,7.380311,-7.359951,7.380311,2.989553,3.396507,7.495922,3.396507,2.426421,1.108009,6.031516,1.108009,0.675754,5.712593,0.9445336,8.835634,3.91441,5.712593,4.992853,8.835634,6.933047,1.865505,4.127179,1.865505,8.869221,4.330634,5.361885,4.330634,-2.960431,10.07305,1.523353,10.07305,-2.530323,6.880906,1.056704,6.880906,4.799094,3.948072,3.965439,1.505773,-0.4595994,3.948072,-0.2415151,1.505773,2.605649,3.6273,3.319094,6.248885,7.237376,3.6273,9.108753,6.248885,-2.833399,3.282606,-2.108803,0.9400976,-8.52016,3.282606,-6.65821,0.9400976,4.391465,6.862799,3.674517,4.114198,-0.6206482,6.862799,-0.3351732,4.114198,2.077488,3.093147,-2.350202,3.093147,2.771019,5.761549,-2.763594,5.761549,-4.851138,4.008965,-0.3447794,4.008965,-3.924412,1.652337,-0.3193257,1.652337 + } + UVIndex: *258 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,0,1,7,1,3,8,4,5,9,8,5,10,9,5,11,10,5,12,11,5,6,13,0,14,0,13,5,14,12,15,14,13,16,14,15,17,14,16,12,14,17,1,7,18,19,18,7,3,19,7,20,19,3,21,20,3,4,21,3,22,21,4,8,22,4,23,22,8,24,23,8,25,24,8,9,25,8,26,25,9,10,26,9,11,26,10,27,26,11,11,12,27,12,17,27,27,17,28,28,17,29,17,16,29,16,15,29,29,15,30,30,15,31,15,13,31,31,13,18,18,13,1,6,1,13,32,34,33,35,33,34,36,33,35,37,36,35,38,36,37,39,36,38,40,39,38,41,39,40,42,41,40,43,41,42,44,41,43,45,44,43,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *86 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_pathTile, Model::RootNode + C: "OO",5244109798677258783,0 + + ;Geometry::, Model::Mesh ground_pathTile + C: "OO",5577923470966082199,5244109798677258783 + + ;Material::grass, Model::Mesh ground_pathTile + C: "OO",3024,5244109798677258783 + + ;Material::dirt, Model::Mesh ground_pathTile + C: "OO",3020,5244109798677258783 + + ;Material::dirtDark, Model::Mesh ground_pathTile + C: "OO",3022,5244109798677258783 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_pathTile.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathTile.fbx.import new file mode 100644 index 0000000..3033e82 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_pathTile.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c2oo783m76mnu" +path="res://.godot/imported/ground_pathTile.fbx-43cf0f7bc577a86cb64e8c096c0ced99.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_pathTile.fbx" +dest_files=["res://.godot/imported/ground_pathTile.fbx-43cf0f7bc577a86cb64e8c096c0ced99.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBend.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBend.fbx new file mode 100644 index 0000000..1b8a8ed --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBend.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 198 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverBend.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverBend.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5352634455244949226, "Model::ground_riverBend", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5737519465729344315, "Geometry::", "Mesh" { + Vertices: *216 { + a: 2.524562,0,-2.983799,1.746338,0,-1.105,1.925688,-0.5,-3.144267,1.209402,-0.5,-1.415,-1.105,0,1.746338,-2.983799,0,2.524562,-1.415,-0.5,1.209402,-3.144267,-0.5,1.925688,0.5083618,0,0.5083618,-1.105,0,1.746338,0.06995562,-0.5,0.06995562,-1.415,-0.5,1.209402,-2.17,-0.5,-5,-2.549148,-0.5,-3.585,-2.79,0,-5,-3.086084,0,-3.895,-2.549148,-0.5,-3.585,-3.585,-0.5,-2.549148,-3.086084,0,-3.895,-3.895,0,-3.086084,2.79,0,-5,2.524562,0,-2.983799,2.17,-0.5,-5,1.925688,-0.5,-3.144267,-2.983799,0,2.524562,-5,0,2.79,-3.144267,-0.5,1.925688,-5,-0.5,2.17,-3.585,-0.5,-2.549148,-5,-0.5,-2.17,-3.895,0,-3.086084,-5,0,-2.79,1.746338,0,-1.105,0.5083618,0,0.5083618,1.209402,-0.5,-1.415,0.06995562,-0.5,0.06995562,3.79,0,-5,3.490488,0,-2.72498,2.79,0,-5,2.612363,0,-0.605,2.524562,0,-2.983799,1.215469,0,1.215469,1.746338,0,-1.105,0.5083618,0,0.5083618,-0.605,0,2.612363,-1.105,0,1.746338,-2.72498,0,3.490488,-2.983799,0,2.524562,-5,0,3.79,-5,0,2.79,-2.79,0,-5,-3.086084,0,-3.895,-3.79,0,-5,-3.895,0,-3.086084,-4.173555,0,-4.173555,-5,0,-2.79,-5,0,-3.79,-5,0,-5,-5,0,5,5,0,5,5,0,-5,2.17,-0.5,-5,1.925688,-0.5,-3.144267,-2.17,-0.5,-5,1.209402,-0.5,-1.415,0.06995562,-0.5,0.06995562,-1.415,-0.5,1.209402,-3.144267,-0.5,1.925688,-2.549148,-0.5,-3.585,-3.585,-0.5,-2.549148,-5,-0.5,2.17,-5,-0.5,-2.17 + } + PolygonVertexIndex: *162 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,39,-41,42,41,-41,43,41,-43,44,41,-44,45,44,-44,46,44,-46,47,46,-46,48,46,-48,49,48,-48,50,52,-52,53,51,-53,54,53,-53,55,53,-55,56,55,-55,52,57,-55,56,54,-58,58,59,-45,41,44,-60,39,41,-60,60,39,-60,37,39,-61,36,37,-61,46,58,-45,48,58,-47,61,63,-63,64,62,-64,65,64,-64,66,65,-64,67,66,-64,68,67,-64,69,67,-69,70,67,-70,71,70,-70 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *486 { + a: -0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: -14.65661,3.636156,-6.650321,3.636156,-14.33801,0.5165871,-6.968928,0.5165871,6.650321,3.636156,14.65661,3.636156,6.968928,0.5165871,14.33801,0.5165871,-0.3694468,2.176982,7.636845,2.176982,-0.05083954,-0.9425871,7.318238,-0.9425871,16.80312,8.983997,11.03573,8.983997,16.17135,12.05549,11.6675,12.05549,2.883693,11.84702,-2.883693,11.84702,2.25193,14.91852,-2.25193,14.91852,-20.95036,6.455064,-12.94407,6.455064,-20.63176,3.335495,-13.26268,3.335495,12.94407,6.455064,20.95036,6.455064,13.26268,3.335495,20.63176,3.335495,-11.03573,8.983997,-16.80312,8.983997,-11.6675,12.05549,-16.17135,12.05549,-7.636845,2.176982,0.3694468,2.176982,-7.318238,-0.9425871,0.05083954,-0.9425871,-14.92126,-19.68504,-13.74208,-10.72827,-10.98425,-19.68504,-10.28489,-2.38189,-9.939221,-11.74724,-4.785309,4.785309,-6.875346,-4.350394,-2.001425,2.001425,2.38189,10.28489,4.350394,6.875346,10.72827,13.74208,11.74724,9.939221,19.68504,14.92126,19.68504,10.98425,10.98425,-19.68504,12.14994,-15.33465,14.92126,-19.68504,15.33465,-12.14994,16.43132,-16.43132,19.68504,-10.98425,19.68504,-14.92126,19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,-19.68504,-19.68504,-8.543307,-19.68504,-7.58145,-12.37901,8.543307,-19.68504,-4.761426,-5.570866,-0.2754158,0.2754158,5.570866,4.761426,12.37901,7.58145,10.03602,-14.11417,14.11417,-10.03602,19.68504,8.543307,19.68504,-8.543307 + } + UVIndex: *162 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,39,40,42,41,40,43,41,42,44,41,43,45,44,43,46,44,45,47,46,45,48,46,47,49,48,47,50,52,51,53,51,52,54,53,52,55,53,54,56,55,54,52,57,54,56,54,57,58,59,44,41,44,59,39,41,59,60,39,59,37,39,60,36,37,60,46,58,44,48,58,46,61,63,62,64,62,63,65,64,63,66,65,63,67,66,63,68,67,63,69,67,68,70,67,69,71,70,69 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *54 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverBend, Model::RootNode + C: "OO",5352634455244949226,0 + + ;Geometry::, Model::Mesh ground_riverBend + C: "OO",5737519465729344315,5352634455244949226 + + ;Material::dirtDark, Model::Mesh ground_riverBend + C: "OO",3022,5352634455244949226 + + ;Material::dirt, Model::Mesh ground_riverBend + C: "OO",3020,5352634455244949226 + + ;Material::grass, Model::Mesh ground_riverBend + C: "OO",3024,5352634455244949226 + + ;Material::water, Model::Mesh ground_riverBend + C: "OO",3042,5352634455244949226 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBend.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBend.fbx.import new file mode 100644 index 0000000..17a8a70 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBend.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b4ibwumh42svh" +path="res://.godot/imported/ground_riverBend.fbx-4d3fbdadcea4eda6bedea38a09c913cf.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverBend.fbx" +dest_files=["res://.godot/imported/ground_riverBend.fbx-4d3fbdadcea4eda6bedea38a09c913cf.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBendBank.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBendBank.fbx new file mode 100644 index 0000000..5b63766 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBendBank.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 295 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverBendBank.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverBendBank.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4912625203025776519, "Model::ground_riverBendBank", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5125152128781692272, "Geometry::", "Mesh" { + Vertices: *216 { + a: 2.524562,0,-2.983799,1.746338,0,-1.105,1.925688,-0.5,-3.144267,1.209402,-0.5,-1.415,-1.105,0,1.746338,-2.983799,0,2.524562,-1.415,-0.5,1.209402,-3.144267,-0.5,1.925688,0.5083618,0,0.5083618,-1.105,0,1.746338,0.06995562,-0.5,0.06995562,-1.415,-0.5,1.209402,-2.17,-0.5,-5,-2.549148,-0.5,-3.585,-2.79,0,-5,-3.086084,0,-3.895,-2.549148,-0.5,-3.585,-3.585,-0.5,-2.549148,-3.086084,0,-3.895,-3.895,0,-3.086084,2.79,0,-5,2.524562,0,-2.983799,2.17,-0.5,-5,1.925688,-0.5,-3.144267,-2.983799,0,2.524562,-5,0,2.79,-3.144267,-0.5,1.925688,-5,-0.5,2.17,-3.585,-0.5,-2.549148,-5,-0.5,-2.17,-3.895,0,-3.086084,-5,0,-2.79,1.746338,0,-1.105,0.5083618,0,0.5083618,1.209402,-0.5,-1.415,0.06995562,-0.5,0.06995562,-2.79,0,-5,-3.086084,0,-3.895,-3.79,0,-5,-3.895,0,-3.086084,-4.173555,0,-4.173555,-5,0,-2.79,-5,0,-3.79,4.659258,0,-2.411809,3.660254,0,5.760766E-09,3.79,0,-5,2.79,0,-5,2.071068,0,2.071068,2.524562,0,-2.983799,1.746338,0,-1.105,-5.875878E-08,0,3.660254,0.5083618,0,0.5083618,-1.105,0,1.746338,-2.411809,0,4.659258,-2.983799,0,2.524562,-5,0,3.79,-5,0,2.79,-5,0,-5,5,0,-5,5,0,5,-5,0,5,2.17,-0.5,-5,1.925688,-0.5,-3.144267,-2.17,-0.5,-5,1.209402,-0.5,-1.415,0.06995562,-0.5,0.06995562,-1.415,-0.5,1.209402,-3.144267,-0.5,1.925688,-2.549148,-0.5,-3.585,-3.585,-0.5,-2.549148,-5,-0.5,2.17,-5,-0.5,-2.17 + } + PolygonVertexIndex: *162 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,39,-41,42,41,-41,43,45,-45,46,44,-46,47,44,-47,48,47,-47,49,47,-49,50,47,-50,51,50,-50,52,50,-52,53,50,-53,54,53,-53,55,53,-55,56,55,-55,38,57,-41,42,40,-58,58,45,-44,58,43,-60,43,44,-60,44,47,-60,47,50,-60,50,53,-60,60,59,-54,55,60,-54,61,63,-63,64,62,-64,65,64,-64,66,65,-64,67,66,-64,68,67,-64,69,67,-69,70,67,-70,71,70,-70 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *486 { + a: -0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.619056,0.7676294,0.1658756,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,0.4531805,0.7676294,0.4531805,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,0.1658756,0.7676294,0.619056,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: -14.65661,3.636156,-6.650321,3.636156,-14.33801,0.5165871,-6.968928,0.5165871,6.650321,3.636156,14.65661,3.636156,6.968928,0.5165871,14.33801,0.5165871,-0.3694468,2.176982,7.636845,2.176982,-0.05083954,-0.9425871,7.318238,-0.9425871,16.80312,8.983997,11.03573,8.983997,16.17135,12.05549,11.6675,12.05549,2.883693,11.84702,-2.883693,11.84702,2.25193,14.91852,-2.25193,14.91852,-20.95036,6.455064,-12.94407,6.455064,-20.63176,3.335495,-13.26268,3.335495,12.94407,6.455064,20.95036,6.455064,13.26268,3.335495,20.63176,3.335495,-11.03573,8.983997,-16.80312,8.983997,-11.6675,12.05549,-16.17135,12.05549,-7.636845,2.176982,0.3694468,2.176982,-7.318238,-0.9425871,0.05083954,-0.9425871,10.98425,-19.68504,12.14994,-15.33465,14.92126,-19.68504,15.33465,-12.14994,16.43132,-16.43132,19.68504,-10.98425,19.68504,-14.92126,-18.34354,-9.495313,-14.41045,2.268018E-08,-14.92126,-19.68504,-10.98425,-19.68504,-8.15381,8.153811,-9.939221,-11.74724,-6.875346,-4.350394,2.313338E-07,14.41045,-2.001425,2.001425,4.350394,6.875346,9.495314,18.34354,11.74724,9.939221,19.68504,14.92126,19.68504,10.98425,19.68504,-19.68504,-19.68504,-19.68504,-19.68504,19.68504,19.68504,19.68504,-8.543307,-19.68504,-7.58145,-12.37901,8.543307,-19.68504,-4.761426,-5.570866,-0.2754158,0.2754158,5.570866,4.761426,12.37901,7.58145,10.03602,-14.11417,14.11417,-10.03602,19.68504,8.543307,19.68504,-8.543307 + } + UVIndex: *162 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,39,40,42,41,40,43,45,44,46,44,45,47,44,46,48,47,46,49,47,48,50,47,49,51,50,49,52,50,51,53,50,52,54,53,52,55,53,54,56,55,54,38,57,40,42,40,57,58,45,43,58,43,59,43,44,59,44,47,59,47,50,59,50,53,59,60,59,53,55,60,53,61,63,62,64,62,63,65,64,63,66,65,63,67,66,63,68,67,63,69,67,68,70,67,69,71,70,69 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *54 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverBendBank, Model::RootNode + C: "OO",4912625203025776519,0 + + ;Geometry::, Model::Mesh ground_riverBendBank + C: "OO",5125152128781692272,4912625203025776519 + + ;Material::dirtDark, Model::Mesh ground_riverBendBank + C: "OO",3022,4912625203025776519 + + ;Material::dirt, Model::Mesh ground_riverBendBank + C: "OO",3020,4912625203025776519 + + ;Material::grass, Model::Mesh ground_riverBendBank + C: "OO",3024,4912625203025776519 + + ;Material::water, Model::Mesh ground_riverBendBank + C: "OO",3042,4912625203025776519 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBendBank.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBendBank.fbx.import new file mode 100644 index 0000000..87b75ae --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverBendBank.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cftfiet3qg8fw" +path="res://.godot/imported/ground_riverBendBank.fbx-ee654a9bd20723a1a3a5c1ccc94784f5.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverBendBank.fbx" +dest_files=["res://.godot/imported/ground_riverBendBank.fbx-ee654a9bd20723a1a3a5c1ccc94784f5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCorner.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCorner.fbx new file mode 100644 index 0000000..d8332fb --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCorner.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 393 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4784343303510723869, "Model::ground_riverCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5187271585522254319, "Geometry::", "Mesh" { + Vertices: *153 { + a: 2.524562,0,-2.983799,1.746338,0,-1.105,1.925688,-0.5,-3.144267,1.209402,-0.5,-1.415,-1.105,0,1.746338,-2.983799,0,2.524562,-1.415,-0.5,1.209402,-3.144267,-0.5,1.925688,0.5083618,0,0.5083618,-1.105,0,1.746338,0.06995562,-0.5,0.06995562,-1.415,-0.5,1.209402,2.79,0,-5,2.524562,0,-2.983799,2.17,-0.5,-5,1.925688,-0.5,-3.144267,-2.983799,0,2.524562,-5,0,2.79,-3.144267,-0.5,1.925688,-5,-0.5,2.17,1.746338,0,-1.105,0.5083618,0,0.5083618,1.209402,-0.5,-1.415,0.06995562,-0.5,0.06995562,3.79,0,-5,3.490488,0,-2.72498,2.79,0,-5,2.612363,0,-0.605,2.524562,0,-2.983799,1.215469,0,1.215469,1.746338,0,-1.105,0.5083618,0,0.5083618,-0.605,0,2.612363,-1.105,0,1.746338,-2.72498,0,3.490488,-2.983799,0,2.524562,-5,0,3.79,-5,0,2.79,-5,0,5,5,0,5,5,0,-5,2.17,-0.5,-5,1.925688,-0.5,-3.144267,-2.17,-0.5,-5,1.209402,-0.5,-1.415,0.06995562,-0.5,0.06995562,-1.415,-0.5,1.209402,-3.144267,-0.5,1.925688,-5,-0.5,-5,-5,-0.5,2.17,-5,-0.5,-2.17 + } + PolygonVertexIndex: *120 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,27,-27,29,27,-29,30,29,-29,31,29,-31,32,29,-32,33,32,-32,34,32,-34,35,34,-34,36,34,-36,37,36,-36,38,39,-33,29,32,-40,27,29,-40,40,27,-40,25,27,-41,24,25,-41,34,38,-33,36,38,-35,41,43,-43,44,42,-44,45,44,-44,46,45,-44,47,46,-44,48,47,-44,49,47,-49,50,49,-49 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *360 { + a: -0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.5829846,0.7757683,-0.2414801,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.2414801,0.7757683,-0.5829846,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.3841394,0.7757683,-0.5006202,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.6256195,0.7757683,-0.08236437,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.08236437,0.7757683,-0.6256195,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,-0.5006202,0.7757683,-0.3841394,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *102 { + a: -14.65661,3.636156,-6.650321,3.636156,-14.33801,0.5165871,-6.968928,0.5165871,6.650321,3.636156,14.65661,3.636156,6.968928,0.5165871,14.33801,0.5165871,-0.3694468,2.176982,7.636845,2.176982,-0.05083954,-0.9425871,7.318238,-0.9425871,-20.95036,6.455064,-12.94407,6.455064,-20.63176,3.335495,-13.26268,3.335495,12.94407,6.455064,20.95036,6.455064,13.26268,3.335495,20.63176,3.335495,-7.636845,2.176982,0.3694468,2.176982,-7.318238,-0.9425871,0.05083954,-0.9425871,-14.92126,-19.68504,-13.74208,-10.72827,-10.98425,-19.68504,-10.28489,-2.38189,-9.939221,-11.74724,-4.785309,4.785309,-6.875346,-4.350394,-2.001425,2.001425,2.38189,10.28489,4.350394,6.875346,10.72827,13.74208,11.74724,9.939221,19.68504,14.92126,19.68504,10.98425,19.68504,19.68504,-19.68504,19.68504,-19.68504,-19.68504,-8.543307,-19.68504,-7.58145,-12.37901,8.543307,-19.68504,-4.761426,-5.570866,-0.2754158,0.2754158,5.570866,4.761426,12.37901,7.58145,19.68504,-19.68504,19.68504,8.543307,19.68504,-8.543307 + } + UVIndex: *120 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,27,26,29,27,28,30,29,28,31,29,30,32,29,31,33,32,31,34,32,33,35,34,33,36,34,35,37,36,35,38,39,32,29,32,39,27,29,39,40,27,39,25,27,40,24,25,40,34,38,32,36,38,34,41,43,42,44,42,43,45,44,43,46,45,43,47,46,43,48,47,43,49,47,48,50,49,48 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *40 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverCorner, Model::RootNode + C: "OO",4784343303510723869,0 + + ;Geometry::, Model::Mesh ground_riverCorner + C: "OO",5187271585522254319,4784343303510723869 + + ;Material::dirtDark, Model::Mesh ground_riverCorner + C: "OO",3022,4784343303510723869 + + ;Material::dirt, Model::Mesh ground_riverCorner + C: "OO",3020,4784343303510723869 + + ;Material::grass, Model::Mesh ground_riverCorner + C: "OO",3024,4784343303510723869 + + ;Material::water, Model::Mesh ground_riverCorner + C: "OO",3042,4784343303510723869 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCorner.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCorner.fbx.import new file mode 100644 index 0000000..ba951ed --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://do5uxhv4mwysw" +path="res://.godot/imported/ground_riverCorner.fbx-cf5f2a4fe44da71155b1f2785f11598e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverCorner.fbx" +dest_files=["res://.godot/imported/ground_riverCorner.fbx-cf5f2a4fe44da71155b1f2785f11598e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCornerSmall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCornerSmall.fbx new file mode 100644 index 0000000..1874bfa --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCornerSmall.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 490 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverCornerSmall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverCornerSmall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4670913646268357491, "Model::ground_riverCornerSmall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4865046133300688501, "Geometry::", "Mesh" { + Vertices: *111 { + a: 5,0,-3.79,3.79,0,-3.79,5,0,-5,3.79,0,-5,5,-0.5,-2.17,3.75,-0.5,-2.17,5,0,-2.79,3.75,0,-2.79,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-5,2.17,-0.5,-5,2.929954,0,-3.185668,2.400341,-0.5,-2.821205,2.79,0,-3.75,2.17,-0.5,-3.75,3.75,-0.5,-2.17,2.400341,-0.5,-2.821205,3.75,0,-2.79,2.929954,0,-3.185668,5,0,-2.79,3.75,0,-2.79,2.79,0,-5,2.929954,0,-3.185668,2.79,0,-3.75,-2.17,-0.5,-5,-5,-0.5,2.17,-5,-0.5,-5,-5,-0.5,-2.17,-5,-0.5,5,2.17,-0.5,-5,2.17,-0.5,-3.75,2.400341,-0.5,-2.821205,3.75,-0.5,-2.17,5,-0.5,-2.17,5,-0.5,5,5,-0.5,2.17 + } + PolygonVertexIndex: *78 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,0,-22,1,21,-1,3,21,-2,22,21,-4,23,21,-23,24,23,-23,25,27,-27,28,26,-28,26,29,-26,25,29,-31,30,29,-32,31,29,-33,32,29,-34,33,29,-35,29,35,-35,36,34,-36 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *234 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *74 { + a: -19.68504,-14.92126,-14.92126,-14.92126,-19.68504,-19.68504,-14.92126,-19.68504,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,-9.396606,10.93348,-8.505797,7.853217,-11.68569,10.93348,-12.27324,7.853217,9.584359,9.198801,3.684564,9.198801,8.523629,12.14975,4.938944,12.14975,-19.68504,-10.98425,-14.76378,-10.98425,-10.98425,-19.68504,-11.53525,-12.542,-10.98425,-14.76378,8.543307,-19.68504,19.68504,8.543307,19.68504,-19.68504,19.68504,-8.543307,19.68504,19.68504,-8.543307,-19.68504,-8.543307,-14.76378,-9.450162,-11.10711,-14.76378,-8.543307,-19.68504,-8.543307,-19.68504,19.68504,-19.68504,8.543307 + } + UVIndex: *78 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,0,21,1,21,0,3,21,1,22,21,3,23,21,22,24,23,22,25,27,26,28,26,27,26,29,25,25,29,30,30,29,31,31,29,32,32,29,33,33,29,34,29,35,34,36,34,35 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *26 { + a: 0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverCornerSmall, Model::RootNode + C: "OO",4670913646268357491,0 + + ;Geometry::, Model::Mesh ground_riverCornerSmall + C: "OO",4865046133300688501,4670913646268357491 + + ;Material::grass, Model::Mesh ground_riverCornerSmall + C: "OO",3024,4670913646268357491 + + ;Material::dirtDark, Model::Mesh ground_riverCornerSmall + C: "OO",3022,4670913646268357491 + + ;Material::dirt, Model::Mesh ground_riverCornerSmall + C: "OO",3020,4670913646268357491 + + ;Material::water, Model::Mesh ground_riverCornerSmall + C: "OO",3042,4670913646268357491 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCornerSmall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCornerSmall.fbx.import new file mode 100644 index 0000000..fe37def --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCornerSmall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bb22w8yjbni5q" +path="res://.godot/imported/ground_riverCornerSmall.fbx-cd32746f8008ffff1e869db87b73f5ff.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverCornerSmall.fbx" +dest_files=["res://.godot/imported/ground_riverCornerSmall.fbx-cd32746f8008ffff1e869db87b73f5ff.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCross.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCross.fbx new file mode 100644 index 0000000..36c8ac0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCross.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 602 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverCross.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverCross.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5485591025843686512, "Model::ground_riverCross", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5262571077138725750, "Geometry::", "Mesh" { + Vertices: *360 { + a: 5,-5.639933E-17,-3.79,3.79,-5.639933E-17,-3.79,5,-5.639933E-17,-5,3.79,-5.639933E-17,-5,-3.79,-5.639933E-17,-5,-3.79,-5.639933E-17,-3.79,-5,-5.639933E-17,-5,-5,-5.639933E-17,-3.79,-3.79,0,5,-5,0,5,-3.79,0,3.79,-5,0,3.79,5,0,3.79,5,0,5,3.79,0,3.79,3.79,0,5,5,-0.5,-2.17,3.75,-0.5,-2.17,5,-5.639933E-17,-2.79,3.75,-5.639933E-17,-2.79,2.79,-5.639933E-17,-3.75,2.17,-0.5,-3.75,2.79,-5.639933E-17,-5,2.17,-0.5,-5,-3.75,-5.639933E-17,-2.79,-3.75,-0.5,-2.17,-5,-5.639933E-17,-2.79,-5,-0.5,-2.17,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-2.79,-5.639933E-17,-5,-2.79,-5.639933E-17,-3.75,-2.17,-0.5,-3.75,-2.400341,-0.5,-2.821205,-2.79,-5.639933E-17,-3.75,-2.929954,-5.639933E-17,-3.185668,2.929954,-5.639933E-17,-3.185668,2.400341,-0.5,-2.821205,2.79,-5.639933E-17,-3.75,2.17,-0.5,-3.75,-2.400341,-0.5,-2.821205,-3.75,-0.5,-2.17,-2.929954,-5.639933E-17,-3.185668,-3.75,-5.639933E-17,-2.79,3.75,-0.5,-2.17,2.400341,-0.5,-2.821205,3.75,-5.639933E-17,-2.79,2.929954,-5.639933E-17,-3.185668,-2.17,-0.5,5,-2.79,0,5,-2.17,-0.5,3.75,-2.79,0,3.75,3.75,-0.5,2.17,3.75,0,2.79,2.400341,-0.5,2.821205,2.929954,0,3.185668,-2.17,-0.5,3.75,-2.79,0,3.75,-2.400341,-0.5,2.821205,-2.929954,0,3.185668,2.929954,0,3.185668,2.79,0,3.75,2.400341,-0.5,2.821205,2.17,-0.5,3.75,-3.75,0,2.79,-5,0,2.79,-3.75,-0.5,2.17,-5,-0.5,2.17,5,0,2.79,3.75,0,2.79,5,-0.5,2.17,3.75,-0.5,2.17,2.79,0,3.75,2.79,0,5,2.17,-0.5,3.75,2.17,-0.5,5,-2.400341,-0.5,2.821205,-2.929954,0,3.185668,-3.75,-0.5,2.17,-3.75,0,2.79,5,-5.639933E-17,-2.79,3.75,-5.639933E-17,-2.79,2.79,-5.639933E-17,-5,2.929954,-5.639933E-17,-3.185668,2.79,-5.639933E-17,-3.75,-2.79,-5.639933E-17,-5,-2.79,-5.639933E-17,-3.75,-2.929954,-5.639933E-17,-3.185668,-3.75,-5.639933E-17,-2.79,-5,-5.639933E-17,-2.79,5,0,2.79,3.75,0,2.79,2.79,0,5,2.929954,0,3.185668,2.79,0,3.75,-2.79,0,5,-2.79,0,3.75,-2.929954,0,3.185668,-3.75,0,2.79,-5,0,2.79,2.17,-0.5,-5,2.17,-0.5,-3.75,-2.17,-0.5,-5,-2.17,-0.5,3.75,-2.17,-0.5,5,-2.17,-0.5,-3.75,-2.400341,-0.5,2.821205,-2.400341,-0.5,-2.821205,-3.75,-0.5,2.17,-3.75,-0.5,-2.17,-5,-0.5,2.17,-5,-0.5,-2.17,2.17,-0.5,5,2.17,-0.5,3.75,2.400341,-0.5,-2.821205,2.400341,-0.5,2.821205,3.75,-0.5,-2.17,3.75,-0.5,2.17,5,-0.5,-2.17,5,-0.5,2.17 + } + PolygonVertexIndex: *246 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,0,-82,1,81,-1,3,81,-2,82,81,-4,83,81,-83,84,83,-83,85,4,-87,87,86,-5,88,87,-5,5,88,-5,89,88,-6,7,89,-6,90,91,-13,14,12,-92,15,14,-92,92,15,-92,93,92,-92,94,92,-94,95,96,-9,97,8,-97,98,8,-98,10,8,-99,99,10,-99,11,10,-100,100,102,-102,103,101,-103,104,101,-104,105,103,-103,106,103,-106,107,106,-106,108,106,-108,109,108,-108,110,108,-110,111,110,-110,104,112,-102,112,113,-102,101,113,-115,113,115,-115,114,115,-117,115,117,-117,116,117,-119,119,118,-118 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *738 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,-0.2898826,0.7449897,-0.6007982,-0.2898826,0.7449897,-0.6007982,-0.2898826,0.7449897,-0.6007982,-0.2898826,0.7449897,-0.6007982,-0.2898826,0.7449897,-0.6007982,-0.2898826,0.7449897,-0.6007982,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0.2898826,0.7449897,-0.6007982,0.2898826,0.7449897,-0.6007982,0.2898826,0.7449897,-0.6007982,0.2898826,0.7449897,-0.6007982,0.2898826,0.7449897,-0.6007982,0.2898826,0.7449897,-0.6007982,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: -19.68504,-14.92126,-14.92126,-14.92126,-19.68504,-19.68504,-14.92126,-19.68504,14.92126,-19.68504,14.92126,-14.92126,19.68504,-19.68504,19.68504,-14.92126,14.92126,19.68504,19.68504,19.68504,14.92126,14.92126,19.68504,14.92126,-19.68504,14.92126,-19.68504,19.68504,-14.92126,14.92126,-14.92126,19.68504,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,12.27324,7.853217,8.505797,7.853217,11.68569,10.93348,9.396606,10.93348,-9.396606,10.93348,-8.505797,7.853217,-11.68569,10.93348,-12.27324,7.853217,-3.684564,9.198801,-9.584359,9.198801,-4.938944,12.14975,-8.523629,12.14975,9.584359,9.198801,3.684564,9.198801,8.523629,12.14975,4.938944,12.14975,-19.68504,5.414488,-19.68504,8.550285,-14.76378,5.414488,-14.76378,8.550285,-9.584359,9.198801,-8.523629,12.14975,-3.684564,9.198801,-4.938944,12.14975,-12.27324,7.853217,-11.68569,10.93348,-8.505797,7.853217,-9.396606,10.93348,9.396606,10.93348,11.68569,10.93348,8.505797,7.853217,12.27324,7.853217,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,3.684564,9.198801,4.938944,12.14975,9.584359,9.198801,8.523629,12.14975,-19.68504,-10.98425,-14.76378,-10.98425,-10.98425,-19.68504,-11.53525,-12.542,-10.98425,-14.76378,10.98425,-19.68504,10.98425,-14.76378,11.53525,-12.542,14.76378,-10.98425,19.68504,-10.98425,-19.68504,10.98425,-14.76378,10.98425,-10.98425,19.68504,-11.53525,12.542,-10.98425,14.76378,10.98425,19.68504,10.98425,14.76378,11.53525,12.542,14.76378,10.98425,19.68504,10.98425,-8.543307,-19.68504,-8.543307,-14.76378,8.543307,-19.68504,8.543307,14.76378,8.543307,19.68504,8.543307,-14.76378,9.450162,11.10711,9.450162,-11.10711,14.76378,8.543307,14.76378,-8.543307,19.68504,8.543307,19.68504,-8.543307,-8.543307,19.68504,-8.543307,14.76378,-9.450162,-11.10711,-9.450162,11.10711,-14.76378,-8.543307,-14.76378,8.543307,-19.68504,-8.543307,-19.68504,8.543307 + } + UVIndex: *246 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,0,81,1,81,0,3,81,1,82,81,3,83,81,82,84,83,82,85,4,86,87,86,4,88,87,4,5,88,4,89,88,5,7,89,5,90,91,12,14,12,91,15,14,91,92,15,91,93,92,91,94,92,93,95,96,8,97,8,96,98,8,97,10,8,98,99,10,98,11,10,99,100,102,101,103,101,102,104,101,103,105,103,102,106,103,105,107,106,105,108,106,107,109,108,107,110,108,109,111,110,109,104,112,101,112,113,101,101,113,114,113,115,114,114,115,116,115,117,116,116,117,118,119,118,117 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *82 { + a: 0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverCross, Model::RootNode + C: "OO",5485591025843686512,0 + + ;Geometry::, Model::Mesh ground_riverCross + C: "OO",5262571077138725750,5485591025843686512 + + ;Material::grass, Model::Mesh ground_riverCross + C: "OO",3024,5485591025843686512 + + ;Material::dirtDark, Model::Mesh ground_riverCross + C: "OO",3022,5485591025843686512 + + ;Material::dirt, Model::Mesh ground_riverCross + C: "OO",3020,5485591025843686512 + + ;Material::water, Model::Mesh ground_riverCross + C: "OO",3042,5485591025843686512 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCross.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCross.fbx.import new file mode 100644 index 0000000..32d3370 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverCross.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bw5r3bjpw57bh" +path="res://.godot/imported/ground_riverCross.fbx-41eac995ebb6589941552568737fa14b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverCross.fbx" +dest_files=["res://.godot/imported/ground_riverCross.fbx-41eac995ebb6589941552568737fa14b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEnd.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEnd.fbx new file mode 100644 index 0000000..e666463 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEnd.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 701 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5072007996816625059, "Model::ground_riverEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5493896253657026507, "Geometry::", "Mesh" { + Vertices: *198 { + a: 3.41,0,-1.25,2.79,-0.5,-1.25,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-5,2.17,-0.5,-5,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,-5,-2.79,0,-5,-1.55,-0.5,-1.25,-1.86,-0.25,1.25,-2.17,0,-1.25,-2.17,0,1.25,-2.17,0,1.25,-1.86,-0.25,1.25,-2.79,0,3.75,3.41,0,1.25,3.1,-0.25,1.25,3.41,0,-1.25,2.79,-0.5,-1.25,3.1,-0.25,1.25,3.41,0,1.25,2.79,0,3.75,5,0,5,4.41,0,-1.25,5,0,-5,3.79,0,-5,4.41,0,1.25,3.79,0,-3.75,3.29,0,3.75,-5,0,5,2.79,0,3.75,-2.79,0,3.75,-3.29,0,3.75,-3.79,0,-3.75,-3.17,0,-1.25,-3.17,0,1.25,-3.79,0,-5,-5,0,-5,2.79,-0.5,-1.25,-1.55,-0.5,-1.25,2.17,-0.5,-3.75,2.17,-0.5,-5,-2.17,-0.5,-5,-2.17,-0.5,-3.75,3.1,-0.25,1.25,-1.86,-0.25,1.25,2.79,-0.5,-1.25,-1.55,-0.5,-1.25,2.79,0,3.75,-2.79,0,3.75,-2.79,0,-5,-2.79,0,-3.75,-2.17,0,-1.25,-2.17,0,1.25,3.41,0,1.25,3.41,0,-1.25,2.79,0,-5,2.79,0,-3.75 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,25,-25,26,24,-26,27,29,-29,30,32,-32,33,31,-33,34,30,-32,35,31,-34,34,36,-31,37,30,-37,38,37,-37,39,37,-39,40,37,-40,41,37,-41,41,40,-43,43,42,-41,44,37,-42,45,37,-45,46,48,-48,49,47,-49,50,47,-50,51,47,-51,52,54,-54,55,53,-55,52,53,-57,57,56,-54,43,58,-43,44,42,-59,41,42,-45,43,40,-59,40,39,-59,58,39,-60,59,39,-61,61,60,-40,62,33,-64,64,63,-34,65,63,-65,62,36,-34,33,36,-36,35,36,-32,34,31,-37,38,36,-63 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: -0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,0.9950371,-0.09950371,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *132 { + a: -1.545008,10.93348,-2.132563,7.853217,-11.68569,10.93348,-12.27324,7.853217,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,6.245451,2.386479,6.833007,5.466738,16.38613,2.386479,16.97369,5.466738,14.76378,5.414488,14.76378,8.550285,19.68504,5.414488,19.68504,8.550285,4.92126,3.514425,-4.92126,5.082324,4.92126,6.650222,-4.92126,6.650222,-6.833007,5.466738,-6.539229,3.926608,-16.97369,5.466738,4.92126,10.45035,4.92126,8.88245,-4.92126,10.45035,-4.92126,7.314552,1.838786,9.393347,1.545008,10.93348,11.68569,10.93348,-19.68504,19.68504,-17.36221,-4.92126,-19.68504,-19.68504,-14.92126,-19.68504,-17.36221,4.92126,-14.92126,-14.76378,-12.95276,14.76378,19.68504,19.68504,-10.98425,14.76378,10.98425,14.76378,12.95276,14.76378,14.92126,-14.76378,12.48032,-4.92126,12.48032,4.92126,14.92126,-19.68504,19.68504,-19.68504,-10.98425,-4.92126,6.102362,-4.92126,-8.543307,-14.76378,-8.543307,-19.68504,8.543307,-19.68504,8.543307,-14.76378,-12.20472,4.7989,7.322834,4.7989,-10.98425,-5.09271,6.102362,-5.09271,-10.98425,14.69051,10.98425,14.69051,10.98425,-19.68504,10.98425,-14.76378,8.543307,-4.92126,8.543307,4.92126,-13.4252,4.92126,-13.4252,-4.92126,-10.98425,-19.68504,-10.98425,-14.76378 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,25,24,26,24,25,27,29,28,30,32,31,33,31,32,34,30,31,35,31,33,34,36,30,37,30,36,38,37,36,39,37,38,40,37,39,41,37,40,41,40,42,43,42,40,44,37,41,45,37,44,46,48,47,49,47,48,50,47,49,51,47,50,52,54,53,55,53,54,52,53,56,57,56,53,43,58,42,44,42,58,41,42,44,43,40,58,40,39,58,58,39,59,59,39,60,61,60,39,62,33,63,64,63,33,65,63,64,62,36,33,33,36,35,35,36,31,34,31,36,38,36,62 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverEnd, Model::RootNode + C: "OO",5072007996816625059,0 + + ;Geometry::, Model::Mesh ground_riverEnd + C: "OO",5493896253657026507,5072007996816625059 + + ;Material::dirtDark, Model::Mesh ground_riverEnd + C: "OO",3022,5072007996816625059 + + ;Material::grass, Model::Mesh ground_riverEnd + C: "OO",3024,5072007996816625059 + + ;Material::water, Model::Mesh ground_riverEnd + C: "OO",3042,5072007996816625059 + + ;Material::dirt, Model::Mesh ground_riverEnd + C: "OO",3020,5072007996816625059 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEnd.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEnd.fbx.import new file mode 100644 index 0000000..d8446f7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://byx853loa4xxi" +path="res://.godot/imported/ground_riverEnd.fbx-220a773b47a5a11f6da48820568c0d81.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverEnd.fbx" +dest_files=["res://.godot/imported/ground_riverEnd.fbx-220a773b47a5a11f6da48820568c0d81.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEndClosed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEndClosed.fbx new file mode 100644 index 0000000..3a63f58 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEndClosed.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 811 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverEndClosed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverEndClosed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5132784893261284575, "Model::ground_riverEndClosed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5175471857474607351, "Geometry::", "Mesh" { + Vertices: *297 { + a: 5,0,5,4.41,0,-1.25,5,0,-5,3.79,0,-5,4.41,0,1.443823E-14,3.79,0,-3.75,3.973069,0,1.982926,2.576506,0,3.456871,0.62,0,4,-5,0,5,2.964161,0,3.047736,-1.336506,0,3.456871,-2.430865,0,2.301875,-2.733069,0,1.982926,-3.17,0,1.155058E-13,-3.17,0,-1.25,-3.79,0,-3.75,-3.79,0,-5,-5,0,-5,3.41,0,-0.1088675,3.41,0,-1.12785,2.79,0,-5,2.79,0,-3.62785,3.056231,0,1.496643,2.238256,0,2.359941,2.041533,0,2.567564,0.62,0,2.962184,-0.8015337,0,2.567564,-1.70496,0,1.61408,-1.816231,0,1.496643,-2.17,0,-0.1088675,-2.17,0,-1.37215,-2.79,0,-3.87215,-2.79,0,-5,2.79,-0.5,-0.1763654,2.487792,-0.5,1.195148,2.79,-0.5,-1.052117,2.17,-0.5,-3.552117,1.788195,-0.5,1.933508,2.17,-0.5,-5,-2.17,-0.5,-5,1.709851,-0.5,2.016194,0.62,-0.5,2.318738,-0.4698509,-0.5,2.016194,-1.55,-0.5,-1.447883,-1.247792,-0.5,1.195148,-1.55,-0.5,-0.1763654,-2.17,-0.5,-3.947883,-2.17,-0.5,-5,-2.17,-0.5,-3.947883,-2.79,0,-5,-2.79,0,-3.87215,3.41,0,-0.1088675,2.79,-0.5,-0.1763654,3.41,0,-1.12785,2.79,-0.5,-1.052117,2.79,0,-3.62785,2.17,-0.5,-3.552117,2.79,0,-5,2.17,-0.5,-5,2.041533,0,2.567564,0.62,0,2.962184,1.709851,-0.5,2.016194,0.62,-0.5,2.318738,-0.4698509,-0.5,2.016194,-0.8015337,0,2.567564,-1.247792,-0.5,1.195148,-1.70496,0,1.61408,-1.816231,0,1.496643,-1.247792,-0.5,1.195148,-1.816231,0,1.496643,-1.55,-0.5,-0.1763654,-2.17,0,-0.1088675,-1.55,-0.5,-0.1763654,-2.17,0,-0.1088675,-1.55,-0.5,-1.447883,-2.17,0,-1.37215,-1.55,-0.5,-1.447883,-2.17,0,-1.37215,-2.17,-0.5,-3.947883,-2.79,0,-3.87215,3.41,0,-0.1088675,3.056231,0,1.496643,2.79,-0.5,-0.1763654,2.487792,-0.5,1.195148,0.62,-0.5,2.318738,0.62,0,2.962184,-0.4698509,-0.5,2.016194,-0.8015337,0,2.567564,3.056231,0,1.496643,2.238256,0,2.359941,2.487792,-0.5,1.195148,1.788195,-0.5,1.933508,2.041533,0,2.567564,1.709851,-0.5,2.016194,3.41,0,-1.12785,2.79,-0.5,-1.052117,2.79,0,-3.62785,2.17,-0.5,-3.552117 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,1,-3,4,0,-2,5,1,-4,4,6,-1,6,7,-1,7,8,-1,9,0,-9,10,7,-7,11,9,-9,12,9,-12,13,9,-13,14,9,-14,15,9,-15,16,9,-16,17,9,-17,18,9,-18,19,3,-21,21,20,-4,22,20,-22,3,19,-6,19,6,-6,5,6,-2,4,1,-7,10,6,-20,23,10,-20,24,10,-24,7,10,-25,25,7,-25,8,7,-26,26,8,-26,11,8,-27,27,11,-27,28,11,-28,12,11,-29,29,12,-29,30,12,-30,31,12,-31,32,12,-32,13,12,-33,14,13,-33,14,32,-16,15,32,-18,33,17,-33,16,15,-18,34,36,-36,37,35,-37,38,35,-38,39,38,-38,40,38,-40,41,38,-41,42,41,-41,43,42,-41,44,43,-41,45,43,-45,46,45,-45,47,44,-41,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,90,-93,94,93,-93,95,97,-97,98,96,-98 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.167915,0.7784131,-0.6048782,-0.167915,0.7784131,-0.6048782,-0.167915,0.7784131,-0.6048782,-0.167915,0.7784131,-0.6048782,-0.167915,0.7784131,-0.6048782,-0.167915,0.7784131,-0.6048782,0.4556886,0.7784131,-0.431765,0.4556886,0.7784131,-0.431765,0.4556886,0.7784131,-0.431765,0.4556886,0.7784131,-0.431765,0.4556886,0.7784131,-0.431765,0.4556886,0.7784131,-0.431765,0.4556886,0.7784131,-0.431765,0.4556886,0.7784131,-0.431765,0.4556886,0.7784131,-0.431765,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,0.6130463,0.7784131,-0.1350827,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,0.609295,0.7784131,-0.1511052,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,-0.6130463,0.7784131,-0.1350827,0.167915,0.7784131,-0.6048782,0.167915,0.7784131,-0.6048782,0.167915,0.7784131,-0.6048782,0.167915,0.7784131,-0.6048782,0.167915,0.7784131,-0.6048782,0.167915,0.7784131,-0.6048782,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.4556886,0.7784131,-0.431765,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052,-0.609295,0.7784131,0.1511052 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *198 { + a: -19.68504,19.68504,-17.36221,-4.92126,-19.68504,-19.68504,-14.92126,-19.68504,-17.36221,5.684342E-14,-14.92126,-14.76378,-15.642,7.806795,-10.14372,13.60973,-2.440945,15.74803,19.68504,19.68504,-11.66993,11.99896,5.261834,13.60973,9.570334,9.062499,10.76011,7.806795,12.48032,4.547474E-13,12.48032,-4.92126,14.92126,-14.76378,14.92126,-19.68504,19.68504,-19.68504,-13.4252,-0.4286122,-13.4252,-4.440355,-10.98425,-19.68504,-10.98425,-14.28288,-12.03241,5.892296,-8.812034,9.291106,-8.037534,10.10852,-2.440945,11.66214,3.155644,10.10852,6.712441,6.354645,7.150517,5.892296,8.543307,-0.4286122,8.543307,-5.402165,10.98425,-15.24468,10.98425,-19.68504,-10.98425,-0.6943518,-9.794456,4.705307,-10.98425,-4.142194,-8.543307,-13.98471,-7.040139,7.612236,-8.543307,-19.68504,8.543307,-19.68504,-6.731697,7.93777,-2.440945,9.128888,1.849807,7.93777,6.102362,-5.700326,4.912566,4.705307,6.102362,-0.6943518,8.543307,-15.54285,19.68504,5.414488,15.54285,5.414488,19.68504,8.550285,15.24468,8.550285,-0.4286122,10.45035,-0.6943518,7.314552,-4.440355,10.45035,-4.142194,7.314552,-14.28288,8.550285,-13.98471,5.414488,-19.68504,8.550285,-19.68504,5.414488,-5.040772,9.255418,0.7674592,9.255418,-4.363162,6.119621,0.08984952,6.119621,-4.489779,4.059299,-5.167389,7.195096,-0.03676731,4.059299,0.003914556,7.195096,0.6408424,7.195096,-3.537968,3.286839,-4.215578,6.422636,1.99122,3.286839,2.256959,6.422636,0.6943518,3.514425,0.4286122,6.650222,5.700326,3.514425,5.402165,6.650222,7.001611,2.306686,7.299772,5.442483,17.14229,2.306686,17.44045,5.442483,-3.307467,10.13374,3.165071,10.13374,-3.041728,6.997942,2.487461,6.997942,-4.793852,5.10314,-5.471461,8.238936,-0.3408399,5.10314,0.3367698,8.238936,-3.998582,9.953627,0.6835882,9.953627,-3.320972,6.81783,0.6835882,6.81783,1.809649,9.953627,1.13204,6.81783,-1.078243,10.97507,-1.376404,7.839277,-11.21892,10.97507,-11.51708,7.839277 + } + UVIndex: *252 { + a: 0,2,1,3,1,2,4,0,1,5,1,3,4,6,0,6,7,0,7,8,0,9,0,8,10,7,6,11,9,8,12,9,11,13,9,12,14,9,13,15,9,14,16,9,15,17,9,16,18,9,17,19,3,20,21,20,3,22,20,21,3,19,5,19,6,5,5,6,1,4,1,6,10,6,19,23,10,19,24,10,23,7,10,24,25,7,24,8,7,25,26,8,25,11,8,26,27,11,26,28,11,27,12,11,28,29,12,28,30,12,29,31,12,30,32,12,31,13,12,32,14,13,32,14,32,15,15,32,17,33,17,32,16,15,17,34,36,35,37,35,36,38,35,37,39,38,37,40,38,39,41,38,40,42,41,40,43,42,40,44,43,40,45,43,44,46,45,44,47,44,40,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,90,92,94,93,92,95,97,96,98,96,97 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverEndClosed, Model::RootNode + C: "OO",5132784893261284575,0 + + ;Geometry::, Model::Mesh ground_riverEndClosed + C: "OO",5175471857474607351,5132784893261284575 + + ;Material::grass, Model::Mesh ground_riverEndClosed + C: "OO",3024,5132784893261284575 + + ;Material::dirt, Model::Mesh ground_riverEndClosed + C: "OO",3020,5132784893261284575 + + ;Material::water, Model::Mesh ground_riverEndClosed + C: "OO",3042,5132784893261284575 + + ;Material::dirtDark, Model::Mesh ground_riverEndClosed + C: "OO",3022,5132784893261284575 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEndClosed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEndClosed.fbx.import new file mode 100644 index 0000000..44c2d35 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverEndClosed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d1g4tt32qb1sm" +path="res://.godot/imported/ground_riverEndClosed.fbx-56e90b1abbe64c87f514b295893a98f7.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverEndClosed.fbx" +dest_files=["res://.godot/imported/ground_riverEndClosed.fbx-56e90b1abbe64c87f514b295893a98f7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverOpen.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverOpen.fbx new file mode 100644 index 0000000..4efed7a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverOpen.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 886 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverOpen.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverOpen.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5222230345957218854, "Model::ground_riverOpen", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5743514626388373539, "Geometry::", "Mesh" { + Vertices: *30 { + a: 5,-0.5,-5,5,-0.5,-2.17,2.17,-0.5,-5,-5,-0.5,5,5,-0.5,5,5,-0.5,2.17,-2.17,-0.5,-5,-5,-0.5,2.17,-5,-0.5,-5,-5,-0.5,-2.17 + } + PolygonVertexIndex: *24 { + a: 0,2,-2,2,3,-2,3,4,-2,5,1,-5,6,3,-3,7,3,-7,6,8,-8,9,7,-9 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *72 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *20 { + a: -19.68504,-19.68504,-19.68504,-8.543307,-8.543307,-19.68504,19.68504,19.68504,-19.68504,19.68504,-19.68504,8.543307,8.543307,-19.68504,19.68504,8.543307,19.68504,-19.68504,19.68504,-8.543307 + } + UVIndex: *24 { + a: 0,2,1,2,3,1,3,4,1,5,1,4,6,3,2,7,3,6,6,8,7,9,7,8 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *8 { + a: 0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverOpen, Model::RootNode + C: "OO",5222230345957218854,0 + + ;Geometry::, Model::Mesh ground_riverOpen + C: "OO",5743514626388373539,5222230345957218854 + + ;Material::water, Model::Mesh ground_riverOpen + C: "OO",3042,5222230345957218854 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverOpen.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverOpen.fbx.import new file mode 100644 index 0000000..181b8e9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverOpen.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://r8kyqlq7hstf" +path="res://.godot/imported/ground_riverOpen.fbx-293a1523dbb7ca0b8b2751092aa20bf3.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverOpen.fbx" +dest_files=["res://.godot/imported/ground_riverOpen.fbx-293a1523dbb7ca0b8b2751092aa20bf3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverRocks.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverRocks.fbx new file mode 100644 index 0000000..99871f4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverRocks.fbx @@ -0,0 +1,379 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 24 + Millisecond: 998 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverRocks.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverRocks.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5621813574357923900, "Model::ground_riverRocks", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5016192034058398558, "Geometry::", "Mesh" { + Vertices: *420 { + a: 3.41,0,1.25,2.79,-0.5,1.25,3.41,0,-1.25,2.79,-0.5,-1.25,3.41,0,-1.25,2.79,-0.5,-1.25,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-5,2.17,-0.5,-5,3.41,0,1.25,2.79,0,3.75,2.79,-0.5,1.25,2.17,-0.5,3.75,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,5,-2.79,0,5,-2.17,-0.5,3.75,-2.79,0,3.75,2.79,0,3.75,2.79,0,5,2.17,-0.5,3.75,2.17,-0.5,5,-1.55,-0.5,1.25,-2.17,0,1.25,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,-5,-2.79,0,-5,-1.55,-0.5,1.25,-2.17,-0.5,3.75,-2.17,0,1.25,-2.79,0,3.75,-3.17,0,1.25,-3.79,0,3.75,-3.17,0,-1.25,-3.79,0,-3.75,-3.79,0,-5,-3.79,0,5,-5,0,5,-5,0,-5,5,0,5,4.41,0,-1.25,5,0,-5,3.79,0,-5,4.41,0,1.25,3.79,0,-3.75,3.79,0,5,3.79,0,3.75,-2.79,0,-5,-2.79,0,5,-2.79,0,3.75,-2.79,0,-3.75,-2.17,0,-1.25,-2.17,0,1.25,3.41,0,1.25,3.41,0,-1.25,2.79,0,-5,2.79,0,-3.75,2.79,0,5,2.79,0,3.75,1.652315,-0.5,-1.735761,0.6903682,-0.5,-1.909553,1.442855,4.060752E-15,-2.187027,1.064712,4.060752E-15,-2.255345,2.102825,-0.5,-2.517286,1.57786,4.060752E-15,-2.421227,1.300739,-0.5,-3.173785,1.229814,4.060752E-15,-2.7061,0.5928065,-0.5,-2.886996,1.300739,-0.5,-3.173785,1.027885,4.060752E-15,-2.624297,1.229814,4.060752E-15,-2.7061,0.5928065,-0.5,-2.886996,1.027885,4.060752E-15,-2.624297,0.6903682,-0.5,-1.909553,1.064712,4.060752E-15,-2.255345,2.102825,-0.5,-2.517286,1.652315,-0.5,-1.735761,1.57786,4.060752E-15,-2.421227,1.442855,4.060752E-15,-2.187027,1.57786,4.060752E-15,-2.421227,1.442855,4.060752E-15,-2.187027,1.229814,4.060752E-15,-2.7061,1.064712,4.060752E-15,-2.255345,1.027885,4.060752E-15,-2.624297,-0.1125069,-0.5,3.631854,-1.325223,-0.5,3.631854,-0.4913989,-1.973977E-16,3.129586,-0.9491587,-1.973977E-16,3.129586,0.2189412,-0.5,2.471447,-0.1125069,-0.5,3.631854,-0.3611057,-1.973977E-16,2.673428,-0.4913989,-1.973977E-16,3.129586,-0.6322587,-1.973977E-16,2.478862,-1.024891,-1.973977E-16,2.871494,-0.6858938,-0.5,1.822183,-1.590729,-0.5,2.727018,-0.3611057,-1.973977E-16,2.673428,-0.4913989,-1.973977E-16,3.129586,-0.6322587,-1.973977E-16,2.478862,-0.9491587,-1.973977E-16,3.129586,-1.024891,-1.973977E-16,2.871494,0.2189412,-0.5,2.471447,-0.3611057,-1.973977E-16,2.673428,-0.6858938,-0.5,1.822183,-0.6322587,-1.973977E-16,2.478862,-0.9491587,-1.973977E-16,3.129586,-1.325223,-0.5,3.631854,-1.024891,-1.973977E-16,2.871494,-1.590729,-0.5,2.727018,2.102825,-0.5,-2.517286,1.300739,-0.5,-3.173785,2.17,-0.5,-5,-2.17,-0.5,-5,0.5928065,-0.5,-2.886996,0.2189412,-0.5,2.471447,-0.6858938,-0.5,1.822183,-1.55,-0.5,-1.25,-1.55,-0.5,1.25,-2.17,-0.5,-3.75,-1.590729,-0.5,2.727018,-2.17,-0.5,3.75,-2.17,-0.5,5,2.17,-0.5,5,2.17,-0.5,3.75,2.17,-0.5,-3.75,2.79,-0.5,-1.25,2.79,-0.5,1.25,-0.1125069,-0.5,3.631854,1.652315,-0.5,-1.735761,0.6903682,-0.5,-1.909553,-1.325223,-0.5,3.631854 + } + PolygonVertexIndex: *306 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,41,-45,46,45,-45,47,46,-45,48,50,-50,51,49,-51,52,48,-50,53,49,-52,48,52,-55,55,54,-53,40,56,-43,44,42,-57,43,42,-45,40,57,-57,57,58,-57,56,58,-60,59,58,-61,61,60,-59,45,57,-41,41,45,-41,62,51,-64,64,63,-52,65,63,-65,62,54,-52,54,55,-52,51,55,-54,53,55,-50,52,49,-56,66,54,-63,67,66,-63,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,91,-91,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,108,-108,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,119,-122,123,122,-122,124,123,-122,125,124,-122,126,124,-126,127,125,-122,124,126,-129,129,128,-127,130,128,-130,118,131,-121,131,132,-121,120,132,-134,133,132,-135,135,134,-133,130,131,-137,136,131,-119,137,136,-119,123,136,-138,138,123,-138,122,123,-139,139,130,-137,128,130,-140 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *918 { + a: -0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,-0.137905,0.6311409,0.7633108,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,0.4912933,0.631141,-0.6002432,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.2912391,0.631141,-0.7189164,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,-0.7718332,0.6311406,0.07703919,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0.6720101,0.6311412,0.38738,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0,0.7087047,0.7055054,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,0.6783749,0.7087049,0.1937648,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,-0.4988674,0.708705,-0.4988673,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,0.4113039,0.7087051,-0.5732068,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,-0.676963,0.7087051,0.1986414,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *280 { + a: 4.92126,10.45035,4.92126,7.314552,-4.92126,10.45035,-4.92126,7.314552,-1.545008,10.93348,-2.132563,7.853217,-11.68569,10.93348,-12.27324,7.853217,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,1.545008,10.93348,11.68569,10.93348,2.132563,7.853217,12.27324,7.853217,6.245451,2.386479,6.833007,5.466738,16.38613,2.386479,16.97369,5.466738,-19.68504,5.414488,-19.68504,8.550285,-14.76378,5.414488,-14.76378,8.550285,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,-4.92126,3.514425,-4.92126,6.650222,4.92126,3.514425,4.92126,6.650222,14.76378,5.414488,14.76378,8.550285,19.68504,5.414488,19.68504,8.550285,-6.245451,2.386479,-16.38613,2.386479,-6.833007,5.466738,-16.97369,5.466738,12.48032,4.92126,14.92126,14.76378,12.48032,-4.92126,14.92126,-14.76378,14.92126,-19.68504,14.92126,19.68504,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-17.36221,-4.92126,-19.68504,-19.68504,-14.92126,-19.68504,-17.36221,4.92126,-14.92126,-14.76378,-14.92126,19.68504,-14.92126,14.76378,10.98425,-19.68504,10.98425,19.68504,10.98425,14.76378,10.98425,-14.76378,8.543307,-4.92126,8.543307,4.92126,-13.4252,4.92126,-13.4252,-4.92126,-10.98425,-19.68504,-10.98425,-14.76378,-10.98425,19.68504,-10.98425,14.76378,5.186587,3.447356,1.338083,3.447356,4.059214,5.985173,2.546358,5.985174,-0.1293318,-9.676741,1.230501,-7.138924,3.951378,-9.676741,3.001229,-7.138924,-6.430749,-7.622606,-9.437905,-7.622606,-7.630006,-5.084789,-8.487757,-5.084789,-11.07813,0.6513014,-9.878865,3.189117,-7.210803,0.6513014,-8.41908,3.189117,12.72073,-2.929928,9.16925,-2.929928,11.3609,-0.3921101,10.29662,-0.3921104,-6.212047,-9.53239,-5.680532,-8.610341,-4.841786,-10.65394,-4.191779,-8.87931,-4.046793,-10.33188,-0.4429407,-11.5223,-5.217412,-11.5223,-1.934641,-8.732096,-3.736845,-8.732096,-9.119196,-3.870086,-13.87044,-3.870086,-10.51102,-1.079881,-12.37874,-1.07988,8.661004,3.643262,10.84709,3.643262,6.982198,0.8530561,12.02011,0.8530561,1.421676,10.52531,1.934641,12.32121,2.489208,9.7593,3.736845,12.32121,4.035003,11.3051,-6.372911,3.857733,-4.981093,6.647939,-1.988368,3.857733,-3.667173,6.647939,10.77059,-4.999784,12.25116,-7.789989,9.711643,-4.999784,8.53862,-7.789989,-8.278839,-9.910574,-5.121021,-12.49522,-8.543307,-19.68504,8.543307,-19.68504,-2.333884,-11.36613,-0.861973,9.730104,2.700369,7.17395,6.102362,-4.92126,6.102362,4.92126,8.543307,-14.76378,6.262712,10.73629,8.543307,14.76378,8.543307,19.68504,-8.543307,19.68504,-8.543307,14.76378,-8.543307,-14.76378,-10.98425,-4.92126,-10.98425,4.92126,0.4429407,14.29864,-6.505178,-6.833704,-2.717985,-7.517924,5.217412,14.29864 + } + UVIndex: *306 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,41,44,46,45,44,47,46,44,48,50,49,51,49,50,52,48,49,53,49,51,48,52,54,55,54,52,40,56,42,44,42,56,43,42,44,40,57,56,57,58,56,56,58,59,59,58,60,61,60,58,45,57,40,41,45,40,62,51,63,64,63,51,65,63,64,62,54,51,54,55,51,51,55,53,53,55,49,52,49,55,66,54,62,67,66,62,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,91,90,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,108,107,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,119,121,123,122,121,124,123,121,125,124,121,126,124,125,127,125,121,124,126,128,129,128,126,130,128,129,118,131,120,131,132,120,120,132,133,133,132,134,135,134,132,130,131,136,136,131,118,137,136,118,123,136,137,138,123,137,122,123,138,139,130,136,128,130,139 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *102 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverRocks, Model::RootNode + C: "OO",5621813574357923900,0 + + ;Geometry::, Model::Mesh ground_riverRocks + C: "OO",5016192034058398558,5621813574357923900 + + ;Material::dirtDark, Model::Mesh ground_riverRocks + C: "OO",3022,5621813574357923900 + + ;Material::grass, Model::Mesh ground_riverRocks + C: "OO",3024,5621813574357923900 + + ;Material::dirt, Model::Mesh ground_riverRocks + C: "OO",3020,5621813574357923900 + + ;Material::stone, Model::Mesh ground_riverRocks + C: "OO",3038,5621813574357923900 + + ;Material::water, Model::Mesh ground_riverRocks + C: "OO",3042,5621813574357923900 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverRocks.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverRocks.fbx.import new file mode 100644 index 0000000..39d58f7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverRocks.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bbas6oa7dxbbe" +path="res://.godot/imported/ground_riverRocks.fbx-46ee604b1361610e50e66a26a43bc67d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverRocks.fbx" +dest_files=["res://.godot/imported/ground_riverRocks.fbx-46ee604b1361610e50e66a26a43bc67d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSide.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSide.fbx new file mode 100644 index 0000000..ce912b9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSide.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 96 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverSide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverSide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4909756967400063457, "Model::ground_riverSide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4733505447516191720, "Geometry::", "Mesh" { + Vertices: *132 { + a: 5,0,3.79,3.75,0,3.79,5,0,2.79,3.75,0,2.79,1.25,0,4.41,1.25,0,3.41,-1.25,0,4.41,-1.25,0,3.41,-3.75,0,3.79,-3.75,0,2.79,-5,0,3.79,-5,0,2.79,1.25,0,3.41,-1.25,0,3.41,1.25,-0.5,2.79,-1.25,-0.5,2.79,3.75,0,2.79,1.25,0,3.41,3.75,-0.5,2.17,1.25,-0.5,2.79,5,0,2.79,3.75,0,2.79,5,-0.5,2.17,3.75,-0.5,2.17,-1.25,0,3.41,-3.75,0,2.79,-1.25,-0.5,2.79,-3.75,-0.5,2.17,-3.75,0,2.79,-5,0,2.79,-3.75,-0.5,2.17,-5,-0.5,2.17,-5,0,5,5,0,5,5,-0.5,-5,5,-0.5,-2.17,-5,-0.5,-5,3.75,-0.5,2.17,1.25,-0.5,2.79,-1.25,-0.5,2.79,-3.75,-0.5,2.17,-5,-0.5,2.17,-5,-0.5,-2.17,5,-0.5,2.17 + } + PolygonVertexIndex: *102 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,7,6,-6,8,6,-8,9,8,-8,10,8,-10,11,10,-10,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,33,-5,0,4,-34,1,4,-1,6,32,-5,8,32,-7,10,32,-9,34,36,-36,37,35,-37,38,37,-37,39,38,-37,40,39,-37,41,40,-37,42,41,-37,35,37,-44 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *306 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *88 { + a: -19.68504,14.92126,-14.76378,14.92126,-19.68504,10.98425,-14.76378,10.98425,-4.92126,17.36221,-4.92126,13.4252,4.92126,17.36221,4.92126,13.4252,14.76378,14.92126,14.76378,10.98425,19.68504,14.92126,19.68504,10.98425,-4.92126,10.45035,4.92126,10.45035,-4.92126,7.314552,4.92126,7.314552,-11.68569,10.93348,-1.545008,10.93348,-12.27324,7.853217,-2.132563,7.853217,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,1.545008,10.93348,11.68569,10.93348,2.132563,7.853217,12.27324,7.853217,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,19.68504,19.68504,-19.68504,19.68504,-19.68504,-19.68504,-19.68504,-8.543307,19.68504,-19.68504,-14.76378,8.543307,-4.92126,10.98425,4.92126,10.98425,14.76378,8.543307,19.68504,8.543307,19.68504,-8.543307,-19.68504,8.543307 + } + UVIndex: *102 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,7,6,5,8,6,7,9,8,7,10,8,9,11,10,9,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,33,4,0,4,33,1,4,0,6,32,4,8,32,6,10,32,8,34,36,35,37,35,36,38,37,36,39,38,36,40,39,36,41,40,36,42,41,36,35,37,43 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *34 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverSide, Model::RootNode + C: "OO",4909756967400063457,0 + + ;Geometry::, Model::Mesh ground_riverSide + C: "OO",4733505447516191720,4909756967400063457 + + ;Material::dirt, Model::Mesh ground_riverSide + C: "OO",3020,4909756967400063457 + + ;Material::dirtDark, Model::Mesh ground_riverSide + C: "OO",3022,4909756967400063457 + + ;Material::grass, Model::Mesh ground_riverSide + C: "OO",3024,4909756967400063457 + + ;Material::water, Model::Mesh ground_riverSide + C: "OO",3042,4909756967400063457 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSide.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSide.fbx.import new file mode 100644 index 0000000..eaf2a73 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dld7qp830dre8" +path="res://.godot/imported/ground_riverSide.fbx-a481820f60e59dd722947c93658b0dd2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverSide.fbx" +dest_files=["res://.godot/imported/ground_riverSide.fbx-a481820f60e59dd722947c93658b0dd2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSideOpen.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSideOpen.fbx new file mode 100644 index 0000000..782ab63 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSideOpen.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 204 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverSideOpen.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverSideOpen.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5306905893768243427, "Model::ground_riverSideOpen", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4925497311459519122, "Geometry::", "Mesh" { + Vertices: *192 { + a: 5,0,-3.79,3.79,0,-3.79,5,0,-5,3.79,0,-5,-3.79,0,-5,-3.79,0,-3.79,-5,0,-5,-5,0,-3.79,5,-0.5,-2.17,3.75,-0.5,-2.17,5,0,-2.79,3.75,0,-2.79,2.79,0,-5,2.79,0,-3.75,2.17,-0.5,-5,2.17,-0.5,-3.75,-3.75,0,-2.79,-3.75,-0.5,-2.17,-5,0,-2.79,-5,-0.5,-2.17,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-2.79,0,-5,-2.79,0,-3.75,-2.17,-0.5,-3.75,-2.400341,-0.5,-2.821205,-2.79,0,-3.75,-2.929954,0,-3.185668,2.929954,0,-3.185668,2.400341,-0.5,-2.821205,2.79,0,-3.75,2.17,-0.5,-3.75,-2.400341,-0.5,-2.821205,-3.75,-0.5,-2.17,-2.929954,0,-3.185668,-3.75,0,-2.79,3.75,-0.5,-2.17,2.400341,-0.5,-2.821205,3.75,0,-2.79,2.929954,0,-3.185668,2.79,0,-5,3.75,0,-2.79,2.929954,0,-3.185668,2.79,0,-3.75,5,0,-2.79,-2.79,0,-5,-2.79,0,-3.75,-2.929954,0,-3.185668,-3.75,0,-2.79,-5,0,-2.79,2.17,-0.5,-5,2.17,-0.5,-3.75,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-2.400341,-0.5,-2.821205,-5,-0.5,5,2.400341,-0.5,-2.821205,3.75,-0.5,-2.17,5,-0.5,-2.17,5,-0.5,5,5,-0.5,2.17,-3.75,-0.5,-2.17,-5,-0.5,2.17,-5,-0.5,-2.17 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,3,40,-2,41,1,-41,42,41,-41,43,42,-41,1,41,-1,44,0,-42,45,4,-47,47,46,-5,48,47,-5,5,48,-5,49,48,-6,7,49,-6,50,52,-52,52,53,-52,53,54,-52,54,55,-52,51,55,-57,56,55,-58,57,55,-59,55,59,-59,60,58,-60,61,55,-55,62,55,-62,61,63,-63 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *128 { + a: -19.68504,-14.92126,-14.92126,-14.92126,-19.68504,-19.68504,-14.92126,-19.68504,14.92126,-19.68504,14.92126,-14.92126,19.68504,-19.68504,19.68504,-14.92126,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,12.27324,7.853217,8.505797,7.853217,11.68569,10.93348,9.396606,10.93348,-9.396606,10.93348,-8.505797,7.853217,-11.68569,10.93348,-12.27324,7.853217,-3.684564,9.198801,-9.584359,9.198801,-4.938944,12.14975,-8.523629,12.14975,9.584359,9.198801,3.684564,9.198801,8.523629,12.14975,4.938944,12.14975,-10.98425,-19.68504,-14.76378,-10.98425,-11.53525,-12.542,-10.98425,-14.76378,-19.68504,-10.98425,10.98425,-19.68504,10.98425,-14.76378,11.53525,-12.542,14.76378,-10.98425,19.68504,-10.98425,-8.543307,-19.68504,-8.543307,-14.76378,8.543307,-19.68504,8.543307,-14.76378,9.450162,-11.10711,19.68504,19.68504,-9.450162,-11.10711,-14.76378,-8.543307,-19.68504,-8.543307,-19.68504,19.68504,-19.68504,8.543307,14.76378,-8.543307,19.68504,8.543307,19.68504,-8.543307 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,3,40,1,41,1,40,42,41,40,43,42,40,1,41,0,44,0,41,45,4,46,47,46,4,48,47,4,5,48,4,49,48,5,7,49,5,50,52,51,52,53,51,53,54,51,54,55,51,51,55,56,56,55,57,57,55,58,55,59,58,60,58,59,61,55,54,62,55,61,61,63,62 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverSideOpen, Model::RootNode + C: "OO",5306905893768243427,0 + + ;Geometry::, Model::Mesh ground_riverSideOpen + C: "OO",4925497311459519122,5306905893768243427 + + ;Material::grass, Model::Mesh ground_riverSideOpen + C: "OO",3024,5306905893768243427 + + ;Material::dirtDark, Model::Mesh ground_riverSideOpen + C: "OO",3022,5306905893768243427 + + ;Material::dirt, Model::Mesh ground_riverSideOpen + C: "OO",3020,5306905893768243427 + + ;Material::water, Model::Mesh ground_riverSideOpen + C: "OO",3042,5306905893768243427 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSideOpen.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSideOpen.fbx.import new file mode 100644 index 0000000..3d70866 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSideOpen.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://2w5skjo6dijj" +path="res://.godot/imported/ground_riverSideOpen.fbx-4578a7bf81d0fca97d32a8c366b7796c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverSideOpen.fbx" +dest_files=["res://.godot/imported/ground_riverSideOpen.fbx-4578a7bf81d0fca97d32a8c366b7796c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSplit.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSplit.fbx new file mode 100644 index 0000000..36ef1c4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSplit.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 307 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverSplit.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverSplit.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4808914173057296010, "Model::ground_riverSplit", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5075794102391060452, "Geometry::", "Mesh" { + Vertices: *300 { + a: 5,0,3.79,3.75,0,3.79,5,0,2.79,3.75,0,2.79,1.25,0,4.41,1.25,0,3.41,-1.25,0,4.41,-1.25,0,3.41,-3.75,0,3.79,-3.75,0,2.79,-5,0,3.79,-5,0,2.79,3.79,0,-5,3.79,0,-3.79,2.79,0,-5,3.75,0,-2.79,2.929954,0,-3.185668,2.79,0,-3.75,5,0,-3.79,5,0,-2.79,-2.79,0,-5,-2.79,0,-3.75,-3.79,0,-5,-2.929954,0,-3.185668,-3.75,0,-2.79,-3.79,0,-3.79,-5,0,-2.79,-5,0,-3.79,1.25,0,3.41,-1.25,0,3.41,1.25,-0.5,2.79,-1.25,-0.5,2.79,3.75,0,2.79,1.25,0,3.41,3.75,-0.5,2.17,1.25,-0.5,2.79,5,0,2.79,3.75,0,2.79,5,-0.5,2.17,3.75,-0.5,2.17,-1.25,0,3.41,-3.75,0,2.79,-1.25,-0.5,2.79,-3.75,-0.5,2.17,-3.75,0,2.79,-5,0,2.79,-3.75,-0.5,2.17,-5,-0.5,2.17,5,-0.5,-2.17,3.75,-0.5,-2.17,5,0,-2.79,3.75,0,-2.79,2.79,0,-5,2.79,0,-3.75,2.17,-0.5,-5,2.17,-0.5,-3.75,-3.75,0,-2.79,-3.75,-0.5,-2.17,-5,0,-2.79,-5,-0.5,-2.17,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-2.79,0,-5,-2.79,0,-3.75,-2.17,-0.5,-3.75,-2.400341,-0.5,-2.821205,-2.79,0,-3.75,-2.929954,0,-3.185668,2.929954,0,-3.185668,2.400341,-0.5,-2.821205,2.79,0,-3.75,2.17,-0.5,-3.75,-2.400341,-0.5,-2.821205,-3.75,-0.5,-2.17,-2.929954,0,-3.185668,-3.75,0,-2.79,3.75,-0.5,-2.17,2.400341,-0.5,-2.821205,3.75,0,-2.79,2.929954,0,-3.185668,5,0,-5,-5,0,5,5,0,5,-5,0,-5,5,-0.5,2.17,3.75,-0.5,2.17,5,-0.5,-2.17,3.75,-0.5,-2.17,1.25,-0.5,2.79,2.400341,-0.5,-2.821205,2.17,-0.5,-3.75,2.17,-0.5,-5,-2.17,-0.5,-5,-1.25,-0.5,2.79,-2.17,-0.5,-3.75,-2.400341,-0.5,-2.821205,-3.75,-0.5,2.17,-3.75,-0.5,-2.17,-5,-0.5,2.17,-5,-0.5,-2.17 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,7,6,-6,8,6,-8,9,8,-8,10,8,-10,11,10,-10,12,14,-14,15,13,-15,16,15,-15,17,16,-15,13,15,-19,19,18,-16,20,22,-22,23,21,-23,24,23,-23,25,24,-23,26,24,-26,27,26,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,18,80,-14,12,13,-81,81,82,-5,0,4,-83,1,4,-1,6,81,-5,8,81,-7,10,81,-9,22,83,-26,27,25,-84,84,86,-86,87,85,-87,88,85,-88,89,88,-88,90,88,-90,91,88,-91,92,88,-92,93,88,-93,94,93,-93,95,93,-95,96,93,-96,97,96,-96,98,96,-98,99,98,-98 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,-0.1538296,0.7691479,-0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0.1538296,0.7691479,-0.6202806,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,-0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0,0.7784131,0.6277524,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,-0.2898826,0.7449897,0.6007982,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *200 { + a: -19.68504,14.92126,-14.76378,14.92126,-19.68504,10.98425,-14.76378,10.98425,-4.92126,17.36221,-4.92126,13.4252,4.92126,17.36221,4.92126,13.4252,14.76378,14.92126,14.76378,10.98425,19.68504,14.92126,19.68504,10.98425,-14.92126,-19.68504,-14.92126,-14.92126,-10.98425,-19.68504,-14.76378,-10.98425,-11.53525,-12.542,-10.98425,-14.76378,-19.68504,-14.92126,-19.68504,-10.98425,10.98425,-19.68504,10.98425,-14.76378,14.92126,-19.68504,11.53525,-12.542,14.76378,-10.98425,14.92126,-14.92126,19.68504,-10.98425,19.68504,-14.92126,-4.92126,10.45035,4.92126,10.45035,-4.92126,7.314552,4.92126,7.314552,-11.68569,10.93348,-1.545008,10.93348,-12.27324,7.853217,-2.132563,7.853217,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,1.545008,10.93348,11.68569,10.93348,2.132563,7.853217,12.27324,7.853217,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,-19.68504,8.550285,-14.76378,8.550285,-19.68504,5.414488,-14.76378,5.414488,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,19.68504,5.414488,14.76378,5.414488,19.68504,8.550285,14.76378,8.550285,12.27324,7.853217,8.505797,7.853217,11.68569,10.93348,9.396606,10.93348,-9.396606,10.93348,-8.505797,7.853217,-11.68569,10.93348,-12.27324,7.853217,-3.684564,9.198801,-9.584359,9.198801,-4.938944,12.14975,-8.523629,12.14975,9.584359,9.198801,3.684564,9.198801,8.523629,12.14975,4.938944,12.14975,-19.68504,-19.68504,19.68504,19.68504,-19.68504,19.68504,19.68504,-19.68504,-19.68504,8.543307,-14.76378,8.543307,-19.68504,-8.543307,-14.76378,-8.543307,-4.92126,10.98425,-9.450162,-11.10711,-8.543307,-14.76378,-8.543307,-19.68504,8.543307,-19.68504,4.92126,10.98425,8.543307,-14.76378,9.450162,-11.10711,14.76378,8.543307,14.76378,-8.543307,19.68504,8.543307,19.68504,-8.543307 + } + UVIndex: *216 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,7,6,5,8,6,7,9,8,7,10,8,9,11,10,9,12,14,13,15,13,14,16,15,14,17,16,14,13,15,18,19,18,15,20,22,21,23,21,22,24,23,22,25,24,22,26,24,25,27,26,25,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,18,80,13,12,13,80,81,82,4,0,4,82,1,4,0,6,81,4,8,81,6,10,81,8,22,83,25,27,25,83,84,86,85,87,85,86,88,85,87,89,88,87,90,88,89,91,88,90,92,88,91,93,88,92,94,93,92,95,93,94,96,93,95,97,96,95,98,96,97,99,98,97 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverSplit, Model::RootNode + C: "OO",4808914173057296010,0 + + ;Geometry::, Model::Mesh ground_riverSplit + C: "OO",5075794102391060452,4808914173057296010 + + ;Material::dirt, Model::Mesh ground_riverSplit + C: "OO",3020,4808914173057296010 + + ;Material::dirtDark, Model::Mesh ground_riverSplit + C: "OO",3022,4808914173057296010 + + ;Material::grass, Model::Mesh ground_riverSplit + C: "OO",3024,4808914173057296010 + + ;Material::water, Model::Mesh ground_riverSplit + C: "OO",3042,4808914173057296010 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSplit.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSplit.fbx.import new file mode 100644 index 0000000..60e5e6f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverSplit.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dtudvl2xlwlrm" +path="res://.godot/imported/ground_riverSplit.fbx-24d36506707e0b998a8fd029832e936d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverSplit.fbx" +dest_files=["res://.godot/imported/ground_riverSplit.fbx-24d36506707e0b998a8fd029832e936d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverStraight.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverStraight.fbx new file mode 100644 index 0000000..e15d461 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverStraight.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 403 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverStraight.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverStraight.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4932206394230920123, "Model::ground_riverStraight", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5531876492818222520, "Geometry::", "Mesh" { + Vertices: *240 { + a: 3.41,0,1.25,2.79,-0.5,1.25,3.41,0,-1.25,2.79,-0.5,-1.25,3.41,0,-1.25,2.79,-0.5,-1.25,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-3.75,2.17,-0.5,-3.75,2.79,0,-5,2.17,-0.5,-5,3.41,0,1.25,2.79,0,3.75,2.79,-0.5,1.25,2.17,-0.5,3.75,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,5,-2.79,0,5,-2.17,-0.5,3.75,-2.79,0,3.75,2.79,0,3.75,2.79,0,5,2.17,-0.5,3.75,2.17,-0.5,5,-1.55,-0.5,1.25,-2.17,0,1.25,-1.55,-0.5,-1.25,-2.17,0,-1.25,-2.17,-0.5,-3.75,-2.79,0,-3.75,-2.17,-0.5,-5,-2.79,0,-5,-1.55,-0.5,1.25,-2.17,-0.5,3.75,-2.17,0,1.25,-2.79,0,3.75,-3.17,0,1.25,-3.79,0,3.75,-3.17,0,-1.25,-3.79,0,-3.75,-3.79,0,-5,-3.79,0,5,-5,0,5,-5,0,-5,5,0,5,4.41,0,-1.25,5,0,-5,3.79,0,-5,4.41,0,1.25,3.79,0,-3.75,3.79,0,5,3.79,0,3.75,-1.55,-0.5,1.25,-1.55,-0.5,-1.25,2.17,-0.5,-5,-2.17,-0.5,-5,-2.17,-0.5,-3.75,-2.17,-0.5,5,2.17,-0.5,5,2.17,-0.5,3.75,2.17,-0.5,-3.75,2.79,-0.5,-1.25,2.79,-0.5,1.25,-2.17,-0.5,3.75,-2.79,0,-5,-2.79,0,5,-2.79,0,3.75,-2.79,0,-3.75,-2.17,0,-1.25,-2.17,0,1.25,3.41,0,1.25,3.41,0,-1.25,2.79,0,-5,2.79,0,-3.75,2.79,0,5,2.79,0,3.75 + } + PolygonVertexIndex: *186 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,41,-45,46,45,-45,47,46,-45,48,50,-50,51,49,-51,52,48,-50,53,49,-52,48,52,-55,55,54,-53,56,58,-58,59,57,-59,60,57,-60,56,61,-59,61,62,-59,62,63,-59,58,63,-65,64,63,-66,66,65,-64,67,61,-57,40,68,-43,44,42,-69,43,42,-45,40,69,-69,69,70,-69,68,70,-72,71,70,-73,73,72,-71,45,69,-41,41,45,-41,74,51,-76,76,75,-52,77,75,-77,74,54,-52,54,55,-52,51,55,-54,53,55,-50,52,49,-56,78,54,-75,79,78,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *558 { + a: -0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6202806,0.7691479,0.1538296,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,-0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6202806,0.7691479,-0.1538296,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,-0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6277524,0.7784131,0,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0.6202806,0.7691479,0.1538296,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *160 { + a: 4.92126,10.45035,4.92126,7.314552,-4.92126,10.45035,-4.92126,7.314552,-1.545008,10.93348,-2.132563,7.853217,-11.68569,10.93348,-12.27324,7.853217,-14.76378,8.550285,-14.76378,5.414488,-19.68504,8.550285,-19.68504,5.414488,1.545008,10.93348,11.68569,10.93348,2.132563,7.853217,12.27324,7.853217,6.245451,2.386479,6.833007,5.466738,16.38613,2.386479,16.97369,5.466738,-19.68504,5.414488,-19.68504,8.550285,-14.76378,5.414488,-14.76378,8.550285,14.76378,8.550285,19.68504,8.550285,14.76378,5.414488,19.68504,5.414488,-4.92126,3.514425,-4.92126,6.650222,4.92126,3.514425,4.92126,6.650222,14.76378,5.414488,14.76378,8.550285,19.68504,5.414488,19.68504,8.550285,-6.245451,2.386479,-16.38613,2.386479,-6.833007,5.466738,-16.97369,5.466738,12.48032,4.92126,14.92126,14.76378,12.48032,-4.92126,14.92126,-14.76378,14.92126,-19.68504,14.92126,19.68504,19.68504,19.68504,19.68504,-19.68504,-19.68504,19.68504,-17.36221,-4.92126,-19.68504,-19.68504,-14.92126,-19.68504,-17.36221,4.92126,-14.92126,-14.76378,-14.92126,19.68504,-14.92126,14.76378,6.102362,4.92126,6.102362,-4.92126,-8.543307,-19.68504,8.543307,-19.68504,8.543307,-14.76378,8.543307,19.68504,-8.543307,19.68504,-8.543307,14.76378,-8.543307,-14.76378,-10.98425,-4.92126,-10.98425,4.92126,8.543307,14.76378,10.98425,-19.68504,10.98425,19.68504,10.98425,14.76378,10.98425,-14.76378,8.543307,-4.92126,8.543307,4.92126,-13.4252,4.92126,-13.4252,-4.92126,-10.98425,-19.68504,-10.98425,-14.76378,-10.98425,19.68504,-10.98425,14.76378 + } + UVIndex: *186 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,41,44,46,45,44,47,46,44,48,50,49,51,49,50,52,48,49,53,49,51,48,52,54,55,54,52,56,58,57,59,57,58,60,57,59,56,61,58,61,62,58,62,63,58,58,63,64,64,63,65,66,65,63,67,61,56,40,68,42,44,42,68,43,42,44,40,69,68,69,70,68,68,70,71,71,70,72,73,72,70,45,69,40,41,45,40,74,51,75,76,75,51,77,75,76,74,54,51,54,55,51,51,55,53,53,55,49,52,49,55,78,54,74,79,78,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *62 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverStraight, Model::RootNode + C: "OO",4932206394230920123,0 + + ;Geometry::, Model::Mesh ground_riverStraight + C: "OO",5531876492818222520,4932206394230920123 + + ;Material::dirtDark, Model::Mesh ground_riverStraight + C: "OO",3022,4932206394230920123 + + ;Material::grass, Model::Mesh ground_riverStraight + C: "OO",3024,4932206394230920123 + + ;Material::water, Model::Mesh ground_riverStraight + C: "OO",3042,4932206394230920123 + + ;Material::dirt, Model::Mesh ground_riverStraight + C: "OO",3020,4932206394230920123 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverStraight.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverStraight.fbx.import new file mode 100644 index 0000000..913c995 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverStraight.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d1pplbfih476b" +path="res://.godot/imported/ground_riverStraight.fbx-82e2d343c0c73a615c1398eceb7bed75.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverStraight.fbx" +dest_files=["res://.godot/imported/ground_riverStraight.fbx-82e2d343c0c73a615c1398eceb7bed75.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverTile.fbx b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverTile.fbx new file mode 100644 index 0000000..8b5cae7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverTile.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 512 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "ground_riverTile.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "ground_riverTile.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5100065420954100226, "Model::ground_riverTile", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5105228809993667814, "Geometry::", "Mesh" { + Vertices: *453 { + a: 5,1.127987E-16,5,3.924377,1.127987E-16,0.7622199,5,1.127987E-16,-5,3.411809,1.127987E-16,-0.2742104,1.706476,1.127987E-16,-3.211392,0.720243,1.127987E-16,-3.780793,-5,1.127987E-16,-5,3.976473,1.127987E-16,1.899832,2.275878,1.127987E-16,-2.225159,2.608905,1.127987E-16,-1.117056,-0.418561,1.127987E-16,-3.780793,-1.404794,1.127987E-16,-3.211392,-2.155137,1.127987E-16,-2.071429,-2.529888,1.127987E-16,-0.8309131,-3.511574,1.127987E-16,0.428237,-3.779523,1.127987E-16,1.428237,3.452784,1.127987E-16,2.91108,-5,1.127987E-16,5,-3.511574,1.127987E-16,2.428237,-2.779523,1.127987E-16,3.160288,-1.779523,1.127987E-16,3.428237,-0.6806579,1.127987E-16,3.108822,0.498106,1.127987E-16,3.160288,1.356018,1.127987E-16,3.577097,2.49363,1.127987E-16,3.525002,-1.665154,1.127987E-16,-0.3831499,-1.310124,-0.5,-0.3279029,-2.637195,1.127987E-16,0.8636287,-2.087757,-0.5,0.6695201,1.005704,1.127987E-16,-2.510619,1.391168,1.127987E-16,-1.842975,0.8265617,-0.5,-2.029879,1.134933,-0.5,-1.495763,-1.410001,-0.5,1.926127,-1.79,1.127987E-16,2.434387,-1.805203,-0.5,1.820233,-2.284002,1.127987E-16,2.30202,-0.6151514,-0.5,1.695082,0.6124168,-0.5,1.748679,-0.7964376,1.127987E-16,2.145582,0.7380226,1.127987E-16,2.212578,0.6124168,-0.5,1.748679,1.266314,-0.5,2.06637,0.7380226,1.127987E-16,2.212578,1.555394,1.127987E-16,2.60969,2.193607,1.127987E-16,2.580464,1.555394,1.127987E-16,2.60969,1.776884,-0.5,2.042989,1.266314,-0.5,2.06637,2.116618,-0.5,0.203137,2.618274,1.127987E-16,0.2806499,2.403832,-0.5,0.783893,2.977292,1.127987E-16,1.006595,-1.805203,-0.5,1.820233,-2.284002,1.127987E-16,2.30202,-2.100646,-0.5,1.52479,-2.653306,1.127987E-16,1.932716,1.757987,1.127987E-16,-0.6224334,2.618274,1.127987E-16,0.2806499,1.428388,-0.5,-0.5193297,2.116618,-0.5,0.203137,-2.087757,-0.5,0.6695201,-2.208786,-0.5,1.121207,-2.637195,1.127987E-16,0.8636287,-2.788481,1.127987E-16,1.428237,-1.279013,1.127987E-16,-1.661369,-1.001212,-0.5,-1.350479,-1.665154,1.127987E-16,-0.3831499,-1.310124,-0.5,-0.3279029,-2.100646,-0.5,1.52479,-2.653306,1.127987E-16,1.932716,-2.208786,-0.5,1.121207,-2.788481,1.127987E-16,1.428237,-1.410001,-0.5,1.926127,-0.6151514,-0.5,1.695082,-1.79,1.127987E-16,2.434387,-0.7964376,1.127987E-16,2.145582,3.008468,1.127987E-16,1.687391,2.428773,-0.5,1.32853,2.977292,1.127987E-16,1.006595,2.403832,-0.5,0.783893,1.391168,1.127987E-16,-1.842975,1.757987,1.127987E-16,-0.6224334,1.134933,-0.5,-1.495763,1.428388,-0.5,-0.5193297,-0.1076499,-0.5,-2.280199,-0.5618656,-0.5,-2.017958,-0.1620608,1.127987E-16,-2.82352,-0.7298303,1.127987E-16,-2.495719,1.005704,1.127987E-16,-2.510619,0.8265617,-0.5,-2.029879,0.4637429,1.127987E-16,-2.82352,0.392993,-0.5,-2.280199,0.4637429,1.127987E-16,-2.82352,0.392993,-0.5,-2.280199,-0.1620608,1.127987E-16,-2.82352,-0.1076499,-0.5,-2.280199,-0.7298303,1.127987E-16,-2.495719,-0.5618656,-0.5,-2.017958,-1.279013,1.127987E-16,-1.661369,-1.001212,-0.5,-1.350479,2.720687,1.127987E-16,2.243098,2.193607,1.127987E-16,2.580464,2.198549,-0.5,1.773096,1.776884,-0.5,2.042989,3.008468,1.127987E-16,1.687391,2.720687,1.127987E-16,2.243098,2.428773,-0.5,1.32853,2.198549,-0.5,1.773096,2.428773,-0.5,1.32853,2.198549,-0.5,1.773096,2.403832,-0.5,0.783893,2.116618,-0.5,0.203137,1.776884,-0.5,2.042989,1.428388,-0.5,-0.5193297,1.266314,-0.5,2.06637,1.134933,-0.5,-1.495763,0.6124168,-0.5,1.748679,0.8265617,-0.5,-2.029879,0.392993,-0.5,-2.280199,-0.6151514,-0.5,1.695082,-0.1076499,-0.5,-2.280199,-0.5618656,-0.5,-2.017958,-1.001212,-0.5,-1.350479,-1.410001,-0.5,1.926127,-1.310124,-0.5,-0.3279029,-2.087757,-0.5,0.6695201,-1.805203,-0.5,1.820233,-2.100646,-0.5,1.52479,-2.208786,-0.5,1.121207,3.008468,1.127987E-16,1.687391,2.977292,1.127987E-16,1.006595,2.618274,1.127987E-16,0.2806499,1.757987,1.127987E-16,-0.6224334,1.391168,1.127987E-16,-1.842975,1.005704,1.127987E-16,-2.510619,0.4637429,1.127987E-16,-2.82352,-0.1620608,1.127987E-16,-2.82352,-0.7298303,1.127987E-16,-2.495719,-1.279013,1.127987E-16,-1.661369,-1.665154,1.127987E-16,-0.3831499,-2.637195,1.127987E-16,0.8636287,-2.788481,1.127987E-16,1.428237,-2.653306,1.127987E-16,1.932716,-2.284002,1.127987E-16,2.30202,-1.79,1.127987E-16,2.434387,-0.7964376,1.127987E-16,2.145582,0.7380226,1.127987E-16,2.212578,1.555394,1.127987E-16,2.60969,2.193607,1.127987E-16,2.580464,2.720687,1.127987E-16,2.243098 + } + PolygonVertexIndex: *384 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,5,-3,7,0,-2,8,3,-5,9,3,-9,10,5,-7,11,10,-7,12,11,-7,13,12,-7,14,13,-7,15,14,-7,7,16,-1,6,17,-16,15,17,-19,18,17,-20,19,17,-21,20,17,-22,21,17,-23,22,17,-24,23,17,-25,17,0,-25,16,24,-1,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,110,-113,114,113,-113,115,113,-115,116,115,-115,117,115,-117,118,117,-117,119,117,-119,120,117,-120,121,120,-120,122,120,-122,123,120,-123,124,120,-124,125,124,-124,126,124,-126,127,124,-127,128,127,-127,129,128,-127,130,3,-132,9,131,-4,132,131,-10,133,132,-10,8,133,-10,4,133,-9,134,133,-5,5,134,-5,135,134,-6,136,135,-6,10,136,-6,137,136,-11,138,137,-11,11,138,-11,139,138,-12,140,139,-12,12,140,-12,141,140,-13,13,141,-13,14,141,-14,142,141,-15,14,18,-143,18,19,-143,142,19,-144,143,19,-145,144,19,-146,19,20,-146,145,20,-147,20,21,-147,21,22,-147,146,22,-148,22,23,-148,147,23,-149,148,23,-150,23,24,-150,149,24,-151,150,24,-131,24,16,-131,130,16,-4,3,16,-2,7,1,-17,15,18,-15 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1152 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6678873,0.531775,0.5207129,0.6678873,0.531775,0.5207129,0.6678873,0.531775,0.5207129,0.6678873,0.531775,0.5207129,0.6678873,0.531775,0.5207129,0.6678873,0.531775,0.5207129,-0.6792161,0.620393,0.3921454,-0.6792161,0.620393,0.3921454,-0.6792161,0.620393,0.3921454,-0.6792161,0.620393,0.3921454,-0.6792161,0.620393,0.3921454,-0.6792161,0.620393,0.3921454,0.1674488,0.7625129,-0.6249279,0.1674488,0.7625129,-0.6249279,0.1674488,0.7625129,-0.6249279,0.1674488,0.7625129,-0.6249279,0.1674488,0.7625129,-0.6249279,0.1674488,0.7625129,-0.6249279,0.03216562,0.6754398,-0.7367132,0.03216562,0.6754398,-0.7367132,0.03216562,0.6754398,-0.7367132,0.03216562,0.6754398,-0.7367132,0.03216562,0.6754398,-0.7367132,0.03216562,0.6754398,-0.7367132,0.3538404,0.58683,-0.7283046,0.3538404,0.58683,-0.7283046,0.3538404,0.58683,-0.7283046,0.3538404,0.58683,-0.7283046,0.3538404,0.58683,-0.7283046,0.3538404,0.58683,-0.7283046,-0.03058926,0.7435459,-0.6679848,-0.03058926,0.7435459,-0.6679848,-0.03058926,0.7435459,-0.6679848,-0.03058926,0.7435459,-0.6679848,-0.03058926,0.7435459,-0.6679848,-0.03058926,0.7435459,-0.6679848,-0.6895322,0.6389509,0.3410092,-0.6895322,0.6389509,0.3410092,-0.6895322,0.6389509,0.3410092,-0.6895322,0.6389509,0.3410092,-0.6895322,0.6389509,0.3410092,-0.6895322,0.6389509,0.3410092,0.4191885,0.8053334,-0.4191886,0.4191885,0.8053334,-0.4191886,0.4191885,0.8053334,-0.4191886,0.4191885,0.8053334,-0.4191886,0.4191885,0.8053334,-0.4191886,0.4191885,0.8053334,-0.4191886,-0.6155068,0.5266479,0.5863389,-0.6155068,0.5266479,0.5863389,-0.6155068,0.5266479,0.5863389,-0.6155068,0.5266479,0.5863389,-0.6155068,0.5266479,0.5863389,-0.6155068,0.5266479,0.5863389,0.6964746,0.6928898,0.1866197,0.6964746,0.6928898,0.1866197,0.6964746,0.6928898,0.1866197,0.6964746,0.6928898,0.1866197,0.6964746,0.6928898,0.1866197,0.6964746,0.6928898,0.1866197,0.7799277,0.5798281,0.2356103,0.7799277,0.5798281,0.2356103,0.7799277,0.5798281,0.2356103,0.7799277,0.5798281,0.2356103,0.7799277,0.5798281,0.2356103,0.7799277,0.5798281,0.2356103,0.5950085,0.7877476,-0.1594319,0.5950085,0.7877476,-0.1594319,0.5950085,0.7877476,-0.1594319,0.5950085,0.7877476,-0.1594319,0.5950085,0.7877476,-0.1594319,0.5950085,0.7877476,-0.1594319,-0.2218016,0.6070889,-0.7630512,-0.2218016,0.6070889,-0.7630512,-0.2218016,0.6070889,-0.7630512,-0.2218016,0.6070889,-0.7630512,-0.2218016,0.6070889,-0.7630512,-0.2218016,0.6070889,-0.7630512,-0.6635552,0.74751,0.03038661,-0.6635552,0.74751,0.03038661,-0.6635552,0.74751,0.03038661,-0.6635552,0.74751,0.03038661,-0.6635552,0.74751,0.03038661,-0.6635552,0.74751,0.03038661,-0.7880101,0.5682896,0.2368268,-0.7880101,0.5682896,0.2368268,-0.7880101,0.5682896,0.2368268,-0.7880101,0.5682896,0.2368268,-0.7880101,0.5682896,0.2368268,-0.7880101,0.5682896,0.2368268,0.3543544,0.7055001,0.6137611,0.3543544,0.7055001,0.6137611,0.3543544,0.7055001,0.6137611,0.3543544,0.7055001,0.6137611,0.3543544,0.7055001,0.6137611,0.3543544,0.7055001,0.6137611,-0.3514713,0.7112455,0.6087674,-0.3514713,0.7112455,0.6087674,-0.3514713,0.7112455,0.6087674,-0.3514713,0.7112455,0.6087674,-0.3514713,0.7112455,0.6087674,-0.3514713,0.7112455,0.6087674,0,0.7358335,0.6771626,0,0.7358335,0.6771626,0,0.7358335,0.6771626,0,0.7358335,0.6771626,0,0.7358335,0.6771626,0,0.7358335,0.6771626,0.6503628,0.6275157,0.4280798,0.6503628,0.6275157,0.4280798,0.6503628,0.6275157,0.4280798,0.6503628,0.6275157,0.4280798,0.6503628,0.6275157,0.4280798,0.6503628,0.6275157,0.4280798,-0.3201664,0.8045406,-0.500208,-0.3201664,0.8045406,-0.500208,-0.3201664,0.8045406,-0.500208,-0.3201664,0.8045406,-0.500208,-0.3201664,0.8045406,-0.500208,-0.3201664,0.8045406,-0.500208,-0.5261433,0.8055636,-0.2724709,-0.5261433,0.8055636,-0.2724709,-0.5261433,0.8055636,-0.2724709,-0.5261433,0.8055636,-0.2724709,-0.5261433,0.8055636,-0.2724709,-0.5261433,0.8055636,-0.2724709,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *302 { + a: -19.68504,19.68504,-15.4503,3.000866,-19.68504,-19.68504,-13.43232,-1.079568,-6.71841,-12.64328,-2.835602,-14.88501,19.68504,-19.68504,-15.65541,7.479653,-8.96015,-8.760469,-10.27128,-4.397858,1.647878,-14.88501,5.530685,-12.64328,8.484793,-8.155231,9.960189,-3.271311,13.82509,1.685972,14.88001,5.62298,-13.59364,11.46094,19.68504,19.68504,13.82509,9.559988,10.943,12.44208,7.005996,13.497,2.679755,12.23946,-1.961047,12.44208,-5.338654,14.08306,-9.817441,13.87796,-2.841193,3.242546,-2.153311,0.9181424,-9.065304,3.242546,-7.132599,0.9181424,-6.580349,5.193408,-3.545197,5.193408,-5.293881,2.683493,-2.865759,2.683493,3.399364,5.407218,4.326542,8.449855,5.010163,5.407218,6.340041,8.449855,2.128454,3.123043,-2.709096,3.123043,2.764136,5.792508,-3.282801,5.792508,-5.177217,1.421669,-8.039366,1.421669,-6.420129,3.852791,-9.997816,3.852791,-8.162465,7.839757,-5.647183,7.839757,-6.620341,4.895913,-4.608116,4.895913,4.410977,3.031911,5.560055,5.59091,6.961749,3.031911,8.74852,5.59091,-0.04184208,6.961094,-0.05015981,10.28166,1.603119,6.961094,2.006042,10.28166,2.999539,3.529365,7.910007,3.529365,2.398415,1.213706,6.326789,1.213706,-4.673456,3.609077,-6.51448,3.609077,-5.971485,6.339153,-8.272766,6.339153,4.805169,3.891716,3.949769,1.475599,-0.4518054,3.891716,-0.2558104,1.475599,-3.658059,6.304233,-4.646199,9.499866,-2.013098,6.304233,-2.589998,9.499866,7.447202,1.915784,4.188349,1.915784,9.442334,4.393031,5.368768,4.393031,7.178147,8.617341,5.662383,5.653845,4.495038,8.617341,3.515895,5.653845,-5.372372,4.167634,-0.3547653,4.167634,-4.353592,1.775272,-0.3395069,1.775272,4.121536,4.239281,2.056643,4.239281,5.005548,7.016869,2.424432,7.016869,-1.513158,7.496394,-1.177613,4.696022,-3.976946,7.496394,-3.148644,4.696022,1.825759,8.179687,1.547217,5.272698,-0.6380348,8.179687,-0.4238187,5.272698,6.627534,4.896054,5.419964,2.367805,2.694976,4.896054,2.273918,2.367805,-4.26082,10.6299,-1.797028,10.6299,-3.526985,7.315347,-1.555952,7.315347,0.4524311,10.93365,2.916219,10.93365,0.2473614,7.61133,2.218391,7.61133,-9.562099,5.230433,-8.655703,6.980691,-9.463906,3.086193,-8.333143,0.7997519,-6.995607,8.043263,-5.623576,-2.044605,-4.985488,8.135313,-4.468241,-5.888832,-2.41109,6.884564,-3.25418,-7.991648,-1.547217,-8.977161,2.421856,6.673553,0.4238187,-8.977161,2.212069,-7.944716,3.941779,-5.316844,5.551186,7.583178,5.15797,-1.290956,8.219516,2.635906,7.107098,7.166273,8.270261,6.003109,8.696008,4.414199,-11.84436,6.643273,-11.72162,3.962972,-10.30817,1.104921,-6.921208,-2.450525,-5.477039,-7.255809,-3.959464,-9.884329,-1.825759,-11.11622,0.6380348,-11.11622,2.873348,-9.825665,5.035485,-6.540824,6.555724,-1.508464,10.38266,3.400113,10.97827,5.62298,10.44609,7.609118,8.992133,9.063072,7.047244,9.584203,3.135581,8.447172,-2.905601,8.710937,-6.123599,10.27437,-8.636248,10.15931,-10.71137,8.831096 + } + UVIndex: *384 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,5,2,7,0,1,8,3,4,9,3,8,10,5,6,11,10,6,12,11,6,13,12,6,14,13,6,15,14,6,7,16,0,6,17,15,15,17,18,18,17,19,19,17,20,20,17,21,21,17,22,22,17,23,23,17,24,17,0,24,16,24,0,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,110,112,114,113,112,115,113,114,116,115,114,117,115,116,118,117,116,119,117,118,120,117,119,121,120,119,122,120,121,123,120,122,124,120,123,125,124,123,126,124,125,127,124,126,128,127,126,129,128,126,130,3,131,9,131,3,132,131,9,133,132,9,8,133,9,4,133,8,134,133,4,5,134,4,135,134,5,136,135,5,10,136,5,137,136,10,138,137,10,11,138,10,139,138,11,140,139,11,12,140,11,141,140,12,13,141,12,14,141,13,142,141,14,14,18,142,18,19,142,142,19,143,143,19,144,144,19,145,19,20,145,145,20,146,20,21,146,21,22,146,146,22,147,22,23,147,147,23,148,148,23,149,23,24,149,149,24,150,150,24,130,24,16,130,130,16,3,3,16,1,7,1,16,15,18,14 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *128 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3042, "Material::water", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6901961,0.9568627,1 + P: "DiffuseColor", "Color", "", "A",0.6901961,0.9568627,1 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh ground_riverTile, Model::RootNode + C: "OO",5100065420954100226,0 + + ;Geometry::, Model::Mesh ground_riverTile + C: "OO",5105228809993667814,5100065420954100226 + + ;Material::grass, Model::Mesh ground_riverTile + C: "OO",3024,5100065420954100226 + + ;Material::dirtDark, Model::Mesh ground_riverTile + C: "OO",3022,5100065420954100226 + + ;Material::water, Model::Mesh ground_riverTile + C: "OO",3042,5100065420954100226 + + ;Material::dirt, Model::Mesh ground_riverTile + C: "OO",3020,5100065420954100226 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/ground_riverTile.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverTile.fbx.import new file mode 100644 index 0000000..35912b4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/ground_riverTile.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dvdhjunaq7mbt" +path="res://.godot/imported/ground_riverTile.fbx-cbfc85233cd51084d1282a5467e75c19.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/ground_riverTile.fbx" +dest_files=["res://.godot/imported/ground_riverTile.fbx-cbfc85233cd51084d1282a5467e75c19.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/hanging_moss.fbx b/assets/models/kenney_nature-kit/Models/FBX format/hanging_moss.fbx new file mode 100644 index 0000000..16b51eb --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/hanging_moss.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 596 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "hanging_moss.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "hanging_moss.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5378868669213540351, "Model::hanging_moss", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5551966936591290520, "Geometry::", "Mesh" { + Vertices: *252 { + a: 0.799168,3.871903,-5,0.5807277,3.318452,-5,0.799168,3.871903,-4.85,0.5807277,3.318452,-4.85,-0.799168,3.134085,-5,-0.799168,4.784801,-5,-0.799168,3.134085,-4.85,-0.799168,4.784801,-4.85,0.799168,4.784801,-5,0.799168,3.871903,-5,0.799168,4.784801,-4.85,0.799168,3.871903,-4.85,0.5807277,4.784801,-4.85,0.5807277,3.318452,-4.85,0.5807277,4.784801,-4.65,0.5807277,0.5534518,-4.65,0.5807277,0.5534518,-5,0.5807277,3.318452,-5,0.5807277,3.318452,-4.85,0.5807277,4.784801,-4.85,0.799168,3.871903,-4.85,0.799168,4.784801,-4.85,-0.3759402,2.967042,-4.85,-0.3759402,2.967042,-5,-0.799168,3.134085,-4.85,-0.799168,3.134085,-5,0.0472877,1.261032E-16,-5,0.0472877,1.54,-5,0.0472877,0,-4.65,0.0472877,1.54,-4.75,0.0472877,4.784801,-4.75,0.0472877,4.784801,-4.65,0.5807277,0.5534518,-5,0.3622878,1.261032E-16,-5,0.5807277,0.5534518,-4.65,0.3622878,0,-4.65,-0.3759402,1.707042,-5,-0.3759402,2.967042,-5,-0.3759402,1.707042,-4.75,-0.3759402,2.967042,-4.85,-0.3759402,4.784801,-4.85,-0.3759402,4.784801,-4.75,0.0472877,1.261032E-16,-5,0.3622878,1.261032E-16,-5,0.0472877,1.54,-5,0.5807277,0.5534518,-5,0.5807277,3.318452,-5,-0.3759402,1.707042,-5,-0.3759402,2.967042,-5,-0.799168,3.134085,-5,-0.799168,4.784801,-5,0.799168,3.871903,-5,0.799168,4.784801,-5,0.3622878,0,-4.65,0.0472877,0,-4.65,0.5807277,0.5534518,-4.65,0.0472877,4.784801,-4.65,0.5807277,4.784801,-4.65,0.0472877,1.54,-4.75,-0.3759402,1.707042,-4.75,0.0472877,4.784801,-4.75,-0.3759402,4.784801,-4.75,0.799168,4.784801,-4.85,0.5807277,4.784801,-4.85,0.799168,4.784801,-5,-0.799168,4.784801,-5,0.0472877,4.784801,-4.75,0.0472877,4.784801,-4.65,-0.3759402,4.784801,-4.85,-0.3759402,4.784801,-4.75,-0.799168,4.784801,-4.85,0.5807277,4.784801,-4.65,0.0472877,1.54,-4.75,0.0472877,1.54,-5,-0.3759402,1.707042,-4.75,-0.3759402,1.707042,-5,0.3622878,0,-4.65,0.3622878,1.261032E-16,-5,0.0472877,0,-4.65,0.0472877,1.261032E-16,-5,-0.3759402,2.967042,-4.85,-0.799168,3.134085,-4.85,-0.3759402,4.784801,-4.85,-0.799168,4.784801,-4.85 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,14,15,-14,15,16,-14,17,13,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,29,-29,31,30,-29,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,40,-39,42,44,-44,45,43,-45,46,45,-45,47,46,-45,48,46,-48,49,46,-49,50,46,-50,51,46,-51,52,51,-51,53,55,-55,56,54,-56,57,56,-56,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,63,-66,67,63,-67,68,66,-66,69,66,-69,70,68,-66,63,67,-72,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0.930171,-0.3671268,0,0.930171,-0.3671268,0,0.930171,-0.3671268,0,0.930171,-0.3671268,0,0.930171,-0.3671268,0,0.930171,-0.3671268,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.3671259,-0.9301713,0,-0.3671259,-0.9301713,0,-0.3671259,-0.9301713,0,-0.3671259,-0.9301713,0,-0.3671259,-0.9301713,0,-0.3671259,-0.9301713,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9301713,-0.3671259,0,0.9301713,-0.3671259,0,0.9301713,-0.3671259,0,0.9301713,-0.3671259,0,0.9301713,-0.3671259,0,0.9301713,-0.3671259,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.367126,-0.9301713,0,-0.367126,-0.9301713,0,-0.367126,-0.9301713,0,-0.367126,-0.9301713,0,-0.367126,-0.9301713,0,-0.367126,-0.9301713,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: 19.68504,15.33436,19.68504,12.99184,19.09449,15.33436,19.09449,12.99184,-19.68504,12.33892,-19.68504,18.8378,-19.09449,12.33892,-19.09449,18.8378,19.68504,18.8378,19.68504,15.24371,19.09449,18.8378,19.09449,15.24371,19.09449,18.8378,19.09449,13.06477,18.30709,18.8378,18.30709,2.178944,19.68504,2.178944,19.68504,13.06477,2.28633,13.06477,2.28633,18.8378,3.146331,15.24371,3.146331,18.8378,-19.09449,5.665224,-19.68504,5.665224,-19.09449,7.456562,-19.68504,7.456562,-19.68504,5.118805E-16,-19.68504,6.062992,-18.30709,1.541135E-17,-18.70079,6.062992,-18.70079,18.8378,-18.30709,18.8378,19.68504,2.866162,19.68504,0.5236427,18.30709,2.866162,18.30709,0.5236427,-19.68504,6.720639,-19.68504,11.68127,-18.70079,6.720639,-19.09449,11.68127,-19.09449,18.8378,-18.70079,18.8378,-0.1861721,2.666179E-14,-1.42633,2.666179E-14,-0.1861721,6.062992,-2.28633,2.178944,-2.28633,13.06477,1.48008,6.720639,1.48008,11.68127,3.146331,12.33892,3.146331,18.8378,-3.146331,15.24371,-3.146331,18.8378,1.42633,-1.131882E-14,0.1861721,-1.131882E-14,2.28633,2.178944,0.1861721,18.8378,2.28633,18.8378,0.1861721,6.062992,-1.48008,6.720639,0.1861721,18.8378,-1.48008,18.8378,-3.146331,-19.09449,-2.28633,-19.09449,-3.146331,-19.68504,3.146331,-19.68504,-0.186172,-18.70079,-0.186172,-18.30709,1.48008,-19.09449,1.48008,-18.70079,3.146331,-19.09449,-2.28633,-18.30709,-18.70079,2.052711,-19.68504,2.052711,-18.70079,3.844049,-19.68504,3.844049,1.42633,-18.30709,1.42633,-19.68504,0.186172,-18.30709,0.186172,-19.68504,-1.48008,11.68127,-3.146331,12.33892,-1.48008,18.8378,-3.146331,18.8378 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,14,15,13,15,16,13,17,13,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,29,28,31,30,28,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,40,38,42,44,43,45,43,44,46,45,44,47,46,44,48,46,47,49,46,48,50,46,49,51,46,50,52,51,50,53,55,54,56,54,55,57,56,55,58,60,59,61,59,60,62,64,63,65,63,64,66,63,65,67,63,66,68,66,65,69,66,68,70,68,65,63,67,71,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh hanging_moss, Model::RootNode + C: "OO",5378868669213540351,0 + + ;Geometry::, Model::Mesh hanging_moss + C: "OO",5551966936591290520,5378868669213540351 + + ;Material::grass, Model::Mesh hanging_moss + C: "OO",3024,5378868669213540351 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/hanging_moss.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/hanging_moss.fbx.import new file mode 100644 index 0000000..ca35f02 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/hanging_moss.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dbxom2entrohn" +path="res://.godot/imported/hanging_moss.fbx-bc1686a4d55040a850584cfab992134d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/hanging_moss.fbx" +dest_files=["res://.godot/imported/hanging_moss.fbx-bc1686a4d55040a850584cfab992134d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/lily_large.fbx b/assets/models/kenney_nature-kit/Models/FBX format/lily_large.fbx new file mode 100644 index 0000000..1ed353c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/lily_large.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 695 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "lily_large.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "lily_large.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5602892494023937500, "Model::lily_large", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5509274710632342280, "Geometry::", "Mesh" { + Vertices: *438 { + a: -1.247077,0,-0.72,0,0,-1.44,-1.247077,0.2,-0.72,0,0.2,-1.44,-1.359313,0.4,-0.7848001,-0.5745135,0.4,0,-1.247077,0.2,-0.72,-0.5270766,0.2,0,-1.247077,0.2,-0.72,-0.5745135,0.4,0,-1.359313,0.4,-0.7848001,-0.5270766,0.2,0,-1.247077,0.2,-0.72,0,0.2,-1.44,-1.359313,0.4,-0.7848001,8.662937E-14,0.4,-1.5696,-1.359313,0.4,-0.7848001,0,0.2,-1.44,-1.247077,0.2,-0.72,8.662937E-14,0.4,-1.5696,0,0.2,-1.44,1.247077,0.2,-0.72,8.662937E-14,0.4,-1.5696,1.359313,0.4,-0.7848001,8.662937E-14,0.4,-1.5696,1.247077,0.2,-0.72,0,0.2,-1.44,1.359313,0.4,-0.7848001,1.247077,0.2,-0.72,1.247077,0,-0.72,1.247077,0.2,0.72,1.247077,0,0.72,1.247077,0.2,0.72,0,0.2,1.44,1.359313,0.4,0.7848001,8.662937E-14,0.4,1.5696,1.359313,0.4,0.7848001,0,0.2,1.44,1.247077,0.2,0.72,8.662937E-14,0.4,1.5696,1.247077,0,0.72,1.247077,0,-0.72,0,0,1.44,0,0,-1.44,-0.5270766,0,0,-1.247077,0,0.72,-1.247077,0,-0.72,1.247077,0,0.72,0,0,1.44,1.247077,0.2,0.72,0,0.2,1.44,-1.247077,0,0.72,-0.5270766,0,0,-1.247077,0.2,0.72,-0.5270766,0.2,0,-0.5270766,0,0,-1.247077,0,-0.72,-0.5270766,0.2,0,-1.247077,0.2,-0.72,0,0,-1.44,1.247077,0,-0.72,0,0.2,-1.44,1.247077,0.2,-0.72,-0.5270766,0.2,0,-0.5745135,0.4,0,-1.247077,0.2,0.72,-1.359313,0.4,0.7848001,-1.247077,0.2,0.72,-0.5745135,0.4,0,-0.5270766,0.2,0,-1.359313,0.4,0.7848001,1.359313,0.4,-0.7848001,1.247077,0.2,-0.72,1.359313,0.4,0.7848001,1.247077,0.2,0.72,1.359313,0.4,0.7848001,1.247077,0.2,-0.72,1.359313,0.4,-0.7848001,1.247077,0.2,0.72,0,0,1.44,-1.247077,0,0.72,0,0.2,1.44,-1.247077,0.2,0.72,0,0.2,1.44,-1.247077,0.2,0.72,8.662937E-14,0.4,1.5696,-1.359313,0.4,0.7848001,8.662937E-14,0.4,1.5696,-1.247077,0.2,0.72,0,0.2,1.44,-1.359313,0.4,0.7848001,0.07292342,0.2,0,0.4629234,0.59,0,-0.1220766,0.59,-2.887646E-14,0.2679234,0.59,2.887646E-14,0.4629234,0.98,-2.887646E-14,0.6579235,0.59,8.662937E-14,1.047923,0.59,1.443823E-13,0.8529234,0.2,1.155058E-13,-0.1220766,0.59,-2.887646E-14,0.4629234,0.59,0,0.07292342,0.2,0,0.2679234,0.59,2.887646E-14,0.4629234,0.98,-2.887646E-14,0.6579235,0.59,8.662937E-14,1.047923,0.59,1.443823E-13,0.8529234,0.2,1.155058E-13,0.4629234,0.59,0,0.4629234,0.2,-0.39,0.8529234,0.2,1.155058E-13,0.8529234,0.2,1.155058E-13,0.4629234,0.2,0.39,0.4629234,0.59,0,0.4629234,0.2,0.39,0.07292342,0.2,0,0.4629234,0.59,0,0.4629234,0.59,-0.585,0.4629234,0.2,-0.39,0.4629234,0.59,-0.195,0.4629234,0.59,0,0.4629234,0.98,-2.887646E-14,0.4629234,0.59,0.195,0.4629234,0.2,0.39,0.4629234,0.59,0.585,0.4629234,0.59,-0.195,0.4629234,0.2,-0.39,0.4629234,0.59,-0.585,0.4629234,0.59,0,0.4629234,0.98,-2.887646E-14,0.4629234,0.59,0.195,0.4629234,0.2,0.39,0.4629234,0.59,0.585,0.4629234,0.2,-0.39,0.4629234,0.59,0,0.07292342,0.2,0,1.247077,0.2,0.72,0.8529234,0.2,1.155058E-13,1.247077,0.2,-0.72,0,0.2,-1.44,0.4629234,0.2,-0.39,0.07292342,0.2,0,0,0.2,1.44,0.4629234,0.2,0.39,-0.5270766,0.2,0,-1.247077,0.2,-0.72,-1.247077,0.2,0.72 + } + PolygonVertexIndex: *258 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,9,11,-9,12,14,-14,15,13,-15,16,18,-18,17,19,-17,20,22,-22,23,21,-23,24,26,-26,25,27,-25,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,43,-43,45,44,-43,44,46,-44,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,68,70,-68,71,73,-73,74,72,-74,75,77,-77,76,78,-76,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,88,90,-88,91,93,-93,94,92,-94,95,92,-95,95,96,-93,96,97,-93,98,92,-98,99,101,-101,100,102,-100,100,103,-103,104,103,-101,105,104,-101,100,106,-106,107,109,-109,110,112,-112,113,115,-115,116,118,-118,119,117,-119,120,119,-119,120,121,-120,122,119,-122,123,122,-122,124,126,-126,125,127,-125,127,128,-125,129,128,-128,127,130,-130,130,131,-130,132,134,-134,135,137,-137,138,136,-138,139,136,-139,140,139,-139,135,136,-142,138,141,-141,142,141,-137,140,141,-143,143,141,-139,144,143,-139,143,145,-142 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *774 { + a: -0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.697367,-0.1654046,0.697367,-0.697367,-0.1654046,0.697367,-0.697367,-0.1654046,0.697367,-0.697367,-0.1654046,0.697367,-0.697367,-0.1654046,0.697367,-0.697367,-0.1654046,0.697367,0.697367,0.1654046,-0.697367,0.697367,0.1654046,-0.697367,0.697367,0.1654046,-0.697367,0.697367,0.1654046,-0.697367,0.697367,0.1654046,-0.697367,0.697367,0.1654046,-0.697367,-0.4360326,-0.4893895,-0.7552307,-0.4360326,-0.4893895,-0.7552307,-0.4360326,-0.4893895,-0.7552307,-0.4360326,-0.4893895,-0.7552307,-0.4360326,-0.4893895,-0.7552307,-0.4360326,-0.4893895,-0.7552307,0.4360326,0.4893895,0.7552307,0.4360326,0.4893895,0.7552307,0.4360326,0.4893895,0.7552307,0.4360326,0.4893895,0.7552307,0.4360326,0.4893895,0.7552307,0.4360326,0.4893895,0.7552307,0.4360326,-0.4893895,-0.7552307,0.4360326,-0.4893895,-0.7552307,0.4360326,-0.4893895,-0.7552307,0.4360326,-0.4893895,-0.7552307,0.4360326,-0.4893895,-0.7552307,0.4360326,-0.4893895,-0.7552307,-0.4360326,0.4893895,0.7552307,-0.4360326,0.4893895,0.7552307,-0.4360326,0.4893895,0.7552307,-0.4360326,0.4893895,0.7552307,-0.4360326,0.4893895,0.7552307,-0.4360326,0.4893895,0.7552307,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4360326,-0.4893895,0.7552307,0.4360326,-0.4893895,0.7552307,0.4360326,-0.4893895,0.7552307,0.4360326,-0.4893895,0.7552307,0.4360326,-0.4893895,0.7552307,0.4360326,-0.4893895,0.7552307,-0.4360326,0.4893895,-0.7552307,-0.4360326,0.4893895,-0.7552307,-0.4360326,0.4893895,-0.7552307,-0.4360326,0.4893895,-0.7552307,-0.4360326,0.4893895,-0.7552307,-0.4360326,0.4893895,-0.7552307,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.697367,-0.1654046,-0.697367,-0.697367,-0.1654046,-0.697367,-0.697367,-0.1654046,-0.697367,-0.697367,-0.1654046,-0.697367,-0.697367,-0.1654046,-0.697367,-0.697367,-0.1654046,-0.697367,0.697367,0.1654046,0.697367,0.697367,0.1654046,0.697367,0.697367,0.1654046,0.697367,0.697367,0.1654046,0.697367,0.697367,0.1654046,0.697367,0.697367,0.1654046,0.697367,0.8720653,-0.4893895,0,0.8720653,-0.4893895,0,0.8720653,-0.4893895,0,0.8720653,-0.4893895,0,0.8720653,-0.4893895,0,0.8720653,-0.4893895,0,-0.8720653,0.4893895,0,-0.8720653,0.4893895,0,-0.8720653,0.4893895,0,-0.8720653,0.4893895,0,-0.8720653,0.4893895,0,-0.8720653,0.4893895,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.4360326,-0.4893895,0.7552307,-0.4360326,-0.4893895,0.7552307,-0.4360326,-0.4893895,0.7552307,-0.4360326,-0.4893895,0.7552307,-0.4360326,-0.4893895,0.7552307,-0.4360326,-0.4893895,0.7552307,0.4360326,0.4893895,-0.7552307,0.4360326,0.4893895,-0.7552307,0.4360326,0.4893895,-0.7552307,0.4360326,0.4893895,-0.7552307,0.4360326,0.4893895,-0.7552307,0.4360326,0.4893895,-0.7552307,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *292 { + a: 2.834646,1.771545E-13,-2.834646,1.771545E-13,2.834646,0.7874016,-2.834646,0.7874016,-5.968965,1.817656,-1.599379,1.817656,-5.476115,1.019257,-1.467321,1.019257,-5.476115,1.019257,-1.599379,1.817656,-5.968965,1.817656,-1.467321,1.019257,2.834646,3.089446,-2.834646,3.089446,3.089764,3.992362,-3.089764,3.992362,3.089764,3.992362,-2.834646,3.089446,2.834646,3.089446,-3.089764,3.992362,2.834646,3.089446,-2.834646,3.089446,3.089764,3.992362,-3.089764,3.992362,3.089764,3.992362,-2.834646,3.089446,2.834646,3.089446,-3.089764,3.992362,2.834646,0.7874016,2.834646,-7.08881E-13,-2.834646,0.7874016,-2.834646,-7.08881E-13,2.834646,3.089446,-2.834646,3.089446,3.089764,3.992362,-3.089764,3.992362,3.089764,3.992362,-2.834646,3.089446,2.834646,3.089446,-3.089764,3.992362,4.90975,2.834646,4.90975,-2.834646,0,5.669291,0,-5.669291,-2.075105,0,-4.90975,2.834646,-4.90975,-2.834646,2.834646,-1.775941E-13,-2.834646,-1.775941E-13,2.834646,0.7874016,-2.834646,0.7874016,5.476115,2.246229E-13,1.467321,2.246229E-13,5.476115,0.7874016,1.467321,0.7874016,-1.467321,2.246229E-13,-5.476115,2.246229E-13,-1.467321,0.7874016,-5.476115,0.7874016,2.834646,-1.775941E-13,-2.834646,-1.775941E-13,2.834646,0.7874016,-2.834646,0.7874016,1.467321,1.019257,1.599379,1.817656,5.476115,1.019257,5.968965,1.817656,5.476115,1.019257,1.599379,1.817656,1.467321,1.019257,5.968965,1.817656,3.089764,3.992362,2.834646,3.089446,-3.089764,3.992362,-2.834646,3.089446,-3.089764,3.992362,2.834646,3.089446,3.089764,3.992362,-2.834646,3.089446,2.834646,1.771545E-13,-2.834646,1.771545E-13,2.834646,0.7874016,-2.834646,0.7874016,2.834646,3.089446,-2.834646,3.089446,3.089764,3.992362,-3.089764,3.992362,3.089764,3.992362,-2.834646,3.089446,2.834646,3.089446,-3.089764,3.992362,-0.2871001,0.7874016,-1.822533,2.322835,0.4806165,2.322835,-1.054817,2.322835,-1.822533,3.858268,-2.59025,2.322835,-4.125683,2.322835,-3.357966,0.7874016,0.4806165,2.322835,-1.822533,2.322835,-0.2871001,0.7874016,-1.054817,2.322835,-1.822533,3.858268,-2.59025,2.322835,-4.125683,2.322835,-3.357966,0.7874016,-1.288725,1.152541,-0.2030104,-0.7279733,-2.374441,-0.7279733,2.374441,-0.7279733,0.2030104,-0.7279733,1.288725,1.152541,2.374441,0.7601188,0.2030104,0.7601188,1.288725,2.640633,2.30315,2.322835,1.535433,0.7874016,0.7677165,2.322835,0,2.322835,1.136868E-13,3.858268,-0.7677165,2.322835,-1.535433,0.7874016,-2.30315,2.322835,0.7677165,2.322835,1.535433,0.7874016,2.30315,2.322835,0,2.322835,1.136868E-13,3.858268,-0.7677165,2.322835,-1.535433,0.7874016,-2.30315,2.322835,-2.374441,0.7601188,-1.288725,2.640633,-0.2030104,0.7601188,-4.90975,2.834646,-3.357966,4.547474E-13,-4.90975,-2.834646,0,-5.669291,-1.822533,-1.535433,-0.2871001,0,0,5.669291,-1.822533,1.535433,2.075105,0,4.90975,-2.834646,4.90975,2.834646 + } + UVIndex: *258 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,9,11,8,12,14,13,15,13,14,16,18,17,17,19,16,20,22,21,23,21,22,24,26,25,25,27,24,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,43,42,45,44,42,44,46,43,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,68,70,67,71,73,72,74,72,73,75,77,76,76,78,75,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,88,90,87,91,93,92,94,92,93,95,92,94,95,96,92,96,97,92,98,92,97,99,101,100,100,102,99,100,103,102,104,103,100,105,104,100,100,106,105,107,109,108,110,112,111,113,115,114,116,118,117,119,117,118,120,119,118,120,121,119,122,119,121,123,122,121,124,126,125,125,127,124,127,128,124,129,128,127,127,130,129,130,131,129,132,134,133,135,137,136,138,136,137,139,136,138,140,139,138,135,136,141,138,141,140,142,141,136,140,141,142,143,141,138,144,143,138,143,145,141 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *86 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh lily_large, Model::RootNode + C: "OO",5602892494023937500,0 + + ;Geometry::, Model::Mesh lily_large + C: "OO",5509274710632342280,5602892494023937500 + + ;Material::leafsGreen, Model::Mesh lily_large + C: "OO",3030,5602892494023937500 + + ;Material::colorRed, Model::Mesh lily_large + C: "OO",3008,5602892494023937500 + + ;Material::leafsDark, Model::Mesh lily_large + C: "OO",3026,5602892494023937500 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/lily_large.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/lily_large.fbx.import new file mode 100644 index 0000000..abccb3a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/lily_large.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://clct85vpyy5m1" +path="res://.godot/imported/lily_large.fbx-6cef067b894eddd26fc4640312ec677b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/lily_large.fbx" +dest_files=["res://.godot/imported/lily_large.fbx-6cef067b894eddd26fc4640312ec677b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/lily_small.fbx b/assets/models/kenney_nature-kit/Models/FBX format/lily_small.fbx new file mode 100644 index 0000000..18096f4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/lily_small.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 789 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "lily_small.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "lily_small.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5680954554573894611, "Model::lily_small", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5641050990764681554, "Geometry::", "Mesh" { + Vertices: *294 { + a: 0,2.003707E-31,1,-0.8660254,2.003707E-31,0.5,0,0.2,1,-0.8660254,0.2,0.5,-0.8660254,0.2,-0.5,0,0.2,-1,-0.9439677,0.4,-0.545,5.775292E-14,0.4,-1.09,-0.9439677,0.4,-0.545,0,0.2,-1,-0.8660254,0.2,-0.5,5.775292E-14,0.4,-1.09,0,2.003707E-31,-1,0.8660254,2.003707E-31,-0.5,0,0.2,-1,0.8660254,0.2,-0.5,-0.8660254,2.003707E-31,-0.5,0,2.003707E-31,-1,-0.8660254,0.2,-0.5,0,0.2,-1,0,0.2,1,-0.8660254,0.2,0.5,5.775292E-14,0.4,1.09,-0.9439677,0.4,0.545,5.775292E-14,0.4,1.09,-0.8660254,0.2,0.5,0,0.2,1,-0.9439677,0.4,0.545,0.9439677,0.4,-0.545,0.8660254,0.2,-0.5,0.9439677,0.4,0.545,0.8660254,0.2,0.5,0.9439677,0.4,0.545,0.8660254,0.2,-0.5,0.9439677,0.4,-0.545,0.8660254,0.2,0.5,0.8660254,2.003707E-31,0.5,0,2.003707E-31,1,0.8660254,0.2,0.5,0,0.2,1,-0.3660254,2.819967E-17,0,-0.3660254,0.2,0,-0.8660254,2.003707E-31,0.5,-0.8660254,0.2,0.5,-0.8660254,2.003707E-31,-0.5,-0.8660254,0.2,-0.5,-0.3660254,2.819967E-17,0,-0.3660254,0.2,0,-0.9439677,0.4,-0.545,-0.3989677,0.4,0,-0.8660254,0.2,-0.5,-0.3660254,0.2,0,-0.8660254,0.2,-0.5,-0.3989677,0.4,0,-0.9439677,0.4,-0.545,-0.3660254,0.2,0,0.8660254,2.003707E-31,0.5,0.8660254,2.003707E-31,-0.5,0,2.003707E-31,1,0,2.003707E-31,-1,-0.3660254,2.819967E-17,0,-0.8660254,2.003707E-31,0.5,-0.8660254,2.003707E-31,-0.5,-0.3660254,0.2,0,-0.3989677,0.4,0,-0.8660254,0.2,0.5,-0.9439677,0.4,0.545,-0.8660254,0.2,0.5,-0.3989677,0.4,0,-0.3660254,0.2,0,-0.9439677,0.4,0.545,0,0.2,-1,0.8660254,0.2,-0.5,5.775292E-14,0.4,-1.09,0.9439677,0.4,-0.545,5.775292E-14,0.4,-1.09,0.8660254,0.2,-0.5,0,0.2,-1,0.9439677,0.4,-0.545,0.8660254,0.2,-0.5,0.8660254,2.003707E-31,-0.5,0.8660254,0.2,0.5,0.8660254,2.003707E-31,0.5,0.8660254,0.2,0.5,0,0.2,1,0.9439677,0.4,0.545,5.775292E-14,0.4,1.09,0.9439677,0.4,0.545,0,0.2,1,0.8660254,0.2,0.5,5.775292E-14,0.4,1.09,0.8660254,0.2,-0.5,0.8660254,0.2,0.5,0,0.2,-1,0,0.2,1,-0.3660254,0.2,0,-0.8660254,0.2,-0.5,-0.8660254,0.2,0.5 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,9,11,-9,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,25,27,-25,28,30,-30,31,29,-31,32,34,-34,33,35,-33,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,59,-59,61,60,-59,60,62,-60,63,65,-65,66,64,-66,67,69,-69,68,70,-68,71,73,-73,74,72,-74,75,77,-77,76,78,-76,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,88,90,-88,91,93,-93,94,92,-94,95,94,-94,96,95,-94,95,97,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: -0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.4658727,-0.3631119,-0.8069153,-0.4658727,-0.3631119,-0.8069153,-0.4658727,-0.3631119,-0.8069153,-0.4658727,-0.3631119,-0.8069153,-0.4658727,-0.3631119,-0.8069153,-0.4658727,-0.3631119,-0.8069153,0.4658727,0.3631119,0.8069153,0.4658727,0.3631119,0.8069153,0.4658727,0.3631119,0.8069153,0.4658727,0.3631119,0.8069153,0.4658727,0.3631119,0.8069153,0.4658727,0.3631119,0.8069153,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.4658727,-0.3631119,0.8069153,-0.4658727,-0.3631119,0.8069153,-0.4658727,-0.3631119,0.8069153,-0.4658727,-0.3631119,0.8069153,-0.4658727,-0.3631119,0.8069153,-0.4658727,-0.3631119,0.8069153,0.4658727,0.3631119,-0.8069153,0.4658727,0.3631119,-0.8069153,0.4658727,0.3631119,-0.8069153,0.4658727,0.3631119,-0.8069153,0.4658727,0.3631119,-0.8069153,0.4658727,0.3631119,-0.8069153,0.9317456,-0.3631119,0,0.9317456,-0.3631119,0,0.9317456,-0.3631119,0,0.9317456,-0.3631119,0,0.9317456,-0.3631119,0,0.9317456,-0.3631119,0,-0.9317456,0.3631119,0,-0.9317456,0.3631119,0,-0.9317456,0.3631119,0,-0.9317456,0.3631119,0,-0.9317456,0.3631119,0,-0.9317456,0.3631119,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7023591,-0.1156866,0.7023591,-0.7023591,-0.1156866,0.7023591,-0.7023591,-0.1156866,0.7023591,-0.7023591,-0.1156866,0.7023591,-0.7023591,-0.1156866,0.7023591,-0.7023591,-0.1156866,0.7023591,0.7023591,0.1156866,-0.7023591,0.7023591,0.1156866,-0.7023591,0.7023591,0.1156866,-0.7023591,0.7023591,0.1156866,-0.7023591,0.7023591,0.1156866,-0.7023591,0.7023591,0.1156866,-0.7023591,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7023591,-0.1156866,-0.7023591,-0.7023591,-0.1156866,-0.7023591,-0.7023591,-0.1156866,-0.7023591,-0.7023591,-0.1156866,-0.7023591,-0.7023591,-0.1156866,-0.7023591,-0.7023591,-0.1156866,-0.7023591,0.7023591,0.1156866,0.7023591,0.7023591,0.1156866,0.7023591,0.7023591,0.1156866,0.7023591,0.7023591,0.1156866,0.7023591,0.7023591,0.1156866,0.7023591,0.7023591,0.1156866,0.7023591,0.4658727,-0.3631119,-0.8069153,0.4658727,-0.3631119,-0.8069153,0.4658727,-0.3631119,-0.8069153,0.4658727,-0.3631119,-0.8069153,0.4658727,-0.3631119,-0.8069153,0.4658727,-0.3631119,-0.8069153,-0.4658727,0.3631119,0.8069153,-0.4658727,0.3631119,0.8069153,-0.4658727,0.3631119,0.8069153,-0.4658727,0.3631119,0.8069153,-0.4658727,0.3631119,0.8069153,-0.4658727,0.3631119,0.8069153,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4658727,-0.3631119,0.8069153,0.4658727,-0.3631119,0.8069153,0.4658727,-0.3631119,0.8069153,0.4658727,-0.3631119,0.8069153,0.4658727,-0.3631119,0.8069153,0.4658727,-0.3631119,0.8069153,-0.4658727,0.3631119,-0.8069153,-0.4658727,0.3631119,-0.8069153,-0.4658727,0.3631119,-0.8069153,-0.4658727,0.3631119,-0.8069153,-0.4658727,0.3631119,-0.8069153,-0.4658727,0.3631119,-0.8069153,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *196 { + a: 1.968504,7.888609E-31,-1.968504,7.888609E-31,1.968504,0.7874016,-1.968504,0.7874016,1.968504,1.971706,-1.968504,1.971706,2.145669,2.816788,-2.145669,2.816788,2.145669,2.816788,-1.968504,1.971706,1.968504,1.971706,-2.145669,2.816788,1.968504,7.888609E-31,-1.968504,7.888609E-31,1.968504,0.7874016,-1.968504,0.7874016,1.968504,7.888609E-31,-1.968504,7.888609E-31,1.968504,0.7874016,-1.968504,0.7874016,1.968504,1.971706,-1.968504,1.971706,2.145669,2.816788,-2.145669,2.816788,2.145669,2.816788,-1.968504,1.971706,1.968504,1.971706,-2.145669,2.816788,2.145669,2.816788,1.968504,1.971706,-2.145669,2.816788,-1.968504,1.971706,-2.145669,2.816788,1.968504,1.971706,2.145669,2.816788,-1.968504,1.971706,1.968504,7.888609E-31,-1.968504,7.888609E-31,1.968504,0.7874016,-1.968504,0.7874016,1.018973,1.110223E-16,1.018973,0.7874016,3.802858,7.888609E-31,3.802858,0.7874016,-3.802858,7.888609E-31,-3.802858,0.7874016,-1.018973,1.110223E-16,-1.018973,0.7874016,-4.145115,1.69272,-1.11068,1.69272,-3.802858,0.8999962,-1.018973,0.8999962,-3.802858,0.8999962,-1.11068,1.69272,-4.145115,1.69272,-1.018973,0.8999962,3.409549,1.968504,3.409549,-1.968504,0,3.937008,0,-3.937008,-1.441045,0,-3.409549,1.968504,-3.409549,-1.968504,1.018973,0.8999962,1.11068,1.69272,3.802858,0.8999962,4.145115,1.69272,3.802858,0.8999962,1.11068,1.69272,1.018973,0.8999962,4.145115,1.69272,1.968504,1.971706,-1.968504,1.971706,2.145669,2.816788,-2.145669,2.816788,2.145669,2.816788,-1.968504,1.971706,1.968504,1.971706,-2.145669,2.816788,1.968504,0.7874016,1.968504,7.888609E-31,-1.968504,0.7874016,-1.968504,7.888609E-31,1.968504,1.971706,-1.968504,1.971706,2.145669,2.816788,-2.145669,2.816788,2.145669,2.816788,-1.968504,1.971706,1.968504,1.971706,-2.145669,2.816788,-3.409549,-1.968504,-3.409549,1.968504,0,-3.937008,0,3.937008,1.441045,0,3.409549,-1.968504,3.409549,1.968504 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,9,11,8,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,25,27,24,28,30,29,31,29,30,32,34,33,33,35,32,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,59,58,61,60,58,60,62,59,63,65,64,66,64,65,67,69,68,68,70,67,71,73,72,74,72,73,75,77,76,76,78,75,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,88,90,87,91,93,92,94,92,93,95,94,93,96,95,93,95,97,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh lily_small, Model::RootNode + C: "OO",5680954554573894611,0 + + ;Geometry::, Model::Mesh lily_small + C: "OO",5641050990764681554,5680954554573894611 + + ;Material::leafsGreen, Model::Mesh lily_small + C: "OO",3030,5680954554573894611 + + ;Material::leafsDark, Model::Mesh lily_small + C: "OO",3026,5680954554573894611 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/lily_small.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/lily_small.fbx.import new file mode 100644 index 0000000..0b51306 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/lily_small.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dt0wy7c41qmn4" +path="res://.godot/imported/lily_small.fbx-bde51f44cf0be6c061793c43918b2c97.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/lily_small.fbx" +dest_files=["res://.godot/imported/lily_small.fbx-bde51f44cf0be6c061793c43918b2c97.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/log.fbx b/assets/models/kenney_nature-kit/Models/FBX format/log.fbx new file mode 100644 index 0000000..fc69871 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/log.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 898 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "log.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "log.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5146012303443470153, "Model::log", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5616545830326495339, "Geometry::", "Mesh" { + Vertices: *936 { + a: 0.8680443,1.094579,1.986048,0.6319557,1.503497,1.986048,1.092439,1.305917,1.915222,0.9271764,1.592159,1.915222,0.5,0,-3.55,-0.3300827,0.2943053,-3.55,-0.5,0,-3.55,-1,0.8660254,-3.55,-0.6601655,0.8660254,-3.55,-0.5,1.732051,-3.55,-0.3300827,1.437746,-3.55,0.3300828,1.437746,-3.55,0.3300828,0.2943053,-3.55,1,0.8660254,-3.55,0.6601656,0.8660254,-3.55,0.5,1.732051,-3.55,-0.5,0,-3.55,-1,0.8660254,-3.55,-0.5,-5.636549E-12,3.55,-1,0.8660254,3.55,-0.8551786,1.116863,-1.61875,-1.247172,1.437912,-1.700789,-0.6448213,1.481213,-1.61875,-1.118853,1.660165,-1.700789,1.092439,1.305917,1.915222,1.092439,1.305917,1.584698,0.8680443,1.094579,1.986048,0.8680443,1.094579,1.513871,-0.8551786,1.116863,-1.61875,-0.8551786,1.116863,-2.039464,-1.247172,1.437912,-1.700789,-1.247172,1.437912,-1.957425,0.9271764,1.592159,1.584698,1.092439,1.305917,1.584698,0.9271764,1.592159,1.915222,1.092439,1.305917,1.915222,0.8680443,1.094579,1.513871,1.092439,1.305917,1.584698,0.6319557,1.503497,1.513871,0.9271764,1.592159,1.584698,-0.8551786,1.116863,-2.039464,-0.6448213,1.481213,-2.039464,-1.247172,1.437912,-1.957425,-1.118853,1.660165,-1.957425,-0.5,-5.636549E-12,3.55,0.327618,0.2985745,3.55,0.5,-5.636549E-12,3.55,1,0.8660254,3.55,0.6552359,0.8660254,3.55,0.5,1.732051,3.55,0.327618,1.433476,3.55,-0.3276179,1.433476,3.55,-0.3276179,0.2985745,3.55,-1,0.8660254,3.55,-0.6552359,0.8660254,3.55,-0.5,1.732051,3.55,1,0.8660254,-3.55,0.5,0,-3.55,1,0.8660254,3.55,0.5,-5.636549E-12,3.55,-1.247172,1.437912,-1.957425,-1.118853,1.660165,-1.957425,-1.247172,1.437912,-1.700789,-1.118853,1.660165,-1.700789,0.9271764,1.592159,1.584698,0.9271764,1.592159,1.915222,0.6319557,1.503497,1.513871,0.6319557,1.503497,1.986048,0.5,1.732051,-3.55,0.5,1.732051,3.55,-0.5,1.732051,-3.55,-0.5,1.732051,3.55,0.5,-5.636549E-12,3.55,0.5,0,-3.55,-0.5,-5.636549E-12,3.55,-0.5,0,-3.55,-0.5,1.732051,-3.55,-0.8551786,1.116863,-2.039464,-1,0.8660254,-3.55,-1,0.8660254,3.55,-0.8551786,1.116863,-1.61875,-0.6448213,1.481213,-1.61875,-0.6448213,1.481213,-2.039464,-0.5,1.732051,3.55,-0.6448213,1.481213,-2.039464,-0.6448213,1.481213,-1.61875,-1.118853,1.660165,-1.957425,-1.118853,1.660165,-1.700789,1,0.8660254,-3.55,0.6319557,1.503497,1.513871,0.5,1.732051,-3.55,0.5,1.732051,3.55,0.6319557,1.503497,1.986048,0.8680443,1.094579,1.986048,0.8680443,1.094579,1.513871,1,0.8660254,3.55,1.092439,1.305917,1.915222,0.6319557,1.503497,1.986048,0.8680443,1.094579,1.986048,0.9271764,1.592159,1.915222,-0.2640662,0.4086493,-3.35,0.2640662,0.4086493,-3.35,-0.5281323,0.8660254,-3.35,0.5281326,0.8660254,-3.35,-0.2640662,1.323401,-3.35,0.2640662,1.323401,-3.35,-0.5281323,0.8660254,-3.35,0.2640662,0.4086493,-3.35,-0.2640662,0.4086493,-3.35,0.5281326,0.8660254,-3.35,-0.2640662,1.323401,-3.35,0.2640662,1.323401,-3.35,0.2620943,0.4120646,3.35,0.5241888,0.8660254,3.35,0.327618,0.2985745,3.55,0.6552359,0.8660254,3.55,0.327618,0.2985745,3.55,0.5241888,0.8660254,3.35,0.2620943,0.4120646,3.35,0.6552359,0.8660254,3.55,-0.5,0,-3.55,-0.3300827,0.2943053,-3.55,0.5,0,-3.55,-1,0.8660254,-3.55,-0.6601655,0.8660254,-3.55,-0.5,1.732051,-3.55,-0.3300827,1.437746,-3.55,0.3300828,1.437746,-3.55,0.3300828,0.2943053,-3.55,1,0.8660254,-3.55,0.6601656,0.8660254,-3.55,0.5,1.732051,-3.55,-0.5,-5.636549E-12,3.55,-1,0.8660254,-3.55,-0.5,0,-3.55,-1,0.8660254,3.55,-0.6448213,1.481213,-1.61875,-1.247172,1.437912,-1.700789,-0.8551786,1.116863,-1.61875,-1.118853,1.660165,-1.700789,0.8680443,1.094579,1.986048,1.092439,1.305917,1.584698,1.092439,1.305917,1.915222,0.8680443,1.094579,1.513871,-1.247172,1.437912,-1.700789,-0.8551786,1.116863,-2.039464,-0.8551786,1.116863,-1.61875,-1.247172,1.437912,-1.957425,-0.2620943,1.319986,3.35,-0.5241887,0.8660254,3.35,-0.3276179,1.433476,3.55,-0.6552359,0.8660254,3.55,-0.3276179,1.433476,3.55,-0.5241887,0.8660254,3.35,-0.2620943,1.319986,3.35,-0.6552359,0.8660254,3.55,0.327618,1.433476,3.55,0.2620943,1.319986,3.35,-0.3276179,1.433476,3.55,-0.2620943,1.319986,3.35,-0.3276179,1.433476,3.55,0.2620943,1.319986,3.35,0.327618,1.433476,3.55,-0.2620943,1.319986,3.35,0.9271764,1.592159,1.915222,1.092439,1.305917,1.584698,0.9271764,1.592159,1.584698,1.092439,1.305917,1.915222,0.6319557,1.503497,1.513871,1.092439,1.305917,1.584698,0.8680443,1.094579,1.513871,0.9271764,1.592159,1.584698,0.6601656,0.8660254,-3.55,0.3300828,1.437746,-3.55,0.5281326,0.8660254,-3.35,0.2640662,1.323401,-3.35,0.5281326,0.8660254,-3.35,0.3300828,1.437746,-3.55,0.6601656,0.8660254,-3.55,0.2640662,1.323401,-3.35,-1.247172,1.437912,-1.957425,-0.6448213,1.481213,-2.039464,-0.8551786,1.116863,-2.039464,-1.118853,1.660165,-1.957425,0.5,-5.636549E-12,3.55,0.327618,0.2985745,3.55,-0.5,-5.636549E-12,3.55,1,0.8660254,3.55,0.6552359,0.8660254,3.55,0.5,1.732051,3.55,0.327618,1.433476,3.55,-0.3276179,1.433476,3.55,-0.3276179,0.2985745,3.55,-1,0.8660254,3.55,-0.6552359,0.8660254,3.55,-0.5,1.732051,3.55,0.327618,0.2985745,3.55,-0.3276179,0.2985745,3.55,0.2620943,0.4120646,3.35,-0.2620943,0.4120646,3.35,0.2620943,0.4120646,3.35,-0.3276179,0.2985745,3.55,0.327618,0.2985745,3.55,-0.2620943,0.4120646,3.35,0.5241888,0.8660254,3.35,0.2620943,1.319986,3.35,0.6552359,0.8660254,3.55,0.327618,1.433476,3.55,0.6552359,0.8660254,3.55,0.2620943,1.319986,3.35,0.5241888,0.8660254,3.35,0.327618,1.433476,3.55,0.3300828,0.2943053,-3.55,0.6601656,0.8660254,-3.55,0.2640662,0.4086493,-3.35,0.5281326,0.8660254,-3.35,0.2640662,0.4086493,-3.35,0.6601656,0.8660254,-3.55,0.3300828,0.2943053,-3.55,0.5281326,0.8660254,-3.35,0.3300828,1.437746,-3.55,-0.3300827,1.437746,-3.55,0.2640662,1.323401,-3.35,-0.2640662,1.323401,-3.35,0.2640662,1.323401,-3.35,-0.3300827,1.437746,-3.55,0.3300828,1.437746,-3.55,-0.2640662,1.323401,-3.35,0.3300828,0.2943053,-3.55,0.2640662,0.4086493,-3.35,-0.3300827,0.2943053,-3.55,-0.2640662,0.4086493,-3.35,-0.3300827,0.2943053,-3.55,0.2640662,0.4086493,-3.35,0.3300828,0.2943053,-3.55,-0.2640662,0.4086493,-3.35,1,0.8660254,3.55,0.5,0,-3.55,1,0.8660254,-3.55,0.5,-5.636549E-12,3.55,0.2620943,0.4120646,3.35,-0.2620943,0.4120646,3.35,0.5241888,0.8660254,3.35,-0.5241887,0.8660254,3.35,0.2620943,1.319986,3.35,-0.2620943,1.319986,3.35,0.5241888,0.8660254,3.35,-0.2620943,0.4120646,3.35,0.2620943,0.4120646,3.35,-0.5241887,0.8660254,3.35,0.2620943,1.319986,3.35,-0.2620943,1.319986,3.35,-1.247172,1.437912,-1.700789,-1.118853,1.660165,-1.957425,-1.247172,1.437912,-1.957425,-1.118853,1.660165,-1.700789,0.6319557,1.503497,1.513871,0.9271764,1.592159,1.915222,0.9271764,1.592159,1.584698,0.6319557,1.503497,1.986048,-0.3300827,1.437746,-3.55,-0.6601655,0.8660254,-3.55,-0.2640662,1.323401,-3.35,-0.5281323,0.8660254,-3.35,-0.2640662,1.323401,-3.35,-0.6601655,0.8660254,-3.55,-0.3300827,1.437746,-3.55,-0.5281323,0.8660254,-3.35,-0.6601655,0.8660254,-3.55,-0.3300827,0.2943053,-3.55,-0.5281323,0.8660254,-3.35,-0.2640662,0.4086493,-3.35,-0.5281323,0.8660254,-3.35,-0.3300827,0.2943053,-3.55,-0.6601655,0.8660254,-3.55,-0.2640662,0.4086493,-3.35,-0.5,1.732051,-3.55,0.5,1.732051,3.55,0.5,1.732051,-3.55,-0.5,1.732051,3.55,-0.5,-5.636549E-12,3.55,0.5,0,-3.55,0.5,-5.636549E-12,3.55,-0.5,0,-3.55,-1,0.8660254,-3.55,-0.8551786,1.116863,-2.039464,-0.5,1.732051,-3.55,-1,0.8660254,3.55,-0.8551786,1.116863,-1.61875,-0.6448213,1.481213,-1.61875,-0.6448213,1.481213,-2.039464,-0.5,1.732051,3.55,-0.5241887,0.8660254,3.35,-0.2620943,0.4120646,3.35,-0.6552359,0.8660254,3.55,-0.3276179,0.2985745,3.55,-0.6552359,0.8660254,3.55,-0.2620943,0.4120646,3.35,-0.5241887,0.8660254,3.35,-0.3276179,0.2985745,3.55,-1.118853,1.660165,-1.957425,-0.6448213,1.481213,-1.61875,-0.6448213,1.481213,-2.039464,-1.118853,1.660165,-1.700789,0.5,1.732051,-3.55,0.6319557,1.503497,1.513871,1,0.8660254,-3.55,0.5,1.732051,3.55,0.6319557,1.503497,1.986048,0.8680443,1.094579,1.986048,0.8680443,1.094579,1.513871,1,0.8660254,3.55 + } + PolygonVertexIndex: *600 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,8,-8,10,8,-10,11,10,-10,5,12,-5,13,4,-13,14,13,-13,11,13,-15,15,13,-12,9,15,-12,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,45,-48,49,48,-48,50,48,-50,51,50,-50,45,52,-45,53,44,-53,54,53,-53,51,53,-55,55,53,-52,49,55,-52,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,77,-80,81,80,-80,77,82,-77,83,76,-83,81,83,-83,79,83,-82,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,89,-92,93,92,-92,89,94,-89,95,88,-95,93,95,-95,91,95,-94,96,98,-98,97,99,-97,100,102,-102,103,101,-103,104,103,-103,105,103,-105,106,108,-108,107,109,-107,109,110,-107,109,111,-111,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,121,123,-121,121,124,-124,124,125,-124,124,126,-126,126,127,-126,128,121,-123,122,129,-129,129,130,-129,129,127,-131,129,131,-128,131,125,-128,132,134,-134,133,135,-133,136,138,-138,137,139,-137,140,142,-142,141,143,-141,144,146,-146,145,147,-145,148,150,-150,151,149,-151,152,154,-154,153,155,-153,156,158,-158,159,157,-159,160,162,-162,161,163,-161,164,166,-166,165,167,-165,168,170,-170,169,171,-169,172,174,-174,175,173,-175,176,178,-178,177,179,-177,180,182,-182,181,183,-181,184,186,-186,185,187,-185,185,188,-188,188,189,-188,188,190,-190,190,191,-190,192,185,-187,186,193,-193,193,194,-193,193,191,-195,193,195,-192,195,189,-192,196,198,-198,199,197,-199,200,202,-202,201,203,-201,204,206,-206,207,205,-207,208,210,-210,209,211,-209,212,214,-214,215,213,-215,216,218,-218,217,219,-217,220,222,-222,223,221,-223,224,226,-226,225,227,-225,228,230,-230,231,229,-231,232,234,-234,233,235,-233,236,238,-238,237,239,-237,240,242,-242,243,241,-243,244,243,-243,245,243,-245,246,248,-248,247,249,-247,249,250,-247,249,251,-251,252,254,-254,253,255,-253,256,258,-258,257,259,-257,260,262,-262,263,261,-263,264,266,-266,265,267,-265,268,270,-270,271,269,-271,272,274,-274,273,275,-273,276,278,-278,277,279,-277,280,282,-282,281,283,-281,284,286,-286,285,287,-285,285,288,-288,288,289,-288,290,285,-287,286,291,-291,291,289,-291,291,287,-290,292,294,-294,295,293,-295,296,298,-298,297,299,-297,300,302,-302,301,303,-301,304,306,-306,305,307,-305,305,308,-308,308,309,-308,310,305,-307,306,311,-311,311,309,-311,311,307,-310 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1800 { + a: 0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,0.3531815,0.9355548,0,0.3531815,0.9355548,0,0.3531815,0.9355548,0,0.3531815,0.9355548,0,0.3531815,0.9355548,0,0.3531815,0.9355548,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,-0.1989867,-0.114885,-0.973245,-0.1989867,-0.114885,-0.973245,-0.1989867,-0.114885,-0.973245,-0.1989867,-0.114885,-0.973245,-0.1989867,-0.114885,-0.973245,-0.1989867,-0.114885,-0.973245,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7532077,0.4348647,0.4935288,-0.7532077,0.4348647,0.4935288,-0.7532077,0.4348647,0.4935288,-0.7532077,0.4348647,0.4935288,-0.7532077,0.4348647,0.4935288,-0.7532077,0.4348647,0.4935288,0.7532077,-0.4348647,-0.4935288,0.7532077,-0.4348647,-0.4935288,0.7532077,-0.4348647,-0.4935288,0.7532077,-0.4348647,-0.4935288,0.7532077,-0.4348647,-0.4935288,0.7532077,-0.4348647,-0.4935288,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.1402207,-0.08095646,-0.986805,0.1402207,-0.08095646,-0.986805,0.1402207,-0.08095646,-0.986805,0.1402207,-0.08095646,-0.986805,0.1402207,-0.08095646,-0.986805,0.1402207,-0.08095646,-0.986805,-0.6856115,0.7279677,0,-0.6856115,0.7279677,0,-0.6856115,0.7279677,0,-0.6856115,0.7279677,0,-0.6856115,0.7279677,0,-0.6856115,0.7279677,0,0.6336248,0.7736405,0,0.6336248,0.7736405,0,0.6336248,0.7736405,0,0.6336248,0.7736405,0,0.6336248,0.7736405,0,0.6336248,0.7736405,0,0.7532077,-0.434865,0.4935286,0.7532077,-0.434865,0.4935286,0.7532077,-0.434865,0.4935286,0.7532077,-0.434865,0.4935286,0.7532077,-0.434865,0.4935286,0.7532077,-0.434865,0.4935286,-0.7532077,0.434865,-0.4935286,-0.7532077,0.434865,-0.4935286,-0.7532077,0.434865,-0.4935286,-0.7532077,0.434865,-0.4935286,-0.7532077,0.434865,-0.4935286,-0.7532077,0.434865,-0.4935286,0,-0.8697299,0.493528,0,-0.8697299,0.493528,0,-0.8697299,0.493528,0,-0.8697299,0.493528,0,-0.8697299,0.493528,0,-0.8697299,0.493528,0,0.8697299,-0.493528,0,0.8697299,-0.493528,0,0.8697299,-0.493528,0,0.8697299,-0.493528,0,0.8697299,-0.493528,0,0.8697299,-0.493528,-0.8660251,-0.5000005,0,-0.8660251,-0.5000005,0,-0.8660251,-0.5000005,0,-0.8660251,-0.5000005,0,-0.8660251,-0.5000005,0,-0.8660251,-0.5000005,0,-0.1989896,-0.1148866,0.9732441,-0.1989896,-0.1148866,0.9732441,-0.1989896,-0.1148866,0.9732441,-0.1989896,-0.1148866,0.9732441,-0.1989896,-0.1148866,0.9732441,-0.1989896,-0.1148866,0.9732441,-0.7518258,-0.4340668,-0.4963305,-0.7518258,-0.4340668,-0.4963305,-0.7518258,-0.4340668,-0.4963305,-0.7518258,-0.4340668,-0.4963305,-0.7518258,-0.4340668,-0.4963305,-0.7518258,-0.4340668,-0.4963305,0.7518258,0.4340668,0.4963305,0.7518258,0.4340668,0.4963305,0.7518258,0.4340668,0.4963305,0.7518258,0.4340668,0.4963305,0.7518258,0.4340668,0.4963305,0.7518258,0.4340668,0.4963305,0.1402207,-0.08095646,0.986805,0.1402207,-0.08095646,0.986805,0.1402207,-0.08095646,0.986805,0.1402207,-0.08095646,0.986805,0.1402207,-0.08095646,0.986805,0.1402207,-0.08095646,0.986805,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8697296,0.4935284,0,0.8697296,0.4935284,0,0.8697296,0.4935284,0,0.8697296,0.4935284,0,0.8697296,0.4935284,0,0.8697296,0.4935284,0,-0.8697296,-0.4935284,0,-0.8697296,-0.4935284,0,-0.8697296,-0.4935284,0,-0.8697296,-0.4935284,0,-0.8697296,-0.4935284,0,-0.8697296,-0.4935284,-0.7532077,-0.4348649,0.4935288,-0.7532077,-0.4348649,0.4935288,-0.7532077,-0.4348649,0.4935288,-0.7532077,-0.4348649,0.4935288,-0.7532077,-0.4348649,0.4935288,-0.7532077,-0.4348649,0.4935288,0.7532077,0.4348649,-0.4935288,0.7532077,0.4348649,-0.4935288,0.7532077,0.4348649,-0.4935288,0.7532077,0.4348649,-0.4935288,0.7532077,0.4348649,-0.4935288,0.7532077,0.4348649,-0.4935288,-0.7518262,0.4340672,-0.4963296,-0.7518262,0.4340672,-0.4963296,-0.7518262,0.4340672,-0.4963296,-0.7518262,0.4340672,-0.4963296,-0.7518262,0.4340672,-0.4963296,-0.7518262,0.4340672,-0.4963296,0.7518262,-0.4340672,0.4963296,0.7518262,-0.4340672,0.4963296,0.7518262,-0.4340672,0.4963296,0.7518262,-0.4340672,0.4963296,0.7518262,-0.4340672,0.4963296,0.7518262,-0.4340672,0.4963296,0,-0.8681322,-0.4963331,0,-0.8681322,-0.4963331,0,-0.8681322,-0.4963331,0,-0.8681322,-0.4963331,0,-0.8681322,-0.4963331,0,-0.8681322,-0.4963331,0,0.8681322,0.4963331,0,0.8681322,0.4963331,0,0.8681322,0.4963331,0,0.8681322,0.4963331,0,0.8681322,0.4963331,0,0.8681322,0.4963331,0,0.8681342,-0.4963296,0,0.8681342,-0.4963296,0,0.8681342,-0.4963296,0,0.8681342,-0.4963296,0,0.8681342,-0.4963296,0,0.8681342,-0.4963296,0,-0.8681342,0.4963296,0,-0.8681342,0.4963296,0,-0.8681342,0.4963296,0,-0.8681342,0.4963296,0,-0.8681342,0.4963296,0,-0.8681342,0.4963296,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.866025,-0.5000008,0,0.866025,-0.5000008,0,0.866025,-0.5000008,0,0.866025,-0.5000008,0,0.866025,-0.5000008,0,0.866025,-0.5000008,0,0.287633,-0.9577407,0,0.287633,-0.9577407,0,0.287633,-0.9577407,0,0.287633,-0.9577407,0,0.287633,-0.9577407,0,0.287633,-0.9577407,0,0.7518257,-0.4340667,-0.4963306,0.7518257,-0.4340667,-0.4963306,0.7518257,-0.4340667,-0.4963306,0.7518257,-0.4340667,-0.4963306,0.7518257,-0.4340667,-0.4963306,0.7518257,-0.4340667,-0.4963306,-0.7518257,0.4340667,0.4963306,-0.7518257,0.4340667,0.4963306,-0.7518257,0.4340667,0.4963306,-0.7518257,0.4340667,0.4963306,-0.7518257,0.4340667,0.4963306,-0.7518257,0.4340667,0.4963306,0.7518262,0.434067,-0.4963297,0.7518262,0.434067,-0.4963297,0.7518262,0.434067,-0.4963297,0.7518262,0.434067,-0.4963297,0.7518262,0.434067,-0.4963297,0.7518262,0.434067,-0.4963297,-0.7518262,-0.434067,0.4963297,-0.7518262,-0.434067,0.4963297,-0.7518262,-0.434067,0.4963297,-0.7518262,-0.434067,0.4963297,-0.7518262,-0.434067,0.4963297,-0.7518262,-0.434067,0.4963297,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.7532078,0.4348648,0.4935287,0.7532078,0.4348648,0.4935287,0.7532078,0.4348648,0.4935287,0.7532078,0.4348648,0.4935287,0.7532078,0.4348648,0.4935287,0.7532078,0.4348648,0.4935287,-0.7532078,-0.4348648,-0.4935287,-0.7532078,-0.4348648,-0.4935287,-0.7532078,-0.4348648,-0.4935287,-0.7532078,-0.4348648,-0.4935287,-0.7532078,-0.4348648,-0.4935287,-0.7532078,-0.4348648,-0.4935287,-0.3531815,-0.9355548,0,-0.3531815,-0.9355548,0,-0.3531815,-0.9355548,0,-0.3531815,-0.9355548,0,-0.3531815,-0.9355548,0,-0.3531815,-0.9355548,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *624 { + a: 1.781966,3.322098,0.8713227,4.942741,2.703359,4.159683,2.065907,5.294131,-1.968504,0,1.299538,1.158682,1.968504,0,3.937008,3.409549,2.599077,3.409549,1.968504,6.819098,1.299538,5.660418,-1.299539,5.660418,-1.299539,1.158682,-3.93701,3.409549,-2.599077,3.409549,-1.968504,6.819098,-13.97638,0.984252,-13.97638,4.92126,13.97638,0.984252,13.97638,4.92126,-4.229935,4.855127,-5.803305,6.123262,-3.409993,6.2943,-5.30314,7.001155,-7.540244,6.655951,-6.238968,6.655951,-7.819087,5.442378,-5.960122,5.442378,-6.373032,5.390838,-8.029386,5.390838,-6.69602,7.385666,-7.706398,7.385666,-6.238968,3.60339,-6.238968,2.302115,-7.540244,3.60339,-7.540244,2.302115,-4.542137,4.873043,-5.46353,5.710628,-3.631493,6.493687,-4.826079,6.845077,2.203767,3.700754,1.383825,5.139926,3.777136,4.968889,3.276971,5.846782,-1.968504,-2.219114E-11,1.289835,1.17549,1.968504,-2.219114E-11,3.93701,3.409549,2.579669,3.409549,1.968504,6.819098,1.289835,5.643606,-1.289834,5.643606,-1.289834,1.17549,-3.937008,3.409549,-2.579669,3.409549,-1.968504,6.819098,13.97638,4.921261,13.97638,0.9842526,-13.97638,4.921261,-13.97638,0.9842526,-7.706398,2.447563,-7.706398,3.45794,-6.69602,2.447563,-6.69602,3.45794,6.238968,5.299024,7.540244,5.299024,5.960122,4.085453,7.819087,4.085453,-1.968504,-13.97638,-1.968504,13.97638,1.968504,-13.97638,1.968504,13.97638,1.968504,13.97638,1.968504,-13.97638,-1.968504,13.97638,-1.968504,-13.97638,-13.97638,4.921261,-8.029386,2.124577,-13.97638,0.9842525,13.97638,0.9842526,-6.373031,2.124577,-6.373032,3.780935,-8.029386,3.780935,13.97638,4.921261,8.029386,4.434656,6.373032,4.434656,7.706398,6.429482,6.69602,6.429482,13.97638,0.9842505,-5.960122,3.882238,13.97638,4.92126,-13.97638,4.92126,-7.819087,3.882238,-7.819087,2.023271,-5.960122,2.023271,-13.97638,0.9842502,2.703359,4.159683,0.8713227,4.942741,1.781966,3.322098,2.065907,5.294131,1.039631,1.608855,-1.039631,1.608855,2.079261,3.409549,-2.079262,3.409549,1.039631,5.21024,-1.039631,5.21024,2.079261,3.409549,-1.039631,1.608855,1.039631,1.608855,-2.079262,3.409549,1.039631,5.21024,-1.039631,5.21024,11.59727,-1.307171,12.1628,0.6775663,12.39727,-1.803354,13.10418,0.6775663,12.39727,-1.803354,12.1628,0.6775663,11.59727,-1.307171,13.10418,0.6775663,1.968504,0,1.299538,1.158682,-1.968504,0,3.937008,3.409549,2.599077,3.409549,1.968504,6.819098,1.299538,5.660418,-1.299539,5.660418,-1.299539,1.158682,-3.93701,3.409549,-2.599077,3.409549,-1.968504,6.819098,13.97638,0.984252,-13.97638,4.92126,-13.97638,0.984252,13.97638,4.92126,-3.409993,6.2943,-5.803305,6.123262,-4.229935,4.855127,-5.30314,7.001155,-7.819087,5.442378,-6.238968,6.655951,-7.540244,6.655951,-5.960122,5.442378,-6.69602,7.385666,-8.029386,5.390838,-6.373032,5.390838,-7.706398,7.385666,-11.59727,7.447739,-12.1628,5.463002,-12.39727,7.943922,-13.10418,5.463002,-12.39727,7.943922,-12.1628,5.463002,-11.59727,7.447739,-13.10418,5.463002,1.289835,14.94095,1.031867,14.03561,-1.289834,14.94095,-1.031867,14.03561,-1.289834,14.94095,1.031867,14.03561,1.289835,14.94095,-1.031867,14.03561,-7.540244,3.60339,-6.238968,2.302115,-6.238968,3.60339,-7.540244,2.302115,-3.631493,6.493687,-5.46353,5.710628,-4.542137,4.873043,-4.826079,6.845077,-13.09585,5.472458,-12.37989,7.970978,-12.15235,5.472457,-11.57957,7.471271,-12.15235,5.472457,-12.37989,7.970978,-13.09585,5.472458,-11.57957,7.471271,3.777136,4.968889,1.383825,5.139926,2.203767,3.700754,3.276971,5.846782,1.968504,-2.219114E-11,1.289835,1.17549,-1.968504,-2.219114E-11,3.93701,3.409549,2.579669,3.409549,1.968504,6.819098,1.289835,5.643606,-1.289834,5.643606,-1.289834,1.17549,-3.937008,3.409549,-2.579669,3.409549,-1.968504,6.819098,1.289835,-11.57553,-1.289834,-11.57553,1.031867,-10.67019,-1.031867,-10.67019,1.031867,-10.67019,-1.289834,-11.57553,1.289835,-11.57553,-1.031867,-10.67019,12.1628,5.463003,11.59727,7.447739,13.10418,5.463003,12.39727,7.943922,13.10418,5.463003,11.59727,7.447739,12.1628,5.463003,12.39727,7.943922,-12.3799,-1.827779,-13.09586,0.6707389,-11.57958,-1.328076,-12.15235,0.6707389,-11.57958,-1.328076,-13.09586,0.6707389,-12.3799,-1.827779,-12.15235,0.6707389,-1.299539,14.9428,1.299538,14.9428,-1.039631,14.03579,1.039631,14.03579,-1.039631,14.03579,1.299538,14.9428,-1.299539,14.9428,1.039631,14.03579,-1.299539,-11.55828,-1.039631,-10.65128,1.299538,-11.55828,1.039631,-10.65128,1.299538,-11.55828,-1.039631,-10.65128,-1.299539,-11.55828,1.039631,-10.65128,-13.97638,4.921261,13.97638,0.9842526,13.97638,4.921261,-13.97638,0.9842526,1.031867,1.622302,-1.031867,1.622302,2.063735,3.409549,-2.063735,3.409549,1.031867,5.196795,-1.031867,5.196795,2.063735,3.409549,-1.031867,1.622302,1.031867,1.622302,-2.063735,3.409549,1.031867,5.196795,-1.031867,5.196795,-6.69602,2.447563,-7.706398,3.45794,-7.706398,2.447563,-6.69602,3.45794,5.960122,4.085453,7.540244,5.299024,6.238968,5.299024,7.819087,4.085453,12.37989,7.970978,13.09585,5.472458,11.57957,7.471271,12.15234,5.472458,11.57957,7.471271,13.09585,5.472458,12.37989,7.970978,12.15234,5.472458,13.09586,0.6707392,12.37989,-1.827779,12.15235,0.6707391,11.57958,-1.328075,12.15235,0.6707391,12.37989,-1.827779,13.09586,0.6707392,11.57958,-1.328075,1.968504,-13.97638,-1.968504,13.97638,-1.968504,-13.97638,1.968504,13.97638,-1.968504,13.97638,1.968504,-13.97638,1.968504,13.97638,-1.968504,-13.97638,-13.97638,0.9842525,-8.029386,2.124577,-13.97638,4.921261,13.97638,0.9842526,-6.373031,2.124577,-6.373032,3.780935,-8.029386,3.780935,13.97638,4.921261,-12.1628,0.6775665,-11.59727,-1.30717,-13.10418,0.6775665,-12.39727,-1.803354,-13.10418,0.6775665,-11.59727,-1.30717,-12.1628,0.6775665,-12.39727,-1.803354,7.706398,6.429482,6.373032,4.434656,8.029386,4.434656,6.69602,6.429482,13.97638,4.92126,-5.960122,3.882238,13.97638,0.9842505,-13.97638,4.92126,-7.819087,3.882238,-7.819087,2.023271,-5.960122,2.023271,-13.97638,0.9842502 + } + UVIndex: *600 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,8,7,10,8,9,11,10,9,5,12,4,13,4,12,14,13,12,11,13,14,15,13,11,9,15,11,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,45,47,49,48,47,50,48,49,51,50,49,45,52,44,53,44,52,54,53,52,51,53,54,55,53,51,49,55,51,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,77,79,81,80,79,77,82,76,83,76,82,81,83,82,79,83,81,84,86,85,87,85,86,88,90,89,91,89,90,92,89,91,93,92,91,89,94,88,95,88,94,93,95,94,91,95,93,96,98,97,97,99,96,100,102,101,103,101,102,104,103,102,105,103,104,106,108,107,107,109,106,109,110,106,109,111,110,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,121,123,120,121,124,123,124,125,123,124,126,125,126,127,125,128,121,122,122,129,128,129,130,128,129,127,130,129,131,127,131,125,127,132,134,133,133,135,132,136,138,137,137,139,136,140,142,141,141,143,140,144,146,145,145,147,144,148,150,149,151,149,150,152,154,153,153,155,152,156,158,157,159,157,158,160,162,161,161,163,160,164,166,165,165,167,164,168,170,169,169,171,168,172,174,173,175,173,174,176,178,177,177,179,176,180,182,181,181,183,180,184,186,185,185,187,184,185,188,187,188,189,187,188,190,189,190,191,189,192,185,186,186,193,192,193,194,192,193,191,194,193,195,191,195,189,191,196,198,197,199,197,198,200,202,201,201,203,200,204,206,205,207,205,206,208,210,209,209,211,208,212,214,213,215,213,214,216,218,217,217,219,216,220,222,221,223,221,222,224,226,225,225,227,224,228,230,229,231,229,230,232,234,233,233,235,232,236,238,237,237,239,236,240,242,241,243,241,242,244,243,242,245,243,244,246,248,247,247,249,246,249,250,246,249,251,250,252,254,253,253,255,252,256,258,257,257,259,256,260,262,261,263,261,262,264,266,265,265,267,264,268,270,269,271,269,270,272,274,273,273,275,272,276,278,277,277,279,276,280,282,281,281,283,280,284,286,285,285,287,284,285,288,287,288,289,287,290,285,286,286,291,290,291,289,290,291,287,289,292,294,293,295,293,294,296,298,297,297,299,296,300,302,301,301,303,300,304,306,305,305,307,304,305,308,307,308,309,307,310,305,306,306,311,310,311,309,310,311,307,309 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *200 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh log, Model::RootNode + C: "OO",5146012303443470153,0 + + ;Geometry::, Model::Mesh log + C: "OO",5616545830326495339,5146012303443470153 + + ;Material::woodBark, Model::Mesh log + C: "OO",3046,5146012303443470153 + + ;Material::woodInner, Model::Mesh log + C: "OO",3054,5146012303443470153 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/log.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/log.fbx.import new file mode 100644 index 0000000..6394a76 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/log.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://3j580moju3ot" +path="res://.godot/imported/log.fbx-69fde7c106ac4e0b433b9fb4cf805c27.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/log.fbx" +dest_files=["res://.godot/imported/log.fbx-69fde7c106ac4e0b433b9fb4cf805c27.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/log_large.fbx b/assets/models/kenney_nature-kit/Models/FBX format/log_large.fbx new file mode 100644 index 0000000..0c026b1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/log_large.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 25 + Millisecond: 991 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "log_large.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "log_large.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5716856438675554728, "Model::log_large", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5257152604067302783, "Geometry::", "Mesh" { + Vertices: *456 { + a: -1.976835,4.167194,-0.4518068,-1.976835,4.167194,-0.03000677,-2.398468,4.155335,-0.4518068,-2.398468,4.155335,-0.03000677,-2.526303,3.041448,-0.6005046,-1.786595,3.062252,-0.6005046,-2.398468,4.155335,-0.4518068,-1.976835,4.167194,-0.4518068,1.253867,1.884489,1.422765,1.253867,1.144489,1.422765,1.05323,1.725389,2.527415,1.05323,1.303589,2.527415,1.253867,1.884489,1.422765,1.05323,1.725389,2.527415,0.5141598,1.884489,1.401961,0.6315966,1.725389,2.515556,1.253867,1.144489,1.422765,0.5141598,1.144489,1.401961,1.05323,1.303589,2.527415,0.6315966,1.303589,2.515556,-2.526303,3.041448,0.1394954,-2.398468,4.155335,-0.03000677,-1.786595,3.062252,0.1394954,-1.976835,4.167194,-0.03000677,2.769985,1.985929,-2.965801,2.769985,1.415929,-2.965801,3.013013,2.200929,-1.472241,3.013013,1.200929,-1.472241,3.013013,1.200929,-1.472241,2.769985,1.415929,-2.965801,2.013409,1.200929,-1.444127,2.20021,1.415929,-2.949776,2.20021,1.415929,-2.949776,2.769985,1.415929,-2.965801,2.20021,1.985929,-2.949776,2.769985,1.985929,-2.965801,3.013013,2.200929,-1.472241,2.013409,2.200929,-1.444127,2.769985,1.985929,-2.965801,2.20021,1.985929,-2.949776,2.20021,1.415929,-2.949776,2.20021,1.985929,-2.949776,2.013409,1.200929,-1.444127,2.013409,2.200929,-1.444127,-2.526303,3.041448,-0.6005046,-2.398468,4.155335,-0.4518068,-2.526303,3.041448,0.1394954,-2.398468,4.155335,-0.03000677,5,-2.255973E-16,-1.725,5,2.95,-1.225,5,3.45,-1.725,5,3.45,1.725,5,2.95,1.225,5,0.5,1.225,5,0.5,-1.225,5,-2.255973E-16,1.725,-4,0.45,1.275,1.253867,1.144489,1.422765,4,0.225,1.5,4,3.225,1.5,1.253867,1.884489,1.422765,0.5141598,1.884489,1.401961,-4,3,1.275,0.5141598,1.144489,1.401961,4,3.225,1.5,-1.786595,3.062252,-0.6005046,4,3.225,-1.5,-4,3,-1.275,-2.526303,3.041448,-0.6005046,-2.526303,3.041448,0.1394954,-1.786595,3.062252,0.1394954,-4,3,1.275,1.05323,1.303589,2.527415,0.6315966,1.303589,2.515556,1.05323,1.725389,2.527415,0.6315966,1.725389,2.515556,0.5141598,1.144489,1.401961,0.5141598,1.884489,1.401961,0.6315966,1.303589,2.515556,0.6315966,1.725389,2.515556,-5,3.19125,-1.46625,-5,0.68375,-1.04125,-5,0.25875,-1.46625,-5,0.25875,1.46625,-5,0.68375,1.04125,-5,2.76625,1.04125,-5,2.76625,-1.04125,-5,3.19125,1.46625,-1.786595,3.062252,-0.6005046,-1.786595,3.062252,0.1394954,-1.976835,4.167194,-0.4518068,-1.976835,4.167194,-0.03000677,-4,3,-1.275,-4,3,1.275,-5,3.19125,-1.46625,-5,3.19125,1.46625,-5,0.25875,1.46625,-5,3.19125,1.46625,-4,0.45,1.275,-4,3,1.275,5,-2.255973E-16,-1.725,5,3.45,-1.725,4,0.225,-1.5,4,3.225,-1.5,5,-2.255973E-16,1.725,4,0.225,1.5,5,3.45,1.725,4,3.225,1.5,5,3.45,-1.725,5,3.45,1.725,4,3.225,-1.5,4,3.225,1.5,-5,0.25875,-1.46625,-4,0.45,-1.275,-5,3.19125,-1.46625,-4,3,-1.275,-4,0.45,1.275,-4,0.45,-1.275,-5,0.25875,1.46625,-5,0.25875,-1.46625,-4,0.45,-1.275,2.013409,1.200929,-1.444127,-4,3,-1.275,2.013409,2.200929,-1.444127,3.013013,2.200929,-1.472241,3.013013,1.200929,-1.472241,4,0.225,-1.5,4,3.225,-1.5,5,-2.255973E-16,1.725,5,-2.255973E-16,-1.725,4,0.225,1.5,4,0.225,-1.5,4,0.225,1.5,4,0.225,-1.5,-4,0.45,1.275,-4,0.45,-1.275,5,0.5,-1.225,5,0.5,1.225,-5,0.68375,-1.04125,-5,0.68375,1.04125,5,0.5,-1.225,-5,0.68375,-1.04125,5,2.95,-1.225,-5,2.76625,-1.04125,5,2.95,1.225,5,2.95,-1.225,-5,2.76625,1.04125,-5,2.76625,-1.04125,5,0.5,1.225,5,2.95,1.225,-5,0.68375,1.04125,-5,2.76625,1.04125 + } + PolygonVertexIndex: *288 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,49,-52,53,52,-52,49,54,-49,55,48,-55,53,55,-55,51,55,-54,56,58,-58,59,57,-59,60,57,-60,61,60,-60,62,61,-60,62,56,-64,57,63,-57,61,62,-64,64,66,-66,67,65,-67,68,65,-68,69,68,-68,65,70,-65,71,64,-71,69,71,-71,67,71,-70,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,81,-84,85,84,-84,81,86,-81,87,80,-87,85,87,-87,83,87,-86,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,123,-123,121,125,-121,120,125,-127,127,126,-126,124,127,-126,122,127,-125,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *864 { + a: -0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.003733331,0.1327407,-0.9911438,-0.003733331,0.1327407,-0.9911438,-0.003733331,0.1327407,-0.9911438,-0.003733331,0.1327407,-0.9911438,-0.003733331,0.1327407,-0.9911438,-0.003733331,0.1327407,-0.9911438,0.9839025,0,0.1787061,0.9839025,0,0.1787061,0.9839025,0,0.1787061,0.9839025,0,0.1787061,0.9839025,0,0.1787061,0.9839025,0,0.1787061,-0.003989405,0.9898808,0.1418455,-0.003989405,0.9898808,0.1418455,-0.003989405,0.9898808,0.1418455,-0.003989405,0.9898808,0.1418455,-0.003989405,0.9898808,0.1418455,-0.003989405,0.9898808,0.1418455,-0.003989405,-0.9898808,0.1418455,-0.003989405,-0.9898808,0.1418455,-0.003989405,-0.9898808,0.1418455,-0.003989405,-0.9898808,0.1418455,-0.003989405,-0.9898808,0.1418455,-0.003989405,-0.9898808,0.1418455,-0.00424447,0.1509145,0.9885377,-0.00424447,0.1509145,0.9885377,-0.00424447,0.1509145,0.9885377,-0.00424447,0.1509145,0.9885377,-0.00424447,0.1509145,0.9885377,-0.00424447,0.1509145,0.9885377,0.9870187,0,-0.1606056,0.9870187,0,-0.1606056,0.9870187,0,-0.1606056,0.9870187,0,-0.1606056,0.9870187,0,-0.1606056,0.9870187,0,-0.1606056,-0.003989405,-0.9898808,-0.1418455,-0.003989405,-0.9898808,-0.1418455,-0.003989405,-0.9898808,-0.1418455,-0.003989405,-0.9898808,-0.1418455,-0.003989405,-0.9898808,-0.1418455,-0.003989405,-0.9898808,-0.1418455,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.003989405,0.9898808,-0.1418455,-0.003989405,0.9898808,-0.1418455,-0.003989405,0.9898808,-0.1418455,-0.003989405,0.9898808,-0.1418455,-0.003989405,0.9898808,-0.1418455,-0.003989405,0.9898808,-0.1418455,-0.9923915,0,-0.1231229,-0.9923915,0,-0.1231229,-0.9923915,0,-0.1231229,-0.9923915,0,-0.1231229,-0.9923915,0,-0.1231229,-0.9923915,0,-0.1231229,-0.9934789,0.1140161,0,-0.9934789,0.1140161,0,-0.9934789,0.1140161,0,-0.9934789,0.1140161,0,-0.9934789,0.1140161,0,-0.9934789,0.1140161,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0.9996048,0,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.02811388,0,0.9996048,-0.9944853,0,0.1048757,-0.9944853,0,0.1048757,-0.9944853,0,0.1048757,-0.9944853,0,0.1048757,-0.9944853,0,0.1048757,-0.9944853,0,0.1048757,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9855,0.1696749,0,0.9855,0.1696749,0,0.9855,0.1696749,0,0.9855,0.1696749,0,0.9855,0.1696749,0,0.9855,0.1696749,0,0.1878455,0.9821987,0,0.1878455,0.9821987,0,0.1878455,0.9821987,0,0.1878455,0.9821987,0,0.1878455,0.9821987,0,0.1878455,0.9821987,0,0.1878455,0,0.9821987,0.1878455,0,0.9821987,0.1878455,0,0.9821987,0.1878455,0,0.9821987,0.1878455,0,0.9821987,0.1878455,0,0.9821987,-0.2195122,0,-0.9756098,-0.2195122,0,-0.9756098,-0.2195122,0,-0.9756098,-0.2195122,0,-0.9756098,-0.2195122,0,-0.9756098,-0.2195122,0,-0.9756098,-0.2195122,0,0.9756098,-0.2195122,0,0.9756098,-0.2195122,0,0.9756098,-0.2195122,0,0.9756098,-0.2195122,0,0.9756098,-0.2195122,0,0.9756098,-0.2195122,0.9756098,0,-0.2195122,0.9756098,0,-0.2195122,0.9756098,0,-0.2195122,0.9756098,0,-0.2195122,0.9756098,0,-0.2195122,0.9756098,0,0.1878455,0,-0.9821987,0.1878455,0,-0.9821987,0.1878455,0,-0.9821987,0.1878455,0,-0.9821987,0.1878455,0,-0.9821987,0.1878455,0,-0.9821987,0.1878455,-0.9821987,0,0.1878455,-0.9821987,0,0.1878455,-0.9821987,0,0.1878455,-0.9821987,0,0.1878455,-0.9821987,0,0.1878455,-0.9821987,0,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.02811388,0,-0.9996048,-0.2195122,-0.9756098,0,-0.2195122,-0.9756098,0,-0.2195122,-0.9756098,0,-0.2195122,-0.9756098,0,-0.2195122,-0.9756098,0,-0.2195122,-0.9756098,0,-0.02811388,-0.9996048,0,-0.02811388,-0.9996048,0,-0.02811388,-0.9996048,0,-0.02811388,-0.9996048,0,-0.02811388,-0.9996048,0,-0.02811388,-0.9996048,0,0.0183719,0.9998312,0,0.0183719,0.9998312,0,0.0183719,0.9998312,0,0.0183719,0.9998312,0,0.0183719,0.9998312,0,0.0183719,0.9998312,0,0.0183719,0,0.9998312,0.0183719,0,0.9998312,0.0183719,0,0.9998312,0.0183719,0,0.9998312,0.0183719,0,0.9998312,0.0183719,0,0.9998312,0.0183719,-0.9998312,0,0.0183719,-0.9998312,0,0.0183719,-0.9998312,0,0.0183719,-0.9998312,0,0.0183719,-0.9998312,0,0.0183719,-0.9998312,0,0.0183719,0,-0.9998312,0.0183719,0,-0.9998312,0.0183719,0,-0.9998312,0.0183719,0,-0.9998312,0.0183719,0,-0.9998312,0.0183719,0,-0.9998312 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *304 { + a: -1.778767,-7.318494,-0.1181369,-7.318494,-1.778767,-8.979124,-0.1181369,-8.979124,9.937099,11.54945,7.024886,11.63208,9.436021,15.97399,7.77606,16.02109,-4.629087,7.41925,-4.629087,4.505864,-9.049256,6.792871,-9.049256,5.132242,5.092012,-4.35238,4.424681,-8.766551,2.178627,-4.35238,2.764051,-8.766551,5.092012,6.044573,2.178627,6.044573,4.424681,10.45874,2.764051,10.45874,-9.943625,11.74774,-9.443209,16.18393,-7.031418,11.83059,-7.78325,16.23116,9.773332,7.818619,9.773332,5.574525,3.815837,8.665076,3.815837,4.728068,-12.02052,6.076104,-11.22941,12.0412,-8.083515,6.076104,-8.985313,12.0412,-8.985313,5.574525,-11.22941,5.574525,-8.985313,7.818619,-11.22941,7.818619,-12.02052,-4.175596,-8.083515,-4.175596,-11.22941,-10.14069,-8.985313,-10.14069,-12.59145,5.574525,-12.59145,7.818619,-6.618252,4.728068,-6.618252,8.665076,-2.364192,10.76211,-1.778767,15.17628,0.5491943,10.76211,-0.1181369,15.17628,6.791338,-8.881784E-16,4.822834,11.61417,6.791338,13.58268,-6.791338,13.58268,-4.822834,11.61417,-4.822834,1.968504,4.822834,1.968504,-6.791338,-8.881784E-16,-15.60068,1.771654,5.092012,4.505864,15.90783,0.8858268,15.90783,12.69685,5.092012,7.41925,2.178627,7.41925,-15.60068,11.81102,2.178627,4.505864,5.905512,16.09876,-2.364192,-6.692116,-5.905512,16.09876,-5.019685,-15.40975,-2.364192,-9.605502,0.5491943,-9.605502,0.5491943,-6.692116,5.019685,-15.40975,4.424681,5.132242,2.764051,5.132242,4.424681,6.792871,2.764051,6.792871,5.701387,4.505864,5.701387,7.41925,10.10993,5.132242,10.10993,6.792871,-5.772638,12.56398,-4.09941,2.691929,-5.772638,1.018701,5.772638,1.018701,4.09941,2.691929,4.09941,10.89075,-4.09941,10.89075,5.772638,12.56398,2.364192,13.07476,-0.5491943,13.07476,1.778767,17.48894,0.1181369,17.48894,5.019685,17.68634,-5.019685,17.68634,5.772638,21.6947,-5.772638,21.6947,-20.41898,1.018701,-20.41898,12.56398,-16.41062,1.771654,-16.41062,11.81102,-20.6957,-8.906439E-16,-20.6957,13.58268,-16.66026,0.8858268,-16.66026,12.69685,20.6957,-8.906439E-16,16.66026,0.8858268,20.6957,13.58268,16.66026,12.69685,-6.791338,22.18648,6.791338,22.18648,-5.905512,18.15105,5.905512,18.15105,20.41898,1.018701,16.41062,1.771654,20.41898,12.56398,16.41062,11.81102,-5.019685,-15.1349,5.019685,-15.1349,-5.772638,-19.14326,5.772638,-19.14326,15.60068,1.771654,-8.083515,4.728068,15.60068,11.81102,-8.083515,8.665076,-12.02052,8.665076,-12.02052,4.728068,-15.90783,0.8858268,-15.90783,12.69685,6.791338,-19.20492,-6.791338,-19.20492,5.905512,-15.16948,-5.905512,-15.16948,5.905512,-15.7169,-5.905512,-15.7169,5.019685,15.79161,-5.019685,15.79161,4.822834,-19.64555,-4.822834,-19.64555,4.09941,19.73117,-4.09941,19.73117,19.77032,1.968504,-19.6064,2.691929,19.77032,11.61417,-19.6064,10.89075,-4.822834,19.89509,4.822834,19.89509,-4.09941,-19.48163,4.09941,-19.48163,-19.77032,1.968504,-19.77032,11.61417,19.6064,2.691929,19.6064,10.89075 + } + UVIndex: *288 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,49,51,53,52,51,49,54,48,55,48,54,53,55,54,51,55,53,56,58,57,59,57,58,60,57,59,61,60,59,62,61,59,62,56,63,57,63,56,61,62,63,64,66,65,67,65,66,68,65,67,69,68,67,65,70,64,71,64,70,69,71,70,67,71,69,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,81,83,85,84,83,81,86,80,87,80,86,85,87,86,83,87,85,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,123,122,121,125,120,120,125,126,127,126,125,124,127,125,122,127,124,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *96 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh log_large, Model::RootNode + C: "OO",5716856438675554728,0 + + ;Geometry::, Model::Mesh log_large + C: "OO",5257152604067302783,5716856438675554728 + + ;Material::woodBark, Model::Mesh log_large + C: "OO",3046,5716856438675554728 + + ;Material::woodInner, Model::Mesh log_large + C: "OO",3054,5716856438675554728 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/log_large.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/log_large.fbx.import new file mode 100644 index 0000000..39d20ec --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/log_large.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cqmiobe4axfkd" +path="res://.godot/imported/log_large.fbx-59d76a1705738b09eee5b7bc4bb10584.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/log_large.fbx" +dest_files=["res://.godot/imported/log_large.fbx-59d76a1705738b09eee5b7bc4bb10584.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/log_stack.fbx b/assets/models/kenney_nature-kit/Models/FBX format/log_stack.fbx new file mode 100644 index 0000000..82dbce1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/log_stack.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 26 + Millisecond: 101 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "log_stack.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "log_stack.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5656097116386206947, "Model::log_stack", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5675295016982788566, "Geometry::", "Mesh" { + Vertices: *636 { + a: 2,0.8660242,-3.35,1.5,-8.34465E-07,-3.35,2,0.8660242,3.35,1.5,-8.34465E-07,3.35,1.5,-8.34465E-07,3.35,1.5,-8.34465E-07,-3.35,0.5,-8.34465E-07,3.35,0.5,-8.34465E-07,-3.35,1.855179,1.116862,-2.039464,2.247171,1.437911,-1.957425,1.644821,1.481212,-2.039464,2.118854,1.660164,-1.957425,2.247171,1.437911,-1.700789,2.247171,1.437911,-1.957425,1.855179,1.116862,-1.61875,1.855179,1.116862,-2.039464,0.5,-8.34465E-07,3.35,1.327618,0.2985733,3.35,1.5,-8.34465E-07,3.35,2,0.8660242,3.35,1.655236,0.8660242,3.35,1.5,1.73205,3.35,1.327618,1.433475,3.35,0.6723821,1.433475,3.35,0.6723821,0.2985733,3.35,0,0.8660242,3.35,0.3447641,0.8660242,3.35,0.5,1.73205,3.35,1.470661,3.037967,1.653365,1.401377,3.037967,1.330184,1.266099,2.826629,1.769655,1.167121,2.826629,1.307968,1.855179,1.116862,-1.61875,1.644821,1.481212,-1.61875,2.247171,1.437911,-1.700789,2.118854,1.660164,-1.700789,2.118854,1.660164,-1.957425,2.118854,1.660164,-1.700789,1.644821,1.481212,-2.039464,1.644821,1.481212,-1.61875,1.5,-8.34465E-07,-3.35,0.6699172,0.2943041,-3.35,0.5,-8.34465E-07,-3.35,0,0.8660242,-3.35,0.3398345,0.8660242,-3.35,0.5,1.73205,-3.35,0.6699172,1.437744,-3.35,1.330083,1.437744,-3.35,1.330083,0.2943041,-3.35,2,0.8660242,-3.35,1.660166,0.8660242,-3.35,1.5,1.73205,-3.35,1.167121,2.826629,1.307968,1.401377,3.037967,1.330184,0.936278,3.235547,1.357456,1.239787,3.324209,1.364826,0.5,1.73205,3.328835,1.023588,2.030624,3.216587,1.192141,1.73205,3.180453,1.681032,2.598075,3.075644,1.343928,2.598075,3.147912,1.192141,3.464101,3.180453,1.023588,3.165526,3.216587,0.3829097,3.165526,3.353937,0.3829097,2.030624,3.353937,-0.2745342,2.598075,3.49488,0.2143574,1.73205,3.390071,0.06257036,2.598075,3.422612,0.2143574,3.464101,3.390071,-0.4999995,1.73205,-3.309018,-0.2123037,1.73205,-3.370695,-1.190087,1.73205,-3.161076,-1.023945,2.026355,-3.196694,-1.678978,2.598075,-3.056267,-1.346694,2.598075,-3.127502,-1.190087,3.464101,-3.161076,-1.023945,3.169795,-3.196694,-0.3784457,3.169795,-3.335077,-0.3784457,2.026355,-3.335077,0.2765879,2.598075,-3.475504,-0.05569606,2.598075,-3.404268,-0.2123037,3.464101,-3.370695,1.401377,3.037967,1.330184,1.470661,3.037967,1.653365,1.239787,3.324209,1.364826,1.309071,3.324209,1.688007,-0.5,0,-3.55,-1.330083,0.294305,-3.55,-1.5,0,-3.55,-2,0.8660251,-3.55,-1.660166,0.8660251,-3.55,-1.5,1.732051,-3.55,-1.330083,1.437745,-3.55,-0.6699169,1.437745,-3.55,-0.6699169,0.294305,-3.55,0,0.8660251,-3.55,-0.339834,0.8660251,-3.55,-0.5,1.732051,-3.55,0,0.8660251,-3.55,-0.5,0,-3.55,0,0.8660242,-3.35,-0.5,0,3.55,0,0.8660242,3.35,0,0.8660251,3.55,1.192141,3.464101,3.180453,0.2143574,3.464101,3.390071,-0.2123037,3.464101,-3.370695,-1.190087,3.464101,-3.161076,1.309071,3.324209,1.688007,1.035255,3.235547,1.819143,1.239787,3.324209,1.364826,0.936278,3.235547,1.357456,-1.5,0,-3.55,-2,0.8660251,-3.55,-1.5,0,3.55,-2,0.8660251,3.55,0.5,1.73205,3.328835,0.5,1.73205,-0.04809468,0.2143574,1.73205,3.390071,-0.2123037,1.73205,-3.370695,-0.4999995,1.73205,0.05789418,-0.4999995,1.73205,-3.309018,0.2765879,2.598075,-3.475504,-0.2123037,1.73205,-3.370695,1.681032,2.598075,3.075644,0.5,1.73205,-0.04809468,1.192141,1.73205,3.180453,1.266099,2.826629,1.769655,1.035255,3.235547,1.819143,1.470661,3.037967,1.653365,1.309071,3.324209,1.688007,-1.5,0,3.55,-0.672382,0.2985741,3.55,-0.5,0,3.55,0,0.8660251,3.55,-0.344764,0.8660251,3.55,-0.5,1.732051,3.55,-0.672382,1.433476,3.55,-1.327618,1.433476,3.55,-1.327618,0.2985741,3.55,-2,0.8660251,3.55,-1.655236,0.8660251,3.55,-1.5,1.732051,3.55,-1.190087,3.464101,-3.161076,0.2143574,3.464101,3.390071,-1.678978,2.598075,-3.056267,-0.2745342,2.598075,3.49488,-2,0.8660251,-3.55,-1.5,1.732051,-3.55,-2,0.8660251,3.55,-1.5,1.732051,3.55,-0.4999995,1.73205,-3.309018,-1.190087,1.73205,-3.161076,-0.5,1.732051,-3.55,-1.5,1.732051,-3.55,-1.5,1.732051,3.55,-0.5,1.732051,3.55,-0.4999995,1.73205,0.05789418,-0.5,1.732051,-3.55,0,0.8660251,-3.55,-0.4999995,1.73205,-3.309018,0,0.8660242,-3.35,0,0.8660242,3.35,-0.4999995,1.73205,0.05789418,-0.5,1.732051,3.55,0,0.8660251,3.55,1.167121,2.826629,1.307968,0.936278,3.235547,1.357456,-0.2123037,3.464101,-3.370695,1.192141,3.464101,3.180453,1.035255,3.235547,1.819143,1.681032,2.598075,3.075644,0.2765879,2.598075,-3.475504,1.266099,2.826629,1.769655,-0.5,0,3.55,-0.5,0,-3.55,-1.5,0,3.55,-1.5,0,-3.55,-1.190087,1.73205,-3.161076,-1.678978,2.598075,-3.056267,-0.4999995,1.73205,0.05789418,-0.2745342,2.598075,3.49488,0.2143574,1.73205,3.390071,0.5,-8.34465E-07,-3.35,0,0.8660242,-3.35,0.5,-8.34465E-07,3.35,0,0.8660242,3.35,0,0.8660242,-3.35,0.5,1.73205,-3.35,0,0.8660242,3.35,0.5,1.73205,-0.04809468,0.5,1.73205,3.328835,0.5,1.73205,3.35,1.5,1.73205,-3.35,1.5,1.73205,3.35,0.5,1.73205,-3.35,1.192141,1.73205,3.180453,0.5,1.73205,-0.04809468,0.5,1.73205,3.35,0.5,1.73205,3.328835,2.118854,1.660164,-1.957425,2.247171,1.437911,-1.957425,2.118854,1.660164,-1.700789,2.247171,1.437911,-1.700789,2,0.8660242,-3.35,1.644821,1.481212,-2.039464,1.5,1.73205,-3.35,1.5,1.73205,3.35,1.644821,1.481212,-1.61875,1.855179,1.116862,-1.61875,1.855179,1.116862,-2.039464,2,0.8660242,3.35 + } + PolygonVertexIndex: *552 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,20,-20,22,20,-22,23,22,-22,17,24,-17,25,16,-25,26,25,-25,23,25,-27,27,25,-24,21,27,-24,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,44,-46,47,46,-46,41,48,-41,49,40,-49,50,49,-49,47,49,-51,51,49,-48,45,51,-48,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,60,-60,62,60,-62,63,62,-62,57,64,-57,64,65,-57,66,56,-66,67,65,-65,63,65,-68,68,65,-64,61,68,-64,69,71,-71,72,70,-72,73,72,-72,74,72,-74,75,74,-74,76,74,-76,77,76,-76,72,78,-71,79,70,-79,80,79,-79,77,79,-81,81,79,-78,75,81,-78,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,87,-90,91,90,-90,92,90,-92,93,92,-92,87,94,-87,95,86,-95,96,95,-95,93,95,-97,97,95,-94,91,97,-94,98,100,-100,101,99,-101,102,101,-101,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,119,-119,121,119,-121,122,124,-124,125,123,-125,126,125,-125,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,132,-135,136,135,-135,137,135,-137,138,137,-137,132,139,-132,140,131,-140,141,140,-140,138,140,-142,142,140,-139,136,142,-139,143,145,-145,146,144,-146,147,149,-149,150,148,-150,151,153,-153,154,152,-154,154,155,-153,155,156,-153,157,152,-157,158,160,-160,161,159,-161,162,161,-161,163,162,-161,164,162,-164,165,162,-165,166,168,-168,169,167,-169,170,167,-170,171,170,-170,171,172,-167,168,166,-173,173,171,-167,170,171,-174,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,181,-181,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,190,-190,192,191,-190,193,195,-195,196,194,-196,197,196,-196,194,196,-199,199,198,-197,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,205,-208,209,208,-208,205,210,-205,211,204,-211,209,211,-211,207,211,-210,87,90,-95,96,94,-91,92,96,-91,93,96,-93,57,60,-65,67,64,-61,62,67,-61,63,67,-63,72,74,-79,80,78,-75,76,80,-75,77,80,-77,132,135,-140,141,139,-136,137,141,-136,138,141,-138,41,44,-49,50,48,-45,46,50,-45,47,50,-47,17,20,-25,26,24,-21,22,26,-21,23,26,-23 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1656 { + a: 0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6703793,-0.7279677,-0.1437169,0.6703793,-0.7279677,-0.1437169,0.6703793,-0.7279677,-0.1437169,0.6703793,-0.7279677,-0.1437169,0.6703793,-0.7279677,-0.1437169,0.6703793,-0.7279677,-0.1437169,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.009441396,0.1148866,-0.9933338,-0.009441396,0.1148866,-0.9933338,-0.009441396,0.1148866,-0.9933338,-0.009441396,0.1148866,-0.9933338,-0.009441396,0.1148866,-0.9933338,-0.009441396,0.1148866,-0.9933338,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,0.8467848,0.5000004,-0.1815349,0.8467848,0.5000004,-0.1815349,0.8467848,0.5000004,-0.1815349,0.8467848,0.5000004,-0.1815349,0.8467848,0.5000004,-0.1815349,0.8467848,0.5000004,-0.1815349,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2812428,0.9577407,0.06029322,-0.2812428,0.9577407,0.06029322,-0.2812428,0.9577407,0.06029322,-0.2812428,0.9577407,0.06029322,-0.2812428,0.9577407,0.06029322,-0.2812428,0.9577407,0.06029322,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.846785,-0.5000001,-0.181535,0.846785,-0.5000001,-0.181535,0.846785,-0.5000001,-0.181535,0.846785,-0.5000001,-0.181535,0.846785,-0.5000001,-0.181535,0.846785,-0.5000001,-0.181535,0.846785,-0.5000001,-0.181535,0.846785,-0.5000001,-0.181535,0.846785,-0.5000001,-0.181535,0.3985761,0.114885,0.9099113,0.3985761,0.114885,0.9099113,0.3985761,0.114885,0.9099113,0.3985761,0.114885,0.9099113,0.3985761,0.114885,0.9099113,0.3985761,0.114885,0.9099113,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8467852,0.4999998,0.181535,-0.8467852,0.4999998,0.181535,-0.8467852,0.4999998,0.181535,-0.8467852,0.4999998,0.181535,-0.8467852,0.4999998,0.181535,-0.8467852,0.4999998,0.181535,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,2.588066E-07,1,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8660257,0.4999996,0,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0.8467852,0.4999998,-0.181535,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.846785,-0.5000001,0.181535,-0.846785,-0.5000001,0.181535,-0.846785,-0.5000001,0.181535,-0.846785,-0.5000001,0.181535,-0.846785,-0.5000001,0.181535,-0.846785,-0.5000001,0.181535,-0.846785,-0.5000001,0.181535,-0.846785,-0.5000001,0.181535,-0.846785,-0.5000001,0.181535,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.866025,0.5000008,0,0.866025,0.5000008,0,0.866025,0.5000008,0,0.866025,0.5000008,0,0.866025,0.5000008,0,0.866025,0.5000008,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,0.2096186,0,0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,-0.2096186,0,-0.9777833,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *424 { + a: 13.18898,6.88976,13.18898,2.952754,-13.18898,6.88976,-13.18898,2.952754,5.905512,13.18898,5.905512,-13.18898,1.968504,13.18898,1.968504,-13.18898,-6.10162,3.655912,-7.67499,4.924047,-5.281678,5.095084,-7.174825,5.801939,6.69602,10.43149,7.706398,10.43149,6.373032,8.436665,8.029386,8.436665,1.968504,-3.285295E-06,5.226842,1.175485,5.905512,-3.285295E-06,7.874016,3.409544,6.516677,3.409544,5.905512,6.819095,5.226842,5.643603,2.647174,5.643603,2.647174,1.175485,0,3.409544,1.357339,3.409544,1.968504,6.819095,-7.578388,11.32826,-6.277112,11.32826,-7.85723,10.11469,-5.998265,10.11469,8.127789,4.810285,7.307847,6.249457,9.701159,6.078419,9.200994,6.956313,-7.706398,10.11277,-6.69602,10.11277,-8.029386,8.117942,-6.373032,8.117942,-5.905512,-3.285295E-06,-2.637469,1.158678,-1.968504,-3.285295E-06,0,3.409544,-1.337931,3.409544,-1.968504,6.819095,-2.637469,5.66041,-5.236547,5.66041,-5.236547,1.158678,-7.874016,3.409544,-6.536087,3.409544,-5.905512,6.819095,-4.545816,11.65137,-5.46721,12.48896,-3.635173,13.27202,-4.829759,13.62341,-0.8224173,6.819095,1.285792,7.994584,1.964461,6.819095,3.932965,10.22864,2.575627,10.22864,1.964461,13.63819,1.285792,12.4627,-1.293877,12.4627,-1.293877,7.994584,-3.941051,10.22864,-1.972547,6.819095,-2.583712,10.22864,-1.972547,13.63819,-0.8060648,6.819095,-1.964461,6.819095,1.972547,6.819095,1.303581,7.977776,3.941051,10.22864,2.603119,10.22864,1.972547,13.63819,1.303581,12.47951,-1.295497,12.47951,-1.295497,7.977776,-3.932965,10.22864,-2.595036,10.22864,-1.964461,13.63819,-6.277112,8.209644,-7.578388,8.209644,-6.277112,9.51092,-7.578388,9.51092,1.968504,-8.897637E-14,5.236547,1.158681,5.905512,-8.897637E-14,7.874016,3.409548,6.536085,3.409548,5.905512,6.819098,5.236547,5.660413,2.637468,5.660413,2.637468,1.158681,2.306334E-14,3.409548,1.337929,3.409548,1.968504,6.819098,13.97638,2.952754,13.97638,-0.9842526,13.18898,2.952751,-13.97638,-0.9842526,-13.18898,2.952751,-13.97638,2.952754,-4.693467,12.52147,-0.8439268,13.34674,0.8358414,-13.27045,4.685382,-12.44518,7.578388,7.256549,7.85723,6.042978,6.277112,7.256549,5.998265,6.042978,-13.97638,2.952757,-13.97638,6.889763,13.97638,2.952757,13.97638,6.889763,1.968504,13.10565,1.968504,-0.1893491,0.8439268,13.34674,-0.8358414,-13.27045,-1.968502,0.2279299,-1.968502,-13.02763,13.15083,10.82475,13.15083,6.88774,-13.22712,10.82475,-0.2274925,6.88774,-13.22712,6.88774,1.770365,10.09184,0.8597214,11.71249,2.691757,10.92943,2.054306,12.06388,-5.905512,0,-2.647173,1.175489,-1.968504,0,0,3.409548,-1.357339,3.409548,-1.968504,6.819098,-2.647173,5.643607,-5.226842,5.643607,-5.226842,1.175489,-7.874016,3.409548,-6.516677,3.409548,-5.905512,6.819098,-13.15083,10.82475,13.22712,10.82475,-13.15083,6.887742,13.22712,6.887742,-13.97638,-0.9842508,-13.97638,2.952759,13.97638,-0.9842508,13.97638,2.952759,1.968504,-13.02763,4.685383,-12.44518,1.968506,-13.97638,5.905514,-13.97638,5.905514,13.97638,1.968506,13.97638,1.968504,0.2279302,13.97638,6.889765,13.97638,2.952756,13.02763,6.889761,13.18898,2.952753,-13.18898,2.952753,-0.2279299,6.889761,-13.97638,6.889765,-13.97638,2.952756,-5.998265,7.930805,-5.998265,9.789772,13.15083,10.82879,-13.22712,10.82879,-7.85723,9.789772,-13.22712,6.891784,13.15083,6.891784,-7.85723,7.930805,-1.968504,13.97638,-1.968504,-13.97638,-5.905512,13.97638,-5.905512,-13.97638,-13.15083,6.891783,-13.15083,10.82879,-0.1897686,6.891783,13.22712,10.82879,13.22712,6.891783,-13.18898,-0.9842551,-13.18898,2.952752,13.18898,-0.9842551,13.18898,2.952752,-13.18898,2.952752,-13.18898,6.889762,13.18898,2.952752,-0.1893491,6.889762,13.10565,6.889762,13.18898,6.889762,-5.905512,-13.18898,-5.905512,13.18898,-1.968504,-13.18898,-4.693467,12.52147,-1.968504,-0.1893491,-1.968504,13.18898,-1.968504,13.10565,7.706398,1.48943,7.706398,0.479053,6.69602,1.48943,6.69602,0.479053,13.18898,-0.9842536,8.029386,1.81243,13.18898,2.952756,-13.18898,2.952756,6.373032,1.81243,6.373032,0.1560719,8.029386,0.1560719,-13.18898,-0.9842536 + } + UVIndex: *552 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,20,19,22,20,21,23,22,21,17,24,16,25,16,24,26,25,24,23,25,26,27,25,23,21,27,23,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,46,44,45,47,46,45,41,48,40,49,40,48,50,49,48,47,49,50,51,49,47,45,51,47,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,60,59,62,60,61,63,62,61,57,64,56,64,65,56,66,56,65,67,65,64,63,65,67,68,65,63,61,68,63,69,71,70,72,70,71,73,72,71,74,72,73,75,74,73,76,74,75,77,76,75,72,78,70,79,70,78,80,79,78,77,79,80,81,79,77,75,81,77,82,84,83,85,83,84,86,88,87,89,87,88,90,87,89,91,90,89,92,90,91,93,92,91,87,94,86,95,86,94,96,95,94,93,95,96,97,95,93,91,97,93,98,100,99,101,99,100,102,101,100,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,119,118,121,119,120,122,124,123,125,123,124,126,125,124,127,129,128,130,128,129,131,133,132,134,132,133,135,132,134,136,135,134,137,135,136,138,137,136,132,139,131,140,131,139,141,140,139,138,140,141,142,140,138,136,142,138,143,145,144,146,144,145,147,149,148,150,148,149,151,153,152,154,152,153,154,155,152,155,156,152,157,152,156,158,160,159,161,159,160,162,161,160,163,162,160,164,162,163,165,162,164,166,168,167,169,167,168,170,167,169,171,170,169,171,172,166,168,166,172,173,171,166,170,171,173,174,176,175,177,175,176,178,180,179,181,179,180,182,181,180,183,185,184,186,184,185,187,189,188,190,188,189,191,190,189,192,191,189,193,195,194,196,194,195,197,196,195,194,196,198,199,198,196,200,202,201,203,201,202,204,206,205,207,205,206,208,205,207,209,208,207,205,210,204,211,204,210,209,211,210,207,211,209,87,90,94,96,94,90,92,96,90,93,96,92,57,60,64,67,64,60,62,67,60,63,67,62,72,74,78,80,78,74,76,80,74,77,80,76,132,135,139,141,139,135,137,141,135,138,141,137,41,44,48,50,48,44,46,50,44,47,50,46,17,20,24,26,24,20,22,26,20,23,26,22 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *184 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh log_stack, Model::RootNode + C: "OO",5656097116386206947,0 + + ;Geometry::, Model::Mesh log_stack + C: "OO",5675295016982788566,5656097116386206947 + + ;Material::woodBark, Model::Mesh log_stack + C: "OO",3046,5656097116386206947 + + ;Material::woodInner, Model::Mesh log_stack + C: "OO",3054,5656097116386206947 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/log_stack.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/log_stack.fbx.import new file mode 100644 index 0000000..f10ae81 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/log_stack.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cda8lpq0igfpv" +path="res://.godot/imported/log_stack.fbx-2a347af57cb619904eb4258b23d84c6f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/log_stack.fbx" +dest_files=["res://.godot/imported/log_stack.fbx-2a347af57cb619904eb4258b23d84c6f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/log_stackLarge.fbx b/assets/models/kenney_nature-kit/Models/FBX format/log_stackLarge.fbx new file mode 100644 index 0000000..5a35e16 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/log_stackLarge.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 26 + Millisecond: 224 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "log_stackLarge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "log_stackLarge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5058167468845383410, "Model::log_stackLarge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5543786290346619312, "Geometry::", "Mesh" { + Vertices: *1080 { + a: 2.092439,3.037967,1.915222,2.092439,3.037967,1.584698,1.868044,2.826629,1.986048,1.868044,2.826629,1.513871,1.868044,2.826629,1.986048,1.631956,3.235547,1.986048,2.092439,3.037967,1.915222,1.927176,3.324209,1.915222,1.868044,2.826629,1.513871,2.092439,3.037967,1.584698,1.631956,3.235547,1.513871,1.927176,3.324209,1.584698,1.927176,3.324209,1.584698,2.092439,3.037967,1.584698,1.927176,3.324209,1.915222,2.092439,3.037967,1.915222,0,2.598076,-3.35,0.5,3.464101,-3.35,0,2.598076,3.35,0.5,3.464101,3.35,0.5000001,1.73205,-3.35,0.6699172,2.026355,-3.35,0,2.598076,-3.35,0.3398345,2.598075,-3.35,0.6699172,3.169795,-3.35,0.5,3.464101,-3.35,1.330083,3.169795,-3.35,1.330083,2.026355,-3.35,1.5,1.73205,-3.35,2,2.598075,-3.35,1.660166,2.598075,-3.35,1.5,3.464101,-3.35,0.5000001,1.73205,3.35,1.327618,2.030624,3.35,1.5,1.73205,3.35,2,2.598075,3.35,1.655236,2.598075,3.35,1.5,3.464101,3.35,1.327618,3.165526,3.35,0.6723821,3.165526,3.35,0.6723821,2.030624,3.35,0,2.598076,3.35,0.3447641,2.598075,3.35,0.5,3.464101,3.35,2,2.598075,-3.35,1.631956,3.235547,1.513871,1.5,3.464101,-3.35,1.5,3.464101,3.35,1.631956,3.235547,1.986048,1.868044,2.826629,1.986048,1.868044,2.826629,1.513871,2,2.598075,3.35,1.5,3.464101,-3.35,1.5,3.464101,3.35,0.5,3.464101,-3.35,0.5,3.464101,3.35,1.927176,3.324209,1.584698,1.927176,3.324209,1.915222,1.631956,3.235547,1.513871,1.631956,3.235547,1.986048,-1.855178,2.848914,-1.61875,-1.855178,2.848914,-2.039464,-2.247171,3.169963,-1.700789,-2.247171,3.169963,-1.957425,0.5000001,1.73205,3.35,1,0.8660251,3.35,0.5,1.732051,3.55,1,0.8660242,3.55,0.5,0,3.55,0.5,0,-3.55,-0.5,0,3.55,-0.5,0,-3.55,0.5,0,-3.55,-0.3300828,0.294305,-3.55,-0.5,0,-3.55,-1,0.8660251,-3.55,-0.6601655,0.8660251,-3.55,-0.5,1.732051,-3.55,-0.3300828,1.437745,-3.55,0.330083,1.437745,-3.55,0.330083,0.294305,-3.55,1,0.8660242,-3.55,0.660166,0.8660251,-3.55,0.5,1.732051,-3.55,-1.330083,2.026356,-3.55,-1.5,1.732051,-3.55,-2,2.598076,-3.55,-1.660166,2.598076,-3.55,-1.5,3.464102,-3.55,-1.330083,3.169796,-3.55,-0.6699169,3.169796,-3.55,-0.6699169,2.026356,-3.55,0,2.598076,-3.55,-0.339834,2.598076,-3.55,-0.5,3.464102,-3.55,1.5,-8.34465E-07,-3.55,1.669917,0.2943041,-3.55,2.5,-8.34465E-07,-3.55,2.330083,0.2943041,-3.55,3,0.8660242,-3.55,2.660166,0.8660242,-3.55,2.330083,1.437744,-3.55,2.5,1.73205,-3.55,1.5,1.73205,-3.55,1.669917,1.437744,-3.55,1.339834,0.8660242,-3.55,-0.5,0,-3.55,-1,0.8660251,-3.55,-0.5,0,3.55,-1,0.8660251,-3.35,-1,0.8660251,3.35,-1,0.8660251,3.55,1,0.8660242,-3.55,0.5,0,-3.55,1,0.8660251,-3.35,0.5,0,3.55,1,0.8660251,3.35,1,0.8660242,3.55,0.5000001,1.73205,-3.35,-0.4999999,1.732051,-3.35,0.5,1.732051,-3.55,-0.5,1.732051,-3.55,-0.5,0,3.55,0.327618,0.2985741,3.55,0.5,0,3.55,1,0.8660242,3.55,0.6552359,0.8660251,3.55,0.5,1.732051,3.55,0.327618,1.433476,3.55,-0.3276179,1.433476,3.55,-0.3276179,0.2985741,3.55,-1,0.8660251,3.55,-0.6552359,0.8660251,3.55,-0.5,1.732051,3.55,-1.5,1.732051,3.55,-0.672382,2.030625,3.55,0,2.598076,3.55,-0.344764,2.598076,3.55,-0.5,3.464102,3.55,-0.672382,3.165527,3.55,-1.327618,3.165527,3.55,-1.327618,2.030625,3.55,-2,2.598076,3.55,-1.655236,2.598076,3.55,-1.5,3.464102,3.55,-1.5,3.464102,-3.55,-1.855178,2.848914,-2.039464,-2,2.598076,-3.55,-2,2.598076,3.55,-1.855178,2.848914,-1.61875,-1.644821,3.213264,-1.61875,-1.644821,3.213264,-2.039464,-1.5,3.464102,3.55,-1.5,1.732051,-3.55,-2,2.598076,-3.55,-1.5,1.732051,-3.35,-2,2.598076,3.55,-1.5,1.732051,3.35,-1.5,1.732051,3.55,-0.5,3.464102,-3.55,0,2.598076,-3.55,-0.5,3.464102,3.55,0,2.598076,-3.35,0,2.598076,3.35,0,2.598076,3.55,-1.855178,2.848914,-1.61875,-2.247171,3.169963,-1.700789,-1.644821,3.213264,-1.61875,-2.118854,3.392216,-1.700789,-1.644821,3.213264,-2.039464,-1.644821,3.213264,-1.61875,-2.118854,3.392216,-1.957425,-2.118854,3.392216,-1.700789,-1.855178,2.848914,-2.039464,-1.644821,3.213264,-2.039464,-2.247171,3.169963,-1.957425,-2.118854,3.392216,-1.957425,-0.5,3.464102,-3.55,-0.5,3.464102,3.55,-1.5,3.464102,-3.55,-1.5,3.464102,3.55,-2.247171,3.169963,-1.957425,-2.118854,3.392216,-1.957425,-2.247171,3.169963,-1.700789,-2.118854,3.392216,-1.700789,-1,0.8660251,3.35,-0.4999999,1.732051,3.35,-1,0.8660251,3.55,-0.5,1.732051,3.55,-2.868044,1.094579,1.986048,-2.868044,1.094579,1.513871,-3.092439,1.305917,1.915222,-3.092439,1.305917,1.584698,1,0.8660242,-3.55,1.5,1.73205,-3.55,1,0.8660251,-3.35,1.5,1.73205,-3.35,-3.092439,1.305917,1.584698,-2.927176,1.592159,1.584698,-3.092439,1.305917,1.915222,-2.927176,1.592159,1.915222,2.5,-8.34465E-07,3.55,2.5,-8.34465E-07,-3.55,1.5,-8.34465E-07,3.55,1.5,-8.34465E-07,-3.55,-2.868044,1.094579,1.986048,-3.092439,1.305917,1.915222,-2.631956,1.503497,1.986048,-2.927176,1.592159,1.915222,2.5,1.73205,-3.55,2.5,1.73205,3.55,1.5,1.73205,-3.55,1.5,1.73205,3.55,1.5,1.73205,-3.35,1.5,1.73205,3.35,3,0.8660242,-3.55,2.644821,1.481212,-2.039464,2.5,1.73205,-3.55,2.5,1.73205,3.55,2.644821,1.481212,-1.61875,2.855179,1.116862,-1.61875,2.855179,1.116862,-2.039464,3,0.8660242,3.55,-0.4999999,1.732051,3.35,-1.5,1.732051,3.35,-0.5,1.732051,3.55,-1.5,1.732051,3.55,0,2.598076,-3.55,-0.5,1.732051,-3.55,0,2.598076,-3.35,-0.4999999,1.732051,-3.35,-2.868044,1.094579,1.513871,-2.631956,1.503497,1.513871,-3.092439,1.305917,1.584698,-2.927176,1.592159,1.584698,-1.5,1.732051,-3.35,-1.5,1.732051,3.35,-2.5,1.732051,-3.35,-2.5,1.732051,3.35,-2.5,0,3.35,-1.672382,0.2985741,3.35,-1.5,0,3.35,-1,0.8660251,3.35,-1.344764,0.8660251,3.35,-1.672382,1.433476,3.35,-1.5,1.732051,3.35,-2.327618,1.433476,3.35,-2.5,1.732051,3.35,-2.327618,0.2985741,3.35,-3,0.8660251,3.35,-2.655236,0.8660251,3.35,-1.5,-1.273239E-15,-3.35,-2.330083,0.294305,-3.35,-2.5,-1.273239E-15,-3.35,-3,0.8660251,-3.35,-2.660165,0.8660251,-3.35,-2.5,1.732051,-3.35,-2.330083,1.437745,-3.35,-1.669917,1.437745,-3.35,-1.669917,0.294305,-3.35,-1,0.8660251,-3.35,-1.339834,0.8660251,-3.35,-1.5,1.732051,-3.35,-2.5,-1.273239E-15,-3.35,-3,0.8660251,-3.35,-2.5,0,3.35,-3,0.8660251,3.35,-1.5,0,3.35,-1.5,-1.273239E-15,-3.35,-2.5,0,3.35,-2.5,-1.273239E-15,-3.35,-2.5,1.732051,-3.35,-2.868044,1.094579,1.513871,-3,0.8660251,-3.35,-3,0.8660251,3.35,-2.868044,1.094579,1.986048,-2.631956,1.503497,1.986048,-2.631956,1.503497,1.513871,-2.5,1.732051,3.35,-1.5,-1.273239E-15,-3.35,-1.5,0,3.35,-1,0.8660251,-3.35,-1,0.8660251,3.35,-2.631956,1.503497,1.513871,-2.631956,1.503497,1.986048,-2.927176,1.592159,1.584698,-2.927176,1.592159,1.915222,-1,0.8660251,-3.55,-0.5,1.732051,-3.55,-1,0.8660251,-3.35,-0.4999999,1.732051,-3.35,0.5000001,1.73205,3.35,0.5,1.732051,3.55,-0.4999999,1.732051,3.35,-0.5,1.732051,3.55,-0.4999999,1.732051,-3.35,-0.5,1.732051,-3.55,-1.5,1.732051,-3.35,-1.5,1.732051,-3.55,0,2.598076,3.35,-0.4999999,1.732051,3.35,0,2.598076,3.55,-0.5,1.732051,3.55,1,0.8660242,-3.55,1,0.8660251,-3.35,0.5,1.732051,-3.55,0.5000001,1.73205,-3.35,1.5,-8.34465E-07,-3.55,1,0.8660242,-3.55,1.5,-8.34465E-07,3.55,1,0.8660251,-3.35,1,0.8660251,3.35,1,0.8660242,3.55,2.855179,1.116862,-2.039464,3.247171,1.437911,-1.957425,2.644821,1.481212,-2.039464,3.118854,1.660164,-1.957425,2.855179,1.116862,-1.61875,2.644821,1.481212,-1.61875,3.247171,1.437911,-1.700789,3.118854,1.660164,-1.700789,1.5,-8.34465E-07,3.55,2.327618,0.2985733,3.55,2.5,-8.34465E-07,3.55,3,0.8660242,3.55,2.655236,0.8660242,3.55,2.5,1.73205,3.55,2.327618,1.433475,3.55,1.672382,1.433475,3.55,1.672382,0.2985733,3.55,1.344764,0.8660242,3.55,1.5,1.73205,3.55,1,0.8660251,3.35,1.5,1.73205,3.35,1,0.8660242,3.55,1.5,1.73205,3.55,3.118854,1.660164,-1.957425,3.247171,1.437911,-1.957425,3.118854,1.660164,-1.700789,3.247171,1.437911,-1.700789,3.118854,1.660164,-1.957425,3.118854,1.660164,-1.700789,2.644821,1.481212,-2.039464,2.644821,1.481212,-1.61875,3.247171,1.437911,-1.700789,3.247171,1.437911,-1.957425,2.855179,1.116862,-1.61875,2.855179,1.116862,-2.039464,2,2.598075,-3.35,1.5,1.73205,-3.35,2,2.598075,3.35,1.5,1.73205,3.35,3,0.8660242,-3.55,2.5,-8.34465E-07,-3.55,3,0.8660242,3.55,2.5,-8.34465E-07,3.55,-0.4999999,1.732051,3.35,1,0.8660251,3.35,-0.4999999,1.732051,-3.35,1,0.8660251,-3.35 + } + PolygonVertexIndex: *930 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,24,-23,26,24,-26,21,27,-21,20,27,-29,29,28,-28,30,29,-28,26,29,-31,31,29,-27,25,31,-27,32,34,-34,35,33,-35,36,33,-36,37,36,-36,38,36,-38,39,38,-38,33,40,-33,41,32,-41,42,41,-41,39,41,-43,43,41,-40,37,43,-40,44,46,-46,47,45,-47,48,45,-48,49,48,-48,45,50,-45,51,44,-51,49,51,-51,47,51,-50,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,73,-76,77,76,-76,78,76,-78,79,78,-78,73,80,-73,81,72,-81,82,81,-81,83,81,-83,79,83,-83,77,83,-80,77,85,-85,86,84,-86,87,84,-87,88,87,-87,89,87,-89,90,89,-89,84,91,-78,92,77,-92,93,92,-92,90,92,-94,94,92,-91,88,94,-91,81,96,-96,97,95,-97,96,98,-98,99,97,-99,100,99,-99,101,99,-101,102,99,-102,103,102,-102,101,104,-104,104,105,-104,105,96,-82,103,105,-82,106,108,-108,109,107,-109,110,109,-109,111,110,-109,112,114,-114,115,113,-115,116,115,-115,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,123,-126,127,126,-126,128,126,-128,129,128,-128,123,130,-123,131,122,-131,132,131,-131,129,131,-133,133,131,-130,127,133,-130,134,133,-136,136,135,-134,137,135,-137,138,137,-137,139,137,-139,140,139,-139,135,141,-135,142,134,-142,143,142,-142,140,142,-144,144,142,-141,138,144,-141,145,147,-147,148,146,-148,149,146,-149,150,149,-149,146,151,-146,152,145,-152,150,152,-152,148,152,-151,153,155,-155,156,154,-156,157,156,-156,158,156,-158,159,161,-161,162,160,-162,163,162,-162,164,163,-162,165,167,-167,168,166,-168,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,179,-179,180,178,-180,181,183,-183,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,195,-195,196,194,-196,197,199,-199,200,198,-200,201,203,-203,204,202,-204,205,207,-207,208,206,-208,209,211,-211,212,210,-212,213,212,-212,214,212,-214,215,217,-217,218,216,-218,219,216,-219,220,219,-219,216,221,-216,222,215,-222,220,222,-222,218,222,-221,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,233,-233,234,232,-234,235,237,-237,238,236,-238,239,241,-241,242,240,-242,243,240,-243,244,243,-243,245,244,-243,246,244,-246,247,246,-246,240,248,-240,249,239,-249,247,249,-247,250,249,-249,246,249,-251,251,253,-253,254,252,-254,255,252,-255,256,255,-255,257,255,-257,258,257,-257,252,259,-252,260,251,-260,261,260,-260,258,260,-262,262,260,-259,256,262,-259,263,265,-265,266,264,-266,267,269,-269,270,268,-270,271,273,-273,274,272,-274,275,272,-275,276,275,-275,272,277,-272,278,271,-278,276,278,-278,274,278,-277,279,281,-281,282,280,-282,283,285,-285,286,284,-286,287,289,-289,290,288,-290,291,293,-293,294,292,-294,295,297,-297,298,296,-298,299,301,-301,302,300,-302,303,305,-305,306,304,-306,307,309,-309,310,308,-310,311,310,-310,312,311,-310,313,315,-315,316,314,-316,317,319,-319,320,318,-320,321,323,-323,324,322,-324,325,322,-325,326,325,-325,327,325,-327,328,327,-327,322,329,-322,125,321,-330,330,125,-330,328,125,-331,331,125,-329,326,331,-329,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,21,23,-28,30,27,-24,24,30,-24,26,30,-25,33,36,-41,42,40,-37,38,42,-37,39,42,-39,84,87,-92,93,91,-88,89,93,-88,90,93,-90,123,126,-131,132,130,-127,128,132,-127,129,132,-129,73,76,-81,82,80,-77,78,82,-77,79,82,-79,252,255,-260,261,259,-256,257,261,-256,258,261,-258,135,137,-142,143,141,-138,139,143,-138,140,143,-140,240,243,-249,250,248,-244,244,250,-244,246,250,-245,322,325,-330,330,329,-326,327,330,-326,328,330,-328,96,105,-99,100,98,-106,104,100,-106,101,100,-105,356,245,-243,32,41,-357,34,32,-358,358,22,-21,260,262,-359,359,20,-29,349,351,-115,116,114,-352 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2790 { + a: 0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,0.6856115,-0.7279677,0,0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0.1989867,0.114885,0.973245,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,0.1989896,0.1148866,-0.9732441,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,-0.8660253,0.5000001,0,-0.8660253,0.5000001,0,-0.8660253,0.5000001,0,-0.8660253,0.5000001,0,-0.8660253,0.5000001,0,-0.8660253,0.5000001,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,-0.287633,0.9577407,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,-0.6336248,-0.7736405,0,0.8660256,0.4999997,5.215405E-07,0.8660256,0.4999997,5.215405E-07,0.8660256,0.4999997,5.215405E-07,0.8660256,0.4999997,5.215405E-07,0.8660256,0.4999997,5.215405E-07,0.8660256,0.4999997,5.215405E-07,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0,1,2.086163E-06,0,1,2.086163E-06,0,1,2.086163E-06,0,1,2.086163E-06,0,1,2.086163E-06,0,1,2.086163E-06,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,-0.1402207,0.08095646,0.986805,0.3531815,0.9355548,0,0.3531815,0.9355548,0,0.3531815,0.9355548,0,0.3531815,0.9355548,0,0.3531815,0.9355548,0,0.3531815,0.9355548,0,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,-0.1402207,0.08095646,-0.986805,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.866025,0.5000008,0,-0.8660255,0.4999999,-5.215405E-07,-0.8660255,0.4999999,-5.215405E-07,-0.8660255,0.4999999,-5.215405E-07,-0.8660255,0.4999999,-5.215405E-07,-0.8660255,0.4999999,-5.215405E-07,-0.8660255,0.4999999,-5.215405E-07,-0.6856115,-0.7279677,0,-0.6856115,-0.7279677,0,-0.6856115,-0.7279677,0,-0.6856115,-0.7279677,0,-0.6856115,-0.7279677,0,-0.6856115,-0.7279677,0,-0.8660254,0.5,-1.043081E-06,-0.8660254,0.5,-1.043081E-06,-0.8660254,0.5,-1.043081E-06,-0.8660254,0.5,-1.043081E-06,-0.8660254,0.5,-1.043081E-06,-0.8660254,0.5,-1.043081E-06,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.1989867,0.114885,0.973245,-0.1989867,0.114885,0.973245,-0.1989867,0.114885,0.973245,-0.1989867,0.114885,0.973245,-0.1989867,0.114885,0.973245,-0.1989867,0.114885,0.973245,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0.8660255,0.4999998,0,0,-1,6.953875E-07,0,-1,6.953875E-07,0,-1,6.953875E-07,0,-1,6.953875E-07,0,-1,6.953875E-07,0,-1,6.953875E-07,0.8660254,-0.5000001,-5.215406E-07,0.8660254,-0.5000001,-5.215406E-07,0.8660254,-0.5000001,-5.215406E-07,0.8660254,-0.5000001,-5.215406E-07,0.8660254,-0.5000001,-5.215406E-07,0.8660254,-0.5000001,-5.215406E-07,-0.1989896,0.1148866,-0.9732441,-0.1989896,0.1148866,-0.9732441,-0.1989896,0.1148866,-0.9732441,-0.1989896,0.1148866,-0.9732441,-0.1989896,0.1148866,-0.9732441,-0.1989896,0.1148866,-0.9732441,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,-0.8660253,-0.5000001,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.287633,0.9577407,0,0.287633,0.9577407,0,0.287633,0.9577407,0,0.287633,0.9577407,0,0.287633,0.9577407,0,0.287633,0.9577407,0,-0.8660255,0.4999999,5.215405E-07,-0.8660255,0.4999999,5.215405E-07,-0.8660255,0.4999999,5.215405E-07,-0.8660255,0.4999999,5.215405E-07,-0.8660255,0.4999999,5.215405E-07,-0.8660255,0.4999999,5.215405E-07,0,1,-2.086163E-06,0,1,-2.086163E-06,0,1,-2.086163E-06,0,1,-2.086163E-06,0,1,-2.086163E-06,0,1,-2.086163E-06,0,-1,-6.953875E-07,0,-1,-6.953875E-07,0,-1,-6.953875E-07,0,-1,-6.953875E-07,0,-1,-6.953875E-07,0,-1,-6.953875E-07,0.8660254,-0.5000001,5.215406E-07,0.8660254,-0.5000001,5.215406E-07,0.8660254,-0.5000001,5.215406E-07,0.8660254,-0.5000001,5.215406E-07,0.8660254,-0.5000001,5.215406E-07,0.8660254,-0.5000001,5.215406E-07,0.8660256,0.4999997,-5.215405E-07,0.8660256,0.4999997,-5.215405E-07,0.8660256,0.4999997,-5.215405E-07,0.8660256,0.4999997,-5.215405E-07,0.8660256,0.4999997,-5.215405E-07,0.8660256,0.4999997,-5.215405E-07,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,-0.986805,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,0.1402207,0.08095646,0.986805,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8660254,0.5,1.043081E-06,-0.8660254,0.5,1.043081E-06,-0.8660254,0.5,1.043081E-06,-0.8660254,0.5,1.043081E-06,-0.8660254,0.5,1.043081E-06,-0.8660254,0.5,1.043081E-06,0.866025,0.5000008,0,0.866025,0.5000008,0,0.866025,0.5000008,0,0.866025,0.5000008,0,0.866025,0.5000008,0,0.866025,0.5000008,0,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,-0.3531815,0.9355548,0,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0.6336248,-0.7736405,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8660253,-0.5000001,0,0.8660253,-0.5000001,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000001,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *720 { + a: -7.540244,14.19722,-6.238968,14.19722,-7.819087,12.98364,-5.960122,12.98364,5.639179,10.00544,4.728535,11.62608,6.560571,10.84303,5.92312,11.97747,-8.399346,11.55638,-9.32074,12.39397,-7.488703,13.17703,-8.68329,13.52842,-6.238968,7.540392,-6.238968,6.239117,-7.540244,7.540392,-7.540244,6.239117,-13.18898,8.858267,-13.18898,12.79527,13.18898,8.858267,13.18898,12.79527,-1.968504,6.819096,-2.637469,7.977776,0,10.22865,-1.337931,10.22864,-2.637469,12.47951,-1.968504,13.63819,-5.236547,12.47951,-5.236547,7.977776,-5.905512,6.819095,-7.874016,10.22864,-6.536087,10.22864,-5.905512,13.63819,1.968504,6.819096,5.226842,7.994584,5.905512,6.819095,7.874016,10.22864,6.516677,10.22864,5.905512,13.63819,5.226842,12.4627,2.647174,12.4627,2.647174,7.994584,6.347515E-14,10.22865,1.357339,10.22864,1.968504,13.63819,13.18898,4.92126,-5.960122,7.819248,13.18898,8.85827,-13.18898,8.85827,-7.819087,7.819248,-7.819087,5.960281,-5.960122,5.960281,-13.18898,4.92126,-5.905512,-13.18898,-5.905512,13.18898,-1.968504,-13.18898,-1.968504,13.18898,6.238968,11.03105,7.540244,11.03105,5.960122,9.817483,7.819087,9.817483,-6.373032,12.75742,-8.029386,12.75742,-6.69602,14.75224,-7.706398,14.75224,-13.18898,4.921257,-13.18897,0.9842488,-13.97638,4.921258,-13.97638,0.9842457,1.968504,13.97638,1.968504,-13.97638,-1.968504,13.97638,-1.968504,-13.97638,-1.968504,-2.338752E-19,1.299538,1.158681,1.968504,-2.338752E-19,3.937008,3.409548,2.599077,3.409548,1.968504,6.819098,1.299538,5.660413,-1.299539,5.660413,-1.299539,1.158681,-3.937008,3.409544,-2.599079,3.409548,-1.968504,6.819098,5.236547,7.977779,5.905512,6.819098,7.874016,10.22865,6.536085,10.22865,5.905512,13.6382,5.236547,12.47951,2.637468,12.47951,2.637468,7.977779,0,10.22865,1.337929,10.22865,1.968504,13.6382,-5.905512,-3.285295E-06,-6.574477,1.158678,-9.84252,-3.285295E-06,-9.173555,1.158678,-11.81102,3.409544,-10.47309,3.409544,-9.173555,5.66041,-9.84252,6.819095,-5.905512,6.819095,-6.574477,5.66041,-5.274939,3.409544,-13.97638,0.9842522,-13.97638,4.921259,13.97638,0.9842522,-13.18898,4.921259,13.18898,4.921259,13.97638,4.921259,13.97638,4.921257,13.97638,0.9842526,13.18898,4.921259,-13.97638,0.9842526,-13.18898,4.921259,-13.97638,4.921257,-1.968503,-13.18899,1.968505,-13.18899,-1.968503,-13.97639,1.968505,-13.97639,-1.968504,2.338752E-19,1.289835,1.175489,1.968504,2.338752E-19,3.937008,3.409544,2.579669,3.409548,1.968504,6.819098,1.289835,5.643607,-1.289834,5.643607,-1.289834,1.175489,-3.937008,3.409548,-2.579669,3.409548,-1.968504,6.819098,-5.905512,6.819098,-2.647173,7.994587,0,10.22865,-1.357339,10.22865,-1.968504,13.6382,-2.647173,12.46271,-5.226842,12.46271,-5.226842,7.994587,-7.874016,10.22865,-6.516677,10.22865,-5.905512,13.6382,-13.97638,8.858273,-8.029386,6.061587,-13.97638,4.921263,13.97638,4.921263,-6.373032,6.061587,-6.373032,7.717946,-8.029386,7.717946,13.97638,8.858273,-13.97638,8.858269,-13.97638,12.79528,-13.18898,8.858269,13.97638,12.79528,13.18898,8.858269,13.97638,8.858269,13.97638,12.79528,13.97638,8.858269,-13.97638,12.79528,13.18898,8.858269,-13.18898,8.858269,-13.97638,8.858269,-8.127789,11.607,-9.701158,12.87514,-7.307847,13.04618,-9.200993,13.75303,8.029386,10.52632,6.373032,10.52632,7.706398,12.52115,6.69602,12.52115,6.10162,10.45263,5.281678,11.8918,7.67499,11.72076,7.174825,12.59866,1.968504,-13.97638,1.968504,13.97638,5.905512,-13.97638,5.905512,13.97638,-7.706398,6.384564,-7.706398,7.394941,-6.69602,6.384564,-6.69602,7.394941,13.18898,0.9842557,13.18898,4.921265,13.97638,0.9842559,13.97638,4.921266,7.819087,11.17441,5.960122,11.17441,7.540244,12.38798,6.238968,12.38798,-13.97638,4.921247,-13.97639,8.858257,-13.18898,4.921251,-13.18898,8.858257,6.238968,-1.634897,6.238968,-0.3336214,7.540244,-1.634897,7.540244,-0.3336214,9.84252,13.97638,9.84252,-13.97638,5.905512,13.97638,5.905512,-13.97638,-9.496391,3.140893,-10.41778,3.978478,-8.585748,4.761537,-9.780333,5.112927,-9.84252,-13.97638,-9.84252,13.97638,-5.905512,-13.97638,-5.905512,13.97638,-5.905512,-13.18898,-5.905512,13.18898,13.97638,-2.952757,8.029386,-0.1560729,13.97638,0.9842529,-13.97638,0.9842529,6.373032,-0.1560729,6.373032,-1.812431,8.029386,-1.812431,-13.97638,-2.952757,-1.968505,13.18898,-5.905513,13.18898,-1.968505,13.97638,-5.905513,13.97638,13.97638,8.858272,13.97638,4.921265,13.18898,8.858271,13.18898,4.921264,12.25656,4.691833,11.34591,6.312478,13.17795,5.529418,12.5405,6.663867,5.905512,-13.18898,5.905512,13.18898,9.84252,-13.18898,9.84252,13.18898,-9.84252,1.099422E-13,-6.584181,1.175489,-5.905512,1.099422E-13,-3.937008,3.409548,-5.294346,3.409548,-6.584181,5.643607,-5.905512,6.819098,-9.16385,5.643607,-9.84252,6.819098,-9.16385,1.175489,-11.81102,3.409548,-10.45368,3.409548,5.905512,-1.69926E-13,9.173554,1.158681,9.84252,-1.69926E-13,11.81102,3.409548,10.47309,3.409548,9.84252,6.819098,9.173554,5.660413,6.574476,5.660413,6.574476,1.158681,3.937008,3.409548,5.274937,3.409548,5.905512,6.819098,-13.18898,4.921261,-13.18898,8.858268,13.18898,4.921261,13.18898,8.858268,-5.905512,13.18898,-5.905512,-13.18898,-9.84252,13.18898,-9.84252,-13.18898,-13.18898,0.9842558,5.960122,-1.913733,-13.18898,-2.952754,13.18898,-2.952754,7.819087,-1.913733,7.819087,-0.05476568,5.960122,-0.05476568,13.18898,0.9842558,13.18898,-2.952757,-13.18898,-2.952757,13.18898,0.9842501,-13.18898,0.9842501,-5.960122,11.62672,-7.819087,11.62672,-6.238968,12.84029,-7.540244,12.84029,-13.97638,0.9842559,-13.97638,4.921266,-13.18898,0.9842557,-13.18898,4.921265,-1.968503,13.18899,-1.968503,13.97639,1.968505,13.18899,1.968505,13.97639,-1.968505,-13.18898,-1.968505,-13.97638,-5.905513,-13.18898,-5.905513,-13.97638,-13.18898,8.858271,-13.18898,4.921264,-13.97638,8.858272,-13.97638,4.921265,13.97638,0.9842457,13.18897,0.9842488,13.97638,4.921258,13.18898,4.921257,-13.97638,-2.952759,-13.97638,0.9842483,13.97638,-2.952759,-13.18898,0.9842511,13.18898,0.9842511,13.97638,0.9842483,-9.999474,3.611072,-11.57284,4.879207,-9.179531,5.050245,-11.07268,5.757101,12.02564,4.765445,11.2057,6.204618,13.59901,6.03358,13.09885,6.911473,5.905512,-3.285295E-06,9.163851,1.175485,9.84252,-3.285295E-06,11.81102,3.409544,10.45368,3.409544,9.84252,6.819095,9.163851,5.643603,6.584182,5.643603,6.584182,1.175485,5.294347,3.409544,5.905512,6.819095,13.18898,4.921251,13.18898,8.858257,13.97638,4.921247,13.97639,8.858257,7.706398,-0.479077,7.706398,-1.489454,6.69602,-0.479077,6.69602,-1.489454,-7.706398,13.79605,-6.69602,13.79605,-8.029386,11.80123,-6.373032,11.80123,6.69602,13.47732,7.706398,13.47732,6.373032,11.48249,8.029386,11.48249,13.18898,12.79527,13.18898,8.858266,-13.18898,12.79527,-13.18898,8.858266,13.97638,8.858265,13.97638,4.921258,-13.97638,8.858265,-13.97638,4.921258,-1.968504,6.819098,3.937008,3.409548,1.968504,6.819098,-3.937008,3.409548 + } + UVIndex: *930 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,24,22,26,24,25,21,27,20,20,27,28,29,28,27,30,29,27,26,29,30,31,29,26,25,31,26,32,34,33,35,33,34,36,33,35,37,36,35,38,36,37,39,38,37,33,40,32,41,32,40,42,41,40,39,41,42,43,41,39,37,43,39,44,46,45,47,45,46,48,45,47,49,48,47,45,50,44,51,44,50,49,51,50,47,51,49,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,73,75,77,76,75,78,76,77,79,78,77,73,80,72,81,72,80,82,81,80,83,81,82,79,83,82,77,83,79,77,85,84,86,84,85,87,84,86,88,87,86,89,87,88,90,89,88,84,91,77,92,77,91,93,92,91,90,92,93,94,92,90,88,94,90,81,96,95,97,95,96,96,98,97,99,97,98,100,99,98,101,99,100,102,99,101,103,102,101,101,104,103,104,105,103,105,96,81,103,105,81,106,108,107,109,107,108,110,109,108,111,110,108,112,114,113,115,113,114,116,115,114,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,123,125,127,126,125,128,126,127,129,128,127,123,130,122,131,122,130,132,131,130,129,131,132,133,131,129,127,133,129,134,133,135,136,135,133,137,135,136,138,137,136,139,137,138,140,139,138,135,141,134,142,134,141,143,142,141,140,142,143,144,142,140,138,144,140,145,147,146,148,146,147,149,146,148,150,149,148,146,151,145,152,145,151,150,152,151,148,152,150,153,155,154,156,154,155,157,156,155,158,156,157,159,161,160,162,160,161,163,162,161,164,163,161,165,167,166,168,166,167,169,171,170,172,170,171,173,175,174,176,174,175,177,179,178,180,178,179,181,183,182,184,182,183,185,187,186,188,186,187,189,191,190,192,190,191,193,195,194,196,194,195,197,199,198,200,198,199,201,203,202,204,202,203,205,207,206,208,206,207,209,211,210,212,210,211,213,212,211,214,212,213,215,217,216,218,216,217,219,216,218,220,219,218,216,221,215,222,215,221,220,222,221,218,222,220,223,225,224,226,224,225,227,229,228,230,228,229,231,233,232,234,232,233,235,237,236,238,236,237,239,241,240,242,240,241,243,240,242,244,243,242,245,244,242,246,244,245,247,246,245,240,248,239,249,239,248,247,249,246,250,249,248,246,249,250,251,253,252,254,252,253,255,252,254,256,255,254,257,255,256,258,257,256,252,259,251,260,251,259,261,260,259,258,260,261,262,260,258,256,262,258,263,265,264,266,264,265,267,269,268,270,268,269,271,273,272,274,272,273,275,272,274,276,275,274,272,277,271,278,271,277,276,278,277,274,278,276,279,281,280,282,280,281,283,285,284,286,284,285,287,289,288,290,288,289,291,293,292,294,292,293,295,297,296,298,296,297,299,301,300,302,300,301,303,305,304,306,304,305,307,309,308,310,308,309,311,310,309,312,311,309,313,315,314,316,314,315,317,319,318,320,318,319,321,323,322,324,322,323,325,322,324,326,325,324,327,325,326,328,327,326,322,329,321,125,321,329,330,125,329,328,125,330,331,125,328,326,331,328,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,21,23,27,30,27,23,24,30,23,26,30,24,33,36,40,42,40,36,38,42,36,39,42,38,84,87,91,93,91,87,89,93,87,90,93,89,123,126,130,132,130,126,128,132,126,129,132,128,73,76,80,82,80,76,78,82,76,79,82,78,252,255,259,261,259,255,257,261,255,258,261,257,135,137,141,143,141,137,139,143,137,140,143,139,240,243,248,250,248,243,244,250,243,246,250,244,322,325,329,330,329,325,327,330,325,328,330,327,96,105,98,100,98,105,104,100,105,101,100,104,356,245,242,32,41,356,34,32,357,358,22,20,260,262,358,359,20,28,349,351,114,116,114,351 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *310 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh log_stackLarge, Model::RootNode + C: "OO",5058167468845383410,0 + + ;Geometry::, Model::Mesh log_stackLarge + C: "OO",5543786290346619312,5058167468845383410 + + ;Material::woodBark, Model::Mesh log_stackLarge + C: "OO",3046,5058167468845383410 + + ;Material::woodInner, Model::Mesh log_stackLarge + C: "OO",3054,5058167468845383410 + + ;Material::woodDark, Model::Mesh log_stackLarge + C: "OO",3052,5058167468845383410 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/log_stackLarge.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/log_stackLarge.fbx.import new file mode 100644 index 0000000..336542a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/log_stackLarge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://8nhp5mqg7d7a" +path="res://.godot/imported/log_stackLarge.fbx-9a673381f84685e666ea17c460ee9f62.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/log_stackLarge.fbx" +dest_files=["res://.godot/imported/log_stackLarge.fbx-9a673381f84685e666ea17c460ee9f62.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_red.fbx b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_red.fbx new file mode 100644 index 0000000..a2d6c43 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_red.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 26 + Millisecond: 317 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "mushroom_red.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "mushroom_red.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5692414743660444493, "Model::mushroom_red", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4843346989241077105, "Geometry::", "Mesh" { + Vertices: *366 { + a: 0.4698,0,-0.4698,0.4698,0,0.4698,0.3491199,0.9836001,-0.3491198,0.3491199,0.9836001,0.3491199,0.643254,0.9836001,0.3263364,-0.009122801,0.9836001,0.7029864,0.8607132,1.2636,0.4518864,-0.009122801,1.2636,0.9540864,0.8607132,1.2636,-0.5525137,0.643254,0.9836001,-0.4269636,0.8607132,1.2636,0.4518864,0.643254,0.9836001,0.3263364,0.8607132,1.2636,0.4518864,0.643254,0.9836001,-0.4269636,0.643254,0.9836001,-0.4269636,0.3491199,0.9836001,0.3491199,0.643254,0.9836001,0.3263364,-0.009122801,0.9836001,0.7029864,0.643254,0.9836001,0.3263364,0.3491199,0.9836001,0.3491199,-0.3491197,0.9836001,0.3491199,-0.009122801,0.9836001,0.7029864,0.3491199,0.9836001,0.3491199,-0.6614996,0.9836001,0.3263364,-0.009122801,0.9836001,0.7029864,-0.3491197,0.9836001,0.3491199,-0.3491197,0.9836001,-0.3491198,-0.6614996,0.9836001,0.3263364,-0.3491197,0.9836001,0.3491199,-0.009122801,0.9836001,-0.8036136,0.3491199,0.9836001,-0.3491198,0.643254,0.9836001,-0.4269636,0.3491199,0.9836001,0.3491199,0.643254,0.9836001,-0.4269636,0.3491199,0.9836001,-0.3491198,-0.3491197,0.9836001,-0.3491198,0.3491199,0.9836001,-0.3491198,-0.009122801,0.9836001,-0.8036136,-0.6614996,0.9836001,-0.4269636,-0.3491197,0.9836001,-0.3491198,-0.009122801,0.9836001,-0.8036136,-0.6614996,0.9836001,0.3263364,-0.3491197,0.9836001,-0.3491198,-0.6614996,0.9836001,-0.4269636,-0.4698,0,-0.4698,-0.3491197,0.9836001,-0.3491198,-0.4698,0,0.4698,-0.3491197,0.9836001,0.3491199,-0.4698,0,0.4698,-0.3491197,0.9836001,-0.3491198,-0.009122801,0.9836001,0.7029864,-0.6614996,0.9836001,0.3263364,-0.009122801,1.2636,0.9540864,-0.8789588,1.2636,0.4518864,-0.009122801,1.2636,0.9540864,-0.6614996,0.9836001,0.3263364,-0.8789588,1.2636,-0.5525137,-0.8789588,1.2636,0.4518864,-0.6614996,0.9836001,-0.4269636,-0.6614996,0.9836001,0.3263364,-0.6614996,0.9836001,-0.4269636,-0.8789588,1.2636,0.4518864,-0.4698,0,-0.4698,0.4698,0,-0.4698,-0.3491197,0.9836001,-0.3491198,0.3491199,0.9836001,-0.3491198,-0.3491197,0.9836001,-0.3491198,0.4698,0,-0.4698,-0.009122801,0.9836001,-0.8036136,0.643254,0.9836001,-0.4269636,-0.009122801,1.2636,-1.054714,0.8607132,1.2636,-0.5525137,-0.009122801,1.2636,-1.054714,0.643254,0.9836001,-0.4269636,-0.6614996,0.9836001,-0.4269636,-0.009122801,0.9836001,-0.8036136,-0.8789588,1.2636,-0.5525137,-0.009122801,1.2636,-1.054714,-0.8789588,1.2636,-0.5525137,-0.009122801,0.9836001,-0.8036136,0.4698,0,0.4698,-0.4698,0,0.4698,0.3491199,0.9836001,0.3491199,-0.3491197,0.9836001,0.3491199,0.3491199,0.9836001,0.3491199,-0.4698,0,0.4698,0.4698,0,0.4698,0.4698,0,-0.4698,-0.4698,0,0.4698,-0.4698,0,-0.4698,-0.4698,0,0.4698,0.4698,0,-0.4698,-0.009122801,1.2636,0.9540864,-0.8789588,1.2636,0.4518864,-0.009122801,2.028,0.1896864,-0.2169689,2.028,0.06968639,0.8607132,1.2636,0.4518864,-0.009122801,1.2636,0.9540864,0.1987233,2.028,0.06968639,-0.009122801,2.028,0.1896864,-0.8789588,1.2636,-0.5525137,-0.2169689,2.028,-0.1703136,-0.8789588,1.2636,0.4518864,-0.2169689,2.028,0.06968639,0.1987233,2.028,-0.1703136,0.1987233,2.028,0.06968639,-0.009122801,2.028,-0.2903136,-0.009122801,2.028,0.1896864,-0.2169689,2.028,-0.1703136,-0.2169689,2.028,0.06968639,-0.009122801,1.2636,-1.054714,0.8607132,1.2636,-0.5525137,-0.009122801,2.028,-0.2903136,0.1987233,2.028,-0.1703136,-0.8789588,1.2636,-0.5525137,-0.009122801,1.2636,-1.054714,-0.2169689,2.028,-0.1703136,-0.009122801,2.028,-0.2903136,0.8607132,1.2636,-0.5525137,0.8607132,1.2636,0.4518864,0.1987233,2.028,-0.1703136,0.1987233,2.028,0.06968639 + } + PolygonVertexIndex: *144 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,13,-13,14,16,-16,17,19,-19,20,22,-22,23,25,-25,26,28,-28,29,31,-31,32,34,-34,35,37,-37,38,40,-40,41,43,-43,44,46,-46,47,49,-49,50,52,-52,53,55,-55,56,58,-58,59,61,-61,62,64,-64,65,67,-67,68,70,-70,71,73,-73,74,76,-76,77,79,-79,80,82,-82,83,85,-85,86,88,-88,89,91,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,107,-107,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *432 { + a: 0.9925572,0.121779,0,0.9925572,0.121779,0,0.9925572,0.121779,0,0.9925572,0.121779,0,0.9925572,0.121779,0,0.9925572,0.121779,0,0.3948938,-0.6133804,0.6839761,0.3948938,-0.6133804,0.6839761,0.3948938,-0.6133804,0.6839761,0.3948938,-0.6133804,0.6839761,0.3948938,-0.6133804,0.6839761,0.3948938,-0.6133804,0.6839761,0.7897874,-0.6133807,0,0.7897874,-0.6133807,0,0.7897874,-0.6133807,0,0.7897874,-0.6133807,0,0.7897874,-0.6133807,0,0.7897874,-0.6133807,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.3948938,-0.6133804,0.6839761,-0.3948938,-0.6133804,0.6839761,-0.3948938,-0.6133804,0.6839761,-0.3948938,-0.6133804,0.6839761,-0.3948938,-0.6133804,0.6839761,-0.3948938,-0.6133804,0.6839761,-0.7897874,-0.6133807,0,-0.7897874,-0.6133807,0,-0.7897874,-0.6133807,0,-0.7897874,-0.6133807,0,-0.7897874,-0.6133807,0,-0.7897874,-0.6133807,0,0,0.1217792,-0.9925572,0,0.1217792,-0.9925572,0,0.1217792,-0.9925572,0,0.1217792,-0.9925572,0,0.1217792,-0.9925572,0,0.1217792,-0.9925572,0.3948938,-0.6133804,-0.6839761,0.3948938,-0.6133804,-0.6839761,0.3948938,-0.6133804,-0.6839761,0.3948938,-0.6133804,-0.6839761,0.3948938,-0.6133804,-0.6839761,0.3948938,-0.6133804,-0.6839761,-0.3948938,-0.6133804,-0.6839761,-0.3948938,-0.6133804,-0.6839761,-0.3948938,-0.6133804,-0.6839761,-0.3948938,-0.6133804,-0.6839761,-0.3948938,-0.6133804,-0.6839761,-0.3948938,-0.6133804,-0.6839761,0,0.121779,0.9925572,0,0.121779,0.9925572,0,0.121779,0.9925572,0,0.121779,0.9925572,0,0.121779,0.9925572,0,0.121779,0.9925572,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3779644,0.6546535,0.6546537,-0.3779644,0.6546535,0.6546537,-0.3779644,0.6546535,0.6546537,-0.3779644,0.6546535,0.6546537,-0.3779644,0.6546535,0.6546537,-0.3779644,0.6546535,0.6546537,0.3779644,0.6546535,0.6546537,0.3779644,0.6546535,0.6546537,0.3779644,0.6546535,0.6546537,0.3779644,0.6546535,0.6546537,0.3779644,0.6546535,0.6546537,0.3779644,0.6546535,0.6546537,-0.755929,0.6546537,0,-0.755929,0.6546537,0,-0.755929,0.6546537,0,-0.755929,0.6546537,0,-0.755929,0.6546537,0,-0.755929,0.6546537,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3779644,0.6546535,-0.6546537,0.3779644,0.6546535,-0.6546537,0.3779644,0.6546535,-0.6546537,0.3779644,0.6546535,-0.6546537,0.3779644,0.6546535,-0.6546537,0.3779644,0.6546535,-0.6546537,-0.3779644,0.6546535,-0.6546537,-0.3779644,0.6546535,-0.6546537,-0.3779644,0.6546535,-0.6546537,-0.3779644,0.6546535,-0.6546537,-0.3779644,0.6546535,-0.6546537,-0.3779644,0.6546535,-0.6546537,0.755929,0.6546537,0,0.755929,0.6546537,0,0.755929,0.6546537,0,0.755929,0.6546537,0,0.755929,0.6546537,0,0.755929,0.6546537,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *244 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.404503,5.62389,0.540379,5.62389,-1.909227,1.642763,-0.404503,5.62389,0.540379,5.62389,-1.909227,1.642763,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.2743559,5.476317,1.77908,1.49519,-0.6705261,5.476317,0.8542084,0.2743559,0.8542084,-0.6705261,0.03591654,0.7467968,0.8542084,0.2743559,0.8542084,-0.6705261,0.03591654,0.7467968,-0.5403788,5.37577,0.4045032,5.37577,-2.045103,1.394643,-0.5403788,5.37577,0.4045032,5.37577,-2.045103,1.394643,-0.5403788,5.37577,0.4045032,5.37577,-2.045103,1.394643,-0.5403788,5.37577,0.4045032,5.37577,-2.045103,1.394643,1.847018,1.61925,-2.107313,1.61925,0.3422937,5.600378,-0.6025882,5.600378,2.045104,1.642763,-1.909227,1.642763,0.540379,5.62389,-0.404503,5.62389,-2.175251,1.49519,-0.6705261,5.476317,1.77908,1.49519,0.2743559,5.476317,-0.7823753,-0.6705261,-0.7823753,0.2743559,0.03591654,-1.142967,0.03591654,0.7467968,0.8542084,-0.6705261,0.8542084,0.2743559,2.107312,1.418156,-1.847019,1.418156,0.6025881,5.399283,-0.3422939,5.399283,1.909228,1.394643,-2.045103,1.394643,0.4045032,5.37577,-0.5403788,5.37577,2.175251,1.542215,-1.77908,1.542215,0.6705261,5.523343,-0.2743559,5.523343 + } + UVIndex: *144 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,13,12,14,16,15,17,19,18,20,22,21,23,25,24,26,28,27,29,31,30,32,34,33,35,37,36,38,40,39,41,43,42,44,46,45,47,49,48,50,52,51,53,55,54,56,58,57,59,61,60,62,64,63,65,67,66,68,70,69,71,73,72,74,76,75,77,79,78,80,82,81,83,85,84,86,88,87,89,91,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,107,106,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *48 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh mushroom_red, Model::RootNode + C: "OO",5692414743660444493,0 + + ;Geometry::, Model::Mesh mushroom_red + C: "OO",4843346989241077105,5692414743660444493 + + ;Material::_defaultMat, Model::Mesh mushroom_red + C: "OO",3004,5692414743660444493 + + ;Material::colorRed, Model::Mesh mushroom_red + C: "OO",3008,5692414743660444493 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_red.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_red.fbx.import new file mode 100644 index 0000000..fe1632c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_red.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://wyeu2oix2ke1" +path="res://.godot/imported/mushroom_red.fbx-ea567a65202f68051e18e54a71c043eb.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/mushroom_red.fbx" +dest_files=["res://.godot/imported/mushroom_red.fbx-ea567a65202f68051e18e54a71c043eb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redGroup.fbx b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redGroup.fbx new file mode 100644 index 0000000..3bbdf91 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redGroup.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 26 + Millisecond: 445 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "mushroom_redGroup.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "mushroom_redGroup.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5396574111428656579, "Model::mushroom_redGroup", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4986510578347821790, "Geometry::", "Mesh" { + Vertices: *1062 { + a: -0.1776558,0.4356522,-0.9453678,-0.4009036,0.4356522,-0.3563204,-0.1776558,0.4356522,-0.3736131,-0.67281,0.4356522,-0.08773573,-0.9308676,0.4356522,-0.3563204,-1.167965,0.4356522,-0.3736131,-0.9308676,0.4356522,-0.8862844,-0.4009036,0.4356522,-0.8862844,-0.67281,0.4356522,-1.231245,-1.167965,0.4356522,-0.9453678,0.6111063,1.962156,0.05045019,0.4567104,1.763356,0.1395907,0.6111063,1.962156,0.7635742,0.4567104,1.763356,0.6744337,0.09333386,0.922428,-0.9455264,0.09333386,0.922428,-0.2123146,0.252079,0.718028,-0.853875,0.252079,0.718028,-0.3039661,-0.3423531,0,-0.948936,-0.3423531,0,-0.300612,-0.4009036,0.4356522,-0.8862844,-0.4009036,0.4356522,-0.3563204,-0.4009036,0.4356522,-0.8862844,-0.3423531,0,-0.300612,0.4567104,1.763356,0.1395907,0.1834275,1.763356,0.6261625,0.4567104,1.763356,0.6744337,-0.006477297,1.763356,0.9418551,0.4567104,1.763356,0.6744337,0.1834275,1.763356,0.6261625,-0.1834275,1.763356,0.6261625,-0.006477297,1.763356,0.9418551,0.1834275,1.763356,0.6261625,-0.4696649,1.763356,0.6744337,-0.006477297,1.763356,0.9418551,-0.1834275,1.763356,0.6261625,-0.1834275,1.763356,0.2593073,-0.4696649,1.763356,0.6744337,-0.1834275,1.763356,0.6261625,-0.006477297,1.763356,-0.1278308,0.1834275,1.763356,0.2593073,0.4567104,1.763356,0.1395907,0.1834275,1.763356,0.6261625,0.4567104,1.763356,0.1395907,0.1834275,1.763356,0.2593073,-0.1834275,1.763356,0.2593073,0.1834275,1.763356,0.2593073,-0.006477297,1.763356,-0.1278308,-0.4696649,1.763356,0.1395907,-0.1834275,1.763356,0.2593073,-0.006477297,1.763356,-0.1278308,-0.4696649,1.763356,0.6744337,-0.1834275,1.763356,0.2593073,-0.4696649,1.763356,0.1395907,0.2434974,0,0.6862323,-0.2434974,0,0.6862323,0.1834275,1.763356,0.6261625,-0.1834275,1.763356,0.6261625,0.1834275,1.763356,0.6261625,-0.2434974,0,0.6862323,-1.333016,0.603543,-1.04066,-1.333016,0.603543,-0.2783206,-1.167965,0.4356522,-0.9453678,-1.167965,0.4356522,-0.3736131,-1.167965,0.4356522,-0.9453678,-1.333016,0.603543,-0.2783206,1.363294,0.922428,-0.9455264,1.204549,0.718028,-0.853875,1.363294,0.922428,-0.2123146,1.204549,0.718028,-0.3039661,1.363294,0.922428,-0.2123146,1.204549,0.718028,-0.853875,1.077927,0,-0.1992376,0.3920197,0,-0.1992376,0.9898312,0.718028,-0.2873341,0.4801163,0.718028,-0.2873341,0.9898312,0.718028,-0.2873341,0.3920197,0,-0.1992376,0.252079,0.718028,-0.853875,0.728314,0.718028,-1.128829,0.09333386,0.922428,-0.9455264,0.728314,0.922428,-1.312133,0.09333386,0.922428,-0.9455264,0.728314,0.718028,-1.128829,0.2434974,0,0.1992376,0.2434974,0,0.6862323,0.1834275,1.763356,0.2593073,0.1834275,1.763356,0.6261625,0.1834275,1.763356,0.2593073,0.2434974,0,0.6862323,0.728314,0.718028,-0.02901161,0.252079,0.718028,-0.3039661,0.728314,0.922428,0.1542914,0.09333386,0.922428,-0.2123146,0.728314,0.922428,0.1542914,0.252079,0.718028,-0.3039661,-0.2434974,0,0.1992376,-0.1834275,1.763356,0.2593073,-0.2434974,0,0.6862323,-0.1834275,1.763356,0.6261625,-0.2434974,0,0.6862323,-0.1834275,1.763356,0.2593073,-0.2434974,0,0.1992376,0.2434974,0,0.1992376,-0.1834275,1.763356,0.2593073,0.1834275,1.763356,0.2593073,-0.1834275,1.763356,0.2593073,0.2434974,0,0.1992376,-0.006477297,1.763356,0.9418551,-0.4696649,1.763356,0.6744337,-0.006477297,1.962156,1.120136,-0.6240609,1.962156,0.7635742,-0.006477297,1.962156,1.120136,-0.4696649,1.763356,0.6744337,0.728314,0.718028,-1.128829,1.204549,0.718028,-0.853875,0.728314,0.922428,-1.312133,1.363294,0.922428,-0.9455264,0.728314,0.922428,-1.312133,1.204549,0.718028,-0.853875,0.3920197,0,-0.8851456,1.077927,0,-0.8851456,0.4801163,0.718028,-0.7970491,0.9898312,0.718028,-0.7970491,0.4801163,0.718028,-0.7970491,1.077927,0,-0.8851456,-0.01260447,0.603543,-0.2783206,-0.1776558,0.4356522,-0.3736131,-0.67281,0.603543,0.1028492,-0.67281,0.4356522,-0.08773573,-0.67281,0.603543,0.1028492,-0.1776558,0.4356522,-0.3736131,-0.9906775,0,-0.948936,-0.3423531,0,-0.948936,-0.9308676,0.4356522,-0.8862844,-0.4009036,0.4356522,-0.8862844,-0.9308676,0.4356522,-0.8862844,-0.3423531,0,-0.948936,-0.01260447,0.603543,-1.04066,-0.1776558,0.4356522,-0.9453678,-0.01260447,0.603543,-0.2783206,-0.1776558,0.4356522,-0.3736131,-0.01260447,0.603543,-0.2783206,-0.1776558,0.4356522,-0.9453678,-0.3423531,0,-0.300612,-0.9906775,0,-0.300612,-0.4009036,0.4356522,-0.3563204,-0.9308676,0.4356522,-0.3563204,-0.4009036,0.4356522,-0.3563204,-0.9906775,0,-0.300612,0.4567104,1.763356,0.6744337,-0.006477297,1.763356,0.9418551,0.6111063,1.962156,0.7635742,-0.006477297,1.962156,1.120136,0.6111063,1.962156,0.7635742,-0.006477297,1.763356,0.9418551,-0.67281,0.4356522,-1.231245,-0.67281,0.603543,-1.42183,-1.167965,0.4356522,-0.9453678,-1.333016,0.603543,-1.04066,-1.167965,0.4356522,-0.9453678,-0.67281,0.603543,-1.42183,-0.9906775,0,-0.948936,-0.9308676,0.4356522,-0.8862844,-0.9906775,0,-0.300612,-0.9308676,0.4356522,-0.3563204,-0.9906775,0,-0.300612,-0.9308676,0.4356522,-0.8862844,-0.67281,0.603543,0.1028492,-0.67281,0.4356522,-0.08773573,-1.333016,0.603543,-0.2783206,-1.167965,0.4356522,-0.3736131,-1.333016,0.603543,-0.2783206,-0.67281,0.4356522,-0.08773573,1.077927,0,-0.8851456,1.077927,0,-0.1992376,0.9898312,0.718028,-0.7970491,0.9898312,0.718028,-0.2873341,0.9898312,0.718028,-0.7970491,1.077927,0,-0.1992376,-0.4696649,1.763356,0.1395907,-0.006477297,1.763356,-0.1278308,-0.6240609,1.962156,0.05045019,-0.006477297,1.962156,-0.3061118,-0.6240609,1.962156,0.05045019,-0.006477297,1.763356,-0.1278308,0.3920197,0,-0.8851456,0.4801163,0.718028,-0.7970491,0.3920197,0,-0.1992376,0.4801163,0.718028,-0.2873341,0.3920197,0,-0.1992376,0.4801163,0.718028,-0.7970491,1.204549,0.718028,-0.3039661,0.728314,0.718028,-0.02901161,1.363294,0.922428,-0.2123146,0.728314,0.922428,0.1542914,1.363294,0.922428,-0.2123146,0.728314,0.718028,-0.02901161,-0.6240609,1.962156,0.05045019,-0.6240609,1.962156,0.7635742,-0.4696649,1.763356,0.1395907,-0.4696649,1.763356,0.6744337,-0.4696649,1.763356,0.1395907,-0.6240609,1.962156,0.7635742,-0.01260447,0.603543,-1.04066,-0.67281,0.603543,-1.42183,-0.1776558,0.4356522,-0.9453678,-0.67281,0.4356522,-1.231245,-0.1776558,0.4356522,-0.9453678,-0.67281,0.603543,-1.42183,1.077927,0,-0.1992376,1.077927,0,-0.8851456,0.3920197,0,-0.1992376,0.3920197,0,-0.8851456,0.3920197,0,-0.1992376,1.077927,0,-0.8851456,-0.3423531,0,-0.300612,-0.3423531,0,-0.948936,-0.9906775,0,-0.300612,-0.9906775,0,-0.948936,-0.9906775,0,-0.300612,-0.3423531,0,-0.948936,-0.006477297,1.763356,-0.1278308,0.4567104,1.763356,0.1395907,-0.006477297,1.962156,-0.3061118,0.6111063,1.962156,0.05045019,-0.006477297,1.962156,-0.3061118,0.4567104,1.763356,0.1395907,1.204549,0.718028,-0.853875,0.9898312,0.718028,-0.2873341,1.204549,0.718028,-0.3039661,0.728314,0.718028,-0.02901161,1.204549,0.718028,-0.3039661,0.9898312,0.718028,-0.2873341,0.4801163,0.718028,-0.2873341,0.728314,0.718028,-0.02901161,0.9898312,0.718028,-0.2873341,0.252079,0.718028,-0.3039661,0.728314,0.718028,-0.02901161,0.4801163,0.718028,-0.2873341,0.4801163,0.718028,-0.7970491,0.252079,0.718028,-0.3039661,0.4801163,0.718028,-0.2873341,0.728314,0.718028,-1.128829,0.9898312,0.718028,-0.7970491,1.204549,0.718028,-0.853875,0.9898312,0.718028,-0.2873341,1.204549,0.718028,-0.853875,0.9898312,0.718028,-0.7970491,0.4801163,0.718028,-0.7970491,0.9898312,0.718028,-0.7970491,0.728314,0.718028,-1.128829,0.252079,0.718028,-0.853875,0.4801163,0.718028,-0.7970491,0.728314,0.718028,-1.128829,0.252079,0.718028,-0.3039661,0.4801163,0.718028,-0.7970491,0.252079,0.718028,-0.853875,0.2434974,0,0.6862323,0.2434974,0,0.1992376,-0.2434974,0,0.6862323,-0.2434974,0,0.1992376,-0.2434974,0,0.6862323,0.2434974,0,0.1992376,-0.01260447,0.603543,-1.04066,-0.01260447,0.603543,-0.2783206,-0.5150547,1.061885,-0.7505704,-0.5150547,1.061885,-0.5684105,-0.01260447,0.603543,-0.2783206,-0.67281,0.603543,0.1028492,-0.5150547,1.061885,-0.5684105,-0.67281,1.061885,-0.4773304,0.8800418,1.48044,-0.6665205,0.8800418,1.48044,-0.4913206,0.728314,1.48044,-0.7541204,0.728314,1.48044,-0.4037206,0.5765865,1.48044,-0.6665205,0.5765865,1.48044,-0.4913206,-0.5150547,1.061885,-0.7505704,-0.5150547,1.061885,-0.5684105,-0.67281,1.061885,-0.8416504,-0.67281,1.061885,-0.4773304,-0.8305652,1.061885,-0.7505704,-0.8305652,1.061885,-0.5684105,0.728314,0.922428,-1.312133,0.728314,1.48044,-0.7541204,0.09333386,0.922428,-0.9455264,0.5765865,1.48044,-0.6665205,-0.8305652,1.061885,-0.7505704,-0.8305652,1.061885,-0.5684105,-1.333016,0.603543,-1.04066,-1.333016,0.603543,-0.2783206,1.363294,0.922428,-0.9455264,0.8800418,1.48044,-0.6665205,0.728314,0.922428,-1.312133,0.728314,1.48044,-0.7541204,-0.01260447,0.603543,-1.04066,-0.5150547,1.061885,-0.7505704,-0.67281,0.603543,-1.42183,-0.67281,1.061885,-0.8416504,-0.67281,0.603543,-1.42183,-0.67281,1.061885,-0.8416504,-1.333016,0.603543,-1.04066,-0.8305652,1.061885,-0.7505704,-0.67281,1.061885,-0.4773304,-0.67281,0.603543,0.1028492,-0.8305652,1.061885,-0.5684105,-1.333016,0.603543,-0.2783206,0.728314,1.48044,-0.4037206,0.728314,0.922428,0.1542914,0.5765865,1.48044,-0.4913206,0.09333386,0.922428,-0.2123146,1.363294,0.922428,-0.9455264,1.363294,0.922428,-0.2123146,0.8800418,1.48044,-0.6665205,0.8800418,1.48044,-0.4913206,0.09333386,0.922428,-0.9455264,0.5765865,1.48044,-0.6665205,0.09333386,0.922428,-0.2123146,0.5765865,1.48044,-0.4913206,-0.006477297,2.50488,0.5774122,-0.006477297,1.962156,1.120136,-0.1540481,2.50488,0.4922122,-0.6240609,1.962156,0.7635742,0.6111063,1.962156,0.7635742,-0.006477297,1.962156,1.120136,0.1410934,2.50488,0.4922122,-0.006477297,2.50488,0.5774122,1.363294,0.922428,-0.2123146,0.728314,0.922428,0.1542914,0.8800418,1.48044,-0.4913206,0.728314,1.48044,-0.4037206,0.1410934,2.50488,0.3218122,0.1410934,2.50488,0.4922122,-0.006477297,2.50488,0.2366122,-0.006477297,2.50488,0.5774122,-0.1540481,2.50488,0.3218122,-0.1540481,2.50488,0.4922122,0.6111063,1.962156,0.05045019,0.1410934,2.50488,0.3218122,-0.006477297,1.962156,-0.3061118,-0.006477297,2.50488,0.2366122,0.6111063,1.962156,0.05045019,0.6111063,1.962156,0.7635742,0.1410934,2.50488,0.3218122,0.1410934,2.50488,0.4922122,-0.6240609,1.962156,0.05045019,-0.1540481,2.50488,0.3218122,-0.6240609,1.962156,0.7635742,-0.1540481,2.50488,0.4922122,-0.006477297,1.962156,-0.3061118,-0.006477297,2.50488,0.2366122,-0.6240609,1.962156,0.05045019,-0.1540481,2.50488,0.3218122 + } + PolygonVertexIndex: *432 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,1,7,-1,8,0,-8,6,8,-8,9,8,-7,5,9,-7,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,50,-50,51,53,-53,54,56,-56,57,59,-59,60,62,-62,63,65,-65,66,68,-68,69,71,-71,72,74,-74,75,77,-77,78,80,-80,81,83,-83,84,86,-86,87,89,-89,90,92,-92,93,95,-95,96,98,-98,99,101,-101,102,104,-104,105,107,-107,108,110,-110,111,113,-113,114,116,-116,117,119,-119,120,122,-122,123,125,-125,126,128,-128,129,131,-131,132,134,-134,135,137,-137,138,140,-140,141,143,-143,144,146,-146,147,149,-149,150,152,-152,153,155,-155,156,158,-158,159,161,-161,162,164,-164,165,167,-167,168,170,-170,171,173,-173,174,176,-176,177,179,-179,180,182,-182,183,185,-185,186,188,-188,189,191,-191,192,194,-194,195,197,-197,198,200,-200,201,203,-203,204,206,-206,207,209,-209,210,212,-212,213,215,-215,216,218,-218,219,221,-221,222,224,-224,225,227,-227,228,230,-230,231,233,-233,234,236,-236,237,239,-239,240,242,-242,243,245,-245,246,248,-248,249,251,-251,252,254,-254,255,257,-257,258,260,-260,261,263,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,275,-275,277,275,-277,278,280,-280,281,279,-281,282,281,-281,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,335,-335,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1296 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.03404586,0.9994203,0,0.03404586,0.9994203,0,0.03404586,0.9994203,0,0.03404586,0.9994203,0,0.03404586,0.9994203,0,0.03404586,0.9994203,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0,0.1217791,0.9925572,0,0.1217791,0.9925572,0,0.1217791,0.9925572,0,0.1217791,0.9925572,0,0.1217791,0.9925572,0,0.1217791,0.9925572,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,0.9994203,0.03404586,0,0.9994203,0.03404586,0,0.9994203,0.03404586,0,0.9994203,0.03404586,0,0.9994203,0.03404586,0,0.9994203,0.03404586,0,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0,0.1268407,0.991923,0,0.1268407,0.991923,0,0.1268407,0.991923,0,0.1268407,0.991923,0,0.1268407,0.991923,0,0.1268407,0.991923,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,0.9925573,0.1217787,0,0.9925573,0.1217787,0,0.9925573,0.1217787,0,0.9925573,0.1217787,0,0.9925573,0.1217787,0,0.9925573,0.1217787,0,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *708 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1.354352,4.99833,-0.6371861,4.99833,-2.496438,2.320777,-1.354352,4.99833,-0.6371861,4.99833,-2.496438,2.320777,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-1.09575,-2.27587,-4.097088,-2.27587,-2.237837,0.4016829,-1.09575,-2.27587,-4.097088,-2.27587,-2.237837,0.4016829,-1.09575,-2.27587,-4.097088,-2.27587,-2.237837,0.4016829,-1.09575,-2.27587,-4.097088,-2.27587,-2.237837,0.4016829,-0.9987319,1.784111,0.09971832,-1.122112,-1.688496,1.784111,-0.9987319,1.784111,0.09971832,-1.122112,-1.688496,1.784111,-0.9987319,1.784111,0.09971832,-1.122112,-1.688496,1.784111,-0.9987319,1.784111,0.09971832,-1.122112,-1.688496,1.784111,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,-1.934333,5.892015,-0.8358842,2.985793,-2.624096,5.892015,-1.934333,5.892015,-0.8358842,2.985793,-2.624096,5.892015,-1.934333,5.892015,-0.8358842,2.985793,-2.624096,5.892015,-1.934333,5.892015,-0.8358842,2.985793,-2.624096,5.892015,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,0.6064884,1.937843,0.6064884,1.266977,0.02550117,2.273276,0.6064884,1.937843,0.6064884,1.266977,0.02550117,2.273276,0.6064884,1.937843,0.6064884,1.266977,0.02550117,2.273276,0.6064884,1.937843,0.6064884,1.266977,0.02550117,2.273276,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.158723,7.974557,2.227077,5.147957,0.4878567,7.974557,1.158723,7.974557,2.227077,5.147957,0.4878567,7.974557,4.097088,1.638035,1.09575,1.638035,2.955002,4.315587,2.237837,4.315587,0.5048997,2.320777,-2.496438,2.320777,-0.6371861,4.99833,-1.354352,4.99833,-3.464731,-2.624096,-3.464731,-1.934333,-2.867378,-2.968978,-2.867378,-1.589451,-2.270025,-2.624096,-2.270025,-1.934333,2.027775,-2.955002,2.027775,-2.237837,2.648858,-3.313584,2.648858,-1.879254,3.269942,-2.955002,3.269942,-2.237837,-5.066163,0.7550296,-3.967712,3.661253,-2.179501,0.7550297,-3.277949,3.661252,-2.955002,0.4016829,-2.237837,0.4016829,-4.097088,-2.27587,-1.09575,-2.27587,-2.786945,-1.122112,-1.688496,1.784111,0.09971832,-1.122112,-0.9987319,1.784111,2.091518,-1.00166,3.233605,1.675892,5.092855,-1.00166,3.95077,1.675892,-0.5048971,-2.958611,0.6371878,-0.281059,2.49644,-2.958611,1.354353,-0.281059,-3.233605,3.041378,-2.091519,0.3638256,-3.950771,3.041378,-5.092857,0.3638256,1.688497,6.245639,2.786945,3.339417,0.9987332,6.245639,-0.09971572,3.339416,3.722545,-0.7684879,0.8358842,-0.7684879,2.624096,2.137735,1.934333,2.137735,-3.722545,2.985793,-2.624096,5.892015,-0.8358842,2.985793,-1.934333,5.892015,1.114553,6.157594,2.182907,3.330995,0.4436869,6.157594,-0.6246679,3.330995,0.5804985,3.347689,-2.227076,3.347689,-0.4878563,6.174289,-1.158723,6.174289,5.066162,1.462277,2.179499,1.462277,3.967712,4.368499,3.277948,4.368499,-0.555486,1.266977,-0.555486,1.937843,0.02550117,0.9315441,0.02550117,2.273276,0.6064884,1.266977,0.6064884,1.937843,-2.182908,5.164651,-1.114554,7.991251,0.6246669,5.164651,-0.4436873,7.991251,-0.1986228,4.264517,-3.006197,4.264517,-1.266977,7.091117,-1.937843,7.091117,0.1986228,4.231128,1.266977,7.057728,3.006197,4.231128,1.937843,7.057728,-0.5804976,5.147957,0.4878567,7.974557,2.227077,5.147957,1.158723,7.974557 + } + UVIndex: *432 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,1,7,0,8,0,7,6,8,7,9,8,6,5,9,6,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,23,22,24,26,25,27,29,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,50,49,51,53,52,54,56,55,57,59,58,60,62,61,63,65,64,66,68,67,69,71,70,72,74,73,75,77,76,78,80,79,81,83,82,84,86,85,87,89,88,90,92,91,93,95,94,96,98,97,99,101,100,102,104,103,105,107,106,108,110,109,111,113,112,114,116,115,117,119,118,120,122,121,123,125,124,126,128,127,129,131,130,132,134,133,135,137,136,138,140,139,141,143,142,144,146,145,147,149,148,150,152,151,153,155,154,156,158,157,159,161,160,162,164,163,165,167,166,168,170,169,171,173,172,174,176,175,177,179,178,180,182,181,183,185,184,186,188,187,189,191,190,192,194,193,195,197,196,198,200,199,201,203,202,204,206,205,207,209,208,210,212,211,213,215,214,216,218,217,219,221,220,222,224,223,225,227,226,228,230,229,231,233,232,234,236,235,237,239,238,240,242,241,243,245,244,246,248,247,249,251,250,252,254,253,255,257,256,258,260,259,261,263,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,275,274,277,275,276,278,280,279,281,279,280,282,281,280,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,335,334,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *144 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh mushroom_redGroup, Model::RootNode + C: "OO",5396574111428656579,0 + + ;Geometry::, Model::Mesh mushroom_redGroup + C: "OO",4986510578347821790,5396574111428656579 + + ;Material::_defaultMat, Model::Mesh mushroom_redGroup + C: "OO",3004,5396574111428656579 + + ;Material::colorRed, Model::Mesh mushroom_redGroup + C: "OO",3008,5396574111428656579 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redGroup.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redGroup.fbx.import new file mode 100644 index 0000000..5fd2d59 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redGroup.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b12tf04l6gf7v" +path="res://.godot/imported/mushroom_redGroup.fbx-3fb15f31b02660008fd22438317011de.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/mushroom_redGroup.fbx" +dest_files=["res://.godot/imported/mushroom_redGroup.fbx-3fb15f31b02660008fd22438317011de.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redTall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redTall.fbx new file mode 100644 index 0000000..00906af --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redTall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 26 + Millisecond: 538 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "mushroom_redTall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "mushroom_redTall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5672203744359288286, "Model::mushroom_redTall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4979084695066587423, "Geometry::", "Mesh" { + Vertices: *378 { + a: -0.6240609,1.962156,-0.3922847,-0.006477274,1.962156,-0.7488467,-0.154048,2.50488,-0.1209227,-0.006477274,2.50488,-0.2061227,-0.006477274,1.962156,0.6774013,-0.6240609,1.962156,0.3208393,-0.006477274,2.50488,0.1346773,-0.154048,2.50488,0.04947732,0.1410935,2.50488,-0.1209227,0.1410935,2.50488,0.04947732,-0.006477274,2.50488,-0.2061227,-0.006477274,2.50488,0.1346773,-0.154048,2.50488,-0.1209227,-0.154048,2.50488,0.04947732,0.6111063,1.962156,-0.3922847,0.6111063,1.962156,0.3208393,0.1410935,2.50488,-0.1209227,0.1410935,2.50488,0.04947732,0.6111063,1.962156,0.3208393,-0.006477274,1.962156,0.6774013,0.1410935,2.50488,0.04947732,-0.006477274,2.50488,0.1346773,-0.006477274,1.962156,-0.7488467,0.6111063,1.962156,-0.3922847,-0.006477274,2.50488,-0.2061227,0.1410935,2.50488,-0.1209227,-0.6240609,1.962156,-0.3922847,-0.154048,2.50488,-0.1209227,-0.6240609,1.962156,0.3208393,-0.154048,2.50488,0.04947732,-0.6240609,1.962156,-0.3922847,-0.6240609,1.962156,0.3208393,-0.4696648,1.763356,-0.3031442,-0.4696648,1.763356,0.2316988,-0.4696648,1.763356,-0.3031442,-0.6240609,1.962156,0.3208393,-0.4696648,1.763356,-0.3031442,-0.006477274,1.763356,-0.5705657,-0.6240609,1.962156,-0.3922847,-0.006477274,1.962156,-0.7488467,-0.6240609,1.962156,-0.3922847,-0.006477274,1.763356,-0.5705657,0.187493,0,0.187493,0.187493,0,-0.187493,-0.187493,0,0.187493,-0.187493,0,-0.187493,-0.187493,0,0.187493,0.187493,0,-0.187493,-0.006477274,1.763356,0.4991203,-0.4696648,1.763356,0.2316988,-0.006477274,1.962156,0.6774013,-0.6240609,1.962156,0.3208393,-0.006477274,1.962156,0.6774013,-0.4696648,1.763356,0.2316988,-0.006477274,1.763356,-0.5705657,0.4567102,1.763356,-0.3031442,-0.006477274,1.962156,-0.7488467,0.6111063,1.962156,-0.3922847,-0.006477274,1.962156,-0.7488467,0.4567102,1.763356,-0.3031442,0.4567102,1.763356,0.2316988,-0.006477274,1.763356,0.4991203,0.6111063,1.962156,0.3208393,-0.006477274,1.962156,0.6774013,0.6111063,1.962156,0.3208393,-0.006477274,1.763356,0.4991203,0.6111063,1.962156,-0.3922847,0.4567102,1.763356,-0.3031442,0.6111063,1.962156,0.3208393,0.4567102,1.763356,0.2316988,0.6111063,1.962156,0.3208393,0.4567102,1.763356,-0.3031442,0.4567102,1.763356,0.2316988,0.4567102,1.763356,-0.3031442,-0.006477274,1.763356,0.4991203,0.1118908,1.763356,0.1118908,-0.006477274,1.763356,0.4991203,0.4567102,1.763356,-0.3031442,-0.1118908,1.763356,0.1118908,-0.006477274,1.763356,0.4991203,0.1118908,1.763356,0.1118908,-0.4696648,1.763356,0.2316988,-0.006477274,1.763356,0.4991203,-0.1118908,1.763356,0.1118908,-0.1118908,1.763356,-0.1118908,-0.4696648,1.763356,0.2316988,-0.1118908,1.763356,0.1118908,-0.006477274,1.763356,-0.5705657,0.1118908,1.763356,-0.1118908,0.4567102,1.763356,-0.3031442,0.1118908,1.763356,0.1118908,0.4567102,1.763356,-0.3031442,0.1118908,1.763356,-0.1118908,-0.1118908,1.763356,-0.1118908,0.1118908,1.763356,-0.1118908,-0.006477274,1.763356,-0.5705657,-0.4696648,1.763356,-0.3031442,-0.1118908,1.763356,-0.1118908,-0.006477274,1.763356,-0.5705657,-0.4696648,1.763356,0.2316988,-0.1118908,1.763356,-0.1118908,-0.4696648,1.763356,-0.3031442,-0.187493,0,-0.187493,0.187493,0,-0.187493,-0.1118908,1.763356,-0.1118908,0.1118908,1.763356,-0.1118908,-0.1118908,1.763356,-0.1118908,0.187493,0,-0.187493,0.187493,0,0.187493,-0.187493,0,0.187493,0.1118908,1.763356,0.1118908,-0.1118908,1.763356,0.1118908,0.1118908,1.763356,0.1118908,-0.187493,0,0.187493,-0.187493,0,-0.187493,-0.1118908,1.763356,-0.1118908,-0.187493,0,0.187493,-0.1118908,1.763356,0.1118908,-0.187493,0,0.187493,-0.1118908,1.763356,-0.1118908,0.187493,0,-0.187493,0.187493,0,0.187493,0.1118908,1.763356,-0.1118908,0.1118908,1.763356,0.1118908,0.1118908,1.763356,-0.1118908,0.187493,0,0.187493 + } + PolygonVertexIndex: *144 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,50,-50,51,53,-53,54,56,-56,57,59,-59,60,62,-62,63,65,-65,66,68,-68,69,71,-71,72,74,-74,75,77,-77,78,80,-80,81,83,-83,84,86,-86,87,89,-89,90,92,-92,93,95,-95,96,98,-98,99,101,-101,102,104,-104,105,107,-107,108,110,-110,111,113,-113,114,116,-116,117,119,-119,120,122,-122,123,125,-125 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *432 { + a: -0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *252 { + a: 1.355552,4.159743,-1.452023,4.159743,0.2871975,6.986344,-0.3836687,6.986344,1.311382,4.319214,-1.496193,4.319214,0.2430282,7.145816,-0.427838,7.145816,-0.5554861,-0.4760736,-0.5554861,0.1947926,0.02550108,-0.8115067,0.02550108,0.5302257,0.6064883,-0.4760736,0.6064883,0.1947926,1.544428,4.26452,-1.263147,4.26452,0.4760736,7.091121,-0.1947926,7.091121,1.452024,4.335909,-1.355552,4.335909,0.3836688,7.16251,-0.2871974,7.16251,1.496192,4.176437,-1.311383,4.176437,0.4278379,7.003039,-0.2430283,7.003039,-1.544428,4.231131,-0.4760736,7.057733,1.263147,4.231131,0.1947926,7.057733,-0.3836687,6.986344,0.2871975,6.986344,-1.452023,4.159743,-0.3836687,6.986344,0.2871975,6.986344,-1.452023,4.159743,-0.427838,7.145816,0.2430282,7.145816,-1.496193,4.319214,-0.427838,7.145816,0.2430282,7.145816,-1.496193,4.319214,0.6064883,0.1947926,0.6064883,-0.4760736,0.02550108,0.5302257,0.6064883,0.1947926,0.6064883,-0.4760736,0.02550108,0.5302257,0.6064883,0.1947926,0.6064883,-0.4760736,0.02550108,0.5302257,0.6064883,0.1947926,0.6064883,-0.4760736,0.02550108,0.5302257,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733 + } + UVIndex: *144 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,50,49,51,53,52,54,56,55,57,59,58,60,62,61,63,65,64,66,68,67,69,71,70,72,74,73,75,77,76,78,80,79,81,83,82,84,86,85,87,89,88,90,92,91,93,95,94,96,98,97,99,101,100,102,104,103,105,107,106,108,110,109,111,113,112,114,116,115,117,119,118,120,122,121,123,125,124 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *48 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh mushroom_redTall, Model::RootNode + C: "OO",5672203744359288286,0 + + ;Geometry::, Model::Mesh mushroom_redTall + C: "OO",4979084695066587423,5672203744359288286 + + ;Material::colorRed, Model::Mesh mushroom_redTall + C: "OO",3008,5672203744359288286 + + ;Material::_defaultMat, Model::Mesh mushroom_redTall + C: "OO",3004,5672203744359288286 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redTall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redTall.fbx.import new file mode 100644 index 0000000..d1f6ee3 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_redTall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://blwxr37s3d77t" +path="res://.godot/imported/mushroom_redTall.fbx-816922b71a3825ae350efbf01d685e89.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/mushroom_redTall.fbx" +dest_files=["res://.godot/imported/mushroom_redTall.fbx-816922b71a3825ae350efbf01d685e89.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tan.fbx b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tan.fbx new file mode 100644 index 0000000..fd563dd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tan.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 26 + Millisecond: 638 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "mushroom_tan.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "mushroom_tan.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4878240082590484677, "Model::mushroom_tan", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5417953633113427999, "Geometry::", "Mesh" { + Vertices: *312 { + a: 0.708492,0.63138,-0.4646289,0.3849443,0.63138,0.3890632,0.708492,0.63138,0.3640016,-0.009122801,0.63138,0.7783163,-0.3831194,0.63138,0.3890632,-0.7267376,0.63138,0.3640016,-0.3831194,0.63138,-0.3790004,0.3849443,0.63138,-0.3790004,-0.009122801,0.63138,-0.8789436,-0.7267376,0.63138,-0.4646289,0.4698,4.007414E-31,0.4698,0.4698,4.007414E-31,-0.4698,-0.4698,4.007414E-31,0.4698,-0.4698,4.007414E-31,-0.4698,0.4698,4.007414E-31,-0.4698,0.4698,4.007414E-31,0.4698,0.3849443,0.63138,-0.3790004,0.3849443,0.63138,0.3890632,0.3849443,0.63138,-0.3790004,0.4698,4.007414E-31,0.4698,0.4698,4.007414E-31,0.4698,-0.4698,4.007414E-31,0.4698,0.3849443,0.63138,0.3890632,-0.3831194,0.63138,0.3890632,0.3849443,0.63138,0.3890632,-0.4698,4.007414E-31,0.4698,-0.4698,4.007414E-31,-0.4698,0.4698,4.007414E-31,-0.4698,-0.3831194,0.63138,-0.3790004,0.3849443,0.63138,-0.3790004,-0.3831194,0.63138,-0.3790004,0.4698,4.007414E-31,-0.4698,0.9476968,0.8747,-0.6027336,-0.009122801,0.8747,-1.155154,0.708492,0.63138,-0.4646289,-0.009122801,0.63138,-0.8789436,0.708492,0.63138,-0.4646289,-0.009122801,0.8747,-1.155154,-0.9659424,0.8747,-0.6027336,-0.9659424,0.8747,0.5021064,-0.7267376,0.63138,-0.4646289,-0.7267376,0.63138,0.3640016,-0.7267376,0.63138,-0.4646289,-0.9659424,0.8747,0.5021064,-0.009122801,0.8747,1.054526,-0.009122801,0.63138,0.7783163,-0.9659424,0.8747,0.5021064,-0.7267376,0.63138,0.3640016,-0.9659424,0.8747,0.5021064,-0.009122801,0.63138,0.7783163,-0.009122801,0.63138,-0.8789436,-0.009122801,0.8747,-1.155154,-0.7267376,0.63138,-0.4646289,-0.9659424,0.8747,-0.6027336,-0.7267376,0.63138,-0.4646289,-0.009122801,0.8747,-1.155154,-0.4698,4.007414E-31,-0.4698,-0.3831194,0.63138,-0.3790004,-0.4698,4.007414E-31,0.4698,-0.3831194,0.63138,0.3890632,-0.4698,4.007414E-31,0.4698,-0.3831194,0.63138,-0.3790004,0.9476968,0.8747,-0.6027336,0.708492,0.63138,-0.4646289,0.9476968,0.8747,0.5021064,0.708492,0.63138,0.3640016,0.9476968,0.8747,0.5021064,0.708492,0.63138,-0.4646289,0.9476968,0.8747,0.5021064,0.708492,0.63138,0.3640016,-0.009122801,0.8747,1.054526,-0.009122801,0.63138,0.7783163,-0.009122801,0.8747,1.054526,0.708492,0.63138,0.3640016,0.9476968,0.8747,-0.6027336,0.2195079,1.538964,-0.1823136,-0.009122801,0.8747,-1.155154,-0.009122801,1.538964,-0.3143136,0.2195079,1.538964,-0.1823136,0.2195079,1.538964,0.08168638,-0.009122801,1.538964,-0.3143136,-0.009122801,1.538964,0.2136864,-0.2377535,1.538964,-0.1823136,-0.2377535,1.538964,0.08168638,-0.009122801,0.8747,-1.155154,-0.009122801,1.538964,-0.3143136,-0.9659424,0.8747,-0.6027336,-0.2377535,1.538964,-0.1823136,-0.009122801,1.538964,0.2136864,-0.009122801,0.8747,1.054526,-0.2377535,1.538964,0.08168638,-0.9659424,0.8747,0.5021064,-0.2377535,1.538964,-0.1823136,-0.2377535,1.538964,0.08168638,-0.9659424,0.8747,-0.6027336,-0.9659424,0.8747,0.5021064,0.9476968,0.8747,-0.6027336,0.9476968,0.8747,0.5021064,0.2195079,1.538964,-0.1823136,0.2195079,1.538964,0.08168638,0.9476968,0.8747,0.5021064,-0.009122801,0.8747,1.054526,0.2195079,1.538964,0.08168638,-0.009122801,1.538964,0.2136864 + } + PolygonVertexIndex: *144 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,1,7,-1,8,0,-8,6,8,-8,9,8,-7,5,9,-7,10,12,-12,13,11,-13,14,16,-16,17,19,-19,20,22,-22,23,25,-25,26,28,-28,29,31,-31,32,34,-34,35,37,-37,38,40,-40,41,43,-43,44,46,-46,47,49,-49,50,52,-52,53,55,-55,56,58,-58,59,61,-61,62,64,-64,65,67,-67,68,70,-70,71,73,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,81,-81,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *432 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9910892,0.1331997,0,0.9910892,0.1331997,0,0.9910892,0.1331997,0,0.9910892,0.1331997,0,0.9910892,0.1331997,0,0.9910892,0.1331997,0,0,0.1268408,0.991923,0,0.1268408,0.991923,0,0.1268408,0.991923,0,0.1268408,0.991923,0,0.1268408,0.991923,0,0.1268408,0.991923,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0.3565556,-0.7010508,-0.6175727,0.3565556,-0.7010508,-0.6175727,0.3565556,-0.7010508,-0.6175727,0.3565556,-0.7010508,-0.6175727,0.3565556,-0.7010508,-0.6175727,0.3565556,-0.7010508,-0.6175727,-0.7131113,-0.7010508,0,-0.7131113,-0.7010508,0,-0.7131113,-0.7010508,0,-0.7131113,-0.7010508,0,-0.7131113,-0.7010508,0,-0.7131113,-0.7010508,0,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,-0.6175727,-0.3565556,-0.7010508,-0.6175727,-0.3565556,-0.7010508,-0.6175727,-0.3565556,-0.7010508,-0.6175727,-0.3565556,-0.7010508,-0.6175727,-0.3565556,-0.7010508,-0.6175727,-0.9907073,0.1360117,0,-0.9907073,0.1360117,0,-0.9907073,0.1360117,0,-0.9907073,0.1360117,0,-0.9907073,0.1360117,0,-0.9907073,0.1360117,0,0.7131113,-0.7010508,0,0.7131113,-0.7010508,0,0.7131113,-0.7010508,0,0.7131113,-0.7010508,0,0.7131113,-0.7010508,0,0.7131113,-0.7010508,0,0.3565556,-0.7010508,0.6175727,0.3565556,-0.7010508,0.6175727,0.3565556,-0.7010508,0.6175727,0.3565556,-0.7010508,0.6175727,0.3565556,-0.7010508,0.6175727,0.3565556,-0.7010508,0.6175727,0.3369674,0.7387907,-0.5836447,0.3369674,0.7387907,-0.5836447,0.3369674,0.7387907,-0.5836447,0.3369674,0.7387907,-0.5836447,0.3369674,0.7387907,-0.5836447,0.3369674,0.7387907,-0.5836447,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3369674,0.7387907,-0.5836447,-0.3369674,0.7387907,-0.5836447,-0.3369674,0.7387907,-0.5836447,-0.3369674,0.7387907,-0.5836447,-0.3369674,0.7387907,-0.5836447,-0.3369674,0.7387907,-0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.6739348,0.7387908,0,-0.6739348,0.7387908,0,-0.6739348,0.7387908,0,-0.6739348,0.7387908,0,-0.6739348,0.7387908,0,-0.6739348,0.7387908,0,0.6739348,0.7387908,0,0.6739348,0.7387908,0,0.6739348,0.7387908,0,0.6739348,0.7387908,0,0.6739348,0.7387908,0,0.6739348,0.7387908,0,0.3369674,0.7387907,0.5836447,0.3369674,0.7387907,0.5836447,0.3369674,0.7387907,0.5836447,0.3369674,0.7387907,0.5836447,0.3369674,0.7387907,0.5836447,0.3369674,0.7387907,0.5836447 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *208 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9360375,0.3216,0.9360375,-0.7177702,0.03591654,0.841285,0.9360375,0.3216,0.9360375,-0.7177702,0.03591654,0.841285,0.9360375,0.3216,0.9360375,-0.7177702,0.03591654,0.841285,0.9360375,0.3216,0.9360375,-0.7177702,0.03591654,0.841285,0.9360375,0.3216,0.9360375,-0.7177702,0.03591654,0.841285,0.9360375,0.3216,0.9360375,-0.7177702,0.03591654,0.841285,0.4517472,3.278306,2.106945,-0.6022038,-0.5876229,3.278306,0.4517472,3.278306,2.106945,-0.6022038,-0.5876229,3.278306,0.4517472,3.278306,2.106945,-0.6022038,-0.5876229,3.278306,0.4517472,3.278306,2.106945,-0.6022038,-0.5876229,3.278306,-2.30503,-0.3487296,-0.6498322,3.531781,2.044734,-0.3487296,-2.30503,-0.3487296,-0.6498322,3.531781,2.044734,-0.3487296,-2.30503,-0.3487296,-0.6498322,3.531781,2.044734,-0.3487296,-2.30503,-0.3487296,-0.6498322,3.531781,2.044734,-0.3487296,-0.4517471,3.558316,0.587623,3.558316,-2.106944,-0.3221948,-0.4517471,3.558316,0.587623,3.558316,-2.106944,-0.3221948,-0.4517471,3.558316,0.587623,3.558316,-2.106944,-0.3221948,-0.4517471,3.558316,0.587623,3.558316,-2.106944,-0.3221948,-0.4517471,3.558316,0.587623,3.558316,-2.106944,-0.3221948,-0.4517471,3.558316,0.587623,3.558316,-2.106944,-0.3221948,-2.044735,-0.5756691,-0.3895379,3.304841,2.305029,-0.5756691,0.6498322,3.304841,-0.8642044,-0.7177702,-0.8642044,0.3216,0.03591654,-1.237455,0.03591654,0.841285,0.9360375,-0.7177702,0.9360375,0.3216,-2.24282,-0.6022038,-0.5876229,3.278306,2.106945,-0.6022038,0.4517472,3.278306,0.3895378,3.531781,2.044734,-0.3487296,-0.6498322,3.531781,-2.30503,-0.3487296,-0.7177702,3.391776,0.3216,3.391776,-2.372967,-0.4887348,1.976797,-0.4887348,2.372967,-0.4356651,-1.976797,-0.4356651,0.7177702,3.444845,-0.3216,3.444845,2.242821,-0.3221948,-2.106944,-0.3221948,0.587623,3.558316,-0.4517471,3.558316 + } + UVIndex: *144 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,1,7,0,8,0,7,6,8,7,9,8,6,5,9,6,10,12,11,13,11,12,14,16,15,17,19,18,20,22,21,23,25,24,26,28,27,29,31,30,32,34,33,35,37,36,38,40,39,41,43,42,44,46,45,47,49,48,50,52,51,53,55,54,56,58,57,59,61,60,62,64,63,65,67,66,68,70,69,71,73,72,74,76,75,77,75,76,78,80,79,81,79,80,82,81,80,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *48 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3012, "Material::colorTan", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.682353,0.4352941 + P: "DiffuseColor", "Color", "", "A",1,0.682353,0.4352941 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh mushroom_tan, Model::RootNode + C: "OO",4878240082590484677,0 + + ;Geometry::, Model::Mesh mushroom_tan + C: "OO",5417953633113427999,4878240082590484677 + + ;Material::_defaultMat, Model::Mesh mushroom_tan + C: "OO",3004,4878240082590484677 + + ;Material::colorTan, Model::Mesh mushroom_tan + C: "OO",3012,4878240082590484677 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tan.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tan.fbx.import new file mode 100644 index 0000000..73ff397 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tan.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4yrwo4upg7xw" +path="res://.godot/imported/mushroom_tan.fbx-da38f882e60ef083786b06a9c3090bec.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/mushroom_tan.fbx" +dest_files=["res://.godot/imported/mushroom_tan.fbx-da38f882e60ef083786b06a9c3090bec.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanGroup.fbx b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanGroup.fbx new file mode 100644 index 0000000..cbad3ea --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanGroup.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 26 + Millisecond: 744 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "mushroom_tanGroup.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "mushroom_tanGroup.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5175126262106851601, "Model::mushroom_tanGroup", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5379684015099735118, "Geometry::", "Mesh" { + Vertices: *1062 { + a: -0.1776558,0.4356522,-0.9453678,-0.4009036,0.4356522,-0.3563204,-0.1776558,0.4356522,-0.3736131,-0.67281,0.4356522,-0.08773573,-0.9308676,0.4356522,-0.3563204,-1.167965,0.4356522,-0.3736131,-0.9308676,0.4356522,-0.8862844,-0.4009036,0.4356522,-0.8862844,-0.67281,0.4356522,-1.231245,-1.167965,0.4356522,-0.9453678,0.6111063,1.962156,0.05045019,0.4567104,1.763356,0.1395907,0.6111063,1.962156,0.7635742,0.4567104,1.763356,0.6744337,0.09333386,0.922428,-0.9455264,0.09333386,0.922428,-0.2123146,0.252079,0.718028,-0.853875,0.252079,0.718028,-0.3039661,-0.3423531,0,-0.948936,-0.3423531,0,-0.300612,-0.4009036,0.4356522,-0.8862844,-0.4009036,0.4356522,-0.3563204,-0.4009036,0.4356522,-0.8862844,-0.3423531,0,-0.300612,0.4567104,1.763356,0.1395907,0.1834275,1.763356,0.6261625,0.4567104,1.763356,0.6744337,-0.006477297,1.763356,0.9418551,0.4567104,1.763356,0.6744337,0.1834275,1.763356,0.6261625,-0.1834275,1.763356,0.6261625,-0.006477297,1.763356,0.9418551,0.1834275,1.763356,0.6261625,-0.4696649,1.763356,0.6744337,-0.006477297,1.763356,0.9418551,-0.1834275,1.763356,0.6261625,-0.1834275,1.763356,0.2593073,-0.4696649,1.763356,0.6744337,-0.1834275,1.763356,0.6261625,-0.006477297,1.763356,-0.1278308,0.1834275,1.763356,0.2593073,0.4567104,1.763356,0.1395907,0.1834275,1.763356,0.6261625,0.4567104,1.763356,0.1395907,0.1834275,1.763356,0.2593073,-0.1834275,1.763356,0.2593073,0.1834275,1.763356,0.2593073,-0.006477297,1.763356,-0.1278308,-0.4696649,1.763356,0.1395907,-0.1834275,1.763356,0.2593073,-0.006477297,1.763356,-0.1278308,-0.4696649,1.763356,0.6744337,-0.1834275,1.763356,0.2593073,-0.4696649,1.763356,0.1395907,0.2434974,0,0.6862323,-0.2434974,0,0.6862323,0.1834275,1.763356,0.6261625,-0.1834275,1.763356,0.6261625,0.1834275,1.763356,0.6261625,-0.2434974,0,0.6862323,-1.333016,0.603543,-1.04066,-1.333016,0.603543,-0.2783206,-1.167965,0.4356522,-0.9453678,-1.167965,0.4356522,-0.3736131,-1.167965,0.4356522,-0.9453678,-1.333016,0.603543,-0.2783206,1.363294,0.922428,-0.9455264,1.204549,0.718028,-0.853875,1.363294,0.922428,-0.2123146,1.204549,0.718028,-0.3039661,1.363294,0.922428,-0.2123146,1.204549,0.718028,-0.853875,1.077927,0,-0.1992376,0.3920197,0,-0.1992376,0.9898312,0.718028,-0.2873341,0.4801163,0.718028,-0.2873341,0.9898312,0.718028,-0.2873341,0.3920197,0,-0.1992376,0.252079,0.718028,-0.853875,0.728314,0.718028,-1.128829,0.09333386,0.922428,-0.9455264,0.728314,0.922428,-1.312133,0.09333386,0.922428,-0.9455264,0.728314,0.718028,-1.128829,0.2434974,0,0.1992376,0.2434974,0,0.6862323,0.1834275,1.763356,0.2593073,0.1834275,1.763356,0.6261625,0.1834275,1.763356,0.2593073,0.2434974,0,0.6862323,0.728314,0.718028,-0.02901161,0.252079,0.718028,-0.3039661,0.728314,0.922428,0.1542914,0.09333386,0.922428,-0.2123146,0.728314,0.922428,0.1542914,0.252079,0.718028,-0.3039661,-0.2434974,0,0.1992376,-0.1834275,1.763356,0.2593073,-0.2434974,0,0.6862323,-0.1834275,1.763356,0.6261625,-0.2434974,0,0.6862323,-0.1834275,1.763356,0.2593073,-0.2434974,0,0.1992376,0.2434974,0,0.1992376,-0.1834275,1.763356,0.2593073,0.1834275,1.763356,0.2593073,-0.1834275,1.763356,0.2593073,0.2434974,0,0.1992376,-0.006477297,1.763356,0.9418551,-0.4696649,1.763356,0.6744337,-0.006477297,1.962156,1.120136,-0.6240609,1.962156,0.7635742,-0.006477297,1.962156,1.120136,-0.4696649,1.763356,0.6744337,0.728314,0.718028,-1.128829,1.204549,0.718028,-0.853875,0.728314,0.922428,-1.312133,1.363294,0.922428,-0.9455264,0.728314,0.922428,-1.312133,1.204549,0.718028,-0.853875,0.3920197,0,-0.8851456,1.077927,0,-0.8851456,0.4801163,0.718028,-0.7970491,0.9898312,0.718028,-0.7970491,0.4801163,0.718028,-0.7970491,1.077927,0,-0.8851456,-0.01260447,0.603543,-0.2783206,-0.1776558,0.4356522,-0.3736131,-0.67281,0.603543,0.1028492,-0.67281,0.4356522,-0.08773573,-0.67281,0.603543,0.1028492,-0.1776558,0.4356522,-0.3736131,-0.9906775,0,-0.948936,-0.3423531,0,-0.948936,-0.9308676,0.4356522,-0.8862844,-0.4009036,0.4356522,-0.8862844,-0.9308676,0.4356522,-0.8862844,-0.3423531,0,-0.948936,-0.01260447,0.603543,-1.04066,-0.1776558,0.4356522,-0.9453678,-0.01260447,0.603543,-0.2783206,-0.1776558,0.4356522,-0.3736131,-0.01260447,0.603543,-0.2783206,-0.1776558,0.4356522,-0.9453678,-0.3423531,0,-0.300612,-0.9906775,0,-0.300612,-0.4009036,0.4356522,-0.3563204,-0.9308676,0.4356522,-0.3563204,-0.4009036,0.4356522,-0.3563204,-0.9906775,0,-0.300612,0.4567104,1.763356,0.6744337,-0.006477297,1.763356,0.9418551,0.6111063,1.962156,0.7635742,-0.006477297,1.962156,1.120136,0.6111063,1.962156,0.7635742,-0.006477297,1.763356,0.9418551,-0.67281,0.4356522,-1.231245,-0.67281,0.603543,-1.42183,-1.167965,0.4356522,-0.9453678,-1.333016,0.603543,-1.04066,-1.167965,0.4356522,-0.9453678,-0.67281,0.603543,-1.42183,-0.9906775,0,-0.948936,-0.9308676,0.4356522,-0.8862844,-0.9906775,0,-0.300612,-0.9308676,0.4356522,-0.3563204,-0.9906775,0,-0.300612,-0.9308676,0.4356522,-0.8862844,-0.67281,0.603543,0.1028492,-0.67281,0.4356522,-0.08773573,-1.333016,0.603543,-0.2783206,-1.167965,0.4356522,-0.3736131,-1.333016,0.603543,-0.2783206,-0.67281,0.4356522,-0.08773573,1.077927,0,-0.8851456,1.077927,0,-0.1992376,0.9898312,0.718028,-0.7970491,0.9898312,0.718028,-0.2873341,0.9898312,0.718028,-0.7970491,1.077927,0,-0.1992376,-0.4696649,1.763356,0.1395907,-0.006477297,1.763356,-0.1278308,-0.6240609,1.962156,0.05045019,-0.006477297,1.962156,-0.3061118,-0.6240609,1.962156,0.05045019,-0.006477297,1.763356,-0.1278308,0.3920197,0,-0.8851456,0.4801163,0.718028,-0.7970491,0.3920197,0,-0.1992376,0.4801163,0.718028,-0.2873341,0.3920197,0,-0.1992376,0.4801163,0.718028,-0.7970491,1.204549,0.718028,-0.3039661,0.728314,0.718028,-0.02901161,1.363294,0.922428,-0.2123146,0.728314,0.922428,0.1542914,1.363294,0.922428,-0.2123146,0.728314,0.718028,-0.02901161,-0.6240609,1.962156,0.05045019,-0.6240609,1.962156,0.7635742,-0.4696649,1.763356,0.1395907,-0.4696649,1.763356,0.6744337,-0.4696649,1.763356,0.1395907,-0.6240609,1.962156,0.7635742,-0.01260447,0.603543,-1.04066,-0.67281,0.603543,-1.42183,-0.1776558,0.4356522,-0.9453678,-0.67281,0.4356522,-1.231245,-0.1776558,0.4356522,-0.9453678,-0.67281,0.603543,-1.42183,1.077927,0,-0.1992376,1.077927,0,-0.8851456,0.3920197,0,-0.1992376,0.3920197,0,-0.8851456,0.3920197,0,-0.1992376,1.077927,0,-0.8851456,-0.3423531,0,-0.300612,-0.3423531,0,-0.948936,-0.9906775,0,-0.300612,-0.9906775,0,-0.948936,-0.9906775,0,-0.300612,-0.3423531,0,-0.948936,-0.006477297,1.763356,-0.1278308,0.4567104,1.763356,0.1395907,-0.006477297,1.962156,-0.3061118,0.6111063,1.962156,0.05045019,-0.006477297,1.962156,-0.3061118,0.4567104,1.763356,0.1395907,1.204549,0.718028,-0.853875,0.9898312,0.718028,-0.2873341,1.204549,0.718028,-0.3039661,0.728314,0.718028,-0.02901161,1.204549,0.718028,-0.3039661,0.9898312,0.718028,-0.2873341,0.4801163,0.718028,-0.2873341,0.728314,0.718028,-0.02901161,0.9898312,0.718028,-0.2873341,0.252079,0.718028,-0.3039661,0.728314,0.718028,-0.02901161,0.4801163,0.718028,-0.2873341,0.4801163,0.718028,-0.7970491,0.252079,0.718028,-0.3039661,0.4801163,0.718028,-0.2873341,0.728314,0.718028,-1.128829,0.9898312,0.718028,-0.7970491,1.204549,0.718028,-0.853875,0.9898312,0.718028,-0.2873341,1.204549,0.718028,-0.853875,0.9898312,0.718028,-0.7970491,0.4801163,0.718028,-0.7970491,0.9898312,0.718028,-0.7970491,0.728314,0.718028,-1.128829,0.252079,0.718028,-0.853875,0.4801163,0.718028,-0.7970491,0.728314,0.718028,-1.128829,0.252079,0.718028,-0.3039661,0.4801163,0.718028,-0.7970491,0.252079,0.718028,-0.853875,0.2434974,0,0.6862323,0.2434974,0,0.1992376,-0.2434974,0,0.6862323,-0.2434974,0,0.1992376,-0.2434974,0,0.6862323,0.2434974,0,0.1992376,-0.01260447,0.603543,-1.04066,-0.01260447,0.603543,-0.2783206,-0.5150547,1.061885,-0.7505704,-0.5150547,1.061885,-0.5684105,-0.01260447,0.603543,-0.2783206,-0.67281,0.603543,0.1028492,-0.5150547,1.061885,-0.5684105,-0.67281,1.061885,-0.4773304,0.8800418,1.48044,-0.6665205,0.8800418,1.48044,-0.4913206,0.728314,1.48044,-0.7541204,0.728314,1.48044,-0.4037206,0.5765865,1.48044,-0.6665205,0.5765865,1.48044,-0.4913206,-0.5150547,1.061885,-0.7505704,-0.5150547,1.061885,-0.5684105,-0.67281,1.061885,-0.8416504,-0.67281,1.061885,-0.4773304,-0.8305652,1.061885,-0.7505704,-0.8305652,1.061885,-0.5684105,0.728314,0.922428,-1.312133,0.728314,1.48044,-0.7541204,0.09333386,0.922428,-0.9455264,0.5765865,1.48044,-0.6665205,-0.8305652,1.061885,-0.7505704,-0.8305652,1.061885,-0.5684105,-1.333016,0.603543,-1.04066,-1.333016,0.603543,-0.2783206,1.363294,0.922428,-0.9455264,0.8800418,1.48044,-0.6665205,0.728314,0.922428,-1.312133,0.728314,1.48044,-0.7541204,-0.01260447,0.603543,-1.04066,-0.5150547,1.061885,-0.7505704,-0.67281,0.603543,-1.42183,-0.67281,1.061885,-0.8416504,-0.67281,0.603543,-1.42183,-0.67281,1.061885,-0.8416504,-1.333016,0.603543,-1.04066,-0.8305652,1.061885,-0.7505704,-0.67281,1.061885,-0.4773304,-0.67281,0.603543,0.1028492,-0.8305652,1.061885,-0.5684105,-1.333016,0.603543,-0.2783206,0.728314,1.48044,-0.4037206,0.728314,0.922428,0.1542914,0.5765865,1.48044,-0.4913206,0.09333386,0.922428,-0.2123146,1.363294,0.922428,-0.9455264,1.363294,0.922428,-0.2123146,0.8800418,1.48044,-0.6665205,0.8800418,1.48044,-0.4913206,0.09333386,0.922428,-0.9455264,0.5765865,1.48044,-0.6665205,0.09333386,0.922428,-0.2123146,0.5765865,1.48044,-0.4913206,-0.006477297,2.50488,0.5774122,-0.006477297,1.962156,1.120136,-0.1540481,2.50488,0.4922122,-0.6240609,1.962156,0.7635742,0.6111063,1.962156,0.7635742,-0.006477297,1.962156,1.120136,0.1410934,2.50488,0.4922122,-0.006477297,2.50488,0.5774122,1.363294,0.922428,-0.2123146,0.728314,0.922428,0.1542914,0.8800418,1.48044,-0.4913206,0.728314,1.48044,-0.4037206,0.1410934,2.50488,0.3218122,0.1410934,2.50488,0.4922122,-0.006477297,2.50488,0.2366122,-0.006477297,2.50488,0.5774122,-0.1540481,2.50488,0.3218122,-0.1540481,2.50488,0.4922122,0.6111063,1.962156,0.05045019,0.1410934,2.50488,0.3218122,-0.006477297,1.962156,-0.3061118,-0.006477297,2.50488,0.2366122,0.6111063,1.962156,0.05045019,0.6111063,1.962156,0.7635742,0.1410934,2.50488,0.3218122,0.1410934,2.50488,0.4922122,-0.6240609,1.962156,0.05045019,-0.1540481,2.50488,0.3218122,-0.6240609,1.962156,0.7635742,-0.1540481,2.50488,0.4922122,-0.006477297,1.962156,-0.3061118,-0.006477297,2.50488,0.2366122,-0.6240609,1.962156,0.05045019,-0.1540481,2.50488,0.3218122 + } + PolygonVertexIndex: *432 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,4,-6,1,7,-1,8,0,-8,6,8,-8,9,8,-7,5,9,-7,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,50,-50,51,53,-53,54,56,-56,57,59,-59,60,62,-62,63,65,-65,66,68,-68,69,71,-71,72,74,-74,75,77,-77,78,80,-80,81,83,-83,84,86,-86,87,89,-89,90,92,-92,93,95,-95,96,98,-98,99,101,-101,102,104,-104,105,107,-107,108,110,-110,111,113,-113,114,116,-116,117,119,-119,120,122,-122,123,125,-125,126,128,-128,129,131,-131,132,134,-134,135,137,-137,138,140,-140,141,143,-143,144,146,-146,147,149,-149,150,152,-152,153,155,-155,156,158,-158,159,161,-161,162,164,-164,165,167,-167,168,170,-170,171,173,-173,174,176,-176,177,179,-179,180,182,-182,183,185,-185,186,188,-188,189,191,-191,192,194,-194,195,197,-197,198,200,-200,201,203,-203,204,206,-206,207,209,-209,210,212,-212,213,215,-215,216,218,-218,219,221,-221,222,224,-224,225,227,-227,228,230,-230,231,233,-233,234,236,-236,237,239,-239,240,242,-242,243,245,-245,246,248,-248,249,251,-251,252,254,-254,255,257,-257,258,260,-260,261,263,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,275,-275,277,275,-277,278,280,-280,281,279,-281,282,281,-281,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,335,-335,337,335,-337,338,340,-340,341,339,-341,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1296 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,0.7897879,-0.6133801,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,-0.7897877,-0.6133803,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0.9910892,0.1331998,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.03404586,0.9994203,0,0.03404586,0.9994203,0,0.03404586,0.9994203,0,0.03404586,0.9994203,0,0.03404586,0.9994203,0,0.03404586,0.9994203,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,-0.7131121,-0.70105,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0.7897878,-0.6133801,0,0,0.1217791,0.9925572,0,0.1217791,0.9925572,0,0.1217791,0.9925572,0,0.1217791,0.9925572,0,0.1217791,0.9925572,0,0.1217791,0.9925572,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,-0.3948939,-0.6133806,-0.6839758,0.9994203,0.03404586,0,0.9994203,0.03404586,0,0.9994203,0.03404586,0,0.9994203,0.03404586,0,0.9994203,0.03404586,0,0.9994203,0.03404586,0,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.3948939,-0.6133802,0.6839762,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,-0.9994203,0.03404586,0,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,0,0.0340458,-0.9994203,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,-0.3948939,-0.61338,0.6839765,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0.3948938,-0.6133806,-0.6839759,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0,0.1217791,-0.9925572,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0.3565556,-0.701051,0.6175724,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0,0.1423468,-0.9898168,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0.7131112,-0.701051,0,0,0.1268407,0.991923,0,0.1268407,0.991923,0,0.1268407,0.991923,0,0.1268407,0.991923,0,0.1268407,0.991923,0,0.1268407,0.991923,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,0.3948939,-0.61338,0.6839765,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.3565553,-0.7010508,-0.6175727,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.9907072,0.1360126,0,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,-0.3565556,-0.7010508,0.6175727,0.9925573,0.1217787,0,0.9925573,0.1217787,0,0.9925573,0.1217787,0,0.9925573,0.1217787,0,0.9925573,0.1217787,0,0.9925573,0.1217787,0,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.3948939,-0.6133801,-0.6839764,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,-0.9925572,0.1217793,0,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,0.3948938,-0.6133802,0.6839764,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,-0.7897878,-0.6133801,0,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0.3565553,-0.7010511,-0.6175724,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0.3948939,-0.61338,-0.6839764,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.6739349,0.7387907,0,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0.3369675,0.7387907,0.5836447,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.3779647,0.6546538,-0.6546533,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,-0.6739349,0.7387908,0,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3779646,0.6546538,-0.6546534,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,0.3369673,0.7387906,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369673,0.7387907,-0.5836449,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3369674,0.7387907,0.5836447,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,-0.3779645,0.6546537,0.6546537,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.7559289,0.6546537,0,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,-0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546537,0.6546536,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0.3779643,0.6546536,0.6546537,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.3779643,0.6546537,-0.6546536,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.7559288,0.6546538,0,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536,-0.3779643,0.6546537,-0.6546536 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *708 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1.354352,4.99833,-0.6371861,4.99833,-2.496438,2.320777,-1.354352,4.99833,-0.6371861,4.99833,-2.496438,2.320777,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-2.270025,-1.934333,-2.270025,-2.624096,-2.867378,-1.589451,-1.09575,-2.27587,-4.097088,-2.27587,-2.237837,0.4016829,-1.09575,-2.27587,-4.097088,-2.27587,-2.237837,0.4016829,-1.09575,-2.27587,-4.097088,-2.27587,-2.237837,0.4016829,-1.09575,-2.27587,-4.097088,-2.27587,-2.237837,0.4016829,-0.9987319,1.784111,0.09971832,-1.122112,-1.688496,1.784111,-0.9987319,1.784111,0.09971832,-1.122112,-1.688496,1.784111,-0.9987319,1.784111,0.09971832,-1.122112,-1.688496,1.784111,-0.9987319,1.784111,0.09971832,-1.122112,-1.688496,1.784111,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,3.95077,1.675892,5.092855,-1.00166,3.233605,1.675892,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,1.354353,-0.281059,2.49644,-2.958611,0.6371878,-0.281059,-1.934333,5.892015,-0.8358842,2.985793,-2.624096,5.892015,-1.934333,5.892015,-0.8358842,2.985793,-2.624096,5.892015,-1.934333,5.892015,-0.8358842,2.985793,-2.624096,5.892015,-1.934333,5.892015,-0.8358842,2.985793,-2.624096,5.892015,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,3.277948,4.368499,3.967712,4.368499,2.179499,1.462277,0.6064884,1.937843,0.6064884,1.266977,0.02550117,2.273276,0.6064884,1.937843,0.6064884,1.266977,0.02550117,2.273276,0.6064884,1.937843,0.6064884,1.266977,0.02550117,2.273276,0.6064884,1.937843,0.6064884,1.266977,0.02550117,2.273276,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,-0.4436873,7.991251,0.6246669,5.164651,-1.114554,7.991251,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.937843,7.057728,3.006197,4.231128,1.266977,7.057728,1.158723,7.974557,2.227077,5.147957,0.4878567,7.974557,1.158723,7.974557,2.227077,5.147957,0.4878567,7.974557,4.097088,1.638035,1.09575,1.638035,2.955002,4.315587,2.237837,4.315587,0.5048997,2.320777,-2.496438,2.320777,-0.6371861,4.99833,-1.354352,4.99833,-3.464731,-2.624096,-3.464731,-1.934333,-2.867378,-2.968978,-2.867378,-1.589451,-2.270025,-2.624096,-2.270025,-1.934333,2.027775,-2.955002,2.027775,-2.237837,2.648858,-3.313584,2.648858,-1.879254,3.269942,-2.955002,3.269942,-2.237837,-5.066163,0.7550296,-3.967712,3.661253,-2.179501,0.7550297,-3.277949,3.661252,-2.955002,0.4016829,-2.237837,0.4016829,-4.097088,-2.27587,-1.09575,-2.27587,-2.786945,-1.122112,-1.688496,1.784111,0.09971832,-1.122112,-0.9987319,1.784111,2.091518,-1.00166,3.233605,1.675892,5.092855,-1.00166,3.95077,1.675892,-0.5048971,-2.958611,0.6371878,-0.281059,2.49644,-2.958611,1.354353,-0.281059,-3.233605,3.041378,-2.091519,0.3638256,-3.950771,3.041378,-5.092857,0.3638256,1.688497,6.245639,2.786945,3.339417,0.9987332,6.245639,-0.09971572,3.339416,3.722545,-0.7684879,0.8358842,-0.7684879,2.624096,2.137735,1.934333,2.137735,-3.722545,2.985793,-2.624096,5.892015,-0.8358842,2.985793,-1.934333,5.892015,1.114553,6.157594,2.182907,3.330995,0.4436869,6.157594,-0.6246679,3.330995,0.5804985,3.347689,-2.227076,3.347689,-0.4878563,6.174289,-1.158723,6.174289,5.066162,1.462277,2.179499,1.462277,3.967712,4.368499,3.277948,4.368499,-0.555486,1.266977,-0.555486,1.937843,0.02550117,0.9315441,0.02550117,2.273276,0.6064884,1.266977,0.6064884,1.937843,-2.182908,5.164651,-1.114554,7.991251,0.6246669,5.164651,-0.4436873,7.991251,-0.1986228,4.264517,-3.006197,4.264517,-1.266977,7.091117,-1.937843,7.091117,0.1986228,4.231128,1.266977,7.057728,3.006197,4.231128,1.937843,7.057728,-0.5804976,5.147957,0.4878567,7.974557,2.227077,5.147957,1.158723,7.974557 + } + UVIndex: *432 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,4,5,1,7,0,8,0,7,6,8,7,9,8,6,5,9,6,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,23,22,24,26,25,27,29,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,50,49,51,53,52,54,56,55,57,59,58,60,62,61,63,65,64,66,68,67,69,71,70,72,74,73,75,77,76,78,80,79,81,83,82,84,86,85,87,89,88,90,92,91,93,95,94,96,98,97,99,101,100,102,104,103,105,107,106,108,110,109,111,113,112,114,116,115,117,119,118,120,122,121,123,125,124,126,128,127,129,131,130,132,134,133,135,137,136,138,140,139,141,143,142,144,146,145,147,149,148,150,152,151,153,155,154,156,158,157,159,161,160,162,164,163,165,167,166,168,170,169,171,173,172,174,176,175,177,179,178,180,182,181,183,185,184,186,188,187,189,191,190,192,194,193,195,197,196,198,200,199,201,203,202,204,206,205,207,209,208,210,212,211,213,215,214,216,218,217,219,221,220,222,224,223,225,227,226,228,230,229,231,233,232,234,236,235,237,239,238,240,242,241,243,245,244,246,248,247,249,251,250,252,254,253,255,257,256,258,260,259,261,263,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,275,274,277,275,276,278,280,279,281,279,280,282,281,280,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,335,334,337,335,336,338,340,339,341,339,340,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *144 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3012, "Material::colorTan", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.682353,0.4352941 + P: "DiffuseColor", "Color", "", "A",1,0.682353,0.4352941 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh mushroom_tanGroup, Model::RootNode + C: "OO",5175126262106851601,0 + + ;Geometry::, Model::Mesh mushroom_tanGroup + C: "OO",5379684015099735118,5175126262106851601 + + ;Material::_defaultMat, Model::Mesh mushroom_tanGroup + C: "OO",3004,5175126262106851601 + + ;Material::colorTan, Model::Mesh mushroom_tanGroup + C: "OO",3012,5175126262106851601 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanGroup.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanGroup.fbx.import new file mode 100644 index 0000000..7157e32 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanGroup.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b5luphjkj0g4y" +path="res://.godot/imported/mushroom_tanGroup.fbx-f286a38f8f2938de87471d9b5ebeef46.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanGroup.fbx" +dest_files=["res://.godot/imported/mushroom_tanGroup.fbx-f286a38f8f2938de87471d9b5ebeef46.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanTall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanTall.fbx new file mode 100644 index 0000000..679d97f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanTall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 26 + Millisecond: 833 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "mushroom_tanTall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "mushroom_tanTall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5505329466980157602, "Model::mushroom_tanTall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4950777096294996910, "Geometry::", "Mesh" { + Vertices: *378 { + a: -0.6240609,1.962156,-0.3922847,-0.006477274,1.962156,-0.7488467,-0.154048,2.50488,-0.1209227,-0.006477274,2.50488,-0.2061227,-0.006477274,1.962156,0.6774013,-0.6240609,1.962156,0.3208393,-0.006477274,2.50488,0.1346773,-0.154048,2.50488,0.04947732,0.1410935,2.50488,-0.1209227,0.1410935,2.50488,0.04947732,-0.006477274,2.50488,-0.2061227,-0.006477274,2.50488,0.1346773,-0.154048,2.50488,-0.1209227,-0.154048,2.50488,0.04947732,0.6111063,1.962156,-0.3922847,0.6111063,1.962156,0.3208393,0.1410935,2.50488,-0.1209227,0.1410935,2.50488,0.04947732,0.6111063,1.962156,0.3208393,-0.006477274,1.962156,0.6774013,0.1410935,2.50488,0.04947732,-0.006477274,2.50488,0.1346773,-0.006477274,1.962156,-0.7488467,0.6111063,1.962156,-0.3922847,-0.006477274,2.50488,-0.2061227,0.1410935,2.50488,-0.1209227,-0.6240609,1.962156,-0.3922847,-0.154048,2.50488,-0.1209227,-0.6240609,1.962156,0.3208393,-0.154048,2.50488,0.04947732,-0.6240609,1.962156,-0.3922847,-0.6240609,1.962156,0.3208393,-0.4696648,1.763356,-0.3031442,-0.4696648,1.763356,0.2316988,-0.4696648,1.763356,-0.3031442,-0.6240609,1.962156,0.3208393,-0.4696648,1.763356,-0.3031442,-0.006477274,1.763356,-0.5705657,-0.6240609,1.962156,-0.3922847,-0.006477274,1.962156,-0.7488467,-0.6240609,1.962156,-0.3922847,-0.006477274,1.763356,-0.5705657,0.187493,0,0.187493,0.187493,0,-0.187493,-0.187493,0,0.187493,-0.187493,0,-0.187493,-0.187493,0,0.187493,0.187493,0,-0.187493,-0.006477274,1.763356,0.4991203,-0.4696648,1.763356,0.2316988,-0.006477274,1.962156,0.6774013,-0.6240609,1.962156,0.3208393,-0.006477274,1.962156,0.6774013,-0.4696648,1.763356,0.2316988,-0.006477274,1.763356,-0.5705657,0.4567102,1.763356,-0.3031442,-0.006477274,1.962156,-0.7488467,0.6111063,1.962156,-0.3922847,-0.006477274,1.962156,-0.7488467,0.4567102,1.763356,-0.3031442,0.4567102,1.763356,0.2316988,-0.006477274,1.763356,0.4991203,0.6111063,1.962156,0.3208393,-0.006477274,1.962156,0.6774013,0.6111063,1.962156,0.3208393,-0.006477274,1.763356,0.4991203,0.6111063,1.962156,-0.3922847,0.4567102,1.763356,-0.3031442,0.6111063,1.962156,0.3208393,0.4567102,1.763356,0.2316988,0.6111063,1.962156,0.3208393,0.4567102,1.763356,-0.3031442,0.4567102,1.763356,0.2316988,0.4567102,1.763356,-0.3031442,-0.006477274,1.763356,0.4991203,0.1118908,1.763356,0.1118908,-0.006477274,1.763356,0.4991203,0.4567102,1.763356,-0.3031442,-0.1118908,1.763356,0.1118908,-0.006477274,1.763356,0.4991203,0.1118908,1.763356,0.1118908,-0.4696648,1.763356,0.2316988,-0.006477274,1.763356,0.4991203,-0.1118908,1.763356,0.1118908,-0.1118908,1.763356,-0.1118908,-0.4696648,1.763356,0.2316988,-0.1118908,1.763356,0.1118908,-0.006477274,1.763356,-0.5705657,0.1118908,1.763356,-0.1118908,0.4567102,1.763356,-0.3031442,0.1118908,1.763356,0.1118908,0.4567102,1.763356,-0.3031442,0.1118908,1.763356,-0.1118908,-0.1118908,1.763356,-0.1118908,0.1118908,1.763356,-0.1118908,-0.006477274,1.763356,-0.5705657,-0.4696648,1.763356,-0.3031442,-0.1118908,1.763356,-0.1118908,-0.006477274,1.763356,-0.5705657,-0.4696648,1.763356,0.2316988,-0.1118908,1.763356,-0.1118908,-0.4696648,1.763356,-0.3031442,-0.187493,0,-0.187493,0.187493,0,-0.187493,-0.1118908,1.763356,-0.1118908,0.1118908,1.763356,-0.1118908,-0.1118908,1.763356,-0.1118908,0.187493,0,-0.187493,0.187493,0,0.187493,-0.187493,0,0.187493,0.1118908,1.763356,0.1118908,-0.1118908,1.763356,0.1118908,0.1118908,1.763356,0.1118908,-0.187493,0,0.187493,-0.187493,0,-0.187493,-0.1118908,1.763356,-0.1118908,-0.187493,0,0.187493,-0.1118908,1.763356,0.1118908,-0.187493,0,0.187493,-0.1118908,1.763356,-0.1118908,0.187493,0,-0.187493,0.187493,0,0.187493,0.1118908,1.763356,-0.1118908,0.1118908,1.763356,0.1118908,0.1118908,1.763356,-0.1118908,0.187493,0,0.187493 + } + PolygonVertexIndex: *144 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,50,-50,51,53,-53,54,56,-56,57,59,-59,60,62,-62,63,65,-65,66,68,-68,69,71,-71,72,74,-74,75,77,-77,78,80,-80,81,83,-83,84,86,-86,87,89,-89,90,92,-92,93,95,-95,96,98,-98,99,101,-101,102,104,-104,105,107,-107,108,110,-110,111,113,-113,114,116,-116,117,119,-119,120,122,-122,123,125,-125 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *432 { + a: -0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,-0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,-0.3779646,0.6546534,0.654654,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.7559292,0.6546534,0,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,0.3779646,0.6546534,-0.654654,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.7559292,0.6546534,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.789787,-0.6133813,0,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,-0.3948936,-0.6133809,-0.6839758,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,-0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,-0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.3948936,-0.6133809,0.6839758,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0.789787,-0.6133813,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283467,-0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,0,0.04283465,0.9990822,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,-0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0,0.9990822,0.04283466,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *252 { + a: 1.355552,4.159743,-1.452023,4.159743,0.2871975,6.986344,-0.3836687,6.986344,1.311382,4.319214,-1.496193,4.319214,0.2430282,7.145816,-0.427838,7.145816,-0.5554861,-0.4760736,-0.5554861,0.1947926,0.02550108,-0.8115067,0.02550108,0.5302257,0.6064883,-0.4760736,0.6064883,0.1947926,1.544428,4.26452,-1.263147,4.26452,0.4760736,7.091121,-0.1947926,7.091121,1.452024,4.335909,-1.355552,4.335909,0.3836688,7.16251,-0.2871974,7.16251,1.496192,4.176437,-1.311383,4.176437,0.4278379,7.003039,-0.2430283,7.003039,-1.544428,4.231131,-0.4760736,7.057733,1.263147,4.231131,0.1947926,7.057733,-0.3836687,6.986344,0.2871975,6.986344,-1.452023,4.159743,-0.3836687,6.986344,0.2871975,6.986344,-1.452023,4.159743,-0.427838,7.145816,0.2430282,7.145816,-1.496193,4.319214,-0.427838,7.145816,0.2430282,7.145816,-1.496193,4.319214,0.6064883,0.1947926,0.6064883,-0.4760736,0.02550108,0.5302257,0.6064883,0.1947926,0.6064883,-0.4760736,0.02550108,0.5302257,0.6064883,0.1947926,0.6064883,-0.4760736,0.02550108,0.5302257,0.6064883,0.1947926,0.6064883,-0.4760736,0.02550108,0.5302257,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733,0.1947926,7.057733,1.263147,4.231131,-0.4760736,7.057733 + } + UVIndex: *144 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,50,49,51,53,52,54,56,55,57,59,58,60,62,61,63,65,64,66,68,67,69,71,70,72,74,73,75,77,76,78,80,79,81,83,82,84,86,85,87,89,88,90,92,91,93,95,94,96,98,97,99,101,100,102,104,103,105,107,106,108,110,109,111,113,112,114,116,115,117,119,118,120,122,121,123,125,124 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *48 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3012, "Material::colorTan", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.682353,0.4352941 + P: "DiffuseColor", "Color", "", "A",1,0.682353,0.4352941 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh mushroom_tanTall, Model::RootNode + C: "OO",5505329466980157602,0 + + ;Geometry::, Model::Mesh mushroom_tanTall + C: "OO",4950777096294996910,5505329466980157602 + + ;Material::colorTan, Model::Mesh mushroom_tanTall + C: "OO",3012,5505329466980157602 + + ;Material::_defaultMat, Model::Mesh mushroom_tanTall + C: "OO",3004,5505329466980157602 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanTall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanTall.fbx.import new file mode 100644 index 0000000..e1ced50 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanTall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://xaeoea82imxd" +path="res://.godot/imported/mushroom_tanTall.fbx-2a886a81b985fc713f8a26a0bb8a12c1.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/mushroom_tanTall.fbx" +dest_files=["res://.godot/imported/mushroom_tanTall.fbx-2a886a81b985fc713f8a26a0bb8a12c1.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/path_stone.fbx new file mode 100644 index 0000000..7378384 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_stone.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 26 + Millisecond: 943 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "path_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "path_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5096686151967627967, "Model::path_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5318319208570637563, "Geometry::", "Mesh" { + Vertices: *792 { + a: -3.418945,8.243326E-13,-1.891587,-4.209472,8.243326E-13,-2.347998,-3.418945,8.243326E-13,-0.9787638,-4.209472,8.243326E-13,-0.5223524,-5,8.243326E-13,-0.9787638,-5,8.243326E-13,-1.891587,2.442839,1.015188E-15,2.294004,1.24507,1.015188E-15,2.985537,2.442839,0.125,2.294004,1.24507,0.25,2.985537,1.843954,0.25,2.63977,3.122566,8.243326E-13,-2.63951,4.5,8.243326E-13,-1.844248,3.122566,0.5,-2.63951,4.5,0.5,-1.844248,0.0473009,1.015188E-15,0.9109396,0.0473009,0.25,0.9109396,0.0473009,1.015188E-15,2.294004,0.0473009,0.25,2.294004,1.24507,1.015188E-15,0.2194072,2.442839,1.015188E-15,0.9109396,1.24507,0.25,0.2194072,2.442839,0.25,0.9109396,-1.952699,1.003639E-15,-2.08906,-1.952699,0.25,-2.08906,-1.952699,1.003639E-15,-0.7059959,-1.952699,0.25,-0.7059959,4.209472,8.243233E-13,2.776946,3.418945,8.243233E-13,2.320535,4.209472,0.25,2.776946,3.418945,0.25,2.320535,-5,8.243326E-13,-1.891587,-4.209472,8.243326E-13,-2.347998,-5,0.25,-1.891587,-4.209472,0.25,-2.347998,4.5,8.243326E-13,-0.253724,3.122566,8.243326E-13,0.5415381,4.5,0.5,-0.253724,3.122566,0.5,0.5415381,0.442839,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-0.01446357,0.442839,0.25,-0.7059959,-0.7549301,0.25,-0.01446357,-1.952699,1.003639E-15,-2.08906,-0.7549301,1.003639E-15,-2.780593,-1.952699,0.25,-2.08906,-0.7549301,0.25,-2.780593,-4.209472,8.243326E-13,-0.5223524,-5,8.243326E-13,-0.9787638,-4.209472,0.125,-0.5223524,-5,0.25,-0.9787638,-4.604736,0.25,-0.7505581,-5,8.243326E-13,-1.891587,-5,0.25,-1.891587,-5,8.243326E-13,-0.9787638,-5,0.25,-0.9787638,3.122566,8.243326E-13,0.5415381,1.745131,8.243326E-13,-0.253724,3.122566,0.5,0.5415381,1.745131,0.25,-0.253724,2.433848,0.5,0.143907,3.418945,8.243233E-13,1.407712,4.209472,8.243233E-13,0.9513007,3.418945,0.25,1.407712,4.209472,0.25,0.9513007,-3.418945,8.243326E-13,-0.9787638,-4.209472,8.243326E-13,-0.5223524,-3.418945,0.25,-0.9787638,-4.209472,0.125,-0.5223524,-3.814209,0.25,-0.7505581,1.24507,1.015188E-15,2.985537,0.0473009,1.015188E-15,2.294004,1.24507,0.25,2.985537,0.0473009,0.25,2.294004,5,0.25,1.407712,5,8.243233E-13,1.407712,5,0.25,2.320535,5,8.243233E-13,2.320535,5,8.243233E-13,1.407712,4.209472,8.243233E-13,0.9513007,5,8.243233E-13,2.320535,4.209472,8.243233E-13,2.776946,3.418945,8.243233E-13,2.320535,3.418945,8.243233E-13,1.407712,1.745131,8.243326E-13,-1.844248,1.745131,0.5,-1.844248,1.745131,8.243326E-13,-0.253724,1.745131,0.5,-1.048986,1.745131,0.25,-0.253724,4.209472,8.243233E-13,0.9513007,5,8.243233E-13,1.407712,4.209472,0.25,0.9513007,5,0.25,1.407712,5,8.243233E-13,2.320535,4.209472,8.243233E-13,2.776946,5,0.25,2.320535,4.209472,0.25,2.776946,4.5,0.5,-1.844248,4.5,8.243326E-13,-1.844248,4.5,0.5,-0.253724,4.5,8.243326E-13,-0.253724,3.418945,8.243233E-13,1.407712,3.418945,0.25,1.407712,3.418945,8.243233E-13,2.320535,3.418945,0.25,2.320535,1.745131,8.243326E-13,-1.844248,3.122566,8.243326E-13,-2.63951,1.745131,0.5,-1.844248,3.122566,0.5,-2.63951,-3.418945,0.25,-1.891587,-3.418945,8.243326E-13,-1.891587,-3.418945,0.25,-0.9787638,-3.418945,8.243326E-13,-0.9787638,-4.209472,8.243326E-13,-2.347998,-3.418945,8.243326E-13,-1.891587,-4.209472,0.25,-2.347998,-3.418945,0.25,-1.891587,2.442839,0.25,0.9109396,2.442839,1.015188E-15,0.9109396,2.442839,0.25,1.602472,2.442839,1.015188E-15,2.294004,2.442839,0.125,2.294004,0.0473009,1.015188E-15,0.9109396,1.24507,1.015188E-15,0.2194072,0.0473009,0.25,0.9109396,1.24507,0.25,0.2194072,-1.061731,1.128488E-27,2.085125,-2.524207,1.128488E-27,2.929486,-1.061731,0.25,2.085125,-2.524207,0.5,2.929486,-1.792969,0.5,2.507305,-0.7549301,1.003639E-15,-0.01446357,-1.952699,1.003639E-15,-0.7059959,-0.7549301,0.25,-0.01446357,-1.952699,0.25,-0.7059959,-2.524207,1.128488E-27,-0.4479578,-1.061731,1.128488E-27,0.3964031,-2.524207,0.5,-0.4479578,-1.061731,0.5,0.3964031,-3.986683,1.128488E-27,0.3964031,-2.524207,1.128488E-27,-0.4479578,-3.986683,0.5,0.3964031,-2.524207,0.5,-0.4479578,0.442839,0.25,-2.08906,0.442839,1.003639E-15,-2.08906,0.442839,0.25,-0.7059959,0.442839,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-2.780593,0.442839,1.003639E-15,-2.08906,-0.7549301,0.25,-2.780593,0.442839,0.25,-2.08906,-3.986683,1.128488E-27,0.3964031,-3.986683,0.5,0.3964031,-3.986683,1.128488E-27,2.085125,-3.986683,0.5,2.085125,-1.061731,0.5,0.3964031,-1.061731,1.128488E-27,0.3964031,-1.061731,0.5,1.240764,-1.061731,1.128488E-27,2.085125,-1.061731,0.25,2.085125,-2.524207,1.128488E-27,2.929486,-3.986683,1.128488E-27,2.085125,-2.524207,0.5,2.929486,-3.986683,0.5,2.085125,2.442839,0.25,0.9109396,2.442839,0.25,1.602472,1.24507,0.25,0.2194072,1.843954,0.25,2.63977,1.24507,0.25,2.985537,0.0473009,0.25,0.9109396,0.0473009,0.25,2.294004,4.5,0.5,-1.844248,4.5,0.5,-0.253724,3.122566,0.5,-2.63951,3.122566,0.5,0.5415381,1.745131,0.5,-1.844248,2.433848,0.5,0.143907,1.745131,0.5,-1.048986,-3.418945,0.25,-1.891587,-3.418945,0.25,-0.9787638,-4.209472,0.25,-2.347998,-3.814209,0.25,-0.7505581,-4.604736,0.25,-0.7505581,-5,0.25,-1.891587,-5,0.25,-0.9787638,0.442839,0.25,-2.08906,0.442839,0.25,-0.7059959,-0.7549301,0.25,-2.780593,-0.7549301,0.25,-0.01446357,-1.952699,0.25,-2.08906,-1.952699,0.25,-0.7059959,5,0.25,1.407712,5,0.25,2.320535,4.209472,0.25,0.9513007,4.209472,0.25,2.776946,3.418945,0.25,1.407712,3.418945,0.25,2.320535,-3.814209,0.25,-0.7505581,-4.209472,0.125,-0.5223524,-4.604736,0.25,-0.7505581,2.442839,0.25,1.602472,2.442839,0.125,2.294004,1.843954,0.25,2.63977,-1.061731,0.5,0.3964031,-1.061731,0.5,1.240764,-2.524207,0.5,-0.4479578,-1.792969,0.5,2.507305,-2.524207,0.5,2.929486,-3.986683,0.5,0.3964031,-3.986683,0.5,2.085125,-1.061731,0.5,1.240764,-1.061731,0.25,2.085125,-1.792969,0.5,2.507305,1.745131,0.5,-1.048986,2.433848,0.5,0.143907,1.745131,0.25,-0.253724,2.442839,1.015188E-15,0.9109396,1.24507,1.015188E-15,0.2194072,2.442839,1.015188E-15,2.294004,1.24507,1.015188E-15,2.985537,2.442839,1.015188E-15,2.294004,1.24507,1.015188E-15,0.2194072,0.0473009,1.015188E-15,2.294004,1.24507,1.015188E-15,2.985537,1.24507,1.015188E-15,0.2194072,0.0473009,1.015188E-15,0.9109396,0.0473009,1.015188E-15,2.294004,1.24507,1.015188E-15,0.2194072,4.5,8.243326E-13,-1.844248,3.122566,8.243326E-13,-2.63951,4.5,8.243326E-13,-0.253724,3.122566,8.243326E-13,0.5415381,4.5,8.243326E-13,-0.253724,3.122566,8.243326E-13,-2.63951,1.745131,8.243326E-13,-0.253724,3.122566,8.243326E-13,0.5415381,3.122566,8.243326E-13,-2.63951,1.745131,8.243326E-13,-1.844248,1.745131,8.243326E-13,-0.253724,3.122566,8.243326E-13,-2.63951,-1.061731,1.128488E-27,0.3964031,-2.524207,1.128488E-27,-0.4479578,-1.061731,1.128488E-27,2.085125,-2.524207,1.128488E-27,2.929486,-1.061731,1.128488E-27,2.085125,-2.524207,1.128488E-27,-0.4479578,-3.986683,1.128488E-27,2.085125,-2.524207,1.128488E-27,2.929486,-2.524207,1.128488E-27,-0.4479578,-3.986683,1.128488E-27,0.3964031,-3.986683,1.128488E-27,2.085125,-2.524207,1.128488E-27,-0.4479578,0.442839,1.003639E-15,-2.08906,-0.7549301,1.003639E-15,-2.780593,0.442839,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-0.01446357,0.442839,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-2.780593,-1.952699,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-0.01446357,-0.7549301,1.003639E-15,-2.780593,-1.952699,1.003639E-15,-2.08906,-1.952699,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-2.780593 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,1,-4,5,1,-5,6,8,-8,9,7,-9,10,9,-9,11,13,-13,14,12,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,50,-50,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,59,-59,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,68,-68,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,79,-82,83,79,-83,84,86,-86,87,85,-87,88,87,-87,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,120,-120,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,129,-129,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,145,-145,146,144,-146,147,149,-149,150,148,-150,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,158,-158,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,167,-167,169,168,-167,170,168,-170,171,173,-173,174,172,-174,175,174,-174,176,174,-176,177,176,-176,178,180,-180,181,179,-181,182,181,-181,183,182,-181,184,182,-184,185,187,-187,188,186,-188,189,188,-188,190,188,-190,191,193,-193,194,192,-194,195,194,-194,196,194,-196,197,199,-199,200,202,-202,203,205,-205,206,204,-206,207,206,-206,208,207,-206,209,207,-209,210,212,-212,213,215,-215,216,218,-218,219,221,-221,222,224,-224,225,227,-227,228,230,-230,231,233,-233,234,236,-236,237,239,-239,240,242,-242,243,245,-245,246,248,-248,249,251,-251,252,254,-254,255,257,-257,258,260,-260,261,263,-263 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8770472,0.480404,0,0.8770472,0.480404,0,0.8770472,0.480404,0.2944324,0.9404322,0.1699906,0.2944324,0.9404322,0.1699906,0.2944324,0.9404322,0.1699906,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4412653,0.8604532,0.2547646,0.4412653,0.8604532,0.2547646,0.4412653,0.8604532,0.2547646,-0.460954,0.8465785,0.2661319,-0.460954,0.8465785,0.2661319,-0.460954,0.8465785,0.2661319,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *528 { + a: -13.46041,-7.447191,-16.57273,-9.244085,-13.46041,-3.853401,-16.57273,-2.056506,-19.68504,-3.853401,-19.68504,-7.447191,3.813223,-1.864947E-13,-1.631913,-1.864947E-13,3.813223,0.492126,-1.631913,0.984252,1.090655,0.984252,-5.450653,3.245404E-12,-11.71256,3.245404E-12,-5.450653,1.968504,-11.71256,1.968504,3.586376,3.996803E-15,3.586376,0.984252,9.031512,3.996803E-15,9.031512,0.984252,-4.677031,3.996803E-15,-10.12217,3.996803E-15,-4.677031,0.984252,-10.12217,0.984252,-8.224648,3.951333E-15,-8.224648,0.984252,-2.779511,3.951333E-15,-2.779511,0.984252,19.81883,3.245367E-12,16.22504,3.245367E-12,19.81883,0.984252,16.22504,0.984252,13.32415,3.245404E-12,9.730359,3.245404E-12,13.32415,0.984252,9.730359,0.984252,15.84243,3.245404E-12,9.58052,3.245404E-12,15.84243,1.968504,9.58052,1.968504,2.899637,3.951333E-15,-2.545499,3.951333E-15,2.899637,0.984252,-2.545499,0.984252,2.545499,3.951333E-15,-2.899637,3.951333E-15,2.545499,0.984252,-2.899637,0.984252,-15.38065,3.252229E-12,-18.97445,3.252229E-12,-15.38065,0.492126,-18.97445,0.984252,-17.17755,0.984252,-7.447191,3.245404E-12,-7.447191,0.984252,-3.853401,3.245404E-12,-3.853401,0.984252,11.71256,3.202801E-12,5.450653,3.202801E-12,11.71256,1.968504,5.450653,0.984252,8.581606,1.968504,-8.885973,3.245367E-12,-12.47976,3.245367E-12,-8.885973,0.984252,-12.47976,0.984252,-9.730359,3.256847E-12,-13.32415,3.256847E-12,-9.730359,0.984252,-13.32415,0.492126,-11.52725,0.984252,10.12217,3.996803E-15,4.677031,3.996803E-15,10.12217,0.984252,4.677031,0.984252,-5.542173,0.984252,-5.542173,3.245367E-12,-9.135963,0.984252,-9.135963,3.245367E-12,19.68504,5.542173,16.57273,3.745278,19.68504,9.135963,16.57273,10.93286,13.46041,9.135963,13.46041,5.542173,-7.26082,3.245404E-12,-7.26082,1.968504,-0.9989136,3.245404E-12,-4.129867,1.968504,-0.9989136,0.984252,-16.22504,3.245367E-12,-19.81883,3.245367E-12,-16.22504,0.984252,-19.81883,0.984252,12.47976,3.245367E-12,8.885973,3.245367E-12,12.47976,0.984252,8.885973,0.984252,7.26082,1.968504,7.26082,3.245404E-12,0.9989136,1.968504,0.9989136,3.245404E-12,5.542173,3.245367E-12,5.542173,0.984252,9.135963,3.245367E-12,9.135963,0.984252,-9.58052,3.245404E-12,-15.84243,3.245404E-12,-9.58052,1.968504,-15.84243,1.968504,7.447191,0.984252,7.447191,3.245404E-12,3.853401,0.984252,3.853401,3.245404E-12,18.97445,3.245404E-12,15.38065,3.245404E-12,18.97445,0.984252,15.38065,0.984252,-3.586376,0.984252,-3.586376,3.0023E-13,-6.308944,0.984252,-9.031512,3.0023E-13,-9.031512,0.492126,1.631913,3.996803E-15,-3.813223,3.996803E-15,1.631913,0.984252,-3.813223,0.984252,-7.7246,-3.077461E-15,-14.37311,-3.077461E-15,-7.7246,0.984252,-14.37311,1.968504,-11.04886,1.968504,-2.602443,3.951333E-15,-8.047579,3.951333E-15,-2.602443,0.984252,-8.047579,0.984252,9.488214,4.442865E-27,2.839702,4.442865E-27,9.488214,1.968504,2.839702,1.968504,14.37311,4.442865E-27,7.7246,4.442865E-27,14.37311,1.968504,7.7246,1.968504,8.224648,0.984252,8.224648,3.951333E-15,2.779511,0.984252,2.779511,3.951333E-15,8.047579,3.951333E-15,2.602443,3.951333E-15,8.047579,0.984252,2.602443,0.984252,1.560642,4.442865E-27,1.560642,1.968504,8.209153,4.442865E-27,8.209153,1.968504,-1.560642,1.968504,-1.560642,6.437591E-14,-4.884898,1.968504,-8.209153,6.437591E-14,-8.209153,0.984252,-2.839702,4.442865E-27,-9.488214,4.442865E-27,-2.839702,1.968504,-9.488214,1.968504,-9.617476,3.586376,-9.617476,6.308944,-4.90185,0.863808,-7.259664,10.3928,-4.90185,11.75408,-0.186224,3.586376,-0.186224,9.031512,-17.71654,-7.26082,-17.71654,-0.9989136,-12.29356,-10.39177,-12.29356,2.13204,-6.870595,-7.26082,-9.58208,0.5665631,-6.870595,-4.129867,13.46041,-7.447191,13.46041,-3.853401,16.57273,-9.244085,15.01657,-2.954953,18.12888,-2.954953,19.68504,-7.447191,19.68504,-3.853401,-1.743461,-8.224648,-1.743461,-2.779511,2.972166,-10.94722,2.972166,-0.0569432,7.687792,-8.224648,7.687792,-2.779511,-19.68504,5.542173,-19.68504,9.135963,-16.57273,3.745278,-16.57273,10.93286,-13.46041,5.542173,-13.46041,9.135963,-15.01657,3.064472,-16.57273,2.040072,-18.12888,3.064472,-0.6549677,-10.46478,-3.012781,-11.91229,-5.370594,-10.46478,4.180043,1.560642,4.180043,4.884898,9.937822,-1.763613,7.058933,9.871282,9.937822,11.53341,15.6956,1.560642,15.6956,8.209153,-6.320467,2.016258,-9.199357,0.08456963,-12.07825,2.016258,-0.1412722,7.833127,5.281698,7.833127,2.570213,5.983946,4.677031,0.984252,10.12217,0.984252,4.677031,3.996803E-15,4.677031,0.984252,10.12217,0.984252,4.677031,3.996803E-15,4.677031,0.984252,10.12217,0.984252,4.677031,3.996803E-15,4.677031,0.984252,10.12217,0.984252,4.677031,3.996803E-15,9.135963,0.984252,9.135963,3.245367E-12,5.542173,0.984252,9.135963,0.984252,9.135963,3.245367E-12,5.542173,0.984252,9.135963,0.984252,9.135963,3.245367E-12,5.542173,0.984252,9.135963,0.984252,9.135963,3.245367E-12,5.542173,0.984252,-3.813223,0.984252,1.631913,0.984252,-3.813223,3.996803E-15,-3.813223,0.984252,1.631913,0.984252,-3.813223,3.996803E-15,-3.813223,0.984252,1.631913,0.984252,-3.813223,3.996803E-15,-3.813223,0.984252,1.631913,0.984252,-3.813223,3.996803E-15,-0.1412722,7.833127,5.281698,7.833127,2.570213,5.983946,-0.1412722,7.833127,5.281698,7.833127,2.570213,5.983946,-0.1412722,7.833127,5.281698,7.833127,2.570213,5.983946,-0.1412722,7.833127,5.281698,7.833127,2.570213,5.983946 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,1,3,5,1,4,6,8,7,9,7,8,10,9,8,11,13,12,14,12,13,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,50,49,52,54,53,55,53,54,56,58,57,59,57,58,60,59,58,61,63,62,64,62,63,65,67,66,68,66,67,69,68,67,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,79,81,83,79,82,84,86,85,87,85,86,88,87,86,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,120,119,122,124,123,125,123,124,126,128,127,129,127,128,130,129,128,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,142,140,141,143,145,144,146,144,145,147,149,148,150,148,149,151,153,152,154,152,153,155,157,156,158,156,157,159,158,157,160,162,161,163,161,162,164,166,165,167,165,166,168,167,166,169,168,166,170,168,169,171,173,172,174,172,173,175,174,173,176,174,175,177,176,175,178,180,179,181,179,180,182,181,180,183,182,180,184,182,183,185,187,186,188,186,187,189,188,187,190,188,189,191,193,192,194,192,193,195,194,193,196,194,195,197,199,198,200,202,201,203,205,204,206,204,205,207,206,205,208,207,205,209,207,208,210,212,211,213,215,214,216,218,217,219,221,220,222,224,223,225,227,226,228,230,229,231,233,232,234,236,235,237,239,238,240,242,241,243,245,244,246,248,247,249,251,250,252,254,253,255,257,256,258,260,259,261,263,262 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh path_stone, Model::RootNode + C: "OO",5096686151967627967,0 + + ;Geometry::, Model::Mesh path_stone + C: "OO",5318319208570637563,5096686151967627967 + + ;Material::stoneDark, Model::Mesh path_stone + C: "OO",3040,5096686151967627967 + + ;Material::stone, Model::Mesh path_stone + C: "OO",3038,5096686151967627967 + + ;Material::_defaultMat, Model::Mesh path_stone + C: "OO",3004,5096686151967627967 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/path_stone.fbx.import new file mode 100644 index 0000000..bb18859 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://coccaqdw3nnuh" +path="res://.godot/imported/path_stone.fbx-11a1b1341743a2bfc817dec0a247458d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/path_stone.fbx" +dest_files=["res://.godot/imported/path_stone.fbx-11a1b1341743a2bfc817dec0a247458d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCircle.fbx b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCircle.fbx new file mode 100644 index 0000000..c8118d4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCircle.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 49 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "path_stoneCircle.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "path_stoneCircle.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5741019819637242408, "Model::path_stoneCircle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5526472514538946382, "Geometry::", "Mesh" { + Vertices: *864 { + a: -0.5342817,0.25,-3.691532,-0.5342817,0.5,-3,-1.133166,0.5,-4.037298,1.605011,0.5,2.310117E-13,1.605011,0.25,0.9266533,0.8025053,0.5,1.38998,3.464102,0.25,-1.383065,4.062986,0.5,-1.037298,2.865217,0.5,-1.037298,-2.92982,0.25,2.308468,-2.330935,0.5,1.962702,-2.92982,0.5,3,-4.66187,0.25,-2.887646E-14,-4.062986,0.25,1.037298,-4.66187,0.125,0.6915323,2.92982,0.125,2.308468,2.92982,0.25,3,2.330935,0.25,1.962702,-0.5342817,0.5,2.308468,-0.5342817,0.5,3.691532,-1.732051,0.5,1.616935,-1.732051,0.5,4.383065,-2.330935,0.5,1.962702,-2.92982,0.5,3.691532,-2.92982,0.5,3,1.605011,0.5,-0.9266533,1.605011,0.5,2.310117E-13,0,0.5,-1.853307,0.8025053,0.5,1.38998,0,0.5,1.853307,-1.605011,0.5,-0.9266533,-1.605011,0.5,0.9266533,-0.5342817,0.5,-3,-0.5342817,0.5,-2.308468,-1.133166,0.5,-4.037298,-1.732051,0.5,-1.616935,-1.732051,0.5,-4.383065,-2.92982,0.5,-3.691532,-2.92982,0.5,-2.308468,-2.266333,0.25,-0.6915323,-2.266333,0.25,0.6915323,-3.464102,0.25,-1.383065,-3.464102,0.25,1.383065,-4.66187,0.25,-0.6915323,-4.062986,0.25,1.037298,-4.66187,0.25,-2.887646E-14,2.92982,0.25,3,2.92982,0.25,3.691532,2.330935,0.25,1.962702,1.732051,0.25,4.383065,1.732051,0.25,1.616935,0.5342817,0.25,2.308468,0.5342817,0.25,3.691532,2.92982,0.25,-3.691532,2.92982,0.25,-2.308468,1.732051,0.25,-4.383065,1.732051,0.25,-1.616935,0.5342817,0.25,-3.691532,0.5342817,0.25,-2.308468,4.66187,0.5,-0.6915323,4.66187,0.5,0.6915323,4.062986,0.5,-1.037298,3.464102,0.5,1.383065,2.865217,0.5,-1.037298,2.266333,0.5,0.6915323,2.266333,0.5,-0.6915323,-2.92982,8.4599E-17,2.308468,-1.732051,8.4599E-17,1.616935,-2.92982,0.25,2.308468,-1.732051,0.5,1.616935,-2.330935,0.5,1.962702,2.92982,8.4599E-17,2.308468,1.732051,8.4599E-17,1.616935,2.92982,8.4599E-17,3.691532,1.732051,8.4599E-17,4.383065,0.5342817,8.4599E-17,3.691532,0.5342817,8.4599E-17,2.308468,0.5342817,8.4599E-17,2.308468,0.5342817,0.25,2.308468,0.5342817,8.4599E-17,3.691532,0.5342817,0.25,3.691532,0.5342817,8.4599E-17,-3.691532,1.732051,8.4599E-17,-4.383065,0.5342817,0.25,-3.691532,1.732051,0.25,-4.383065,-2.92982,8.4599E-17,2.308468,-2.92982,0.25,2.308468,-2.92982,8.4599E-17,3.691532,-2.92982,0.5,3,-2.92982,0.5,3.691532,0.5342817,8.4599E-17,-3.691532,0.5342817,0.25,-3.691532,0.5342817,8.4599E-17,-2.308468,0.5342817,0.25,-2.308468,-1.732051,8.4599E-17,4.383065,-2.92982,8.4599E-17,3.691532,-1.732051,0.5,4.383065,-2.92982,0.5,3.691532,-0.5342817,8.4599E-17,2.308468,-1.732051,8.4599E-17,1.616935,-0.5342817,8.4599E-17,3.691532,-1.732051,8.4599E-17,4.383065,-2.92982,8.4599E-17,3.691532,-2.92982,8.4599E-17,2.308468,4.66187,8.4599E-17,0.6915323,4.66187,8.4599E-17,-0.6915323,3.464102,8.4599E-17,1.383065,3.464102,8.4599E-17,-1.383065,2.266333,8.4599E-17,0.6915323,2.266333,8.4599E-17,-0.6915323,2.92982,8.4599E-17,-3.691532,1.732051,8.4599E-17,-4.383065,2.92982,8.4599E-17,-2.308468,1.732051,8.4599E-17,-1.616935,0.5342817,8.4599E-17,-2.308468,0.5342817,8.4599E-17,-3.691532,1.732051,8.4599E-17,-1.616935,0.5342817,8.4599E-17,-2.308468,1.732051,0.25,-1.616935,0.5342817,0.25,-2.308468,0,0,-1.853307,1.605011,0,-0.9266533,0,0.5,-1.853307,1.605011,0.5,-0.9266533,-3.464102,8.4599E-17,1.383065,-4.66187,8.4599E-17,0.6915323,-3.464102,0.25,1.383065,-4.66187,0.125,0.6915323,-4.062986,0.25,1.037298,1.605011,0,0.9266533,1.605011,0,-0.9266533,0,0,1.853307,0,0,-1.853307,-1.605011,0,0.9266533,-1.605011,0,-0.9266533,1.732051,8.4599E-17,1.616935,2.92982,8.4599E-17,2.308468,1.732051,0.25,1.616935,2.92982,0.125,2.308468,2.330935,0.25,1.962702,4.66187,0.5,-0.6915323,4.66187,8.4599E-17,-0.6915323,4.66187,0.5,0.6915323,4.66187,8.4599E-17,0.6915323,2.266333,8.4599E-17,-0.6915323,2.266333,0.5,-0.6915323,2.266333,8.4599E-17,0.6915323,2.266333,0.5,0.6915323,1.732051,8.4599E-17,-4.383065,2.92982,8.4599E-17,-3.691532,1.732051,0.25,-4.383065,2.92982,0.25,-3.691532,-0.5342817,0.5,2.308468,-0.5342817,8.4599E-17,2.308468,-0.5342817,0.5,3.691532,-0.5342817,8.4599E-17,3.691532,4.66187,8.4599E-17,0.6915323,3.464102,8.4599E-17,1.383065,4.66187,0.5,0.6915323,3.464102,0.5,1.383065,0,0,1.853307,-1.605011,0,0.9266533,0,0.5,1.853307,-1.605011,0.5,0.9266533,-1.732051,8.4599E-17,-4.383065,-0.5342817,8.4599E-17,-3.691532,-1.732051,0.5,-4.383065,-0.5342817,0.25,-3.691532,-1.133166,0.5,-4.037298,-0.5342817,8.4599E-17,3.691532,-1.732051,8.4599E-17,4.383065,-0.5342817,0.5,3.691532,-1.732051,0.5,4.383065,1.732051,8.4599E-17,4.383065,0.5342817,8.4599E-17,3.691532,1.732051,0.25,4.383065,0.5342817,0.25,3.691532,-2.266333,8.4599E-17,0.6915323,-3.464102,8.4599E-17,1.383065,-2.266333,0.25,0.6915323,-3.464102,0.25,1.383065,-1.732051,8.4599E-17,-1.616935,-2.92982,8.4599E-17,-2.308468,-1.732051,0.5,-1.616935,-2.92982,0.5,-2.308468,-0.5342817,8.4599E-17,-2.308468,-1.732051,8.4599E-17,-1.616935,-0.5342817,0.5,-2.308468,-1.732051,0.5,-1.616935,-2.266333,8.4599E-17,0.6915323,-2.266333,8.4599E-17,-0.6915323,-3.464102,8.4599E-17,1.383065,-3.464102,8.4599E-17,-1.383065,-4.66187,8.4599E-17,0.6915323,-4.66187,8.4599E-17,-0.6915323,-3.464102,8.4599E-17,-1.383065,-2.266333,8.4599E-17,-0.6915323,-3.464102,0.25,-1.383065,-2.266333,0.25,-0.6915323,-2.92982,8.4599E-17,-3.691532,-2.92982,0.5,-3.691532,-2.92982,8.4599E-17,-2.308468,-2.92982,0.5,-2.308468,2.266333,8.4599E-17,-0.6915323,3.464102,8.4599E-17,-1.383065,2.266333,0.5,-0.6915323,3.464102,0.25,-1.383065,2.865217,0.5,-1.037298,-4.66187,8.4599E-17,-0.6915323,-3.464102,8.4599E-17,-1.383065,-4.66187,0.25,-0.6915323,-3.464102,0.25,-1.383065,2.92982,8.4599E-17,3.691532,1.732051,8.4599E-17,4.383065,2.92982,0.25,3.691532,1.732051,0.25,4.383065,3.464102,8.4599E-17,-1.383065,4.66187,8.4599E-17,-0.6915323,3.464102,0.25,-1.383065,4.66187,0.5,-0.6915323,4.062986,0.5,-1.037298,-0.5342817,0.25,-3.691532,-0.5342817,8.4599E-17,-3.691532,-0.5342817,0.5,-3,-0.5342817,8.4599E-17,-2.308468,-0.5342817,0.5,-2.308468,1.605011,0,0.9266533,0,0,1.853307,1.605011,0.25,0.9266533,0,0.5,1.853307,0.8025053,0.5,1.38998,2.92982,8.4599E-17,-2.308468,1.732051,8.4599E-17,-1.616935,2.92982,0.25,-2.308468,1.732051,0.25,-1.616935,-2.92982,8.4599E-17,-3.691532,-1.732051,8.4599E-17,-4.383065,-2.92982,0.5,-3.691532,-1.732051,0.5,-4.383065,-1.605011,0,-0.9266533,0,0,-1.853307,-1.605011,0.5,-0.9266533,0,0.5,-1.853307,-1.605011,0,-0.9266533,-1.605011,0.5,-0.9266533,-1.605011,0,0.9266533,-1.605011,0.5,0.9266533,1.605011,0.5,-0.9266533,1.605011,0,-0.9266533,1.605011,0.5,2.310117E-13,1.605011,0,0.9266533,1.605011,0.25,0.9266533,-4.66187,8.4599E-17,-0.6915323,-4.66187,0.25,-0.6915323,-4.66187,8.4599E-17,0.6915323,-4.66187,0.25,-2.887646E-14,-4.66187,0.125,0.6915323,-0.5342817,8.4599E-17,-3.691532,-1.732051,8.4599E-17,-4.383065,-0.5342817,8.4599E-17,-2.308468,-1.732051,8.4599E-17,-1.616935,-2.92982,8.4599E-17,-2.308468,-2.92982,8.4599E-17,-3.691532,0.5342817,8.4599E-17,2.308468,1.732051,8.4599E-17,1.616935,0.5342817,0.25,2.308468,1.732051,0.25,1.616935,3.464102,8.4599E-17,1.383065,2.266333,8.4599E-17,0.6915323,3.464102,0.5,1.383065,2.266333,0.5,0.6915323,-2.266333,0.25,-0.6915323,-2.266333,8.4599E-17,-0.6915323,-2.266333,0.25,0.6915323,-2.266333,8.4599E-17,0.6915323,2.92982,0.25,-3.691532,2.92982,8.4599E-17,-3.691532,2.92982,0.25,-2.308468,2.92982,8.4599E-17,-2.308468,2.92982,0.125,2.308468,2.92982,8.4599E-17,2.308468,2.92982,0.25,3,2.92982,8.4599E-17,3.691532,2.92982,0.25,3.691532,-1.732051,8.4599E-17,1.616935,-0.5342817,8.4599E-17,2.308468,-1.732051,0.5,1.616935,-0.5342817,0.5,2.308468 + } + PolygonVertexIndex: *492 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,19,-21,22,21,-21,23,21,-23,24,23,-23,25,27,-27,28,26,-28,29,28,-28,30,29,-28,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,35,-37,38,35,-38,39,41,-41,42,40,-42,43,42,-42,44,42,-44,45,44,-44,46,48,-48,49,47,-49,50,49,-49,51,49,-51,52,49,-52,53,55,-55,56,54,-56,57,56,-56,58,56,-58,59,61,-61,62,60,-62,63,62,-62,64,62,-64,65,64,-64,66,68,-68,69,67,-69,70,69,-69,71,73,-73,74,72,-74,75,72,-75,76,72,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,88,-88,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,99,-102,103,99,-103,104,106,-106,107,105,-107,108,107,-107,109,107,-109,110,112,-112,113,111,-113,114,111,-114,115,111,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,127,-127,129,131,-131,132,130,-132,133,132,-132,134,132,-134,135,137,-137,138,136,-138,139,138,-138,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,167,-167,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,179,-179,180,178,-180,181,183,-183,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,192,-192,194,192,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,206,-206,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,219,-219,221,223,-223,224,222,-224,225,224,-224,226,228,-228,229,227,-229,230,229,-229,231,233,-233,234,232,-234,235,237,-237,238,236,-238,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,250,-250,252,254,-254,255,253,-255,256,255,-255,257,259,-259,260,258,-260,261,258,-261,262,258,-262,263,265,-265,266,264,-266,267,269,-269,270,268,-270,271,273,-273,274,272,-274,275,277,-277,278,276,-278,279,281,-281,282,280,-282,283,282,-282,284,286,-286,287,285,-287 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1476 { + a: 0.5074231,0.8103676,-0.2929609,0.5074231,0.8103676,-0.2929609,0.5074231,0.8103676,-0.2929609,0.4112409,0.8800613,0.23743,0.4112409,0.8800613,0.23743,0.4112409,0.8800613,0.23743,0,0.8103676,-0.5859218,0,0.8103676,-0.5859218,0,0.8103676,-0.5859218,-0.5074231,0.8103676,-0.2929609,-0.5074231,0.8103676,-0.2929609,-0.5074231,0.8103676,-0.2929609,-0.2944324,0.9404322,0.1699906,-0.2944324,0.9404322,0.1699906,-0.2944324,0.9404322,0.1699906,0.2944324,0.9404322,-0.1699906,0.2944324,0.9404322,-0.1699906,0.2944324,0.9404322,-0.1699906,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *576 { + a: 13.6382,-3.835867,11.28038,-2.156032,15.99601,-2.156032,3.15947,-3.88125,-8.957279E-13,-5.95397,-3.15947,-3.88125,-13.6382,-3.835867,-15.99601,-2.156032,-11.28038,-2.156032,13.6382,-3.835867,11.28038,-2.156032,15.99601,-2.156032,-9.17691,-14.61343,-4.461285,-14.61343,-6.819098,-16.06093,-13.6382,-4.953468,-15.99601,-3.505959,-11.28038,-3.505959,2.103471,9.088455,2.103471,14.53359,6.819098,6.365888,6.819098,17.25616,9.17691,7.727171,11.53472,14.53359,11.53472,11.81102,-6.318939,-3.648241,-6.318939,9.094947E-13,0,-7.296483,-3.15947,5.472362,0,7.296483,6.318939,-3.648241,6.318939,3.648241,2.103471,-11.81102,2.103471,-9.088455,4.461285,-15.89488,6.819098,-6.365888,6.819098,-17.25616,11.53472,-14.53359,11.53472,-9.088455,8.922569,-2.722568,8.922569,2.722568,13.6382,-5.445136,13.6382,5.445136,18.35382,-2.722568,15.99601,4.083852,18.35382,-1.136868E-13,-11.53472,11.81102,-11.53472,14.53359,-9.17691,7.727171,-6.819098,17.25616,-6.819098,6.365888,-2.103471,9.088455,-2.103471,14.53359,-11.53472,-14.53359,-11.53472,-9.088455,-6.819098,-17.25616,-6.819098,-6.365888,-2.103471,-14.53359,-2.103471,-9.088455,-18.35382,-2.722568,-18.35382,2.722568,-15.99601,-4.083852,-13.6382,5.445136,-11.28038,-4.083852,-8.922569,2.722568,-8.922569,-2.722568,14.53359,-1.376688E-14,9.088455,-1.376688E-14,14.53359,0.984252,9.088455,1.968504,11.81102,1.968504,11.53472,9.088455,6.819098,6.365888,11.53472,14.53359,6.819098,17.25616,2.103471,14.53359,2.103471,9.088455,9.088455,3.330669E-16,9.088455,0.984252,14.53359,3.330669E-16,14.53359,0.984252,-9.088455,3.330669E-16,-14.53359,3.330669E-16,-9.088455,0.984252,-14.53359,0.984252,9.088455,3.330669E-16,9.088455,0.984252,14.53359,3.330669E-16,11.81102,1.968504,14.53359,1.968504,-14.53359,3.330669E-16,-14.53359,0.984252,-9.088455,3.330669E-16,-9.088455,0.984252,2.722568,3.330669E-16,-2.722568,3.330669E-16,2.722568,1.968504,-2.722568,1.968504,-2.103471,9.088455,-6.819098,6.365888,-2.103471,14.53359,-6.819098,17.25616,-11.53472,14.53359,-11.53472,9.088455,18.35382,2.722568,18.35382,-2.722568,13.6382,5.445136,13.6382,-5.445136,8.922569,2.722568,8.922569,-2.722568,11.53472,-14.53359,6.819098,-17.25616,11.53472,-9.088455,6.819098,-6.365888,2.103471,-9.088455,2.103471,-14.53359,2.722568,3.330669E-16,-2.722568,3.330669E-16,2.722568,0.984252,-2.722568,0.984252,3.648241,0,-3.648241,0,3.648241,1.968504,-3.648241,1.968504,-9.088455,3.330669E-16,-14.53359,3.330669E-16,-9.088455,0.984252,-14.53359,0.492126,-11.81102,0.984252,6.318939,3.648241,6.318939,-3.648241,0,7.296483,0,-7.296483,-6.318939,3.648241,-6.318939,-3.648241,-9.088455,1.261354E-17,-14.53359,1.261354E-17,-9.088455,0.984252,-14.53359,0.492126,-11.81102,0.984252,2.722568,1.968504,2.722568,3.330669E-16,-2.722568,1.968504,-2.722568,3.330669E-16,-2.722568,3.330669E-16,-2.722568,1.968504,2.722568,3.330669E-16,2.722568,1.968504,2.722568,3.330669E-16,-2.722568,3.330669E-16,2.722568,0.984252,-2.722568,0.984252,-9.088455,1.968504,-9.088455,3.330669E-16,-14.53359,1.968504,-14.53359,3.330669E-16,14.53359,3.330669E-16,9.088455,3.330669E-16,14.53359,1.968504,9.088455,1.968504,3.648241,0,-3.648241,0,3.648241,1.968504,-3.648241,1.968504,14.53359,3.330669E-16,9.088455,3.330669E-16,14.53359,1.968504,9.088455,0.984252,11.81102,1.968504,-9.088455,3.330669E-16,-14.53359,3.330669E-16,-9.088455,1.968504,-14.53359,1.968504,14.53359,3.330669E-16,9.088455,3.330669E-16,14.53359,0.984252,9.088455,0.984252,-9.088455,3.330669E-16,-14.53359,3.330669E-16,-9.088455,0.984252,-14.53359,0.984252,-9.088455,3.330669E-16,-14.53359,3.330669E-16,-9.088455,1.968504,-14.53359,1.968504,2.722568,3.330669E-16,-2.722568,3.330669E-16,2.722568,1.968504,-2.722568,1.968504,-8.922569,2.722568,-8.922569,-2.722568,-13.6382,5.445136,-13.6382,-5.445136,-18.35382,2.722568,-18.35382,-2.722568,14.53359,3.330669E-16,9.088455,3.330669E-16,14.53359,0.984252,9.088455,0.984252,-14.53359,3.330669E-16,-14.53359,1.968504,-9.088455,3.330669E-16,-9.088455,1.968504,-9.088455,1.443301E-14,-14.53359,1.443301E-14,-9.088455,1.968504,-14.53359,0.984252,-11.81102,1.968504,14.53359,3.330669E-16,9.088455,3.330669E-16,14.53359,0.984252,9.088455,0.984252,2.722568,3.330669E-16,-2.722568,3.330669E-16,2.722568,0.984252,-2.722568,0.984252,-9.088455,-5.455619E-16,-14.53359,-5.455619E-16,-9.088455,0.984252,-14.53359,1.968504,-11.81102,1.968504,14.53359,0.984252,14.53359,3.272816E-14,11.81102,1.968504,9.088455,3.272816E-14,9.088455,1.968504,3.648241,4.825089E-14,-3.648241,4.825089E-14,3.648241,0.984252,-3.648241,1.968504,-6.17284E-13,1.968504,14.53359,3.330669E-16,9.088455,3.330669E-16,14.53359,0.984252,9.088455,0.984252,2.722568,3.330669E-16,-2.722568,3.330669E-16,2.722568,1.968504,-2.722568,1.968504,3.648241,0,-3.648241,0,3.648241,1.968504,-3.648241,1.968504,-3.648241,0,-3.648241,1.968504,3.648241,0,3.648241,1.968504,3.648241,1.968504,3.648241,0,-9.094947E-13,1.968504,-3.648241,0,-3.648241,0.984252,-2.722568,3.330669E-16,-2.722568,0.984252,2.722568,3.330669E-16,-1.136868E-13,0.984252,2.722568,0.492126,-2.103471,-14.53359,-6.819098,-17.25616,-2.103471,-9.088455,-6.819098,-6.365888,-11.53472,-9.088455,-11.53472,-14.53359,2.722568,3.330669E-16,-2.722568,3.330669E-16,2.722568,0.984252,-2.722568,0.984252,14.53359,3.330669E-16,9.088455,3.330669E-16,14.53359,1.968504,9.088455,1.968504,2.722568,0.984252,2.722568,3.330669E-16,-2.722568,0.984252,-2.722568,3.330669E-16,14.53359,0.984252,14.53359,3.330669E-16,9.088455,0.984252,9.088455,3.330669E-16,-9.088455,0.492126,-9.088455,3.556205E-13,-11.81102,0.984252,-14.53359,3.556205E-13,-14.53359,0.984252,2.722568,3.330669E-16,-2.722568,3.330669E-16,2.722568,1.968504,-2.722568,1.968504 + } + UVIndex: *492 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,19,20,22,21,20,23,21,22,24,23,22,25,27,26,28,26,27,29,28,27,30,29,27,31,29,30,32,34,33,35,33,34,36,35,34,37,35,36,38,35,37,39,41,40,42,40,41,43,42,41,44,42,43,45,44,43,46,48,47,49,47,48,50,49,48,51,49,50,52,49,51,53,55,54,56,54,55,57,56,55,58,56,57,59,61,60,62,60,61,63,62,61,64,62,63,65,64,63,66,68,67,69,67,68,70,69,68,71,73,72,74,72,73,75,72,74,76,72,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,88,87,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,99,101,103,99,102,104,106,105,107,105,106,108,107,106,109,107,108,110,112,111,113,111,112,114,111,113,115,111,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,127,126,129,131,130,132,130,131,133,132,131,134,132,133,135,137,136,138,136,137,139,138,137,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,167,166,169,171,170,172,170,171,173,175,174,176,174,175,177,179,178,180,178,179,181,183,182,184,182,183,185,187,186,188,186,187,189,191,190,192,190,191,193,192,191,194,192,193,195,197,196,198,196,197,199,201,200,202,200,201,203,205,204,206,204,205,207,206,205,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,219,218,221,223,222,224,222,223,225,224,223,226,228,227,229,227,228,230,229,228,231,233,232,234,232,233,235,237,236,238,236,237,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,250,249,252,254,253,255,253,254,256,255,254,257,259,258,260,258,259,261,258,260,262,258,261,263,265,264,266,264,265,267,269,268,270,268,269,271,273,272,274,272,273,275,277,276,278,276,277,279,281,280,282,280,281,283,282,281,284,286,285,287,285,286 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *164 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh path_stoneCircle, Model::RootNode + C: "OO",5741019819637242408,0 + + ;Geometry::, Model::Mesh path_stoneCircle + C: "OO",5526472514538946382,5741019819637242408 + + ;Material::stone, Model::Mesh path_stoneCircle + C: "OO",3038,5741019819637242408 + + ;Material::stoneDark, Model::Mesh path_stoneCircle + C: "OO",3040,5741019819637242408 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCircle.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCircle.fbx.import new file mode 100644 index 0000000..fc75b21 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCircle.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dslmh3dk1bxb8" +path="res://.godot/imported/path_stoneCircle.fbx-b83db649c2c75299228b236272b4e020.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/path_stoneCircle.fbx" +dest_files=["res://.godot/imported/path_stoneCircle.fbx-b83db649c2c75299228b236272b4e020.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCorner.fbx b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCorner.fbx new file mode 100644 index 0000000..18a40c0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCorner.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 154 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "path_stoneCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "path_stoneCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5045784398784707800, "Model::path_stoneCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5390298867826716242, "Geometry::", "Mesh" { + Vertices: *666 { + a: 4.704106,0,2.482759,4.704106,0,1.369116,3.739663,0,3.039581,3.739662,0,0.8122938,2.775219,0,2.482759,2.775219,0,1.369116,2.019727,0,-0.3078035,0.82562,0,-1.50191,1.582653,0,1.323377,-0.04852674,0,1.76045,1.582653,0,1.323377,0.82562,0,-1.50191,-0.80556,0,-1.064837,-0.04852674,0,1.76045,0.82562,0,-1.50191,-1.242633,0,0.5663432,-0.04852674,0,1.76045,-0.80556,0,-1.064837,2.134497,0,-3.374913,2.134497,0,-4.287735,1.343969,0,-2.918501,1.343969,0,-4.744146,1.343969,0,-2.918501,2.134497,0,-4.287735,0.5534416,0,-3.374913,1.343969,0,-2.918501,1.343969,0,-4.744146,0.5534416,0,-4.287735,0.5534416,0,-3.374913,1.343969,0,-4.744146,4.350968,0,-1.04247,4.350968,0,-2.301059,3.260998,0,-0.413176,3.260998,0,-2.930354,3.260998,0,-0.413176,4.350968,0,-2.301059,2.171029,0,-1.04247,3.260998,0,-0.413176,3.260998,0,-2.930354,2.171029,0,-2.301059,2.171029,0,-1.04247,3.260998,0,-2.930354,-0.1575301,0,-3.582765,-1.280694,0,-4.389841,-0.2948957,0,-2.206539,-1.555425,0,-1.637388,-0.2948957,0,-2.206539,-1.280694,0,-4.389841,-2.541224,0,-3.82069,-1.555425,0,-1.637388,-1.280694,0,-4.389841,-2.67859,0,-2.444463,-1.555425,0,-1.637388,-2.541224,0,-3.82069,2.775219,0,1.369116,2.775219,0.125,1.369116,2.775219,0,2.482759,2.775219,0.25,1.925937,2.775219,0.25,2.482759,2.775219,0,1.369116,3.739662,0,0.8122938,2.775219,0.125,1.369116,3.739662,0.25,0.8122938,3.257441,0.25,1.090705,3.739663,0,3.039581,2.775219,0,2.482759,3.739663,0.25,3.039581,2.775219,0.25,2.482759,4.704106,0,2.482759,3.739663,0,3.039581,4.704106,0.25,2.482759,3.739663,0.25,3.039581,4.704106,0.25,1.369116,4.704106,0,1.369116,4.704106,0.25,2.482759,4.704106,0,2.482759,0.82562,0,-1.50191,2.019727,0,-0.3078035,0.82562,0.5,-1.50191,2.019727,0.5,-0.3078035,2.171029,0,-2.301059,3.260998,0,-2.930354,2.171029,0.25,-2.301059,3.260998,0.25,-2.930354,3.260998,0,-2.930354,4.350968,0,-2.301059,3.260998,0.25,-2.930354,4.350968,0.25,-2.301059,-0.2948957,0,-2.206539,-1.555425,0,-1.637388,-0.2948957,0.25,-2.206539,-1.555425,0.25,-1.637388,-0.04852674,0,1.76045,-1.242633,0,0.5663432,-0.04852674,0.5,1.76045,-1.242633,0.5,0.5663432,1.582653,0,1.323377,-0.04852674,0,1.76045,1.582653,0.25,1.323377,-0.04852674,0.5,1.76045,0.7670633,0.5,1.541913,-0.80556,0,-1.064837,0.82562,0,-1.50191,-0.80556,0.5,-1.064837,0.82562,0.5,-1.50191,0.5534416,0,-4.287735,1.343969,0,-4.744146,0.5534416,0.25,-4.287735,1.343969,0.25,-4.744146,0.5534416,0,-4.287735,0.5534416,0.25,-4.287735,0.5534416,0,-3.374913,0.5534416,0.25,-3.374913,3.739662,0,0.8122938,4.704106,0,1.369116,3.739662,0.25,0.8122938,4.704106,0.25,1.369116,1.343969,0,-2.918501,0.5534416,0,-3.374913,1.343969,0.25,-2.918501,0.5534416,0.25,-3.374913,-1.555425,0,-1.637388,-2.67859,0,-2.444463,-1.555425,0.25,-1.637388,-2.67859,0.25,-2.444463,-0.1575301,0.25,-3.582765,-0.1575301,0,-3.582765,-0.2948957,0.25,-2.206539,-0.2948957,0,-2.206539,3.260998,0,-0.413176,2.171029,0,-1.04247,3.260998,0.25,-0.413176,2.171029,0.25,-1.04247,2.134497,0,-3.374913,1.343969,0,-2.918501,2.134497,0.25,-3.374913,1.343969,0.25,-2.918501,1.343969,0,-4.744146,2.134497,0,-4.287735,1.343969,0.25,-4.744146,2.134497,0.25,-4.287735,2.134497,0.25,-4.287735,2.134497,0,-4.287735,2.134497,0.25,-3.374913,2.134497,0,-3.374913,4.350968,0,-1.04247,3.260998,0,-0.413176,4.350968,0.125,-1.04247,3.260998,0.25,-0.413176,3.805983,0.25,-0.7278231,4.350968,0.25,-2.301059,4.350968,0,-2.301059,4.350968,0.25,-1.671765,4.350968,0,-1.04247,4.350968,0.125,-1.04247,-2.541224,0,-3.82069,-2.541224,0.25,-3.82069,-2.67859,0,-2.444463,-2.67859,0.25,-2.444463,2.171029,0,-2.301059,2.171029,0.25,-2.301059,2.171029,0,-1.04247,2.171029,0.25,-1.04247,-2.541224,0,-3.82069,-1.280694,0,-4.389841,-2.541224,0.25,-3.82069,-1.280694,0.25,-4.389841,-1.280694,0,-4.389841,-0.1575301,0,-3.582765,-1.280694,0.25,-4.389841,-0.1575301,0.25,-3.582765,2.019727,0.5,-0.3078035,2.019727,0,-0.3078035,1.80119,0.5,0.5077865,1.582653,0,1.323377,1.582653,0.25,1.323377,-0.80556,0,-1.064837,-0.80556,0.5,-1.064837,-1.242633,0,0.5663432,-1.242633,0.5,0.5663432,4.704106,0.25,2.482759,3.739663,0.25,3.039581,4.704106,0.25,1.369116,3.739662,0.25,0.8122938,2.775219,0.25,2.482759,3.257441,0.25,1.090705,2.775219,0.25,1.925937,3.257441,0.25,1.090705,2.775219,0.25,1.925937,2.775219,0.125,1.369116,4.350968,0.25,-1.671765,4.350968,0.125,-1.04247,3.805983,0.25,-0.7278231,4.350968,0.25,-1.671765,3.805983,0.25,-0.7278231,4.350968,0.25,-2.301059,3.260998,0.25,-2.930354,3.260998,0.25,-0.413176,2.171029,0.25,-1.04247,2.171029,0.25,-2.301059,-0.1575301,0.25,-3.582765,-0.2948957,0.25,-2.206539,-1.280694,0.25,-4.389841,-1.555425,0.25,-1.637388,-2.541224,0.25,-3.82069,-2.67859,0.25,-2.444463,2.134497,0.25,-3.374913,1.343969,0.25,-2.918501,2.134497,0.25,-4.287735,1.343969,0.25,-4.744146,0.5534416,0.25,-3.374913,0.5534416,0.25,-4.287735,1.80119,0.5,0.5077865,1.582653,0.25,1.323377,0.7670633,0.5,1.541913,2.019727,0.5,-0.3078035,1.80119,0.5,0.5077865,0.82562,0.5,-1.50191,0.7670633,0.5,1.541913,-0.80556,0.5,-1.064837,-0.04852674,0.5,1.76045,-1.242633,0.5,0.5663432 + } + PolygonVertexIndex: *336 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,50,-50,51,53,-53,54,56,-56,57,55,-57,58,57,-57,59,61,-61,62,60,-62,63,62,-62,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,99,-99,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,148,-148,150,152,-152,153,151,-153,154,153,-153,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,169,-169,170,168,-170,171,173,-173,174,172,-174,175,174,-174,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,181,-184,185,184,-184,186,184,-186,187,189,-189,190,192,-192,193,195,-195,196,194,-196,197,194,-197,198,197,-197,199,198,-197,200,202,-202,203,201,-203,204,203,-203,205,203,-205,206,208,-208,209,207,-209,210,207,-210,211,210,-210,212,214,-214,215,217,-217,218,216,-218,219,218,-218,220,218,-220,221,220,-220 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1008 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.4115144,0,0.9114033,0.4115144,0,0.9114033,0.4115144,0,0.9114033,0.4115144,0,0.9114033,0.4115144,0,0.9114033,0.4115144,0,0.9114033,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,0.258819,0,0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.258819,0,-0.9659258,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5835412,0,0.8120835,-0.5835412,0,0.8120835,-0.5835412,0,0.8120835,-0.5835412,0,0.8120835,-0.5835412,0,0.8120835,-0.5835412,0,0.8120835,0.9950556,0,0.09931973,0.9950556,0,0.09931973,0.9950556,0,0.09931973,0.9950556,0,0.09931973,0.9950556,0,0.09931973,0.9950556,0,0.09931973,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9950556,0,-0.09931973,-0.9950556,0,-0.09931973,-0.9950556,0,-0.09931973,-0.9950556,0,-0.09931973,-0.9950556,0,-0.09931973,-0.9950556,0,-0.09931973,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4115144,0,-0.9114033,-0.4115144,0,-0.9114033,-0.4115144,0,-0.9114033,-0.4115144,0,-0.9114033,-0.4115144,0,-0.9114033,-0.4115144,0,-0.9114033,0.5835412,0,-0.8120835,0.5835412,0,-0.8120835,0.5835412,0,-0.8120835,0.5835412,0,-0.8120835,0.5835412,0,-0.8120835,0.5835412,0,-0.8120835,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3547138,0.9122705,-0.2047941,-0.3547138,0.9122705,-0.2047941,-0.3547138,0.9122705,-0.2047941,0.319739,0.9293489,0.1846014,0.319739,0.9293489,0.1846014,0.319739,0.9293489,0.1846014,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3602916,0.8604532,0.3602916,0.3602916,0.8604532,0.3602916,0.3602916,0.8604532,0.3602916,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *444 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,1.345865,1.968504,4.670121,0.984252,-1.978391,1.968504,1.345865,1.968504,4.670121,0.984252,-1.978391,1.968504,1.345865,1.968504,4.670121,0.984252,-1.978391,1.968504,1.345865,1.968504,4.670121,0.984252,-1.978391,1.968504,-4.670121,1.968504,1.978391,1.968504,-4.670121,0,-4.670121,1.968504,1.978391,1.968504,-4.670121,0,-4.670121,1.968504,1.978391,1.968504,-4.670121,0,-4.670121,1.968504,1.978391,1.968504,-4.670121,0,13.28706,8.660025E-43,13.28706,0.984252,16.88085,8.660025E-43,13.28706,8.660025E-43,13.28706,0.984252,16.88085,8.660025E-43,13.28706,8.660025E-43,13.28706,0.984252,16.88085,8.660025E-43,13.28706,8.660025E-43,13.28706,0.984252,16.88085,8.660025E-43,8.73472,0.984252,14.17986,0.984252,8.73472,0,8.73472,0.984252,14.17986,0.984252,8.73472,0,8.73472,0.984252,14.17986,0.984252,8.73472,0,8.73472,0.984252,14.17986,0.984252,8.73472,0,5.390219,1.51512E-14,5.390219,0.492126,9.774643,1.51512E-14,7.582431,0.984252,9.774643,0.984252,-6.767135,-1.296815E-14,-11.15156,-1.296815E-14,-6.767135,0.492126,-11.15156,0.984252,-8.959347,0.984252,18.73399,0,14.34957,0,18.73399,0.984252,14.34957,0.984252,11.15156,0,6.767135,0,11.15156,0.984252,6.767135,0.984252,-5.390219,0.984252,-5.390219,-6.866551E-29,-9.774643,0.984252,-9.774643,-6.866551E-29,1.882714,0,-4.765797,0,1.882714,1.968504,-4.765797,1.968504,-11.93187,0,-16.88695,0,-11.93187,0.984252,-16.88695,0.984252,-5.350121,0,-10.30519,0,-5.350121,0.984252,-10.30519,0.984252,2.516747,0,-2.928389,0,2.516747,0.984252,-2.928389,0.984252,4.765797,0,-1.882714,0,4.765797,1.968504,-1.882714,1.968504,4.670121,-4.074387E-15,-1.978391,-4.074387E-15,4.670121,0.984252,-1.978391,1.968504,1.345865,1.968504,1.978391,0,-4.670121,0,1.978391,1.968504,-4.670121,1.968504,-10.32741,0,-13.9212,0,-10.32741,0.984252,-13.9212,0.984252,-16.88085,0,-16.88085,0.984252,-13.28706,0,-13.28706,0.984252,-14.34957,0,-18.73399,0,-14.34957,0.984252,-18.73399,0.984252,-1.162752,0,-4.756542,0,-1.162752,0.984252,-4.756542,0.984252,-8.73472,0,-14.17986,0,-8.73472,0.984252,-14.17986,0.984252,13.97404,0.984252,13.97404,0,8.528898,0.984252,8.528898,0,10.30519,0,5.350121,0,10.30519,0.984252,5.350121,0.984252,13.9212,-1.349122E-29,10.32741,-1.349122E-29,13.9212,0.984252,10.32741,0.984252,4.756542,0,1.162752,0,4.756542,0.984252,1.162752,0.984252,16.88085,0.984252,16.88085,8.660025E-43,13.28706,0.984252,13.28706,8.660025E-43,16.88695,-6.876853E-14,11.93187,-6.876853E-14,16.88695,0.492126,11.93187,0.984252,14.40941,0.984252,9.059288,0.984252,9.059288,4.801382E-13,6.581751,0.984252,4.104214,4.801382E-13,4.104214,0.492126,-13.97404,0,-13.97404,0.984252,-8.528898,0,-8.528898,0.984252,-9.059288,0,-9.059288,0.984252,-4.104214,0,-4.104214,0.984252,2.928389,0,-2.516747,0,2.928389,0.984252,-2.516747,0.984252,14.17986,0,8.73472,0,14.17986,0.984252,8.73472,0.984252,3.228579,1.968504,3.228579,-1.134589E-13,-0.0956766,1.968504,-3.419932,-1.134589E-13,-3.419932,0.984252,-3.228579,0,-3.228579,1.968504,3.419932,0,3.419932,1.968504,-18.5201,9.774643,-14.72308,11.96685,-18.5201,5.390219,-14.72308,3.198007,-10.92606,9.774643,-12.82457,4.294113,-10.92606,7.582431,-2.693474,12.49388,1.103548,12.49388,-0.7949626,11.29237,14.26486,-10.36498,12.11925,-11.69792,9.973642,-10.36498,-17.1298,-6.581751,-14.98419,-2.865446,-17.1298,-9.059288,-12.83858,-11.53683,-12.83858,-1.626677,-8.547357,-4.104214,-8.547357,-9.059288,0.6201974,-14.10538,1.161007,-8.687162,5.042103,-17.28284,6.123722,-6.446411,10.00482,-15.04209,10.54563,-9.623872,-8.40353,-13.28706,-5.291217,-11.49016,-8.40353,-16.88085,-5.291217,-18.67774,-2.178904,-13.28706,-2.178904,-16.88085,3.600687,-4.527919,0.7217966,-6.459608,-2.157093,-4.527919,-7.95168,-1.211825,-7.091299,1.99916,-3.250473,-5.913032,-3.019934,6.070525,3.171496,-4.192271,0.1910502,6.930905,4.892258,2.229698 + } + UVIndex: *336 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,29,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,50,49,51,53,52,54,56,55,57,55,56,58,57,56,59,61,60,62,60,61,63,62,61,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,99,98,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,127,126,128,126,127,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,148,147,150,152,151,153,151,152,154,153,152,155,157,156,158,156,157,159,161,160,162,160,161,163,165,164,166,164,165,167,169,168,170,168,169,171,173,172,174,172,173,175,174,173,176,178,177,179,177,178,180,182,181,183,181,182,184,181,183,185,184,183,186,184,185,187,189,188,190,192,191,193,195,194,196,194,195,197,194,196,198,197,196,199,198,196,200,202,201,203,201,202,204,203,202,205,203,204,206,208,207,209,207,208,210,207,209,211,210,209,212,214,213,215,217,216,218,216,217,219,218,217,220,218,219,221,220,219 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *112 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh path_stoneCorner, Model::RootNode + C: "OO",5045784398784707800,0 + + ;Geometry::, Model::Mesh path_stoneCorner + C: "OO",5390298867826716242,5045784398784707800 + + ;Material::_defaultMat, Model::Mesh path_stoneCorner + C: "OO",3004,5045784398784707800 + + ;Material::stoneDark, Model::Mesh path_stoneCorner + C: "OO",3040,5045784398784707800 + + ;Material::stone, Model::Mesh path_stoneCorner + C: "OO",3038,5045784398784707800 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCorner.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCorner.fbx.import new file mode 100644 index 0000000..1a129cd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bw1r1okqg68fy" +path="res://.godot/imported/path_stoneCorner.fbx-40cbf57f361886c216a186108e48007b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/path_stoneCorner.fbx" +dest_files=["res://.godot/imported/path_stoneCorner.fbx-40cbf57f361886c216a186108e48007b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_stoneEnd.fbx b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneEnd.fbx new file mode 100644 index 0000000..1a184da --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneEnd.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 253 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "path_stoneEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "path_stoneEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4666730653637998030, "Model::path_stoneEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5190828295705135531, "Geometry::", "Mesh" { + Vertices: *522 { + a: -3.418945,8.243326E-13,-1.891587,-4.209472,8.243326E-13,-2.347998,-3.418945,8.243326E-13,-0.9787638,-4.209472,8.243326E-13,-0.5223524,-5,8.243326E-13,-0.9787638,-5,8.243326E-13,-1.891587,-1.952699,1.003639E-15,-2.08906,-1.952699,0.25,-2.08906,-1.952699,1.003639E-15,-0.7059959,-1.952699,0.25,-0.7059959,-5,8.243326E-13,-1.891587,-4.209472,8.243326E-13,-2.347998,-5,0.25,-1.891587,-4.209472,0.25,-2.347998,0.442839,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-0.01446357,0.442839,0.25,-0.7059959,-0.7549301,0.25,-0.01446357,-1.952699,1.003639E-15,-2.08906,-0.7549301,1.003639E-15,-2.780593,-1.952699,0.25,-2.08906,-0.7549301,0.25,-2.780593,-4.209472,8.243326E-13,-0.5223524,-5,8.243326E-13,-0.9787638,-4.209472,0.125,-0.5223524,-5,0.25,-0.9787638,-4.604736,0.25,-0.7505581,-5,8.243326E-13,-1.891587,-5,0.25,-1.891587,-5,8.243326E-13,-0.9787638,-5,0.25,-0.9787638,-3.418945,8.243326E-13,-0.9787638,-4.209472,8.243326E-13,-0.5223524,-3.418945,0.25,-0.9787638,-4.209472,0.125,-0.5223524,-3.814209,0.25,-0.7505581,-3.418945,0.25,-1.891587,-3.418945,8.243326E-13,-1.891587,-3.418945,0.25,-0.9787638,-3.418945,8.243326E-13,-0.9787638,-4.209472,8.243326E-13,-2.347998,-3.418945,8.243326E-13,-1.891587,-4.209472,0.25,-2.347998,-3.418945,0.25,-1.891587,-1.061731,1.128488E-27,2.085125,-2.524207,1.128488E-27,2.929486,-1.061731,0.25,2.085125,-2.524207,0.5,2.929486,-1.792969,0.5,2.507305,-0.7549301,1.003639E-15,-0.01446357,-1.952699,1.003639E-15,-0.7059959,-0.7549301,0.25,-0.01446357,-1.952699,0.25,-0.7059959,-2.524207,1.128488E-27,-0.4479578,-1.061731,1.128488E-27,0.3964031,-2.524207,0.5,-0.4479578,-1.061731,0.5,0.3964031,-3.986683,1.128488E-27,0.3964031,-2.524207,1.128488E-27,-0.4479578,-3.986683,0.5,0.3964031,-2.524207,0.5,-0.4479578,0.442839,0.25,-2.08906,0.442839,1.003639E-15,-2.08906,0.442839,0.25,-0.7059959,0.442839,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-2.780593,0.442839,1.003639E-15,-2.08906,-0.7549301,0.25,-2.780593,0.442839,0.25,-2.08906,-3.986683,1.128488E-27,0.3964031,-3.986683,0.5,0.3964031,-3.986683,1.128488E-27,2.085125,-3.986683,0.5,2.085125,-1.061731,0.5,0.3964031,-1.061731,1.128488E-27,0.3964031,-1.061731,0.5,1.240764,-1.061731,1.128488E-27,2.085125,-1.061731,0.25,2.085125,-2.524207,1.128488E-27,2.929486,-3.986683,1.128488E-27,2.085125,-2.524207,0.5,2.929486,-3.986683,0.5,2.085125,0.391807,4.605084E-16,0.2979564,1.182335,4.605084E-16,0.7543677,0.391807,0.25,0.2979564,1.182335,0.125,0.7543677,0.7870709,0.25,0.5261621,0.3918071,4.605084E-16,2.123602,-0.3987205,4.605084E-16,1.66719,0.3918071,0.25,2.123602,-0.3987205,0.25,1.66719,1.182335,0.125,0.7543677,1.182335,4.605084E-16,0.7543677,1.182335,0.25,1.210779,1.182335,4.605084E-16,1.66719,1.182335,0.25,1.66719,-0.3987205,4.605084E-16,0.7543678,-0.3987205,0.25,0.7543678,-0.3987205,4.605084E-16,1.66719,-0.3987205,0.25,1.66719,1.182335,4.605084E-16,1.66719,1.182335,4.605084E-16,0.7543677,0.3918071,4.605084E-16,2.123602,0.391807,4.605084E-16,0.2979564,-0.3987205,4.605084E-16,1.66719,-0.3987205,4.605084E-16,0.7543678,-0.3987205,4.605084E-16,0.7543678,0.391807,4.605084E-16,0.2979564,-0.3987205,0.25,0.7543678,0.391807,0.25,0.2979564,1.182335,4.605084E-16,1.66719,0.3918071,4.605084E-16,2.123602,1.182335,0.25,1.66719,0.3918071,0.25,2.123602,-3.418945,0.25,-1.891587,-3.418945,0.25,-0.9787638,-4.209472,0.25,-2.347998,-3.814209,0.25,-0.7505581,-4.604736,0.25,-0.7505581,-5,0.25,-1.891587,-5,0.25,-0.9787638,0.442839,0.25,-2.08906,0.442839,0.25,-0.7059959,-0.7549301,0.25,-2.780593,-0.7549301,0.25,-0.01446357,-1.952699,0.25,-2.08906,-1.952699,0.25,-0.7059959,-3.814209,0.25,-0.7505581,-4.209472,0.125,-0.5223524,-4.604736,0.25,-0.7505581,-1.061731,0.5,0.3964031,-1.061731,0.5,1.240764,-2.524207,0.5,-0.4479578,-1.792969,0.5,2.507305,-2.524207,0.5,2.929486,-3.986683,0.5,0.3964031,-3.986683,0.5,2.085125,-1.061731,0.5,1.240764,-1.061731,0.25,2.085125,-1.792969,0.5,2.507305,1.182335,0.125,0.7543677,1.182335,0.25,1.210779,0.7870709,0.25,0.5261621,1.182335,0.25,1.66719,0.3918071,0.25,2.123602,1.182335,0.25,1.210779,0.7870709,0.25,0.5261621,0.391807,0.25,0.2979564,-0.3987205,0.25,1.66719,-0.3987205,0.25,0.7543678,-1.061731,1.128488E-27,0.3964031,-2.524207,1.128488E-27,-0.4479578,-1.061731,1.128488E-27,2.085125,-2.524207,1.128488E-27,2.929486,-1.061731,1.128488E-27,2.085125,-2.524207,1.128488E-27,-0.4479578,-3.986683,1.128488E-27,2.085125,-2.524207,1.128488E-27,2.929486,-2.524207,1.128488E-27,-0.4479578,-3.986683,1.128488E-27,0.3964031,-3.986683,1.128488E-27,2.085125,-2.524207,1.128488E-27,-0.4479578,0.442839,1.003639E-15,-2.08906,-0.7549301,1.003639E-15,-2.780593,0.442839,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-0.01446357,0.442839,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-2.780593,-1.952699,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-0.01446357,-0.7549301,1.003639E-15,-2.780593,-1.952699,1.003639E-15,-2.08906,-1.952699,1.003639E-15,-0.7059959,-0.7549301,1.003639E-15,-2.780593 + } + PolygonVertexIndex: *276 { + a: 0,2,-2,3,1,-3,4,1,-4,5,1,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,34,-34,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,76,-76,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,85,-85,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,94,-94,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,103,-103,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,117,-117,119,118,-117,120,118,-120,121,123,-123,124,122,-124,125,124,-124,126,124,-126,127,129,-129,130,132,-132,133,131,-133,134,133,-133,135,134,-133,136,134,-136,137,139,-139,140,142,-142,143,145,-145,146,144,-146,147,144,-147,148,144,-148,149,148,-148,150,152,-152,153,155,-155,156,158,-158,159,161,-161,162,164,-164,165,167,-167,168,170,-170,171,173,-173 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *828 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8770472,0.480404,0,0.8770472,0.480404,0,0.8770472,0.480404,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4412653,0.8604532,0.2547646,0.4412653,0.8604532,0.2547646,0.4412653,0.8604532,0.2547646,0.4160421,0.8770472,-0.240202,0.4160421,0.8770472,-0.240202,0.4160421,0.8770472,-0.240202,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *348 { + a: -13.46041,-7.447191,-16.57273,-9.244085,-13.46041,-3.853401,-16.57273,-2.056506,-19.68504,-3.853401,-19.68504,-7.447191,-8.224648,3.951333E-15,-8.224648,0.984252,-2.779511,3.951333E-15,-2.779511,0.984252,13.32415,3.245404E-12,9.730359,3.245404E-12,13.32415,0.984252,9.730359,0.984252,2.899637,3.951333E-15,-2.545499,3.951333E-15,2.899637,0.984252,-2.545499,0.984252,2.545499,3.951333E-15,-2.899637,3.951333E-15,2.545499,0.984252,-2.899637,0.984252,-15.38065,3.252229E-12,-18.97445,3.252229E-12,-15.38065,0.492126,-18.97445,0.984252,-17.17755,0.984252,-7.447191,3.245404E-12,-7.447191,0.984252,-3.853401,3.245404E-12,-3.853401,0.984252,-9.730359,3.256847E-12,-13.32415,3.256847E-12,-9.730359,0.984252,-13.32415,0.492126,-11.52725,0.984252,7.447191,0.984252,7.447191,3.245404E-12,3.853401,0.984252,3.853401,3.245404E-12,18.97445,3.245404E-12,15.38065,3.245404E-12,18.97445,0.984252,15.38065,0.984252,-7.7246,-3.077461E-15,-14.37311,-3.077461E-15,-7.7246,0.984252,-14.37311,1.968504,-11.04886,1.968504,-2.602443,3.951333E-15,-8.047579,3.951333E-15,-2.602443,0.984252,-8.047579,0.984252,9.488214,4.442865E-27,2.839702,4.442865E-27,9.488214,1.968504,2.839702,1.968504,14.37311,4.442865E-27,7.7246,4.442865E-27,14.37311,1.968504,7.7246,1.968504,8.224648,0.984252,8.224648,3.951333E-15,2.779511,0.984252,2.779511,3.951333E-15,8.047579,3.951333E-15,2.602443,3.951333E-15,8.047579,0.984252,2.602443,0.984252,1.560642,4.442865E-27,1.560642,1.968504,8.209153,4.442865E-27,8.209153,1.968504,-1.560642,1.968504,-1.560642,6.437591E-14,-4.884898,1.968504,-8.209153,6.437591E-14,-8.209153,0.984252,-2.839702,4.442865E-27,-9.488214,4.442865E-27,-2.839702,1.968504,-9.488214,1.968504,-1.922414,2.091074E-15,-5.516203,2.091074E-15,-1.922414,0.984252,-5.516203,0.492126,-3.719309,0.984252,5.516203,1.813025E-15,1.922414,1.813025E-15,5.516203,0.984252,1.922414,0.984252,-2.969952,0.492126,-2.969952,6.696943E-15,-4.766847,0.984252,-6.563742,6.696943E-15,-6.563742,0.984252,2.969952,1.813025E-15,2.969952,0.984252,6.563742,1.813025E-15,6.563742,0.984252,4.654861,6.563742,4.654861,2.969952,1.542548,8.360637,1.542547,1.173057,-1.569766,6.563742,-1.569766,2.969952,2.844433,1.813025E-15,-0.7493569,1.813025E-15,2.844433,0.984252,-0.7493569,0.984252,0.7493569,1.813025E-15,-2.844433,1.813025E-15,0.7493569,0.984252,-2.844433,0.984252,13.46041,-7.447191,13.46041,-3.853401,16.57273,-9.244085,15.01657,-2.954953,18.12888,-2.954953,19.68504,-7.447191,19.68504,-3.853401,-1.743461,-8.224648,-1.743461,-2.779511,2.972166,-10.94722,2.972166,-0.0569432,7.687792,-8.224648,7.687792,-2.779511,-15.01657,3.064472,-16.57273,2.040072,-18.12888,3.064472,4.180043,1.560642,4.180043,4.884898,9.937822,-1.763613,7.058933,9.871282,9.937822,11.53341,15.6956,1.560642,15.6956,8.209153,-6.320467,2.016258,-9.199357,0.08456963,-12.07825,2.016258,-4.899484,-1.996764,-6.455641,-0.9723638,-3.343328,-0.9723638,-4.654861,6.563742,-1.542548,8.360637,-4.654861,4.766847,-3.098704,2.071504,-1.542547,1.173057,1.569766,6.563742,1.569766,2.969952,15.38065,0.984252,18.97445,0.984252,15.38065,3.245404E-12,15.38065,0.984252,18.97445,0.984252,15.38065,3.245404E-12,15.38065,0.984252,18.97445,0.984252,15.38065,3.245404E-12,15.38065,0.984252,18.97445,0.984252,15.38065,3.245404E-12,-2.844433,0.984252,0.7493569,0.984252,-2.844433,1.813025E-15,-2.844433,0.984252,0.7493569,0.984252,-2.844433,1.813025E-15,-2.844433,0.984252,0.7493569,0.984252,-2.844433,1.813025E-15,-2.844433,0.984252,0.7493569,0.984252,-2.844433,1.813025E-15 + } + UVIndex: *276 { + a: 0,2,1,3,1,2,4,1,3,5,1,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,27,29,28,30,28,29,31,33,32,34,32,33,35,34,33,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,76,75,78,80,79,81,79,80,82,84,83,85,83,84,86,85,84,87,89,88,90,88,89,91,93,92,94,92,93,95,94,93,96,98,97,99,97,98,100,102,101,103,101,102,104,103,102,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,117,116,119,118,116,120,118,119,121,123,122,124,122,123,125,124,123,126,124,125,127,129,128,130,132,131,133,131,132,134,133,132,135,134,132,136,134,135,137,139,138,140,142,141,143,145,144,146,144,145,147,144,146,148,144,147,149,148,147,150,152,151,153,155,154,156,158,157,159,161,160,162,164,163,165,167,166,168,170,169,171,173,172 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *92 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh path_stoneEnd, Model::RootNode + C: "OO",4666730653637998030,0 + + ;Geometry::, Model::Mesh path_stoneEnd + C: "OO",5190828295705135531,4666730653637998030 + + ;Material::stoneDark, Model::Mesh path_stoneEnd + C: "OO",3040,4666730653637998030 + + ;Material::stone, Model::Mesh path_stoneEnd + C: "OO",3038,4666730653637998030 + + ;Material::_defaultMat, Model::Mesh path_stoneEnd + C: "OO",3004,4666730653637998030 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_stoneEnd.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneEnd.fbx.import new file mode 100644 index 0000000..5b9fda0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_stoneEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dk48wrulifhat" +path="res://.godot/imported/path_stoneEnd.fbx-6e493c41966bc92916383df604835112.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/path_stoneEnd.fbx" +dest_files=["res://.godot/imported/path_stoneEnd.fbx-6e493c41966bc92916383df604835112.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_wood.fbx b/assets/models/kenney_nature-kit/Models/FBX format/path_wood.fbx new file mode 100644 index 0000000..c98fab2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_wood.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 350 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "path_wood.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "path_wood.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5737983868322324676, "Model::path_wood", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5109873477061094828, "Geometry::", "Mesh" { + Vertices: *360 { + a: 4.065839,0,-2.5,5,0,-2.5,4.065839,0.5,-2.5,5,0.5,-2.5,5,0,2.5,4.065839,0,2.5,5,0.5,2.5,4.065839,0.5,2.5,-5,0,-2.5,-5,0.5,-2.5,-5,0,2.5,-5,0.5,2.5,-1.43201,0,2.445823,-3.297596,0,2.54686,-1.43201,0.25,2.445823,-3.297596,0.25,2.54686,-3.56799,0,-2.445823,-3.56799,0.25,-2.445823,-3.297596,0,2.54686,-3.297596,0.25,2.54686,-0.7127162,0,-2.571904,1.148495,0,-2.409069,-0.7127162,0.5,-2.571904,1.148495,0.5,-2.409069,1.148495,0.5,-2.409069,1.148495,0,-2.409069,0.7127162,0.5,2.571904,0.7127162,0,2.571904,-1.43201,0,2.445823,-1.702404,0,-2.54686,-3.297596,0,2.54686,-3.56799,0,-2.445823,4.065839,0,-2.5,4.065839,0.5,-2.5,4.065839,0,2.5,4.065839,0.5,2.5,5,0,2.5,5,0,-2.5,4.065839,0,2.5,4.065839,0,-2.5,1.148495,0,-2.409069,-0.7127162,0,-2.571904,0.7127162,0,2.571904,-1.148495,0,2.409069,-1.702404,0.25,-2.54686,-1.702404,0,-2.54686,-1.43201,0.25,2.445823,-1.43201,0,2.445823,-4.065839,0,2.5,-4.065839,0,-2.5,-5,0,2.5,-5,0,-2.5,0.7127162,0,2.571904,-1.148495,0,2.409069,0.7127162,0.5,2.571904,-1.148495,0.5,2.409069,-4.065839,0.5,-2.5,-4.065839,0,-2.5,-4.065839,0.5,2.5,-4.065839,0,2.5,-5,0,-2.5,-4.065839,0,-2.5,-5,0.5,-2.5,-4.065839,0.5,-2.5,-4.065839,0,2.5,-5,0,2.5,-4.065839,0.5,2.5,-5,0.5,2.5,-0.7127162,0,-2.571904,-0.7127162,0.5,-2.571904,-1.148495,0,2.409069,-1.148495,0.5,2.409069,-3.56799,0,-2.445823,-1.702404,0,-2.54686,-3.56799,0.25,-2.445823,-1.702404,0.25,-2.54686,5,0.5,-2.5,5,0,-2.5,5,0.5,2.5,5,0,2.5,1.393724,0,-2.428746,1.393724,0.25,-2.428746,1.742506,0,2.559074,1.742506,0.25,2.559074,3.257493,0.25,-2.559074,3.257493,0,-2.559074,3.606276,0.25,2.428746,3.606276,0,2.428746,3.606276,0,2.428746,3.257493,0,-2.559074,1.742506,0,2.559074,1.393724,0,-2.428746,3.606276,0,2.428746,1.742506,0,2.559074,3.606276,0.25,2.428746,1.742506,0.25,2.559074,1.393724,0,-2.428746,3.257493,0,-2.559074,1.393724,0.25,-2.428746,3.257493,0.25,-2.559074,1.148495,0.5,-2.409069,0.7127162,0.5,2.571904,-0.7127162,0.5,-2.571904,-1.148495,0.5,2.409069,5,0.5,-2.5,5,0.5,2.5,4.065839,0.5,-2.5,4.065839,0.5,2.5,-1.43201,0.25,2.445823,-3.297596,0.25,2.54686,-1.702404,0.25,-2.54686,-3.56799,0.25,-2.445823,-4.065839,0.5,-2.5,-4.065839,0.5,2.5,-5,0.5,-2.5,-5,0.5,2.5,3.606276,0.25,2.428746,1.742506,0.25,2.559074,3.257493,0.25,-2.559074,1.393724,0.25,-2.428746 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.05407881,0,0.9985367,0.05407881,0,0.9985367,0.05407881,0,0.9985367,0.05407881,0,0.9985367,0.05407881,0,0.9985367,0.05407881,0,0.9985367,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9975641,0,0.06975647,-0.9975641,0,0.06975647,-0.9975641,0,0.06975647,-0.9975641,0,0.06975647,-0.9975641,0,0.06975647,-0.9975641,0,0.06975647,0.9975641,0,-0.06975647,0.9975641,0,-0.06975647,0.9975641,0,-0.06975647,0.9975641,0,-0.06975647,0.9975641,0,-0.06975647,0.9975641,0,-0.06975647,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.06975647,0,0.9975641,0.06975647,0,0.9975641,0.06975647,0,0.9975641,0.06975647,0,0.9975641,0.06975647,0,0.9975641,0.06975647,0,0.9975641,-0.06975647,0,-0.9975641,-0.06975647,0,-0.9975641,-0.06975647,0,-0.9975641,-0.06975647,0,-0.9975641,-0.06975647,0,-0.9975641,-0.06975647,0,-0.9975641,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: -16.00724,0,-19.68504,0,-16.00724,1.968504,-19.68504,1.968504,19.68504,0,16.00724,0,19.68504,1.968504,16.00724,1.968504,-9.84252,0,-9.84252,1.968504,9.84252,0,9.84252,1.968504,-6.15032,0,-13.50591,0,-6.15032,0.984252,-13.50591,0.984252,-10.37479,0,-10.37479,0.984252,9.310248,0,9.310248,0.984252,3.677797,0,-3.677797,0,3.677797,1.968504,-3.677797,1.968504,9.84252,1.968504,9.84252,0,-9.84252,1.968504,-9.84252,0,-5.637833,9.629226,-6.702376,-10.02701,-12.98266,10.02701,-14.04721,-9.629226,-9.84252,0,-9.84252,1.968504,9.84252,0,9.84252,1.968504,19.68504,9.84252,19.68504,-9.84252,16.00724,9.84252,16.00724,-9.84252,4.521634,-9.484525,-2.805969,-10.12561,2.805969,10.12561,-4.521634,9.484525,10.37479,0.984252,10.37479,0,-9.310248,0.984252,-9.310248,0,-16.00724,9.84252,-16.00724,-9.84252,-19.68504,9.84252,-19.68504,-9.84252,3.677797,0,-3.677797,0,3.677797,1.968504,-3.677797,1.968504,9.84252,1.968504,9.84252,0,-9.84252,1.968504,-9.84252,0,19.68504,0,16.00724,0,19.68504,1.968504,16.00724,1.968504,-16.00724,0,-19.68504,0,-16.00724,1.968504,-19.68504,1.968504,-9.84252,0,-9.84252,1.968504,9.84252,0,9.84252,1.968504,13.50591,0,6.15032,0,13.50591,0.984252,6.15032,0.984252,9.84252,1.968504,9.84252,0,-9.84252,1.968504,-9.84252,0,-9.15594,0,-9.15594,0.984252,10.5291,0,10.5291,0.984252,9.15594,0.984252,9.15594,0,-10.5291,0.984252,-10.5291,0,14.19794,9.561994,12.82478,-10.07509,6.860261,10.07509,5.487103,-9.561994,13.49634,0,6.140747,0,13.49634,0.984252,6.140747,0.984252,-6.140747,0,-13.49634,0,-6.140747,0.984252,-13.49634,0.984252,-4.521634,-9.484525,-2.805969,10.12561,2.805969,-10.12561,4.521634,9.484525,-19.68504,-9.84252,-19.68504,9.84252,-16.00724,-9.84252,-16.00724,9.84252,5.637833,9.629226,12.98266,10.02701,6.702376,-10.02701,14.04721,-9.629226,16.00724,-9.84252,16.00724,9.84252,19.68504,-9.84252,19.68504,9.84252,-14.19794,9.561994,-6.860261,10.07509,-12.82478,-10.07509,-5.487103,-9.561994 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh path_wood, Model::RootNode + C: "OO",5737983868322324676,0 + + ;Geometry::, Model::Mesh path_wood + C: "OO",5109873477061094828,5737983868322324676 + + ;Material::dirtDark, Model::Mesh path_wood + C: "OO",3022,5737983868322324676 + + ;Material::dirt, Model::Mesh path_wood + C: "OO",3020,5737983868322324676 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_wood.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/path_wood.fbx.import new file mode 100644 index 0000000..04699ab --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_wood.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d00gs6gy733xi" +path="res://.godot/imported/path_wood.fbx-19c4eca79ec0a0fa59b0e189c3d7680b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/path_wood.fbx" +dest_files=["res://.godot/imported/path_wood.fbx-19c4eca79ec0a0fa59b0e189c3d7680b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_woodCorner.fbx b/assets/models/kenney_nature-kit/Models/FBX format/path_woodCorner.fbx new file mode 100644 index 0000000..fff7874 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_woodCorner.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 441 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "path_woodCorner.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "path_woodCorner.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5414717447352400144, "Model::path_woodCorner", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5746476869070911235, "Geometry::", "Mesh" { + Vertices: *360 { + a: 2.531611,0,2.066807,1.629282,0,1.825028,2.531611,0.25,2.066807,1.629282,0.25,1.825028,3.644533,0.25,-2.086674,3.644533,0,-2.086674,2.531611,0.25,2.066807,2.531611,0,2.066807,3.644533,0,-2.086674,2.742203,0,-2.328453,2.531611,0,2.066807,1.629282,0,1.825028,2.742203,0,-2.328453,2.742203,0.25,-2.328453,1.629282,0,1.825028,1.629282,0.25,1.825028,2.742203,0,-2.328453,3.644533,0,-2.086674,2.742203,0.25,-2.328453,3.644533,0.25,-2.086674,2.021232,0.25,-1.132151,2.021232,0,-1.132151,-0.2895925,0.5,1.178674,-0.2895925,0,1.178674,2.021232,0,-1.132151,1.360681,0,-1.792702,-0.2895925,0,1.178674,-0.9501436,0,0.5181234,1.360681,0,-1.792702,2.021232,0,-1.132151,1.360681,0.25,-1.792702,2.021232,0.25,-1.132151,1.360681,0.25,-1.792702,-0.9501436,0.5,0.5181234,1.360681,0,-1.792702,-0.9501436,0,0.5181234,-0.2895925,0,1.178674,-0.9501436,0,0.5181234,-0.2895925,0.5,1.178674,-0.9501436,0.5,0.5181234,-1.889951,0,-1.848102,1.706625,0,-3.389597,-1.889951,0.25,-1.848102,1.706625,0.25,-3.389597,2.07463,0,-2.530977,-1.521946,0,-0.9894825,2.07463,0.25,-2.530977,-1.521946,0.25,-0.9894825,2.07463,0,-2.530977,1.706625,0,-3.389597,-1.521946,0,-0.9894825,-1.889951,0,-1.848102,1.706625,0.25,-3.389597,1.706625,0,-3.389597,2.07463,0.25,-2.530977,2.07463,0,-2.530977,-1.889951,0,-1.848102,-1.889951,0.25,-1.848102,-1.521946,0,-0.9894825,-1.521946,0.25,-0.9894825,5,0,2.5,4.065839,0,2.5,5,0.5,2.5,4.065839,0.5,2.5,5,0,2.5,5,0,-2.5,4.065839,0,2.5,4.065839,0,-2.5,5,0.5,-2.5,5,0,-2.5,5,0.5,2.5,5,0,2.5,4.065839,0,-2.5,4.065839,0.5,-2.5,4.065839,0,2.5,4.065839,0.5,2.5,4.065839,0,-2.5,5,0,-2.5,4.065839,0.5,-2.5,5,0.5,-2.5,2.5,0,-4.065839,-2.5,0,-4.065839,2.5,0.5,-4.065839,-2.5,0.5,-4.065839,2.5,0.5,-5,2.5,0,-5,2.5,0.5,-4.065839,2.5,0,-4.065839,2.5,0,-4.065839,2.5,0,-5,-2.5,0,-4.065839,-2.5,0,-5,-2.5,0,-5,2.5,0,-5,-2.5,0.5,-5,2.5,0.5,-5,-2.5,0,-5,-2.5,0.5,-5,-2.5,0,-4.065839,-2.5,0.5,-4.065839,3.644533,0.25,-2.086674,2.531611,0.25,2.066807,2.742203,0.25,-2.328453,1.629282,0.25,1.825028,2.021232,0.25,-1.132151,-0.2895925,0.5,1.178674,1.360681,0.25,-1.792702,-0.9501436,0.5,0.5181234,2.07463,0.25,-2.530977,-1.521946,0.25,-0.9894825,1.706625,0.25,-3.389597,-1.889951,0.25,-1.848102,5,0.5,-2.5,5,0.5,2.5,4.065839,0.5,-2.5,4.065839,0.5,2.5,2.5,0.5,-4.065839,-2.5,0.5,-4.065839,2.5,0.5,-5,-2.5,0.5,-5 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: -0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,-0.258819,0,0.9659258,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0.9659258,0,0.258819,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,-0.9659258,0,-0.258819,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.258819,0,-0.9659258,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.3939419,0,-0.9191353,-0.3939419,0,-0.9191353,-0.3939419,0,-0.9191353,-0.3939419,0,-0.9191353,-0.3939419,0,-0.9191353,-0.3939419,0,-0.9191353,0.3939419,0,0.9191353,0.3939419,0,0.9191353,0.3939419,0,0.9191353,0.3939419,0,0.9191353,0.3939419,0,0.9191353,0.3939419,0,0.9191353,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9191353,0,-0.3939419,0.9191353,0,-0.3939419,0.9191353,0,-0.3939419,0.9191353,0,-0.3939419,0.9191353,0,-0.3939419,0.9191353,0,-0.3939419,-0.9191353,0,0.3939419,-0.9191353,0,0.3939419,-0.9191353,0,0.3939419,-0.9191353,0,0.3939419,-0.9191353,0,0.3939419,-0.9191353,0,0.3939419,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.05393565,0.9970867,-0.05393565,0.05393565,0.9970867,-0.05393565,0.05393565,0.9970867,-0.05393565,0.05393565,0.9970867,-0.05393565,0.05393565,0.9970867,-0.05393565,0.05393565,0.9970867,-0.05393565,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: 11.73338,0,8.05558,0,11.73338,0.984252,8.05558,0.984252,11.649,0.984252,11.649,0,-5.280129,0.984252,-5.280129,0,14.34856,-8.215253,10.79608,-9.167136,9.966973,8.137035,6.414495,7.185151,-11.649,0,-11.649,0.984252,5.280129,0,5.280129,0.984252,-8.05558,0,-11.73338,0,-8.05558,0.984252,-11.73338,0.984252,8.778655,0.984252,8.778655,4.91122E-27,-4.087487,1.968504,-4.087487,4.91122E-27,7.957608,-4.457285,5.357013,-7.05788,-1.140128,4.64045,-3.740723,2.039856,1.202695,5.37103E-13,-2.475102,5.37103E-13,1.202695,0.984252,-2.475102,0.984252,-8.778655,0.984252,4.087487,1.968504,-8.778655,-2.411579E-16,4.087487,-2.411579E-16,2.475102,0,-1.202695,0,2.475102,1.968504,-1.202695,1.968504,3.972739,0,-11.43277,0,3.972739,0.984252,-11.43277,0.984252,11.43277,0,-3.972739,0,11.43277,0.984252,-3.972739,0.984252,8.167836,-9.964477,6.718998,-13.34487,-5.991914,-3.8956,-7.440752,-7.275993,9.618847,0.984252,9.618847,0,5.94105,0.984252,5.94105,0,-9.618847,0,-9.618847,0.984252,-5.94105,0,-5.94105,0.984252,19.68504,0,16.00724,0,19.68504,1.968504,16.00724,1.968504,19.68504,9.84252,19.68504,-9.84252,16.00724,9.84252,16.00724,-9.84252,9.84252,1.968504,9.84252,0,-9.84252,1.968504,-9.84252,0,-9.84252,0,-9.84252,1.968504,9.84252,0,9.84252,1.968504,-16.00724,0,-19.68504,0,-16.00724,1.968504,-19.68504,1.968504,9.84252,0,-9.84252,0,9.84252,1.968504,-9.84252,1.968504,19.68504,1.968504,19.68504,0,16.00724,1.968504,16.00724,0,9.84252,-16.00724,9.84252,-19.68504,-9.84252,-16.00724,-9.84252,-19.68504,9.84252,0,-9.84252,0,9.84252,1.968504,-9.84252,1.968504,-19.68504,0,-19.68504,1.968504,-16.00724,0,-16.00724,1.968504,-14.34856,-8.215253,-9.966973,8.137035,-10.79608,-9.167136,-6.414495,7.185151,-2.475102,-8.678005,-2.475102,4.225729,1.202695,-8.678005,1.202695,4.225729,-8.167836,-9.964477,5.991914,-3.8956,-6.718998,-13.34487,7.440752,-7.275993,-19.68504,-9.84252,-19.68504,9.84252,-16.00724,-9.84252,-16.00724,9.84252,-9.84252,-16.00724,9.84252,-16.00724,-9.84252,-19.68504,9.84252,-19.68504 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh path_woodCorner, Model::RootNode + C: "OO",5414717447352400144,0 + + ;Geometry::, Model::Mesh path_woodCorner + C: "OO",5746476869070911235,5414717447352400144 + + ;Material::dirtDark, Model::Mesh path_woodCorner + C: "OO",3022,5414717447352400144 + + ;Material::dirt, Model::Mesh path_woodCorner + C: "OO",3020,5414717447352400144 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_woodCorner.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/path_woodCorner.fbx.import new file mode 100644 index 0000000..ed6cd79 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_woodCorner.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dpoo3b16nrdmx" +path="res://.godot/imported/path_woodCorner.fbx-7a41b8d068d1b89962de486c200e27df.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/path_woodCorner.fbx" +dest_files=["res://.godot/imported/path_woodCorner.fbx-7a41b8d068d1b89962de486c200e27df.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_woodEnd.fbx b/assets/models/kenney_nature-kit/Models/FBX format/path_woodEnd.fbx new file mode 100644 index 0000000..819a23a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_woodEnd.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 536 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "path_woodEnd.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "path_woodEnd.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5148029244543907710, "Model::path_woodEnd", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4901019859129591187, "Geometry::", "Mesh" { + Vertices: *228 { + a: -5,0,-2.5,-5,0.5,-2.5,-5,0,2.5,-5,0.5,2.5,-1.43201,0,2.445823,-3.297596,0,2.54686,-1.43201,0.25,2.445823,-3.297596,0.25,2.54686,-3.56799,0,-2.445823,-3.56799,0.125,-2.445823,-3.297596,0,2.54686,-3.297596,0.25,2.54686,-0.7127162,0,-2.571904,1.148495,0,-2.409069,-0.7127162,0.5,-2.571904,1.148495,0.5,-2.409069,1.148495,0.5,-2.409069,1.148495,0,-2.409069,0.7127162,0.25,2.571904,0.7127162,0,2.571904,-4.065839,0,2.5,-4.065839,0,-2.5,-5,0,2.5,-5,0,-2.5,0.7127162,0,2.571904,-1.148495,0,2.409069,0.7127162,0.25,2.571904,-1.148495,0.25,2.409069,-4.065839,0.5,-2.5,-4.065839,0,-2.5,-4.065839,0.5,2.5,-4.065839,0,2.5,-5,0,-2.5,-4.065839,0,-2.5,-5,0.5,-2.5,-4.065839,0.5,-2.5,-4.065839,0,2.5,-5,0,2.5,-4.065839,0.5,2.5,-5,0.5,2.5,-0.7127162,0,-2.571904,-0.7127162,0.5,-2.571904,-1.148495,0,2.409069,-1.148495,0.25,2.409069,-3.56799,0,-2.445823,-1.702404,0,-2.54686,-3.56799,0.125,-2.445823,-1.702404,0.125,-2.54686,-1.702404,0.125,-2.54686,-1.702404,0,-2.54686,-1.43201,0.25,2.445823,-1.43201,0,2.445823,-1.43201,0,2.445823,-1.702404,0,-2.54686,-3.297596,0,2.54686,-3.56799,0,-2.445823,-3.297596,0,2.54686,-1.702404,0,-2.54686,1.148495,0,-2.409069,-0.7127162,0,-2.571904,0.7127162,0,2.571904,-1.148495,0,2.409069,0.7127162,0,2.571904,-0.7127162,0,-2.571904,-4.065839,0.5,-2.5,-4.065839,0.5,2.5,-5,0.5,-2.5,-5,0.5,2.5,1.148495,0.5,-2.409069,0.7127162,0.25,2.571904,-0.7127162,0.5,-2.571904,-1.148495,0.25,2.409069,-1.43201,0.25,2.445823,-3.297596,0.25,2.54686,-1.702404,0.125,-2.54686,-3.56799,0.125,-2.445823 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,57,-57,58,60,-60,61,63,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.05407881,0,0.9985367,0.05407881,0,0.9985367,0.05407881,0,0.9985367,0.05407881,0,0.9985367,0.05407881,0,0.9985367,0.05407881,0,0.9985367,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,-0.9985367,0,0.05407881,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.08715574,0,-0.9961947,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0.9961947,0,0.08715574,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,-0.08715574,0,0.9961947,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.9961947,0,-0.08715574,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,-0.05407881,0,-0.9985367,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0.9985367,0,-0.05407881,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.00435235,0.9987524,0.04974759,-0.00435235,0.9987524,0.04974759,-0.00435235,0.9987524,0.04974759,-0.00435235,0.9987524,0.04974759,-0.00435235,0.9987524,0.04974759,-0.00435235,0.9987524,0.04974759,-0.001351548,0.9996877,-0.02495562,-0.001351548,0.9996877,-0.02495562,-0.001351548,0.9996877,-0.02495562,-0.001351548,0.9996877,-0.02495562,-0.001351548,0.9996877,-0.02495562,-0.001351548,0.9996877,-0.02495562 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *152 { + a: -9.84252,0,-9.84252,1.968504,9.84252,0,9.84252,1.968504,-6.15032,0,-13.50591,0,-6.15032,0.984252,-13.50591,0.984252,-10.37479,0,-10.37479,0.492126,9.310248,0,9.310248,0.984252,3.677797,0,-3.677797,0,3.677797,1.968504,-3.677797,1.968504,9.84252,1.968504,9.84252,2.236138E-16,-9.84252,0.984252,-9.84252,2.236138E-16,-16.00724,9.84252,-16.00724,-9.84252,-19.68504,9.84252,-19.68504,-9.84252,3.677797,2.477425E-14,-3.677797,2.477425E-14,3.677797,0.984252,-3.677797,0.984252,9.84252,1.968504,9.84252,0,-9.84252,1.968504,-9.84252,0,19.68504,0,16.00724,0,19.68504,1.968504,16.00724,1.968504,-16.00724,0,-19.68504,0,-16.00724,1.968504,-19.68504,1.968504,-9.84252,0,-9.84252,1.968504,9.84252,0,9.84252,0.984252,13.50591,0,6.15032,0,13.50591,0.492126,6.15032,0.492126,10.37479,0.492126,10.37479,0,-9.310248,0.984252,-9.310248,0,-9.84252,2.236138E-16,-9.84252,0.984252,9.84252,2.236138E-16,-9.84252,2.236138E-16,-9.84252,0.984252,9.84252,2.236138E-16,-9.84252,2.236138E-16,-9.84252,0.984252,9.84252,2.236138E-16,-9.84252,2.236138E-16,-9.84252,0.984252,9.84252,2.236138E-16,16.00724,-9.84252,16.00724,9.84252,19.68504,-9.84252,19.68504,9.84252,3.677797,9.928542,3.677797,-9.781089,-3.677797,9.928542,-3.677797,-9.781089,6.15032,9.331939,13.50591,9.331939,6.15032,-10.35925,13.50591,-10.35925 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,57,56,58,60,59,61,63,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3022, "Material::dirtDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7098039,0.4078431,0.2705882 + P: "DiffuseColor", "Color", "", "A",0.7098039,0.4078431,0.2705882 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh path_woodEnd, Model::RootNode + C: "OO",5148029244543907710,0 + + ;Geometry::, Model::Mesh path_woodEnd + C: "OO",4901019859129591187,5148029244543907710 + + ;Material::dirtDark, Model::Mesh path_woodEnd + C: "OO",3022,5148029244543907710 + + ;Material::_defaultMat, Model::Mesh path_woodEnd + C: "OO",3004,5148029244543907710 + + ;Material::dirt, Model::Mesh path_woodEnd + C: "OO",3020,5148029244543907710 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/path_woodEnd.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/path_woodEnd.fbx.import new file mode 100644 index 0000000..1076e76 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/path_woodEnd.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://benskow2y0cvp" +path="res://.godot/imported/path_woodEnd.fbx-4b73da5831078d2dbe9dd5a83fef4bed.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/path_woodEnd.fbx" +dest_files=["res://.godot/imported/path_woodEnd.fbx-4b73da5831078d2dbe9dd5a83fef4bed.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bush.fbx b/assets/models/kenney_nature-kit/Models/FBX format/plant_bush.fbx new file mode 100644 index 0000000..d823ed0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bush.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 636 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "plant_bush.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "plant_bush.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5348368403344243699, "Model::plant_bush", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5210288565713279807, "Geometry::", "Mesh" { + Vertices: *240 { + a: 0.72,1.564439,1.401439,3.465175E-13,1.486723,1.98,-0.72,1.564439,1.401439,-0.72,1.564439,1.401439,3.465175E-13,1.486723,1.98,0.72,1.564439,1.401439,0.72,1.564439,-1.401439,0.72,1.176272,-0.7364988,-0.72,1.564439,-1.401439,-0.72,1.176272,-0.7364988,-0.72,1.564439,-1.401439,0.72,1.176272,-0.7364988,0.72,1.564439,-1.401439,-0.72,1.176272,-0.7364988,0.72,1.176272,-0.7364988,0,0,0,-0.72,1.176272,-0.7364988,-0.72,1.176272,-0.7364988,0,0,0,0.72,1.176272,-0.7364988,0.72,1.176272,0.7364988,0.72,1.564439,1.401439,-0.72,1.176272,0.7364988,-0.72,1.564439,1.401439,-0.72,1.176272,0.7364988,0.72,1.564439,1.401439,0.72,1.176272,0.7364988,-0.72,1.564439,1.401439,1.401439,2.444436,-0.72,1.401439,2.444436,0.72,0.7364988,1.837925,-0.72,0.7364988,1.837925,0.72,0.7364988,1.837925,-0.72,1.401439,2.444436,0.72,1.401439,2.444436,-0.72,0.7364988,1.837925,0.72,-0.72,1.176272,0.7364988,0,0,0,0.72,1.176272,0.7364988,0.72,1.176272,0.7364988,0,0,0,-0.72,1.176272,0.7364988,-1.401439,2.444436,-0.72,-1.401439,2.444436,0.72,-1.98,2.323006,0,-1.98,2.323006,0,-1.401439,2.444436,0.72,-1.401439,2.444436,-0.72,-0.7364988,1.837925,-0.72,-0.7364988,1.837925,0.72,-1.401439,2.444436,-0.72,-1.401439,2.444436,0.72,-1.401439,2.444436,-0.72,-0.7364988,1.837925,0.72,-0.7364988,1.837925,-0.72,-1.401439,2.444436,0.72,-0.7364988,1.837925,-0.72,0,0,0,-0.7364988,1.837925,0.72,-0.7364988,1.837925,0.72,0,0,0,-0.7364988,1.837925,-0.72,1.401439,2.444436,-0.72,1.98,2.323006,-1.443823E-13,1.401439,2.444436,0.72,1.401439,2.444436,0.72,1.98,2.323006,-1.443823E-13,1.401439,2.444436,-0.72,-2.021352E-13,1.486723,-1.98,0.72,1.564439,-1.401439,-0.72,1.564439,-1.401439,-0.72,1.564439,-1.401439,0.72,1.564439,-1.401439,-2.021352E-13,1.486723,-1.98,0,0,0,0.7364988,1.837925,-0.72,0.7364988,1.837925,0.72,0.7364988,1.837925,0.72,0.7364988,1.837925,-0.72,0,0,0 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,11,13,-11,14,16,-16,17,19,-19,20,22,-22,23,21,-23,24,26,-26,25,27,-25,28,30,-30,31,29,-31,32,34,-34,33,35,-33,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,61,-61,62,64,-64,65,67,-67,68,70,-70,71,73,-73,74,76,-76,77,79,-79 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0,0.9910985,0.1331304,0,0.9910985,0.1331304,0,0.9910985,0.1331304,0,-0.9910985,-0.1331304,0,-0.9910985,-0.1331304,0,-0.9910985,-0.1331304,0,0.8636174,0.5041479,0,0.8636174,0.5041479,0,0.8636174,0.5041479,0,0.8636174,0.5041479,0,0.8636174,0.5041479,0,0.8636174,0.5041479,0,-0.8636174,-0.5041479,0,-0.8636174,-0.5041479,0,-0.8636174,-0.5041479,0,-0.8636174,-0.5041479,0,-0.8636174,-0.5041479,0,-0.8636174,-0.5041479,0,0.5306873,0.8475677,0,0.5306873,0.8475677,0,0.5306873,0.8475677,0,-0.5306873,-0.8475677,0,-0.5306873,-0.8475677,0,-0.5306873,-0.8475677,0,0.8636174,-0.5041479,0,0.8636174,-0.5041479,0,0.8636174,-0.5041479,0,0.8636174,-0.5041479,0,0.8636174,-0.5041479,0,0.8636174,-0.5041479,0,-0.8636174,0.5041479,0,-0.8636174,0.5041479,0,-0.8636174,0.5041479,0,-0.8636174,0.5041479,0,-0.8636174,0.5041479,0,-0.8636174,0.5041479,-0.6739007,0.7388219,0,-0.6739007,0.7388219,0,-0.6739007,0.7388219,0,-0.6739007,0.7388219,0,-0.6739007,0.7388219,0,-0.6739007,0.7388219,0,0.6739007,-0.7388219,0,0.6739007,-0.7388219,0,0.6739007,-0.7388219,0,0.6739007,-0.7388219,0,0.6739007,-0.7388219,0,0.6739007,-0.7388219,0,0,0.5306873,-0.8475677,0,0.5306873,-0.8475677,0,0.5306873,-0.8475677,0,-0.5306873,0.8475677,0,-0.5306873,0.8475677,0,-0.5306873,0.8475677,-0.2054066,0.9786767,0,-0.2054066,0.9786767,0,-0.2054066,0.9786767,0,0.2054066,-0.9786767,0,0.2054066,-0.9786767,0,0.2054066,-0.9786767,0,0.6739007,0.7388219,0,0.6739007,0.7388219,0,0.6739007,0.7388219,0,0.6739007,0.7388219,0,0.6739007,0.7388219,0,0.6739007,0.7388219,0,-0.6739007,-0.7388219,0,-0.6739007,-0.7388219,0,-0.6739007,-0.7388219,0,-0.6739007,-0.7388219,0,-0.6739007,-0.7388219,0,-0.6739007,-0.7388219,0,0.9282451,0.3719692,0,0.9282451,0.3719692,0,0.9282451,0.3719692,0,-0.9282451,-0.3719692,0,-0.9282451,-0.3719692,0,-0.9282451,-0.3719692,0,0.2054066,0.9786767,0,0.2054066,0.9786767,0,0.2054066,0.9786767,0,-0.2054066,-0.9786767,0,-0.2054066,-0.9786767,0,-0.2054066,-0.9786767,0,0,0.9910985,-0.1331304,0,0.9910985,-0.1331304,0,0.9910985,-0.1331304,0,-0.9910985,0.1331304,0,-0.9910985,0.1331304,0,-0.9910985,0.1331304,-0.9282451,0.3719692,0,-0.9282451,0.3719692,0,-0.9282451,0.3719692,0,0.9282451,-0.3719692,0,0.9282451,-0.3719692,0,0.9282451,-0.3719692,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *160 { + a: 2.834646,-4.648383,1.364225E-12,-6.946641,-2.834646,-4.648383,-2.834646,-4.648383,1.364225E-12,-6.946641,2.834646,-4.648383,2.834646,7.87014,2.834646,4.838851,-2.834646,7.87014,-2.834646,4.838851,-2.834646,7.87014,2.834646,4.838851,2.834646,7.87014,-2.834646,4.838851,2.834646,5.463861,0,0,-2.834646,5.463861,-2.834646,5.463861,0,0,2.834646,5.463861,-2.834646,4.838851,-2.834646,7.87014,2.834646,4.838851,2.834646,7.87014,2.834646,4.838851,-2.834646,7.87014,-2.834646,4.838851,2.834646,7.87014,-2.834646,10.56189,2.834646,10.56189,-2.834646,7.018585,2.834646,7.018585,-2.834646,7.018585,2.834646,10.56189,-2.834646,10.56189,2.834646,7.018585,2.834646,5.463861,0,0,-2.834646,5.463861,-2.834646,5.463861,0,0,2.834646,5.463861,-2.834646,-3.42304,2.834646,-3.42304,9.212949E-17,-5.750469,9.212949E-17,-5.750469,2.834646,-3.42304,-2.834646,-3.42304,2.834646,7.018585,-2.834646,7.018585,2.834646,10.56189,-2.834646,10.56189,2.834646,10.56189,-2.834646,7.018585,2.834646,7.018585,-2.834646,10.56189,2.834646,7.795275,0,0,-2.834646,7.795275,-2.834646,7.795275,0,0,2.834646,7.795275,2.834646,-3.42304,5.68414E-13,-5.750469,-2.834646,-3.42304,-2.834646,-3.42304,5.68414E-13,-5.750469,2.834646,-3.42304,7.956154E-13,-6.946641,-2.834646,-4.648383,2.834646,-4.648383,2.834646,-4.648383,-2.834646,-4.648383,7.956154E-13,-6.946641,0,0,-2.834646,7.795275,2.834646,7.795275,2.834646,7.795275,-2.834646,7.795275,0,0 + } + UVIndex: *96 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,11,13,10,14,16,15,17,19,18,20,22,21,23,21,22,24,26,25,25,27,24,28,30,29,31,29,30,32,34,33,33,35,32,36,38,37,39,41,40,42,44,43,45,47,46,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,61,60,62,64,63,65,67,66,68,70,69,71,73,72,74,76,75,77,79,78 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh plant_bush, Model::RootNode + C: "OO",5348368403344243699,0 + + ;Geometry::, Model::Mesh plant_bush + C: "OO",5210288565713279807,5348368403344243699 + + ;Material::grass, Model::Mesh plant_bush + C: "OO",3024,5348368403344243699 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bush.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/plant_bush.fbx.import new file mode 100644 index 0000000..5667d5a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bush.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d3yscke00peps" +path="res://.godot/imported/plant_bush.fbx-92d9ac424b6cc169b3091e020e51e631.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/plant_bush.fbx" +dest_files=["res://.godot/imported/plant_bush.fbx-92d9ac424b6cc169b3091e020e51e631.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushDetailed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushDetailed.fbx new file mode 100644 index 0000000..f29ed79 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushDetailed.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 729 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "plant_bushDetailed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "plant_bushDetailed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5506439592223597049, "Model::plant_bushDetailed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4725065068266215449, "Geometry::", "Mesh" { + Vertices: *696 { + a: 0.6404999,2.36438,1.367016,-1.212811E-12,2.95537,2.351376,-0.6404999,2.36438,1.367016,-0.6404999,2.36438,1.367016,-1.212811E-12,2.95537,2.351376,0.6404999,2.36438,1.367016,0.5185,0.4871594,1.090381,0.2135,0,0.2135,-0.5185,0.4871594,1.090381,-0.2135,0,0.2135,-0.5185,0.4871594,1.090381,0.2135,0,0.2135,0.5185,0.4871594,1.090381,-0.2135,0,0.2135,-1.367016,2.883391,-0.6404999,-1.367016,2.883391,0.6404999,-2.351376,3.604109,-8.662937E-14,-2.351376,3.604109,-8.662937E-14,-1.367016,2.883391,0.6404999,-1.367016,2.883391,-0.6404999,0.2135,0,-0.2135,-0.2135,0,-0.2135,0.8845,1.59774,-0.607258,-0.8845,1.59774,-0.607258,0.8845,1.59774,-0.607258,-0.2135,0,-0.2135,0.2135,0,-0.2135,-0.8845,1.59774,-0.607258,1.985376,1.121317,-0.6404999,3.012719,0.8502742,-0.1286346,1.985376,1.121317,0.6404999,1.985376,1.121317,0.6404999,3.012719,0.8502742,-0.1286346,1.985376,1.121317,-0.6404999,-0.607258,1.929695,-0.8845,-0.607258,1.929695,0.8845,-1.367016,2.883391,-0.6404999,-1.367016,2.883391,0.6404999,-1.367016,2.883391,-0.6404999,-0.607258,1.929695,0.8845,-0.607258,1.929695,-0.8845,-1.367016,2.883391,0.6404999,-0.8845,1.58235,0.607258,0.8845,1.58235,0.607258,-0.6404999,2.36438,1.367016,0.6404999,2.36438,1.367016,-0.6404999,2.36438,1.367016,0.8845,1.58235,0.607258,-0.8845,1.58235,0.607258,0.6404999,2.36438,1.367016,0.2135,0,-0.2135,-0.2135,0,-0.2135,0.8845,1.167952,-1.099438,-0.8845,1.167952,-1.099438,0.8845,1.167952,-1.099438,-0.2135,0,-0.2135,0.2135,0,-0.2135,-0.8845,1.167952,-1.099438,-0.1286346,1.235098,-3.012719,0.6404999,1.628812,-1.985376,-0.6404999,1.628812,-1.985376,-0.6404999,1.628812,-1.985376,0.6404999,1.628812,-1.985376,-0.1286346,1.235098,-3.012719,1.090381,0.3386353,0.5185,2.036731,0.1092038,-0.2308036,1.090381,0.3386353,-0.5185,1.090381,0.3386353,-0.5185,2.036731,0.1092038,-0.2308036,1.090381,0.3386353,0.5185,0.8845,1.167952,-1.099438,-0.8845,1.167952,-1.099438,0.6404999,1.628812,-1.985376,-0.6404999,1.628812,-1.985376,0.6404999,1.628812,-1.985376,-0.8845,1.167952,-1.099438,0.8845,1.167952,-1.099438,-0.6404999,1.628812,-1.985376,1.985376,1.121317,-0.6404999,1.985376,1.121317,0.6404999,1.099438,0.8040489,-0.8845,1.099438,0.8040489,0.8845,1.099438,0.8040489,-0.8845,1.985376,1.121317,0.6404999,1.985376,1.121317,-0.6404999,1.099438,0.8040489,0.8845,-1.099438,1.410612,-0.8845,-1.099438,1.410612,0.8845,-1.985376,1.967224,-0.6404999,-1.985376,1.967224,0.6404999,-1.985376,1.967224,-0.6404999,-1.099438,1.410612,0.8845,-1.099438,1.410612,-0.8845,-1.985376,1.967224,0.6404999,0.8845,1.59774,-0.607258,-0.8845,1.59774,-0.607258,0.6404999,2.387375,-1.367016,-0.6404999,2.387375,-1.367016,0.6404999,2.387375,-1.367016,-0.8845,1.59774,-0.607258,0.8845,1.59774,-0.607258,-0.6404999,2.387375,-1.367016,0.6404999,1.613123,1.985376,0.1286346,1.223202,3.012719,-0.6404999,1.613123,1.985376,-0.6404999,1.613123,1.985376,0.1286346,1.223202,3.012719,0.6404999,1.613123,1.985376,-0.2135,0,0.2135,0.2135,0,0.2135,-0.8845,1.58235,0.607258,0.8845,1.58235,0.607258,-0.8845,1.58235,0.607258,0.2135,0,0.2135,-0.2135,0,0.2135,0.8845,1.58235,0.607258,-1.617082E-12,2.984113,-2.351376,0.6404999,2.387375,-1.367016,-0.6404999,2.387375,-1.367016,-0.6404999,2.387375,-1.367016,0.6404999,2.387375,-1.367016,-1.617082E-12,2.984113,-2.351376,1.367016,1.643532,-0.6404999,2.351376,2.054342,-1.934723E-12,1.367016,1.643532,0.6404999,1.367016,1.643532,0.6404999,2.351376,2.054342,-1.934723E-12,1.367016,1.643532,-0.6404999,0.5185,0.4918974,-1.090381,-0.2308036,0.1586282,-2.036731,-0.5185,0.4918974,-1.090381,-0.5185,0.4918974,-1.090381,-0.2308036,0.1586282,-2.036731,0.5185,0.4918974,-1.090381,0.8845,1.156702,1.099438,0.6404999,1.613123,1.985376,-0.8845,1.156702,1.099438,-0.6404999,1.613123,1.985376,-0.8845,1.156702,1.099438,0.6404999,1.613123,1.985376,0.8845,1.156702,1.099438,-0.6404999,1.613123,1.985376,1.099438,0.8040489,-0.8845,1.099438,0.8040489,0.8845,0.2135,0,-0.2135,0.2135,0,0.2135,0.2135,0,-0.2135,1.099438,0.8040489,0.8845,1.099438,0.8040489,-0.8845,0.2135,0,0.2135,1.367016,1.643532,-0.6404999,1.367016,1.643532,0.6404999,0.607258,1.099926,-0.8845,0.607258,1.099926,0.8845,0.607258,1.099926,-0.8845,1.367016,1.643532,0.6404999,1.367016,1.643532,-0.6404999,0.607258,1.099926,0.8845,0.607258,1.099926,-0.8845,0.607258,1.099926,0.8845,0.2135,0,-0.2135,0.2135,0,0.2135,0.2135,0,-0.2135,0.607258,1.099926,0.8845,0.607258,1.099926,-0.8845,0.2135,0,0.2135,0.5185,0.4918974,-1.090381,-0.5185,0.4918974,-1.090381,0.2135,0,-0.2135,-0.2135,0,-0.2135,0.2135,0,-0.2135,-0.5185,0.4918974,-1.090381,0.5185,0.4918974,-1.090381,-0.2135,0,-0.2135,-0.2135,0,0.2135,0.2135,0,0.2135,-0.8845,1.156702,1.099438,0.8845,1.156702,1.099438,-0.8845,1.156702,1.099438,0.2135,0,0.2135,-0.2135,0,0.2135,0.8845,1.156702,1.099438,-1.099438,1.410612,-0.8845,-0.2135,0,-0.2135,-1.099438,1.410612,0.8845,-0.2135,0,0.2135,-1.099438,1.410612,0.8845,-0.2135,0,-0.2135,-1.099438,1.410612,-0.8845,-0.2135,0,0.2135,0.2308036,0.1571003,2.036731,0.5185,0.4871594,1.090381,-0.5185,0.4871594,1.090381,-0.5185,0.4871594,1.090381,0.5185,0.4871594,1.090381,0.2308036,0.1571003,2.036731,-0.2135,0,0.2135,-0.2135,0,-0.2135,-1.090381,0.5940968,0.5185,-1.090381,0.5940968,-0.5185,-1.090381,0.5940968,0.5185,-0.2135,0,-0.2135,-0.2135,0,0.2135,-1.090381,0.5940968,-0.5185,-1.090381,0.5940968,0.5185,-1.090381,0.5940968,-0.5185,-2.036731,0.1915857,0.2308036,-2.036731,0.1915857,0.2308036,-1.090381,0.5940968,-0.5185,-1.090381,0.5940968,0.5185,-1.985376,1.967224,-0.6404999,-1.985376,1.967224,0.6404999,-3.012719,1.49171,0.1286346,-3.012719,1.49171,0.1286346,-1.985376,1.967224,0.6404999,-1.985376,1.967224,-0.6404999,-0.607258,1.929695,-0.8845,-0.2135,0,-0.2135,-0.607258,1.929695,0.8845,-0.2135,0,0.2135,-0.607258,1.929695,0.8845,-0.2135,0,-0.2135,-0.607258,1.929695,-0.8845,-0.2135,0,0.2135,1.090381,0.3386353,0.5185,1.090381,0.3386353,-0.5185,0.2135,0,0.2135,0.2135,0,-0.2135,0.2135,0,0.2135,1.090381,0.3386353,-0.5185,1.090381,0.3386353,0.5185,0.2135,0,-0.2135 + } + PolygonVertexIndex: *312 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,11,13,-11,14,16,-16,17,19,-19,20,22,-22,23,21,-23,24,26,-26,25,27,-25,28,30,-30,31,33,-33,34,36,-36,37,35,-37,38,40,-40,39,41,-39,42,44,-44,45,43,-45,46,48,-48,47,49,-47,50,52,-52,53,51,-53,54,56,-56,55,57,-55,58,60,-60,61,63,-63,64,66,-66,67,69,-69,70,72,-72,73,71,-73,74,76,-76,75,77,-75,78,80,-80,81,79,-81,82,84,-84,83,85,-83,86,88,-88,89,87,-89,90,92,-92,91,93,-91,94,96,-96,97,95,-97,98,100,-100,99,101,-99,102,104,-104,105,107,-107,108,110,-110,111,109,-111,112,114,-114,113,115,-113,116,118,-118,119,121,-121,122,124,-124,125,127,-127,128,130,-130,131,133,-133,134,136,-136,137,135,-137,138,140,-140,139,141,-139,142,144,-144,145,143,-145,146,148,-148,147,149,-147,150,152,-152,153,151,-153,154,156,-156,155,157,-155,158,160,-160,161,159,-161,162,164,-164,163,165,-163,166,168,-168,169,167,-169,170,172,-172,171,173,-171,174,176,-176,177,175,-177,178,180,-180,179,181,-179,182,184,-184,185,183,-185,186,188,-188,187,189,-187,190,192,-192,193,195,-195,196,198,-198,199,197,-199,200,202,-202,201,203,-201,204,206,-206,207,209,-209,210,212,-212,213,215,-215,216,218,-218,219,217,-219,220,222,-222,221,223,-221,224,226,-226,227,225,-227,228,230,-230,229,231,-229 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *936 { + a: 0,0.8573494,-0.5147349,0,0.8573494,-0.5147349,0,0.8573494,-0.5147349,0,-0.8573494,0.5147349,0,-0.8573494,0.5147349,0,-0.8573494,0.5147349,0,-0.874156,0.4856454,0,-0.874156,0.4856454,0,-0.874156,0.4856454,0,-0.874156,0.4856454,0,-0.874156,0.4856454,0,-0.874156,0.4856454,0,0.874156,-0.4856454,0,0.874156,-0.4856454,0,0.874156,-0.4856454,0,0.874156,-0.4856454,0,0.874156,-0.4856454,0,0.874156,-0.4856454,0.5907531,0.8068524,0,0.5907531,0.8068524,0,0.5907531,0.8068524,0,-0.5907531,-0.8068524,0,-0.5907531,-0.8068524,0,-0.5907531,-0.8068524,0,0,0.2392873,0.9709488,0,0.2392873,0.9709488,0,0.2392873,0.9709488,0,0.2392873,0.9709488,0,0.2392873,0.9709488,0,0.2392873,0.9709488,0,-0.2392873,-0.9709488,0,-0.2392873,-0.9709488,0,-0.2392873,-0.9709488,0,-0.2392873,-0.9709488,0,-0.2392873,-0.9709488,0,-0.2392873,-0.9709488,0.2551003,0.9669146,0,0.2551003,0.9669146,0,0.2551003,0.9669146,0,-0.2551003,-0.9669146,0,-0.2551003,-0.9669146,0,-0.2551003,-0.9669146,0,0.7821469,0.6230941,0,0.7821469,0.6230941,0,0.7821469,0.6230941,0,0.7821469,0.6230941,0,0.7821469,0.6230941,0,0.7821469,0.6230941,0,-0.7821469,-0.6230941,0,-0.7821469,-0.6230941,0,-0.7821469,-0.6230941,0,-0.7821469,-0.6230941,0,-0.7821469,-0.6230941,0,-0.7821469,-0.6230941,0,0,0.6968194,-0.7172465,0,0.6968194,-0.7172465,0,0.6968194,-0.7172465,0,0.6968194,-0.7172465,0,0.6968194,-0.7172465,0,0.6968194,-0.7172465,0,-0.6968194,0.7172465,0,-0.6968194,0.7172465,0,-0.6968194,0.7172465,0,-0.6968194,0.7172465,0,-0.6968194,0.7172465,0,-0.6968194,0.7172465,0,0.6043454,0.7967223,0,0.6043454,0.7967223,0,0.6043454,0.7967223,0,0.6043454,0.7967223,0,0.6043454,0.7967223,0,0.6043454,0.7967223,0,-0.6043454,-0.7967223,0,-0.6043454,-0.7967223,0,-0.6043454,-0.7967223,0,-0.6043454,-0.7967223,0,-0.6043454,-0.7967223,0,-0.6043454,-0.7967223,0,0.9337767,-0.3578562,0,0.9337767,-0.3578562,0,0.9337767,-0.3578562,0,-0.9337767,0.3578562,0,-0.9337767,0.3578562,0,-0.9337767,0.3578562,-0.2356129,-0.971847,0,-0.2356129,-0.971847,0,-0.2356129,-0.971847,0,0.2356129,0.971847,0,0.2356129,0.971847,0,0.2356129,0.971847,0,0,0.8871461,0.4614889,0,0.8871461,0.4614889,0,0.8871461,0.4614889,0,0.8871461,0.4614889,0,0.8871461,0.4614889,0,0.8871461,0.4614889,0,-0.8871461,-0.4614889,0,-0.8871461,-0.4614889,0,-0.8871461,-0.4614889,0,-0.8871461,-0.4614889,0,-0.8871461,-0.4614889,0,-0.8871461,-0.4614889,-0.3371486,0.9414514,0,-0.3371486,0.9414514,0,-0.3371486,0.9414514,0,-0.3371486,0.9414514,0,-0.3371486,0.9414514,0,-0.3371486,0.9414514,0,0.3371486,-0.9414514,0,0.3371486,-0.9414514,0,0.3371486,-0.9414514,0,0.3371486,-0.9414514,0,0.3371486,-0.9414514,0,0.3371486,-0.9414514,0,0.5319913,0.8467498,0,0.5319913,0.8467498,0,0.5319913,0.8467498,0,0.5319913,0.8467498,0,0.5319913,0.8467498,0,0.5319913,0.8467498,0,-0.5319913,-0.8467498,0,-0.5319913,-0.8467498,0,-0.5319913,-0.8467498,0,-0.5319913,-0.8467498,0,-0.5319913,-0.8467498,0,-0.5319913,-0.8467498,0,0,0.6933421,0.7206085,0,0.6933421,0.7206085,0,0.6933421,0.7206085,0,0.6933421,0.7206085,0,0.6933421,0.7206085,0,0.6933421,0.7206085,0,-0.6933421,-0.7206085,0,-0.6933421,-0.7206085,0,-0.6933421,-0.7206085,0,-0.6933421,-0.7206085,0,-0.6933421,-0.7206085,0,-0.6933421,-0.7206085,0,0.9349253,0.3548447,0,0.9349253,0.3548447,0,0.9349253,0.3548447,0,-0.9349253,-0.3548447,0,-0.9349253,-0.3548447,0,-0.9349253,-0.3548447,0,0.2414794,-0.9704059,0,0.2414794,-0.9704059,0,0.2414794,-0.9704059,0,0.2414794,-0.9704059,0,0.2414794,-0.9704059,0,0.2414794,-0.9704059,0,-0.2414794,0.9704059,0,-0.2414794,0.9704059,0,-0.2414794,0.9704059,0,-0.2414794,0.9704059,0,-0.2414794,0.9704059,0,-0.2414794,0.9704059,0,0.8551376,0.5184011,0,0.8551376,0.5184011,0,0.8551376,0.5184011,0,-0.8551376,-0.5184011,0,-0.8551376,-0.5184011,0,-0.8551376,-0.5184011,-0.3851426,0.9228571,0,-0.3851426,0.9228571,0,-0.3851426,0.9228571,0,0.3851426,-0.9228571,0,0.3851426,-0.9228571,0,0.3851426,-0.9228571,0,0,-0.9432205,0.3321673,0,-0.9432205,0.3321673,0,-0.9432205,0.3321673,0,0.9432205,-0.3321673,0,0.9432205,-0.3321673,0,0.9432205,-0.3321673,0,0.8889626,-0.4579798,0,0.8889626,-0.4579798,0,0.8889626,-0.4579798,0,0.8889626,-0.4579798,0,0.8889626,-0.4579798,0,0.8889626,-0.4579798,0,-0.8889626,0.4579798,0,-0.8889626,0.4579798,0,-0.8889626,0.4579798,0,-0.8889626,0.4579798,0,-0.8889626,0.4579798,0,-0.8889626,0.4579798,-0.6720552,0.7405011,0,-0.6720552,0.7405011,0,-0.6720552,0.7405011,0,-0.6720552,0.7405011,0,-0.6720552,0.7405011,0,-0.6720552,0.7405011,0,0.6720552,-0.7405011,0,0.6720552,-0.7405011,0,0.6720552,-0.7405011,0,0.6720552,-0.7405011,0,0.6720552,-0.7405011,0,0.6720552,-0.7405011,0,-0.5818914,0.8132665,0,-0.5818914,0.8132665,0,-0.5818914,0.8132665,0,-0.5818914,0.8132665,0,-0.5818914,0.8132665,0,-0.5818914,0.8132665,0,0.5818914,-0.8132665,0,0.5818914,-0.8132665,0,0.5818914,-0.8132665,0,0.5818914,-0.8132665,0,0.5818914,-0.8132665,0,0.5818914,-0.8132665,0,-0.9414903,0.3370401,0,-0.9414903,0.3370401,0,-0.9414903,0.3370401,0,-0.9414903,0.3370401,0,-0.9414903,0.3370401,0,-0.9414903,0.3370401,0,0.9414903,-0.3370401,0,0.9414903,-0.3370401,0,0.9414903,-0.3370401,0,0.9414903,-0.3370401,0,0.9414903,-0.3370401,0,0.9414903,-0.3370401,0,0,-0.8721479,-0.4892423,0,-0.8721479,-0.4892423,0,-0.8721479,-0.4892423,0,-0.8721479,-0.4892423,0,-0.8721479,-0.4892423,0,-0.8721479,-0.4892423,0,0.8721479,0.4892423,0,0.8721479,0.4892423,0,0.8721479,0.4892423,0,0.8721479,0.4892423,0,0.8721479,0.4892423,0,0.8721479,0.4892423,0,0.6080567,-0.7938935,0,0.6080567,-0.7938935,0,0.6080567,-0.7938935,0,0.6080567,-0.7938935,0,0.6080567,-0.7938935,0,0.6080567,-0.7938935,0,-0.6080567,0.7938935,0,-0.6080567,0.7938935,0,-0.6080567,0.7938935,0,-0.6080567,0.7938935,0,-0.6080567,0.7938935,0,-0.6080567,0.7938935,0.8468346,0.5318563,0,0.8468346,0.5318563,0,0.8468346,0.5318563,0,0.8468346,0.5318563,0,0.8468346,0.5318563,0,0.8468346,0.5318563,0,-0.8468346,-0.5318563,0,-0.8468346,-0.5318563,0,-0.8468346,-0.5318563,0,-0.8468346,-0.5318563,0,-0.8468346,-0.5318563,0,-0.8468346,-0.5318563,0,0,-0.9442196,-0.3293162,0,-0.9442196,-0.3293162,0,-0.9442196,-0.3293162,0,0.9442196,0.3293162,0,0.9442196,0.3293162,0,0.9442196,0.3293162,-0.5609003,-0.8278834,0,-0.5609003,-0.8278834,0,-0.5609003,-0.8278834,0,-0.5609003,-0.8278834,0,-0.5609003,-0.8278834,0,-0.5609003,-0.8278834,0,0.5609003,0.8278834,0,0.5609003,0.8278834,0,0.5609003,0.8278834,0,0.5609003,0.8278834,0,0.5609003,0.8278834,0,0.5609003,0.8278834,0,0.391398,-0.9202214,0,0.391398,-0.9202214,0,0.391398,-0.9202214,0,-0.391398,0.9202214,0,-0.391398,0.9202214,0,-0.391398,0.9202214,0,-0.4200451,0.9075032,0,-0.4200451,0.9075032,0,-0.4200451,0.9075032,0,0.4200451,-0.9075032,0,0.4200451,-0.9075032,0,0.4200451,-0.9075032,0,0.9798098,0.199932,0,0.9798098,0.199932,0,0.9798098,0.199932,0,0.9798098,0.199932,0,0.9798098,0.199932,0,0.9798098,0.199932,0,-0.9798098,-0.199932,0,-0.9798098,-0.199932,0,-0.9798098,-0.199932,0,-0.9798098,-0.199932,0,-0.9798098,-0.199932,0,-0.9798098,-0.199932,0,0.3602514,-0.9328553,0,0.3602514,-0.9328553,0,0.3602514,-0.9328553,0,0.3602514,-0.9328553,0,0.3602514,-0.9328553,0,0.3602514,-0.9328553,0,-0.3602514,0.9328553,0,-0.3602514,0.9328553,0,-0.3602514,0.9328553,0,-0.3602514,0.9328553,0,-0.3602514,0.9328553,0,-0.3602514,0.9328553,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *464 { + a: -2.521653,9.405665,4.77522E-12,13.92591,2.521653,9.405665,2.521653,9.405665,4.77522E-12,13.92591,-2.521653,9.405665,2.041339,4.684054,0.8405512,0.7347728,-2.041339,4.684054,-0.8405512,0.7347728,-2.041339,4.684054,0.8405512,0.7347728,2.041339,4.684054,-0.8405512,0.7347728,2.521653,11.04863,-2.521653,11.04863,3.406029E-13,15.85178,3.406029E-13,15.85178,-2.521653,11.04863,2.521653,11.04863,0.8405512,0.2011332,-0.8405512,0.2011332,3.482284,6.679655,-3.482284,6.679655,3.482284,6.679655,-0.8405512,0.2011332,0.8405512,0.2011332,-3.482284,6.679655,2.521653,-6.431654,0.5064355,-10.61471,-2.521653,-6.431654,-2.521653,-6.431654,0.5064355,-10.61471,2.521653,-6.431654,3.482284,7.431827,-3.482284,7.431827,2.521653,12.23234,-2.521653,12.23234,2.521653,12.23234,-3.482284,7.431827,3.482284,7.431827,-2.521653,12.23234,3.482284,6.134192,-3.482284,6.134192,2.521653,10.4268,-2.521653,10.4268,2.521653,10.4268,-3.482284,6.134192,3.482284,6.134192,-2.521653,10.4268,0.8405512,0.5079833,-0.8405512,0.5079833,3.482284,6.279424,-3.482284,6.279424,3.482284,6.279424,-0.8405512,0.5079833,0.8405512,0.5079833,-3.482284,6.279424,0.5064355,-9.335507,-2.521653,-5.004004,2.521653,-5.004004,2.521653,-5.004004,-2.521653,-5.004004,0.5064355,-9.335507,2.041339,-3.857862,-0.9086755,-7.691578,-2.041339,-3.857862,-2.041339,-3.857862,-0.9086755,-7.691578,2.041339,-3.857862,3.482284,5.962042,-3.482284,5.962042,2.521653,9.893688,-2.521653,9.893688,2.521653,9.893688,-3.482284,5.962042,3.482284,5.962042,-2.521653,9.893688,-2.521653,8.847186,2.521653,8.847186,-3.482284,5.142328,3.482284,5.142328,-3.482284,5.142328,2.521653,8.847186,-2.521653,8.847186,3.482284,5.142328,3.482284,6.619614,-3.482284,6.619614,2.521653,10.73883,-2.521653,10.73883,2.521653,10.73883,-3.482284,6.619614,3.482284,6.619614,-2.521653,10.73883,3.482284,6.190481,-3.482284,6.190481,2.521653,10.50462,-2.521653,10.50462,2.521653,10.50462,-3.482284,6.190481,3.482284,6.190481,-2.521653,10.50462,2.521653,-5.054212,0.5064355,-9.380394,-2.521653,-5.054212,-2.521653,-5.054212,0.5064355,-9.380394,2.521653,-5.054212,0.8405512,0.2029758,-0.8405512,0.2029758,3.482284,6.622687,-3.482284,6.622687,3.482284,6.622687,-0.8405512,0.2029758,0.8405512,0.2029758,-3.482284,6.622687,-6.36647E-12,14.00676,2.521653,9.47482,-2.521653,9.47482,-2.521653,9.47482,2.521653,9.47482,-6.36647E-12,14.00676,-2.521653,7.458875,-7.616826E-12,11.65826,2.521653,7.458875,2.521653,7.458875,-7.616826E-12,11.65826,-2.521653,7.458875,2.041339,-3.405818,-0.9086755,-7.355886,-2.041339,-3.405818,-2.041339,-3.405818,-0.9086755,-7.355886,2.041339,-3.405818,-3.482284,5.933485,-2.521653,9.857097,3.482284,5.933485,2.521653,9.857097,3.482284,5.933485,-2.521653,9.857097,-3.482284,5.933485,2.521653,9.857097,-3.482284,5.332677,3.482284,5.332677,-0.8405512,0.622429,0.8405512,0.622429,-0.8405512,0.622429,3.482284,5.332677,-3.482284,5.332677,0.8405512,0.622429,-2.521653,8.142146,2.521653,8.142146,-3.482284,4.464174,3.482284,4.464174,-3.482284,4.464174,2.521653,8.142146,-2.521653,8.142146,3.482284,4.464174,-3.482284,4.882836,3.482284,4.882836,-0.8405512,0.2832994,0.8405512,0.2832994,-0.8405512,0.2832994,3.482284,4.882836,-3.482284,4.882836,0.8405512,0.2832994,-2.041339,4.691459,2.041339,4.691459,-0.8405512,0.733085,0.8405512,0.733085,-0.8405512,0.733085,2.041339,4.691459,-2.041339,4.691459,0.8405512,0.733085,0.8405512,0.5111029,-0.8405512,0.5111029,3.482284,6.247317,-3.482284,6.247317,3.482284,6.247317,-0.8405512,0.5111029,0.8405512,0.5111029,-3.482284,6.247317,3.482284,7.005109,0.8405512,0.4470525,-3.482284,7.005109,-0.8405512,0.4470525,-3.482284,7.005109,0.8405512,0.4470525,3.482284,7.005109,-0.8405512,0.4470525,-0.9086755,-7.36766,-2.041339,-3.421771,2.041339,-3.421771,2.041339,-3.421771,-2.041339,-3.421771,-0.9086755,-7.36766,0.8405512,0.6958783,-0.8405512,0.6958783,2.041339,4.865896,-2.041339,4.865896,2.041339,4.865896,-0.8405512,0.6958783,0.8405512,0.6958783,-2.041339,4.865896,-2.041339,-3.034897,2.041339,-3.034897,-0.9086755,-7.08369,-0.9086755,-7.08369,2.041339,-3.034897,-2.041339,-3.034897,-2.521653,-3.840205,2.521653,-3.840205,0.5064355,-8.297112,0.5064355,-8.297112,2.521653,-3.840205,-2.521653,-3.840205,3.482284,7.92183,0.8405512,0.1680531,-3.482284,7.92183,-0.8405512,0.1680531,-3.482284,7.92183,0.8405512,0.1680531,3.482284,7.92183,-0.8405512,0.1680531,-2.041339,4.484888,2.041339,4.484888,-0.8405512,0.7841126,0.8405512,0.7841126,-0.8405512,0.7841126,2.041339,4.484888,-2.041339,4.484888,0.8405512,0.7841126 + } + UVIndex: *312 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,11,13,10,14,16,15,17,19,18,20,22,21,23,21,22,24,26,25,25,27,24,28,30,29,31,33,32,34,36,35,37,35,36,38,40,39,39,41,38,42,44,43,45,43,44,46,48,47,47,49,46,50,52,51,53,51,52,54,56,55,55,57,54,58,60,59,61,63,62,64,66,65,67,69,68,70,72,71,73,71,72,74,76,75,75,77,74,78,80,79,81,79,80,82,84,83,83,85,82,86,88,87,89,87,88,90,92,91,91,93,90,94,96,95,97,95,96,98,100,99,99,101,98,102,104,103,105,107,106,108,110,109,111,109,110,112,114,113,113,115,112,116,118,117,119,121,120,122,124,123,125,127,126,128,130,129,131,133,132,134,136,135,137,135,136,138,140,139,139,141,138,142,144,143,145,143,144,146,148,147,147,149,146,150,152,151,153,151,152,154,156,155,155,157,154,158,160,159,161,159,160,162,164,163,163,165,162,166,168,167,169,167,168,170,172,171,171,173,170,174,176,175,177,175,176,178,180,179,179,181,178,182,184,183,185,183,184,186,188,187,187,189,186,190,192,191,193,195,194,196,198,197,199,197,198,200,202,201,201,203,200,204,206,205,207,209,208,210,212,211,213,215,214,216,218,217,219,217,218,220,222,221,221,223,220,224,226,225,227,225,226,228,230,229,229,231,228 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *104 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh plant_bushDetailed, Model::RootNode + C: "OO",5506439592223597049,0 + + ;Geometry::, Model::Mesh plant_bushDetailed + C: "OO",4725065068266215449,5506439592223597049 + + ;Material::grass, Model::Mesh plant_bushDetailed + C: "OO",3024,5506439592223597049 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushDetailed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushDetailed.fbx.import new file mode 100644 index 0000000..3bfb6d0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushDetailed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dyd466mi3wdae" +path="res://.godot/imported/plant_bushDetailed.fbx-e6ee651f8cfc4b0134775720885eb3f2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/plant_bushDetailed.fbx" +dest_files=["res://.godot/imported/plant_bushDetailed.fbx-e6ee651f8cfc4b0134775720885eb3f2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLarge.fbx b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLarge.fbx new file mode 100644 index 0000000..f710d7e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLarge.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 813 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "plant_bushLarge.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "plant_bushLarge.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5400587364536050608, "Model::plant_bushLarge", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4912356840669542661, "Geometry::", "Mesh" { + Vertices: *396 { + a: 0,2.775282E-15,0.72036,3.221209E-08,0.6196179,1.08054,0.62385,3.15654E-15,0.36018,0.9357751,0.6196179,0.54027,0.62385,3.15654E-15,0.36018,3.221209E-08,0.6196179,1.08054,0,2.775282E-15,0.72036,0.9357751,0.6196179,0.54027,-0.935775,1.04052,-0.54027,-2.887646E-14,1.04052,-1.08054,-1.453571,2.2011,-0.8392194,0,2.2011,-1.678439,-1.453571,2.2011,-0.8392194,-2.887646E-14,1.04052,-1.08054,-0.935775,1.04052,-0.54027,0,2.2011,-1.678439,1.453571,1.31073,-0.8392194,0.935775,1.352792,-1.62081,-8.912083E-09,1.31073,-1.678439,-8.912083E-09,1.31073,-1.678439,0.935775,1.352792,-1.62081,1.453571,1.31073,-0.8392194,0,2.2011,-1.678439,-0.935775,2.34233,-1.62081,-1.453571,2.2011,-0.8392194,-1.453571,2.2011,-0.8392194,-0.935775,2.34233,-1.62081,0,2.2011,-1.678439,0,-1.127085E-31,-0.72036,-2.887646E-14,1.04052,-1.08054,-0.62385,3.410138E-16,-0.36018,-0.935775,1.04052,-0.54027,-0.62385,3.410138E-16,-0.36018,-2.887646E-14,1.04052,-1.08054,0,-1.127085E-31,-0.72036,-0.935775,1.04052,-0.54027,0.9357751,1.352792,1.62081,1.453571,1.31073,0.8392194,4.112415E-08,1.31073,1.678439,4.112415E-08,1.31073,1.678439,1.453571,1.31073,0.8392194,0.9357751,1.352792,1.62081,-2.887646E-14,0.6196179,-1.08054,0.935775,0.6196179,-0.54027,-8.912083E-09,1.31073,-1.678439,1.453571,1.31073,-0.8392194,-8.912083E-09,1.31073,-1.678439,0.935775,0.6196179,-0.54027,-2.887646E-14,0.6196179,-1.08054,1.453571,1.31073,-0.8392194,0.935775,1.04052,-0.54027,0.62385,2.852308E-15,-0.36018,0.935775,1.04052,0.54027,0.62385,3.15654E-15,0.36018,0.935775,1.04052,0.54027,0.62385,2.852308E-15,-0.36018,0.935775,1.04052,-0.54027,0.62385,3.15654E-15,0.36018,1.453571,2.2011,-0.8392194,0.935775,1.04052,-0.54027,1.453571,2.2011,0.8392194,0.935775,1.04052,0.54027,1.453571,2.2011,0.8392194,0.935775,1.04052,-0.54027,1.453571,2.2011,-0.8392194,0.935775,1.04052,0.54027,-2.887646E-14,1.04052,1.08054,-0.935775,1.04052,0.54027,0,2.2011,1.678439,-1.453571,2.2011,0.8392194,0,2.2011,1.678439,-0.935775,1.04052,0.54027,-2.887646E-14,1.04052,1.08054,-1.453571,2.2011,0.8392194,0,-1.127085E-31,-0.72036,0.62385,2.852308E-15,-0.36018,-2.887646E-14,0.6196179,-1.08054,0.935775,0.6196179,-0.54027,-2.887646E-14,0.6196179,-1.08054,0.62385,2.852308E-15,-0.36018,0,-1.127085E-31,-0.72036,0.935775,0.6196179,-0.54027,-0.935775,0.6196179,-0.54027,-0.935775,0.6196179,0.54027,-0.62385,3.410138E-16,-0.36018,-0.62385,-7.70262E-17,0.36018,-0.62385,3.410138E-16,-0.36018,-0.935775,0.6196179,0.54027,-0.935775,0.6196179,-0.54027,-0.62385,-7.70262E-17,0.36018,-1.453571,1.31073,-0.8392194,-1.453571,1.31073,0.8392194,-0.935775,0.6196179,-0.54027,-0.935775,0.6196179,0.54027,-0.935775,0.6196179,-0.54027,-1.453571,1.31073,0.8392194,-1.453571,1.31073,-0.8392194,-0.935775,0.6196179,0.54027,1.453571,2.2011,0.8392194,1.87155,2.37133,2.887646E-14,1.453571,2.2011,-0.8392194,1.453571,2.2011,-0.8392194,1.87155,2.37133,2.887646E-14,1.453571,2.2011,0.8392194,-0.935775,2.42933,1.62081,0,2.2011,1.678439,-1.453571,2.2011,0.8392194,-1.453571,2.2011,0.8392194,0,2.2011,1.678439,-0.935775,2.42933,1.62081,-0.62385,-7.70262E-17,0.36018,-0.935775,1.04052,0.54027,0,2.775282E-15,0.72036,-2.887646E-14,1.04052,1.08054,0,2.775282E-15,0.72036,-0.935775,1.04052,0.54027,-0.62385,-7.70262E-17,0.36018,-2.887646E-14,1.04052,1.08054,0.9357751,0.6196179,0.54027,3.221209E-08,0.6196179,1.08054,1.453571,1.31073,0.8392194,4.112415E-08,1.31073,1.678439,1.453571,1.31073,0.8392194,3.221209E-08,0.6196179,1.08054,0.9357751,0.6196179,0.54027,4.112415E-08,1.31073,1.678439,-1.453571,1.31073,0.8392194,-1.453571,1.31073,-0.8392194,-1.87155,1.236792,2.78965E-08,-1.87155,1.236792,2.78965E-08,-1.453571,1.31073,-0.8392194,-1.453571,1.31073,0.8392194 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,21,-21,22,24,-24,25,27,-27,28,30,-30,31,29,-31,32,34,-34,33,35,-33,36,38,-38,39,41,-41,42,44,-44,45,43,-45,46,48,-48,47,49,-47,50,52,-52,53,51,-53,54,56,-56,55,57,-55,58,60,-60,61,59,-61,62,64,-64,63,65,-63,66,68,-68,69,67,-69,70,72,-72,71,73,-71,74,76,-76,77,75,-77,78,80,-80,79,81,-79,82,84,-84,85,83,-85,86,88,-88,87,89,-87,90,92,-92,93,91,-93,94,96,-96,95,97,-95,98,100,-100,101,103,-103,104,106,-106,107,109,-109,110,112,-112,113,111,-113,114,116,-116,115,117,-115,118,120,-120,121,119,-121,122,124,-124,123,125,-123,126,128,-128,129,131,-131 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0.4466018,-0.4496523,0.773537,0.4466018,-0.4496523,0.773537,0.4466018,-0.4496523,0.773537,0.4466018,-0.4496523,0.773537,0.4466018,-0.4496523,0.773537,0.4466018,-0.4496523,0.773537,-0.4466018,0.4496523,-0.773537,-0.4466018,0.4496523,-0.773537,-0.4466018,0.4496523,-0.773537,-0.4466018,0.4496523,-0.773537,-0.4466018,0.4496523,-0.773537,-0.4466018,0.4496523,-0.773537,-0.4566159,-0.4074406,-0.7908818,-0.4566159,-0.4074406,-0.7908818,-0.4566159,-0.4074406,-0.7908818,-0.4566159,-0.4074406,-0.7908818,-0.4566159,-0.4074406,-0.7908818,-0.4566159,-0.4074406,-0.7908818,0.4566159,0.4074406,0.7908818,0.4566159,0.4074406,0.7908818,0.4566159,0.4074406,0.7908818,0.4566159,0.4074406,0.7908818,0.4566159,0.4074406,0.7908818,0.4566159,0.4074406,0.7908818,0.05006309,-0.9949747,-0.08671181,0.05006309,-0.9949747,-0.08671181,0.05006309,-0.9949747,-0.08671181,-0.05006309,0.9949747,0.08671181,-0.05006309,0.9949747,0.08671181,-0.05006309,0.9949747,0.08671181,-0.160054,-0.9473811,-0.2772216,-0.160054,-0.9473811,-0.2772216,-0.160054,-0.9473811,-0.2772216,0.160054,0.9473811,0.2772216,0.160054,0.9473811,0.2772216,0.160054,0.9473811,0.2772216,-0.4789424,-0.2871528,-0.8295525,-0.4789424,-0.2871528,-0.8295525,-0.4789424,-0.2871528,-0.8295525,-0.4789424,-0.2871528,-0.8295525,-0.4789424,-0.2871528,-0.8295525,-0.4789424,-0.2871528,-0.8295525,0.4789424,0.2871528,0.8295525,0.4789424,0.2871528,0.8295525,0.4789424,0.2871528,0.8295525,0.4789424,0.2871528,0.8295525,0.4789424,0.2871528,0.8295525,0.4789424,0.2871528,0.8295525,0.05006308,-0.9949747,0.08671179,0.05006308,-0.9949747,0.08671179,0.05006308,-0.9949747,0.08671179,-0.05006308,0.9949747,-0.08671179,-0.05006308,0.9949747,-0.08671179,-0.05006308,0.9949747,-0.08671179,0.4001496,-0.599601,-0.6930794,0.4001496,-0.599601,-0.6930794,0.4001496,-0.599601,-0.6930794,0.4001496,-0.599601,-0.6930794,0.4001496,-0.599601,-0.6930794,0.4001496,-0.599601,-0.6930794,-0.4001496,0.599601,0.6930794,-0.4001496,0.599601,0.6930794,-0.4001496,0.599601,0.6930794,-0.4001496,0.599601,0.6930794,-0.4001496,0.599601,0.6930794,-0.4001496,0.599601,0.6930794,0.9578848,-0.2871528,0,0.9578848,-0.2871528,0,0.9578848,-0.2871528,0,0.9578848,-0.2871528,0,0.9578848,-0.2871528,0,0.9578848,-0.2871528,0,-0.9578848,0.2871528,0,-0.9578848,0.2871528,0,-0.9578848,0.2871528,0,-0.9578848,0.2871528,0,-0.9578848,0.2871528,0,-0.9578848,0.2871528,0,0.9132317,-0.4074408,0,0.9132317,-0.4074408,0,0.9132317,-0.4074408,0,0.9132317,-0.4074408,0,0.9132317,-0.4074408,0,0.9132317,-0.4074408,0,-0.9132317,0.4074408,0,-0.9132317,0.4074408,0,-0.9132317,0.4074408,0,-0.9132317,0.4074408,0,-0.9132317,0.4074408,0,-0.9132317,0.4074408,0,-0.4566159,-0.4074406,0.7908818,-0.4566159,-0.4074406,0.7908818,-0.4566159,-0.4074406,0.7908818,-0.4566159,-0.4074406,0.7908818,-0.4566159,-0.4074406,0.7908818,-0.4566159,-0.4074406,0.7908818,0.4566159,0.4074406,-0.7908818,0.4566159,0.4074406,-0.7908818,0.4566159,0.4074406,-0.7908818,0.4566159,0.4074406,-0.7908818,0.4566159,0.4074406,-0.7908818,0.4566159,0.4074406,-0.7908818,0.4466019,-0.4496522,-0.7735372,0.4466019,-0.4496522,-0.7735372,0.4466019,-0.4496522,-0.7735372,0.4466019,-0.4496522,-0.7735372,0.4466019,-0.4496522,-0.7735372,0.4466019,-0.4496522,-0.7735372,-0.4466019,0.4496522,0.7735372,-0.4466019,0.4496522,0.7735372,-0.4466019,0.4496522,0.7735372,-0.4466019,0.4496522,0.7735372,-0.4466019,0.4496522,0.7735372,-0.4466019,0.4496522,0.7735372,-0.8932037,-0.4496522,0,-0.8932037,-0.4496522,0,-0.8932037,-0.4496522,0,-0.8932037,-0.4496522,0,-0.8932037,-0.4496522,0,-0.8932037,-0.4496522,0,0.8932037,0.4496522,0,0.8932037,0.4496522,0,0.8932037,0.4496522,0,0.8932037,0.4496522,0,0.8932037,0.4496522,0,0.8932037,0.4496522,0,-0.800299,-0.5996011,0,-0.800299,-0.5996011,0,-0.800299,-0.5996011,0,-0.800299,-0.5996011,0,-0.800299,-0.5996011,0,-0.800299,-0.5996011,0,0.800299,0.5996011,0,0.800299,0.5996011,0,0.800299,0.5996011,0,0.800299,0.5996011,0,0.800299,0.5996011,0,0.800299,0.5996011,0,0.377187,-0.9261372,0,0.377187,-0.9261372,0,0.377187,-0.9261372,0,-0.377187,0.9261372,0,-0.377187,0.9261372,0,-0.377187,0.9261372,0,-0.2396213,-0.8776826,0.4150362,-0.2396213,-0.8776826,0.4150362,-0.2396213,-0.8776826,0.4150362,0.2396213,0.8776826,-0.4150362,0.2396213,0.8776826,-0.4150362,0.2396213,0.8776826,-0.4150362,-0.4789424,-0.2871528,0.8295525,-0.4789424,-0.2871528,0.8295525,-0.4789424,-0.2871528,0.8295525,-0.4789424,-0.2871528,0.8295525,-0.4789424,-0.2871528,0.8295525,-0.4789424,-0.2871528,0.8295525,0.4789424,0.2871528,-0.8295525,0.4789424,0.2871528,-0.8295525,0.4789424,0.2871528,-0.8295525,0.4789424,0.2871528,-0.8295525,0.4789424,0.2871528,-0.8295525,0.4789424,0.2871528,-0.8295525,0.4001496,-0.599601,0.6930794,0.4001496,-0.599601,0.6930794,0.4001496,-0.599601,0.6930794,0.4001496,-0.599601,0.6930794,0.4001496,-0.599601,0.6930794,0.4001496,-0.599601,0.6930794,-0.4001496,0.599601,-0.6930794,-0.4001496,0.599601,-0.6930794,-0.4001496,0.599601,-0.6930794,-0.4001496,0.599601,-0.6930794,-0.4001496,0.599601,-0.6930794,-0.4001496,0.599601,-0.6930794,0.1741897,-0.9847121,0,0.1741897,-0.9847121,0,0.1741897,-0.9847121,0,-0.1741897,0.9847121,0,-0.1741897,0.9847121,0,-0.1741897,0.9847121,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: -1.418031,1.104392,-2.127047,3.835505,1.418031,1.104392,2.127047,3.835505,1.418031,1.104392,-2.127047,3.835505,-1.418031,1.104392,2.127047,3.835505,2.127047,5.24216,-2.127047,5.24216,3.304014,10.2455,-3.304014,10.2455,3.304014,10.2455,-2.127047,5.24216,2.127047,5.24216,-3.304014,10.2455,-3.304014,6.210648,5.31474E-07,7.864547,3.304014,6.210648,3.304014,6.210648,5.31474E-07,7.864547,-3.304014,6.210648,-3.304014,8.195571,-2.348533E-07,9.932557,3.304014,8.195571,3.304014,8.195571,-2.348533E-07,9.932557,-3.304014,8.195571,-1.418031,0.7052768,-2.127047,4.981924,1.418031,0.7052767,2.127047,4.981924,1.418031,0.7052767,-2.127047,4.981924,-1.418031,0.7052768,2.127047,4.981924,-2.348529E-07,7.864548,3.304014,6.210648,-3.304014,6.210648,-3.304014,6.210648,3.304014,6.210648,-2.348529E-07,7.864548,2.127047,4.161304,-2.127047,4.161304,3.304014,7.561175,-3.304014,7.561175,3.304014,7.561175,-2.127047,4.161304,2.127047,4.161304,-3.304014,7.561175,2.127047,4.981924,1.418031,0.7052767,-2.127047,4.981924,-1.418031,0.7052767,-2.127047,4.981924,1.418031,0.7052767,2.127047,4.981924,-1.418031,0.7052767,3.304013,10.24551,2.127047,5.24216,-3.304013,10.24551,-2.127047,5.24216,-3.304013,10.24551,2.127047,5.24216,3.304013,10.24551,-2.127047,5.24216,2.127047,5.24216,-2.127047,5.24216,3.304014,10.2455,-3.304014,10.2455,3.304014,10.2455,-2.127047,5.24216,2.127047,5.24216,-3.304014,10.2455,1.418032,1.104392,-1.418031,1.104392,2.127047,3.835505,-2.127047,3.835505,2.127047,3.835505,-1.418031,1.104392,1.418032,1.104392,-2.127047,3.835505,-2.127047,3.835505,2.127047,3.835505,-1.418031,1.104392,1.418031,1.104392,-1.418031,1.104392,2.127047,3.835505,-2.127047,3.835505,1.418031,1.104392,-3.304013,7.561176,3.304013,7.561176,-2.127047,4.161304,2.127047,4.161304,-2.127047,4.161304,3.304013,7.561176,-3.304013,7.561176,2.127047,4.161304,-3.304013,8.568631,-1.137318E-13,10.34546,3.304013,8.568631,3.304013,8.568631,-1.137318E-13,10.34546,-3.304013,8.568631,2.348533E-07,11.05065,3.304014,9.175726,-3.304014,9.175726,-3.304014,9.175726,3.304014,9.175726,2.348533E-07,11.05065,-1.418031,0.7052767,-2.127047,4.981924,1.418031,0.7052768,2.127047,4.981924,1.418031,0.7052768,-2.127047,4.981924,-1.418031,0.7052767,2.127047,4.981924,2.127047,4.161304,-2.127047,4.161304,3.304014,7.561175,-3.304014,7.561175,3.304014,7.561175,-2.127047,4.161304,2.127047,4.161304,-3.304014,7.561175,-3.304013,-4.736351,3.304013,-4.736351,-1.098288E-07,-6.407486,-1.098288E-07,-6.407486,3.304013,-4.736351,-3.304013,-4.736351 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,21,20,22,24,23,25,27,26,28,30,29,31,29,30,32,34,33,33,35,32,36,38,37,39,41,40,42,44,43,45,43,44,46,48,47,47,49,46,50,52,51,53,51,52,54,56,55,55,57,54,58,60,59,61,59,60,62,64,63,63,65,62,66,68,67,69,67,68,70,72,71,71,73,70,74,76,75,77,75,76,78,80,79,79,81,78,82,84,83,85,83,84,86,88,87,87,89,86,90,92,91,93,91,92,94,96,95,95,97,94,98,100,99,101,103,102,104,106,105,107,109,108,110,112,111,113,111,112,114,116,115,115,117,114,118,120,119,121,119,120,122,124,123,123,125,122,126,128,127,129,131,130 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh plant_bushLarge, Model::RootNode + C: "OO",5400587364536050608,0 + + ;Geometry::, Model::Mesh plant_bushLarge + C: "OO",4912356840669542661,5400587364536050608 + + ;Material::grass, Model::Mesh plant_bushLarge + C: "OO",3024,5400587364536050608 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLarge.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLarge.fbx.import new file mode 100644 index 0000000..c01d67e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLarge.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cu51nwe128j2s" +path="res://.godot/imported/plant_bushLarge.fbx-20748f118e902af6e6e9c01757193c0c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/plant_bushLarge.fbx" +dest_files=["res://.godot/imported/plant_bushLarge.fbx-20748f118e902af6e6e9c01757193c0c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLargeTriangle.fbx b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLargeTriangle.fbx new file mode 100644 index 0000000..c5d1e07 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLargeTriangle.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 902 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "plant_bushLargeTriangle.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "plant_bushLargeTriangle.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5001504513548424032, "Model::plant_bushLargeTriangle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5764559322454098920, "Geometry::", "Mesh" { + Vertices: *243 { + a: 2.510092,0.8758819,-0.36,2.510092,0.8758819,0.36,1.674458,1.693275,-0.72,1.674458,1.693275,0.72,1.674458,1.693275,-0.72,2.510092,0.8758819,0.36,2.510092,0.8758819,-0.36,1.674458,1.693275,0.72,0.2078461,0,-0.36,1.207846,0.5,-7.219114E-15,0.2078461,0,0.36,0.7305762,1.020048,-0.72,0.7305762,1.020048,0.72,0.2078461,0,-0.36,0.2078461,0,0.36,0.2078461,0,-0.36,0.7305762,1.020048,0.72,0.7305762,1.020048,-0.72,0.2078461,0,0.36,1.674458,1.693275,-0.72,1.674458,1.693275,0.72,0.7305762,1.020048,-0.72,0.7305762,1.020048,0.72,0.7305762,1.020048,-0.72,1.674458,1.693275,0.72,1.674458,1.693275,-0.72,0.7305762,1.020048,0.72,-0.4156922,0,7.219114E-15,0.2078461,0,0.36,-0.9888263,1.020048,0.2726975,0.2582502,1.020048,0.9926975,-0.9888263,1.020048,0.2726975,0.2078461,0,0.36,-0.4156922,0,7.219114E-15,0.2582502,1.020048,0.9926975,-0.4156922,0,7.219114E-15,0.2078461,0,0.36,-0.6039231,0.5,1.046025,0.2582502,1.020048,0.9926975,-0.2136908,1.693275,1.810123,-0.9888263,1.020048,0.2726975,-1.460767,1.693275,1.090123,-0.9888263,1.020048,0.2726975,-0.2136908,1.693275,1.810123,0.2582502,1.020048,0.9926975,-1.460767,1.693275,1.090123,-0.2136908,1.693275,1.810123,-0.9432769,0.8758819,2.353804,-1.460767,1.693275,1.090123,-1.566815,0.8758819,1.993804,-1.460767,1.693275,1.090123,-0.9432769,0.8758819,2.353804,-0.2136908,1.693275,1.810123,-1.566815,0.8758819,1.993804,0.2078461,0,-0.36,-0.4156922,0,7.219114E-15,-0.6039231,0.5,-1.046025,0.2078461,0,-0.36,-0.4156922,0,7.219114E-15,0.2582502,1.020048,-0.9926975,-0.9888263,1.020048,-0.2726975,0.2582502,1.020048,-0.9926975,-0.4156922,0,7.219114E-15,0.2078461,0,-0.36,-0.9888263,1.020048,-0.2726975,0.2582502,1.020048,-0.9926975,-0.9888263,1.020048,-0.2726975,-0.2136908,1.693275,-1.810123,-1.460767,1.693275,-1.090123,-0.2136908,1.693275,-1.810123,-0.9888263,1.020048,-0.2726975,0.2582502,1.020048,-0.9926975,-1.460767,1.693275,-1.090123,-0.2136908,1.693275,-1.810123,-1.460767,1.693275,-1.090123,-0.9432769,0.8758819,-2.353804,-1.566815,0.8758819,-1.993804,-0.9432769,0.8758819,-2.353804,-1.460767,1.693275,-1.090123,-0.2136908,1.693275,-1.810123,-1.566815,0.8758819,-1.993804 + } + PolygonVertexIndex: *117 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,13,-13,14,12,-14,15,17,-17,16,18,-16,19,21,-21,22,20,-22,23,25,-25,24,26,-24,27,29,-29,30,28,-30,31,33,-33,32,34,-32,35,37,-37,38,40,-40,41,39,-41,42,44,-44,43,45,-43,46,48,-48,49,47,-49,50,52,-52,51,53,-51,54,56,-56,57,59,-59,60,58,-60,61,63,-63,62,64,-62,65,67,-67,68,66,-68,69,71,-71,70,72,-70,73,75,-75,76,74,-76,77,79,-79,78,80,-78 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *351 { + a: 0.6992615,0.7148659,0,0.6992615,0.7148659,0,0.6992615,0.7148659,0,0.6992615,0.7148659,0,0.6992615,0.7148659,0,0.6992615,0.7148659,0,-0.6992615,-0.7148659,0,-0.6992615,-0.7148659,0,-0.6992615,-0.7148659,0,-0.6992615,-0.7148659,0,-0.6992615,-0.7148659,0,-0.6992615,-0.7148659,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.8899491,0.4560599,0,-0.8899491,0.4560599,0,-0.8899491,0.4560599,0,-0.8899491,0.4560599,0,-0.8899491,0.4560599,0,-0.8899491,0.4560599,0,0.8899491,-0.4560599,0,0.8899491,-0.4560599,0,0.8899491,-0.4560599,0,0.8899491,-0.4560599,0,0.8899491,-0.4560599,0,0.8899491,-0.4560599,0,-0.5806815,0.8141308,0,-0.5806815,0.8141308,0,-0.5806815,0.8141308,0,-0.5806815,0.8141308,0,-0.5806815,0.8141308,0,-0.5806815,0.8141308,0,0.5806815,-0.8141308,0,0.5806815,-0.8141308,0,0.5806815,-0.8141308,0,0.5806815,-0.8141308,0,0.5806815,-0.8141308,0,0.5806815,-0.8141308,0,0.4449746,0.4560599,-0.7707185,0.4449746,0.4560599,-0.7707185,0.4449746,0.4560599,-0.7707185,0.4449746,0.4560599,-0.7707185,0.4449746,0.4560599,-0.7707185,0.4449746,0.4560599,-0.7707185,-0.4449746,-0.4560599,0.7707185,-0.4449746,-0.4560599,0.7707185,-0.4449746,-0.4560599,0.7707185,-0.4449746,-0.4560599,0.7707185,-0.4449746,-0.4560599,0.7707185,-0.4449746,-0.4560599,0.7707185,0.2236068,0.8944272,-0.3872983,0.2236068,0.8944272,-0.3872983,0.2236068,0.8944272,-0.3872983,0.2903408,0.8141308,-0.5028849,0.2903408,0.8141308,-0.5028849,0.2903408,0.8141308,-0.5028849,0.2903408,0.8141308,-0.5028849,0.2903408,0.8141308,-0.5028849,0.2903408,0.8141308,-0.5028849,-0.2903408,-0.8141308,0.5028849,-0.2903408,-0.8141308,0.5028849,-0.2903408,-0.8141308,0.5028849,-0.2903408,-0.8141308,0.5028849,-0.2903408,-0.8141308,0.5028849,-0.2903408,-0.8141308,0.5028849,-0.3496307,0.7148659,0.6055782,-0.3496307,0.7148659,0.6055782,-0.3496307,0.7148659,0.6055782,-0.3496307,0.7148659,0.6055782,-0.3496307,0.7148659,0.6055782,-0.3496307,0.7148659,0.6055782,0.3496307,-0.7148659,-0.6055782,0.3496307,-0.7148659,-0.6055782,0.3496307,-0.7148659,-0.6055782,0.3496307,-0.7148659,-0.6055782,0.3496307,-0.7148659,-0.6055782,0.3496307,-0.7148659,-0.6055782,0.2236068,0.8944272,0.3872983,0.2236068,0.8944272,0.3872983,0.2236068,0.8944272,0.3872983,0.4449746,0.4560599,0.7707185,0.4449746,0.4560599,0.7707185,0.4449746,0.4560599,0.7707185,0.4449746,0.4560599,0.7707185,0.4449746,0.4560599,0.7707185,0.4449746,0.4560599,0.7707185,-0.4449746,-0.4560599,-0.7707185,-0.4449746,-0.4560599,-0.7707185,-0.4449746,-0.4560599,-0.7707185,-0.4449746,-0.4560599,-0.7707185,-0.4449746,-0.4560599,-0.7707185,-0.4449746,-0.4560599,-0.7707185,0.2903408,0.8141308,0.5028849,0.2903408,0.8141308,0.5028849,0.2903408,0.8141308,0.5028849,0.2903408,0.8141308,0.5028849,0.2903408,0.8141308,0.5028849,0.2903408,0.8141308,0.5028849,-0.2903408,-0.8141308,-0.5028849,-0.2903408,-0.8141308,-0.5028849,-0.2903408,-0.8141308,-0.5028849,-0.2903408,-0.8141308,-0.5028849,-0.2903408,-0.8141308,-0.5028849,-0.2903408,-0.8141308,-0.5028849,-0.3496307,0.7148659,-0.6055782,-0.3496307,0.7148659,-0.6055782,-0.3496307,0.7148659,-0.6055782,-0.3496307,0.7148659,-0.6055782,-0.3496307,0.7148659,-0.6055782,-0.3496307,0.7148659,-0.6055782,0.3496307,-0.7148659,0.6055782,0.3496307,-0.7148659,0.6055782,0.3496307,-0.7148659,0.6055782,0.3496307,-0.7148659,0.6055782,0.3496307,-0.7148659,0.6055782,0.3496307,-0.7148659,0.6055782 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *162 { + a: 1.417323,-4.653184,-1.417323,-4.653184,2.834646,-0.05106561,-2.834646,-0.05106561,2.834646,-0.05106561,-1.417323,-4.653184,1.417323,-4.653184,-2.834646,-0.05106561,-1.417323,0.7319024,-2.842171E-14,5.133611,1.417323,0.7319024,-2.834646,4.885739,2.834646,4.885739,-1.417323,0.37319,1.417323,0.37319,-1.417323,0.37319,2.834646,4.885739,-2.834646,4.885739,1.417323,0.37319,-2.834646,9.238117,2.834646,9.238117,-2.834646,4.673653,2.834646,4.673653,-2.834646,4.673653,2.834646,9.238117,-2.834646,9.238117,2.834646,4.673653,1.417323,0.37319,-1.417323,0.37319,2.834646,4.885739,-2.834646,4.885739,2.834646,4.885739,-1.417323,0.37319,1.417323,0.37319,-2.834646,4.885739,1.417323,0.7319024,-1.417323,0.7319024,-9.311996E-15,5.133611,-2.834646,4.673653,-2.834646,9.238117,2.834646,4.673653,2.834646,9.238117,2.834646,4.673653,-2.834646,9.238117,-2.834646,4.673653,2.834646,9.238117,2.834646,-0.05106561,1.417323,-4.653184,-2.834646,-0.05106561,-1.417323,-4.653184,-2.834646,-0.05106561,1.417323,-4.653184,2.834646,-0.05106561,-1.417323,-4.653184,1.417323,0.7319024,-1.417323,0.7319024,-3.108624E-14,5.133611,1.417323,0.37319,-1.417323,0.37319,2.834646,4.885739,-2.834646,4.885739,2.834646,4.885739,-1.417323,0.37319,1.417323,0.37319,-2.834646,4.885739,2.834646,4.673653,-2.834646,4.673653,2.834646,9.238117,-2.834646,9.238117,2.834646,9.238117,-2.834646,4.673653,2.834646,4.673653,-2.834646,9.238117,-2.834646,-0.05106561,2.834646,-0.05106561,-1.417323,-4.653184,1.417323,-4.653184,-1.417323,-4.653184,2.834646,-0.05106561,-2.834646,-0.05106561,1.417323,-4.653184 + } + UVIndex: *117 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,13,12,14,12,13,15,17,16,16,18,15,19,21,20,22,20,21,23,25,24,24,26,23,27,29,28,30,28,29,31,33,32,32,34,31,35,37,36,38,40,39,41,39,40,42,44,43,43,45,42,46,48,47,49,47,48,50,52,51,51,53,50,54,56,55,57,59,58,60,58,59,61,63,62,62,64,61,65,67,66,68,66,67,69,71,70,70,72,69,73,75,74,76,74,75,77,79,78,78,80,77 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *39 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh plant_bushLargeTriangle, Model::RootNode + C: "OO",5001504513548424032,0 + + ;Geometry::, Model::Mesh plant_bushLargeTriangle + C: "OO",5764559322454098920,5001504513548424032 + + ;Material::grass, Model::Mesh plant_bushLargeTriangle + C: "OO",3024,5001504513548424032 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLargeTriangle.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLargeTriangle.fbx.import new file mode 100644 index 0000000..b715e16 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushLargeTriangle.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ocjk1wi7j4eh" +path="res://.godot/imported/plant_bushLargeTriangle.fbx-cdb1671b773e36cb399cf42752a37342.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/plant_bushLargeTriangle.fbx" +dest_files=["res://.godot/imported/plant_bushLargeTriangle.fbx-cdb1671b773e36cb399cf42752a37342.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushSmall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushSmall.fbx new file mode 100644 index 0000000..2f69299 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushSmall.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 27 + Millisecond: 981 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "plant_bushSmall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "plant_bushSmall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4624912290463714430, "Model::plant_bushSmall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5503634368375074304, "Geometry::", "Mesh" { + Vertices: *144 { + a: 0,0,0,-0.777,0.9080011,0.3623013,4.042704E-13,2.072925,1.681711,4.042704E-13,2.072925,1.681711,-0.777,0.9080011,0.3623013,0,0,0,-0.4125356,0.6725934,0.94794,0,0,0,-1.914886,1.5355,0,-1.914886,1.5355,0,0,0,0,-0.4125356,0.6725934,0.94794,0,0,0,0.777,0.9080011,-0.3623013,-4.475851E-13,2.072925,-1.681711,-4.475851E-13,2.072925,-1.681711,0.777,0.9080011,-0.3623013,0,0,0,-0.777,0.9080011,-0.3623013,0,0,0,-4.475851E-13,2.072925,-1.681711,-4.475851E-13,2.072925,-1.681711,0,0,0,-0.777,0.9080011,-0.3623013,0.4125356,0.6725934,0.94794,1.914886,1.5355,0,0,0,0,0,0,0,1.914886,1.5355,0,0.4125356,0.6725934,0.94794,1.914886,1.5355,0,0.4125356,0.6725934,-0.94794,0,0,0,0,0,0,0.4125356,0.6725934,-0.94794,1.914886,1.5355,0,0,0,0,-0.4125356,0.6725934,-0.94794,-1.914886,1.5355,0,-1.914886,1.5355,0,-0.4125356,0.6725934,-0.94794,0,0,0,0.777,0.9080011,0.3623013,0,0,0,4.042704E-13,2.072925,1.681711,4.042704E-13,2.072925,1.681711,0,0,0,0.777,0.9080011,0.3623013 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,14,-14,15,17,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: -0.3504125,-0.5900732,0.7273409,-0.3504125,-0.5900732,0.7273409,-0.3504125,-0.5900732,0.7273409,0.3504125,0.5900732,-0.7273409,0.3504125,0.5900732,-0.7273409,0.3504125,0.5900732,-0.7273409,-0.6022149,-0.7510079,0.2707849,-0.6022149,-0.7510079,0.2707849,-0.6022149,-0.7510079,0.2707849,0.6022149,0.7510079,-0.2707849,0.6022149,0.7510079,-0.2707849,0.6022149,0.7510079,-0.2707849,0.3504125,-0.5900732,-0.7273409,0.3504125,-0.5900732,-0.7273409,0.3504125,-0.5900732,-0.7273409,-0.3504125,0.5900732,0.7273409,-0.3504125,0.5900732,0.7273409,-0.3504125,0.5900732,0.7273409,-0.3504125,-0.5900732,-0.7273409,-0.3504125,-0.5900732,-0.7273409,-0.3504125,-0.5900732,-0.7273409,0.3504125,0.5900732,0.7273409,0.3504125,0.5900732,0.7273409,0.3504125,0.5900732,0.7273409,0.6022149,-0.7510079,0.2707849,0.6022149,-0.7510079,0.2707849,0.6022149,-0.7510079,0.2707849,-0.6022149,0.7510079,-0.2707849,-0.6022149,0.7510079,-0.2707849,-0.6022149,0.7510079,-0.2707849,0.6022149,-0.7510079,-0.2707849,0.6022149,-0.7510079,-0.2707849,0.6022149,-0.7510079,-0.2707849,-0.6022149,0.7510079,0.2707849,-0.6022149,0.7510079,0.2707849,-0.6022149,0.7510079,0.2707849,-0.6022149,-0.7510079,-0.2707849,-0.6022149,-0.7510079,-0.2707849,-0.6022149,-0.7510079,-0.2707849,0.6022149,0.7510079,0.2707849,0.6022149,0.7510079,0.2707849,0.6022149,0.7510079,0.2707849,0.3504125,-0.5900732,0.7273409,0.3504125,-0.5900732,0.7273409,0.3504125,-0.5900732,0.7273409,-0.3504125,0.5900732,-0.7273409,-0.3504125,0.5900732,-0.7273409,-0.3504125,0.5900732,-0.7273409 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *96 { + a: 0,0,-2.13681,4.42783,2.873662,10.10853,2.873662,10.10853,-2.13681,4.42783,0,0,2.737719,4.010347,0,0,-3.091696,9.15544,-3.091696,9.15544,0,0,2.737719,4.010347,0,0,-2.13681,4.42783,2.873662,10.10853,2.873662,10.10853,-2.13681,4.42783,0,0,2.13681,4.42783,0,0,-2.873662,10.10853,-2.873662,10.10853,0,0,2.13681,4.42783,-2.737719,4.010347,3.091696,9.15544,0,0,0,0,3.091696,9.15544,-2.737719,4.010347,-3.091696,9.15544,2.737719,4.010347,0,0,0,0,2.737719,4.010347,-3.091696,9.15544,0,0,-2.737719,4.010347,3.091696,9.15544,3.091696,9.15544,-2.737719,4.010347,0,0,2.13681,4.42783,0,0,-2.873662,10.10853,-2.873662,10.10853,0,0,2.13681,4.42783 + } + UVIndex: *48 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,14,13,15,17,16,18,20,19,21,23,22,24,26,25,27,29,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh plant_bushSmall, Model::RootNode + C: "OO",4624912290463714430,0 + + ;Geometry::, Model::Mesh plant_bushSmall + C: "OO",5503634368375074304,4624912290463714430 + + ;Material::grass, Model::Mesh plant_bushSmall + C: "OO",3024,4624912290463714430 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushSmall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushSmall.fbx.import new file mode 100644 index 0000000..08b62f7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushSmall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dwavlwu2sw10l" +path="res://.godot/imported/plant_bushSmall.fbx-e040d7fae1e9c780193f6ccd067de9c4.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/plant_bushSmall.fbx" +dest_files=["res://.godot/imported/plant_bushSmall.fbx-e040d7fae1e9c780193f6ccd067de9c4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushTriangle.fbx b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushTriangle.fbx new file mode 100644 index 0000000..00c6ece --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushTriangle.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 28 + Millisecond: 59 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "plant_bushTriangle.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "plant_bushTriangle.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5684699557773487108, "Model::plant_bushTriangle", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5405596483822953212, "Geometry::", "Mesh" { + Vertices: *198 { + a: 0.4441205,0.9652337,-0.9997607,-1.087878,0.9652337,-0.1152607,-0.1470685,1.442272,-1.53573,-1.256447,1.442272,-0.8952301,-0.1470685,1.442272,-1.53573,-1.087878,0.9652337,-0.1152607,0.4441205,0.9652337,-0.9997607,-1.256447,1.442272,-0.8952301,0.05989642,0,-0.3232563,-0.3098964,0,-0.1097564,0.4441205,0.9652337,-0.9997607,-1.087878,0.9652337,-0.1152607,0.4441205,0.9652337,-0.9997607,-0.3098964,0,-0.1097564,0.05989642,0,-0.3232563,-1.087878,0.9652337,-0.1152607,-1.193938,1.802775,-2.067961,-0.1470685,1.442272,-1.53573,-1.256447,1.442272,-0.8952301,-1.256447,1.442272,-0.8952301,-0.1470685,1.442272,-1.53573,-1.193938,1.802775,-2.067961,0.6437579,1.58235,-0.8845,0.6437579,1.58235,0.8845,0.25,0,-0.2135,0.25,0,0.2135,0.25,0,-0.2135,0.6437579,1.58235,0.8845,0.6437579,1.58235,-0.8845,0.25,0,0.2135,1.403515,2.36438,-0.6404999,2.387876,2.95537,1.212811E-12,1.403515,2.36438,0.6404999,1.403515,2.36438,0.6404999,2.387876,2.95537,1.212811E-12,1.403515,2.36438,-0.6404999,0.6437579,1.58235,-0.8845,1.403515,2.36438,-0.6404999,0.6437579,1.58235,0.8845,1.403515,2.36438,0.6404999,0.6437579,1.58235,0.8845,1.403515,2.36438,-0.6404999,0.6437579,1.58235,-0.8845,1.403515,2.36438,0.6404999,-0.1470685,1.796929,1.53573,-1.193938,2.246081,2.067961,-1.256447,1.796929,0.8952301,-1.256447,1.796929,0.8952301,-1.193938,2.246081,2.067961,-0.1470685,1.796929,1.53573,0.4441205,1.202586,0.9997607,-0.1470685,1.796929,1.53573,-1.087878,1.202586,0.1152607,-1.256447,1.796929,0.8952301,-1.087878,1.202586,0.1152607,-0.1470685,1.796929,1.53573,0.4441205,1.202586,0.9997607,-1.256447,1.796929,0.8952301,-0.3098964,0,0.1097564,0.05989642,0,0.3232563,-1.087878,1.202586,0.1152607,0.4441205,1.202586,0.9997607,-1.087878,1.202586,0.1152607,0.05989642,0,0.3232563,-0.3098964,0,0.1097564,0.4441205,1.202586,0.9997607 + } + PolygonVertexIndex: *90 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,21,-21,22,24,-24,25,23,-25,26,28,-28,27,29,-27,30,32,-32,33,35,-35,36,38,-38,39,37,-39,40,42,-42,41,43,-41,44,46,-46,47,49,-49,50,52,-52,53,51,-53,54,56,-56,55,57,-55,58,60,-60,61,59,-61,62,64,-64,63,65,-63 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *270 { + a: 0.2658765,0.8468995,0.4605117,0.2658765,0.8468995,0.4605117,0.2658765,0.8468995,0.4605117,0.2658765,0.8468995,0.4605117,0.2658765,0.8468995,0.4605117,0.2658765,0.8468995,0.4605117,-0.2658765,-0.8468995,-0.4605117,-0.2658765,-0.8468995,-0.4605117,-0.2658765,-0.8468995,-0.4605117,-0.2658765,-0.8468995,-0.4605117,-0.2658765,-0.8468995,-0.4605117,-0.2658765,-0.8468995,-0.4605117,0.4629599,0.3777202,0.80187,0.4629599,0.3777202,0.80187,0.4629599,0.3777202,0.80187,0.4629599,0.3777202,0.80187,0.4629599,0.3777202,0.80187,0.4629599,0.3777202,0.80187,-0.4629599,-0.3777202,-0.80187,-0.4629599,-0.3777202,-0.80187,-0.4629599,-0.3777202,-0.80187,-0.4629599,-0.3777202,-0.80187,-0.4629599,-0.3777202,-0.80187,-0.4629599,-0.3777202,-0.80187,0.1719472,0.9390083,0.2978212,0.1719472,0.9390083,0.2978212,0.1719472,0.9390083,0.2978212,-0.1719472,-0.9390083,-0.2978212,-0.1719472,-0.9390083,-0.2978212,-0.1719472,-0.9390083,-0.2978212,-0.9704059,0.2414794,0,-0.9704059,0.2414794,0,-0.9704059,0.2414794,0,-0.9704059,0.2414794,0,-0.9704059,0.2414794,0,-0.9704059,0.2414794,0,0.9704059,-0.2414794,0,0.9704059,-0.2414794,0,0.9704059,-0.2414794,0,0.9704059,-0.2414794,0,0.9704059,-0.2414794,0,0.9704059,-0.2414794,0,-0.5147349,0.8573494,0,-0.5147349,0.8573494,0,-0.5147349,0.8573494,0,0.5147349,-0.8573494,0,0.5147349,-0.8573494,0,0.5147349,-0.8573494,0,-0.7172465,0.6968194,0,-0.7172465,0.6968194,0,-0.7172465,0.6968194,0,-0.7172465,0.6968194,0,-0.7172465,0.6968194,0,-0.7172465,0.6968194,0,0.7172465,-0.6968194,0,0.7172465,-0.6968194,0,0.7172465,-0.6968194,0,0.7172465,-0.6968194,0,0.7172465,-0.6968194,0,0.7172465,-0.6968194,0,0.2075583,0.9097682,-0.3595015,0.2075583,0.9097682,-0.3595015,0.2075583,0.9097682,-0.3595015,-0.2075583,-0.9097682,0.3595015,-0.2075583,-0.9097682,0.3595015,-0.2075583,-0.9097682,0.3595015,0.3080736,0.7876309,-0.5335993,0.3080736,0.7876309,-0.5335993,0.3080736,0.7876309,-0.5335993,0.3080736,0.7876309,-0.5335993,0.3080736,0.7876309,-0.5335993,0.3080736,0.7876309,-0.5335993,-0.3080736,-0.7876309,0.5335993,-0.3080736,-0.7876309,0.5335993,-0.3080736,-0.7876309,0.5335993,-0.3080736,-0.7876309,0.5335993,-0.3080736,-0.7876309,0.5335993,-0.3080736,-0.7876309,0.5335993,0.475177,0.3111706,-0.8230308,0.475177,0.3111706,-0.8230308,0.475177,0.3111706,-0.8230308,0.475177,0.3111706,-0.8230308,0.475177,0.3111706,-0.8230308,0.475177,0.3111706,-0.8230308,-0.475177,-0.3111706,0.8230308,-0.475177,-0.3111706,0.8230308,-0.475177,-0.3111706,0.8230308,-0.475177,-0.3111706,0.8230308,-0.475177,-0.3111706,0.8230308,-0.475177,-0.3111706,0.8230308 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *132 { + a: 3.482284,4.167182,-3.482284,4.167182,2.521653,7.69909,-2.521653,7.69909,2.521653,7.69909,-3.482284,4.167182,3.482284,4.167182,-2.521653,7.69909,0.8405512,0.3717718,-0.8405512,0.3717718,3.482284,4.475943,-3.482284,4.475943,3.482284,4.475943,-0.8405512,0.3717718,0.8405512,0.3717718,-3.482284,4.475943,4.812151E-12,11.2685,2.521653,7.141346,-2.521653,7.141346,-2.521653,7.141346,2.521653,7.141346,4.812151E-12,11.2685,-3.482284,6.657388,3.482284,6.657388,-0.8405512,0.2376766,0.8405512,0.2376766,-0.8405512,0.2376766,3.482284,6.657388,-3.482284,6.657388,0.8405512,0.2376766,-2.521653,9.528867,4.77465E-12,14.04912,2.521653,9.528867,2.521653,9.528867,4.77465E-12,14.04912,-2.521653,9.528867,-3.482284,6.234325,-2.521653,10.52693,3.482284,6.234325,2.521653,10.52693,3.482284,6.234325,-2.521653,10.52693,-3.482284,6.234325,2.521653,10.52693,-2.521653,7.963814,4.972023E-12,12.22362,2.521653,7.963814,2.521653,7.963814,4.972023E-12,12.22362,-2.521653,7.963814,-3.482284,4.913441,-2.521653,8.711123,3.482284,4.913441,2.521653,8.711123,3.482284,4.913441,-2.521653,8.711123,-3.482284,4.913441,2.521653,8.711123,0.8405512,0.3062702,-0.8405512,0.3062702,3.482284,5.288194,-3.482284,5.288194,3.482284,5.288194,-0.8405512,0.3062702,0.8405512,0.3062702,-3.482284,5.288194 + } + UVIndex: *90 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,21,20,22,24,23,25,23,24,26,28,27,27,29,26,30,32,31,33,35,34,36,38,37,39,37,38,40,42,41,41,43,40,44,46,45,47,49,48,50,52,51,53,51,52,54,56,55,55,57,54,58,60,59,61,59,60,62,64,63,63,65,62 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *30 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh plant_bushTriangle, Model::RootNode + C: "OO",5684699557773487108,0 + + ;Geometry::, Model::Mesh plant_bushTriangle + C: "OO",5405596483822953212,5684699557773487108 + + ;Material::grass, Model::Mesh plant_bushTriangle + C: "OO",3024,5684699557773487108 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_bushTriangle.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushTriangle.fbx.import new file mode 100644 index 0000000..33ff3ca --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_bushTriangle.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dtu5u6co41u3o" +path="res://.godot/imported/plant_bushTriangle.fbx-12f04a1bb1c74dcc73b091223ed67936.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/plant_bushTriangle.fbx" +dest_files=["res://.godot/imported/plant_bushTriangle.fbx-12f04a1bb1c74dcc73b091223ed67936.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_flatShort.fbx b/assets/models/kenney_nature-kit/Models/FBX format/plant_flatShort.fbx new file mode 100644 index 0000000..5714344 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_flatShort.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 28 + Millisecond: 137 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "plant_flatShort.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "plant_flatShort.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5700102708932857374, "Model::plant_flatShort", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5559758632051629278, "Geometry::", "Mesh" { + Vertices: *180 { + a: 0.9280114,0,0,1.382876E-08,0,0.9280114,0,0.5227183,2.703558E-12,5.875002E-09,1.292352,0.3942558,1.219866E-08,0.7060118,0.8186206,1.42412E-08,1.55664,0.9556897,1.382876E-08,0,0.9280114,0,0.5227183,2.703558E-12,0,2.350794,2.703558E-12,2.068473E-08,0.5016674,1.388099,-5.875002E-09,1.292352,-0.3942558,-1.219866E-08,0.7060118,-0.8186206,-1.424118E-08,1.55664,-0.9556897,-1.382873E-08,0,-0.9280114,-2.068473E-08,0.5016674,-1.388099,1.42412E-08,1.55664,0.9556897,1.219866E-08,0.7060118,0.8186206,5.875002E-09,1.292352,0.3942558,1.382876E-08,0,0.9280114,0,0.5227183,2.703558E-12,0,2.350794,2.703558E-12,2.068473E-08,0.5016674,1.388099,-5.875002E-09,1.292352,-0.3942558,-1.219866E-08,0.7060118,-0.8186206,-1.424118E-08,1.55664,-0.9556897,-1.382873E-08,0,-0.9280114,-2.068473E-08,0.5016674,-1.388099,-0.9280114,0,5.407116E-12,-1.388099,0.5016674,6.742653E-12,0,0.5227183,2.703558E-12,-0.8186206,0.7060118,5.085866E-12,-0.3942558,1.292352,3.858617E-12,0,2.350794,2.703558E-12,-0.9556897,1.55664,5.493746E-12,0.3942558,1.292352,1.5485E-12,0.8186206,0.7060118,3.212506E-13,0.9556897,1.55664,-8.662937E-14,1.388099,0.5016674,-1.335536E-12,0.9280114,0,0,0,0.5227183,2.703558E-12,-1.388099,0.5016674,6.742653E-12,-0.9280114,0,5.407116E-12,-0.8186206,0.7060118,5.085866E-12,-0.3942558,1.292352,3.858617E-12,0,2.350794,2.703558E-12,-0.9556897,1.55664,5.493746E-12,0.3942558,1.292352,1.5485E-12,0.8186206,0.7060118,3.212506E-13,0.9556897,1.55664,-8.662937E-14,1.388099,0.5016674,-1.335536E-12,0.9280114,0,0,-1.382873E-08,0,-0.9280114,0,0.5227183,2.703558E-12,-0.9280114,0,5.407116E-12,0.9280114,0,0,0,0.5227183,2.703558E-12,-1.382873E-08,0,-0.9280114,0,0.5227183,2.703558E-12,1.382876E-08,0,0.9280114,-0.9280114,0,5.407116E-12 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,5,-5,4,6,-4,6,7,-4,8,3,-8,9,6,-5,8,7,-11,10,7,-12,12,10,-12,7,13,-12,14,11,-14,15,17,-17,18,16,-18,19,18,-18,17,20,-20,18,21,-17,19,20,-23,19,22,-24,22,24,-24,25,19,-24,23,26,-26,27,29,-29,30,28,-30,31,30,-30,32,31,-30,31,33,-31,32,29,-35,34,29,-36,35,36,-35,35,29,-38,38,37,-30,39,41,-41,40,42,-40,42,43,-40,43,44,-40,45,43,-43,39,44,-47,39,46,-48,48,47,-47,39,47,-50,49,50,-40,51,53,-53,54,56,-56,57,59,-59 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0.4405717,0.782172,0.4405717,0.4405717,0.782172,0.4405717,0.4405717,0.782172,0.4405717,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4405717,0.782172,-0.4405717,-0.4405717,0.782172,-0.4405717,-0.4405717,0.782172,-0.4405717,0.4405717,0.782172,-0.4405717,0.4405717,0.782172,-0.4405717,0.4405717,0.782172,-0.4405717,-0.4405717,0.782172,0.4405717,-0.4405717,0.782172,0.4405717,-0.4405717,0.782172,0.4405717 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *120 { + a: 2.583477,-2.020723,-2.583477,-2.020723,-7.526395E-12,1.282229,-1.552188,5.088001,-3.222916,2.779574,-3.762558,6.128502,-3.653588,-8.690936E-29,-1.064393E-11,2.057946,-1.064393E-11,9.255095,-5.464958,1.975069,1.552188,5.088001,3.222916,2.779574,3.762558,6.128502,3.653588,-1.177508E-30,5.464958,1.975069,-3.762558,6.128502,-3.222916,2.779574,-1.552188,5.088001,-3.653588,-8.690936E-29,-1.064393E-11,2.057946,-1.064393E-11,9.255095,-5.464958,1.975069,1.552188,5.088001,3.222916,2.779574,3.762558,6.128502,3.653588,-1.177508E-30,5.464958,1.975069,-3.653588,2.080226E-26,-5.464958,1.975069,-3.099916E-23,2.057946,-3.222916,2.779574,-1.552188,5.088001,-3.099916E-23,9.255095,-3.762558,6.128502,1.552188,5.088001,3.222916,2.779574,3.762558,6.128502,5.464958,1.975069,3.653588,-2.078938E-26,-3.099916E-23,2.057946,-5.464958,1.975069,-3.653588,2.080226E-26,-3.222916,2.779574,-1.552188,5.088001,-3.099916E-23,9.255095,-3.762558,6.128502,1.552188,5.088001,3.222916,2.779574,3.762558,6.128502,5.464958,1.975069,3.653588,-2.078938E-26,-2.583477,-2.020723,7.526395E-12,1.282229,2.583477,-2.020723,-2.583477,-2.020723,-7.526284E-12,1.282229,2.583477,-2.020723,7.526395E-12,1.282229,2.583477,-2.020723,-2.583477,-2.020723 + } + UVIndex: *132 { + a: 0,2,1,3,5,4,4,6,3,6,7,3,8,3,7,9,6,4,8,7,10,10,7,11,12,10,11,7,13,11,14,11,13,15,17,16,18,16,17,19,18,17,17,20,19,18,21,16,19,20,22,19,22,23,22,24,23,25,19,23,23,26,25,27,29,28,30,28,29,31,30,29,32,31,29,31,33,30,32,29,34,34,29,35,35,36,34,35,29,37,38,37,29,39,41,40,40,42,39,42,43,39,43,44,39,45,43,42,39,44,46,39,46,47,48,47,46,39,47,49,49,50,39,51,53,52,54,56,55,57,59,58 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh plant_flatShort, Model::RootNode + C: "OO",5700102708932857374,0 + + ;Geometry::, Model::Mesh plant_flatShort + C: "OO",5559758632051629278,5700102708932857374 + + ;Material::leafsGreen, Model::Mesh plant_flatShort + C: "OO",3030,5700102708932857374 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_flatShort.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/plant_flatShort.fbx.import new file mode 100644 index 0000000..060560e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_flatShort.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bbq4gao8qu2rj" +path="res://.godot/imported/plant_flatShort.fbx-0cfbd1524333b1ef1e5c4fe9c47e4c5a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/plant_flatShort.fbx" +dest_files=["res://.godot/imported/plant_flatShort.fbx-0cfbd1524333b1ef1e5c4fe9c47e4c5a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_flatTall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/plant_flatTall.fbx new file mode 100644 index 0000000..c22c19d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_flatTall.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 28 + Millisecond: 214 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "plant_flatTall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "plant_flatTall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4726503332848485265, "Model::plant_flatTall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5280418488126479073, "Geometry::", "Mesh" { + Vertices: *150 { + a: -0.6591747,1.212774E-30,4.331469E-14,0,2.031916E-30,-0.6591747,5.775291E-13,1.796442,4.331469E-14,-0.6591747,1.212774E-30,4.331469E-14,-0.7817221,0.7418826,4.331469E-14,-1.358278,0.9086301,4.331469E-14,5.775291E-13,1.796442,4.331469E-14,-1.008691,2.259968,4.331469E-14,0.6591747,1.212774E-30,4.331469E-14,0.7817221,0.7418826,4.331469E-14,1.008691,2.259968,4.331469E-14,1.358278,0.9086301,4.331469E-14,-1.358278,0.9086301,4.331469E-14,-0.7817221,0.7418826,4.331469E-14,-0.6591747,1.212774E-30,4.331469E-14,5.775291E-13,1.796442,4.331469E-14,-1.008691,2.259968,4.331469E-14,0.7817221,0.7418826,4.331469E-14,0.6591747,1.212774E-30,4.331469E-14,1.008691,2.259968,4.331469E-14,1.358278,0.9086301,4.331469E-14,0,2.031916E-30,-0.6591747,0.6591747,1.212774E-30,4.331469E-14,5.775291E-13,1.796442,4.331469E-14,-1.155058E-13,0.9333062,-0.7817221,-6.064056E-13,1.143079,-1.358278,0,2.031916E-30,-0.6591747,5.775291E-13,2.259968,4.331469E-14,-3.17641E-13,2.843094,-1.008691,5.775291E-13,1.796442,4.331469E-14,1.501576E-12,2.843094,1.008691,1.212811E-12,2.031916E-30,0.6591747,1.328317E-12,0.9333062,0.7817221,1.819217E-12,1.143079,1.358278,0,2.031916E-30,-0.6591747,-6.064056E-13,1.143079,-1.358278,-1.155058E-13,0.9333062,-0.7817221,5.775291E-13,2.259968,4.331469E-14,-3.17641E-13,2.843094,-1.008691,5.775291E-13,1.796442,4.331469E-14,1.501576E-12,2.843094,1.008691,1.212811E-12,2.031916E-30,0.6591747,1.328317E-12,0.9333062,0.7817221,1.819217E-12,1.143079,1.358278,5.775291E-13,1.796442,4.331469E-14,0.6591747,1.212774E-30,4.331469E-14,1.212811E-12,2.031916E-30,0.6591747,1.212811E-12,2.031916E-30,0.6591747,-0.6591747,1.212774E-30,4.331469E-14,5.775291E-13,1.796442,4.331469E-14 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,5,-5,3,4,-7,7,6,-5,8,6,-10,10,9,-7,9,11,-9,12,14,-14,13,14,-16,15,16,-14,15,18,-18,17,19,-16,20,17,-19,21,23,-23,24,26,-26,26,24,-28,28,27,-25,29,26,-28,30,29,-28,31,29,-31,32,31,-31,32,33,-32,34,36,-36,36,34,-38,37,38,-37,34,39,-38,39,40,-38,39,41,-41,41,42,-41,43,42,-42,44,46,-46,47,49,-49 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: -0.6844435,0.2511452,-0.6844435,-0.6844435,0.2511452,-0.6844435,-0.6844435,0.2511452,-0.6844435,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6844435,0.2511452,-0.6844435,0.6844435,0.2511452,-0.6844435,0.6844435,0.2511452,-0.6844435,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6844435,0.2511452,0.6844435,0.6844435,0.2511452,0.6844435,0.6844435,0.2511452,0.6844435,-0.6844435,0.2511452,0.6844435,-0.6844435,0.2511452,0.6844435,-0.6844435,0.2511452,0.6844435 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *100 { + a: 1.835066,-0.4608682,-1.835066,-0.4608682,-1.48697E-12,6.845925,2.595176,4.7747E-30,3.077646,2.920798,5.347551,3.577284,-2.273737E-12,7.072607,3.971224,8.897512,-2.595176,4.7747E-30,-3.077646,2.920798,-3.971224,8.897512,-5.347551,3.577284,5.347551,3.577284,3.077646,2.920798,2.595176,4.7747E-30,-2.273737E-12,7.072607,3.971224,8.897512,-3.077646,2.920798,-2.595176,4.7747E-30,-3.971224,8.897512,-5.347551,3.577284,1.835066,-0.4608682,-1.835066,-0.4608682,-1.728247E-12,6.845925,3.077646,3.674434,5.347551,4.500311,2.595176,-2.442673E-26,-1.705303E-13,8.897512,3.971224,11.19328,-1.705303E-13,7.072607,-3.971224,11.19328,-2.595176,-2.502514E-26,-3.077646,3.674434,-5.347551,4.500311,2.595176,-2.442673E-26,5.347551,4.500311,3.077646,3.674434,-1.705303E-13,8.897512,3.971224,11.19328,-1.705303E-13,7.072607,-3.971224,11.19328,-2.595176,-2.502514E-26,-3.077646,3.674434,-5.347551,4.500311,1.487192E-12,6.845925,1.835066,-0.4608682,-1.835066,-0.4608682,1.835066,-0.4608682,-1.835066,-0.4608682,1.728247E-12,6.845925 + } + UVIndex: *96 { + a: 0,2,1,3,5,4,3,4,6,7,6,4,8,6,9,10,9,6,9,11,8,12,14,13,13,14,15,15,16,13,15,18,17,17,19,15,20,17,18,21,23,22,24,26,25,26,24,27,28,27,24,29,26,27,30,29,27,31,29,30,32,31,30,32,33,31,34,36,35,36,34,37,37,38,36,34,39,37,39,40,37,39,41,40,41,42,40,43,42,41,44,46,45,47,49,48 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh plant_flatTall, Model::RootNode + C: "OO",4726503332848485265,0 + + ;Geometry::, Model::Mesh plant_flatTall + C: "OO",5280418488126479073,4726503332848485265 + + ;Material::leafsGreen, Model::Mesh plant_flatTall + C: "OO",3030,4726503332848485265 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/plant_flatTall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/plant_flatTall.fbx.import new file mode 100644 index 0000000..98eae17 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/plant_flatTall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cb8l45tiiefuo" +path="res://.godot/imported/plant_flatTall.fbx-7d722f1a50b0ad72057655ba2777f42c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/plant_flatTall.fbx" +dest_files=["res://.godot/imported/plant_flatTall.fbx-7d722f1a50b0ad72057655ba2777f42c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/platform_beach.fbx b/assets/models/kenney_nature-kit/Models/FBX format/platform_beach.fbx new file mode 100644 index 0000000..33b815d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/platform_beach.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 28 + Millisecond: 317 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "platform_beach.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "platform_beach.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4971216698164228030, "Model::platform_beach", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4664209916377396908, "Geometry::", "Mesh" { + Vertices: *882 { + a: -3.392105,0.4125,1.753157,-3.545355,0.4125,2.018595,-3.596034,9.518396E-16,1.804385,-3.719708,9.587886E-16,2.018595,-1.848155,0.4125,-2.072895,-1.721609,0.4125,-1.853712,-2.022507,0,-2.072895,-1.949447,4.793943E-16,-1.946351,3.220459,0.4125,-2.368486,2.791545,0.4125,-1.625585,2.992903,0.4125,-2.762624,1.946263,0.4125,-3.340491,1.585584,0.4125,-2.321847,1.536896,0.4125,-3.340491,1.148373,0.4125,-2.069423,0.9757089,0.4125,-2.368486,2.6242,8.459899E-16,2.65152,2.1117,8.459899E-16,3.539196,2.34745,0.4125,2.65152,1.973325,0.4125,3.299523,1.329334,8.459899E-16,-3.7,2.866834,8.459899E-16,-3.7,1.536896,0.4125,-3.340491,2.763052,0.20625,-3.520246,1.946263,0.4125,-3.340491,0.8509502,0.4125,2.65152,1.225075,0.4125,3.299523,0.5742003,8.459899E-16,2.65152,1.0867,8.459899E-16,3.539196,-1.053882,0,-2.632131,-0.7310071,0,-2.072895,-1.141058,0.4125,-2.481137,-0.9053596,0.4125,-2.072895,4.032105,8.459899E-16,0.5205223,4.45,8.459899E-16,1.244336,3.824151,0.4125,0.6396799,4.17325,0.4125,1.244336,4.17325,0.4125,1.244336,3.824151,0.4125,1.555466,3.824151,0.4125,0.6396799,3.799125,0.4125,1.89234,3.240668,0.4125,1.89234,-3.545355,0.4125,2.018595,-3.309656,0.4125,2.426837,-3.719708,9.587886E-16,2.018595,-3.396833,9.587886E-16,2.577831,-3.505659,0.4125,-1.738726,-3.685489,0.4125,-1.427251,-3.713221,8.459899E-16,-2.098235,-4.274408,0.20625,-0.766721,-4.481971,8.459899E-16,-0.766721,3.9375,8.459899E-16,2.132013,3.241451,8.459899E-16,2.132013,3.799125,0.4125,1.89234,3.240668,0.4125,1.89234,0.9495723,0.4125,2.480701,0.8509502,0.4125,2.65152,0.6380327,8.683216E-16,2.540959,0.5742003,8.459899E-16,2.65152,2.24202,0.4125,2.46891,2.55356,8.459899E-16,2.529167,2.34745,0.4125,2.65152,2.6242,8.459899E-16,2.65152,-2.236743,0.4125,-1.484912,-3.612991,0.4125,-0.4996151,-2.383284,0.4125,-1.738726,-3.505659,0.4125,-1.738726,-3.685489,0.4125,-1.427251,-3.851008,0.4125,-0.3928792,-3.551693,0.4125,0.1255501,2.34745,0.4125,2.65152,1.973325,0.4125,3.299523,2.24202,0.4125,2.46891,1.585584,0.4125,2.847903,1.225075,0.4125,3.299523,0.9495723,0.4125,2.480701,0.8509502,0.4125,2.65152,3.616197,0.8249999,1.435403,1.868131,0.8249999,2.44465,3.616197,0.8249999,0.3822969,3.616197,0.8249999,-0.1896289,2.992903,0.8249999,-1.269206,1.585584,0.8249999,-2.081722,1.303037,0.8249999,2.44465,-0.07354921,0.8249999,-1.123821,0.3648786,0.8249999,1.903003,-0.585541,0.8249999,2.583437,-0.9588648,0.8249999,-1.525418,-2.234975,0.8249999,2.355248,-1.960049,0.8249999,-1.427251,-3.394313,0.8249999,-0.4004185,-2.785529,0.8249999,2.105506,-3.206222,0.8249999,1.517889,-3.713221,8.459899E-16,-2.098235,-2.175721,8.459899E-16,-2.098235,-3.505659,0.4125,-1.738726,-2.383284,0.4125,-1.738726,-0.9053596,0.4125,-2.072895,-1.062473,0.4125,-1.800766,-1.141058,0.4125,-2.481137,-1.511227,0.4125,-2.00433,-1.612456,0.4125,-2.481137,-1.721609,0.4125,-1.853712,-1.848155,0.4125,-2.072895,-2.751083,9.587886E-16,2.577831,-3.396833,9.587886E-16,2.577831,-2.838259,0.4125,2.426837,-3.309656,0.4125,2.426837,3.635584,8.459899E-16,-2.368486,3.220459,0.4125,-2.368486,2.866834,8.459899E-16,-3.7,2.992903,0.4125,-2.762624,2.763052,0.20625,-3.520246,-1.699632,0,-2.632131,-1.612456,0.4125,-2.481137,-2.022507,0,-2.072895,-1.848155,0.4125,-2.072895,-1.699632,0,-2.632131,-1.053882,0,-2.632131,-1.612456,0.4125,-2.481137,-1.141058,0.4125,-2.481137,1.148373,0.4125,-2.069423,0.733052,8.602833E-16,-2.069762,0.9757089,0.4125,-2.368486,0.5605839,8.459899E-16,-2.368486,2.6242,8.459899E-16,2.65152,2.55356,8.459899E-16,2.529167,2.1117,8.459899E-16,3.539196,1.329334,8.459899E-16,-3.7,2.866834,8.459899E-16,-3.7,3.206866,8.459899E-16,-1.625924,3.241451,8.459899E-16,2.132013,3.9375,8.459899E-16,2.132013,4.032105,8.459899E-16,-1.149472,4.032105,8.459899E-16,0.5205223,4.45,8.459899E-16,1.244336,1.0867,8.459899E-16,3.539196,0.733052,8.602833E-16,-2.069762,0.5605839,8.459899E-16,-2.368486,3.635584,8.459899E-16,-2.368486,0.6380327,8.683216E-16,2.540959,0.5742003,8.459899E-16,2.65152,-0.09639235,9.023893E-16,-1.590882,0.3890492,9.023893E-16,2.397208,-0.9833158,9.587886E-16,3.379725,-0.8198305,4.653789E-16,-1.919049,-1.053882,0,-2.632131,-0.7310071,0,-2.072895,-2.751083,9.587886E-16,2.577831,-1.699632,0,-2.632131,-1.949447,4.793943E-16,-1.946351,-2.047501,6.751791E-16,-1.876151,-2.175721,8.459899E-16,-2.098235,-3.713221,8.459899E-16,-2.098235,-3.396833,9.587886E-16,2.577831,-3.596034,9.518396E-16,1.804385,-3.719708,9.587886E-16,2.018595,-3.718468,9.023893E-16,0.5557059,-4.481971,8.459899E-16,-0.766721,-2.022507,0,-2.072895,2.1117,8.459899E-16,3.539196,1.0867,8.459899E-16,3.539196,1.973325,0.4125,3.299523,1.225075,0.4125,3.299523,1.536896,0.4125,-3.340491,0.9757089,0.4125,-2.368486,1.329334,8.459899E-16,-3.7,0.5605839,8.459899E-16,-2.368486,-0.7310071,0,-2.072895,-0.8198305,4.653789E-16,-1.919049,-0.9053596,0.4125,-2.072895,-1.062473,0.4125,-1.800766,3.635584,8.459899E-16,-2.368486,3.206866,8.459899E-16,-1.625924,3.220459,0.4125,-2.368486,2.791545,0.4125,-1.625585,4.45,8.459899E-16,1.244336,3.9375,8.459899E-16,2.132013,4.17325,0.4125,1.244336,3.799125,0.4125,1.89234,-2.784774,0.4125,2.334198,-2.838259,0.4125,2.426837,-3.360752,0.4125,2.072923,-3.309656,0.4125,2.426837,-3.545355,0.4125,2.018595,-3.392105,0.4125,1.753157,-2.047501,6.751791E-16,-1.876151,-2.236743,0.4125,-1.484912,-2.175721,8.459899E-16,-2.098235,-2.383284,0.4125,-1.738726,-2.838259,0.4125,2.426837,-2.784774,0.4125,2.334198,-2.751083,9.587886E-16,2.577831,-3.612991,0.4125,-0.4996151,-3.394313,0.8249999,-0.4004185,-3.551693,0.4125,0.1255501,-3.206222,0.8249999,1.517889,-3.718468,9.023893E-16,0.5557059,-3.596034,9.518396E-16,1.804385,-3.392105,0.4125,1.753157,-3.263128,0.61875,2.003032,-3.360752,0.4125,2.072923,-1.949447,4.793943E-16,-1.946351,-1.721609,0.4125,-1.853712,-2.047501,6.751791E-16,-1.876151,-2.236743,0.4125,-1.484912,-1.499511,0.61875,-1.884841,-3.394313,0.8249999,-0.4004185,-3.612991,0.4125,-0.4996151,-1.960049,0.8249999,-1.427251,-1.511227,0.4125,-2.00433,1.585584,0.4125,2.847903,0.9495723,0.4125,2.480701,1.585584,0.61875,2.72784,0.3648786,0.8249999,1.903003,0.3890492,9.023893E-16,2.397208,0.6380327,8.683216E-16,2.540959,1.303037,0.8249999,2.44465,0.733052,8.602833E-16,-2.069762,1.148373,0.4125,-2.069423,-0.09639235,9.023893E-16,-1.590882,-0.07354921,0.8249999,-1.123821,1.585584,0.4125,-2.321847,1.585584,0.8249999,-2.081722,-1.511227,0.4125,-2.00433,-1.062473,0.4125,-1.800766,-1.499511,0.61875,-1.884841,-0.07354921,0.8249999,-1.123821,-0.09639235,9.023893E-16,-1.590882,-0.8198305,4.653789E-16,-1.919049,-0.9588648,0.8249999,-1.525418,3.824151,0.4125,1.555466,3.240668,0.4125,1.89234,3.616197,0.8249999,1.435403,2.24202,0.4125,2.46891,1.585584,0.61875,2.72784,1.868131,0.8249999,2.44465,1.585584,0.4125,2.847903,2.55356,8.459899E-16,2.529167,3.241451,8.459899E-16,2.132013,1.585584,0.4125,-2.321847,2.791545,0.4125,-1.625585,1.585584,0.8249999,-2.081722,3.824151,0.4125,-1.029409,2.992903,0.8249999,-1.269206,4.032105,8.459899E-16,-1.149472,3.206866,8.459899E-16,-1.625924,0.3890492,9.023893E-16,2.397208,-0.9833158,9.587886E-16,3.379725,0.3648786,0.8249999,1.903003,-0.9968155,0.2376472,3.242046,-0.585541,0.8249999,2.583437,-0.9833158,9.587886E-16,3.379725,-2.751083,9.587886E-16,2.577831,-0.9968155,0.2376472,3.242046,-2.784774,0.4125,2.334198,-2.234975,0.8249999,2.355248,-3.263128,0.61875,2.003032,-2.785529,0.8249999,2.105506,-3.360752,0.4125,2.072923,4.032105,8.459899E-16,-1.149472,4.032105,8.459899E-16,0.5205223,3.824151,0.4125,-1.029409,3.616197,0.8249999,-0.1896289,3.616197,0.8249999,0.3822969,3.824151,0.4125,0.6396799,3.616197,0.8249999,1.435403,3.824151,0.4125,1.555466,3.824151,0.4125,-1.029409,3.616197,0.8249999,-0.1896289,2.992903,0.8249999,-1.269206,2.763052,0.20625,-3.520246,2.992903,0.4125,-2.762624,1.946263,0.4125,-3.340491,-1.499511,0.61875,-1.884841,-0.9588648,0.8249999,-1.525418,-1.960049,0.8249999,-1.427251,-3.551693,0.4125,0.1255501,-3.718468,9.023893E-16,0.5557059,-3.851008,0.4125,-0.3928792,-4.481971,8.459899E-16,-0.766721,-4.274408,0.20625,-0.766721,-3.685489,0.4125,-1.427251,-3.851008,0.4125,-0.3928792,-4.274408,0.20625,-0.766721,1.868131,0.8249999,2.44465,1.585584,0.61875,2.72784,1.303037,0.8249999,2.44465,-0.585541,0.8249999,2.583437,-0.9968155,0.2376472,3.242046,-2.234975,0.8249999,2.355248,-3.206222,0.8249999,1.517889,-2.785529,0.8249999,2.105506,-3.263128,0.61875,2.003032 + } + PolygonVertexIndex: *576 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,14,12,-14,15,14,-14,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,37,38,-41,41,40,-39,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,49,-49,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,64,-67,67,68,-65,69,64,-69,70,72,-72,73,71,-73,74,71,-74,75,74,-74,76,74,-76,77,79,-79,80,78,-80,81,78,-81,82,78,-82,83,78,-83,84,83,-83,85,83,-85,86,85,-85,87,86,-85,88,86,-88,89,88,-88,90,88,-90,91,88,-91,92,91,-91,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,100,-100,102,100,-102,103,102,-102,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,111,-111,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,127,-127,127,128,-127,128,129,-127,129,130,-127,126,130,-132,131,130,-133,130,133,-133,133,134,-133,135,132,-135,136,128,-128,137,128,-137,138,128,-138,130,129,-140,137,136,-141,141,140,-137,137,140,-143,143,142,-141,144,142,-144,145,142,-145,144,146,-146,147,145,-147,148,146,-145,149,146,-149,150,149,-149,151,150,-149,152,151,-149,153,152,-149,154,153,-149,155,153,-155,154,156,-156,157,153,-156,158,153,-158,150,159,-150,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,183,-183,185,184,-183,186,188,-188,189,187,-189,190,192,-192,193,195,-195,196,194,-196,197,196,-196,198,196,-198,199,196,-199,196,199,-201,201,200,-200,202,204,-204,205,203,-205,205,206,-204,206,205,-208,208,207,-206,209,206,-208,210,203,-207,211,213,-213,213,214,-213,214,215,-213,216,212,-216,217,214,-214,218,220,-220,221,219,-221,222,219,-222,223,222,-222,224,226,-226,226,227,-226,227,228,-226,229,225,-229,230,227,-227,231,233,-233,234,232,-234,235,234,-234,236,235,-234,234,235,-238,234,238,-233,239,232,-239,240,242,-242,243,241,-243,244,243,-243,243,245,-242,246,241,-246,247,249,-249,250,248,-250,251,250,-250,252,254,-254,255,253,-255,256,255,-255,257,255,-257,258,257,-257,255,257,-260,260,262,-262,263,261,-263,264,261,-264,265,261,-265,266,265,-265,267,265,-267,268,270,-270,271,273,-273,274,276,-276,277,279,-279,280,278,-280,281,280,-280,282,284,-284,285,287,-287,288,290,-290,291,293,-293 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1728 { + a: -0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.4906372,0.8240349,-0.2832696,0.4906372,0.8240349,-0.2832696,0.4906372,0.8240349,-0.2832696,0.1691324,0.9367782,-0.3063347,0.1691324,0.9367782,-0.3063347,0.1691324,0.9367782,-0.3063347,-0.04381321,0.8935396,-0.4468415,-0.04381321,0.8935396,-0.4468415,-0.04381321,0.8935396,-0.4468415,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.3917876,0.9179173,-0.0626936,-0.3917876,0.9179173,-0.0626936,-0.3917876,0.9179173,-0.0626936,0,0.808338,0.5887187,0,0.808338,0.5887187,0,0.808338,0.5887187,-0.08744164,0.7699694,0.6320611,-0.08744164,0.7699694,0.6320611,-0.08744164,0.7699694,0.6320611,-0.4321812,0.8470442,0.3094114,-0.4321812,0.8470442,0.3094114,-0.4321812,0.8470442,0.3094114 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *588 { + a: 12.65485,-1.264207,13.86154,-1.264207,13.23094,-2.993604,14.20476,-2.993604,-10.70574,0.7616532,-9.709315,0.7616532,-11.04895,-0.9677438,-10.47367,-0.9677438,-12.67897,-9.324748,-10.99033,-6.399941,-11.78308,-10.87647,-7.662454,-13.15154,-6.242456,-9.141129,-6.050773,-13.15154,-4.521153,-8.147335,-3.841374,-9.324748,-3.874738,-7.11716,-7.910172,-7.11716,-4.419522,-5.238918,-7.365388,-5.238918,-5.233598,-9.570829,-11.28675,-9.570829,-6.050773,-7.416589,-10.87816,-8.49371,-7.662455,-7.416589,10.71559,0.2395953,13.66145,0.2395953,10.1708,-1.638647,14.20624,-1.638647,11.04895,-0.5458933,8.506628,-0.5458933,10.70574,1.183504,8.849841,1.183504,-9.711963,-6.391795,-13.00247,-6.391795,-9.708877,-4.513553,-12.45769,-4.513553,-16.43012,4.898962,-15.05571,6.12388,-15.05571,2.518425,-14.95718,7.450157,-12.75853,7.450158,-0.09654747,-3.995988,1.759348,-3.995988,-0.439761,-5.725385,2.102562,-5.725385,0.9726306,-8.877722,2.388618,-8.877722,0.1554554,-11.03196,5.800017,-9.954843,6.208605,-11.03196,15.50197,-4.216858,12.76162,-4.216858,14.95718,-2.338616,12.75853,-2.338616,6.588837,5.483975,7.365388,5.483975,7.407555,3.605732,7.910172,3.605732,-12.83129,0.005461927,-13.65001,-1.87278,-13.66145,0.005461927,-14.20624,-1.87278,8.806077,-5.846109,14.22437,-1.966989,9.383006,-6.845379,13.80181,-6.845379,14.5098,-5.619098,15.16145,-1.546769,13.98304,0.4942919,-9.24193,10.43906,-7.768997,12.99025,-8.826851,9.720117,-6.242456,11.21222,-4.823131,12.99025,-3.738474,9.766541,-3.350198,10.43906,-14.237,5.651193,-7.354845,9.624605,-14.237,1.505106,-14.237,-0.7465705,-11.78308,-4.996874,-6.242456,-8.195756,-5.130069,9.624605,0.2895638,-4.424492,-1.43653,7.49214,2.305279,10.17101,3.775059,-6.005582,8.799113,9.272632,7.716728,-5.619098,13.36344,-1.576451,10.96665,8.289393,12.62292,5.975943,14.61898,-5.427527,8.565831,-5.427527,13.80181,-3.273286,9.383006,-3.273286,3.564408,-8.161005,4.182965,-7.089632,4.492356,-9.768257,5.949714,-7.891064,6.348251,-9.768257,6.777988,-7.298078,7.276199,-8.161005,-10.83103,-3.4886,-13.37336,-3.4886,-11.17425,-1.759203,-13.03014,-1.759203,0.9188072,-11.20757,1.735982,-9.053332,6.971957,-11.20757,3.527762,-9.053332,6.563369,-10.13045,-5.628647,-3.77301,-5.285434,-2.043613,-3.086324,-3.77301,-3.429538,-2.043613,6.691465,-3.562084,4.149142,-3.562084,6.348251,-1.832687,4.492356,-1.832687,-4.795222,6.473331,-5.61394,4.31909,-6.154782,6.473331,-6.971957,4.31909,10.3315,10.43906,10.05338,9.957351,8.313781,13.93384,5.233598,-14.56693,11.28675,-14.56693,12.62546,-6.401277,12.76162,8.39375,15.50197,8.39375,15.87443,-4.52548,15.87443,2.0493,17.51969,4.898962,4.278348,13.93384,2.886032,-8.148671,2.207023,-9.324748,14.31332,-9.324748,2.51194,10.00378,2.260631,10.43906,-0.3794974,-6.263317,1.53169,9.437829,-3.871322,13.30601,-3.227679,-7.555309,-4.149142,-10.36272,-2.877981,-8.161005,-10.83103,10.14894,-6.691465,-10.36272,-7.674987,-7.662798,-8.061027,-7.386421,-8.565831,-8.260768,-14.61898,-8.260768,-13.37336,10.14894,-14.15761,7.103878,-14.64452,7.947225,-14.63964,2.187819,-17.64556,-3.018587,-7.962626,-8.161005,8.313781,-7.000093,4.278347,-7.000093,7.768997,-5.121851,4.823131,-5.121851,-14.41495,0.3467429,-9.996156,0.3467429,-15.23213,-1.807498,-9.17898,-1.807498,5.628647,2.259373,4.92925,2.259373,5.285434,3.98877,4.048318,3.98877,15.23213,-5.080986,11.8564,-5.080986,14.41495,-2.926745,11.03768,-2.926745,4.517216,-8.852939,0.4817833,-8.852939,3.972433,-6.974697,1.026567,-6.974697,10.96368,9.189757,11.17425,9.554478,13.23131,8.161116,13.03014,9.554478,13.95809,7.947225,13.35474,6.902195,10.42734,2.160194,9.465918,4.314435,11.43695,2.160194,10.61978,4.314435,-13.86154,3.209364,-13.4404,3.209364,-14.20476,1.479967,-3.345657,-4.836157,-2.87297,-3.017442,-0.8725736,-4.836157,4.715641,-3.017442,0.7487984,-6.654873,5.688433,-6.654873,5.566059,-4.836157,6.594673,-3.9268,6.831016,-4.836157,1.779846,-4.816027,1.262808,-2.997311,2.254621,-4.816027,3.757074,-2.997311,0.4804905,-2.087954,9.948133,-1.178596,10.42082,-2.997311,3.003471,-1.178596,0.244147,-2.997311,11.01223,-1.515889,8.120884,-1.515889,10.77589,-0.6065315,4.990141,0.3028263,6.045397,-3.334605,7.177291,-3.334605,9.255073,0.3028263,-6.573712,-2.527186,-7.989101,-0.7084709,-2.803004,-2.527186,-1.961476,1.110245,-9.97669,-0.7084709,-9.504004,1.110245,8.678141,-0.6783947,6.738116,-0.6783947,8.441797,0.230963,2.091478,1.140321,2.933006,-2.49711,6.060526,-2.49711,5.918817,1.140321,9.97669,-4.32601,7.324136,-4.32601,9.504004,-2.507295,2.784219,-4.32601,0.03636085,-3.416653,1.557179,-2.507295,-0.1999827,-4.32601,3.727811,-6.144726,6.855012,-6.144726,-0.8355611,-3.518592,-6.317938,-3.518592,-1.308248,-1.699877,-11.01223,-3.518592,-7.706012,-1.699877,-11.48492,-5.337307,-7.733327,-5.337307,-4.248559,-3.855886,-10.89351,-3.855886,-3.193303,-0.2184545,-10.62119,-2.808097,-7.795205,-0.2184545,1.971219,-6.174802,-5.671074,-6.174802,1.698898,-5.127014,-6.188112,-4.356087,-4.182644,-2.537371,-8.441797,-3.446729,-6.562765,-2.537371,-8.678141,-4.356087,4.52548,-7.146077,-2.049301,-7.146077,4.052793,-5.327362,0.7465703,-3.508646,-1.505106,-3.508646,-2.518425,-5.327362,-5.651193,-3.508646,-6.12388,-5.327362,-4.018035,-11.49404,-6.471949,-8.627484,-1.564122,-8.627484,-2.824365,-16.00707,-5.058252,-13.68654,-0.3512892,-13.68654,5.151285,-6.020007,3.170999,-4.211463,7.131571,-4.211463,-6.563453,-6.894436,-5.425112,-9.048676,-8.920266,-6.894436,-11.43695,-9.048676,-11.02836,-7.971557,-3.255828,-13.3221,0.8683097,-13.3221,-0.3216286,-15.36864,7.354845,-5.867758,6.242456,-7.247038,5.130069,-5.867758,-0.8897107,-5.928221,-2.138292,-9.552233,-7.445393,-5.928221,-2.489048,-9.914052,0.3561719,-9.914052,-1.066438,-11.44175 + } + UVIndex: *576 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,14,12,13,15,14,13,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,37,38,40,41,40,38,42,44,43,45,43,44,46,48,47,49,47,48,50,49,48,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,64,66,67,68,64,69,64,68,70,72,71,73,71,72,74,71,73,75,74,73,76,74,75,77,79,78,80,78,79,81,78,80,82,78,81,83,78,82,84,83,82,85,83,84,86,85,84,87,86,84,88,86,87,89,88,87,90,88,89,91,88,90,92,91,90,93,95,94,96,94,95,97,99,98,100,98,99,101,100,99,102,100,101,103,102,101,104,106,105,107,105,106,108,110,109,111,109,110,112,111,110,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,127,126,127,128,126,128,129,126,129,130,126,126,130,131,131,130,132,130,133,132,133,134,132,135,132,134,136,128,127,137,128,136,138,128,137,130,129,139,137,136,140,141,140,136,137,140,142,143,142,140,144,142,143,145,142,144,144,146,145,147,145,146,148,146,144,149,146,148,150,149,148,151,150,148,152,151,148,153,152,148,154,153,148,155,153,154,154,156,155,157,153,155,158,153,157,150,159,149,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,183,182,185,184,182,186,188,187,189,187,188,190,192,191,193,195,194,196,194,195,197,196,195,198,196,197,199,196,198,196,199,200,201,200,199,202,204,203,205,203,204,205,206,203,206,205,207,208,207,205,209,206,207,210,203,206,211,213,212,213,214,212,214,215,212,216,212,215,217,214,213,218,220,219,221,219,220,222,219,221,223,222,221,224,226,225,226,227,225,227,228,225,229,225,228,230,227,226,231,233,232,234,232,233,235,234,233,236,235,233,234,235,237,234,238,232,239,232,238,240,242,241,243,241,242,244,243,242,243,245,241,246,241,245,247,249,248,250,248,249,251,250,249,252,254,253,255,253,254,256,255,254,257,255,256,258,257,256,255,257,259,260,262,261,263,261,262,264,261,263,265,261,264,266,265,264,267,265,266,268,270,269,271,273,272,274,276,275,277,279,278,280,278,279,281,280,279,282,284,283,285,287,286,288,290,289,291,293,292 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *192 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh platform_beach, Model::RootNode + C: "OO",4971216698164228030,0 + + ;Geometry::, Model::Mesh platform_beach + C: "OO",4664209916377396908,4971216698164228030 + + ;Material::woodInner, Model::Mesh platform_beach + C: "OO",3054,4971216698164228030 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/platform_beach.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/platform_beach.fbx.import new file mode 100644 index 0000000..72ba5c6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/platform_beach.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://buc2fngpieay1" +path="res://.godot/imported/platform_beach.fbx-5609dd5542466b88fac68c7a10eaa5f4.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/platform_beach.fbx" +dest_files=["res://.godot/imported/platform_beach.fbx-5609dd5542466b88fac68c7a10eaa5f4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/platform_grass.fbx b/assets/models/kenney_nature-kit/Models/FBX format/platform_grass.fbx new file mode 100644 index 0000000..44e4091 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/platform_grass.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 28 + Millisecond: 425 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "platform_grass.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "platform_grass.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5416541402870630939, "Model::platform_grass", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5302442762837314200, "Geometry::", "Mesh" { + Vertices: *789 { + a: -3.392105,0.4125,1.753157,-3.545355,0.4125,2.018595,-3.596034,9.518396E-16,1.804385,-3.719708,9.587886E-16,2.018595,-1.848155,0.4125,-2.072895,-1.721609,0.4125,-1.853712,-2.022507,0,-2.072895,-1.949447,4.793943E-16,-1.946351,-3.551693,0.4125,0.1255501,-3.718468,9.023893E-16,0.5557059,-4.066846,0.4125,-0.766721,-4.481971,8.459899E-16,-0.766721,2.6242,8.459899E-16,2.65152,2.1117,8.459899E-16,3.539196,2.34745,0.4125,2.65152,1.973325,0.4125,3.299523,1.329334,8.459899E-16,-3.7,2.866834,8.459899E-16,-3.7,1.536896,0.4125,-3.340491,2.659271,0.4125,-3.340491,0.8509502,0.4125,2.65152,1.225075,0.4125,3.299523,0.5742003,8.459899E-16,2.65152,1.0867,8.459899E-16,3.539196,-1.053882,0,-2.632131,-0.7310071,0,-2.072895,-1.141058,0.4125,-2.481137,-0.9053596,0.4125,-2.072895,4.032105,8.459899E-16,0.5205223,4.45,8.459899E-16,1.244336,3.824151,0.4125,0.6396799,4.17325,0.4125,1.244336,-3.545355,0.4125,2.018595,-3.309656,0.4125,2.426837,-3.719708,9.587886E-16,2.018595,-3.396833,9.587886E-16,2.577831,4.032105,8.459899E-16,-1.149472,4.032105,8.459899E-16,0.5205223,3.616197,0.8249999,-0.9093469,3.616197,0.8249999,0.3822969,3.824151,0.4125,0.6396799,3.616197,0.8249999,1.435403,3.824151,0.4125,1.555466,-3.505659,0.4125,-1.738726,-4.066846,0.4125,-0.766721,-3.713221,8.459899E-16,-2.098235,-4.481971,8.459899E-16,-0.766721,1.585584,0.4125,2.847903,0.9495723,0.4125,2.480701,1.585584,0.8249999,2.607778,0.3648786,0.8249999,1.903003,0.3890492,9.023893E-16,2.397208,0.6380327,8.683216E-16,2.540959,3.9375,8.459899E-16,2.132013,3.241451,8.459899E-16,2.132013,3.799125,0.4125,1.89234,3.240668,0.4125,1.89234,0.9495723,0.4125,2.480701,0.8509502,0.4125,2.65152,0.6380327,8.683216E-16,2.540959,0.5742003,8.459899E-16,2.65152,2.24202,0.4125,2.46891,2.55356,8.459899E-16,2.529167,2.34745,0.4125,2.65152,2.6242,8.459899E-16,2.65152,0.3890492,9.023893E-16,2.397208,-0.9833158,9.587886E-16,3.379725,0.3648786,0.8249999,1.903003,-1.03018,0.8249999,2.901767,3.116197,0.8249999,1.146728,3.116197,0.8249999,-0.6206717,3.616197,0.8249999,-0.9093469,1.585584,0.8249999,-2.081722,3.116197,0.8249999,0.3822969,1.585584,0.8249999,-1.504372,-0.0460875,0.8249999,-0.5623257,-0.07354921,0.8249999,-1.123821,-1.431456,0.8249999,-1.190756,-1.487795,0.8249999,-1.765351,-2.86853,0.8249999,-0.1619125,-3.394313,0.8249999,-0.4004185,-3.165505,0.8249999,1.933141,3.616197,0.8249999,0.3822969,3.616197,0.8249999,1.435403,1.585584,0.8249999,2.607778,1.585584,0.8249999,2.030428,0.3648786,0.8249999,1.903003,0.3358209,0.8249999,1.308877,-1.03018,0.8249999,2.901767,-1.08652,0.8249999,2.327173,-2.696062,0.8249999,1.597052,1.585584,0.4125,-2.321847,2.791545,0.4125,-1.625585,1.585584,0.8249999,-2.081722,3.616197,0.8249999,-0.9093469,4.032105,8.459899E-16,-1.149472,3.206866,8.459899E-16,-1.625924,-1.511227,0.4125,-2.00433,-1.062473,0.4125,-1.800766,-1.487795,0.8249999,-1.765351,-0.07354921,0.8249999,-1.123821,-0.09639235,9.023893E-16,-1.590882,-0.8198305,4.653789E-16,-1.919049,-3.713221,8.459899E-16,-2.098235,-2.175721,8.459899E-16,-2.098235,-3.505659,0.4125,-1.738726,-2.383284,0.4125,-1.738726,-2.751083,9.587886E-16,2.577831,-3.396833,9.587886E-16,2.577831,-2.838259,0.4125,2.426837,-3.309656,0.4125,2.426837,3.635584,8.459899E-16,-2.368486,3.220459,0.4125,-2.368486,2.866834,8.459899E-16,-3.7,2.659271,0.4125,-3.340491,-1.699632,0,-2.632131,-1.612456,0.4125,-2.481137,-2.022507,0,-2.072895,-1.848155,0.4125,-2.072895,-1.699632,0,-2.632131,-1.053882,0,-2.632131,-1.612456,0.4125,-2.481137,-1.141058,0.4125,-2.481137,1.148373,0.4125,-2.069423,0.733052,8.602833E-16,-2.069762,0.9757089,0.4125,-2.368486,0.5605839,8.459899E-16,-2.368486,3.824151,0.4125,1.555466,3.240668,0.4125,1.89234,3.616197,0.8249999,1.435403,2.24202,0.4125,2.46891,1.585584,0.8249999,2.607778,1.585584,0.4125,2.847903,2.55356,8.459899E-16,2.529167,3.241451,8.459899E-16,2.132013,2.6242,8.459899E-16,2.65152,2.55356,8.459899E-16,2.529167,2.1117,8.459899E-16,3.539196,1.329334,8.459899E-16,-3.7,2.866834,8.459899E-16,-3.7,3.206866,8.459899E-16,-1.625924,3.241451,8.459899E-16,2.132013,3.9375,8.459899E-16,2.132013,4.032105,8.459899E-16,-1.149472,4.032105,8.459899E-16,0.5205223,4.45,8.459899E-16,1.244336,1.0867,8.459899E-16,3.539196,0.733052,8.602833E-16,-2.069762,0.5605839,8.459899E-16,-2.368486,3.635584,8.459899E-16,-2.368486,0.6380327,8.683216E-16,2.540959,0.5742003,8.459899E-16,2.65152,-0.09639235,9.023893E-16,-1.590882,0.3890492,9.023893E-16,2.397208,-0.9833158,9.587886E-16,3.379725,-0.8198305,4.653789E-16,-1.919049,-1.053882,0,-2.632131,-0.7310071,0,-2.072895,-2.751083,9.587886E-16,2.577831,-1.699632,0,-2.632131,-1.949447,4.793943E-16,-1.946351,-2.047501,6.751791E-16,-1.876151,-2.175721,8.459899E-16,-2.098235,-3.713221,8.459899E-16,-2.098235,-3.396833,9.587886E-16,2.577831,-3.596034,9.518396E-16,1.804385,-3.719708,9.587886E-16,2.018595,-3.718468,9.023893E-16,0.5557059,-4.481971,8.459899E-16,-0.766721,-2.022507,0,-2.072895,2.1117,8.459899E-16,3.539196,1.0867,8.459899E-16,3.539196,1.973325,0.4125,3.299523,1.225075,0.4125,3.299523,1.536896,0.4125,-3.340491,0.9757089,0.4125,-2.368486,1.329334,8.459899E-16,-3.7,0.5605839,8.459899E-16,-2.368486,-0.7310071,0,-2.072895,-0.8198305,4.653789E-16,-1.919049,-0.9053596,0.4125,-2.072895,-1.062473,0.4125,-1.800766,3.635584,8.459899E-16,-2.368486,3.206866,8.459899E-16,-1.625924,3.220459,0.4125,-2.368486,2.791545,0.4125,-1.625585,4.45,8.459899E-16,1.244336,3.9375,8.459899E-16,2.132013,4.17325,0.4125,1.244336,3.799125,0.4125,1.89234,-0.9833158,9.587886E-16,3.379725,-2.751083,9.587886E-16,2.577831,-1.03018,0.8249999,2.901767,-2.784774,0.4125,2.334198,-3.165505,0.8249999,1.933141,-3.360752,0.4125,2.072923,0.733052,8.602833E-16,-2.069762,1.148373,0.4125,-2.069423,-0.09639235,9.023893E-16,-1.590882,-0.07354921,0.8249999,-1.123821,1.585584,0.4125,-2.321847,1.585584,0.8249999,-2.081722,-2.047501,6.751791E-16,-1.876151,-2.236743,0.4125,-1.484912,-2.175721,8.459899E-16,-2.098235,-2.383284,0.4125,-1.738726,-3.718468,9.023893E-16,0.5557059,-3.392105,0.4125,1.753157,-3.596034,9.518396E-16,1.804385,-3.165505,0.8249999,1.933141,-3.551693,0.4125,0.1255501,-3.394313,0.8249999,-0.4004185,-3.612991,0.4125,-0.4996151,-3.360752,0.4125,2.072923,-1.949447,4.793943E-16,-1.946351,-1.721609,0.4125,-1.853712,-2.047501,6.751791E-16,-1.876151,-2.236743,0.4125,-1.484912,-1.487795,0.8249999,-1.765351,-1.511227,0.4125,-2.00433,-3.394313,0.8249999,-0.4004185,-3.612991,0.4125,-0.4996151,-2.838259,0.4125,2.426837,-2.784774,0.4125,2.334198,-2.751083,9.587886E-16,2.577831,3.220459,0.4125,-2.368486,2.791545,0.4125,-1.625585,2.659271,0.4125,-3.340491,1.585584,0.4125,-2.321847,1.536896,0.4125,-3.340491,1.148373,0.4125,-2.069423,0.9757089,0.4125,-2.368486,4.17325,0.4125,1.244336,3.824151,0.4125,1.555466,3.824151,0.4125,0.6396799,3.799125,0.4125,1.89234,3.240668,0.4125,1.89234,-2.236743,0.4125,-1.484912,-3.612991,0.4125,-0.4996151,-2.383284,0.4125,-1.738726,-3.505659,0.4125,-1.738726,-4.066846,0.4125,-0.766721,-3.551693,0.4125,0.1255501,2.34745,0.4125,2.65152,1.973325,0.4125,3.299523,2.24202,0.4125,2.46891,1.585584,0.4125,2.847903,1.225075,0.4125,3.299523,0.9495723,0.4125,2.480701,0.8509502,0.4125,2.65152,-0.9053596,0.4125,-2.072895,-1.062473,0.4125,-1.800766,-1.141058,0.4125,-2.481137,-1.511227,0.4125,-2.00433,-1.612456,0.4125,-2.481137,-1.721609,0.4125,-1.853712,-1.848155,0.4125,-2.072895,-2.784774,0.4125,2.334198,-2.838259,0.4125,2.426837,-3.360752,0.4125,2.072923,-3.309656,0.4125,2.426837,-3.545355,0.4125,2.018595,-3.392105,0.4125,1.753157 + } + PolygonVertexIndex: *558 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,37,-40,41,40,-40,42,40,-42,43,45,-45,46,44,-46,47,49,-49,49,50,-49,50,51,-49,52,48,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,69,-71,74,70,-73,75,74,-73,76,75,-73,77,75,-77,78,77,-77,79,77,-79,80,79,-79,81,79,-81,71,69,-83,82,69,-84,84,83,-70,85,84,-70,86,84,-86,87,86,-86,88,86,-88,89,88,-88,81,88,-90,90,81,-90,79,81,-91,91,93,-93,93,94,-93,94,95,-93,96,92,-96,97,99,-99,99,100,-99,100,101,-99,102,98,-102,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,113,-113,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,129,131,-131,132,130,-132,130,133,-129,134,128,-134,135,137,-137,137,138,-137,138,139,-137,139,140,-137,136,140,-142,141,140,-143,140,143,-143,143,144,-143,145,142,-145,146,138,-138,147,138,-147,148,138,-148,140,139,-150,147,146,-151,151,150,-147,147,150,-153,153,152,-151,154,152,-154,155,152,-155,154,156,-156,157,155,-157,158,156,-155,159,156,-159,160,159,-159,161,160,-159,162,161,-159,163,162,-159,164,163,-159,165,163,-165,164,166,-166,167,163,-166,168,163,-168,160,169,-160,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,197,-200,201,200,-200,202,204,-204,205,203,-205,206,208,-208,207,209,-207,206,209,-211,209,211,-211,212,210,-212,213,209,-208,214,216,-216,217,215,-217,217,218,-216,219,215,-219,220,218,-218,221,220,-218,222,224,-224,225,227,-227,228,226,-228,229,228,-228,230,228,-230,231,230,-230,232,234,-234,232,233,-236,236,235,-234,237,239,-239,240,238,-240,241,238,-241,238,241,-243,243,245,-245,246,244,-246,247,244,-247,248,247,-247,249,247,-249,250,252,-252,253,251,-253,254,253,-253,255,253,-255,256,255,-255,257,259,-259,260,258,-260,261,260,-260,262,261,-260,69,73,-86,70,85,-74,74,85,-71,87,85,-75,75,87,-75,89,87,-76,77,89,-76,90,89,-78,79,90,-78 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1674 { + a: -0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *526 { + a: 12.65485,-1.264207,13.86154,-1.264207,13.23094,-2.993604,14.20476,-2.993604,-10.70574,0.7616532,-9.709315,0.7616532,-11.04895,-0.9677438,-10.47367,-0.9677438,-6.563453,-6.894436,-5.425112,-9.048676,-10.61978,-6.894436,-11.43695,-9.048676,-3.874738,-7.11716,-7.910172,-7.11716,-4.419522,-5.238918,-7.365388,-5.238918,-5.233598,-9.570829,-11.28675,-9.570829,-6.050773,-7.416589,-10.46957,-7.416589,10.71559,0.2395953,13.66145,0.2395953,10.1708,-1.638647,14.20624,-1.638647,11.04895,-0.5458933,8.506628,-0.5458933,10.70574,1.183504,8.849841,1.183504,-9.711963,-6.391795,-13.00247,-6.391795,-9.708877,-4.513553,-12.45769,-4.513553,-0.09654747,-3.995988,1.759348,-3.995988,-0.439761,-5.725385,2.102562,-5.725385,4.52548,-7.146077,-2.049301,-7.146077,3.580106,-3.508646,-1.505106,-3.508646,-2.518425,-5.327362,-5.651193,-3.508646,-6.12388,-5.327362,0.9726306,-8.877722,5.39143,-8.877722,0.1554554,-11.03196,6.208605,-11.03196,11.01223,-1.515889,8.120884,-1.515889,10.53955,0.3028263,4.990141,0.3028263,6.045397,-3.334605,7.177291,-3.334605,15.50197,-4.216858,12.76162,-4.216858,14.95718,-2.338616,12.75853,-2.338616,6.588837,5.483975,7.365388,5.483975,7.407555,3.605732,7.910172,3.605732,-12.83129,0.005461927,-13.65001,-1.87278,-13.66145,0.005461927,-14.20624,-1.87278,-4.248559,-3.855886,-10.89351,-3.855886,-3.193303,-0.2184545,-9.948133,-0.2184545,-12.26849,4.514677,-12.26849,-2.44359,-14.237,-3.580106,-6.242456,-8.195756,-12.26849,1.505106,-6.242456,-5.922723,0.1814469,-2.213881,0.2895638,-4.424492,5.635653,-4.688018,5.857461,-6.950202,11.29342,-0.6374508,13.36344,-1.576451,12.46262,7.610791,-14.237,1.505106,-14.237,5.651193,-6.242456,10.26684,-6.242456,7.99381,-1.43653,7.49214,-1.32213,5.153059,4.055827,11.42428,4.277637,9.162097,10.61442,6.287607,-0.8355611,-3.518592,-6.317938,-3.518592,-1.308248,-1.699877,-10.53955,-1.699877,-11.48492,-5.337307,-7.733327,-5.337307,8.678141,-0.6783947,6.738116,-0.6783947,8.205454,1.140321,2.091478,1.140321,2.933006,-2.49711,6.060526,-2.49711,14.61898,-5.427527,8.565831,-5.427527,13.80181,-3.273286,9.383006,-3.273286,-10.83103,-3.4886,-13.37336,-3.4886,-11.17425,-1.759203,-13.03014,-1.759203,0.9188072,-11.20757,1.735982,-9.053332,6.971957,-11.20757,6.154782,-9.053332,-5.628647,-3.77301,-5.285434,-2.043613,-3.086324,-3.77301,-3.429538,-2.043613,6.691465,-3.562084,4.149142,-3.562084,6.348251,-1.832687,4.492356,-1.832687,-4.795222,6.473331,-5.61394,4.31909,-6.154782,6.473331,-6.971957,4.31909,9.97669,-4.32601,7.324136,-4.32601,9.504004,-2.507295,2.784219,-4.32601,0.2727044,-2.507295,-0.1999827,-4.32601,3.727811,-6.144726,6.855012,-6.144726,10.3315,10.43906,10.05338,9.957351,8.313781,13.93384,5.233598,-14.56693,11.28675,-14.56693,12.62546,-6.401277,12.76162,8.39375,15.50197,8.39375,15.87443,-4.52548,15.87443,2.0493,17.51969,4.898962,4.278348,13.93384,2.886032,-8.148671,2.207023,-9.324748,14.31332,-9.324748,2.51194,10.00378,2.260631,10.43906,-0.3794974,-6.263317,1.53169,9.437829,-3.871322,13.30601,-3.227679,-7.555309,-4.149142,-10.36272,-2.877981,-8.161005,-10.83103,10.14894,-6.691465,-10.36272,-7.674987,-7.662798,-8.061027,-7.386421,-8.565831,-8.260768,-14.61898,-8.260768,-13.37336,10.14894,-14.15761,7.103878,-14.64452,7.947225,-14.63964,2.187819,-17.64556,-3.018587,-7.962626,-8.161005,8.313781,-7.000093,4.278347,-7.000093,7.768997,-5.121851,4.823131,-5.121851,-14.41495,0.3467429,-9.996156,0.3467429,-15.23213,-1.807498,-9.17898,-1.807498,5.628647,2.259373,4.92925,2.259373,5.285434,3.98877,4.048318,3.98877,15.23213,-5.080986,11.8564,-5.080986,14.41495,-2.926745,11.03768,-2.926745,4.517216,-8.852939,0.4817833,-8.852939,3.972433,-6.974697,1.026567,-6.974697,1.971219,-6.174802,-5.671074,-6.174802,1.025845,-2.537371,-6.188112,-4.356087,-8.205454,-2.537371,-8.678141,-4.356087,-6.573712,-2.527186,-7.989101,-0.7084709,-2.803004,-2.527186,-1.961476,1.110245,-9.97669,-0.7084709,-9.504004,1.110245,10.42734,2.160194,9.465918,4.314435,11.43695,2.160194,10.61978,4.314435,0.7487984,-6.654873,5.566059,-4.836157,5.688433,-6.654873,6.358329,-3.017442,-0.8725736,-4.836157,-2.87297,-3.017442,-3.345657,-4.836157,6.831016,-4.836157,1.779846,-4.816027,1.262808,-2.997311,2.254621,-4.816027,3.757074,-2.997311,0.716834,-1.178596,0.244147,-2.997311,9.948133,-1.178596,10.42082,-2.997311,-13.86154,3.209364,-13.4404,3.209364,-14.20476,1.479967,-12.67897,-9.324748,-10.99033,-6.399941,-10.46957,-13.15154,-6.242456,-9.141129,-6.050773,-13.15154,-4.521153,-8.147335,-3.841374,-9.324748,-16.43012,4.898962,-15.05571,6.12388,-15.05571,2.518425,-14.95718,7.450157,-12.75853,7.450158,8.806077,-5.846109,14.22437,-1.966989,9.383006,-6.845379,13.80181,-6.845379,16.01121,-3.018587,13.98304,0.4942919,-9.24193,10.43906,-7.768997,12.99025,-8.826851,9.720117,-6.242456,11.21222,-4.823131,12.99025,-3.738474,9.766541,-3.350198,10.43906,3.564408,-8.161005,4.182965,-7.089632,4.492356,-9.768257,5.949714,-7.891064,6.348251,-9.768257,6.777988,-7.298078,7.276199,-8.161005,10.96368,9.189757,11.17425,9.554478,13.23131,8.161116,13.03014,9.554478,13.95809,7.947225,13.35474,6.902195 + } + UVIndex: *558 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,37,39,41,40,39,42,40,41,43,45,44,46,44,45,47,49,48,49,50,48,50,51,48,52,48,51,53,55,54,56,54,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,69,70,74,70,72,75,74,72,76,75,72,77,75,76,78,77,76,79,77,78,80,79,78,81,79,80,71,69,82,82,69,83,84,83,69,85,84,69,86,84,85,87,86,85,88,86,87,89,88,87,81,88,89,90,81,89,79,81,90,91,93,92,93,94,92,94,95,92,96,92,95,97,99,98,99,100,98,100,101,98,102,98,101,103,105,104,106,104,105,107,109,108,110,108,109,111,113,112,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,127,129,128,130,128,129,129,131,130,132,130,131,130,133,128,134,128,133,135,137,136,137,138,136,138,139,136,139,140,136,136,140,141,141,140,142,140,143,142,143,144,142,145,142,144,146,138,137,147,138,146,148,138,147,140,139,149,147,146,150,151,150,146,147,150,152,153,152,150,154,152,153,155,152,154,154,156,155,157,155,156,158,156,154,159,156,158,160,159,158,161,160,158,162,161,158,163,162,158,164,163,158,165,163,164,164,166,165,167,163,165,168,163,167,160,169,159,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,192,194,193,195,193,194,196,198,197,199,197,198,200,197,199,201,200,199,202,204,203,205,203,204,206,208,207,207,209,206,206,209,210,209,211,210,212,210,211,213,209,207,214,216,215,217,215,216,217,218,215,219,215,218,220,218,217,221,220,217,222,224,223,225,227,226,228,226,227,229,228,227,230,228,229,231,230,229,232,234,233,232,233,235,236,235,233,237,239,238,240,238,239,241,238,240,238,241,242,243,245,244,246,244,245,247,244,246,248,247,246,249,247,248,250,252,251,253,251,252,254,253,252,255,253,254,256,255,254,257,259,258,260,258,259,261,260,259,262,261,259,69,73,85,70,85,73,74,85,70,87,85,74,75,87,74,89,87,75,77,89,75,90,89,77,79,90,77 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *186 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh platform_grass, Model::RootNode + C: "OO",5416541402870630939,0 + + ;Geometry::, Model::Mesh platform_grass + C: "OO",5302442762837314200,5416541402870630939 + + ;Material::dirt, Model::Mesh platform_grass + C: "OO",3020,5416541402870630939 + + ;Material::grass, Model::Mesh platform_grass + C: "OO",3024,5416541402870630939 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/platform_grass.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/platform_grass.fbx.import new file mode 100644 index 0000000..490f85e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/platform_grass.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bu1cvdht05jq2" +path="res://.godot/imported/platform_grass.fbx-5366eb81956fc07f71dec6048a660c5a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/platform_grass.fbx" +dest_files=["res://.godot/imported/platform_grass.fbx-5366eb81956fc07f71dec6048a660c5a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/platform_stone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/platform_stone.fbx new file mode 100644 index 0000000..1e5e594 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/platform_stone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 28 + Millisecond: 538 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "platform_stone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "platform_stone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5539592642964471407, "Model::platform_stone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5187276132819684382, "Geometry::", "Mesh" { + Vertices: *882 { + a: -3.392105,0.4125,1.753157,-3.545355,0.4125,2.018595,-3.596034,9.518396E-16,1.804385,-3.719708,9.587886E-16,2.018595,-1.848155,0.4125,-2.072895,-1.721609,0.4125,-1.853712,-2.022507,0,-2.072895,-1.949447,4.793943E-16,-1.946351,2.6242,8.459899E-16,2.65152,2.1117,8.459899E-16,3.539196,2.34745,0.4125,2.65152,1.973325,0.4125,3.299523,1.329334,8.459899E-16,-3.7,2.866834,8.459899E-16,-3.7,1.536896,0.4125,-3.340491,2.763052,0.20625,-3.520246,1.946263,0.4125,-3.340491,0.8509502,0.4125,2.65152,1.225075,0.4125,3.299523,0.5742003,8.459899E-16,2.65152,1.0867,8.459899E-16,3.539196,-1.053882,0,-2.632131,-0.7310071,0,-2.072895,-1.141058,0.4125,-2.481137,-0.9053596,0.4125,-2.072895,4.032105,8.459899E-16,0.5205223,4.45,8.459899E-16,1.244336,3.824151,0.4125,0.6396799,4.17325,0.4125,1.244336,-3.545355,0.4125,2.018595,-3.309656,0.4125,2.426837,-3.719708,9.587886E-16,2.018595,-3.396833,9.587886E-16,2.577831,-3.505659,0.4125,-1.738726,-3.685489,0.4125,-1.427251,-3.713221,8.459899E-16,-2.098235,-4.274408,0.20625,-0.766721,-4.481971,8.459899E-16,-0.766721,3.9375,8.459899E-16,2.132013,3.241451,8.459899E-16,2.132013,3.799125,0.4125,1.89234,3.240668,0.4125,1.89234,0.9495723,0.4125,2.480701,0.8509502,0.4125,2.65152,0.6380327,8.683216E-16,2.540959,0.5742003,8.459899E-16,2.65152,2.24202,0.4125,2.46891,2.55356,8.459899E-16,2.529167,2.34745,0.4125,2.65152,2.6242,8.459899E-16,2.65152,-3.713221,8.459899E-16,-2.098235,-2.175721,8.459899E-16,-2.098235,-3.505659,0.4125,-1.738726,-2.383284,0.4125,-1.738726,-2.751083,9.587886E-16,2.577831,-3.396833,9.587886E-16,2.577831,-2.838259,0.4125,2.426837,-3.309656,0.4125,2.426837,3.635584,8.459899E-16,-2.368486,3.220459,0.4125,-2.368486,2.866834,8.459899E-16,-3.7,2.992903,0.4125,-2.762624,2.763052,0.20625,-3.520246,-1.699632,0,-2.632131,-1.612456,0.4125,-2.481137,-2.022507,0,-2.072895,-1.848155,0.4125,-2.072895,-1.699632,0,-2.632131,-1.053882,0,-2.632131,-1.612456,0.4125,-2.481137,-1.141058,0.4125,-2.481137,1.148373,0.4125,-2.069423,0.733052,8.602833E-16,-2.069762,0.9757089,0.4125,-2.368486,0.5605839,8.459899E-16,-2.368486,2.6242,8.459899E-16,2.65152,2.55356,8.459899E-16,2.529167,2.1117,8.459899E-16,3.539196,1.329334,8.459899E-16,-3.7,2.866834,8.459899E-16,-3.7,3.206866,8.459899E-16,-1.625924,3.241451,8.459899E-16,2.132013,3.9375,8.459899E-16,2.132013,4.032105,8.459899E-16,-1.149472,4.032105,8.459899E-16,0.5205223,4.45,8.459899E-16,1.244336,1.0867,8.459899E-16,3.539196,0.733052,8.602833E-16,-2.069762,0.5605839,8.459899E-16,-2.368486,3.635584,8.459899E-16,-2.368486,0.6380327,8.683216E-16,2.540959,0.5742003,8.459899E-16,2.65152,-0.09639235,9.023893E-16,-1.590882,0.3890492,9.023893E-16,2.397208,-0.9833158,9.587886E-16,3.379725,-0.8198305,4.653789E-16,-1.919049,-1.053882,0,-2.632131,-0.7310071,0,-2.072895,-2.751083,9.587886E-16,2.577831,-1.699632,0,-2.632131,-1.949447,4.793943E-16,-1.946351,-2.047501,6.751791E-16,-1.876151,-2.175721,8.459899E-16,-2.098235,-3.713221,8.459899E-16,-2.098235,-3.396833,9.587886E-16,2.577831,-3.596034,9.518396E-16,1.804385,-3.719708,9.587886E-16,2.018595,-3.718468,9.023893E-16,0.5557059,-4.481971,8.459899E-16,-0.766721,-2.022507,0,-2.072895,2.1117,8.459899E-16,3.539196,1.0867,8.459899E-16,3.539196,1.973325,0.4125,3.299523,1.225075,0.4125,3.299523,1.536896,0.4125,-3.340491,0.9757089,0.4125,-2.368486,1.329334,8.459899E-16,-3.7,0.5605839,8.459899E-16,-2.368486,-0.7310071,0,-2.072895,-0.8198305,4.653789E-16,-1.919049,-0.9053596,0.4125,-2.072895,-1.062473,0.4125,-1.800766,3.635584,8.459899E-16,-2.368486,3.206866,8.459899E-16,-1.625924,3.220459,0.4125,-2.368486,2.791545,0.4125,-1.625585,4.45,8.459899E-16,1.244336,3.9375,8.459899E-16,2.132013,4.17325,0.4125,1.244336,3.799125,0.4125,1.89234,-2.047501,6.751791E-16,-1.876151,-2.236743,0.4125,-1.484912,-2.175721,8.459899E-16,-2.098235,-2.383284,0.4125,-1.738726,-2.838259,0.4125,2.426837,-2.784774,0.4125,2.334198,-2.751083,9.587886E-16,2.577831,-3.612991,0.4125,-0.4996151,-3.394313,0.8249999,-0.4004185,-3.551693,0.4125,0.1255501,-3.206222,0.8249999,1.517889,-3.718468,9.023893E-16,0.5557059,-3.596034,9.518396E-16,1.804385,-3.392105,0.4125,1.753157,-3.263128,0.61875,2.003032,-3.360752,0.4125,2.072923,-1.949447,4.793943E-16,-1.946351,-1.721609,0.4125,-1.853712,-2.047501,6.751791E-16,-1.876151,-2.236743,0.4125,-1.484912,-1.499511,0.61875,-1.884841,-3.394313,0.8249999,-0.4004185,-3.612991,0.4125,-0.4996151,-1.960049,0.8249999,-1.427251,-1.511227,0.4125,-2.00433,1.585584,0.4125,2.847903,0.9495723,0.4125,2.480701,1.585584,0.61875,2.72784,0.3648786,0.8249999,1.903003,0.3890492,9.023893E-16,2.397208,0.6380327,8.683216E-16,2.540959,1.303037,0.8249999,2.44465,0.733052,8.602833E-16,-2.069762,1.148373,0.4125,-2.069423,-0.09639235,9.023893E-16,-1.590882,-0.07354921,0.8249999,-1.123821,1.585584,0.4125,-2.321847,1.585584,0.8249999,-2.081722,-1.511227,0.4125,-2.00433,-1.062473,0.4125,-1.800766,-1.499511,0.61875,-1.884841,-0.07354921,0.8249999,-1.123821,-0.09639235,9.023893E-16,-1.590882,-0.8198305,4.653789E-16,-1.919049,-0.9588648,0.8249999,-1.525418,3.824151,0.4125,1.555466,3.240668,0.4125,1.89234,3.616197,0.8249999,1.435403,2.24202,0.4125,2.46891,1.585584,0.61875,2.72784,1.868131,0.8249999,2.44465,1.585584,0.4125,2.847903,2.55356,8.459899E-16,2.529167,3.241451,8.459899E-16,2.132013,1.585584,0.4125,-2.321847,2.791545,0.4125,-1.625585,1.585584,0.8249999,-2.081722,3.824151,0.4125,-1.029409,2.992903,0.8249999,-1.269206,4.032105,8.459899E-16,-1.149472,3.206866,8.459899E-16,-1.625924,0.3890492,9.023893E-16,2.397208,-0.9833158,9.587886E-16,3.379725,0.3648786,0.8249999,1.903003,-0.9968155,0.2376472,3.242046,-0.585541,0.8249999,2.583437,-0.9833158,9.587886E-16,3.379725,-2.751083,9.587886E-16,2.577831,-0.9968155,0.2376472,3.242046,-2.784774,0.4125,2.334198,-2.234975,0.8249999,2.355248,-3.263128,0.61875,2.003032,-2.785529,0.8249999,2.105506,-3.360752,0.4125,2.072923,4.032105,8.459899E-16,-1.149472,4.032105,8.459899E-16,0.5205223,3.824151,0.4125,-1.029409,3.616197,0.8249999,-0.1896289,3.616197,0.8249999,0.3822969,3.824151,0.4125,0.6396799,3.616197,0.8249999,1.435403,3.824151,0.4125,1.555466,3.824151,0.4125,-1.029409,3.616197,0.8249999,-0.1896289,2.992903,0.8249999,-1.269206,2.763052,0.20625,-3.520246,2.992903,0.4125,-2.762624,1.946263,0.4125,-3.340491,-1.499511,0.61875,-1.884841,-0.9588648,0.8249999,-1.525418,-1.960049,0.8249999,-1.427251,-3.551693,0.4125,0.1255501,-3.718468,9.023893E-16,0.5557059,-3.851008,0.4125,-0.3928792,-4.481971,8.459899E-16,-0.766721,-4.274408,0.20625,-0.766721,-3.685489,0.4125,-1.427251,-3.851008,0.4125,-0.3928792,-4.274408,0.20625,-0.766721,1.868131,0.8249999,2.44465,1.585584,0.61875,2.72784,1.303037,0.8249999,2.44465,-0.585541,0.8249999,2.583437,-0.9968155,0.2376472,3.242046,-2.234975,0.8249999,2.355248,-3.206222,0.8249999,1.517889,-2.785529,0.8249999,2.105506,-3.263128,0.61875,2.003032,3.220459,0.4125,-2.368486,2.791545,0.4125,-1.625585,2.992903,0.4125,-2.762624,1.946263,0.4125,-3.340491,1.585584,0.4125,-2.321847,1.536896,0.4125,-3.340491,1.148373,0.4125,-2.069423,0.9757089,0.4125,-2.368486,4.17325,0.4125,1.244336,3.824151,0.4125,1.555466,3.824151,0.4125,0.6396799,3.799125,0.4125,1.89234,3.240668,0.4125,1.89234,-2.236743,0.4125,-1.484912,-3.612991,0.4125,-0.4996151,-2.383284,0.4125,-1.738726,-3.505659,0.4125,-1.738726,-3.685489,0.4125,-1.427251,-3.851008,0.4125,-0.3928792,-3.551693,0.4125,0.1255501,2.34745,0.4125,2.65152,1.973325,0.4125,3.299523,2.24202,0.4125,2.46891,1.585584,0.4125,2.847903,1.225075,0.4125,3.299523,0.9495723,0.4125,2.480701,0.8509502,0.4125,2.65152,3.616197,0.8249999,1.435403,1.868131,0.8249999,2.44465,3.616197,0.8249999,0.3822969,3.616197,0.8249999,-0.1896289,2.992903,0.8249999,-1.269206,1.585584,0.8249999,-2.081722,1.303037,0.8249999,2.44465,-0.07354921,0.8249999,-1.123821,0.3648786,0.8249999,1.903003,-0.585541,0.8249999,2.583437,-0.9588648,0.8249999,-1.525418,-2.234975,0.8249999,2.355248,-1.960049,0.8249999,-1.427251,-3.394313,0.8249999,-0.4004185,-2.785529,0.8249999,2.105506,-3.206222,0.8249999,1.517889,-0.9053596,0.4125,-2.072895,-1.062473,0.4125,-1.800766,-1.141058,0.4125,-2.481137,-1.511227,0.4125,-2.00433,-1.612456,0.4125,-2.481137,-1.721609,0.4125,-1.853712,-1.848155,0.4125,-2.072895,-2.784774,0.4125,2.334198,-2.838259,0.4125,2.426837,-3.360752,0.4125,2.072923,-3.309656,0.4125,2.426837,-3.545355,0.4125,2.018595,-3.392105,0.4125,1.753157 + } + PolygonVertexIndex: *576 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,36,-36,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,77,78,-77,78,79,-77,79,80,-77,76,80,-82,81,80,-83,80,83,-83,83,84,-83,85,82,-85,86,78,-78,87,78,-87,88,78,-88,80,79,-90,87,86,-91,91,90,-87,87,90,-93,93,92,-91,94,92,-94,95,92,-95,94,96,-96,97,95,-97,98,96,-95,99,96,-99,100,99,-99,101,100,-99,102,101,-99,103,102,-99,104,103,-99,105,103,-105,104,106,-106,107,103,-106,108,103,-108,100,109,-100,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,139,-139,140,138,-140,141,140,-140,142,140,-142,143,140,-143,140,143,-145,145,144,-144,146,148,-148,149,147,-149,149,150,-148,150,149,-152,152,151,-150,153,150,-152,154,147,-151,155,157,-157,157,158,-157,158,159,-157,160,156,-160,161,158,-158,162,164,-164,165,163,-165,166,163,-166,167,166,-166,168,170,-170,170,171,-170,171,172,-170,173,169,-173,174,171,-171,175,177,-177,178,176,-178,179,178,-178,180,179,-178,178,179,-182,178,182,-177,183,176,-183,184,186,-186,187,185,-187,188,187,-187,187,189,-186,190,185,-190,191,193,-193,194,192,-194,195,194,-194,196,198,-198,199,197,-199,200,199,-199,201,199,-201,202,201,-201,199,201,-204,204,206,-206,207,205,-207,208,205,-208,209,205,-209,210,209,-209,211,209,-211,212,214,-214,215,217,-217,218,220,-220,221,223,-223,224,222,-224,225,224,-224,226,228,-228,229,231,-231,232,234,-234,235,237,-237,238,240,-240,241,239,-241,242,239,-242,243,242,-242,244,242,-244,245,244,-244,246,248,-248,246,247,-250,250,249,-248,251,253,-253,254,252,-254,255,252,-255,255,256,-253,257,252,-257,258,260,-260,261,259,-261,262,259,-262,263,262,-262,264,262,-264,265,267,-267,268,266,-268,269,266,-269,270,266,-270,271,266,-271,272,271,-271,273,271,-273,274,273,-273,275,274,-273,276,274,-276,277,276,-276,278,276,-278,279,276,-279,280,279,-279,281,283,-283,284,282,-284,285,284,-284,286,284,-286,287,286,-286,288,290,-290,291,289,-291,292,291,-291,293,292,-291 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1728 { + a: -0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,-0.7488059,0.5023807,0.4323233,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.8132539,0.3437403,-0.4695324,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.8132539,0.3437403,0.4695324,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,-0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0.7488059,0.5023807,-0.4323233,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.6570245,-0.7538692,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0,0.3437403,0.9390647,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,-0.8132539,0.3437403,-0.4695324,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,0,0.3437403,-0.9390647,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,0,0.5023807,0.8646466,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,-0.6528699,0.6570245,-0.3769346,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.6528699,0.6570245,0.3769346,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.7488059,0.5023807,0.4323233,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.6528699,0.6570245,-0.3769346,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,0.8132539,0.3437403,0.4695324,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.8886849,0.4501627,0.08713636,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.5198047,0.4501627,-0.7260555,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,-0.4464732,0.4501627,-0.7733144,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.3688802,0.4501627,-0.8131918,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.4464732,0.4501627,-0.7733144,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,0.5198047,0.4501627,0.7260555,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,-0.3688802,0.4501627,0.8131918,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.8929466,0.4501628,0,0.4906372,0.8240349,-0.2832696,0.4906372,0.8240349,-0.2832696,0.4906372,0.8240349,-0.2832696,0.1691324,0.9367782,-0.3063347,0.1691324,0.9367782,-0.3063347,0.1691324,0.9367782,-0.3063347,-0.04381321,0.8935396,-0.4468415,-0.04381321,0.8935396,-0.4468415,-0.04381321,0.8935396,-0.4468415,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.6528699,0.6570245,0.3769346,-0.3917876,0.9179173,-0.0626936,-0.3917876,0.9179173,-0.0626936,-0.3917876,0.9179173,-0.0626936,0,0.808338,0.5887187,0,0.808338,0.5887187,0,0.808338,0.5887187,-0.08744164,0.7699694,0.6320611,-0.08744164,0.7699694,0.6320611,-0.08744164,0.7699694,0.6320611,-0.4321812,0.8470442,0.3094114,-0.4321812,0.8470442,0.3094114,-0.4321812,0.8470442,0.3094114,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *588 { + a: 12.65485,-1.264207,13.86154,-1.264207,13.23094,-2.993604,14.20476,-2.993604,-10.70574,0.7616532,-9.709315,0.7616532,-11.04895,-0.9677438,-10.47367,-0.9677438,-3.874738,-7.11716,-7.910172,-7.11716,-4.419522,-5.238918,-7.365388,-5.238918,-5.233598,-9.570829,-11.28675,-9.570829,-6.050773,-7.416589,-10.87816,-8.49371,-7.662455,-7.416589,10.71559,0.2395953,13.66145,0.2395953,10.1708,-1.638647,14.20624,-1.638647,11.04895,-0.5458933,8.506628,-0.5458933,10.70574,1.183504,8.849841,1.183504,-9.711963,-6.391795,-13.00247,-6.391795,-9.708877,-4.513553,-12.45769,-4.513553,-0.09654747,-3.995988,1.759348,-3.995988,-0.439761,-5.725385,2.102562,-5.725385,0.9726306,-8.877722,2.388618,-8.877722,0.1554554,-11.03196,5.800017,-9.954843,6.208605,-11.03196,15.50197,-4.216858,12.76162,-4.216858,14.95718,-2.338616,12.75853,-2.338616,6.588837,5.483975,7.365388,5.483975,7.407555,3.605732,7.910172,3.605732,-12.83129,0.005461927,-13.65001,-1.87278,-13.66145,0.005461927,-14.20624,-1.87278,14.61898,-5.427527,8.565831,-5.427527,13.80181,-3.273286,9.383006,-3.273286,-10.83103,-3.4886,-13.37336,-3.4886,-11.17425,-1.759203,-13.03014,-1.759203,0.9188072,-11.20757,1.735982,-9.053332,6.971957,-11.20757,3.527762,-9.053332,6.563369,-10.13045,-5.628647,-3.77301,-5.285434,-2.043613,-3.086324,-3.77301,-3.429538,-2.043613,6.691465,-3.562084,4.149142,-3.562084,6.348251,-1.832687,4.492356,-1.832687,-4.795222,6.473331,-5.61394,4.31909,-6.154782,6.473331,-6.971957,4.31909,10.3315,10.43906,10.05338,9.957351,8.313781,13.93384,5.233598,-14.56693,11.28675,-14.56693,12.62546,-6.401277,12.76162,8.39375,15.50197,8.39375,15.87443,-4.52548,15.87443,2.0493,17.51969,4.898962,4.278348,13.93384,2.886032,-8.148671,2.207023,-9.324748,14.31332,-9.324748,2.51194,10.00378,2.260631,10.43906,-0.3794974,-6.263317,1.53169,9.437829,-3.871322,13.30601,-3.227679,-7.555309,-4.149142,-10.36272,-2.877981,-8.161005,-10.83103,10.14894,-6.691465,-10.36272,-7.674987,-7.662798,-8.061027,-7.386421,-8.565831,-8.260768,-14.61898,-8.260768,-13.37336,10.14894,-14.15761,7.103878,-14.64452,7.947225,-14.63964,2.187819,-17.64556,-3.018587,-7.962626,-8.161005,8.313781,-7.000093,4.278347,-7.000093,7.768997,-5.121851,4.823131,-5.121851,-14.41495,0.3467429,-9.996156,0.3467429,-15.23213,-1.807498,-9.17898,-1.807498,5.628647,2.259373,4.92925,2.259373,5.285434,3.98877,4.048318,3.98877,15.23213,-5.080986,11.8564,-5.080986,14.41495,-2.926745,11.03768,-2.926745,4.517216,-8.852939,0.4817833,-8.852939,3.972433,-6.974697,1.026567,-6.974697,10.42734,2.160194,9.465918,4.314435,11.43695,2.160194,10.61978,4.314435,-13.86154,3.209364,-13.4404,3.209364,-14.20476,1.479967,-3.345657,-4.836157,-2.87297,-3.017442,-0.8725736,-4.836157,4.715641,-3.017442,0.7487984,-6.654873,5.688433,-6.654873,5.566059,-4.836157,6.594673,-3.9268,6.831016,-4.836157,1.779846,-4.816027,1.262808,-2.997311,2.254621,-4.816027,3.757074,-2.997311,0.4804905,-2.087954,9.948133,-1.178596,10.42082,-2.997311,3.003471,-1.178596,0.244147,-2.997311,11.01223,-1.515889,8.120884,-1.515889,10.77589,-0.6065315,4.990141,0.3028263,6.045397,-3.334605,7.177291,-3.334605,9.255073,0.3028263,-6.573712,-2.527186,-7.989101,-0.7084709,-2.803004,-2.527186,-1.961476,1.110245,-9.97669,-0.7084709,-9.504004,1.110245,8.678141,-0.6783947,6.738116,-0.6783947,8.441797,0.230963,2.091478,1.140321,2.933006,-2.49711,6.060526,-2.49711,5.918817,1.140321,9.97669,-4.32601,7.324136,-4.32601,9.504004,-2.507295,2.784219,-4.32601,0.03636085,-3.416653,1.557179,-2.507295,-0.1999827,-4.32601,3.727811,-6.144726,6.855012,-6.144726,-0.8355611,-3.518592,-6.317938,-3.518592,-1.308248,-1.699877,-11.01223,-3.518592,-7.706012,-1.699877,-11.48492,-5.337307,-7.733327,-5.337307,-4.248559,-3.855886,-10.89351,-3.855886,-3.193303,-0.2184545,-10.62119,-2.808097,-7.795205,-0.2184545,1.971219,-6.174802,-5.671074,-6.174802,1.698898,-5.127014,-6.188112,-4.356087,-4.182644,-2.537371,-8.441797,-3.446729,-6.562765,-2.537371,-8.678141,-4.356087,4.52548,-7.146077,-2.049301,-7.146077,4.052793,-5.327362,0.7465703,-3.508646,-1.505106,-3.508646,-2.518425,-5.327362,-5.651193,-3.508646,-6.12388,-5.327362,-4.018035,-11.49404,-6.471949,-8.627484,-1.564122,-8.627484,-2.824365,-16.00707,-5.058252,-13.68654,-0.3512892,-13.68654,5.151285,-6.020007,3.170999,-4.211463,7.131571,-4.211463,-6.563453,-6.894436,-5.425112,-9.048676,-8.920266,-6.894436,-11.43695,-9.048676,-11.02836,-7.971557,-3.255828,-13.3221,0.8683097,-13.3221,-0.3216286,-15.36864,7.354845,-5.867758,6.242456,-7.247038,5.130069,-5.867758,-0.8897107,-5.928221,-2.138292,-9.552233,-7.445393,-5.928221,-2.489048,-9.914052,0.3561719,-9.914052,-1.066438,-11.44175,-12.67897,-9.324748,-10.99033,-6.399941,-11.78308,-10.87647,-7.662454,-13.15154,-6.242456,-9.141129,-6.050773,-13.15154,-4.521153,-8.147335,-3.841374,-9.324748,-16.43012,4.898962,-15.05571,6.12388,-15.05571,2.518425,-14.95718,7.450157,-12.75853,7.450158,8.806077,-5.846109,14.22437,-1.966989,9.383006,-6.845379,13.80181,-6.845379,14.5098,-5.619098,15.16145,-1.546769,13.98304,0.4942919,-9.24193,10.43906,-7.768997,12.99025,-8.826851,9.720117,-6.242456,11.21222,-4.823131,12.99025,-3.738474,9.766541,-3.350198,10.43906,-14.237,5.651193,-7.354845,9.624605,-14.237,1.505106,-14.237,-0.7465705,-11.78308,-4.996874,-6.242456,-8.195756,-5.130069,9.624605,0.2895638,-4.424492,-1.43653,7.49214,2.305279,10.17101,3.775059,-6.005582,8.799113,9.272632,7.716728,-5.619098,13.36344,-1.576451,10.96665,8.289393,12.62292,5.975943,3.564408,-8.161005,4.182965,-7.089632,4.492356,-9.768257,5.949714,-7.891064,6.348251,-9.768257,6.777988,-7.298078,7.276199,-8.161005,10.96368,9.189757,11.17425,9.554478,13.23131,8.161116,13.03014,9.554478,13.95809,7.947225,13.35474,6.902195 + } + UVIndex: *576 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,36,35,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,77,78,76,78,79,76,79,80,76,76,80,81,81,80,82,80,83,82,83,84,82,85,82,84,86,78,77,87,78,86,88,78,87,80,79,89,87,86,90,91,90,86,87,90,92,93,92,90,94,92,93,95,92,94,94,96,95,97,95,96,98,96,94,99,96,98,100,99,98,101,100,98,102,101,98,103,102,98,104,103,98,105,103,104,104,106,105,107,103,105,108,103,107,100,109,99,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,139,138,140,138,139,141,140,139,142,140,141,143,140,142,140,143,144,145,144,143,146,148,147,149,147,148,149,150,147,150,149,151,152,151,149,153,150,151,154,147,150,155,157,156,157,158,156,158,159,156,160,156,159,161,158,157,162,164,163,165,163,164,166,163,165,167,166,165,168,170,169,170,171,169,171,172,169,173,169,172,174,171,170,175,177,176,178,176,177,179,178,177,180,179,177,178,179,181,178,182,176,183,176,182,184,186,185,187,185,186,188,187,186,187,189,185,190,185,189,191,193,192,194,192,193,195,194,193,196,198,197,199,197,198,200,199,198,201,199,200,202,201,200,199,201,203,204,206,205,207,205,206,208,205,207,209,205,208,210,209,208,211,209,210,212,214,213,215,217,216,218,220,219,221,223,222,224,222,223,225,224,223,226,228,227,229,231,230,232,234,233,235,237,236,238,240,239,241,239,240,242,239,241,243,242,241,244,242,243,245,244,243,246,248,247,246,247,249,250,249,247,251,253,252,254,252,253,255,252,254,255,256,252,257,252,256,258,260,259,261,259,260,262,259,261,263,262,261,264,262,263,265,267,266,268,266,267,269,266,268,270,266,269,271,266,270,272,271,270,273,271,272,274,273,272,275,274,272,276,274,275,277,276,275,278,276,277,279,276,278,280,279,278,281,283,282,284,282,283,285,284,283,286,284,285,287,286,285,288,290,289,291,289,290,292,291,290,293,292,290 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *192 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh platform_stone, Model::RootNode + C: "OO",5539592642964471407,0 + + ;Geometry::, Model::Mesh platform_stone + C: "OO",5187276132819684382,5539592642964471407 + + ;Material::stoneDark, Model::Mesh platform_stone + C: "OO",3040,5539592642964471407 + + ;Material::stone, Model::Mesh platform_stone + C: "OO",3038,5539592642964471407 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/platform_stone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/platform_stone.fbx.import new file mode 100644 index 0000000..3ad8816 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/platform_stone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dbkg561kqpmcd" +path="res://.godot/imported/platform_stone.fbx-b84c90d1b313352dc50fa2e5e95fad0d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/platform_stone.fbx" +dest_files=["res://.godot/imported/platform_stone.fbx-b84c90d1b313352dc50fa2e5e95fad0d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/pot_large.fbx b/assets/models/kenney_nature-kit/Models/FBX format/pot_large.fbx new file mode 100644 index 0000000..b31603c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/pot_large.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 28 + Millisecond: 628 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "pot_large.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "pot_large.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4839920553799159135, "Model::pot_large", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4720901829008660936, "Geometry::", "Mesh" { + Vertices: *324 { + a: 1,-3.256023E-31,1.732051,-1,-3.256023E-31,1.732051,1.12,1,1.939897,-1.12,1,1.939897,-1.12,1,-1.939897,-2.24,1,0,-1,-3.256023E-31,-1.732051,-2,-3.256023E-31,0,-2.817982,1,-1.443823E-14,-2.817982,2,-1.443823E-14,-1.408991,1,2.440444,-1.408991,2,2.440444,-1.12,1.5,1.939897,1.12,1.5,1.939897,-1.12,2,1.939897,1.12,2,1.939897,-1.12,2,-1.939897,-1.12,1.5,-1.939897,-2.24,2,0,-2.24,1.5,0,2.817982,1,-1.443823E-14,2.24,1,0,1.408991,1,2.440444,1.12,1,1.939897,-1.408991,1,2.440444,-1.12,1,1.939897,-2.24,1,0,-2.817982,1,-1.443823E-14,1.408991,1,-2.440444,1.12,1,-1.939897,-1.408991,1,-2.440444,-1.12,1,-1.939897,2.24,1,0,2,-3.256023E-31,0,1.12,1,1.939897,1,-3.256023E-31,1.732051,-2,-3.256023E-31,0,-2.24,1,0,-1,-3.256023E-31,1.732051,-1.12,1,1.939897,2.817982,2,-1.443823E-14,2.24,2,0,1.408991,2,-2.440444,1.12,2,-1.939897,-1.408991,2,-2.440444,-1.12,2,-1.939897,-2.24,2,0,-2.817982,2,-1.443823E-14,1.408991,2,2.440444,1.12,2,1.939897,-1.408991,2,2.440444,-1.12,2,1.939897,-1,-3.256023E-31,-1.732051,1,-3.256023E-31,-1.732051,-1.12,1,-1.939897,1.12,1,-1.939897,1.12,1.5,-1.939897,-1.12,1.5,-1.939897,1.12,2,-1.939897,-1.12,2,-1.939897,1.408991,1,2.440444,-1.408991,1,2.440444,1.408991,2,2.440444,-1.408991,2,2.440444,-1.408991,1,-2.440444,-1.408991,2,-2.440444,-2.817982,1,-1.443823E-14,-2.817982,2,-1.443823E-14,1.12,1.5,-1.939897,1.12,2,-1.939897,2.24,1.5,0,2.24,2,0,2,-3.256023E-31,0,1,-3.256023E-31,-1.732051,1,-3.256023E-31,1.732051,-1,-3.256023E-31,-1.732051,-1,-3.256023E-31,1.732051,-2,-3.256023E-31,0,1.12,1,-1.939897,1,-3.256023E-31,-1.732051,2.24,1,0,2,-3.256023E-31,0,-1.408991,1,-2.440444,1.408991,1,-2.440444,-1.408991,2,-2.440444,1.408991,2,-2.440444,2.817982,2,-1.443823E-14,2.817982,1,-1.443823E-14,1.408991,2,2.440444,1.408991,1,2.440444,-2.24,2,0,-2.24,1.5,0,-1.12,2,1.939897,-1.12,1.5,1.939897,2.24,1.5,0,2.24,2,0,1.12,1.5,1.939897,1.12,2,1.939897,1.408991,2,-2.440444,1.408991,1,-2.440444,2.817982,2,-1.443823E-14,2.817982,1,-1.443823E-14,2.24,1.5,0,1.12,1.5,1.939897,1.12,1.5,-1.939897,-1.12,1.5,-1.939897,-1.12,1.5,1.939897,-2.24,1.5,0 + } + PolygonVertexIndex: *204 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,23,-25,26,25,-25,27,26,-25,20,21,-29,29,28,-22,30,28,-30,27,30,-27,31,30,-30,26,30,-32,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,43,-43,45,43,-45,46,45,-45,47,46,-45,40,41,-49,49,48,-42,50,48,-50,47,50,-47,51,50,-50,46,50,-52,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,103,-106,107,106,-106 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *612 { + a: 0,-0.2034971,0.9790756,0,-0.2034971,0.9790756,0,-0.2034971,0.9790756,0,-0.2034971,0.9790756,0,-0.2034971,0.9790756,0,-0.2034971,0.9790756,-0.8479043,-0.203497,-0.4895377,-0.8479043,-0.203497,-0.4895377,-0.8479043,-0.203497,-0.4895377,-0.8479043,-0.203497,-0.4895377,-0.8479043,-0.203497,-0.4895377,-0.8479043,-0.203497,-0.4895377,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8479043,-0.203497,0.4895377,0.8479043,-0.203497,0.4895377,0.8479043,-0.203497,0.4895377,0.8479043,-0.203497,0.4895377,0.8479043,-0.203497,0.4895377,0.8479043,-0.203497,0.4895377,-0.8479043,-0.203497,0.4895377,-0.8479043,-0.203497,0.4895377,-0.8479043,-0.203497,0.4895377,-0.8479043,-0.203497,0.4895377,-0.8479043,-0.203497,0.4895377,-0.8479043,-0.203497,0.4895377,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.2034971,-0.9790756,0,-0.2034971,-0.9790756,0,-0.2034971,-0.9790756,0,-0.2034971,-0.9790756,0,-0.2034971,-0.9790756,0,-0.2034971,-0.9790756,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8479043,-0.203497,-0.4895377,0.8479043,-0.203497,-0.4895377,0.8479043,-0.203497,-0.4895377,0.8479043,-0.203497,-0.4895377,0.8479043,-0.203497,-0.4895377,0.8479043,-0.203497,-0.4895377,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *216 { + a: 3.937008,1.387666,-3.937008,1.387666,4.409449,5.408814,-4.409449,5.408814,-4.409449,5.408814,4.409449,5.408814,-3.937008,1.387666,3.937008,1.387666,-5.547209,3.937008,-5.547209,7.874016,5.547209,3.937008,5.547209,7.874016,4.409449,5.905512,-4.409449,5.905512,4.409449,7.874016,-4.409449,7.874016,4.409449,7.874016,4.409449,5.905512,-4.409449,7.874016,-4.409449,5.905512,11.09442,-5.684342E-14,8.818897,0,5.547209,9.608048,4.409449,7.637389,-5.547209,9.608048,-4.409449,7.637389,-8.818897,0,-11.09442,-5.684342E-14,5.547209,-9.608048,4.409449,-7.637389,-5.547209,-9.608048,-4.409449,-7.637389,4.409449,5.408814,3.937008,1.387666,-4.409449,5.408814,-3.937008,1.387666,-3.937008,1.387666,-4.409449,5.408814,3.937008,1.387666,4.409449,5.408814,-11.09442,-5.684342E-14,-8.818897,0,-5.547209,-9.608048,-4.409449,-7.637389,5.547209,-9.608048,4.409449,-7.637389,8.818897,0,11.09442,-5.684342E-14,-5.547209,9.608048,-4.409449,7.637389,5.547209,9.608048,4.409449,7.637389,3.937008,1.387666,-3.937008,1.387666,4.409449,5.408814,-4.409449,5.408814,4.409449,5.905512,-4.409449,5.905512,4.409449,7.874016,-4.409449,7.874016,5.547209,3.937008,-5.547209,3.937008,5.547209,7.874016,-5.547209,7.874016,-5.547209,3.937008,-5.547209,7.874016,5.547209,3.937008,5.547209,7.874016,-4.409449,5.905512,-4.409449,7.874016,4.409449,5.905512,4.409449,7.874016,7.874016,0,3.937008,-6.819098,3.937008,6.819098,-3.937008,-6.819098,-3.937008,6.819098,-7.874016,0,4.409449,5.408814,3.937008,1.387666,-4.409449,5.408814,-3.937008,1.387666,5.547209,3.937008,-5.547209,3.937008,5.547209,7.874016,-5.547209,7.874016,5.547209,7.874016,5.547209,3.937008,-5.547209,7.874016,-5.547209,3.937008,4.409449,7.874016,4.409449,5.905512,-4.409449,7.874016,-4.409449,5.905512,-4.409449,5.905512,-4.409449,7.874016,4.409449,5.905512,4.409449,7.874016,5.547209,7.874016,5.547209,3.937008,-5.547209,7.874016,-5.547209,3.937008,-8.818897,0,-4.409449,7.637389,-4.409449,-7.637389,4.409449,-7.637389,4.409449,7.637389,8.818897,0 + } + UVIndex: *204 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,23,24,26,25,24,27,26,24,20,21,28,29,28,21,30,28,29,27,30,26,31,30,29,26,30,31,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,43,42,45,43,44,46,45,44,47,46,44,40,41,48,49,48,41,50,48,49,47,50,46,51,50,49,46,50,51,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,103,105,107,106,105 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *68 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh pot_large, Model::RootNode + C: "OO",4839920553799159135,0 + + ;Geometry::, Model::Mesh pot_large + C: "OO",4720901829008660936,4839920553799159135 + + ;Material::wood, Model::Mesh pot_large + C: "OO",3044,4839920553799159135 + + ;Material::woodBarkDark, Model::Mesh pot_large + C: "OO",3048,4839920553799159135 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/pot_large.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/pot_large.fbx.import new file mode 100644 index 0000000..566df2f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/pot_large.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://caf6422fpohsi" +path="res://.godot/imported/pot_large.fbx-17955296bc490beaafcadaaf2a351a98.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/pot_large.fbx" +dest_files=["res://.godot/imported/pot_large.fbx-17955296bc490beaafcadaaf2a351a98.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/pot_small.fbx b/assets/models/kenney_nature-kit/Models/FBX format/pot_small.fbx new file mode 100644 index 0000000..25f56ae --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/pot_small.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 28 + Millisecond: 727 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "pot_small.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "pot_small.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5730964637406017850, "Model::pot_small", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4706075145815193476, "Geometry::", "Mesh" { + Vertices: *360 { + a: 1,0,-1.443823E-14,0.5,0,0.8660254,1.29,1.68,2.887646E-14,0.645,1.68,1.117173,-0.645,1.68,-1.117173,-1.29,1.68,2.887646E-14,-0.5,0,-0.8660254,-1,0,-1.443823E-14,0.5,0,0.8660254,-0.5,0,0.8660254,0.645,1.68,1.117173,-0.645,1.68,1.117173,0.645,1.68,-1.117173,0.5,0,-0.8660254,1.29,1.68,2.887646E-14,1,0,-1.443823E-14,1,0,-1.443823E-14,0.5,0,-0.8660254,0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.8660254,-1,0,-1.443823E-14,-0.645,2.68,-1.117173,-0.645,2.18,-1.117173,-1.29,2.68,2.887646E-14,-1.29,2.18,2.887646E-14,-1.29,2.68,2.887646E-14,-1.29,2.18,2.887646E-14,-0.645,2.68,1.117173,-0.645,2.18,1.117173,1.29,2.18,2.887646E-14,1.29,2.68,2.887646E-14,0.645,2.18,1.117173,0.645,2.68,1.117173,0.645,2.18,-1.117173,-0.645,2.18,-1.117173,0.645,2.68,-1.117173,-0.645,2.68,-1.117173,-1,0,-1.443823E-14,-1.29,1.68,2.887646E-14,-0.5,0,0.8660254,-0.645,1.68,1.117173,-1.617248,1.68,2.887646E-14,-1.617248,2.68,2.887646E-14,-0.808624,1.68,1.400578,-0.808624,2.68,1.400578,0.645,2.18,-1.117173,0.645,2.68,-1.117173,1.29,2.18,2.887646E-14,1.29,2.68,2.887646E-14,-0.808624,1.68,-1.400578,0.808624,1.68,-1.400578,-0.808624,2.68,-1.400578,0.808624,2.68,-1.400578,1.617248,2.68,2.887646E-14,1.617248,1.68,2.887646E-14,0.808624,2.68,1.400578,0.808624,1.68,1.400578,1.617248,2.68,2.887646E-14,1.29,2.68,2.887646E-14,0.808624,2.68,-1.400578,0.645,2.68,-1.117173,-0.808624,2.68,-1.400578,-0.645,2.68,-1.117173,-1.29,2.68,2.887646E-14,-1.617248,2.68,2.887646E-14,0.808624,2.68,1.400578,0.645,2.68,1.117173,-0.808624,2.68,1.400578,-0.645,2.68,1.117173,1.617248,1.68,2.887646E-14,1.29,1.68,2.887646E-14,0.808624,1.68,1.400578,0.645,1.68,1.117173,-0.808624,1.68,1.400578,-0.645,1.68,1.117173,-1.29,1.68,2.887646E-14,-1.617248,1.68,2.887646E-14,0.808624,1.68,-1.400578,0.645,1.68,-1.117173,-0.808624,1.68,-1.400578,-0.645,1.68,-1.117173,-0.5,0,-0.8660254,0.5,0,-0.8660254,-0.645,1.68,-1.117173,0.645,1.68,-1.117173,-0.645,2.18,1.117173,0.645,2.18,1.117173,-0.645,2.68,1.117173,0.645,2.68,1.117173,0.808624,2.68,-1.400578,0.808624,1.68,-1.400578,1.617248,2.68,2.887646E-14,1.617248,1.68,2.887646E-14,0.808624,1.68,1.400578,-0.808624,1.68,1.400578,0.808624,2.68,1.400578,-0.808624,2.68,1.400578,-0.808624,1.68,-1.400578,-0.808624,2.68,-1.400578,-1.617248,1.68,2.887646E-14,-1.617248,2.68,2.887646E-14,1.29,2.18,2.887646E-14,0.645,2.18,1.117173,0.645,2.18,-1.117173,-0.645,2.18,-1.117173,-0.645,2.18,1.117173,-1.29,2.18,2.887646E-14,1.29,1.68,2.887646E-14,0.645,1.68,-1.117173,0.645,1.68,1.117173,-0.645,1.68,1.117173,0.645,1.68,1.117173,0.645,1.68,-1.117173,-0.645,1.68,-1.117173,-0.645,1.68,1.117173,0.645,1.68,-1.117173,-1.29,1.68,2.887646E-14,-0.645,1.68,1.117173,-0.645,1.68,-1.117173 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,20,-20,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,61,-63,64,63,-63,65,64,-63,58,59,-67,67,66,-60,68,66,-68,65,68,-65,69,68,-68,64,68,-70,70,72,-72,73,71,-73,74,73,-73,75,73,-75,76,75,-75,77,76,-75,70,71,-79,79,78,-72,80,78,-80,77,80,-77,81,80,-80,76,80,-82,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,103,-106,107,106,-106,108,110,-110,111,113,-113,114,116,-116,117,119,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: 0.8565077,-0.1478495,0.4945049,0.8565077,-0.1478495,0.4945049,0.8565077,-0.1478495,0.4945049,0.8565077,-0.1478495,0.4945049,0.8565077,-0.1478495,0.4945049,0.8565077,-0.1478495,0.4945049,-0.8565077,-0.1478495,-0.4945049,-0.8565077,-0.1478495,-0.4945049,-0.8565077,-0.1478495,-0.4945049,-0.8565077,-0.1478495,-0.4945049,-0.8565077,-0.1478495,-0.4945049,-0.8565077,-0.1478495,-0.4945049,0,-0.1478495,0.9890098,0,-0.1478495,0.9890098,0,-0.1478495,0.9890098,0,-0.1478495,0.9890098,0,-0.1478495,0.9890098,0,-0.1478495,0.9890098,0.8565077,-0.1478495,-0.4945049,0.8565077,-0.1478495,-0.4945049,0.8565077,-0.1478495,-0.4945049,0.8565077,-0.1478495,-0.4945049,0.8565077,-0.1478495,-0.4945049,0.8565077,-0.1478495,-0.4945049,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8565077,-0.1478495,0.4945049,-0.8565077,-0.1478495,0.4945049,-0.8565077,-0.1478495,0.4945049,-0.8565077,-0.1478495,0.4945049,-0.8565077,-0.1478495,0.4945049,-0.8565077,-0.1478495,0.4945049,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1478495,-0.9890098,0,-0.1478495,-0.9890098,0,-0.1478495,-0.9890098,0,-0.1478495,-0.9890098,0,-0.1478495,-0.9890098,0,-0.1478495,-0.9890098,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: 1.968504,0.5041002,-1.968504,0.5041002,2.53937,7.191772,-2.53937,7.191772,-2.53937,7.191772,2.53937,7.191772,-1.968504,0.5041002,1.968504,0.5041002,1.968504,0.5041002,-1.968504,0.5041002,2.53937,7.191772,-2.53937,7.191772,2.53937,7.191772,1.968504,0.5041002,-2.53937,7.191772,-1.968504,0.5041002,3.937008,-5.684342E-14,1.968504,-3.409549,1.968504,3.409549,-1.968504,3.409549,-1.968504,-3.409549,-3.937008,-5.684342E-14,2.53937,10.55118,2.53937,8.582677,-2.53937,10.55118,-2.53937,8.582677,2.53937,10.55118,2.53937,8.582677,-2.53937,10.55118,-2.53937,8.582677,-2.53937,8.582677,-2.53937,10.55118,2.53937,8.582677,2.53937,10.55118,2.53937,8.582677,-2.53937,8.582677,2.53937,10.55118,-2.53937,10.55118,-1.968504,0.5041002,-2.53937,7.191772,1.968504,0.5041002,2.53937,7.191772,-3.183559,6.614173,-3.183559,10.55118,3.183559,6.614173,3.183559,10.55118,-2.53937,8.582677,-2.53937,10.55118,2.53937,8.582677,2.53937,10.55118,3.183559,6.614173,-3.183559,6.614173,3.183559,10.55118,-3.183559,10.55118,3.183559,10.55118,3.183559,6.614173,-3.183559,10.55118,-3.183559,6.614173,-6.367118,1.136868E-13,-5.07874,1.136868E-13,-3.183559,-5.514086,-2.53937,-4.398318,3.183559,-5.514086,2.53937,-4.398318,5.07874,1.136868E-13,6.367118,1.136868E-13,-3.183559,5.514086,-2.53937,4.398318,3.183559,5.514086,2.53937,4.398318,6.367118,1.136868E-13,5.07874,1.136868E-13,3.183559,5.514086,2.53937,4.398318,-3.183559,5.514086,-2.53937,4.398318,-5.07874,1.136868E-13,-6.367118,1.136868E-13,3.183559,-5.514086,2.53937,-4.398318,-3.183559,-5.514086,-2.53937,-4.398318,1.968504,0.5041002,-1.968504,0.5041002,2.53937,7.191772,-2.53937,7.191772,2.53937,8.582677,-2.53937,8.582677,2.53937,10.55118,-2.53937,10.55118,3.183559,10.55118,3.183559,6.614173,-3.183559,10.55118,-3.183559,6.614173,3.183559,6.614173,-3.183559,6.614173,3.183559,10.55118,-3.183559,10.55118,-3.183559,6.614173,-3.183559,10.55118,3.183559,6.614173,3.183559,10.55118,-5.07874,1.136868E-13,-2.53937,4.398318,-2.53937,-4.398318,2.53937,-4.398318,2.53937,4.398318,5.07874,1.136868E-13,2.53937,10.55118,2.53937,8.582677,-2.53937,10.55118,2.53937,10.55118,2.53937,8.582677,-2.53937,10.55118,2.53937,10.55118,2.53937,8.582677,-2.53937,10.55118,2.53937,10.55118,2.53937,8.582677,-2.53937,10.55118 + } + UVIndex: *216 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,20,19,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,61,62,64,63,62,65,64,62,58,59,66,67,66,59,68,66,67,65,68,64,69,68,67,64,68,69,70,72,71,73,71,72,74,73,72,75,73,74,76,75,74,77,76,74,70,71,78,79,78,71,80,78,79,77,80,76,81,80,79,76,80,81,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,103,105,107,106,105,108,110,109,111,113,112,114,116,115,117,119,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh pot_small, Model::RootNode + C: "OO",5730964637406017850,0 + + ;Geometry::, Model::Mesh pot_small + C: "OO",4706075145815193476,5730964637406017850 + + ;Material::wood, Model::Mesh pot_small + C: "OO",3044,5730964637406017850 + + ;Material::woodBarkDark, Model::Mesh pot_small + C: "OO",3048,5730964637406017850 + + ;Material::_defaultMat, Model::Mesh pot_small + C: "OO",3004,5730964637406017850 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/pot_small.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/pot_small.fbx.import new file mode 100644 index 0000000..f5cce36 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/pot_small.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d0brc0ehn4o4m" +path="res://.godot/imported/pot_small.fbx-7837efebe6dd482e6b582fc667a80bc5.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/pot_small.fbx" +dest_files=["res://.godot/imported/pot_small.fbx-7837efebe6dd482e6b582fc667a80bc5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeA.fbx new file mode 100644 index 0000000..e12fc74 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 28 + Millisecond: 818 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_largeA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_largeA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4820366006188322038, "Model::rock_largeA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5464755762818905590, "Geometry::", "Mesh" { + Vertices: *438 { + a: -0.7721478,1.4432,-4.148316,3.34255,1.4432,0.6882935,-0.5327821,2.59776,-2.862337,2.30636,2.59776,0.4749225,2.159252,1.4432,5.077307,-2.094267,1.4432,4.492598,1.824568,2.02048,4.290323,0.02241977,2.59776,3.301617,-1.445044,2.59776,3.099893,2.607189,-2.255973E-16,0.5368689,3.061137,-2.255973E-16,2.250741,3.34255,0.7576799,0.6882935,3.924533,0.7576799,2.885566,3.061137,-2.255973E-16,2.250741,2.607189,-2.255973E-16,0.5368689,1.684216,-2.932765E-15,3.9603,-0.6022751,-2.255973E-16,-3.235685,-1.633528,-2.255973E-16,3.504227,-1.732083,-2.255973E-16,-3.9603,-2.342801,-2.255973E-16,-0.2428392,-3.061137,-2.255973E-16,1.378093,-2.342801,-2.255973E-16,-2.631416,-2.857985,-2.255973E-16,-3.600544,2.159252,0.7576799,5.077307,-2.094267,0.7576799,4.492598,2.159252,1.4432,5.077307,-2.094267,1.4432,4.492598,3.34255,1.4432,0.6882935,3.34255,0.7576799,0.6882935,3.924533,1.4432,2.885566,3.924533,0.7576799,2.885566,-3.003591,0.7576799,-0.3113323,-3.003591,1.4432,-0.3113323,-3.924533,0.7576799,1.766786,-3.924533,1.4432,1.766786,-1.633528,-2.255973E-16,3.504227,-3.061137,-2.255973E-16,1.378093,-2.094267,0.7576799,4.492598,-3.924533,0.7576799,1.766786,-0.6022751,-2.255973E-16,-3.235685,-0.7721478,0.7576799,-4.148316,-1.732083,-2.255973E-16,-3.9603,-2.220618,0.7576799,-5.077307,2.098906,2.59776,2.74719,1.824568,2.02048,4.290323,0.02241977,2.59776,3.301617,3.924533,1.4432,2.885566,2.159252,1.4432,5.077307,2.707928,2.59776,1.99104,2.098906,2.59776,2.74719,1.824568,2.02048,4.290323,-0.7721478,1.4432,-4.148316,-0.7721478,0.7576799,-4.148316,3.34255,1.4432,0.6882935,3.34255,0.7576799,0.6882935,-3.003591,0.7576799,-0.3113323,-3.924533,0.7576799,1.766786,-2.342801,-2.255973E-16,-0.2428392,-3.061137,-2.255973E-16,1.378093,-1.732083,-2.255973E-16,-3.9603,-2.220618,0.7576799,-5.077307,-2.857985,-2.255973E-16,-3.600544,-3.664083,0.7576799,-4.616082,-1.445044,2.59776,3.099893,-2.094267,1.4432,4.492598,-2.707928,2.59776,1.219082,-3.924533,1.4432,1.766786,-3.664083,1.4432,-4.616082,-2.528217,2.59776,-3.185097,-3.003591,1.4432,-3.373611,-2.072478,2.59776,-2.327791,2.159252,0.7576799,5.077307,1.684216,-2.932765E-15,3.9603,-2.094267,0.7576799,4.492598,-1.633528,-2.255973E-16,3.504227,-1.532227,2.59776,-3.503341,-2.528217,2.59776,-3.185097,-2.220618,1.4432,-5.077307,-3.664083,1.4432,-4.616082,-0.7721478,0.7576799,-4.148316,-0.6022751,-2.255973E-16,-3.235685,3.34255,0.7576799,0.6882935,2.607189,-2.255973E-16,0.5368689,-3.664083,0.7576799,-4.616082,-3.664083,1.4432,-4.616082,-3.003591,0.7576799,-3.373611,-3.003591,1.4432,-3.373611,-3.664083,0.7576799,-4.616082,-3.003591,0.7576799,-3.373611,-2.857985,-2.255973E-16,-3.600544,-2.342801,-2.255973E-16,-2.631416,-2.220618,0.7576799,-5.077307,-0.7721478,0.7576799,-4.148316,-2.220618,1.4432,-5.077307,-0.7721478,1.4432,-4.148316,-3.003591,1.4432,-3.373611,-2.072478,2.59776,-2.327791,-3.003591,1.4432,-0.3113323,-2.072478,2.59776,-0.2148193,-3.003591,1.4432,-0.3113323,-2.072478,2.59776,-0.2148193,-3.924533,1.4432,1.766786,-2.707928,2.59776,1.219082,-3.664083,0.7576799,-4.616082,-2.220618,0.7576799,-5.077307,-3.664083,1.4432,-4.616082,-2.220618,1.4432,-5.077307,-3.924533,0.7576799,1.766786,-3.924533,1.4432,1.766786,-2.094267,0.7576799,4.492598,-2.094267,1.4432,4.492598,-3.003591,0.7576799,-3.373611,-3.003591,0.7576799,-0.3113323,-2.342801,-2.255973E-16,-2.631416,-2.342801,-2.255973E-16,-0.2428392,3.924533,1.4432,2.885566,3.924533,0.7576799,2.885566,2.159252,1.4432,5.077307,2.159252,0.7576799,5.077307,-3.003591,0.7576799,-3.373611,-3.003591,1.4432,-3.373611,-3.003591,0.7576799,-0.3113323,-3.003591,1.4432,-0.3113323,2.30636,2.59776,0.4749225,3.34255,1.4432,0.6882935,2.707928,2.59776,1.99104,3.924533,1.4432,2.885566,-2.220618,1.4432,-5.077307,-0.7721478,1.4432,-4.148316,-1.532227,2.59776,-3.503341,-0.5327821,2.59776,-2.862337,3.924533,0.7576799,2.885566,3.061137,-2.255973E-16,2.250741,2.159252,0.7576799,5.077307,1.684216,-2.932765E-15,3.9603,-1.532227,2.59776,-3.503341,-2.072478,2.59776,-2.327791,-2.528217,2.59776,-3.185097,-2.072478,2.59776,-0.2148193,-1.445044,2.59776,3.099893,-0.5327821,2.59776,-2.862337,0.02241977,2.59776,3.301617,2.098906,2.59776,2.74719,2.30636,2.59776,0.4749225,2.707928,2.59776,1.99104,-2.707928,2.59776,1.219082 + } + PolygonVertexIndex: *240 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,16,-16,18,16,-18,19,18,-18,20,19,-18,19,21,-19,22,18,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,48,-48,49,47,-49,50,47,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,113,-113,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,136,138,-136,138,139,-136,135,139,-141,139,141,-141,141,142,-141,140,142,-144,144,143,-143,145,139,-139 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *720 { + a: 0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.136184,0,0.9906836,-0.136184,0,0.9906836,-0.136184,0,0.9906836,-0.136184,0,0.9906836,-0.136184,0,0.9906836,-0.136184,0,0.9906836,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.09714282,0.9263868,0.3638278,0.09714282,0.9263868,0.3638278,0.09714282,0.9263868,0.3638278,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.8804476,0.07582325,0.4680414,-0.8703247,0.168762,0.4626601,-0.8487453,0.2757903,0.4511887,-0.8487453,0.2757903,0.4511887,-0.8487453,0.2757903,0.4511887,-0.8703247,0.168762,0.4626601,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,-0.8802849,-0.07820983,0.4679549,-0.8681374,-0.182641,0.4614975,-0.8804476,0.07582325,0.4680414,-0.8703247,0.168762,0.4626601,-0.8804476,0.07582325,0.4680414,-0.8681374,-0.182641,0.4614975,-0.8802849,-0.07820983,0.4679549,-0.8433279,-0.2963394,0.4483089,-0.8681374,-0.182641,0.4614975,-0.8433279,-0.2963394,0.4483089,-0.8681374,-0.182641,0.4614975,-0.8433279,-0.2963394,0.4483089,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,0.7788041,0,0.6272673,0.7788041,0,0.6272673,0.7788041,0,0.6272673,0.7788041,0,0.6272673,0.7788041,0,0.6272673,0.7788041,0,0.6272673,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *292 { + a: 14.40923,0.8890257,-10.59109,0.8890266,9.942363,6.107259,-7.307855,6.107257,11.14403,-11.14403,-5.759595,-11.14403,9.416702,-7.467372,1.85763,-3.790719,-3.97412,-3.790719,-4.671305,6.225207,-11.65151,6.225208,-5.988852,10.21262,-14.93783,10.21262,12.05172,8.861185,10.26453,2.113657,6.630774,15.59173,-2.371162,-12.73892,-6.431214,13.79617,-6.819224,-15.59173,-9.223626,-0.9560598,-12.05172,5.425562,-9.223626,-10.35991,-11.25191,-14.17537,11.14403,2.982992,-5.759592,2.982992,11.14403,5.68189,-5.759592,5.68189,-5.98885,5.68189,-5.98885,2.982992,-14.93782,5.68189,-14.93782,2.982992,3.67046,2.982992,3.67046,5.68189,12.61944,2.982992,12.61944,5.68189,7.868636,10.11681,-2.21388,10.11681,10.08799,14.85017,-2.838305,14.85017,8.873235,6.289109,11.37595,10.28809,14.15753,6.28911,18.15068,10.28809,5.193651,-7.803802,2.582912,-13.83916,-3.26788,-7.803802,0.8442616,-11.76165,-10.23543,-11.76165,0.5825414,-4.282485,-3.239949,-4.282484,-8.648931,-8.022066,14.40923,5.68189,14.40923,2.982992,-10.59109,5.68189,-10.59109,2.982992,3.670463,9.533133,12.61944,9.533132,2.86296,5.648948,9.843162,5.648949,1.750084,14.3559,2.243696,19.98559,6.403553,14.3559,8.209682,19.98559,6.960716,-1.915952,10.08799,-8.80647,-1.958431,-1.915953,-2.838305,-8.806469,-22.81829,4.301269,-15.74462,9.030178,-17.27845,4.301269,-11.92213,9.030178,11.14403,16.83416,8.692344,11.76221,-5.759592,16.83416,-4.49248,11.76221,1.548156,-6.681981,5.664685,-6.681983,2.243702,-14.80124,8.209688,-14.80124,14.40923,6.850761,11.23919,3.357009,-10.59109,6.85076,-8.261053,3.357009,-22.81829,2.982992,-22.81829,5.68189,-17.27845,2.982992,-17.27845,5.68189,-22.81829,4.095719,-17.27845,4.095719,-17.79827,0.9724376,-13.47719,0.9724373,18.15068,2.982992,11.37594,2.982992,18.15068,5.68189,11.37594,5.68189,-13.28193,-3.000531,-9.164533,2.83897,-1.225718,-3.000531,-0.8457452,2.83897,3.670462,-2.406015,2.532618,3.334147,12.61944,-2.406015,8.707412,3.334146,8.209681,2.982992,2.243694,2.982992,8.209681,5.68189,2.243694,5.68189,-2.838303,2.982992,-2.838303,5.68189,10.088,2.982992,10.088,5.68189,-13.28193,10.02053,-1.225718,10.02053,-10.35991,6.062467,-0.9560598,6.062467,0.8442569,5.68189,0.8442569,2.982992,-10.23543,5.68189,-10.23543,2.982992,-13.28193,2.982992,-13.28193,5.68189,-1.225718,2.982992,-1.225718,5.68189,-4.132308,2.644571,-5.988851,-3.234445,-10.3071,2.644571,-14.93783,-3.234445,18.15068,-3.326286,11.37595,-3.326286,12.52397,2.568312,7.8494,2.568313,0.8442597,17.36232,0.658524,12.19852,-10.23543,17.36232,-7.983634,12.19852,6.03239,-13.79268,8.159362,-9.164533,9.953611,-12.53975,8.159362,-0.8457452,5.689151,12.2043,2.097568,-11.26904,-0.0882668,12.99849,-8.263411,10.81571,-9.080157,1.869774,-10.66114,7.838741,10.66114,4.799536 + } + UVIndex: *240 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,11,10,12,10,11,13,15,14,16,14,15,17,16,15,18,16,17,19,18,17,20,19,17,19,21,18,22,18,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,48,47,49,47,48,50,47,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,109,108,110,108,109,111,113,112,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,136,138,135,138,139,135,135,139,140,139,141,140,141,142,140,140,142,143,144,143,142,145,139,138 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *80 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_largeA, Model::RootNode + C: "OO",4820366006188322038,0 + + ;Geometry::, Model::Mesh rock_largeA + C: "OO",5464755762818905590,4820366006188322038 + + ;Material::dirt, Model::Mesh rock_largeA + C: "OO",3020,4820366006188322038 + + ;Material::grass, Model::Mesh rock_largeA + C: "OO",3024,4820366006188322038 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeA.fbx.import new file mode 100644 index 0000000..a512451 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d1u30mi25p2py" +path="res://.godot/imported/rock_largeA.fbx-73ba9145ac17feb0539842e0177400aa.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_largeA.fbx" +dest_files=["res://.godot/imported/rock_largeA.fbx-73ba9145ac17feb0539842e0177400aa.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeB.fbx new file mode 100644 index 0000000..ee41c6b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeB.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 30 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_largeB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_largeB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5460416542089624717, "Model::rock_largeB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5043978267741008981, "Geometry::", "Mesh" { + Vertices: *489 { + a: -3.094548,1.70478,-2.573611,-2.163434,4.30254,-2.327791,-3.094548,1.70478,-0.3113323,-2.163434,4.30254,-0.2148193,2.97018,0,2.250741,1.593261,-5.86553E-15,3.9603,3.833575,1.70478,2.885566,2.068296,1.70478,5.077307,2.616972,4.30254,1.99104,3.833575,1.70478,2.885566,1.398928,4.30254,3.503341,2.068296,1.70478,5.077307,-3.583791,0.8523899,1.572439,-3.799639,1.278585,1.669613,-2.438289,0,2.44116,-3.555019,1.70478,2.452565,-1.724485,0,3.504227,-2.185224,1.70478,4.492598,-1.623183,4.30254,-3.503341,-2.163434,4.30254,-2.327791,-3.75504,1.70478,-4.616082,-2.433757,0,-2.631416,-2.948941,0,-3.600544,-3.094548,1.70478,-2.573611,1.707262,4.30254,-0.1223712,2.733499,3.003659,0.5816078,2.416188,4.30254,1.232981,-2.798884,4.30254,1.219082,-2.167443,4.30254,2.159488,-3.833575,2.09321,1.684891,-3.555019,1.70478,2.452565,-1.860613,3.003659,3.796247,-2.185224,1.70478,4.492598,2.883914,0.8523899,0.6125811,1.541693,0,-0.6086501,2.743207,0,1.393805,-2.433757,0,-2.631416,-3.094548,1.70478,-2.573611,-2.433757,0,-0.2428392,-3.094548,1.70478,-0.3113323,-2.948941,0,-3.600544,-3.75504,1.70478,-4.616082,-3.094548,1.70478,-2.573611,-0.8631039,1.70478,-4.148316,-0.6932313,0,-3.235685,3.251594,1.70478,0.6882935,1.541693,0,-0.6086501,2.883914,0.8523899,0.6125811,2.068296,1.70478,5.077307,-2.185224,1.70478,4.492598,1.398928,4.30254,3.503341,-1.860613,3.003659,3.796247,-0.06853648,4.30254,3.301617,-2.438289,0,2.44116,-2.792925,0,0.5676268,-3.583791,0.8523899,1.572439,-3.799639,1.278585,1.669613,-3.555019,1.70478,0.7277268,-3.555019,1.70478,2.452565,-3.555019,1.70478,0.7277268,-3.833575,2.09321,1.684891,-3.555019,1.70478,2.452565,-3.094548,1.70478,-0.3113323,-3.555019,1.70478,0.7277268,-2.433757,0,-0.2428392,-2.792925,0,0.5676268,-3.583791,0.8523899,1.572439,-3.799639,1.278585,1.669613,2.883914,0.8523899,0.6125811,2.743207,0,1.393805,3.251594,1.70478,0.6882935,3.833575,1.70478,2.885566,2.97018,0,2.250741,2.733499,3.003659,0.5816078,3.251594,1.70478,0.6882935,2.416188,4.30254,1.232981,3.833575,1.70478,2.885566,2.616972,4.30254,1.99104,-1.823039,0,-3.9603,-0.6932313,0,-3.235685,-2.311575,1.70478,-5.077307,-0.8631039,1.70478,-4.148316,-2.311575,1.70478,-5.077307,-0.8631039,1.70478,-4.148316,-1.623183,4.30254,-3.503341,-0.6237384,4.30254,-2.862337,2.97018,0,2.250741,2.743207,0,1.393805,1.593261,-5.86553E-15,3.9603,1.541693,0,-0.6086501,-1.724485,0,3.504227,-0.6932313,0,-3.235685,-1.823039,0,-3.9603,-2.438289,0,2.44116,-2.433757,0,-0.2428392,-2.792925,0,0.5676268,-2.433757,0,-2.631416,-2.948941,0,-3.600544,-2.948941,0,-3.600544,-1.823039,0,-3.9603,-3.75504,1.70478,-4.616082,-2.311575,1.70478,-5.077307,-3.75504,1.70478,-4.616082,-2.311575,1.70478,-5.077307,-1.623183,4.30254,-3.503341,-3.094548,1.70478,-2.573611,-3.75504,1.70478,-4.616082,-2.163434,4.30254,-2.327791,-0.8631039,1.70478,-4.148316,3.251594,1.70478,0.6882935,-0.6237384,4.30254,-2.862337,1.707262,4.30254,-0.1223712,2.733499,3.003659,0.5816078,-3.094548,1.70478,-0.3113323,-2.163434,4.30254,-0.2148193,-3.555019,1.70478,0.7277268,-2.798884,4.30254,1.219082,-3.833575,2.09321,1.684891,1.593261,-5.86553E-15,3.9603,-1.724485,0,3.504227,2.068296,1.70478,5.077307,-2.185224,1.70478,4.492598,-0.06853648,4.30254,3.301617,-1.860613,3.003659,3.796247,-2.167443,4.30254,2.159488,3.833575,1.70478,2.885566,3.251594,1.70478,0.6882935,2.068296,1.70478,5.077307,-0.8631039,1.70478,-4.148316,2.068296,1.70478,5.077307,3.251594,1.70478,0.6882935,-2.185224,1.70478,4.492598,2.068296,1.70478,5.077307,-0.8631039,1.70478,-4.148316,-2.311575,1.70478,-5.077307,-2.185224,1.70478,4.492598,-0.8631039,1.70478,-4.148316,-3.094548,1.70478,-0.3113323,-2.185224,1.70478,4.492598,-2.311575,1.70478,-5.077307,-3.555019,1.70478,2.452565,-2.185224,1.70478,4.492598,-3.094548,1.70478,-0.3113323,-3.555019,1.70478,0.7277268,-3.555019,1.70478,2.452565,-3.094548,1.70478,-0.3113323,-3.75504,1.70478,-4.616082,-3.094548,1.70478,-2.573611,-2.311575,1.70478,-5.077307,-3.094548,1.70478,-0.3113323,-2.311575,1.70478,-5.077307,-3.094548,1.70478,-2.573611,2.616972,4.30254,1.99104,1.398928,4.30254,3.503341,2.416188,4.30254,1.232981,1.707262,4.30254,-0.1223712,-0.6237384,4.30254,-2.862337,-0.06853648,4.30254,3.301617,-2.167443,4.30254,2.159488,-1.623183,4.30254,-3.503341,-2.163434,4.30254,-0.2148193,-2.163434,4.30254,-2.327791,-2.798884,4.30254,1.219082 + } + PolygonVertexIndex: *255 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,28,-30,31,28,-31,32,31,-31,33,35,-35,36,38,-38,39,37,-39,40,42,-42,43,45,-45,46,44,-46,47,46,-46,48,50,-50,51,49,-51,52,51,-51,53,55,-55,56,58,-58,59,61,-61,62,64,-64,65,63,-65,66,63,-66,67,63,-67,68,70,-70,71,69,-71,72,69,-72,73,75,-75,76,74,-76,77,76,-76,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,89,-89,91,89,-91,92,91,-91,93,92,-91,94,92,-94,95,94,-94,94,96,-93,97,92,-97,98,100,-100,101,99,-101,102,104,-104,105,107,-107,108,110,-110,111,109,-111,112,109,-112,113,115,-115,116,114,-116,117,116,-116,118,120,-120,121,119,-121,122,124,-124,125,127,-127,128,130,-130,131,133,-133,134,136,-136,137,139,-139,140,142,-142,143,145,-145,146,148,-148,149,151,-151,152,154,-154,155,153,-155,156,153,-156,157,153,-157,158,157,-157,159,158,-157,160,158,-160,161,160,-160,162,158,-161 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *765 { + a: -0.9413577,0.3374103,0,-0.9413577,0.3374103,0,-0.9413577,0.3374103,0,-0.9413577,0.3374103,0,-0.9413577,0.3374103,0,-0.9413577,0.3374103,0,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.6671814,0.6788625,-0.3066183,-0.6671814,0.6788625,-0.3066183,-0.6671814,0.6788625,-0.3066183,-0.8312767,-0.3371956,0.4419027,-0.8923689,-0.286348,0.3488301,-0.8782181,-0.2995817,0.3728053,0.8083901,0.4095327,-0.4228336,0.8083901,0.4095327,-0.4228336,0.8083901,0.4095327,-0.4228336,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,0.7310289,-0.5226842,-0.4386321,0.7310289,-0.5226842,-0.4386321,0.7310289,-0.5226842,-0.4386321,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.8782181,-0.2995817,0.3728053,-0.8923689,-0.286348,0.3488301,-0.9193711,-0.2576166,0.2973054,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.650871,-0.7491251,0.1232016,-0.650871,-0.7491251,0.1232016,-0.650871,-0.7491251,0.1232016,-0.8672945,0.4977954,0,-0.8672945,0.4977954,0,-0.8672945,0.4977954,0,-0.8126364,-0.5827709,0,-0.8126364,-0.5827709,0,-0.8126364,-0.5827709,0,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2542837,0.5495625,-0.7958146,-0.2542837,0.5495625,-0.7958146,-0.2542837,0.5495625,-0.7958146,-0.9083233,0.2977746,0.2937328,-0.9083233,0.2977746,0.2937328,-0.9083233,0.2977746,0.2937328,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.3389997,0.704961,0.6229841,-0.3389997,0.704961,0.6229841,-0.3389997,0.704961,0.6229841,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *326 { + a: -10.13233,2.207382,-9.164533,13.07191,-1.225718,2.207382,-0.8457452,13.07191,0.4338958,7.799509,-8.208261,7.799507,0.6196274,15.72503,-10.46006,15.72503,0.3579152,8.149341,0.6196293,-3.677578,-7.287069,8.149343,-10.46005,-3.677579,-2.725709,10.22681,-2.881811,12.13982,2.627761,6.400783,0.2141673,14.05283,7.669018,6.400783,9.888378,14.05283,-9.863982,4.585924,-4.770479,4.585924,-10.33976,-9.342831,-13.64528,1.213126,-17.96636,1.213126,-14.66547,8.342385,-2.6884,12.92289,-7.016917,7.317572,-8.710293,12.92289,-2.158048,9.771083,2.301526,9.771084,-2.906353,0.0214591,0.2141691,-1.692656,8.324745,4.039212,9.88838,-1.692655,-7.909753,7.301178,-1.068133,3.3648,-10.26209,3.3648,-10.35991,3.462936,-10.13233,10.66122,-0.9560598,3.462936,-1.225718,10.66122,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,14.64126,8.569105,11.47123,1.615301,-10.35906,8.569104,-2.107853,1.615301,-9.194036,5.092204,10.78927,-3.354769,-6.114355,-3.354767,7.334619,8.392968,-5.221617,2.519096,1.502869,8.392968,7.657809,8.404844,0.1507158,8.404844,3.458558,13.47085,6.573279,-3.080838,2.865066,-1.146165,9.655767,-1.146165,2.865066,13.61074,6.633429,15.49258,9.655767,13.61074,3.815543,10.33706,8.29003,10.33706,3.008042,3.179132,6.498141,3.179133,11.37638,6.7581,12.07045,8.547581,-5.238386,6.920926,-8.069715,3.313693,-5.89716,10.52816,-14.84613,10.52816,-11.55981,3.313693,-4.968888,7.747903,-5.89716,2.304997,-7.128014,13.19081,-14.84613,2.304998,-10.21541,13.19081,14.45896,3.411659,9.174662,3.411658,18.45211,10.63253,11.67737,10.63253,18.45211,2.197023,11.67737,2.197023,12.8254,13.09126,8.150827,13.09126,11.69362,8.861185,10.80003,5.487422,6.27268,15.59173,6.069659,-2.39626,-6.78931,13.79617,-2.729257,-12.73892,-7.17732,-15.59173,-9.599562,9.610866,-9.581721,-0.9560598,-10.99577,2.234751,-9.581721,-10.35991,-11.61,-14.17537,6.744661,9.875325,2.091193,9.875325,8.550797,18.11198,2.584805,18.11198,8.550797,-6.379147,2.584806,-6.379147,1.88926,5.862606,-13.38945,3.883746,-21.84067,3.883746,-11.34067,14.59715,14.64126,4.56718,-10.35906,4.567181,10.1744,15.11081,-3.988421,15.11081,-8.717438,9.838992,3.815543,2.576706,2.677701,13.38816,8.29003,2.576705,8.852494,13.38816,12.17957,4.193288,8.337585,7.609647,-4.84724,7.609647,10.78927,15.47564,-6.11435,15.47564,5.975904,3.874166,0.7093858,-3.335888,-3.431705,3.874166,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-10.30304,7.838741,-5.507589,13.79268,-9.51255,4.854257,-6.721504,-0.4817762,2.455663,-11.26904,0.2698287,12.99849,8.533238,8.50192,6.390485,-13.79268,8.517457,-0.8457452,8.517457,-9.164533,11.01923,4.799536 + } + UVIndex: *255 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,15,16,18,20,19,21,23,22,24,26,25,27,29,28,30,28,29,31,28,30,32,31,30,33,35,34,36,38,37,39,37,38,40,42,41,43,45,44,46,44,45,47,46,45,48,50,49,51,49,50,52,51,50,53,55,54,56,58,57,59,61,60,62,64,63,65,63,64,66,63,65,67,63,66,68,70,69,71,69,70,72,69,71,73,75,74,76,74,75,77,76,75,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,89,88,91,89,90,92,91,90,93,92,90,94,92,93,95,94,93,94,96,92,97,92,96,98,100,99,101,99,100,102,104,103,105,107,106,108,110,109,111,109,110,112,109,111,113,115,114,116,114,115,117,116,115,118,120,119,121,119,120,122,124,123,125,127,126,128,130,129,131,133,132,134,136,135,137,139,138,140,142,141,143,145,144,146,148,147,149,151,150,152,154,153,155,153,154,156,153,155,157,153,156,158,157,156,159,158,156,160,158,159,161,160,159,162,158,160 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *85 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_largeB, Model::RootNode + C: "OO",5460416542089624717,0 + + ;Geometry::, Model::Mesh rock_largeB + C: "OO",5043978267741008981,5460416542089624717 + + ;Material::dirt, Model::Mesh rock_largeB + C: "OO",3020,5460416542089624717 + + ;Material::_defaultMat, Model::Mesh rock_largeB + C: "OO",3004,5460416542089624717 + + ;Material::grass, Model::Mesh rock_largeB + C: "OO",3024,5460416542089624717 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeB.fbx.import new file mode 100644 index 0000000..a14f32f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://qg6hrt3d0asc" +path="res://.godot/imported/rock_largeB.fbx-d2037983bbf678552983182071fa9279.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_largeB.fbx" +dest_files=["res://.godot/imported/rock_largeB.fbx-d2037983bbf678552983182071fa9279.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeC.fbx new file mode 100644 index 0000000..a7fd2c5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeC.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 122 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_largeC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_largeC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5313133473894150142, "Model::rock_largeC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5174105840615089294, "Geometry::", "Mesh" { + Vertices: *396 { + a: 1.61732,0,4.062647,-2.860111,2.48157E-15,2.930947,2.02165,1.04632,5.07831,-3.575139,1.04632,3.663686,3.432401,1.04632,3.484186,2.74592,-2.707168E-15,2.787349,2.02165,1.04632,5.07831,1.61732,0,4.062647,-2.860111,2.48157E-15,2.930947,-4.257638,-2.707168E-15,0.5048717,-3.575139,1.04632,3.663686,-5.322049,1.04632,0.6310897,-4.508265,1.04632,-3.400723,-5.322049,1.04632,0.6310897,-3.606611,0,-2.720578,-4.257638,-2.707168E-15,0.5048717,1.968991,0,0.6742597,2.74592,-2.707168E-15,2.787349,2.461239,1.04632,0.8428248,3.432401,1.04632,3.484186,5.322049,1.04632,-2.879802,2.461239,1.04632,-5.07831,4.257638,0,-2.303842,1.968991,0,-4.062647,5.322049,1.73184,-2.879802,5.322049,1.04632,-2.879802,2.461239,1.73184,0.8428248,2.461239,1.04632,0.8428248,3.432401,1.73184,3.484186,2.02165,1.73184,5.07831,2.162413,3.21112,2.195037,1.27364,3.21112,3.199335,2.02165,1.04632,5.07831,-3.575139,1.04632,3.663686,2.02165,1.73184,5.07831,-3.575139,1.73184,3.663686,2.461239,1.73184,0.8428248,2.461239,1.04632,0.8428248,3.432401,1.73184,3.484186,3.432401,1.04632,3.484186,1.55058,3.21112,0.5309796,2.461239,1.73184,0.8428248,2.162413,3.21112,2.195037,3.432401,1.73184,3.484186,-5.322049,1.04632,0.6310897,-5.322049,1.73184,0.6310897,-3.575139,1.04632,3.663686,-3.575139,1.73184,3.663686,3.432401,1.73184,3.484186,3.432401,1.04632,3.484186,2.02165,1.73184,5.07831,2.02165,1.04632,5.07831,-4.508265,1.04632,-3.400723,0.03444964,1.04632,-5.055493,-4.508265,1.73184,-3.400723,0.03444964,1.73184,-5.055493,5.322049,1.04632,-2.879802,4.257638,0,-2.303842,2.461239,1.04632,0.8428248,1.968991,0,0.6742597,2.461239,1.04632,-5.07831,5.322049,1.04632,-2.879802,2.461239,1.73184,-5.07831,5.322049,1.73184,-2.879802,2.74592,-2.707168E-15,2.787349,1.968991,0,0.6742597,1.61732,0,4.062647,1.968991,0,-4.062647,0.02755972,0,-4.044395,-2.860111,2.48157E-15,2.930947,-3.606611,0,-2.720578,-4.257638,-2.707168E-15,0.5048717,4.257638,0,-2.303842,5.322049,1.73184,-2.879802,4.337469,2.47148,-2.347039,2.461239,1.73184,-5.07831,2.451735,3.21112,-2.506805,1.55058,3.21112,-3.199335,-4.508265,1.04632,-3.400723,-4.508265,1.73184,-3.400723,-5.322049,1.04632,0.6310897,-5.322049,1.73184,0.6310897,-3.606611,0,-2.720578,0.02755972,0,-4.044395,-4.508265,1.04632,-3.400723,0.03444964,1.04632,-5.055493,2.461239,1.73184,-5.07831,1.55058,3.21112,-3.199335,0.03444964,1.73184,-5.055493,0.02170328,3.21112,-3.18496,-2.840206,3.21112,-2.142455,-3.35289,3.21112,0.3975865,-4.508265,1.73184,-3.400723,-5.322049,1.73184,0.6310897,2.02165,1.73184,5.07831,-3.575139,1.73184,3.663686,1.27364,3.21112,3.199335,-2.252337,3.21112,2.308121,0.02755972,0,-4.044395,1.968991,0,-4.062647,0.03444964,1.04632,-5.055493,2.461239,1.04632,-5.07831,5.322049,1.73184,-2.879802,2.461239,1.73184,0.8428248,4.337469,2.47148,-2.347039,2.451735,3.21112,-0.6416478,1.55058,3.21112,0.5309796,0.03444964,1.73184,-5.055493,0.02170328,3.21112,-3.18496,-4.508265,1.73184,-3.400723,-2.840206,3.21112,-2.142455,2.451735,3.21112,-2.506805,4.337469,2.47148,-2.347039,2.451735,3.21112,-0.6416478,-2.252337,3.21112,2.308121,-3.575139,1.73184,3.663686,-3.35289,3.21112,0.3975865,-5.322049,1.73184,0.6310897,0.03444964,1.04632,-5.055493,2.461239,1.04632,-5.07831,0.03444964,1.73184,-5.055493,2.461239,1.73184,-5.07831,2.451735,3.21112,-2.506805,2.451735,3.21112,-0.6416478,1.55058,3.21112,-3.199335,1.55058,3.21112,0.5309796,0.02170328,3.21112,-3.18496,1.27364,3.21112,3.199335,-2.252337,3.21112,2.308121,-2.840206,3.21112,-2.142455,-3.35289,3.21112,0.3975865,2.162413,3.21112,2.195037 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,68,-67,70,68,-70,71,70,-70,65,67,-73,73,75,-75,76,74,-76,77,76,-76,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,103,-106,107,109,-109,110,108,-110,111,113,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,125,-125,127,125,-127,128,127,-127,129,128,-127,130,128,-130,125,127,-132 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: -0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,0.7488651,0,0.6627225,0.7488651,0,0.6627225,0.7488651,0,0.6627225,0.7488651,0,0.6627225,0.7488651,0,0.6627225,0.7488651,0,0.6627225,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,0.3651461,0.9309502,0,0.3651461,0.9309502,0,0.3651461,0.9309502,0,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: 10.09276,9.010328,-8.089286,9.010327,12.61595,14.40719,-10.11161,14.40719,-1.316754,16.11526,-1.053405,10.48224,-9.697542,16.11526,-7.758032,10.48224,4.378275,10.63799,-6.644592,10.63799,5.472849,16.29641,-8.305741,16.29641,-9.612338,16.93446,6.581049,16.93446,-7.689869,11.186,5.264839,11.186,-5.1666,2.289947,-14.03035,2.289947,-6.458251,6.705493,-17.53794,6.705493,-9.70514,18.63234,4.499589,18.63234,-7.76411,12.6403,3.59967,12.6403,21.75735,6.818268,21.75735,4.11937,3.273452,6.818268,3.273452,4.11937,-1.316758,-10.53812,-9.697546,-10.53812,-0.8295574,-1.348998,-6.109454,-1.348999,12.61595,4.11937,-10.11161,4.11937,12.61595,6.818268,-10.11161,6.818268,-6.458251,6.818268,-6.458251,4.11937,-17.53794,6.818268,-17.53794,4.11937,-4.068697,9.026892,-6.458251,2.502339,-11.0489,9.026892,-17.53794,2.502339,-8.305741,4.11937,-8.305741,6.818268,5.472849,4.11937,5.472849,6.818268,-1.316757,6.818268,-1.316757,4.11937,-9.697545,6.818268,-9.697545,4.11937,12.09455,4.11937,-6.939776,4.11937,12.09455,6.818268,-6.939776,6.818268,21.75735,7.863189,17.40588,3.309421,3.273451,7.863189,2.61876,3.309422,4.49959,4.11937,-9.705138,4.11937,4.49959,6.818268,-9.705138,6.818268,10.81071,10.97382,7.751933,2.654566,6.367403,15.99468,7.751933,-15.99468,0.1085028,-15.92281,-11.26028,11.53916,-14.19926,-10.71094,-16.76236,1.987684,16.76236,-9.070244,-9.705134,-13.63146,-7.909682,-8.663449,4.499594,-13.63145,-1.639745,-3.695445,2.834744,-3.695446,-9.612338,4.11937,-9.612338,6.818268,6.58105,4.11937,6.58105,6.818268,9.675642,10.01852,-5.551822,10.01852,12.09455,15.57635,-6.939777,15.57635,-9.877462,-11.37959,-6.222801,-1.991334,-0.3227504,-11.37959,-0.2033328,-1.991333,-6.055772,-2.126363,4.14606,-2.126362,-9.612338,-11.557,6.581049,-11.557,12.61595,-8.370249,-10.11161,-8.37025,7.94805,0.3202687,-6.370311,0.3202701,-0.2581971,11.06295,-7.901965,11.06295,-0.3227463,16.7911,-9.877458,16.7911,21.75735,0.7101766,3.273451,0.7101775,17.73224,4.131172,7.884701,7.552166,2.062274,7.552166,-6.939776,-9.860804,-4.372059,-0.829716,12.09455,-9.860804,7.619569,-0.8297155,9.869311,-4.369746,9.24031,-12.34455,2.526172,-4.369746,3.447893,-1.522124,5.472849,-10.76452,-5.232616,-1.522124,-8.305741,-10.76452,-0.3227499,4.11937,-9.877461,4.11937,-0.3227499,6.818268,-9.877461,6.818268,-9.652501,-9.869311,-9.652501,-2.526172,-6.104648,-12.59581,-6.104648,2.090471,-0.08544598,-12.53922,-5.01433,12.59581,8.86747,9.087091,11.18192,-8.434863,13.20036,1.565301,-8.513435,8.641879 + } + UVIndex: *216 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,68,66,70,68,69,71,70,69,65,67,72,73,75,74,76,74,75,77,76,75,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,103,105,107,109,108,110,108,109,111,113,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,125,124,127,125,126,128,127,126,129,128,126,130,128,129,125,127,131 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_largeC, Model::RootNode + C: "OO",5313133473894150142,0 + + ;Geometry::, Model::Mesh rock_largeC + C: "OO",5174105840615089294,5313133473894150142 + + ;Material::dirt, Model::Mesh rock_largeC + C: "OO",3020,5313133473894150142 + + ;Material::grass, Model::Mesh rock_largeC + C: "OO",3024,5313133473894150142 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeC.fbx.import new file mode 100644 index 0000000..e4b0fbe --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bejj7sddrw4t5" +path="res://.godot/imported/rock_largeC.fbx-f55015c4c0586fd5ebf1e9ee728dde3e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_largeC.fbx" +dest_files=["res://.godot/imported/rock_largeC.fbx-f55015c4c0586fd5ebf1e9ee728dde3e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeD.fbx new file mode 100644 index 0000000..1c235f7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeD.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 232 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_largeD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_largeD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5250551098024104444, "Model::rock_largeD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5168539885212821539, "Geometry::", "Mesh" { + Vertices: *441 { + a: -3.668365,5.6826,1.161762,-2.28595,5.6826,2.966099,-5.343884,3.121913,1.561489,-5.343884,2.35422,2.336957,-3.651891,2.35422,4.545355,-1.033542,-2.707168E-15,4.176552,-2.913545,-2.707168E-15,3.691702,-1.301889,2.35422,5.151415,-3.651891,2.35422,4.545355,-0.5985563,2.35422,-5.151415,4.441394,2.35422,-2.336435,-0.3623478,5.6826,-3.142865,2.812822,5.6826,-1.369428,-1.927297,4.01841,-3.189778,-0.9215579,5.6826,-2.772842,-1.40062,5.6826,-1.519964,3.381391,5.6826,0.760851,5.343884,2.35422,1.04496,2.906185,5.6826,1.717672,3.514322,2.35422,4.728767,2.871543,4.01841,3.905209,3.514322,2.35422,4.728767,-1.301889,2.35422,5.151415,2.871543,4.01841,3.905209,-0.8054478,5.6826,3.347917,0.7116589,5.6826,3.214784,1.545105,0,-2.93972,3.561085,3.158362E-15,-1.813728,-0.5508128,1.473907,-4.745437,4.441394,2.35422,-2.336435,-0.5985563,2.35422,-5.151415,-5.076463,0.8148628,1.49769,-4.897312,2.35422,0.9543192,-5.343884,2.35422,2.336957,2.906185,5.6826,1.717672,2.871543,4.01841,3.905209,0.7116589,5.6826,3.214784,4.441394,2.35422,-2.336435,3.561085,3.158362E-15,-1.813728,5.343884,2.35422,1.04496,4.283079,-8.572698E-15,0.8913875,-4.897312,2.35422,0.9543192,-5.343884,3.121913,1.561489,-5.343884,2.35422,2.336957,-4.668997,-2.707168E-15,1.400481,-5.076463,0.8148628,1.49769,-2.913545,-2.707168E-15,3.691702,-5.343884,2.35422,2.336957,-3.651891,2.35422,4.545355,1.180477,-2.707168E-15,3.982261,-1.033542,-2.707168E-15,4.176552,3.166874,1.17711,4.283601,-1.301889,2.35422,5.151415,3.514322,2.35422,4.728767,-1.301889,2.35422,5.151415,-3.651891,2.35422,4.545355,-0.8054478,5.6826,3.347917,-2.28595,5.6826,2.966099,-2.373826,2.35422,-3.976737,-1.927297,4.01841,-3.189778,-2.11939,2.35422,-1.174023,-1.40062,5.6826,-1.519964,-1.320474,5.6826,-0.6371082,4.441394,2.35422,-2.336435,5.343884,2.35422,1.04496,2.812822,5.6826,-1.369428,3.381391,5.6826,0.760851,-1.101026,-2.707168E-15,-3.648749,1.545105,0,-2.93972,-0.5508128,1.473907,-4.745437,4.283079,-8.572698E-15,0.8913875,3.551252,-5.86553E-15,2.364911,5.343884,2.35422,1.04496,3.514322,2.35422,4.728767,3.166874,1.17711,4.283601,-4.897312,2.35422,0.9543192,-2.11939,2.35422,-1.174023,-5.343884,3.121913,1.561489,-1.320474,5.6826,-0.6371082,-3.668365,5.6826,1.161762,-4.668997,-2.707168E-15,1.400481,-1.687544,-2.707168E-15,-0.8837991,-5.076463,0.8148628,1.49769,-2.11939,2.35422,-1.174023,-4.897312,2.35422,0.9543192,-2.373826,2.35422,-3.976737,-0.5985563,2.35422,-5.151415,-1.927297,4.01841,-3.189778,-0.3623478,5.6826,-3.142865,-0.9215579,5.6826,-2.772842,-1.891092,-8.572698E-15,-3.125971,-1.101026,-2.707168E-15,-3.648749,-2.373826,2.35422,-3.976737,-0.5508128,1.473907,-4.745437,-0.5985563,2.35422,-5.151415,3.166874,1.17711,4.283601,3.551252,-5.86553E-15,2.364911,1.180477,-2.707168E-15,3.982261,-2.373826,2.35422,-3.976737,-2.11939,2.35422,-1.174023,-1.891092,-8.572698E-15,-3.125971,-1.687544,-2.707168E-15,-0.8837991,4.283079,-8.572698E-15,0.8913875,3.561085,3.158362E-15,-1.813728,3.551252,-5.86553E-15,2.364911,1.545105,0,-2.93972,1.180477,-2.707168E-15,3.982261,-1.101026,-2.707168E-15,-3.648749,-1.033542,-2.707168E-15,4.176552,-1.687544,-2.707168E-15,-0.8837991,-2.913545,-2.707168E-15,3.691702,-4.668997,-2.707168E-15,1.400481,-1.891092,-8.572698E-15,-3.125971,-0.9215579,5.6826,-2.772842,-1.320474,5.6826,-0.6371082,-1.40062,5.6826,-1.519964,-0.8054478,5.6826,3.347917,-0.3623478,5.6826,-3.142865,0.7116589,5.6826,3.214784,2.812822,5.6826,-1.369428,2.906185,5.6826,1.717672,3.381391,5.6826,0.760851,-2.28595,5.6826,2.966099,-3.668365,5.6826,1.161762,5.343884,2.35422,1.04496,3.514322,2.35422,4.728767,4.441394,2.35422,-2.336435,-0.5985563,2.35422,-5.151415,4.441394,2.35422,-2.336435,3.514322,2.35422,4.728767,-1.301889,2.35422,5.151415,-0.5985563,2.35422,-5.151415,3.514322,2.35422,4.728767,-2.373826,2.35422,-3.976737,-0.5985563,2.35422,-5.151415,-1.301889,2.35422,5.151415,-2.11939,2.35422,-1.174023,-2.373826,2.35422,-3.976737,-1.301889,2.35422,5.151415,-3.651891,2.35422,4.545355,-2.11939,2.35422,-1.174023,-4.897312,2.35422,0.9543192,-2.11939,2.35422,-1.174023,-3.651891,2.35422,4.545355,-5.343884,2.35422,2.336957,-4.897312,2.35422,0.9543192,-3.651891,2.35422,4.545355 + } + PolygonVertexIndex: *240 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,18,-18,19,17,-19,20,19,-19,21,23,-23,24,22,-24,25,24,-24,26,28,-28,29,27,-29,30,29,-29,31,33,-33,34,36,-36,37,39,-39,40,38,-40,41,43,-43,44,46,-46,47,45,-47,48,47,-47,49,51,-51,52,50,-52,53,52,-52,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,65,-65,66,64,-66,67,69,-69,70,72,-72,73,71,-73,74,71,-74,75,77,-77,78,76,-78,79,78,-78,80,82,-82,83,81,-83,84,83,-83,85,87,-87,88,86,-88,89,88,-88,90,92,-92,93,91,-93,94,93,-93,95,97,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,105,-105,107,105,-107,108,107,-107,109,107,-109,110,109,-109,111,109,-111,109,112,-108,113,115,-115,114,116,-114,113,116,-118,116,118,-118,117,118,-120,118,120,-120,121,119,-121,122,116,-115,123,122,-115,124,126,-126,127,129,-129,130,132,-132,133,135,-135,136,135,-138,138,140,-140,141,143,-143,144,146,-146 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *720 { + a: -0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.06817156,-0.3883206,0.9189993,-0.08265221,-0.389306,0.9173927,-0.2294634,-0.3945914,0.8897438,-0.2294634,-0.3945914,0.8897438,-0.2294634,-0.3945914,0.8897438,-0.08265221,-0.389306,0.9173927,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,-0.7817273,0.5473172,-0.2989087,-0.7817273,0.5473172,-0.2989087,-0.7817273,0.5473172,-0.2989087,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,-0.9515933,0.002256602,-0.3073516,-0.9515933,0.002256602,-0.3073516,-0.9515933,0.002256602,-0.3073516,0.3840052,0.7319117,0.5628901,0.3840052,0.7319117,0.5628901,0.3840052,0.7319117,0.5628901,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,-0.908804,-0.2965041,-0.2935313,-0.908804,-0.2965041,-0.2935313,-0.908804,-0.2965041,-0.2935313,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,0.08109545,-0.3734225,0.9241099,0.08109545,-0.3734225,0.9241099,-0.06817156,-0.3883206,0.9189993,-0.08265221,-0.389306,0.9173927,-0.06817156,-0.3883206,0.9189993,0.08109545,-0.3734225,0.9241099,0.08109545,-0.3734225,0.9241099,-0.08265221,-0.389306,0.9173927,0.08109545,-0.3734225,0.9241099,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.2005947,-0.6319142,-0.7486295,0.2005947,-0.6319142,-0.7486295,0.2005947,-0.6319142,-0.7486295,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,0.3675148,-0.7581005,0.5387176,0.3675148,-0.7581005,0.5387176,0.3675148,-0.7581005,0.5387176,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *294 { + a: -5.152832,11.60543,3.796139,11.60543,-7.915486,-0.2264811,-5.491998,-3.773684,5.460998,-3.773684,0.166152,6.683706,-7.477619,6.683705,0.1016055,16.77079,-9.453099,16.77079,11.94703,1.003289,-10.78052,1.00329,7.279126,15.6087,-7.039237,15.6087,-9.019942,6.906751,-8.900898,14.73532,-3.620014,14.73532,3.238762,12.93993,5.673744,-2.117618,-0.9672577,12.93993,-10.51963,-2.117619,-8.741351,5.411154,12.15544,-1.00635,-6.87889,-1.006351,9.917951,6.398942,-4.311168,13.80423,1.684647,13.80423,0.332812,4.602106,-8.758208,4.602106,11.00353,10.80189,-10.78053,14.50481,11.94703,14.50481,11.75377,3.169285,9.501287,9.229762,15.22163,9.229762,5.640706,6.436489,0.6745189,-3.178912,-4.818177,6.436489,4.378354,15.98842,3.283783,5.940772,-9.400229,15.98841,-7.739084,5.940773,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,-6.802722,7.626191,-7.474566,11.17028,4.561058,7.62619,-5.492011,17.86542,5.460985,17.86542,3.259179,5.983892,-5.490931,5.983891,10.94599,10.97956,-6.878889,15.97523,12.15544,15.97523,0.1015981,-2.167506,-9.453107,-2.167506,0.2210093,12.86354,-5.798458,12.86354,-16.43728,7.315093,-13.19276,14.03005,-5.357597,7.315093,-6.458145,20.74501,-2.968044,20.74501,4.378357,-1.125377,-9.400226,-1.125377,2.353401,13.81499,-6.327106,13.81499,7.905021,8.059279,-2.880318,8.059279,6.930134,15.54637,4.35754,6.615863,-2.119816,6.615861,5.673744,16.71448,-10.51963,16.71448,-9.558403,11.66517,17.59007,6.628139,3.812411,6.628139,20.43951,9.761982,2.601236,20.21511,14.24609,20.21511,17.94485,1.394373,3.157724,1.394373,19.45101,4.672088,3.812414,10.86402,17.59008,10.86402,-0.8455832,-0.5372523,-9.226373,-0.5372528,-0.6019815,6.916485,-5.638277,14.37022,-2.998328,14.37022,-0.5822258,5.503491,-4.312009,5.503491,-0.845575,15.53685,-8.50112,11.78508,-9.226364,15.53685,0.7954689,18.91037,6.302602,11.80406,-4.996264,11.80406,-16.43728,10.46945,-5.357596,10.46945,-12.9297,1.065487,-4.065947,1.065487,16.86251,3.509399,14.02002,-7.140663,13.98131,9.310675,6.083089,-11.5737,4.647547,15.67819,-4.334748,-14.36515,-4.069064,16.44312,-6.643872,-3.479524,-11.47065,14.53426,-18.38188,5.513704,-7.445243,-12.30697,3.628181,-10.9167,5.198715,-2.5083,5.514254,-5.984108,3.171054,13.18078,1.426566,-12.37348,-2.801807,12.65663,-11.0741,-5.391447,-11.44167,6.762489,-13.31256,2.995476,8.999803,11.67756,14.44238,4.573867,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495 + } + UVIndex: *240 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,18,17,19,17,18,20,19,18,21,23,22,24,22,23,25,24,23,26,28,27,29,27,28,30,29,28,31,33,32,34,36,35,37,39,38,40,38,39,41,43,42,44,46,45,47,45,46,48,47,46,49,51,50,52,50,51,53,52,51,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,65,64,66,64,65,67,69,68,70,72,71,73,71,72,74,71,73,75,77,76,78,76,77,79,78,77,80,82,81,83,81,82,84,83,82,85,87,86,88,86,87,89,88,87,90,92,91,93,91,92,94,93,92,95,97,96,98,100,99,101,99,100,102,104,103,105,103,104,106,105,104,107,105,106,108,107,106,109,107,108,110,109,108,111,109,110,109,112,107,113,115,114,114,116,113,113,116,117,116,118,117,117,118,119,118,120,119,121,119,120,122,116,114,123,122,114,124,126,125,127,129,128,130,132,131,133,135,134,136,135,137,138,140,139,141,143,142,144,146,145 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *80 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_largeD, Model::RootNode + C: "OO",5250551098024104444,0 + + ;Geometry::, Model::Mesh rock_largeD + C: "OO",5168539885212821539,5250551098024104444 + + ;Material::dirt, Model::Mesh rock_largeD + C: "OO",3020,5250551098024104444 + + ;Material::grass, Model::Mesh rock_largeD + C: "OO",3024,5250551098024104444 + + ;Material::_defaultMat, Model::Mesh rock_largeD + C: "OO",3004,5250551098024104444 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeD.fbx.import new file mode 100644 index 0000000..1e69878 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://crnh6mmk55qmh" +path="res://.godot/imported/rock_largeD.fbx-1ddfa2f24dc3b099b633d058346e02a9.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_largeD.fbx" +dest_files=["res://.godot/imported/rock_largeD.fbx-1ddfa2f24dc3b099b633d058346e02a9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeE.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeE.fbx new file mode 100644 index 0000000..1ffaa14 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeE.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 324 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_largeE.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_largeE.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4843316483106572570, "Model::rock_largeE", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4757869677358589525, "Geometry::", "Mesh" { + Vertices: *354 { + a: 5.477294,1.73184,-2.099113,4.27229,2.92248,-1.637308,3.239491,1.73184,-4.599356,2.526803,2.92248,-3.587498,-4.269393,1.73184,-2.993327,0.6469035,1.73184,-3.781267,-3.330127,2.92248,-2.334795,0.504585,2.92248,-2.94939,5.477294,1.73184,-2.099113,3.791972,1.73184,0.5490492,4.27229,2.92248,-1.637308,2.957739,2.92248,0.4282584,-1.050197,0.93808,4.599356,-5.477294,0.93808,0.6734018,-1.050197,1.73184,4.599356,-5.477294,1.73184,0.6734018,-0.8401575,2.255973E-15,3.679485,-4.381837,0,0.5387213,-1.050197,0.93808,4.599356,-5.477294,0.93808,0.6734018,-3.801208,2.92248,-0.9047709,-3.145809,2.92248,1.524217,-4.87479,2.32716,0.5993277,5.477294,0.93808,-2.099113,4.381837,0,-1.67929,3.791972,0.93808,0.5490492,3.033578,0,0.4392394,3.033578,0,0.4392394,2.217587,-2.707168E-15,2.630204,3.791972,0.93808,0.5490492,2.771983,0.93808,3.287755,0.6469035,0.93808,-3.781267,3.239491,0.93808,-4.599356,0.6469035,1.73184,-3.781267,3.239491,1.73184,-4.599356,2.217587,-2.707168E-15,2.630204,-0.8401575,2.255973E-15,3.679485,2.771983,0.93808,3.287755,-1.050197,0.93808,4.599356,3.791972,1.73184,0.5490492,3.791972,0.93808,0.5490492,2.771983,1.73184,3.287755,2.771983,0.93808,3.287755,-4.269393,1.73184,-2.993327,-3.330127,2.92248,-2.334795,-5.477294,1.73184,0.6734018,-3.801208,2.92248,-0.9047709,-4.87479,2.32716,0.5993277,2.771983,1.73184,3.287755,-1.050197,1.73184,4.599356,2.162147,2.92248,2.564449,-0.8191534,2.92248,3.587498,-4.269393,0.93808,-2.993327,-4.269393,1.73184,-2.993327,-5.477294,0.93808,0.6734018,-5.477294,1.73184,0.6734018,2.957739,2.92248,0.4282584,3.791972,1.73184,0.5490492,2.162147,2.92248,2.564449,2.771983,1.73184,3.287755,3.239491,1.73184,-4.599356,3.239491,0.93808,-4.599356,5.477294,1.73184,-2.099113,5.477294,0.93808,-2.099113,4.381837,0,-1.67929,2.591593,0,-3.679485,3.033578,0,0.4392394,2.217587,-2.707168E-15,2.630204,0.5175228,0,-3.025015,-0.8401575,2.255973E-15,3.679485,-3.415515,0,-2.394662,-4.381837,0,0.5387213,-3.415515,0,-2.394662,0.5175228,0,-3.025015,-4.269393,0.93808,-2.993327,0.6469035,0.93808,-3.781267,-4.269393,0.93808,-2.993327,0.6469035,0.93808,-3.781267,-4.269393,1.73184,-2.993327,0.6469035,1.73184,-3.781267,5.477294,1.73184,-2.099113,5.477294,0.93808,-2.099113,3.791972,1.73184,0.5490492,3.791972,0.93808,0.5490492,0.5175228,0,-3.025015,2.591593,0,-3.679485,0.6469035,0.93808,-3.781267,3.239491,0.93808,-4.599356,2.771983,0.93808,3.287755,-1.050197,0.93808,4.599356,2.771983,1.73184,3.287755,-1.050197,1.73184,4.599356,5.477294,0.93808,-2.099113,3.239491,0.93808,-4.599356,4.381837,0,-1.67929,2.591593,0,-3.679485,-3.415515,0,-2.394662,-4.269393,0.93808,-2.993327,-4.381837,0,0.5387213,-5.477294,0.93808,0.6734018,-0.8191534,2.92248,3.587498,-1.050197,1.73184,4.599356,-3.145809,2.92248,1.524217,-5.477294,1.73184,0.6734018,-4.87479,2.32716,0.5993277,0.6469035,1.73184,-3.781267,3.239491,1.73184,-4.599356,0.504585,2.92248,-2.94939,2.526803,2.92248,-3.587498,4.27229,2.92248,-1.637308,2.957739,2.92248,0.4282584,2.526803,2.92248,-3.587498,2.162147,2.92248,2.564449,0.504585,2.92248,-2.94939,-0.8191534,2.92248,3.587498,-3.330127,2.92248,-2.334795,-3.145809,2.92248,1.524217,-3.801208,2.92248,-0.9047709 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,46,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,65,-68,69,68,-68,70,68,-70,71,70,-70,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,103,-103,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,112,-112,114,112,-114,115,114,-114,116,114,-116,117,116,-116 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: 0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.3714295,0.9230363,0.1002206,-0.3714295,0.9230363,0.1002206,-0.3714295,0.9230363,0.1002206,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0.9371173,0,0.3490148,0.9371173,0,0.3490148,0.9371173,0,0.3490148,0.9371173,0,0.3490148,0.9371173,0,0.3490148,0.9371173,0,0.3490148,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,0.843643,0,0.5369045,0.843643,0,0.5369045,0.843643,0,0.5369045,0.843643,0,0.5369045,0.843643,0,0.5369045,0.843643,0,0.5369045,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *236 { + a: -8.223588,-10.56531,-6.414402,-3.893564,4.986804,-10.56531,3.889708,-3.893564,14.73187,-2.303499,-4.870642,-2.303497,11.49086,3.341439,-3.799102,3.341437,18.54995,-1.732234,6.191833,-1.732234,14.46896,3.847275,4.829631,3.847275,8.920822,3.693228,-14.37492,3.693228,8.920822,6.818268,-14.37492,6.818268,7.136659,8.622148,-11.49994,8.622149,8.920821,13.54719,-14.37492,13.54719,-7.337693,-8.053663,2.567252,-8.053663,-2.721595,-14.14594,18.54995,11.17894,14.83996,6.573696,6.191833,11.17894,4.953468,6.573695,2.547816,7.360144,-6.656846,7.360143,3.184769,12.08626,-8.321055,12.08626,-6.908616,3.693228,-17.61176,3.693228,-6.908616,6.818268,-17.61176,6.818268,4.896941,8.205536,-7.830494,8.205537,6.121175,13.06424,-9.788116,13.06424,3.184767,6.818268,3.184767,3.693228,-8.321057,6.818268,-8.321057,3.693228,-5.933945,-8.311638,-4.628476,-1.934711,9.265112,-8.311641,1.299155,-1.93471,8.245949,-5.123172,6.121175,-3.918165,-9.788116,-3.918165,4.774517,1.915645,-7.634731,1.915645,-5.93394,3.693228,-5.93394,6.818268,9.265117,3.693228,9.265117,6.818268,2.48412,2.916843,3.184769,-2.783649,-6.490425,2.916844,-8.321055,-2.78365,4.986804,6.818268,4.986804,3.693228,-8.223588,6.818268,-8.223588,3.693228,17.25133,-6.611379,10.20312,-14.48616,11.94322,1.729289,8.730657,10.35513,2.037492,-11.90951,-3.307707,14.48616,-13.44691,-9.427802,-17.25133,2.12095,11.7855,7.00138,-3.896514,7.001382,14.73187,11.67206,-4.870642,11.67206,14.73187,3.693228,-4.87064,3.693228,14.73187,6.818268,-4.87064,6.818268,18.54994,6.818268,18.54994,3.693228,6.191832,6.818268,6.191832,3.693228,-5.526893,6.319681,-14.08941,6.31968,-6.908614,10.88641,-17.61176,10.88641,6.121176,3.693228,-9.788116,3.693228,6.121176,6.818268,-9.788116,6.818268,-8.223588,18.79726,4.986803,18.79726,-6.578875,13.11683,3.989444,13.11683,-4.747149,11.4571,-5.933939,16.85042,7.412096,11.4571,9.265119,16.85042,6.958244,1.422041,8.920823,-4.478695,-5.284808,1.422042,-14.37492,-4.478696,-12.79368,-1.528326,-6.908614,-1.39356,-17.61176,-1.393561,-5.388721,4.147505,-13.73717,4.147506,-16.82004,-6.446094,-11.64464,1.686057,-9.948045,-14.12401,-8.51239,10.09626,-1.986555,-11.61177,3.225013,14.12401,13.11074,-9.192107,12.38507,6.000855,14.96539,-3.56209 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,46,45,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,65,67,69,68,67,70,68,69,71,70,69,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,103,102,105,107,106,108,106,107,109,111,110,112,110,111,113,112,111,114,112,113,115,114,113,116,114,115,117,116,115 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_largeE, Model::RootNode + C: "OO",4843316483106572570,0 + + ;Geometry::, Model::Mesh rock_largeE + C: "OO",4757869677358589525,4843316483106572570 + + ;Material::dirt, Model::Mesh rock_largeE + C: "OO",3020,4843316483106572570 + + ;Material::grass, Model::Mesh rock_largeE + C: "OO",3024,4843316483106572570 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeE.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeE.fbx.import new file mode 100644 index 0000000..7f2f058 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeE.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ce1u8gv7p8po2" +path="res://.godot/imported/rock_largeE.fbx-c98af04a5f9503467aa925feac41a808.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_largeE.fbx" +dest_files=["res://.godot/imported/rock_largeE.fbx-c98af04a5f9503467aa925feac41a808.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeF.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeF.fbx new file mode 100644 index 0000000..1a92efe --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeF.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 420 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_largeF.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_largeF.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4750534275238348900, "Model::rock_largeF", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5581525734238551291, "Geometry::", "Mesh" { + Vertices: *405 { + a: -4.381837,0,0.4342762,-5.477294,2.11068,0.5689567,-0.8401575,5.414336E-15,3.57504,-1.050197,2.11068,4.494912,3.017828,1.388561,-4.389089,2.591593,0,-3.78393,4.050211,2.11068,-3.798001,5.477294,2.11068,-2.203558,3.707707,0,-2.536923,4.929564,1.05534,-1.993647,5.477294,2.11068,-2.203558,4.929564,1.05534,-1.993647,3.791972,2.11068,0.4446041,3.707707,0,-0.7244709,3.033578,0,0.3347941,-1.448996,0,-2.814284,0.5175228,0,-3.12946,-3.842455,1.05534,-2.798439,0.6469035,2.11068,-3.885715,-4.269393,2.11068,-3.097772,0.6469035,2.11068,-3.885715,2.5775,2.11068,-4.494912,0.3986219,4.78962,-2.434463,3.017828,2.588291,-4.389089,1.996174,4.78962,-2.938568,-1.448996,0,-2.814284,-3.842455,1.05534,-2.798439,-3.898675,0,-1.032416,-4.269393,2.11068,-3.097772,-3.450098,3.45015,-2.523353,-5.477294,2.11068,0.5689567,-3.002955,4.78962,-0.819214,-3.375108,4.78962,0.310505,-1.116089,4.78962,-2.191698,-3.002955,4.78962,-0.819214,-3.450098,3.45015,-2.523353,0.5175228,0,-3.12946,2.591593,0,-3.78393,0.6469035,2.11068,-3.885715,3.017828,1.388561,-4.389089,2.5775,2.11068,-4.494912,4.426201,3.45015,-1.800738,2.855861,4.78962,-0.5820198,2.730123,4.78962,-2.118545,3.033578,0,0.3347941,2.217587,-5.86553E-15,2.525759,3.791972,2.11068,0.4446041,2.771983,2.11068,3.18331,2.336614,4.78962,0.2338789,3.791972,2.11068,0.4446041,1.708096,4.78962,1.921469,2.771983,2.11068,3.18331,-1.050197,2.11068,4.494912,-5.477294,2.11068,0.5689567,-0.6471312,4.78962,2.729678,-3.375108,4.78962,0.310505,2.771983,2.11068,3.18331,-1.050197,2.11068,4.494912,1.708096,4.78962,1.921469,-0.6471312,4.78962,2.729678,2.5775,2.11068,-4.494912,4.050211,2.11068,-3.798001,3.017828,2.588291,-4.389089,5.477294,2.11068,-2.203558,4.426201,3.45015,-1.800738,4.050211,2.11068,-3.798001,2.730123,4.78962,-2.118545,3.017828,2.588291,-4.389089,1.996174,4.78962,-2.938568,-4.269393,2.11068,-3.097772,0.6469035,2.11068,-3.885715,-3.450098,3.45015,-2.523353,0.3986219,4.78962,-2.434463,-1.116089,4.78962,-2.191698,2.5775,2.11068,-4.494912,3.017828,1.388561,-4.389089,4.050211,2.11068,-3.798001,3.707707,0,-0.7244709,4.929564,1.05534,-1.993647,3.707707,0,-2.536923,-4.269393,2.11068,-3.097772,-5.477294,2.11068,0.5689567,-3.842455,1.05534,-2.798439,-3.898675,0,-1.032416,-4.381837,0,0.4342762,5.477294,2.11068,-2.203558,3.791972,2.11068,0.4446041,4.426201,3.45015,-1.800738,2.855861,4.78962,-0.5820198,2.336614,4.78962,0.2338789,2.217587,-5.86553E-15,2.525759,-0.8401575,5.414336E-15,3.57504,2.771983,2.11068,3.18331,-1.050197,2.11068,4.494912,3.707707,0,-0.7244709,3.707707,0,-2.536923,3.033578,0,0.3347941,2.591593,0,-3.78393,2.217587,-5.86553E-15,2.525759,0.5175228,0,-3.12946,-0.8401575,5.414336E-15,3.57504,-1.448996,0,-2.814284,-4.381837,0,0.4342762,-3.898675,0,-1.032416,2.855861,4.78962,-0.5820198,2.336614,4.78962,0.2338789,2.730123,4.78962,-2.118545,1.996174,4.78962,-2.938568,1.708096,4.78962,1.921469,0.3986219,4.78962,-2.434463,-0.6471312,4.78962,2.729678,-1.116089,4.78962,-2.191698,-3.375108,4.78962,0.310505,-3.002955,4.78962,-0.819214,5.477294,2.11068,-2.203558,3.791972,2.11068,0.4446041,4.050211,2.11068,-3.798001,2.5775,2.11068,-4.494912,4.050211,2.11068,-3.798001,3.791972,2.11068,0.4446041,2.771983,2.11068,3.18331,2.5775,2.11068,-4.494912,3.791972,2.11068,0.4446041,-1.050197,2.11068,4.494912,2.5775,2.11068,-4.494912,2.771983,2.11068,3.18331,0.6469035,2.11068,-3.885715,2.5775,2.11068,-4.494912,-1.050197,2.11068,4.494912,-4.269393,2.11068,-3.097772,0.6469035,2.11068,-3.885715,-1.050197,2.11068,4.494912,-5.477294,2.11068,0.5689567,-4.269393,2.11068,-3.097772,-1.050197,2.11068,4.494912 + } + PolygonVertexIndex: *219 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,8,-8,10,12,-12,13,11,-13,14,13,-13,15,17,-17,18,16,-18,19,18,-18,20,22,-22,23,21,-23,24,23,-23,25,27,-27,28,30,-30,31,29,-31,32,31,-31,33,35,-35,36,38,-38,39,37,-39,40,39,-39,41,43,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,65,-65,66,64,-66,67,66,-66,68,66,-68,69,71,-71,72,70,-72,73,72,-72,74,76,-76,77,79,-79,80,82,-82,83,81,-83,84,81,-84,85,87,-87,88,86,-88,89,86,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,97,-97,99,97,-99,100,99,-99,101,99,-101,102,101,-101,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,108,-108,110,108,-110,111,110,-110,112,110,-112,113,112,-112,114,116,-116,117,119,-119,120,122,-122,123,125,-125,126,128,-128,129,131,-131,132,134,-134 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *657 { + a: -0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.3548771,-0.7975191,-0.4878784,-0.3548771,-0.7975191,-0.4878784,-0.3548771,-0.7975191,-0.4878784,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.3719444,0.7747171,-0.511342,-0.3719444,0.7747171,-0.511342,-0.3719444,0.7747171,-0.511342,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,0.6248483,0.77907,-0.05113303,0.6248483,0.77907,-0.05113303,0.6248483,0.77907,-0.05113303,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.4199057,-0.190521,-0.8873449,0.4199057,-0.190521,-0.8873449,0.4199057,-0.190521,-0.8873449,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,0.4242597,0.1273177,-0.8965456,0.4242597,0.1273177,-0.8965456,0.4242597,0.1273177,-0.8965456,0.6536554,-0.7567924,0,0.6536554,-0.7567924,0,0.6536554,-0.7567924,0,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *270 { + a: -11.77277,4.645239,-14.64775,13.57095,6.86383,4.645238,8.647997,13.57095,4.951978,14.24376,4.29584,8.083609,0.5072829,17.44734,-7.917191,17.44734,-2.292899,8.083609,-7.094828,12.76547,18.89685,12.14245,17.04185,7.76579,6.538735,12.14245,10.24362,3.389133,5.300372,3.389133,3.879416,3.853265,-3.961592,3.853265,13.19361,8.247224,-4.935722,12.64118,14.66679,12.64118,-7.032348,1.396434,-15.00255,1.396433,-4.380824,13.13566,-16.5304,3.489347,-10.9761,13.13566,-1.904186,9.822154,5.752861,16.70915,10.02175,9.822154,-6.3245,-4.746916,-5.185774,1.73628,8.874557,-4.746918,0.6357786,8.219478,5.318606,8.219479,-1.522272,4.514892,7.663683,4.514892,5.14073,-3.825195,-5.650626,3.425318,-14.21314,3.425318,-7.032349,12.15843,-16.5304,9.170604,-15.00255,12.15843,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,2.933161,3.896982,-6.271502,3.896982,3.570112,12.71449,-7.935712,12.71449,2.3478,12.38828,3.570112,0.4189933,-4.74209,12.38828,-7.935712,0.4189928,8.647998,-1.002759,-14.64775,-1.002759,5.224185,11.25831,-9.130655,11.25831,6.254639,-0.4632477,-9.654654,-0.4632477,3.905333,11.69996,-5.897973,11.69996,-1.602952,12.03207,-8.017451,12.03207,-3.348141,13.94752,-7.917189,-6.961609,-6.33908,-0.2564687,0.507285,-6.961606,-0.9534419,6.448668,4.95198,-4.570774,3.379269,6.448668,14.66679,0.5865347,-4.935722,0.5865344,11.83975,6.530974,-3.066367,12.47541,2.973169,12.47541,-1.602952,5.652949,-3.348141,2.786634,-8.017451,5.652949,2.852247,11.0471,7.849005,17.40348,9.987887,11.0471,-6.324497,15.96946,8.87456,15.96946,-5.7311,11.37327,0.9419138,6.777066,7.021539,6.777069,18.89685,1.372678,6.538737,1.372679,15.33711,7.269933,7.969848,13.16718,4.162314,13.16718,5.030406,4.346854,-7.697028,4.346853,6.25464,13.23613,-9.654653,13.23613,14.59727,-2.852247,14.59727,-9.987887,11.94322,1.318087,10.20312,-14.89736,8.730657,9.943933,2.037492,-12.32071,-3.307707,14.07496,-5.70471,-11.07986,-17.25133,1.709749,-15.34911,-4.064628,-11.24355,-2.291417,-9.199266,0.9207829,-10.74852,-8.340729,-7.858954,-11.56917,-6.724788,7.56484,-1.569378,-9.584501,2.547761,10.74677,4.394053,-8.628734,13.28783,1.222461,11.82266,-3.225252,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081 + } + UVIndex: *219 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,8,7,10,12,11,13,11,12,14,13,12,15,17,16,18,16,17,19,18,17,20,22,21,23,21,22,24,23,22,25,27,26,28,30,29,31,29,30,32,31,30,33,35,34,36,38,37,39,37,38,40,39,38,41,43,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,65,64,66,64,65,67,66,65,68,66,67,69,71,70,72,70,71,73,72,71,74,76,75,77,79,78,80,82,81,83,81,82,84,81,83,85,87,86,88,86,87,89,86,88,90,92,91,93,91,92,94,96,95,97,95,96,98,97,96,99,97,98,100,99,98,101,99,100,102,101,100,103,101,102,104,106,105,107,105,106,108,105,107,109,108,107,110,108,109,111,110,109,112,110,111,113,112,111,114,116,115,117,119,118,120,122,121,123,125,124,126,128,127,129,131,130,132,134,133 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *73 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_largeF, Model::RootNode + C: "OO",4750534275238348900,0 + + ;Geometry::, Model::Mesh rock_largeF + C: "OO",5581525734238551291,4750534275238348900 + + ;Material::dirt, Model::Mesh rock_largeF + C: "OO",3020,4750534275238348900 + + ;Material::grass, Model::Mesh rock_largeF + C: "OO",3024,4750534275238348900 + + ;Material::_defaultMat, Model::Mesh rock_largeF + C: "OO",3004,4750534275238348900 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_largeF.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeF.fbx.import new file mode 100644 index 0000000..05e6c5b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_largeF.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ckrps6nr4okg" +path="res://.godot/imported/rock_largeF.fbx-b9c3e675920d5752fb0bc4902c11955f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_largeF.fbx" +dest_files=["res://.godot/imported/rock_largeF.fbx-b9c3e675920d5752fb0bc4902c11955f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallA.fbx new file mode 100644 index 0000000..7453d8c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 502 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5403706395510076991, "Model::rock_smallA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4865016720018776451, "Geometry::", "Mesh" { + Vertices: *90 { + a: 0.6475415,1.91224,-0.106847,0.3877723,1.91224,0.8026118,0.1069347,1.91224,-0.4947582,-0.5248802,1.91224,0.8026118,-0.6758696,1.91224,0.2880464,0,2.255973E-16,-1.804,0.1069347,1.91224,-0.4947582,-1.804,2.255973E-16,1.443823E-14,-0.6758696,1.91224,0.2880464,1.143181,2.255973E-16,1.804,-1.274651,2.255973E-16,1.804,0.3877723,1.91224,0.8026118,-0.5248802,1.91224,0.8026118,1.804,2.255973E-16,-0.5095435,1.143181,2.255973E-16,1.804,0.6475415,1.91224,-0.106847,0.3877723,1.91224,0.8026118,0,2.255973E-16,-1.804,1.804,2.255973E-16,-0.5095435,0.1069347,1.91224,-0.4947582,0.6475415,1.91224,-0.106847,1.804,2.255973E-16,-0.5095435,0,2.255973E-16,-1.804,1.143181,2.255973E-16,1.804,-1.274651,2.255973E-16,1.804,-1.804,2.255973E-16,1.443823E-14,-1.804,2.255973E-16,1.443823E-14,-0.6758696,1.91224,0.2880464,-1.274651,2.255973E-16,1.804,-0.5248802,1.91224,0.8026118 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,22,-25,26,28,-28,29,27,-29 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,0,0.463912,0.8858814,0,0.463912,0.8858814,0,0.463912,0.8858814,0,0.463912,0.8858814,0,0.463912,0.8858814,0,0.463912,0.8858814,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *60 { + a: -2.549376,-0.4206576,-1.526663,3.159889,-0.4210029,-1.947867,2.066458,3.159889,2.660904,1.134041,-5.022129,-2.329825,-1.675044,6.168496,5.022129,-2.329825,2.683431,6.168496,4.500714,-3.294871,-5.018311,-3.294871,1.526663,5.203451,-2.066458,5.203451,3.879573,-2.912569,-5.593136,-2.912569,1.104659,5.585752,-2.619084,5.585752,4.14062,-2.67701,-4.600986,-2.677009,0.7935351,5.821312,-1.826072,5.821311,7.102362,-2.006077,0,-7.102362,4.500714,7.102362,-5.018311,7.102362,-7.102362,5.684342E-14,-1.999739,-3.161572,0.3389584,5.336749,5.402073,-3.161572,2.450221,5.336749 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,22,24,26,28,27,29,27,28 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallA, Model::RootNode + C: "OO",5403706395510076991,0 + + ;Geometry::, Model::Mesh rock_smallA + C: "OO",4865016720018776451,5403706395510076991 + + ;Material::grass, Model::Mesh rock_smallA + C: "OO",3024,5403706395510076991 + + ;Material::dirt, Model::Mesh rock_smallA + C: "OO",3020,5403706395510076991 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallA.fbx.import new file mode 100644 index 0000000..4cfeaea --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://do0qyxtx8vefu" +path="res://.godot/imported/rock_smallA.fbx-58c421955e4f0dd16c98634e1ae821b1.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallA.fbx" +dest_files=["res://.godot/imported/rock_smallA.fbx-58c421955e4f0dd16c98634e1ae821b1.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallB.fbx new file mode 100644 index 0000000..a581a36 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 588 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5657603796400045417, "Model::rock_smallB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4880736315942483830, "Geometry::", "Mesh" { + Vertices: *126 { + a: 0.848892,1.76792,0.3204944,0.848892,1.76792,0.848892,-0.0354827,1.76792,-0.848892,0.5748807,1.76792,0.848892,-0.848892,1.76792,0.4375778,-0.3276645,1.76792,-0.848892,-0.848892,1.76792,0.2203913,1.804,1.127987E-16,0,1.804,1.127987E-16,1.804,0.848892,1.76792,0.3204944,0.848892,1.76792,0.848892,0.4396845,1.127987E-16,-1.804,1.804,1.127987E-16,0,-0.0354827,1.76792,-0.848892,0.848892,1.76792,0.3204944,1.804,1.127987E-16,1.804,0.4396845,1.127987E-16,1.804,0.848892,1.76792,0.848892,0.5748807,1.76792,0.848892,-0.9246308,1.127987E-16,-1.804,0.4396845,1.127987E-16,-1.804,-0.3276645,1.76792,-0.848892,-0.0354827,1.76792,-0.848892,1.804,1.127987E-16,1.804,1.804,1.127987E-16,0,0.4396845,1.127987E-16,1.804,0.4396845,1.127987E-16,-1.804,-1.804,1.127987E-16,1.155822,-0.9246308,1.127987E-16,-1.804,-1.804,1.127987E-16,0,-0.9246308,1.127987E-16,-1.804,-0.3276645,1.76792,-0.848892,-1.804,1.127987E-16,0,-0.848892,1.76792,0.2203913,-1.804,1.127987E-16,0,-0.848892,1.76792,0.2203913,-1.804,1.127987E-16,1.155822,-0.848892,1.76792,0.4375778,0.4396845,1.127987E-16,1.804,-1.804,1.127987E-16,1.155822,0.5748807,1.76792,0.848892,-0.848892,1.76792,0.4375778 + } + PolygonVertexIndex: *72 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,4,-6,7,9,-9,10,8,-10,11,13,-13,14,12,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,26,-26,28,26,-28,29,28,-28,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *216 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *84 { + a: -3.342094,1.261789,-3.342094,3.342094,0.1396957,-3.342094,-2.26331,3.342094,3.342094,1.722747,1.290018,-3.342094,3.342094,0.8676823,2.703577E-16,-3.375859,-7.102362,-3.375859,-1.261789,4.535246,-3.342094,4.535246,4.62063,-2.692559,-4.284123,-2.692559,2.749893,5.218547,-3.022335,5.218547,7.102362,-3.375859,1.731042,-3.375859,3.342094,4.535246,2.26331,4.535246,3.640279,-3.375859,-1.731042,-3.375859,1.290018,4.535246,0.1396957,4.535246,7.102362,7.102362,7.102362,0,1.731042,7.102362,1.731042,-7.102362,-7.102362,4.550479,-3.640279,-7.102362,-7.102362,0,-4.789199,-3.034534,-2.438936,4.876572,3.11204,-3.034534,2.244357,4.876572,3.45364E-16,-3.375859,0.8676823,4.535246,4.550479,-3.375859,1.722747,4.535246,3.634231,-3.014877,-5.560394,-3.014878,3.101961,4.896228,-2.732664,4.896229 + } + UVIndex: *72 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,4,5,7,9,8,10,8,9,11,13,12,14,12,13,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,26,25,28,26,27,29,28,27,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *24 { + a: 0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallB, Model::RootNode + C: "OO",5657603796400045417,0 + + ;Geometry::, Model::Mesh rock_smallB + C: "OO",4880736315942483830,5657603796400045417 + + ;Material::grass, Model::Mesh rock_smallB + C: "OO",3024,5657603796400045417 + + ;Material::dirt, Model::Mesh rock_smallB + C: "OO",3020,5657603796400045417 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallB.fbx.import new file mode 100644 index 0000000..3ba7074 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c53rjloq1pilb" +path="res://.godot/imported/rock_smallB.fbx-b5cca32602e3fc32585fc9869c6dda7f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallB.fbx" +dest_files=["res://.godot/imported/rock_smallB.fbx-b5cca32602e3fc32585fc9869c6dda7f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallC.fbx new file mode 100644 index 0000000..e3eb142 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallC.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 687 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5158326387373032127, "Model::rock_smallC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5158735687442291120, "Geometry::", "Mesh" { + Vertices: *90 { + a: -0.7715433,2.255973E-16,-1.804,-0.4390514,1.22672,-0.7412005,-1.804,2.255973E-16,-0.3654009,-0.6800271,1.22672,-0.4054309,-0.7715433,2.255973E-16,-1.804,1.199971,2.255973E-16,-1.10238,-0.4390514,1.22672,-0.7412005,0.5824369,1.22672,-0.3776743,-0.6800271,1.22672,-0.4054309,0.06051608,1.22672,0.4851093,-1.804,2.255973E-16,-0.3654009,0,2.255973E-16,1.804,1.804,2.255973E-16,1.443823E-14,0,2.255973E-16,1.804,0.7030945,1.22672,-0.1574689,0.06051608,1.22672,0.4851093,1.804,2.255973E-16,1.443823E-14,1.199971,2.255973E-16,-1.10238,0,2.255973E-16,1.804,-0.7715433,2.255973E-16,-1.804,-1.804,2.255973E-16,-0.3654009,1.199971,2.255973E-16,-1.10238,1.804,2.255973E-16,1.443823E-14,0.5824369,1.22672,-0.3776743,0.7030945,1.22672,-0.1574689,0.7030945,1.22672,-0.1574689,0.06051608,1.22672,0.4851093,0.5824369,1.22672,-0.3776743,-0.4390514,1.22672,-0.7412005,-0.6800271,1.22672,-0.4054309 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,26,-29 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: -0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *60 { + a: -3.999048,-3.880468,-1.362897,2.085879,2.972385,-3.880468,0.2642379,2.085879,5.243033,-3.33083,-2.995706,-3.33083,2.606883,2.635517,-1.661803,2.635518,-2.939089,3.300004,1.62082,3.300005,-5.647237,-2.666342,5.460929,-2.666343,5.022129,-2.948767,-5.022128,-2.948767,2.39571,3.01758,-1.182019,3.01758,7.102362,5.684342E-14,4.724297,-4.340077,0,7.102362,-3.037572,-7.102362,-7.102362,-1.438586,1.536019,-3.657174,-3.412866,-3.657173,0.2021152,2.309174,-0.7864474,2.309173,-2.768089,-0.6199564,-0.2382523,1.909879,-2.293059,-1.486907,1.728549,-2.918112,2.677272,-1.596185 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,23,22,24,22,23,25,27,26,28,26,27,29,26,28 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallC, Model::RootNode + C: "OO",5158326387373032127,0 + + ;Geometry::, Model::Mesh rock_smallC + C: "OO",5158735687442291120,5158326387373032127 + + ;Material::dirt, Model::Mesh rock_smallC + C: "OO",3020,5158326387373032127 + + ;Material::grass, Model::Mesh rock_smallC + C: "OO",3024,5158326387373032127 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallC.fbx.import new file mode 100644 index 0000000..2e2ccf5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dx03fmpji31nu" +path="res://.godot/imported/rock_smallC.fbx-f01eef081ff57ffec48919d62ef05ac4.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallC.fbx" +dest_files=["res://.godot/imported/rock_smallC.fbx-f01eef081ff57ffec48919d62ef05ac4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallD.fbx new file mode 100644 index 0000000..f97a91c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallD.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 771 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4841576967469537954, "Model::rock_smallD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5359258306011718244, "Geometry::", "Mesh" { + Vertices: *162 { + a: 1.362381,2.30912,1.443823E-14,0.9215266,2.30912,0.7635823,1.248119,2.30912,-0.1979069,-0.4526672,2.30912,-1.179856,0,2.30912,1.179856,-0.6811904,2.30912,1.179856,-0.6811904,2.30912,-1.179856,-1.147969,2.30912,-0.3713729,-1.230748,2.30912,0.2279942,0.9215266,2.30912,0.7635823,0.8371419,1.3693,1.449972,0,2.30912,1.179856,-1.06436,0,-1.843526,-0.6811904,2.30912,-1.179856,-2.12872,0,0,-1.147969,2.30912,-0.3713729,-2.008057,0.3635792,0,-2.12872,0,0,-2.008057,0.3635792,0,-1.06436,0,1.843526,-1.230748,2.30912,0.2279942,-0.6811904,2.30912,1.179856,-1.06436,0,-1.843526,1.06436,0,-1.843526,-0.6811904,2.30912,-1.179856,0.7322771,2.001253,-1.268341,-0.4526672,2.30912,-1.179856,1.06436,0,-1.843526,2.12872,0,0,0.7322771,2.001253,-1.268341,1.248119,2.30912,-0.1979069,1.362381,2.30912,1.443823E-14,0.7322771,2.001253,-1.268341,1.248119,2.30912,-0.1979069,-0.4526672,2.30912,-1.179856,2.12872,0,0,1.06436,0,-1.843526,1.06436,0,1.843526,-1.06436,0,1.843526,-1.06436,0,-1.843526,-2.12872,0,0,2.12872,0,0,1.06436,0,1.843526,1.362381,2.30912,1.443823E-14,0.9215266,2.30912,0.7635823,0.8371419,1.3693,1.449972,-2.008057,0.3635792,0,-1.147969,2.30912,-0.3713729,-1.230748,2.30912,0.2279942,1.06436,0,1.843526,-1.06436,0,1.843526,0.8371419,1.3693,1.449972,-0.6811904,2.30912,1.179856,0,2.30912,1.179856 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,5,-4,7,5,-7,8,5,-8,9,11,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,20,18,-20,21,20,-20,22,24,-24,25,23,-25,26,25,-25,27,29,-29,30,28,-30,31,28,-31,32,34,-34,35,37,-37,38,36,-38,39,36,-39,40,39,-39,41,43,-43,44,42,-44,45,42,-45,46,48,-48,49,51,-51,52,50,-52,53,52,-52 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3485266,0.5322019,0.7715506,0.3485266,0.5322019,0.7715506,0.3485266,0.5322019,0.7715506,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.2089977,0.9084492,-0.3619945,0.2089977,0.9084492,-0.3619945,0.2089977,0.9084492,-0.3619945,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,-0.9159687,0.3807853,-0.1265063,-0.9159687,0.3807853,-0.1265063,-0.9159687,0.3807853,-0.1265063,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *108 { + a: -5.363704,5.684342E-14,-3.628057,3.00623,-4.913855,-0.779161,1.782155,-4.645104,0,4.645104,2.681852,4.645104,2.681852,-4.645104,4.519561,-1.462098,4.845466,0.8976148,2.068796,5.443682,0.6535661,1.073254,-1.912248,5.443682,-4.190394,-2.004867,-2.681852,7.454193,4.190394,-2.004867,0.9935666,7.454193,3.952869,-0.5155039,-4.190394,-2.004867,-3.952869,-0.5155038,4.190394,-2.004867,-1.645376,7.454193,2.681852,7.454193,4.190394,-2.004867,-4.190394,-2.004867,2.681852,7.454193,-2.882981,6.193049,1.782155,7.454193,4.190394,-2.004867,-4.190393,-2.004867,2.882981,6.193049,-1.782154,7.454193,-2.681852,7.454193,2.236564E-08,-1.94472,-3.865942,0.955014,3.865943,0.955014,8.380788,0,4.190394,-7.257975,4.190394,7.257975,-4.190394,7.257975,-4.190394,-7.257975,-8.380788,0,4.190393,-2.004866,-4.190394,-2.004866,2.681852,7.454193,-0.7894427,7.454193,-3.295834,3.60432,1.08161,-1.658505,-0.8300135,6.625167,1.552099,6.625167,4.190394,-2.004867,-4.190394,-2.004867,3.295834,3.60432,-2.681852,7.454193,9.946394E-09,7.454193 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,5,3,7,5,6,8,5,7,9,11,10,12,14,13,15,13,14,16,15,14,17,19,18,20,18,19,21,20,19,22,24,23,25,23,24,26,25,24,27,29,28,30,28,29,31,28,30,32,34,33,35,37,36,38,36,37,39,36,38,40,39,38,41,43,42,44,42,43,45,42,44,46,48,47,49,51,50,52,50,51,53,52,51 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallD, Model::RootNode + C: "OO",4841576967469537954,0 + + ;Geometry::, Model::Mesh rock_smallD + C: "OO",5359258306011718244,4841576967469537954 + + ;Material::grass, Model::Mesh rock_smallD + C: "OO",3024,4841576967469537954 + + ;Material::dirt, Model::Mesh rock_smallD + C: "OO",3020,4841576967469537954 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallD.fbx.import new file mode 100644 index 0000000..4ea6901 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://k0rr3yd4qnpr" +path="res://.godot/imported/rock_smallD.fbx-4de97ccb8de0169cda28aedafc48c6c5.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallD.fbx" +dest_files=["res://.godot/imported/rock_smallD.fbx-4de97ccb8de0169cda28aedafc48c6c5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallE.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallE.fbx new file mode 100644 index 0000000..954641c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallE.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 905 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallE.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallE.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5488458961199145424, "Model::rock_smallE", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4722227455133665916, "Geometry::", "Mesh" { + Vertices: *306 { + a: -0.2944342,1.76792,-0.5111443,-0.1849232,2.56168,-0.3214657,-0.7000306,1.76792,0.191369,-0.4810084,2.56168,0.191369,-0.2944342,1.76792,-0.5111443,0.5167584,1.76792,-0.5111443,-0.1849232,2.56168,-0.3214657,0.4292784,2.401995,-0.3596244,-0.02625154,2.56168,-0.3214657,0.55529,2.56168,0.4477864,0.4894966,1.96552,0.8466637,0.1111621,2.56168,0.7042037,-0.7397611,1.4454,-1.281304,0.1315432,1.76792,-1.218602,-0.9056469,1.76792,-0.8685769,-0.7000306,1.76792,0.191369,-0.4810084,2.56168,0.191369,-0.2944342,1.76792,0.8938823,-0.1849232,2.56168,0.7042037,1.804,0,0,0.902,0,-1.56231,0.902,0,1.56231,-0.902,0,1.56231,-0.902,0,-1.56231,-1.804,0,0,0.5167584,1.76792,-0.5111443,0.9223549,1.76792,0.191369,0.4292784,2.401995,-0.3596244,0.6239967,2.56168,0.05395533,0.7033327,2.56168,0.191369,0.5167584,1.76792,0.8938823,-0.2944342,1.76792,0.8938823,0.4894966,1.96552,0.8466637,-0.1849232,2.56168,0.7042037,0.1111621,2.56168,0.7042037,0.902,0,1.56231,-0.902,0,1.56231,0.7035601,1.76792,1.218602,-0.8403682,0.5490831,1.45556,-0.3875988,1.76792,1.218602,-1.804,0,0,-1.40712,1.76792,0,-0.902,0,1.56231,-0.9056469,1.76792,0.8685769,-0.8403682,0.5490831,1.45556,-0.3875988,1.76792,1.218602,-0.8403682,0.5490831,1.45556,-0.9056469,1.76792,0.8685769,1.261496,1.76792,-0.2522277,1.540032,1.175856,0,1.219007,1.76792,0.3258205,0.902,0,-1.56231,1.804,0,0,0.7035601,1.76792,-1.218602,1.261496,1.76792,-0.2522277,1.540032,1.175856,0,1.540032,1.175856,0,1.804,0,0,1.219007,1.76792,0.3258205,0.902,0,1.56231,0.7035601,1.76792,1.218602,0.4292784,2.401995,-0.3596244,0.6239967,2.56168,0.05395533,-0.02625154,2.56168,-0.3214657,0.7033327,2.56168,0.191369,0.9223549,1.76792,0.191369,0.55529,2.56168,0.4477864,0.5167584,1.76792,0.8938823,0.4894966,1.96552,0.8466637,-0.902,0,-1.56231,-0.7397611,1.4454,-1.281304,-1.804,0,0,-0.9056469,1.76792,-0.8685769,-1.40712,1.76792,0,-0.902,0,-1.56231,0.902,0,-1.56231,-0.7397611,1.4454,-1.281304,0.7035601,1.76792,-1.218602,0.1315432,1.76792,-1.218602,0.7033327,2.56168,0.191369,0.55529,2.56168,0.4477864,0.6239967,2.56168,0.05395533,-0.02625154,2.56168,-0.3214657,0.1111621,2.56168,0.7042037,-0.1849232,2.56168,0.7042037,-0.1849232,2.56168,-0.3214657,-0.4810084,2.56168,0.191369,1.261496,1.76792,-0.2522277,1.219007,1.76792,0.3258205,0.7035601,1.76792,-1.218602,0.9223549,1.76792,0.191369,0.5167584,1.76792,-0.5111443,0.1315432,1.76792,-1.218602,-0.2944342,1.76792,-0.5111443,-0.9056469,1.76792,-0.8685769,-0.7000306,1.76792,0.191369,0.7035601,1.76792,1.218602,0.5167584,1.76792,0.8938823,-0.3875988,1.76792,1.218602,-0.2944342,1.76792,0.8938823,-0.9056469,1.76792,0.8685769,-1.40712,1.76792,0 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,14,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,20,-23,24,23,-23,25,27,-27,28,26,-28,29,26,-29,30,32,-32,33,31,-33,34,33,-33,35,37,-37,38,36,-38,39,38,-38,40,42,-42,43,41,-43,44,43,-43,45,47,-47,48,50,-50,51,53,-53,54,52,-54,55,52,-55,56,58,-58,59,57,-59,60,59,-59,61,63,-63,64,66,-66,67,65,-67,68,67,-67,69,71,-71,72,70,-72,73,72,-72,74,76,-76,77,75,-77,78,77,-77,79,81,-81,82,80,-82,83,80,-83,84,83,-83,85,84,-83,86,84,-86,87,89,-89,90,88,-90,91,90,-90,92,91,-90,93,91,-93,94,93,-93,95,93,-95,88,90,-97,97,96,-91,98,96,-98,99,98,-98,95,98,-100,100,98,-96,94,100,-96,101,100,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: -0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0.4428342,0.464318,0.7670115,0.4428342,0.464318,0.7670115,0.4428342,0.464318,0.7670115,-0.2207371,0.723496,-0.6540862,-0.2207371,0.723496,-0.6540862,-0.2207371,0.723496,-0.6540862,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.5252212,0.3462338,0.7773447,-0.5252212,0.3462338,0.7773447,-0.5252212,0.3462338,0.7773447,0.8918736,0.4475086,0.06555635,0.8918736,0.4475086,0.06555635,0.8918736,0.4475086,0.06555635,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.261082,0.8528451,-0.4522072,0.261082,0.8528451,-0.4522072,0.261082,0.8528451,-0.4522072,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *204 { + a: -1.163176,6.302534,-0.732031,9.515558,2.030495,6.302534,1.599349,9.515559,1.159189,6.302,-2.034482,6.302,0.7280439,9.515024,-1.690072,8.868644,0.1033525,9.515024,1.011819,7.715842,0.00230207,5.065767,-1.007215,7.715842,1.146528,-0.2034921,-2.024776,1.635869,2.28491,1.635869,-0.7255316,6.127424,-0.2943854,9.340449,2.46814,6.127425,2.036994,9.340449,7.102362,0,3.551181,-6.150826,3.551181,6.150826,-3.551181,6.150826,-3.551181,-6.150826,-7.102362,0,0.7255302,6.126355,-2.468142,6.126355,0.3811205,8.692999,-1.412304,9.339379,-2.036995,9.339379,2.034482,5.951781,-1.159189,5.951781,1.927153,6.751635,-0.7280436,9.164805,0.4376465,9.164805,3.551181,-1.173828,-3.551181,-1.173828,2.769922,5.916806,-3.308536,1.028391,-1.525979,5.916806,-3.551181,-1.173828,-2.769922,5.916806,3.55118,-1.173828,1.178685,5.916806,3.308535,1.028391,1.421537,4.857629,0.4668076,-0.2573091,-1.039931,4.857629,1.354428,4.040463,0.444465,1.433939,-0.9274918,4.040463,3.551181,-1.173828,-3.551181,-1.173828,2.769921,5.916806,-1.623278,5.916806,-3.031559,3.542202,3.031559,3.542202,3.551181,-1.173828,1.28872,5.916806,-3.551181,-1.173828,-2.769921,5.916806,-0.7557234,3.171527,-2.233758,4.375516,0.7223126,4.375516,0.7320317,9.16427,1.163178,5.951245,-0.4336585,9.16427,-2.030494,5.951245,-1.923165,6.7511,-3.551181,-1.173828,-2.912446,4.623268,3.551181,-1.173828,-1.178686,5.916806,2.769922,5.916806,3.551181,-1.173828,-3.551181,-1.173828,2.912446,4.623269,-2.769921,5.916806,-0.5178865,5.916806,-2.769026,0.7534212,-2.186181,1.762938,-2.45668,0.2124226,0.1033525,-1.265613,-0.4376462,2.772455,0.728044,2.772455,0.728044,-1.265613,1.893734,0.7534212,-4.966521,-0.9930224,-4.799242,1.282758,-2.769921,-4.797644,-3.631319,0.7534212,-2.034482,-2.012379,-0.5178865,-4.797644,1.15919,-2.012379,3.565539,-3.419594,2.756026,0.7534212,-2.769921,4.797644,-2.034482,3.519222,1.525979,4.797644,1.15919,3.519222,3.565539,3.419594,5.539843,0 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,14,13,15,17,16,18,16,17,19,21,20,22,20,21,23,20,22,24,23,22,25,27,26,28,26,27,29,26,28,30,32,31,33,31,32,34,33,32,35,37,36,38,36,37,39,38,37,40,42,41,43,41,42,44,43,42,45,47,46,48,50,49,51,53,52,54,52,53,55,52,54,56,58,57,59,57,58,60,59,58,61,63,62,64,66,65,67,65,66,68,67,66,69,71,70,72,70,71,73,72,71,74,76,75,77,75,76,78,77,76,79,81,80,82,80,81,83,80,82,84,83,82,85,84,82,86,84,85,87,89,88,90,88,89,91,90,89,92,91,89,93,91,92,94,93,92,95,93,94,88,90,96,97,96,90,98,96,97,99,98,97,95,98,99,100,98,95,94,100,95,101,100,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallE, Model::RootNode + C: "OO",5488458961199145424,0 + + ;Geometry::, Model::Mesh rock_smallE + C: "OO",4722227455133665916,5488458961199145424 + + ;Material::dirt, Model::Mesh rock_smallE + C: "OO",3020,5488458961199145424 + + ;Material::grass, Model::Mesh rock_smallE + C: "OO",3024,5488458961199145424 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallE.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallE.fbx.import new file mode 100644 index 0000000..8090f96 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallE.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ct28h0rwpf0e" +path="res://.godot/imported/rock_smallE.fbx-e151857ec70b62167511e22ce860785b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallE.fbx" +dest_files=["res://.godot/imported/rock_smallE.fbx-e151857ec70b62167511e22ce860785b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallF.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallF.fbx new file mode 100644 index 0000000..886c663 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallF.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 29 + Millisecond: 996 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallF.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallF.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5510899760677031688, "Model::rock_smallF", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5755402034213516632, "Geometry::", "Mesh" { + Vertices: *288 { + a: -0.8839601,0,-1.531064,0.8839601,0,-1.531064,-0.707168,1.15456,-1.224851,0.7670954,0.763197,-1.328648,0.2620202,1.15456,-1.224851,0.2620202,1.15456,-1.224851,0.7670954,0.763197,-1.328648,0.8493578,1.15456,-0.9785708,-0.5045146,1.15456,-0.8738449,0.5045146,1.15456,-0.8738449,-0.4423155,1.580105,-0.7661129,0.3146659,2.45344,-0.5450172,0.07196062,2.45344,-0.5450172,1.414336,1.15456,0,1.76792,0,0,0.9297419,1.15456,0.8393416,0.8839601,0,1.531064,0.8493578,0.2259728,1.471131,-0.6293315,2.45344,-1.443823E-14,-0.3146659,2.45344,0.5450172,-1.009029,1.15456,0,-0.5045146,1.15456,0.8738449,0.5045146,1.15456,-0.8738449,1.009029,1.15456,0,0.3146659,2.45344,-0.5450172,0.6293315,2.45344,-1.443823E-14,0.6293315,2.45344,-1.443823E-14,1.009029,1.15456,0,0.3146659,2.45344,0.5450172,0.5045146,1.15456,0.8738449,-0.5045146,1.15456,-0.8738449,-0.4423155,1.580105,-0.7661129,-1.009029,1.15456,0,-0.4260882,2.45344,-0.352028,-0.6293315,2.45344,-1.443823E-14,1.76792,0,0,0.8839601,0,-1.531064,0.8839601,0,1.531064,-0.8839601,0,1.531064,-0.8839601,0,-1.531064,-1.76792,0,0,0.5045146,1.15456,0.8738449,-0.5045146,1.15456,0.8738449,0.3146659,2.45344,0.5450172,-0.3146659,2.45344,0.5450172,0.9297419,1.15456,0.8393416,0.8493578,0.2259728,1.471131,0.2620202,1.15456,1.224851,0.8839601,0,-1.531064,1.76792,0,0,0.7670954,0.763197,-1.328648,0.8493578,1.15456,-0.9785708,1.414336,1.15456,0,0.8839601,0,1.531064,-0.8839601,0,1.531064,0.8493578,0.2259728,1.471131,-0.707168,1.15456,1.224851,0.2620202,1.15456,1.224851,-0.8839601,0,-1.531064,-0.707168,1.15456,-1.224851,-1.76792,0,0,-1.244615,1.15456,-0.2939646,-1.61304,0.5057316,0,-0.4260882,2.45344,-0.352028,-0.4423155,1.580105,-0.7661129,0.07196062,2.45344,-0.5450172,-1.61304,0.5057316,0,-1.244615,1.15456,-0.2939646,-1.171438,1.15456,0.4207115,-1.76792,0,0,-1.61304,0.5057316,0,-0.8839601,0,1.531064,-1.171438,1.15456,0.4207115,-0.707168,1.15456,1.224851,0.6293315,2.45344,-1.443823E-14,0.3146659,2.45344,0.5450172,0.3146659,2.45344,-0.5450172,0.07196062,2.45344,-0.5450172,-0.3146659,2.45344,0.5450172,-0.4260882,2.45344,-0.352028,-0.6293315,2.45344,-1.443823E-14,1.414336,1.15456,0,1.009029,1.15456,0,0.8493578,1.15456,-0.9785708,0.5045146,1.15456,-0.8738449,0.2620202,1.15456,-1.224851,-0.5045146,1.15456,-0.8738449,-0.707168,1.15456,-1.224851,-1.009029,1.15456,0,-1.244615,1.15456,-0.2939646,-1.171438,1.15456,0.4207115,0.9297419,1.15456,0.8393416,0.5045146,1.15456,0.8738449,0.2620202,1.15456,1.224851,-0.5045146,1.15456,0.8738449,-0.707168,1.15456,1.224851 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,16,-16,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,37,-37,38,36,-38,39,36,-39,40,39,-39,41,43,-43,44,42,-44,45,47,-47,48,50,-50,51,49,-51,52,49,-52,53,55,-55,56,54,-56,57,56,-56,58,60,-60,61,59,-61,62,61,-61,63,65,-65,66,68,-68,69,71,-71,72,70,-72,73,72,-72,74,76,-76,77,75,-77,78,75,-78,79,78,-78,80,78,-80,81,83,-83,84,82,-84,85,84,-84,86,84,-86,87,86,-86,88,86,-88,89,88,-88,90,88,-90,81,82,-92,92,91,-83,93,91,-93,94,93,-93,95,93,-95,88,95,-95,90,95,-89 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0.3103015,0.5967291,-0.7400186,0.3103015,0.5967291,-0.7400186,0.3103015,0.5967291,-0.7400186,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0.4388578,0.4791813,0.7601244,0.4388578,0.4791813,0.7601244,0.4388578,0.4791813,0.7601244,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.3296344,0.4094728,-0.8506898,-0.3296344,0.4094728,-0.8506898,-0.3296344,0.4094728,-0.8506898,-0.8488756,0.5213974,0.0869185,-0.8488756,0.5213974,0.0869185,-0.8488756,0.5213974,0.0869185,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: 3.480158,-1.545274,-3.480157,-1.545274,2.784126,3.157391,-3.020061,1.563321,-1.031575,3.157391,0.9134174,0.7557541,-0.7623542,-1.164382,-1.593994,0.7557541,1.986278,3.562169,-1.986278,3.562169,1.7414,5.290397,-1.238842,8.837197,-0.2833095,8.837197,2.784126,3.157393,3.480157,-1.545272,-1.031576,3.157393,-3.480158,-1.545272,-3.34393,-0.6248574,-1.238842,8.837196,1.238842,8.837196,-1.986279,3.562168,1.986278,3.562168,1.986278,3.562168,-1.986279,3.562168,1.238842,8.837196,-1.238842,8.837196,1.238842,8.837196,1.986279,3.562168,-1.238842,8.837196,-1.986278,3.562168,-1.986277,3.562168,-1.741399,5.290396,1.986279,3.562168,-0.3614998,8.837196,1.238842,8.837196,6.960315,0,3.480158,-6.02781,3.480158,6.02781,-3.480158,6.02781,-3.480158,-6.02781,-6.960315,0,1.986278,3.562169,-1.986278,3.562169,1.238842,8.837197,-1.238842,8.837197,1.517755,1.741361,1.145996E-06,-2.423831,-1.517751,1.741361,3.480158,-1.545273,-3.480158,-1.545273,3.020061,1.563323,1.664521,3.157392,-2.784126,3.157392,3.480158,-1.545274,-3.480157,-1.545274,3.343929,-0.6248595,-2.784126,3.157391,1.031576,3.157391,-3.480158,-1.545273,-2.784125,3.157392,3.480157,-1.545273,1.447743,3.157392,3.175275,0.5146338,1.063429,8.034966,0.533967,4.266201,-1.039454,8.034966,-0.6468666,-1.594931,-1.650441,1.398625,1.177956,1.398625,-3.480157,-1.545273,-3.175275,0.5146335,3.480158,-1.545273,-0.8715432,3.157392,2.784126,3.157392,-2.477683,-5.684342E-14,-1.238842,2.145737,-1.238842,-2.145737,-0.2833095,-2.145737,1.238842,2.145737,1.677513,-1.385937,2.477683,-5.684342E-14,-5.568252,0,-3.972557,0,-3.343928,-3.852641,-1.986278,-3.440334,-1.031576,-4.822247,1.986278,-3.440334,2.784126,-4.822247,3.972557,0,4.90006,-1.157341,4.61196,1.656345,-3.660401,3.304495,-1.986278,3.440334,-1.031576,4.822247,1.986278,3.440334,2.784126,4.822247 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,16,15,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,37,36,38,36,37,39,36,38,40,39,38,41,43,42,44,42,43,45,47,46,48,50,49,51,49,50,52,49,51,53,55,54,56,54,55,57,56,55,58,60,59,61,59,60,62,61,60,63,65,64,66,68,67,69,71,70,72,70,71,73,72,71,74,76,75,77,75,76,78,75,77,79,78,77,80,78,79,81,83,82,84,82,83,85,84,83,86,84,85,87,86,85,88,86,87,89,88,87,90,88,89,81,82,91,92,91,82,93,91,92,94,93,92,95,93,94,88,95,94,90,95,88 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallF, Model::RootNode + C: "OO",5510899760677031688,0 + + ;Geometry::, Model::Mesh rock_smallF + C: "OO",5755402034213516632,5510899760677031688 + + ;Material::dirt, Model::Mesh rock_smallF + C: "OO",3020,5510899760677031688 + + ;Material::grass, Model::Mesh rock_smallF + C: "OO",3024,5510899760677031688 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallF.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallF.fbx.import new file mode 100644 index 0000000..bb7046c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallF.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://box2dtj26a60g" +path="res://.godot/imported/rock_smallF.fbx-ed8e7f62c7c7c1786721fda30c9a877c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallF.fbx" +dest_files=["res://.godot/imported/rock_smallF.fbx-ed8e7f62c7c7c1786721fda30c9a877c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatA.fbx new file mode 100644 index 0000000..188e721 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 80 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallFlatA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallFlatA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5430447873232353776, "Model::rock_smallFlatA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5088694131057694464, "Geometry::", "Mesh" { + Vertices: *108 { + a: -2.478949,0,-0.4747403,-2.181475,0.6494399,-0.4177714,-1.362638,0,2.147887,-1.199121,0.6494399,1.89014,2.181475,0.6494399,0.1760802,2.478949,0,0.2000912,1.150408,0.6494399,1.89014,1.307282,0,2.147887,-1.105746,0,-1.469684,0.86299,0,-2.147887,-0.9730563,0.6494399,-1.293323,0.7594314,0.6494399,-1.89014,1.307282,0,2.147887,-1.362638,0,2.147887,1.150408,0.6494399,1.89014,-1.199121,0.6494399,1.89014,2.478949,0,0.2000912,0.86299,0,-2.147887,1.307282,0,2.147887,-1.362638,0,2.147887,-1.105746,0,-1.469684,-2.478949,0,-0.4747403,0.86299,0,-2.147887,2.478949,0,0.2000912,0.7594314,0.6494399,-1.89014,2.181475,0.6494399,0.1760802,-2.478949,0,-0.4747403,-1.105746,0,-1.469684,-2.181475,0.6494399,-0.4177714,-0.9730563,0.6494399,-1.293323,2.181475,0.6494399,0.1760802,1.150408,0.6494399,1.89014,0.7594314,0.6494399,-1.89014,-1.199121,0.6494399,1.89014,-0.9730563,0.6494399,-1.293323,-2.181475,0.6494399,-0.4177714 + } + PolygonVertexIndex: *60 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,17,-20,21,20,-20,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,33,-35 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *180 { + a: -0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *72 { + a: -5.542057,-2.977511,-4.877009,-0.2357765,5.679676,-2.977511,4.998114,-0.2357765,3.833004,-0.5725533,4.355687,-3.337482,-4.042094,-0.5725531,-4.593289,-3.337482,2.231388,-2.11906,-5.966553,-2.119061,1.963622,0.5680925,-5.250567,0.5680929,5.14678,-3.119386,-5.364715,-3.119386,4.529166,-0.3685313,-4.72095,-0.3685313,9.759641,0.7877607,3.397598,-8.456247,5.14678,8.456247,-5.364715,8.456247,-4.353329,-5.786159,-9.759641,-1.869056,5.039681,-2.548827,-6.182051,-2.548827,4.434918,0.1655225,-5.440205,0.1655225,6.806603,-2.329156,0.1303834,-2.329155,5.989811,0.3712604,0.1147373,0.3712601,-8.588485,0.6932293,-4.529166,7.441497,-2.989887,-7.441497,4.72095,7.441497,3.83093,-5.091821,8.588485,-1.644769 + } + UVIndex: *60 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,17,19,21,20,19,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,33,34 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *20 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallFlatA, Model::RootNode + C: "OO",5430447873232353776,0 + + ;Geometry::, Model::Mesh rock_smallFlatA + C: "OO",5088694131057694464,5430447873232353776 + + ;Material::dirt, Model::Mesh rock_smallFlatA + C: "OO",3020,5430447873232353776 + + ;Material::grass, Model::Mesh rock_smallFlatA + C: "OO",3024,5430447873232353776 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatA.fbx.import new file mode 100644 index 0000000..a13fd56 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dcq1pgc7utqf7" +path="res://.godot/imported/rock_smallFlatA.fbx-ba78a94957e6c1501201a00c75e09f4d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatA.fbx" +dest_files=["res://.godot/imported/rock_smallFlatA.fbx-ba78a94957e6c1501201a00c75e09f4d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatB.fbx new file mode 100644 index 0000000..1500d21 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 159 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallFlatB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallFlatB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5354446214104912523, "Model::rock_smallFlatB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4864112011715044195, "Geometry::", "Mesh" { + Vertices: *90 { + a: 1.782458,0.6494399,0.5119088,1.153533,0.6494399,1.669766,-0.3120166,0.6494399,-1.669766,-0.9962643,0.6494399,0.9226305,-1.782458,0.6494399,-1.498358,-0.3759236,0,-2.011766,2.14754,0,0.6167576,-0.3120166,0.6494399,-1.669766,1.782458,0.6494399,0.5119088,-2.14754,0,-1.80525,-0.3759236,0,-2.011766,-1.782458,0.6494399,-1.498358,-0.3120166,0.6494399,-1.669766,1.782458,0.6494399,0.5119088,2.14754,0,0.6167576,1.153533,0.6494399,1.669766,1.389799,0,2.011766,1.389799,0,2.011766,-1.200318,0,1.111603,1.153533,0.6494399,1.669766,-0.9962643,0.6494399,0.9226305,-2.14754,0,-1.80525,-1.782458,0.6494399,-1.498358,-1.200318,0,1.111603,-0.9962643,0.6494399,0.9226305,2.14754,0,0.6167576,-0.3759236,0,-2.011766,1.389799,0,2.011766,-1.200318,0,1.111603,-2.14754,0,-1.80525 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,26,-29 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *60 { + a: -7.017551,2.015389,-4.541469,6.573881,1.228412,-6.573881,3.922301,3.632404,7.017551,-5.899046,6.738519,-1.244901,-7.607003,-1.244901,5.59297,1.419955,-6.313812,1.419955,7.575098,-3.78901,0.5530016,-3.78901,6.287331,-0.8898893,0.4589913,-0.8898891,1.578563,-1.314584,1.901883,-4.258945,-3.609002,-1.314584,-4.348197,-4.258945,7.768487,-2.010169,-3.027103,-2.010169,6.447844,0.723249,-2.512496,0.7232488,-9.371185,-2.118129,-7.778083,0.6250936,2.70283,-2.118129,2.243349,0.6250934,8.454882,2.42818,-1.480014,-7.92034,5.47165,7.92034,-4.725663,4.37639,-8.454882,-7.107285 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,26,28 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallFlatB, Model::RootNode + C: "OO",5354446214104912523,0 + + ;Geometry::, Model::Mesh rock_smallFlatB + C: "OO",4864112011715044195,5354446214104912523 + + ;Material::grass, Model::Mesh rock_smallFlatB + C: "OO",3024,5354446214104912523 + + ;Material::dirt, Model::Mesh rock_smallFlatB + C: "OO",3020,5354446214104912523 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatB.fbx.import new file mode 100644 index 0000000..8421f2d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ccmd5jp3uvqww" +path="res://.godot/imported/rock_smallFlatB.fbx-01a311efbc4195b8254d7572d9ee1659.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatB.fbx" +dest_files=["res://.godot/imported/rock_smallFlatB.fbx-01a311efbc4195b8254d7572d9ee1659.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatC.fbx new file mode 100644 index 0000000..332bbb0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatC.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 247 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallFlatC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallFlatC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4885933166647852471, "Model::rock_smallFlatC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5660293540092579414, "Geometry::", "Mesh" { + Vertices: *198 { + a: -2.351893,2.634403E-15,-0.0071074,-2.069666,0.64944,-0.006254511,-1.906065,3.559908E-16,1.328358,-1.677337,0.64944,1.168955,-0.7215898,-2.594369E-15,-1.801733,1.65893,-2.589836E-15,-1.209487,-0.6782944,0.32472,-1.693629,1.459858,0.64944,-1.064348,-0.02409454,0.64944,-1.433539,-0.9665698,0.64944,1.217246,-1.164722,0.4194857,1.373078,-1.483233,0.64944,1.217246,2.351893,3.561777E-18,0.3461252,1.65893,-2.589836E-15,-1.209487,0.9925765,1.484383E-17,1.801733,-0.7215898,-2.594369E-15,-1.801733,-0.7765197,1.48199E-17,1.177013,-2.351893,2.634403E-15,-0.0071074,-1.262586,1.48199E-17,1.488448,-1.906065,3.559908E-16,1.328358,-0.7765197,1.48199E-17,1.177013,-1.262586,1.48199E-17,1.488448,-0.6833374,0.64944,1.035771,-1.164722,0.4194857,1.373078,-0.9665698,0.64944,1.217246,2.169597,0.4194857,0.319297,2.351893,3.561777E-18,0.3461252,1.471567,0.64944,0.9450573,0.9925765,1.484383E-17,1.801733,0.8734674,0.64944,1.585525,1.983595,0.64944,0.1113726,2.169597,0.4194857,0.319297,1.471567,0.64944,0.9450573,-0.6782944,0.32472,-1.693629,-0.02409454,0.64944,-1.433539,-1.058298,0.64944,-1.119561,-0.7215898,-2.594369E-15,-1.801733,-0.6782944,0.32472,-1.693629,-2.351893,2.634403E-15,-0.0071074,-1.058298,0.64944,-1.119561,-2.069666,0.64944,-0.006254511,-0.7765197,1.48199E-17,1.177013,-0.6833374,0.64944,1.035771,0.9925765,1.484383E-17,1.801733,0.8734674,0.64944,1.585525,1.65893,-2.589836E-15,-1.209487,2.351893,3.561777E-18,0.3461252,1.459858,0.64944,-1.064348,1.983595,0.64944,0.1113726,2.169597,0.4194857,0.319297,-1.262586,1.48199E-17,1.488448,-1.906065,3.559908E-16,1.328358,-1.164722,0.4194857,1.373078,-1.677337,0.64944,1.168955,-1.483233,0.64944,1.217246,1.983595,0.64944,0.1113726,1.471567,0.64944,0.9450573,1.459858,0.64944,-1.064348,0.8734674,0.64944,1.585525,-0.02409454,0.64944,-1.433539,-0.6833374,0.64944,1.035771,-1.058298,0.64944,-1.119561,-0.9665698,0.64944,1.217246,-1.483233,0.64944,1.217246,-2.069666,0.64944,-0.006254511,-1.677337,0.64944,1.168955 + } + PolygonVertexIndex: *120 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,17,-17,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,27,-27,28,26,-28,29,28,-28,30,32,-32,33,35,-35,36,38,-38,39,37,-39,40,39,-39,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,46,-49,50,52,-52,53,51,-53,54,53,-53,55,57,-57,58,56,-58,59,58,-58,60,58,-60,61,60,-60,62,60,-62,63,62,-62,64,63,-62,65,63,-65 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *360 { + a: -0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0,0.5609874,0.8278244,0,0.5609874,0.8278244,0,0.5609874,0.8278244,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.5557054,0.7580935,0.3413001,0.5557054,0.7580935,0.3413001,0.5557054,0.7580935,0.3413001,-0.1727751,0.8039124,-0.5690991,-0.1727751,0.8039124,-0.5690991,-0.1727751,0.8039124,-0.5690991,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *132 { + a: -2.958611,-3.340909,-2.603578,-0.5757582,2.58437,-3.340909,2.274245,-0.575758,4.469429,-1.73103,-5.188389,-1.73103,4.201263,-0.3996195,-4.565782,0.9317912,1.454645,0.9317906,-3.805393,-0.5718011,-4.585519,-1.665429,-5.8395,-0.5718011,9.259421,1.362698,6.53122,-4.76176,3.907782,7.093437,-2.840905,-7.093437,-3.057164,4.63391,-9.259421,-0.02798189,-4.970811,5.860032,-7.504193,5.229756,-5.074049,-0.2367889,-7.346805,-0.2367887,-4.465162,2.334308,-6.77735,1.423932,-5.789506,2.334308,4.911133,-0.8593979,5.323781,-2.615383,1.234886,0.1032007,-2.517227,-2.615383,-2.21516,0.1032009,3.713428,-3.551301,3.399128,-4.939536,-0.1384126,-3.551301,0.6182714,-4.992494,-1.548779,-2.842969,2.706395,-2.842969,-3.340183,-2.109645,-3.139772,-0.7663648,6.205392,-2.109645,-0.4609073,0.5769151,5.460746,0.5769153,-1.339716,-1.320641,-1.17895,1.316676,6.046741,-1.320641,5.321133,1.316675,1.692071,-2.748782,-5.012559,-2.748782,1.489021,-0.02169085,-3.578291,-0.02169133,-4.624034,-0.9873019,-3.408988,-2.118028,-6.019595,-2.118028,-3.144754,-0.3823865,-5.297244,0.5690602,-4.509759,0.5690598,-7.809429,0.4384748,-5.793571,3.720698,-5.747472,-4.190346,-3.438848,6.242225,0.0948604,-5.643855,2.690305,4.077838,4.166528,-4.40772,3.805393,4.792307,5.8395,4.792307,8.148291,-0.02462406,6.603689,4.602185 + } + UVIndex: *120 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,14,13,15,13,14,16,15,14,17,15,16,18,17,16,19,17,18,20,22,21,23,21,22,24,23,22,25,27,26,28,26,27,29,28,27,30,32,31,33,35,34,36,38,37,39,37,38,40,39,38,41,43,42,44,42,43,45,47,46,48,46,47,49,46,48,50,52,51,53,51,52,54,53,52,55,57,56,58,56,57,59,58,57,60,58,59,61,60,59,62,60,61,63,62,61,64,63,61,65,63,64 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *40 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallFlatC, Model::RootNode + C: "OO",4885933166647852471,0 + + ;Geometry::, Model::Mesh rock_smallFlatC + C: "OO",5660293540092579414,4885933166647852471 + + ;Material::dirt, Model::Mesh rock_smallFlatC + C: "OO",3020,4885933166647852471 + + ;Material::grass, Model::Mesh rock_smallFlatC + C: "OO",3024,4885933166647852471 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatC.fbx.import new file mode 100644 index 0000000..5c97d7d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b66vq74rlecd0" +path="res://.godot/imported/rock_smallFlatC.fbx-7aebdb671dd717670e456e5fcc011c93.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallFlatC.fbx" +dest_files=["res://.godot/imported/rock_smallFlatC.fbx-7aebdb671dd717670e456e5fcc011c93.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallG.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallG.fbx new file mode 100644 index 0000000..6a7bc3a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallG.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 334 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallG.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallG.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5605806846725480035, "Model::rock_smallG", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5381128743540662875, "Geometry::", "Mesh" { + Vertices: *180 { + a: 0,0,3.08484,-2.67155,0,1.54242,0,0.902,3.4276,-2.968389,0.902,1.7138,0,0,-3.08484,2.67155,0,-1.54242,0,0.902,-3.4276,2.968389,0.902,-1.7138,0,0.902,-3.4276,2.968389,0.902,-1.7138,0,2.45344,-2.502148,2.166924,2.45344,-1.251074,2.67155,0,1.54242,0,0,3.08484,2.968389,0.902,1.7138,0,0.902,3.4276,2.968389,0.902,-1.7138,2.67155,0,-1.54242,2.968389,0.902,1.7138,2.67155,0,1.54242,-2.968389,0.902,-1.7138,-2.968389,0.902,1.7138,-2.67155,0,-1.54242,-2.67155,0,1.54242,-2.968389,0.902,-1.7138,-2.166924,2.45344,-1.251074,-2.968389,0.902,1.7138,-2.166924,2.45344,1.251074,2.968389,0.902,1.7138,0,0.902,3.4276,2.166924,2.45344,1.251074,0,2.45344,2.502148,2.67155,0,1.54242,2.67155,0,-1.54242,0,0,3.08484,0,0,-3.08484,-2.67155,0,1.54242,-2.67155,0,-1.54242,-2.67155,0,-1.54242,0,0,-3.08484,-2.968389,0.902,-1.7138,0,0.902,-3.4276,2.968389,0.902,-1.7138,2.968389,0.902,1.7138,2.166924,2.45344,-1.251074,2.166924,2.45344,1.251074,-2.968389,0.902,-1.7138,0,0.902,-3.4276,-2.166924,2.45344,-1.251074,0,2.45344,-2.502148,0,0.902,3.4276,-2.968389,0.902,1.7138,0,2.45344,2.502148,-2.166924,2.45344,1.251074,2.166924,2.45344,-1.251074,2.166924,2.45344,1.251074,0,2.45344,-2.502148,0,2.45344,2.502148,-2.166924,2.45344,-1.251074,-2.166924,2.45344,1.251074 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,57,-57,59,57,-59 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: -0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,0.8884521,0.4589695,0,0.8884521,0.4589695,0,0.8884521,0.4589695,0,0.8884521,0.4589695,0,0.8884521,0.4589695,0,0.8884521,0.4589695,0,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *120 { + a: 6.072519,3.287873,-6.07252,3.287873,6.747242,7.026408,-6.747246,7.026408,6.072519,3.287873,-6.07252,3.287873,6.747242,7.026408,-6.747246,7.026408,6.747242,-2.208721,-6.747247,-2.208721,4.925488,4.666192,-4.925489,4.666193,6.07252,3.287873,-6.072519,3.287873,6.747246,7.026408,-6.747242,7.026408,6.747244,7.026413,6.07252,3.287878,-6.747244,7.026413,-6.07252,3.287878,-6.747244,7.026413,6.747244,7.026413,-6.07252,3.287878,6.07252,3.287878,-6.747244,-2.208725,-4.925488,4.66619,6.747244,-2.208725,4.925488,4.66619,6.747247,-2.208721,-6.747242,-2.208721,4.925489,4.666193,-4.925488,4.666192,10.51791,6.07252,10.51791,-6.07252,0,12.14504,0,-12.14504,-10.51791,6.07252,-10.51791,-6.07252,6.07252,3.287873,-6.072519,3.287873,6.747246,7.026408,-6.747242,7.026408,6.747244,-2.208725,-6.747244,-2.208725,4.925488,4.66619,-4.925488,4.66619,6.747247,-2.208721,-6.747242,-2.208721,4.925489,4.666193,-4.925488,4.666192,6.747242,-2.208721,-6.747247,-2.208721,4.925488,4.666192,-4.925489,4.666193,-8.531196,-4.925488,-8.531196,4.925488,0,-9.850976,0,9.850976,8.531196,-4.925488,8.531196,4.925488 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,57,56,59,57,58 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallG, Model::RootNode + C: "OO",5605806846725480035,0 + + ;Geometry::, Model::Mesh rock_smallG + C: "OO",5381128743540662875,5605806846725480035 + + ;Material::dirt, Model::Mesh rock_smallG + C: "OO",3020,5605806846725480035 + + ;Material::grass, Model::Mesh rock_smallG + C: "OO",3024,5605806846725480035 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallG.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallG.fbx.import new file mode 100644 index 0000000..2c52f8e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallG.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d17fq06f8ov2h" +path="res://.godot/imported/rock_smallG.fbx-d16b7852726d455e579f606c9ee2e776.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallG.fbx" +dest_files=["res://.godot/imported/rock_smallG.fbx-d16b7852726d455e579f606c9ee2e776.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallH.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallH.fbx new file mode 100644 index 0000000..4534760 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallH.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 424 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallH.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallH.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5557073925651709088, "Model::rock_smallH", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4843187381147427946, "Geometry::", "Mesh" { + Vertices: *336 { + a: 0,2.73896,2.30912,-1.632795,2.73896,1.632795,0,4.073919,1.408563,-0.9960046,4.073919,0.9960046,1.632795,1.29888,-1.632795,1.077644,0,-1.077644,2.30912,1.29888,0,1.524019,0,0,-1.632795,1.29888,-1.632795,-2.30912,1.29888,0,-1.077644,0,-1.077644,-1.524019,0,0,2.30912,2.73896,0,2.30912,1.29888,0,1.632795,2.73896,1.632795,1.632795,1.29888,1.632795,-1.632795,1.29888,-1.632795,0,1.29888,-2.30912,-1.632795,2.73896,-1.632795,0,2.73896,-2.30912,0,2.73896,-2.30912,1.632795,2.73896,-1.632795,0,4.073919,-1.408563,0.9960046,4.073919,-0.9960046,1.524019,0,0,1.077644,0,-1.077644,1.077644,0,1.077644,0,0,1.524019,0,0,-1.524019,-1.077644,0,1.077644,-1.077644,0,-1.077644,-1.524019,0,0,1.632795,1.29888,1.632795,0,1.29888,2.30912,1.632795,2.73896,1.632795,0,2.73896,2.30912,-1.408563,4.073919,-1.443823E-14,-0.9960046,4.073919,0.9960046,-2.30912,2.73896,0,-1.632795,2.73896,1.632795,0,0,1.524019,-1.077644,0,1.077644,0,1.29888,2.30912,-1.632795,1.29888,1.632795,1.077644,0,1.077644,0,0,1.524019,1.632795,1.29888,1.632795,0,1.29888,2.30912,-1.632795,1.29888,-1.632795,-1.632795,2.73896,-1.632795,-2.30912,1.29888,0,-2.30912,2.73896,0,-1.524019,0,0,-2.30912,1.29888,0,-1.077644,0,1.077644,-1.632795,1.29888,1.632795,1.632795,2.73896,1.632795,0,2.73896,2.30912,0.9960046,4.073919,0.9960046,0,4.073919,1.408563,2.30912,1.29888,0,1.524019,0,0,1.632795,1.29888,1.632795,1.077644,0,1.077644,0,1.29888,2.30912,-1.632795,1.29888,1.632795,0,2.73896,2.30912,-1.632795,2.73896,1.632795,0,0,-1.524019,1.077644,0,-1.077644,0,1.29888,-2.30912,1.632795,1.29888,-1.632795,-2.30912,1.29888,0,-2.30912,2.73896,0,-1.632795,1.29888,1.632795,-1.632795,2.73896,1.632795,1.408563,4.073919,-1.443823E-14,2.30912,2.73896,0,0.9960046,4.073919,0.9960046,1.632795,2.73896,1.632795,0,1.29888,-2.30912,1.632795,1.29888,-1.632795,0,2.73896,-2.30912,1.632795,2.73896,-1.632795,-1.632795,2.73896,-1.632795,-0.9960046,4.073919,-0.9960046,-2.30912,2.73896,0,-1.408563,4.073919,-1.443823E-14,1.632795,2.73896,-1.632795,1.632795,1.29888,-1.632795,2.30912,2.73896,0,2.30912,1.29888,0,1.632795,2.73896,-1.632795,2.30912,2.73896,0,0.9960046,4.073919,-0.9960046,1.408563,4.073919,-1.443823E-14,-1.077644,0,-1.077644,0,0,-1.524019,-1.632795,1.29888,-1.632795,0,1.29888,-2.30912,-1.632795,2.73896,-1.632795,0,2.73896,-2.30912,-0.9960046,4.073919,-0.9960046,0,4.073919,-1.408563,1.408563,4.073919,-1.443823E-14,0.9960046,4.073919,0.9960046,0.9960046,4.073919,-0.9960046,0,4.073919,-1.408563,0,4.073919,1.408563,-0.9960046,4.073919,-0.9960046,-0.9960046,4.073919,0.9960046,-1.408563,4.073919,-1.443823E-14 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,25,-28,29,28,-28,30,28,-30,31,30,-30,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,108,-108,110,108,-110,111,110,-110 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: -0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,0.9238796,0,0.3826832,0.9238796,0,0.3826832,0.9238796,0,0.3826832,0.9238796,0,0.3826832,0.9238796,0,0.3826832,0.9238796,0,0.3826832,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3826832,0,0.9238796,0.3826832,0,0.9238796,0.3826832,0,0.9238796,0.3826832,0,0.9238796,0.3826832,0,0.9238796,0.3826832,0,0.9238796,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *224 { + a: 3.478983,4.708973,-3.478986,4.708973,2.12218,10.90191,-2.122181,10.90191,3.478986,8.559752,2.29613,2.702726,-3.478983,8.559752,-2.296129,2.702726,-3.478986,8.559752,3.478983,8.559752,-2.29613,2.702726,2.296129,2.702726,3.478983,10.78331,3.478983,5.1137,-3.478986,10.78331,-3.478986,5.1137,3.478986,5.1137,-3.478983,5.1137,3.478986,10.78331,-3.478983,10.78331,3.478983,4.708973,-3.478986,4.708973,2.12218,10.90191,-2.122181,10.90191,6.000075,0,4.242694,-4.242694,4.242694,4.242694,0,6.000075,0,-6.000075,-4.242694,4.242694,-4.242694,-4.242694,-6.000075,0,3.478986,5.1137,-3.478983,5.1137,3.478986,10.78331,-3.478983,10.78331,-2.12218,10.90191,2.122181,10.90191,-3.478983,4.708973,3.478986,4.708973,2.296129,2.702726,-2.29613,2.702726,3.478983,8.559752,-3.478986,8.559752,2.29613,2.702726,-2.296129,2.702726,3.478986,8.559752,-3.478983,8.559752,-3.478986,5.1137,-3.478986,10.78331,3.478983,5.1137,3.478983,10.78331,-2.296129,2.702726,-3.478983,8.559752,2.29613,2.702726,3.478986,8.559752,3.478986,4.708973,-3.478983,4.708973,2.122181,10.90191,-2.12218,10.90191,3.478983,8.559752,2.296129,2.702726,-3.478986,8.559752,-2.29613,2.702726,3.478983,5.1137,-3.478986,5.1137,3.478983,10.78331,-3.478986,10.78331,2.296129,2.702726,-2.29613,2.702726,3.478983,8.559752,-3.478986,8.559752,-3.478983,5.1137,-3.478983,10.78331,3.478986,5.1137,3.478986,10.78331,2.12218,10.90191,3.478983,4.708973,-2.122181,10.90191,-3.478986,4.708973,3.478983,5.1137,-3.478986,5.1137,3.478983,10.78331,-3.478986,10.78331,-3.478986,4.708973,-2.122181,10.90191,3.478983,4.708973,2.12218,10.90191,3.478986,10.78331,3.478986,5.1137,-3.478983,10.78331,-3.478983,5.1137,3.478986,4.708973,-3.478983,4.708973,2.122181,10.90191,-2.12218,10.90191,2.29613,2.702726,-2.296129,2.702726,3.478986,8.559752,-3.478983,8.559752,3.478986,4.708973,-3.478983,4.708973,2.122181,10.90191,-2.12218,10.90191,-5.545525,-5.684342E-14,-3.921278,3.921278,-3.921278,-3.921278,0,-5.545525,0,5.545525,3.921278,-3.921278,3.921278,3.921278,5.545525,-5.684342E-14 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,25,27,29,28,27,30,28,29,31,30,29,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,108,107,110,108,109,111,110,109 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallH, Model::RootNode + C: "OO",5557073925651709088,0 + + ;Geometry::, Model::Mesh rock_smallH + C: "OO",4843187381147427946,5557073925651709088 + + ;Material::dirt, Model::Mesh rock_smallH + C: "OO",3020,5557073925651709088 + + ;Material::grass, Model::Mesh rock_smallH + C: "OO",3024,5557073925651709088 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallH.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallH.fbx.import new file mode 100644 index 0000000..c90f9d4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallH.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b6ajpxrx5rrf8" +path="res://.godot/imported/rock_smallH.fbx-bc7ff87f5b345b7c7b88c5df287e07d4.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallH.fbx" +dest_files=["res://.godot/imported/rock_smallH.fbx-bc7ff87f5b345b7c7b88c5df287e07d4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallI.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallI.fbx new file mode 100644 index 0000000..df593e4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallI.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 510 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallI.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallI.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5315805381572961519, "Model::rock_smallI", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5437120733825996296, "Geometry::", "Mesh" { + Vertices: *252 { + a: 0.923463,2.77816,-0.5331617,0.923463,2.77816,0.5331617,0,2.77816,-1.066323,0,2.77816,1.066323,-0.923463,2.77816,-0.5331617,-0.923463,2.77816,0.5331617,0,0,1.69576,-1.468571,0,0.8478799,0,0.6494399,2.068827,-1.791657,0.6494399,1.034414,-1.791657,0.6494399,-1.034414,0,0.6494399,-2.068827,-1.565192,2.05656,-0.9036636,0,2.05656,-1.807327,0,0,-1.69576,1.468571,0,-0.8478799,0,0.6494399,-2.068827,1.791657,0.6494399,-1.034414,0,2.05656,-1.807327,0,2.77816,-1.066323,-1.565192,2.05656,-0.9036636,-0.923463,2.77816,-0.5331617,1.791657,0.6494399,-1.034414,1.468571,0,-0.8478799,1.791657,0.6494399,1.034414,1.468571,0,0.8478799,1.565192,2.05656,0.9036636,0,2.05656,1.807327,0.923463,2.77816,0.5331617,0,2.77816,1.066323,0,0.6494399,-2.068827,1.791657,0.6494399,-1.034414,0,2.05656,-1.807327,1.565192,2.05656,-0.9036636,1.468571,0,0.8478799,1.468571,0,-0.8478799,0,0,1.69576,0,0,-1.69576,-1.468571,0,0.8478799,-1.468571,0,-0.8478799,1.791657,0.6494399,-1.034414,1.791657,0.6494399,1.034414,1.565192,2.05656,-0.9036636,1.565192,2.05656,0.9036636,-1.468571,0,-0.8478799,0,0,-1.69576,-1.791657,0.6494399,-1.034414,0,0.6494399,-2.068827,0,2.77816,1.066323,0,2.05656,1.807327,-0.923463,2.77816,0.5331617,-1.565192,2.05656,0.9036636,1.468571,0,0.8478799,0,0,1.69576,1.791657,0.6494399,1.034414,0,0.6494399,2.068827,-1.791657,0.6494399,-1.034414,-1.791657,0.6494399,1.034414,-1.468571,0,-0.8478799,-1.468571,0,0.8478799,1.565192,2.05656,-0.9036636,0.923463,2.77816,-0.5331617,0,2.05656,-1.807327,0,2.77816,-1.066323,1.791657,0.6494399,1.034414,0,0.6494399,2.068827,1.565192,2.05656,0.9036636,0,2.05656,1.807327,1.565192,2.05656,-0.9036636,1.565192,2.05656,0.9036636,0.923463,2.77816,-0.5331617,0.923463,2.77816,0.5331617,-1.565192,2.05656,-0.9036636,-0.923463,2.77816,-0.5331617,-1.565192,2.05656,0.9036636,-0.923463,2.77816,0.5331617,0,0.6494399,2.068827,-1.791657,0.6494399,1.034414,0,2.05656,1.807327,-1.565192,2.05656,0.9036636,-1.791657,0.6494399,-1.034414,-1.565192,2.05656,-0.9036636,-1.791657,0.6494399,1.034414,-1.565192,2.05656,0.9036636 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,37,-37,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.7472517,0.6645409,0,0.7472517,0.6645409,0,0.7472517,0.6645409,0,0.7472517,0.6645409,0,0.7472517,0.6645409,0,0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: -3.635681,-2.099062,-3.635681,2.099062,0,-4.198123,0,4.198123,3.635681,-2.099062,3.635681,2.099062,3.33811,2.575262,-3.33811,2.575263,4.072495,5.431036,-4.072493,5.431036,4.072493,1.403538,-4.072495,1.403538,3.557731,7.014669,-3.557731,7.014669,3.33811,2.575262,-3.33811,2.575263,4.072495,5.431036,-4.072493,5.431036,-3.55773,1.955254,-2.099061,5.757111,3.557732,1.955254,2.099061,5.757111,4.072495,5.431034,3.33811,2.575261,-4.072495,5.431034,-3.33811,2.575261,3.557732,1.955254,-3.55773,1.955254,2.099061,5.757111,-2.099061,5.757111,4.072495,1.403538,-4.072493,1.403538,3.557731,7.014669,-3.557731,7.014669,5.781776,3.33811,5.781776,-3.33811,0,6.67622,0,-6.67622,-5.781776,3.33811,-5.781776,-3.33811,4.072495,1.403539,-4.072495,1.403539,3.557731,7.014671,-3.557731,7.014671,3.33811,2.575263,-3.33811,2.575262,4.072493,5.431036,-4.072495,5.431036,2.099061,5.757111,3.55773,1.955254,-2.099061,5.757111,-3.557732,1.955254,3.33811,2.575263,-3.33811,2.575262,4.072493,5.431036,-4.072495,5.431036,-4.072495,5.431034,4.072495,5.431034,-3.33811,2.575261,3.33811,2.575261,-3.557732,1.955254,-2.099061,5.757111,3.55773,1.955254,2.099061,5.757111,4.072493,1.403538,-4.072495,1.403538,3.557731,7.014669,-3.557731,7.014669,3.557731,1.955253,-3.557731,1.955253,2.099062,5.75711,-2.099062,5.75711,-3.557731,1.955253,-2.099062,5.75711,3.557731,1.955253,2.099062,5.75711,4.072495,1.403538,-4.072493,1.403538,3.557731,7.014669,-3.557731,7.014669,-4.072495,1.403539,-3.557731,7.014671,4.072495,1.403539,3.557731,7.014671 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,37,36,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallI, Model::RootNode + C: "OO",5315805381572961519,0 + + ;Geometry::, Model::Mesh rock_smallI + C: "OO",5437120733825996296,5315805381572961519 + + ;Material::grass, Model::Mesh rock_smallI + C: "OO",3024,5315805381572961519 + + ;Material::dirt, Model::Mesh rock_smallI + C: "OO",3020,5315805381572961519 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallI.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallI.fbx.import new file mode 100644 index 0000000..cab0579 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallI.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://tigbf0xybuko" +path="res://.godot/imported/rock_smallI.fbx-9cb0ab1f20da83f06d86f2c00055772d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallI.fbx" +dest_files=["res://.godot/imported/rock_smallI.fbx-9cb0ab1f20da83f06d86f2c00055772d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopA.fbx new file mode 100644 index 0000000..eeb5bf0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 598 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallTopA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallTopA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5321205509581151168, "Model::rock_smallTopA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5074164354430159727, "Geometry::", "Mesh" { + Vertices: *252 { + a: 2.438671,0,-0.2648371,1.02626,0,2.445732,2.255771,0.65,-0.2449743,1.674127,1.3,0.5401204,0.8723209,1.3,2.078872,0.1582159,1.3,1.247473,-1.327146,1.3,0.9982982,0.04190464,2.2,0.9702861,-1.101824,2.2,0.778421,-0.7537457,2.2,-0.6271417,-0.2129613,1.618934,-1.064624,0.2913566,2.2,-0.3499064,-0.2010239,1.3,-1.162852,0.8541978,1.3,-0.08819062,-0.2129613,1.618934,-1.064624,0.2913566,2.2,-0.3499064,0.5778107,2.2,-0.05817528,-2.255771,0.65,-1.001803,-1.783664,1.3,-1.064624,-2.025242,1.3,-0.6010098,1.02626,0,2.445732,-1.988104,0,1.940061,0.8723209,1.3,2.078872,-1.783664,0.8912079,1.740561,0.09940387,1.3,1.949212,-1.741645,1.3,1.301784,0.09940387,1.3,1.949212,-1.783664,0.8912079,1.740561,-2.438671,0,-1.08303,-2.255771,0.65,-1.001803,-1.988104,0,1.940061,-2.025242,1.3,-0.6010098,-1.741645,1.3,1.301784,-1.783664,0.8912079,1.740561,-1.549169,1.3,-0.4913646,-0.2010239,1.3,-1.162852,-1.272781,2.2,-0.3686193,-0.2129613,1.618934,-1.064624,-0.7537457,2.2,-0.6271417,2.438671,0,-0.2648371,0.297226,0,-2.445732,1.02626,0,2.445732,-1.988104,0,1.940061,-2.438671,0,-1.08303,-2.438671,0,-1.08303,0.297226,0,-2.445732,-2.255771,0.65,-1.001803,0.2526421,1.3,-2.078872,-1.783664,1.3,-1.064624,1.674127,1.3,-0.6312008,2.255771,0.65,-0.2449743,1.674127,1.3,0.5401204,-1.549169,1.3,-0.4913646,-1.272781,2.2,-0.3686193,-1.327146,1.3,0.9982982,-1.101824,2.2,0.778421,0.8541978,1.3,-0.08819062,0.1582159,1.3,1.247473,0.5778107,2.2,-0.05817528,0.04190464,2.2,0.9702861,0.297226,0,-2.445732,2.438671,0,-0.2648371,0.2526421,1.3,-2.078872,1.674127,1.3,-0.6312008,2.255771,0.65,-0.2449743,1.674127,1.3,-0.6312008,1.674127,1.3,0.5401204,0.2526421,1.3,-2.078872,0.8541978,1.3,-0.08819062,0.8723209,1.3,2.078872,-0.2010239,1.3,-1.162852,-1.783664,1.3,-1.064624,-1.549169,1.3,-0.4913646,-1.741645,1.3,1.301784,-2.025242,1.3,-0.6010098,0.09940387,1.3,1.949212,0.1582159,1.3,1.247473,-1.327146,1.3,0.9982982,0.5778107,2.2,-0.05817528,0.04190464,2.2,0.9702861,0.2913566,2.2,-0.3499064,-0.7537457,2.2,-0.6271417,-1.101824,2.2,0.778421,-1.272781,2.2,-0.3686193 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,8,6,-8,9,11,-11,12,14,-14,15,13,-15,16,13,-16,17,19,-19,20,22,-22,23,21,-23,24,23,-23,25,27,-27,28,30,-30,31,29,-31,32,31,-31,33,32,-31,34,36,-36,37,35,-37,38,37,-37,39,41,-41,42,40,-42,43,40,-43,44,46,-46,47,45,-47,48,47,-47,49,51,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,61,-64,65,67,-67,68,66,-68,69,66,-69,70,68,-68,71,70,-68,72,70,-72,73,72,-72,74,73,-72,69,68,-76,76,75,-69,77,75,-77,73,75,-78,72,73,-78,78,80,-80,81,79,-81,82,79,-82,83,82,-82 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,0.1843795,0.6949061,-0.6950609,0.1843795,0.6949061,-0.6950609,0.1843795,0.6949061,-0.6950609,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,-0.7606292,0.5141532,-0.3963454,-0.7606292,0.5141532,-0.3963454,-0.7606292,0.5141532,-0.3963454,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.2291728,0.723041,0.6516837,-0.2291728,0.723041,0.6516837,-0.2291728,0.723041,0.6516837,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,0.7452043,0.6668363,0,0.7452043,0.6668363,0,0.7452043,0.6668363,0,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: 5.361349,-1.840718,-6.67205,-1.840718,4.959248,0.788295,1.159948,3.417308,-5.671242,3.417308,1.42685,3.637339,-4.502744,3.637339,0.7946978,7.319188,-3.77109,7.319188,3.501374,5.098759,1.885097,1.917477,-0.7555098,5.098759,3.821153,4.351148,-2.108443,4.351148,3.57814,5.643183,0.1792819,7.997142,-1.430386,7.997142,0.6061997,-2.791605,-0.4720424,0.1920255,1.586143,0.1920255,5.577735,-2.211111,-6.455666,-2.211111,4.741074,3.075519,-5.79182,1.413109,1.655574,3.075519,-4.768304,-1.604942,2.91504,-1.604942,-4.351282,-3.934712,-5.632643,-2.230505,-5.210196,0.4135599,6.400755,-2.230506,-3.515717,3.057625,4.058345,3.057626,5.742554,1.394744,4.596894,3.838712,-1.332703,3.838711,3.838336,7.49893,-1.118218,5.135788,1.555444,7.49893,9.601068,-1.042666,1.170181,-9.628866,4.040394,9.628866,-7.827181,7.638035,-9.601068,-4.263897,6.693023,-1.869629,-5.340376,-1.869629,6.191046,0.7604969,-4.539319,3.390624,4.417042,3.390624,2.485043,-0.5811144,0.9644657,-4.015146,-2.126458,-0.5811144,-2.812462,3.355597,-2.174085,7.038678,3.117134,3.355597,2.391703,7.038678,1.861959,4.254876,-4.067636,4.254876,1.254329,7.913267,-3.311459,7.913267,6.050636,-1.644338,-5.982763,-1.644337,5.14304,3.598583,-2.844694,3.598583,-5.534056,0.977123,-6.591051,-2.485043,-6.591051,2.126458,-0.9946539,-8.184535,-3.362983,-0.3472072,-3.434334,8.184535,0.7914327,-4.578158,7.022299,-4.191433,6.09909,-1.934506,6.85687,5.125134,7.973394,-2.36618,-0.3913538,7.674063,-0.6228972,4.911311,5.224985,3.930308,-2.274845,-0.2290365,-0.1649789,3.820024,-1.147073,-1.377584,2.967503,-2.469062,4.33789,3.06465,5.010949,-1.451257 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,8,6,7,9,11,10,12,14,13,15,13,14,16,13,15,17,19,18,20,22,21,23,21,22,24,23,22,25,27,26,28,30,29,31,29,30,32,31,30,33,32,30,34,36,35,37,35,36,38,37,36,39,41,40,42,40,41,43,40,42,44,46,45,47,45,46,48,47,46,49,51,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,61,63,65,67,66,68,66,67,69,66,68,70,68,67,71,70,67,72,70,71,73,72,71,74,73,71,69,68,75,76,75,68,77,75,76,73,75,77,72,73,77,78,80,79,81,79,80,82,79,81,83,82,81 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallTopA, Model::RootNode + C: "OO",5321205509581151168,0 + + ;Geometry::, Model::Mesh rock_smallTopA + C: "OO",5074164354430159727,5321205509581151168 + + ;Material::dirt, Model::Mesh rock_smallTopA + C: "OO",3020,5321205509581151168 + + ;Material::grass, Model::Mesh rock_smallTopA + C: "OO",3024,5321205509581151168 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopA.fbx.import new file mode 100644 index 0000000..de6bf53 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://rcocuivjqonf" +path="res://.godot/imported/rock_smallTopA.fbx-62a433b5482b2c5f2bd65407b58375f7.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopA.fbx" +dest_files=["res://.godot/imported/rock_smallTopA.fbx-62a433b5482b2c5f2bd65407b58375f7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopB.fbx new file mode 100644 index 0000000..c4b7615 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 687 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_smallTopB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_smallTopB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5001546217247131871, "Model::rock_smallTopB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4727287818141238900, "Geometry::", "Mesh" { + Vertices: *360 { + a: -0.8725817,1.6,-0.2403352,0.4830386,1.6,-0.6251042,-0.7892283,1.954933,-0.1800836,0.3988329,2.8,-0.3175108,-0.2667954,2.8,-0.1285839,0.5958598,1.9,-1.399178,0.7173277,1.6,-1.38784,0.2978266,1.9,-1.082369,0.3145802,1.6,-0.9597207,-2.960467,0,-2.139954,-2.320917,1.329415,-1.67766,-3.110718,0,1.85416,-2.212797,1.6,-0.9973733,-2.272047,1.6,0.577666,-2.914399,0.3883719,1.737143,0.3145802,1.6,-0.9597207,-0.217041,1.6,-1.21046,0.2978266,1.9,-1.082369,-0.09557308,1.9,-1.267917,-0.1428535,1.6,-1.793545,0.4346181,1.6,-1.903172,-0.04067433,1.9,-1.699399,0.3866547,1.9,-1.780523,2.516654,1.175221,0.07144932,3.110718,0,0.08831516,1.922125,1.6,0.5487938,0.6414808,0,3.231307,0.4746958,1.6,2.391167,-0.7892283,1.954933,-0.1800836,-0.2667954,2.8,-0.1285839,-0.6034299,2.8,0.2999044,0.397327,1.6,1.653366,-0.9255545,1.6,1.167837,0.3362634,2.8,1.345772,-0.6294401,2.8,0.991336,-0.8725817,1.6,-0.2403352,-0.7892283,1.954933,-0.1800836,-0.9255545,1.6,1.167837,-0.6034299,2.8,0.2999044,-0.6294401,2.8,0.991336,2.516654,1.175221,0.07144932,1.922125,1.6,0.5487938,1.107275,1.6,-1.71613,-0.1428535,1.6,-1.793545,-0.04067433,1.9,-1.699399,-0.217041,1.6,-1.21046,-0.09557308,1.9,-1.267917,1.119828,2.2,0.5410638,1.267885,1.6,0.5452672,0.6540173,2.8,0.9413164,0.397327,1.6,1.653366,0.3362634,2.8,1.345772,0.7793301,2.8,0.2498905,1.119828,2.2,0.5410638,0.6540173,2.8,0.9413164,-2.272047,1.6,0.577666,-1.555635,1.6,1.645987,-2.914399,0.3883719,1.737143,-2.960467,0,-2.139954,0.8845916,0,-3.231307,-2.320917,1.329415,-1.67766,0.6545978,1.6,-2.391167,-0.2667954,1.6,-2.129646,0.4830386,1.6,-0.6251042,1.267885,1.6,0.5452672,0.3988329,2.8,-0.3175108,0.7793301,2.8,0.2498905,1.119828,2.2,0.5410638,3.110718,0,0.08831516,0.8845916,0,-3.231307,0.6414808,0,3.231307,-2.960467,0,-2.139954,-3.110718,0,1.85416,0.6414808,0,3.231307,-3.110718,0,1.85416,0.4746958,1.6,2.391167,-2.914399,0.3883719,1.737143,-1.555635,1.6,1.645987,-0.2667954,1.6,-2.129646,-2.212797,1.6,-0.9973733,-2.320917,1.329415,-1.67766,0.8845916,0,-3.231307,3.110718,0,0.08831516,0.6545978,1.6,-2.391167,1.107275,1.6,-1.71613,2.516654,1.175221,0.07144932,0.4346181,1.6,-1.903172,0.7173277,1.6,-1.38784,0.3866547,1.9,-1.780523,0.5958598,1.9,-1.399178,0.5958598,1.9,-1.399178,0.2978266,1.9,-1.082369,0.3866547,1.9,-1.780523,-0.04067433,1.9,-1.699399,-0.09557308,1.9,-1.267917,1.107275,1.6,-1.71613,0.7173277,1.6,-1.38784,0.6545978,1.6,-2.391167,0.4346181,1.6,-1.903172,-0.2667954,1.6,-2.129646,-0.1428535,1.6,-1.793545,-0.217041,1.6,-1.21046,0.4830386,1.6,-0.6251042,1.267885,1.6,0.5452672,1.922125,1.6,0.5487938,0.3145802,1.6,-0.9597207,-0.8725817,1.6,-0.2403352,-2.212797,1.6,-0.9973733,-0.9255545,1.6,1.167837,-1.555635,1.6,1.645987,-2.272047,1.6,0.577666,0.4746958,1.6,2.391167,0.397327,1.6,1.653366,0.7793301,2.8,0.2498905,0.6540173,2.8,0.9413164,0.3988329,2.8,-0.3175108,0.3362634,2.8,1.345772,-0.2667954,2.8,-0.1285839,-0.6294401,2.8,0.991336,-0.6034299,2.8,0.2999044 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,12,-12,14,13,-12,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,26,-26,28,30,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,38,-38,40,42,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,50,-50,52,54,-54,55,57,-57,58,60,-60,61,59,-61,62,61,-61,63,65,-65,66,64,-66,67,64,-67,68,70,-70,71,69,-71,72,71,-71,73,75,-75,76,74,-76,77,76,-76,78,80,-80,81,83,-83,84,82,-84,85,82,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,91,-94,95,97,-97,98,96,-98,99,98,-98,100,98,-100,101,100,-100,96,102,-96,102,103,-96,104,95,-104,105,102,-97,106,102,-106,101,106,-106,99,106,-102,107,106,-100,108,106,-108,109,108,-108,110,109,-108,104,103,-112,112,111,-104,109,111,-113,108,109,-113,113,115,-115,116,114,-116,117,116,-116,118,116,-118,119,118,-118 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: -0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,-0.6965812,0.4639876,-0.5472571,-0.6965812,0.4639876,-0.5472571,-0.6965812,0.4639876,-0.5472571,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,0.4776265,0.8615949,-0.1718353,0.4776265,0.8615949,-0.1718353,0.4776265,0.8615949,-0.1718353,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.8269091,0.5419971,0.1498675,0.8269091,0.5419971,0.1498675,0.8269091,0.5419971,0.1498675,-0.5951726,0.6974759,0.3991205,-0.5951726,0.6974759,0.3991205,-0.5951726,0.6974759,0.3991205,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.1952272,0.9215776,-0.3355309,-0.1952272,0.9215776,-0.3355309,-0.1952272,0.9215776,-0.3355309,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: 3.046463,5.732485,-2.501442,5.732485,2.795539,7.165542,-1.851862,10.57753,0.8722359,10.57753,5.619627,7.753803,5.914789,6.513412,3.907179,7.753803,3.600673,6.513412,-7.980917,-5.297194,-6.256801,0.5400825,7.755063,-5.297194,-3.596401,1.728183,2.608927,1.728183,7.265637,-3.591907,-0.4916535,7.243039,-2.805768,7.243039,-0.7572936,8.492819,-2.46974,8.49282,-0.7644276,3.449879,-3.078543,3.449879,-1.090519,4.709991,-2.802964,4.709991,5.89984,1.28793,7.292515,-3.706346,2.976025,3.093092,-8.44347,-3.706346,-6.248167,3.093092,1.362057,5.48105,0.2508249,9.236839,2.396133,9.236839,3.711281,4.934833,-1.836624,4.934833,3.068343,9.775389,-0.9816271,9.775389,-0.8163926,5.310972,-0.5916854,6.748373,4.731514,5.310972,1.269198,10.17071,3.993295,10.17071,-3.618845,-5.602094,-4.594814,-2.307434,4.881736,-2.307434,-6.933746,5.381534,-6.61683,6.643984,-4.619629,5.381534,-4.904388,6.643984,1.048598,7.565243,1.395691,5.15701,-1.32348,9.973475,-4.152214,5.15701,-3.348464,9.973475,-0.4208843,7.532629,-1.309797,4.721753,-3.18738,7.532629,-3.093144,-1.551125,1.971011,-1.551125,-0.7103475,-8.207745,8.912059,-4.766684,-6.823925,-4.766683,6.986785,1.007371,-5.049704,2.182604,-1.278883,2.182604,0.9848137,5.594167,-4.56309,5.594167,0.1636723,10.41311,-2.525977,10.41311,-4.224694,8.003637,12.24692,0.3476975,3.482644,-12.72168,2.525515,12.72168,-11.65538,-8.425016,-12.24692,7.299842,6.754132,-4.602485,-8.981853,-4.602485,4.998057,2.323403,-8.415003,-2.921347,-3.516751,2.323403,-3.308748,-4.720161,5.555173,-4.720161,4.57615,-7.464396,8.62619,-3.799672,-7.109794,-3.799672,6.38338,3.012836,3.183507,3.012836,-5.752014,1.204204,5.746207,4.340561,3.432091,4.340561,5.413682,5.586856,3.701238,5.586855,-2.345905,-5.508575,-1.172546,-4.261295,-1.522263,-7.009933,0.1601351,-6.690547,0.376272,-4.991799,-4.35935,-6.756417,-2.824125,-5.463937,-2.577157,-9.414043,-1.711095,-7.492803,1.050376,-8.384434,0.5624154,-7.061201,0.8544921,-4.76559,-1.901727,-2.46104,-4.991673,2.146721,-7.567421,2.160605,-1.238505,-3.778428,3.435361,-0.9462016,8.711799,-3.926666,3.643915,4.597784,6.124547,6.480264,8.945067,2.274276,-1.868881,9.414043,-1.56428,6.509315,-3.068229,0.9838209,-2.574871,3.70597,-1.570208,-1.250043,-1.323872,5.298315,1.050376,-0.5062358,2.478111,3.902898,2.375708,1.180726 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,12,11,14,13,11,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,26,25,28,30,29,31,33,32,34,32,33,35,37,36,38,36,37,39,38,37,40,42,41,43,45,44,46,44,45,47,49,48,50,48,49,51,50,49,52,54,53,55,57,56,58,60,59,61,59,60,62,61,60,63,65,64,66,64,65,67,64,66,68,70,69,71,69,70,72,71,70,73,75,74,76,74,75,77,76,75,78,80,79,81,83,82,84,82,83,85,82,84,86,88,87,89,87,88,90,92,91,93,91,92,94,91,93,95,97,96,98,96,97,99,98,97,100,98,99,101,100,99,96,102,95,102,103,95,104,95,103,105,102,96,106,102,105,101,106,105,99,106,101,107,106,99,108,106,107,109,108,107,110,109,107,104,103,111,112,111,103,109,111,112,108,109,112,113,115,114,116,114,115,117,116,115,118,116,117,119,118,117 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_smallTopB, Model::RootNode + C: "OO",5001546217247131871,0 + + ;Geometry::, Model::Mesh rock_smallTopB + C: "OO",4727287818141238900,5001546217247131871 + + ;Material::dirt, Model::Mesh rock_smallTopB + C: "OO",3020,5001546217247131871 + + ;Material::grass, Model::Mesh rock_smallTopB + C: "OO",3024,5001546217247131871 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopB.fbx.import new file mode 100644 index 0000000..38912a5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cibyykl1npnkn" +path="res://.godot/imported/rock_smallTopB.fbx-9ae9e533f8fc41130fbbc43162369246.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_smallTopB.fbx" +dest_files=["res://.godot/imported/rock_smallTopB.fbx-9ae9e533f8fc41130fbbc43162369246.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallA.fbx new file mode 100644 index 0000000..acadd38 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallA.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 794 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5756590780254432195, "Model::rock_tallA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5204243813497425680, "Geometry::", "Mesh" { + Vertices: *762 { + a: -0.3812444,0.917904,1.794098,-0.8908346,0.917904,2.08831,-0.7526187,1.507985,1.530524,-1.074812,1.507985,1.716542,-0.3431457,6.79249,-2.305065,-0.1146404,9.959259,-2.152806,0.3119645,6.79249,-0.03228961,0.4291009,9.959259,-0.2664027,-1.907561,1.507985,0.4869801,-2.3234,1.507985,0.294888,-1.783385,3.229055,0.2132942,-2.238589,3.229055,0.003017875,0.127458,0,2.16427,-2.040694,0,3.416054,-0.3812444,0.917904,1.794098,-2.040694,0.917904,2.752182,-0.8908346,0.917904,2.08831,-0.3812444,0.917904,1.794098,-2.040694,0.917904,2.752182,-1.665357,4.864892,-1.765871,0.4908301,4.864892,-3.010746,-1.363491,6.79249,-1.715968,0.4908301,6.79249,-2.786561,-0.3431457,6.79249,-2.305065,-4.340413,0.917904,-1.23105,-3.972459,1.507985,-1.07172,-4.340413,0.917904,-0.4736091,-3.972459,1.507985,-0.4354705,-2.040694,0,-3.222666,-0.9424118,0,-2.588572,-2.040694,0.917904,-2.558794,-1.451114,0.917904,-2.2184,2.826877,2.311707,0.8327516,3.218279,2.311707,1.224154,2.051158,0,1.473208,3.111345,0,2.533396,4.254525,0,-1.074604,4.915344,0,1.238939,3.499117,2.311707,-0.07321613,3.758886,2.311707,0.8362427,-4.915344,0,-1.562985,-4.340413,0.917904,-1.23105,-4.915344,0,1.756374,-4.340413,0.917904,-0.4736091,-4.340413,0.917904,1.424438,0.4908301,0,2.374064,0.127458,0,2.16427,0.4908301,4.864892,1.968755,-0.3812444,0.917904,1.794098,-0.7526187,1.507985,1.530524,-1.907561,1.507985,0.863717,-1.665357,4.864892,0.7238802,0.4908301,4.864892,-3.010746,2.647018,4.864892,-1.765871,0.4908301,6.79249,-2.786561,2.345152,6.79249,-1.715968,-3.972459,1.507985,-1.07172,-3.39293,3.229055,-0.9536081,-3.972459,1.507985,-0.4354705,-3.39293,3.229055,-0.508233,2.345152,6.79249,-0.6453752,0.3119645,6.79249,-0.03228961,2.116647,9.959259,-0.775264,0.4291009,9.959259,-0.2664027,-2.217877,0.917904,-0.4736091,-2.189528,1.507985,-0.4354705,-2.536621,0.917904,1.26534,-2.3234,1.507985,0.294888,-2.457273,1.507985,1.025247,0.4908301,0,-3.416054,2.998025,0,-1.968525,0.4908301,4.864892,-3.010746,2.647018,4.864892,-1.765871,2.831233,2.311707,0.8302369,2.826877,2.311707,0.8327516,2.647018,4.864892,0.7238802,0.4908301,4.864892,1.968755,0.4908301,0,2.374064,2.051158,0,1.473208,0.2828467,4.864892,0.1918952,-1.665357,4.864892,-0.5209952,0.3119645,6.79249,-0.03228961,-1.363491,6.79249,-0.6453752,-2.189528,1.507985,-0.4354705,-3.972459,1.507985,-0.4354705,-2.144878,3.229055,-0.508233,-3.39293,3.229055,-0.508233,-0.9424118,0,-2.588572,0.4908301,0,-3.416054,-1.451114,0.917904,-2.2184,0.4908301,4.864892,-3.010746,-1.7305,1.507985,-2.007934,-1.85148,2.285268,-1.873328,-1.665357,4.864892,-1.765871,4.915344,0,1.238939,3.111345,0,2.533396,3.758886,2.311707,0.8362427,3.218279,2.311707,1.224154,2.647018,4.864892,-1.765871,2.647018,4.864892,-0.5209952,2.345152,6.79249,-1.715968,2.345152,6.79249,-0.6453752,-4.915344,0,-1.562985,-2.040694,0,-3.222666,-4.340413,0.917904,-1.23105,-2.040694,0.917904,-2.558794,2.647018,4.864892,-0.5209952,0.2828467,4.864892,0.1918952,2.345152,6.79249,-0.6453752,0.3119645,6.79249,-0.03228961,-1.85148,2.285268,-1.873328,-1.665357,4.864892,-1.765871,-1.783385,3.229055,-1.585764,-1.665357,4.864892,-0.5209952,-1.783385,3.229055,0.2132942,-1.665357,4.864892,0.7238802,-1.907561,1.507985,0.4869801,-1.907561,1.507985,0.863717,-2.040694,0.917904,-2.558794,-1.451114,0.917904,-2.2184,-2.040694,1.507985,-2.187025,-1.7305,1.507985,-2.007934,-2.040694,0,3.416054,-4.915344,0,1.756374,-2.040694,0.917904,2.752182,-4.340413,0.917904,1.424438,2.345152,6.79249,-1.715968,2.345152,6.79249,-0.6453752,2.116647,9.959259,-1.663856,2.116647,9.959259,-0.775264,-1.665357,4.864892,-1.765871,-1.363491,6.79249,-1.715968,-1.665357,4.864892,-0.5209952,-1.363491,6.79249,-0.6453752,-3.972459,1.507985,-1.07172,-2.040694,1.507985,-2.187025,-3.39293,3.229055,-0.9536081,-2.040694,3.229055,-1.734322,2.998025,0,-1.968525,2.998025,0,-1.074604,2.647018,4.864892,-1.765871,2.647018,4.864892,-0.5209952,2.831233,2.311707,-0.07321613,2.647018,4.864892,0.7238802,2.831233,2.311707,0.8302369,0.4908301,6.79249,-2.786561,2.345152,6.79249,-1.715968,0.5775596,9.959259,-2.552448,2.116647,9.959259,-1.663856,-4.340413,0.917904,-1.23105,-2.040694,0.917904,-2.558794,-3.972459,1.507985,-1.07172,-2.040694,1.507985,-2.187025,-0.8908346,0.917904,2.08831,-2.536621,0.917904,1.26534,-1.074812,1.507985,1.716542,-2.457273,1.507985,1.025247,2.998025,0,-1.074604,4.254525,0,-1.074604,2.831233,2.311707,-0.07321613,3.499117,2.311707,-0.07321613,-0.3431457,6.79249,-2.305065,0.4908301,6.79249,-2.786561,-0.1146404,9.959259,-2.152806,0.5775596,9.959259,-2.552448,-2.040694,1.507985,-2.187025,-1.7305,1.507985,-2.007934,-2.040694,3.229055,-1.734322,-1.85148,2.285268,-1.873328,-1.783385,3.229055,-1.585764,-2.144878,3.229055,-0.508233,-2.238589,3.229055,0.003017875,-2.189528,1.507985,-0.4354705,-2.3234,1.507985,0.294888,-2.217877,0.917904,-0.4736091,-4.340413,0.917904,-0.4736091,-2.189528,1.507985,-0.4354705,-3.972459,1.507985,-0.4354705,0.3119645,6.79249,-0.03228961,-1.363491,6.79249,-0.6453752,-0.3431457,6.79249,-2.305065,-1.363491,6.79249,-1.715968,2.647018,4.864892,-0.5209952,2.647018,4.864892,0.7238802,0.2828467,4.864892,0.1918952,0.4908301,4.864892,1.968755,-1.665357,4.864892,0.7238802,-1.665357,4.864892,-0.5209952,-2.040694,3.229055,-1.734322,-2.144878,3.229055,-0.508233,-3.39293,3.229055,-0.9536081,-3.39293,3.229055,-0.508233,-1.783385,3.229055,0.2132942,-1.783385,3.229055,-1.585764,-2.238589,3.229055,0.003017875,2.116647,9.959259,-1.663856,2.116647,9.959259,-0.775264,0.5775596,9.959259,-2.552448,0.4291009,9.959259,-0.2664027,-0.1146404,9.959259,-2.152806,3.758886,2.311707,0.8362427,3.218279,2.311707,1.224154,3.499117,2.311707,-0.07321613,2.831233,2.311707,-0.07321613,2.831233,2.311707,0.8302369,2.826877,2.311707,0.8327516,-2.217877,0.917904,-0.4736091,-2.536621,0.917904,1.26534,-4.340413,0.917904,-0.4736091,-4.340413,0.917904,1.424438,-2.040694,0.917904,2.752182,-0.8908346,0.917904,2.08831,-1.907561,1.507985,0.4869801,-1.907561,1.507985,0.863717,-2.3234,1.507985,0.294888,-2.457273,1.507985,1.025247,-1.074812,1.507985,1.716542,-0.7526187,1.507985,1.530524,4.915344,0,1.238939,4.254525,0,-1.074604,3.111345,0,2.533396,2.998025,0,-1.074604,3.111345,0,2.533396,4.254525,0,-1.074604,2.051158,0,1.473208,3.111345,0,2.533396,2.998025,0,-1.074604,2.998025,0,-1.968525,2.051158,0,1.473208,2.998025,0,-1.074604,0.4908301,0,-3.416054,2.051158,0,1.473208,2.998025,0,-1.968525,0.4908301,0,2.374064,2.051158,0,1.473208,0.4908301,0,-3.416054,0.127458,0,2.16427,0.4908301,0,2.374064,0.4908301,0,-3.416054,-0.9424118,0,-2.588572,0.127458,0,2.16427,0.4908301,0,-3.416054,-2.040694,0,3.416054,0.127458,0,2.16427,-0.9424118,0,-2.588572,-2.040694,0,-3.222666,-2.040694,0,3.416054,-0.9424118,0,-2.588572,-4.915344,0,1.756374,-2.040694,0,3.416054,-2.040694,0,-3.222666,-4.915344,0,-1.562985,-4.915344,0,1.756374,-2.040694,0,-3.222666 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,21,-21,22,20,-22,23,22,-22,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,43,-43,45,47,-47,48,46,-48,49,48,-48,50,49,-48,51,50,-48,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,67,-67,69,71,-71,72,70,-72,73,75,-75,75,76,-75,76,77,-75,78,74,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,90,-90,92,90,-92,93,90,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,113,-113,115,113,-115,116,115,-115,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,139,-142,143,142,-142,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,168,-168,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,185,-185,187,186,-185,188,190,-190,191,189,-191,189,192,-189,193,188,-193,194,192,-190,195,197,-197,198,196,-198,199,198,-198,200,202,-202,203,201,-203,204,201,-204,205,201,-205,206,208,-208,208,209,-208,209,210,-208,211,207,-211,212,214,-214,214,215,-214,215,216,-214,217,213,-217,218,220,-220,221,223,-223,224,226,-226,227,229,-229,230,232,-232,233,235,-235,236,238,-238,239,241,-241,242,244,-244,245,247,-247,248,250,-250,251,253,-253 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: 0.4178036,0.5493274,0.7236571,0.4093248,0.5742933,0.7089715,0.4191375,0.5452476,0.7259675,0.4093248,0.5742933,0.7089715,0.4191375,0.5452476,0.7259675,0.4093248,0.5742933,0.7089715,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,0.4237418,0.5308219,0.7339422,0.4178036,0.5493274,0.7236571,0.4237418,0.5308219,0.7339422,0.4237418,0.5308219,0.7339422,0.4237418,0.5308219,0.7339422,0.4178036,0.5493274,0.7236571,0.4191375,0.5452476,0.7259675,0.4237418,0.5308219,0.7339422,0.4178036,0.5493274,0.7236571,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,0,0.04223974,0.9991074,0,0.04223974,0.9991074,0,0.04223974,0.9991074,0,0.04223974,0.9991074,0,0.04223974,0.9991074,0,0.04223974,0.9991074,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0.9879589,0.1547166,0,0.9879589,0.1547166,0,0.9879589,0.1547166,0,0.9879589,0.1547166,0,0.9879589,0.1547166,0,0.9879589,0.1547166,0,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,0.9974068,0.07197005,0,0.9974068,0.07197005,0,0.9974068,0.07197005,0,0.9974068,0.07197005,0,0.9974068,0.07197005,0,0.9974068,0.07197005,0,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *508 { + a: -4.831561,-0.1235604,-7.148191,-0.1235606,-5.578932,2.714227,-7.043644,2.714228,-9.094213,26.7682,-8.269052,39.25534,0.2180203,26.7682,-0.5398997,39.25534,-6.013803,5.007306,-7.817199,5.007305,-6.021841,11.8857,-7.995955,11.8857,-3.825801,-4.050218,-13.68236,-4.050218,-4.831561,0.2139314,-12.37553,0.2139314,-7.148192,0.2139313,-4.831561,0.2139314,-12.37553,0.2139314,2.201993,18.1248,-7.600175,18.1248,1.270998,25.75217,-7.158866,25.75217,-3.367558,25.75217,-4.846652,-5.975325,-4.219371,-3.237515,-1.864603,-5.975325,-1.714451,-3.237515,13.30168,-3.700212,8.308812,-3.700212,11.99484,0.5639374,9.314572,0.5639371,10.18799,10.55796,12.36722,10.55796,9.81143,0.6395396,15.71431,0.6395398,-0.5323317,-6.863822,-10.00504,-6.863822,-3.506384,3.054598,-7.230127,3.054598,-6.153486,-10.27235,-4.846652,-6.008195,6.91486,-10.27235,-1.864603,-6.008195,5.608025,-6.008195,6.346863,-0.5129803,4.694949,-0.5129803,5.549012,18.68992,2.231818,3.110209,0.4467516,5.439403,-4.803694,5.439403,-4.253156,18.68992,4.253155,17.93114,-5.549014,17.93114,3.811847,25.55851,-4.618019,25.55851,-4.219371,0.6356249,-3.754363,7.785318,-1.714451,0.6356249,-2.000917,7.785318,9.573283,26.67995,1.21261,26.67995,8.859597,39.17004,1.920236,39.17004,-0.2597617,3.082698,-0.1321926,5.40988,6.700553,3.082698,2.79114,5.40988,5.714473,5.40988,5.051006,-0.9077113,-6.346866,-0.9077113,4.253155,18.29519,-5.549014,18.29519,8.018903,8.472823,7.999102,8.472823,7.600176,18.55086,-2.201992,18.55086,-2.999844,-0.652044,4.093507,-0.6520439,1.305372,18.99183,-6.862104,18.99183,1.109727,26.63031,-5.914302,26.63031,-8.620188,6.004069,-15.6396,6.004069,-8.444401,12.78599,-13.35799,12.78599,-1.882415,-0.7686482,-8.398026,-0.7686482,0.5807169,2.854541,-7.600174,18.43426,1.947597,5.183735,2.625058,8.251857,2.201994,18.43426,12.8792,-6.059711,4.137599,-6.059711,10.10429,3.85871,7.484682,3.85871,6.952247,17.31014,2.051162,17.31014,6.755781,24.9916,2.540847,24.9916,13.68236,-7.964961,0.6140153,-7.96496,12.37552,-3.70081,1.92085,-3.700811,10.56976,18.93328,0.8480433,18.93328,9.573283,26.56556,1.21261,26.56556,-7.375309,8.449223,-6.952247,18.63162,-6.243165,12.17458,-2.051163,18.63162,0.8397405,12.17458,2.849922,18.63162,1.917244,5.381101,3.40046,5.381101,11.99484,0.91772,9.314571,0.9177198,11.26301,3.564182,9.852849,3.564182,-0.2333301,-8.314967,-13.30167,-8.314967,-1.540165,-4.050818,-11.99484,-4.050817,6.755781,26.00825,2.540847,26.00825,6.550614,38.50826,3.05222,38.50826,-6.952247,17.90809,-6.755781,25.58955,-2.051162,17.90809,-2.540847,25.58955,11.4346,3.240239,2.652678,3.240239,9.691177,10.18969,3.543828,10.18969,7.750098,-0.8494094,4.230725,-0.8494094,6.952247,18.35349,2.051162,18.35349,0.2882527,8.275457,-2.849922,18.35349,-3.268649,8.275457,3.811847,26.18214,-4.618019,26.18214,3.055286,38.66551,-3.941503,38.66551,12.37552,-2.930389,1.920849,-2.930389,11.4346,-0.283928,2.652677,-0.2839278,0.5402331,-0.1562715,-6.704177,-0.1562714,-0.7622222,2.367136,-6.847526,2.367135,-11.80325,-1.681671,-16.7501,-1.681671,-11.14659,8.236751,-13.77605,8.236751,-3.367558,26.00039,-7.158866,26.00039,-3.846935,38.50558,-6.993721,38.50558,11.26302,5.024692,9.852851,5.024692,10.37187,11.97414,10.00037,8.163253,9.20212,11.97414,-0.4456569,12.55571,1.600675,12.55571,-0.1321914,5.778757,2.791141,5.778757,-8.731799,3.486007,-17.08824,3.486007,-8.620188,5.814009,-15.6396,5.814009,-1.228207,-0.1271245,5.368075,-2.540847,1.350967,-9.07506,5.368075,-6.755781,-10.42133,-2.051162,-10.42133,2.849922,-1.11357,0.7554932,-1.932402,7.751005,6.556524,2.849922,6.556524,-2.051162,8.03423,-6.828038,8.444401,-2.000917,13.35799,-3.754363,13.35799,-2.000917,7.021199,0.8397411,7.021199,-6.243164,8.813341,0.0118814,-8.333254,-6.550614,-8.333254,-3.05222,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-14.79877,3.292294,-12.67039,4.819504,-13.77605,-0.2882525,-11.14659,-0.2882525,-11.14659,3.268649,-11.12944,3.27855,8.731799,-1.864603,9.986698,4.981652,17.08824,-1.864603,17.08824,5.608025,8.03423,10.83536,3.507223,8.221695,7.510085,1.917244,7.510085,3.40046,9.147245,1.160977,9.674302,4.036405,4.231544,6.758039,2.963066,6.025684,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496,1.92085,-3.700811,12.37552,-3.70081,0.6140153,-7.96496 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,21,20,22,20,21,23,22,21,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,43,42,45,47,46,48,46,47,49,48,47,50,49,47,51,50,47,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,67,66,69,71,70,72,70,71,73,75,74,75,76,74,76,77,74,78,74,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,90,89,92,90,91,93,90,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,113,112,115,113,114,116,115,114,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,139,141,143,142,141,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,163,162,164,162,163,165,167,166,168,166,167,169,168,167,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,185,184,187,186,184,188,190,189,191,189,190,189,192,188,193,188,192,194,192,189,195,197,196,198,196,197,199,198,197,200,202,201,203,201,202,204,201,203,205,201,204,206,208,207,208,209,207,209,210,207,211,207,210,212,214,213,214,215,213,215,216,213,217,213,216,218,220,219,221,223,222,224,226,225,227,229,228,230,232,231,233,235,234,236,238,237,239,241,240,242,244,243,245,247,246,248,250,249,251,253,252 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallA, Model::RootNode + C: "OO",5756590780254432195,0 + + ;Geometry::, Model::Mesh rock_tallA + C: "OO",5204243813497425680,5756590780254432195 + + ;Material::dirt, Model::Mesh rock_tallA + C: "OO",3020,5756590780254432195 + + ;Material::grass, Model::Mesh rock_tallA + C: "OO",3024,5756590780254432195 + + ;Material::_defaultMat, Model::Mesh rock_tallA + C: "OO",3004,5756590780254432195 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallA.fbx.import new file mode 100644 index 0000000..1b6a8ea --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bakss60dswxmp" +path="res://.godot/imported/rock_tallA.fbx-8bfe4e80ed9b96aebb4d06bf5b8f3db5.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallA.fbx" +dest_files=["res://.godot/imported/rock_tallA.fbx-8bfe4e80ed9b96aebb4d06bf5b8f3db5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallB.fbx new file mode 100644 index 0000000..90b799d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallB.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 906 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4820235325886269420, "Model::rock_tallB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5120226883652537993, "Geometry::", "Mesh" { + Vertices: *906 { + a: -1.917444,3.211651,0.776363,-2.192105,3.211651,0.776363,-2.055423,4.525875,0.4990185,-2.347605,4.525875,0.4990185,-2.68504,1.967632,1.038892,1.172061,0,-3.7683,2.939981,0,-3.7683,1.348853,1.73184,-3.370378,2.763189,1.73184,-3.370378,2.670946,6.099324,-0.2989933,3.266266,-5.414336E-15,-0.2989933,1.615607,6.099324,1.528909,3.093284,-4.511946E-15,0.0006203122,2.284095,2.484108,0.9822246,1.792037,2.484108,1.834495,0.1186151,6.099324,-1.639817,0.2828816,8.837796,-1.355299,-0.4897795,6.099324,-0.5860467,-0.1612463,8.837796,-0.5860467,1.335404,6.099324,0.4677231,0.1186151,6.099324,0.4677231,1.171137,8.837796,0.1832053,0.2828816,8.837796,0.1832053,1.551506,1.73184,-2.914245,2.560536,1.73184,-2.914245,1.647364,3.68016,-2.698489,2.464678,3.68016,-2.698489,2.873335,3.68016,-1.778684,3.06505,1.73184,-1.778684,2.516489,3.68016,-0.975495,2.70753,1.73184,-0.9739767,-2.904344,0,-2.460769,-1.119607,0,-3.850187,-2.064731,1.76792,-1.903995,-0.9078308,1.76792,-2.804643,-1.703989,4.525875,-0.2989933,-1.550413,6.099324,-0.2989933,-1.594859,4.525875,-0.1099746,-0.4950735,6.099324,1.528909,-1.517063,3.211651,0.2469487,-0.635998,3.211651,1.772997,-3.823942,0,-1.505695,-3.10457,0,-1.713514,-2.868833,4.525875,-0.7874518,-2.145595,1.76792,-1.602207,-1.527445,1.76792,-1.780785,-1.44506,4.525875,-1.198766,0.2331741,0,3.529435,-2.214854,0,3.529435,-0.2074709,3.211651,2.766216,-1.774209,3.211651,2.766216,-0.7064554,1.76792,-2.49302,-0.5797861,1.76792,-2.49302,-0.4950735,6.099324,-2.126896,1.484263,3.68016,-2.331382,1.733667,3.68016,-2.331382,1.615607,6.099324,-2.126896,1.365716,1.73184,-2.496069,0.9604096,1.73184,-2.496069,0.3641428,-1.804779E-15,-2.642457,0.6718641,-2.707168E-15,-2.642457,-3.438868,0,1.409381,-2.557578,3.211651,1.409381,-2.214854,0,3.529435,-1.774209,3.211651,2.766216,1.335404,6.099324,-1.639817,1.943798,6.099324,-0.5860467,1.171137,8.837796,-1.355299,1.615265,8.837796,-0.5860467,-3.823942,0,-1.505695,-2.868833,4.525875,-0.7874518,-3.823942,0,-0.3498736,-2.868833,4.525875,-0.570265,3.093284,-4.511946E-15,0.0006203122,3.600569,-5.414336E-15,0.8356034,2.284095,2.484108,0.9822246,2.336455,2.484108,1.068408,1.615265,8.837796,-0.5860467,1.943798,6.099324,-0.5860467,1.171137,8.837796,0.1832053,1.335404,6.099324,0.4677231,3.600569,-5.414336E-15,0.8356034,3.090084,-5.414336E-15,3.614162,2.336455,2.484108,1.068408,2.071961,2.484108,2.508045,-1.527445,1.76792,-1.780785,-1.117665,1.76792,-1.780785,-1.44506,4.525875,-1.198766,-1.184505,4.525875,-1.198766,1.733667,3.68016,-2.331382,2.516489,3.68016,-0.975495,1.615607,6.099324,-2.126896,2.670946,6.099324,-0.2989933,2.70753,1.73184,-0.9739767,2.936577,1.73184,-0.5772536,3.209906,-3.609557E-15,-0.396613,3.266266,-5.414336E-15,-0.2989933,-0.7064554,1.76792,-2.49302,-0.4950735,6.099324,-2.126896,-1.117665,1.76792,-1.780785,-1.184505,4.525875,-1.198766,-1.550413,6.099324,-0.2989933,-1.703989,4.525875,-0.2989933,2.560536,1.73184,-2.914245,3.06505,1.73184,-1.778684,2.464678,3.68016,-2.698489,2.873335,3.68016,-1.778684,1.247873,2.484108,1.834495,1.516743,2.484108,2.563134,0.7582186,1.472947,1.919966,0.4526362,-2.707168E-15,3.149316,0.7112605,-5.414336E-15,3.850187,0.1186151,6.099324,-1.639817,1.335404,6.099324,-1.639817,0.2828816,8.837796,-1.355299,1.171137,8.837796,-1.355299,-2.868833,4.525875,-0.570265,-2.347605,4.525875,0.4990185,-3.823942,0,-0.3498736,-3.182681,0,0.9656523,-2.68504,1.967632,1.038892,3.090084,-5.414336E-15,3.614162,0.7112605,-5.414336E-15,3.850187,2.071961,2.484108,2.508045,1.516743,2.484108,2.563134,-2.904344,0,-2.460769,-2.064731,1.76792,-1.903995,-3.10457,0,-1.713514,-2.145595,1.76792,-1.602207,1.792037,2.484108,1.834495,1.247873,2.484108,1.834495,1.615607,6.099324,1.528909,0.3659638,3.211651,1.772997,-0.635998,3.211651,1.772997,-0.4950735,6.099324,1.528909,0.7582186,1.472947,1.919966,-0.4897795,6.099324,-0.5860467,-0.1612463,8.837796,-0.5860467,0.1186151,6.099324,0.4677231,0.2828816,8.837796,0.1832053,-1.119607,0,-3.850187,0.1982204,0,-3.497078,-0.9078308,1.76792,-2.804643,-0.6256052,1.76792,-2.729021,-3.182681,0,0.9656523,-2.68504,1.967632,1.038892,-3.438868,0,1.409381,-2.557578,3.211651,1.409381,-2.192105,3.211651,0.776363,2.939981,0,-3.7683,3.823942,0,-1.778684,2.763189,1.73184,-3.370378,3.470356,1.73184,-1.778684,1.172061,0,-3.7683,1.348853,1.73184,-3.370378,0.6718641,-2.707168E-15,-2.642457,0.9604096,1.73184,-2.496069,1.551506,1.73184,-2.914245,1.647364,3.68016,-2.698489,1.365716,1.73184,-2.496069,1.484263,3.68016,-2.331382,-1.594859,4.525875,-0.1099746,-1.517063,3.211651,0.2469487,-2.055423,4.525875,0.4990185,-1.917444,3.211651,0.776363,0.1982204,0,-3.497078,0.3641428,-1.804779E-15,-2.642457,-0.6256052,1.76792,-2.729021,-0.5797861,1.76792,-2.49302,3.470356,1.73184,-1.778684,3.823942,0,-1.778684,2.936577,1.73184,-0.5772536,3.209906,-3.609557E-15,-0.396613,0.3659638,3.211651,1.772997,0.7582186,1.472947,1.919966,-0.2074709,3.211651,2.766216,0.4526362,-2.707168E-15,3.149316,0.2331741,0,3.529435,-1.184505,4.525875,-1.198766,-1.703989,4.525875,-0.2989933,-1.44506,4.525875,-1.198766,-2.868833,4.525875,-0.7874518,-2.055423,4.525875,0.4990185,-2.347605,4.525875,0.4990185,-2.868833,4.525875,-0.570265,-1.594859,4.525875,-0.1099746,3.470356,1.73184,-1.778684,3.06505,1.73184,-1.778684,2.763189,1.73184,-3.370378,2.560536,1.73184,-2.914245,1.348853,1.73184,-3.370378,1.551506,1.73184,-2.914245,1.365716,1.73184,-2.496069,0.9604096,1.73184,-2.496069,2.936577,1.73184,-0.5772536,2.70753,1.73184,-0.9739767,2.670946,6.099324,-0.2989933,1.943798,6.099324,-0.5860467,1.615607,6.099324,-2.126896,1.335404,6.099324,-1.639817,-0.4950735,6.099324,-2.126896,0.1186151,6.099324,-1.639817,-0.4897795,6.099324,-0.5860467,1.615607,6.099324,1.528909,1.335404,6.099324,0.4677231,-0.4950735,6.099324,1.528909,0.1186151,6.099324,0.4677231,-1.550413,6.099324,-0.2989933,0.3659638,3.211651,1.772997,-0.2074709,3.211651,2.766216,-0.635998,3.211651,1.772997,-1.774209,3.211651,2.766216,-1.517063,3.211651,0.2469487,-1.917444,3.211651,0.776363,-2.557578,3.211651,1.409381,-2.192105,3.211651,0.776363,1.615265,8.837796,-0.5860467,1.171137,8.837796,0.1832053,1.171137,8.837796,-1.355299,0.2828816,8.837796,-1.355299,0.2828816,8.837796,0.1832053,-0.1612463,8.837796,-0.5860467,2.873335,3.68016,-1.778684,2.516489,3.68016,-0.975495,2.464678,3.68016,-2.698489,1.733667,3.68016,-2.331382,1.647364,3.68016,-2.698489,1.484263,3.68016,-2.331382,-0.5797861,1.76792,-2.49302,-0.7064554,1.76792,-2.49302,-0.6256052,1.76792,-2.729021,-0.9078308,1.76792,-2.804643,-1.117665,1.76792,-1.780785,-2.064731,1.76792,-1.903995,-1.527445,1.76792,-1.780785,-2.145595,1.76792,-1.602207,2.336455,2.484108,1.068408,2.071961,2.484108,2.508045,2.284095,2.484108,0.9822246,1.792037,2.484108,1.834495,1.516743,2.484108,2.563134,1.247873,2.484108,1.834495,3.266266,-5.414336E-15,-0.2989933,3.209906,-3.609557E-15,-0.396613,3.093284,-4.511946E-15,0.0006203122,3.600569,-5.414336E-15,0.8356034,3.093284,-4.511946E-15,0.0006203122,3.090084,-5.414336E-15,3.614162,3.823942,0,-1.778684,2.939981,0,-3.7683,3.209906,-3.609557E-15,-0.396613,3.093284,-4.511946E-15,0.0006203122,3.209906,-3.609557E-15,-0.396613,2.939981,0,-3.7683,3.090084,-5.414336E-15,3.614162,3.093284,-4.511946E-15,0.0006203122,2.939981,0,-3.7683,0.7112605,-5.414336E-15,3.850187,3.090084,-5.414336E-15,3.614162,2.939981,0,-3.7683,1.172061,0,-3.7683,0.7112605,-5.414336E-15,3.850187,2.939981,0,-3.7683,0.6718641,-2.707168E-15,-2.642457,0.7112605,-5.414336E-15,3.850187,1.172061,0,-3.7683,0.4526362,-2.707168E-15,3.149316,0.7112605,-5.414336E-15,3.850187,0.6718641,-2.707168E-15,-2.642457,0.3641428,-1.804779E-15,-2.642457,0.4526362,-2.707168E-15,3.149316,0.6718641,-2.707168E-15,-2.642457,0.2331741,0,3.529435,0.4526362,-2.707168E-15,3.149316,0.3641428,-1.804779E-15,-2.642457,0.1982204,0,-3.497078,0.2331741,0,3.529435,0.3641428,-1.804779E-15,-2.642457,-2.214854,0,3.529435,0.2331741,0,3.529435,0.1982204,0,-3.497078,-1.119607,0,-3.850187,-2.214854,0,3.529435,0.1982204,0,-3.497078,-2.904344,0,-2.460769,-2.214854,0,3.529435,-1.119607,0,-3.850187,-3.182681,0,0.9656523,-2.214854,0,3.529435,-2.904344,0,-2.460769,-3.438868,0,1.409381,-2.214854,0,3.529435,-3.182681,0,0.9656523,-3.10457,0,-1.713514,-3.182681,0,0.9656523,-2.904344,0,-2.460769,-3.10457,0,-1.713514,-3.823942,0,-1.505695,-3.182681,0,0.9656523,-3.823942,0,-0.3498736,-3.182681,0,0.9656523,-3.823942,0,-1.505695 + } + PolygonVertexIndex: *516 { + a: 0,2,-2,2,3,-2,4,1,-4,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,12,-12,14,13,-12,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,38,-38,40,38,-40,41,43,-43,44,42,-44,45,44,-44,46,45,-44,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,54,-54,56,55,-54,54,57,-53,57,58,-53,52,58,-60,60,59,-59,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,90,-93,94,93,-93,95,94,-93,96,95,-93,97,99,-99,100,98,-100,101,98,-101,102,101,-101,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,108,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,117,-120,121,123,-123,124,122,-124,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,132,-132,134,133,-132,130,132,-136,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,146,147,-146,148,145,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,176,-176,178,180,-180,181,179,-181,182,179,-182,183,182,-182,184,183,-182,179,182,-186,186,188,-188,189,187,-189,190,189,-189,191,189,-191,192,191,-191,193,192,-191,186,187,-195,195,194,-188,196,198,-198,199,197,-199,200,199,-199,201,199,-201,202,201,-201,196,197,-204,204,203,-198,205,203,-205,200,205,-203,206,205,-205,202,205,-207,207,205,-201,208,210,-210,211,209,-211,212,211,-211,213,211,-213,214,211,-214,215,214,-214,216,218,-218,219,217,-219,220,217,-220,221,220,-220,222,224,-224,225,223,-225,226,225,-225,227,225,-227,228,230,-230,231,229,-231,232,229,-232,233,232,-232,234,232,-234,235,234,-234,236,238,-238,239,237,-239,240,237,-240,241,240,-240,242,244,-244,245,247,-247,248,250,-250,251,253,-253,254,256,-256,257,259,-259,260,262,-262,263,265,-265,266,268,-268,269,271,-271,272,274,-274,275,277,-277,278,280,-280,281,283,-283,284,286,-286,287,289,-289,290,292,-292,293,295,-295,296,298,-298,299,301,-301 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1548 { + a: 0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.1370748,0.2084543,-0.9683787,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.1370748,0.2084543,-0.9683787,-0.1370748,0.2084543,-0.9683787,-0.2715596,0.2064849,-0.9400102,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,-0.1370748,0.2084543,-0.9683787,-0.1370748,0.2084543,-0.9683787,0,0.206485,-0.9784498,0,0.206485,-0.9784498,0,0.206485,-0.9784498,-0.1370748,0.2084543,-0.9683787,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *604 { + a: -7.548994,11.74068,-8.630333,11.74068,-8.092218,17.02875,-9.242541,17.02875,-10.57102,6.735092,-4.614413,-3.322238,-11.57473,-3.322238,-5.310445,3.673696,-10.8787,3.673696,6.2772,23.2103,7.44909,-0.8884247,-2.032563,23.2103,6.087028,-0.8884248,1.147307,8.926405,-2.72717,8.926405,-5.824532,23.59274,-5.177812,34.43216,-1.034022,23.59274,-1.680741,34.43216,5.257497,23.69423,0.4669887,23.69423,4.610777,34.53365,1.113707,34.53365,-6.108291,5.513998,-10.08085,5.513998,-6.485685,13.23144,-9.703456,13.23144,10.99253,13.75934,11.29899,6.057834,7.532323,13.75934,7.832239,6.057834,3.071292,-6.972269,-5.833458,-6.972268,1.809501,0.9388366,-3.962727,0.9388357,-4.373742,17.31532,-4.071428,23.53209,-3.514451,17.31532,4.238336,23.53209,-2.144361,12.12275,4.793157,12.12275,12.8182,-2.038707,9.870214,-2.038707,9.990464,16.17215,6.364666,5.074908,3.831487,5.074908,4.155838,16.17215,0.9180082,-3.212649,-8.719898,-3.212649,-0.8168147,9.783774,-6.985074,9.783774,2.781321,6.108887,2.282623,6.108887,1.949108,23.22247,-5.843556,13.66424,-6.825459,13.66424,-6.360656,23.22247,-5.376835,5.966334,-3.78114,5.966334,-1.433633,-0.8762488,-2.645134,-0.8762488,-1.964072,-3.352284,-0.2292489,9.644139,7.673832,-3.352284,5.939011,9.644139,2.96229,23.08042,-1.828219,23.08042,2.315571,33.91984,-1.181501,33.91984,-5.927934,-3.108613,-3.100204,15.10224,-1.377455,-3.108613,-2.245138,15.10224,-6.325355,-4.530481,-10.17182,-4.530481,-7.974035,6.332923,-8.371052,6.332923,5.177812,34.15828,5.82453,23.31885,1.680741,34.15828,1.034024,23.31885,-0.6741405,-6.328359,-11.79644,-6.328359,-2.47491,4.535046,-8.237636,4.535046,6.013565,5.362659,4.400254,5.362659,5.689212,16.4599,4.663405,16.4599,4.536233,13.55292,-1.627719,13.55292,4.071428,23.11115,-4.238335,23.11115,-2.008961,5.855011,-3.812488,5.855011,-4.966439,-0.987572,-5.410225,-0.9875721,-7.109412,6.319356,-6.277201,23.43294,-3.871545,6.319356,-1.755547,17.21617,2.032563,23.43294,2.334877,17.21617,6.39214,5.548538,1.500046,5.548538,5.769099,13.25004,1.806502,13.25004,8.476603,9.722602,11.53433,9.722602,8.124928,5.300632,12.24912,-1.140803,15.19032,-1.140803,-0.4669887,23.21736,-5.257497,23.21736,-1.113707,34.05678,-4.610777,34.05678,-6.9671,15.54118,-2.283805,15.54117,-7.834785,-2.669679,-2.072985,-2.669679,-0.9553237,5.24752,10.70135,-6.687099,1.28992,-6.687099,7.142548,4.176304,4.945916,4.176303,-6.398511,-6.441593,-5.136722,1.469513,-3.352781,-6.441593,-3.906666,1.469513,7.055263,9.136875,4.912884,9.136875,6.360656,23.42077,1.440802,12.01143,-2.503929,12.01143,-1.949108,23.42077,2.985113,5.14173,-2.962288,23.83117,-2.315569,34.67059,1.828219,23.83117,1.181501,34.67059,8.180928,-6.417162,2.809609,-6.417162,6.310196,1.493941,5.159875,1.493942,9.55756,-2.069402,8.827664,5.892913,11.57478,-2.069402,9.839955,10.92702,6.962214,10.92702,8.85839,-3.044953,0.2869548,-3.044954,7.70931,3.89098,0.8521608,3.89098,-15.43148,-0.33137,-14.2824,6.604563,-10.58125,-0.33137,-10.5158,6.604563,-12.96522,6.8736,-12.34218,14.5751,-11.16369,6.8736,-10.76066,14.5751,-3.442123,18.52243,-4.378158,13.23436,-6.448183,18.52243,-6.991408,13.23436,13.36692,-1.611376,9.939447,-1.611376,11.01666,6.29973,10.07017,6.29973,11.94687,4.933962,12.51208,-2.001971,6.771008,4.933962,6.557996,-2.001971,-5.32472,11.20629,-5.053663,4.170365,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,4.663405,-4.71955,6.708619,-1.177139,5.689212,-4.71955,11.29462,-3.100204,8.092218,1.96464,9.242541,1.96464,11.29462,-2.245138,6.278973,-0.4329709,-13.66282,-7.002693,-12.06713,-7.002693,-10.8787,-13.2692,-10.08085,-11.47341,-5.310445,-13.2692,-6.108291,-11.47341,-5.376835,-9.827045,-3.78114,-9.827045,-11.56133,-2.272652,-10.65957,-3.834554,-10.51554,-1.177139,-7.65275,-2.307271,-6.360656,-8.373606,-5.257497,-6.455974,1.949108,-8.373606,-0.4669887,-6.455974,1.928266,-2.307271,-6.360656,6.019327,-5.257497,1.841429,1.949108,6.019327,-0.4669887,1.841429,6.10399,-1.177139,-1.440802,6.980305,0.8168147,10.89061,2.503929,6.980305,6.985074,10.89061,5.972689,0.972239,7.548994,3.056547,10.0692,5.548743,8.630333,3.056547,-6.359313,-2.307271,-4.610777,0.7212808,-4.610777,-5.335823,-1.113707,-5.335823,-1.113707,0.7212808,0.6348282,-2.307271,-11.31234,-7.002693,-9.907436,-3.840531,-9.703456,-10.62397,-6.825459,-9.178671,-6.485685,-10.62397,-5.843556,-9.178671,2.282623,-9.815039,2.781321,-9.815039,2.463013,-10.74418,3.574137,-11.0419,4.400254,-7.010963,8.128862,-7.496045,6.013565,-7.010963,8.447225,-6.307902,-9.198641,4.206331,-8.157327,9.874194,-8.9925,3.867026,-7.055263,7.222422,-5.971429,10.09108,-4.912884,7.222422,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376,10.07017,6.29973,11.01666,6.29973,9.939447,-1.611376 + } + UVIndex: *516 { + a: 0,2,1,2,3,1,4,1,3,5,7,6,8,6,7,9,11,10,12,10,11,13,12,11,14,13,11,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,38,37,40,38,39,41,43,42,44,42,43,45,44,43,46,45,43,47,49,48,50,48,49,51,53,52,54,52,53,55,54,53,56,55,53,54,57,52,57,58,52,52,58,59,60,59,58,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,90,92,94,93,92,95,94,92,96,95,92,97,99,98,100,98,99,101,98,100,102,101,100,103,105,104,106,104,105,107,109,108,110,108,109,111,108,110,112,114,113,115,113,114,116,118,117,119,117,118,120,117,119,121,123,122,124,122,123,125,127,126,128,126,127,129,131,130,132,130,131,133,132,131,134,133,131,130,132,135,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,146,147,145,148,145,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,163,162,164,162,163,165,167,166,168,166,167,169,171,170,172,170,171,173,175,174,176,174,175,177,176,175,178,180,179,181,179,180,182,179,181,183,182,181,184,183,181,179,182,185,186,188,187,189,187,188,190,189,188,191,189,190,192,191,190,193,192,190,186,187,194,195,194,187,196,198,197,199,197,198,200,199,198,201,199,200,202,201,200,196,197,203,204,203,197,205,203,204,200,205,202,206,205,204,202,205,206,207,205,200,208,210,209,211,209,210,212,211,210,213,211,212,214,211,213,215,214,213,216,218,217,219,217,218,220,217,219,221,220,219,222,224,223,225,223,224,226,225,224,227,225,226,228,230,229,231,229,230,232,229,231,233,232,231,234,232,233,235,234,233,236,238,237,239,237,238,240,237,239,241,240,239,242,244,243,245,247,246,248,250,249,251,253,252,254,256,255,257,259,258,260,262,261,263,265,264,266,268,267,269,271,270,272,274,273,275,277,276,278,280,279,281,283,282,284,286,285,287,289,288,290,292,291,293,295,294,296,298,297,299,301,300 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *172 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallB, Model::RootNode + C: "OO",4820235325886269420,0 + + ;Geometry::, Model::Mesh rock_tallB + C: "OO",5120226883652537993,4820235325886269420 + + ;Material::dirt, Model::Mesh rock_tallB + C: "OO",3020,4820235325886269420 + + ;Material::grass, Model::Mesh rock_tallB + C: "OO",3024,4820235325886269420 + + ;Material::_defaultMat, Model::Mesh rock_tallB + C: "OO",3004,4820235325886269420 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallB.fbx.import new file mode 100644 index 0000000..0aed7bf --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dkp14qyon6e84" +path="res://.godot/imported/rock_tallB.fbx-6efa727adfe7cb382082bf3e4d68cbbc.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallB.fbx" +dest_files=["res://.godot/imported/rock_tallB.fbx-6efa727adfe7cb382082bf3e4d68cbbc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallC.fbx new file mode 100644 index 0000000..e47642e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallC.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 30 + Millisecond: 996 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5016682313098763204, "Model::rock_tallC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5371419908273885533, "Geometry::", "Mesh" { + Vertices: *228 { + a: -1.140486,0,2.182538,-2.280972,0,1.524078,-0.6842914,6.45832,1.309523,-1.368583,6.45832,0.9144468,-0.5574309,6.45832,-0.5044338,0.2537211,6.45832,-1.309523,-0.2492688,7.82936,-0.3746208,0.3023147,7.82936,-0.9220818,2.280972,0,1.524078,-1.140486,0,2.182538,1.368583,6.45832,0.9144468,-0.6842914,6.45832,1.309523,0.3421458,6.45832,1.111985,0.4228684,0,-2.182538,2.280972,0,-1.109762,0.2537211,6.45832,-1.309523,1.368583,6.45832,-0.6658571,-1.368583,6.45832,0.3006557,-1.368583,6.45832,0.9144468,-2.280972,0,0.5010928,-2.280972,0,1.524078,-0.5574309,6.45832,-0.5044338,-0.2492688,7.82936,-0.3746208,0.3421458,6.45832,1.111985,0.3624434,7.82936,0.7245437,1.368583,6.45832,-0.6658571,1.368583,6.45832,0.9144468,1.060421,7.82936,-0.4843888,1.060421,7.82936,0.5902179,-2.280972,0,0.5010928,0.4228684,0,-2.182538,-1.368583,6.45832,0.3006557,0.2537211,6.45832,-1.309523,-0.5574309,6.45832,-0.5044338,1.368583,6.45832,0.9144468,0.3421458,6.45832,1.111985,1.060421,7.82936,0.5902179,0.3624434,7.82936,0.7245437,0.2537211,6.45832,-1.309523,1.368583,6.45832,-0.6658571,0.3023147,7.82936,-0.9220818,1.060421,7.82936,-0.4843888,2.280972,0,-1.109762,2.280972,0,1.524078,1.368583,6.45832,-0.6658571,1.368583,6.45832,0.9144468,2.280972,0,1.524078,2.280972,0,-1.109762,-1.140486,0,2.182538,0.4228684,0,-2.182538,-1.140486,0,2.182538,2.280972,0,-1.109762,-2.280972,0,0.5010928,-1.140486,0,2.182538,0.4228684,0,-2.182538,-2.280972,0,1.524078,-1.140486,0,2.182538,-2.280972,0,0.5010928,1.368583,6.45832,-0.6658571,1.368583,6.45832,0.9144468,0.2537211,6.45832,-1.309523,0.3421458,6.45832,1.111985,0.2537211,6.45832,-1.309523,1.368583,6.45832,0.9144468,-0.5574309,6.45832,-0.5044338,0.3421458,6.45832,1.111985,1.060421,7.82936,-0.4843888,1.060421,7.82936,0.5902179,0.3023147,7.82936,-0.9220818,0.3624434,7.82936,0.7245437,-0.2492688,7.82936,-0.3746208,0.3421458,6.45832,1.111985,-0.6842914,6.45832,1.309523,-0.5574309,6.45832,-0.5044338,-1.368583,6.45832,0.3006557,-1.368583,6.45832,0.9144468 + } + PolygonVertexIndex: *111 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,32,-32,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,51,-51,52,54,-54,55,57,-57,58,60,-60,61,63,-63,64,65,-63,66,68,-68,69,67,-69,70,69,-69,71,73,-73,74,72,-74,75,72,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *333 { + a: -0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,0.9756588,0.2192941,0,0.9756588,0.2192941,0,0.9756588,0.2192941,0,0.9756588,0.2192941,0,0.9756588,0.2192941,0,0.9756588,0.2192941,0,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,0.9901679,0.1398844,0,0.9901679,0.1398844,0,0.9901679,0.1398844,0,0.9901679,0.1398844,0,0.9901679,0.1398844,0,0.9901679,0.1398844,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *152 { + a: 0.407792,-1.459235,-4.776931,-1.459235,0.2446761,24.26074,-2.866159,24.26074,0.1586258,24.1532,-4.340835,24.1532,-0.3424479,29.68657,-3.402083,29.68657,7.684434,-0.8997099,-6.033056,-0.8997099,4.610661,24.70732,-3.619833,24.70732,0.4954138,24.70732,2.854544,-1.067936,-5.592516,-1.067936,1.712726,24.573,-3.355509,24.573,1.183684,24.42274,3.600184,24.42274,1.972806,-1.25619,6.000309,-1.25619,-2.802543,25.0023,-1.765983,30.46077,4.48044,25.0023,3.186445,30.46077,2.621485,23.62596,-3.600184,23.62596,1.907043,29.15843,-2.323693,29.15843,7.763481,-0.3805781,-7.234725,-0.3805782,4.658089,25.12211,-4.340835,25.12211,0.1586259,25.12211,4.610661,23.31203,0.4954138,23.31203,3.660521,28.90978,0.8621515,28.90978,1.712726,23.69661,-3.35551,23.69661,0.7843644,29.23174,-2.662037,29.23174,4.36914,-1.25619,-6.000309,-1.25619,2.621485,24.42274,-3.600184,24.42274,-2.866159,24.26074,0.2446761,24.26074,-4.776931,-1.459235,-2.866159,24.26074,0.2446761,24.26074,-4.776931,-1.459235,-2.866159,24.26074,0.2446761,24.26074,-4.776931,-1.459235,-2.866159,24.26074,0.2446761,24.26074,-4.776931,-1.459235,0.1586259,25.12211,4.658089,25.12211,-4.340835,25.12211,0.1586259,25.12211,4.658089,25.12211,-4.340835,25.12211,0.1586259,25.12211,-4.340835,25.12211,-4.174887,-1.907043,-4.174887,2.323693,-1.190215,-3.630243,-1.426943,2.852534,0.9813733,-1.474885,-1.347031,4.377893,2.694061,5.155602,2.19461,-1.98596,5.388123,1.183684,5.388123,3.600184 + } + UVIndex: *111 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,32,31,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,51,50,52,54,53,55,57,56,58,60,59,61,63,62,64,65,62,66,68,67,69,67,68,70,69,68,71,73,72,74,72,73,75,72,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *37 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallC, Model::RootNode + C: "OO",5016682313098763204,0 + + ;Geometry::, Model::Mesh rock_tallC + C: "OO",5371419908273885533,5016682313098763204 + + ;Material::dirt, Model::Mesh rock_tallC + C: "OO",3020,5016682313098763204 + + ;Material::_defaultMat, Model::Mesh rock_tallC + C: "OO",3004,5016682313098763204 + + ;Material::grass, Model::Mesh rock_tallC + C: "OO",3024,5016682313098763204 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallC.fbx.import new file mode 100644 index 0000000..be8fa16 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c1b5opfildnie" +path="res://.godot/imported/rock_tallC.fbx-c919c488326554755b205bf0e5ee2dfe.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallC.fbx" +dest_files=["res://.godot/imported/rock_tallC.fbx-c919c488326554755b205bf0e5ee2dfe.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallD.fbx new file mode 100644 index 0000000..55cc297 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallD.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 93 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4674830297609446554, "Model::rock_tallD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4767970666343497600, "Geometry::", "Mesh" { + Vertices: *222 { + a: 0.9954082,7.721119,-0.8600725,-0.5590632,7.721119,-0.3172419,0.4133646,7.721119,-1.196115,-0.01517544,7.721119,-1.014223,-0.371799,7.721119,-0.6825077,1.328509,5.15944,-0.9043842,1.328509,5.15944,-0.1142322,-0.8921642,5.15944,-0.1289118,0.3114787,5.15944,0.8951963,-0.7491755,5.15944,1.056672,-1.328509,5.15944,0.7221936,2.214182,0,-0.1903871,-0.3024247,0,2.307409,1.328509,5.15944,-0.1142322,-0.225128,3.296751,1.717659,0.3114787,5.15944,0.8951963,0.8283639,0,-2.307409,2.214182,0,-1.507307,0.4970185,5.15944,-1.384446,1.328509,5.15944,-0.9043842,-0.3024247,0,2.307409,-2.214182,0,1.203656,-0.225128,3.296751,1.717659,-1.328509,5.15944,0.7221936,-0.7491755,5.15944,1.056672,0.4970185,5.15944,-1.384446,1.328509,5.15944,-0.9043842,0.4133646,7.721119,-1.196115,0.9954082,7.721119,-0.8600725,-0.4558195,5.15944,-0.9800172,0.4970185,5.15944,-1.384446,-0.3453872,6.558528,-0.9434234,0.4133646,7.721119,-1.196115,-0.01517544,7.721119,-1.014223,0.3114787,5.15944,0.8951963,-0.225128,3.296751,1.717659,-0.7491755,5.15944,1.056672,-0.7596993,0,-1.633362,0.8283639,0,-2.307409,-0.4558195,5.15944,-0.9800172,0.4970185,5.15944,-1.384446,-0.371799,7.721119,-0.6825077,-0.3453872,6.558528,-0.9434234,-0.01517544,7.721119,-1.014223,-0.4558195,5.15944,-0.9800172,-0.3453872,6.558528,-0.9434234,-0.8921642,5.15944,-0.1289118,-0.371799,7.721119,-0.6825077,-0.5590632,7.721119,-0.3172419,1.328509,5.15944,-0.9043842,-0.8921642,5.15944,-0.1289118,0.9954082,7.721119,-0.8600725,-0.5590632,7.721119,-0.3172419,2.214182,0,-1.507307,2.214182,0,-0.1903871,1.328509,5.15944,-0.9043842,1.328509,5.15944,-0.1142322,-0.7596993,0,-1.633362,-0.4558195,5.15944,-0.9800172,-2.214182,0,1.203656,-0.8921642,5.15944,-0.1289118,-1.328509,5.15944,0.7221936,2.214182,0,-0.1903871,2.214182,0,-1.507307,-0.3024247,0,2.307409,0.8283639,0,-2.307409,-0.3024247,0,2.307409,2.214182,0,-1.507307,-0.7596993,0,-1.633362,-0.3024247,0,2.307409,0.8283639,0,-2.307409,-2.214182,0,1.203656,-0.3024247,0,2.307409,-0.7596993,0,-1.633362 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,8,6,-8,9,8,-8,10,9,-8,11,13,-13,14,12,-14,15,14,-14,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,32,-32,34,36,-36,37,39,-39,40,38,-40,41,43,-43,44,46,-46,47,45,-47,48,47,-47,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,60,-60,62,64,-64,65,67,-67,68,70,-70,71,73,-73 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,0.1400703,0.3658947,0.9200551,0.1400703,0.3658947,0.9200551,0.1400703,0.3658947,0.9200551,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,-0.6736514,0.1472331,-0.7242349,-0.6736514,0.1472331,-0.7242349,-0.6736514,0.1472331,-0.7242349,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,0.9855841,0.169186,0,0.9855841,0.169186,0,0.9855841,0.169186,0,0.9855841,0.169186,0,0.9855841,0.169186,0,0.9855841,0.169186,0,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *148 { + a: -3.91893,-3.386112,2.201036,-1.248984,-1.62742,-4.709116,0.05974584,-3.993005,1.463776,-2.687038,-5.230351,-3.560568,-5.230351,-0.4497332,3.512458,-0.5075269,-1.226294,3.524395,2.94951,4.160125,5.230351,2.843282,6.715131,-0.6157545,-7.244489,-0.6157546,4.029079,19.82053,-5.39287,12.44251,-1.61239,19.82053,1.717797,-1.74613,-4.582222,-1.74613,1.030678,18.91885,-2.749333,18.91885,3.511012,-1.391059,-5.179961,-1.391059,2.613632,11.76726,-3.107977,19.20181,-0.4742887,19.20181,1.030677,19.79365,-2.749334,19.79365,0.9451711,29.91122,-1.700837,29.91122,0.1444375,20.049,-3.930818,20.049,-0.1994881,25.56553,-3.337956,30.14955,-1.505105,30.14955,0.6818791,17.56179,-1.894028,9.681955,-3.54204,17.56179,0.2407297,-0.9798282,-6.551363,-0.9798282,0.1444374,19.52984,-3.930818,19.52984,-0.7582734,29.63036,-1.534029,25.0028,-2.675784,29.63036,-2.614698,19.96959,-2.684846,25.49638,1.150813,19.96959,-1.72331,30.08893,-0.1072794,30.08893,6.111789,20.34904,-3.14876,20.34904,4.816172,30.43794,-1.666212,30.43794,5.934279,-1.474837,0.7495555,-1.474837,3.560568,19.13503,0.4497332,19.13503,-4.357829,-0.6127938,-2.614697,19.82289,8.193874,-0.6127938,1.150813,19.82289,4.916325,19.82289,-3.930818,19.52984,0.1444374,19.52984,-6.551363,-0.9798282,-3.930818,19.52984,0.1444374,19.52984,-6.551363,-0.9798282,-3.930818,19.52984,0.1444374,19.52984,-6.551363,-0.9798282,-3.930818,19.52984,0.1444374,19.52984,-6.551363,-0.9798282 + } + UVIndex: *114 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,8,6,7,9,8,7,10,9,7,11,13,12,14,12,13,15,14,13,16,18,17,19,17,18,20,22,21,23,21,22,24,23,22,25,27,26,28,26,27,29,31,30,32,30,31,33,32,31,34,36,35,37,39,38,40,38,39,41,43,42,44,46,45,47,45,46,48,47,46,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,60,59,62,64,63,65,67,66,68,70,69,71,73,72 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallD, Model::RootNode + C: "OO",4674830297609446554,0 + + ;Geometry::, Model::Mesh rock_tallD + C: "OO",4767970666343497600,4674830297609446554 + + ;Material::grass, Model::Mesh rock_tallD + C: "OO",3024,4674830297609446554 + + ;Material::dirt, Model::Mesh rock_tallD + C: "OO",3020,4674830297609446554 + + ;Material::_defaultMat, Model::Mesh rock_tallD + C: "OO",3004,4674830297609446554 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallD.fbx.import new file mode 100644 index 0000000..147fca2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dte2lgux6waxk" +path="res://.godot/imported/rock_tallD.fbx-41a73c88d77a87ad73375f60735cedb4.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallD.fbx" +dest_files=["res://.godot/imported/rock_tallD.fbx-41a73c88d77a87ad73375f60735cedb4.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallE.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallE.fbx new file mode 100644 index 0000000..cb70147 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallE.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 187 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallE.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallE.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5301037143639709992, "Model::rock_tallE", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4996995458908813608, "Geometry::", "Mesh" { + Vertices: *228 { + a: 0,0,-2.63384,2.280972,0,-1.31692,0,3.82448,-1.659319,1.437013,3.82448,-0.8296596,0.8950217,3.82448,-1.142578,-2.280972,0,-1.31692,-1.437013,3.82448,-0.8296596,-2.280972,0,1.31692,-1.437013,3.82448,0.8296596,0,3.82448,-1.659319,0.8950217,3.82448,-1.142578,-0.06232895,4.43784,-1.309069,0.6268377,4.43784,-0.911178,-2.280972,0,-1.31692,0,0,-2.63384,-1.437013,3.82448,-0.8296596,0,3.82448,-1.659319,2.280972,0,-1.31692,2.280972,0,0,1.437013,3.82448,-0.8296596,1.437013,3.82448,-4.331469E-14,-0.4728172,3.82448,1.386338,-1.437013,3.82448,0.8296596,-0.4263981,4.43784,1.036087,-1.168829,4.43784,0.6074451,0.8950217,3.82448,-1.142578,-0.4728172,3.82448,1.386338,0.6268377,4.43784,-0.911178,-0.4263981,4.43784,1.036087,-1.437013,3.82448,-0.8296596,0,3.82448,-1.659319,-1.168829,4.43784,-0.6702307,-0.06232895,4.43784,-1.309069,1.140486,0,1.97538,0,0,2.63384,0.7185065,3.82448,1.244489,0,3.82448,1.659319,0,0,2.63384,-2.280972,0,1.31692,0,3.82448,1.659319,-1.437013,3.82448,0.8296596,-0.4728172,3.82448,1.386338,-1.437013,3.82448,-0.8296596,-1.168829,4.43784,-0.6702307,-1.437013,3.82448,0.8296596,-1.168829,4.43784,0.6074451,1.437013,3.82448,-4.331469E-14,2.280972,0,0,0.7185065,3.82448,1.244489,1.140486,0,1.97538,1.437013,3.82448,-0.8296596,1.437013,3.82448,-4.331469E-14,0.8950217,3.82448,-1.142578,0.7185065,3.82448,1.244489,-0.4728172,3.82448,1.386338,0,3.82448,1.659319,0.6268377,4.43784,-0.911178,-0.4263981,4.43784,1.036087,-0.06232895,4.43784,-1.309069,-1.168829,4.43784,-0.6702307,-1.168829,4.43784,0.6074451,2.280972,0,0,2.280972,0,-1.31692,1.140486,0,1.97538,0,0,-2.63384,1.140486,0,1.97538,2.280972,0,-1.31692,0,0,2.63384,1.140486,0,1.97538,0,0,-2.63384,-2.280972,0,1.31692,0,0,2.63384,0,0,-2.63384,-2.280972,0,-1.31692,-2.280972,0,1.31692,0,0,-2.63384 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,40,-40,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,53,-53,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,63,-63,64,66,-66,67,69,-69,70,72,-72,73,75,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: 0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,0.9765064,0.2154886,0,0.9765064,0.2154886,0,0.9765064,0.2154886,0,0.9765064,0.2154886,0,0.9765064,0.2154886,0,0.9765064,0.2154886,0,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *152 { + a: 5.184725,-1.935132,-5.184723,-1.935132,3.266376,13.48413,-3.266376,13.48413,-0.8024506,13.48413,-5.184724,-1.935132,-3.266376,13.48413,5.184724,-1.935132,3.266376,13.48413,3.266376,10.51042,-0.8024509,10.51042,2.78942,13.26097,-0.3435762,13.26097,5.184723,-1.935132,-5.184725,-1.935133,3.266376,13.48413,-3.266376,13.48413,5.184724,-1.935132,2.130926E-16,-1.935132,3.266376,13.48413,1.706645E-13,13.48413,1.116918,10.63227,-3.266377,10.63227,0.5857163,13.36796,-2.789421,13.36796,5.633053,14.55722,-5.686375,14.55722,4.329418,17.02229,-4.386541,17.02229,3.266377,11.46833,-3.266376,11.46833,2.665826,14.11019,-2.364393,14.11019,7.482742E-07,-1.935133,-5.184724,-1.935133,8.574106E-07,13.48413,-3.266376,13.48413,5.184725,-1.935133,-5.184723,-1.935133,3.266376,13.48413,-3.266376,13.48413,1.116918,13.48413,-3.266376,11.52941,-2.638704,14.16496,3.266376,11.52941,2.391516,14.16496,2.828764,13.86965,4.490102,-1.459847,-2.828765,13.86965,-4.490104,-1.459847,-5.65753,-3.266376,-5.65753,-1.705303E-13,-3.523708,-4.498339,-2.828766,4.899565,1.861485,5.458024,0,6.532753,-2.467865,-3.587315,1.678733,4.079084,0.2453896,-5.153813,4.601687,-2.638704,4.601687,2.391516,0,6.532753,1.861485,5.458024,-2.828766,4.899565,0,6.532753,1.861485,5.458024,-2.828766,4.899565,0,6.532753,1.861485,5.458024,-2.828766,4.899565,0,6.532753,1.861485,5.458024,-2.828766,4.899565,0,6.532753,1.861485,5.458024,-2.828766,4.899565 + } + UVIndex: *114 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,40,39,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,53,52,55,53,54,56,58,57,59,57,58,60,57,59,61,63,62,64,66,65,67,69,68,70,72,71,73,75,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallE, Model::RootNode + C: "OO",5301037143639709992,0 + + ;Geometry::, Model::Mesh rock_tallE + C: "OO",4996995458908813608,5301037143639709992 + + ;Material::dirt, Model::Mesh rock_tallE + C: "OO",3020,5301037143639709992 + + ;Material::grass, Model::Mesh rock_tallE + C: "OO",3024,5301037143639709992 + + ;Material::_defaultMat, Model::Mesh rock_tallE + C: "OO",3004,5301037143639709992 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallE.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallE.fbx.import new file mode 100644 index 0000000..15bf9cc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallE.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cnpojlb84ye2l" +path="res://.godot/imported/rock_tallE.fbx-cd6f541e910dc6feb1b6dbb2f48d6d6c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallE.fbx" +dest_files=["res://.godot/imported/rock_tallE.fbx-cd6f541e910dc6feb1b6dbb2f48d6d6c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallF.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallF.fbx new file mode 100644 index 0000000..c3f1a6d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallF.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 278 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallF.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallF.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5631776480820182352, "Model::rock_tallF", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5656980393790049368, "Geometry::", "Mesh" { + Vertices: *258 { + a: 2.021352E-13,0,2.56168,-2.21848,0,1.28084,1.534062E-13,2.66992,1.92126,-1.66386,2.66992,0.9606301,2.21848,0,1.28084,2.021352E-13,0,2.56168,2.004156,1.031749,1.1571,1.534062E-13,2.66992,1.92126,1.143178,2.66992,1.261246,-2.21848,0,-1.28084,-1.913065E-13,0,-2.56168,-1.66386,2.66992,-0.9606301,-1.407727E-13,2.66992,-1.92126,1.66386,2.66992,-0.9606301,1.66386,2.66992,-1.155058E-13,1.281172,5.73672,-0.884423,1.281172,5.73672,-0.1447379,-1.281172,5.73672,-0.58429,-0.8634606,5.73672,-0.007905487,-1.642958,2.837427,-0.007905487,1.66386,2.66992,0.3593981,2.004156,1.031749,1.1571,1.143178,2.66992,1.261246,0.3590878,2.66992,0.6626697,-1.66386,2.66992,1.155058E-13,0.2764976,5.73672,0.3655178,-1.642958,2.837427,-0.007905487,-0.8634606,5.73672,-0.007905487,-1.407727E-13,2.66992,-1.92126,1.66386,2.66992,-0.9606301,-1.191154E-13,5.73672,-1.624108,1.281172,5.73672,-0.884423,-1.66386,2.66992,-0.9606301,-1.281172,5.73672,-0.884423,-1.66386,2.66992,1.155058E-13,-1.281172,5.73672,-0.58429,-1.642958,2.837427,-0.007905487,1.66386,2.66992,-1.155058E-13,0.3590878,2.66992,0.6626697,1.281172,5.73672,-0.1447379,0.2764976,5.73672,0.3655178,-1.66386,2.66992,-0.9606301,-1.407727E-13,2.66992,-1.92126,-1.281172,5.73672,-0.884423,-1.191154E-13,5.73672,-1.624108,-1.913065E-13,0,-2.56168,2.21848,0,-1.28084,-1.407727E-13,2.66992,-1.92126,1.66386,2.66992,-0.9606301,-2.21848,0,-1.28084,-1.66386,2.66992,-0.9606301,-2.21848,0,1.28084,-1.66386,2.66992,1.155058E-13,-1.66386,2.66992,0.9606301,2.21848,0,-1.28084,2.21848,0,1.28084,1.66386,2.66992,-0.9606301,1.66386,2.66992,-1.155058E-13,1.66386,2.66992,0.3593981,2.004156,1.031749,1.1571,1.281172,5.73672,-0.1447379,0.2764976,5.73672,0.3655178,1.281172,5.73672,-0.884423,-1.191154E-13,5.73672,-1.624108,-0.8634606,5.73672,-0.007905487,-1.281172,5.73672,-0.884423,-1.281172,5.73672,-0.58429,1.66386,2.66992,0.3593981,1.143178,2.66992,1.261246,1.66386,2.66992,-1.155058E-13,0.3590878,2.66992,0.6626697,1.534062E-13,2.66992,1.92126,-1.66386,2.66992,1.155058E-13,-1.66386,2.66992,0.9606301,2.21848,0,1.28084,2.21848,0,-1.28084,2.021352E-13,0,2.56168,-1.913065E-13,0,-2.56168,2.021352E-13,0,2.56168,2.21848,0,-1.28084,-2.21848,0,1.28084,2.021352E-13,0,2.56168,-1.913065E-13,0,-2.56168,-2.21848,0,-1.28084,-2.21848,0,1.28084,-1.913065E-13,0,-2.56168 + } + PolygonVertexIndex: *138 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,22,-22,23,25,-25,26,24,-26,27,26,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,52,-52,54,56,-56,57,55,-57,58,55,-58,59,55,-59,60,62,-62,63,61,-63,64,61,-64,65,64,-64,66,64,-66,67,69,-69,70,68,-70,71,68,-71,72,71,-71,73,71,-73,74,76,-76,77,79,-79,80,82,-82,83,85,-85 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *414 { + a: -0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,-0.7911906,0.2127177,0.5733835,-0.7911906,0.2127177,0.5733835,-0.7911906,0.2127177,0.5733835,0.7974966,0.3898706,0.4604347,0.7974966,0.3898706,0.4604347,0.7974966,0.3898706,0.4604347,-0.310215,0.08340368,0.9470008,-0.310215,0.08340368,0.9470008,-0.310215,0.08340368,0.9470008,-0.310215,0.08340368,0.9470008,-0.310215,0.08340368,0.9470008,-0.310215,0.08340368,0.9470008,-0.310215,0.08340368,0.9470008,-0.310215,0.08340368,0.9470008,-0.310215,0.08340368,0.9470008,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,0.4506419,0.09810901,0.8872973,0.4506419,0.09810901,0.8872973,0.4506419,0.09810901,0.8872973,0.4506419,0.09810901,0.8872973,0.4506419,0.09810901,0.8872973,0.4506419,0.09810901,0.8872973,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,-0.9790983,0.2033872,0,-0.9790983,0.2033872,0,-0.9790983,0.2033872,0,-0.9790983,0.2033872,0,-0.9790983,0.2033872,0,-0.9790983,0.2033872,0,-0.9790983,0.2033872,0,-0.9790983,0.2033872,0,-0.9790983,0.2033872,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0.9790983,0.2033873,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *172 { + a: 5.042677,-1.776419,-5.042678,-1.776419,3.782008,8.959475,-3.782008,8.959475,5.042678,-1.776419,-5.042677,-1.776419,4.555513,2.3723,-3.782007,8.959475,1.414954,8.959475,5.042678,-1.776419,-5.042677,-1.776419,3.782008,8.959475,-3.782008,8.959475,3.782008,9.619478,-4.8163E-14,9.619478,3.48198,21.78713,0.5698342,21.78713,-4.822526,21.48697,-2.020046,21.48697,-3.82091,9.805074,2.049929,7.192153,-6.345267E-07,0.188456,-2.04993,7.192153,2.155646,10.30479,-6.225141,10.30479,1.482459,22.42103,-6.156628,10.96658,-3.240227,22.42103,3.782007,9.926932,-3.782008,9.926932,3.197063,22.04338,-2.627229,22.04338,-3.782007,9.619478,-3.48198,21.78713,9.370543E-07,9.619478,-2.300354,21.78713,-0.03112304,10.28407,5.840533,10.16976,0.07908567,10.16976,4.755246,22.30231,0.318932,22.30231,3.782008,9.926932,-3.782007,9.926932,2.627229,22.04338,-3.197063,22.04338,5.042677,-1.776419,-5.042678,-1.776419,3.782008,8.959475,-3.782008,8.959475,-5.042677,-1.77642,-3.782008,8.959474,5.042677,-1.77642,-4.816921E-14,8.959474,3.782008,8.959474,5.042677,-1.77642,-5.042678,-1.77642,3.782008,8.959474,-3.896318E-07,8.959474,-1.414953,8.959474,-4.555512,2.372299,-5.043984,-0.5698342,-1.088573,1.439046,-5.043984,-3.48198,4.689582E-13,-6.394126,3.399451,-0.03112396,5.043984,-3.48198,5.043984,-2.300354,-6.55063,1.414953,-4.500701,4.965535,-6.55063,-4.547474E-13,-1.413731,2.608936,-6.039613E-13,7.564016,6.55063,4.547474E-13,6.55063,3.782008,-3.197063,22.04338,2.627229,22.04338,-3.782007,9.926932,-3.197063,22.04338,2.627229,22.04338,-3.782007,9.926932,-3.197063,22.04338,2.627229,22.04338,-3.782007,9.926932,-3.197063,22.04338,2.627229,22.04338,-3.782007,9.926932 + } + UVIndex: *138 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,22,21,23,25,24,26,24,25,27,26,25,28,30,29,31,29,30,32,34,33,35,33,34,36,35,34,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,52,51,54,56,55,57,55,56,58,55,57,59,55,58,60,62,61,63,61,62,64,61,63,65,64,63,66,64,65,67,69,68,70,68,69,71,68,70,72,71,70,73,71,72,74,76,75,77,79,78,80,82,81,83,85,84 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *46 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallF, Model::RootNode + C: "OO",5631776480820182352,0 + + ;Geometry::, Model::Mesh rock_tallF + C: "OO",5656980393790049368,5631776480820182352 + + ;Material::dirt, Model::Mesh rock_tallF + C: "OO",3020,5631776480820182352 + + ;Material::grass, Model::Mesh rock_tallF + C: "OO",3024,5631776480820182352 + + ;Material::_defaultMat, Model::Mesh rock_tallF + C: "OO",3004,5631776480820182352 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallF.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallF.fbx.import new file mode 100644 index 0000000..7c806c8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallF.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bidxctqje81gv" +path="res://.godot/imported/rock_tallF.fbx-0c5847f742c249ebfe482dede77b716b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallF.fbx" +dest_files=["res://.godot/imported/rock_tallF.fbx-0c5847f742c249ebfe482dede77b716b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallG.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallG.fbx new file mode 100644 index 0000000..cd89e0a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallG.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 374 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallG.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallG.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4616103045613116072, "Model::rock_tallG", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5611207073092417638, "Geometry::", "Mesh" { + Vertices: *348 { + a: -1.571459,5.33984,-1.012689,-1.37781,7.82936,-0.9685261,-1.571459,5.33984,-0.105407,-1.37781,7.82936,-0.215482,-1.571459,5.33984,-1.012689,-2.887646E-14,5.33984,-1.919971,-1.37781,7.82936,-0.9685261,-0.01279679,5.773284,-1.885428,-0.5207635,7.82936,-1.463342,-2.887646E-14,3.82448,-2.109958,1.827278,3.82448,-1.054979,-2.887646E-14,5.33984,-1.919971,1.571459,5.33984,-1.012689,0.7067592,5.33984,-1.511923,-2.124741,0,-1.22672,-3.609557E-14,0,-2.45344,-1.827278,3.82448,-1.054979,-2.887646E-14,3.82448,-2.109958,1.827278,3.82448,-1.054979,1.827278,3.82448,1.443823E-14,1.571459,5.33984,-1.012689,1.571459,5.33984,-0.5664246,1.773722,4.141721,-0.02206685,-1.827278,3.82448,-1.054979,-2.887646E-14,3.82448,-2.109958,-1.571459,5.33984,-1.012689,-2.887646E-14,5.33984,-1.919971,0.7067592,5.33984,-1.511923,0.1515812,5.33984,0.4141573,0.5131106,7.82936,-1.382891,0.05231293,7.82936,0.2157564,1.571459,5.33984,-0.5664246,1.773722,4.141721,-0.02206685,1.138516,5.33984,0.0530162,2.52669E-14,0,2.45344,-2.124741,0,1.22672,2.52669E-14,1.91224,2.281699,-1.827278,3.82448,1.054979,-0.8033328,3.82448,1.646154,1.827278,3.82448,1.443823E-14,0.1762572,3.82448,0.6041445,1.773722,4.141721,-0.02206685,0.1515812,5.33984,0.4141573,1.138516,5.33984,0.0530162,0.4805614,3.82448,1.832506,2.52669E-14,1.91224,2.281699,-0.8033328,3.82448,1.646154,-1.827278,3.82448,-1.054979,-1.571459,5.33984,-1.012689,-1.827278,3.82448,5.775292E-14,-1.571459,5.33984,-0.105407,-2.887646E-14,5.33984,-1.919971,0.7067592,5.33984,-1.511923,-0.01279679,5.773284,-1.885428,0.5131106,7.82936,-1.382891,0.251214,7.82936,-1.534097,0.1762572,3.82448,0.6041445,-1.827278,3.82448,5.775292E-14,0.1515812,5.33984,0.4141573,-1.571459,5.33984,-0.105407,2.124741,0,1.22672,2.52669E-14,0,2.45344,1.827278,3.82448,1.054979,2.52669E-14,1.91224,2.281699,0.4805614,3.82448,1.832506,0.1515812,5.33984,0.4141573,-1.571459,5.33984,-0.105407,0.05231293,7.82936,0.2157564,-1.37781,7.82936,-0.215482,-0.5207635,7.82936,-1.463342,-0.01279679,5.773284,-1.885428,0.251214,7.82936,-1.534097,-3.609557E-14,0,-2.45344,2.124741,0,-1.22672,-2.887646E-14,3.82448,-2.109958,1.827278,3.82448,-1.054979,2.124741,0,-1.22672,2.124741,0,1.22672,1.827278,3.82448,-1.054979,1.827278,3.82448,1.443823E-14,1.827278,3.82448,1.054979,-2.124741,0,-1.22672,-1.827278,3.82448,-1.054979,-2.124741,0,1.22672,-1.827278,3.82448,5.775292E-14,-1.827278,3.82448,1.054979,2.124741,0,1.22672,2.124741,0,-1.22672,2.52669E-14,0,2.45344,-3.609557E-14,0,-2.45344,2.52669E-14,0,2.45344,2.124741,0,-1.22672,-2.124741,0,1.22672,2.52669E-14,0,2.45344,-3.609557E-14,0,-2.45344,-2.124741,0,-1.22672,-2.124741,0,1.22672,-3.609557E-14,0,-2.45344,1.827278,3.82448,1.054979,0.4805614,3.82448,1.832506,1.827278,3.82448,1.443823E-14,0.1762572,3.82448,0.6041445,-0.8033328,3.82448,1.646154,-1.827278,3.82448,5.775292E-14,-1.827278,3.82448,1.054979,0.5131106,7.82936,-1.382891,0.05231293,7.82936,0.2157564,0.251214,7.82936,-1.534097,-0.5207635,7.82936,-1.463342,-1.37781,7.82936,-0.215482,-1.37781,7.82936,-0.9685261,1.571459,5.33984,-0.5664246,1.138516,5.33984,0.0530162,1.571459,5.33984,-1.012689,0.7067592,5.33984,-1.511923,0.1515812,5.33984,0.4141573 + } + PolygonVertexIndex: *186 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,12,-12,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,19,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,36,-36,37,35,-37,38,37,-37,39,41,-41,42,40,-42,43,42,-42,44,46,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,54,-54,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,63,-63,65,67,-67,68,66,-68,69,71,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,77,-80,81,83,-83,84,82,-84,85,84,-84,86,88,-88,89,91,-91,92,94,-94,95,97,-97,98,100,-100,101,99,-101,102,99,-102,103,102,-102,104,102,-104,105,107,-107,108,106,-108,109,106,-109,110,109,-109,111,113,-113,114,112,-114,115,112,-115 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *558 { + a: -0.8670813,0.07617964,-0.4923075,-0.9969884,0.07755125,0,-0.8596464,0.07583056,-0.5052305,-0.9969884,0.07755125,0,-0.8596464,0.07583056,-0.5052305,-0.9969884,0.07755125,0,-0.8670813,0.07617964,-0.4923075,-0.8596464,0.07583056,-0.5052305,-0.4992658,0.05417592,-0.8647535,-0.4992658,0.05417592,-0.8647535,-0.4992658,0.05417592,-0.8647535,-0.8596464,0.07583056,-0.5052305,-0.4992658,0.05417592,-0.8647535,-0.4992658,0.05417592,-0.8647535,-0.8596464,0.07583056,-0.5052305,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,0.9591324,0.06027743,0.2764625,0.9591324,0.06027743,0.2764625,0.9591324,0.06027743,0.2764625,0.9591324,0.06027743,0.2764625,0.9591324,0.06027743,0.2764625,0.9591324,0.06027743,0.2764625,0.7613756,0.3703098,0.5321445,0.7613756,0.3703098,0.5321445,0.7613756,0.3703098,0.5321445,-0.4984943,0.0775447,0.8634177,-0.4984943,0.0775447,0.8634177,-0.4984943,0.0775447,0.8634177,-0.4984943,0.0775447,0.8634177,-0.4984943,0.0775447,0.8634177,-0.4984943,0.0775447,0.8634177,-0.4984943,0.0775447,0.8634177,-0.4984943,0.0775447,0.8634177,-0.4984943,0.0775447,0.8634177,0.3410538,0.1224076,0.9320401,0.3410538,0.1224076,0.9320401,0.3410538,0.1224076,0.9320401,0.3410538,0.1224076,0.9320401,0.3410538,0.1224076,0.9320401,0.3410538,0.1224076,0.9320401,0.3410538,0.1224076,0.9320401,0.3410538,0.1224076,0.9320401,0.3410538,0.1224076,0.9320401,-0.138725,0.259375,0.9557614,-0.138725,0.259375,0.9557614,-0.138725,0.259375,0.9557614,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,0.4982546,0.08348667,-0.863002,0.4982546,0.08348667,-0.863002,0.4982546,0.08348667,-0.863002,0.4982546,0.08348667,-0.863002,0.4982546,0.08348667,-0.863002,0.4982546,0.08348667,-0.863002,0.4982546,0.08348667,-0.863002,0.4982546,0.08348667,-0.863002,0.4982546,0.08348667,-0.863002,-0.2867984,0.1145751,0.9511147,-0.2867984,0.1145751,0.9511147,-0.2867984,0.1145751,0.9511147,-0.2867984,0.1145751,0.9511147,-0.2867984,0.1145751,0.9511147,-0.2867984,0.1145751,0.9511147,0.4984943,0.07754469,0.8634177,0.4984943,0.07754469,0.8634177,0.4984943,0.07754469,0.8634177,0.4984943,0.07754469,0.8634177,0.4984943,0.07754469,0.8634177,0.4984943,0.07754469,0.8634177,0.4984943,0.07754469,0.8634177,0.4984943,0.07754469,0.8634177,0.4984943,0.07754469,0.8634177,-0.2880957,0.06465373,0.9554166,-0.2880957,0.06465373,0.9554166,-0.2880957,0.06465373,0.9554166,-0.2880957,0.06465373,0.9554166,-0.2880957,0.06465373,0.9554166,-0.2880957,0.06465373,0.9554166,-0.0897976,0.1789454,-0.9797524,-0.0897976,0.1789454,-0.9797524,-0.0897976,0.1789454,-0.9797524,0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *232 { + a: -3.986965,20.47988,-3.813095,30.31075,-0.414988,20.47988,-0.8483541,30.31075,3.364482,20.63747,-3.779471,20.63747,2.791163,30.45315,-3.667842,22.34645,-1.105027,30.45315,4.153461,14.19249,-4.153462,14.19249,3.779471,20.19354,-3.364483,20.19354,0.566497,20.19354,4.829607,-0.6486709,-4.829606,-0.6486709,4.153462,14.45381,-4.153461,14.45381,4.153461,13.6494,8.454158E-08,13.6494,3.986965,19.6998,2.230018,19.6998,0.08687743,14.91605,4.153462,14.19249,-4.153461,14.19249,3.364483,20.19354,-3.779471,20.19354,6.490255,20.92298,-1.401466,20.92298,5.790968,30.74209,-0.7591614,30.74209,5.372088,18.12366,4.071656,13.04565,2.396725,18.12366,4.829606,-0.6486711,-4.829607,-0.648671,4.491533,6.902571,-4.153462,14.45381,0.501458,14.45381,6.755908,14.64117,-0.165683,14.64117,6.587753,15.89961,0.0001183784,20.65236,4.137655,20.65236,2.908664,12.76032,1.290336,4.965033,-2.199004,12.76032,-4.153461,13.6494,-3.986965,19.6998,1.37973E-13,13.6494,-0.414988,19.6998,3.779472,20.40308,0.5664983,20.40308,3.755105,22.11552,0.9727513,30.23867,2.16335,30.23867,1.351057,14.71989,-6.887684,14.71989,1.042102,20.72542,-6.043214,20.72542,4.829607,-0.648671,-4.829606,-0.648671,4.153462,14.45381,-4.491533,6.902571,-1.968797,14.45381,1.042102,20.88922,-6.043214,20.88922,0.4424182,30.71103,-5.438394,30.71103,1.515864,29.2666,-0.6273275,21.03901,-1.536157,29.2666,4.829606,-0.6486709,-4.829607,-0.6486709,4.153461,14.45381,-4.153462,14.45381,4.829607,-0.6486709,-4.829607,-0.6486709,4.153461,14.45381,-1.4626E-13,14.45381,-4.153461,14.45381,-4.829607,-0.6486709,-4.153461,14.45381,4.829607,-0.6486709,1.379151E-13,14.45381,4.153461,14.45381,-4.153461,14.45381,4.153462,14.45381,-4.829606,-0.6486709,-4.153461,14.45381,4.153462,14.45381,-4.829606,-0.6486709,-4.153461,14.45381,4.153462,14.45381,-4.829606,-0.6486709,-4.153461,14.45381,4.153462,14.45381,-4.829606,-0.6486709,-7.194007,4.153461,-1.891974,7.214591,-7.194007,5.684342E-14,-0.6939259,2.378521,3.162727,6.480921,7.194007,2.273737E-13,7.194007,4.153461,-2.020121,-5.444452,-0.2059564,0.8494344,-0.9890317,-6.039751,2.05025,-5.76119,5.424449,-0.8483541,5.424449,-3.813095,-6.186845,-2.230018,-4.482346,0.2087252,-6.186845,-3.986965,-2.782516,-5.952454,-0.5967764,1.63054 + } + UVIndex: *186 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,12,11,14,16,15,17,15,16,18,20,19,21,19,20,22,19,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,36,35,37,35,36,38,37,36,39,41,40,42,40,41,43,42,41,44,46,45,47,49,48,50,48,49,51,53,52,54,52,53,55,54,53,56,58,57,59,57,58,60,62,61,63,61,62,64,63,62,65,67,66,68,66,67,69,71,70,72,74,73,75,73,74,76,78,77,79,77,78,80,77,79,81,83,82,84,82,83,85,84,83,86,88,87,89,91,90,92,94,93,95,97,96,98,100,99,101,99,100,102,99,101,103,102,101,104,102,103,105,107,106,108,106,107,109,106,108,110,109,108,111,113,112,114,112,113,115,112,114 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *62 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallG, Model::RootNode + C: "OO",4616103045613116072,0 + + ;Geometry::, Model::Mesh rock_tallG + C: "OO",5611207073092417638,4616103045613116072 + + ;Material::dirt, Model::Mesh rock_tallG + C: "OO",3020,4616103045613116072 + + ;Material::_defaultMat, Model::Mesh rock_tallG + C: "OO",3004,4616103045613116072 + + ;Material::grass, Model::Mesh rock_tallG + C: "OO",3024,4616103045613116072 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallG.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallG.fbx.import new file mode 100644 index 0000000..40f334b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallG.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dh4ppsekbnsxm" +path="res://.godot/imported/rock_tallG.fbx-cdad14c0293f1a7d336a59afa1c6a1d3.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallG.fbx" +dest_files=["res://.godot/imported/rock_tallG.fbx-cdad14c0293f1a7d336a59afa1c6a1d3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallH.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallH.fbx new file mode 100644 index 0000000..3f94cef --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallH.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 473 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallH.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallH.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5738234898190380732, "Model::rock_tallH", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4683875751674331061, "Geometry::", "Mesh" { + Vertices: *426 { + a: -0.1771824,2.02048,-0.5703036,-2.29972,2.02048,-0.5703036,-0.1488332,3.31936,-0.5321648,-1.931765,3.31936,-0.5321648,0,0,-3.31936,2.87465,0,-1.65968,5.775292E-14,2.02048,-2.655488,2.29972,2.02048,-1.327744,-1.54146,5.870797,-1.088868,-0.6699977,7.10776,-1.444193,-1.352235,7.10776,-0.7270488,-0.1488332,3.31936,-0.5321648,-1.931765,3.31936,-0.5321648,-0.1041833,7.10776,-0.6049274,-1.352235,7.10776,-0.6049274,1.931765,3.31936,-1.168415,1.931765,3.31936,-0.08509074,1.352235,7.10776,-1.050302,1.352235,7.10776,-0.2919756,2.29972,2.02048,1.327744,1.14986,2.02048,1.991616,2.241402,2.226343,1.285656,0.9658825,3.31936,1.619848,1.6229,3.31936,1.240518,-2.87465,0,-1.65968,-2.29972,2.02048,-1.327744,-2.87465,0,1.65968,-2.29972,2.02048,-0.5703036,-2.29972,2.02048,1.327744,0,0,3.31936,-2.87465,0,1.65968,5.775292E-14,2.02048,2.655488,-2.29972,2.02048,1.327744,5.775292E-14,2.02048,-2.655488,2.29972,2.02048,-1.327744,0,3.31936,-2.28372,1.931765,3.31936,-1.168415,1.931765,3.31936,-0.08509074,0.8778635,3.31936,0.7343055,1.352235,7.10776,-0.2919756,0.6145045,7.10776,0.2816018,0,3.31936,-2.28372,1.931765,3.31936,-1.168415,0,7.10776,-1.831016,1.352235,7.10776,-1.050302,-1.931765,3.31936,-1.168415,0,3.31936,-2.28372,-1.54146,5.870797,-1.088868,0,7.10776,-1.831016,-0.6699977,7.10776,-1.444193,-2.29972,2.02048,-1.327744,5.775292E-14,2.02048,-2.655488,-1.931765,3.31936,-1.168415,0,3.31936,-2.28372,2.87465,0,-1.65968,2.87465,0,1.65968,2.29972,2.02048,-1.327744,2.29972,2.02048,1.327744,-1.931765,3.31936,-1.168415,-1.54146,5.870797,-1.088868,-1.931765,3.31936,-0.5321648,-1.352235,7.10776,-0.7270488,-1.352235,7.10776,-0.6049274,-0.1041833,7.10776,-0.6049274,-0.1978941,7.10776,-0.09367652,-0.1488332,3.31936,-0.5321648,-0.2827058,3.31936,0.1981937,-2.87465,0,-1.65968,0,0,-3.31936,-2.29972,2.02048,-1.327744,5.775292E-14,2.02048,-2.655488,1.14986,2.02048,1.991616,-0.4959264,2.02048,1.168645,0.9658825,3.31936,1.619848,-0.4562525,2.66992,1.048599,0.05668947,3.31936,1.165208,-0.1771824,2.02048,-0.5703036,-0.1488332,3.31936,-0.5321648,-0.4959264,2.02048,1.168645,-0.2827058,3.31936,0.1981937,-0.321178,3.31936,0.4080839,-0.4562525,2.66992,1.048599,-2.29972,2.02048,-1.327744,-1.931765,3.31936,-1.168415,-2.29972,2.02048,-0.5703036,-1.931765,3.31936,-0.5321648,-0.4562525,2.66992,1.048599,-0.321178,3.31936,0.4080839,0.05668947,3.31936,1.165208,1.6229,3.31936,1.240518,1.931765,3.31936,0.4080839,2.241402,2.226343,1.285656,2.87465,0,1.65968,0,0,3.31936,2.29972,2.02048,1.327744,5.775292E-14,2.02048,2.655488,1.14986,2.02048,1.991616,2.29972,2.02048,-1.327744,2.29972,2.02048,1.327744,1.931765,3.31936,-1.168415,1.931765,3.31936,-0.08509074,1.931765,3.31936,0.4080839,2.241402,2.226343,1.285656,0.8778635,3.31936,0.7343055,-0.2827058,3.31936,0.1981937,0.6145045,7.10776,0.2816018,-0.1978941,7.10776,-0.09367652,-0.1771824,2.02048,-0.5703036,-0.4959264,2.02048,1.168645,-2.29972,2.02048,-0.5703036,-2.29972,2.02048,1.327744,5.775292E-14,2.02048,2.655488,1.14986,2.02048,1.991616,0,7.10776,-1.831016,-0.1041833,7.10776,-0.6049274,-0.6699977,7.10776,-1.444193,-1.352235,7.10776,-0.6049274,-1.352235,7.10776,-0.7270488,0.6145045,7.10776,0.2816018,1.352235,7.10776,-0.2919756,1.352235,7.10776,-1.050302,-0.1978941,7.10776,-0.09367652,1.931765,3.31936,-0.08509074,1.931765,3.31936,0.4080839,0.8778635,3.31936,0.7343055,1.6229,3.31936,1.240518,0.9658825,3.31936,1.619848,0.05668947,3.31936,1.165208,-0.2827058,3.31936,0.1981937,-0.321178,3.31936,0.4080839,2.87465,0,1.65968,2.87465,0,-1.65968,0,0,3.31936,0,0,-3.31936,0,0,3.31936,2.87465,0,-1.65968,-2.87465,0,1.65968,0,0,3.31936,0,0,-3.31936,-2.87465,0,-1.65968,-2.87465,0,1.65968,0,0,-3.31936 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,13,-13,14,12,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,22,-22,24,26,-26,27,25,-27,28,27,-27,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,48,-48,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,74,-74,76,78,-78,79,77,-79,80,79,-79,81,80,-79,82,84,-84,85,83,-85,86,88,-88,89,91,-91,92,94,-94,95,93,-95,96,95,-95,97,99,-99,100,98,-100,101,98,-101,102,98,-102,103,105,-105,106,104,-106,107,109,-109,109,110,-109,110,111,-109,112,108,-112,113,115,-115,116,114,-116,117,116,-116,114,118,-114,118,119,-114,120,113,-120,121,118,-115,122,124,-124,125,123,-125,126,125,-125,127,126,-125,128,127,-125,129,127,-129,130,132,-132,133,135,-135,136,138,-138,139,141,-141 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,-0.6915503,0.2982263,-0.65789,-0.6915503,0.2982263,-0.65789,-0.6915503,0.2982263,-0.65789,0,0.01920313,0.9998156,0,0.01920313,0.9998156,0,0.01920313,0.9998156,0,0.01920313,0.9998156,0,0.01920313,0.9998156,0,0.01920313,0.9998156,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,0.961819,0.2736868,0,0.961819,0.2736868,0,0.961819,0.2736868,0,0.961819,0.2736868,0,0.961819,0.2736868,0,0.961819,0.2736868,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,-0.7582337,0.5309228,0.3784212,-0.7582337,0.5309228,0.3784212,-0.7582337,0.5309228,0.3784212,0.8232615,0.4784707,0.305461,0.8232615,0.4784707,0.305461,0.8232615,0.4784707,0.305461,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *284 { + a: -0.6975687,7.885319,-9.054016,7.885319,-0.5859576,13.00122,-7.605373,13.00122,6.534173,-3.097455,-6.534173,-3.097455,5.227338,5.172965,-5.227339,5.172965,1.076976,19.86914,-2.301365,24.97125,1.595564,24.97125,-0.5859576,13.10617,-7.605373,13.10617,-0.4101704,28.02388,-5.323761,28.02388,4.600058,11.76802,0.3350029,11.76802,4.135048,26.85649,1.14951,26.85649,5.227338,4.829808,3.441428E-07,4.829808,5.111349,5.680459,0.1045467,10.19692,3.091391,10.19692,-6.534173,-3.097455,-5.227339,5.172964,6.534173,-3.097455,-2.24529,5.172964,5.227339,5.172964,6.534173,-3.097455,-6.534173,-3.097455,5.227338,5.172965,-5.227339,5.172965,5.227339,5.542635,-5.227339,5.542635,4.495511,10.81109,-4.286417,10.81109,6.209783,12.34963,0.9540357,12.34963,4.908479,27.40393,1.229455,27.40393,4.495512,12.1974,-4.286417,12.1974,3.604363,27.19202,-2.542988,27.19202,4.286417,12.1974,-4.495511,12.1974,3.112241,22.29608,-3.604362,27.19202,-0.558509,27.19202,5.227339,5.542635,-5.227339,5.542635,4.286417,10.81109,-4.495511,10.81109,6.534173,-3.097455,-6.534173,-3.097455,5.227339,5.172964,-5.227339,5.172964,-4.600058,11.76802,-4.286881,21.9299,-2.095137,11.76802,-2.862397,26.85649,-2.381604,26.85649,-2.268625,27.97561,-0.2222932,27.97561,-1.95516,13.06016,0.9681725,13.06016,6.534173,-3.097455,-6.534173,-3.097455,5.227339,5.172965,-5.227338,5.172965,7.555872,6.867353,0.311463,6.867353,6.253417,12.07508,0.2397872,9.471219,2.251338,12.07508,-2.082729,7.922613,-1.95516,13.03814,4.877585,7.922613,0.9681725,13.03814,1.808279,13.03814,4.384546,10.48038,-5.227339,5.185699,-4.600058,10.50063,-2.24529,5.185699,-2.095137,10.50063,2.89172,7.075567,0.8728782,10.09278,4.204297,10.09278,-2.35627,7.796271,1.139351,7.796271,-1.675813,2.895694,6.534173,-3.097455,-6.534173,-3.097455,5.227339,5.172965,-5.227338,5.172965,8.331629E-07,5.172965,5.227339,5.185699,-5.227339,5.185699,4.600058,10.50063,0.3350029,10.50063,-1.60663,10.50063,-5.061639,6.028079,4.34992,12.93449,-0.6831977,12.93449,2.661228,27.89631,-0.8619542,27.89631,0.6975687,-2.24529,1.952466,4.600965,9.054016,-2.24529,9.054016,5.227339,-2.273737E-13,10.45468,-4.527009,7.841008,0,-7.208724,0.4101704,-2.381604,2.637786,-5.685797,5.323761,-2.381604,5.323761,-2.862397,-2.419309,1.108669,-5.323761,-1.14951,-5.323761,-4.135048,0.7791104,-0.3688052,-7.605373,-0.3350029,-7.605373,1.60663,-3.456156,2.890967,-6.38937,4.883931,-3.802687,6.377353,-0.2231869,4.587434,1.113015,0.7802901,1.26448,1.60663,-2.095137,10.50063,-2.24529,5.185699,-4.600058,10.50063,-2.095137,10.50063,-2.24529,5.185699,-4.600058,10.50063,-2.095137,10.50063,-2.24529,5.185699,-4.600058,10.50063,-2.095137,10.50063,-2.24529,5.185699,-4.600058,10.50063 + } + UVIndex: *234 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,13,12,14,12,13,15,17,16,18,16,17,19,21,20,22,20,21,23,22,21,24,26,25,27,25,26,28,27,26,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,48,47,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,74,73,76,78,77,79,77,78,80,79,78,81,80,78,82,84,83,85,83,84,86,88,87,89,91,90,92,94,93,95,93,94,96,95,94,97,99,98,100,98,99,101,98,100,102,98,101,103,105,104,106,104,105,107,109,108,109,110,108,110,111,108,112,108,111,113,115,114,116,114,115,117,116,115,114,118,113,118,119,113,120,113,119,121,118,114,122,124,123,125,123,124,126,125,124,127,126,124,128,127,124,129,127,128,130,132,131,133,135,134,136,138,137,139,141,140 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallH, Model::RootNode + C: "OO",5738234898190380732,0 + + ;Geometry::, Model::Mesh rock_tallH + C: "OO",4683875751674331061,5738234898190380732 + + ;Material::dirt, Model::Mesh rock_tallH + C: "OO",3020,5738234898190380732 + + ;Material::grass, Model::Mesh rock_tallH + C: "OO",3024,5738234898190380732 + + ;Material::_defaultMat, Model::Mesh rock_tallH + C: "OO",3004,5738234898190380732 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallH.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallH.fbx.import new file mode 100644 index 0000000..43b5d04 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallH.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ciy1154qx55y2" +path="res://.godot/imported/rock_tallH.fbx-26edc56aaa642b49dce6ea6e957e36a7.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallH.fbx" +dest_files=["res://.godot/imported/rock_tallH.fbx-26edc56aaa642b49dce6ea6e957e36a7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallI.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallI.fbx new file mode 100644 index 0000000..5b86a11 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallI.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 568 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallI.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallI.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5630306230633088119, "Model::rock_tallI", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5506966698263536819, "Geometry::", "Mesh" { + Vertices: *258 { + a: -0.9341394,6.20576,-1.158475,0.4071963,6.20576,-1.462706,-0.6496013,8.118,-0.9547165,0.3698139,8.118,-1.185932,-1.482761,0,-1.83885,0.6463432,0,-2.321756,-0.9341394,6.20576,-1.158475,0.4071963,6.20576,-1.462706,1.437013,6.20576,-0.8681414,1.437013,6.20576,-0.03848174,1.152474,8.118,-0.7340627,1.152474,8.118,-0.1035215,0.4071963,6.20576,-1.462706,1.437013,6.20576,-0.8681414,0.3698139,8.118,-1.185932,1.152474,8.118,-0.7340627,-1.788504,3.621191,-1.080487,-1.155442,6.20576,-1.030706,-1.437013,6.20576,0.05701282,-0.9341394,6.20576,-1.158475,-0.6496013,8.118,-0.9547165,0.4315388,6.20576,0.8437444,0.1596491,8.118,0.2317245,0.4099265,7.16188,0.7053575,-2.280972,0,-1.378002,-1.482761,0,-1.83885,-1.788504,3.621191,-1.080487,-0.9341394,6.20576,-1.158475,-1.155442,6.20576,-1.030706,0.7703941,8.118,0.2317245,0.4099265,7.16188,0.7053575,0.1596491,8.118,0.2317245,-0.4347485,0,2.321756,-2.280972,0,1.255838,-0.2738917,6.20576,1.462706,-1.437013,6.20576,0.7911777,-2.280972,0,-1.378002,-1.788504,3.621191,-1.080487,-2.280972,0,1.255838,-1.437013,6.20576,0.05701282,-1.437013,6.20576,0.7911777,2.280972,0,-1.378002,2.280972,0,-0.0610821,1.437013,6.20576,-0.8681414,1.437013,6.20576,-0.03848174,1.437013,6.20576,-0.03848174,0.4315388,6.20576,0.8437444,1.152474,8.118,-0.1035215,0.4099265,7.16188,0.7053575,0.7703941,8.118,0.2317245,0.6463432,0,-2.321756,2.280972,0,-1.378002,0.4071963,6.20576,-1.462706,1.437013,6.20576,-0.8681414,2.280972,0,-0.0610821,-0.4347485,0,2.321756,1.437013,6.20576,-0.03848174,-0.2738917,6.20576,1.462706,0.4315388,6.20576,0.8437444,0.4315388,6.20576,0.8437444,-0.2738917,6.20576,1.462706,-0.9341394,6.20576,-1.158475,-1.437013,6.20576,0.7911777,-1.155442,6.20576,-1.030706,-1.437013,6.20576,0.05701282,1.152474,8.118,-0.7340627,1.152474,8.118,-0.1035215,0.3698139,8.118,-1.185932,0.7703941,8.118,0.2317245,0.1596491,8.118,0.2317245,-0.6496013,8.118,-0.9547165,2.280972,0,-0.0610821,2.280972,0,-1.378002,-0.4347485,0,2.321756,0.6463432,0,-2.321756,-0.4347485,0,2.321756,2.280972,0,-1.378002,-1.482761,0,-1.83885,-0.4347485,0,2.321756,0.6463432,0,-2.321756,-2.280972,0,1.255838,-0.4347485,0,2.321756,-1.482761,0,-1.83885,-2.280972,0,-1.378002,-2.280972,0,1.255838,-1.482761,0,-1.83885 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,21,-21,22,20,-22,23,22,-22,24,26,-26,27,25,-27,28,27,-27,29,31,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,48,-48,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,57,-57,59,61,-61,62,60,-62,63,62,-62,64,62,-64,65,67,-67,68,66,-68,69,68,-68,70,69,-68,71,73,-73,74,76,-76,77,79,-79,80,82,-82,83,85,-85 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: -0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,0.98911,0.1471781,0,0.98911,0.1471781,0,0.98911,0.1471781,0,0.98911,0.1471781,0,0.98911,0.1471781,0,0.98911,0.1471781,0,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,-0.9409405,0.2351644,-0.2435746,-0.9409405,0.2351644,-0.2435746,-0.9409405,0.2351644,-0.2435746,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,0,0.4438913,0.8960806,0,0.4438913,0.8960806,0,0.4438913,0.8960806,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *172 { + a: 2.577769,23.49331,-2.837209,23.49331,1.66273,31.09196,-2.452654,31.09196,4.091698,-1.047906,-4.503507,-1.047906,2.577769,23.57885,-2.837209,23.57885,3.41788,23.3334,0.1515029,23.3334,2.890011,30.94479,0.4075649,30.94479,1.490986,23.43696,-3.190626,23.43696,1.073612,31.03388,-2.484412,31.03388,-2.353564,12.00311,-2.788422,22.47218,1.63509,22.47218,-5.840239,24.35458,-4.546288,31.89795,3.701595,24.35458,1.107849,31.89795,3.20355,28.12626,5.064479,-1.266375,1.435759,-1.266375,3.971045,13.12764,0.9045277,23.40115,1.910586,23.40115,3.033048,28.23434,1.613884,24.03354,0.6285399,28.23434,3.088088,-1.155137,-5.304964,-1.155137,1.945495,23.49162,-3.342129,23.49162,-5.425204,-1.210134,-4.253887,13.17776,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,5.425205,-1.210134,0.2404807,-1.210134,3.41788,23.44689,0.1515029,23.44689,4.352536,23.8032,-0.913793,23.8032,3.679371,31.38908,-0.618416,27.59614,1.678166,31.38908,2.366646,-1.266375,-5.064484,-1.266375,1.490986,23.40116,-3.190625,23.40116,6.908785,-0.4974297,-7.315235,-0.4974297,4.352535,24.0269,-4.608598,24.0269,-0.9137935,24.0269,-1.698972,3.321829,1.078314,5.758685,3.677714,-4.560926,5.65753,3.114873,4.548986,-4.057898,5.65753,0.2244599,-4.5373,-2.890011,-4.5373,-0.4075649,-1.45596,-4.669024,-3.033048,0.9123011,-0.6285399,0.9123011,2.557485,-3.758726,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,21,20,22,20,21,23,22,21,24,26,25,27,25,26,28,27,26,29,31,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,41,43,42,44,42,43,45,47,46,48,46,47,49,48,47,50,52,51,53,51,52,54,56,55,57,55,56,58,57,56,59,61,60,62,60,61,63,62,61,64,62,63,65,67,66,68,66,67,69,68,67,70,69,67,71,73,72,74,76,75,77,79,78,80,82,81,83,85,84 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallI, Model::RootNode + C: "OO",5630306230633088119,0 + + ;Geometry::, Model::Mesh rock_tallI + C: "OO",5506966698263536819,5630306230633088119 + + ;Material::dirt, Model::Mesh rock_tallI + C: "OO",3020,5630306230633088119 + + ;Material::grass, Model::Mesh rock_tallI + C: "OO",3024,5630306230633088119 + + ;Material::_defaultMat, Model::Mesh rock_tallI + C: "OO",3004,5630306230633088119 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallI.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallI.fbx.import new file mode 100644 index 0000000..8d6a8ae --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallI.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bsky8rkc3rucs" +path="res://.godot/imported/rock_tallI.fbx-70fec7e39a39078abb4049bcfc46c47f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallI.fbx" +dest_files=["res://.godot/imported/rock_tallI.fbx-70fec7e39a39078abb4049bcfc46c47f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallJ.fbx b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallJ.fbx new file mode 100644 index 0000000..b5094dc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallJ.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 663 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "rock_tallJ.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "rock_tallJ.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5468207841592760455, "Model::rock_tallJ", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5655019942327751554, "Geometry::", "Mesh" { + Vertices: *246 { + a: 1.118954,6.2,-0.674518,1.021532,6.2,0.5268182,0.1272777,6.2,-1.359556,0.02985528,6.2,-0.1582203,-0.2038865,6.2,-1.202565,1.599478,3.3,1.104901,0.6346607,3.3,1.562282,-1.599478,3.3,-1.104901,-0.8781925,3.3,1.43954,-1.756611,3.3,0.8327383,2.439738,0,-1.156581,2.221497,0,1.534584,2.289668,0.7249463,-1.085439,1.701911,3.3,-0.1582203,1.599478,3.3,1.104901,-0.2182403,0,2.691165,-2.439738,0,1.156581,-0.2038865,0.7751575,2.514165,-1.756611,3.3,0.8327383,-0.8781925,3.3,1.43954,0.6346607,3.3,1.562282,-0.2038865,0.7751575,2.514165,-0.8781925,3.3,1.43954,0.2182403,0,-2.691165,2.439738,0,-1.156581,0.157133,3.3,-1.937639,2.289668,0.7249463,-1.085439,0.9568721,3.3,-1.385189,-2.221497,0,-1.534584,0.2182403,0,-2.691165,-1.599478,3.3,-1.104901,0.157133,3.3,-1.937639,-2.221497,0,-1.534584,-1.599478,3.3,-1.104901,-2.439738,0,1.156581,-1.756611,3.3,0.8327383,1.437783,4.75,-0.753628,1.701911,3.3,-0.1582203,1.118954,6.2,-0.674518,1.021532,6.2,0.5268182,1.599478,3.3,1.104901,-1.28065,4.75,-0.9740797,-0.2038865,6.2,-1.202565,0.02985528,6.2,-0.1582203,0.9568721,3.3,-1.385189,2.289668,0.7249463,-1.085439,1.701911,3.3,-0.1582203,0.157133,3.3,-1.937639,0.9568721,3.3,-1.385189,0.1272777,6.2,-1.359556,1.437783,4.75,-0.753628,1.118954,6.2,-0.674518,2.221497,0,1.534584,-0.2182403,0,2.691165,1.599478,3.3,1.104901,-0.2038865,0.7751575,2.514165,0.6346607,3.3,1.562282,-1.599478,3.3,-1.104901,0.157133,3.3,-1.937639,-1.28065,4.75,-0.9740797,0.1272777,6.2,-1.359556,-0.2038865,6.2,-1.202565,1.599478,3.3,1.104901,-1.599478,3.3,-1.104901,1.021532,6.2,0.5268182,-1.28065,4.75,-0.9740797,0.02985528,6.2,-0.1582203,1.437783,4.75,-0.753628,0.9568721,3.3,-1.385189,1.701911,3.3,-0.1582203,2.439738,0,-1.156581,0.2182403,0,-2.691165,2.221497,0,1.534584,-0.2182403,0,2.691165,2.221497,0,1.534584,0.2182403,0,-2.691165,-2.221497,0,-1.534584,-0.2182403,0,2.691165,0.2182403,0,-2.691165,-2.439738,0,1.156581,-0.2182403,0,2.691165,-2.221497,0,-1.534584 + } + PolygonVertexIndex: *126 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,8,-8,10,12,-12,13,11,-13,14,11,-14,15,17,-17,18,16,-18,19,18,-18,20,22,-22,23,25,-25,26,24,-26,27,26,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,37,-40,41,43,-43,44,46,-46,47,49,-49,50,48,-50,51,50,-50,52,54,-54,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,60,-60,62,64,-64,65,63,-65,66,65,-65,67,69,-69,70,72,-72,73,75,-75,76,78,-78,79,81,-81 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *378 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.07501494,0.3734926,0.9245951,-0.07501494,0.3734926,0.9245951,-0.07501494,0.3734926,0.9245951,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,-0.777283,0.6046203,0.1739689,-0.777283,0.6046203,0.1739689,-0.777283,0.6046203,0.1739689,0.7984858,0.3568404,-0.4848558,0.7984858,0.3568404,-0.4848558,0.7984858,0.3568404,-0.4848558,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,0.8533528,-0.05733059,-0.5181721,0.8533528,-0.05733059,-0.5181721,0.8533528,-0.05733059,-0.5181721,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *164 { + a: -4.405331,-2.655583,-4.02178,2.074087,-0.5010933,-5.352582,-0.1175405,-0.6229146,0.8027027,-4.734508,-6.297157,4.350004,-2.498664,6.150716,6.297157,-4.350004,3.457451,5.66748,6.915792,3.278497,5.314962,-1.791496,-5.314958,-1.791495,4.988036,1.118254,1.162472,11.45386,-3.826771,11.45386,5.314959,-1.791495,-5.314962,-1.791495,4.96539,1.319788,-3.826771,11.45386,0.3764843,11.45386,2.987871,9.837671,0.0003712794,-0.8781209,-2.987815,9.837671,5.314958,-1.791495,-5.314963,-1.791495,3.826771,11.45386,-4.988036,1.118255,-3.108959E-07,11.45386,5.31496,-1.791494,-5.31496,-1.791494,3.826771,11.45386,-3.826771,11.45386,-5.314958,-1.791496,-3.826771,11.45386,5.314962,-1.791496,3.826772,11.45386,3.414873,17.14965,1.162471,11.31083,3.002975,22.98846,-1.742221,22.98846,-3.826773,11.31083,-4.843593,12.42702,-4.79552,19.59407,-0.5822029,19.59407,2.706146,9.977708,-1.026017,-0.8747672,-2.945258,9.977708,3.82677,11.69867,-9.269541E-07,11.69867,2.629929,23.27954,-2.971021,17.48911,-2.115266,23.27954,5.314959,-1.791494,-5.31496,-1.791494,3.82677,11.45386,-4.965392,1.31979,-0.3769325,11.45386,3.826772,11.649,-3.82677,11.649,2.913165,17.44512,-2.745641,23.24124,-1.302761,23.24124,7.653543,12.97543,-7.653543,12.97543,4.487865,24.40744,-6.328038,18.69144,-0.257333,24.40744,-0.4018753,19.03571,2.706146,13.31764,-2.945258,13.31764,-0.4018753,19.03571,2.706146,13.31764,-2.945258,13.31764,-0.4018753,19.03571,2.706146,13.31764,-2.945258,13.31764,-0.4018753,19.03571,2.706146,13.31764,-2.945258,13.31764,-0.4018753,19.03571,2.706146,13.31764,-2.945258,13.31764 + } + UVIndex: *126 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,8,7,10,12,11,13,11,12,14,11,13,15,17,16,18,16,17,19,18,17,20,22,21,23,25,24,26,24,25,27,26,25,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,37,39,41,43,42,44,46,45,47,49,48,50,48,49,51,50,49,52,54,53,55,53,54,56,55,54,57,59,58,60,58,59,61,60,59,62,64,63,65,63,64,66,65,64,67,69,68,70,72,71,73,75,74,76,78,77,79,81,80 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *42 { + a: 0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3024, "Material::grass", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.172549,0.8470588,0.7215686 + P: "DiffuseColor", "Color", "", "A",0.172549,0.8470588,0.7215686 + } + } + + Material: 3020, "Material::dirt", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh rock_tallJ, Model::RootNode + C: "OO",5468207841592760455,0 + + ;Geometry::, Model::Mesh rock_tallJ + C: "OO",5655019942327751554,5468207841592760455 + + ;Material::grass, Model::Mesh rock_tallJ + C: "OO",3024,5468207841592760455 + + ;Material::dirt, Model::Mesh rock_tallJ + C: "OO",3020,5468207841592760455 + + ;Material::_defaultMat, Model::Mesh rock_tallJ + C: "OO",3004,5468207841592760455 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/rock_tallJ.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallJ.fbx.import new file mode 100644 index 0000000..ad93aa7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/rock_tallJ.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cvs03b25lq0qm" +path="res://.godot/imported/rock_tallJ.fbx-5fe27c3488636d20ec2f1b1746e64d95.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/rock_tallJ.fbx" +dest_files=["res://.godot/imported/rock_tallJ.fbx-5fe27c3488636d20ec2f1b1746e64d95.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/sign.fbx b/assets/models/kenney_nature-kit/Models/FBX format/sign.fbx new file mode 100644 index 0000000..1285651 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/sign.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 757 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "sign.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "sign.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5293174585601557561, "Model::sign", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5498520711209759579, "Geometry::", "Mesh" { + Vertices: *210 { + a: 0.175,0,0.175,-0.175,0,0.175,0.175,2.031705,0.175,-0.175,2.031705,0.175,-0.175,0,-0.175,-0.175,4.087705,-0.175,-0.175,0,0.175,-0.175,4.087705,0.175,-0.175,2.031705,0.175,-0.175,3.807705,0.175,0.175,4.087705,0.175,-0.175,4.087705,0.175,0.175,4.087705,-0.175,-0.175,4.087705,-0.175,1.2,2.331705,0.525,-1.2,2.331705,0.525,1.2,3.507705,0.525,-1.2,3.507705,0.525,0.175,3.807705,0.175,-0.175,3.807705,0.175,0.175,4.087705,0.175,-0.175,4.087705,0.175,0.175,4.087705,-0.175,0.175,0,-0.175,0.175,4.087705,0.175,0.175,0,0.175,0.175,3.807705,0.175,0.175,2.031705,0.175,-0.175,0,-0.175,0.175,0,-0.175,-0.175,4.087705,-0.175,0.175,4.087705,-0.175,-1.5,2.031705,0.175,-1.5,3.807705,0.175,-1.5,2.031705,0.525,-1.5,3.807705,0.525,1.5,3.807705,0.175,1.5,2.031705,0.175,1.5,3.807705,0.525,1.5,2.031705,0.525,1.5,2.031705,0.175,1.5,3.807705,0.175,0.175,2.031705,0.175,0.175,3.807705,0.175,1.5,2.031705,0.525,1.5,2.031705,0.175,-1.5,2.031705,0.525,0.175,2.031705,0.175,-0.175,2.031705,0.175,-1.5,2.031705,0.175,1.5,3.807705,0.175,1.5,3.807705,0.525,0.175,3.807705,0.175,-1.5,3.807705,0.525,-0.175,3.807705,0.175,-1.5,3.807705,0.175,-1.5,2.031705,0.175,-0.175,2.031705,0.175,-1.5,3.807705,0.175,-0.175,3.807705,0.175,-1.5,2.031705,0.525,1.5,2.031705,0.525,1.5,3.807705,0.525,-1.5,3.807705,0.525,0.175,0,0.175,0.175,0,-0.175,-0.175,0,0.175,-0.175,0,-0.175,-0.175,0,0.175,0.175,0,-0.175 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,25,-25,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,48,-47,50,52,-52,53,51,-53,54,53,-53,55,53,-55,56,58,-58,59,57,-59,60,61,-15,62,14,-62,16,14,-63,17,16,-63,14,15,-61,63,60,-16,17,63,-16,62,63,-18,64,66,-66,67,69,-69 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *140 { + a: 0.6889762,0,-0.6889762,0,0.6889762,7.998837,-0.6889762,7.998837,-0.6889763,0,-0.6889763,16.09333,0.6889763,0,0.6889763,16.09333,0.6889763,7.998837,0.6889763,14.99096,-0.6889762,0.6889763,0.6889762,0.6889763,-0.6889762,-0.6889763,0.6889762,-0.6889763,4.72441,9.17994,-4.72441,9.17994,4.72441,13.80986,-4.72441,13.80986,0.6889762,14.99096,-0.6889762,14.99096,0.6889762,16.09333,-0.6889762,16.09333,0.6889763,16.09333,0.6889763,0,-0.6889763,16.09333,-0.6889763,0,-0.6889763,14.99096,-0.6889763,7.998837,0.6889762,-2.883133E-15,-0.6889762,-2.883133E-15,0.6889762,16.09333,-0.6889762,16.09333,0.6889763,7.998837,0.6889763,14.99096,2.066929,7.998837,2.066929,14.99096,-0.6889763,14.99096,-0.6889763,7.998837,-2.066929,14.99096,-2.066929,7.998837,-5.905512,7.998837,-5.905512,14.99096,-0.6889762,7.998837,-0.6889762,14.99096,5.905512,2.066929,5.905512,0.6889763,-5.905512,2.066929,0.6889762,0.6889763,-0.6889762,0.6889763,-5.905512,0.6889763,-5.905512,0.6889763,-5.905512,2.066929,-0.6889762,0.6889763,5.905512,2.066929,0.6889762,0.6889763,5.905512,0.6889763,5.905512,7.998837,0.6889762,7.998837,5.905512,14.99096,0.6889762,14.99096,-5.905512,7.998837,5.905512,7.998837,5.905512,14.99096,-5.905512,14.99096,-0.6889762,16.09333,0.6889762,16.09333,-0.6889762,-2.883133E-15,-0.6889762,16.09333,0.6889762,16.09333,-0.6889762,-2.883133E-15 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,25,24,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,48,46,50,52,51,53,51,52,54,53,52,55,53,54,56,58,57,59,57,58,60,61,14,62,14,61,16,14,62,17,16,62,14,15,60,63,60,15,17,63,15,62,63,17,64,66,65,67,69,68 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3052, "Material::woodDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7686275,0.427451,0.2941177 + P: "DiffuseColor", "Color", "", "A",0.7686275,0.427451,0.2941177 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh sign, Model::RootNode + C: "OO",5293174585601557561,0 + + ;Geometry::, Model::Mesh sign + C: "OO",5498520711209759579,5293174585601557561 + + ;Material::wood, Model::Mesh sign + C: "OO",3044,5293174585601557561 + + ;Material::woodDark, Model::Mesh sign + C: "OO",3052,5293174585601557561 + + ;Material::_defaultMat, Model::Mesh sign + C: "OO",3004,5293174585601557561 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/sign.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/sign.fbx.import new file mode 100644 index 0000000..3c5aacc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/sign.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://btxh1tvgordpq" +path="res://.godot/imported/sign.fbx-2500382c44b3cf82988f3356826084ba.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/sign.fbx" +dest_files=["res://.godot/imported/sign.fbx-2500382c44b3cf82988f3356826084ba.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_block.fbx b/assets/models/kenney_nature-kit/Models/FBX format/statue_block.fbx new file mode 100644 index 0000000..551b83f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_block.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 858 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "statue_block.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "statue_block.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5630897238727123234, "Model::statue_block", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5210908637915093665, "Geometry::", "Mesh" { + Vertices: *720 { + a: -2,0.5,1.5,-2,3.5,1.5,-1.5,0.5,2,-1.5,3.5,2,1,1,-2,1,1,-1.5,-1,1,-2,-1,1,-1.5,2,3.5,1.5,2,0.5,1.5,1.5,3.5,2,1.5,0.5,2,1.5,0.5,-2,-1,1,-2,-1.5,0.5,-2,-1.5,3.5,-2,-1,3,-2,1,3,-2,1,1,-2,1.5,3.5,-2,1,1,-2,1,3,-2,1,1,-1.5,1,3,-1.5,-1.5,0.5,-2,-1.5,3.5,-2,-2,0.5,-1.5,-2,3.5,-1.5,-1,3,-2,-1,1,-2,-1,3,-1.5,-1,1,-1.5,1,3,-1.5,1,3,-2,-1,3,-1.5,-1,3,-2,1.5,3.5,-2,1.5,0.5,-2,2,3.5,-1.5,2,0.5,-1.5,-2,3.5,-1.5,-2,1,-1,-2,0.5,-1.5,-2,0.5,1.5,-2,1,1,-2,3,1,-2,3,-1,-2,3.5,1.5,1,-4.104127E-13,-1,-1,-8.214746E-14,-1,1,0.5,-1,-1,0.5,-1,-1,3.5,-1,-1,3.5,1,-1,4,-1,-1,4,1,-1.5,0.5,2,1,1,2,1.5,0.5,2,1.5,3.5,2,1,3,2,-1,3,2,-1,1,2,-1.5,3.5,2,1,1,2,-1,1,2,1,1,1.5,-1,1,1.5,1,-4.104127E-13,-1,1,0.5,-1,1,-4.104127E-13,1,1,0.5,1,1.5,1,1,2,1,1,1.5,3,1,2,3,1,-1,3,1.5,-1,1,1.5,-1,3,2,-1,1,2,2,0.5,-1.5,2,3,-1,2,3.5,-1.5,2,3.5,1.5,2,3,1,2,1,1,2,1,-1,2,0.5,1.5,1,1,1.5,1,3,1.5,1,1,2,1,3,2,2,3,1,2,3,-1,1.5,3,1,1.5,3,-1,-2,1,1,-1.5,1,1,-2,3,1,-1.5,3,1,-1,3.5,1,1,3.5,1,-1,4,1,1,4,1,1.5,4,1.5,1,4,-1,1.5,4,-1.5,-1.5,4,-1.5,-1,4,-1,-1,4,1,1,4,1,-1.5,4,1.5,1,-4.104127E-13,1,1,0.5,1,-1,-8.214746E-14,1,-1,0.5,1,1.5,0,-1.5,1,-4.104127E-13,1,1.5,0,1.5,-1.5,0,1.5,-1,-8.214746E-14,1,-1,-8.214746E-14,-1,1,-4.104127E-13,-1,-1.5,0,-1.5,-1.5,3,1,-1.5,3,-1,-2,3,1,-2,3,-1,-1,0.5,-1,-1,-8.214746E-14,-1,-1,0.5,1,-1,-8.214746E-14,1,1,3,2,1,3,1.5,-1,3,2,-1,3,1.5,2,1,1,1.5,1,1,2,1,-1,1.5,1,-1,-1.5,1,-1,-2,1,-1,-1.5,3,-1,-2,3,-1,1,3.5,-1,1,4,-1,1,3.5,1,1,4,1,2,1,-1,1.5,1,-1,2,3,-1,1.5,3,-1,-1.5,1,1,-2,1,1,-1.5,1,-1,-2,1,-1,1,3.5,-1,-1,3.5,-1,1,4,-1,-1,4,-1,-1.5,0,-1.5,-1.5,0.5,-2,-2,0.5,-1.5,2,3.5,-1.5,2,3.5,1.5,1.5,4,-1.5,1.5,4,1.5,1.5,3.5,-2,2,3.5,-1.5,1.5,4,-1.5,-1.5,0.5,2,-1.5,0,1.5,-2,0.5,1.5,-1,1,-1.5,1,1,-1.5,-1,3,-1.5,1,3,-1.5,-1.5,4,1.5,-1.5,3.5,2,-2,3.5,1.5,1.5,4,1.5,1.5,3.5,2,-1.5,4,1.5,-1.5,3.5,2,1.5,3.5,-2,1.5,4,-1.5,-1.5,3.5,-2,-1.5,4,-1.5,-1.5,0,1.5,-1.5,0,-1.5,-2,0.5,1.5,-2,0.5,-1.5,1.5,0.5,2,1.5,0,1.5,-1.5,0.5,2,-1.5,0,1.5,1.5,4,1.5,2,3.5,1.5,1.5,3.5,2,-1.5,4,-1.5,-1.5,4,1.5,-2,3.5,-1.5,-2,3.5,1.5,1.5,0.5,2,2,0.5,1.5,1.5,0,1.5,1.5,0,-1.5,2,0.5,-1.5,1.5,0.5,-2,1.5,0,-1.5,1.5,0.5,-2,-1.5,0,-1.5,-1.5,0.5,-2,2,0.5,1.5,2,0.5,-1.5,1.5,0,1.5,1.5,0,-1.5,-1.5,3.5,-2,-1.5,4,-1.5,-2,3.5,-1.5,1,1,1.5,-1,1,1.5,1,3,1.5,-1,3,1.5,1.5,3,-1,1.5,1,-1,1.5,3,1,1.5,1,1,1,0.5,1,1,0.5,-1,-1,0.5,1,-1,0.5,-1,1,3.5,-1,1,3.5,1,-1,3.5,-1,-1,3.5,1,-1.5,1,-1,-1.5,3,-1,-1.5,1,1,-1.5,3,1 + } + PolygonVertexIndex: *420 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,13,-16,17,16,-16,13,18,-13,19,12,-19,17,19,-19,15,19,-18,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,41,46,-41,47,40,-47,45,47,-47,43,47,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,60,-60,57,62,-57,63,56,-63,61,63,-63,59,63,-62,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,81,-84,85,84,-84,81,86,-81,87,80,-87,85,87,-87,83,87,-86,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,108,-108,105,110,-105,111,104,-111,109,111,-111,107,111,-110,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,117,-120,121,120,-120,117,122,-117,123,116,-123,121,123,-123,119,123,-122,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,165,-165,166,164,-166,167,169,-169,170,172,-172,173,175,-175,176,174,-176,177,179,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,201,-201,202,200,-202,203,205,-205,206,208,-208,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,219,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1260 { + a: -0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.5773503,-0.5773503,-0.5773503,-0.5773503,-0.5773503,-0.5773503,-0.5773503,-0.5773503,-0.5773503,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,0.5773503,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.5773503,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *480 { + a: -1.391943,1.968504,-1.391943,13.77953,1.391943,1.968504,1.391943,13.77953,-3.937008,-7.874016,-3.937008,-5.905512,3.937008,-7.874016,3.937008,-5.905512,1.391943,13.77953,1.391943,1.968504,-1.391943,13.77953,-1.391943,1.968504,-5.905512,1.968504,3.937008,3.937008,5.905512,1.968504,5.905512,13.77953,3.937008,11.81102,-3.937008,11.81102,-3.937008,3.937008,-5.905512,13.77953,-7.874016,3.937008,-7.874016,11.81102,-5.905512,3.937008,-5.905512,11.81102,-1.391943,1.968504,-1.391943,13.77953,1.391943,1.968504,1.391943,13.77953,7.874016,11.81102,7.874016,3.937008,5.905512,11.81102,5.905512,3.937008,3.937008,-5.905512,3.937008,-7.874016,-3.937008,-5.905512,-3.937008,-7.874016,1.391943,13.77953,1.391943,1.968504,-1.391943,13.77953,-1.391943,1.968504,-5.905512,13.77953,-3.937008,3.937008,-5.905512,1.968504,5.905512,1.968504,3.937008,3.937008,3.937008,11.81102,-3.937008,11.81102,5.905512,13.77953,3.937008,-1.615798E-12,-3.937008,-3.234152E-13,3.937008,1.968504,-3.937008,1.968504,3.937008,13.77953,-3.937008,13.77953,3.937008,15.74803,-3.937008,15.74803,-5.905512,1.968504,3.937008,3.937008,5.905512,1.968504,5.905512,13.77953,3.937008,11.81102,-3.937008,11.81102,-3.937008,3.937008,-5.905512,13.77953,-3.937008,7.874016,3.937008,7.874016,-3.937008,5.905512,3.937008,5.905512,-3.937008,-9.696066E-13,-3.937008,1.968504,3.937008,-9.696066E-13,3.937008,1.968504,-5.905512,3.937008,-7.874016,3.937008,-5.905512,11.81102,-7.874016,11.81102,-5.905512,11.81102,-5.905512,3.937008,-7.874016,11.81102,-7.874016,3.937008,5.905512,1.968504,3.937008,11.81102,5.905512,13.77953,-5.905512,13.77953,-3.937008,11.81102,-3.937008,3.937008,3.937008,3.937008,-5.905512,1.968504,5.905512,3.937008,5.905512,11.81102,7.874016,3.937008,7.874016,11.81102,7.874016,3.937008,7.874016,-3.937008,5.905512,3.937008,5.905512,-3.937008,7.874016,3.937008,5.905512,3.937008,7.874016,11.81102,5.905512,11.81102,3.937008,13.77953,-3.937008,13.77953,3.937008,15.74803,-3.937008,15.74803,-5.905512,5.905512,-3.937008,-3.937008,-5.905512,-5.905512,5.905512,-5.905512,3.937008,-3.937008,3.937008,3.937008,-3.937008,3.937008,5.905512,5.905512,-3.937008,-1.615798E-12,-3.937008,1.968504,3.937008,-3.234152E-13,3.937008,1.968504,5.905512,-5.905512,3.937008,3.937008,5.905512,5.905512,-5.905512,5.905512,-3.937008,3.937008,-3.937008,-3.937008,3.937008,-3.937008,-5.905512,-5.905512,-5.905512,3.937008,-5.905512,-3.937008,-7.874016,3.937008,-7.874016,-3.937008,3.937008,1.968504,3.937008,-9.696066E-13,-3.937008,1.968504,-3.937008,-9.696066E-13,3.937008,7.874016,3.937008,5.905512,-3.937008,7.874016,-3.937008,5.905512,-7.874016,3.937008,-5.905512,3.937008,-7.874016,-3.937008,-5.905512,-3.937008,-5.905512,3.937008,-7.874016,3.937008,-5.905512,11.81102,-7.874016,11.81102,-3.937008,13.77953,-3.937008,15.74803,3.937008,13.77953,3.937008,15.74803,7.874016,3.937008,5.905512,3.937008,7.874016,11.81102,5.905512,11.81102,5.905512,3.937008,7.874016,3.937008,5.905512,-3.937008,7.874016,-3.937008,3.937008,13.77953,-3.937008,13.77953,3.937008,15.74803,-3.937008,15.74803,2.04281E-14,4.82183,-1.391943,7.232745,1.391943,7.232745,5.905512,4.175828,-5.905512,4.175828,5.905512,6.959713,-5.905512,6.959713,1.391943,5.625469,-1.391943,5.625469,6.039613E-14,8.036384,1.391943,7.232745,-2.04281E-14,4.82183,-1.391943,7.232745,3.937008,3.937008,-3.937008,3.937008,3.937008,11.81102,-3.937008,11.81102,-2.04281E-14,8.036384,1.391943,5.625469,-1.391943,5.625469,5.905512,6.959713,5.905512,4.175828,-5.905512,6.959713,-5.905512,4.175828,-5.905512,4.175828,-5.905512,6.959713,5.905512,4.175828,5.905512,6.959713,5.905512,4.175828,-5.905512,4.175828,5.905512,6.959713,-5.905512,6.959713,5.905512,6.959713,5.905512,4.175828,-5.905512,6.959713,-5.905512,4.175828,-6.039613E-14,8.036384,1.391943,5.625469,-1.391943,5.625469,-5.905512,6.959713,5.905512,6.959713,-5.905512,4.175828,5.905512,4.175828,-1.391943,7.232745,1.391943,7.232745,-6.039613E-14,4.82183,6.039613E-14,4.82183,-1.391943,7.232745,1.391943,7.232745,-5.905512,4.175828,-5.905512,6.959713,5.905512,4.175828,5.905512,6.959713,-5.905512,6.959713,5.905512,6.959713,-5.905512,4.175828,5.905512,4.175828,-1.391943,5.625469,2.04281E-14,8.036384,1.391943,5.625469,3.937008,3.937008,-3.937008,3.937008,3.937008,11.81102,-3.937008,11.81102,3.937008,11.81102,3.937008,3.937008,-3.937008,11.81102,-3.937008,3.937008,3.937008,3.937008,3.937008,-3.937008,-3.937008,3.937008,-3.937008,-3.937008,-3.937008,-3.937008,-3.937008,3.937008,3.937008,-3.937008,3.937008,3.937008,-3.937008,3.937008,-3.937008,11.81102,3.937008,3.937008,3.937008,11.81102 + } + UVIndex: *420 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,13,15,17,16,15,13,18,12,19,12,18,17,19,18,15,19,17,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,41,46,40,47,40,46,45,47,46,43,47,45,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,60,59,57,62,56,63,56,62,61,63,62,59,63,61,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,81,83,85,84,83,81,86,80,87,80,86,85,87,86,83,87,85,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,108,107,105,110,104,111,104,110,109,111,110,107,111,109,112,114,113,115,113,114,116,118,117,119,117,118,120,117,119,121,120,119,117,122,116,123,116,122,121,123,122,119,123,121,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,165,164,166,164,165,167,169,168,170,172,171,173,175,174,176,174,175,177,179,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,201,200,202,200,201,203,205,204,206,208,207,209,211,210,212,210,211,213,215,214,216,214,215,217,219,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *140 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh statue_block, Model::RootNode + C: "OO",5630897238727123234,0 + + ;Geometry::, Model::Mesh statue_block + C: "OO",5210908637915093665,5630897238727123234 + + ;Material::stone, Model::Mesh statue_block + C: "OO",3038,5630897238727123234 + + ;Material::stoneDark, Model::Mesh statue_block + C: "OO",3040,5630897238727123234 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_block.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/statue_block.fbx.import new file mode 100644 index 0000000..7339951 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_block.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://6x76jyhlqlld" +path="res://.godot/imported/statue_block.fbx-642abc1eb897fcb1115c50a9543b3ce3.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/statue_block.fbx" +dest_files=["res://.godot/imported/statue_block.fbx-642abc1eb897fcb1115c50a9543b3ce3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_column.fbx b/assets/models/kenney_nature-kit/Models/FBX format/statue_column.fbx new file mode 100644 index 0000000..d1fbda6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_column.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 31 + Millisecond: 962 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "statue_column.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "statue_column.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5261437913965919803, "Model::statue_column", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4744153240529979992, "Geometry::", "Mesh" { + Vertices: *630 { + a: 1.5,1.6,-1.5,1.1,2,-1.1,-1.5,1.6,-1.5,-1.1,2,-1.1,1.5,9.6,1.5,-1.5,9.6,1.5,1.1,10,1.1,-1.1,10,1.1,1.5,9.6,-1.5,1.5,9.6,1.5,1.1,10,-1.1,1.1,10,1.1,1.5,8.4,-1.5,1.1,8,-1.1,1.5,8.4,1.5,1.1,8,1.1,0.6,2.5,-1.1,0.6,2.5,-0.8,-0.6,2.5,-1.1,-0.6,2.5,-0.8,1.5,1.6,1.5,-1.5,1.6,1.5,1.1,2,1.1,-1.1,2,1.1,1.5,9.6,-1.5,1.1,10,-1.1,-1.5,9.6,-1.5,-1.1,10,-1.1,1.1,2.5,-0.6,0.8,2.5,-0.6,1.1,5.378454,-0.6,0.8,5.378454,-0.6,1.1,7.5,-0.6,0.8,7.5,-0.6,-0.6,2.5,-0.8,0.6,2.5,-0.8,-0.6,7.5,-0.8,0.6,7.5,-0.8,0.6,2.5,-1.1,0.6,7.5,-1.1,0.6,2.5,-0.8,0.6,7.5,-0.8,-0.6,7.5,-1.1,-0.6,2.5,-1.1,-0.6,7.5,-0.8,-0.6,2.5,-0.8,-0.8,2.5,-0.6,-0.8,7.5,-0.6,-0.8,2.5,0.6,-0.8,7.5,0.6,1.5,8.4,1.5,1.1,8,1.1,-1.5,8.4,1.5,-1.1,8,1.1,0.6,7.5,-0.8,0.6,7.5,-1.1,-0.6,7.5,-0.8,-0.6,7.5,-1.1,0.8,7.5,-0.6,0.8,5.378454,-0.6,0.8,7.5,0.6,0.8,2.5,-0.6,0.8,2.5,0.6,-0.8,2.5,-0.6,-1.1,2.5,-0.6,-0.8,7.5,-0.6,-1.1,7.5,-0.6,-0.8,2.5,-0.6,-0.8,2.5,0.6,-1.1,2.5,-0.6,-1.1,2.5,0.6,-1.1,2.5,0.6,-0.8,2.5,0.6,-1.1,7.5,0.6,-0.8,7.5,0.6,1.5,1.6,-1.5,1.5,1.6,1.5,1.1,2,-1.1,1.1,2,1.1,0.6,2.5,0.8,-0.6,2.5,0.8,0.6,7.5,0.8,-0.6,7.5,0.8,0.6,7.5,1.1,0.6,7.5,0.8,-0.6,7.5,1.1,-0.6,7.5,0.8,-0.8,7.5,0.6,-0.8,7.5,-0.6,-1.1,7.5,0.6,-1.1,7.5,-0.6,-1.5,8.4,-1.5,-1.5,8.4,1.5,-1.1,8,-1.1,-1.1,8,1.1,1.1,2.5,-0.6,1.1,2.5,0.6,0.8,2.5,-0.6,0.8,2.5,0.6,-1.5,9.6,-1.5,-1.1,10,-1.1,-1.5,9.6,1.5,-1.1,10,1.1,-1.5,1.6,-1.5,-1.1,2,-1.1,-1.5,1.6,1.5,-1.1,2,1.1,1.5,8.4,-1.5,-1.5,8.4,-1.5,1.1,8,-1.1,-1.1,8,-1.1,1.1,7.5,0.6,1.1,7.5,-0.6,0.8,7.5,0.6,0.8,7.5,-0.6,0.8,2.5,0.6,1.1,2.5,0.6,0.8,7.5,0.6,1.1,7.5,0.6,-0.6,7.5,0.8,-0.6,2.5,0.8,-0.6,7.5,1.1,-0.6,2.5,1.1,0.6,2.5,0.8,0.6,7.5,0.8,0.6,2.5,1.1,0.6,7.5,1.1,0.6,2.5,0.8,0.6,2.5,1.1,-0.6,2.5,0.8,-0.6,2.5,1.1,1.5,8.4,1.5,-1.5,8.4,1.5,1.5,9.6,1.5,-1.5,9.6,1.5,1.1,10,-1.1,1.1,10,1.1,-1.1,10,-1.1,-1.1,10,1.1,-1.1,8,-1.1,-1.1,2.5,-0.6,-1.1,2,-1.1,-1.1,2,1.1,-1.1,2.5,0.6,-1.1,7.5,0.6,-1.1,7.5,-0.6,-1.1,8,1.1,-1.1,2,1.1,0.6,2.5,1.1,1.1,2,1.1,1.1,8,1.1,0.6,7.5,1.1,-0.6,7.5,1.1,-0.6,2.5,1.1,-1.1,8,1.1,-1.5,8.4,-1.5,-1.5,9.6,-1.5,-1.5,8.4,1.5,-1.5,9.6,1.5,1.1,2,-1.1,-0.6,2.5,-1.1,-1.1,2,-1.1,-1.1,8,-1.1,-0.6,7.5,-1.1,0.6,7.5,-1.1,0.6,2.5,-1.1,1.1,8,-1.1,-1.5,0,-1.5,1.5,0,-1.5,-1.5,1.6,-1.5,1.5,1.6,-1.5,1.5,9.6,-1.5,1.5,8.4,-1.5,1.5,9.6,1.5,1.5,8.4,1.5,-1.5,0,-1.5,-1.5,1.6,-1.5,-1.5,0,1.5,-1.5,1.6,1.5,-1.5,8.4,-1.5,1.5,8.4,-1.5,-1.5,9.6,-1.5,1.5,9.6,-1.5,1.5,0,1.5,1.5,0,-1.5,-1.5,0,1.5,-1.5,0,-1.5,1.1,2,-1.1,1.1,7.5,-0.6,1.1,8,-1.1,1.1,8,1.1,1.1,7.5,0.6,1.1,2.5,0.6,1.1,2.5,-0.6,1.1,2,1.1,1.1,5.378454,-0.6,1.5,0,1.5,-1.5,0,1.5,1.5,1.6,1.5,-1.5,1.6,1.5,1.5,1.6,-1.5,1.5,0,-1.5,1.5,1.6,1.5,1.5,0,1.5,1.1,8,-1.1,1.1,8,1.1,-1.1,8,-1.1,-1.1,8,1.1,-1.1,8,-1.1,1.1,8,1.1 + } + PolygonVertexIndex: *366 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,109,-109,110,108,-110,111,113,-113,114,112,-114,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,140,-143,144,143,-143,140,145,-140,146,139,-146,144,146,-146,142,146,-145,147,149,-149,150,148,-150,151,148,-151,152,151,-151,148,153,-148,154,147,-154,152,154,-154,150,154,-153,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,160,-163,164,163,-163,160,165,-160,166,159,-166,164,166,-166,162,166,-165,167,169,-169,170,168,-170,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,188,-191,192,191,-191,188,193,-188,194,187,-194,192,194,-194,190,194,-193,195,193,-189,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,209,-209 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1098 { + a: 0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *420 { + a: -5.905512,0.2783885,-4.330709,2.505497,5.905512,0.2783885,4.330709,2.505497,5.905512,22.54947,-5.905512,22.54947,4.330709,24.77658,-4.330709,24.77658,5.905512,22.54947,-5.905512,22.54947,4.330709,24.77658,-4.330709,24.77658,5.905512,27.56046,4.330709,25.33335,-5.905512,27.56046,-4.330709,25.33335,-2.362205,-4.330709,-2.362205,-3.149606,2.362205,-4.330709,2.362205,-3.149606,5.905512,0.2783885,-5.905512,0.2783885,4.330709,2.505497,-4.330709,2.505497,-5.905512,22.54947,-4.330709,24.77658,5.905512,22.54947,4.330709,24.77658,4.330709,9.84252,3.149606,9.84252,4.330709,21.17501,3.149606,21.17501,4.330709,29.52756,3.149606,29.52756,2.362205,9.84252,-2.362205,9.84252,2.362205,29.52756,-2.362205,29.52756,-4.330709,9.84252,-4.330709,29.52756,-3.149606,9.84252,-3.149606,29.52756,4.330709,29.52756,4.330709,9.84252,3.149606,29.52756,3.149606,9.84252,-2.362205,9.84252,-2.362205,29.52756,2.362205,9.84252,2.362205,29.52756,5.905512,27.56046,4.330709,25.33335,-5.905512,27.56046,-4.330709,25.33335,2.362205,-3.149606,2.362205,-4.330709,-2.362205,-3.149606,-2.362205,-4.330709,2.362205,29.52756,2.362205,21.17501,-2.362205,29.52756,2.362205,9.84252,-2.362205,9.84252,-3.149606,9.84252,-4.330709,9.84252,-3.149606,29.52756,-4.330709,29.52756,3.149606,-2.362205,3.149606,2.362205,4.330709,-2.362205,4.330709,2.362205,4.330709,9.84252,3.149606,9.84252,4.330709,29.52756,3.149606,29.52756,5.905512,0.2783885,-5.905512,0.2783885,4.330709,2.505497,-4.330709,2.505497,2.362205,9.84252,-2.362205,9.84252,2.362205,29.52756,-2.362205,29.52756,2.362205,4.330709,2.362205,3.149606,-2.362205,4.330709,-2.362205,3.149606,-3.149606,2.362205,-3.149606,-2.362205,-4.330709,2.362205,-4.330709,-2.362205,-5.905512,27.56046,5.905512,27.56046,-4.330709,25.33335,4.330709,25.33335,-4.330709,-2.362205,-4.330709,2.362205,-3.149606,-2.362205,-3.149606,2.362205,-5.905512,22.54947,-4.330709,24.77658,5.905512,22.54947,4.330709,24.77658,-5.905512,0.2783885,-4.330709,2.505497,5.905512,0.2783885,4.330709,2.505497,-5.905512,27.56046,5.905512,27.56046,-4.330709,25.33335,4.330709,25.33335,4.330709,2.362205,4.330709,-2.362205,3.149606,2.362205,3.149606,-2.362205,-3.149606,9.84252,-4.330709,9.84252,-3.149606,29.52756,-4.330709,29.52756,-3.149606,29.52756,-3.149606,9.84252,-4.330709,29.52756,-4.330709,9.84252,3.149606,9.84252,3.149606,29.52756,4.330709,9.84252,4.330709,29.52756,-2.362205,3.149606,-2.362205,4.330709,2.362205,3.149606,2.362205,4.330709,5.905512,33.07087,-5.905512,33.07087,5.905512,37.79528,-5.905512,37.79528,-4.330709,-4.330709,-4.330709,4.330709,4.330709,-4.330709,4.330709,4.330709,-4.330709,31.49606,-2.362205,9.84252,-4.330709,7.874016,4.330709,7.874016,2.362205,9.84252,2.362205,29.52756,-2.362205,29.52756,4.330709,31.49606,-4.330709,7.874016,2.362205,9.84252,4.330709,7.874016,4.330709,31.49606,2.362205,29.52756,-2.362205,29.52756,-2.362205,9.84252,-4.330709,31.49606,-5.905512,33.07087,-5.905512,37.79528,5.905512,33.07087,5.905512,37.79528,-4.330709,7.874016,2.362205,9.84252,4.330709,7.874016,4.330709,31.49606,2.362205,29.52756,-2.362205,29.52756,-2.362205,9.84252,-4.330709,31.49606,5.905512,0,-5.905512,0,5.905512,6.299212,-5.905512,6.299212,5.905512,37.79528,5.905512,33.07087,-5.905512,37.79528,-5.905512,33.07087,-5.905512,0,-5.905512,6.299212,5.905512,0,5.905512,6.299212,5.905512,33.07087,-5.905512,33.07087,5.905512,37.79528,-5.905512,37.79528,5.905512,5.905512,5.905512,-5.905512,-5.905512,5.905512,-5.905512,-5.905512,4.330709,7.874016,2.362205,29.52756,4.330709,31.49606,-4.330709,31.49606,-2.362205,29.52756,-2.362205,9.84252,2.362205,9.84252,-4.330709,7.874016,2.362205,21.17501,5.905512,0,-5.905512,0,5.905512,6.299212,-5.905512,6.299212,5.905512,6.299212,5.905512,0,-5.905512,6.299212,-5.905512,0,-2.362205,29.52756,2.362205,29.52756,-2.362205,9.84252,-2.362205,29.52756,2.362205,29.52756,-2.362205,9.84252 + } + UVIndex: *366 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,61,60,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,109,108,110,108,109,111,113,112,114,112,113,115,117,116,118,116,117,119,121,120,122,120,121,123,125,124,126,124,125,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,142,140,141,143,140,142,144,143,142,140,145,139,146,139,145,144,146,145,142,146,144,147,149,148,150,148,149,151,148,150,152,151,150,148,153,147,154,147,153,152,154,153,150,154,152,155,157,156,158,156,157,159,161,160,162,160,161,163,160,162,164,163,162,160,165,159,166,159,165,164,166,165,162,166,164,167,169,168,170,168,169,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,180,181,183,185,184,186,184,185,187,189,188,190,188,189,191,188,190,192,191,190,188,193,187,194,187,193,192,194,193,190,194,192,195,193,188,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,209,208 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *122 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh statue_column, Model::RootNode + C: "OO",5261437913965919803,0 + + ;Geometry::, Model::Mesh statue_column + C: "OO",4744153240529979992,5261437913965919803 + + ;Material::stoneDark, Model::Mesh statue_column + C: "OO",3040,5261437913965919803 + + ;Material::stone, Model::Mesh statue_column + C: "OO",3038,5261437913965919803 + + ;Material::_defaultMat, Model::Mesh statue_column + C: "OO",3004,5261437913965919803 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_column.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/statue_column.fbx.import new file mode 100644 index 0000000..9a23c22 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_column.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://qcoint048tue" +path="res://.godot/imported/statue_column.fbx-6efcfdc3e3d314961984c8afdc78ec57.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/statue_column.fbx" +dest_files=["res://.godot/imported/statue_column.fbx-6efcfdc3e3d314961984c8afdc78ec57.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_columnDamaged.fbx b/assets/models/kenney_nature-kit/Models/FBX format/statue_columnDamaged.fbx new file mode 100644 index 0000000..31fb37e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_columnDamaged.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 56 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "statue_columnDamaged.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "statue_columnDamaged.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5017213285243405132, "Model::statue_columnDamaged", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4990317410864134530, "Geometry::", "Mesh" { + Vertices: *528 { + a: 1.1,2.5,-0.6,0.8,2.5,-0.6,1.1,6.5,-0.6,0.8,5,-0.6,0.6,5,-0.6,0.6,6.5,-0.6,-0.6,5,-0.6,-0.6,5,0.6,-0.8,5,-0.6,-0.8,5,0.6,-0.6,5,0.8,-0.6,5,-0.8,0.6,5,0.8,0.6,5,0.6,0.6,5,-0.6,0.6,5,-0.8,0.8,5,0.6,0.8,5,-0.6,-0.6,2.5,-1.1,-0.6,5,-0.8,-0.6,5.5,-1.1,-0.6,5.5,-0.6,-0.6,5,-0.6,-0.6,2.5,-0.8,-1.1,2.5,0.6,-0.8,2.5,0.6,-1.1,6,0.6,-0.8,5,0.6,-0.6,5,0.6,-0.6,6,0.6,1.5,1.6,-1.5,1.5,1.6,1.5,1.1,2,-1.1,1.1,2,1.1,1.5,1.6,-1.5,1.1,2,-1.1,-1.5,1.6,-1.5,-1.1,2,-1.1,1.5,1.6,1.5,-1.5,1.6,1.5,1.1,2,1.1,-1.1,2,1.1,0.6,2.5,0.8,0.6,5,0.8,0.6,2.5,1.1,0.6,7,1.1,0.6,7,0.6,0.6,5,0.6,-1.5,1.6,-1.5,-1.1,2,-1.1,-1.5,1.6,1.5,-1.1,2,1.1,0.6,2.5,-1.1,0.6,6.5,-1.1,0.6,2.5,-0.8,0.6,5,-0.8,0.6,6.5,-0.6,0.6,5,-0.6,-0.6,5,-0.6,-0.8,5,-0.6,-0.6,5.5,-0.6,-1.1,5.5,-0.6,-1.1,2.5,-0.6,-0.8,2.5,-0.6,-0.8,2.5,-0.6,-0.8,5,-0.6,-0.8,2.5,0.6,-0.8,5,0.6,-0.6,2.5,-0.8,0.6,2.5,-0.8,-0.6,5,-0.8,0.6,5,-0.8,0.8,5,-0.6,0.8,2.5,-0.6,0.8,5,0.6,0.8,2.5,0.6,0.6,5,0.6,0.8,5,0.6,0.6,7,0.6,1.1,7,0.6,1.1,2.5,0.6,0.8,2.5,0.6,0.6,2.5,0.8,-0.6,2.5,0.8,0.6,5,0.8,-0.6,5,0.8,-0.6,6,0.6,-0.6,5,0.6,-0.6,6,1.1,-0.6,5,0.8,-0.6,2.5,0.8,-0.6,2.5,1.1,1.1,2.5,-0.6,1.1,2.5,0.6,0.8,2.5,-0.6,0.8,2.5,0.6,0.6,2.5,-1.1,0.6,2.5,-0.8,-0.6,2.5,-1.1,-0.6,2.5,-0.8,0.6,2.5,0.8,0.6,2.5,1.1,-0.6,2.5,0.8,-0.6,2.5,1.1,-0.8,2.5,-0.6,-0.8,2.5,0.6,-1.1,2.5,-0.6,-1.1,2.5,0.6,1.1,6.5,-1.1,1.1,6.5,-0.6,0.6,6.5,-1.1,0.6,6.5,-0.6,-0.6,5.5,-1.1,-0.6,5.5,-0.6,-1.1,5.5,-1.1,-1.1,5.5,-0.6,-1.5,0,-1.5,-1.5,1.6,-1.5,-1.5,0,1.5,-1.5,1.6,1.5,-1.5,0,-1.5,1.5,0,-1.5,-1.5,1.6,-1.5,1.5,1.6,-1.5,1.1,7,0.6,1.1,2.5,0.6,1.1,7,1.1,1.1,2,1.1,1.1,2.5,-0.6,1.1,2,-1.1,1.1,6.5,-0.6,1.1,6.5,-1.1,1.5,1.6,-1.5,1.5,0,-1.5,1.5,1.6,1.5,1.5,0,1.5,1.5,0,1.5,-1.5,0,1.5,1.5,1.6,1.5,-1.5,1.6,1.5,-0.6,6,0.6,-0.6,6,1.1,-1.1,6,0.6,-1.1,6,1.1,1.1,7,0.6,1.1,7,1.1,0.6,7,0.6,0.6,7,1.1,1.5,0,1.5,1.5,0,-1.5,-1.5,0,1.5,-1.5,0,-1.5,-1.1,2,1.1,0.6,2.5,1.1,1.1,2,1.1,1.1,7,1.1,0.6,7,1.1,-0.6,2.5,1.1,-1.1,6,1.1,-0.6,6,1.1,-1.1,5.5,-1.1,-1.1,2.5,-0.6,-1.1,2,-1.1,-1.1,2,1.1,-1.1,2.5,0.6,-1.1,6,0.6,-1.1,6,1.1,-1.1,5.5,-0.6,1.1,2,-1.1,-0.6,2.5,-1.1,-1.1,2,-1.1,-1.1,5.5,-1.1,-0.6,5.5,-1.1,0.6,2.5,-1.1,1.1,6.5,-1.1,0.6,6.5,-1.1 + } + PolygonVertexIndex: *324 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,8,-8,9,7,-9,7,10,-7,6,10,-12,10,12,-12,12,13,-12,13,14,-12,15,11,-15,13,16,-15,17,14,-17,18,20,-20,21,19,-21,22,19,-22,19,23,-19,24,26,-26,27,25,-27,28,27,-27,29,28,-27,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,44,45,-44,45,46,-44,47,43,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,53,-56,57,56,-56,58,60,-60,60,61,-60,61,62,-60,63,59,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,78,79,-78,79,80,-78,81,77,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,89,-89,91,90,-89,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,126,127,-126,125,127,-129,127,129,-129,128,129,-131,131,130,-130,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,153,-156,153,157,-153,158,152,-158,159,158,-158,160,162,-162,163,161,-163,164,161,-164,165,164,-164,166,165,-164,161,167,-161,168,170,-170,171,169,-171,172,169,-172,169,173,-169,174,168,-174,175,174,-174 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *972 { + a: 0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *352 { + a: 4.330709,9.84252,3.149606,9.84252,4.330709,25.59055,3.149606,19.68504,2.362205,19.68504,2.362205,25.59055,2.362205,-2.362205,2.362205,2.362205,3.149606,-2.362205,3.149606,2.362205,2.362205,3.149606,2.362205,-3.149606,-2.362205,3.149606,-2.362205,2.362205,-2.362205,-2.362205,-2.362205,-3.149606,-3.149606,2.362205,-3.149606,-2.362205,4.330709,9.84252,3.149606,19.68504,4.330709,21.65354,2.362205,21.65354,2.362205,19.68504,3.149606,9.84252,4.330709,9.84252,3.149606,9.84252,4.330709,23.62205,3.149606,19.68504,2.362205,19.68504,2.362205,23.62205,5.905512,0.2783885,-5.905512,0.2783885,4.330709,2.505497,-4.330709,2.505497,-5.905512,0.2783885,-4.330709,2.505497,5.905512,0.2783885,4.330709,2.505497,5.905512,0.2783885,-5.905512,0.2783885,4.330709,2.505497,-4.330709,2.505497,3.149606,9.84252,3.149606,19.68504,4.330709,9.84252,4.330709,27.55906,2.362205,27.55906,2.362205,19.68504,-5.905512,0.2783885,-4.330709,2.505497,5.905512,0.2783885,4.330709,2.505497,-4.330709,9.84252,-4.330709,25.59055,-3.149606,9.84252,-3.149606,19.68504,-2.362205,25.59055,-2.362205,19.68504,-2.362205,19.68504,-3.149606,19.68504,-2.362205,21.65354,-4.330709,21.65354,-4.330709,9.84252,-3.149606,9.84252,-2.362205,9.84252,-2.362205,19.68504,2.362205,9.84252,2.362205,19.68504,2.362205,9.84252,-2.362205,9.84252,2.362205,19.68504,-2.362205,19.68504,2.362205,19.68504,2.362205,9.84252,-2.362205,19.68504,-2.362205,9.84252,-2.362205,19.68504,-3.149606,19.68504,-2.362205,27.55906,-4.330709,27.55906,-4.330709,9.84252,-3.149606,9.84252,2.362205,9.84252,-2.362205,9.84252,2.362205,19.68504,-2.362205,19.68504,-2.362205,23.62205,-2.362205,19.68504,-4.330709,23.62205,-3.149606,19.68504,-3.149606,9.84252,-4.330709,9.84252,-4.330709,-2.362205,-4.330709,2.362205,-3.149606,-2.362205,-3.149606,2.362205,-2.362205,-4.330709,-2.362205,-3.149606,2.362205,-4.330709,2.362205,-3.149606,-2.362205,3.149606,-2.362205,4.330709,2.362205,3.149606,2.362205,4.330709,3.149606,-2.362205,3.149606,2.362205,4.330709,-2.362205,4.330709,2.362205,-4.330709,-4.330709,-4.330709,-2.362205,-2.362205,-4.330709,-2.362205,-2.362205,2.362205,-4.330709,2.362205,-2.362205,4.330709,-4.330709,4.330709,-2.362205,-5.905512,0,-5.905512,6.299212,5.905512,0,5.905512,6.299212,5.905512,0,-5.905512,0,5.905512,6.299212,-5.905512,6.299212,-2.362205,27.55906,-2.362205,9.84252,-4.330709,27.55906,-4.330709,7.874016,2.362205,9.84252,4.330709,7.874016,2.362205,25.59055,4.330709,25.59055,5.905512,6.299212,5.905512,0,-5.905512,6.299212,-5.905512,0,5.905512,0,-5.905512,0,5.905512,6.299212,-5.905512,6.299212,2.362205,2.362205,2.362205,4.330709,4.330709,2.362205,4.330709,4.330709,-4.330709,2.362205,-4.330709,4.330709,-2.362205,2.362205,-2.362205,4.330709,5.905512,5.905512,5.905512,-5.905512,-5.905512,5.905512,-5.905512,-5.905512,-4.330709,7.874016,2.362205,9.84252,4.330709,7.874016,4.330709,27.55906,2.362205,27.55906,-2.362205,9.84252,-4.330709,23.62205,-2.362205,23.62205,-4.330709,21.65354,-2.362205,9.84252,-4.330709,7.874016,4.330709,7.874016,2.362205,9.84252,2.362205,23.62205,4.330709,23.62205,-2.362205,21.65354,-4.330709,7.874016,2.362205,9.84252,4.330709,7.874016,4.330709,21.65354,2.362205,21.65354,-2.362205,9.84252,-4.330709,25.59055,-2.362205,25.59055 + } + UVIndex: *324 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,8,7,9,7,8,7,10,6,6,10,11,10,12,11,12,13,11,13,14,11,15,11,14,13,16,14,17,14,16,18,20,19,21,19,20,22,19,21,19,23,18,24,26,25,27,25,26,28,27,26,29,28,26,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,44,45,43,45,46,43,47,43,46,48,50,49,51,49,50,52,54,53,55,53,54,56,53,55,57,56,55,58,60,59,60,61,59,61,62,59,63,59,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,78,79,77,79,80,77,81,77,80,82,84,83,85,83,84,86,88,87,89,87,88,90,89,88,91,90,88,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,126,127,125,125,127,128,127,129,128,128,129,130,131,130,129,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,153,155,153,157,152,158,152,157,159,158,157,160,162,161,163,161,162,164,161,163,165,164,163,166,165,163,161,167,160,168,170,169,171,169,170,172,169,171,169,173,168,174,168,173,175,174,173 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *108 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh statue_columnDamaged, Model::RootNode + C: "OO",5017213285243405132,0 + + ;Geometry::, Model::Mesh statue_columnDamaged + C: "OO",4990317410864134530,5017213285243405132 + + ;Material::stoneDark, Model::Mesh statue_columnDamaged + C: "OO",3040,5017213285243405132 + + ;Material::stone, Model::Mesh statue_columnDamaged + C: "OO",3038,5017213285243405132 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_columnDamaged.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/statue_columnDamaged.fbx.import new file mode 100644 index 0000000..0466d48 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_columnDamaged.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://crbbrhm33p8v3" +path="res://.godot/imported/statue_columnDamaged.fbx-ac997f152327b35da0a6400741996fa6.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/statue_columnDamaged.fbx" +dest_files=["res://.godot/imported/statue_columnDamaged.fbx-ac997f152327b35da0a6400741996fa6.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_head.fbx b/assets/models/kenney_nature-kit/Models/FBX format/statue_head.fbx new file mode 100644 index 0000000..e6fb522 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_head.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 173 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "statue_head.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "statue_head.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5363643878877819183, "Model::statue_head", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4645523523591229157, "Geometry::", "Mesh" { + Vertices: *942 { + a: 1.072101,3.398097,3.144203,-1.072101,3.398097,2.644203,-1.072101,3.398097,3.144203,-1.608152,3.398097,1.644203,1.072101,3.398097,2.644203,1.608152,3.398097,2.144203,1.608152,3.398097,1.644203,-1.608152,3.398097,2.144203,1.072101,3.398097,3.144203,-1.072101,3.398097,3.144203,0.9089717,6.456779,1.817943,-0.9089717,6.456779,1.817943,2,0,2,-2,0,2,2.4,1,2.4,-2.4,1,2.4,-0.8624849,2.302932,1.644203,-0.8624849,2.702932,1.644203,-0.8624849,2.302932,2.261021,-0.8624849,2.702932,2.261021,-2.1632,3.22,0.39045,-3.06,3.22,0.39045,-2.1024,3.79,0.39045,-2.823898,3.79,0.39045,-3.63,3.79,0.39045,-3.06,4.026102,0.39045,-3.63,4.93,0.39045,-3.06,4.693898,0.39045,-2.823898,4.93,0.39045,-3.06,5.5,0.39045,-1.9808,4.93,0.39045,-1.92,5.5,0.39045,1.44,10,-1.44,1.92,5.5,-0.39045,1.44,10,0.44,1.92,5.5,0.39045,1.9808,4.93,0.39045,2.1024,3.79,0.39045,2.1632,3.22,0.39045,2.1632,3.22,-0.39045,2.4,1,-2.4,2.4,1,2.4,1.940291,5.309773,1.240291,1.817943,6.456779,1.240291,1.817943,6.456779,1.817943,1.940291,5.309773,1.940291,2.1024,3.79,6.641585E-13,1.9808,4.93,6.298677E-13,2.4,1,-2.4,2,0,-2,2.4,1,2.4,2,0,2,-1.44,10,0.44,-0.44,10,1.44,-1.817943,6.456779,1.817943,1,2.702932,1.644203,1,2.702932,2.261021,-0.8624849,2.702932,1.644203,-0.8624849,2.702932,2.261021,0.9089717,6.456779,1.817943,-0.9089717,6.456779,1.817943,1.817943,6.456779,1.817943,-1.817943,6.456779,1.817943,-0.44,10,1.44,0.44,10,1.44,3.06,3.22,0.39045,2.1632,3.22,0.39045,3.63,3.79,0.39045,2.823898,3.79,0.39045,2.1024,3.79,0.39045,3.06,4.026102,0.39045,3.63,4.93,0.39045,3.06,4.693898,0.39045,2.823898,4.93,0.39045,3.06,5.5,0.39045,1.9808,4.93,0.39045,1.92,5.5,0.39045,1,2.702932,1.644203,1,2.302932,1.644203,1,2.702932,2.261021,1,2.302932,2.261021,2.1632,3.22,-0.39045,3.06,3.22,-0.39045,1.92,5.5,-0.39045,3.63,3.79,-0.39045,3.63,4.93,-0.39045,3.06,5.5,-0.39045,-0.9089717,6.456779,1.817943,-1.072101,3.398097,3.144203,-0.9701454,5.309773,1.940291,-1.021123,4.353935,2.042247,-1.072101,3.398097,2.644203,-2.4,1,-2.4,2.4,1,-2.4,-1.44,10,-1.44,1.44,10,-1.44,0.9089717,6.456779,1.817943,0.9701454,5.309773,1.940291,1.072101,3.398097,3.144203,1.021123,4.353935,2.042247,1.072101,3.398097,2.644203,-1.44,10,0.44,-1.92,5.5,-0.39045,-1.44,10,-1.44,-2.1632,3.22,-0.39045,-1.92,5.5,0.39045,-2.4,1,-2.4,-2.4,1,2.4,-2.1632,3.22,0.39045,-2.1024,3.79,0.39045,-1.9808,4.93,0.39045,-1.9808,4.93,-4.854855E-13,-2.1024,3.79,-5.197762E-13,-1.940291,5.309773,1.240291,-1.940291,5.309773,1.940291,-1.817943,6.456779,1.240291,-1.817943,6.456779,1.817943,-2,0,-2,2,0,-2,-2.4,1,-2.4,2.4,1,-2.4,1.44,10,-1.44,1.44,10,0.44,-1.44,10,-1.44,0.44,10,1.44,-0.44,10,1.44,-1.44,10,0.44,1.44,10,0.44,1.817943,6.456779,1.817943,0.44,10,1.44,-2.4,1,-2.4,-2.4,1,2.4,-2,0,-2,-2,0,2,3.06,5.5,-0.39045,3.06,5.5,0.39045,1.92,5.5,-0.39045,1.92,5.5,0.39045,-3.06,3.22,-0.39045,-2.1632,3.22,-0.39045,-3.63,3.79,-0.39045,-1.92,5.5,-0.39045,-3.63,4.93,-0.39045,-3.06,5.5,-0.39045,-1.072101,3.398097,2.644203,-1.608152,3.398097,2.144203,-1.021123,4.353935,2.042247,-3.63,3.79,-0.39045,-3.63,3.79,0.39045,-3.06,3.22,-0.39045,-3.06,3.22,0.39045,-3.63,3.79,-0.39045,-3.63,4.93,-0.39045,-3.63,3.79,0.39045,-3.63,4.93,0.39045,3.63,4.93,-0.39045,3.63,3.79,-0.39045,3.63,4.93,0.39045,3.63,3.79,0.39045,-2.1632,3.22,-0.39045,-3.06,3.22,-0.39045,-2.1632,3.22,0.39045,-3.06,3.22,0.39045,1.608152,3.398097,2.144203,1.072101,3.398097,2.644203,1.021123,4.353935,2.042247,3.06,3.22,-0.39045,2.1632,3.22,-0.39045,3.06,3.22,0.39045,2.1632,3.22,0.39045,-1.92,5.5,-0.39045,-1.92,5.5,0.39045,-3.06,5.5,-0.39045,-3.06,5.5,0.39045,-2.4,1,2.4,1.72497,2.302932,2.261021,2.4,1,2.4,1.940291,5.309773,1.940291,1.608152,3.398097,2.144203,1.021123,4.353935,2.042247,0.9701454,5.309773,1.940291,-1.72497,2.302932,2.261021,-1.940291,5.309773,1.940291,1,2.302932,2.261021,-0.8624849,2.302932,2.261021,-1.608152,3.398097,2.144203,-1.021123,4.353935,2.042247,-0.9701454,5.309773,1.940291,3.06,5.5,-0.39045,3.63,4.93,-0.39045,3.06,5.5,0.39045,3.63,4.93,0.39045,3.06,3.22,-0.39045,3.06,3.22,0.39045,3.63,3.79,-0.39045,3.63,3.79,0.39045,-3.63,4.93,-0.39045,-3.06,5.5,-0.39045,-3.63,4.93,0.39045,-3.06,5.5,0.39045,1,2.302932,2.261021,-0.8624849,2.302932,2.261021,1,2.702932,2.261021,-0.8624849,2.702932,2.261021,0.9089717,6.456779,1.240291,0.9701454,5.309773,1.240291,2.823898,4.93,8.662937E-13,1.9808,4.93,6.298677E-13,2.823898,4.93,0.39045,1.9808,4.93,0.39045,1.608152,3.398097,1.644203,1.608152,3.398097,2.144203,1.72497,2.302932,1.644203,1.72497,2.302932,2.261021,1.817943,6.456779,1.240291,0.9089717,6.456779,1.240291,1.817943,6.456779,1.817943,0.9089717,6.456779,1.817943,1.940291,5.309773,1.240291,1.940291,5.309773,1.940291,0.9701454,5.309773,1.240291,0.9701454,5.309773,1.940291,-0.8624849,2.302932,1.644203,-0.8624849,2.302932,2.261021,-1.72497,2.302932,1.644203,-1.72497,2.302932,2.261021,1.72497,2.302932,1.644203,1,2.302932,1.644203,1.608152,3.398097,1.644203,1,2.702932,1.644203,-0.8624849,2.702932,1.644203,-1.608152,3.398097,1.644203,-1.72497,2.302932,1.644203,-0.8624849,2.302932,1.644203,3.06,4.026102,9.330705E-13,3.06,4.693898,9.330705E-13,3.06,4.026102,0.39045,3.06,4.693898,0.39045,-3.06,4.693898,-7.90493E-13,-3.06,4.026102,-7.90493E-13,-3.06,4.693898,0.39045,-3.06,4.026102,0.39045,-2.1024,3.79,-5.197762E-13,-2.1024,3.79,0.39045,-2.823898,3.79,-7.219114E-13,-2.823898,3.79,0.39045,1.72497,2.302932,1.644203,1.72497,2.302932,2.261021,1,2.302932,1.644203,1,2.302932,2.261021,-1.9808,4.93,-4.854855E-13,-2.823898,4.93,-7.219114E-13,-1.9808,4.93,0.39045,-2.823898,4.93,0.39045,-3.06,4.026102,-7.90493E-13,-2.823898,3.79,-7.219114E-13,-3.06,4.026102,0.39045,-2.823898,3.79,0.39045,2.823898,3.79,8.662937E-13,3.06,4.026102,9.330705E-13,2.823898,3.79,0.39045,3.06,4.026102,0.39045,-0.9701454,5.309773,1.240291,-0.9701454,5.309773,1.940291,-1.940291,5.309773,1.240291,-1.940291,5.309773,1.940291,1.940291,5.309773,1.240291,0.9701454,5.309773,1.240291,1.817943,6.456779,1.240291,0.9089717,6.456779,1.240291,-0.9701454,5.309773,1.240291,-1.940291,5.309773,1.240291,-0.9089717,6.456779,1.240291,-1.817943,6.456779,1.240291,-2.823898,3.79,-7.219114E-13,-3.06,4.026102,-7.90493E-13,-2.1024,3.79,-5.197762E-13,-1.9808,4.93,-4.854855E-13,-3.06,4.693898,-7.90493E-13,-2.823898,4.93,-7.219114E-13,-3.06,4.693898,-7.90493E-13,-3.06,4.693898,0.39045,-2.823898,4.93,-7.219114E-13,-2.823898,4.93,0.39045,2.823898,3.79,8.662937E-13,2.1024,3.79,6.641585E-13,3.06,4.026102,9.330705E-13,1.9808,4.93,6.298677E-13,3.06,4.693898,9.330705E-13,2.823898,4.93,8.662937E-13,-1.72497,2.302932,1.644203,-1.72497,2.302932,2.261021,-1.608152,3.398097,1.644203,-1.608152,3.398097,2.144203,2.823898,3.79,8.662937E-13,2.823898,3.79,0.39045,2.1024,3.79,6.641585E-13,2.1024,3.79,0.39045,-0.9701454,5.309773,1.240291,-0.9089717,6.456779,1.240291,2.823898,4.93,8.662937E-13,2.823898,4.93,0.39045,3.06,4.693898,9.330705E-13,3.06,4.693898,0.39045,-0.9089717,6.456779,1.240291,-1.817943,6.456779,1.240291,-0.9089717,6.456779,1.817943,-1.817943,6.456779,1.817943,2,0,-2,-2,0,-2,2,0,2,-2,0,2,2,0,2,-2,0,-2 + } + PolygonVertexIndex: *588 { + a: 0,2,-2,1,3,-1,0,3,-5,4,3,-6,6,5,-4,7,3,-2,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,21,23,-25,25,24,-24,26,24,-26,27,26,-26,28,26,-28,29,26,-29,30,29,-29,31,29,-31,32,34,-34,35,33,-35,36,35,-35,37,36,-35,38,37,-35,33,39,-33,32,39,-41,41,40,-40,38,41,-40,42,41,-39,34,42,-39,43,42,-35,34,44,-44,45,41,-43,37,46,-37,47,36,-47,48,50,-50,51,49,-51,52,54,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,62,-62,64,63,-62,65,67,-67,68,66,-68,69,66,-69,70,68,-68,71,70,-68,72,70,-72,73,72,-72,74,73,-72,75,73,-75,76,75,-75,77,79,-79,80,78,-80,81,83,-83,84,82,-84,85,84,-84,86,85,-84,87,89,-89,90,88,-90,91,88,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,99,-99,101,103,-103,104,102,-104,105,101,-103,103,106,-105,107,104,-107,108,104,-108,109,108,-108,110,109,-108,105,110,-108,110,111,-110,112,109,-112,113,105,-108,101,105,-114,114,113,-108,113,115,-102,116,101,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,124,-124,126,125,-124,127,129,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,141,-141,143,141,-143,144,146,-146,147,149,-149,150,148,-150,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,165,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,175,-178,179,178,-178,180,179,-178,175,181,-175,182,174,-182,183,181,-176,184,181,-184,185,182,-182,186,182,-186,187,182,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,96,-206,97,205,-97,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,229,-229,228,231,-231,231,232,-231,233,230,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,275,-278,279,278,-278,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,287,-287,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,89,-300,87,299,-90,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,313,-313 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1764 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3978171,0.9174647,0,0.3978171,0.9174647,0,0.3978171,0.9174647,0,0.3978171,0.9174647,0,0.3978171,0.9174647,0,0.3978171,0.9174647,0,-0.3713907,0.9284768,0,-0.3713907,0.9284768,0,-0.3713907,0.9284768,0,-0.3713907,0.9284768,0,-0.3713907,0.9284768,0,-0.3713907,0.9284768,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9943592,0.106065,0,0.9284768,-0.3713907,0,0.9284768,-0.3713907,0,0.9284768,-0.3713907,0,0.9284768,-0.3713907,0,0.9284768,-0.3713907,0,0.9284768,-0.3713907,0,-0.6673221,0.3306997,0.6673221,-0.6673221,0.3306997,0.6673221,-0.6673221,0.3306997,0.6673221,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,0,0.106065,-0.9943592,0,0.106065,-0.9943592,0,0.106065,-0.9943592,0,0.106065,-0.9943592,0,0.106065,-0.9943592,0,0.106065,-0.9943592,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,-0.9943592,0.106065,0,0,-0.3713907,-0.9284768,0,-0.3713907,-0.9284768,0,-0.3713907,-0.9284768,0,-0.3713907,-0.9284768,0,-0.3713907,-0.9284768,0,-0.3713907,-0.9284768,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.6673221,0.3306997,0.6673221,0.6673221,0.3306997,0.6673221,0.6673221,0.3306997,0.6673221,-0.9284768,-0.3713907,0,-0.9284768,-0.3713907,0,-0.9284768,-0.3713907,0,-0.9284768,-0.3713907,0,-0.9284768,-0.3713907,0,-0.9284768,-0.3713907,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.6108328,0.4449967,0.6548748,-0.6108328,0.4449967,0.6548748,-0.6108328,0.4449967,0.6548748,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6108328,0.4449967,0.6548748,0.6108328,0.4449967,0.6548748,0.6108328,0.4449967,0.6548748,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0,0.106065,0.9943592,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0.9985808,0.05325764,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9943592,-0.106065,0,-0.9943592,-0.106065,0,-0.9943592,-0.106065,0,-0.9943592,-0.106065,0,-0.9943592,-0.106065,0,-0.9943592,-0.106065,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.9943592,-0.106065,0,0.9943592,-0.106065,0,0.9943592,-0.106065,0,0.9943592,-0.106065,0,0.9943592,-0.106065,0,0.9943592,-0.106065,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.9985808,0.05325764,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *628 { + a: 4.220872,12.37875,-4.220872,10.41025,-4.220872,12.37875,-6.331308,6.47324,4.220872,10.41025,6.331308,8.441744,6.331308,6.47324,-6.331308,8.441744,4.220872,7.34967,-4.220872,7.34967,3.578629,20.47503,-3.578629,20.47503,7.874016,2.924336,-7.874016,2.924336,9.448819,7.164623,-9.448819,7.164623,6.47324,9.066663,6.47324,10.64147,8.901656,9.066663,8.901656,10.64147,-8.516536,12.67717,-12.04724,12.67717,-8.277165,14.92126,-11.11771,14.92126,-14.29134,14.92126,-12.04724,15.85079,-14.29134,19.40945,-12.04724,18.47991,-11.11771,19.40945,-12.04724,21.65354,-7.798425,19.40945,-7.559055,21.65354,5.669291,38.54669,1.537205,20.72965,-1.732283,38.54669,-1.537205,20.72965,-1.537205,18.47282,-1.537205,13.95917,-1.537205,11.70235,1.537205,11.70235,9.448819,2.912611,-9.448819,2.912611,-4.883035,19.97648,-4.883035,24.51787,-7.157258,24.51787,-7.63894,19.97648,-2.848903E-13,13.95917,-2.846459E-13,18.47282,9.448819,7.164623,7.874016,2.924336,-9.448819,7.164623,-7.874016,2.924336,-2.783885,35.42418,2.783885,35.42418,-3.002043E-13,20.64283,-3.937008,6.47324,-3.937008,8.901656,3.39561,6.47324,3.39561,8.901656,3.578629,24.51787,-3.578629,24.51787,7.157258,24.51787,-7.157258,24.51787,-1.732283,38.54669,1.732283,38.54669,12.04724,12.67717,8.516536,12.67717,14.29134,14.92126,11.11771,14.92126,8.277165,14.92126,12.04724,15.85079,14.29134,19.40945,12.04724,18.47991,11.11771,19.40945,12.04724,21.65354,7.798425,19.40945,7.559055,21.65354,-6.47324,10.64147,-6.47324,9.066663,-8.901656,10.64147,-8.901656,9.066663,-8.516536,12.67717,-12.04724,12.67717,-7.559055,21.65354,-14.29134,14.92126,-14.29134,19.40945,-12.04724,21.65354,7.157258,25.19373,12.37875,13.13455,7.63894,20.67154,8.040342,16.90305,10.41025,13.13455,9.448819,2.912611,-9.448819,2.912611,5.669291,38.54669,-5.669291,38.54669,-7.157258,25.19373,-7.63894,20.67154,-12.37875,13.13455,-8.040342,16.90305,-10.41025,13.13455,1.732283,38.54669,-1.537205,20.72965,-5.669291,38.54669,-1.537205,11.70235,1.537205,20.72965,-9.448819,2.912611,9.448819,2.912611,1.537205,11.70235,1.537205,13.95917,1.537205,18.47282,2.820796E-13,18.47282,2.817303E-13,13.95917,4.883035,19.97648,7.63894,19.97648,4.883035,24.51787,7.157258,24.51787,7.874016,2.924336,-7.874016,2.924336,9.448819,7.164623,-9.448819,7.164623,-5.669291,-5.669291,-5.669291,1.732283,5.669291,-5.669291,-1.732283,5.669291,1.732283,5.669291,5.669291,1.732283,2.783885,35.42418,-7.300827E-13,20.64283,-2.783885,35.42418,-9.448819,7.164623,9.448819,7.164623,-7.874016,2.924336,7.874016,2.924336,-12.04724,-1.537205,-12.04724,1.537205,-7.559055,-1.537205,-7.559055,1.537205,12.04724,12.67717,8.516536,12.67717,14.29134,14.92126,7.559055,21.65354,14.29134,19.40945,12.04724,21.65354,4.014126,7.311954,1.128134,7.311954,2.544405,11.51408,-1.537205,20.65643,1.537205,20.65643,-1.537205,17.4828,1.537205,17.4828,-1.537205,14.92126,-1.537205,19.40945,1.537205,14.92126,1.537205,19.40945,1.537205,19.40945,1.537205,14.92126,-1.537205,19.40945,-1.537205,14.92126,-8.516536,-1.537205,-12.04724,-1.537205,-8.516536,1.537205,-12.04724,1.537205,-1.128134,7.311954,-4.014126,7.311954,-2.544405,11.51408,12.04724,-1.537205,8.516536,-1.537205,12.04724,1.537205,8.516536,1.537205,7.559055,-1.537205,7.559055,1.537205,12.04724,-1.537205,12.04724,1.537205,-9.448819,2.912611,6.79122,8.071365,9.448819,2.912611,7.63894,19.97648,6.331308,12.4075,4.020171,16.19199,3.81947,19.97648,-6.79122,8.071365,-7.63894,19.97648,3.937008,8.071365,-3.39561,8.071365,-6.331308,12.4075,-4.020171,16.19199,-3.81947,19.97648,1.537205,6.792679,1.537205,3.619051,-1.537205,6.792679,-1.537205,3.619051,1.537205,17.4828,-1.537205,17.4828,1.537205,20.65643,-1.537205,20.65643,-1.537205,3.619051,-1.537205,6.792679,1.537205,3.619051,1.537205,6.792679,3.937008,9.066663,-3.39561,9.066663,3.937008,10.64147,-3.39561,10.64147,-4.883035,25.19373,-4.883035,20.67154,11.11771,3.410605E-12,7.798425,2.479794E-12,11.11771,1.537205,7.798425,1.537205,6.47324,12.63134,8.441744,12.63134,6.47324,8.295209,8.901656,8.295209,7.157258,4.883035,3.578629,4.883035,7.157258,7.157258,3.578629,7.157258,-7.63894,4.883035,-7.63894,7.63894,-3.81947,4.883035,-3.81947,7.63894,3.39561,6.47324,3.39561,8.901656,6.79122,6.47324,6.79122,8.901656,6.79122,9.066663,3.937008,9.066663,6.331308,13.37833,3.937008,10.64147,-3.39561,10.64147,-6.331308,13.37833,-6.79122,9.066663,-3.39561,9.066663,2.822423E-13,15.85079,2.822423E-13,18.47991,1.537205,15.85079,1.537205,18.47991,-2.790865E-13,18.47991,-2.790865E-13,15.85079,-1.537205,18.47991,-1.537205,15.85079,8.277165,-2.046363E-12,8.277165,1.537205,11.11771,-2.842171E-12,11.11771,1.537205,-6.79122,6.47324,-6.79122,8.901656,-3.937008,6.47324,-3.937008,8.901656,-7.798425,-1.91136E-12,-11.11771,-2.842171E-12,-7.798425,1.537205,-11.11771,1.537205,-2.790865E-13,19.72689,-2.874315E-13,18.41233,-1.537205,19.72689,-1.537205,18.41233,2.810027E-13,18.41233,2.822423E-13,19.72689,1.537205,18.41233,1.537205,19.72689,3.81947,4.883035,3.81947,7.63894,7.63894,4.883035,7.63894,7.63894,7.63894,20.90462,3.81947,20.90462,7.157258,25.42039,3.578629,25.42039,-3.81947,20.90462,-7.63894,20.90462,-3.578629,25.42039,-7.157258,25.42039,-11.11771,14.92126,-12.04724,15.85079,-8.277165,14.92126,-7.798425,19.40945,-12.04724,18.47991,-11.11771,19.40945,-2.790865E-13,4.548585,-1.537205,4.548585,-2.874315E-13,5.863145,-1.537205,5.863145,11.11771,14.92126,8.277165,14.92126,12.04724,15.85079,7.798425,19.40945,12.04724,18.47991,11.11771,19.40945,-6.47324,8.295209,-8.901656,8.295209,-6.47324,12.63134,-8.441744,12.63134,-11.11771,3.384741E-12,-11.11771,1.537205,-8.277165,2.588933E-12,-8.277165,1.537205,4.883035,20.67154,4.883035,25.19373,2.810027E-13,5.863145,1.537205,5.863145,2.822423E-13,4.548585,1.537205,4.548585,-3.578629,4.883035,-7.157258,4.883035,-3.578629,7.157258,-7.157258,7.157258,6.331308,13.37833,-3.39561,10.64147,-6.331308,13.37833,6.331308,13.37833,-3.39561,10.64147,-6.331308,13.37833 + } + UVIndex: *588 { + a: 0,2,1,1,3,0,0,3,4,4,3,5,6,5,3,7,3,1,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,21,23,24,25,24,23,26,24,25,27,26,25,28,26,27,29,26,28,30,29,28,31,29,30,32,34,33,35,33,34,36,35,34,37,36,34,38,37,34,33,39,32,32,39,40,41,40,39,38,41,39,42,41,38,34,42,38,43,42,34,34,44,43,45,41,42,37,46,36,47,36,46,48,50,49,51,49,50,52,54,53,55,57,56,58,56,57,59,61,60,62,60,61,63,62,61,64,63,61,65,67,66,68,66,67,69,66,68,70,68,67,71,70,67,72,70,71,73,72,71,74,73,71,75,73,74,76,75,74,77,79,78,80,78,79,81,83,82,84,82,83,85,84,83,86,85,83,87,89,88,90,88,89,91,88,90,92,94,93,95,93,94,96,98,97,99,97,98,100,99,98,101,103,102,104,102,103,105,101,102,103,106,104,107,104,106,108,104,107,109,108,107,110,109,107,105,110,107,110,111,109,112,109,111,113,105,107,101,105,113,114,113,107,113,115,101,116,101,115,117,119,118,120,118,119,121,123,122,124,122,123,125,124,123,126,125,123,127,129,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,141,140,143,141,142,144,146,145,147,149,148,150,148,149,151,153,152,154,152,153,155,157,156,158,156,157,159,161,160,162,160,161,163,165,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,175,177,179,178,177,180,179,177,175,181,174,182,174,181,183,181,175,184,181,183,185,182,181,186,182,185,187,182,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,96,205,97,205,96,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,229,228,228,231,230,231,232,230,233,230,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,275,277,279,278,277,280,282,281,283,281,282,284,286,285,287,285,286,288,287,286,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,89,299,87,299,89,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,313,312 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *196 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh statue_head, Model::RootNode + C: "OO",5363643878877819183,0 + + ;Geometry::, Model::Mesh statue_head + C: "OO",4645523523591229157,5363643878877819183 + + ;Material::stone, Model::Mesh statue_head + C: "OO",3038,5363643878877819183 + + ;Material::stoneDark, Model::Mesh statue_head + C: "OO",3040,5363643878877819183 + + ;Material::_defaultMat, Model::Mesh statue_head + C: "OO",3004,5363643878877819183 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_head.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/statue_head.fbx.import new file mode 100644 index 0000000..6961770 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_head.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bplv1h238i7ej" +path="res://.godot/imported/statue_head.fbx-b1f1f1ae9d5368f30caf8b7b6f4a03e2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/statue_head.fbx" +dest_files=["res://.godot/imported/statue_head.fbx-b1f1f1ae9d5368f30caf8b7b6f4a03e2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_obelisk.fbx b/assets/models/kenney_nature-kit/Models/FBX format/statue_obelisk.fbx new file mode 100644 index 0000000..f7a82ad --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_obelisk.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 257 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "statue_obelisk.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "statue_obelisk.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4786590339057091843, "Model::statue_obelisk", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5110268796269615815, "Geometry::", "Mesh" { + Vertices: *192 { + a: 1.304829,0.9427352,1.304829,0.9139535,0.9427352,-0.9139535,1.304829,0.9427352,-1.304829,-1.304829,0.9427352,-1.304829,-0.9139535,0.9427352,-0.9139535,-0.9139535,0.9427352,0.9139535,0.9139535,0.9427352,0.9139535,-1.304829,0.9427352,1.304829,0.9139535,0.9427352,0.9139535,-0.9139535,0.9427352,0.9139535,0.7311627,4.433101,0.7311627,-0.7311627,4.433101,0.7311627,-0.9139535,0.9427352,-0.9139535,0.9139535,0.9427352,-0.9139535,-0.7311627,4.433101,-0.7311627,0.7311627,4.433101,-0.7311627,-0.9139535,0.9427352,-0.9139535,-0.7311627,4.433101,-0.7311627,-0.9139535,0.9427352,0.9139535,-0.7311627,4.433101,0.7311627,0.9139535,0.9427352,-0.9139535,0.9139535,0.9427352,0.9139535,0.7311627,4.433101,-0.7311627,0.7311627,4.433101,0.7311627,-0.548372,7.923467,-0.548372,-0.548372,7.923467,0.548372,-0.548372,7.923467,-0.548372,0.548372,7.923467,-0.548372,-5.775292E-14,8.753971,1.443823E-14,-0.548372,7.923467,-0.548372,0.548372,7.923467,-0.548372,0.548372,7.923467,0.548372,-0.548372,7.923467,0.548372,-5.775292E-14,8.753971,1.443823E-14,-1.535093,0,-1.535093,1.535093,0,-1.535093,-1.304829,0.9427352,-1.304829,1.304829,0.9427352,-1.304829,-5.775292E-14,8.753971,1.443823E-14,0.548372,7.923467,-0.548372,0.548372,7.923467,0.548372,1.535093,0,1.535093,-1.535093,0,1.535093,1.304829,0.9427352,1.304829,-1.304829,0.9427352,1.304829,0.548372,7.923467,0.548372,-0.548372,7.923467,0.548372,1.535093,0,1.535093,1.535093,0,-1.535093,-1.535093,0,1.535093,-1.535093,0,-1.535093,-0.548372,7.923467,-0.548372,-5.775292E-14,8.753971,1.443823E-14,-0.548372,7.923467,0.548372,1.535093,0,-1.535093,1.535093,0,1.535093,1.304829,0.9427352,-1.304829,1.304829,0.9427352,1.304829,-1.535093,0,-1.535093,-1.304829,0.9427352,-1.304829,-1.535093,0,1.535093,-1.304829,0.9427352,1.304829,0.548372,7.923467,-0.548372,0.548372,7.923467,0.548372 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,1,6,-1,7,0,-7,5,7,-7,3,7,-6,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,17,19,-25,25,24,-20,26,28,-28,14,29,-16,30,15,-30,31,33,-33,34,36,-36,37,35,-37,38,40,-40,41,43,-43,44,42,-44,10,45,-12,46,11,-46,47,49,-49,50,48,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,22,62,-24,63,23,-63 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,-0.9986314,0.05229842,0,0,0.5510094,-0.8344991,0,0.5510094,-0.8344991,0,0.5510094,-0.8344991,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,0,0.05229842,-0.9986314,0,0.5510094,0.8344991,0,0.5510094,0.8344991,0,0.5510094,0.8344991,0,0.2372761,-0.9714423,0,0.2372761,-0.9714423,0,0.2372761,-0.9714423,0,0.2372761,-0.9714423,0,0.2372761,-0.9714423,0,0.2372761,-0.9714423,0.8344991,0.5510094,0,0.8344991,0.5510094,0,0.8344991,0.5510094,0,0,0.2372761,0.9714423,0,0.2372761,0.9714423,0,0.2372761,0.9714423,0,0.2372761,0.9714423,0,0.2372761,0.9714423,0,0.2372761,0.9714423,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,0.05229842,0.9986314,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8344991,0.5510094,0,-0.8344991,0.5510094,0,-0.8344991,0.5510094,0,0.9714423,0.2372761,0,0.9714423,0.2372761,0,0.9714423,0.2372761,0,0.9714423,0.2372761,0,0.9714423,0.2372761,0,0.9714423,0.2372761,0,-0.9714423,0.2372761,0,-0.9714423,0.2372761,0,-0.9714423,0.2372761,0,-0.9714423,0.2372761,0,-0.9714423,0.2372761,0,-0.9714423,0.2372761,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0,0.9986314,0.05229842,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *128 { + a: -5.137122,5.137122,-3.598242,-3.598242,-5.137122,-5.137122,5.137122,-5.137122,3.598242,-3.598242,3.598242,3.598242,-3.598242,3.598242,5.137122,5.137122,3.598242,3.518294,-3.598242,3.518294,2.878593,17.27872,-2.878593,17.27872,3.598242,3.518294,-3.598242,3.518294,2.878593,17.27872,-2.878593,17.27872,-3.598242,3.518294,-2.878593,17.27872,3.598242,3.518294,2.878593,17.27872,3.598242,3.518294,-3.598242,3.518294,2.878593,17.27872,-2.878593,17.27872,-2.158945,31.03915,2.158945,31.03915,2.158945,24.84239,-2.158945,24.84239,2.273737E-13,28.76055,2.158945,31.03915,-2.158945,31.03915,2.158945,24.84239,-2.158945,24.84239,-2.273737E-13,28.76055,6.043674,-1.434019,-6.043674,-1.434019,5.137122,2.386646,-5.137122,2.386646,-5.684342E-14,28.76055,2.158945,24.84239,-2.158945,24.84239,6.043674,-1.434019,-6.043674,-1.434019,5.137122,2.386646,-5.137122,2.386646,2.158945,31.03915,-2.158945,31.03915,6.043674,6.043674,6.043674,-6.043674,-6.043674,6.043674,-6.043674,-6.043674,-2.158945,24.84239,5.684342E-14,28.76055,2.158945,24.84239,6.043674,-1.434019,-6.043674,-1.434019,5.137122,2.386646,-5.137122,2.386646,-6.043674,-1.434019,-5.137122,2.386646,6.043674,-1.434019,5.137122,2.386646,2.158945,31.03915,-2.158945,31.03915 + } + UVIndex: *114 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,1,6,0,7,0,6,5,7,6,3,7,5,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,17,19,24,25,24,19,26,28,27,14,29,15,30,15,29,31,33,32,34,36,35,37,35,36,38,40,39,41,43,42,44,42,43,10,45,11,46,11,45,47,49,48,50,48,49,51,53,52,54,56,55,57,55,56,58,60,59,61,59,60,22,62,23,63,23,62 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh statue_obelisk, Model::RootNode + C: "OO",4786590339057091843,0 + + ;Geometry::, Model::Mesh statue_obelisk + C: "OO",5110268796269615815,4786590339057091843 + + ;Material::stoneDark, Model::Mesh statue_obelisk + C: "OO",3040,4786590339057091843 + + ;Material::stone, Model::Mesh statue_obelisk + C: "OO",3038,4786590339057091843 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_obelisk.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/statue_obelisk.fbx.import new file mode 100644 index 0000000..2b6f68d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_obelisk.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://imoy8a3g8g4m" +path="res://.godot/imported/statue_obelisk.fbx-15ab840f9fd68cc8084e93e607b2cda3.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/statue_obelisk.fbx" +dest_files=["res://.godot/imported/statue_obelisk.fbx-15ab840f9fd68cc8084e93e607b2cda3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_ring.fbx b/assets/models/kenney_nature-kit/Models/FBX format/statue_ring.fbx new file mode 100644 index 0000000..b54ee8e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_ring.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 345 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "statue_ring.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "statue_ring.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5730022797685703629, "Model::statue_ring", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5469072827138897695, "Geometry::", "Mesh" { + Vertices: *354 { + a: -1.669873,2,-0.8660254,1.669873,2,-0.8660254,-3,2.767949,-0.8660254,5.775292E-14,2.400546,-0.8660254,-1.81818,3.450273,-0.8660254,-3,6.232051,-0.8660254,-1.81818,5.549727,-0.8660254,0,6.599454,-0.8660254,0,7.964101,-0.8660254,3,2.767949,-0.8660254,1.81818,3.450273,-0.8660254,3,6.232051,-0.8660254,1.81818,5.549727,-0.8660254,3,1.6,-2,3,0,-2,3,1.6,2,3,0,2,-3,0,-2,3,0,-2,-3,1.6,-2,3,1.6,-2,3,0,2,3,0,-2,-3,0,2,-3,0,-2,3,2.767949,0.8660254,3,2.767949,-0.8660254,1.669873,2,0.8660254,1.669873,2,-0.8660254,0,7.964101,-0.8660254,0,7.964101,0.8660254,-3,6.232051,-0.8660254,-3,6.232051,0.8660254,3,0,2,-3,0,2,3,1.6,2,-3,1.6,2,3,6.232051,-0.8660254,3,2.767949,-0.8660254,3,6.232051,0.8660254,3,2.767949,0.8660254,2.6,2,1.6,1.669873,2,-0.8660254,2.6,2,-1.6,-2.6,2,-1.6,-1.669873,2,-0.8660254,-1.669873,2,0.8660254,1.669873,2,0.8660254,-2.6,2,1.6,-3,0,-2,-3,1.6,-2,-3,0,2,-3,1.6,2,1.669873,2,0.8660254,-1.669873,2,0.8660254,3,2.767949,0.8660254,5.775292E-14,2.400546,0.8660254,1.81818,3.450273,0.8660254,3,6.232051,0.8660254,1.81818,5.549727,0.8660254,0,6.599454,0.8660254,0,7.964101,0.8660254,-3,2.767949,0.8660254,-1.81818,3.450273,0.8660254,-3,6.232051,0.8660254,-1.81818,5.549727,0.8660254,-3,2.767949,-0.8660254,-3,6.232051,-0.8660254,-3,2.767949,0.8660254,-3,6.232051,0.8660254,3,6.232051,-0.8660254,3,6.232051,0.8660254,0,7.964101,-0.8660254,0,7.964101,0.8660254,-1.669873,2,0.8660254,-1.669873,2,-0.8660254,-3,2.767949,0.8660254,-3,2.767949,-0.8660254,1.81818,3.450273,-0.8660254,1.81818,5.549727,-0.8660254,1.81818,3.450273,0.8660254,1.81818,5.549727,0.8660254,5.775292E-14,2.400546,-0.8660254,5.775292E-14,2.400546,0.8660254,-1.81818,3.450273,-0.8660254,-1.81818,3.450273,0.8660254,1.81818,3.450273,-0.8660254,1.81818,3.450273,0.8660254,5.775292E-14,2.400546,-0.8660254,5.775292E-14,2.400546,0.8660254,1.81818,5.549727,0.8660254,1.81818,5.549727,-0.8660254,0,6.599454,0.8660254,0,6.599454,-0.8660254,-3,1.6,-2,-2.6,2,-1.6,-3,1.6,2,-2.6,2,1.6,-1.81818,5.549727,-0.8660254,-1.81818,3.450273,-0.8660254,-1.81818,5.549727,0.8660254,-1.81818,3.450273,0.8660254,3,1.6,2,-3,1.6,2,2.6,2,1.6,-2.6,2,1.6,3,1.6,-2,3,1.6,2,2.6,2,-1.6,2.6,2,1.6,0,6.599454,0.8660254,0,6.599454,-0.8660254,-1.81818,5.549727,0.8660254,-1.81818,5.549727,-0.8660254,3,1.6,-2,2.6,2,-1.6,-3,1.6,-2,-2.6,2,-1.6 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,4,-6,7,6,-6,8,7,-6,1,3,-10,10,9,-4,11,9,-11,8,11,-8,12,11,-11,7,11,-13,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,42,-45,46,45,-45,42,47,-42,48,41,-48,46,48,-48,44,48,-47,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,56,-56,58,57,-56,59,57,-59,60,59,-59,61,60,-59,54,56,-63,63,62,-57,64,62,-64,61,64,-61,65,64,-64,60,64,-66,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.5,-0.8660254,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0.5,-0.8660254,0,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *236 { + a: 6.574303,7.874016,-6.574303,7.874016,11.81102,10.89744,-2.263851E-13,9.450969,7.158191,13.58375,11.81102,24.53563,7.158191,21.84932,9.885796E-16,25.9821,9.885796E-16,31.35473,-11.81102,10.89744,-7.158191,13.58375,-11.81102,24.53563,-7.158191,21.84932,7.874016,6.299212,7.874016,0,-7.874016,6.299212,-7.874016,0,11.81102,0,-11.81102,0,11.81102,6.299212,-11.81102,6.299212,11.81102,7.874016,11.81102,-7.874016,-11.81102,7.874016,-11.81102,-7.874016,-3.409549,15.67737,3.409549,15.67737,-3.409549,9.630522,3.409549,9.630522,-3.409549,15.67737,3.409549,15.67737,-3.409549,2.03917,3.409549,2.03917,11.81102,0,-11.81102,0,11.81102,6.299212,-11.81102,6.299212,3.409549,24.53563,3.409549,10.89744,-3.409549,24.53563,-3.409549,10.89744,-10.23622,6.299212,-6.574303,-3.409549,-10.23622,-6.299212,10.23622,-6.299212,6.574303,-3.409549,6.574303,3.409549,-6.574303,3.409549,10.23622,6.299212,-7.874016,0,-7.874016,6.299212,7.874016,0,7.874016,6.299212,6.574303,7.874016,-6.574303,7.874016,11.81102,10.89744,2.273737E-13,9.450969,7.158191,13.58375,11.81102,24.53563,7.158191,21.84932,5.981069E-30,25.9821,5.981069E-30,31.35473,-11.81102,10.89744,-7.158191,13.58375,-11.81102,24.53563,-7.158191,21.84932,-3.409549,10.89744,-3.409549,24.53563,3.409549,10.89744,3.409549,24.53563,3.409549,2.03917,-3.409549,2.03917,3.409549,15.67737,-3.409549,15.67737,3.409549,9.630522,-3.409549,9.630522,3.409549,15.67737,-3.409549,15.67737,-3.409549,13.58375,-3.409549,21.84932,3.409549,13.58375,3.409549,21.84932,3.409549,4.725484,-3.409549,4.725484,3.409549,12.99105,-3.409549,12.99105,-3.409549,12.99105,3.409549,12.99105,-3.409549,4.725484,3.409549,4.725484,3.409549,4.725484,-3.409549,4.725484,3.409549,12.99105,-3.409549,12.99105,-7.874016,-3.897439,-6.299212,-1.670331,7.874016,-3.897439,6.299212,-1.670331,3.409549,21.84932,3.409549,13.58375,-3.409549,21.84932,-3.409549,13.58375,11.81102,-1.113554,-11.81102,-1.113554,10.23622,1.113554,-10.23622,1.113554,7.874016,-3.897439,-7.874016,-3.897439,6.299212,-1.670331,-6.299212,-1.670331,-3.409549,12.99105,3.409549,12.99105,-3.409549,4.725484,3.409549,4.725484,-11.81102,-1.113554,-10.23622,1.113554,11.81102,-1.113554,10.23622,1.113554 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,4,5,7,6,5,8,7,5,1,3,9,10,9,3,11,9,10,8,11,7,12,11,10,7,11,12,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,42,44,46,45,44,42,47,41,48,41,47,46,48,47,44,48,46,49,51,50,52,50,51,53,55,54,56,54,55,57,56,55,58,57,55,59,57,58,60,59,58,61,60,58,54,56,62,63,62,56,64,62,63,61,64,60,65,64,63,60,64,65,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3040, "Material::stoneDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.6039216,0.7098039,0.7294118 + P: "DiffuseColor", "Color", "", "A",0.6039216,0.7098039,0.7294118 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh statue_ring, Model::RootNode + C: "OO",5730022797685703629,0 + + ;Geometry::, Model::Mesh statue_ring + C: "OO",5469072827138897695,5730022797685703629 + + ;Material::stone, Model::Mesh statue_ring + C: "OO",3038,5730022797685703629 + + ;Material::stoneDark, Model::Mesh statue_ring + C: "OO",3040,5730022797685703629 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/statue_ring.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/statue_ring.fbx.import new file mode 100644 index 0000000..3be0961 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/statue_ring.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dhs226brr5awe" +path="res://.godot/imported/statue_ring.fbx-521b1a525082f135c57257e95e304f28.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/statue_ring.fbx" +dest_files=["res://.godot/imported/statue_ring.fbx-521b1a525082f135c57257e95e304f28.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeA.fbx new file mode 100644 index 0000000..a2308cb --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeA.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 434 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_largeA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_largeA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5183227660938050814, "Model::stone_largeA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5574237039149518609, "Geometry::", "Mesh" { + Vertices: *438 { + a: -0.7721478,1.4432,-4.148316,3.34255,1.4432,0.6882935,-0.5327821,2.59776,-2.862337,2.30636,2.59776,0.4749225,2.159252,1.4432,5.077307,-2.094267,1.4432,4.492598,1.824568,2.02048,4.290323,0.02241977,2.59776,3.301617,-1.445044,2.59776,3.099893,2.607189,-2.255973E-16,0.5368689,3.061137,-2.255973E-16,2.250741,3.34255,0.7576799,0.6882935,3.924533,0.7576799,2.885566,3.061137,-2.255973E-16,2.250741,2.607189,-2.255973E-16,0.5368689,1.684216,-2.932765E-15,3.9603,-0.6022751,-2.255973E-16,-3.235685,-1.633528,-2.255973E-16,3.504227,-1.732083,-2.255973E-16,-3.9603,-2.342801,-2.255973E-16,-0.2428392,-3.061137,-2.255973E-16,1.378093,-2.342801,-2.255973E-16,-2.631416,-2.857985,-2.255973E-16,-3.600544,2.159252,0.7576799,5.077307,-2.094267,0.7576799,4.492598,2.159252,1.4432,5.077307,-2.094267,1.4432,4.492598,3.34255,1.4432,0.6882935,3.34255,0.7576799,0.6882935,3.924533,1.4432,2.885566,3.924533,0.7576799,2.885566,-3.003591,0.7576799,-0.3113323,-3.003591,1.4432,-0.3113323,-3.924533,0.7576799,1.766786,-3.924533,1.4432,1.766786,-1.633528,-2.255973E-16,3.504227,-3.061137,-2.255973E-16,1.378093,-2.094267,0.7576799,4.492598,-3.924533,0.7576799,1.766786,-0.6022751,-2.255973E-16,-3.235685,-0.7721478,0.7576799,-4.148316,-1.732083,-2.255973E-16,-3.9603,-2.220618,0.7576799,-5.077307,2.098906,2.59776,2.74719,1.824568,2.02048,4.290323,0.02241977,2.59776,3.301617,3.924533,1.4432,2.885566,2.159252,1.4432,5.077307,2.707928,2.59776,1.99104,2.098906,2.59776,2.74719,1.824568,2.02048,4.290323,-0.7721478,1.4432,-4.148316,-0.7721478,0.7576799,-4.148316,3.34255,1.4432,0.6882935,3.34255,0.7576799,0.6882935,-3.003591,0.7576799,-0.3113323,-3.924533,0.7576799,1.766786,-2.342801,-2.255973E-16,-0.2428392,-3.061137,-2.255973E-16,1.378093,-1.732083,-2.255973E-16,-3.9603,-2.220618,0.7576799,-5.077307,-2.857985,-2.255973E-16,-3.600544,-3.664083,0.7576799,-4.616082,-1.445044,2.59776,3.099893,-2.094267,1.4432,4.492598,-2.707928,2.59776,1.219082,-3.924533,1.4432,1.766786,-3.664083,1.4432,-4.616082,-2.528217,2.59776,-3.185097,-3.003591,1.4432,-3.373611,-2.072478,2.59776,-2.327791,2.159252,0.7576799,5.077307,1.684216,-2.932765E-15,3.9603,-2.094267,0.7576799,4.492598,-1.633528,-2.255973E-16,3.504227,-1.532227,2.59776,-3.503341,-2.528217,2.59776,-3.185097,-2.220618,1.4432,-5.077307,-3.664083,1.4432,-4.616082,-0.7721478,0.7576799,-4.148316,-0.6022751,-2.255973E-16,-3.235685,3.34255,0.7576799,0.6882935,2.607189,-2.255973E-16,0.5368689,-3.664083,0.7576799,-4.616082,-3.664083,1.4432,-4.616082,-3.003591,0.7576799,-3.373611,-3.003591,1.4432,-3.373611,-3.664083,0.7576799,-4.616082,-3.003591,0.7576799,-3.373611,-2.857985,-2.255973E-16,-3.600544,-2.342801,-2.255973E-16,-2.631416,-2.220618,0.7576799,-5.077307,-0.7721478,0.7576799,-4.148316,-2.220618,1.4432,-5.077307,-0.7721478,1.4432,-4.148316,-1.532227,2.59776,-3.503341,-2.072478,2.59776,-2.327791,-2.528217,2.59776,-3.185097,-2.072478,2.59776,-0.2148193,-1.445044,2.59776,3.099893,-0.5327821,2.59776,-2.862337,0.02241977,2.59776,3.301617,2.098906,2.59776,2.74719,2.30636,2.59776,0.4749225,2.707928,2.59776,1.99104,-2.707928,2.59776,1.219082,-3.003591,1.4432,-3.373611,-2.072478,2.59776,-2.327791,-3.003591,1.4432,-0.3113323,-2.072478,2.59776,-0.2148193,-3.003591,1.4432,-0.3113323,-2.072478,2.59776,-0.2148193,-3.924533,1.4432,1.766786,-2.707928,2.59776,1.219082,-3.664083,0.7576799,-4.616082,-2.220618,0.7576799,-5.077307,-3.664083,1.4432,-4.616082,-2.220618,1.4432,-5.077307,-3.924533,0.7576799,1.766786,-3.924533,1.4432,1.766786,-2.094267,0.7576799,4.492598,-2.094267,1.4432,4.492598,-3.003591,0.7576799,-3.373611,-3.003591,0.7576799,-0.3113323,-2.342801,-2.255973E-16,-2.631416,-2.342801,-2.255973E-16,-0.2428392,3.924533,1.4432,2.885566,3.924533,0.7576799,2.885566,2.159252,1.4432,5.077307,2.159252,0.7576799,5.077307,-3.003591,0.7576799,-3.373611,-3.003591,1.4432,-3.373611,-3.003591,0.7576799,-0.3113323,-3.003591,1.4432,-0.3113323,2.30636,2.59776,0.4749225,3.34255,1.4432,0.6882935,2.707928,2.59776,1.99104,3.924533,1.4432,2.885566,-2.220618,1.4432,-5.077307,-0.7721478,1.4432,-4.148316,-1.532227,2.59776,-3.503341,-0.5327821,2.59776,-2.862337,3.924533,0.7576799,2.885566,3.061137,-2.255973E-16,2.250741,2.159252,0.7576799,5.077307,1.684216,-2.932765E-15,3.9603 + } + PolygonVertexIndex: *240 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,16,-16,18,16,-18,19,18,-18,20,19,-18,19,21,-19,22,18,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,48,-48,49,47,-49,50,47,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,96,98,-96,98,99,-96,95,99,-101,99,101,-101,101,102,-101,100,102,-104,104,103,-103,105,99,-99,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *720 { + a: 0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,0.6634697,0.4911364,-0.5644404,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,-0.08418319,0.7860535,0.6123993,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0.7231659,-0.6635831,-0.1915422,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.136184,0,0.9906836,-0.136184,0,0.9906836,-0.136184,0,0.9906836,-0.136184,0,0.9906836,-0.136184,0,0.9906836,-0.136184,0,0.9906836,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,0.9666669,0,-0.2560373,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.9142464,0,-0.4051588,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,-0.5232037,-0.7764278,0.3513088,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.4027064,-0.6660153,-0.6278942,0.09714282,0.9263868,0.3638278,0.09714282,0.9263868,0.3638278,0.09714282,0.9263868,0.3638278,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.4733229,0.7941236,0.3812257,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,0.7616611,0,-0.6479757,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.7021268,-0.6404687,-0.3111557,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.161274,-0.8480803,-0.5047282,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.5476701,0.7515497,0.367737,-0.8804476,0.07582325,0.4680414,-0.8703247,0.168762,0.4626601,-0.8487453,0.2757903,0.4511887,-0.8487453,0.2757903,0.4511887,-0.8487453,0.2757903,0.4511887,-0.8703247,0.168762,0.4626601,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.08009461,-0.8087626,0.5826558,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,-0.1703974,0.8285985,-0.5332815,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,0.650312,-0.5205885,-0.5532467,-0.8802849,-0.07820983,0.4679549,-0.8681374,-0.182641,0.4614975,-0.8804476,0.07582325,0.4680414,-0.8703247,0.168762,0.4626601,-0.8804476,0.07582325,0.4680414,-0.8681374,-0.182641,0.4614975,-0.8802849,-0.07820983,0.4679549,-0.8433279,-0.2963394,0.4483089,-0.8681374,-0.182641,0.4614975,-0.8433279,-0.2963394,0.4483089,-0.8681374,-0.182641,0.4614975,-0.8433279,-0.2963394,0.4483089,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,0.5398657,0,-0.8417512,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7784074,0.6277593,0,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.7239721,0.6106785,-0.3208367,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.3043666,0,-0.9525549,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.8302101,0,0.5574504,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,-0.75365,-0.6572758,0,0.7788041,0,0.6272673,0.7788041,0,0.6272673,0.7788041,0,0.6272673,0.7788041,0,0.6272673,0.7788041,0,0.6272673,0.7788041,0,0.6272673,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.7474032,0.634192,-0.1979618,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4163076,0.6366758,-0.6491009,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557,0.4498945,-0.8162679,0.3623557 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *292 { + a: 14.40923,0.8890257,-10.59109,0.8890266,9.942363,6.107259,-7.307855,6.107257,11.14403,-11.14403,-5.759595,-11.14403,9.416702,-7.467372,1.85763,-3.790719,-3.97412,-3.790719,-4.671305,6.225207,-11.65151,6.225208,-5.988852,10.21262,-14.93783,10.21262,12.05172,8.861185,10.26453,2.113657,6.630774,15.59173,-2.371162,-12.73892,-6.431214,13.79617,-6.819224,-15.59173,-9.223626,-0.9560598,-12.05172,5.425562,-9.223626,-10.35991,-11.25191,-14.17537,11.14403,2.982992,-5.759592,2.982992,11.14403,5.68189,-5.759592,5.68189,-5.98885,5.68189,-5.98885,2.982992,-14.93782,5.68189,-14.93782,2.982992,3.67046,2.982992,3.67046,5.68189,12.61944,2.982992,12.61944,5.68189,7.868636,10.11681,-2.21388,10.11681,10.08799,14.85017,-2.838305,14.85017,8.873235,6.289109,11.37595,10.28809,14.15753,6.28911,18.15068,10.28809,5.193651,-7.803802,2.582912,-13.83916,-3.26788,-7.803802,0.8442616,-11.76165,-10.23543,-11.76165,0.5825414,-4.282485,-3.239949,-4.282484,-8.648931,-8.022066,14.40923,5.68189,14.40923,2.982992,-10.59109,5.68189,-10.59109,2.982992,3.670463,9.533133,12.61944,9.533132,2.86296,5.648948,9.843162,5.648949,1.750084,14.3559,2.243696,19.98559,6.403553,14.3559,8.209682,19.98559,6.960716,-1.915952,10.08799,-8.80647,-1.958431,-1.915953,-2.838305,-8.806469,-22.81829,4.301269,-15.74462,9.030178,-17.27845,4.301269,-11.92213,9.030178,11.14403,16.83416,8.692344,11.76221,-5.759592,16.83416,-4.49248,11.76221,1.548156,-6.681981,5.664685,-6.681983,2.243702,-14.80124,8.209688,-14.80124,14.40923,6.850761,11.23919,3.357009,-10.59109,6.85076,-8.261053,3.357009,-22.81829,2.982992,-22.81829,5.68189,-17.27845,2.982992,-17.27845,5.68189,-22.81829,4.095719,-17.27845,4.095719,-17.79827,0.9724376,-13.47719,0.9724373,18.15068,2.982992,11.37594,2.982992,18.15068,5.68189,11.37594,5.68189,6.03239,-13.79268,8.159362,-9.164533,9.953611,-12.53975,8.159362,-0.8457452,5.689151,12.2043,2.097568,-11.26904,-0.0882668,12.99849,-8.263411,10.81571,-9.080157,1.869774,-10.66114,7.838741,10.66114,4.799536,-13.28193,-3.000531,-9.164533,2.83897,-1.225718,-3.000531,-0.8457452,2.83897,3.670462,-2.406015,2.532618,3.334147,12.61944,-2.406015,8.707412,3.334146,8.209681,2.982992,2.243694,2.982992,8.209681,5.68189,2.243694,5.68189,-2.838303,2.982992,-2.838303,5.68189,10.088,2.982992,10.088,5.68189,-13.28193,10.02053,-1.225718,10.02053,-10.35991,6.062467,-0.9560598,6.062467,0.8442569,5.68189,0.8442569,2.982992,-10.23543,5.68189,-10.23543,2.982992,-13.28193,2.982992,-13.28193,5.68189,-1.225718,2.982992,-1.225718,5.68189,-4.132308,2.644571,-5.988851,-3.234445,-10.3071,2.644571,-14.93783,-3.234445,18.15068,-3.326286,11.37595,-3.326286,12.52397,2.568312,7.8494,2.568313,0.8442597,17.36232,0.658524,12.19852,-10.23543,17.36232,-7.983634,12.19852 + } + UVIndex: *240 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,11,10,12,10,11,13,15,14,16,14,15,17,16,15,18,16,17,19,18,17,20,19,17,19,21,18,22,18,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,48,47,49,47,48,50,47,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,96,98,95,98,99,95,95,99,100,99,101,100,101,102,100,100,102,103,104,103,102,105,99,98,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *80 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_largeA, Model::RootNode + C: "OO",5183227660938050814,0 + + ;Geometry::, Model::Mesh stone_largeA + C: "OO",5574237039149518609,5183227660938050814 + + ;Material::stone, Model::Mesh stone_largeA + C: "OO",3038,5183227660938050814 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeA.fbx.import new file mode 100644 index 0000000..48c9e25 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ck1e51y2w7pfq" +path="res://.godot/imported/stone_largeA.fbx-34081d6ac24e9af234d90b1f72a9ef3e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_largeA.fbx" +dest_files=["res://.godot/imported/stone_largeA.fbx-34081d6ac24e9af234d90b1f72a9ef3e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeB.fbx new file mode 100644 index 0000000..954397f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 529 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_largeB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_largeB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5237240608641188791, "Model::stone_largeB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5479092091686239774, "Geometry::", "Mesh" { + Vertices: *489 { + a: -3.094548,1.70478,-2.573611,-2.163434,4.30254,-2.327791,-3.094548,1.70478,-0.3113323,-2.163434,4.30254,-0.2148193,2.97018,0,2.250741,1.593261,-5.86553E-15,3.9603,3.833575,1.70478,2.885566,2.068296,1.70478,5.077307,2.616972,4.30254,1.99104,3.833575,1.70478,2.885566,1.398928,4.30254,3.503341,2.068296,1.70478,5.077307,-3.583791,0.8523899,1.572439,-3.799639,1.278585,1.669613,-2.438289,0,2.44116,-3.555019,1.70478,2.452565,-1.724485,0,3.504227,-2.185224,1.70478,4.492598,-1.623183,4.30254,-3.503341,-2.163434,4.30254,-2.327791,-3.75504,1.70478,-4.616082,-2.433757,0,-2.631416,-2.948941,0,-3.600544,-3.094548,1.70478,-2.573611,1.707262,4.30254,-0.1223712,2.733499,3.003659,0.5816078,2.416188,4.30254,1.232981,-2.798884,4.30254,1.219082,-2.167443,4.30254,2.159488,-3.833575,2.09321,1.684891,-3.555019,1.70478,2.452565,-1.860613,3.003659,3.796247,-2.185224,1.70478,4.492598,2.883914,0.8523899,0.6125811,1.541693,0,-0.6086501,2.743207,0,1.393805,-2.433757,0,-2.631416,-3.094548,1.70478,-2.573611,-2.433757,0,-0.2428392,-3.094548,1.70478,-0.3113323,-2.948941,0,-3.600544,-3.75504,1.70478,-4.616082,-3.094548,1.70478,-2.573611,-0.8631039,1.70478,-4.148316,-0.6932313,0,-3.235685,3.251594,1.70478,0.6882935,1.541693,0,-0.6086501,2.883914,0.8523899,0.6125811,2.068296,1.70478,5.077307,-2.185224,1.70478,4.492598,1.398928,4.30254,3.503341,-1.860613,3.003659,3.796247,-0.06853648,4.30254,3.301617,-2.438289,0,2.44116,-2.792925,0,0.5676268,-3.583791,0.8523899,1.572439,2.616972,4.30254,1.99104,1.398928,4.30254,3.503341,2.416188,4.30254,1.232981,1.707262,4.30254,-0.1223712,-0.6237384,4.30254,-2.862337,-0.06853648,4.30254,3.301617,-2.167443,4.30254,2.159488,-1.623183,4.30254,-3.503341,-2.163434,4.30254,-0.2148193,-2.163434,4.30254,-2.327791,-2.798884,4.30254,1.219082,-3.799639,1.278585,1.669613,-3.555019,1.70478,0.7277268,-3.555019,1.70478,2.452565,-3.555019,1.70478,0.7277268,-3.833575,2.09321,1.684891,-3.555019,1.70478,2.452565,-3.094548,1.70478,-0.3113323,-3.555019,1.70478,0.7277268,-2.433757,0,-0.2428392,-2.792925,0,0.5676268,-3.583791,0.8523899,1.572439,-3.799639,1.278585,1.669613,2.883914,0.8523899,0.6125811,2.743207,0,1.393805,3.251594,1.70478,0.6882935,3.833575,1.70478,2.885566,2.97018,0,2.250741,2.733499,3.003659,0.5816078,3.251594,1.70478,0.6882935,2.416188,4.30254,1.232981,3.833575,1.70478,2.885566,2.616972,4.30254,1.99104,-1.823039,0,-3.9603,-0.6932313,0,-3.235685,-2.311575,1.70478,-5.077307,-0.8631039,1.70478,-4.148316,-2.311575,1.70478,-5.077307,-0.8631039,1.70478,-4.148316,-1.623183,4.30254,-3.503341,-0.6237384,4.30254,-2.862337,2.97018,0,2.250741,2.743207,0,1.393805,1.593261,-5.86553E-15,3.9603,1.541693,0,-0.6086501,-1.724485,0,3.504227,-0.6932313,0,-3.235685,-1.823039,0,-3.9603,-2.438289,0,2.44116,-2.433757,0,-0.2428392,-2.792925,0,0.5676268,-2.433757,0,-2.631416,-2.948941,0,-3.600544,-2.948941,0,-3.600544,-1.823039,0,-3.9603,-3.75504,1.70478,-4.616082,-2.311575,1.70478,-5.077307,-3.75504,1.70478,-4.616082,-2.311575,1.70478,-5.077307,-1.623183,4.30254,-3.503341,-3.094548,1.70478,-2.573611,-3.75504,1.70478,-4.616082,-2.163434,4.30254,-2.327791,-0.8631039,1.70478,-4.148316,3.251594,1.70478,0.6882935,-0.6237384,4.30254,-2.862337,1.707262,4.30254,-0.1223712,2.733499,3.003659,0.5816078,-3.094548,1.70478,-0.3113323,-2.163434,4.30254,-0.2148193,-3.555019,1.70478,0.7277268,-2.798884,4.30254,1.219082,-3.833575,2.09321,1.684891,1.593261,-5.86553E-15,3.9603,-1.724485,0,3.504227,2.068296,1.70478,5.077307,-2.185224,1.70478,4.492598,-0.06853648,4.30254,3.301617,-1.860613,3.003659,3.796247,-2.167443,4.30254,2.159488,3.833575,1.70478,2.885566,3.251594,1.70478,0.6882935,2.068296,1.70478,5.077307,-0.8631039,1.70478,-4.148316,2.068296,1.70478,5.077307,3.251594,1.70478,0.6882935,-2.185224,1.70478,4.492598,2.068296,1.70478,5.077307,-0.8631039,1.70478,-4.148316,-2.311575,1.70478,-5.077307,-2.185224,1.70478,4.492598,-0.8631039,1.70478,-4.148316,-3.094548,1.70478,-0.3113323,-2.185224,1.70478,4.492598,-2.311575,1.70478,-5.077307,-3.555019,1.70478,2.452565,-2.185224,1.70478,4.492598,-3.094548,1.70478,-0.3113323,-3.555019,1.70478,0.7277268,-3.555019,1.70478,2.452565,-3.094548,1.70478,-0.3113323,-3.75504,1.70478,-4.616082,-3.094548,1.70478,-2.573611,-2.311575,1.70478,-5.077307,-3.094548,1.70478,-0.3113323,-2.311575,1.70478,-5.077307,-3.094548,1.70478,-2.573611 + } + PolygonVertexIndex: *255 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,20,-20,21,23,-23,24,26,-26,27,29,-29,30,28,-30,31,28,-31,32,31,-31,33,35,-35,36,38,-38,39,37,-39,40,42,-42,43,45,-45,46,44,-46,47,46,-46,48,50,-50,51,49,-51,52,51,-51,53,55,-55,56,58,-58,59,57,-59,60,57,-60,61,57,-61,62,61,-61,63,62,-61,64,62,-64,65,64,-64,66,62,-65,67,69,-69,70,72,-72,73,75,-75,76,74,-76,77,74,-77,78,74,-78,79,81,-81,82,80,-82,83,80,-83,84,86,-86,87,85,-87,88,87,-87,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,100,-100,102,100,-102,103,102,-102,104,103,-102,105,103,-105,106,105,-105,105,107,-104,108,103,-108,109,111,-111,112,110,-112,113,115,-115,116,118,-118,119,121,-121,122,120,-122,123,120,-123,124,126,-126,127,125,-127,128,127,-127,129,131,-131,132,130,-132,133,135,-135,136,138,-138,139,141,-141,142,144,-144,145,147,-147,148,150,-150,151,153,-153,154,156,-156,157,159,-159,160,162,-162 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *765 { + a: -0.9413577,0.3374103,0,-0.9413577,0.3374103,0,-0.9413577,0.3374103,0,-0.9413577,0.3374103,0,-0.9413577,0.3374103,0,-0.9413577,0.3374103,0,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6595305,-0.5318316,0.5312012,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,0.6734757,0.5021918,0.5424332,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.7281908,-0.4802784,0.4889486,-0.6671814,0.6788625,-0.3066183,-0.6671814,0.6788625,-0.3066183,-0.6671814,0.6788625,-0.3066183,-0.8312767,-0.3371956,0.4419027,-0.8923689,-0.286348,0.3488301,-0.8782181,-0.2995817,0.3728053,0.8083901,0.4095327,-0.4228336,0.8083901,0.4095327,-0.4228336,0.8083901,0.4095327,-0.4228336,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,-0.7406743,0.4517343,0.4973306,0.7310289,-0.5226842,-0.4386321,0.7310289,-0.5226842,-0.4386321,0.7310289,-0.5226842,-0.4386321,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.9324067,-0.3614106,0,-0.8782181,-0.2995817,0.3728053,-0.8923689,-0.286348,0.3488301,-0.9193711,-0.2576166,0.2973054,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,0.7351463,-0.2615558,-0.6254186,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.1185596,0.492018,0.8624743,-0.650871,-0.7491251,0.1232016,-0.650871,-0.7491251,0.1232016,-0.650871,-0.7491251,0.1232016,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8672945,0.4977954,0,-0.8672945,0.4977954,0,-0.8672945,0.4977954,0,-0.8126364,-0.5827709,0,-0.8126364,-0.5827709,0,-0.8126364,-0.5827709,0,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,-0.8572555,-0.3475445,-0.3799023,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.8993055,-0.3667598,-0.2381951,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.9081998,0.342503,-0.2405509,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5018004,-0.3688452,-0.7824,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0.5068206,0.3444893,-0.7902277,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2480163,-0.5796564,-0.7762001,-0.2542837,0.5495625,-0.7958146,-0.2542837,0.5495625,-0.7958146,-0.2542837,0.5495625,-0.7958146,-0.9083233,0.2977746,0.2937328,-0.9083233,0.2977746,0.2937328,-0.9083233,0.2977746,0.2937328,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,0.7388174,0.2430723,-0.6285418,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.8648574,0.3242295,-0.3832712,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.1162004,-0.5214862,0.8453104,-0.3389997,0.704961,0.6229841,-0.3389997,0.704961,0.6229841,-0.3389997,0.704961,0.6229841,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *326 { + a: -10.13233,2.207382,-9.164533,13.07191,-1.225718,2.207382,-0.8457452,13.07191,0.4338958,7.799509,-8.208261,7.799507,0.6196274,15.72503,-10.46006,15.72503,0.3579152,8.149341,0.6196293,-3.677578,-7.287069,8.149343,-10.46005,-3.677579,-2.725709,10.22681,-2.881811,12.13982,2.627761,6.400783,0.2141673,14.05283,7.669018,6.400783,9.888378,14.05283,-9.863982,4.585924,-4.770479,4.585924,-10.33976,-9.342831,-13.64528,1.213126,-17.96636,1.213126,-14.66547,8.342385,-2.6884,12.92289,-7.016917,7.317572,-8.710293,12.92289,-2.158048,9.771083,2.301526,9.771084,-2.906353,0.0214591,0.2141691,-1.692656,8.324745,4.039212,9.88838,-1.692655,-7.909753,7.301178,-1.068133,3.3648,-10.26209,3.3648,-10.35991,3.462936,-10.13233,10.66122,-0.9560598,3.462936,-1.225718,10.66122,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,14.64126,8.569105,11.47123,1.615301,-10.35906,8.569104,-2.107853,1.615301,-9.194036,5.092204,10.78927,-3.354769,-6.114355,-3.354767,7.334619,8.392968,-5.221617,2.519096,1.502869,8.392968,7.657809,8.404844,0.1507158,8.404844,3.458558,13.47085,-10.30304,7.838741,-5.507589,13.79268,-9.51255,4.854257,-6.721504,-0.4817762,2.455663,-11.26904,0.2698287,12.99849,8.533238,8.50192,6.390485,-13.79268,8.517457,-0.8457452,8.517457,-9.164533,11.01923,4.799536,6.573279,-3.080838,2.865066,-1.146165,9.655767,-1.146165,2.865066,13.61074,6.633429,15.49258,9.655767,13.61074,3.815543,10.33706,8.29003,10.33706,3.008042,3.179132,6.498141,3.179133,11.37638,6.7581,12.07045,8.547581,-5.238386,6.920926,-8.069715,3.313693,-5.89716,10.52816,-14.84613,10.52816,-11.55981,3.313693,-4.968888,7.747903,-5.89716,2.304997,-7.128014,13.19081,-14.84613,2.304998,-10.21541,13.19081,14.45896,3.411659,9.174662,3.411658,18.45211,10.63253,11.67737,10.63253,18.45211,2.197023,11.67737,2.197023,12.8254,13.09126,8.150827,13.09126,11.69362,8.861185,10.80003,5.487422,6.27268,15.59173,6.069659,-2.39626,-6.78931,13.79617,-2.729257,-12.73892,-7.17732,-15.59173,-9.599562,9.610866,-9.581721,-0.9560598,-10.99577,2.234751,-9.581721,-10.35991,-11.61,-14.17537,6.744661,9.875325,2.091193,9.875325,8.550797,18.11198,2.584805,18.11198,8.550797,-6.379147,2.584806,-6.379147,1.88926,5.862606,-13.38945,3.883746,-21.84067,3.883746,-11.34067,14.59715,14.64126,4.56718,-10.35906,4.567181,10.1744,15.11081,-3.988421,15.11081,-8.717438,9.838992,3.815543,2.576706,2.677701,13.38816,8.29003,2.576705,8.852494,13.38816,12.17957,4.193288,8.337585,7.609647,-4.84724,7.609647,10.78927,15.47564,-6.11435,15.47564,5.975904,3.874166,0.7093858,-3.335888,-3.431705,3.874166,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385,-17.05997,1.7222,-21.84067,8.668385,-13.38945,8.668385 + } + UVIndex: *255 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,15,16,18,20,19,21,23,22,24,26,25,27,29,28,30,28,29,31,28,30,32,31,30,33,35,34,36,38,37,39,37,38,40,42,41,43,45,44,46,44,45,47,46,45,48,50,49,51,49,50,52,51,50,53,55,54,56,58,57,59,57,58,60,57,59,61,57,60,62,61,60,63,62,60,64,62,63,65,64,63,66,62,64,67,69,68,70,72,71,73,75,74,76,74,75,77,74,76,78,74,77,79,81,80,82,80,81,83,80,82,84,86,85,87,85,86,88,87,86,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,100,99,102,100,101,103,102,101,104,103,101,105,103,104,106,105,104,105,107,103,108,103,107,109,111,110,112,110,111,113,115,114,116,118,117,119,121,120,122,120,121,123,120,122,124,126,125,127,125,126,128,127,126,129,131,130,132,130,131,133,135,134,136,138,137,139,141,140,142,144,143,145,147,146,148,150,149,151,153,152,154,156,155,157,159,158,160,162,161 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *85 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_largeB, Model::RootNode + C: "OO",5237240608641188791,0 + + ;Geometry::, Model::Mesh stone_largeB + C: "OO",5479092091686239774,5237240608641188791 + + ;Material::stone, Model::Mesh stone_largeB + C: "OO",3038,5237240608641188791 + + ;Material::_defaultMat, Model::Mesh stone_largeB + C: "OO",3004,5237240608641188791 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeB.fbx.import new file mode 100644 index 0000000..98084db --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dmh3cvuwu0g2" +path="res://.godot/imported/stone_largeB.fbx-c81c123ae8dbf8db8a03b3f6f871732f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_largeB.fbx" +dest_files=["res://.godot/imported/stone_largeB.fbx-c81c123ae8dbf8db8a03b3f6f871732f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeC.fbx new file mode 100644 index 0000000..db22547 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeC.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 616 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_largeC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_largeC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4638098009939601436, "Model::stone_largeC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5287697911256452064, "Geometry::", "Mesh" { + Vertices: *396 { + a: 1.61732,0,4.062647,-2.860111,2.48157E-15,2.930947,2.02165,1.04632,5.07831,-3.575139,1.04632,3.663686,3.432401,1.04632,3.484186,2.74592,-2.707168E-15,2.787349,2.02165,1.04632,5.07831,1.61732,0,4.062647,-2.860111,2.48157E-15,2.930947,-4.257638,-2.707168E-15,0.5048717,-3.575139,1.04632,3.663686,-5.322049,1.04632,0.6310897,-4.508265,1.04632,-3.400723,-5.322049,1.04632,0.6310897,-3.606611,0,-2.720578,-4.257638,-2.707168E-15,0.5048717,1.968991,0,0.6742597,2.74592,-2.707168E-15,2.787349,2.461239,1.04632,0.8428248,3.432401,1.04632,3.484186,5.322049,1.04632,-2.879802,2.461239,1.04632,-5.07831,4.257638,0,-2.303842,1.968991,0,-4.062647,2.451735,3.21112,-2.506805,2.451735,3.21112,-0.6416478,1.55058,3.21112,-3.199335,1.55058,3.21112,0.5309796,0.02170328,3.21112,-3.18496,1.27364,3.21112,3.199335,-2.252337,3.21112,2.308121,-2.840206,3.21112,-2.142455,-3.35289,3.21112,0.3975865,2.162413,3.21112,2.195037,5.322049,1.73184,-2.879802,5.322049,1.04632,-2.879802,2.461239,1.73184,0.8428248,2.461239,1.04632,0.8428248,3.432401,1.73184,3.484186,2.02165,1.73184,5.07831,2.162413,3.21112,2.195037,1.27364,3.21112,3.199335,2.02165,1.04632,5.07831,-3.575139,1.04632,3.663686,2.02165,1.73184,5.07831,-3.575139,1.73184,3.663686,2.461239,1.73184,0.8428248,2.461239,1.04632,0.8428248,3.432401,1.73184,3.484186,3.432401,1.04632,3.484186,1.55058,3.21112,0.5309796,2.461239,1.73184,0.8428248,2.162413,3.21112,2.195037,3.432401,1.73184,3.484186,-5.322049,1.04632,0.6310897,-5.322049,1.73184,0.6310897,-3.575139,1.04632,3.663686,-3.575139,1.73184,3.663686,3.432401,1.73184,3.484186,3.432401,1.04632,3.484186,2.02165,1.73184,5.07831,2.02165,1.04632,5.07831,-4.508265,1.04632,-3.400723,0.03444964,1.04632,-5.055493,-4.508265,1.73184,-3.400723,0.03444964,1.73184,-5.055493,5.322049,1.04632,-2.879802,4.257638,0,-2.303842,2.461239,1.04632,0.8428248,1.968991,0,0.6742597,2.461239,1.04632,-5.07831,5.322049,1.04632,-2.879802,2.461239,1.73184,-5.07831,5.322049,1.73184,-2.879802,2.74592,-2.707168E-15,2.787349,1.968991,0,0.6742597,1.61732,0,4.062647,1.968991,0,-4.062647,0.02755972,0,-4.044395,-2.860111,2.48157E-15,2.930947,-3.606611,0,-2.720578,-4.257638,-2.707168E-15,0.5048717,4.257638,0,-2.303842,5.322049,1.73184,-2.879802,4.337469,2.47148,-2.347039,2.461239,1.73184,-5.07831,2.451735,3.21112,-2.506805,1.55058,3.21112,-3.199335,-4.508265,1.04632,-3.400723,-4.508265,1.73184,-3.400723,-5.322049,1.04632,0.6310897,-5.322049,1.73184,0.6310897,-3.606611,0,-2.720578,0.02755972,0,-4.044395,-4.508265,1.04632,-3.400723,0.03444964,1.04632,-5.055493,2.461239,1.73184,-5.07831,1.55058,3.21112,-3.199335,0.03444964,1.73184,-5.055493,0.02170328,3.21112,-3.18496,-2.840206,3.21112,-2.142455,-3.35289,3.21112,0.3975865,-4.508265,1.73184,-3.400723,-5.322049,1.73184,0.6310897,2.02165,1.73184,5.07831,-3.575139,1.73184,3.663686,1.27364,3.21112,3.199335,-2.252337,3.21112,2.308121,0.02755972,0,-4.044395,1.968991,0,-4.062647,0.03444964,1.04632,-5.055493,2.461239,1.04632,-5.07831,5.322049,1.73184,-2.879802,2.461239,1.73184,0.8428248,4.337469,2.47148,-2.347039,2.451735,3.21112,-0.6416478,1.55058,3.21112,0.5309796,0.03444964,1.73184,-5.055493,0.02170328,3.21112,-3.18496,-4.508265,1.73184,-3.400723,-2.840206,3.21112,-2.142455,2.451735,3.21112,-2.506805,4.337469,2.47148,-2.347039,2.451735,3.21112,-0.6416478,-2.252337,3.21112,2.308121,-3.575139,1.73184,3.663686,-3.35289,3.21112,0.3975865,-5.322049,1.73184,0.6310897,0.03444964,1.04632,-5.055493,2.461239,1.04632,-5.07831,0.03444964,1.73184,-5.055493,2.461239,1.73184,-5.07831 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,27,-27,29,27,-29,30,29,-29,31,30,-29,32,30,-32,27,29,-34,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,78,-77,80,78,-80,81,80,-80,75,77,-83,83,85,-85,86,84,-86,87,86,-86,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,113,-116,117,119,-119,120,118,-120,121,123,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: -0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,-0.1870443,-0.6460558,0.7400177,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,0.5476378,-0.6820663,0.4846426,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.6308284,-0.6855704,0.3633852,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,-0.7024384,-0.6974801,-0.1417807,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.8756147,-0.360073,-0.3219415,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0.418907,-0.726209,-0.5451031,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.7929069,0,0.6093428,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,0.4746202,0.7735085,0.4200241,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,-0.2450501,0,0.9695105,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.9385701,0,-0.3450885,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,0.8377852,0.4508124,-0.3080325,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,-0.8665149,0,0.4991511,0.7488651,0,0.6627225,0.7488651,0,0.6627225,0.7488651,0,0.6627225,0.7488651,0,0.6627225,0.7488651,0,0.6627225,0.7488651,0,0.6627225,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,-0.3422681,0,-0.9396023,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.7172692,-0.4262465,0.5512158,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0.6093425,0,-0.7929072,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,0.3571628,0.8102065,-0.4647581,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.9802321,0,-0.1978509,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.2536832,-0.6713036,-0.6964167,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.005832306,0.784331,-0.6203151,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.6053474,0.7865275,-0.1221838,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.1642199,0.7422271,0.6497158,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,-0.006761063,-0.6948611,-0.7191122,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,0.6749267,0.5248327,0.5186758,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,-0.2207207,0.7642867,-0.6059276,0.3651461,0.9309502,0,0.3651461,0.9309502,0,0.3651461,0.9309502,0,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.5460193,0.7764876,0.3145314,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558,-0.009401724,0,-0.9999558 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: 10.09276,9.010328,-8.089286,9.010327,12.61595,14.40719,-10.11161,14.40719,-1.316754,16.11526,-1.053405,10.48224,-9.697542,16.11526,-7.758032,10.48224,4.378275,10.63799,-6.644592,10.63799,5.472849,16.29641,-8.305741,16.29641,-9.612338,16.93446,6.581049,16.93446,-7.689869,11.186,5.264839,11.186,-5.1666,2.289947,-14.03035,2.289947,-6.458251,6.705493,-17.53794,6.705493,-9.70514,18.63234,4.499589,18.63234,-7.76411,12.6403,3.59967,12.6403,-9.652501,-9.869311,-9.652501,-2.526172,-6.104648,-12.59581,-6.104648,2.090471,-0.08544598,-12.53922,-5.01433,12.59581,8.86747,9.087091,11.18192,-8.434863,13.20036,1.565301,-8.513435,8.641879,21.75735,6.818268,21.75735,4.11937,3.273452,6.818268,3.273452,4.11937,-1.316758,-10.53812,-9.697546,-10.53812,-0.8295574,-1.348998,-6.109454,-1.348999,12.61595,4.11937,-10.11161,4.11937,12.61595,6.818268,-10.11161,6.818268,-6.458251,6.818268,-6.458251,4.11937,-17.53794,6.818268,-17.53794,4.11937,-4.068697,9.026892,-6.458251,2.502339,-11.0489,9.026892,-17.53794,2.502339,-8.305741,4.11937,-8.305741,6.818268,5.472849,4.11937,5.472849,6.818268,-1.316757,6.818268,-1.316757,4.11937,-9.697545,6.818268,-9.697545,4.11937,12.09455,4.11937,-6.939776,4.11937,12.09455,6.818268,-6.939776,6.818268,21.75735,7.863189,17.40588,3.309421,3.273451,7.863189,2.61876,3.309422,4.49959,4.11937,-9.705138,4.11937,4.49959,6.818268,-9.705138,6.818268,10.81071,10.97382,7.751933,2.654566,6.367403,15.99468,7.751933,-15.99468,0.1085028,-15.92281,-11.26028,11.53916,-14.19926,-10.71094,-16.76236,1.987684,16.76236,-9.070244,-9.705134,-13.63146,-7.909682,-8.663449,4.499594,-13.63145,-1.639745,-3.695445,2.834744,-3.695446,-9.612338,4.11937,-9.612338,6.818268,6.58105,4.11937,6.58105,6.818268,9.675642,10.01852,-5.551822,10.01852,12.09455,15.57635,-6.939777,15.57635,-9.877462,-11.37959,-6.222801,-1.991334,-0.3227504,-11.37959,-0.2033328,-1.991333,-6.055772,-2.126363,4.14606,-2.126362,-9.612338,-11.557,6.581049,-11.557,12.61595,-8.370249,-10.11161,-8.37025,7.94805,0.3202687,-6.370311,0.3202701,-0.2581971,11.06295,-7.901965,11.06295,-0.3227463,16.7911,-9.877458,16.7911,21.75735,0.7101766,3.273451,0.7101775,17.73224,4.131172,7.884701,7.552166,2.062274,7.552166,-6.939776,-9.860804,-4.372059,-0.829716,12.09455,-9.860804,7.619569,-0.8297155,9.869311,-4.369746,9.24031,-12.34455,2.526172,-4.369746,3.447893,-1.522124,5.472849,-10.76452,-5.232616,-1.522124,-8.305741,-10.76452,-0.3227499,4.11937,-9.877461,4.11937,-0.3227499,6.818268,-9.877461,6.818268 + } + UVIndex: *216 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,27,26,29,27,28,30,29,28,31,30,28,32,30,31,27,29,33,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,78,76,80,78,79,81,80,79,75,77,82,83,85,84,86,84,85,87,86,85,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,113,115,117,119,118,120,118,119,121,123,122,124,126,125,127,125,126,128,130,129,131,129,130 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_largeC, Model::RootNode + C: "OO",4638098009939601436,0 + + ;Geometry::, Model::Mesh stone_largeC + C: "OO",5287697911256452064,4638098009939601436 + + ;Material::stone, Model::Mesh stone_largeC + C: "OO",3038,4638098009939601436 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeC.fbx.import new file mode 100644 index 0000000..3415a81 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cyiloueg66tor" +path="res://.godot/imported/stone_largeC.fbx-4ffb583a1b59ba230ab806ae64798a8a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_largeC.fbx" +dest_files=["res://.godot/imported/stone_largeC.fbx-4ffb583a1b59ba230ab806ae64798a8a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeD.fbx new file mode 100644 index 0000000..9f3f4e9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeD.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 708 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_largeD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_largeD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4653469581537481398, "Model::stone_largeD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5102255158800764019, "Geometry::", "Mesh" { + Vertices: *441 { + a: -3.668365,5.6826,1.161762,-2.28595,5.6826,2.966099,-5.343884,3.121913,1.561489,-5.343884,2.35422,2.336957,-3.651891,2.35422,4.545355,-0.9215579,5.6826,-2.772842,-1.320474,5.6826,-0.6371082,-1.40062,5.6826,-1.519964,-0.8054478,5.6826,3.347917,-0.3623478,5.6826,-3.142865,0.7116589,5.6826,3.214784,2.812822,5.6826,-1.369428,2.906185,5.6826,1.717672,3.381391,5.6826,0.760851,-2.28595,5.6826,2.966099,-3.668365,5.6826,1.161762,-1.033542,-2.707168E-15,4.176552,-2.913545,-2.707168E-15,3.691702,-1.301889,2.35422,5.151415,-3.651891,2.35422,4.545355,-0.5985563,2.35422,-5.151415,4.441394,2.35422,-2.336435,-0.3623478,5.6826,-3.142865,2.812822,5.6826,-1.369428,-1.927297,4.01841,-3.189778,-0.9215579,5.6826,-2.772842,-1.40062,5.6826,-1.519964,3.381391,5.6826,0.760851,5.343884,2.35422,1.04496,2.906185,5.6826,1.717672,3.514322,2.35422,4.728767,2.871543,4.01841,3.905209,3.514322,2.35422,4.728767,-1.301889,2.35422,5.151415,2.871543,4.01841,3.905209,-0.8054478,5.6826,3.347917,0.7116589,5.6826,3.214784,1.545105,0,-2.93972,3.561085,3.158362E-15,-1.813728,-0.5508128,1.473907,-4.745437,4.441394,2.35422,-2.336435,-0.5985563,2.35422,-5.151415,-5.076463,0.8148628,1.49769,-4.897312,2.35422,0.9543192,-5.343884,2.35422,2.336957,2.906185,5.6826,1.717672,2.871543,4.01841,3.905209,0.7116589,5.6826,3.214784,4.441394,2.35422,-2.336435,3.561085,3.158362E-15,-1.813728,5.343884,2.35422,1.04496,4.283079,-8.572698E-15,0.8913875,-4.897312,2.35422,0.9543192,-5.343884,3.121913,1.561489,-5.343884,2.35422,2.336957,-4.668997,-2.707168E-15,1.400481,-5.076463,0.8148628,1.49769,-2.913545,-2.707168E-15,3.691702,-5.343884,2.35422,2.336957,-3.651891,2.35422,4.545355,1.180477,-2.707168E-15,3.982261,-1.033542,-2.707168E-15,4.176552,3.166874,1.17711,4.283601,-1.301889,2.35422,5.151415,3.514322,2.35422,4.728767,-1.301889,2.35422,5.151415,-3.651891,2.35422,4.545355,-0.8054478,5.6826,3.347917,-2.28595,5.6826,2.966099,-2.373826,2.35422,-3.976737,-1.927297,4.01841,-3.189778,-2.11939,2.35422,-1.174023,-1.40062,5.6826,-1.519964,-1.320474,5.6826,-0.6371082,4.441394,2.35422,-2.336435,5.343884,2.35422,1.04496,2.812822,5.6826,-1.369428,3.381391,5.6826,0.760851,-1.101026,-2.707168E-15,-3.648749,1.545105,0,-2.93972,-0.5508128,1.473907,-4.745437,4.283079,-8.572698E-15,0.8913875,3.551252,-5.86553E-15,2.364911,5.343884,2.35422,1.04496,3.514322,2.35422,4.728767,3.166874,1.17711,4.283601,-4.897312,2.35422,0.9543192,-2.11939,2.35422,-1.174023,-5.343884,3.121913,1.561489,-1.320474,5.6826,-0.6371082,-3.668365,5.6826,1.161762,-4.668997,-2.707168E-15,1.400481,-1.687544,-2.707168E-15,-0.8837991,-5.076463,0.8148628,1.49769,-2.11939,2.35422,-1.174023,-4.897312,2.35422,0.9543192,-2.373826,2.35422,-3.976737,-0.5985563,2.35422,-5.151415,-1.927297,4.01841,-3.189778,-0.3623478,5.6826,-3.142865,-0.9215579,5.6826,-2.772842,-1.891092,-8.572698E-15,-3.125971,-1.101026,-2.707168E-15,-3.648749,-2.373826,2.35422,-3.976737,-0.5508128,1.473907,-4.745437,-0.5985563,2.35422,-5.151415,3.166874,1.17711,4.283601,3.551252,-5.86553E-15,2.364911,1.180477,-2.707168E-15,3.982261,-2.373826,2.35422,-3.976737,-2.11939,2.35422,-1.174023,-1.891092,-8.572698E-15,-3.125971,-1.687544,-2.707168E-15,-0.8837991,4.283079,-8.572698E-15,0.8913875,3.561085,3.158362E-15,-1.813728,3.551252,-5.86553E-15,2.364911,1.545105,0,-2.93972,1.180477,-2.707168E-15,3.982261,-1.101026,-2.707168E-15,-3.648749,-1.033542,-2.707168E-15,4.176552,-1.687544,-2.707168E-15,-0.8837991,-2.913545,-2.707168E-15,3.691702,-4.668997,-2.707168E-15,1.400481,-1.891092,-8.572698E-15,-3.125971,5.343884,2.35422,1.04496,3.514322,2.35422,4.728767,4.441394,2.35422,-2.336435,-0.5985563,2.35422,-5.151415,4.441394,2.35422,-2.336435,3.514322,2.35422,4.728767,-1.301889,2.35422,5.151415,-0.5985563,2.35422,-5.151415,3.514322,2.35422,4.728767,-2.373826,2.35422,-3.976737,-0.5985563,2.35422,-5.151415,-1.301889,2.35422,5.151415,-2.11939,2.35422,-1.174023,-2.373826,2.35422,-3.976737,-1.301889,2.35422,5.151415,-3.651891,2.35422,4.545355,-2.11939,2.35422,-1.174023,-4.897312,2.35422,0.9543192,-2.11939,2.35422,-1.174023,-3.651891,2.35422,4.545355,-5.343884,2.35422,2.336957,-4.897312,2.35422,0.9543192,-3.651891,2.35422,4.545355 + } + PolygonVertexIndex: *240 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,6,8,-6,5,8,-10,8,10,-10,9,10,-12,10,12,-12,13,11,-13,14,8,-7,15,14,-7,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,29,-29,30,28,-30,31,30,-30,32,34,-34,35,33,-35,36,35,-35,37,39,-39,40,38,-40,41,40,-40,42,44,-44,45,47,-47,48,50,-50,51,49,-51,52,54,-54,55,57,-57,58,56,-58,59,58,-58,60,62,-62,63,61,-63,64,63,-63,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,72,-72,74,76,-76,77,75,-77,78,80,-80,81,83,-83,84,82,-84,85,82,-85,86,88,-88,89,87,-89,90,89,-89,91,93,-93,94,92,-94,95,94,-94,96,98,-98,99,97,-99,100,99,-99,101,103,-103,104,102,-104,105,104,-104,106,108,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,116,-116,118,116,-118,119,118,-118,120,118,-120,121,120,-120,122,120,-122,120,123,-119,124,126,-126,127,129,-129,130,132,-132,133,135,-135,136,135,-138,138,140,-140,141,143,-143,144,146,-146 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *720 { + a: -0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,-0.6763611,0.5234513,0.5182029,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.06817156,-0.3883206,0.9189993,-0.08265221,-0.389306,0.9173927,-0.2294634,-0.3945914,0.8897438,-0.2294634,-0.3945914,0.8897438,-0.2294634,-0.3945914,0.8897438,-0.08265221,-0.389306,0.9173927,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,0.4374963,0.4416403,-0.7832949,-0.7817273,0.5473172,-0.2989087,-0.7817273,0.5473172,-0.2989087,-0.7817273,0.5473172,-0.2989087,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.7794186,0.4926067,0.3870982,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.07734533,0.4660411,0.8813758,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,0.456403,-0.3520927,-0.8171457,-0.9515933,0.002256602,-0.3073516,-0.9515933,0.002256602,-0.3073516,-0.9515933,0.002256602,-0.3073516,0.3840052,0.7319117,0.5628901,0.3840052,0.7319117,0.5628901,0.3840052,0.7319117,0.5628901,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,0.8912647,-0.3860846,-0.2378778,-0.908804,-0.2965041,-0.2935313,-0.908804,-0.2965041,-0.2935313,-0.908804,-0.2965041,-0.2935313,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,-0.7185491,-0.4249795,0.5505265,0.08109545,-0.3734225,0.9241099,0.08109545,-0.3734225,0.9241099,-0.06817156,-0.3883206,0.9189993,-0.08265221,-0.389306,0.9173927,-0.06817156,-0.3883206,0.9189993,0.08109545,-0.3734225,0.9241099,0.08109545,-0.3734225,0.9241099,-0.08265221,-0.389306,0.9173927,0.08109545,-0.3734225,0.9241099,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.2177084,0.4898867,0.8441648,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,-0.9717256,0.2190147,0.08821511,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.8474136,0.4803495,-0.2261738,0.2005947,-0.6319142,-0.7486295,0.2005947,-0.6319142,-0.7486295,0.2005947,-0.6319142,-0.7486295,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,0.8220099,-0.3970273,0.4082512,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5865552,0.26429,-0.7655741,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.5952668,-0.204973,-0.776945,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.4850596,0.4767988,-0.7330622,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,-0.5097613,-0.3829316,-0.770394,0.3675148,-0.7581005,0.5387176,0.3675148,-0.7581005,0.5387176,0.3675148,-0.7581005,0.5387176,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,-0.9815678,-0.1690691,0.08910851,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *294 { + a: -5.152832,11.60543,3.796139,11.60543,-7.915486,-0.2264811,-5.491998,-3.773684,5.460998,-3.773684,3.628181,-10.9167,5.198715,-2.5083,5.514254,-5.984108,3.171054,13.18078,1.426566,-12.37348,-2.801807,12.65663,-11.0741,-5.391447,-11.44167,6.762489,-13.31256,2.995476,8.999803,11.67756,14.44238,4.573867,0.166152,6.683706,-7.477619,6.683705,0.1016055,16.77079,-9.453099,16.77079,11.94703,1.003289,-10.78052,1.00329,7.279126,15.6087,-7.039237,15.6087,-9.019942,6.906751,-8.900898,14.73532,-3.620014,14.73532,3.238762,12.93993,5.673744,-2.117618,-0.9672577,12.93993,-10.51963,-2.117619,-8.741351,5.411154,12.15544,-1.00635,-6.87889,-1.006351,9.917951,6.398942,-4.311168,13.80423,1.684647,13.80423,0.332812,4.602106,-8.758208,4.602106,11.00353,10.80189,-10.78053,14.50481,11.94703,14.50481,11.75377,3.169285,9.501287,9.229762,15.22163,9.229762,5.640706,6.436489,0.6745189,-3.178912,-4.818177,6.436489,4.378354,15.98842,3.283783,5.940772,-9.400229,15.98841,-7.739084,5.940773,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,-6.802722,7.626191,-7.474566,11.17028,4.561058,7.62619,-5.492011,17.86542,5.460985,17.86542,3.259179,5.983892,-5.490931,5.983891,10.94599,10.97956,-6.878889,15.97523,12.15544,15.97523,0.1015981,-2.167506,-9.453107,-2.167506,0.2210093,12.86354,-5.798458,12.86354,-16.43728,7.315093,-13.19276,14.03005,-5.357597,7.315093,-6.458145,20.74501,-2.968044,20.74501,4.378357,-1.125377,-9.400226,-1.125377,2.353401,13.81499,-6.327106,13.81499,7.905021,8.059279,-2.880318,8.059279,6.930134,15.54637,4.35754,6.615863,-2.119816,6.615861,5.673744,16.71448,-10.51963,16.71448,-9.558403,11.66517,17.59007,6.628139,3.812411,6.628139,20.43951,9.761982,2.601236,20.21511,14.24609,20.21511,17.94485,1.394373,3.157724,1.394373,19.45101,4.672088,3.812414,10.86402,17.59008,10.86402,-0.8455832,-0.5372523,-9.226373,-0.5372528,-0.6019815,6.916485,-5.638277,14.37022,-2.998328,14.37022,-0.5822258,5.503491,-4.312009,5.503491,-0.845575,15.53685,-8.50112,11.78508,-9.226364,15.53685,0.7954689,18.91037,6.302602,11.80406,-4.996264,11.80406,-16.43728,10.46945,-5.357596,10.46945,-12.9297,1.065487,-4.065947,1.065487,16.86251,3.509399,14.02002,-7.140663,13.98131,9.310675,6.083089,-11.5737,4.647547,15.67819,-4.334748,-14.36515,-4.069064,16.44312,-6.643872,-3.479524,-11.47065,14.53426,-18.38188,5.513704,-7.445243,-12.30697,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495,9.501287,13.9495,12.31638,17.11423,15.22163,13.9495 + } + UVIndex: *240 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,6,8,5,5,8,9,8,10,9,9,10,11,10,12,11,13,11,12,14,8,6,15,14,6,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,29,28,30,28,29,31,30,29,32,34,33,35,33,34,36,35,34,37,39,38,40,38,39,41,40,39,42,44,43,45,47,46,48,50,49,51,49,50,52,54,53,55,57,56,58,56,57,59,58,57,60,62,61,63,61,62,64,63,62,65,67,66,68,66,67,69,71,70,72,70,71,73,72,71,74,76,75,77,75,76,78,80,79,81,83,82,84,82,83,85,82,84,86,88,87,89,87,88,90,89,88,91,93,92,94,92,93,95,94,93,96,98,97,99,97,98,100,99,98,101,103,102,104,102,103,105,104,103,106,108,107,109,111,110,112,110,111,113,115,114,116,114,115,117,116,115,118,116,117,119,118,117,120,118,119,121,120,119,122,120,121,120,123,118,124,126,125,127,129,128,130,132,131,133,135,134,136,135,137,138,140,139,141,143,142,144,146,145 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *80 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_largeD, Model::RootNode + C: "OO",4653469581537481398,0 + + ;Geometry::, Model::Mesh stone_largeD + C: "OO",5102255158800764019,4653469581537481398 + + ;Material::stone, Model::Mesh stone_largeD + C: "OO",3038,4653469581537481398 + + ;Material::_defaultMat, Model::Mesh stone_largeD + C: "OO",3004,4653469581537481398 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeD.fbx.import new file mode 100644 index 0000000..51294ac --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://u4a37bku31q4" +path="res://.godot/imported/stone_largeD.fbx-684c1c38c6dd99e51e7cad2900942342.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_largeD.fbx" +dest_files=["res://.godot/imported/stone_largeD.fbx-684c1c38c6dd99e51e7cad2900942342.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeE.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeE.fbx new file mode 100644 index 0000000..c3c6fc1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeE.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 793 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_largeE.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_largeE.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4805100966979526289, "Model::stone_largeE", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5459051139575445275, "Geometry::", "Mesh" { + Vertices: *354 { + a: 5.477294,1.73184,-2.099113,4.27229,2.92248,-1.637308,3.239491,1.73184,-4.599356,2.526803,2.92248,-3.587498,-4.269393,1.73184,-2.993327,0.6469035,1.73184,-3.781267,-3.330127,2.92248,-2.334795,0.504585,2.92248,-2.94939,5.477294,1.73184,-2.099113,3.791972,1.73184,0.5490492,4.27229,2.92248,-1.637308,2.957739,2.92248,0.4282584,-1.050197,0.93808,4.599356,-5.477294,0.93808,0.6734018,-1.050197,1.73184,4.599356,-5.477294,1.73184,0.6734018,-0.8401575,2.255973E-15,3.679485,-4.381837,0,0.5387213,-1.050197,0.93808,4.599356,-5.477294,0.93808,0.6734018,-3.801208,2.92248,-0.9047709,-3.145809,2.92248,1.524217,-4.87479,2.32716,0.5993277,5.477294,0.93808,-2.099113,4.381837,0,-1.67929,3.791972,0.93808,0.5490492,3.033578,0,0.4392394,3.033578,0,0.4392394,2.217587,-2.707168E-15,2.630204,3.791972,0.93808,0.5490492,2.771983,0.93808,3.287755,0.6469035,0.93808,-3.781267,3.239491,0.93808,-4.599356,0.6469035,1.73184,-3.781267,3.239491,1.73184,-4.599356,2.217587,-2.707168E-15,2.630204,-0.8401575,2.255973E-15,3.679485,2.771983,0.93808,3.287755,-1.050197,0.93808,4.599356,4.27229,2.92248,-1.637308,2.957739,2.92248,0.4282584,2.526803,2.92248,-3.587498,2.162147,2.92248,2.564449,0.504585,2.92248,-2.94939,-0.8191534,2.92248,3.587498,-3.330127,2.92248,-2.334795,-3.145809,2.92248,1.524217,-3.801208,2.92248,-0.9047709,3.791972,1.73184,0.5490492,3.791972,0.93808,0.5490492,2.771983,1.73184,3.287755,2.771983,0.93808,3.287755,-4.269393,1.73184,-2.993327,-3.330127,2.92248,-2.334795,-5.477294,1.73184,0.6734018,-3.801208,2.92248,-0.9047709,-4.87479,2.32716,0.5993277,2.771983,1.73184,3.287755,-1.050197,1.73184,4.599356,2.162147,2.92248,2.564449,-0.8191534,2.92248,3.587498,-4.269393,0.93808,-2.993327,-4.269393,1.73184,-2.993327,-5.477294,0.93808,0.6734018,-5.477294,1.73184,0.6734018,2.957739,2.92248,0.4282584,3.791972,1.73184,0.5490492,2.162147,2.92248,2.564449,2.771983,1.73184,3.287755,3.239491,1.73184,-4.599356,3.239491,0.93808,-4.599356,5.477294,1.73184,-2.099113,5.477294,0.93808,-2.099113,4.381837,0,-1.67929,2.591593,0,-3.679485,3.033578,0,0.4392394,2.217587,-2.707168E-15,2.630204,0.5175228,0,-3.025015,-0.8401575,2.255973E-15,3.679485,-3.415515,0,-2.394662,-4.381837,0,0.5387213,-3.415515,0,-2.394662,0.5175228,0,-3.025015,-4.269393,0.93808,-2.993327,0.6469035,0.93808,-3.781267,-4.269393,0.93808,-2.993327,0.6469035,0.93808,-3.781267,-4.269393,1.73184,-2.993327,0.6469035,1.73184,-3.781267,5.477294,1.73184,-2.099113,5.477294,0.93808,-2.099113,3.791972,1.73184,0.5490492,3.791972,0.93808,0.5490492,0.5175228,0,-3.025015,2.591593,0,-3.679485,0.6469035,0.93808,-3.781267,3.239491,0.93808,-4.599356,2.771983,0.93808,3.287755,-1.050197,0.93808,4.599356,2.771983,1.73184,3.287755,-1.050197,1.73184,4.599356,5.477294,0.93808,-2.099113,3.239491,0.93808,-4.599356,4.381837,0,-1.67929,2.591593,0,-3.679485,-3.415515,0,-2.394662,-4.269393,0.93808,-2.993327,-4.381837,0,0.5387213,-5.477294,0.93808,0.6734018,-0.8191534,2.92248,3.587498,-1.050197,1.73184,4.599356,-3.145809,2.92248,1.524217,-5.477294,1.73184,0.6734018,-4.87479,2.32716,0.5993277,0.6469035,1.73184,-3.781267,3.239491,1.73184,-4.599356,0.504585,2.92248,-2.94939,2.526803,2.92248,-3.587498 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,42,-42,44,42,-44,45,44,-44,46,44,-46,47,46,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,55,-55,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,74,-77,78,77,-77,79,77,-79,80,79,-79,81,83,-83,84,82,-84,85,87,-87,88,86,-88,89,91,-91,92,90,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,112,-112,114,116,-116,117,115,-117 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: 0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,0.5235278,0.7115868,-0.4685754,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,-0.1314121,0.5571668,-0.8199366,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,0.7087766,0.5423725,0.4510739,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.6634907,0,0.7481845,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.4975436,-0.6615651,0.5610544,-0.3714295,0.9230363,0.1002206,-0.3714295,0.9230363,0.1002206,-0.3714295,0.9230363,0.1002206,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.6765689,-0.5973762,0.4305766,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,0.7323117,-0.623966,0.2727382,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,-0.3009229,0,-0.9536485,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0.2467192,-0.6497753,0.7189727,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9371173,0,0.3490148,0.9371173,0,0.3490148,0.9371173,0,0.3490148,0.9371173,0,0.3490148,0.9371173,0,0.3490148,0.9371173,0,0.3490148,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,-0.6981738,0.6779795,-0.2299935,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,0.2608023,0.5952836,0.7600129,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,-0.949792,0,-0.3128823,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7705985,0.5690434,0.2869976,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0.7451311,0,-0.666918,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1251337,-0.6121696,-0.7807625,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,-0.1582514,0,-0.9873989,0.843643,0,0.5369045,0.843643,0,0.5369045,0.843643,0,0.5369045,0.843643,0,0.5369045,0.843643,0,0.5369045,0.843643,0,0.5369045,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,-0.2433639,-0.5881861,-0.7712399,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.3245765,0,0.9458594,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,0.4844602,-0.7597907,-0.4336086,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.6503973,-0.7287511,-0.2142552,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.5270785,0.6073921,0.5943593,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755,-0.2545707,0.5332355,-0.806755 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *236 { + a: -8.223588,-10.56531,-6.414402,-3.893564,4.986804,-10.56531,3.889708,-3.893564,14.73187,-2.303499,-4.870642,-2.303497,11.49086,3.341439,-3.799102,3.341437,18.54995,-1.732234,6.191833,-1.732234,14.46896,3.847275,4.829631,3.847275,8.920822,3.693228,-14.37492,3.693228,8.920822,6.818268,-14.37492,6.818268,7.136659,8.622148,-11.49994,8.622149,8.920821,13.54719,-14.37492,13.54719,-7.337693,-8.053663,2.567252,-8.053663,-2.721595,-14.14594,18.54995,11.17894,14.83996,6.573696,6.191833,11.17894,4.953468,6.573695,2.547816,7.360144,-6.656846,7.360143,3.184769,12.08626,-8.321055,12.08626,-6.908616,3.693228,-17.61176,3.693228,-6.908616,6.818268,-17.61176,6.818268,4.896941,8.205536,-7.830494,8.205537,6.121175,13.06424,-9.788116,13.06424,-16.82004,-6.446094,-11.64464,1.686057,-9.948045,-14.12401,-8.51239,10.09626,-1.986555,-11.61177,3.225013,14.12401,13.11074,-9.192107,12.38507,6.000855,14.96539,-3.56209,3.184767,6.818268,3.184767,3.693228,-8.321057,6.818268,-8.321057,3.693228,-5.933945,-8.311638,-4.628476,-1.934711,9.265112,-8.311641,1.299155,-1.93471,8.245949,-5.123172,6.121175,-3.918165,-9.788116,-3.918165,4.774517,1.915645,-7.634731,1.915645,-5.93394,3.693228,-5.93394,6.818268,9.265117,3.693228,9.265117,6.818268,2.48412,2.916843,3.184769,-2.783649,-6.490425,2.916844,-8.321055,-2.78365,4.986804,6.818268,4.986804,3.693228,-8.223588,6.818268,-8.223588,3.693228,17.25133,-6.611379,10.20312,-14.48616,11.94322,1.729289,8.730657,10.35513,2.037492,-11.90951,-3.307707,14.48616,-13.44691,-9.427802,-17.25133,2.12095,11.7855,7.00138,-3.896514,7.001382,14.73187,11.67206,-4.870642,11.67206,14.73187,3.693228,-4.87064,3.693228,14.73187,6.818268,-4.87064,6.818268,18.54994,6.818268,18.54994,3.693228,6.191832,6.818268,6.191832,3.693228,-5.526893,6.319681,-14.08941,6.31968,-6.908614,10.88641,-17.61176,10.88641,6.121176,3.693228,-9.788116,3.693228,6.121176,6.818268,-9.788116,6.818268,-8.223588,18.79726,4.986803,18.79726,-6.578875,13.11683,3.989444,13.11683,-4.747149,11.4571,-5.933939,16.85042,7.412096,11.4571,9.265119,16.85042,6.958244,1.422041,8.920823,-4.478695,-5.284808,1.422042,-14.37492,-4.478696,-12.79368,-1.528326,-6.908614,-1.39356,-17.61176,-1.393561,-5.388721,4.147505,-13.73717,4.147506 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,42,41,44,42,43,45,44,43,46,44,45,47,46,45,48,50,49,51,49,50,52,54,53,55,53,54,56,55,54,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,74,76,78,77,76,79,77,78,80,79,78,81,83,82,84,82,83,85,87,86,88,86,87,89,91,90,92,90,91,93,95,94,96,94,95,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,112,111,114,116,115,117,115,116 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_largeE, Model::RootNode + C: "OO",4805100966979526289,0 + + ;Geometry::, Model::Mesh stone_largeE + C: "OO",5459051139575445275,4805100966979526289 + + ;Material::stone, Model::Mesh stone_largeE + C: "OO",3038,4805100966979526289 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeE.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeE.fbx.import new file mode 100644 index 0000000..c82c89f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeE.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cee8v3oaysxwh" +path="res://.godot/imported/stone_largeE.fbx-f9b2e1b672372f35f01278b7543eaced.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_largeE.fbx" +dest_files=["res://.godot/imported/stone_largeE.fbx-f9b2e1b672372f35f01278b7543eaced.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeF.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeF.fbx new file mode 100644 index 0000000..ef8a576 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeF.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 883 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_largeF.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_largeF.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5326270005250310247, "Model::stone_largeF", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5114184263506037377, "Geometry::", "Mesh" { + Vertices: *405 { + a: -4.381837,0,0.4342762,-5.477294,2.11068,0.5689567,-0.8401575,5.414336E-15,3.57504,-1.050197,2.11068,4.494912,3.017828,1.388561,-4.389089,2.591593,0,-3.78393,4.050211,2.11068,-3.798001,5.477294,2.11068,-2.203558,3.707707,0,-2.536923,4.929564,1.05534,-1.993647,5.477294,2.11068,-2.203558,4.929564,1.05534,-1.993647,3.791972,2.11068,0.4446041,3.707707,0,-0.7244709,3.033578,0,0.3347941,-1.448996,0,-2.814284,0.5175228,0,-3.12946,-3.842455,1.05534,-2.798439,0.6469035,2.11068,-3.885715,-4.269393,2.11068,-3.097772,0.6469035,2.11068,-3.885715,2.5775,2.11068,-4.494912,0.3986219,4.78962,-2.434463,3.017828,2.588291,-4.389089,1.996174,4.78962,-2.938568,-1.448996,0,-2.814284,-3.842455,1.05534,-2.798439,-3.898675,0,-1.032416,2.855861,4.78962,-0.5820198,2.336614,4.78962,0.2338789,2.730123,4.78962,-2.118545,1.996174,4.78962,-2.938568,1.708096,4.78962,1.921469,0.3986219,4.78962,-2.434463,-0.6471312,4.78962,2.729678,-1.116089,4.78962,-2.191698,-3.375108,4.78962,0.310505,-3.002955,4.78962,-0.819214,-4.269393,2.11068,-3.097772,-3.450098,3.45015,-2.523353,-5.477294,2.11068,0.5689567,-3.002955,4.78962,-0.819214,-3.375108,4.78962,0.310505,-1.116089,4.78962,-2.191698,-3.002955,4.78962,-0.819214,-3.450098,3.45015,-2.523353,0.5175228,0,-3.12946,2.591593,0,-3.78393,0.6469035,2.11068,-3.885715,3.017828,1.388561,-4.389089,2.5775,2.11068,-4.494912,4.426201,3.45015,-1.800738,2.855861,4.78962,-0.5820198,2.730123,4.78962,-2.118545,3.033578,0,0.3347941,2.217587,-5.86553E-15,2.525759,3.791972,2.11068,0.4446041,2.771983,2.11068,3.18331,2.336614,4.78962,0.2338789,3.791972,2.11068,0.4446041,1.708096,4.78962,1.921469,2.771983,2.11068,3.18331,-1.050197,2.11068,4.494912,-5.477294,2.11068,0.5689567,-0.6471312,4.78962,2.729678,-3.375108,4.78962,0.310505,2.771983,2.11068,3.18331,-1.050197,2.11068,4.494912,1.708096,4.78962,1.921469,-0.6471312,4.78962,2.729678,2.5775,2.11068,-4.494912,4.050211,2.11068,-3.798001,3.017828,2.588291,-4.389089,5.477294,2.11068,-2.203558,4.426201,3.45015,-1.800738,4.050211,2.11068,-3.798001,2.730123,4.78962,-2.118545,3.017828,2.588291,-4.389089,1.996174,4.78962,-2.938568,-4.269393,2.11068,-3.097772,0.6469035,2.11068,-3.885715,-3.450098,3.45015,-2.523353,0.3986219,4.78962,-2.434463,-1.116089,4.78962,-2.191698,2.5775,2.11068,-4.494912,3.017828,1.388561,-4.389089,4.050211,2.11068,-3.798001,3.707707,0,-0.7244709,4.929564,1.05534,-1.993647,3.707707,0,-2.536923,-4.269393,2.11068,-3.097772,-5.477294,2.11068,0.5689567,-3.842455,1.05534,-2.798439,-3.898675,0,-1.032416,-4.381837,0,0.4342762,5.477294,2.11068,-2.203558,3.791972,2.11068,0.4446041,4.426201,3.45015,-1.800738,2.855861,4.78962,-0.5820198,2.336614,4.78962,0.2338789,2.217587,-5.86553E-15,2.525759,-0.8401575,5.414336E-15,3.57504,2.771983,2.11068,3.18331,-1.050197,2.11068,4.494912,3.707707,0,-0.7244709,3.707707,0,-2.536923,3.033578,0,0.3347941,2.591593,0,-3.78393,2.217587,-5.86553E-15,2.525759,0.5175228,0,-3.12946,-0.8401575,5.414336E-15,3.57504,-1.448996,0,-2.814284,-4.381837,0,0.4342762,-3.898675,0,-1.032416,5.477294,2.11068,-2.203558,3.791972,2.11068,0.4446041,4.050211,2.11068,-3.798001,2.5775,2.11068,-4.494912,4.050211,2.11068,-3.798001,3.791972,2.11068,0.4446041,2.771983,2.11068,3.18331,2.5775,2.11068,-4.494912,3.791972,2.11068,0.4446041,-1.050197,2.11068,4.494912,2.5775,2.11068,-4.494912,2.771983,2.11068,3.18331,0.6469035,2.11068,-3.885715,2.5775,2.11068,-4.494912,-1.050197,2.11068,4.494912,-4.269393,2.11068,-3.097772,0.6469035,2.11068,-3.885715,-1.050197,2.11068,4.494912,-5.477294,2.11068,0.5689567,-4.269393,2.11068,-3.097772,-1.050197,2.11068,4.494912 + } + PolygonVertexIndex: *219 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,5,-8,9,8,-8,10,12,-12,13,11,-13,14,13,-13,15,17,-17,18,16,-18,19,18,-18,20,22,-22,23,21,-23,24,23,-23,25,27,-27,28,30,-30,31,29,-31,32,29,-32,33,32,-32,34,32,-34,35,34,-34,36,34,-36,37,36,-36,38,40,-40,41,39,-41,42,41,-41,43,45,-45,46,48,-48,49,47,-49,50,49,-49,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,75,-75,76,74,-76,77,76,-76,78,76,-78,79,81,-81,82,80,-82,83,82,-82,84,86,-86,87,89,-89,90,92,-92,93,91,-93,94,91,-94,95,97,-97,98,96,-98,99,96,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,107,-107,109,107,-109,110,109,-109,111,109,-111,112,111,-111,113,111,-113,114,116,-116,117,119,-119,120,122,-122,123,125,-125,126,128,-128,129,131,-131,132,134,-134 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *657 { + a: -0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,-0.6177046,-0.3650396,0.6965538,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.6612604,-0.4609201,-0.5918508,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,0.8008935,-0.3142886,0.509698,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.1496413,-0.3253617,-0.933674,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.2703609,0.4390929,-0.8567978,-0.3548771,-0.7975191,-0.4878784,-0.3548771,-0.7975191,-0.4878784,-0.3548771,-0.7975191,-0.4878784,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.7725712,0.5816895,-0.2545017,-0.3719444,0.7747171,-0.511342,-0.3719444,0.7747171,-0.511342,-0.3719444,0.7747171,-0.511342,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,-0.2863346,-0.3075758,-0.9074192,0.6248483,0.77907,-0.05113303,0.6248483,0.77907,-0.05113303,0.6248483,0.77907,-0.05113303,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8831549,-0.3344409,0.3289175,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,0.8257623,0.4727941,0.3075424,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,-0.5707366,0.5099522,0.6435903,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.2814482,0.4980932,0.8201769,0.4199057,-0.190521,-0.8873449,0.4199057,-0.190521,-0.8873449,0.4199057,-0.190521,-0.8873449,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,0.5860359,0.6176069,-0.5245223,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,-0.1403904,0.4615154,-0.8759532,0.4242597,0.1273177,-0.8965456,0.4242597,0.1273177,-0.8965456,0.4242597,0.1273177,-0.8965456,0.6536554,-0.7567924,0,0.6536554,-0.7567924,0,0.6536554,-0.7567924,0,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,-0.8585953,-0.4275694,-0.2828401,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.7544114,0.4476068,0.4801162,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0.3034167,-0.3551546,0.8841966,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *270 { + a: -11.77277,4.645239,-14.64775,13.57095,6.86383,4.645238,8.647997,13.57095,4.951978,14.24376,4.29584,8.083609,0.5072829,17.44734,-7.917191,17.44734,-2.292899,8.083609,-7.094828,12.76547,18.89685,12.14245,17.04185,7.76579,6.538735,12.14245,10.24362,3.389133,5.300372,3.389133,3.879416,3.853265,-3.961592,3.853265,13.19361,8.247224,-4.935722,12.64118,14.66679,12.64118,-7.032348,1.396434,-15.00255,1.396433,-4.380824,13.13566,-16.5304,3.489347,-10.9761,13.13566,-1.904186,9.822154,5.752861,16.70915,10.02175,9.822154,-11.24355,-2.291417,-9.199266,0.9207829,-10.74852,-8.340729,-7.858954,-11.56917,-6.724788,7.56484,-1.569378,-9.584501,2.547761,10.74677,4.394053,-8.628734,13.28783,1.222461,11.82266,-3.225252,-6.3245,-4.746916,-5.185774,1.73628,8.874557,-4.746918,0.6357786,8.219478,5.318606,8.219479,-1.522272,4.514892,7.663683,4.514892,5.14073,-3.825195,-5.650626,3.425318,-14.21314,3.425318,-7.032349,12.15843,-16.5304,9.170604,-15.00255,12.15843,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,2.933161,3.896982,-6.271502,3.896982,3.570112,12.71449,-7.935712,12.71449,2.3478,12.38828,3.570112,0.4189933,-4.74209,12.38828,-7.935712,0.4189928,8.647998,-1.002759,-14.64775,-1.002759,5.224185,11.25831,-9.130655,11.25831,6.254639,-0.4632477,-9.654654,-0.4632477,3.905333,11.69996,-5.897973,11.69996,-1.602952,12.03207,-8.017451,12.03207,-3.348141,13.94752,-7.917189,-6.961609,-6.33908,-0.2564687,0.507285,-6.961606,-0.9534419,6.448668,4.95198,-4.570774,3.379269,6.448668,14.66679,0.5865347,-4.935722,0.5865344,11.83975,6.530974,-3.066367,12.47541,2.973169,12.47541,-1.602952,5.652949,-3.348141,2.786634,-8.017451,5.652949,2.852247,11.0471,7.849005,17.40348,9.987887,11.0471,-6.324497,15.96946,8.87456,15.96946,-5.7311,11.37327,0.9419138,6.777066,7.021539,6.777069,18.89685,1.372678,6.538737,1.372679,15.33711,7.269933,7.969848,13.16718,4.162314,13.16718,5.030406,4.346854,-7.697028,4.346853,6.25464,13.23613,-9.654653,13.23613,14.59727,-2.852247,14.59727,-9.987887,11.94322,1.318087,10.20312,-14.89736,8.730657,9.943933,2.037492,-12.32071,-3.307707,14.07496,-5.70471,-11.07986,-17.25133,1.709749,-15.34911,-4.064628,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081,5.644637,-5.465456,1.366758,2.946081,7.436291,2.946081 + } + UVIndex: *219 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,5,7,9,8,7,10,12,11,13,11,12,14,13,12,15,17,16,18,16,17,19,18,17,20,22,21,23,21,22,24,23,22,25,27,26,28,30,29,31,29,30,32,29,31,33,32,31,34,32,33,35,34,33,36,34,35,37,36,35,38,40,39,41,39,40,42,41,40,43,45,44,46,48,47,49,47,48,50,49,48,51,53,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,75,74,76,74,75,77,76,75,78,76,77,79,81,80,82,80,81,83,82,81,84,86,85,87,89,88,90,92,91,93,91,92,94,91,93,95,97,96,98,96,97,99,96,98,100,102,101,103,101,102,104,106,105,107,105,106,108,107,106,109,107,108,110,109,108,111,109,110,112,111,110,113,111,112,114,116,115,117,119,118,120,122,121,123,125,124,126,128,127,129,131,130,132,134,133 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *73 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_largeF, Model::RootNode + C: "OO",5326270005250310247,0 + + ;Geometry::, Model::Mesh stone_largeF + C: "OO",5114184263506037377,5326270005250310247 + + ;Material::stone, Model::Mesh stone_largeF + C: "OO",3038,5326270005250310247 + + ;Material::_defaultMat, Model::Mesh stone_largeF + C: "OO",3004,5326270005250310247 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_largeF.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeF.fbx.import new file mode 100644 index 0000000..5a9435c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_largeF.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cdwqxj7oivle7" +path="res://.godot/imported/stone_largeF.fbx-954da9782dd311cfeb5c3ba1b94f271a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_largeF.fbx" +dest_files=["res://.godot/imported/stone_largeF.fbx-954da9782dd311cfeb5c3ba1b94f271a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallA.fbx new file mode 100644 index 0000000..d1e74f0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallA.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 32 + Millisecond: 969 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5348025106888374444, "Model::stone_smallA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5155705239056199741, "Geometry::", "Mesh" { + Vertices: *90 { + a: 0.6475415,1.91224,-0.106847,0.3877723,1.91224,0.8026118,0.1069347,1.91224,-0.4947582,-0.5248802,1.91224,0.8026118,-0.6758696,1.91224,0.2880464,3.609557E-15,2.255973E-16,-1.804,0.1069347,1.91224,-0.4947582,-1.804,2.255973E-16,1.443823E-14,-0.6758696,1.91224,0.2880464,1.143181,2.255973E-16,1.804,-1.274651,2.255973E-16,1.804,0.3877723,1.91224,0.8026118,-0.5248802,1.91224,0.8026118,1.804,2.255973E-16,-0.5095435,1.143181,2.255973E-16,1.804,0.6475415,1.91224,-0.106847,0.3877723,1.91224,0.8026118,3.609557E-15,2.255973E-16,-1.804,1.804,2.255973E-16,-0.5095435,0.1069347,1.91224,-0.4947582,0.6475415,1.91224,-0.106847,1.804,2.255973E-16,-0.5095435,3.609557E-15,2.255973E-16,-1.804,1.143181,2.255973E-16,1.804,-1.274651,2.255973E-16,1.804,-1.804,2.255973E-16,1.443823E-14,-1.804,2.255973E-16,1.443823E-14,-0.6758696,1.91224,0.2880464,-1.274651,2.255973E-16,1.804,-0.5248802,1.91224,0.8026118 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,22,-25,26,28,-28,29,27,-29 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,-0.6264127,0.4639119,-0.6264127,0,0.463912,0.8858814,0,0.463912,0.8858814,0,0.463912,0.8858814,0,0.463912,0.8858814,0,0.463912,0.8858814,0,0.463912,0.8858814,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.8518149,0.4639119,0.2433043,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0.5164617,0.4639119,-0.719759,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285,-0.8500419,0.463912,0.2494285 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *60 { + a: -2.549376,-0.4206576,-1.526663,3.159889,-0.4210029,-1.947867,2.066458,3.159889,2.660904,1.134041,-5.022129,-2.329825,-1.675044,6.168496,5.022129,-2.329825,2.683431,6.168496,4.500714,-3.294871,-5.018311,-3.294871,1.526663,5.203451,-2.066458,5.203451,3.879573,-2.912569,-5.593136,-2.912569,1.104659,5.585752,-2.619084,5.585752,4.14062,-2.67701,-4.600986,-2.677009,0.7935351,5.821312,-1.826072,5.821311,7.102362,-2.006077,1.421085E-14,-7.102362,4.500714,7.102362,-5.018311,7.102362,-7.102362,5.684342E-14,-1.999739,-3.161572,0.3389584,5.336749,5.402073,-3.161572,2.450221,5.336749 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,22,24,26,28,27,29,27,28 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallA, Model::RootNode + C: "OO",5348025106888374444,0 + + ;Geometry::, Model::Mesh stone_smallA + C: "OO",5155705239056199741,5348025106888374444 + + ;Material::stone, Model::Mesh stone_smallA + C: "OO",3038,5348025106888374444 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallA.fbx.import new file mode 100644 index 0000000..1e2c26c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bigwghevik1mj" +path="res://.godot/imported/stone_smallA.fbx-bb93c79598893d1945bf19f5c920f614.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallA.fbx" +dest_files=["res://.godot/imported/stone_smallA.fbx-bb93c79598893d1945bf19f5c920f614.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallB.fbx new file mode 100644 index 0000000..cd25d36 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallB.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 45 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5028634082401669350, "Model::stone_smallB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4889318533526823638, "Geometry::", "Mesh" { + Vertices: *126 { + a: 0.848892,1.76792,0.3204944,0.848892,1.76792,0.848892,-0.0354827,1.76792,-0.848892,0.5748807,1.76792,0.848892,-0.848892,1.76792,0.4375778,-0.3276645,1.76792,-0.848892,-0.848892,1.76792,0.2203913,1.804,1.127987E-16,0,1.804,1.127987E-16,1.804,0.848892,1.76792,0.3204944,0.848892,1.76792,0.848892,0.4396845,1.127987E-16,-1.804,1.804,1.127987E-16,0,-0.0354827,1.76792,-0.848892,0.848892,1.76792,0.3204944,1.804,1.127987E-16,1.804,0.4396845,1.127987E-16,1.804,0.848892,1.76792,0.848892,0.5748807,1.76792,0.848892,-0.9246308,1.127987E-16,-1.804,0.4396845,1.127987E-16,-1.804,-0.3276645,1.76792,-0.848892,-0.0354827,1.76792,-0.848892,1.804,1.127987E-16,1.804,1.804,1.127987E-16,0,0.4396845,1.127987E-16,1.804,0.4396845,1.127987E-16,-1.804,-1.804,1.127987E-16,1.155822,-0.9246308,1.127987E-16,-1.804,-1.804,1.127987E-16,0,-0.9246308,1.127987E-16,-1.804,-0.3276645,1.76792,-0.848892,-1.804,1.127987E-16,0,-0.848892,1.76792,0.2203913,-1.804,1.127987E-16,0,-0.848892,1.76792,0.2203913,-1.804,1.127987E-16,1.155822,-0.848892,1.76792,0.4375778,0.4396845,1.127987E-16,1.804,-1.804,1.127987E-16,1.155822,0.5748807,1.76792,0.848892,-0.848892,1.76792,0.4375778 + } + PolygonVertexIndex: *72 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,4,-6,7,9,-9,10,8,-10,11,13,-13,14,12,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,26,-26,28,26,-28,29,28,-28,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *216 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.8798157,0.475315,0,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0.7017342,0.475315,-0.5307022,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,0.475315,-0.8798157,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.7908595,0.475315,-0.3855085,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.8798157,0.475315,0,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511,-0.2441847,0.475315,0.8452511 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *84 { + a: -3.342094,1.261789,-3.342094,3.342094,0.1396957,-3.342094,-2.26331,3.342094,3.342094,1.722747,1.290018,-3.342094,3.342094,0.8676823,2.703577E-16,-3.375859,-7.102362,-3.375859,-1.261789,4.535246,-3.342094,4.535246,4.62063,-2.692559,-4.284123,-2.692559,2.749893,5.218547,-3.022335,5.218547,7.102362,-3.375859,1.731042,-3.375859,3.342094,4.535246,2.26331,4.535246,3.640279,-3.375859,-1.731042,-3.375859,1.290018,4.535246,0.1396957,4.535246,7.102362,7.102362,7.102362,0,1.731042,7.102362,1.731042,-7.102362,-7.102362,4.550479,-3.640279,-7.102362,-7.102362,0,-4.789199,-3.034534,-2.438936,4.876572,3.11204,-3.034534,2.244357,4.876572,3.45364E-16,-3.375859,0.8676823,4.535246,4.550479,-3.375859,1.722747,4.535246,3.634231,-3.014877,-5.560394,-3.014878,3.101961,4.896228,-2.732664,4.896229 + } + UVIndex: *72 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,4,5,7,9,8,10,8,9,11,13,12,14,12,13,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,26,25,28,26,27,29,28,27,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *24 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallB, Model::RootNode + C: "OO",5028634082401669350,0 + + ;Geometry::, Model::Mesh stone_smallB + C: "OO",4889318533526823638,5028634082401669350 + + ;Material::stone, Model::Mesh stone_smallB + C: "OO",3038,5028634082401669350 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallB.fbx.import new file mode 100644 index 0000000..a953d02 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bx2h08222hyj6" +path="res://.godot/imported/stone_smallB.fbx-c85b8c75423c79a63744410c195ade85.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallB.fbx" +dest_files=["res://.godot/imported/stone_smallB.fbx-c85b8c75423c79a63744410c195ade85.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallC.fbx new file mode 100644 index 0000000..4b42852 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallC.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 141 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5596547986534641874, "Model::stone_smallC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4867481029654002743, "Geometry::", "Mesh" { + Vertices: *90 { + a: -0.7715433,2.255973E-16,-1.804,-0.4390514,1.22672,-0.7412005,-1.804,2.255973E-16,-0.3654009,-0.6800271,1.22672,-0.4054309,-0.7715433,2.255973E-16,-1.804,1.199971,2.255973E-16,-1.10238,-0.4390514,1.22672,-0.7412005,0.5824369,1.22672,-0.3776743,-0.6800271,1.22672,-0.4054309,0.06051608,1.22672,0.4851093,-1.804,2.255973E-16,-0.3654009,0,2.255973E-16,1.804,1.804,2.255973E-16,1.443823E-14,0,2.255973E-16,1.804,0.7030945,1.22672,-0.1574689,0.06051608,1.22672,0.4851093,1.804,2.255973E-16,1.443823E-14,1.199971,2.255973E-16,-1.10238,0,2.255973E-16,1.804,-0.7715433,2.255973E-16,-1.804,-1.804,2.255973E-16,-0.3654009,0.7030945,1.22672,-0.1574689,0.06051608,1.22672,0.4851093,0.5824369,1.22672,-0.3776743,-0.4390514,1.22672,-0.7412005,-0.6800271,1.22672,-0.4054309,1.199971,2.255973E-16,-1.10238,1.804,2.255973E-16,1.443823E-14,0.5824369,1.22672,-0.3776743,0.7030945,1.22672,-0.1574689 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,23,-23,24,22,-24,25,22,-25,26,28,-28,29,27,-29 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: -0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,-0.6576385,0.5871549,-0.4719753,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,0.2714007,0.5871549,-0.762621,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,-0.6223962,0.5871549,0.5175636,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0.572385,0.5871549,0.572385,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732,0.7098937,0.5871549,-0.3889732 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *60 { + a: -3.999048,-3.880468,-1.362897,2.085879,2.972385,-3.880468,0.2642379,2.085879,5.243033,-3.33083,-2.995706,-3.33083,2.606883,2.635517,-1.661803,2.635518,-2.939089,3.300004,1.62082,3.300005,-5.647237,-2.666342,5.460929,-2.666343,5.022129,-2.948767,-5.022128,-2.948767,2.39571,3.01758,-1.182019,3.01758,7.102362,5.684342E-14,4.724297,-4.340077,0,7.102362,-3.037572,-7.102362,-7.102362,-1.438586,-2.768089,-0.6199564,-0.2382523,1.909879,-2.293059,-1.486907,1.728549,-2.918112,2.677272,-1.596185,1.536019,-3.657174,-3.412866,-3.657173,0.2021152,2.309174,-0.7864474,2.309173 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,23,22,24,22,23,25,22,24,26,28,27,29,27,28 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallC, Model::RootNode + C: "OO",5596547986534641874,0 + + ;Geometry::, Model::Mesh stone_smallC + C: "OO",4867481029654002743,5596547986534641874 + + ;Material::stone, Model::Mesh stone_smallC + C: "OO",3038,5596547986534641874 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallC.fbx.import new file mode 100644 index 0000000..06e8bad --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ci2wgyawwjs71" +path="res://.godot/imported/stone_smallC.fbx-48eea7f978389709364af9bdef4fb061.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallC.fbx" +dest_files=["res://.godot/imported/stone_smallC.fbx-48eea7f978389709364af9bdef4fb061.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallD.fbx new file mode 100644 index 0000000..b6f101a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallD.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 217 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5322904545910062688, "Model::stone_smallD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5112740064982906606, "Geometry::", "Mesh" { + Vertices: *162 { + a: 1.362381,2.30912,1.443823E-14,0.9215266,2.30912,0.7635823,1.248119,2.30912,-0.1979069,-0.4526672,2.30912,-1.179856,0,2.30912,1.179856,-0.6811904,2.30912,1.179856,-0.6811904,2.30912,-1.179856,-1.147969,2.30912,-0.3713729,-1.230748,2.30912,0.2279942,0.9215266,2.30912,0.7635823,0.8371419,1.3693,1.449972,0,2.30912,1.179856,-1.06436,0,-1.843526,-0.6811904,2.30912,-1.179856,-2.12872,0,0,-1.147969,2.30912,-0.3713729,-2.008057,0.3635792,0,-2.12872,0,0,-2.008057,0.3635792,0,-1.06436,0,1.843526,-1.230748,2.30912,0.2279942,-0.6811904,2.30912,1.179856,-1.06436,0,-1.843526,1.06436,0,-1.843526,-0.6811904,2.30912,-1.179856,0.7322771,2.001253,-1.268341,-0.4526672,2.30912,-1.179856,1.06436,0,-1.843526,2.12872,0,0,0.7322771,2.001253,-1.268341,1.248119,2.30912,-0.1979069,1.362381,2.30912,1.443823E-14,0.7322771,2.001253,-1.268341,1.248119,2.30912,-0.1979069,-0.4526672,2.30912,-1.179856,2.12872,0,0,1.06436,0,-1.843526,1.06436,0,1.843526,-1.06436,0,1.843526,-1.06436,0,-1.843526,-2.12872,0,0,2.12872,0,0,1.06436,0,1.843526,1.362381,2.30912,1.443823E-14,0.9215266,2.30912,0.7635823,0.8371419,1.3693,1.449972,-2.008057,0.3635792,0,-1.147969,2.30912,-0.3713729,-1.230748,2.30912,0.2279942,1.06436,0,1.843526,-1.06436,0,1.843526,0.8371419,1.3693,1.449972,-0.6811904,2.30912,1.179856,0,2.30912,1.179856 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,5,-4,7,5,-7,8,5,-8,9,11,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,20,18,-20,21,20,-20,22,24,-24,25,23,-25,26,25,-25,27,29,-29,30,28,-30,31,28,-31,32,34,-34,35,37,-37,38,36,-38,39,36,-39,40,39,-39,41,43,-43,44,42,-44,45,42,-45,46,48,-48,49,51,-51,52,50,-52,53,52,-52 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3485266,0.5322019,0.7715506,0.3485266,0.5322019,0.7715506,0.3485266,0.5322019,0.7715506,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,-0.4805458,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,-0.8323299,0.2762295,0.4805459,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0,0.2762295,-0.9610917,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.8323299,0.2762295,-0.4805458,0.2089977,0.9084492,-0.3619945,0.2089977,0.9084492,-0.3619945,0.2089977,0.9084492,-0.3619945,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,0.8323299,0.2762294,0.4805458,-0.9159687,0.3807853,-0.1265063,-0.9159687,0.3807853,-0.1265063,-0.9159687,0.3807853,-0.1265063,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917,0,0.2762295,0.9610917 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *108 { + a: -5.363704,5.684342E-14,-3.628057,3.00623,-4.913855,-0.779161,1.782155,-4.645104,0,4.645104,2.681852,4.645104,2.681852,-4.645104,4.519561,-1.462098,4.845466,0.8976148,2.068796,5.443682,0.6535661,1.073254,-1.912248,5.443682,-4.190394,-2.004867,-2.681852,7.454193,4.190394,-2.004867,0.9935666,7.454193,3.952869,-0.5155039,-4.190394,-2.004867,-3.952869,-0.5155038,4.190394,-2.004867,-1.645376,7.454193,2.681852,7.454193,4.190394,-2.004867,-4.190394,-2.004867,2.681852,7.454193,-2.882981,6.193049,1.782155,7.454193,4.190394,-2.004867,-4.190393,-2.004867,2.882981,6.193049,-1.782154,7.454193,-2.681852,7.454193,2.236564E-08,-1.94472,-3.865942,0.955014,3.865943,0.955014,8.380788,0,4.190394,-7.257975,4.190394,7.257975,-4.190394,7.257975,-4.190394,-7.257975,-8.380788,0,4.190393,-2.004866,-4.190394,-2.004866,2.681852,7.454193,-0.7894427,7.454193,-3.295834,3.60432,1.08161,-1.658505,-0.8300135,6.625167,1.552099,6.625167,4.190394,-2.004867,-4.190394,-2.004867,3.295834,3.60432,-2.681852,7.454193,9.946394E-09,7.454193 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,5,3,7,5,6,8,5,7,9,11,10,12,14,13,15,13,14,16,15,14,17,19,18,20,18,19,21,20,19,22,24,23,25,23,24,26,25,24,27,29,28,30,28,29,31,28,30,32,34,33,35,37,36,38,36,37,39,36,38,40,39,38,41,43,42,44,42,43,45,42,44,46,48,47,49,51,50,52,50,51,53,52,51 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallD, Model::RootNode + C: "OO",5322904545910062688,0 + + ;Geometry::, Model::Mesh stone_smallD + C: "OO",5112740064982906606,5322904545910062688 + + ;Material::stone, Model::Mesh stone_smallD + C: "OO",3038,5322904545910062688 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallD.fbx.import new file mode 100644 index 0000000..0e5b5f7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4a16uswc8pxv" +path="res://.godot/imported/stone_smallD.fbx-c91558925865b64dd913bed543606ef9.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallD.fbx" +dest_files=["res://.godot/imported/stone_smallD.fbx-c91558925865b64dd913bed543606ef9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallE.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallE.fbx new file mode 100644 index 0000000..f0202cf --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallE.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 299 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallE.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallE.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5270759821825842013, "Model::stone_smallE", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4657586088672079721, "Geometry::", "Mesh" { + Vertices: *306 { + a: -0.2944342,1.76792,-0.5111443,-0.1849232,2.56168,-0.3214657,-0.7000306,1.76792,0.191369,-0.4810084,2.56168,0.191369,-0.2944342,1.76792,-0.5111443,0.5167584,1.76792,-0.5111443,-0.1849232,2.56168,-0.3214657,0.4292784,2.401995,-0.3596244,-0.02625154,2.56168,-0.3214657,0.55529,2.56168,0.4477864,0.4894966,1.96552,0.8466637,0.1111621,2.56168,0.7042037,0.7033327,2.56168,0.191369,0.55529,2.56168,0.4477864,0.6239967,2.56168,0.05395533,-0.02625154,2.56168,-0.3214657,0.1111621,2.56168,0.7042037,-0.1849232,2.56168,0.7042037,-0.1849232,2.56168,-0.3214657,-0.4810084,2.56168,0.191369,-0.7397611,1.4454,-1.281304,0.1315432,1.76792,-1.218602,-0.9056469,1.76792,-0.8685769,-0.7000306,1.76792,0.191369,-0.4810084,2.56168,0.191369,-0.2944342,1.76792,0.8938823,-0.1849232,2.56168,0.7042037,1.804,0,0,0.902,0,-1.56231,0.902,0,1.56231,-0.902,0,1.56231,-0.902,0,-1.56231,-1.804,0,0,0.5167584,1.76792,-0.5111443,0.9223549,1.76792,0.191369,0.4292784,2.401995,-0.3596244,0.6239967,2.56168,0.05395533,0.7033327,2.56168,0.191369,0.5167584,1.76792,0.8938823,-0.2944342,1.76792,0.8938823,0.4894966,1.96552,0.8466637,-0.1849232,2.56168,0.7042037,0.1111621,2.56168,0.7042037,0.902,0,1.56231,-0.902,0,1.56231,0.7035601,1.76792,1.218602,-0.8403682,0.5490831,1.45556,-0.3875988,1.76792,1.218602,1.261496,1.76792,-0.2522277,1.219007,1.76792,0.3258205,0.7035601,1.76792,-1.218602,0.9223549,1.76792,0.191369,0.5167584,1.76792,-0.5111443,0.1315432,1.76792,-1.218602,-0.2944342,1.76792,-0.5111443,-0.9056469,1.76792,-0.8685769,-0.7000306,1.76792,0.191369,0.7035601,1.76792,1.218602,0.5167584,1.76792,0.8938823,-0.3875988,1.76792,1.218602,-0.2944342,1.76792,0.8938823,-0.9056469,1.76792,0.8685769,-1.40712,1.76792,0,-1.804,0,0,-1.40712,1.76792,0,-0.902,0,1.56231,-0.9056469,1.76792,0.8685769,-0.8403682,0.5490831,1.45556,-0.3875988,1.76792,1.218602,-0.8403682,0.5490831,1.45556,-0.9056469,1.76792,0.8685769,1.261496,1.76792,-0.2522277,1.540032,1.175856,0,1.219007,1.76792,0.3258205,0.902,0,-1.56231,1.804,0,0,0.7035601,1.76792,-1.218602,1.261496,1.76792,-0.2522277,1.540032,1.175856,0,1.540032,1.175856,0,1.804,0,0,1.219007,1.76792,0.3258205,0.902,0,1.56231,0.7035601,1.76792,1.218602,0.4292784,2.401995,-0.3596244,0.6239967,2.56168,0.05395533,-0.02625154,2.56168,-0.3214657,0.7033327,2.56168,0.191369,0.9223549,1.76792,0.191369,0.55529,2.56168,0.4477864,0.5167584,1.76792,0.8938823,0.4894966,1.96552,0.8466637,-0.902,0,-1.56231,-0.7397611,1.4454,-1.281304,-1.804,0,0,-0.9056469,1.76792,-0.8685769,-1.40712,1.76792,0,-0.902,0,-1.56231,0.902,0,-1.56231,-0.7397611,1.4454,-1.281304,0.7035601,1.76792,-1.218602,0.1315432,1.76792,-1.218602 + } + PolygonVertexIndex: *192 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,14,-14,15,13,-15,16,13,-16,17,16,-16,18,17,-16,19,17,-19,20,22,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,28,-31,32,31,-31,33,35,-35,36,34,-36,37,34,-37,38,40,-40,41,39,-41,42,41,-41,43,45,-45,46,44,-46,47,46,-46,48,50,-50,51,49,-51,52,51,-51,53,52,-51,54,52,-54,55,54,-54,56,54,-56,49,51,-58,58,57,-52,59,57,-59,60,59,-59,56,59,-61,61,59,-57,55,61,-57,62,61,-56,63,65,-65,66,64,-66,67,66,-66,68,70,-70,71,73,-73,74,76,-76,77,75,-77,78,75,-78,79,81,-81,82,80,-82,83,82,-82,84,86,-86,87,89,-89,90,88,-90,91,90,-90,92,94,-94,95,93,-95,96,95,-95,97,99,-99,100,98,-100,101,100,-100 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *576 { + a: -0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,-0.84231,0.2324185,-0.4863081,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0,0.2324183,-0.9726159,0.4428342,0.464318,0.7670115,0.4428342,0.464318,0.7670115,0.4428342,0.464318,0.7670115,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2207371,0.723496,-0.6540862,-0.2207371,0.723496,-0.6540862,-0.2207371,0.723496,-0.6540862,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,-0.84231,0.2324185,0.4863081,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0.84231,0.2324185,-0.486308,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.2324185,0.9726159,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,0.1908407,0.981621,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.8501087,0.1908407,0.4908105,-0.5252212,0.3462338,0.7773447,-0.5252212,0.3462338,0.7773447,-0.5252212,0.3462338,0.7773447,0.8918736,0.4475086,0.06555635,0.8918736,0.4475086,0.06555635,0.8918736,0.4475086,0.06555635,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,-0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.8501087,0.1908407,0.4908105,0.261082,0.8528451,-0.4522072,0.261082,0.8528451,-0.4522072,0.261082,0.8528451,-0.4522072,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,0.84231,0.2324186,0.4863081,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,-0.8501087,0.1908407,-0.4908105,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621,0,0.1908407,-0.981621 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *204 { + a: -1.163176,6.302534,-0.732031,9.515558,2.030495,6.302534,1.599349,9.515559,1.159189,6.302,-2.034482,6.302,0.7280439,9.515024,-1.690072,8.868644,0.1033525,9.515024,1.011819,7.715842,0.00230207,5.065767,-1.007215,7.715842,-2.769026,0.7534212,-2.186181,1.762938,-2.45668,0.2124226,0.1033525,-1.265613,-0.4376462,2.772455,0.728044,2.772455,0.728044,-1.265613,1.893734,0.7534212,1.146528,-0.2034921,-2.024776,1.635869,2.28491,1.635869,-0.7255316,6.127424,-0.2943854,9.340449,2.46814,6.127425,2.036994,9.340449,7.102362,0,3.551181,-6.150826,3.551181,6.150826,-3.551181,6.150826,-3.551181,-6.150826,-7.102362,0,0.7255302,6.126355,-2.468142,6.126355,0.3811205,8.692999,-1.412304,9.339379,-2.036995,9.339379,2.034482,5.951781,-1.159189,5.951781,1.927153,6.751635,-0.7280436,9.164805,0.4376465,9.164805,3.551181,-1.173828,-3.551181,-1.173828,2.769922,5.916806,-3.308536,1.028391,-1.525979,5.916806,-4.966521,-0.9930224,-4.799242,1.282758,-2.769921,-4.797644,-3.631319,0.7534212,-2.034482,-2.012379,-0.5178865,-4.797644,1.15919,-2.012379,3.565539,-3.419594,2.756026,0.7534212,-2.769921,4.797644,-2.034482,3.519222,1.525979,4.797644,1.15919,3.519222,3.565539,3.419594,5.539843,0,-3.551181,-1.173828,-2.769922,5.916806,3.55118,-1.173828,1.178685,5.916806,3.308535,1.028391,1.421537,4.857629,0.4668076,-0.2573091,-1.039931,4.857629,1.354428,4.040463,0.444465,1.433939,-0.9274918,4.040463,3.551181,-1.173828,-3.551181,-1.173828,2.769921,5.916806,-1.623278,5.916806,-3.031559,3.542202,3.031559,3.542202,3.551181,-1.173828,1.28872,5.916806,-3.551181,-1.173828,-2.769921,5.916806,-0.7557234,3.171527,-2.233758,4.375516,0.7223126,4.375516,0.7320317,9.16427,1.163178,5.951245,-0.4336585,9.16427,-2.030494,5.951245,-1.923165,6.7511,-3.551181,-1.173828,-2.912446,4.623268,3.551181,-1.173828,-1.178686,5.916806,2.769922,5.916806,3.551181,-1.173828,-3.551181,-1.173828,2.912446,4.623269,-2.769921,5.916806,-0.5178865,5.916806 + } + UVIndex: *192 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,14,13,15,13,14,16,13,15,17,16,15,18,17,15,19,17,18,20,22,21,23,25,24,26,24,25,27,29,28,30,28,29,31,28,30,32,31,30,33,35,34,36,34,35,37,34,36,38,40,39,41,39,40,42,41,40,43,45,44,46,44,45,47,46,45,48,50,49,51,49,50,52,51,50,53,52,50,54,52,53,55,54,53,56,54,55,49,51,57,58,57,51,59,57,58,60,59,58,56,59,60,61,59,56,55,61,56,62,61,55,63,65,64,66,64,65,67,66,65,68,70,69,71,73,72,74,76,75,77,75,76,78,75,77,79,81,80,82,80,81,83,82,81,84,86,85,87,89,88,90,88,89,91,90,89,92,94,93,95,93,94,96,95,94,97,99,98,100,98,99,101,100,99 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *64 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallE, Model::RootNode + C: "OO",5270759821825842013,0 + + ;Geometry::, Model::Mesh stone_smallE + C: "OO",4657586088672079721,5270759821825842013 + + ;Material::stone, Model::Mesh stone_smallE + C: "OO",3038,5270759821825842013 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallE.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallE.fbx.import new file mode 100644 index 0000000..b0206ea --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallE.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c6swt0s1501bw" +path="res://.godot/imported/stone_smallE.fbx-d150bcb822ef797c51fd1618786fd239.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallE.fbx" +dest_files=["res://.godot/imported/stone_smallE.fbx-d150bcb822ef797c51fd1618786fd239.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallF.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallF.fbx new file mode 100644 index 0000000..6d355ca --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallF.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 381 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallF.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallF.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5410561923266455429, "Model::stone_smallF", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5130063459413102331, "Geometry::", "Mesh" { + Vertices: *288 { + a: -0.8839601,0,-1.531064,0.8839601,0,-1.531064,-0.707168,1.15456,-1.224851,0.7670954,0.763197,-1.328648,0.2620202,1.15456,-1.224851,0.2620202,1.15456,-1.224851,0.7670954,0.763197,-1.328648,0.8493578,1.15456,-0.9785708,-0.5045146,1.15456,-0.8738449,0.5045146,1.15456,-0.8738449,-0.4423155,1.580105,-0.7661129,0.3146659,2.45344,-0.5450172,0.07196062,2.45344,-0.5450172,1.414336,1.15456,0,1.76792,0,0,0.9297419,1.15456,0.8393416,0.8839601,0,1.531064,0.8493578,0.2259728,1.471131,-0.6293315,2.45344,-1.443823E-14,-0.3146659,2.45344,0.5450172,-1.009029,1.15456,0,-0.5045146,1.15456,0.8738449,0.5045146,1.15456,-0.8738449,1.009029,1.15456,0,0.3146659,2.45344,-0.5450172,0.6293315,2.45344,-1.443823E-14,0.6293315,2.45344,-1.443823E-14,1.009029,1.15456,0,0.3146659,2.45344,0.5450172,0.5045146,1.15456,0.8738449,-0.5045146,1.15456,-0.8738449,-0.4423155,1.580105,-0.7661129,-1.009029,1.15456,0,-0.4260882,2.45344,-0.352028,-0.6293315,2.45344,-1.443823E-14,1.76792,0,0,0.8839601,0,-1.531064,0.8839601,0,1.531064,-0.8839601,0,1.531064,-0.8839601,0,-1.531064,-1.76792,0,0,0.5045146,1.15456,0.8738449,-0.5045146,1.15456,0.8738449,0.3146659,2.45344,0.5450172,-0.3146659,2.45344,0.5450172,0.6293315,2.45344,-1.443823E-14,0.3146659,2.45344,0.5450172,0.3146659,2.45344,-0.5450172,0.07196062,2.45344,-0.5450172,-0.3146659,2.45344,0.5450172,-0.4260882,2.45344,-0.352028,-0.6293315,2.45344,-1.443823E-14,0.9297419,1.15456,0.8393416,0.8493578,0.2259728,1.471131,0.2620202,1.15456,1.224851,0.8839601,0,-1.531064,1.76792,0,0,0.7670954,0.763197,-1.328648,0.8493578,1.15456,-0.9785708,1.414336,1.15456,0,0.8839601,0,1.531064,-0.8839601,0,1.531064,0.8493578,0.2259728,1.471131,-0.707168,1.15456,1.224851,0.2620202,1.15456,1.224851,-0.8839601,0,-1.531064,-0.707168,1.15456,-1.224851,-1.76792,0,0,-1.244615,1.15456,-0.2939646,-1.61304,0.5057316,0,-0.4260882,2.45344,-0.352028,-0.4423155,1.580105,-0.7661129,0.07196062,2.45344,-0.5450172,-1.61304,0.5057316,0,-1.244615,1.15456,-0.2939646,-1.171438,1.15456,0.4207115,1.414336,1.15456,0,1.009029,1.15456,0,0.8493578,1.15456,-0.9785708,0.5045146,1.15456,-0.8738449,0.2620202,1.15456,-1.224851,-0.5045146,1.15456,-0.8738449,-0.707168,1.15456,-1.224851,-1.009029,1.15456,0,-1.244615,1.15456,-0.2939646,-1.171438,1.15456,0.4207115,0.9297419,1.15456,0.8393416,0.5045146,1.15456,0.8738449,0.2620202,1.15456,1.224851,-0.5045146,1.15456,0.8738449,-0.707168,1.15456,1.224851,-1.76792,0,0,-1.61304,0.5057316,0,-0.8839601,0,1.531064,-1.171438,1.15456,0.4207115,-0.707168,1.15456,1.224851 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,16,-16,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,37,-37,38,36,-38,39,36,-39,40,39,-39,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,46,-49,50,49,-49,51,49,-51,52,54,-54,55,57,-57,58,56,-58,59,56,-59,60,62,-62,63,61,-63,64,63,-63,65,67,-67,68,66,-68,69,68,-68,70,72,-72,73,75,-75,76,78,-78,79,77,-79,80,79,-79,81,79,-81,82,81,-81,83,81,-83,84,83,-83,85,83,-85,76,77,-87,87,86,-78,88,86,-88,89,88,-88,90,88,-90,83,90,-90,85,90,-84,91,93,-93,94,92,-94,95,94,-94 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: 0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0,0.2563575,-0.9665821,0.3103015,0.5967291,-0.7400186,0.3103015,0.5967291,-0.7400186,0.3103015,0.5967291,-0.7400186,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0,0.2454199,-0.9694168,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,0.8370847,0.2563572,0.483291,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,-0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,0.8395395,0.2454201,0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,-0.8395395,0.2454201,-0.4847085,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0,0.2454199,0.9694168,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4388578,0.4791813,0.7601244,0.4388578,0.4791813,0.7601244,0.4388578,0.4791813,0.7601244,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0.8370847,0.2563572,-0.483291,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,0,0.2563575,0.9665821,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.8370847,0.2563573,-0.483291,-0.3296344,0.4094728,-0.8506898,-0.3296344,0.4094728,-0.8506898,-0.3296344,0.4094728,-0.8506898,-0.8488756,0.5213974,0.0869185,-0.8488756,0.5213974,0.0869185,-0.8488756,0.5213974,0.0869185,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291,-0.8370847,0.2563573,0.483291 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: 3.480158,-1.545274,-3.480157,-1.545274,2.784126,3.157391,-3.020061,1.563321,-1.031575,3.157391,0.9134174,0.7557541,-0.7623542,-1.164382,-1.593994,0.7557541,1.986278,3.562169,-1.986278,3.562169,1.7414,5.290397,-1.238842,8.837197,-0.2833095,8.837197,2.784126,3.157393,3.480157,-1.545272,-1.031576,3.157393,-3.480158,-1.545272,-3.34393,-0.6248574,-1.238842,8.837196,1.238842,8.837196,-1.986279,3.562168,1.986278,3.562168,1.986278,3.562168,-1.986279,3.562168,1.238842,8.837196,-1.238842,8.837196,1.238842,8.837196,1.986279,3.562168,-1.238842,8.837196,-1.986278,3.562168,-1.986277,3.562168,-1.741399,5.290396,1.986279,3.562168,-0.3614998,8.837196,1.238842,8.837196,6.960315,0,3.480158,-6.02781,3.480158,6.02781,-3.480158,6.02781,-3.480158,-6.02781,-6.960315,0,1.986278,3.562169,-1.986278,3.562169,1.238842,8.837197,-1.238842,8.837197,-2.477683,-5.684342E-14,-1.238842,2.145737,-1.238842,-2.145737,-0.2833095,-2.145737,1.238842,2.145737,1.677513,-1.385937,2.477683,-5.684342E-14,1.517755,1.741361,1.145996E-06,-2.423831,-1.517751,1.741361,3.480158,-1.545273,-3.480158,-1.545273,3.020061,1.563323,1.664521,3.157392,-2.784126,3.157392,3.480158,-1.545274,-3.480157,-1.545274,3.343929,-0.6248595,-2.784126,3.157391,1.031576,3.157391,-3.480158,-1.545273,-2.784125,3.157392,3.480157,-1.545273,1.447743,3.157392,3.175275,0.5146338,1.063429,8.034966,0.533967,4.266201,-1.039454,8.034966,-0.6468666,-1.594931,-1.650441,1.398625,1.177956,1.398625,-5.568252,0,-3.972557,0,-3.343928,-3.852641,-1.986278,-3.440334,-1.031576,-4.822247,1.986278,-3.440334,2.784126,-4.822247,3.972557,0,4.90006,-1.157341,4.61196,1.656345,-3.660401,3.304495,-1.986278,3.440334,-1.031576,4.822247,1.986278,3.440334,2.784126,4.822247,-3.480157,-1.545273,-3.175275,0.5146335,3.480158,-1.545273,-0.8715432,3.157392,2.784126,3.157392 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,16,15,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,37,36,38,36,37,39,36,38,40,39,38,41,43,42,44,42,43,45,47,46,48,46,47,49,46,48,50,49,48,51,49,50,52,54,53,55,57,56,58,56,57,59,56,58,60,62,61,63,61,62,64,63,62,65,67,66,68,66,67,69,68,67,70,72,71,73,75,74,76,78,77,79,77,78,80,79,78,81,79,80,82,81,80,83,81,82,84,83,82,85,83,84,76,77,86,87,86,77,88,86,87,89,88,87,90,88,89,83,90,89,85,90,83,91,93,92,94,92,93,95,94,93 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallF, Model::RootNode + C: "OO",5410561923266455429,0 + + ;Geometry::, Model::Mesh stone_smallF + C: "OO",5130063459413102331,5410561923266455429 + + ;Material::stone, Model::Mesh stone_smallF + C: "OO",3038,5410561923266455429 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallF.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallF.fbx.import new file mode 100644 index 0000000..c52c049 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallF.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cpja6jv833dhq" +path="res://.godot/imported/stone_smallF.fbx-e08759529710637ee7c1a862a6ec9ceb.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallF.fbx" +dest_files=["res://.godot/imported/stone_smallF.fbx-e08759529710637ee7c1a862a6ec9ceb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatA.fbx new file mode 100644 index 0000000..9402539 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatA.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 468 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallFlatA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallFlatA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5534964046143429065, "Model::stone_smallFlatA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5198950396546596420, "Geometry::", "Mesh" { + Vertices: *108 { + a: -2.478949,0,-0.4747403,-2.181475,0.6494399,-0.4177714,-1.362638,0,2.147887,-1.199121,0.6494399,1.89014,2.181475,0.6494399,0.1760802,1.150408,0.6494399,1.89014,0.7594314,0.6494399,-1.89014,-1.199121,0.6494399,1.89014,-0.9730563,0.6494399,-1.293323,-2.181475,0.6494399,-0.4177714,2.181475,0.6494399,0.1760802,2.478949,0,0.2000912,1.150408,0.6494399,1.89014,1.307282,0,2.147887,-1.105746,0,-1.469684,0.86299,0,-2.147887,-0.9730563,0.6494399,-1.293323,0.7594314,0.6494399,-1.89014,1.307282,0,2.147887,-1.362638,0,2.147887,1.150408,0.6494399,1.89014,-1.199121,0.6494399,1.89014,2.478949,0,0.2000912,0.86299,0,-2.147887,1.307282,0,2.147887,-1.362638,0,2.147887,-1.105746,0,-1.469684,-2.478949,0,-0.4747403,0.86299,0,-2.147887,2.478949,0,0.2000912,0.7594314,0.6494399,-1.89014,2.181475,0.6494399,0.1760802,-2.478949,0,-0.4747403,-1.105746,0,-1.469684,-2.181475,0.6494399,-0.4177714,-0.9730563,0.6494399,-1.293323 + } + PolygonVertexIndex: *60 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,23,-26,27,26,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *180 { + a: -0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,-0.8580703,0.3609978,0.3652343,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,0.792424,0.3805906,0.4766706,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,-0.3099085,0.307621,-0.8996255,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,0.3688854,0.9294748,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,0.7759612,0.3356818,-0.5340431,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348,-0.5555321,0.3217173,-0.7667348 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *72 { + a: -5.542057,-2.977511,-4.877009,-0.2357765,5.679676,-2.977511,4.998114,-0.2357765,-8.588485,0.6932293,-4.529166,7.441497,-2.989887,-7.441497,4.72095,7.441497,3.83093,-5.091821,8.588485,-1.644769,3.833004,-0.5725533,4.355687,-3.337482,-4.042094,-0.5725531,-4.593289,-3.337482,2.231388,-2.11906,-5.966553,-2.119061,1.963622,0.5680925,-5.250567,0.5680929,5.14678,-3.119386,-5.364715,-3.119386,4.529166,-0.3685313,-4.72095,-0.3685313,9.759641,0.7877607,3.397598,-8.456247,5.14678,8.456247,-5.364715,8.456247,-4.353329,-5.786159,-9.759641,-1.869056,5.039681,-2.548827,-6.182051,-2.548827,4.434918,0.1655225,-5.440205,0.1655225,6.806603,-2.329156,0.1303834,-2.329155,5.989811,0.3712604,0.1147373,0.3712601 + } + UVIndex: *60 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,23,25,27,26,25,28,30,29,31,29,30,32,34,33,35,33,34 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *20 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallFlatA, Model::RootNode + C: "OO",5534964046143429065,0 + + ;Geometry::, Model::Mesh stone_smallFlatA + C: "OO",5198950396546596420,5534964046143429065 + + ;Material::stone, Model::Mesh stone_smallFlatA + C: "OO",3038,5534964046143429065 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatA.fbx.import new file mode 100644 index 0000000..3f314ad --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dowpr2hhkq621" +path="res://.godot/imported/stone_smallFlatA.fbx-352b54a05ad80841ce4f0918b8d83b4e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatA.fbx" +dest_files=["res://.godot/imported/stone_smallFlatA.fbx-352b54a05ad80841ce4f0918b8d83b4e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatB.fbx new file mode 100644 index 0000000..569d3e8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatB.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 546 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallFlatB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallFlatB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4664248157685542360, "Model::stone_smallFlatB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5136914843385115228, "Geometry::", "Mesh" { + Vertices: *90 { + a: 1.782458,0.6494399,0.5119088,2.14754,0,0.6167576,1.153533,0.6494399,1.669766,1.389799,0,2.011766,1.782458,0.6494399,0.5119088,1.153533,0.6494399,1.669766,-0.3120166,0.6494399,-1.669766,-0.9962643,0.6494399,0.9226305,-1.782458,0.6494399,-1.498358,-2.14754,0,-1.80525,-1.782458,0.6494399,-1.498358,-1.200318,0,1.111603,-0.9962643,0.6494399,0.9226305,1.389799,0,2.011766,-1.200318,0,1.111603,1.153533,0.6494399,1.669766,-0.9962643,0.6494399,0.9226305,-2.14754,0,-1.80525,-0.3759236,0,-2.011766,-1.782458,0.6494399,-1.498358,-0.3120166,0.6494399,-1.669766,-0.3759236,0,-2.011766,2.14754,0,0.6167576,-0.3120166,0.6494399,-1.669766,1.782458,0.6494399,0.5119088,2.14754,0,0.6167576,-0.3759236,0,-2.011766,1.389799,0,2.011766,-1.200318,0,1.111603,-2.14754,0,-1.80525 + } + PolygonVertexIndex: *48 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,26,-29 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *144 { + a: 0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,0.7630832,0.4958839,0.4144915,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,-0.8864892,0.3623015,0.2878792,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.3070722,0.3535801,0.8835654,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,-0.1021156,0.4713617,-0.8760083,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,0.6921392,0.2818092,-0.6644749,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *60 { + a: 1.578563,-1.314584,1.901883,-4.258945,-3.609002,-1.314584,-4.348197,-4.258945,-7.017551,2.015389,-4.541469,6.573881,1.228412,-6.573881,3.922301,3.632404,7.017551,-5.899046,-9.371185,-2.118129,-7.778083,0.6250936,2.70283,-2.118129,2.243349,0.6250934,7.768487,-2.010169,-3.027103,-2.010169,6.447844,0.723249,-2.512496,0.7232488,7.575098,-3.78901,0.5530016,-3.78901,6.287331,-0.8898893,0.4589913,-0.8898891,6.738519,-1.244901,-7.607003,-1.244901,5.59297,1.419955,-6.313812,1.419955,8.454882,2.42818,-1.480014,-7.92034,5.47165,7.92034,-4.725663,4.37639,-8.454882,-7.107285 + } + UVIndex: *48 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,26,28 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *16 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallFlatB, Model::RootNode + C: "OO",4664248157685542360,0 + + ;Geometry::, Model::Mesh stone_smallFlatB + C: "OO",5136914843385115228,4664248157685542360 + + ;Material::stone, Model::Mesh stone_smallFlatB + C: "OO",3038,4664248157685542360 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatB.fbx.import new file mode 100644 index 0000000..078bcfc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://wnefov25rp7o" +path="res://.godot/imported/stone_smallFlatB.fbx-89e93cb3b404ef6e32e49236d2f8b91d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatB.fbx" +dest_files=["res://.godot/imported/stone_smallFlatB.fbx-89e93cb3b404ef6e32e49236d2f8b91d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatC.fbx new file mode 100644 index 0000000..ec7d6be --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatC.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 625 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallFlatC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallFlatC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5719001408561247699, "Model::stone_smallFlatC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5364278378392553485, "Geometry::", "Mesh" { + Vertices: *198 { + a: -2.351893,2.634403E-15,-0.0071074,-2.069666,0.64944,-0.006254511,-1.906065,3.559908E-16,1.328358,-1.677337,0.64944,1.168955,-0.7215898,-2.594369E-15,-1.801733,1.65893,-2.589836E-15,-1.209487,-0.6782944,0.32472,-1.693629,1.459858,0.64944,-1.064348,-0.02409454,0.64944,-1.433539,-0.9665698,0.64944,1.217246,-1.164722,0.4194857,1.373078,-1.483233,0.64944,1.217246,2.351893,3.561777E-18,0.3461252,1.65893,-2.589836E-15,-1.209487,0.9925765,1.484383E-17,1.801733,-0.7215898,-2.594369E-15,-1.801733,-0.7765197,1.48199E-17,1.177013,-2.351893,2.634403E-15,-0.0071074,-1.262586,1.48199E-17,1.488448,-1.906065,3.559908E-16,1.328358,-0.7765197,1.48199E-17,1.177013,-1.262586,1.48199E-17,1.488448,-0.6833374,0.64944,1.035771,-1.164722,0.4194857,1.373078,-0.9665698,0.64944,1.217246,2.169597,0.4194857,0.319297,2.351893,3.561777E-18,0.3461252,1.471567,0.64944,0.9450573,0.9925765,1.484383E-17,1.801733,0.8734674,0.64944,1.585525,1.983595,0.64944,0.1113726,2.169597,0.4194857,0.319297,1.471567,0.64944,0.9450573,-0.6782944,0.32472,-1.693629,-0.02409454,0.64944,-1.433539,-1.058298,0.64944,-1.119561,-0.7215898,-2.594369E-15,-1.801733,-0.6782944,0.32472,-1.693629,-2.351893,2.634403E-15,-0.0071074,-1.058298,0.64944,-1.119561,-2.069666,0.64944,-0.006254511,-0.7765197,1.48199E-17,1.177013,-0.6833374,0.64944,1.035771,0.9925765,1.484383E-17,1.801733,0.8734674,0.64944,1.585525,1.983595,0.64944,0.1113726,1.471567,0.64944,0.9450573,1.459858,0.64944,-1.064348,0.8734674,0.64944,1.585525,-0.02409454,0.64944,-1.433539,-0.6833374,0.64944,1.035771,-1.058298,0.64944,-1.119561,-0.9665698,0.64944,1.217246,-1.483233,0.64944,1.217246,-2.069666,0.64944,-0.006254511,-1.677337,0.64944,1.168955,1.65893,-2.589836E-15,-1.209487,2.351893,3.561777E-18,0.3461252,1.459858,0.64944,-1.064348,1.983595,0.64944,0.1113726,2.169597,0.4194857,0.319297,-1.262586,1.48199E-17,1.488448,-1.906065,3.559908E-16,1.328358,-1.164722,0.4194857,1.373078,-1.677337,0.64944,1.168955,-1.483233,0.64944,1.217246 + } + PolygonVertexIndex: *120 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,17,-17,19,17,-19,20,22,-22,23,21,-23,24,23,-23,25,27,-27,28,26,-28,29,28,-28,30,32,-32,33,35,-35,36,38,-38,39,37,-39,40,39,-39,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,48,-48,50,48,-50,51,50,-50,52,50,-52,53,52,-52,54,53,-52,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,63,-63,64,62,-64,65,64,-64 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *360 { + a: -0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,-0.8770858,0.3807708,0.2928039,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0.2318211,0.2793008,-0.9317993,0,0.5609874,0.8278244,0,0.5609874,0.8278244,0,0.5609874,0.8278244,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.5364981,0.1051264,0.837328,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.6873869,0.3397715,0.6419148,0.5557054,0.7580935,0.3413001,0.5557054,0.7580935,0.3413001,0.5557054,0.7580935,0.3413001,-0.1727751,0.8039124,-0.5690991,-0.1727751,0.8039124,-0.5690991,-0.1727751,0.8039124,-0.5690991,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.7044445,0.3069707,-0.6399429,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,-0.3228187,0.2451332,0.9141651,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,0.856443,0.3477854,-0.3815112,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844,-0.229727,0.3075499,0.9233844 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *132 { + a: -2.958611,-3.340909,-2.603578,-0.5757582,2.58437,-3.340909,2.274245,-0.575758,4.469429,-1.73103,-5.188389,-1.73103,4.201263,-0.3996195,-4.565782,0.9317912,1.454645,0.9317906,-3.805393,-0.5718011,-4.585519,-1.665429,-5.8395,-0.5718011,9.259421,1.362698,6.53122,-4.76176,3.907782,7.093437,-2.840905,-7.093437,-3.057164,4.63391,-9.259421,-0.02798189,-4.970811,5.860032,-7.504193,5.229756,-5.074049,-0.2367889,-7.346805,-0.2367887,-4.465162,2.334308,-6.77735,1.423932,-5.789506,2.334308,4.911133,-0.8593979,5.323781,-2.615383,1.234886,0.1032007,-2.517227,-2.615383,-2.21516,0.1032009,3.713428,-3.551301,3.399128,-4.939536,-0.1384126,-3.551301,0.6182714,-4.992494,-1.548779,-2.842969,2.706395,-2.842969,-3.340183,-2.109645,-3.139772,-0.7663648,6.205392,-2.109645,-0.4609073,0.5769151,5.460746,0.5769153,-1.339716,-1.320641,-1.17895,1.316676,6.046741,-1.320641,5.321133,1.316675,-7.809429,0.4384748,-5.793571,3.720698,-5.747472,-4.190346,-3.438848,6.242225,0.0948604,-5.643855,2.690305,4.077838,4.166528,-4.40772,3.805393,4.792307,5.8395,4.792307,8.148291,-0.02462406,6.603689,4.602185,1.692071,-2.748782,-5.012559,-2.748782,1.489021,-0.02169085,-3.578291,-0.02169133,-4.624034,-0.9873019,-3.408988,-2.118028,-6.019595,-2.118028,-3.144754,-0.3823865,-5.297244,0.5690602,-4.509759,0.5690598 + } + UVIndex: *120 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,14,13,15,13,14,16,15,14,17,15,16,18,17,16,19,17,18,20,22,21,23,21,22,24,23,22,25,27,26,28,26,27,29,28,27,30,32,31,33,35,34,36,38,37,39,37,38,40,39,38,41,43,42,44,42,43,45,47,46,48,46,47,49,48,47,50,48,49,51,50,49,52,50,51,53,52,51,54,53,51,55,53,54,56,58,57,59,57,58,60,57,59,61,63,62,64,62,63,65,64,63 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *40 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallFlatC, Model::RootNode + C: "OO",5719001408561247699,0 + + ;Geometry::, Model::Mesh stone_smallFlatC + C: "OO",5364278378392553485,5719001408561247699 + + ;Material::stone, Model::Mesh stone_smallFlatC + C: "OO",3038,5719001408561247699 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatC.fbx.import new file mode 100644 index 0000000..90dd723 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dgj2mxwjsslao" +path="res://.godot/imported/stone_smallFlatC.fbx-0f7f049835e7805a20cfcb039a8d706b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallFlatC.fbx" +dest_files=["res://.godot/imported/stone_smallFlatC.fbx-0f7f049835e7805a20cfcb039a8d706b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallG.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallG.fbx new file mode 100644 index 0000000..a6b02b7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallG.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 703 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallG.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallG.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5525158466861113224, "Model::stone_smallG", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4935343048588078759, "Geometry::", "Mesh" { + Vertices: *180 { + a: 0,0,3.08484,-2.67155,0,1.54242,0,0.902,3.4276,-2.968389,0.902,1.7138,0,0,-3.08484,2.67155,0,-1.54242,0,0.902,-3.4276,2.968389,0.902,-1.7138,2.166924,2.45344,-1.251074,2.166924,2.45344,1.251074,0,2.45344,-2.502148,0,2.45344,2.502148,-2.166924,2.45344,-1.251074,-2.166924,2.45344,1.251074,0,0.902,-3.4276,2.968389,0.902,-1.7138,0,2.45344,-2.502148,2.166924,2.45344,-1.251074,2.67155,0,1.54242,0,0,3.08484,2.968389,0.902,1.7138,0,0.902,3.4276,2.968389,0.902,-1.7138,2.67155,0,-1.54242,2.968389,0.902,1.7138,2.67155,0,1.54242,-2.968389,0.902,-1.7138,-2.968389,0.902,1.7138,-2.67155,0,-1.54242,-2.67155,0,1.54242,-2.968389,0.902,-1.7138,-2.166924,2.45344,-1.251074,-2.968389,0.902,1.7138,-2.166924,2.45344,1.251074,2.968389,0.902,1.7138,0,0.902,3.4276,2.166924,2.45344,1.251074,0,2.45344,2.502148,2.67155,0,1.54242,2.67155,0,-1.54242,0,0,3.08484,0,0,-3.08484,-2.67155,0,1.54242,-2.67155,0,-1.54242,-2.67155,0,-1.54242,0,0,-3.08484,-2.968389,0.902,-1.7138,0,0.902,-3.4276,2.968389,0.902,-1.7138,2.968389,0.902,1.7138,2.166924,2.45344,-1.251074,2.166924,2.45344,1.251074,-2.968389,0.902,-1.7138,0,0.902,-3.4276,-2.166924,2.45344,-1.251074,0,2.45344,-2.502148,0,0.902,3.4276,-2.968389,0.902,1.7138,0,2.45344,2.502148,-2.166924,2.45344,1.251074 + } + PolygonVertexIndex: *96 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,41,-41,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *288 { + a: -0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,-0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0.4749427,-0.3125974,-0.8226252,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.444226,0.4589692,-0.7694222,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.4749427,-0.3125974,0.8226252,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.9498855,-0.3125979,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,-0.8884521,0.4589695,0,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0.444226,0.4589692,0.7694222,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,-0.4749427,-0.3125974,-0.8226252,0.8884521,0.4589695,0,0.8884521,0.4589695,0,0.8884521,0.4589695,0,0.8884521,0.4589695,0,0.8884521,0.4589695,0,0.8884521,0.4589695,0,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,-0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222,-0.444226,0.4589692,0.7694222 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *120 { + a: 6.072519,3.287873,-6.07252,3.287873,6.747242,7.026408,-6.747246,7.026408,6.072519,3.287873,-6.07252,3.287873,6.747242,7.026408,-6.747246,7.026408,-8.531196,-4.925488,-8.531196,4.925488,0,-9.850976,0,9.850976,8.531196,-4.925488,8.531196,4.925488,6.747242,-2.208721,-6.747247,-2.208721,4.925488,4.666192,-4.925489,4.666193,6.07252,3.287873,-6.072519,3.287873,6.747246,7.026408,-6.747242,7.026408,6.747244,7.026413,6.07252,3.287878,-6.747244,7.026413,-6.07252,3.287878,-6.747244,7.026413,6.747244,7.026413,-6.07252,3.287878,6.07252,3.287878,-6.747244,-2.208725,-4.925488,4.66619,6.747244,-2.208725,4.925488,4.66619,6.747247,-2.208721,-6.747242,-2.208721,4.925489,4.666193,-4.925488,4.666192,10.51791,6.07252,10.51791,-6.07252,0,12.14504,0,-12.14504,-10.51791,6.07252,-10.51791,-6.07252,6.07252,3.287873,-6.072519,3.287873,6.747246,7.026408,-6.747242,7.026408,6.747244,-2.208725,-6.747244,-2.208725,4.925488,4.66619,-4.925488,4.66619,6.747247,-2.208721,-6.747242,-2.208721,4.925489,4.666193,-4.925488,4.666192,6.747242,-2.208721,-6.747247,-2.208721,4.925488,4.666192,-4.925489,4.666193 + } + UVIndex: *96 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,41,40,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *32 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallG, Model::RootNode + C: "OO",5525158466861113224,0 + + ;Geometry::, Model::Mesh stone_smallG + C: "OO",4935343048588078759,5525158466861113224 + + ;Material::stone, Model::Mesh stone_smallG + C: "OO",3038,5525158466861113224 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallG.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallG.fbx.import new file mode 100644 index 0000000..8ed1008 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallG.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dbyac70t5kp5d" +path="res://.godot/imported/stone_smallG.fbx-fd8e10dfb51a43b7e8d0992d2c5d9554.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallG.fbx" +dest_files=["res://.godot/imported/stone_smallG.fbx-fd8e10dfb51a43b7e8d0992d2c5d9554.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallH.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallH.fbx new file mode 100644 index 0000000..99745df --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallH.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 790 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallH.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallH.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4670678890796310512, "Model::stone_smallH", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5411887358070259802, "Geometry::", "Mesh" { + Vertices: *336 { + a: 0,2.73896,2.30912,-1.632795,2.73896,1.632795,0,4.073919,1.408563,-0.9960046,4.073919,0.9960046,1.632795,1.29888,-1.632795,1.077644,0,-1.077644,2.30912,1.29888,0,1.524019,0,0,-1.632795,1.29888,-1.632795,-2.30912,1.29888,0,-1.077644,0,-1.077644,-1.524019,0,0,2.30912,2.73896,0,2.30912,1.29888,0,1.632795,2.73896,1.632795,1.632795,1.29888,1.632795,-1.632795,1.29888,-1.632795,0,1.29888,-2.30912,-1.632795,2.73896,-1.632795,0,2.73896,-2.30912,0,2.73896,-2.30912,1.632795,2.73896,-1.632795,0,4.073919,-1.408563,0.9960046,4.073919,-0.9960046,1.524019,0,0,1.077644,0,-1.077644,1.077644,0,1.077644,0,0,1.524019,0,0,-1.524019,-1.077644,0,1.077644,-1.077644,0,-1.077644,-1.524019,0,0,1.632795,1.29888,1.632795,0,1.29888,2.30912,1.632795,2.73896,1.632795,0,2.73896,2.30912,-1.408563,4.073919,-1.443823E-14,-0.9960046,4.073919,0.9960046,-2.30912,2.73896,0,-1.632795,2.73896,1.632795,0,0,1.524019,-1.077644,0,1.077644,0,1.29888,2.30912,-1.632795,1.29888,1.632795,1.077644,0,1.077644,0,0,1.524019,1.632795,1.29888,1.632795,0,1.29888,2.30912,-1.632795,1.29888,-1.632795,-1.632795,2.73896,-1.632795,-2.30912,1.29888,0,-2.30912,2.73896,0,-1.524019,0,0,-2.30912,1.29888,0,-1.077644,0,1.077644,-1.632795,1.29888,1.632795,1.632795,2.73896,1.632795,0,2.73896,2.30912,0.9960046,4.073919,0.9960046,0,4.073919,1.408563,2.30912,1.29888,0,1.524019,0,0,1.632795,1.29888,1.632795,1.077644,0,1.077644,0,1.29888,2.30912,-1.632795,1.29888,1.632795,0,2.73896,2.30912,-1.632795,2.73896,1.632795,0,0,-1.524019,1.077644,0,-1.077644,0,1.29888,-2.30912,1.632795,1.29888,-1.632795,-2.30912,1.29888,0,-2.30912,2.73896,0,-1.632795,1.29888,1.632795,-1.632795,2.73896,1.632795,1.408563,4.073919,-1.443823E-14,2.30912,2.73896,0,0.9960046,4.073919,0.9960046,1.632795,2.73896,1.632795,0,1.29888,-2.30912,1.632795,1.29888,-1.632795,0,2.73896,-2.30912,1.632795,2.73896,-1.632795,-1.632795,2.73896,-1.632795,-0.9960046,4.073919,-0.9960046,-2.30912,2.73896,0,-1.408563,4.073919,-1.443823E-14,1.632795,2.73896,-1.632795,1.632795,1.29888,-1.632795,2.30912,2.73896,0,2.30912,1.29888,0,1.408563,4.073919,-1.443823E-14,0.9960046,4.073919,0.9960046,0.9960046,4.073919,-0.9960046,0,4.073919,-1.408563,0,4.073919,1.408563,-0.9960046,4.073919,-0.9960046,-0.9960046,4.073919,0.9960046,-1.408563,4.073919,-1.443823E-14,1.632795,2.73896,-1.632795,2.30912,2.73896,0,0.9960046,4.073919,-0.9960046,1.408563,4.073919,-1.443823E-14,-1.077644,0,-1.077644,0,0,-1.524019,-1.632795,1.29888,-1.632795,0,1.29888,-2.30912,-1.632795,2.73896,-1.632795,0,2.73896,-2.30912,-0.9960046,4.073919,-0.9960046,0,4.073919,-1.408563 + } + PolygonVertexIndex: *180 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,25,-28,29,28,-28,30,28,-30,31,30,-30,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,96,-96,98,96,-98,99,98,-98,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *540 { + a: -0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,-0.3247708,0.5289272,0.7840663,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,-0.8066284,-0.4875621,-0.3341163,0.9238796,0,0.3826832,0.9238796,0,0.3826832,0.9238796,0,0.3826832,0.9238796,0,0.3826832,0.9238796,0,0.3826832,0.9238796,0,0.3826832,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,-0.3826832,0,-0.9238796,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0.3247708,0.5289272,-0.7840663,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3826832,0,0.9238796,0.3826832,0,0.9238796,0.3826832,0,0.9238796,0.3826832,0,0.9238796,0.3826832,0,0.9238796,0.3826832,0,0.9238796,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.7840663,0.5289272,0.3247708,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,-0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,0.3341163,-0.4875622,0.8066284,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.9238796,0,-0.3826832,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,-0.8066284,-0.4875621,0.3341163,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.3247708,0.5289272,0.7840663,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,0.8066284,-0.4875621,0.3341163,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,-0.3826832,0,0.9238796,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,0.3341163,-0.4875622,-0.8066284,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,-0.9238796,0,0.3826832,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.7840663,0.5289272,0.3247708,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,0.3826832,0,-0.9238796,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,-0.7840663,0.5289272,-0.3247708,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0.9238796,0,-0.3826832,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,0.7840663,0.5289272,-0.3247708,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3341163,-0.4875622,-0.8066284,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663,-0.3247708,0.5289272,-0.7840663 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *224 { + a: 3.478983,4.708973,-3.478986,4.708973,2.12218,10.90191,-2.122181,10.90191,3.478986,8.559752,2.29613,2.702726,-3.478983,8.559752,-2.296129,2.702726,-3.478986,8.559752,3.478983,8.559752,-2.29613,2.702726,2.296129,2.702726,3.478983,10.78331,3.478983,5.1137,-3.478986,10.78331,-3.478986,5.1137,3.478986,5.1137,-3.478983,5.1137,3.478986,10.78331,-3.478983,10.78331,3.478983,4.708973,-3.478986,4.708973,2.12218,10.90191,-2.122181,10.90191,6.000075,0,4.242694,-4.242694,4.242694,4.242694,0,6.000075,0,-6.000075,-4.242694,4.242694,-4.242694,-4.242694,-6.000075,0,3.478986,5.1137,-3.478983,5.1137,3.478986,10.78331,-3.478983,10.78331,-2.12218,10.90191,2.122181,10.90191,-3.478983,4.708973,3.478986,4.708973,2.296129,2.702726,-2.29613,2.702726,3.478983,8.559752,-3.478986,8.559752,2.29613,2.702726,-2.296129,2.702726,3.478986,8.559752,-3.478983,8.559752,-3.478986,5.1137,-3.478986,10.78331,3.478983,5.1137,3.478983,10.78331,-2.296129,2.702726,-3.478983,8.559752,2.29613,2.702726,3.478986,8.559752,3.478986,4.708973,-3.478983,4.708973,2.122181,10.90191,-2.12218,10.90191,3.478983,8.559752,2.296129,2.702726,-3.478986,8.559752,-2.29613,2.702726,3.478983,5.1137,-3.478986,5.1137,3.478983,10.78331,-3.478986,10.78331,2.296129,2.702726,-2.29613,2.702726,3.478983,8.559752,-3.478986,8.559752,-3.478983,5.1137,-3.478983,10.78331,3.478986,5.1137,3.478986,10.78331,2.12218,10.90191,3.478983,4.708973,-2.122181,10.90191,-3.478986,4.708973,3.478983,5.1137,-3.478986,5.1137,3.478983,10.78331,-3.478986,10.78331,-3.478986,4.708973,-2.122181,10.90191,3.478983,4.708973,2.12218,10.90191,3.478986,10.78331,3.478986,5.1137,-3.478983,10.78331,-3.478983,5.1137,-5.545525,-5.684342E-14,-3.921278,3.921278,-3.921278,-3.921278,0,-5.545525,0,5.545525,3.921278,-3.921278,3.921278,3.921278,5.545525,-5.684342E-14,3.478986,4.708973,-3.478983,4.708973,2.122181,10.90191,-2.12218,10.90191,2.29613,2.702726,-2.296129,2.702726,3.478986,8.559752,-3.478983,8.559752,3.478986,4.708973,-3.478983,4.708973,2.122181,10.90191,-2.12218,10.90191 + } + UVIndex: *180 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,25,27,29,28,27,30,28,29,31,30,29,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,96,95,98,96,97,99,98,97,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *60 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallH, Model::RootNode + C: "OO",4670678890796310512,0 + + ;Geometry::, Model::Mesh stone_smallH + C: "OO",5411887358070259802,4670678890796310512 + + ;Material::stone, Model::Mesh stone_smallH + C: "OO",3038,4670678890796310512 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallH.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallH.fbx.import new file mode 100644 index 0000000..9ebeb4b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallH.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cbjxeipktpypc" +path="res://.godot/imported/stone_smallH.fbx-d5bf9f1bcace0c32942425391bb6359f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallH.fbx" +dest_files=["res://.godot/imported/stone_smallH.fbx-d5bf9f1bcace0c32942425391bb6359f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallI.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallI.fbx new file mode 100644 index 0000000..65baed7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallI.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 872 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallI.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallI.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5337398901924016492, "Model::stone_smallI", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4990188436145400805, "Geometry::", "Mesh" { + Vertices: *252 { + a: 0.923463,2.77816,-0.5331617,0.923463,2.77816,0.5331617,2.165734E-14,2.77816,-1.066323,2.165734E-14,2.77816,1.066323,-0.923463,2.77816,-0.5331617,-0.923463,2.77816,0.5331617,0,0,1.69576,-1.468571,0,0.8478799,0,0.6494399,2.068827,-1.791657,0.6494399,1.034414,-1.791657,0.6494399,-1.034414,0,0.6494399,-2.068827,-1.565192,2.05656,-0.9036636,-7.219114E-15,2.05656,-1.807327,0,0,-1.69576,1.468571,0,-0.8478799,0,0.6494399,-2.068827,1.791657,0.6494399,-1.034414,2.165734E-14,2.77816,-1.066323,-0.923463,2.77816,-0.5331617,-7.219114E-15,2.05656,-1.807327,-1.565192,2.05656,-0.9036636,1.791657,0.6494399,-1.034414,1.468571,0,-0.8478799,1.791657,0.6494399,1.034414,1.468571,0,0.8478799,1.565192,2.05656,0.9036636,-7.219114E-15,2.05656,1.807327,0.923463,2.77816,0.5331617,2.165734E-14,2.77816,1.066323,0,0.6494399,-2.068827,1.791657,0.6494399,-1.034414,-7.219114E-15,2.05656,-1.807327,1.565192,2.05656,-0.9036636,1.468571,0,0.8478799,1.468571,0,-0.8478799,0,0,1.69576,0,0,-1.69576,-1.468571,0,0.8478799,-1.468571,0,-0.8478799,1.791657,0.6494399,-1.034414,1.791657,0.6494399,1.034414,1.565192,2.05656,-0.9036636,1.565192,2.05656,0.9036636,-1.468571,0,-0.8478799,0,0,-1.69576,-1.791657,0.6494399,-1.034414,0,0.6494399,-2.068827,2.165734E-14,2.77816,1.066323,-7.219114E-15,2.05656,1.807327,-0.923463,2.77816,0.5331617,-1.565192,2.05656,0.9036636,1.468571,0,0.8478799,0,0,1.69576,1.791657,0.6494399,1.034414,0,0.6494399,2.068827,-1.791657,0.6494399,-1.034414,-1.791657,0.6494399,1.034414,-1.468571,0,-0.8478799,-1.468571,0,0.8478799,1.565192,2.05656,-0.9036636,0.923463,2.77816,-0.5331617,-7.219114E-15,2.05656,-1.807327,2.165734E-14,2.77816,-1.066323,1.791657,0.6494399,1.034414,0,0.6494399,2.068827,1.565192,2.05656,0.9036636,-7.219114E-15,2.05656,1.807327,1.565192,2.05656,-0.9036636,1.565192,2.05656,0.9036636,0.923463,2.77816,-0.5331617,0.923463,2.77816,0.5331617,-1.565192,2.05656,-0.9036636,-0.923463,2.77816,-0.5331617,-1.565192,2.05656,0.9036636,-0.923463,2.77816,0.5331617,0,0.6494399,2.068827,-1.791657,0.6494399,1.034414,-7.219114E-15,2.05656,1.807327,-1.565192,2.05656,0.9036636,-1.791657,0.6494399,-1.034414,-1.565192,2.05656,-0.9036636,-1.791657,0.6494399,1.034414,-1.565192,2.05656,0.9036636 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,37,-37,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4476633,-0.4454103,0.7753755,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,-0.4936475,0.1588978,-0.8550225,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,0.4476633,-0.4454103,-0.7753755,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,-0.3736259,0.6645409,-0.6471392,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.8953267,-0.44541,0,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.3736259,0.6645409,0.6471392,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0.4936475,0.1588978,-0.8550225,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,0.9872951,0.1588976,0,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.4476633,-0.4454103,-0.7753755,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,-0.3736259,0.6645409,0.6471392,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,0.4476633,-0.4454103,0.7753755,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,-0.8953267,-0.44541,0,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.3736259,0.6645409,-0.6471392,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.4936475,0.1588978,0.8550225,0.7472517,0.6645409,0,0.7472517,0.6645409,0,0.7472517,0.6645409,0,0.7472517,0.6645409,0,0.7472517,0.6645409,0,0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.7472517,0.6645409,0,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.4936475,0.1588978,0.8550225,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0,-0.9872951,0.1588976,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: -3.635681,-2.099062,-3.635681,2.099062,-8.526513E-14,-4.198123,-8.526513E-14,4.198123,3.635681,-2.099062,3.635681,2.099062,3.33811,2.575262,-3.33811,2.575263,4.072495,5.431036,-4.072493,5.431036,4.072493,1.403538,-4.072495,1.403538,3.557731,7.014669,-3.557731,7.014669,3.33811,2.575262,-3.33811,2.575263,4.072495,5.431036,-4.072493,5.431036,-2.099061,5.757111,2.099061,5.757111,-3.55773,1.955254,3.557732,1.955254,4.072495,5.431034,3.33811,2.575261,-4.072495,5.431034,-3.33811,2.575261,3.557732,1.955254,-3.55773,1.955254,2.099061,5.757111,-2.099061,5.757111,4.072495,1.403538,-4.072493,1.403538,3.557731,7.014669,-3.557731,7.014669,5.781776,3.33811,5.781776,-3.33811,0,6.67622,0,-6.67622,-5.781776,3.33811,-5.781776,-3.33811,4.072495,1.403539,-4.072495,1.403539,3.557731,7.014671,-3.557731,7.014671,3.33811,2.575263,-3.33811,2.575262,4.072493,5.431036,-4.072495,5.431036,2.099061,5.757111,3.55773,1.955254,-2.099061,5.757111,-3.557732,1.955254,3.33811,2.575263,-3.33811,2.575262,4.072493,5.431036,-4.072495,5.431036,-4.072495,5.431034,4.072495,5.431034,-3.33811,2.575261,3.33811,2.575261,-3.557732,1.955254,-2.099061,5.757111,3.55773,1.955254,2.099061,5.757111,4.072493,1.403538,-4.072495,1.403538,3.557731,7.014669,-3.557731,7.014669,3.557731,1.955253,-3.557731,1.955253,2.099062,5.75711,-2.099062,5.75711,-3.557731,1.955253,-2.099062,5.75711,3.557731,1.955253,2.099062,5.75711,4.072495,1.403538,-4.072493,1.403538,3.557731,7.014669,-3.557731,7.014669,-4.072495,1.403539,-3.557731,7.014671,4.072495,1.403539,3.557731,7.014671 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,37,36,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallI, Model::RootNode + C: "OO",5337398901924016492,0 + + ;Geometry::, Model::Mesh stone_smallI + C: "OO",4990188436145400805,5337398901924016492 + + ;Material::stone, Model::Mesh stone_smallI + C: "OO",3038,5337398901924016492 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallI.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallI.fbx.import new file mode 100644 index 0000000..0b74112 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallI.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bng52fxp8n3yl" +path="res://.godot/imported/stone_smallI.fbx-6c7048e22a9f583863f49ddce4c8ee7e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallI.fbx" +dest_files=["res://.godot/imported/stone_smallI.fbx-6c7048e22a9f583863f49ddce4c8ee7e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopA.fbx new file mode 100644 index 0000000..3d93b97 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopA.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 33 + Millisecond: 952 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallTopA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallTopA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5728166343123846356, "Model::stone_smallTopA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5693584833846556195, "Geometry::", "Mesh" { + Vertices: *252 { + a: 2.438671,0,-0.2648371,1.02626,0,2.445732,2.255771,0.65,-0.2449743,1.674127,1.3,0.5401204,0.8723209,1.3,2.078872,0.1582159,1.3,1.247473,-1.327146,1.3,0.9982982,0.04190464,2.2,0.9702861,-1.101824,2.2,0.778421,-0.7537457,2.2,-0.6271417,-0.2129613,1.618934,-1.064624,0.2913566,2.2,-0.3499064,-0.2010239,1.3,-1.162852,0.8541978,1.3,-0.08819062,-0.2129613,1.618934,-1.064624,0.2913566,2.2,-0.3499064,0.5778107,2.2,-0.05817528,-2.255771,0.65,-1.001803,-1.783664,1.3,-1.064624,-2.025242,1.3,-0.6010098,1.02626,0,2.445732,-1.988104,0,1.940061,0.8723209,1.3,2.078872,-1.783664,0.8912079,1.740561,0.09940387,1.3,1.949212,-1.741645,1.3,1.301784,0.09940387,1.3,1.949212,-1.783664,0.8912079,1.740561,-2.438671,0,-1.08303,-2.255771,0.65,-1.001803,-1.988104,0,1.940061,-2.025242,1.3,-0.6010098,-1.741645,1.3,1.301784,-1.783664,0.8912079,1.740561,-1.549169,1.3,-0.4913646,-0.2010239,1.3,-1.162852,-1.272781,2.2,-0.3686193,-0.2129613,1.618934,-1.064624,-0.7537457,2.2,-0.6271417,2.438671,0,-0.2648371,0.297226,0,-2.445732,1.02626,0,2.445732,-1.988104,0,1.940061,-2.438671,0,-1.08303,-2.438671,0,-1.08303,0.297226,0,-2.445732,-2.255771,0.65,-1.001803,0.2526421,1.3,-2.078872,-1.783664,1.3,-1.064624,1.674127,1.3,-0.6312008,2.255771,0.65,-0.2449743,1.674127,1.3,0.5401204,-1.549169,1.3,-0.4913646,-1.272781,2.2,-0.3686193,-1.327146,1.3,0.9982982,-1.101824,2.2,0.778421,1.674127,1.3,-0.6312008,1.674127,1.3,0.5401204,0.2526421,1.3,-2.078872,0.8541978,1.3,-0.08819062,0.8723209,1.3,2.078872,-0.2010239,1.3,-1.162852,-1.783664,1.3,-1.064624,-1.549169,1.3,-0.4913646,-1.741645,1.3,1.301784,-2.025242,1.3,-0.6010098,0.09940387,1.3,1.949212,0.1582159,1.3,1.247473,-1.327146,1.3,0.9982982,0.5778107,2.2,-0.05817528,0.04190464,2.2,0.9702861,0.2913566,2.2,-0.3499064,-0.7537457,2.2,-0.6271417,-1.101824,2.2,0.778421,-1.272781,2.2,-0.3686193,0.8541978,1.3,-0.08819062,0.1582159,1.3,1.247473,0.5778107,2.2,-0.05817528,0.04190464,2.2,0.9702861,0.297226,0,-2.445732,2.438671,0,-0.2648371,0.2526421,1.3,-2.078872,1.674127,1.3,-0.6312008,2.255771,0.65,-0.2449743 + } + PolygonVertexIndex: *156 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,8,6,-8,9,11,-11,12,14,-14,15,13,-15,16,13,-16,17,19,-19,20,22,-22,23,21,-23,24,23,-23,25,27,-27,28,30,-30,31,29,-31,32,31,-31,33,32,-31,34,36,-36,37,35,-37,38,37,-37,39,41,-41,42,40,-42,43,40,-43,44,46,-46,47,45,-47,48,47,-47,49,51,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,59,-59,62,61,-59,63,61,-63,64,63,-63,65,64,-63,60,59,-67,67,66,-60,68,66,-68,64,66,-69,63,64,-69,69,71,-71,72,70,-72,73,70,-73,74,73,-73,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,80,-83 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *468 { + a: 0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,0.8632277,0.2291542,0.4498069,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,-0.1592167,0.271736,0.9491099,0.1843795,0.6949061,-0.6950609,0.1843795,0.6949061,-0.6950609,0.1843795,0.6949061,-0.6950609,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,0.6934347,0.2356596,-0.6808913,-0.7606292,0.5141532,-0.3963454,-0.7606292,0.5141532,-0.3963454,-0.7606292,0.5141532,-0.3963454,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.1601684,0.2504735,0.9547822,-0.2291728,0.723041,0.6516837,-0.2291728,0.723041,0.6516837,-0.2291728,0.723041,0.6516837,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.9572747,0.2515338,0.1426741,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,-0.4315992,0.2507226,-0.866522,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,-0.4337923,0.230898,-0.870925,0.7452043,0.6668363,0,0.7452043,0.6668363,0,0.7452043,0.6668363,0,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,-0.9515395,0.2728733,0.1418195,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.8589288,0.2488476,0.447567,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451,0.6965447,0.2168974,-0.6839451 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *168 { + a: 5.361349,-1.840718,-6.67205,-1.840718,4.959248,0.788295,1.159948,3.417308,-5.671242,3.417308,1.42685,3.637339,-4.502744,3.637339,0.7946978,7.319188,-3.77109,7.319188,3.501374,5.098759,1.885097,1.917477,-0.7555098,5.098759,3.821153,4.351148,-2.108443,4.351148,3.57814,5.643183,0.1792819,7.997142,-1.430386,7.997142,0.6061997,-2.791605,-0.4720424,0.1920255,1.586143,0.1920255,5.577735,-2.211111,-6.455666,-2.211111,4.741074,3.075519,-5.79182,1.413109,1.655574,3.075519,-4.768304,-1.604942,2.91504,-1.604942,-4.351282,-3.934712,-5.632643,-2.230505,-5.210196,0.4135599,6.400755,-2.230506,-3.515717,3.057625,4.058345,3.057626,5.742554,1.394744,4.596894,3.838712,-1.332703,3.838711,3.838336,7.49893,-1.118218,5.135788,1.555444,7.49893,9.601068,-1.042666,1.170181,-9.628866,4.040394,9.628866,-7.827181,7.638035,-9.601068,-4.263897,6.693023,-1.869629,-5.340376,-1.869629,6.191046,0.7604969,-4.539319,3.390624,4.417042,3.390624,2.485043,-0.5811144,0.9644657,-4.015146,-2.126458,-0.5811144,-2.812462,3.355597,-2.174085,7.038678,3.117134,3.355597,2.391703,7.038678,-6.591051,-2.485043,-6.591051,2.126458,-0.9946539,-8.184535,-3.362983,-0.3472072,-3.434334,8.184535,0.7914327,-4.578158,7.022299,-4.191433,6.09909,-1.934506,6.85687,5.125134,7.973394,-2.36618,-0.3913538,7.674063,-0.6228972,4.911311,5.224985,3.930308,-2.274845,-0.2290365,-0.1649789,3.820024,-1.147073,-1.377584,2.967503,-2.469062,4.33789,3.06465,5.010949,-1.451257,1.861959,4.254876,-4.067636,4.254876,1.254329,7.913267,-3.311459,7.913267,6.050636,-1.644338,-5.982763,-1.644337,5.14304,3.598583,-2.844694,3.598583,-5.534056,0.977123 + } + UVIndex: *156 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,8,6,7,9,11,10,12,14,13,15,13,14,16,13,15,17,19,18,20,22,21,23,21,22,24,23,22,25,27,26,28,30,29,31,29,30,32,31,30,33,32,30,34,36,35,37,35,36,38,37,36,39,41,40,42,40,41,43,40,42,44,46,45,47,45,46,48,47,46,49,51,50,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,59,58,62,61,58,63,61,62,64,63,62,65,64,62,60,59,66,67,66,59,68,66,67,64,66,68,63,64,68,69,71,70,72,70,71,73,70,72,74,73,72,75,77,76,78,76,77,79,81,80,82,80,81,83,80,82 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *52 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallTopA, Model::RootNode + C: "OO",5728166343123846356,0 + + ;Geometry::, Model::Mesh stone_smallTopA + C: "OO",5693584833846556195,5728166343123846356 + + ;Material::stone, Model::Mesh stone_smallTopA + C: "OO",3038,5728166343123846356 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopA.fbx.import new file mode 100644 index 0000000..c012546 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b0n2l32r0fvqu" +path="res://.godot/imported/stone_smallTopA.fbx-52fd2cf4b0b905d60a3745503d4ea02b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopA.fbx" +dest_files=["res://.godot/imported/stone_smallTopA.fbx-52fd2cf4b0b905d60a3745503d4ea02b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopB.fbx new file mode 100644 index 0000000..a885c12 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopB.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 39 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_smallTopB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_smallTopB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4862531530386981568, "Model::stone_smallTopB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4757496638657987239, "Geometry::", "Mesh" { + Vertices: *360 { + a: -0.8725817,1.6,-0.2403352,0.4830386,1.6,-0.6251042,-0.7892283,1.954933,-0.1800836,0.3988329,2.8,-0.3175108,-0.2667954,2.8,-0.1285839,0.5958598,1.9,-1.399178,0.7173277,1.6,-1.38784,0.2978266,1.9,-1.082369,0.3145802,1.6,-0.9597207,-2.960467,0,-2.139954,-2.320917,1.329415,-1.67766,-3.110718,0,1.85416,-2.212797,1.6,-0.9973733,-2.272047,1.6,0.577666,-2.914399,0.3883719,1.737143,0.3145802,1.6,-0.9597207,-0.217041,1.6,-1.21046,0.2978266,1.9,-1.082369,-0.09557308,1.9,-1.267917,-0.1428535,1.6,-1.793545,0.4346181,1.6,-1.903172,-0.04067433,1.9,-1.699399,0.3866547,1.9,-1.780523,2.516654,1.175221,0.07144932,3.110718,0,0.08831516,1.922125,1.6,0.5487938,0.6414808,0,3.231307,0.4746958,1.6,2.391167,-0.7892283,1.954933,-0.1800836,-0.2667954,2.8,-0.1285839,-0.6034299,2.8,0.2999044,0.397327,1.6,1.653366,-0.9255545,1.6,1.167837,0.3362634,2.8,1.345772,-0.6294401,2.8,0.991336,-0.8725817,1.6,-0.2403352,-0.7892283,1.954933,-0.1800836,-0.9255545,1.6,1.167837,-0.6034299,2.8,0.2999044,-0.6294401,2.8,0.991336,2.516654,1.175221,0.07144932,1.922125,1.6,0.5487938,1.107275,1.6,-1.71613,-0.1428535,1.6,-1.793545,-0.04067433,1.9,-1.699399,-0.217041,1.6,-1.21046,-0.09557308,1.9,-1.267917,1.119828,2.2,0.5410638,1.267885,1.6,0.5452672,0.6540173,2.8,0.9413164,0.397327,1.6,1.653366,0.3362634,2.8,1.345772,0.5958598,1.9,-1.399178,0.2978266,1.9,-1.082369,0.3866547,1.9,-1.780523,-0.04067433,1.9,-1.699399,-0.09557308,1.9,-1.267917,0.7793301,2.8,0.2498905,1.119828,2.2,0.5410638,0.6540173,2.8,0.9413164,-2.272047,1.6,0.577666,-1.555635,1.6,1.645987,-2.914399,0.3883719,1.737143,1.107275,1.6,-1.71613,0.7173277,1.6,-1.38784,0.6545978,1.6,-2.391167,0.4346181,1.6,-1.903172,-0.2667954,1.6,-2.129646,-0.1428535,1.6,-1.793545,-0.217041,1.6,-1.21046,0.4830386,1.6,-0.6251042,1.267885,1.6,0.5452672,1.922125,1.6,0.5487938,0.3145802,1.6,-0.9597207,-0.8725817,1.6,-0.2403352,-2.212797,1.6,-0.9973733,-0.9255545,1.6,1.167837,-1.555635,1.6,1.645987,-2.272047,1.6,0.577666,0.4746958,1.6,2.391167,0.397327,1.6,1.653366,-2.960467,0,-2.139954,0.8845916,0,-3.231307,-2.320917,1.329415,-1.67766,0.6545978,1.6,-2.391167,-0.2667954,1.6,-2.129646,0.4830386,1.6,-0.6251042,1.267885,1.6,0.5452672,0.3988329,2.8,-0.3175108,0.7793301,2.8,0.2498905,1.119828,2.2,0.5410638,3.110718,0,0.08831516,0.8845916,0,-3.231307,0.6414808,0,3.231307,-2.960467,0,-2.139954,-3.110718,0,1.85416,0.6414808,0,3.231307,-3.110718,0,1.85416,0.4746958,1.6,2.391167,-2.914399,0.3883719,1.737143,-1.555635,1.6,1.645987,-0.2667954,1.6,-2.129646,-2.212797,1.6,-0.9973733,-2.320917,1.329415,-1.67766,0.8845916,0,-3.231307,3.110718,0,0.08831516,0.6545978,1.6,-2.391167,1.107275,1.6,-1.71613,2.516654,1.175221,0.07144932,0.4346181,1.6,-1.903172,0.7173277,1.6,-1.38784,0.3866547,1.9,-1.780523,0.5958598,1.9,-1.399178,0.7793301,2.8,0.2498905,0.6540173,2.8,0.9413164,0.3988329,2.8,-0.3175108,0.3362634,2.8,1.345772,-0.2667954,2.8,-0.1285839,-0.6294401,2.8,0.991336,-0.6034299,2.8,0.2999044 + } + PolygonVertexIndex: *228 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,12,-12,14,13,-12,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,26,-26,28,30,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,38,-38,40,42,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,50,-50,52,54,-54,55,53,-55,56,53,-56,57,59,-59,60,62,-62,63,65,-65,66,64,-66,67,66,-66,68,66,-68,69,68,-68,64,70,-64,70,71,-64,72,63,-72,73,70,-65,74,70,-74,69,74,-74,67,74,-70,75,74,-68,76,74,-76,77,76,-76,78,77,-76,72,71,-80,80,79,-72,77,79,-81,76,77,-81,81,83,-83,84,82,-84,85,84,-84,86,88,-88,89,87,-89,90,87,-90,91,93,-93,94,92,-94,95,94,-94,96,98,-98,99,97,-99,100,99,-99,101,103,-103,104,106,-106,107,105,-107,108,105,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,116,-116,118,116,-118,119,118,-118 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *684 { + a: -0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,-0.2662482,0.2217646,-0.9380471,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,0.6935459,0.3054692,0.6524435,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.8960031,0.4427666,-0.03370595,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.4031422,0.3269321,0.8547466,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,-0.1748144,0.3485237,-0.9208534,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,0.7284988,0.3764637,0.5723326,-0.6965812,0.4639876,-0.5472571,-0.6965812,0.4639876,-0.5472571,-0.6965812,0.4639876,-0.5472571,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.3362828,0.2177466,0.9162425,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,-0.9714661,0.2343457,-0.03654464,0.4776265,0.8615949,-0.1718353,0.4776265,0.8615949,-0.1718353,0.4776265,0.8615949,-0.1718353,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,-0.9280816,0.3531585,-0.1180824,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0.7713202,0.1945777,0.6059741,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8269091,0.5419971,0.1498675,0.8269091,0.5419971,0.1498675,0.8269091,0.5419971,0.1498675,-0.5951726,0.6974759,0.3991205,-0.5951726,0.6974759,0.3991205,-0.5951726,0.6974759,0.3991205,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,-0.2475048,0.4223035,-0.8720098,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0.8142486,0.1971001,-0.5460319,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.3133744,0.4156667,0.8538254,-0.1952272,0.9215776,-0.3355309,-0.1952272,0.9215776,-0.3355309,-0.1952272,0.9215776,-0.3355309,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.767963,0.3808081,-0.5149932,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0.8308737,0.3191888,-0.4558152,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: 3.046463,5.732485,-2.501442,5.732485,2.795539,7.165542,-1.851862,10.57753,0.8722359,10.57753,5.619627,7.753803,5.914789,6.513412,3.907179,7.753803,3.600673,6.513412,-7.980917,-5.297194,-6.256801,0.5400825,7.755063,-5.297194,-3.596401,1.728183,2.608927,1.728183,7.265637,-3.591907,-0.4916535,7.243039,-2.805768,7.243039,-0.7572936,8.492819,-2.46974,8.49282,-0.7644276,3.449879,-3.078543,3.449879,-1.090519,4.709991,-2.802964,4.709991,5.89984,1.28793,7.292515,-3.706346,2.976025,3.093092,-8.44347,-3.706346,-6.248167,3.093092,1.362057,5.48105,0.2508249,9.236839,2.396133,9.236839,3.711281,4.934833,-1.836624,4.934833,3.068343,9.775389,-0.9816271,9.775389,-0.8163926,5.310972,-0.5916854,6.748373,4.731514,5.310972,1.269198,10.17071,3.993295,10.17071,-3.618845,-5.602094,-4.594814,-2.307434,4.881736,-2.307434,-6.933746,5.381534,-6.61683,6.643984,-4.619629,5.381534,-4.904388,6.643984,1.048598,7.565243,1.395691,5.15701,-1.32348,9.973475,-4.152214,5.15701,-3.348464,9.973475,-2.345905,-5.508575,-1.172546,-4.261295,-1.522263,-7.009933,0.1601351,-6.690547,0.376272,-4.991799,-0.4208843,7.532629,-1.309797,4.721753,-3.18738,7.532629,-3.093144,-1.551125,1.971011,-1.551125,-0.7103475,-8.207745,-4.35935,-6.756417,-2.824125,-5.463937,-2.577157,-9.414043,-1.711095,-7.492803,1.050376,-8.384434,0.5624154,-7.061201,0.8544921,-4.76559,-1.901727,-2.46104,-4.991673,2.146721,-7.567421,2.160605,-1.238505,-3.778428,3.435361,-0.9462016,8.711799,-3.926666,3.643915,4.597784,6.124547,6.480264,8.945067,2.274276,-1.868881,9.414043,-1.56428,6.509315,8.912059,-4.766684,-6.823925,-4.766683,6.986785,1.007371,-5.049704,2.182604,-1.278883,2.182604,0.9848137,5.594167,-4.56309,5.594167,0.1636723,10.41311,-2.525977,10.41311,-4.224694,8.003637,12.24692,0.3476975,3.482644,-12.72168,2.525515,12.72168,-11.65538,-8.425016,-12.24692,7.299842,6.754132,-4.602485,-8.981853,-4.602485,4.998057,2.323403,-8.415003,-2.921347,-3.516751,2.323403,-3.308748,-4.720161,5.555173,-4.720161,4.57615,-7.464396,8.62619,-3.799672,-7.109794,-3.799672,6.38338,3.012836,3.183507,3.012836,-5.752014,1.204204,5.746207,4.340561,3.432091,4.340561,5.413682,5.586856,3.701238,5.586855,-3.068229,0.9838209,-2.574871,3.70597,-1.570208,-1.250043,-1.323872,5.298315,1.050376,-0.5062358,2.478111,3.902898,2.375708,1.180726 + } + UVIndex: *228 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,12,11,14,13,11,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,26,25,28,30,29,31,33,32,34,32,33,35,37,36,38,36,37,39,38,37,40,42,41,43,45,44,46,44,45,47,49,48,50,48,49,51,50,49,52,54,53,55,53,54,56,53,55,57,59,58,60,62,61,63,65,64,66,64,65,67,66,65,68,66,67,69,68,67,64,70,63,70,71,63,72,63,71,73,70,64,74,70,73,69,74,73,67,74,69,75,74,67,76,74,75,77,76,75,78,77,75,72,71,79,80,79,71,77,79,80,76,77,80,81,83,82,84,82,83,85,84,83,86,88,87,89,87,88,90,87,89,91,93,92,94,92,93,95,94,93,96,98,97,99,97,98,100,99,98,101,103,102,104,106,105,107,105,106,108,105,107,109,111,110,112,110,111,113,115,114,116,114,115,117,116,115,118,116,117,119,118,117 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *76 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_smallTopB, Model::RootNode + C: "OO",4862531530386981568,0 + + ;Geometry::, Model::Mesh stone_smallTopB + C: "OO",4757496638657987239,4862531530386981568 + + ;Material::stone, Model::Mesh stone_smallTopB + C: "OO",3038,4862531530386981568 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopB.fbx.import new file mode 100644 index 0000000..9bb4438 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cjn5nun72cnup" +path="res://.godot/imported/stone_smallTopB.fbx-0b893137e83fb3c2f3114e1f2a73eb43.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_smallTopB.fbx" +dest_files=["res://.godot/imported/stone_smallTopB.fbx-0b893137e83fb3c2f3114e1f2a73eb43.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallA.fbx new file mode 100644 index 0000000..d6eabb9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 141 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4858823929554387636, "Model::stone_tallA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4795733150170684253, "Geometry::", "Mesh" { + Vertices: *762 { + a: -2.189528,1.507985,-0.4354705,-3.972459,1.507985,-0.4354705,-2.144878,3.229055,-0.508233,-3.39293,3.229055,-0.508233,0.127458,0,2.16427,-2.040694,0,3.416054,-0.3812444,0.917904,1.794098,-2.040694,0.917904,2.752182,-0.8908346,0.917904,2.08831,-0.3812444,0.917904,1.794098,-2.040694,0.917904,2.752182,0.4908301,6.79249,-2.786561,2.345152,6.79249,-1.715968,0.5775596,9.959259,-2.552448,2.116647,9.959259,-1.663856,2.998025,0,-1.968525,2.998025,0,-1.074604,2.647018,4.864892,-1.765871,2.647018,4.864892,-0.5209952,2.831233,2.311707,-0.07321613,2.647018,4.864892,0.7238802,2.831233,2.311707,0.8302369,-4.915344,0,-1.562985,-2.040694,0,-3.222666,-4.340413,0.917904,-1.23105,-2.040694,0.917904,-2.558794,-1.85148,2.285268,-1.873328,-1.665357,4.864892,-1.765871,-1.783385,3.229055,-1.585764,-1.665357,4.864892,-0.5209952,-1.783385,3.229055,0.2132942,-1.665357,4.864892,0.7238802,-1.907561,1.507985,0.4869801,-1.907561,1.507985,0.863717,-2.040694,0.917904,-2.558794,-1.451114,0.917904,-2.2184,-2.040694,1.507985,-2.187025,-1.7305,1.507985,-2.007934,-0.3812444,0.917904,1.794098,-0.8908346,0.917904,2.08831,-0.7526187,1.507985,1.530524,-1.074812,1.507985,1.716542,-0.8908346,0.917904,2.08831,-2.536621,0.917904,1.26534,-1.074812,1.507985,1.716542,-2.457273,1.507985,1.025247,-0.3431457,6.79249,-2.305065,0.4908301,6.79249,-2.786561,-0.1146404,9.959259,-2.152806,0.5775596,9.959259,-2.552448,2.998025,0,-1.074604,4.254525,0,-1.074604,2.831233,2.311707,-0.07321613,3.499117,2.311707,-0.07321613,-2.144878,3.229055,-0.508233,-2.238589,3.229055,0.003017875,-2.189528,1.507985,-0.4354705,-2.3234,1.507985,0.294888,0.4908301,0,-3.416054,2.998025,0,-1.968525,0.4908301,4.864892,-3.010746,2.647018,4.864892,-1.765871,-0.9424118,0,-2.588572,0.4908301,0,-3.416054,-1.451114,0.917904,-2.2184,0.4908301,4.864892,-3.010746,-1.7305,1.507985,-2.007934,-1.85148,2.285268,-1.873328,-1.665357,4.864892,-1.765871,-1.665357,4.864892,-1.765871,0.4908301,4.864892,-3.010746,-1.363491,6.79249,-1.715968,0.4908301,6.79249,-2.786561,-0.3431457,6.79249,-2.305065,-2.040694,0,-3.222666,-0.9424118,0,-2.588572,-2.040694,0.917904,-2.558794,-1.451114,0.917904,-2.2184,-4.915344,0,-1.562985,-4.340413,0.917904,-1.23105,-4.915344,0,1.756374,-4.340413,0.917904,-0.4736091,-4.340413,0.917904,1.424438,2.345152,6.79249,-0.6453752,0.3119645,6.79249,-0.03228961,2.116647,9.959259,-0.775264,0.4291009,9.959259,-0.2664027,2.826877,2.311707,0.8327516,3.218279,2.311707,1.224154,2.051158,0,1.473208,3.111345,0,2.533396,-2.217877,0.917904,-0.4736091,-4.340413,0.917904,-0.4736091,-2.189528,1.507985,-0.4354705,-3.972459,1.507985,-0.4354705,0.3119645,6.79249,-0.03228961,-1.363491,6.79249,-0.6453752,-0.3431457,6.79249,-2.305065,-1.363491,6.79249,-1.715968,-3.972459,1.507985,-1.07172,-2.040694,1.507985,-2.187025,-3.39293,3.229055,-0.9536081,-2.040694,3.229055,-1.734322,-2.217877,0.917904,-0.4736091,-2.536621,0.917904,1.26534,-4.340413,0.917904,-0.4736091,-4.340413,0.917904,1.424438,-2.040694,0.917904,2.752182,-0.8908346,0.917904,2.08831,0.2828467,4.864892,0.1918952,-1.665357,4.864892,-0.5209952,0.3119645,6.79249,-0.03228961,-1.363491,6.79249,-0.6453752,0.4908301,0,2.374064,0.127458,0,2.16427,0.4908301,4.864892,1.968755,-0.3812444,0.917904,1.794098,-0.7526187,1.507985,1.530524,-1.907561,1.507985,0.863717,-1.665357,4.864892,0.7238802,-2.040694,1.507985,-2.187025,-1.7305,1.507985,-2.007934,-2.040694,3.229055,-1.734322,-1.85148,2.285268,-1.873328,-1.783385,3.229055,-1.585764,0.4908301,4.864892,-3.010746,2.647018,4.864892,-1.765871,0.4908301,6.79249,-2.786561,2.345152,6.79249,-1.715968,-0.3431457,6.79249,-2.305065,-0.1146404,9.959259,-2.152806,0.3119645,6.79249,-0.03228961,0.4291009,9.959259,-0.2664027,-1.665357,4.864892,-1.765871,-1.363491,6.79249,-1.715968,-1.665357,4.864892,-0.5209952,-1.363491,6.79249,-0.6453752,-1.907561,1.507985,0.4869801,-1.907561,1.507985,0.863717,-2.3234,1.507985,0.294888,-2.457273,1.507985,1.025247,-1.074812,1.507985,1.716542,-0.7526187,1.507985,1.530524,-2.040694,3.229055,-1.734322,-2.144878,3.229055,-0.508233,-3.39293,3.229055,-0.9536081,-3.39293,3.229055,-0.508233,-1.783385,3.229055,0.2132942,-1.783385,3.229055,-1.585764,-2.238589,3.229055,0.003017875,2.831233,2.311707,0.8302369,2.826877,2.311707,0.8327516,2.647018,4.864892,0.7238802,0.4908301,4.864892,1.968755,0.4908301,0,2.374064,2.051158,0,1.473208,-2.040694,0,3.416054,-4.915344,0,1.756374,-2.040694,0.917904,2.752182,-4.340413,0.917904,1.424438,4.915344,0,1.238939,3.111345,0,2.533396,3.758886,2.311707,0.8362427,3.218279,2.311707,1.224154,2.116647,9.959259,-1.663856,2.116647,9.959259,-0.775264,0.5775596,9.959259,-2.552448,0.4291009,9.959259,-0.2664027,-0.1146404,9.959259,-2.152806,2.647018,4.864892,-1.765871,2.647018,4.864892,-0.5209952,2.345152,6.79249,-1.715968,2.345152,6.79249,-0.6453752,2.647018,4.864892,-0.5209952,2.647018,4.864892,0.7238802,0.2828467,4.864892,0.1918952,0.4908301,4.864892,1.968755,-1.665357,4.864892,0.7238802,-1.665357,4.864892,-0.5209952,-4.340413,0.917904,-1.23105,-3.972459,1.507985,-1.07172,-4.340413,0.917904,-0.4736091,-3.972459,1.507985,-0.4354705,2.647018,4.864892,-0.5209952,0.2828467,4.864892,0.1918952,2.345152,6.79249,-0.6453752,0.3119645,6.79249,-0.03228961,-3.972459,1.507985,-1.07172,-3.39293,3.229055,-0.9536081,-3.972459,1.507985,-0.4354705,-3.39293,3.229055,-0.508233,2.345152,6.79249,-1.715968,2.345152,6.79249,-0.6453752,2.116647,9.959259,-1.663856,2.116647,9.959259,-0.775264,-4.340413,0.917904,-1.23105,-2.040694,0.917904,-2.558794,-3.972459,1.507985,-1.07172,-2.040694,1.507985,-2.187025,3.758886,2.311707,0.8362427,3.218279,2.311707,1.224154,3.499117,2.311707,-0.07321613,2.831233,2.311707,-0.07321613,2.831233,2.311707,0.8302369,2.826877,2.311707,0.8327516,-2.217877,0.917904,-0.4736091,-2.189528,1.507985,-0.4354705,-2.536621,0.917904,1.26534,-2.3234,1.507985,0.294888,-2.457273,1.507985,1.025247,-1.907561,1.507985,0.4869801,-2.3234,1.507985,0.294888,-1.783385,3.229055,0.2132942,-2.238589,3.229055,0.003017875,4.254525,0,-1.074604,4.915344,0,1.238939,3.499117,2.311707,-0.07321613,3.758886,2.311707,0.8362427,4.915344,0,1.238939,4.254525,0,-1.074604,3.111345,0,2.533396,2.998025,0,-1.074604,3.111345,0,2.533396,4.254525,0,-1.074604,2.051158,0,1.473208,3.111345,0,2.533396,2.998025,0,-1.074604,2.998025,0,-1.968525,2.051158,0,1.473208,2.998025,0,-1.074604,0.4908301,0,-3.416054,2.051158,0,1.473208,2.998025,0,-1.968525,0.4908301,0,2.374064,2.051158,0,1.473208,0.4908301,0,-3.416054,0.127458,0,2.16427,0.4908301,0,2.374064,0.4908301,0,-3.416054,-0.9424118,0,-2.588572,0.127458,0,2.16427,0.4908301,0,-3.416054,-2.040694,0,3.416054,0.127458,0,2.16427,-0.9424118,0,-2.588572,-2.040694,0,-3.222666,-2.040694,0,3.416054,-0.9424118,0,-2.588572,-4.915344,0,1.756374,-2.040694,0,3.416054,-2.040694,0,-3.222666,-4.915344,0,-1.562985,-4.915344,0,1.756374,-2.040694,0,-3.222666 + } + PolygonVertexIndex: *408 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,13,-13,14,12,-14,15,17,-17,18,16,-18,19,16,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,29,-29,31,29,-31,32,31,-31,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,65,-65,67,65,-67,68,65,-68,69,71,-71,72,70,-72,73,72,-72,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,81,-81,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,105,106,-105,106,107,-105,108,104,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,116,-116,118,117,-116,119,118,-116,120,122,-122,123,121,-123,124,123,-123,125,127,-127,128,126,-128,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,139,140,-139,140,141,-139,142,138,-142,143,145,-145,146,144,-146,144,147,-144,148,143,-148,149,147,-145,150,152,-152,152,153,-152,153,154,-152,155,151,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,167,-167,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,176,-176,178,177,-176,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,200,-203,204,200,-204,205,207,-207,208,206,-208,209,208,-208,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,223,-223,224,226,-226,227,229,-229,230,232,-232,233,235,-235,236,238,-238,239,241,-241,242,244,-244,245,247,-247,248,250,-250,251,253,-253 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1224 { + a: 0,0.04223974,0.9991074,0,0.04223974,0.9991074,0,0.04223974,0.9991074,0,0.04223974,0.9991074,0,0.04223974,0.9991074,0,0.04223974,0.9991074,0.4237418,0.5308219,0.7339422,0.4178036,0.5493274,0.7236571,0.4237418,0.5308219,0.7339422,0.4237418,0.5308219,0.7339422,0.4237418,0.5308219,0.7339422,0.4178036,0.5493274,0.7236571,0.4191375,0.5452476,0.7259675,0.4237418,0.5308219,0.7339422,0.4178036,0.5493274,0.7236571,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,0.4993679,0.05026629,-0.8649306,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,0.9974073,0.07196404,0,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,-0.4237417,0.5308222,-0.733942,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,-0.9974073,0.07196404,0,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,0.4389169,0.478965,-0.7602267,0.4178036,0.5493274,0.7236571,0.4093248,0.5742933,0.7089715,0.4191375,0.5452476,0.7259675,0.4093248,0.5742933,0.7089715,0.4191375,0.5452476,0.7259675,0.4093248,0.5742933,0.7089715,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,-0.4117545,0.3904078,0.8234317,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,-0.4984967,0.07748366,-0.8634219,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,0,0.3974899,-0.9176066,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,-0.9834554,0.01789277,-0.1802647,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,0.4987035,0.07196403,-0.8637801,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4987035,0.07196405,-0.86378,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,-0.4974829,0.1002139,-0.8616657,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,0.4237416,0.5308219,-0.7339422,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,-0.8474829,0.5308226,0,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,0.2881795,0.05999316,0.9556952,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,-0.648846,0.3974899,0.6488458,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,-0.06449842,0.9979178,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,-0.4875113,0.2221061,-0.8443942,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,-0.3414108,0.1136694,0.9330155,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,-0.4987036,0.07196405,0.86378,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4875115,0.2221062,-0.8443941,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,0.4974829,0.100214,-0.8616657,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.9593757,0.05593012,0.2765326,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,-0.9879589,0.1547166,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,0.4987035,0.07196406,0.8637801,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,-0.4237417,0.5308221,0.733942,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0.5349572,0.3974898,0.7455351,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9879589,0.1547166,0,0.9879589,0.1547166,0,0.9879589,0.1547166,0,0.9879589,0.1547166,0,0.9879589,0.1547166,0,0.9879589,0.1547166,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,-0.8485447,0.5291237,0,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,0.2870613,0.1063823,0.9519866,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,-0.9477143,0.3191199,0,0.9974068,0.07197005,0,0.9974068,0.07197005,0,0.9974068,0.07197005,0,0.9974068,0.07197005,0,0.9974068,0.07197005,0,0.9974068,0.07197005,0,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,-0.4389173,0.4789646,-0.7602266,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.9819106,0.05880672,-0.1799814,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,-0.4131067,0.1720166,0.8942892,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,0.8823202,0.3974895,-0.2520179,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *508 { + a: -8.620188,6.004069,-15.6396,6.004069,-8.444401,12.78599,-13.35799,12.78599,-3.825801,-4.050218,-13.68236,-4.050218,-4.831561,0.2139314,-12.37553,0.2139314,-7.148192,0.2139313,-4.831561,0.2139314,-12.37553,0.2139314,3.811847,26.18214,-4.618019,26.18214,3.055286,38.66551,-3.941503,38.66551,7.750098,-0.8494094,4.230725,-0.8494094,6.952247,18.35349,2.051162,18.35349,0.2882527,8.275457,-2.849922,18.35349,-3.268649,8.275457,13.68236,-7.964961,0.6140153,-7.96496,12.37552,-3.70081,1.92085,-3.700811,-7.375309,8.449223,-6.952247,18.63162,-6.243165,12.17458,-2.051163,18.63162,0.8397405,12.17458,2.849922,18.63162,1.917244,5.381101,3.40046,5.381101,11.99484,0.91772,9.314571,0.9177198,11.26301,3.564182,9.852849,3.564182,-4.831561,-0.1235604,-7.148191,-0.1235606,-5.578932,2.714227,-7.043644,2.714228,0.5402331,-0.1562715,-6.704177,-0.1562714,-0.7622222,2.367136,-6.847526,2.367135,-3.367558,26.00039,-7.158866,26.00039,-3.846935,38.50558,-6.993721,38.50558,-11.80325,-1.681671,-16.7501,-1.681671,-11.14659,8.236751,-13.77605,8.236751,-0.4456569,12.55571,1.600675,12.55571,-0.1321914,5.778757,2.791141,5.778757,5.051006,-0.9077113,-6.346866,-0.9077113,4.253155,18.29519,-5.549014,18.29519,-1.882415,-0.7686482,-8.398026,-0.7686482,0.5807169,2.854541,-7.600174,18.43426,1.947597,5.183735,2.625058,8.251857,2.201994,18.43426,2.201993,18.1248,-7.600175,18.1248,1.270998,25.75217,-7.158866,25.75217,-3.367558,25.75217,13.30168,-3.700212,8.308812,-3.700212,11.99484,0.5639374,9.314572,0.5639371,-6.153486,-10.27235,-4.846652,-6.008195,6.91486,-10.27235,-1.864603,-6.008195,5.608025,-6.008195,9.573283,26.67995,1.21261,26.67995,8.859597,39.17004,1.920236,39.17004,10.18799,10.55796,12.36722,10.55796,9.81143,0.6395396,15.71431,0.6395398,-8.731799,3.486007,-17.08824,3.486007,-8.620188,5.814009,-15.6396,5.814009,-1.228207,-0.1271245,5.368075,-2.540847,1.350967,-9.07506,5.368075,-6.755781,11.4346,3.240239,2.652678,3.240239,9.691177,10.18969,3.543828,10.18969,8.731799,-1.864603,9.986698,4.981652,17.08824,-1.864603,17.08824,5.608025,8.03423,10.83536,3.507223,8.221695,1.305372,18.99183,-6.862104,18.99183,1.109727,26.63031,-5.914302,26.63031,6.346863,-0.5129803,4.694949,-0.5129803,5.549012,18.68992,2.231818,3.110209,0.4467516,5.439403,-4.803694,5.439403,-4.253156,18.68992,11.26302,5.024692,9.852851,5.024692,10.37187,11.97414,10.00037,8.163253,9.20212,11.97414,4.253155,17.93114,-5.549014,17.93114,3.811847,25.55851,-4.618019,25.55851,-9.094213,26.7682,-8.269052,39.25534,0.2180203,26.7682,-0.5398997,39.25534,-6.952247,17.90809,-6.755781,25.58955,-2.051162,17.90809,-2.540847,25.58955,7.510085,1.917244,7.510085,3.40046,9.147245,1.160977,9.674302,4.036405,4.231544,6.758039,2.963066,6.025684,8.03423,-6.828038,8.444401,-2.000917,13.35799,-3.754363,13.35799,-2.000917,7.021199,0.8397411,7.021199,-6.243164,8.813341,0.0118814,8.018903,8.472823,7.999102,8.472823,7.600176,18.55086,-2.201992,18.55086,-2.999844,-0.652044,4.093507,-0.6520439,-0.2333301,-8.314967,-13.30167,-8.314967,-1.540165,-4.050818,-11.99484,-4.050817,12.8792,-6.059711,4.137599,-6.059711,10.10429,3.85871,7.484682,3.85871,-8.333254,-6.550614,-8.333254,-3.05222,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,6.952247,17.31014,2.051162,17.31014,6.755781,24.9916,2.540847,24.9916,-10.42133,-2.051162,-10.42133,2.849922,-1.11357,0.7554932,-1.932402,7.751005,6.556524,2.849922,6.556524,-2.051162,-4.846652,-5.975325,-4.219371,-3.237515,-1.864603,-5.975325,-1.714451,-3.237515,10.56976,18.93328,0.8480433,18.93328,9.573283,26.56556,1.21261,26.56556,-4.219371,0.6356249,-3.754363,7.785318,-1.714451,0.6356249,-2.000917,7.785318,6.755781,26.00825,2.540847,26.00825,6.550614,38.50826,3.05222,38.50826,12.37552,-2.930389,1.920849,-2.930389,11.4346,-0.283928,2.652677,-0.2839278,-14.79877,3.292294,-12.67039,4.819504,-13.77605,-0.2882525,-11.14659,-0.2882525,-11.14659,3.268649,-11.12944,3.27855,-0.2597617,3.082698,-0.1321926,5.40988,6.700553,3.082698,2.79114,5.40988,5.714473,5.40988,-6.013803,5.007306,-7.817199,5.007305,-6.021841,11.8857,-7.995955,11.8857,-0.5323317,-6.863822,-10.00504,-6.863822,-3.506384,3.054598,-7.230127,3.054598,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883,0.45134,-8.475615,-2.273857,-10.04901,-1.689373,-1.04883 + } + UVIndex: *408 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,13,12,14,12,13,15,17,16,18,16,17,19,16,18,20,19,18,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,29,28,31,29,30,32,31,30,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,65,64,67,65,66,68,65,67,69,71,70,72,70,71,73,72,71,74,76,75,77,75,76,78,80,79,81,79,80,82,81,80,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,105,106,104,106,107,104,108,104,107,109,111,110,112,110,111,113,115,114,116,114,115,117,116,115,118,117,115,119,118,115,120,122,121,123,121,122,124,123,122,125,127,126,128,126,127,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,139,140,138,140,141,138,142,138,141,143,145,144,146,144,145,144,147,143,148,143,147,149,147,144,150,152,151,152,153,151,153,154,151,155,151,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,167,166,169,171,170,172,170,171,173,175,174,176,174,175,177,176,175,178,177,175,179,181,180,182,180,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,201,200,202,200,201,203,200,202,204,200,203,205,207,206,208,206,207,209,208,207,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,223,222,224,226,225,227,229,228,230,232,231,233,235,234,236,238,237,239,241,240,242,244,243,245,247,246,248,250,249,251,253,252 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *136 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallA, Model::RootNode + C: "OO",4858823929554387636,0 + + ;Geometry::, Model::Mesh stone_tallA + C: "OO",4795733150170684253,4858823929554387636 + + ;Material::stone, Model::Mesh stone_tallA + C: "OO",3038,4858823929554387636 + + ;Material::_defaultMat, Model::Mesh stone_tallA + C: "OO",3004,4858823929554387636 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallA.fbx.import new file mode 100644 index 0000000..227550f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://r8bvgj12xpy5" +path="res://.godot/imported/stone_tallA.fbx-2d9b3d5cfebac6d93b7440eb21f59cd8.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallA.fbx" +dest_files=["res://.godot/imported/stone_tallA.fbx-2d9b3d5cfebac6d93b7440eb21f59cd8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallB.fbx new file mode 100644 index 0000000..384b548 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 246 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4779207938608320023, "Model::stone_tallB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5359982267872608241, "Geometry::", "Mesh" { + Vertices: *903 { + a: 3.600569,-5.414336E-15,0.8356034,3.090084,-5.414336E-15,3.614162,2.336455,2.484108,1.068408,2.071961,2.484108,2.508045,0.1186151,6.099324,-1.639817,0.2828816,8.837796,-1.355299,-0.4897795,6.099324,-0.5860467,-0.1612463,8.837796,-0.5860467,-0.7064554,1.76792,-2.49302,-0.4950735,6.099324,-2.126896,-1.117665,1.76792,-1.780785,-1.184505,4.525875,-1.198766,-1.550413,6.099324,-0.2989933,-1.703989,4.525875,-0.2989933,-2.904344,0,-2.460769,-2.064731,1.76792,-1.903995,-3.10457,0,-1.713514,-2.145595,1.76792,-1.602207,-3.182681,0,0.9656523,-2.68504,1.967632,1.038892,-3.438868,0,1.409381,-2.557578,3.211651,1.409381,-2.192105,3.211651,0.776363,-2.904344,0,-2.460769,-1.119607,0,-3.850187,-2.064731,1.76792,-1.903995,-0.9078308,1.76792,-2.804643,-1.527445,1.76792,-1.780785,-1.117665,1.76792,-1.780785,-1.44506,4.525875,-1.198766,-1.184505,4.525875,-1.198766,2.939981,0,-3.7683,3.823942,0,-1.778684,2.763189,1.73184,-3.370378,3.470356,1.73184,-1.778684,0.1186151,6.099324,-1.639817,1.335404,6.099324,-1.639817,0.2828816,8.837796,-1.355299,1.171137,8.837796,-1.355299,-1.917444,3.211651,0.776363,-2.192105,3.211651,0.776363,-2.055423,4.525875,0.4990185,-2.347605,4.525875,0.4990185,-2.68504,1.967632,1.038892,1.792037,2.484108,1.834495,1.247873,2.484108,1.834495,1.615607,6.099324,1.528909,0.3659638,3.211651,1.772997,-0.635998,3.211651,1.772997,-0.4950735,6.099324,1.528909,0.7582186,1.472947,1.919966,2.670946,6.099324,-0.2989933,1.943798,6.099324,-0.5860467,1.615607,6.099324,-2.126896,1.335404,6.099324,-1.639817,-0.4950735,6.099324,-2.126896,0.1186151,6.099324,-1.639817,-0.4897795,6.099324,-0.5860467,1.615607,6.099324,1.528909,1.335404,6.099324,0.4677231,-0.4950735,6.099324,1.528909,0.1186151,6.099324,0.4677231,-1.550413,6.099324,-0.2989933,-1.703989,4.525875,-0.2989933,-1.550413,6.099324,-0.2989933,-1.594859,4.525875,-0.1099746,-0.4950735,6.099324,1.528909,-1.517063,3.211651,0.2469487,-0.635998,3.211651,1.772997,-0.4897795,6.099324,-0.5860467,-0.1612463,8.837796,-0.5860467,0.1186151,6.099324,0.4677231,0.2828816,8.837796,0.1832053,-2.868833,4.525875,-0.570265,-2.347605,4.525875,0.4990185,-3.823942,0,-0.3498736,-3.182681,0,0.9656523,-2.68504,1.967632,1.038892,3.090084,-5.414336E-15,3.614162,0.7112605,-5.414336E-15,3.850187,2.071961,2.484108,2.508045,1.516743,2.484108,2.563134,-1.119607,0,-3.850187,0.1982204,0,-3.497078,-0.9078308,1.76792,-2.804643,-0.6256052,1.76792,-2.729021,-0.7064554,1.76792,-2.49302,-0.5797861,1.76792,-2.49302,-0.4950735,6.099324,-2.126896,1.484263,3.68016,-2.331382,1.733667,3.68016,-2.331382,1.615607,6.099324,-2.126896,1.365716,1.73184,-2.496069,0.9604096,1.73184,-2.496069,0.3641428,-1.804779E-15,-2.642457,0.6718641,-2.707168E-15,-2.642457,1.551506,1.73184,-2.914245,1.647364,3.68016,-2.698489,1.365716,1.73184,-2.496069,1.484263,3.68016,-2.331382,1.615265,8.837796,-0.5860467,1.943798,6.099324,-0.5860467,1.171137,8.837796,0.1832053,1.335404,6.099324,0.4677231,1.247873,2.484108,1.834495,1.516743,2.484108,2.563134,0.7582186,1.472947,1.919966,0.4526362,-2.707168E-15,3.149316,0.7112605,-5.414336E-15,3.850187,1.615265,8.837796,-0.5860467,1.171137,8.837796,0.1832053,1.171137,8.837796,-1.355299,0.2828816,8.837796,-1.355299,0.2828816,8.837796,0.1832053,-0.1612463,8.837796,-0.5860467,1.335404,6.099324,0.4677231,0.1186151,6.099324,0.4677231,1.171137,8.837796,0.1832053,0.2828816,8.837796,0.1832053,3.470356,1.73184,-1.778684,3.06505,1.73184,-1.778684,2.763189,1.73184,-3.370378,2.560536,1.73184,-2.914245,1.348853,1.73184,-3.370378,1.551506,1.73184,-2.914245,1.365716,1.73184,-2.496069,0.9604096,1.73184,-2.496069,2.936577,1.73184,-0.5772536,2.70753,1.73184,-0.9739767,1.172061,0,-3.7683,1.348853,1.73184,-3.370378,0.6718641,-2.707168E-15,-2.642457,0.9604096,1.73184,-2.496069,-1.594859,4.525875,-0.1099746,-1.517063,3.211651,0.2469487,-2.055423,4.525875,0.4990185,-1.917444,3.211651,0.776363,1.551506,1.73184,-2.914245,2.560536,1.73184,-2.914245,1.647364,3.68016,-2.698489,2.464678,3.68016,-2.698489,-1.184505,4.525875,-1.198766,-1.703989,4.525875,-0.2989933,-1.44506,4.525875,-1.198766,-2.868833,4.525875,-0.7874518,-2.055423,4.525875,0.4990185,-2.347605,4.525875,0.4990185,-2.868833,4.525875,-0.570265,-1.594859,4.525875,-0.1099746,2.560536,1.73184,-2.914245,3.06505,1.73184,-1.778684,2.464678,3.68016,-2.698489,2.873335,3.68016,-1.778684,-3.438868,0,1.409381,-2.557578,3.211651,1.409381,-2.214854,0,3.529435,-1.774209,3.211651,2.766216,1.335404,6.099324,-1.639817,1.943798,6.099324,-0.5860467,1.171137,8.837796,-1.355299,1.615265,8.837796,-0.5860467,-3.823942,0,-1.505695,-3.10457,0,-1.713514,-2.868833,4.525875,-0.7874518,-2.145595,1.76792,-1.602207,-1.527445,1.76792,-1.780785,-1.44506,4.525875,-1.198766,0.2331741,0,3.529435,-2.214854,0,3.529435,-0.2074709,3.211651,2.766216,-1.774209,3.211651,2.766216,1.733667,3.68016,-2.331382,2.516489,3.68016,-0.975495,1.615607,6.099324,-2.126896,2.670946,6.099324,-0.2989933,2.70753,1.73184,-0.9739767,2.936577,1.73184,-0.5772536,3.209906,-3.609557E-15,-0.396613,3.266266,-5.414336E-15,-0.2989933,1.172061,0,-3.7683,2.939981,0,-3.7683,1.348853,1.73184,-3.370378,2.763189,1.73184,-3.370378,0.3659638,3.211651,1.772997,-0.2074709,3.211651,2.766216,-0.635998,3.211651,1.772997,-1.774209,3.211651,2.766216,-1.517063,3.211651,0.2469487,-1.917444,3.211651,0.776363,-2.557578,3.211651,1.409381,-2.192105,3.211651,0.776363,2.670946,6.099324,-0.2989933,3.266266,-5.414336E-15,-0.2989933,1.615607,6.099324,1.528909,3.093284,-4.511946E-15,0.0006203122,2.284095,2.484108,0.9822246,1.792037,2.484108,1.834495,3.093284,-4.511946E-15,0.0006203122,3.600569,-5.414336E-15,0.8356034,2.284095,2.484108,0.9822246,2.336455,2.484108,1.068408,-3.823942,0,-1.505695,-2.868833,4.525875,-0.7874518,-3.823942,0,-0.3498736,-2.868833,4.525875,-0.570265,2.873335,3.68016,-1.778684,3.06505,1.73184,-1.778684,2.516489,3.68016,-0.975495,2.70753,1.73184,-0.9739767,-0.5797861,1.76792,-2.49302,-0.7064554,1.76792,-2.49302,-0.6256052,1.76792,-2.729021,-0.9078308,1.76792,-2.804643,-1.117665,1.76792,-1.780785,-2.064731,1.76792,-1.903995,-1.527445,1.76792,-1.780785,-2.145595,1.76792,-1.602207,3.470356,1.73184,-1.778684,3.823942,0,-1.778684,2.936577,1.73184,-0.5772536,3.209906,-3.609557E-15,-0.396613,0.3659638,3.211651,1.772997,0.7582186,1.472947,1.919966,-0.2074709,3.211651,2.766216,0.4526362,-2.707168E-15,3.149316,0.2331741,0,3.529435,0.1982204,0,-3.497078,0.3641428,-1.804779E-15,-2.642457,-0.6256052,1.76792,-2.729021,-0.5797861,1.76792,-2.49302,2.873335,3.68016,-1.778684,2.516489,3.68016,-0.975495,2.464678,3.68016,-2.698489,1.733667,3.68016,-2.331382,1.647364,3.68016,-2.698489,1.484263,3.68016,-2.331382,2.336455,2.484108,1.068408,2.071961,2.484108,2.508045,2.284095,2.484108,0.9822246,1.792037,2.484108,1.834495,1.516743,2.484108,2.563134,1.247873,2.484108,1.834495,3.266266,-5.414336E-15,-0.2989933,3.209906,-3.609557E-15,-0.396613,3.093284,-4.511946E-15,0.0006203122,3.600569,-5.414336E-15,0.8356034,3.093284,-4.511946E-15,0.0006203122,3.090084,-5.414336E-15,3.614162,3.823942,0,-1.778684,2.939981,0,-3.7683,3.209906,-3.609557E-15,-0.396613,3.093284,-4.511946E-15,0.0006203122,3.209906,-3.609557E-15,-0.396613,2.939981,0,-3.7683,3.090084,-5.414336E-15,3.614162,3.093284,-4.511946E-15,0.0006203122,0.7112605,-5.414336E-15,3.850187,3.090084,-5.414336E-15,3.614162,2.939981,0,-3.7683,1.172061,0,-3.7683,0.7112605,-5.414336E-15,3.850187,2.939981,0,-3.7683,0.6718641,-2.707168E-15,-2.642457,0.7112605,-5.414336E-15,3.850187,1.172061,0,-3.7683,0.4526362,-2.707168E-15,3.149316,0.7112605,-5.414336E-15,3.850187,0.6718641,-2.707168E-15,-2.642457,0.3641428,-1.804779E-15,-2.642457,0.4526362,-2.707168E-15,3.149316,0.6718641,-2.707168E-15,-2.642457,0.2331741,0,3.529435,0.4526362,-2.707168E-15,3.149316,0.3641428,-1.804779E-15,-2.642457,0.1982204,0,-3.497078,0.2331741,0,3.529435,0.3641428,-1.804779E-15,-2.642457,-2.214854,0,3.529435,0.2331741,0,3.529435,0.1982204,0,-3.497078,-1.119607,0,-3.850187,-2.214854,0,3.529435,0.1982204,0,-3.497078,-2.904344,0,-2.460769,-2.214854,0,3.529435,-1.119607,0,-3.850187,-3.182681,0,0.9656523,-2.214854,0,3.529435,-2.904344,0,-2.460769,-3.438868,0,1.409381,-2.214854,0,3.529435,-3.182681,0,0.9656523,-3.10457,0,-1.713514,-3.182681,0,0.9656523,-2.904344,0,-2.460769,-3.10457,0,-1.713514,-3.823942,0,-1.505695,-3.182681,0,0.9656523,-3.823942,0,-0.3498736,-3.182681,0,0.9656523,-3.823942,0,-1.505695 + } + PolygonVertexIndex: *516 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,14,16,-16,17,15,-17,18,20,-20,20,21,-20,22,19,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,41,42,-41,43,40,-43,44,46,-46,47,45,-47,48,47,-47,49,48,-47,45,47,-51,51,53,-53,54,52,-54,55,54,-54,56,54,-56,57,56,-56,51,52,-59,59,58,-53,60,58,-60,55,60,-58,61,60,-60,57,60,-62,62,60,-56,63,65,-65,66,64,-66,67,66,-66,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,74,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,89,-89,91,90,-89,89,92,-88,92,93,-88,87,93,-95,95,94,-94,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,111,-111,112,110,-112,113,110,-113,114,113,-113,115,117,-117,118,116,-118,119,121,-121,122,120,-122,123,122,-122,124,122,-124,125,124,-124,126,125,-124,119,120,-128,128,127,-121,129,131,-131,132,130,-132,133,135,-135,136,134,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,142,-145,146,145,-145,147,146,-145,142,145,-149,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,164,-164,166,165,-164,167,169,-169,170,168,-170,171,173,-173,174,172,-174,175,172,-175,176,175,-175,177,176,-175,178,177,-175,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,186,-186,188,186,-188,189,186,-189,190,189,-189,191,193,-193,194,192,-194,195,194,-194,196,195,-194,197,199,-199,200,198,-200,201,203,-203,204,202,-204,205,207,-207,208,206,-208,209,211,-211,212,210,-212,213,210,-213,214,213,-213,215,213,-215,216,215,-215,217,219,-219,220,218,-220,221,223,-223,224,222,-224,225,224,-224,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,233,-233,235,233,-235,236,238,-238,239,237,-239,240,237,-240,241,240,-240,242,244,-244,245,247,-247,248,250,-250,251,253,-253,254,253,-256,256,258,-258,259,261,-261,262,264,-264,265,267,-267,268,270,-270,271,273,-273,274,276,-276,277,279,-279,280,282,-282,283,285,-285,286,288,-288,289,291,-291,292,294,-294,295,297,-297,298,300,-300 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1548 { + a: 0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,0.8854463,0.4353404,0.1626765,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,-0.8613888,0.1033404,-0.497323,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.862948,0.08422745,-0.4982233,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,-0.8498368,0.4753149,-0.2277129,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.842561,0.2312022,-0.4864529,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.540467,0.4753147,-0.6942414,-0.1370748,0.2084543,-0.9683787,-0.1370748,0.2084543,-0.9683787,0,0.206485,-0.9784498,0,0.206485,-0.9784498,0,0.206485,-0.9784498,-0.1370748,0.2084543,-0.9683787,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,0.8983616,0.1834159,-0.3991303,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,0,0.1033405,-0.9946461,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.206485,0.9784498,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,0.08422738,0.9964465,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.862948,0.08422739,0.4982234,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,-0.8613886,0.1033403,0.4973232,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,-0.8795208,0.2064851,0.4287274,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,0.08888711,0.4353401,0.8958672,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,0.2277123,0.4753146,-0.8498371,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,0,0.08422735,-0.9964465,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,-0.9101922,0.08956347,-0.4043865,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,0.8613887,0.1033404,0.4973231,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,-0.8445987,0.4353403,0.3116601,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,0.1033403,0.9946461,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,-0.8983617,0.1834154,-0.3991303,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0.780404,0.206485,0.5901979,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0,0.110067,-0.9939242,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,0.9101924,0.08956332,-0.4043863,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,-0.8425611,0.2312022,0.4864528,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,0.8613888,0.1033404,-0.4973229,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.1370748,0.2084543,-0.9683787,-0.2715596,0.2064849,-0.9400102,-0.2715596,0.2064849,-0.9400102,-0.1370748,0.2084543,-0.9683787,-0.1370748,0.2084543,-0.9683787,-0.2715596,0.2064849,-0.9400102,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0,0.2312021,0.9729057,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0.8629481,0.08422744,-0.4982232,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0,0.2239334,-0.9746044,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.862948,0.08422743,0.4982232,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,0.7694012,0.4353405,-0.4674404,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,-0.9784498,0.2064853,0,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,0.9101925,0.08956337,0.4043861,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8983616,0.1834161,0.3991303,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8425611,0.2312022,0.4864529,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0.8636886,0.475315,-0.167683,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *602 { + a: -0.6741405,-6.328359,-11.79644,-6.328359,-2.47491,4.535046,-8.237636,4.535046,-5.824532,23.59274,-5.177812,34.43216,-1.034022,23.59274,-1.680741,34.43216,-7.109412,6.319356,-6.277201,23.43294,-3.871545,6.319356,-1.755547,17.21617,2.032563,23.43294,2.334877,17.21617,-6.398511,-6.441593,-5.136722,1.469513,-3.352781,-6.441593,-3.906666,1.469513,9.55756,-2.069402,8.827664,5.892913,11.57478,-2.069402,9.839955,10.92702,6.962214,10.92702,3.071292,-6.972269,-5.833458,-6.972268,1.809501,0.9388366,-3.962727,0.9388357,6.013565,5.362659,4.400254,5.362659,5.689212,16.4599,4.663405,16.4599,8.85839,-3.044953,0.2869548,-3.044954,7.70931,3.89098,0.8521608,3.89098,-0.4669887,23.21736,-5.257497,23.21736,-1.113707,34.05678,-4.610777,34.05678,-7.548994,11.74068,-8.630333,11.74068,-8.092218,17.02875,-9.242541,17.02875,-10.57102,6.735092,7.055263,9.136875,4.912884,9.136875,6.360656,23.42077,1.440802,12.01143,-2.503929,12.01143,-1.949108,23.42077,2.985113,5.14173,-10.51554,-1.177139,-7.65275,-2.307271,-6.360656,-8.373606,-5.257497,-6.455974,1.949108,-8.373606,-0.4669887,-6.455974,1.928266,-2.307271,-6.360656,6.019327,-5.257497,1.841429,1.949108,6.019327,-0.4669887,1.841429,6.10399,-1.177139,-4.373742,17.31532,-4.071428,23.53209,-3.514451,17.31532,4.238336,23.53209,-2.144361,12.12275,4.793157,12.12275,-2.962288,23.83117,-2.315569,34.67059,1.828219,23.83117,1.181501,34.67059,-6.9671,15.54118,-2.283805,15.54117,-7.834785,-2.669679,-2.072985,-2.669679,-0.9553237,5.24752,10.70135,-6.687099,1.28992,-6.687099,7.142548,4.176304,4.945916,4.176303,8.180928,-6.417162,2.809609,-6.417162,6.310196,1.493941,5.159875,1.493942,2.781321,6.108887,2.282623,6.108887,1.949108,23.22247,-5.843556,13.66424,-6.825459,13.66424,-6.360656,23.22247,-5.376835,5.966334,-3.78114,5.966334,-1.433633,-0.8762488,-2.645134,-0.8762488,-12.96522,6.8736,-12.34218,14.5751,-11.16369,6.8736,-10.76066,14.5751,5.177812,34.15828,5.82453,23.31885,1.680741,34.15828,1.034024,23.31885,8.476603,9.722602,11.53433,9.722602,8.124928,5.300632,12.24912,-1.140803,15.19032,-1.140803,-6.359313,-2.307271,-4.610777,0.7212808,-4.610777,-5.335823,-1.113707,-5.335823,-1.113707,0.7212808,0.6348282,-2.307271,5.257497,23.69423,0.4669887,23.69423,4.610777,34.53365,1.113707,34.53365,-13.66282,-7.002693,-12.06713,-7.002693,-10.8787,-13.2692,-10.08085,-11.47341,-5.310445,-13.2692,-6.108291,-11.47341,-5.376835,-9.827045,-3.78114,-9.827045,-11.56133,-2.272652,-10.65957,-3.834554,-15.43148,-0.33137,-14.2824,6.604563,-10.58125,-0.33137,-10.5158,6.604563,-3.442123,18.52243,-4.378158,13.23436,-6.448183,18.52243,-6.991408,13.23436,-6.108291,5.513998,-10.08085,5.513998,-6.485685,13.23144,-9.703456,13.23144,4.663405,-4.71955,6.708619,-1.177139,5.689212,-4.71955,11.29462,-3.100204,8.092218,1.96464,9.242541,1.96464,11.29462,-2.245138,6.278973,-0.4329709,6.39214,5.548538,1.500046,5.548538,5.769099,13.25004,1.806502,13.25004,-1.964072,-3.352284,-0.2292489,9.644139,7.673832,-3.352284,5.939011,9.644139,2.96229,23.08042,-1.828219,23.08042,2.315571,33.91984,-1.181501,33.91984,12.8182,-2.038707,9.870214,-2.038707,9.990464,16.17215,6.364666,5.074908,3.831487,5.074908,4.155838,16.17215,0.9180082,-3.212649,-8.719898,-3.212649,-0.8168147,9.783774,-6.985074,9.783774,4.536233,13.55292,-1.627719,13.55292,4.071428,23.11115,-4.238335,23.11115,-2.008961,5.855011,-3.812488,5.855011,-4.966439,-0.987572,-5.410225,-0.9875721,-4.614413,-3.322238,-11.57473,-3.322238,-5.310445,3.673696,-10.8787,3.673696,-1.440802,6.980305,0.8168147,10.89061,2.503929,6.980305,6.985074,10.89061,5.972689,0.972239,7.548994,3.056547,10.0692,5.548743,8.630333,3.056547,6.2772,23.2103,7.44909,-0.8884247,-2.032563,23.2103,6.087028,-0.8884248,1.147307,8.926405,-2.72717,8.926405,-6.325355,-4.530481,-10.17182,-4.530481,-7.974035,6.332923,-8.371052,6.332923,-5.927934,-3.108613,-3.100204,15.10224,-1.377455,-3.108613,-2.245138,15.10224,10.99253,13.75934,11.29899,6.057834,7.532323,13.75934,7.832239,6.057834,2.282623,-9.815039,2.781321,-9.815039,2.463013,-10.74418,3.574137,-11.0419,4.400254,-7.010963,8.128862,-7.496045,6.013565,-7.010963,8.447225,-6.307902,11.94687,4.933962,12.51208,-2.001971,6.771008,4.933962,6.557996,-2.001971,-5.32472,11.20629,-5.053663,4.170365,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,13.36692,-1.611376,9.939447,-1.611376,11.01666,6.29973,10.07017,6.29973,-11.31234,-7.002693,-9.907436,-3.840531,-9.703456,-10.62397,-6.825459,-9.178671,-6.485685,-10.62397,-5.843556,-9.178671,-9.198641,4.206331,-8.157327,9.874194,-8.9925,3.867026,-7.055263,7.222422,-5.971429,10.09108,-4.912884,7.222422,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135,-11.57478,-1.790135,-9.839954,11.20629,-9.846729,-1.790135 + } + UVIndex: *516 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,14,16,15,17,15,16,18,20,19,20,21,19,22,19,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,41,42,40,43,40,42,44,46,45,47,45,46,48,47,46,49,48,46,45,47,50,51,53,52,54,52,53,55,54,53,56,54,55,57,56,55,51,52,58,59,58,52,60,58,59,55,60,57,61,60,59,57,60,61,62,60,55,63,65,64,66,64,65,67,66,65,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,74,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,89,88,91,90,88,89,92,87,92,93,87,87,93,94,95,94,93,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,111,110,112,110,111,113,110,112,114,113,112,115,117,116,118,116,117,119,121,120,122,120,121,123,122,121,124,122,123,125,124,123,126,125,123,119,120,127,128,127,120,129,131,130,132,130,131,133,135,134,136,134,135,137,139,138,140,138,139,141,143,142,144,142,143,145,142,144,146,145,144,147,146,144,142,145,148,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,158,159,161,163,162,164,162,163,165,164,163,166,165,163,167,169,168,170,168,169,171,173,172,174,172,173,175,172,174,176,175,174,177,176,174,178,177,174,179,181,180,182,180,181,183,185,184,186,184,185,187,186,185,188,186,187,189,186,188,190,189,188,191,193,192,194,192,193,195,194,193,196,195,193,197,199,198,200,198,199,201,203,202,204,202,203,205,207,206,208,206,207,209,211,210,212,210,211,213,210,212,214,213,212,215,213,214,216,215,214,217,219,218,220,218,219,221,223,222,224,222,223,225,224,223,226,228,227,229,227,228,230,232,231,233,231,232,234,233,232,235,233,234,236,238,237,239,237,238,240,237,239,241,240,239,242,244,243,245,247,246,248,250,249,251,253,252,254,253,255,256,258,257,259,261,260,262,264,263,265,267,266,268,270,269,271,273,272,274,276,275,277,279,278,280,282,281,283,285,284,286,288,287,289,291,290,292,294,293,295,297,296,298,300,299 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *172 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallB, Model::RootNode + C: "OO",4779207938608320023,0 + + ;Geometry::, Model::Mesh stone_tallB + C: "OO",5359982267872608241,4779207938608320023 + + ;Material::stone, Model::Mesh stone_tallB + C: "OO",3038,4779207938608320023 + + ;Material::_defaultMat, Model::Mesh stone_tallB + C: "OO",3004,4779207938608320023 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallB.fbx.import new file mode 100644 index 0000000..66b69c5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bea6aiqatdh3q" +path="res://.godot/imported/stone_tallB.fbx-a242a581c6d92c6adfe48f9bca27ebfb.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallB.fbx" +dest_files=["res://.godot/imported/stone_tallB.fbx-a242a581c6d92c6adfe48f9bca27ebfb.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallC.fbx new file mode 100644 index 0000000..be4317d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallC.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 334 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5369931813344529905, "Model::stone_tallC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5139731571539157602, "Geometry::", "Mesh" { + Vertices: *231 { + a: 2.280972,0,-1.109762,2.280972,0,1.524078,1.368583,6.45832,-0.6658571,1.368583,6.45832,0.9144468,-1.368583,6.45832,0.3006557,-1.368583,6.45832,0.9144468,-2.280972,0,0.5010928,-2.280972,0,1.524078,2.280972,0,1.524078,-1.140486,0,2.182538,1.368583,6.45832,0.9144468,-0.6842914,6.45832,1.309523,0.3421458,6.45832,1.111985,-0.5574309,6.45832,-0.5044338,0.2537211,6.45832,-1.309523,-0.2492688,7.82936,-0.3746208,0.3023147,7.82936,-0.9220818,1.368583,6.45832,-0.6658571,1.368583,6.45832,0.9144468,1.060421,7.82936,-0.4843888,1.060421,7.82936,0.5902179,1.368583,6.45832,0.9144468,0.3421458,6.45832,1.111985,1.060421,7.82936,0.5902179,0.3624434,7.82936,0.7245437,0.2537211,6.45832,-1.309523,1.368583,6.45832,-0.6658571,0.3023147,7.82936,-0.9220818,1.060421,7.82936,-0.4843888,-2.280972,0,0.5010928,0.4228684,0,-2.182538,-1.368583,6.45832,0.3006557,0.2537211,6.45832,-1.309523,-0.5574309,6.45832,-0.5044338,0.4228684,0,-2.182538,2.280972,0,-1.109762,0.2537211,6.45832,-1.309523,1.368583,6.45832,-0.6658571,0.3421458,6.45832,1.111985,-0.6842914,6.45832,1.309523,-0.5574309,6.45832,-0.5044338,-1.368583,6.45832,0.3006557,-1.368583,6.45832,0.9144468,1.060421,7.82936,-0.4843888,1.060421,7.82936,0.5902179,0.3023147,7.82936,-0.9220818,0.3624434,7.82936,0.7245437,-0.2492688,7.82936,-0.3746208,-0.5574309,6.45832,-0.5044338,-0.2492688,7.82936,-0.3746208,0.3421458,6.45832,1.111985,0.3624434,7.82936,0.7245437,-1.140486,0,2.182538,-2.280972,0,1.524078,-0.6842914,6.45832,1.309523,-1.368583,6.45832,0.9144468,1.368583,6.45832,-0.6658571,1.368583,6.45832,0.9144468,0.2537211,6.45832,-1.309523,0.3421458,6.45832,1.111985,0.2537211,6.45832,-1.309523,1.368583,6.45832,0.9144468,-0.5574309,6.45832,-0.5044338,0.2537211,6.45832,-1.309523,0.3421458,6.45832,1.111985,2.280972,0,1.524078,2.280972,0,-1.109762,-1.140486,0,2.182538,0.4228684,0,-2.182538,-1.140486,0,2.182538,2.280972,0,-1.109762,-2.280972,0,0.5010928,-1.140486,0,2.182538,0.4228684,0,-2.182538,-2.280972,0,1.524078,-1.140486,0,2.182538,-2.280972,0,0.5010928 + } + PolygonVertexIndex: *111 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,32,-32,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,39,-42,43,45,-45,46,44,-46,47,46,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,61,-61,62,64,-64,65,67,-67,68,70,-70,71,73,-73,74,76,-76 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *333 { + a: 0.9901679,0.1398844,0,0.9901679,0.1398844,0,0.9901679,0.1398844,0,0.9901679,0.1398844,0,0.9901679,0.1398844,0,0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,-0.9901679,0.1398844,0,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,0.1876496,0.11855,0.9750557,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,-0.6871886,0.2200104,-0.6923635,0.9756588,0.2192941,0,0.9756588,0.2192941,0,0.9756588,0.2192941,0,0.9756588,0.2192941,0,0.9756588,0.2192941,0,0.9756588,0.2192941,0,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.1822317,0.2648868,0.9469036,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,0.4875943,0.2213756,-0.8445382,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,-0.7023437,0.07726076,-0.7076328,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,0.4958175,0.1290731,-0.8587812,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,-0.8640849,0.1486851,0.4808845,-0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,-0.4942939,0.1506459,0.8561421,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *154 { + a: 4.36914,-1.25619,-6.000309,-1.25619,2.621485,24.42274,-3.600184,24.42274,1.183684,24.42274,3.600184,24.42274,1.972806,-1.25619,6.000309,-1.25619,7.684434,-0.8997099,-6.033056,-0.8997099,4.610661,24.70732,-3.619833,24.70732,0.4954138,24.70732,0.1586258,24.1532,-4.340835,24.1532,-0.3424479,29.68657,-3.402083,29.68657,2.621485,23.62596,-3.600184,23.62596,1.907043,29.15843,-2.323693,29.15843,4.610661,23.31203,0.4954138,23.31203,3.660521,28.90978,0.8621515,28.90978,1.712726,23.69661,-3.35551,23.69661,0.7843644,29.23174,-2.662037,29.23174,7.763481,-0.3805781,-7.234725,-0.3805782,4.658089,25.12211,-4.340835,25.12211,0.1586259,25.12211,2.854544,-1.067936,-5.592516,-1.067936,1.712726,24.573,-3.355509,24.573,-1.347031,4.377893,2.694061,5.155602,2.19461,-1.98596,5.388123,1.183684,5.388123,3.600184,-4.174887,-1.907043,-4.174887,2.323693,-1.190215,-3.630243,-1.426943,2.852534,0.9813733,-1.474885,-2.802543,25.0023,-1.765983,30.46077,4.48044,25.0023,3.186445,30.46077,0.407792,-1.459235,-4.776931,-1.459235,0.2446761,24.26074,-2.866159,24.26074,0.8621515,28.90978,3.660521,28.90978,0.4954138,23.31203,0.8621515,28.90978,3.660521,28.90978,0.4954138,23.31203,0.8621515,28.90978,3.660521,28.90978,0.4954138,23.31203,-2.866159,24.26074,0.2446761,24.26074,-4.776931,-1.459235,-2.866159,24.26074,0.2446761,24.26074,-4.776931,-1.459235,-2.866159,24.26074,0.2446761,24.26074,-4.776931,-1.459235,-2.866159,24.26074,0.2446761,24.26074,-4.776931,-1.459235 + } + UVIndex: *111 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,32,31,34,36,35,37,35,36,38,40,39,41,39,40,42,39,41,43,45,44,46,44,45,47,46,45,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,61,60,62,64,63,65,67,66,68,70,69,71,73,72,74,76,75 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *37 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallC, Model::RootNode + C: "OO",5369931813344529905,0 + + ;Geometry::, Model::Mesh stone_tallC + C: "OO",5139731571539157602,5369931813344529905 + + ;Material::stone, Model::Mesh stone_tallC + C: "OO",3038,5369931813344529905 + + ;Material::_defaultMat, Model::Mesh stone_tallC + C: "OO",3004,5369931813344529905 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallC.fbx.import new file mode 100644 index 0000000..8ce07fd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://uq5fut1f25u4" +path="res://.godot/imported/stone_tallC.fbx-2b6174cb74fd390ed6820a2a56a46c8b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallC.fbx" +dest_files=["res://.godot/imported/stone_tallC.fbx-2b6174cb74fd390ed6820a2a56a46c8b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallD.fbx new file mode 100644 index 0000000..6de053d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallD.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 423 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5607190641743813483, "Model::stone_tallD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5237634113953882963, "Geometry::", "Mesh" { + Vertices: *222 { + a: 0.9954082,7.721119,-0.8600725,-0.5590632,7.721119,-0.3172419,0.4133646,7.721119,-1.196115,-0.01517544,7.721119,-1.014223,-0.371799,7.721119,-0.6825077,2.214182,0,-0.1903871,-0.3024247,0,2.307409,1.328509,5.15944,-0.1142322,-0.225128,3.296751,1.717659,0.3114787,5.15944,0.8951963,0.3114787,5.15944,0.8951963,-0.225128,3.296751,1.717659,-0.7491755,5.15944,1.056672,1.328509,5.15944,-0.9043842,-0.8921642,5.15944,-0.1289118,0.9954082,7.721119,-0.8600725,-0.5590632,7.721119,-0.3172419,-0.3024247,0,2.307409,-2.214182,0,1.203656,-0.225128,3.296751,1.717659,-1.328509,5.15944,0.7221936,-0.7491755,5.15944,1.056672,2.214182,0,-1.507307,2.214182,0,-0.1903871,1.328509,5.15944,-0.9043842,1.328509,5.15944,-0.1142322,0.4970185,5.15944,-1.384446,1.328509,5.15944,-0.9043842,0.4133646,7.721119,-1.196115,0.9954082,7.721119,-0.8600725,-0.4558195,5.15944,-0.9800172,-0.3453872,6.558528,-0.9434234,-0.8921642,5.15944,-0.1289118,-0.371799,7.721119,-0.6825077,-0.5590632,7.721119,-0.3172419,-0.4558195,5.15944,-0.9800172,0.4970185,5.15944,-1.384446,-0.3453872,6.558528,-0.9434234,0.4133646,7.721119,-1.196115,-0.01517544,7.721119,-1.014223,-0.7596993,0,-1.633362,0.8283639,0,-2.307409,-0.4558195,5.15944,-0.9800172,0.4970185,5.15944,-1.384446,0.8283639,0,-2.307409,2.214182,0,-1.507307,0.4970185,5.15944,-1.384446,1.328509,5.15944,-0.9043842,1.328509,5.15944,-0.9043842,1.328509,5.15944,-0.1142322,-0.8921642,5.15944,-0.1289118,0.3114787,5.15944,0.8951963,-0.7491755,5.15944,1.056672,-1.328509,5.15944,0.7221936,-0.371799,7.721119,-0.6825077,-0.3453872,6.558528,-0.9434234,-0.01517544,7.721119,-1.014223,-0.7596993,0,-1.633362,-0.4558195,5.15944,-0.9800172,-2.214182,0,1.203656,-0.8921642,5.15944,-0.1289118,-1.328509,5.15944,0.7221936,2.214182,0,-0.1903871,2.214182,0,-1.507307,-0.3024247,0,2.307409,0.8283639,0,-2.307409,-0.3024247,0,2.307409,2.214182,0,-1.507307,-0.7596993,0,-1.633362,-0.3024247,0,2.307409,0.8283639,0,-2.307409,-2.214182,0,1.203656,-0.3024247,0,2.307409,-0.7596993,0,-1.633362 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,1,-3,4,1,-4,5,7,-7,8,6,-8,9,8,-8,10,12,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,20,-20,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,37,-37,38,36,-38,39,38,-38,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,51,-51,53,52,-51,54,56,-56,57,59,-59,60,58,-60,61,60,-60,62,64,-64,65,67,-67,68,70,-70,71,73,-73 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.7001914,0.1097825,0.7054644,0.1400703,0.3658947,0.9200551,0.1400703,0.3658947,0.9200551,0.1400703,0.3658947,0.9200551,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,0.3295664,0.02652923,0.9437596,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,-0.4931986,0.1643782,0.8542452,0.9855841,0.169186,0,0.9855841,0.169186,0,0.9855841,0.169186,0,0.9855841,0.169186,0,0.9855841,0.169186,0,0.9855841,0.169186,0,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,0.4984078,0.07974181,-0.8632676,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.8868791,0.08189522,-0.4546851,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.390121,0.05483303,-0.9191295,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,-0.3869576,0.1382374,-0.9116766,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,0.4914777,0.1838446,-0.8512642,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6736514,0.1472331,-0.7242349,-0.6736514,0.1472331,-0.7242349,-0.6736514,0.1472331,-0.7242349,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,-0.8845152,0.1095198,-0.4534734,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *148 { + a: -3.91893,-3.386112,2.201036,-1.248984,-1.62742,-4.709116,0.05974584,-3.993005,1.463776,-2.687038,6.715131,-0.6157545,-7.244489,-0.6157546,4.029079,19.82053,-5.39287,12.44251,-1.61239,19.82053,0.6818791,17.56179,-1.894028,9.681955,-3.54204,17.56179,6.111789,20.34904,-3.14876,20.34904,4.816172,30.43794,-1.666212,30.43794,3.511012,-1.391059,-5.179961,-1.391059,2.613632,11.76726,-3.107977,19.20181,-0.4742887,19.20181,5.934279,-1.474837,0.7495555,-1.474837,3.560568,19.13503,0.4497332,19.13503,1.030677,19.79365,-2.749334,19.79365,0.9451711,29.91122,-1.700837,29.91122,-2.614698,19.96959,-2.684846,25.49638,1.150813,19.96959,-1.72331,30.08893,-0.1072794,30.08893,0.1444375,20.049,-3.930818,20.049,-0.1994881,25.56553,-3.337956,30.14955,-1.505105,30.14955,0.2407297,-0.9798282,-6.551363,-0.9798282,0.1444374,19.52984,-3.930818,19.52984,1.717797,-1.74613,-4.582222,-1.74613,1.030678,18.91885,-2.749333,18.91885,-5.230351,-3.560568,-5.230351,-0.4497332,3.512458,-0.5075269,-1.226294,3.524395,2.94951,4.160125,5.230351,2.843282,-0.7582734,29.63036,-1.534029,25.0028,-2.675784,29.63036,-4.357829,-0.6127938,-2.614697,19.82289,8.193874,-0.6127938,1.150813,19.82289,4.916325,19.82289,-1.666212,30.43794,4.816172,30.43794,-3.14876,20.34904,-1.666212,30.43794,4.816172,30.43794,-3.14876,20.34904,-1.666212,30.43794,4.816172,30.43794,-3.14876,20.34904,-1.666212,30.43794,4.816172,30.43794,-3.14876,20.34904 + } + UVIndex: *114 { + a: 0,2,1,3,1,2,4,1,3,5,7,6,8,6,7,9,8,7,10,12,11,13,15,14,16,14,15,17,19,18,20,18,19,21,20,19,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,33,32,35,37,36,38,36,37,39,38,37,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,51,50,53,52,50,54,56,55,57,59,58,60,58,59,61,60,59,62,64,63,65,67,66,68,70,69,71,73,72 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallD, Model::RootNode + C: "OO",5607190641743813483,0 + + ;Geometry::, Model::Mesh stone_tallD + C: "OO",5237634113953882963,5607190641743813483 + + ;Material::stone, Model::Mesh stone_tallD + C: "OO",3038,5607190641743813483 + + ;Material::_defaultMat, Model::Mesh stone_tallD + C: "OO",3004,5607190641743813483 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallD.fbx.import new file mode 100644 index 0000000..1b8ff28 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cvk06w141jdrl" +path="res://.godot/imported/stone_tallD.fbx-3777d95ac1ecb0c4775d699fd09e6e89.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallD.fbx" +dest_files=["res://.godot/imported/stone_tallD.fbx-3777d95ac1ecb0c4775d699fd09e6e89.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallE.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallE.fbx new file mode 100644 index 0000000..1225a00 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallE.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 509 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallE.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallE.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5038155108646332416, "Model::stone_tallE", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4783353608445270758, "Geometry::", "Mesh" { + Vertices: *228 { + a: 0,0,2.63384,-2.280972,0,1.31692,0,3.82448,1.659319,-1.437013,3.82448,0.8296596,-0.4728172,3.82448,1.386338,-2.280972,0,-1.31692,0,0,-2.63384,-1.437013,3.82448,-0.8296596,0,3.82448,-1.659319,0,0,-2.63384,2.280972,0,-1.31692,0,3.82448,-1.659319,1.437013,3.82448,-0.8296596,0.8950217,3.82448,-1.142578,1.437013,3.82448,-0.8296596,1.437013,3.82448,-4.331469E-14,0.8950217,3.82448,-1.142578,0.7185065,3.82448,1.244489,-0.4728172,3.82448,1.386338,0,3.82448,1.659319,1.140486,0,1.97538,0,0,2.63384,0.7185065,3.82448,1.244489,0,3.82448,1.659319,-1.437013,3.82448,-0.8296596,-1.168829,4.43784,-0.6702307,-1.437013,3.82448,0.8296596,-1.168829,4.43784,0.6074451,2.280972,0,-1.31692,2.280972,0,0,1.437013,3.82448,-0.8296596,1.437013,3.82448,-4.331469E-14,0,3.82448,-1.659319,0.8950217,3.82448,-1.142578,-0.06232895,4.43784,-1.309069,0.6268377,4.43784,-0.911178,-1.437013,3.82448,-0.8296596,0,3.82448,-1.659319,-1.168829,4.43784,-0.6702307,-0.06232895,4.43784,-1.309069,0.6268377,4.43784,-0.911178,-0.4263981,4.43784,1.036087,-0.06232895,4.43784,-1.309069,-1.168829,4.43784,-0.6702307,-1.168829,4.43784,0.6074451,0.8950217,3.82448,-1.142578,-0.4728172,3.82448,1.386338,0.6268377,4.43784,-0.911178,-0.4263981,4.43784,1.036087,1.437013,3.82448,-4.331469E-14,2.280972,0,0,0.7185065,3.82448,1.244489,1.140486,0,1.97538,-0.4728172,3.82448,1.386338,-1.437013,3.82448,0.8296596,-0.4263981,4.43784,1.036087,-1.168829,4.43784,0.6074451,-2.280972,0,-1.31692,-1.437013,3.82448,-0.8296596,-2.280972,0,1.31692,-1.437013,3.82448,0.8296596,2.280972,0,0,2.280972,0,-1.31692,1.140486,0,1.97538,0,0,-2.63384,1.140486,0,1.97538,2.280972,0,-1.31692,0,0,2.63384,1.140486,0,1.97538,0,0,-2.63384,-2.280972,0,1.31692,0,0,2.63384,0,0,-2.63384,-2.280972,0,-1.31692,-2.280972,0,1.31692,0,0,-2.63384 + } + PolygonVertexIndex: *114 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,12,-12,14,16,-16,17,15,-17,18,17,-17,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,66,-66,67,69,-69,70,72,-72,73,75,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *342 { + a: -0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154887,0.8456793,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,-0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0.4882532,0.2154886,-0.8456793,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,0.4882531,0.2154886,0.8456793,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,-0.9162456,0.4006171,0,0.9765064,0.2154886,0,0.9765064,0.2154886,0,0.9765064,0.2154886,0,0.9765064,0.2154886,0,0.9765064,0.2154886,0,0.9765064,0.2154886,0,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,0.4389687,0.4787754,-0.7603161,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,-0.4570282,0.4055872,-0.7915961,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,0.8616451,0.20092,0.4660461,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,0.8506312,0.1877114,0.491112,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,-0.4413525,0.4699273,0.7644451,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,-0.9765064,0.2154886,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *152 { + a: 5.184725,-1.935133,-5.184723,-1.935133,3.266376,13.48413,-3.266376,13.48413,1.116918,13.48413,5.184723,-1.935132,-5.184725,-1.935133,3.266376,13.48413,-3.266376,13.48413,5.184725,-1.935132,-5.184723,-1.935132,3.266376,13.48413,-3.266376,13.48413,-0.8024506,13.48413,-5.65753,-3.266376,-5.65753,-1.705303E-13,-3.523708,-4.498339,-2.828766,4.899565,1.861485,5.458024,0,6.532753,7.482743E-07,-1.935133,-5.184724,-1.935133,8.574106E-07,13.48413,-3.266376,13.48413,-3.266376,11.52941,-2.638704,14.16496,3.266376,11.52941,2.391516,14.16496,5.184724,-1.935132,2.130926E-16,-1.935132,3.266376,13.48413,1.706645E-13,13.48413,3.266376,10.51042,-0.8024509,10.51042,2.78942,13.26097,-0.3435762,13.26097,3.266377,11.46833,-3.266376,11.46833,2.665826,14.11019,-2.364393,14.11019,-2.467865,-3.587315,1.678733,4.079084,0.2453896,-5.153813,4.601687,-2.638704,4.601687,2.391516,5.633053,14.55722,-5.686375,14.55722,4.329418,17.02229,-4.386541,17.02229,2.828764,13.86965,4.490102,-1.459847,-2.828765,13.86965,-4.490104,-1.459847,1.116918,10.63227,-3.266377,10.63227,0.5857163,13.36796,-2.789421,13.36796,-5.184724,-1.935132,-3.266376,13.48413,5.184724,-1.935132,3.266376,13.48413,-3.266376,13.48413,8.574106E-07,13.48413,-5.184724,-1.935133,-3.266376,13.48413,8.574106E-07,13.48413,-5.184724,-1.935133,-3.266376,13.48413,8.574106E-07,13.48413,-5.184724,-1.935133,-3.266376,13.48413,8.574106E-07,13.48413,-5.184724,-1.935133,-3.266376,13.48413,8.574106E-07,13.48413,-5.184724,-1.935133 + } + UVIndex: *114 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,12,11,14,16,15,17,15,16,18,17,16,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,58,59,61,63,62,64,66,65,67,69,68,70,72,71,73,75,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *38 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallE, Model::RootNode + C: "OO",5038155108646332416,0 + + ;Geometry::, Model::Mesh stone_tallE + C: "OO",4783353608445270758,5038155108646332416 + + ;Material::stone, Model::Mesh stone_tallE + C: "OO",3038,5038155108646332416 + + ;Material::_defaultMat, Model::Mesh stone_tallE + C: "OO",3004,5038155108646332416 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallE.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallE.fbx.import new file mode 100644 index 0000000..4884814 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallE.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cpvhlswfh4x0m" +path="res://.godot/imported/stone_tallE.fbx-63508634940d8077fcf5da98f6bd6091.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallE.fbx" +dest_files=["res://.godot/imported/stone_tallE.fbx-63508634940d8077fcf5da98f6bd6091.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallF.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallF.fbx new file mode 100644 index 0000000..af5fc53 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallF.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 595 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallF.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallF.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5252375521901105697, "Model::stone_tallF", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5432676581921491767, "Geometry::", "Mesh" { + Vertices: *258 { + a: -0.3590878,2.66992,0.6626697,-1.66386,2.66992,0,-0.2764976,5.73672,0.3655178,-1.281172,5.73672,-0.1447379,-1.443823E-14,0,2.56168,-2.21848,0,1.28084,-1.443823E-14,2.66992,1.92126,-2.004156,1.031749,1.1571,-1.143178,2.66992,1.261246,-1.443823E-14,0,-2.56168,2.21848,0,-1.28084,-1.443823E-14,2.66992,-1.92126,1.66386,2.66992,-0.9606301,-2.004156,1.031749,1.1571,-1.66386,2.66992,0.3593981,-1.143178,2.66992,1.261246,1.66386,2.66992,-1.443823E-14,-0.3590878,2.66992,0.6626697,1.642958,2.837427,-0.007905487,-0.2764976,5.73672,0.3655178,0.8634606,5.73672,-0.007905487,0.8634606,5.73672,-0.007905487,1.281172,5.73672,-0.58429,1.642958,2.837427,-0.007905487,-2.21848,0,-1.28084,-1.66386,2.66992,-0.9606301,-2.21848,0,1.28084,-1.66386,2.66992,0,-1.66386,2.66992,0.3593981,-2.004156,1.031749,1.1571,-2.21848,0,-1.28084,-1.443823E-14,0,-2.56168,-1.66386,2.66992,-0.9606301,-1.443823E-14,2.66992,-1.92126,2.21848,0,-1.28084,2.21848,0,1.28084,1.66386,2.66992,-0.9606301,1.66386,2.66992,-1.443823E-14,1.66386,2.66992,0.9606301,-1.66386,2.66992,-0.9606301,-1.443823E-14,2.66992,-1.92126,-1.281172,5.73672,-0.884423,1.443823E-14,5.73672,-1.624108,-1.66386,2.66992,-0.9606301,-1.281172,5.73672,-0.884423,-1.66386,2.66992,0,-1.281172,5.73672,-0.1447379,-1.443823E-14,2.66992,-1.92126,1.66386,2.66992,-0.9606301,1.443823E-14,5.73672,-1.624108,1.281172,5.73672,-0.884423,1.281172,5.73672,-0.884423,1.281172,5.73672,-0.58429,1.443823E-14,5.73672,-1.624108,0.8634606,5.73672,-0.007905487,-0.2764976,5.73672,0.3655178,-1.281172,5.73672,-0.884423,-1.281172,5.73672,-0.1447379,1.66386,2.66992,-1.443823E-14,1.66386,2.66992,0.9606301,-0.3590878,2.66992,0.6626697,-1.443823E-14,2.66992,1.92126,-1.143178,2.66992,1.261246,-1.66386,2.66992,0,-1.66386,2.66992,0.3593981,1.66386,2.66992,-0.9606301,1.66386,2.66992,-1.443823E-14,1.281172,5.73672,-0.884423,1.281172,5.73672,-0.58429,1.642958,2.837427,-0.007905487,2.21848,0,1.28084,-1.443823E-14,0,2.56168,1.66386,2.66992,0.9606301,-1.443823E-14,2.66992,1.92126,2.21848,0,1.28084,2.21848,0,-1.28084,-1.443823E-14,0,2.56168,-1.443823E-14,0,-2.56168,-1.443823E-14,0,2.56168,2.21848,0,-1.28084,-2.21848,0,1.28084,-1.443823E-14,0,2.56168,-1.443823E-14,0,-2.56168,-2.21848,0,-1.28084,-2.21848,0,1.28084,-1.443823E-14,0,-2.56168 + } + PolygonVertexIndex: *138 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,7,-7,9,11,-11,12,10,-12,13,15,-15,16,18,-18,19,17,-19,20,19,-19,21,23,-23,24,26,-26,27,25,-27,28,27,-27,29,28,-27,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,35,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,54,-54,56,55,-54,57,55,-57,58,60,-60,61,59,-61,62,61,-61,63,62,-61,64,62,-64,65,67,-67,68,66,-68,69,66,-69,70,72,-72,73,71,-73,74,76,-76,77,79,-79,80,82,-82,83,85,-85 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *414 { + a: -0.4506419,0.09810901,0.8872973,-0.4506419,0.09810901,0.8872973,-0.4506419,0.09810901,0.8872973,-0.4506419,0.09810901,0.8872973,-0.4506419,0.09810901,0.8872973,-0.4506419,0.09810901,0.8872973,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,-0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,0.4895492,0.2033872,-0.8479241,-0.7974966,0.3898706,0.4604347,-0.7974966,0.3898706,0.4604347,-0.7974966,0.3898706,0.4604347,0.310215,0.08340368,0.9470008,0.310215,0.08340368,0.9470008,0.310215,0.08340368,0.9470008,0.310215,0.08340368,0.9470008,0.310215,0.08340368,0.9470008,0.310215,0.08340368,0.9470008,0.310215,0.08340368,0.9470008,0.310215,0.08340368,0.9470008,0.310215,0.08340368,0.9470008,0.7911906,0.2127177,0.5733835,0.7911906,0.2127177,0.5733835,0.7911906,0.2127177,0.5733835,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.9790983,0.2033873,0,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,-0.4895492,0.2033872,-0.8479241,0.9790983,0.2033872,0,0.9790983,0.2033872,0,0.9790983,0.2033872,0,0.9790983,0.2033872,0,0.9790983,0.2033872,0,0.9790983,0.2033872,0,0.9790983,0.2033872,0,0.9790983,0.2033872,0,0.9790983,0.2033872,0,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,-0.4982488,0.08361809,-0.8629925,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,-0.9923041,0.1238238,0,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,0.4982488,0.08361809,-0.8629925,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.9923041,0.1238238,0,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0.4895492,0.2033872,0.8479241,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *172 { + a: -0.07908567,10.16976,-5.840533,10.16976,-0.318932,22.30231,-4.755246,22.30231,5.042677,-1.776419,-5.042678,-1.776419,3.782007,8.959475,-4.555513,2.3723,-1.414954,8.959475,5.042677,-1.776419,-5.042678,-1.776419,3.782008,8.959475,-3.782008,8.959475,6.345267E-07,0.188456,-2.049929,7.192153,2.04993,7.192153,6.225141,10.30479,-2.155646,10.30479,6.156628,10.96658,-1.482459,22.42103,3.240227,22.42103,2.020046,21.48697,4.822526,21.48697,3.82091,9.805074,-5.042677,-1.77642,-3.782008,8.959474,5.042678,-1.77642,3.896317E-07,8.959474,1.414953,8.959474,4.555512,2.372299,5.042678,-1.776419,-5.042677,-1.776419,3.782008,8.959475,-3.782008,8.959475,5.042677,-1.77642,-5.042677,-1.77642,3.782008,8.959474,5.682666E-14,8.959474,-3.782008,8.959474,3.782008,9.926932,-3.782007,9.926932,2.627229,22.04338,-3.197063,22.04338,-3.782008,9.619478,-3.48198,21.78713,-2.295917E-17,9.619478,-0.5698342,21.78713,3.782007,9.926932,-3.782008,9.926932,3.197063,22.04338,-2.627229,22.04338,-5.043984,-3.48198,-5.043984,-2.300354,-5.684342E-14,-6.394126,-3.399451,-0.03112396,1.088573,1.439046,5.043984,-3.48198,5.043984,-0.5698342,-6.55063,-5.684342E-14,-6.55063,3.782008,1.413731,2.608936,5.684342E-14,7.564016,4.500701,4.965535,6.55063,0,6.55063,1.414953,3.782007,9.619478,-9.370543E-07,9.619478,3.48198,21.78713,2.300354,21.78713,0.03112304,10.28407,5.042678,-1.776419,-5.042677,-1.776419,3.782008,8.959475,-3.782008,8.959475,5.043984,-0.5698342,5.043984,-3.48198,1.088573,1.439046,5.043984,-0.5698342,5.043984,-3.48198,1.088573,1.439046,5.043984,-0.5698342,5.043984,-3.48198,1.088573,1.439046,5.043984,-0.5698342,5.043984,-3.48198,1.088573,1.439046 + } + UVIndex: *138 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,7,6,9,11,10,12,10,11,13,15,14,16,18,17,19,17,18,20,19,18,21,23,22,24,26,25,27,25,26,28,27,26,29,28,26,30,32,31,33,31,32,34,36,35,37,35,36,38,35,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,54,53,56,55,53,57,55,56,58,60,59,61,59,60,62,61,60,63,62,60,64,62,63,65,67,66,68,66,67,69,66,68,70,72,71,73,71,72,74,76,75,77,79,78,80,82,81,83,85,84 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *46 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallF, Model::RootNode + C: "OO",5252375521901105697,0 + + ;Geometry::, Model::Mesh stone_tallF + C: "OO",5432676581921491767,5252375521901105697 + + ;Material::stone, Model::Mesh stone_tallF + C: "OO",3038,5252375521901105697 + + ;Material::_defaultMat, Model::Mesh stone_tallF + C: "OO",3004,5252375521901105697 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallF.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallF.fbx.import new file mode 100644 index 0000000..a1dadaa --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallF.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://x7i74bgf7cdo" +path="res://.godot/imported/stone_tallF.fbx-1a849b814bb35f256fb82e1ecc5fcc83.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallF.fbx" +dest_files=["res://.godot/imported/stone_tallF.fbx-1a849b814bb35f256fb82e1ecc5fcc83.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallG.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallG.fbx new file mode 100644 index 0000000..30b2b6d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallG.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 686 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallG.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallG.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4689443726347086438, "Model::stone_tallG", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4804589659641643605, "Geometry::", "Mesh" { + Vertices: *348 { + a: 0,0,-2.45344,2.124741,0,-1.22672,0,3.82448,-2.109958,1.827278,3.82448,-1.054979,1.571459,5.33984,-1.012689,1.571459,5.33984,-0.105407,1.37781,7.82936,-0.9685261,1.37781,7.82936,-0.215482,0,0,2.45344,-2.124741,0,1.22672,0,1.91224,2.281699,-1.827278,3.82448,1.054979,-0.4805614,3.82448,1.832506,2.124741,0,-1.22672,2.124741,0,1.22672,1.827278,3.82448,-1.054979,1.827278,3.82448,0,1.827278,3.82448,1.054979,-1.827278,3.82448,-1.054979,-1.571459,5.33984,-1.012689,-1.827278,3.82448,0,-1.571459,5.33984,-0.5664246,-1.773722,4.141721,-0.02206685,2.124741,0,1.22672,0,0,2.45344,1.827278,3.82448,1.054979,0,1.91224,2.281699,0.8033328,3.82448,1.646154,0,3.82448,-2.109958,1.827278,3.82448,-1.054979,0,5.33984,-1.919971,1.571459,5.33984,-1.012689,-0.1515812,5.33984,0.4141573,-1.138516,5.33984,0.0530162,-0.7067592,5.33984,-1.511923,-1.571459,5.33984,-1.012689,-1.571459,5.33984,-0.5664246,-2.124741,0,-1.22672,0,0,-2.45344,-1.827278,3.82448,-1.054979,0,3.82448,-2.109958,-1.827278,3.82448,-1.054979,0,3.82448,-2.109958,-1.571459,5.33984,-1.012689,0,5.33984,-1.919971,-0.7067592,5.33984,-1.511923,1.827278,3.82448,-1.054979,1.827278,3.82448,0,1.571459,5.33984,-1.012689,1.571459,5.33984,-0.105407,1.37781,7.82936,-0.9685261,1.37781,7.82936,-0.215482,0.5207635,7.82936,-1.463342,-0.05231293,7.82936,0.2157564,-0.251214,7.82936,-1.534097,-0.5131106,7.82936,-1.382891,-0.251214,7.82936,-1.534097,0.01279679,5.773284,-1.885428,0.5207635,7.82936,-1.463342,-2.124741,0,-1.22672,-1.827278,3.82448,-1.054979,-2.124741,0,1.22672,-1.827278,3.82448,0,-1.827278,3.82448,1.054979,0,5.33984,-1.919971,1.571459,5.33984,-1.012689,0.01279679,5.773284,-1.885428,1.37781,7.82936,-0.9685261,0.5207635,7.82936,-1.463342,1.571459,5.33984,-0.105407,-0.1515812,5.33984,0.4141573,1.37781,7.82936,-0.215482,-0.05231293,7.82936,0.2157564,0.8033328,3.82448,1.646154,0,1.91224,2.281699,-0.4805614,3.82448,1.832506,1.827278,3.82448,0,-0.1762572,3.82448,0.6041445,1.571459,5.33984,-0.105407,-0.1515812,5.33984,0.4141573,-0.7067592,5.33984,-1.511923,-0.5131106,7.82936,-1.382891,-0.1515812,5.33984,0.4141573,-0.05231293,7.82936,0.2157564,-0.1762572,3.82448,0.6041445,-1.827278,3.82448,0,-0.1515812,5.33984,0.4141573,-1.773722,4.141721,-0.02206685,-1.138516,5.33984,0.0530162,-0.7067592,5.33984,-1.511923,0,5.33984,-1.919971,-0.5131106,7.82936,-1.382891,0.01279679,5.773284,-1.885428,-0.251214,7.82936,-1.534097,1.827278,3.82448,0,1.827278,3.82448,1.054979,-0.1762572,3.82448,0.6041445,0.8033328,3.82448,1.646154,-0.4805614,3.82448,1.832506,-1.827278,3.82448,0,-1.827278,3.82448,1.054979,-1.773722,4.141721,-0.02206685,-1.571459,5.33984,-0.5664246,-1.138516,5.33984,0.0530162,2.124741,0,1.22672,2.124741,0,-1.22672,0,0,2.45344,0,0,-2.45344,0,0,2.45344,2.124741,0,-1.22672,-2.124741,0,1.22672,0,0,2.45344,0,0,-2.45344,-2.124741,0,-1.22672,-2.124741,0,1.22672,0,0,-2.45344 + } + PolygonVertexIndex: *186 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,15,-15,16,14,-16,17,14,-17,18,20,-20,21,19,-21,22,21,-21,23,25,-25,26,24,-26,27,26,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,33,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,44,-44,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,53,-53,55,53,-55,56,58,-58,59,61,-61,62,60,-62,63,62,-62,64,66,-66,67,65,-67,68,67,-67,69,71,-71,72,70,-72,73,75,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,89,91,-91,92,90,-92,93,92,-92,94,96,-96,97,95,-97,98,97,-97,99,98,-97,100,98,-100,101,103,-103,104,106,-106,107,109,-109,110,112,-112,113,115,-115 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *558 { + a: 0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.4984944,0.07754469,-0.8634177,0.8670813,0.07617964,-0.4923075,0.8596464,0.07583056,-0.5052305,0.9969884,0.07755125,0,0.9969884,0.07755125,0,0.9969884,0.07755125,0,0.8596464,0.07583056,-0.5052305,-0.4984943,0.07754469,0.8634177,-0.4984943,0.07754469,0.8634177,-0.4984943,0.07754469,0.8634177,-0.4984943,0.07754469,0.8634177,-0.4984943,0.07754469,0.8634177,-0.4984943,0.07754469,0.8634177,-0.4984943,0.07754469,0.8634177,-0.4984943,0.07754469,0.8634177,-0.4984943,0.07754469,0.8634177,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,0.996989,0.07754469,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,-0.9860479,0.166462,0,0.4984943,0.0775447,0.8634177,0.4984943,0.0775447,0.8634177,0.4984943,0.0775447,0.8634177,0.4984943,0.0775447,0.8634177,0.4984943,0.0775447,0.8634177,0.4984943,0.0775447,0.8634177,0.4984943,0.0775447,0.8634177,0.4984943,0.0775447,0.8634177,0.4984943,0.0775447,0.8634177,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0.4970785,0.107943,-0.8609653,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,-0.4984944,0.07754469,-0.8634177,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,-0.4970785,0.107943,-0.8609653,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0.9860479,0.166462,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.0897976,0.1789454,-0.9797524,0.0897976,0.1789454,-0.9797524,0.0897976,0.1789454,-0.9797524,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,-0.996989,0.07754469,0,0.4992658,0.05417592,-0.8647535,0.4992658,0.05417592,-0.8647535,0.8670813,0.07617964,-0.4923075,0.8596464,0.07583056,-0.5052305,0.8670813,0.07617964,-0.4923075,0.4992658,0.05417592,-0.8647535,0.4992658,0.05417592,-0.8647535,0.8596464,0.07583056,-0.5052305,0.4992658,0.05417592,-0.8647535,0.2880957,0.06465373,0.9554166,0.2880957,0.06465373,0.9554166,0.2880957,0.06465373,0.9554166,0.2880957,0.06465373,0.9554166,0.2880957,0.06465373,0.9554166,0.2880957,0.06465373,0.9554166,0.138725,0.259375,0.9557614,0.138725,0.259375,0.9557614,0.138725,0.259375,0.9557614,0.2867984,0.1145751,0.9511147,0.2867984,0.1145751,0.9511147,0.2867984,0.1145751,0.9511147,0.2867984,0.1145751,0.9511147,0.2867984,0.1145751,0.9511147,0.2867984,0.1145751,0.9511147,-0.9591324,0.06027743,0.2764625,-0.9591324,0.06027743,0.2764625,-0.9591324,0.06027743,0.2764625,-0.9591324,0.06027743,0.2764625,-0.9591324,0.06027743,0.2764625,-0.9591324,0.06027743,0.2764625,-0.3410538,0.1224076,0.9320401,-0.3410538,0.1224076,0.9320401,-0.3410538,0.1224076,0.9320401,-0.3410538,0.1224076,0.9320401,-0.3410538,0.1224076,0.9320401,-0.3410538,0.1224076,0.9320401,-0.3410538,0.1224076,0.9320401,-0.3410538,0.1224076,0.9320401,-0.3410538,0.1224076,0.9320401,-0.4982546,0.08348667,-0.863002,-0.4982546,0.08348667,-0.863002,-0.4982546,0.08348667,-0.863002,-0.4982546,0.08348667,-0.863002,-0.4982546,0.08348667,-0.863002,-0.4982546,0.08348667,-0.863002,-0.4982546,0.08348667,-0.863002,-0.4982546,0.08348667,-0.863002,-0.4982546,0.08348667,-0.863002,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7613756,0.3703098,0.5321445,-0.7613756,0.3703098,0.5321445,-0.7613756,0.3703098,0.5321445,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *232 { + a: 4.829606,-0.6486709,-4.829607,-0.6486709,4.153461,14.45381,-4.153462,14.45381,3.986965,20.47988,0.414988,20.47988,3.813095,30.31075,0.8483541,30.31075,4.829606,-0.648671,-4.829607,-0.648671,4.491533,6.902571,-4.153462,14.45381,1.968797,14.45381,4.829607,-0.6486709,-4.829607,-0.6486709,4.153461,14.45381,4.670691E-18,14.45381,-4.153461,14.45381,-4.153461,13.6494,-3.986965,19.6998,-8.454173E-08,13.6494,-2.230018,19.6998,-0.08687743,14.91605,4.829607,-0.648671,-4.829606,-0.6486711,4.153462,14.45381,-4.491533,6.902571,-0.501458,14.45381,4.153461,14.19249,-4.153462,14.19249,3.779471,20.19354,-3.364483,20.19354,0.5967764,1.63054,4.482346,0.2087252,2.782516,-5.952454,6.186845,-3.986965,6.186845,-2.230018,4.829607,-0.6486709,-4.829606,-0.6486709,4.153462,14.45381,-4.153461,14.45381,4.153462,14.19249,-4.153461,14.19249,3.364483,20.19354,-3.779471,20.19354,-0.566497,20.19354,4.153461,13.6494,-5.314631E-17,13.6494,3.986965,19.6998,0.414988,19.6998,-5.424449,-3.813095,-5.424449,-0.8483541,-2.05025,-5.76119,0.2059564,0.8494344,0.9890317,-6.039751,2.020121,-5.444452,1.536157,29.2666,0.6273275,21.03901,-1.515864,29.2666,-4.829607,-0.6486709,-4.153461,14.45381,4.829607,-0.6486709,-3.732368E-17,14.45381,4.153461,14.45381,3.779471,20.63747,-3.364482,20.63747,3.667842,22.34645,-2.791163,30.45315,1.105027,30.45315,6.043214,20.88922,-1.042102,20.88922,5.438394,30.71103,-0.4424182,30.71103,2.199004,12.76032,-1.290336,4.965033,-2.908664,12.76032,6.887684,14.71989,-1.351057,14.71989,6.043214,20.72542,-1.042102,20.72542,-6.490255,20.92298,-5.790968,30.74209,1.401466,20.92298,0.7591614,30.74209,0.165683,14.64117,-6.755908,14.64117,-0.0001183784,20.65236,-6.587753,15.89961,-4.137655,20.65236,-0.5664983,20.40308,-3.779472,20.40308,-0.9727513,30.23867,-3.755105,22.11552,-2.16335,30.23867,-7.194007,0,-7.194007,4.153461,0.6939259,2.378521,-3.162727,6.480921,1.891974,7.214591,7.194007,0,7.194007,4.153461,-4.071656,13.04565,-5.372088,18.12366,-2.396725,18.12366,0.8483541,30.31075,3.813095,30.31075,0.414988,20.47988,0.8483541,30.31075,3.813095,30.31075,0.414988,20.47988,0.8483541,30.31075,3.813095,30.31075,0.414988,20.47988,0.8483541,30.31075,3.813095,30.31075,0.414988,20.47988 + } + UVIndex: *186 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,15,14,16,14,15,17,14,16,18,20,19,21,19,20,22,21,20,23,25,24,26,24,25,27,26,25,28,30,29,31,29,30,32,34,33,35,33,34,36,33,35,37,39,38,40,38,39,41,43,42,44,42,43,45,44,43,46,48,47,49,47,48,50,52,51,53,51,52,54,53,52,55,53,54,56,58,57,59,61,60,62,60,61,63,62,61,64,66,65,67,65,66,68,67,66,69,71,70,72,70,71,73,75,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,89,91,90,92,90,91,93,92,91,94,96,95,97,95,96,98,97,96,99,98,96,100,98,99,101,103,102,104,106,105,107,109,108,110,112,111,113,115,114 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *62 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallG, Model::RootNode + C: "OO",4689443726347086438,0 + + ;Geometry::, Model::Mesh stone_tallG + C: "OO",4804589659641643605,4689443726347086438 + + ;Material::stone, Model::Mesh stone_tallG + C: "OO",3038,4689443726347086438 + + ;Material::_defaultMat, Model::Mesh stone_tallG + C: "OO",3004,4689443726347086438 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallG.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallG.fbx.import new file mode 100644 index 0000000..01ed3b4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallG.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bkvrsa8ontbf7" +path="res://.godot/imported/stone_tallG.fbx-56e374a935cbf397e10f3aad39fe6412.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallG.fbx" +dest_files=["res://.godot/imported/stone_tallG.fbx-56e374a935cbf397e10f3aad39fe6412.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallH.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallH.fbx new file mode 100644 index 0000000..7f0dfbe --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallH.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 802 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallH.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallH.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5692863145057056484, "Model::stone_tallH", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4665367507363757590, "Geometry::", "Mesh" { + Vertices: *426 { + a: 2.87465,0,1.65968,0,0,3.31936,2.29972,2.02048,1.327744,2.887646E-14,2.02048,2.655488,1.14986,2.02048,1.991616,-2.29972,2.02048,-1.327744,2.887646E-14,2.02048,-2.655488,-1.931765,3.31936,-1.168415,1.443823E-14,3.31936,-2.28372,2.887646E-14,2.02048,-2.655488,2.29972,2.02048,-1.327744,1.443823E-14,3.31936,-2.28372,1.931765,3.31936,-1.168415,2.29972,2.02048,-1.327744,2.29972,2.02048,1.327744,1.931765,3.31936,-1.168415,1.931765,3.31936,-0.08509074,1.931765,3.31936,0.4080839,2.241402,2.226343,1.285656,-0.1771824,2.02048,-0.5703036,-2.29972,2.02048,-0.5703036,-0.1488332,3.31936,-0.5321648,-1.931765,3.31936,-0.5321648,1.14986,2.02048,1.991616,-0.4959264,2.02048,1.168645,0.9658825,3.31936,1.619848,-0.4562525,2.66992,1.048599,0.05668947,3.31936,1.165208,-1.931765,3.31936,-1.168415,1.443823E-14,3.31936,-2.28372,-1.54146,5.870797,-1.088868,1.443823E-14,7.10776,-1.831016,-0.6699977,7.10776,-1.444193,-0.1041833,7.10776,-0.6049274,-0.1978941,7.10776,-0.09367652,-0.1488332,3.31936,-0.5321648,-0.2827058,3.31936,0.1981937,1.6229,3.31936,1.240518,1.931765,3.31936,0.4080839,2.241402,2.226343,1.285656,-2.87465,0,-1.65968,0,0,-3.31936,-2.29972,2.02048,-1.327744,2.887646E-14,2.02048,-2.655488,2.87465,0,-1.65968,2.87465,0,1.65968,2.29972,2.02048,-1.327744,2.29972,2.02048,1.327744,-1.54146,5.870797,-1.088868,-0.6699977,7.10776,-1.444193,-1.352235,7.10776,-0.7270488,1.931765,3.31936,-0.08509074,0.8778635,3.31936,0.7343055,1.352235,7.10776,-0.2919756,0.6145045,7.10776,0.2816018,-0.1771824,2.02048,-0.5703036,-0.1488332,3.31936,-0.5321648,-0.4959264,2.02048,1.168645,-0.2827058,3.31936,0.1981937,-0.321178,3.31936,0.4080839,-0.4562525,2.66992,1.048599,-2.29972,2.02048,-1.327744,-1.931765,3.31936,-1.168415,-2.29972,2.02048,-0.5703036,-1.931765,3.31936,-0.5321648,2.29972,2.02048,1.327744,1.14986,2.02048,1.991616,2.241402,2.226343,1.285656,0.9658825,3.31936,1.619848,1.6229,3.31936,1.240518,-2.87465,0,-1.65968,-2.29972,2.02048,-1.327744,-2.87465,0,1.65968,-2.29972,2.02048,-0.5703036,-2.29972,2.02048,1.327744,0,0,3.31936,-2.87465,0,1.65968,2.887646E-14,2.02048,2.655488,-2.29972,2.02048,1.327744,-0.1771824,2.02048,-0.5703036,-0.4959264,2.02048,1.168645,-2.29972,2.02048,-0.5703036,-2.29972,2.02048,1.327744,2.887646E-14,2.02048,2.655488,1.14986,2.02048,1.991616,-0.4562525,2.66992,1.048599,-0.321178,3.31936,0.4080839,0.05668947,3.31936,1.165208,1.443823E-14,3.31936,-2.28372,1.931765,3.31936,-1.168415,1.443823E-14,7.10776,-1.831016,1.352235,7.10776,-1.050302,1.931765,3.31936,-0.08509074,1.931765,3.31936,0.4080839,0.8778635,3.31936,0.7343055,1.6229,3.31936,1.240518,0.9658825,3.31936,1.619848,0.05668947,3.31936,1.165208,-0.2827058,3.31936,0.1981937,-0.321178,3.31936,0.4080839,0.8778635,3.31936,0.7343055,-0.2827058,3.31936,0.1981937,0.6145045,7.10776,0.2816018,-0.1978941,7.10776,-0.09367652,-0.1488332,3.31936,-0.5321648,-1.931765,3.31936,-0.5321648,-0.1041833,7.10776,-0.6049274,-1.352235,7.10776,-0.6049274,-1.931765,3.31936,-1.168415,-1.54146,5.870797,-1.088868,-1.931765,3.31936,-0.5321648,-1.352235,7.10776,-0.7270488,-1.352235,7.10776,-0.6049274,0,0,-3.31936,2.87465,0,-1.65968,2.887646E-14,2.02048,-2.655488,2.29972,2.02048,-1.327744,1.443823E-14,7.10776,-1.831016,-0.1041833,7.10776,-0.6049274,-0.6699977,7.10776,-1.444193,-1.352235,7.10776,-0.6049274,-1.352235,7.10776,-0.7270488,0.6145045,7.10776,0.2816018,1.352235,7.10776,-0.2919756,1.352235,7.10776,-1.050302,-0.1978941,7.10776,-0.09367652,1.931765,3.31936,-1.168415,1.931765,3.31936,-0.08509074,1.352235,7.10776,-1.050302,1.352235,7.10776,-0.2919756,2.87465,0,1.65968,2.87465,0,-1.65968,0,0,3.31936,0,0,-3.31936,0,0,3.31936,2.87465,0,-1.65968,-2.87465,0,1.65968,0,0,3.31936,0,0,-3.31936,-2.87465,0,-1.65968,-2.87465,0,1.65968,0,0,-3.31936 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,14,-17,18,14,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,26,-26,28,30,-30,31,29,-31,32,31,-31,33,35,-35,36,34,-36,37,39,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,58,-58,60,59,-58,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,68,-68,70,72,-72,73,71,-73,74,73,-73,75,77,-77,78,76,-78,79,81,-81,81,82,-81,82,83,-81,84,80,-84,85,87,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,95,-95,97,96,-95,98,97,-95,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,111,-111,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,120,-120,118,122,-118,122,123,-118,124,117,-124,125,122,-119,126,128,-128,129,127,-129,130,132,-132,133,135,-135,136,138,-138,139,141,-141 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,0.4809094,0.2736867,0.8329596,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,-0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.4853129,0.2405946,-0.8405865,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0.9621385,0.2725611,0,0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,0,-0.02935016,0.9995692,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4391718,0.1891721,0.8782609,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.4973439,0.102938,-0.8614249,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,-0.9835804,0.008129725,-0.1802874,0.8232615,0.4784707,0.305461,0.8232615,0.4784707,0.305461,0.8232615,0.4784707,0.305461,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,-0.4809094,0.2736867,-0.8329596,0.961819,0.2736868,0,0.961819,0.2736868,0,0.961819,0.2736868,0,0.961819,0.2736868,0,0.961819,0.2736868,0,0.961819,0.2736868,0,-0.6915503,0.2982263,-0.65789,-0.6915503,0.2982263,-0.65789,-0.6915503,0.2982263,-0.65789,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,0.6081174,0.1357402,0.7821559,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9832609,0.02675253,-0.1802288,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,-0.9621385,0.2725611,0,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,0.4763919,0.3036497,0.8251349,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.961819,0.2736868,0,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,-0.4809094,0.2736867,0.8329596,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7582337,0.5309228,0.3784212,-0.7582337,0.5309228,0.3784212,-0.7582337,0.5309228,0.3784212,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,0.497344,0.102938,-0.8614249,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,-0.4180443,0.07908116,0.9049779,0,0.01920313,0.9998156,0,0.01920313,0.9998156,0,0.01920313,0.9998156,0,0.01920313,0.9998156,0,0.01920313,0.9998156,0,0.01920313,0.9998156,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,-0.9885008,0.1512156,0,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,0.4809094,0.2736867,-0.8329596,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0.9885008,0.1512156,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *284 { + a: 6.534173,-3.097455,-6.534173,-3.097455,5.227339,5.172965,-5.227338,5.172965,8.331629E-07,5.172965,5.227339,5.542635,-5.227339,5.542635,4.286417,10.81109,-4.495511,10.81109,5.227339,5.542635,-5.227339,5.542635,4.495511,10.81109,-4.286417,10.81109,5.227339,5.185699,-5.227339,5.185699,4.600058,10.50063,0.3350029,10.50063,-1.60663,10.50063,-5.061639,6.028079,-0.6975687,7.885319,-9.054016,7.885319,-0.5859576,13.00122,-7.605373,13.00122,7.555872,6.867353,0.311463,6.867353,6.253417,12.07508,0.2397872,9.471219,2.251338,12.07508,4.286417,12.1974,-4.495511,12.1974,3.112241,22.29608,-3.604362,27.19202,-0.558509,27.19202,-2.268625,27.97561,-0.2222932,27.97561,-1.95516,13.06016,0.9681725,13.06016,-2.35627,7.796271,1.139351,7.796271,-1.675813,2.895694,6.534173,-3.097455,-6.534173,-3.097455,5.227339,5.172965,-5.227338,5.172965,6.534173,-3.097455,-6.534173,-3.097455,5.227339,5.172964,-5.227339,5.172964,1.076976,19.86914,-2.301365,24.97125,1.595564,24.97125,6.209783,12.34963,0.9540357,12.34963,4.908479,27.40393,1.229455,27.40393,-2.082729,7.922613,-1.95516,13.03814,4.877585,7.922613,0.9681725,13.03814,1.808279,13.03814,4.384546,10.48038,-5.227339,5.185699,-4.600058,10.50063,-2.24529,5.185699,-2.095137,10.50063,5.227338,4.829808,3.441428E-07,4.829808,5.111349,5.680459,0.1045467,10.19692,3.091391,10.19692,-6.534173,-3.097455,-5.227339,5.172964,6.534173,-3.097455,-2.24529,5.172964,5.227339,5.172964,6.534173,-3.097455,-6.534173,-3.097455,5.227338,5.172965,-5.227339,5.172965,0.6975687,-2.24529,1.952466,4.600965,9.054016,-2.24529,9.054016,5.227339,-1.136868E-13,10.45468,-4.527009,7.841008,2.89172,7.075567,0.8728782,10.09278,4.204297,10.09278,4.495512,12.1974,-4.286417,12.1974,3.604363,27.19202,-2.542988,27.19202,-7.605373,-0.3350029,-7.605373,1.60663,-3.456156,2.890967,-6.38937,4.883931,-3.802687,6.377353,-0.2231869,4.587434,1.113015,0.7802901,1.26448,1.60663,4.34992,12.93449,-0.6831977,12.93449,2.661228,27.89631,-0.8619542,27.89631,-0.5859576,13.10617,-7.605373,13.10617,-0.4101704,28.02388,-5.323761,28.02388,-4.600058,11.76802,-4.286881,21.9299,-2.095137,11.76802,-2.862397,26.85649,-2.381604,26.85649,6.534173,-3.097455,-6.534173,-3.097455,5.227338,5.172965,-5.227339,5.172965,-5.684342E-14,-7.208724,0.4101704,-2.381604,2.637786,-5.685797,5.323761,-2.381604,5.323761,-2.862397,-2.419309,1.108669,-5.323761,-1.14951,-5.323761,-4.135048,0.7791104,-0.3688052,4.600058,11.76802,0.3350029,11.76802,4.135048,26.85649,1.14951,26.85649,-5.227339,5.172965,5.227338,5.172965,-6.534173,-3.097455,-5.227339,5.172965,5.227338,5.172965,-6.534173,-3.097455,-5.227339,5.172965,5.227338,5.172965,-6.534173,-3.097455,-5.227339,5.172965,5.227338,5.172965,-6.534173,-3.097455 + } + UVIndex: *234 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,14,16,18,14,17,19,21,20,22,20,21,23,25,24,26,24,25,27,26,25,28,30,29,31,29,30,32,31,30,33,35,34,36,34,35,37,39,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,53,52,54,52,53,55,57,56,58,56,57,59,58,57,60,59,57,61,63,62,64,62,63,65,67,66,68,66,67,69,68,67,70,72,71,73,71,72,74,73,72,75,77,76,78,76,77,79,81,80,81,82,80,82,83,80,84,80,83,85,87,86,88,90,89,91,89,90,92,94,93,95,93,94,96,95,94,97,96,94,98,97,94,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,111,110,113,115,114,116,114,115,117,119,118,120,118,119,121,120,119,118,122,117,122,123,117,124,117,123,125,122,118,126,128,127,129,127,128,130,132,131,133,135,134,136,138,137,139,141,140 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallH, Model::RootNode + C: "OO",5692863145057056484,0 + + ;Geometry::, Model::Mesh stone_tallH + C: "OO",4665367507363757590,5692863145057056484 + + ;Material::stone, Model::Mesh stone_tallH + C: "OO",3038,5692863145057056484 + + ;Material::_defaultMat, Model::Mesh stone_tallH + C: "OO",3004,5692863145057056484 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallH.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallH.fbx.import new file mode 100644 index 0000000..cfc4b49 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallH.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ep320caoqwk2" +path="res://.godot/imported/stone_tallH.fbx-871f3131970f7f93b7d5009bd4f637ce.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallH.fbx" +dest_files=["res://.godot/imported/stone_tallH.fbx-871f3131970f7f93b7d5009bd4f637ce.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallI.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallI.fbx new file mode 100644 index 0000000..1f41ff9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallI.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 893 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallI.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallI.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5553796749248449174, "Model::stone_tallI", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4612099475958227468, "Geometry::", "Mesh" { + Vertices: *258 { + a: 1.437013,6.20576,-0.03848174,0.4315388,6.20576,0.8437444,1.152474,8.118,-0.1035215,0.4099265,7.16188,0.7053575,0.7703941,8.118,0.2317245,0.7703941,8.118,0.2317245,0.4099265,7.16188,0.7053575,0.1596491,8.118,0.2317245,2.280972,0,-1.378002,2.280972,0,-0.0610821,1.437013,6.20576,-0.8681414,1.437013,6.20576,-0.03848174,2.280972,0,-0.0610821,-0.4347485,0,2.321756,1.437013,6.20576,-0.03848174,-0.2738917,6.20576,1.462706,0.4315388,6.20576,0.8437444,-0.9341394,6.20576,-1.158475,-0.6496013,8.118,-0.9547165,0.4315388,6.20576,0.8437444,0.1596491,8.118,0.2317245,0.4099265,7.16188,0.7053575,1.152474,8.118,-0.7340627,1.152474,8.118,-0.1035215,0.3698139,8.118,-1.185932,0.7703941,8.118,0.2317245,0.1596491,8.118,0.2317245,-0.6496013,8.118,-0.9547165,-2.280972,0,-1.378002,-1.482761,0,-1.83885,-1.788504,3.621191,-1.080487,-0.9341394,6.20576,-1.158475,-1.155442,6.20576,-1.030706,-1.482761,0,-1.83885,0.6463432,0,-2.321756,-0.9341394,6.20576,-1.158475,0.4071963,6.20576,-1.462706,0.4071963,6.20576,-1.462706,1.437013,6.20576,-0.8681414,0.3698139,8.118,-1.185932,1.152474,8.118,-0.7340627,0.6463432,0,-2.321756,2.280972,0,-1.378002,0.4071963,6.20576,-1.462706,1.437013,6.20576,-0.8681414,0.4315388,6.20576,0.8437444,-0.2738917,6.20576,1.462706,-0.9341394,6.20576,-1.158475,-1.437013,6.20576,0.7911777,-1.155442,6.20576,-1.030706,-1.437013,6.20576,0.05701282,-0.9341394,6.20576,-1.158475,0.4071963,6.20576,-1.462706,-0.6496013,8.118,-0.9547165,0.3698139,8.118,-1.185932,-0.4347485,0,2.321756,-2.280972,0,1.255838,-0.2738917,6.20576,1.462706,-1.437013,6.20576,0.7911777,-2.280972,0,-1.378002,-1.788504,3.621191,-1.080487,-2.280972,0,1.255838,-1.437013,6.20576,0.05701282,-1.437013,6.20576,0.7911777,1.437013,6.20576,-0.8681414,1.437013,6.20576,-0.03848174,1.152474,8.118,-0.7340627,1.152474,8.118,-0.1035215,-1.788504,3.621191,-1.080487,-1.155442,6.20576,-1.030706,-1.437013,6.20576,0.05701282,2.280972,0,-0.0610821,2.280972,0,-1.378002,-0.4347485,0,2.321756,0.6463432,0,-2.321756,-0.4347485,0,2.321756,2.280972,0,-1.378002,-1.482761,0,-1.83885,-0.4347485,0,2.321756,0.6463432,0,-2.321756,-2.280972,0,1.255838,-0.4347485,0,2.321756,-1.482761,0,-1.83885,-2.280972,0,-1.378002,-2.280972,0,1.255838,-1.482761,0,-1.83885 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,3,-3,5,7,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,19,-19,20,18,-20,21,20,-20,22,24,-24,25,23,-25,26,25,-25,27,26,-25,28,30,-30,31,29,-31,32,31,-31,33,35,-35,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,48,-48,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,62,-62,64,66,-66,67,65,-67,68,70,-70,71,73,-73,74,76,-76,77,79,-79,80,82,-82,83,85,-85 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0.6545466,0.1227683,0.7459871,0,0.4438913,0.8960806,0,0.4438913,0.8960806,0,0.4438913,0.8960806,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.9908789,0.1347557,0,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,0.6570563,0.08662997,0.7488472,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,-0.8244972,0.06276,0.5623748,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.4952289,0.1378222,-0.8577607,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,-0.2194454,0.1254753,-0.9675224,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,0.495497,0.1339046,-0.8582262,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0.4952285,0.1378222,-0.857761,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.2191516,0.1355657,-0.9662269,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.4956457,0.1316854,0.8584838,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,-0.9908789,0.1347557,0,0.98911,0.1471781,0,0.98911,0.1471781,0,0.98911,0.1471781,0,0.98911,0.1471781,0,0.98911,0.1471781,0,0.98911,0.1471781,0,-0.9409405,0.2351644,-0.2435746,-0.9409405,0.2351644,-0.2435746,-0.9409405,0.2351644,-0.2435746,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *172 { + a: 4.352536,23.8032,-0.913793,23.8032,3.679371,31.38908,-0.618416,27.59614,1.678166,31.38908,3.033048,28.23434,1.613884,24.03354,0.6285399,28.23434,5.425205,-1.210134,0.2404807,-1.210134,3.41788,23.44689,0.1515029,23.44689,6.908785,-0.4974297,-7.315235,-0.4974297,4.352535,24.0269,-4.608598,24.0269,-0.9137935,24.0269,-5.840239,24.35458,-4.546288,31.89795,3.701595,24.35458,1.107849,31.89795,3.20355,28.12626,-4.5373,-2.890011,-4.5373,-0.4075649,-1.45596,-4.669024,-3.033048,0.9123011,-0.6285399,0.9123011,2.557485,-3.758726,5.064479,-1.266375,1.435759,-1.266375,3.971045,13.12764,0.9045277,23.40115,1.910586,23.40115,4.091698,-1.047906,-4.503507,-1.047906,2.577769,23.57885,-2.837209,23.57885,1.490986,23.43696,-3.190626,23.43696,1.073612,31.03388,-2.484412,31.03388,2.366646,-1.266375,-5.064484,-1.266375,1.490986,23.40116,-3.190625,23.40116,-1.698972,3.321829,1.078314,5.758685,3.677714,-4.560926,5.65753,3.114873,4.548986,-4.057898,5.65753,0.2244599,2.577769,23.49331,-2.837209,23.49331,1.66273,31.09196,-2.452654,31.09196,3.088088,-1.155137,-5.304964,-1.155137,1.945495,23.49162,-3.342129,23.49162,-5.425204,-1.210134,-4.253887,13.17776,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,3.41788,23.3334,0.1515029,23.3334,2.890011,30.94479,0.4075649,30.94479,-2.353564,12.00311,-2.788422,22.47218,1.63509,22.47218,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689,3.114873,23.44689,4.944244,-1.210134,0.2244601,23.44689 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,3,2,5,7,6,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,19,18,20,18,19,21,20,19,22,24,23,25,23,24,26,25,24,27,26,24,28,30,29,31,29,30,32,31,30,33,35,34,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,48,47,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,62,61,64,66,65,67,65,66,68,70,69,71,73,72,74,76,75,77,79,78,80,82,81,83,85,84 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallI, Model::RootNode + C: "OO",5553796749248449174,0 + + ;Geometry::, Model::Mesh stone_tallI + C: "OO",4612099475958227468,5553796749248449174 + + ;Material::stone, Model::Mesh stone_tallI + C: "OO",3038,5553796749248449174 + + ;Material::_defaultMat, Model::Mesh stone_tallI + C: "OO",3004,5553796749248449174 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallI.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallI.fbx.import new file mode 100644 index 0000000..60981a9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallI.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bg34j2oxwj5kp" +path="res://.godot/imported/stone_tallI.fbx-28825d9e37e23dd685010c0551c81ed0.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallI.fbx" +dest_files=["res://.godot/imported/stone_tallI.fbx-28825d9e37e23dd685010c0551c81ed0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallJ.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallJ.fbx new file mode 100644 index 0000000..eecd126 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallJ.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 34 + Millisecond: 981 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stone_tallJ.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stone_tallJ.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4989476280473888882, "Model::stone_tallJ", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5592923798974165458, "Geometry::", "Mesh" { + Vertices: *228 { + a: 2.439738,0,-1.156581,0.2182403,0,-2.691165,2.221497,0,1.534584,-0.2182403,0,2.691165,-2.221497,0,-1.534584,-2.439738,0,1.156581,0.2182403,0,-2.691165,2.439738,0,-1.156581,0.157133,3.3,-1.937639,2.289668,0.7249463,-1.085439,0.9568721,3.3,-1.385189,-1.28065,4.75,-0.9740797,-0.2038865,6.2,-1.202565,0.02985528,6.2,-0.1582203,-1.599478,3.3,-1.104901,0.157133,3.3,-1.937639,-1.28065,4.75,-0.9740797,0.1272777,6.2,-1.359556,-0.2038865,6.2,-1.202565,1.599478,3.3,1.104901,-1.599478,3.3,-1.104901,1.021532,6.2,0.5268182,-1.28065,4.75,-0.9740797,0.02985528,6.2,-0.1582203,-2.221497,0,-1.534584,-1.599478,3.3,-1.104901,-2.439738,0,1.156581,-1.756611,3.3,0.8327383,1.118954,6.2,-0.674518,1.021532,6.2,0.5268182,0.1272777,6.2,-1.359556,0.02985528,6.2,-0.1582203,-0.2038865,6.2,-1.202565,1.437783,4.75,-0.753628,1.701911,3.3,-0.1582203,1.118954,6.2,-0.674518,1.021532,6.2,0.5268182,1.599478,3.3,1.104901,-2.221497,0,-1.534584,0.2182403,0,-2.691165,-1.599478,3.3,-1.104901,0.157133,3.3,-1.937639,1.599478,3.3,1.104901,0.6346607,3.3,1.562282,-1.599478,3.3,-1.104901,-0.8781925,3.3,1.43954,-1.756611,3.3,0.8327383,2.221497,0,1.534584,-0.2182403,0,2.691165,1.599478,3.3,1.104901,-0.2038865,0.7751575,2.514165,0.6346607,3.3,1.562282,2.439738,0,-1.156581,2.221497,0,1.534584,2.289668,0.7249463,-1.085439,1.701911,3.3,-0.1582203,1.599478,3.3,1.104901,-0.2182403,0,2.691165,-2.439738,0,1.156581,-0.2038865,0.7751575,2.514165,-1.756611,3.3,0.8327383,-0.8781925,3.3,1.43954,0.6346607,3.3,1.562282,-0.2038865,0.7751575,2.514165,-0.8781925,3.3,1.43954,0.9568721,3.3,-1.385189,2.289668,0.7249463,-1.085439,1.701911,3.3,-0.1582203,0.157133,3.3,-1.937639,0.9568721,3.3,-1.385189,0.1272777,6.2,-1.359556,1.437783,4.75,-0.753628,1.118954,6.2,-0.674518,1.437783,4.75,-0.753628,0.9568721,3.3,-1.385189,1.701911,3.3,-0.1582203 + } + PolygonVertexIndex: *126 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,8,-8,9,7,-9,10,9,-9,11,13,-13,14,16,-16,17,15,-17,18,17,-17,19,21,-21,22,20,-22,23,22,-22,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,31,-31,33,35,-35,36,34,-36,37,34,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,45,-45,47,49,-49,50,48,-50,51,50,-50,52,54,-54,55,53,-55,56,53,-56,57,59,-59,60,58,-60,61,60,-60,62,64,-64,65,67,-67,68,70,-70,71,69,-71,72,71,-71,73,75,-75 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *378 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,0.5574983,0.1946054,-0.8070468,-0.777283,0.6046203,0.1739689,-0.777283,0.6046203,0.1739689,-0.777283,0.6046203,0.1739689,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.4218996,0.1730626,-0.889972,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.5676344,0.05067577,0.8217196,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,-0.977672,0.1946055,-0.07928457,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,0.9745097,0.2099652,0.07902795,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,-0.4201737,0.1946054,-0.8863311,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.4201738,0.1946053,0.8863311,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,0.977672,0.1946055,0.07928459,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.5574983,0.1946055,0.8070467,-0.07501494,0.3734926,0.9245951,-0.07501494,0.3734926,0.9245951,-0.07501494,0.3734926,0.9245951,0.7984858,0.3568404,-0.4848558,0.7984858,0.3568404,-0.4848558,0.7984858,0.3568404,-0.4848558,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.560338,0.167464,-0.8111579,0.8533528,-0.05733059,-0.5181721,0.8533528,-0.05733059,-0.5181721,0.8533528,-0.05733059,-0.5181721 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *152 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,5.314958,-1.791495,-5.314963,-1.791495,3.826771,11.45386,-4.988036,1.118255,-3.10896E-07,11.45386,-4.843593,12.42702,-4.79552,19.59407,-0.5822029,19.59407,3.826772,11.649,-3.82677,11.649,2.913165,17.44512,-2.745641,23.24124,-1.302761,23.24124,7.653543,12.97543,-7.653543,12.97543,4.487865,24.40744,-6.328038,18.69144,-0.257333,24.40744,-5.314958,-1.791496,-3.826771,11.45386,5.314962,-1.791496,3.826772,11.45386,-4.405331,-2.655583,-4.02178,2.074087,-0.5010933,-5.352582,-0.1175405,-0.6229146,0.8027027,-4.734508,3.414873,17.14965,1.162471,11.31083,3.002975,22.98846,-1.742221,22.98846,-3.826773,11.31083,5.31496,-1.791494,-5.31496,-1.791494,3.826771,11.45386,-3.826771,11.45386,-6.297157,4.350004,-2.498664,6.150716,6.297157,-4.350004,3.457451,5.66748,6.915792,3.278497,5.314959,-1.791494,-5.31496,-1.791494,3.82677,11.45386,-4.965392,1.31979,-0.3769325,11.45386,5.314962,-1.791496,-5.314958,-1.791495,4.988036,1.118254,1.162472,11.45386,-3.826771,11.45386,5.314959,-1.791495,-5.314962,-1.791495,4.96539,1.319788,-3.826771,11.45386,0.3764843,11.45386,2.987871,9.837671,0.0003712794,-0.8781209,-2.987815,9.837671,2.706146,9.977708,-1.026017,-0.8747672,-2.945258,9.977708,3.82677,11.69867,-9.269542E-07,11.69867,2.629929,23.27954,-2.971021,17.48911,-2.115266,23.27954,-0.4018753,19.03571,2.706146,13.31764,-2.945258,13.31764 + } + UVIndex: *126 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,8,7,9,7,8,10,9,8,11,13,12,14,16,15,17,15,16,18,17,16,19,21,20,22,20,21,23,22,21,24,26,25,27,25,26,28,30,29,31,29,30,32,31,30,33,35,34,36,34,35,37,34,36,38,40,39,41,39,40,42,44,43,45,43,44,46,45,44,47,49,48,50,48,49,51,50,49,52,54,53,55,53,54,56,53,55,57,59,58,60,58,59,61,60,59,62,64,63,65,67,66,68,70,69,71,69,70,72,71,70,73,75,74 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *42 { + a: 0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3038, "Material::stone", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7215686,0.8862745,0.9098039 + P: "DiffuseColor", "Color", "", "A",0.7215686,0.8862745,0.9098039 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stone_tallJ, Model::RootNode + C: "OO",4989476280473888882,0 + + ;Geometry::, Model::Mesh stone_tallJ + C: "OO",5592923798974165458,4989476280473888882 + + ;Material::_defaultMat, Model::Mesh stone_tallJ + C: "OO",3004,4989476280473888882 + + ;Material::stone, Model::Mesh stone_tallJ + C: "OO",3038,4989476280473888882 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stone_tallJ.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallJ.fbx.import new file mode 100644 index 0000000..8f7c9a6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stone_tallJ.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b5on51mi5ehc2" +path="res://.godot/imported/stone_tallJ.fbx-0a1a64578d65425a14a0085713e1051f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stone_tallJ.fbx" +dest_files=["res://.godot/imported/stone_tallJ.fbx-0a1a64578d65425a14a0085713e1051f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_old.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stump_old.fbx new file mode 100644 index 0000000..c11a1f7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_old.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 75 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stump_old.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stump_old.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5403263069098514885, "Model::stump_old", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5401911667683760952, "Geometry::", "Mesh" { + Vertices: *624 { + a: -0.8466792,1.865,0.4888302,-1.188793,1.865,0.68635,-0.8466792,2.665,0.4888302,-1.188793,2.665,0.68635,-0.8466792,0.4849999,0.4888302,0,0.4849999,0.977661,-0.8466792,1.865,0.4888302,0,1.865,0.977661,-1.188793,2.265,-0.68635,-0.8466792,2.265,-0.4888302,-1.188793,2.665,-0.68635,-0.8466792,2.665,-0.4888302,-0.8466792,2.665,-0.4888302,-0.8466792,2.665,0.4888302,-1.188793,2.665,-0.68635,-1.188793,2.665,0.68635,0,0.4849999,0.977661,0.8466792,0.4849999,0.4888302,0,1.865,0.977661,0.8466792,1.465,0.4888302,0.8466792,2.265,0.4888302,0,2.265,0.977661,0,0.7349999,1.3727,-1.188793,0.7349999,0.68635,0,1.865,1.3727,-1.188793,1.865,0.68635,1.188793,1.465,-0.68635,1.188793,1.465,0.68635,0.8466792,1.465,-0.4888302,0.8466792,1.465,0.4888302,0,1.865,0.977661,0,1.865,1.3727,-0.8466792,1.865,0.4888302,-1.188793,1.865,0.68635,0,2.265,-1.3727,0,1.865,-1.3727,0,2.265,-0.977661,0,1.865,-0.977661,-1.188793,1.749303,-0.3706528,-1.188793,1.749303,0.3706528,-1.573793,1.672456,-0.2891093,-1.573793,1.672456,0.2891093,-1.573793,1.672456,-0.2891093,-1.573793,1.672456,0.2891093,-1.958793,1.672456,-0.2891093,-1.958793,1.672456,0.2891093,-1.188793,0.7349999,-0.68635,0,0.7349999,-1.3727,-1.188793,2.265,-0.68635,0,1.865,-1.3727,0,2.265,-1.3727,1.188793,1.865,-0.68635,0.8466792,1.865,-0.4888302,0,1.865,-1.3727,0,1.865,-0.977661,1.606477,0,-0.9275,1.606477,0,0.9275,1.188793,0.7349999,-0.68635,1.188793,0.7349999,0.68635,1.210712,1.002928,-1.360742,0.9179088,1.002928,-1.529792,0.9789865,0.9269785,-0.8074819,0.554634,0.9269785,-1.052482,0,2.265,-1.3727,0,2.265,-0.977661,-1.188793,2.265,-0.68635,-0.8466792,2.265,-0.4888302,0.9179088,1.002928,-1.529792,0.9179088,1.341028,-1.529792,0.554634,0.9269785,-1.052482,0.554634,1.416979,-1.052482,1.606477,0,0.9275,0,0,1.855,1.188793,0.7349999,0.68635,0,0.7349999,1.3727,1.210712,1.341028,-1.360742,1.210712,1.002928,-1.360742,0.9789865,1.416979,-0.8074819,0.9789865,0.9269785,-0.8074819,0.9179088,1.002928,-1.529792,1.210712,1.002928,-1.360742,0.9179088,1.341028,-1.529792,1.210712,1.341028,-1.360742,-1.606477,0,-0.9275,-1.188793,0.7349999,-0.68635,-1.606477,0,0.9275,-1.188793,0.7349999,0.68635,1.188793,2.265,0.68635,0,2.265,1.3727,0.8466792,2.265,0.4888302,0,2.265,0.977661,-1.606477,0,-0.9275,0,0,-1.855,-1.188793,0.7349999,-0.68635,0,0.7349999,-1.3727,-1.188793,1.050697,-0.3706528,-1.188793,1.749303,-0.3706528,-1.573793,1.127544,-0.2891093,-1.573793,1.672456,-0.2891093,0.8466792,1.465,0.4888302,1.188793,1.465,0.68635,0.8466792,2.265,0.4888302,1.188793,2.265,0.68635,1.606477,0,0.9275,1.606477,0,-0.9275,0,0,1.855,0,0,-1.855,-1.606477,0,0.9275,-1.606477,0,-0.9275,1.188793,1.465,-0.68635,0.8466792,1.465,-0.4888302,1.188793,1.865,-0.68635,0.8466792,1.865,-0.4888302,1.188793,0.7349999,-0.68635,0.554634,0.9269785,-1.052482,0,0.7349999,-1.3727,0,1.865,-1.3727,0.554634,1.416979,-1.052482,0.9789865,1.416979,-0.8074819,1.188793,1.465,-0.68635,1.188793,1.865,-0.68635,0.9789865,0.9269785,-0.8074819,0,0,1.855,-1.606477,0,0.9275,0,0.7349999,1.3727,-1.188793,0.7349999,0.68635,-1.573793,1.127544,0.2891093,-1.573793,1.127544,-0.2891093,-1.958793,1.127544,0.2891093,-1.958793,1.127544,-0.2891093,-1.188793,1.050697,0.3706528,-1.573793,1.127544,0.2891093,-1.188793,1.749303,0.3706528,-1.573793,1.672456,0.2891093,-1.188793,2.265,-0.68635,-1.188793,1.050697,-0.3706528,-1.188793,0.7349999,-0.68635,-1.188793,0.7349999,0.68635,-1.188793,2.665,-0.68635,-1.188793,1.050697,0.3706528,-1.188793,1.749303,0.3706528,-1.188793,1.749303,-0.3706528,-1.188793,2.665,0.68635,-1.188793,1.865,0.68635,-1.958793,1.127544,-0.2891093,-1.958793,1.672456,-0.2891093,-1.958793,1.127544,0.2891093,-1.958793,1.672456,0.2891093,0,0,-1.855,1.606477,0,-0.9275,0,0.7349999,-1.3727,1.188793,0.7349999,-0.68635,-1.958793,1.127544,-0.2891093,-1.573793,1.127544,-0.2891093,-1.958793,1.672456,-0.2891093,-1.573793,1.672456,-0.2891093,-1.573793,1.127544,0.2891093,-1.958793,1.127544,0.2891093,-1.573793,1.672456,0.2891093,-1.958793,1.672456,0.2891093,0,0.4849999,-0.977661,-0.8466792,0.4849999,-0.4888302,0,1.865,-0.977661,-0.8466792,2.265,-0.4888302,0,2.265,-0.977661,1.188793,1.465,-0.68635,1.188793,0.7349999,-0.68635,1.188793,1.465,0.68635,1.188793,0.7349999,0.68635,1.210712,1.341028,-1.360742,0.9789865,1.416979,-0.8074819,0.9179088,1.341028,-1.529792,0.554634,1.416979,-1.052482,0.8466792,0.4849999,-0.4888302,0.8466792,0.4849999,0.4888302,0,0.4849999,-0.977661,0,0.4849999,0.977661,-0.8466792,0.4849999,-0.4888302,-0.8466792,0.4849999,0.4888302,1.188793,0.7349999,0.68635,0,0.7349999,1.3727,1.188793,1.465,0.68635,0,1.865,1.3727,1.188793,2.265,0.68635,0,2.265,1.3727,0.8466792,0.4849999,-0.4888302,0.8466792,1.465,-0.4888302,0.8466792,0.4849999,0.4888302,0.8466792,1.465,0.4888302,-1.188793,1.050697,0.3706528,-1.188793,1.050697,-0.3706528,-1.573793,1.127544,0.2891093,-1.573793,1.127544,-0.2891093,0.8466792,0.4849999,-0.4888302,0,0.4849999,-0.977661,0.8466792,1.465,-0.4888302,0,1.865,-0.977661,0.8466792,1.865,-0.4888302,-0.8466792,2.665,-0.4888302,-0.8466792,2.265,-0.4888302,-0.8466792,2.665,0.4888302,-0.8466792,0.4849999,-0.4888302,-0.8466792,0.4849999,0.4888302,-0.8466792,1.865,0.4888302,0,1.865,0.977661,0,2.265,0.977661,0,1.865,1.3727,0,2.265,1.3727 + } + PolygonVertexIndex: *360 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,20,-19,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,49,-49,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,106,-106,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,114,-117,118,117,-117,119,118,-117,120,119,-117,119,113,-122,114,121,-114,118,119,-122,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,134,-136,139,135,-138,140,139,-138,135,141,-139,142,138,-142,140,142,-142,137,142,-141,143,142,-138,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,163,-163,165,167,-167,168,166,-168,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,176,-176,178,176,-178,179,181,-181,182,180,-182,183,182,-182,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,195,-195,196,194,-196,197,196,-196,198,200,-200,201,199,-201,202,201,-201,203,202,-201,204,206,-206,207,205,-207 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1080 { + a: 0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: -3.849058,7.342519,-5.404331,7.342519,-3.849058,10.49212,-5.404331,10.49212,1.924529,1.909449,-1.92453,1.909449,1.924529,7.342519,-1.92453,7.342519,5.404331,8.917322,3.849058,8.917322,5.404331,10.49212,3.849058,10.49212,3.333383,-1.924529,3.333383,1.924529,4.680287,-2.702165,4.680287,2.702165,1.92453,1.909449,-1.924529,1.909449,1.92453,7.342519,-1.924529,5.767716,-1.924529,8.917322,1.92453,8.917322,2.702165,2.893701,-2.702165,2.893701,2.702165,7.342519,-2.702165,7.342519,-4.680287,-2.702165,-4.680287,2.702165,-3.333383,-1.924529,-3.333383,1.924529,0,3.849059,0,5.404331,3.333383,1.924529,4.680287,2.702165,5.404331,8.917322,5.404331,7.342519,3.849059,8.917322,3.849059,7.342519,-1.459263,-3.24169,1.459263,-3.24169,-1.138225,-4.787337,1.138225,-4.787337,6.196035,-1.138225,6.196035,1.138225,7.711783,-1.138225,7.711783,1.138225,2.702165,2.893701,-2.702165,2.893701,2.702165,8.917322,-2.702165,7.342519,-2.702165,8.917322,-4.680287,-2.702165,-3.333383,-1.924529,0,-5.404331,0,-3.849059,3.651575,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034422,-1.449358,7.466246,-0.118255,7.466245,-1.748372,5.104718,0.1807621,5.104719,0,-5.404331,0,-3.849059,4.680287,-2.702165,3.333383,-1.924529,-6.981256,3.948537,-6.981256,5.27964,-4.619729,3.649522,-4.619729,5.578656,3.651575,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034422,6.782767,5.27964,6.782767,3.948537,4.42124,5.578656,4.42124,3.649522,-0.1182565,3.948537,-1.449359,3.948537,-0.1182565,5.27964,-1.449359,5.27964,-3.651575,-3.124866,-2.702165,0.2034426,3.651575,-3.124866,2.702165,0.2034426,-4.680287,2.702165,0,5.404331,-3.333383,1.924529,0,3.849059,3.651574,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034423,4.276348,4.136603,4.276348,6.887019,5.825721,4.439148,5.825721,6.584474,-3.849058,5.767716,-5.40433,5.767716,-3.849058,8.917322,-5.40433,8.917322,6.324713,3.651575,6.324713,-3.651575,0,7.30315,0,-7.30315,-6.324713,3.651575,-6.324713,-3.651575,5.40433,5.767716,3.849058,5.767716,5.40433,7.342519,3.849058,7.342519,-2.702165,2.893701,0.1807631,3.649522,2.702165,2.893701,2.702165,7.342519,0.1807631,5.578655,-1.748371,5.578655,-2.702165,5.767715,-2.702165,7.342519,-1.748371,3.649522,3.651575,-3.124866,-3.651574,-3.124866,2.702165,0.2034423,-2.702165,0.2034422,-6.196035,1.138225,-6.196035,-1.138225,-7.711783,1.138225,-7.711783,-1.138225,-4.276348,4.136603,-5.825721,4.439148,-4.276348,6.887019,-5.825721,6.584474,-2.702165,8.917322,-1.459263,4.136603,-2.702165,2.893701,2.702165,2.893701,-2.702165,10.49212,1.459263,4.136603,1.459263,6.887019,-1.459263,6.887019,2.702165,10.49212,2.702165,7.342519,-1.138225,4.439148,-1.138225,6.584474,1.138225,4.439148,1.138225,6.584474,3.651575,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034422,7.711783,4.439148,6.196035,4.439148,7.711783,6.584474,6.196035,6.584474,-6.196035,4.439148,-7.711783,4.439148,-6.196035,6.584474,-7.711783,6.584474,1.92453,1.909449,-1.924529,1.909449,1.92453,7.342519,-1.924529,8.917322,1.92453,8.917322,2.702165,5.767716,2.702165,2.893701,-2.702165,5.767716,-2.702165,2.893701,-1.449358,-6.297777,-1.748372,-3.93625,-0.118255,-6.297777,0.1807621,-3.93625,-3.333383,-1.924529,-3.333383,1.924529,0,-3.849059,0,3.849059,3.333383,-1.924529,3.333383,1.924529,2.702165,2.893701,-2.702165,2.893701,2.702165,5.767716,-2.702165,7.342519,2.702165,8.917322,-2.702165,8.917322,-1.924529,1.909449,-1.924529,5.767716,1.924529,1.909449,1.924529,5.767716,1.459263,5.399449,-1.459263,5.399449,1.138225,6.945096,-1.138225,6.945096,1.924529,1.909449,-1.92453,1.909449,1.924529,5.767716,-1.92453,7.342519,1.924529,7.342519,1.924529,10.49212,1.924529,8.917322,-1.924529,10.49212,1.924529,1.909449,-1.924529,1.909449,-1.924529,7.342519,3.849059,7.342519,3.849059,8.917322,5.404331,7.342519,5.404331,8.917322 + } + UVIndex: *360 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,20,18,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,49,48,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,106,105,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,114,116,118,117,116,119,118,116,120,119,116,119,113,121,114,121,113,118,119,121,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,134,135,139,135,137,140,139,137,135,141,138,142,138,141,140,142,141,137,142,140,143,142,137,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,163,162,165,167,166,168,166,167,169,171,170,172,170,171,173,175,174,176,174,175,177,176,175,178,176,177,179,181,180,182,180,181,183,182,181,184,182,183,185,187,186,188,186,187,189,191,190,192,190,191,193,195,194,196,194,195,197,196,195,198,200,199,201,199,200,202,201,200,203,202,200,204,206,205,207,205,206 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *120 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stump_old, Model::RootNode + C: "OO",5403263069098514885,0 + + ;Geometry::, Model::Mesh stump_old + C: "OO",5401911667683760952,5403263069098514885 + + ;Material::woodBark, Model::Mesh stump_old + C: "OO",3046,5403263069098514885 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_old.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stump_old.fbx.import new file mode 100644 index 0000000..55bb882 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_old.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bc54gj433hy4f" +path="res://.godot/imported/stump_old.fbx-9667b5b6a5b0fdf01e85b151f969a76d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stump_old.fbx" +dest_files=["res://.godot/imported/stump_old.fbx-9667b5b6a5b0fdf01e85b151f969a76d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_oldTall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stump_oldTall.fbx new file mode 100644 index 0000000..34a361b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_oldTall.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 166 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stump_oldTall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stump_oldTall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5129321169214035066, "Model::stump_oldTall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5106565836538504740, "Geometry::", "Mesh" { + Vertices: *624 { + a: -0.8466792,4.864999,0.4888302,-1.188793,4.864999,0.68635,-0.8466792,6.665,0.4888302,-1.188793,6.665,0.68635,-0.8466792,0.4849999,0.4888302,0,0.4849999,0.977661,-0.8466792,4.864999,0.4888302,0,4.864999,0.977661,-1.188793,6.264999,-0.68635,-0.8466792,6.264999,-0.4888302,-1.188793,6.665,-0.68635,-0.8466792,6.665,-0.4888302,-0.8466792,6.665,-0.4888302,-0.8466792,6.665,0.4888302,-1.188793,6.665,-0.68635,-1.188793,6.665,0.68635,0,0.4849999,0.977661,0.8466792,0.4849999,0.4888302,0,4.864999,0.977661,0.8466792,3.465,0.4888302,0.8466792,5.765,0.4888302,0,5.765,0.977661,0,0.7349999,1.3727,-1.188793,0.7349999,0.68635,0,4.864999,1.3727,-1.188793,4.864999,0.68635,1.188793,3.465,-0.68635,1.188793,3.465,0.68635,0.8466792,3.465,-0.4888302,0.8466792,3.465,0.4888302,0,4.864999,0.977661,0,4.864999,1.3727,-0.8466792,4.864999,0.4888302,-1.188793,4.864999,0.68635,0,6.264999,-1.3727,0,4.864999,-1.3727,0,6.264999,-0.977661,0,4.864999,-0.977661,-1.188793,1.749303,-0.3706528,-1.188793,1.749303,0.3706528,-1.573793,1.672456,-0.2891093,-1.573793,1.672456,0.2891093,-1.573793,1.672456,-0.2891093,-1.573793,1.672456,0.2891093,-1.958793,1.672456,-0.2891093,-1.958793,1.672456,0.2891093,-1.188793,0.7349999,-0.68635,0,0.7349999,-1.3727,-1.188793,6.264999,-0.68635,0,4.864999,-1.3727,0,6.264999,-1.3727,1.188793,4.864999,-0.68635,0.8466792,4.864999,-0.4888302,0,4.864999,-1.3727,0,4.864999,-0.977661,1.606477,0,-0.9275,1.606477,0,0.9275,1.188793,0.7349999,-0.68635,1.188793,0.7349999,0.68635,1.210712,2.002928,-1.360742,0.9179088,2.002928,-1.529792,0.9789865,1.926978,-0.8074819,0.554634,1.926978,-1.052482,0,6.264999,-1.3727,0,6.264999,-0.977661,-1.188793,6.264999,-0.68635,-0.8466792,6.264999,-0.4888302,0.9179088,2.002928,-1.529792,0.9179088,2.341029,-1.529792,0.554634,1.926978,-1.052482,0.554634,2.416978,-1.052482,1.606477,0,0.9275,0,0,1.855,1.188793,0.7349999,0.68635,0,0.7349999,1.3727,1.210712,2.341029,-1.360742,1.210712,2.002928,-1.360742,0.9789865,2.416978,-0.8074819,0.9789865,1.926978,-0.8074819,0.9179088,2.002928,-1.529792,1.210712,2.002928,-1.360742,0.9179088,2.341029,-1.529792,1.210712,2.341029,-1.360742,-1.606477,0,-0.9275,-1.188793,0.7349999,-0.68635,-1.606477,0,0.9275,-1.188793,0.7349999,0.68635,1.188793,5.765,0.68635,0,5.765,1.3727,0.8466792,5.765,0.4888302,0,5.765,0.977661,-1.606477,0,-0.9275,0,0,-1.855,-1.188793,0.7349999,-0.68635,0,0.7349999,-1.3727,-1.188793,1.050697,-0.3706528,-1.188793,1.749303,-0.3706528,-1.573793,1.127544,-0.2891093,-1.573793,1.672456,-0.2891093,0.8466792,3.465,0.4888302,1.188793,3.465,0.68635,0.8466792,5.765,0.4888302,1.188793,5.765,0.68635,1.606477,0,0.9275,1.606477,0,-0.9275,0,0,1.855,0,0,-1.855,-1.606477,0,0.9275,-1.606477,0,-0.9275,1.188793,3.465,-0.68635,0.8466792,3.465,-0.4888302,1.188793,4.864999,-0.68635,0.8466792,4.864999,-0.4888302,1.188793,0.7349999,-0.68635,0.554634,1.926978,-1.052482,0,0.7349999,-1.3727,0,4.864999,-1.3727,0.554634,2.416978,-1.052482,0.9789865,2.416978,-0.8074819,1.188793,3.465,-0.68635,1.188793,4.864999,-0.68635,0.9789865,1.926978,-0.8074819,0,0,1.855,-1.606477,0,0.9275,0,0.7349999,1.3727,-1.188793,0.7349999,0.68635,-1.573793,1.127544,0.2891093,-1.573793,1.127544,-0.2891093,-1.958793,1.127544,0.2891093,-1.958793,1.127544,-0.2891093,-1.188793,1.050697,0.3706528,-1.573793,1.127544,0.2891093,-1.188793,1.749303,0.3706528,-1.573793,1.672456,0.2891093,-1.188793,6.264999,-0.68635,-1.188793,1.050697,-0.3706528,-1.188793,0.7349999,-0.68635,-1.188793,0.7349999,0.68635,-1.188793,6.665,-0.68635,-1.188793,1.050697,0.3706528,-1.188793,1.749303,0.3706528,-1.188793,1.749303,-0.3706528,-1.188793,6.665,0.68635,-1.188793,4.864999,0.68635,-1.958793,1.127544,-0.2891093,-1.958793,1.672456,-0.2891093,-1.958793,1.127544,0.2891093,-1.958793,1.672456,0.2891093,0,0,-1.855,1.606477,0,-0.9275,0,0.7349999,-1.3727,1.188793,0.7349999,-0.68635,-1.958793,1.127544,-0.2891093,-1.573793,1.127544,-0.2891093,-1.958793,1.672456,-0.2891093,-1.573793,1.672456,-0.2891093,-1.573793,1.127544,0.2891093,-1.958793,1.127544,0.2891093,-1.573793,1.672456,0.2891093,-1.958793,1.672456,0.2891093,0,0.4849999,-0.977661,-0.8466792,0.4849999,-0.4888302,0,4.864999,-0.977661,-0.8466792,6.264999,-0.4888302,0,6.264999,-0.977661,1.188793,3.465,-0.68635,1.188793,0.7349999,-0.68635,1.188793,3.465,0.68635,1.188793,0.7349999,0.68635,1.210712,2.341029,-1.360742,0.9789865,2.416978,-0.8074819,0.9179088,2.341029,-1.529792,0.554634,2.416978,-1.052482,0.8466792,0.4849999,-0.4888302,0.8466792,0.4849999,0.4888302,0,0.4849999,-0.977661,0,0.4849999,0.977661,-0.8466792,0.4849999,-0.4888302,-0.8466792,0.4849999,0.4888302,1.188793,0.7349999,0.68635,0,0.7349999,1.3727,1.188793,3.465,0.68635,0,4.864999,1.3727,1.188793,5.765,0.68635,0,5.765,1.3727,0.8466792,0.4849999,-0.4888302,0.8466792,3.465,-0.4888302,0.8466792,0.4849999,0.4888302,0.8466792,3.465,0.4888302,-1.188793,1.050697,0.3706528,-1.188793,1.050697,-0.3706528,-1.573793,1.127544,0.2891093,-1.573793,1.127544,-0.2891093,0.8466792,0.4849999,-0.4888302,0,0.4849999,-0.977661,0.8466792,3.465,-0.4888302,0,4.864999,-0.977661,0.8466792,4.864999,-0.4888302,-0.8466792,6.665,-0.4888302,-0.8466792,6.264999,-0.4888302,-0.8466792,6.665,0.4888302,-0.8466792,0.4849999,-0.4888302,-0.8466792,0.4849999,0.4888302,-0.8466792,4.864999,0.4888302,0,4.864999,0.977661,0,5.765,0.977661,0,4.864999,1.3727,0,5.765,1.3727 + } + PolygonVertexIndex: *360 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,20,-19,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,49,-49,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,69,-69,70,68,-70,71,73,-73,74,72,-74,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,91,93,-93,94,92,-94,95,97,-97,98,96,-98,99,101,-101,102,100,-102,103,105,-105,106,104,-106,107,106,-106,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,114,-117,118,117,-117,119,118,-117,120,119,-117,119,113,-122,114,121,-114,118,119,-122,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,134,-136,139,135,-138,140,139,-138,135,141,-139,142,138,-142,140,142,-142,137,142,-141,143,142,-138,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,163,-163,165,167,-167,168,166,-168,169,171,-171,172,170,-172,173,175,-175,176,174,-176,177,176,-176,178,176,-178,179,181,-181,182,180,-182,183,182,-182,184,182,-184,185,187,-187,188,186,-188,189,191,-191,192,190,-192,193,195,-195,196,194,-196,197,196,-196,198,200,-200,201,199,-201,202,201,-201,203,202,-201,204,206,-206,207,205,-207 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1080 { + a: 0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000004,0,0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0.5000004,0,-0.8660253,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5000002,0,-0.8660253,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0.5000005,0,-0.8660251,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5000005,0,0.8660251,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,-0.5000002,0,0.8660253,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: -3.849058,19.15354,-5.404331,19.15354,-3.849058,26.24016,-5.404331,26.24016,1.924529,1.909449,-1.92453,1.909449,1.924529,19.15354,-1.92453,19.15354,5.404331,24.66535,3.849058,24.66535,5.404331,26.24016,3.849058,26.24016,3.333383,-1.924529,3.333383,1.924529,4.680287,-2.702165,4.680287,2.702165,1.92453,1.909449,-1.924529,1.909449,1.92453,19.15354,-1.924529,13.64173,-1.924529,22.69685,1.92453,22.69685,2.702165,2.893701,-2.702165,2.893701,2.702165,19.15354,-2.702165,19.15354,-4.680287,-2.702165,-4.680287,2.702165,-3.333383,-1.924529,-3.333383,1.924529,0,3.849059,0,5.404331,3.333383,1.924529,4.680287,2.702165,5.404331,24.66535,5.404331,19.15354,3.849059,24.66535,3.849059,19.15354,-1.459263,-3.24169,1.459263,-3.24169,-1.138225,-4.787337,1.138225,-4.787337,6.196035,-1.138225,6.196035,1.138225,7.711783,-1.138225,7.711783,1.138225,2.702165,2.893701,-2.702165,2.893701,2.702165,24.66535,-2.702165,19.15354,-2.702165,24.66535,-4.680287,-2.702165,-3.333383,-1.924529,0,-5.404331,0,-3.849059,3.651575,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034422,-1.449358,7.964748,-0.118255,7.964748,-1.748372,5.603221,0.1807621,5.603221,0,-5.404331,0,-3.849059,4.680287,-2.702165,3.333383,-1.924529,-6.981256,7.885545,-6.981256,9.216648,-4.619729,7.586529,-4.619729,9.515663,3.651575,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034422,6.782767,9.216648,6.782767,7.885545,4.42124,9.515663,4.42124,7.586529,-0.1182565,7.885545,-1.449359,7.885545,-0.1182565,9.216648,-1.449359,9.216648,-3.651575,-3.124866,-2.702165,0.2034426,3.651575,-3.124866,2.702165,0.2034426,-4.680287,2.702165,0,5.404331,-3.333383,1.924529,0,3.849059,3.651574,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034423,4.276348,4.136603,4.276348,6.887019,5.825721,4.439148,5.825721,6.584474,-3.849058,13.64173,-5.40433,13.64173,-3.849058,22.69685,-5.40433,22.69685,6.324713,3.651575,6.324713,-3.651575,0,7.30315,0,-7.30315,-6.324713,3.651575,-6.324713,-3.651575,5.40433,13.64173,3.849058,13.64173,5.40433,19.15354,3.849058,19.15354,-2.702165,2.893701,0.1807632,7.586529,2.702165,2.893701,2.702165,19.15354,0.1807632,9.515663,-1.748371,9.515663,-2.702165,13.64173,-2.702165,19.15354,-1.748371,7.586529,3.651575,-3.124866,-3.651574,-3.124866,2.702165,0.2034423,-2.702165,0.2034422,-6.196035,1.138225,-6.196035,-1.138225,-7.711783,1.138225,-7.711783,-1.138225,-4.276348,4.136603,-5.825721,4.439148,-4.276348,6.887019,-5.825721,6.584474,-2.702165,24.66535,-1.459263,4.136603,-2.702165,2.893701,2.702165,2.893701,-2.702165,26.24016,1.459263,4.136603,1.459263,6.887019,-1.459263,6.887019,2.702165,26.24016,2.702165,19.15354,-1.138225,4.439148,-1.138225,6.584474,1.138225,4.439148,1.138225,6.584474,3.651575,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034422,7.711783,4.439148,6.196035,4.439148,7.711783,6.584474,6.196035,6.584474,-6.196035,4.439148,-7.711783,4.439148,-6.196035,6.584474,-7.711783,6.584474,1.92453,1.909449,-1.924529,1.909449,1.92453,19.15354,-1.924529,24.66535,1.92453,24.66535,2.702165,13.64173,2.702165,2.893701,-2.702165,13.64173,-2.702165,2.893701,-1.449358,-5.799274,-1.748372,-3.437747,-0.118255,-5.799274,0.1807621,-3.437747,-3.333383,-1.924529,-3.333383,1.924529,0,-3.849059,0,3.849059,3.333383,-1.924529,3.333383,1.924529,2.702165,2.893701,-2.702165,2.893701,2.702165,13.64173,-2.702165,19.15354,2.702165,22.69685,-2.702165,22.69685,-1.924529,1.909449,-1.924529,13.64173,1.924529,1.909449,1.924529,13.64173,1.459263,5.399449,-1.459263,5.399449,1.138225,6.945096,-1.138225,6.945096,1.924529,1.909449,-1.92453,1.909449,1.924529,13.64173,-1.92453,19.15354,1.924529,19.15354,1.924529,26.24016,1.924529,24.66535,-1.924529,26.24016,1.924529,1.909449,-1.924529,1.909449,-1.924529,19.15354,3.849059,19.15354,3.849059,22.69685,5.404331,19.15354,5.404331,22.69685 + } + UVIndex: *360 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,20,18,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,49,48,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,69,68,70,68,69,71,73,72,74,72,73,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,89,88,90,88,89,91,93,92,94,92,93,95,97,96,98,96,97,99,101,100,102,100,101,103,105,104,106,104,105,107,106,105,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,114,116,118,117,116,119,118,116,120,119,116,119,113,121,114,121,113,118,119,121,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,134,135,139,135,137,140,139,137,135,141,138,142,138,141,140,142,141,137,142,140,143,142,137,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,163,162,165,167,166,168,166,167,169,171,170,172,170,171,173,175,174,176,174,175,177,176,175,178,176,177,179,181,180,182,180,181,183,182,181,184,182,183,185,187,186,188,186,187,189,191,190,192,190,191,193,195,194,196,194,195,197,196,195,198,200,199,201,199,200,202,201,200,203,202,200,204,206,205,207,205,206 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *120 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stump_oldTall, Model::RootNode + C: "OO",5129321169214035066,0 + + ;Geometry::, Model::Mesh stump_oldTall + C: "OO",5106565836538504740,5129321169214035066 + + ;Material::woodBark, Model::Mesh stump_oldTall + C: "OO",3046,5129321169214035066 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_oldTall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stump_oldTall.fbx.import new file mode 100644 index 0000000..9a59ee8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_oldTall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://wwjtiatfhvfe" +path="res://.godot/imported/stump_oldTall.fbx-2b005ba03997b79a56a8f8381a586f39.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stump_oldTall.fbx" +dest_files=["res://.godot/imported/stump_oldTall.fbx-2b005ba03997b79a56a8f8381a586f39.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_round.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stump_round.fbx new file mode 100644 index 0000000..8019f3a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_round.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 253 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stump_round.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stump_round.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5117673258759106434, "Model::stump_round", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4671473384429652391, "Geometry::", "Mesh" { + Vertices: *288 { + a: 1.606477,0,-0.9275,1.606477,0,0.9275,1.188793,0.7349999,-0.68635,1.188793,0.7349999,0.68635,-1.606477,0,-0.9275,-1.188793,0.7349999,-0.68635,-1.606477,0,0.9275,-1.188793,0.7349999,0.68635,-1.188793,0.7349999,-0.68635,-1.188793,2.065,-0.68635,-1.188793,0.7349999,0.68635,-1.188793,2.065,0.68635,0,0,-1.855,1.606477,0,-0.9275,0,0.7349999,-1.3727,1.188793,0.7349999,-0.68635,1.188793,0.7349999,0.68635,0,0.7349999,1.3727,1.188793,2.065,0.68635,0,2.065,1.3727,1.606477,0,0.9275,0,0,1.855,1.188793,0.7349999,0.68635,0,0.7349999,1.3727,-1.606477,0,-0.9275,0,0,-1.855,-1.188793,0.7349999,-0.68635,0,0.7349999,-1.3727,0,0.7349999,-1.3727,1.188793,0.7349999,-0.68635,0,2.065,-1.3727,1.188793,2.065,-0.68635,0,0.7349999,1.3727,-1.188793,0.7349999,0.68635,0,2.065,1.3727,-1.188793,2.065,0.68635,-1.188793,0.7349999,-0.68635,0,0.7349999,-1.3727,-1.188793,2.065,-0.68635,0,2.065,-1.3727,0,0,1.855,-1.606477,0,0.9275,0,0.7349999,1.3727,-1.188793,0.7349999,0.68635,1.606477,0,0.9275,1.606477,0,-0.9275,0,0,1.855,0,0,-1.855,-1.606477,0,0.9275,-1.606477,0,-0.9275,1.188793,2.065,-0.68635,1.188793,0.7349999,-0.68635,1.188793,2.065,0.68635,1.188793,0.7349999,0.68635,1.188793,2.065,0.68635,0.931347,2.065,-0.5377133,1.188793,2.065,-0.68635,0,2.065,-1.3727,5.775292E-14,2.065,-1.075427,-0.931347,2.065,-0.5377133,-1.188793,2.065,-0.68635,-0.931347,2.065,0.5377133,0.931347,2.065,0.5377133,0,2.065,1.3727,5.775292E-14,2.065,1.075427,-1.188793,2.065,0.68635,0.6773431,1.785,-0.3910644,0.6773431,1.785,0.3910644,0,1.785,-0.7821286,0,1.785,0.7821286,-0.6773431,1.785,-0.3910644,-0.6773431,1.785,0.3910644,0.931347,2.065,-0.5377133,0.6773431,1.785,-0.3910644,5.775292E-14,2.065,-1.075427,0,1.785,-0.7821286,0.931347,2.065,-0.5377133,0.931347,2.065,0.5377133,0.6773431,1.785,-0.3910644,0.6773431,1.785,0.3910644,5.775292E-14,2.065,1.075427,-0.931347,2.065,0.5377133,0,1.785,0.7821286,-0.6773431,1.785,0.3910644,0.931347,2.065,0.5377133,5.775292E-14,2.065,1.075427,0.6773431,1.785,0.3910644,0,1.785,0.7821286,-0.931347,2.065,-0.5377133,-0.6773431,1.785,-0.3910644,-0.931347,2.065,0.5377133,-0.6773431,1.785,0.3910644,5.775292E-14,2.065,-1.075427,0,1.785,-0.7821286,-0.931347,2.065,-0.5377133,-0.6773431,1.785,-0.3910644 + } + PolygonVertexIndex: *168 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,55,-58,59,58,-58,60,59,-58,61,59,-61,55,62,-55,63,54,-63,64,63,-63,61,63,-65,65,63,-62,60,65,-62,66,68,-68,69,67,-69,70,69,-69,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *504 { + a: 0.8694211,0.494072,0,0.8694211,0.494072,0,0.8694211,0.494072,0,0.8694211,0.494072,0,0.8694211,0.494072,0,0.8694211,0.494072,0,-0.8694211,0.494072,0,-0.8694211,0.494072,0,-0.8694211,0.494072,0,-0.8694211,0.494072,0,-0.8694211,0.494072,0,-0.8694211,0.494072,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.4347104,0.4940723,-0.7529404,0.4347104,0.4940723,-0.7529404,0.4347104,0.4940723,-0.7529404,0.4347104,0.4940723,-0.7529404,0.4347104,0.4940723,-0.7529404,0.4347104,0.4940723,-0.7529404,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.4347104,0.4940723,0.7529404,0.4347104,0.4940723,0.7529404,0.4347104,0.4940723,0.7529404,0.4347104,0.4940723,0.7529404,0.4347104,0.4940723,0.7529404,0.4347104,0.4940723,0.7529404,-0.4347104,0.4940723,-0.7529404,-0.4347104,0.4940723,-0.7529404,-0.4347104,0.4940723,-0.7529404,-0.4347104,0.4940723,-0.7529404,-0.4347104,0.4940723,-0.7529404,-0.4347104,0.4940723,-0.7529404,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.4347104,0.4940723,0.7529404,-0.4347104,0.4940723,0.7529404,-0.4347104,0.4940723,0.7529404,-0.4347104,0.4940723,0.7529404,-0.4347104,0.4940723,0.7529404,-0.4347104,0.4940723,0.7529404,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3703266,0.6718878,0.6414242,-0.3703266,0.6718878,0.6414242,-0.3703266,0.6718878,0.6414242,-0.3703266,0.6718878,0.6414242,-0.3703266,0.6718878,0.6414242,-0.3703266,0.6718878,0.6414242,-0.7406527,0.671888,0,-0.7406527,0.671888,0,-0.7406527,0.671888,0,-0.7406527,0.671888,0,-0.7406527,0.671888,0,-0.7406527,0.671888,0,0.3703266,0.6718878,-0.6414242,0.3703266,0.6718878,-0.6414242,0.3703266,0.6718878,-0.6414242,0.3703266,0.6718878,-0.6414242,0.3703266,0.6718878,-0.6414242,0.3703266,0.6718878,-0.6414242,-0.3703266,0.6718878,-0.6414242,-0.3703266,0.6718878,-0.6414242,-0.3703266,0.6718878,-0.6414242,-0.3703266,0.6718878,-0.6414242,-0.3703266,0.6718878,-0.6414242,-0.3703266,0.6718878,-0.6414242,0.7406527,0.671888,0,0.7406527,0.671888,0,0.7406527,0.671888,0,0.7406527,0.671888,0,0.7406527,0.671888,0,0.7406527,0.671888,0,0.3703266,0.6718878,0.6414242,0.3703266,0.6718878,0.6414242,0.3703266,0.6718878,0.6414242,0.3703266,0.6718878,0.6414242,0.3703266,0.6718878,0.6414242,0.3703266,0.6718878,0.6414242 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: 3.651575,-3.124863,-3.651575,-3.124863,2.702165,0.2034446,-2.702165,0.2034446,-3.651575,-3.124863,-2.702165,0.2034446,3.651575,-3.124863,2.702165,0.2034446,-2.702165,2.893701,-2.702165,8.129921,2.702165,2.893701,2.702165,8.129921,3.651575,-3.124866,-3.651574,-3.124866,2.702165,0.2034429,-2.702166,0.2034426,2.702166,2.893701,-2.702165,2.893701,2.702166,8.129921,-2.702165,8.129921,3.651574,-3.124866,-3.651575,-3.124866,2.702166,0.2034426,-2.702165,0.2034429,3.651574,-3.124866,-3.651575,-3.124866,2.702166,0.2034426,-2.702165,0.2034429,2.702165,2.893701,-2.702166,2.893701,2.702165,8.129921,-2.702166,8.129921,2.702165,2.893701,-2.702166,2.893701,2.702165,8.129921,-2.702166,8.129921,2.702166,2.893701,-2.702165,2.893701,2.702166,8.129921,-2.702165,8.129921,3.651575,-3.124866,-3.651574,-3.124866,2.702165,0.2034429,-2.702166,0.2034426,6.324712,3.651575,6.324712,-3.651575,0,7.30315,0,-7.30315,-6.324712,3.651575,-6.324712,-3.651575,2.702165,8.129921,2.702165,2.893701,-2.702165,8.129921,-2.702165,2.893701,-4.680288,2.702165,-3.66672,-2.116982,-4.680288,-2.702165,0,-5.404331,-2.273737E-13,-4.233965,3.66672,-2.116982,4.680288,-2.702165,3.66672,2.116982,-3.66672,2.116982,0,5.404331,-2.273737E-13,4.233965,4.680288,2.702165,-2.666705,-1.539624,-2.666705,1.539624,0,-3.079246,0,3.079246,2.666705,-1.539624,2.666705,1.539624,2.116982,8.485075,1.539622,6.996709,-2.116983,8.485075,-1.539623,6.996709,-2.116982,8.485074,2.116982,8.485074,-1.539624,6.996708,1.539624,6.996708,-2.116983,8.485075,2.116982,8.485075,-1.539623,6.996709,1.539622,6.996709,-2.116982,8.485075,2.116983,8.485075,-1.539622,6.996709,1.539623,6.996709,2.116982,8.485074,1.539624,6.996708,-2.116982,8.485074,-1.539624,6.996708,2.116983,8.485075,1.539623,6.996709,-2.116982,8.485075,-1.539622,6.996709 + } + UVIndex: *168 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,55,57,59,58,57,60,59,57,61,59,60,55,62,54,63,54,62,64,63,62,61,63,64,65,63,61,60,65,61,66,68,67,69,67,68,70,69,68,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *56 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stump_round, Model::RootNode + C: "OO",5117673258759106434,0 + + ;Geometry::, Model::Mesh stump_round + C: "OO",4671473384429652391,5117673258759106434 + + ;Material::woodBark, Model::Mesh stump_round + C: "OO",3046,5117673258759106434 + + ;Material::woodInner, Model::Mesh stump_round + C: "OO",3054,5117673258759106434 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_round.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stump_round.fbx.import new file mode 100644 index 0000000..eb566f1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_round.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bn0yjto8uwd53" +path="res://.godot/imported/stump_round.fbx-f8253397049ea9994019f81193753cdd.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stump_round.fbx" +dest_files=["res://.godot/imported/stump_round.fbx-f8253397049ea9994019f81193753cdd.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_roundDetailed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stump_roundDetailed.fbx new file mode 100644 index 0000000..c04afcc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_roundDetailed.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 345 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stump_roundDetailed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stump_roundDetailed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5634058892185189799, "Model::stump_roundDetailed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5667386738111167825, "Geometry::", "Mesh" { + Vertices: *480 { + a: 1.188793,0.7349999,-0.68635,0.554634,0.9269785,-1.052482,0,0.7349999,-1.3727,0,2.065,-1.3727,0.554634,1.416979,-1.052482,0.9789865,1.416979,-0.8074819,0.9789865,0.9269785,-0.8074819,1.188793,2.065,-0.68635,1.606477,0,0.9275,0,0,1.855,1.188793,0.7349999,0.68635,0,0.7349999,1.3727,1.606477,0,0.9275,1.606477,0,-0.9275,0,0,1.855,0,0,-1.855,-1.606477,0,0.9275,-1.606477,0,-0.9275,1.188793,2.065,-0.68635,1.188793,0.7349999,-0.68635,1.188793,2.065,0.68635,1.188793,0.7349999,0.68635,0.9179088,1.002928,-1.529792,1.210712,1.002928,-1.360742,0.9179088,1.341028,-1.529792,1.210712,1.341028,-1.360742,-1.573793,1.127544,0.2891093,-1.958793,1.127544,0.2891093,-1.573793,1.672456,0.2891093,-1.958793,1.672456,0.2891093,1.606477,0,-0.9275,1.606477,0,0.9275,1.188793,0.7349999,-0.68635,1.188793,0.7349999,0.68635,-1.188793,1.050697,0.3706528,-1.573793,1.127544,0.2891093,-1.188793,1.749303,0.3706528,-1.573793,1.672456,0.2891093,-1.188793,1.050697,0.3706528,-1.188793,1.050697,-0.3706528,-1.573793,1.127544,0.2891093,-1.573793,1.127544,-0.2891093,0,0,-1.855,1.606477,0,-0.9275,0,0.7349999,-1.3727,1.188793,0.7349999,-0.68635,0,0,1.855,-1.606477,0,0.9275,0,0.7349999,1.3727,-1.188793,0.7349999,0.68635,-1.958793,1.127544,-0.2891093,-1.958793,1.672456,-0.2891093,-1.958793,1.127544,0.2891093,-1.958793,1.672456,0.2891093,-1.573793,1.672456,-0.2891093,-1.573793,1.672456,0.2891093,-1.958793,1.672456,-0.2891093,-1.958793,1.672456,0.2891093,-1.958793,1.127544,-0.2891093,-1.573793,1.127544,-0.2891093,-1.958793,1.672456,-0.2891093,-1.573793,1.672456,-0.2891093,-1.606477,0,-0.9275,0,0,-1.855,-1.188793,0.7349999,-0.68635,0,0.7349999,-1.3727,-1.188793,1.749303,-0.3706528,-1.188793,1.749303,0.3706528,-1.573793,1.672456,-0.2891093,-1.573793,1.672456,0.2891093,-1.188793,1.050697,-0.3706528,-1.188793,1.749303,-0.3706528,-1.573793,1.127544,-0.2891093,-1.573793,1.672456,-0.2891093,1.210712,1.002928,-1.360742,0.9179088,1.002928,-1.529792,0.9789865,0.9269785,-0.8074819,0.554634,0.9269785,-1.052482,0,0.7349999,1.3727,-1.188793,0.7349999,0.68635,0,2.065,1.3727,-1.188793,2.065,0.68635,0.9179088,1.002928,-1.529792,0.9179088,1.341028,-1.529792,0.554634,0.9269785,-1.052482,0.554634,1.416979,-1.052482,-1.188793,0.7349999,-0.68635,0,0.7349999,-1.3727,-1.188793,2.065,-0.68635,0,2.065,-1.3727,-1.573793,1.127544,0.2891093,-1.573793,1.127544,-0.2891093,-1.958793,1.127544,0.2891093,-1.958793,1.127544,-0.2891093,1.188793,0.7349999,0.68635,0,0.7349999,1.3727,1.188793,2.065,0.68635,0,2.065,1.3727,-1.188793,2.065,-0.68635,-1.188793,1.050697,-0.3706528,-1.188793,0.7349999,-0.68635,-1.188793,0.7349999,0.68635,-1.188793,1.050697,0.3706528,-1.188793,1.749303,0.3706528,-1.188793,1.749303,-0.3706528,-1.188793,2.065,0.68635,-1.606477,0,-0.9275,-1.188793,0.7349999,-0.68635,-1.606477,0,0.9275,-1.188793,0.7349999,0.68635,1.210712,1.341028,-1.360742,0.9789865,1.416979,-0.8074819,0.9179088,1.341028,-1.529792,0.554634,1.416979,-1.052482,1.210712,1.341028,-1.360742,1.210712,1.002928,-1.360742,0.9789865,1.416979,-0.8074819,0.9789865,0.9269785,-0.8074819,1.188793,2.065,0.68635,0.9313471,2.065,-0.5377133,1.188793,2.065,-0.68635,0,2.065,-1.3727,5.775292E-14,2.065,-1.075427,-0.9313471,2.065,-0.5377133,-1.188793,2.065,-0.68635,-0.9313471,2.065,0.5377133,0.9313471,2.065,0.5377133,0,2.065,1.3727,5.775292E-14,2.065,1.075427,-1.188793,2.065,0.68635,0.6773433,1.785,-0.3910644,0.6773433,1.785,0.3910644,0,1.785,-0.7821286,0,1.785,0.7821286,-0.6773432,1.785,-0.3910644,-0.6773432,1.785,0.3910644,0.9313471,2.065,0.5377133,5.775292E-14,2.065,1.075427,0.6773433,1.785,0.3910644,0,1.785,0.7821286,5.775292E-14,2.065,-1.075427,0,1.785,-0.7821286,-0.9313471,2.065,-0.5377133,-0.6773432,1.785,-0.3910644,-0.9313471,2.065,-0.5377133,-0.6773432,1.785,-0.3910644,-0.9313471,2.065,0.5377133,-0.6773432,1.785,0.3910644,0.9313471,2.065,-0.5377133,0.9313471,2.065,0.5377133,0.6773433,1.785,-0.3910644,0.6773433,1.785,0.3910644,0.9313471,2.065,-0.5377133,0.6773433,1.785,-0.3910644,5.775292E-14,2.065,-1.075427,0,1.785,-0.7821286,5.775292E-14,2.065,1.075427,-0.9313471,2.065,0.5377133,0,1.785,0.7821286,-0.6773432,1.785,0.3910644 + } + PolygonVertexIndex: *288 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,1,6,-1,7,0,-7,5,7,-7,3,7,-6,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,15,-15,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,99,-102,103,102,-102,99,104,-99,105,98,-105,103,105,-105,101,105,-104,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,119,-122,123,122,-122,124,123,-122,125,123,-125,119,126,-119,127,118,-127,128,127,-127,125,127,-129,129,127,-126,124,129,-126,130,132,-132,133,131,-133,134,133,-133,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *864 { + a: 0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0.4347104,0.4940724,0.7529404,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0.4999996,0,-0.8660256,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,0.8694206,0.4940724,0,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.2072048,0,0.9782975,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,-0.1957399,-0.9806559,0,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-0.4347104,0.4940724,0.7529404,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.4347104,0.4940724,-0.7529404,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.1957395,0.980656,0,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,-0.2072048,0,-0.9782975,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,0.0633098,-0.9919513,-0.1096559,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.795745,0,-0.6056318,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,-0.8694208,0.4940723,0,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.0633098,0.9919513,-0.1096559,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0.9223648,0,0.3863201,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3703265,0.6718878,-0.6414242,-0.3703265,0.6718878,-0.6414242,-0.3703265,0.6718878,-0.6414242,-0.3703265,0.6718878,-0.6414242,-0.3703265,0.6718878,-0.6414242,-0.3703265,0.6718878,-0.6414242,0.3703265,0.6718878,0.6414242,0.3703265,0.6718878,0.6414242,0.3703265,0.6718878,0.6414242,0.3703265,0.6718878,0.6414242,0.3703265,0.6718878,0.6414242,0.3703265,0.6718878,0.6414242,0.7406527,0.6718879,0,0.7406527,0.6718879,0,0.7406527,0.6718879,0,0.7406527,0.6718879,0,0.7406527,0.6718879,0,0.7406527,0.6718879,0,-0.7406529,0.6718879,0,-0.7406529,0.6718879,0,-0.7406529,0.6718879,0,-0.7406529,0.6718879,0,-0.7406529,0.6718879,0,-0.7406529,0.6718879,0,-0.3703265,0.6718878,0.6414242,-0.3703265,0.6718878,0.6414242,-0.3703265,0.6718878,0.6414242,-0.3703265,0.6718878,0.6414242,-0.3703265,0.6718878,0.6414242,-0.3703265,0.6718878,0.6414242,0.3703265,0.6718878,-0.6414242,0.3703265,0.6718878,-0.6414242,0.3703265,0.6718878,-0.6414242,0.3703265,0.6718878,-0.6414242,0.3703265,0.6718878,-0.6414242,0.3703265,0.6718878,-0.6414242 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *320 { + a: -2.702165,2.893701,0.1807631,3.649522,2.702165,2.893701,2.702165,8.129921,0.1807631,5.578656,-1.748371,5.578656,-1.748371,3.649522,-2.702165,8.129921,3.651575,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034422,6.324713,3.651575,6.324713,-3.651575,0,7.30315,0,-7.30315,-6.324713,3.651575,-6.324713,-3.651575,2.702165,8.129921,2.702165,2.893701,-2.702165,8.129921,-2.702165,2.893701,-0.1182565,3.948537,-1.449359,3.948537,-0.1182565,5.27964,-1.449359,5.27964,-6.196035,4.439148,-7.711783,4.439148,-6.196035,6.584474,-7.711783,6.584474,3.651575,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034422,-4.276348,4.136603,-5.825721,4.439148,-4.276348,6.887019,-5.825721,6.584474,1.459263,5.399449,-1.459263,5.399449,1.138225,6.945096,-1.138225,6.945096,3.651575,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034422,3.651575,-3.124866,-3.651574,-3.124866,2.702165,0.2034423,-2.702165,0.2034422,-1.138225,4.439148,-1.138225,6.584474,1.138225,4.439148,1.138225,6.584474,6.196035,-1.138225,6.196035,1.138225,7.711783,-1.138225,7.711783,1.138225,7.711783,4.439148,6.196035,4.439148,7.711783,6.584474,6.196035,6.584474,3.651574,-3.124866,-3.651575,-3.124866,2.702165,0.2034422,-2.702165,0.2034423,-1.459263,-3.24169,1.459263,-3.24169,-1.138225,-4.787337,1.138225,-4.787337,4.276348,4.136603,4.276348,6.887019,5.825721,4.439148,5.825721,6.584474,-1.449358,7.466246,-0.118255,7.466245,-1.748372,5.104718,0.1807621,5.104719,2.702165,2.893701,-2.702165,2.893701,2.702165,8.129921,-2.702165,8.129921,-6.981256,3.948537,-6.981256,5.27964,-4.619729,3.649522,-4.619729,5.578656,2.702165,2.893701,-2.702165,2.893701,2.702165,8.129921,-2.702165,8.129921,-6.196035,1.138225,-6.196035,-1.138225,-7.711783,1.138225,-7.711783,-1.138225,2.702165,2.893701,-2.702165,2.893701,2.702165,8.129921,-2.702165,8.129921,-2.702165,8.129921,-1.459263,4.136603,-2.702165,2.893701,2.702165,2.893701,1.459263,4.136603,1.459263,6.887019,-1.459263,6.887019,2.702165,8.129921,-3.651575,-3.124866,-2.702165,0.2034426,3.651575,-3.124866,2.702165,0.2034426,-1.449358,-6.297777,-1.748372,-3.93625,-0.118255,-6.297777,0.1807621,-3.93625,6.782767,5.27964,6.782767,3.948537,4.42124,5.578656,4.42124,3.649522,-4.680287,2.702165,-3.666721,-2.116982,-4.680287,-2.702165,0,-5.404331,-2.273737E-13,-4.233965,3.666721,-2.116982,4.680287,-2.702165,3.666721,2.116982,-3.666721,2.116982,0,5.404331,-2.273737E-13,4.233965,4.680287,2.702165,-2.666706,-1.539624,-2.666706,1.539624,0,-3.079246,0,3.079246,2.666706,-1.539624,2.666706,1.539624,-2.116982,8.485075,2.116983,8.485075,-1.539623,6.996709,1.539623,6.996709,2.116983,8.485075,1.539623,6.996709,-2.116982,8.485075,-1.539623,6.996709,2.116982,8.485075,1.539624,6.996708,-2.116982,8.485075,-1.539624,6.996708,-2.116982,8.485075,2.116982,8.485075,-1.539624,6.996709,1.539624,6.996709,2.116982,8.485075,1.539623,6.996709,-2.116983,8.485075,-1.539623,6.996709,-2.116983,8.485075,2.116982,8.485075,-1.539623,6.996709,1.539623,6.996709 + } + UVIndex: *288 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,1,6,0,7,0,6,5,7,6,3,7,5,8,10,9,11,9,10,12,14,13,15,13,14,16,15,14,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,99,101,103,102,101,99,104,98,105,98,104,103,105,104,101,105,103,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,119,121,123,122,121,124,123,121,125,123,124,119,126,118,127,118,126,128,127,126,125,127,128,129,127,125,124,129,125,130,132,131,133,131,132,134,133,132,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *96 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stump_roundDetailed, Model::RootNode + C: "OO",5634058892185189799,0 + + ;Geometry::, Model::Mesh stump_roundDetailed + C: "OO",5667386738111167825,5634058892185189799 + + ;Material::woodBark, Model::Mesh stump_roundDetailed + C: "OO",3046,5634058892185189799 + + ;Material::woodInner, Model::Mesh stump_roundDetailed + C: "OO",3054,5634058892185189799 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_roundDetailed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stump_roundDetailed.fbx.import new file mode 100644 index 0000000..183db83 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_roundDetailed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://w74618fi7757" +path="res://.godot/imported/stump_roundDetailed.fbx-aeca280af3242f9ba7a786492fd5df3f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stump_roundDetailed.fbx" +dest_files=["res://.godot/imported/stump_roundDetailed.fbx-aeca280af3242f9ba7a786492fd5df3f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_square.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stump_square.fbx new file mode 100644 index 0000000..7dd9c2d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_square.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 430 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stump_square.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stump_square.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4937703124826231381, "Model::stump_square", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4933230083150822419, "Geometry::", "Mesh" { + Vertices: *204 { + a: 1.125,1,1.125,-1.125,1,1.125,0.8437499,3,0.8437499,-0.8437499,3,0.8437499,-0.9460799,2.272321,-0.275,-0.9460799,2.272321,0.275,-2.051446,2.311126,-0.1595,-2.051446,2.311126,0.1595,1.5,0,1.5,-1.5,0,1.5,1.125,1,1.125,-1.125,1,1.125,-1.5,0,-1.5,1.5,0,-1.5,-1.125,1,-1.125,1.125,1,-1.125,-1.02267,1.727679,0.275,-2.095868,1.995234,0.1595,-0.9460799,2.272321,0.275,-2.051446,2.311126,0.1595,1.5,0,-1.5,1.5,0,1.5,1.125,1,-1.125,1.125,1,1.125,-1.02267,1.727679,0.275,-1.02267,1.727679,-0.275,-2.095868,1.995234,0.1595,-2.095868,1.995234,-0.1595,1.125,1,-1.125,1.125,1,1.125,0.8437499,3,-0.8437499,0.8437499,3,0.8437499,0.8437499,3,0.8437499,0.5099433,3,-0.5099433,0.8437499,3,-0.8437499,-0.8437499,3,-0.8437499,-0.5099433,3,-0.5099433,-0.5099433,3,0.5099433,0.5099433,3,0.5099433,-0.8437499,3,0.8437499,-1.125,1,-1.125,1.125,1,-1.125,-0.8437499,3,-0.8437499,0.8437499,3,-0.8437499,-2.095868,1.995234,-0.1595,-2.051446,2.311126,-0.1595,-2.095868,1.995234,0.1595,-2.051446,2.311126,0.1595,-1.5,0,-1.5,-1.125,1,-1.125,-1.5,0,1.5,-1.125,1,1.125,-1.02267,1.727679,-0.275,-0.9460799,2.272321,-0.275,-2.095868,1.995234,-0.1595,-2.051446,2.311126,-0.1595,1.5,0,1.5,1.5,0,-1.5,-1.5,0,1.5,-1.5,0,-1.5,-0.8437499,3,-0.8437499,-1.02267,1.727679,-0.275,-1.125,1,-1.125,-1.125,1,1.125,-1.02267,1.727679,0.275,-0.9460799,2.272321,0.275,-0.8437499,3,0.8437499,-0.9460799,2.272321,-0.275 + } + PolygonVertexIndex: *132 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,33,-36,37,36,-36,33,38,-33,39,32,-39,37,39,-39,35,39,-38,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,61,-64,65,64,-64,66,65,-64,66,60,-68,61,67,-61,65,66,-68,33,36,-39,37,38,-37 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *396 { + a: 0,0.1392548,0.9902565,0,0.1392548,0.9902565,0,0.1392548,0.9902565,0,0.1392548,0.9902565,0,0.1392548,0.9902565,0,0.1392548,0.9902565,0.03508501,0.9993843,0,0.03508501,0.9993843,0,0.03508501,0.9993843,0,0.03508501,0.9993843,0,0.03508501,0.9993843,0,0.03508501,0.9993843,0,0,0.3511235,0.9363292,0,0.3511235,0.9363292,0,0.3511235,0.9363292,0,0.3511235,0.9363292,0,0.3511235,0.9363292,0,0.3511235,0.9363292,0,0.3511235,-0.9363292,0,0.3511235,-0.9363292,0,0.3511235,-0.9363292,0,0.3511235,-0.9363292,0,0.3511235,-0.9363292,0,0.3511235,-0.9363292,-0.1034085,0.01454182,0.9945327,-0.1034085,0.01454182,0.9945327,-0.1034085,0.01454182,0.9945327,-0.1034085,0.01454182,0.9945327,-0.1034085,0.01454182,0.9945327,-0.1034085,0.01454182,0.9945327,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.9363292,0.3511235,0,0.9363292,0.3511235,0,-0.241902,-0.9703007,0,-0.241902,-0.9703007,0,-0.241902,-0.9703007,0,-0.241902,-0.9703007,0,-0.241902,-0.9703007,0,-0.241902,-0.9703007,0,0.9902565,0.1392548,0,0.9902565,0.1392548,0,0.9902565,0.1392548,0,0.9902565,0.1392548,0,0.9902565,0.1392548,0,0.9902565,0.1392548,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.1392548,-0.9902565,0,0.1392548,-0.9902565,0,0.1392548,-0.9902565,0,0.1392548,-0.9902565,0,0.1392548,-0.9902565,0,0.1392548,-0.9902565,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9363292,0.3511235,0,-0.9363292,0.3511235,0,-0.9363292,0.3511235,0,-0.9363292,0.3511235,0,-0.9363292,0.3511235,0,-0.9363292,0.3511235,0,-0.1034085,0.01454182,-0.9945327,-0.1034085,0.01454182,-0.9945327,-0.1034085,0.01454182,-0.9945327,-0.1034085,0.01454182,-0.9945327,-0.1034085,0.01454182,-0.9945327,-0.1034085,0.01454182,-0.9945327,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,-0.9902565,0.1392548,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *136 { + a: 4.429134,3.28187,-4.429134,3.28187,3.32185,11.23336,-3.32185,11.23336,1.082677,4.036306,-1.082677,4.036306,0.6279528,8.390822,-0.6279528,8.390822,5.905512,-2.073564,-5.905512,-2.073564,4.429134,2.131163,-4.429134,2.131163,5.905512,-2.073564,-5.905512,-2.073564,4.429134,2.131163,-4.429134,2.131163,-3.892701,6.779454,-8.142262,7.832931,-3.592782,8.923937,-7.968309,9.076731,5.905512,-2.073564,-5.905512,-2.073564,4.429134,2.131163,-4.429134,2.131163,1.082677,5.552073,-1.082677,5.552073,0.6279528,9.90659,-0.6279528,9.90659,4.429134,3.28187,-4.429134,3.28187,3.32185,11.23336,-3.32185,11.23336,-3.32185,3.32185,-2.007651,-2.007651,-3.32185,-3.32185,3.32185,-3.32185,2.007651,-2.007651,2.007651,2.007651,-2.007651,2.007651,3.32185,3.32185,4.429134,3.28187,-4.429134,3.28187,3.32185,11.23336,-3.32185,11.23336,-0.6279528,6.629662,-0.6279528,7.885568,0.6279528,6.629662,0.6279528,7.885568,-5.905512,-2.073564,-4.429134,2.131163,5.905512,-2.073564,4.429134,2.131163,3.892701,6.779454,3.592782,8.923937,8.142262,7.832931,7.968309,9.076731,5.905512,5.905512,5.905512,-5.905512,-5.905512,5.905512,-5.905512,-5.905512,-3.32185,11.23336,-1.082677,6.174938,-4.429134,3.28187,4.429134,3.28187,1.082677,6.174938,1.082677,8.340292,3.32185,11.23336,-1.082677,8.340292 + } + UVIndex: *132 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,33,35,37,36,35,33,38,32,39,32,38,37,39,38,35,39,37,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,61,63,65,64,63,66,65,63,66,60,67,61,67,60,65,66,67,33,36,38,37,38,36 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *44 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stump_square, Model::RootNode + C: "OO",4937703124826231381,0 + + ;Geometry::, Model::Mesh stump_square + C: "OO",4933230083150822419,4937703124826231381 + + ;Material::woodBark, Model::Mesh stump_square + C: "OO",3046,4937703124826231381 + + ;Material::woodInner, Model::Mesh stump_square + C: "OO",3054,4937703124826231381 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_square.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stump_square.fbx.import new file mode 100644 index 0000000..6ea73ab --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_square.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://182k1wapm0g3" +path="res://.godot/imported/stump_square.fbx-d5ee45904247b6c735b7bd4834fdcbb7.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stump_square.fbx" +dest_files=["res://.godot/imported/stump_square.fbx-d5ee45904247b6c735b7bd4834fdcbb7.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailed.fbx new file mode 100644 index 0000000..82924d6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailed.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 524 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stump_squareDetailed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stump_squareDetailed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5540806399016257720, "Model::stump_squareDetailed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5470792528679705477, "Geometry::", "Mesh" { + Vertices: *432 { + a: 1.2,1,-1.2,1.2,1,-1,1.02,2,-1.02,1.02,2,1.02,1.2,1,1,1.2,1,1.2,1.2,1,1.2,1,1,1.2,1.02,2,1.02,-1.02,2,1.02,-1.2,1,1.2,-1,1,1.2,2.2,4.652119E-19,0.5,1.71,4.652119E-19,0.745,1.2,1,1,1.71,4.652119E-19,-0.745,2.2,4.652119E-19,-0.5,1.2,1,-1,0.745,4.652119E-19,-1.71,1.71,4.652119E-19,-1.71,1,1,-1.2,1.2,1,-1.2,1,1,-1.2,-1,1,-1.2,0.5,4.652119E-19,-2.2,-0.5,4.652119E-19,-2.2,1.71,4.652119E-19,0.745,1.71,4.652119E-19,1.71,1.2,1,1,1.2,1,1.2,-0.745,7.843739E-16,-1.71,-0.5,4.652119E-19,-2.2,-1,1,-1.2,0.5,4.652119E-19,-2.2,0.745,4.652119E-19,-1.71,1,1,-1.2,-1.71,4.652119E-19,1.71,-1.2,1,1.2,-0.745,7.108825E-16,1.71,-1,1,1.2,1.02,2,1.02,0.6846625,2,-0.6846625,1.02,2,-1.02,-1.02,2,-1.02,-0.6846625,2,-0.6846625,-0.6846625,2,0.6846625,0.6846625,2,0.6846625,-1.02,2,1.02,-1.71,4.652119E-19,-1.71,-0.745,7.843739E-16,-1.71,-1.2,1,-1.2,-1,1,-1.2,1.71,4.652119E-19,-1.71,1.71,4.652119E-19,-0.745,1.2,1,-1.2,1.2,1,-1,0.745,0,1.71,1,1,1.2,1.71,4.652119E-19,1.71,1.2,1,1.2,-1,1,-1.2,1,1,-1.2,-1.2,1,-1.2,-1.02,2,-1.02,1.02,2,-1.02,1.2,1,-1.2,-1.2,1,-1.2,-1.02,2,-1.02,-1.2,1,-1,-1.02,2,1.02,-1.2,1,1,-1.2,1,1.2,2.2,4.652119E-19,-0.5,2.2,4.652119E-19,0.5,1.2,1,-1,1.2,1,1,1,1,1.2,0.5,4.652119E-19,2.2,-1,1,1.2,-0.5,4.652119E-19,2.2,1,1,1.2,0.745,0,1.71,0.5,4.652119E-19,2.2,-0.745,7.108825E-16,1.71,-1,1,1.2,-0.5,4.652119E-19,2.2,-1.71,4.652119E-19,-1.71,-1.2,1,-1.2,-1.71,4.652119E-19,-0.745,-1.2,1,-1,-1.71,4.652119E-19,0.745,-1.2,1,1,-1.71,4.652119E-19,1.71,-1.2,1,1.2,1.71,4.652119E-19,1.71,1.71,4.652119E-19,0.745,0.745,0,1.71,0.745,4.652119E-19,-1.71,1.71,4.652119E-19,-1.71,1.71,4.652119E-19,-0.745,2.2,4.652119E-19,0.5,2.2,4.652119E-19,-0.5,0.5,4.652119E-19,2.2,0.5,4.652119E-19,-2.2,-0.5,4.652119E-19,-2.2,-0.5,4.652119E-19,2.2,-0.745,7.843739E-16,-1.71,-0.745,7.108825E-16,1.71,-1.71,4.652119E-19,1.71,-1.71,4.652119E-19,0.745,-1.71,4.652119E-19,-0.745,-2.2,4.652119E-19,0.5,-2.2,4.652119E-19,-0.5,-1.71,4.652119E-19,-1.71,-1.2,1,-1,-1.2,1,1,-2.2,4.652119E-19,-0.5,-2.2,4.652119E-19,0.5,-2.2,4.652119E-19,-0.5,-1.71,4.652119E-19,-0.745,-1.2,1,-1,-1.71,4.652119E-19,0.745,-2.2,4.652119E-19,0.5,-1.2,1,1,-0.6846625,2,-0.6846625,-0.5134968,1,-0.5134968,-0.6846625,2,0.6846625,-0.5134968,1,0.5134968,0.6846625,2,-0.6846625,0.6846625,2,0.6846625,0.5134968,1,-0.5134968,0.5134968,1,0.5134968,0.5134968,1,-0.5134968,-0.5134968,1,-0.5134968,0.6846625,2,-0.6846625,-0.6846625,2,-0.6846625,-0.5134968,1,0.5134968,0.5134968,1,0.5134968,-0.6846625,2,0.6846625,0.6846625,2,0.6846625,0.5134968,1,-0.5134968,0.5134968,1,0.5134968,-0.5134968,1,-0.5134968,-0.5134968,1,0.5134968 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,6,8,-8,8,9,-8,9,10,-8,11,7,-11,12,14,-14,15,17,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,35,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,41,46,-41,47,40,-47,45,47,-47,43,47,-46,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,63,64,-62,65,61,-65,66,68,-68,69,67,-69,70,69,-69,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,85,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,96,97,-96,97,98,-96,98,99,-96,95,99,-101,101,100,-100,102,97,-97,103,97,-103,104,103,-103,105,104,-103,106,104,-106,107,106,-106,108,106,-108,109,106,-109,109,110,-107,109,111,-111,112,110,-112,113,106,-111,114,116,-116,117,115,-117,118,120,-120,121,123,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: 0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0.4472136,0,-0.8944272,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,-0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,-0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,0.9856654,0.168712,0,0.9856654,0.168712,0,0.9856654,0.168712,0,0.9856654,0.168712,0,0.9856654,0.168712,0,0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,0,0.168712,0.9856654,0,0.168712,0.9856654,0,0.168712,0.9856654,0,0.168712,0.9856654,0,0.168712,0.9856654,0,0.168712,0.9856654,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *288 { + a: 4.72441,3.037794,3.937008,3.037794,4.015748,7.038073,-4.015748,7.038073,-3.937008,3.037794,-4.72441,3.037794,4.72441,3.037794,3.937008,3.037794,4.015748,7.038073,-4.015748,7.038073,-4.72441,3.037794,-3.937008,3.037794,6.866665,-2.160154E-13,4.709828,-2.160154E-13,2.464957,3.937008,-4.709828,-1.582867E-13,-6.866665,-1.582867E-13,-2.464957,3.937008,-2.933071,-3.058652,-6.732284,-3.058652,-3.937008,1.360804,-4.72441,1.360804,-3.937008,-0.556777,3.937008,-0.556777,-1.968504,-6.124547,1.968504,-6.124547,-2.933071,-3.058652,-6.732284,-3.058652,-3.937008,1.360804,-4.72441,1.360804,-4.709828,-1.952381E-13,-6.866665,-1.983243E-13,-2.464957,3.937008,6.866665,-7.821131E-14,4.709828,-7.821131E-14,2.464957,3.937008,-6.732284,-3.058652,-4.72441,1.360804,-2.933071,-3.058652,-3.937008,1.360804,-4.015748,4.015748,-2.695522,-2.695522,-4.015748,-4.015748,4.015748,-4.015748,2.695522,-2.695522,2.695522,2.695522,-2.695522,2.695522,4.015748,4.015748,6.732284,-3.058652,2.933071,-3.058652,4.72441,1.360804,3.937008,1.360804,6.732284,-3.058652,2.933071,-3.058652,4.72441,1.360804,3.937008,1.360804,2.933071,-3.058652,3.937008,1.360804,6.732284,-3.058652,4.72441,1.360804,3.937008,3.037794,-3.937008,3.037794,4.72441,3.037794,4.015748,7.038073,-4.015748,7.038073,-4.72441,3.037794,-4.72441,3.037794,-4.015748,7.038073,-3.937008,3.037794,4.015748,7.038073,3.937008,3.037794,4.72441,3.037794,1.968504,-6.124547,-1.968504,-6.124547,3.937008,-0.556777,-3.937008,-0.556777,3.937008,-0.556777,1.968504,-6.124547,-3.937008,-0.556777,-1.968504,-6.124547,-2.464957,3.937008,-4.709828,-8.165824E-13,-6.866665,-8.165806E-13,4.709828,6.163995E-13,2.464957,3.937008,6.866665,6.136025E-13,-6.732284,-3.058652,-4.72441,1.360804,-2.933071,-3.058652,-3.937008,1.360804,2.933071,-3.058652,3.937008,1.360804,6.732284,-3.058652,4.72441,1.360804,6.732284,6.732284,6.732284,2.933071,2.933071,6.732284,2.933071,-6.732284,6.732284,-6.732284,6.732284,-2.933071,8.661417,1.968504,8.661417,-1.968504,1.968504,8.661417,1.968504,-8.661417,-1.968504,-8.661417,-1.968504,8.661417,-2.933071,-6.732284,-2.933071,6.732284,-6.732284,6.732284,-6.732284,2.933071,-6.732284,-2.933071,-8.661417,1.968504,-8.661417,-1.968504,-6.732284,-6.732284,-3.937008,-0.556777,3.937008,-0.556777,-1.968504,-6.124547,1.968504,-6.124547,6.866665,-8.026139E-13,4.709828,-8.026139E-13,2.464957,3.937008,-4.709828,-1.161091E-12,-6.866665,-1.161091E-12,-2.464957,3.937008,2.695522,8.215912,2.021641,4.221648,-2.695522,8.215912,-2.021641,4.221648,-2.695522,8.215912,2.695522,8.215912,-2.021641,4.221648,2.021641,4.221648,2.021641,4.221648,-2.021641,4.221648,2.695522,8.215912,-2.695522,8.215912,2.021641,4.221648,-2.021641,4.221648,2.695522,8.215912,-2.695522,8.215912,-2.021641,-2.021641,-2.021641,2.021641,2.021641,-2.021641,2.021641,2.021641 + } + UVIndex: *252 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,6,8,7,8,9,7,9,10,7,11,7,10,12,14,13,15,17,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,35,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,41,46,40,47,40,46,45,47,46,43,47,45,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,63,64,61,65,61,64,66,68,67,69,67,68,70,69,68,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,85,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,96,97,95,97,98,95,98,99,95,95,99,100,101,100,99,102,97,96,103,97,102,104,103,102,105,104,102,106,104,105,107,106,105,108,106,107,109,106,108,109,110,106,109,111,110,112,110,111,113,106,110,114,116,115,117,115,116,118,120,119,121,123,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stump_squareDetailed, Model::RootNode + C: "OO",5540806399016257720,0 + + ;Geometry::, Model::Mesh stump_squareDetailed + C: "OO",5470792528679705477,5540806399016257720 + + ;Material::woodBark, Model::Mesh stump_squareDetailed + C: "OO",3046,5540806399016257720 + + ;Material::woodInner, Model::Mesh stump_squareDetailed + C: "OO",3054,5540806399016257720 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailed.fbx.import new file mode 100644 index 0000000..c72f3dc --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bvdi7c4nj1g45" +path="res://.godot/imported/stump_squareDetailed.fbx-85c5f027ae5a1643f67d40a9818a2985.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailed.fbx" +dest_files=["res://.godot/imported/stump_squareDetailed.fbx-85c5f027ae5a1643f67d40a9818a2985.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailedWide.fbx b/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailedWide.fbx new file mode 100644 index 0000000..5748f85 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailedWide.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 616 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "stump_squareDetailedWide.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "stump_squareDetailedWide.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4731781274294632836, "Model::stump_squareDetailedWide", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4956174936599397280, "Geometry::", "Mesh" { + Vertices: *432 { + a: -0.8724999,2.518833E-17,-1.71,-0.5,4.167035E-17,-3.2,-1,1,-1.2,-1.2,1,-1.2,-1,1,-1.2,-1.02,2,-1.02,1,1,-1.2,1.02,2,-1.02,1.2,1,-1.2,1,1,-1.2,-1,1,-1.2,0.5,4.167035E-17,-3.2,-0.5,4.167035E-17,-3.2,3.2,4.167035E-17,-0.5,3.2,4.167035E-17,0.5,1.2,1,-1,1.2,1,1,-1.71,3.97504E-17,0.8724999,-3.2,4.167035E-17,0.5,-1.2,1,1,1.2,1,-1.2,1.2,1,-1,1.02,2,-1.02,1.02,2,1.02,1.2,1,1,1.2,1,1.2,1.71,4.167035E-17,0.8724999,1.71,4.167035E-17,1.71,1.2,1,1,1.2,1,1.2,0.5,4.167035E-17,-3.2,0.8724999,2.244441E-17,-1.71,1,1,-1.2,1,1,1.2,0.8724999,3.563695E-17,1.71,0.5,4.167035E-17,3.2,-3.2,4.167035E-17,-0.5,-1.71,8.183723E-17,-0.8724999,-1.2,1,-1,-0.8724999,3.899881E-17,1.71,-1,1,1.2,-0.5,4.167035E-17,3.2,1.71,-4.296663E-17,-0.8724999,3.2,4.167035E-17,-0.5,1.2,1,-1,1,1,1.2,0.5,4.167035E-17,3.2,-1,1,1.2,-0.5,4.167035E-17,3.2,1.2,1,1.2,1,1,1.2,1.02,2,1.02,-1.02,2,1.02,-1.2,1,1.2,-1,1,1.2,-0.8724999,2.518833E-17,-1.71,-1,1,-1.2,-1.71,4.167035E-17,-1.71,-1.2,1,-1.2,-1.71,4.167035E-17,-1.71,-1.2,1,-1.2,-1.71,8.183723E-17,-0.8724999,-1.2,1,-1,1.71,4.167035E-17,1.71,1.71,4.167035E-17,0.8724999,0.8724999,3.563695E-17,1.71,1.71,-4.296663E-17,-0.8724999,0.8724999,2.244441E-17,-1.71,1.71,4.167035E-17,-1.71,0.5,4.167035E-17,3.2,0.5,4.167035E-17,-3.2,-0.5,4.167035E-17,-3.2,-0.5,4.167035E-17,3.2,-0.8724999,2.518833E-17,-1.71,-0.8724999,3.899881E-17,1.71,-1.71,4.167035E-17,-1.71,-1.71,8.183723E-17,-0.8724999,-1.71,3.97504E-17,0.8724999,-1.71,4.167035E-17,1.71,-3.2,4.167035E-17,0.5,-3.2,4.167035E-17,-0.5,3.2,4.167035E-17,-0.5,3.2,4.167035E-17,0.5,-1.2,1,-1.2,-1.02,2,-1.02,-1.2,1,-1,-1.02,2,1.02,-1.2,1,1,-1.2,1,1.2,3.2,4.167035E-17,0.5,1.71,4.167035E-17,0.8724999,1.2,1,1,-1.71,3.97504E-17,0.8724999,-1.2,1,1,-1.71,4.167035E-17,1.71,-1.2,1,1.2,1.71,4.167035E-17,-1.71,1.71,-4.296663E-17,-0.8724999,1.2,1,-1.2,1.2,1,-1,0.8724999,3.563695E-17,1.71,1,1,1.2,1.71,4.167035E-17,1.71,1.2,1,1.2,1.02,2,1.02,0.6846625,2,-0.6846625,1.02,2,-1.02,-1.02,2,-1.02,-0.6846625,2,-0.6846625,-0.6846625,2,0.6846625,0.6846625,2,0.6846625,-1.02,2,1.02,-0.8724999,3.899881E-17,1.71,-1.71,4.167035E-17,1.71,-1,1,1.2,-1.2,1,1.2,0.8724999,2.244441E-17,-1.71,1.71,4.167035E-17,-1.71,1,1,-1.2,1.2,1,-1.2,-1.2,1,-1,-1.2,1,1,-3.2,4.167035E-17,-0.5,-3.2,4.167035E-17,0.5,-0.6846625,2,-0.6846625,-0.5134968,1,-0.5134968,-0.6846625,2,0.6846625,-0.5134968,1,0.5134968,0.6846625,2,-0.6846625,0.6846625,2,0.6846625,0.5134968,1,-0.5134968,0.5134968,1,0.5134968,-0.5134968,1,0.5134968,0.5134968,1,0.5134968,-0.6846625,2,0.6846625,0.6846625,2,0.6846625,0.5134968,1,-0.5134968,0.5134968,1,0.5134968,-0.5134968,1,-0.5134968,-0.5134968,1,0.5134968,0.5134968,1,-0.5134968,-0.5134968,1,-0.5134968,0.6846625,2,-0.6846625,-0.6846625,2,-0.6846625 + } + PolygonVertexIndex: *252 { + a: 0,2,-2,3,5,-5,6,4,-6,5,7,-7,8,6,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,22,-22,23,21,-23,24,21,-24,25,24,-24,26,28,-28,29,27,-29,30,32,-32,33,35,-35,36,38,-38,39,41,-41,42,44,-44,45,47,-47,48,46,-48,49,51,-51,51,52,-51,52,53,-51,54,50,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,65,67,-67,68,66,-68,69,67,-66,70,67,-70,71,70,-70,72,71,-70,73,71,-73,74,73,-73,75,73,-75,76,75,-75,77,76,-75,74,78,-78,77,79,-77,80,76,-80,81,82,-67,64,66,-83,83,85,-85,86,84,-86,87,86,-86,88,86,-88,89,91,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,105,-108,109,108,-108,105,110,-105,111,104,-111,109,111,-111,107,111,-110,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *756 { + a: -0.9701425,0,-0.2425356,-0.9701425,0,-0.2425356,-0.9701425,0,-0.2425356,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.177153,-0.9841834,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0,0.8944272,-0.4472136,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,0.4472136,0.8944272,0,-0.2425356,0,0.9701425,-0.2425356,0,0.9701425,-0.2425356,0,0.9701425,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.9841834,0.177153,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,-0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,0.9701425,0,0.2425356,-0.2425356,0,-0.9701425,-0.2425356,0,-0.9701425,-0.2425356,0,-0.9701425,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,-0.9701425,0,0.2425356,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0.2425356,0,-0.9701425,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.8944272,0.4472136,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.177153,0.9841834,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,-0.9841834,0.177153,0,0.2425356,0,0.9701425,0.2425356,0,0.9701425,0.2425356,0,0.9701425,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,-0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0.8908355,0.4543261,0,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,0,0.4543261,-0.8908355,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0.9856654,0.168712,0,0.9856654,0.168712,0,0.9856654,0.168712,0,0.9856654,0.168712,0,0.9856654,0.168712,0,0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,-0.9856654,0.168712,0,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,0.168712,-0.9856654,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.168712,0.9856654,0,0.168712,0.9856654,0,0.168712,0.9856654,0,0.168712,0.9856654,0,0.168712,0.9856654,0,0.168712,0.9856654 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *288 { + a: -5.698155,6.709283E-14,-11.74484,6.715772E-14,-3.628486,3.937008,4.72441,3.037794,3.937008,3.037794,4.015748,7.038073,-3.937008,3.037794,-4.015748,7.038073,-4.72441,3.037794,-3.937008,-2.464957,3.937008,-2.464957,-1.968504,-11.26837,1.968504,-11.26837,1.968504,-11.26837,-1.968504,-11.26837,3.937008,-2.464957,-3.937008,-2.464957,-5.698155,-3.988569E-14,-11.74484,-3.987813E-14,-3.628486,3.937008,4.72441,3.037794,3.937008,3.037794,4.015748,7.038073,-4.015748,7.038073,-3.937008,3.037794,-4.72441,3.037794,-3.435039,-3.058652,-6.732284,-3.058652,-3.937008,1.360804,-4.72441,1.360804,11.74484,-1.195775E-13,5.698155,-1.196532E-13,3.628486,3.937008,-3.628486,3.937008,-5.698155,-4.218428E-13,-11.74484,-4.21819E-13,11.74484,-1.793193E-14,5.698155,-1.77738E-14,3.628486,3.937008,5.698155,9.140353E-14,3.628486,3.937008,11.74484,9.141405E-14,-5.698155,-3.174089E-14,-11.74484,-3.140767E-14,-3.628486,3.937008,3.937008,-2.464957,1.968504,-11.26837,-3.937008,-2.464957,-1.968504,-11.26837,4.72441,3.037794,3.937008,3.037794,4.015748,7.038073,-4.015748,7.038073,-4.72441,3.037794,-3.937008,3.037794,3.435039,-3.058652,3.937008,1.360804,6.732284,-3.058652,4.72441,1.360804,-6.732284,-3.058652,-4.72441,1.360804,-3.435039,-3.058652,-3.937008,1.360804,6.732284,6.732284,6.732284,3.435039,3.435039,6.732284,6.732284,-3.435039,3.435039,-6.732284,6.732284,-6.732284,1.968504,12.59842,1.968504,-12.59842,-1.968504,-12.59842,-1.968504,12.59842,-3.435039,-6.732284,-3.435039,6.732284,-6.732284,-6.732284,-6.732284,-3.435039,-6.732284,3.435039,-6.732284,6.732284,-12.59842,1.968504,-12.59842,-1.968504,12.59842,-1.968504,12.59842,1.968504,-4.72441,3.037794,-4.015748,7.038073,-3.937008,3.037794,4.015748,7.038073,3.937008,3.037794,4.72441,3.037794,11.74484,5.490775E-16,5.698155,5.490775E-16,3.628486,3.937008,3.435039,-3.058652,3.937008,1.360804,6.732284,-3.058652,4.72441,1.360804,6.732284,-3.058652,3.435039,-3.058652,4.72441,1.360804,3.937008,1.360804,3.435039,-3.058652,3.937008,1.360804,6.732284,-3.058652,4.72441,1.360804,-4.015748,4.015748,-2.695522,-2.695522,-4.015748,-4.015748,4.015748,-4.015748,2.695522,-2.695522,2.695522,2.695522,-2.695522,2.695522,4.015748,4.015748,-3.435039,-3.058652,-6.732284,-3.058652,-3.937008,1.360804,-4.72441,1.360804,-3.435039,-3.058652,-6.732284,-3.058652,-3.937008,1.360804,-4.72441,1.360804,-3.937008,-2.464957,3.937008,-2.464957,-1.968504,-11.26837,1.968504,-11.26837,2.695522,8.215912,2.021641,4.221648,-2.695522,8.215912,-2.021641,4.221648,-2.695522,8.215912,2.695522,8.215912,-2.021641,4.221648,2.021641,4.221648,2.021641,4.221648,-2.021641,4.221648,2.695522,8.215912,-2.695522,8.215912,-2.021641,-2.021641,-2.021641,2.021641,2.021641,-2.021641,2.021641,2.021641,2.021641,4.221648,-2.021641,4.221648,2.695522,8.215912,-2.695522,8.215912 + } + UVIndex: *252 { + a: 0,2,1,3,5,4,6,4,5,5,7,6,8,6,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,22,21,23,21,22,24,21,23,25,24,23,26,28,27,29,27,28,30,32,31,33,35,34,36,38,37,39,41,40,42,44,43,45,47,46,48,46,47,49,51,50,51,52,50,52,53,50,54,50,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,65,67,66,68,66,67,69,67,65,70,67,69,71,70,69,72,71,69,73,71,72,74,73,72,75,73,74,76,75,74,77,76,74,74,78,77,77,79,76,80,76,79,81,82,66,64,66,82,83,85,84,86,84,85,87,86,85,88,86,87,89,91,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,105,107,109,108,107,105,110,104,111,104,110,109,111,110,107,111,109,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *84 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3054, "Material::woodInner", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.9607843,0.8431373,0.7333333 + P: "DiffuseColor", "Color", "", "A",0.9607843,0.8431373,0.7333333 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh stump_squareDetailedWide, Model::RootNode + C: "OO",4731781274294632836,0 + + ;Geometry::, Model::Mesh stump_squareDetailedWide + C: "OO",4956174936599397280,4731781274294632836 + + ;Material::woodBark, Model::Mesh stump_squareDetailedWide + C: "OO",3046,4731781274294632836 + + ;Material::woodInner, Model::Mesh stump_squareDetailedWide + C: "OO",3054,4731781274294632836 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailedWide.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailedWide.fbx.import new file mode 100644 index 0000000..5cf562b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailedWide.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bb2prrij30hki" +path="res://.godot/imported/stump_squareDetailedWide.fbx-2a834552d6f33485abe86399f0e53248.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/stump_squareDetailedWide.fbx" +dest_files=["res://.godot/imported/stump_squareDetailedWide.fbx-2a834552d6f33485abe86399f0e53248.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedClosed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedClosed.fbx new file mode 100644 index 0000000..80bc96d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedClosed.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 733 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tent_detailedClosed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tent_detailedClosed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4897548493158907597, "Model::tent_detailedClosed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5602051998102484092, "Geometry::", "Mesh" { + Vertices: *972 { + a: -2.738,-1.870176E-16,-3.182,-2.738,1.11,-3.182,-2.738,-1.870176E-16,3.182,-2.738,1.11,3.182,-2.738,-1.870176E-16,3.182,-2.738,1.11,-3.182,-2.738,-1.870176E-16,-3.182,-2.738,1.11,3.182,1.443823E-13,5.179999,-2.61368,-0.14208,4.9688,-2.61368,-7.219114E-14,5.179999,2.60184,-0.14208,4.9688,2.60184,-2.738,1.11,3.182,-0.14208,4.9688,-2.89784,-2.738,1.11,-3.182,1.660396E-13,5.179999,-3.182,1.516014E-13,5.179999,-2.89784,-0.14208,4.9688,2.886,-9.384848E-14,5.179999,3.182,-8.662937E-14,5.179999,2.886,-7.219114E-14,5.179999,2.60184,-0.14208,4.9688,-2.61368,1.443823E-13,5.179999,-2.61368,-0.14208,4.9688,2.60184,-2.738,1.11,3.182,-0.14208,4.9688,-2.89784,-2.738,1.11,-3.182,1.660396E-13,5.179999,-3.182,1.516014E-13,5.179999,-2.89784,-0.14208,4.9688,2.886,-9.384848E-14,5.179999,3.182,-8.662937E-14,5.179999,2.886,0.09999999,5.031352,3.182,-0.09999999,-1.870176E-16,3.182,0.09999999,-1.870176E-16,3.182,-0.09999999,5.031352,3.182,-9.384848E-14,5.179999,3.182,-2.738,-1.870176E-16,3.182,-2.738,1.11,3.182,2.738,1.11,3.182,2.738,-1.870176E-16,3.182,-4.09048,0.81,-2.89784,-0.14208,4.9688,-2.89784,-4.09048,0.81,-2.61368,-0.14208,4.9688,-2.61368,-4.09048,0.81,2.60184,-0.14208,4.9688,2.60184,-4.09048,0.81,2.886,-0.14208,4.9688,2.886,-4.09048,0.81,-2.61368,-0.14208,4.9688,-2.89784,-4.09048,0.81,-2.89784,-0.14208,4.9688,-2.61368,-4.09048,0.81,2.60184,-0.14208,4.9688,2.60184,-4.09048,0.81,2.886,-0.14208,4.9688,2.886,-0.09999999,5.031352,3.182,-9.384848E-14,5.179999,3.182,-2.738,1.11,3.182,-2.738,1.11,3.182,-9.384848E-14,5.179999,3.182,-0.09999999,5.031352,3.182,-7.219114E-14,5.179999,2.60184,-8.662937E-14,5.179999,2.886,0.14208,4.9688,2.60184,0.14208,4.9688,2.886,2.738,1.11,3.182,0.14208,4.9688,-2.61368,0.14208,4.9688,-2.89784,2.738,1.11,-3.182,1.516014E-13,5.179999,-2.89784,1.660396E-13,5.179999,-3.182,-9.384848E-14,5.179999,3.182,1.443823E-13,5.179999,-2.61368,0.14208,4.9688,2.60184,-8.662937E-14,5.179999,2.886,-7.219114E-14,5.179999,2.60184,0.14208,4.9688,2.886,2.738,1.11,3.182,0.14208,4.9688,-2.61368,0.14208,4.9688,-2.89784,2.738,1.11,-3.182,1.516014E-13,5.179999,-2.89784,1.660396E-13,5.179999,-3.182,-9.384848E-14,5.179999,3.182,1.443823E-13,5.179999,-2.61368,0.09999999,5.031352,3.182,2.738,1.11,3.182,-9.384848E-14,5.179999,3.182,-9.384848E-14,5.179999,3.182,2.738,1.11,3.182,0.09999999,5.031352,3.182,2.738,1.11,-3.182,2.738,-1.870176E-16,-3.182,2.738,1.11,3.182,2.738,-1.870176E-16,3.182,2.738,1.11,3.182,2.738,-1.870176E-16,-3.182,2.738,1.11,-3.182,2.738,-1.870176E-16,3.182,-2.738,-1.870176E-16,-3.182,2.738,-1.870176E-16,-3.182,-2.738,1.11,-3.182,2.738,1.11,-3.182,-0.6472136,1.945,-3.182,-0.6472136,2.745,-3.182,1.660396E-13,5.179999,-3.182,0.6472136,2.745,-3.182,0.6472136,1.945,-3.182,-2.738,1.11,-3.182,2.738,-1.870176E-16,-3.182,-2.738,-1.870176E-16,-3.182,2.738,1.11,-3.182,-0.6472136,1.945,-3.182,-0.6472136,2.745,-3.182,1.660396E-13,5.179999,-3.182,0.6472136,2.745,-3.182,0.6472136,1.945,-3.182,-0.09999999,-1.870176E-16,3.182,-2.738,-1.870176E-16,3.182,-0.09999999,5.031352,3.182,-2.738,1.11,3.182,2.738,-1.870176E-16,3.182,0.09999999,-1.870176E-16,3.182,2.738,1.11,3.182,0.09999999,5.031352,3.182,0.14208,4.9688,-2.89784,4.09048,0.81,-2.89784,0.14208,4.9688,-2.61368,4.09048,0.81,-2.61368,0.14208,4.9688,2.60184,4.09048,0.81,2.60184,0.14208,4.9688,2.886,4.09048,0.81,2.886,0.14208,4.9688,-2.61368,4.09048,0.81,-2.89784,0.14208,4.9688,-2.89784,4.09048,0.81,-2.61368,0.14208,4.9688,2.60184,4.09048,0.81,2.60184,0.14208,4.9688,2.886,4.09048,0.81,2.886,-0.14208,4.9688,2.60184,-0.14208,5.611308,2.60184,-0.14208,4.9688,2.886,-0.14208,5.611308,2.886,-0.14208,-2.858089E-15,2.886,-0.14208,-2.858089E-15,2.60184,0.14208,4.9688,2.886,-8.662937E-14,5.179999,2.886,0.14208,5.611308,2.886,-0.14208,5.611308,2.886,-0.14208,4.9688,2.886,-0.14208,-2.858089E-15,2.886,0.14208,-2.858089E-15,2.886,0.14208,5.611308,-2.89784,0.14208,5.611308,-2.61368,-0.14208,5.611308,-2.89784,-0.14208,5.611308,-2.61368,0.14208,5.611308,2.60184,0.14208,4.9688,2.60184,0.14208,5.611308,2.886,0.14208,4.9688,2.886,0.14208,-2.858089E-15,2.60184,0.14208,-2.858089E-15,2.886,-0.14208,-2.858089E-15,2.60184,0.14208,-2.858089E-15,2.60184,-0.14208,4.9688,2.60184,0.14208,4.9688,2.60184,-7.219114E-14,5.179999,2.60184,-0.14208,5.611308,2.60184,0.14208,5.611308,2.60184,0.14208,4.9688,-2.61368,1.443823E-13,5.179999,-2.61368,0.14208,5.611308,-2.61368,-0.14208,5.611308,-2.61368,-0.14208,4.9688,-2.61368,-0.14208,-1.509217E-16,-2.61368,0.14208,-1.509217E-16,-2.61368,0.14208,5.611308,2.60184,0.14208,5.611308,2.886,-0.14208,5.611308,2.60184,-0.14208,5.611308,2.886,-4.37464,-2.048377E-16,2.60184,-4.09048,-2.048377E-16,2.60184,-4.37464,1.11,2.60184,-4.09048,0.81,2.60184,-4.09048,1.11,2.60184,-4.09048,0.81,2.60184,-4.09048,-2.048377E-16,2.60184,-4.09048,0.81,2.886,-4.09048,-2.048377E-16,2.886,-4.09048,1.11,2.886,-4.09048,1.11,2.60184,4.37464,-1.870176E-16,-2.89784,4.09048,-1.870176E-16,-2.89784,4.37464,-1.870176E-16,-2.61368,4.09048,-1.870176E-16,-2.61368,-0.14208,4.9688,-2.89784,-0.14208,5.611308,-2.89784,-0.14208,4.9688,-2.61368,-0.14208,5.611308,-2.61368,-0.14208,-1.509217E-16,-2.61368,-0.14208,-1.509217E-16,-2.89784,-4.09048,-1.845337E-16,-2.61368,-4.37464,-1.845337E-16,-2.61368,-4.09048,0.81,-2.61368,-4.37464,1.11,-2.61368,-4.09048,1.11,-2.61368,4.09048,-1.870176E-16,-2.89784,4.37464,-1.870176E-16,-2.89784,4.09048,0.81,-2.89784,4.37464,1.11,-2.89784,4.09048,1.11,-2.89784,-4.09048,-1.845337E-16,-2.89784,-4.37464,-1.845337E-16,-2.89784,-4.09048,-1.845337E-16,-2.61368,-4.37464,-1.845337E-16,-2.61368,0.14208,-2.858089E-15,2.60184,-0.14208,-2.858089E-15,2.60184,0.14208,-2.858089E-15,2.886,-0.14208,-2.858089E-15,2.886,4.09048,-2.073217E-16,2.60184,4.09048,0.81,2.60184,4.09048,-2.073217E-16,2.886,4.09048,0.81,2.886,4.09048,1.11,2.60184,4.09048,1.11,2.886,4.09048,-2.073217E-16,2.60184,4.37464,-2.073217E-16,2.60184,4.09048,0.81,2.60184,4.37464,1.11,2.60184,4.09048,1.11,2.60184,-4.37464,-2.048377E-16,2.60184,-4.37464,1.11,2.60184,-4.37464,-2.048377E-16,2.886,-4.37464,1.11,2.886,0.14208,-1.509217E-16,-2.89784,-0.14208,-1.509217E-16,-2.89784,0.14208,-1.509217E-16,-2.61368,-0.14208,-1.509217E-16,-2.61368,4.09048,0.81,-2.89784,4.09048,1.11,-2.89784,4.09048,0.81,-2.61368,4.09048,1.11,-2.61368,4.09048,-1.870176E-16,-2.61368,4.09048,-1.870176E-16,-2.89784,-0.14208,-1.509217E-16,-2.89784,0.14208,-1.509217E-16,-2.89784,-0.14208,4.9688,-2.89784,0.14208,4.9688,-2.89784,1.516014E-13,5.179999,-2.89784,-0.14208,5.611308,-2.89784,0.14208,5.611308,-2.89784,-4.09048,-2.048377E-16,2.886,-4.37464,-2.048377E-16,2.886,-4.09048,0.81,2.886,-4.37464,1.11,2.886,-4.09048,1.11,2.886,-4.09048,1.11,-2.89784,-4.09048,1.11,-2.61368,-4.37464,1.11,-2.89784,-4.37464,1.11,-2.61368,-4.37464,-1.845337E-16,-2.89784,-4.09048,-1.845337E-16,-2.89784,-4.37464,1.11,-2.89784,-4.09048,0.81,-2.89784,-4.09048,1.11,-2.89784,4.37464,-2.073217E-16,2.886,4.09048,-2.073217E-16,2.886,4.37464,1.11,2.886,4.09048,0.81,2.886,4.09048,1.11,2.886,4.37464,1.11,2.60184,4.37464,-2.073217E-16,2.60184,4.37464,1.11,2.886,4.37464,-2.073217E-16,2.886,-4.09048,0.81,-2.89784,-4.09048,-1.845337E-16,-2.89784,-4.09048,0.81,-2.61368,-4.09048,-1.845337E-16,-2.61368,-4.09048,1.11,-2.61368,-4.09048,1.11,-2.89784,0.14208,4.9688,-2.89784,0.14208,-1.509217E-16,-2.89784,0.14208,4.9688,-2.61368,0.14208,-1.509217E-16,-2.61368,0.14208,5.611308,-2.61368,0.14208,5.611308,-2.89784,4.37464,1.11,-2.89784,4.37464,1.11,-2.61368,4.09048,1.11,-2.89784,4.09048,1.11,-2.61368,-4.09048,1.11,2.60184,-4.09048,1.11,2.886,-4.37464,1.11,2.60184,-4.37464,1.11,2.886,-4.09048,-2.048377E-16,2.60184,-4.37464,-2.048377E-16,2.60184,-4.09048,-2.048377E-16,2.886,-4.37464,-2.048377E-16,2.886,4.37464,-1.870176E-16,-2.61368,4.09048,-1.870176E-16,-2.61368,4.37464,1.11,-2.61368,4.09048,0.81,-2.61368,4.09048,1.11,-2.61368,-4.37464,-1.845337E-16,-2.89784,-4.37464,1.11,-2.89784,-4.37464,-1.845337E-16,-2.61368,-4.37464,1.11,-2.61368,4.37464,1.11,-2.89784,4.37464,-1.870176E-16,-2.89784,4.37464,1.11,-2.61368,4.37464,-1.870176E-16,-2.61368,4.37464,-2.073217E-16,2.60184,4.09048,-2.073217E-16,2.60184,4.37464,-2.073217E-16,2.886,4.09048,-2.073217E-16,2.886,4.37464,1.11,2.60184,4.37464,1.11,2.886,4.09048,1.11,2.60184,4.09048,1.11,2.886,-9.384848E-14,5.179999,3.182 + } + PolygonVertexIndex: *684 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,11,12,-10,9,12,-14,12,14,-14,15,13,-15,16,13,-16,17,12,-12,12,17,-19,19,18,-18,10,19,-12,17,11,-20,20,22,-22,21,23,-21,24,23,-22,24,21,-26,26,24,-26,25,27,-27,25,28,-28,24,29,-24,29,24,-31,30,31,-30,31,20,-24,23,29,-32,32,34,-34,33,35,-33,35,36,-33,35,33,-38,37,38,-36,34,32,-40,39,40,-35,41,43,-43,44,42,-44,45,44,-44,46,44,-46,47,46,-46,48,46,-48,49,51,-51,50,52,-50,52,53,-50,52,54,-54,54,55,-54,54,56,-56,57,59,-59,60,62,-62,63,65,-65,66,64,-66,66,65,-68,65,68,-68,65,63,-69,68,69,-68,67,69,-71,69,71,-71,72,70,-72,73,66,-68,66,73,-65,74,68,-64,75,77,-77,76,78,-76,75,78,-80,80,75,-80,77,75,-81,81,80,-80,81,79,-83,83,81,-83,82,84,-84,78,85,-80,85,78,-77,80,86,-78,87,89,-89,90,92,-92,93,95,-95,96,94,-96,97,99,-99,98,100,-98,101,103,-103,104,102,-104,105,104,-104,106,105,-104,107,106,-104,108,106,-108,107,104,-109,109,108,-105,105,109,-105,110,112,-112,111,113,-111,113,114,-111,114,115,-111,115,116,-111,115,117,-117,113,116,-118,117,118,-114,118,114,-114,119,121,-121,122,120,-122,123,125,-125,126,124,-126,127,129,-129,130,128,-130,131,130,-130,132,130,-132,133,132,-132,134,132,-134,135,137,-137,136,138,-136,138,139,-136,138,140,-140,140,141,-140,140,142,-142,143,145,-145,146,144,-146,145,143,-148,148,147,-144,149,151,-151,151,152,-151,153,150,-153,150,153,-150,153,154,-150,155,149,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,161,163,-165,165,164,-164,166,168,-168,169,167,-169,170,169,-169,168,171,-171,169,170,-173,171,172,-171,173,175,-175,175,176,-175,177,174,-177,174,177,-174,177,178,-174,179,173,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,187,-187,189,191,-191,192,190,-192,191,189,-194,194,193,-190,195,197,-197,198,196,-198,199,201,-201,202,200,-202,201,199,-204,204,203,-200,205,207,-207,208,206,-208,209,208,-208,210,212,-212,213,211,-213,214,213,-213,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,225,-225,226,224,-226,224,226,-228,228,227,-227,229,231,-231,232,230,-232,233,232,-232,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,244,242,-247,247,246,-243,248,250,-250,251,249,-251,252,251,-251,250,253,-253,251,252,-255,253,254,-253,255,257,-257,258,256,-258,259,258,-258,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,267,-267,269,271,-271,272,270,-272,273,272,-272,274,276,-276,277,275,-277,278,280,-280,281,279,-281,280,278,-283,283,282,-279,284,286,-286,287,285,-287,286,284,-289,289,288,-285,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,305,-305,307,309,-309,310,308,-310,311,313,-313,314,312,-314,315,317,-317,318,316,-318,319,321,-321,322,320,-322,124,126,-120,121,119,-127,323,121,-127 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2052 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *648 { + a: -12.52756,-7.362899E-16,-12.52756,4.370079,12.52756,-7.362899E-16,12.52756,4.370079,12.52756,-7.362899E-16,-12.52756,4.370079,-12.52756,-7.362899E-16,12.52756,4.370079,10.29008,16.9211,10.29008,15.91896,-10.24346,16.9211,-10.24346,15.91896,-12.52756,-2.39093,11.40882,15.91897,12.52756,-2.39093,12.52756,16.9211,11.40882,16.9211,-11.3622,15.91897,-12.52756,16.9211,-11.3622,16.9211,-10.24346,16.9211,10.29008,15.91896,10.29008,16.9211,-10.24346,15.91896,-12.52756,-2.39093,11.40882,15.91897,12.52756,-2.39093,12.52756,16.9211,11.40882,16.9211,-11.3622,15.91897,-12.52756,16.9211,-11.3622,16.9211,0.3937007,19.80847,-0.3937007,-7.362899E-16,0.3937007,-7.362899E-16,-0.3937007,19.80847,8.149713E-14,20.3937,-10.77953,-7.362899E-16,-10.77953,4.370079,10.77953,4.370079,10.77953,-7.362899E-16,-11.40882,-8.775474,-11.40882,13.80164,-10.29008,-8.775474,-10.29008,13.80164,10.24346,-8.775474,10.24346,13.80164,11.3622,-8.775474,11.3622,13.80164,-10.29008,-8.775474,-11.40882,13.80164,-11.40882,-8.775474,-10.29008,13.80164,10.24346,-8.775474,10.24346,13.80164,11.3622,-8.775474,11.3622,13.80164,-12.52756,16.21577,-12.52756,16.9211,-12.52756,-2.39093,-12.52756,-2.39093,-12.52756,16.9211,-12.52756,16.21577,10.24346,16.9211,11.3622,16.9211,10.24346,15.91896,11.3622,15.91896,12.52756,-2.39093,-10.29008,15.91897,-11.40882,15.91897,-12.52756,-2.39093,-11.40882,16.9211,-12.52756,16.9211,12.52756,16.9211,-10.29008,16.9211,10.24346,15.91896,11.3622,16.9211,10.24346,16.9211,11.3622,15.91896,12.52756,-2.39093,-10.29008,15.91897,-11.40882,15.91897,-12.52756,-2.39093,-11.40882,16.9211,-12.52756,16.9211,12.52756,16.9211,-10.29008,16.9211,12.52756,16.21577,12.52756,-2.39093,12.52756,16.9211,12.52756,16.9211,12.52756,-2.39093,12.52756,16.21577,12.52756,4.370079,12.52756,-7.362899E-16,-12.52756,4.370079,-12.52756,-7.362899E-16,-12.52756,4.370079,12.52756,-7.362899E-16,12.52756,4.370079,-12.52756,-7.362899E-16,10.77953,-7.362899E-16,-10.77953,-7.362899E-16,10.77953,4.370079,-10.77953,4.370079,2.548085,7.657481,2.548085,10.80709,-2.0272E-13,20.3937,-2.548085,10.80709,-2.548085,7.657481,10.77953,4.370079,-10.77953,-7.362899E-16,10.77953,-7.362899E-16,-10.77953,4.370079,2.548085,7.657481,2.548085,10.80709,-2.0272E-13,20.3937,-2.548085,10.80709,-2.548085,7.657481,-0.3937007,-7.362899E-16,-10.77953,-7.362899E-16,-0.3937007,19.80847,-10.77953,4.370079,10.77953,-7.362899E-16,0.3937007,-7.362899E-16,10.77953,4.370079,0.3937007,19.80847,11.40882,13.80164,11.40882,-8.775474,10.29008,13.80164,10.29008,-8.775474,-10.24346,13.80164,-10.24346,-8.775474,-11.3622,13.80164,-11.3622,-8.775474,10.29008,13.80164,11.40882,-8.775474,11.40882,13.80164,10.29008,-8.775474,-10.24346,13.80164,-10.24346,-8.775474,-11.3622,13.80164,-11.3622,-8.775474,10.24346,19.5622,10.24346,22.09176,11.3622,19.5622,11.3622,22.09176,11.3622,-1.125232E-14,10.24346,-1.125232E-14,0.55937,19.5622,6.796727E-14,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,-1.125232E-14,0.55937,-1.125232E-14,-0.55937,-11.40882,-0.55937,-10.29008,0.55937,-11.40882,0.55937,-10.29008,-10.24346,22.09176,-10.24346,19.5622,-11.3622,22.09176,-11.3622,19.5622,-10.24346,-1.125232E-14,-11.3622,-1.125232E-14,0.55937,-1.125232E-14,-0.55937,-1.125232E-14,0.55937,19.5622,-0.55937,19.5622,-8.45372E-14,20.3937,0.55937,22.09176,-0.55937,22.09176,0.55937,19.5622,1.980019E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,-5.941801E-16,0.55937,-5.941801E-16,-0.55937,10.24346,-0.55937,11.3622,0.55937,10.24346,0.55937,11.3622,17.22299,-8.064477E-16,16.10425,-8.064477E-16,17.22299,4.370079,16.10425,3.188976,16.10425,4.370079,-10.24346,3.188976,-10.24346,-8.064477E-16,-11.3622,3.188976,-11.3622,-8.064477E-16,-11.3622,4.370079,-10.24346,4.370079,17.22299,-11.40882,16.10425,-11.40882,17.22299,-10.29008,16.10425,-10.29008,-11.40882,19.5622,-11.40882,22.09176,-10.29008,19.5622,-10.29008,22.09176,-10.29008,-5.941801E-16,-11.40882,-5.941801E-16,-16.10425,-7.265107E-16,-17.22299,-7.265107E-16,-16.10425,3.188976,-17.22299,4.370079,-16.10425,4.370079,-16.10425,-7.362899E-16,-17.22299,-7.362899E-16,-16.10425,3.188976,-17.22299,4.370079,-16.10425,4.370079,-16.10425,-11.40882,-17.22299,-11.40882,-16.10425,-10.29008,-17.22299,-10.29008,0.55937,10.24346,-0.55937,10.24346,0.55937,11.3622,-0.55937,11.3622,10.24346,-8.16227E-16,10.24346,3.188976,11.3622,-8.16227E-16,11.3622,3.188976,10.24346,4.370079,11.3622,4.370079,-16.10425,-8.16227E-16,-17.22299,-8.16227E-16,-16.10425,3.188976,-17.22299,4.370079,-16.10425,4.370079,10.24346,-8.064477E-16,10.24346,4.370079,11.3622,-8.064477E-16,11.3622,4.370079,0.55937,-11.40882,-0.55937,-11.40882,0.55937,-10.29008,-0.55937,-10.29008,-11.40882,3.188976,-11.40882,4.370079,-10.29008,3.188976,-10.29008,4.370079,-10.29008,-7.362899E-16,-11.40882,-7.362899E-16,0.55937,-5.941801E-16,-0.55937,-5.941801E-16,0.55937,19.5622,-0.55937,19.5622,-1.8615E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,-16.10425,-8.064477E-16,-17.22299,-8.064477E-16,-16.10425,3.188976,-17.22299,4.370079,-16.10425,4.370079,16.10425,-11.40882,16.10425,-10.29008,17.22299,-11.40882,17.22299,-10.29008,17.22299,-7.265107E-16,16.10425,-7.265107E-16,17.22299,4.370079,16.10425,3.188976,16.10425,4.370079,17.22299,-8.16227E-16,16.10425,-8.16227E-16,17.22299,4.370079,16.10425,3.188976,16.10425,4.370079,-10.24346,4.370079,-10.24346,-8.16227E-16,-11.3622,4.370079,-11.3622,-8.16227E-16,11.40882,3.188976,11.40882,-7.265107E-16,10.29008,3.188976,10.29008,-7.265107E-16,10.29008,4.370079,11.40882,4.370079,11.40882,19.5622,11.40882,-5.941801E-16,10.29008,19.5622,10.29008,-5.941801E-16,10.29008,22.09176,11.40882,22.09176,-17.22299,-11.40882,-17.22299,-10.29008,-16.10425,-11.40882,-16.10425,-10.29008,16.10425,10.24346,16.10425,11.3622,17.22299,10.24346,17.22299,11.3622,-16.10425,10.24346,-17.22299,10.24346,-16.10425,11.3622,-17.22299,11.3622,17.22299,-7.362899E-16,16.10425,-7.362899E-16,17.22299,4.370079,16.10425,3.188976,16.10425,4.370079,-11.40882,-7.265107E-16,-11.40882,4.370079,-10.29008,-7.265107E-16,-10.29008,4.370079,11.40882,4.370079,11.40882,-7.362899E-16,10.29008,4.370079,10.29008,-7.362899E-16,17.22299,10.24346,16.10425,10.24346,17.22299,11.3622,16.10425,11.3622,-17.22299,10.24346,-17.22299,11.3622,-16.10425,10.24346,-16.10425,11.3622,8.149713E-14,20.3937 + } + UVIndex: *684 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,11,12,9,9,12,13,12,14,13,15,13,14,16,13,15,17,12,11,12,17,18,19,18,17,10,19,11,17,11,19,20,22,21,21,23,20,24,23,21,24,21,25,26,24,25,25,27,26,25,28,27,24,29,23,29,24,30,30,31,29,31,20,23,23,29,31,32,34,33,33,35,32,35,36,32,35,33,37,37,38,35,34,32,39,39,40,34,41,43,42,44,42,43,45,44,43,46,44,45,47,46,45,48,46,47,49,51,50,50,52,49,52,53,49,52,54,53,54,55,53,54,56,55,57,59,58,60,62,61,63,65,64,66,64,65,66,65,67,65,68,67,65,63,68,68,69,67,67,69,70,69,71,70,72,70,71,73,66,67,66,73,64,74,68,63,75,77,76,76,78,75,75,78,79,80,75,79,77,75,80,81,80,79,81,79,82,83,81,82,82,84,83,78,85,79,85,78,76,80,86,77,87,89,88,90,92,91,93,95,94,96,94,95,97,99,98,98,100,97,101,103,102,104,102,103,105,104,103,106,105,103,107,106,103,108,106,107,107,104,108,109,108,104,105,109,104,110,112,111,111,113,110,113,114,110,114,115,110,115,116,110,115,117,116,113,116,117,117,118,113,118,114,113,119,121,120,122,120,121,123,125,124,126,124,125,127,129,128,130,128,129,131,130,129,132,130,131,133,132,131,134,132,133,135,137,136,136,138,135,138,139,135,138,140,139,140,141,139,140,142,141,143,145,144,146,144,145,145,143,147,148,147,143,149,151,150,151,152,150,153,150,152,150,153,149,153,154,149,155,149,154,156,158,157,159,157,158,160,162,161,163,161,162,161,163,164,165,164,163,166,168,167,169,167,168,170,169,168,168,171,170,169,170,172,171,172,170,173,175,174,175,176,174,177,174,176,174,177,173,177,178,173,179,173,178,180,182,181,183,181,182,184,186,185,187,185,186,188,187,186,189,191,190,192,190,191,191,189,193,194,193,189,195,197,196,198,196,197,199,201,200,202,200,201,201,199,203,204,203,199,205,207,206,208,206,207,209,208,207,210,212,211,213,211,212,214,213,212,215,217,216,218,216,217,219,221,220,222,220,221,223,225,224,226,224,225,224,226,227,228,227,226,229,231,230,232,230,231,233,232,231,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,244,242,246,247,246,242,248,250,249,251,249,250,252,251,250,250,253,252,251,252,254,253,254,252,255,257,256,258,256,257,259,258,257,260,262,261,263,261,262,264,266,265,267,265,266,268,267,266,269,271,270,272,270,271,273,272,271,274,276,275,277,275,276,278,280,279,281,279,280,280,278,282,283,282,278,284,286,285,287,285,286,286,284,288,289,288,284,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304,306,305,304,307,309,308,310,308,309,311,313,312,314,312,313,315,317,316,318,316,317,319,321,320,322,320,321,124,126,119,121,119,126,323,121,126 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *228 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3010, "Material::colorRedDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.2117647,0.2313726 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.2117647,0.2313726 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tent_detailedClosed, Model::RootNode + C: "OO",4897548493158907597,0 + + ;Geometry::, Model::Mesh tent_detailedClosed + C: "OO",5602051998102484092,4897548493158907597 + + ;Material::colorRed, Model::Mesh tent_detailedClosed + C: "OO",3008,4897548493158907597 + + ;Material::wood, Model::Mesh tent_detailedClosed + C: "OO",3044,4897548493158907597 + + ;Material::colorRedDark, Model::Mesh tent_detailedClosed + C: "OO",3010,4897548493158907597 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedClosed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedClosed.fbx.import new file mode 100644 index 0000000..67ec09a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedClosed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c15rqjgijq0kp" +path="res://.godot/imported/tent_detailedClosed.fbx-c175ba27692d9c1e8f91d894a30fb8e1.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tent_detailedClosed.fbx" +dest_files=["res://.godot/imported/tent_detailedClosed.fbx-c175ba27692d9c1e8f91d894a30fb8e1.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedOpen.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedOpen.fbx new file mode 100644 index 0000000..dc893e5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedOpen.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 845 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tent_detailedOpen.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tent_detailedOpen.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4903900552310999406, "Model::tent_detailedOpen", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5705090686031190403, "Geometry::", "Mesh" { + Vertices: *996 { + a: 2.165734E-14,4.441358,3.182,-1.369,1.186643E-15,3.182,-1.369,1.186643E-15,3.482,-2.738,-1.488942E-16,-3.182,-2.738,1.11,-3.182,-2.738,-1.488942E-16,3.182,-2.738,1.11,3.182,-2.738,-1.488942E-16,3.182,-2.738,1.11,-3.182,-2.738,-1.488942E-16,-3.182,-2.738,1.11,3.182,0.14208,4.9688,2.60184,2.165734E-14,5.179999,2.60184,0.14208,4.9688,2.886,2.165734E-14,5.179999,2.886,4.331469E-14,5.179999,-2.61368,0.14208,4.9688,-2.61368,2.738,1.11,3.182,0.14208,4.9688,-2.89784,2.738,1.11,-3.182,2.165734E-14,5.179999,3.182,4.331469E-14,5.179999,-2.89784,4.331469E-14,5.179999,-3.182,0.14208,4.9688,2.886,2.165734E-14,5.179999,2.60184,0.14208,4.9688,2.60184,2.165734E-14,5.179999,2.886,4.331469E-14,5.179999,-2.61368,0.14208,4.9688,-2.61368,2.738,1.11,3.182,0.14208,4.9688,-2.89784,2.738,1.11,-3.182,2.165734E-14,5.179999,3.182,4.331469E-14,5.179999,-2.89784,4.331469E-14,5.179999,-3.182,-4.09048,0.81,-2.89784,-0.14208,4.9688,-2.89784,-4.09048,0.81,-2.61368,-0.14208,4.9688,-2.61368,-4.09048,0.81,2.60184,-0.14208,4.9688,2.60184,-4.09048,0.81,2.886,-0.14208,4.9688,2.886,-4.09048,0.81,-2.61368,-0.14208,4.9688,-2.89784,-4.09048,0.81,-2.89784,-0.14208,4.9688,-2.61368,-4.09048,0.81,2.60184,-0.14208,4.9688,2.60184,-4.09048,0.81,2.886,-0.14208,4.9688,2.886,2.165734E-14,5.179999,2.60184,-0.14208,4.9688,2.60184,2.165734E-14,5.179999,2.886,-0.14208,4.9688,2.886,-0.14208,4.9688,-2.61368,4.331469E-14,5.179999,-2.61368,2.165734E-14,5.179999,3.182,-2.738,1.11,3.182,-0.14208,4.9688,-2.89784,-2.738,1.11,-3.182,4.331469E-14,5.179999,-2.89784,4.331469E-14,5.179999,-3.182,2.165734E-14,5.179999,2.886,-0.14208,4.9688,2.60184,2.165734E-14,5.179999,2.60184,-0.14208,4.9688,2.886,-0.14208,4.9688,-2.61368,4.331469E-14,5.179999,-2.61368,2.165734E-14,5.179999,3.182,-2.738,1.11,3.182,-0.14208,4.9688,-2.89784,-2.738,1.11,-3.182,4.331469E-14,5.179999,-2.89784,4.331469E-14,5.179999,-3.182,-1.369,1.186643E-15,3.482,-1.369,1.186643E-15,3.182,-2.0535,5.188737E-16,3.182,-1.369,1.186643E-15,3.482,-2.0535,5.188737E-16,3.182,2.165734E-14,4.441358,3.182,1.369,-2.819966E-15,3.182,2.165734E-14,4.441358,3.182,1.369,-2.819966E-15,3.482,-1.369,1.186643E-15,3.182,-2.0535,5.188737E-16,3.182,2.165734E-14,4.441358,3.182,-2.738,1.11,3.182,-2.738,-1.488942E-16,3.182,2.165734E-14,5.179999,3.182,2.738,1.11,3.182,2.738,-1.488942E-16,3.182,2.0535,-1.48443E-15,3.182,1.369,-2.819966E-15,3.182,2.165734E-14,4.441358,3.182,-2.0535,5.188737E-16,3.182,-1.369,1.186643E-15,3.182,-2.738,1.11,3.182,-2.738,-1.488942E-16,3.182,2.165734E-14,5.179999,3.182,2.738,1.11,3.182,2.738,-1.488942E-16,3.182,2.0535,-1.48443E-15,3.182,1.369,-2.819966E-15,3.182,2.0535,-1.48443E-15,3.182,1.369,-2.819966E-15,3.482,2.165734E-14,4.441358,3.182,1.369,-2.819966E-15,3.482,2.0535,-1.48443E-15,3.182,1.369,-2.819966E-15,3.182,0.14208,4.9688,-2.89784,4.09048,0.81,-2.89784,0.14208,4.9688,-2.61368,4.09048,0.81,-2.61368,0.14208,4.9688,2.60184,4.09048,0.81,2.60184,0.14208,4.9688,2.886,4.09048,0.81,2.886,0.14208,4.9688,-2.61368,4.09048,0.81,-2.89784,0.14208,4.9688,-2.89784,4.09048,0.81,-2.61368,0.14208,4.9688,2.60184,4.09048,0.81,2.60184,0.14208,4.9688,2.886,4.09048,0.81,2.886,2.738,1.11,-3.182,2.738,-1.488942E-16,-3.182,2.738,1.11,3.182,2.738,-1.488942E-16,3.182,2.738,1.11,3.182,2.738,-1.488942E-16,-3.182,2.738,1.11,-3.182,2.738,-1.488942E-16,3.182,-2.738,-1.488942E-16,-3.182,2.738,-1.488942E-16,-3.182,-2.738,1.11,-3.182,2.738,1.11,-3.182,-0.6472136,1.945,-3.182,-0.6472136,2.745,-3.182,4.331469E-14,5.179999,-3.182,0.6472136,2.745,-3.182,0.6472136,1.945,-3.182,-2.738,1.11,-3.182,2.738,-1.488942E-16,-3.182,-2.738,-1.488942E-16,-3.182,2.738,1.11,-3.182,-0.6472136,1.945,-3.182,-0.6472136,2.745,-3.182,4.331469E-14,5.179999,-3.182,0.6472136,2.745,-3.182,0.6472136,1.945,-3.182,-0.14208,-1.127984E-16,-2.89784,-0.14208,4.9688,-2.89784,-0.14208,-1.127984E-16,-2.61368,-0.14208,4.9688,-2.61368,-0.14208,5.611308,-2.89784,-0.14208,5.611308,-2.61368,0.14208,4.9688,2.60184,0.14208,-2.819966E-15,2.60184,0.14208,4.9688,2.886,0.14208,-2.819966E-15,2.886,0.14208,5.611308,2.886,0.14208,5.611308,2.60184,0.14208,4.9688,2.886,2.165734E-14,5.179999,2.886,0.14208,5.611308,2.886,-0.14208,5.611308,2.886,-0.14208,4.9688,2.886,-0.14208,-2.819966E-15,2.886,0.14208,-2.819966E-15,2.886,0.14208,5.611308,-2.89784,0.14208,5.611308,-2.61368,-0.14208,5.611308,-2.89784,-0.14208,5.611308,-2.61368,0.14208,-1.127984E-16,-2.61368,-0.14208,-1.127984E-16,-2.61368,0.14208,4.9688,-2.61368,-0.14208,4.9688,-2.61368,4.331469E-14,5.179999,-2.61368,0.14208,5.611308,-2.61368,-0.14208,5.611308,-2.61368,4.09048,-1.691983E-16,2.60184,4.09048,0.81,2.60184,4.09048,-1.691983E-16,2.886,4.09048,0.81,2.886,4.09048,1.11,2.60184,4.09048,1.11,2.886,0.14208,-1.127984E-16,-2.61368,0.14208,-1.127984E-16,-2.89784,-0.14208,-1.127984E-16,-2.61368,-0.14208,-1.127984E-16,-2.89784,-4.09048,-1.464103E-16,-2.61368,-4.37464,-1.464103E-16,-2.61368,-4.09048,0.81,-2.61368,-4.37464,1.11,-2.61368,-4.09048,1.11,-2.61368,4.37464,1.11,2.60184,4.37464,-1.691983E-16,2.60184,4.37464,1.11,2.886,4.37464,-1.691983E-16,2.886,0.14208,4.9688,-2.89784,0.14208,-1.127984E-16,-2.89784,0.14208,4.9688,-2.61368,0.14208,-1.127984E-16,-2.61368,0.14208,5.611308,-2.61368,0.14208,5.611308,-2.89784,-4.37464,-1.667143E-16,2.60184,-4.37464,1.11,2.60184,-4.37464,-1.667143E-16,2.886,-4.37464,1.11,2.886,-4.37464,-1.667143E-16,2.60184,-4.09048,-1.667143E-16,2.60184,-4.37464,1.11,2.60184,-4.09048,0.81,2.60184,-4.09048,1.11,2.60184,-4.09048,1.11,-2.89784,-4.09048,0.81,-2.89784,-4.09048,1.11,-2.61368,-4.09048,0.81,-2.61368,-4.09048,-1.464103E-16,-2.89784,-4.09048,-1.464103E-16,-2.61368,0.14208,5.611308,2.60184,0.14208,5.611308,2.886,-0.14208,5.611308,2.60184,-0.14208,5.611308,2.886,4.37464,1.11,2.60184,4.37464,1.11,2.886,4.09048,1.11,2.60184,4.09048,1.11,2.886,-0.14208,4.9688,2.60184,-0.14208,5.611308,2.60184,-0.14208,4.9688,2.886,-0.14208,5.611308,2.886,-0.14208,-2.819966E-15,2.886,-0.14208,-2.819966E-15,2.60184,4.09048,-1.691983E-16,2.60184,4.37464,-1.691983E-16,2.60184,4.09048,0.81,2.60184,4.37464,1.11,2.60184,4.09048,1.11,2.60184,4.37464,-1.488942E-16,-2.61368,4.37464,-1.488942E-16,-2.89784,4.09048,-1.488942E-16,-2.61368,4.09048,-1.488942E-16,-2.89784,-0.14208,-2.819966E-15,2.60184,0.14208,-2.819966E-15,2.60184,-0.14208,4.9688,2.60184,0.14208,4.9688,2.60184,2.165734E-14,5.179999,2.60184,-0.14208,5.611308,2.60184,0.14208,5.611308,2.60184,-0.14208,4.9688,-2.89784,4.331469E-14,5.179999,-2.89784,-0.14208,5.611308,-2.89784,0.14208,5.611308,-2.89784,0.14208,4.9688,-2.89784,0.14208,-1.127984E-16,-2.89784,-0.14208,-1.127984E-16,-2.89784,0.14208,-2.819966E-15,2.886,0.14208,-2.819966E-15,2.60184,-0.14208,-2.819966E-15,2.886,-0.14208,-2.819966E-15,2.60184,-4.09048,1.11,2.60184,-4.09048,0.81,2.60184,-4.09048,1.11,2.886,-4.09048,0.81,2.886,-4.09048,-1.667143E-16,2.60184,-4.09048,-1.667143E-16,2.886,4.37464,-1.691983E-16,2.886,4.09048,-1.691983E-16,2.886,4.37464,1.11,2.886,4.09048,0.81,2.886,4.09048,1.11,2.886,-4.09048,-1.667143E-16,2.886,-4.09048,-1.667143E-16,2.60184,-4.37464,-1.667143E-16,2.886,-4.37464,-1.667143E-16,2.60184,-4.37464,-1.464103E-16,-2.89784,-4.09048,-1.464103E-16,-2.89784,-4.37464,1.11,-2.89784,-4.09048,0.81,-2.89784,-4.09048,1.11,-2.89784,-4.37464,-1.464103E-16,-2.89784,-4.37464,1.11,-2.89784,-4.37464,-1.464103E-16,-2.61368,-4.37464,1.11,-2.61368,4.37464,-1.488942E-16,-2.61368,4.09048,-1.488942E-16,-2.61368,4.37464,1.11,-2.61368,4.09048,0.81,-2.61368,4.09048,1.11,-2.61368,4.09048,-1.488942E-16,-2.89784,4.37464,-1.488942E-16,-2.89784,4.09048,0.81,-2.89784,4.37464,1.11,-2.89784,4.09048,1.11,-2.89784,4.09048,0.81,-2.89784,4.09048,1.11,-2.89784,4.09048,0.81,-2.61368,4.09048,1.11,-2.61368,4.09048,-1.488942E-16,-2.61368,4.09048,-1.488942E-16,-2.89784,4.37464,1.11,-2.89784,4.37464,1.11,-2.61368,4.09048,1.11,-2.89784,4.09048,1.11,-2.61368,4.37464,-1.691983E-16,2.886,4.37464,-1.691983E-16,2.60184,4.09048,-1.691983E-16,2.886,4.09048,-1.691983E-16,2.60184,-4.09048,-1.667143E-16,2.886,-4.37464,-1.667143E-16,2.886,-4.09048,0.81,2.886,-4.37464,1.11,2.886,-4.09048,1.11,2.886,-4.09048,-1.464103E-16,-2.61368,-4.09048,-1.464103E-16,-2.89784,-4.37464,-1.464103E-16,-2.61368,-4.37464,-1.464103E-16,-2.89784,-4.09048,1.11,-2.89784,-4.09048,1.11,-2.61368,-4.37464,1.11,-2.89784,-4.37464,1.11,-2.61368,4.37464,1.11,-2.89784,4.37464,-1.488942E-16,-2.89784,4.37464,1.11,-2.61368,4.37464,-1.488942E-16,-2.61368,-4.09048,1.11,2.60184,-4.09048,1.11,2.886,-4.37464,1.11,2.60184,-4.37464,1.11,2.886 + } + PolygonVertexIndex: *696 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,8,10,-8,11,13,-13,14,12,-14,12,15,-12,16,11,-16,11,16,-18,13,11,-18,14,13,-18,16,18,-18,19,17,-19,20,14,-18,18,21,-20,22,19,-22,23,25,-25,24,26,-24,27,24,-26,25,28,-28,28,25,-30,25,23,-30,23,26,-30,30,28,-30,29,31,-31,26,32,-30,33,30,-32,31,34,-34,35,37,-37,38,36,-38,39,38,-38,40,38,-40,41,40,-40,42,40,-42,43,45,-45,44,46,-44,46,47,-44,46,48,-48,48,49,-48,48,50,-50,51,53,-53,54,52,-54,52,55,-52,56,51,-56,53,57,-55,52,58,-56,54,58,-53,57,58,-55,55,58,-60,58,60,-60,59,60,-62,62,61,-61,63,65,-65,64,66,-64,67,64,-66,65,68,-68,69,63,-67,70,64,-68,70,66,-65,70,69,-67,70,67,-72,72,70,-72,72,71,-74,73,74,-73,75,77,-77,78,80,-80,81,83,-83,84,86,-86,86,87,-86,88,85,-88,89,87,-87,89,86,-91,90,86,-92,92,91,-87,92,86,-94,94,96,-96,97,94,-96,95,98,-98,97,99,-95,94,99,-101,94,100,-102,101,102,-95,94,102,-104,104,106,-106,107,109,-109,110,112,-112,113,111,-113,114,113,-113,115,113,-115,116,115,-115,117,115,-117,118,120,-120,119,121,-119,121,122,-119,121,123,-123,123,124,-123,123,125,-125,126,128,-128,129,127,-129,130,132,-132,131,133,-131,134,136,-136,137,135,-137,138,137,-137,139,138,-137,140,139,-137,141,139,-141,140,137,-142,142,141,-138,138,142,-138,143,145,-145,144,146,-144,146,147,-144,147,148,-144,148,149,-144,148,150,-150,146,149,-151,150,151,-147,151,147,-147,152,154,-154,155,153,-155,153,155,-157,157,156,-156,158,160,-160,161,159,-161,160,158,-163,163,162,-159,164,166,-166,166,167,-166,168,165,-168,165,168,-165,168,169,-165,170,164,-170,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,178,-178,177,180,-180,178,179,-182,180,181,-180,182,184,-184,185,183,-185,183,185,-187,187,186,-186,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,195,-195,197,199,-199,200,198,-200,201,203,-203,204,202,-204,203,201,-206,206,205,-202,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,214,-214,216,218,-218,219,217,-219,217,219,-221,221,220,-220,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,232,230,-235,235,234,-231,236,238,-238,239,237,-239,240,239,-239,241,243,-243,244,242,-244,245,247,-247,248,246,-248,249,248,-248,247,250,-250,248,249,-252,250,251,-250,252,254,-254,254,255,-254,256,253,-256,253,256,-253,256,257,-253,258,252,-258,259,261,-261,262,260,-262,263,265,-265,266,264,-266,264,266,-268,268,267,-267,269,271,-271,272,270,-272,273,272,-272,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,281,-281,283,285,-285,286,284,-286,287,289,-289,290,288,-290,291,290,-290,292,294,-294,295,293,-295,296,295,-295,297,299,-299,300,298,-300,299,297,-302,302,301,-298,303,305,-305,306,304,-306,307,309,-309,310,308,-310,311,313,-313,314,312,-314,315,314,-314,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2088 { + a: 0.9556321,-0.2945631,0,0.9556321,-0.2945631,0,0.9556321,-0.2945631,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,-0.7252136,0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.7252136,-0.6885239,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,0,-1,0,0,-1,0,0,-1,0,-0.3946753,0.1824815,0.9005176,-0.3946753,0.1824815,0.9005176,-0.3946753,0.1824815,0.9005176,-0.9556321,-0.2945631,0,-0.9556321,-0.2945631,0,-0.9556321,-0.2945631,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.3946753,0.1824815,0.9005176,0.3946753,0.1824815,0.9005176,0.3946753,0.1824815,0.9005176,0,-1,0,0,-1,0,0,-1,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,0.7252136,0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,-0.7252136,-0.6885239,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *664 { + a: -12.52756,16.70986,-12.52756,-1.587626,-13.70866,-1.587626,-12.52756,-5.861978E-16,-12.52756,4.370079,12.52756,-5.861978E-16,12.52756,4.370079,12.52756,-5.861978E-16,-12.52756,4.370079,-12.52756,-5.861978E-16,12.52756,4.370079,10.24346,15.91896,10.24346,16.9211,11.3622,15.91896,11.3622,16.9211,-10.29008,16.9211,-10.29008,15.91896,12.52756,-2.39093,-11.40882,15.91897,-12.52756,-2.39093,12.52756,16.9211,-11.40882,16.9211,-12.52756,16.9211,11.3622,15.91896,10.24346,16.9211,10.24346,15.91896,11.3622,16.9211,-10.29008,16.9211,-10.29008,15.91896,12.52756,-2.39093,-11.40882,15.91897,-12.52756,-2.39093,12.52756,16.9211,-11.40882,16.9211,-12.52756,16.9211,-11.40882,-8.775474,-11.40882,13.80164,-10.29008,-8.775474,-10.29008,13.80164,10.24346,-8.775474,10.24346,13.80164,11.3622,-8.775474,11.3622,13.80164,-10.29008,-8.775474,-11.40882,13.80164,-11.40882,-8.775474,-10.29008,13.80164,10.24346,-8.775474,10.24346,13.80164,11.3622,-8.775474,11.3622,13.80164,-10.24346,16.9211,-10.24346,15.91896,-11.3622,16.9211,-11.3622,15.91896,10.29008,15.91896,10.29008,16.9211,-12.52756,16.9211,-12.52756,-2.39093,11.40882,15.91897,12.52756,-2.39093,11.40882,16.9211,12.52756,16.9211,-11.3622,16.9211,-10.24346,15.91896,-10.24346,16.9211,-11.3622,15.91896,10.29008,15.91896,10.29008,16.9211,-12.52756,16.9211,-12.52756,-2.39093,11.40882,15.91897,12.52756,-2.39093,11.40882,16.9211,12.52756,16.9211,-5.389764,13.70866,-5.389764,12.52756,-8.084645,12.52756,0.5664034,-2.68599,-2.375941,-2.68599,5.028755,15.09828,12.52756,-1.587626,12.52756,16.70986,13.70866,-1.587626,-5.389764,4.671822E-15,-8.084645,2.04281E-15,1.315105E-13,17.48566,-10.77953,4.370079,-10.77953,-5.861978E-16,1.315105E-13,20.3937,10.77953,4.370079,10.77953,-5.861978E-16,8.084645,-5.844214E-15,5.389764,-1.110223E-14,1.315105E-13,17.48566,-8.084645,2.04281E-15,-5.389764,4.671822E-15,-10.77953,4.370079,-10.77953,-5.861978E-16,1.315105E-13,20.3937,10.77953,4.370079,10.77953,-5.861978E-16,8.084645,-5.844214E-15,5.389764,-1.110223E-14,2.375941,-2.68599,-0.5664034,-2.68599,-5.028755,15.09828,5.389764,13.70866,8.084645,12.52756,5.389764,12.52756,11.40882,13.80164,11.40882,-8.775474,10.29008,13.80164,10.29008,-8.775474,-10.24346,13.80164,-10.24346,-8.775474,-11.3622,13.80164,-11.3622,-8.775474,10.29008,13.80164,11.40882,-8.775474,11.40882,13.80164,10.29008,-8.775474,-10.24346,13.80164,-10.24346,-8.775474,-11.3622,13.80164,-11.3622,-8.775474,12.52756,4.370079,12.52756,-5.861978E-16,-12.52756,4.370079,-12.52756,-5.861978E-16,-12.52756,4.370079,12.52756,-5.861978E-16,12.52756,4.370079,-12.52756,-5.861978E-16,10.77953,-5.861978E-16,-10.77953,-5.861978E-16,10.77953,4.370079,-10.77953,4.370079,2.548085,7.657481,2.548085,10.80709,-1.242849E-13,20.3937,-2.548085,10.80709,-2.548085,7.657481,10.77953,4.370079,-10.77953,-5.861978E-16,10.77953,-5.861978E-16,-10.77953,4.370079,2.548085,7.657481,2.548085,10.80709,-1.242849E-13,20.3937,-2.548085,10.80709,-2.548085,7.657481,-11.40882,-4.44088E-16,-11.40882,19.5622,-10.29008,-4.44088E-16,-10.29008,19.5622,-11.40882,22.09176,-10.29008,22.09176,-10.24346,19.5622,-10.24346,-1.110223E-14,-11.3622,19.5622,-11.3622,-1.110223E-14,-11.3622,22.09176,-10.24346,22.09176,0.55937,19.5622,1.272086E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,-1.110223E-14,0.55937,-1.110223E-14,-0.55937,-11.40882,-0.55937,-10.29008,0.55937,-11.40882,0.55937,-10.29008,0.55937,-4.44088E-16,-0.55937,-4.44088E-16,0.55937,19.5622,-0.55937,19.5622,1.325445E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,10.24346,-6.661349E-16,10.24346,3.188976,11.3622,-6.661349E-16,11.3622,3.188976,10.24346,4.370079,11.3622,4.370079,0.55937,-10.29008,0.55937,-11.40882,-0.55937,-10.29008,-0.55937,-11.40882,-16.10425,-5.764186E-16,-17.22299,-5.764186E-16,-16.10425,3.188976,-17.22299,4.370079,-16.10425,4.370079,-10.24346,4.370079,-10.24346,-6.661349E-16,-11.3622,4.370079,-11.3622,-6.661349E-16,11.40882,19.5622,11.40882,-4.44088E-16,10.29008,19.5622,10.29008,-4.44088E-16,10.29008,22.09176,11.40882,22.09176,10.24346,-6.563557E-16,10.24346,4.370079,11.3622,-6.563557E-16,11.3622,4.370079,17.22299,-6.563557E-16,16.10425,-6.563557E-16,17.22299,4.370079,16.10425,3.188976,16.10425,4.370079,11.40882,4.370079,11.40882,3.188976,10.29008,4.370079,10.29008,3.188976,11.40882,-5.764186E-16,10.29008,-5.764186E-16,-0.55937,10.24346,-0.55937,11.3622,0.55937,10.24346,0.55937,11.3622,-17.22299,10.24346,-17.22299,11.3622,-16.10425,10.24346,-16.10425,11.3622,10.24346,19.5622,10.24346,22.09176,11.3622,19.5622,11.3622,22.09176,11.3622,-1.110223E-14,10.24346,-1.110223E-14,-16.10425,-6.661349E-16,-17.22299,-6.661349E-16,-16.10425,3.188976,-17.22299,4.370079,-16.10425,4.370079,17.22299,-10.29008,17.22299,-11.40882,16.10425,-10.29008,16.10425,-11.40882,0.55937,-1.110223E-14,-0.55937,-1.110223E-14,0.55937,19.5622,-0.55937,19.5622,-1.230788E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,0.55937,19.5622,-1.284147E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,-4.44088E-16,0.55937,-4.44088E-16,0.55937,11.3622,0.55937,10.24346,-0.55937,11.3622,-0.55937,10.24346,-10.24346,4.370079,-10.24346,3.188976,-11.3622,4.370079,-11.3622,3.188976,-10.24346,-6.563557E-16,-11.3622,-6.563557E-16,17.22299,-6.661349E-16,16.10425,-6.661349E-16,17.22299,4.370079,16.10425,3.188976,16.10425,4.370079,-16.10425,11.3622,-16.10425,10.24346,-17.22299,11.3622,-17.22299,10.24346,17.22299,-5.764186E-16,16.10425,-5.764186E-16,17.22299,4.370079,16.10425,3.188976,16.10425,4.370079,-11.40882,-5.764186E-16,-11.40882,4.370079,-10.29008,-5.764186E-16,-10.29008,4.370079,17.22299,-5.861978E-16,16.10425,-5.861978E-16,17.22299,4.370079,16.10425,3.188976,16.10425,4.370079,-16.10425,-5.861978E-16,-17.22299,-5.861978E-16,-16.10425,3.188976,-17.22299,4.370079,-16.10425,4.370079,-11.40882,3.188976,-11.40882,4.370079,-10.29008,3.188976,-10.29008,4.370079,-10.29008,-5.861978E-16,-11.40882,-5.861978E-16,-17.22299,-11.40882,-17.22299,-10.29008,-16.10425,-11.40882,-16.10425,-10.29008,17.22299,11.3622,17.22299,10.24346,16.10425,11.3622,16.10425,10.24346,-16.10425,-6.563557E-16,-17.22299,-6.563557E-16,-16.10425,3.188976,-17.22299,4.370079,-16.10425,4.370079,-16.10425,-10.29008,-16.10425,-11.40882,-17.22299,-10.29008,-17.22299,-11.40882,16.10425,-11.40882,16.10425,-10.29008,17.22299,-11.40882,17.22299,-10.29008,11.40882,4.370079,11.40882,-5.861978E-16,10.29008,4.370079,10.29008,-5.861978E-16,16.10425,10.24346,16.10425,11.3622,17.22299,10.24346,17.22299,11.3622 + } + UVIndex: *696 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,8,10,7,11,13,12,14,12,13,12,15,11,16,11,15,11,16,17,13,11,17,14,13,17,16,18,17,19,17,18,20,14,17,18,21,19,22,19,21,23,25,24,24,26,23,27,24,25,25,28,27,28,25,29,25,23,29,23,26,29,30,28,29,29,31,30,26,32,29,33,30,31,31,34,33,35,37,36,38,36,37,39,38,37,40,38,39,41,40,39,42,40,41,43,45,44,44,46,43,46,47,43,46,48,47,48,49,47,48,50,49,51,53,52,54,52,53,52,55,51,56,51,55,53,57,54,52,58,55,54,58,52,57,58,54,55,58,59,58,60,59,59,60,61,62,61,60,63,65,64,64,66,63,67,64,65,65,68,67,69,63,66,70,64,67,70,66,64,70,69,66,70,67,71,72,70,71,72,71,73,73,74,72,75,77,76,78,80,79,81,83,82,84,86,85,86,87,85,88,85,87,89,87,86,89,86,90,90,86,91,92,91,86,92,86,93,94,96,95,97,94,95,95,98,97,97,99,94,94,99,100,94,100,101,101,102,94,94,102,103,104,106,105,107,109,108,110,112,111,113,111,112,114,113,112,115,113,114,116,115,114,117,115,116,118,120,119,119,121,118,121,122,118,121,123,122,123,124,122,123,125,124,126,128,127,129,127,128,130,132,131,131,133,130,134,136,135,137,135,136,138,137,136,139,138,136,140,139,136,141,139,140,140,137,141,142,141,137,138,142,137,143,145,144,144,146,143,146,147,143,147,148,143,148,149,143,148,150,149,146,149,150,150,151,146,151,147,146,152,154,153,155,153,154,153,155,156,157,156,155,158,160,159,161,159,160,160,158,162,163,162,158,164,166,165,166,167,165,168,165,167,165,168,164,168,169,164,170,164,169,171,173,172,174,172,173,175,177,176,178,176,177,179,178,177,177,180,179,178,179,181,180,181,179,182,184,183,185,183,184,183,185,186,187,186,185,188,190,189,191,189,190,192,194,193,195,193,194,196,195,194,197,199,198,200,198,199,201,203,202,204,202,203,203,201,205,206,205,201,207,209,208,210,208,209,211,213,212,214,212,213,215,214,213,216,218,217,219,217,218,217,219,220,221,220,219,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,232,230,234,235,234,230,236,238,237,239,237,238,240,239,238,241,243,242,244,242,243,245,247,246,248,246,247,249,248,247,247,250,249,248,249,251,250,251,249,252,254,253,254,255,253,256,253,255,253,256,252,256,257,252,258,252,257,259,261,260,262,260,261,263,265,264,266,264,265,264,266,267,268,267,266,269,271,270,272,270,271,273,272,271,274,276,275,277,275,276,278,280,279,281,279,280,282,281,280,283,285,284,286,284,285,287,289,288,290,288,289,291,290,289,292,294,293,295,293,294,296,295,294,297,299,298,300,298,299,299,297,301,302,301,297,303,305,304,306,304,305,307,309,308,310,308,309,311,313,312,314,312,313,315,314,313,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *232 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tent_detailedOpen, Model::RootNode + C: "OO",4903900552310999406,0 + + ;Geometry::, Model::Mesh tent_detailedOpen + C: "OO",5705090686031190403,4903900552310999406 + + ;Material::colorRed, Model::Mesh tent_detailedOpen + C: "OO",3008,4903900552310999406 + + ;Material::wood, Model::Mesh tent_detailedOpen + C: "OO",3044,4903900552310999406 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedOpen.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedOpen.fbx.import new file mode 100644 index 0000000..90ed0ae --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tent_detailedOpen.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b3ktl5oaqmt2a" +path="res://.godot/imported/tent_detailedOpen.fbx-523e792608bddab458f284c2c295aa58.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tent_detailedOpen.fbx" +dest_files=["res://.godot/imported/tent_detailedOpen.fbx-523e792608bddab458f284c2c295aa58.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tent_smallClosed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tent_smallClosed.fbx new file mode 100644 index 0000000..c740efe --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tent_smallClosed.fbx @@ -0,0 +1,366 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 35 + Millisecond: 965 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tent_smallClosed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tent_smallClosed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4933393206254814101, "Model::tent_smallClosed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4729612225314422829, "Geometry::", "Mesh" { + Vertices: *732 { + a: -2.738,-7.496242E-20,-3.182,2.738,-7.496242E-20,-3.182,-2.738,1.11,-3.182,2.738,1.11,-3.182,-0.6472136,1.945,-3.182,-0.6472136,2.745,-3.182,-4.741421E-08,5.179999,-3.182,0.6472135,2.745,-3.182,0.6472135,1.945,-3.182,-2.738,1.11,-3.182,2.738,-7.496242E-20,-3.182,-2.738,-7.496242E-20,-3.182,2.738,1.11,-3.182,-0.6472136,1.945,-3.182,-0.6472136,2.745,-3.182,-4.741421E-08,5.179999,-3.182,0.6472135,2.745,-3.182,0.6472135,1.945,-3.182,0.14208,4.9688,2.60184,0.14208,4.9688,2.886,3.876934E-08,5.179999,2.60184,4.300354E-08,5.179999,2.886,1.845961,2.436003,1.803261,1.475688,2.986411,1.744057,1.523421,2.915456,0.7858657,1.121744,3.512542,0.5836095,1.001593,3.691145,-0.730882,-3.894581E-08,5.179999,-2.61368,1.572263,2.842852,-0.8983037,2.10235,2.054885,0.639406,2.378335,1.644636,-0.04426628,0.1420799,4.9688,-2.61368,0.1420799,4.9688,-2.89784,-4.741421E-08,5.179999,-3.182,-4.318001E-08,5.179999,-2.89784,2.738,1.11,-3.182,2.738,1.11,3.182,2.391309,1.625351,0.6213281,1.893695,2.365048,0.8450693,0.1,5.031352,3.182,4.741417E-08,5.179999,3.182,2.089376,2.074171,-0.02618833,1.692414,2.664249,0.4161881,3.876934E-08,5.179999,2.60184,0.14208,4.9688,2.886,0.14208,4.9688,2.60184,4.300354E-08,5.179999,2.886,1.845961,2.436003,1.803261,1.475688,2.986411,1.744057,1.523421,2.915456,0.7858657,1.121744,3.512542,0.5836095,1.001593,3.691145,-0.730882,-3.894581E-08,5.179999,-2.61368,1.572263,2.842852,-0.8983037,2.10235,2.054885,0.639406,2.378335,1.644636,-0.04426628,0.1420799,4.9688,-2.61368,0.1420799,4.9688,-2.89784,-4.741421E-08,5.179999,-3.182,-4.318001E-08,5.179999,-2.89784,2.738,1.11,-3.182,2.738,1.11,3.182,2.391309,1.625351,0.6213281,1.893695,2.365048,0.8450693,0.1,5.031352,3.182,4.741417E-08,5.179999,3.182,2.089376,2.074171,-0.02618833,1.692414,2.664249,0.4161881,2.378335,1.644636,-0.04426628,2.089376,2.074171,-0.02618833,2.391309,1.625351,0.6213281,2.10235,2.054885,0.639406,0.1,5.031352,3.182,-0.09999993,-7.496242E-20,3.182,0.1,-7.496242E-20,3.182,-0.09999993,5.031352,3.182,4.741417E-08,5.179999,3.182,2.738,1.11,3.182,2.738,-7.496242E-20,3.182,-2.738,-7.496242E-20,3.182,-2.738,1.11,3.182,-4.741421E-08,5.179999,-3.182,-4.318001E-08,5.179999,-2.89784,-2.738,1.11,-3.182,-0.14208,4.9688,-2.89784,-2.253367,1.830399,-2.139391,-2.738,1.11,3.182,-0.14208,4.9688,-2.61368,-1.843308,2.439947,-2.228293,-2.183896,1.933668,-1.110895,-1.851761,2.427382,-0.9143764,-1.894837,2.363351,-0.1412183,-1.607131,2.791022,-0.0897707,-0.1420799,4.9688,2.60184,3.876934E-08,5.179999,2.60184,-0.1420799,4.9688,2.886,4.741417E-08,5.179999,3.182,4.300354E-08,5.179999,2.886,-3.894581E-08,5.179999,-2.61368,-1.564055,2.855053,-0.8629289,-1.773837,2.543216,-1.199796,-2.738,1.11,-3.182,-4.318001E-08,5.179999,-2.89784,-4.741421E-08,5.179999,-3.182,-0.14208,4.9688,-2.89784,-2.253367,1.830399,-2.139391,-2.738,1.11,3.182,-0.14208,4.9688,-2.61368,-1.843308,2.439947,-2.228293,-2.183896,1.933668,-1.110895,-1.851761,2.427382,-0.9143764,-1.894837,2.363351,-0.1412183,-1.607131,2.791022,-0.0897707,-0.1420799,4.9688,2.60184,3.876934E-08,5.179999,2.60184,-0.1420799,4.9688,2.886,4.741417E-08,5.179999,3.182,4.300354E-08,5.179999,2.886,-3.894581E-08,5.179999,-2.61368,-1.564055,2.855053,-0.8629289,-1.773837,2.543216,-1.199796,-0.09999993,5.031352,3.182,-2.738,1.11,3.182,4.741417E-08,5.179999,3.182,4.741417E-08,5.179999,3.182,-2.738,1.11,3.182,-0.09999993,5.031352,3.182,2.738,-7.496242E-20,3.182,0.1,-7.496242E-20,3.182,2.738,1.11,3.182,0.1,5.031352,3.182,2.738,1.11,-3.182,2.738,-7.496242E-20,-3.182,2.738,1.11,3.182,2.738,-7.496242E-20,3.182,2.738,1.11,3.182,2.738,-7.496242E-20,-3.182,2.738,1.11,-3.182,2.738,-7.496242E-20,3.182,-2.738,-7.496242E-20,-3.182,-2.738,1.11,-3.182,-2.738,-7.496242E-20,3.182,-2.738,1.11,3.182,-2.738,-7.496242E-20,3.182,-2.738,1.11,-3.182,-2.738,-7.496242E-20,-3.182,-2.738,1.11,3.182,1.523421,2.915456,0.7858657,1.475688,2.986411,1.744057,1.893695,2.365048,0.8450693,1.845961,2.436003,1.803261,-0.09999993,-7.496242E-20,3.182,-2.738,-7.496242E-20,3.182,-0.09999993,5.031352,3.182,-2.738,1.11,3.182,1.572263,2.842852,-0.8983037,1.001593,3.691145,-0.730882,1.692414,2.664249,0.4161881,1.121744,3.512542,0.5836095,0.1420799,5.611308,-2.89784,0.1420799,4.9688,-2.89784,0.1420799,5.611308,-2.61368,0.1420799,4.9688,-2.61368,0.1420799,3.602092E-17,-2.89784,0.1420799,3.602092E-17,-2.61368,-0.1420799,4.9688,2.60184,-0.1420799,5.611308,2.60184,-0.1420799,4.9688,2.886,-0.1420799,5.611308,2.886,-0.1420799,-2.671147E-15,2.886,-0.1420799,-2.671147E-15,2.60184,0.1420799,3.602092E-17,-2.61368,-0.14208,3.602092E-17,-2.61368,0.1420799,4.9688,-2.61368,-0.14208,4.9688,-2.61368,-3.894581E-08,5.179999,-2.61368,0.1420799,5.611308,-2.61368,-0.14208,5.611308,-2.61368,0.14208,5.611308,2.886,-0.1420799,5.611308,2.886,0.14208,5.611308,2.60184,-0.1420799,5.611308,2.60184,0.14208,4.9688,2.60184,0.14208,-2.671147E-15,2.60184,0.14208,4.9688,2.886,0.14208,-2.671147E-15,2.886,0.14208,5.611308,2.886,0.14208,5.611308,2.60184,0.14208,4.9688,2.886,4.300354E-08,5.179999,2.886,0.14208,5.611308,2.886,-0.1420799,5.611308,2.886,-0.1420799,4.9688,2.886,-0.1420799,-2.671147E-15,2.886,0.14208,-2.671147E-15,2.886,-0.14208,3.602092E-17,-2.89784,-0.14208,4.9688,-2.89784,-0.14208,3.602092E-17,-2.61368,-0.14208,4.9688,-2.61368,-0.14208,5.611308,-2.89784,-0.14208,5.611308,-2.61368,-0.14208,4.9688,-2.89784,-4.318001E-08,5.179999,-2.89784,-0.14208,5.611308,-2.89784,0.1420799,5.611308,-2.89784,0.1420799,4.9688,-2.89784,0.1420799,3.602092E-17,-2.89784,-0.14208,3.602092E-17,-2.89784,0.1420799,5.611308,-2.61368,-0.14208,5.611308,-2.61368,0.1420799,5.611308,-2.89784,-0.14208,5.611308,-2.89784,-0.1420799,4.9688,2.60184,3.876934E-08,5.179999,2.60184,-0.1420799,5.611308,2.60184,0.14208,5.611308,2.60184,0.14208,4.9688,2.60184,0.14208,-2.671147E-15,2.60184,-0.1420799,-2.671147E-15,2.60184,0.1420799,3.602092E-17,-2.61368,0.1420799,3.602092E-17,-2.89784,-0.14208,3.602092E-17,-2.61368,-0.14208,3.602092E-17,-2.89784,-0.14208,3.602092E-17,-2.61368,0.1420799,3.602092E-17,-2.89784,0.14208,-2.671147E-15,2.886,0.14208,-2.671147E-15,2.60184,-0.1420799,-2.671147E-15,2.886,-0.1420799,-2.671147E-15,2.60184,-0.1420799,-2.671147E-15,2.886,0.14208,-2.671147E-15,2.60184,2.391309,1.625351,0.6213281,2.089376,2.074171,-0.02618833,2.378335,1.644636,-0.04426628,2.10235,2.054885,0.639406,4.741417E-08,5.179999,3.182,1.893695,2.365048,0.8450693,1.475688,2.986411,1.744057,1.523421,2.915456,0.7858657,1.845961,2.436003,1.803261,1.692414,2.664249,0.4161881,1.001593,3.691145,-0.730882,1.572263,2.842852,-0.8983037,1.121744,3.512542,0.5836095 + } + PolygonVertexIndex: *660 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,5,-3,7,5,-7,6,3,-8,8,7,-4,4,8,-4,9,11,-11,10,12,-10,12,13,-10,13,14,-10,14,15,-10,14,16,-16,12,15,-17,16,17,-13,17,13,-13,18,20,-20,21,19,-21,18,22,-21,22,23,-21,23,24,-21,24,25,-21,25,26,-21,20,26,-28,28,27,-27,29,25,-25,28,30,-28,27,30,-32,31,30,-33,32,30,-34,33,34,-33,33,30,-36,36,35,-31,37,36,-31,29,36,-38,38,36,-30,24,38,-30,22,36,-39,18,36,-23,19,36,-19,21,36,-20,39,36,-22,40,39,-22,30,28,-42,42,41,-29,29,41,-43,25,29,-43,43,45,-45,44,46,-44,47,45,-44,48,47,-44,49,48,-44,50,49,-44,51,50,-44,51,43,-53,52,53,-52,50,54,-50,55,53,-53,55,52,-57,55,56,-58,55,57,-59,59,58,-58,55,58,-61,60,61,-56,61,62,-56,61,54,-63,61,63,-55,63,49,-55,61,47,-64,61,45,-48,61,44,-46,61,46,-45,61,64,-47,64,65,-47,53,55,-67,66,67,-54,66,54,-68,54,50,-68,68,70,-70,71,69,-71,72,74,-74,73,75,-73,75,76,-73,74,72,-78,77,78,-75,75,73,-80,79,80,-76,81,83,-83,84,82,-84,85,84,-84,86,85,-84,87,84,-86,88,87,-86,89,85,-87,90,89,-87,91,90,-87,92,91,-87,93,92,-87,94,92,-94,88,94,-88,95,93,-87,96,95,-87,95,96,-98,94,93,-98,95,97,-94,98,87,-95,99,94,-89,90,99,-90,92,94,-100,100,99,-89,89,99,-101,101,103,-103,102,104,-102,104,105,-102,105,106,-102,104,107,-106,107,108,-106,105,109,-107,109,110,-107,110,111,-107,111,112,-107,112,113,-107,112,114,-114,114,108,-108,113,115,-107,115,116,-107,116,115,-118,113,114,-118,117,115,-114,107,118,-115,114,119,-109,119,110,-110,114,112,-120,111,110,-120,119,112,-112,119,120,-109,119,109,-121,105,108,-121,120,109,-106,121,123,-123,124,126,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,136,138,-136,139,141,-141,142,140,-142,143,145,-145,144,146,-144,147,149,-149,150,148,-150,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,161,-161,162,160,-162,160,162,-164,164,163,-163,165,167,-167,168,166,-168,167,165,-170,170,169,-166,171,173,-173,174,172,-174,175,174,-174,173,176,-176,174,175,-178,176,177,-176,178,180,-180,181,179,-181,182,184,-184,185,183,-185,184,182,-187,187,186,-183,188,190,-190,190,191,-190,192,189,-192,189,192,-189,192,193,-189,194,188,-194,195,197,-197,198,196,-198,196,198,-200,200,199,-199,201,203,-203,203,204,-203,205,202,-205,202,205,-202,205,206,-202,207,201,-207,208,210,-210,211,209,-211,212,214,-214,214,215,-214,216,213,-216,213,216,-213,216,217,-213,218,212,-218,219,221,-221,222,224,-224,225,227,-227,228,230,-230,231,233,-233,232,234,-232,128,130,-152,153,151,-131,235,153,-131,90,91,-100,92,99,-92,88,85,-101,89,100,-86,236,238,-238,237,239,-237,240,242,-242,241,243,-241 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1980 { + a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.8297229,-0.5581756,0,-0.8297229,-0.5581756,0,-0.8297229,-0.5581756,0,-0.8297229,-0.5581756,0,-0.8297229,-0.5581756,0,-0.8297229,-0.5581756,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.829722,-0.5581768,0,-0.829722,-0.5581768,0,-0.829722,-0.5581768,0,-0.829722,-0.5581768,0,-0.829722,-0.5581768,0,-0.829722,-0.5581768,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8297226,0.558176,0,0.8297226,0.558176,0,0.8297226,0.558176,0,0.8297226,0.558176,0,0.8297226,0.558176,0,0.8297226,0.558176,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,0.8297229,0.5581756,0,0.8297229,0.5581756,0,0.8297229,0.5581756,0,0.8297229,0.5581756,0,0.8297229,0.5581756,0,0.8297229,0.5581756,0,0.829722,0.5581768,0,0.829722,0.5581768,0,0.829722,0.5581768,0,0.829722,0.5581768,0,0.829722,0.5581768,0,0.829722,0.5581768,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *488 { + a: 10.77953,-2.951276E-19,-10.77953,-2.951276E-19,10.77953,4.370079,-10.77953,4.370079,2.548085,7.657481,2.548085,10.80709,3.395948E-14,20.3937,-2.548085,10.80709,-2.548085,7.657481,10.77953,4.370079,-10.77953,-2.951276E-19,10.77953,-2.951276E-19,-10.77953,4.370079,2.548085,7.657481,2.548085,10.80709,3.395948E-14,20.3937,-2.548085,10.80709,-2.548085,7.657481,-10.24346,15.91896,-11.3622,15.91896,-10.24346,16.9211,-11.3622,16.9211,-7.099453,3.900918,-6.866366,6.512586,-3.09396,6.175907,-2.297676,9.009065,2.877488,9.85653,10.29008,16.9211,3.536629,5.831404,-2.517347,2.092522,0.1742764,0.1459045,10.29008,15.91897,11.40882,15.91897,12.52756,16.9211,11.40882,16.9211,12.52756,-2.39093,-12.52756,-2.39093,-2.446174,0.05439641,-3.327045,3.564237,-12.52756,16.21577,-12.52756,16.9211,0.1031034,2.184034,-1.638536,4.983938,-10.24346,16.9211,-11.3622,15.91896,-10.24346,15.91896,-11.3622,16.9211,-7.099453,3.900918,-6.866366,6.512586,-3.09396,6.175907,-2.297676,9.009065,2.877488,9.85653,10.29008,16.9211,3.536629,5.831404,-2.517347,2.092522,0.1742764,0.1459045,10.29008,15.91897,11.40882,15.91897,12.52756,16.9211,11.40882,16.9211,12.52756,-2.39093,-12.52756,-2.39093,-2.446174,0.05439641,-3.327045,3.564237,-12.52756,16.21577,-12.52756,16.9211,0.1031034,2.184034,-1.638536,4.983938,-0.1742753,0.1459143,-0.1031025,2.184044,2.446175,0.05440634,2.517348,2.092532,0.3937007,19.80847,-0.3937007,-2.951276E-19,0.3937007,-2.951276E-19,-0.3937007,19.80847,-1.365708E-13,20.3937,10.77953,4.370079,10.77953,-2.951276E-19,-10.77953,-2.951276E-19,-10.77953,4.370079,-12.52756,16.9211,-11.40882,16.9211,-12.52756,-2.39093,-11.40882,15.91897,-8.422799,1.027345,12.52756,-2.39093,-10.29008,15.91897,-8.772807,3.919631,-4.373602,1.517351,-3.599907,3.860011,-0.5559775,3.556184,-0.3534279,5.585471,10.24346,15.91897,10.24346,16.9211,11.3622,15.91897,12.52756,16.9211,11.3622,16.9211,-10.29008,16.9211,-3.397358,5.889297,-4.723606,4.409638,-12.52756,-2.39093,-11.40882,16.9211,-12.52756,16.9211,-11.40882,15.91897,-8.422799,1.027345,12.52756,-2.39093,-10.29008,15.91897,-8.772807,3.919631,-4.373602,1.517351,-3.599907,3.860011,-0.5559775,3.556184,-0.3534279,5.585471,10.24346,15.91897,10.24346,16.9211,11.3622,15.91897,12.52756,16.9211,11.3622,16.9211,-10.29008,16.9211,-3.397358,5.889297,-4.723606,4.409638,12.52756,16.21577,12.52756,-2.39093,12.52756,16.9211,12.52756,16.9211,12.52756,-2.39093,12.52756,16.21577,10.77953,-2.951276E-19,0.3937007,-2.951276E-19,10.77953,4.370079,0.3937007,19.80847,12.52756,4.370079,12.52756,-2.951276E-19,-12.52756,4.370079,-12.52756,-2.951276E-19,-12.52756,4.370079,12.52756,-2.951276E-19,12.52756,4.370079,-12.52756,-2.951276E-19,-12.52756,-2.951276E-19,-12.52756,4.370079,12.52756,-2.951276E-19,12.52756,4.370079,12.52756,-2.951276E-19,-12.52756,4.370079,-12.52756,-2.951276E-19,12.52756,4.370079,3.093958,6.175921,6.866364,6.512599,3.327043,3.564251,7.099451,3.900932,-0.3937007,-2.951276E-19,-10.77953,-2.951276E-19,-0.3937007,19.80847,-10.77953,4.370079,-3.536629,5.831403,-2.877489,9.856529,1.638535,4.983936,2.297675,9.009063,11.40882,22.09176,11.40882,19.5622,10.29008,22.09176,10.29008,19.5622,11.40882,1.418147E-16,10.29008,1.418147E-16,10.24346,19.5622,10.24346,22.09176,11.3622,19.5622,11.3622,22.09176,11.3622,-1.051633E-14,10.24346,-1.051633E-14,0.55937,1.418147E-16,-0.55937,1.418147E-16,0.55937,19.5622,-0.55937,19.5622,-1.117757E-14,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.5593702,11.3622,0.5593699,11.3622,-0.5593702,10.24346,0.5593699,10.24346,-10.24346,19.5622,-10.24346,-1.051633E-14,-11.3622,19.5622,-11.3622,-1.051633E-14,-11.3622,22.09176,-10.24346,22.09176,0.55937,19.5622,-1.463499E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,-1.051633E-14,0.55937,-1.051633E-14,-11.40882,1.418147E-16,-11.40882,19.5622,-10.29008,1.418147E-16,-10.29008,19.5622,-11.40882,22.09176,-10.29008,22.09176,0.55937,19.5622,2.978604E-14,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,1.418147E-16,0.55937,1.418147E-16,-0.5593699,-10.29008,0.5593702,-10.29008,-0.5593699,-11.40882,0.5593702,-11.40882,0.55937,19.5622,1.505234E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,-1.051633E-14,0.55937,-1.051633E-14,11.3622,22.09176,11.3622,19.5622,10.24346,22.09176,11.3622,22.09176,11.3622,19.5622,10.24346,22.09176,-0.3534279,5.585471,-3.397358,5.889297,10.24346,16.9211,-0.3534279,5.585471,-3.397358,5.889297,10.24346,16.9211,2.446175,0.05440634,-0.1031025,2.184044,-0.1742753,0.1459143,2.517348,2.092532,-1.365708E-13,20.3937,3.327043,3.564251,6.866364,6.512599,3.093958,6.175921,7.099451,3.900932,1.638535,4.983936,-2.877489,9.856529,-3.536629,5.831403,2.297675,9.009063 + } + UVIndex: *660 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,5,2,7,5,6,6,3,7,8,7,3,4,8,3,9,11,10,10,12,9,12,13,9,13,14,9,14,15,9,14,16,15,12,15,16,16,17,12,17,13,12,18,20,19,21,19,20,18,22,20,22,23,20,23,24,20,24,25,20,25,26,20,20,26,27,28,27,26,29,25,24,28,30,27,27,30,31,31,30,32,32,30,33,33,34,32,33,30,35,36,35,30,37,36,30,29,36,37,38,36,29,24,38,29,22,36,38,18,36,22,19,36,18,21,36,19,39,36,21,40,39,21,30,28,41,42,41,28,29,41,42,25,29,42,43,45,44,44,46,43,47,45,43,48,47,43,49,48,43,50,49,43,51,50,43,51,43,52,52,53,51,50,54,49,55,53,52,55,52,56,55,56,57,55,57,58,59,58,57,55,58,60,60,61,55,61,62,55,61,54,62,61,63,54,63,49,54,61,47,63,61,45,47,61,44,45,61,46,44,61,64,46,64,65,46,53,55,66,66,67,53,66,54,67,54,50,67,68,70,69,71,69,70,72,74,73,73,75,72,75,76,72,74,72,77,77,78,74,75,73,79,79,80,75,81,83,82,84,82,83,85,84,83,86,85,83,87,84,85,88,87,85,89,85,86,90,89,86,91,90,86,92,91,86,93,92,86,94,92,93,88,94,87,95,93,86,96,95,86,95,96,97,94,93,97,95,97,93,98,87,94,99,94,88,90,99,89,92,94,99,100,99,88,89,99,100,101,103,102,102,104,101,104,105,101,105,106,101,104,107,105,107,108,105,105,109,106,109,110,106,110,111,106,111,112,106,112,113,106,112,114,113,114,108,107,113,115,106,115,116,106,116,115,117,113,114,117,117,115,113,107,118,114,114,119,108,119,110,109,114,112,119,111,110,119,119,112,111,119,120,108,119,109,120,105,108,120,120,109,105,121,123,122,124,126,125,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,136,138,135,139,141,140,142,140,141,143,145,144,144,146,143,147,149,148,150,148,149,151,153,152,154,152,153,155,157,156,158,156,157,159,161,160,162,160,161,160,162,163,164,163,162,165,167,166,168,166,167,167,165,169,170,169,165,171,173,172,174,172,173,175,174,173,173,176,175,174,175,177,176,177,175,178,180,179,181,179,180,182,184,183,185,183,184,184,182,186,187,186,182,188,190,189,190,191,189,192,189,191,189,192,188,192,193,188,194,188,193,195,197,196,198,196,197,196,198,199,200,199,198,201,203,202,203,204,202,205,202,204,202,205,201,205,206,201,207,201,206,208,210,209,211,209,210,212,214,213,214,215,213,216,213,215,213,216,212,216,217,212,218,212,217,219,221,220,222,224,223,225,227,226,228,230,229,231,233,232,232,234,231,128,130,151,153,151,130,235,153,130,90,91,99,92,99,91,88,85,100,89,100,85,236,238,237,237,239,236,240,242,241,241,243,240 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *220 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } + + Material: 3010, "Material::colorRedDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.2117647,0.2313726 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.2117647,0.2313726 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tent_smallClosed, Model::RootNode + C: "OO",4933393206254814101,0 + + ;Geometry::, Model::Mesh tent_smallClosed + C: "OO",4729612225314422829,4933393206254814101 + + ;Material::colorRed, Model::Mesh tent_smallClosed + C: "OO",3008,4933393206254814101 + + ;Material::wood, Model::Mesh tent_smallClosed + C: "OO",3044,4933393206254814101 + + ;Material::_defaultMat, Model::Mesh tent_smallClosed + C: "OO",3004,4933393206254814101 + + ;Material::colorRedDark, Model::Mesh tent_smallClosed + C: "OO",3010,4933393206254814101 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tent_smallClosed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tent_smallClosed.fbx.import new file mode 100644 index 0000000..a385983 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tent_smallClosed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://yav8y1x54878" +path="res://.godot/imported/tent_smallClosed.fbx-88dbc1cc31c10080c2f46b24243207d5.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tent_smallClosed.fbx" +dest_files=["res://.godot/imported/tent_smallClosed.fbx-88dbc1cc31c10080c2f46b24243207d5.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tent_smallOpen.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tent_smallOpen.fbx new file mode 100644 index 0000000..cf0fd84 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tent_smallOpen.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 36 + Millisecond: 78 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tent_smallOpen.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tent_smallOpen.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5051147440077652221, "Model::tent_smallOpen", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4619009456937787399, "Geometry::", "Mesh" { + Vertices: *804 { + a: 1.572263,2.842852,-0.898304,1.001593,3.691145,-0.730882,1.692414,2.664249,0.4161881,1.121744,3.512542,0.5836096,1.523421,2.915456,0.7858658,1.475688,2.986411,1.744057,1.893695,2.365048,0.8450693,1.845961,2.436003,1.803261,-2.738,7.670277E-17,-3.182,2.738,7.670277E-17,-3.182,-2.738,1.11,-3.182,2.738,1.11,-3.182,-0.6472136,1.945,-3.182,-0.6472136,2.745,-3.182,4.981189E-13,5.179999,-3.182,0.6472136,2.745,-3.182,0.6472136,1.945,-3.182,-2.738,1.11,-3.182,2.738,7.670277E-17,-3.182,-2.738,7.670277E-17,-3.182,2.738,1.11,-3.182,-0.6472136,1.945,-3.182,-0.6472136,2.745,-3.182,4.981189E-13,5.179999,-3.182,0.6472136,2.745,-3.182,0.6472136,1.945,-3.182,-3.609557E-13,5.179999,2.60184,0.14208,4.9688,2.60184,-4.042704E-13,5.179999,2.886,0.14208,4.9688,2.886,-4.475851E-13,5.179999,3.182,1.845961,2.436003,1.803261,1.475688,2.986411,1.744057,1.523421,2.915456,0.7858658,1.121744,3.512542,0.5836096,1.001593,3.691145,-0.730882,0.14208,4.9688,-2.61368,4.114895E-13,5.179999,-2.61368,1.572263,2.842852,-0.898304,2.10235,2.054885,0.639406,2.378335,1.644636,-0.04426622,0.14208,4.9688,-2.89784,2.738,1.11,-3.182,4.548042E-13,5.179999,-2.89784,4.981189E-13,5.179999,-3.182,2.738,1.11,3.182,2.391309,1.625351,0.621328,1.893695,2.365048,0.8450693,2.089376,2.074171,-0.02618833,1.692414,2.664249,0.4161881,-4.042704E-13,5.179999,2.886,0.14208,4.9688,2.60184,-3.609557E-13,5.179999,2.60184,0.14208,4.9688,2.886,-4.475851E-13,5.179999,3.182,1.845961,2.436003,1.803261,1.475688,2.986411,1.744057,1.523421,2.915456,0.7858658,1.121744,3.512542,0.5836096,1.001593,3.691145,-0.730882,0.14208,4.9688,-2.61368,4.114895E-13,5.179999,-2.61368,1.572263,2.842852,-0.898304,2.10235,2.054885,0.639406,2.378335,1.644636,-0.04426622,0.14208,4.9688,-2.89784,2.738,1.11,-3.182,4.548042E-13,5.179999,-2.89784,4.981189E-13,5.179999,-3.182,2.738,1.11,3.182,2.391309,1.625351,0.621328,1.893695,2.365048,0.8450693,2.089376,2.074171,-0.02618833,1.692414,2.664249,0.4161881,2.0535,-1.258833E-15,3.182,1.369,-2.594369E-15,3.182,1.369,-2.594369E-15,3.482,2.0535,-1.258833E-15,3.182,1.369,-2.594369E-15,3.182,-4.475851E-13,4.441358,3.182,2.738,7.670277E-17,3.182,2.738,1.11,3.182,-4.475851E-13,5.179999,3.182,-2.738,1.11,3.182,-2.0535,7.444707E-16,3.182,-2.738,7.670277E-17,3.182,-1.369,1.41224E-15,3.182,-4.475851E-13,4.441358,3.182,1.369,-2.594369E-15,3.182,2.0535,-1.258833E-15,3.182,2.738,7.670277E-17,3.182,2.738,1.11,3.182,-4.475851E-13,5.179999,3.182,-2.738,1.11,3.182,-2.0535,7.444707E-16,3.182,-2.738,7.670277E-17,3.182,-1.369,1.41224E-15,3.182,-1.843308,2.439947,-2.228293,-2.253367,1.830399,-2.139392,-1.773837,2.543216,-1.199796,-2.183896,1.933668,-1.110895,-1.369,1.41224E-15,3.482,-1.369,1.41224E-15,3.182,-2.0535,7.444707E-16,3.182,2.0535,-1.258833E-15,3.182,1.369,-2.594369E-15,3.482,-4.475851E-13,4.441358,3.182,-1.369,1.41224E-15,3.482,-2.0535,7.444707E-16,3.182,-4.475851E-13,4.441358,3.182,-1.851761,2.427382,-0.914377,-1.894837,2.363351,-0.1412183,-1.564055,2.855053,-0.862929,-1.607131,2.791022,-0.08977072,-0.14208,4.9688,2.60184,-3.609557E-13,5.179999,2.60184,-0.14208,4.9688,2.886,-4.042704E-13,5.179999,2.886,-2.738,1.11,3.182,-1.607131,2.791022,-0.08977072,-1.894837,2.363351,-0.1412183,-1.851761,2.427382,-0.914377,-2.183896,1.933668,-1.110895,-2.253367,1.830399,-2.139392,-2.738,1.11,-3.182,4.981189E-13,5.179999,-3.182,-0.14208,4.9688,-2.89784,-0.14208,4.9688,-2.61368,-1.843308,2.439947,-2.228293,4.114895E-13,5.179999,-2.61368,-4.475851E-13,5.179999,3.182,-1.564055,2.855053,-0.862929,-1.773837,2.543216,-1.199796,4.548042E-13,5.179999,-2.89784,-0.14208,4.9688,2.886,-3.609557E-13,5.179999,2.60184,-0.14208,4.9688,2.60184,-4.042704E-13,5.179999,2.886,-2.738,1.11,3.182,-1.607131,2.791022,-0.08977072,-1.894837,2.363351,-0.1412183,-1.851761,2.427382,-0.914377,-2.183896,1.933668,-1.110895,-2.253367,1.830399,-2.139392,-2.738,1.11,-3.182,4.981189E-13,5.179999,-3.182,-0.14208,4.9688,-2.89784,-0.14208,4.9688,-2.61368,-1.843308,2.439947,-2.228293,4.114895E-13,5.179999,-2.61368,-4.475851E-13,5.179999,3.182,-1.564055,2.855053,-0.862929,-1.773837,2.543216,-1.199796,4.548042E-13,5.179999,-2.89784,-4.475851E-13,4.441358,3.182,-1.369,1.41224E-15,3.182,-1.369,1.41224E-15,3.482,1.369,-2.594369E-15,3.182,-4.475851E-13,4.441358,3.182,1.369,-2.594369E-15,3.482,2.378335,1.644636,-0.04426622,2.089376,2.074171,-0.02618833,2.391309,1.625351,0.621328,2.10235,2.054885,0.639406,-2.738,7.670277E-17,-3.182,-2.738,1.11,-3.182,-2.738,7.670277E-17,3.182,-2.738,1.11,3.182,-2.738,7.670277E-17,3.182,-2.738,1.11,-3.182,-2.738,7.670277E-17,-3.182,-2.738,1.11,3.182,2.738,1.11,-3.182,2.738,7.670277E-17,-3.182,2.738,1.11,3.182,2.738,7.670277E-17,3.182,2.738,1.11,3.182,2.738,7.670277E-17,-3.182,2.738,1.11,-3.182,2.738,7.670277E-17,3.182,1.692414,2.664249,0.4161881,1.001593,3.691145,-0.730882,1.572263,2.842852,-0.898304,1.121744,3.512542,0.5836096,1.893695,2.365048,0.8450693,1.475688,2.986411,1.744057,1.523421,2.915456,0.7858658,1.845961,2.436003,1.803261,-1.773837,2.543216,-1.199796,-2.253367,1.830399,-2.139392,-1.843308,2.439947,-2.228293,-2.183896,1.933668,-1.110895,-1.564055,2.855053,-0.862929,-1.894837,2.363351,-0.1412183,-1.851761,2.427382,-0.914377,-1.607131,2.791022,-0.08977072,2.391309,1.625351,0.621328,2.089376,2.074171,-0.02618833,2.378335,1.644636,-0.04426622,2.10235,2.054885,0.639406,0.14208,1.127987E-16,-2.89784,-0.14208,1.127987E-16,-2.89784,0.14208,1.127987E-16,-2.61368,-0.14208,1.127987E-16,-2.61368,-0.14208,4.9688,-2.89784,4.548042E-13,5.179999,-2.89784,-0.14208,5.611308,-2.89784,0.14208,5.611308,-2.89784,0.14208,4.9688,-2.89784,0.14208,1.127987E-16,-2.89784,-0.14208,1.127987E-16,-2.89784,0.14208,5.611308,-2.89784,0.14208,5.611308,-2.61368,-0.14208,5.611308,-2.89784,-0.14208,5.611308,-2.61368,-0.14208,4.9688,2.60184,-3.609557E-13,5.179999,2.60184,-0.14208,5.611308,2.60184,0.14208,5.611308,2.60184,0.14208,4.9688,2.60184,0.14208,-2.594369E-15,2.60184,-0.14208,-2.594369E-15,2.60184,-0.14208,1.127987E-16,-2.89784,-0.14208,4.9688,-2.89784,-0.14208,1.127987E-16,-2.61368,-0.14208,4.9688,-2.61368,-0.14208,5.611308,-2.89784,-0.14208,5.611308,-2.61368,0.14208,5.611308,2.60184,0.14208,5.611308,2.886,-0.14208,5.611308,2.60184,-0.14208,5.611308,2.886,0.14208,5.611308,-2.89784,0.14208,4.9688,-2.89784,0.14208,5.611308,-2.61368,0.14208,4.9688,-2.61368,0.14208,1.127987E-16,-2.89784,0.14208,1.127987E-16,-2.61368,0.14208,4.9688,2.60184,0.14208,-2.594369E-15,2.60184,0.14208,4.9688,2.886,0.14208,-2.594369E-15,2.886,0.14208,5.611308,2.886,0.14208,5.611308,2.60184,0.14208,4.9688,2.886,-4.042704E-13,5.179999,2.886,0.14208,5.611308,2.886,-0.14208,5.611308,2.886,-0.14208,4.9688,2.886,-0.14208,-2.594369E-15,2.886,0.14208,-2.594369E-15,2.886,0.14208,-2.594369E-15,2.60184,-0.14208,-2.594369E-15,2.60184,0.14208,-2.594369E-15,2.886,-0.14208,-2.594369E-15,2.886,-0.14208,-2.594369E-15,2.60184,-0.14208,4.9688,2.60184,-0.14208,-2.594369E-15,2.886,-0.14208,4.9688,2.886,-0.14208,5.611308,2.60184,-0.14208,5.611308,2.886,0.14208,4.9688,-2.61368,4.114895E-13,5.179999,-2.61368,0.14208,5.611308,-2.61368,-0.14208,5.611308,-2.61368,-0.14208,4.9688,-2.61368,-0.14208,1.127987E-16,-2.61368,0.14208,1.127987E-16,-2.61368 + } + PolygonVertexIndex: *672 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,13,-11,15,13,-15,14,11,-16,16,15,-12,12,16,-12,17,19,-19,18,20,-18,20,21,-18,21,22,-18,22,23,-18,22,24,-24,20,23,-25,24,25,-21,25,21,-21,26,28,-28,29,27,-29,28,30,-30,26,27,-32,31,32,-27,32,33,-27,33,34,-27,34,35,-27,35,36,-27,37,26,-37,38,36,-36,39,34,-34,38,40,-37,36,40,-42,40,42,-42,41,42,-44,44,43,-43,45,42,-41,46,45,-41,39,45,-47,47,45,-40,33,47,-40,31,45,-48,27,45,-32,29,45,-28,30,45,-30,40,38,-49,49,48,-39,39,48,-50,34,39,-50,50,52,-52,51,53,-51,54,50,-54,51,52,-56,56,55,-53,57,56,-53,58,57,-53,59,58,-53,60,59,-53,52,61,-61,60,62,-60,58,63,-58,64,62,-61,64,60,-66,66,64,-66,66,65,-68,67,68,-67,66,69,-65,69,70,-65,69,63,-71,69,71,-64,71,57,-64,69,55,-72,69,51,-56,69,53,-52,69,54,-54,62,64,-73,72,73,-63,72,63,-74,63,58,-74,74,76,-76,77,79,-79,77,80,-80,81,79,-81,82,79,-82,82,83,-80,79,83,-85,85,84,-84,86,79,-85,87,89,-89,90,89,-88,87,91,-91,87,92,-92,93,92,-88,93,87,-95,94,95,-94,87,96,-95,97,99,-99,100,98,-100,101,103,-103,104,106,-106,107,109,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,116,114,-119,117,116,-119,114,119,-119,114,115,-120,119,120,-119,120,121,-119,121,122,-119,122,123,-119,118,123,-125,125,124,-124,126,125,-124,127,126,-124,128,127,-124,129,127,-129,129,128,-116,130,117,-119,131,115,-129,121,131,-123,119,115,-132,132,131,-129,122,131,-133,126,133,-126,134,136,-136,135,137,-135,136,134,-139,134,137,-139,139,136,-139,135,136,-140,140,139,-139,141,140,-139,142,141,-139,143,142,-139,143,138,-145,144,145,-144,145,146,-144,146,147,-144,147,148,-144,147,149,-149,148,149,-136,137,150,-139,135,151,-149,151,141,-143,151,152,-149,151,142,-153,135,139,-152,153,146,-146,154,156,-156,157,159,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,169,171,-169,172,174,-174,175,173,-175,176,178,-178,177,179,-177,180,182,-182,181,183,-181,184,186,-186,185,187,-185,188,190,-190,189,191,-189,192,194,-194,193,195,-193,196,198,-198,197,199,-197,200,202,-202,203,201,-203,204,206,-206,206,207,-206,208,205,-208,205,208,-205,208,209,-205,210,204,-210,211,213,-213,214,212,-214,215,217,-217,217,218,-217,219,216,-219,216,219,-216,219,220,-216,221,215,-221,222,224,-224,225,223,-225,223,225,-227,227,226,-226,228,230,-230,231,229,-231,232,234,-234,235,233,-235,233,235,-237,237,236,-236,238,240,-240,241,239,-241,240,238,-243,243,242,-239,244,246,-246,246,247,-246,248,245,-248,245,248,-245,248,249,-245,250,244,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,256,258,-260,260,259,-259,261,263,-263,263,264,-263,265,262,-265,262,265,-262,265,266,-262,267,261,-267 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2016 { + a: -0.829722,-0.5581768,0,-0.829722,-0.5581768,0,-0.829722,-0.5581768,0,-0.829722,-0.5581768,0,-0.829722,-0.5581768,0,-0.829722,-0.5581768,0,-0.8297229,-0.5581756,-2.543245E-07,-0.8297229,-0.5581756,-2.543245E-07,-0.8297229,-0.5581756,-2.543245E-07,-0.8297229,-0.5581756,-2.543245E-07,-0.8297229,-0.5581756,-2.543245E-07,-0.8297229,-0.5581756,-2.543245E-07,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297218,0.5581771,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,0.8297222,0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297218,-0.5581771,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,-0.8297222,-0.5581767,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.8297225,-0.5581761,6.983475E-07,0.8297225,-0.5581761,6.983475E-07,0.8297225,-0.5581761,6.983475E-07,0.8297225,-0.5581761,6.983475E-07,0.8297225,-0.5581761,6.983475E-07,0.8297225,-0.5581761,6.983475E-07,0,-1,0,0,-1,0,0,-1,0,0.3946753,0.1824815,0.9005176,0.3946753,0.1824815,0.9005176,0.3946753,0.1824815,0.9005176,-0.3946753,0.1824815,0.9005176,-0.3946753,0.1824815,0.9005176,-0.3946753,0.1824815,0.9005176,0.829722,-0.5581769,7.438052E-07,0.829722,-0.5581769,7.438052E-07,0.829722,-0.5581769,7.438052E-07,0.829722,-0.5581769,7.438052E-07,0.829722,-0.5581769,7.438052E-07,0.829722,-0.5581769,7.438052E-07,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297218,0.5581771,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,-0.8297222,0.5581767,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297218,-0.5581771,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.8297222,-0.5581767,0,0.9556321,-0.2945631,0,0.9556321,-0.2945631,0,0.9556321,-0.2945631,0,-0.9556321,-0.2945631,0,-0.9556321,-0.2945631,0,-0.9556321,-0.2945631,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,-0.8297226,-0.558176,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.829722,0.5581768,0,0.829722,0.5581768,0,0.829722,0.5581768,0,0.829722,0.5581768,0,0.829722,0.5581768,0,0.829722,0.5581768,0,0.8297229,0.5581756,2.543245E-07,0.8297229,0.5581756,2.543245E-07,0.8297229,0.5581756,2.543245E-07,0.8297229,0.5581756,2.543245E-07,0.8297229,0.5581756,2.543245E-07,0.8297229,0.5581756,2.543245E-07,-0.8297225,0.5581761,-6.983475E-07,-0.8297225,0.5581761,-6.983475E-07,-0.8297225,0.5581761,-6.983475E-07,-0.8297225,0.5581761,-6.983475E-07,-0.8297225,0.5581761,-6.983475E-07,-0.8297225,0.5581761,-6.983475E-07,-0.829722,0.5581769,-7.438052E-07,-0.829722,0.5581769,-7.438052E-07,-0.829722,0.5581769,-7.438052E-07,-0.829722,0.5581769,-7.438052E-07,-0.829722,0.5581769,-7.438052E-07,-0.829722,0.5581769,-7.438052E-07,0.8297226,0.558176,0,0.8297226,0.558176,0,0.8297226,0.558176,0,0.8297226,0.558176,0,0.8297226,0.558176,0,0.8297226,0.558176,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *536 { + a: -3.536631,5.831403,-2.877489,9.856529,1.638535,4.983936,2.297675,9.009063,3.093958,6.175921,6.866364,6.512599,3.327042,3.564251,7.09945,3.900932,10.77953,3.019794E-16,-10.77953,3.019794E-16,10.77953,4.370079,-10.77953,4.370079,2.548085,7.657481,2.548085,10.80709,-1.634392E-13,20.3937,-2.548085,10.80709,-2.548085,7.657481,10.77953,4.370079,-10.77953,3.019794E-16,10.77953,3.019794E-16,-10.77953,4.370079,2.548085,7.657481,2.548085,10.80709,-1.634392E-13,20.3937,-2.548085,10.80709,-2.548085,7.657481,-10.24346,16.9211,-10.24346,15.91896,-11.3622,16.9211,-11.3622,15.91896,-12.52756,16.9211,-7.099452,3.900918,-6.866366,6.512585,-3.09396,6.175907,-2.297676,9.009065,2.877489,9.85653,10.29008,15.91897,10.29008,16.9211,3.53663,5.831404,-2.517346,2.092522,0.1742765,0.1459044,11.40882,15.91897,12.52756,-2.39093,11.40882,16.9211,12.52756,16.9211,-12.52756,-2.39093,-2.446173,0.05439632,-3.327045,3.564237,0.1031037,2.184034,-1.638536,4.983938,-11.3622,16.9211,-10.24346,15.91896,-10.24346,16.9211,-11.3622,15.91896,-12.52756,16.9211,-7.099452,3.900918,-6.866366,6.512585,-3.09396,6.175907,-2.297676,9.009065,2.877489,9.85653,10.29008,15.91897,10.29008,16.9211,3.53663,5.831404,-2.517346,2.092522,0.1742765,0.1459044,11.40882,15.91897,12.52756,-2.39093,11.40882,16.9211,12.52756,16.9211,-12.52756,-2.39093,-2.446173,0.05439632,-3.327045,3.564237,0.1031037,2.184034,-1.638536,4.983938,8.084645,12.52756,5.389764,12.52756,5.389764,13.70866,8.084645,-4.956036E-15,5.389764,-1.021405E-14,3.551274E-14,17.48566,10.77953,3.019794E-16,10.77953,4.370079,3.551274E-14,20.3937,-10.77953,4.370079,-8.084645,2.930987E-15,-10.77953,3.019794E-16,-5.389764,5.559999E-15,3.551274E-14,17.48566,5.389764,-1.021405E-14,8.084645,-4.956036E-15,10.77953,3.019794E-16,10.77953,4.370079,3.551274E-14,20.3937,-10.77953,4.370079,-8.084645,2.930987E-15,-10.77953,3.019794E-16,-5.389764,5.559999E-15,8.772801,3.919634,8.422795,1.027348,4.723601,4.409643,4.373595,1.517356,-5.389764,13.70866,-5.389764,12.52756,-8.084645,12.52756,2.375941,-2.68599,-0.5664034,-2.68599,-5.028755,15.09828,0.5664034,-2.68599,-2.375941,-2.68599,5.028755,15.09828,3.599903,3.860006,0.555971,3.556181,3.397353,5.889293,0.3534223,5.585468,10.24346,15.91896,10.24346,16.9211,11.3622,15.91896,11.3622,16.9211,12.52756,-2.39093,-0.353428,5.585471,-0.5559777,3.556184,-3.599909,3.860011,-4.373602,1.517351,-8.422803,1.027345,-12.52756,-2.39093,-12.52756,16.9211,-11.40882,15.91897,-10.29008,15.91897,-8.772807,3.919631,-10.29008,16.9211,12.52756,16.9211,-3.397358,5.889297,-4.723607,4.409638,-11.40882,16.9211,11.3622,15.91896,10.24346,16.9211,10.24346,15.91896,11.3622,16.9211,12.52756,-2.39093,-0.353428,5.585471,-0.5559777,3.556184,-3.599909,3.860011,-4.373602,1.517351,-8.422803,1.027345,-12.52756,-2.39093,-12.52756,16.9211,-11.40882,15.91897,-10.29008,15.91897,-8.772807,3.919631,-10.29008,16.9211,12.52756,16.9211,-3.397358,5.889297,-4.723607,4.409638,-11.40882,16.9211,-12.52756,16.70986,-12.52756,-1.587626,-13.70866,-1.587626,12.52756,-1.587626,12.52756,16.70986,13.70866,-1.587626,-0.1742753,0.1459143,-0.1031026,2.184044,2.446174,0.05440634,2.517347,2.092532,-12.52756,3.019794E-16,-12.52756,4.370079,12.52756,3.019794E-16,12.52756,4.370079,12.52756,3.019794E-16,-12.52756,4.370079,-12.52756,3.019794E-16,12.52756,4.370079,12.52756,4.370079,12.52756,3.019794E-16,-12.52756,4.370079,-12.52756,3.019794E-16,-12.52756,4.370079,12.52756,3.019794E-16,12.52756,4.370079,-12.52756,3.019794E-16,1.638535,4.983936,-2.877489,9.856529,-3.536631,5.831403,2.297675,9.009063,3.327042,3.564251,6.866364,6.512599,3.093958,6.175921,7.09945,3.900932,4.723601,4.409643,8.422795,1.027348,8.772801,3.919634,4.373595,1.517356,3.397353,5.889293,0.555971,3.556181,3.599903,3.860006,0.3534223,5.585468,2.446174,0.05440634,-0.1031026,2.184044,-0.1742753,0.1459143,2.517347,2.092532,0.55937,-11.40882,-0.55937,-11.40882,0.55937,-10.29008,-0.55937,-10.29008,0.55937,19.5622,-1.53444E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,4.440892E-16,0.55937,4.440892E-16,-0.55937,-11.40882,-0.55937,-10.29008,0.55937,-11.40882,0.55937,-10.29008,0.55937,19.5622,-4.8814E-14,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,-1.021405E-14,0.55937,-1.021405E-14,-11.40882,4.440892E-16,-11.40882,19.5622,-10.29008,4.440892E-16,-10.29008,19.5622,-11.40882,22.09176,-10.29008,22.09176,-0.55937,10.24346,-0.55937,11.3622,0.55937,10.24346,0.55937,11.3622,11.40882,22.09176,11.40882,19.5622,10.29008,22.09176,10.29008,19.5622,11.40882,4.440892E-16,10.29008,4.440892E-16,-10.24346,19.5622,-10.24346,-1.021405E-14,-11.3622,19.5622,-11.3622,-1.021405E-14,-11.3622,22.09176,-10.24346,22.09176,0.55937,19.5622,3.881893E-14,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,-1.021405E-14,0.55937,-1.021405E-14,0.55937,10.24346,-0.55937,10.24346,0.55937,11.3622,-0.55937,11.3622,10.24346,-1.021405E-14,10.24346,19.5622,11.3622,-1.021405E-14,11.3622,19.5622,10.24346,22.09176,11.3622,22.09176,0.55937,19.5622,1.434489E-13,20.3937,0.55937,22.09176,-0.55937,22.09176,-0.55937,19.5622,-0.55937,4.440892E-16,0.55937,4.440892E-16 + } + UVIndex: *672 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,13,10,15,13,14,14,11,15,16,15,11,12,16,11,17,19,18,18,20,17,20,21,17,21,22,17,22,23,17,22,24,23,20,23,24,24,25,20,25,21,20,26,28,27,29,27,28,28,30,29,26,27,31,31,32,26,32,33,26,33,34,26,34,35,26,35,36,26,37,26,36,38,36,35,39,34,33,38,40,36,36,40,41,40,42,41,41,42,43,44,43,42,45,42,40,46,45,40,39,45,46,47,45,39,33,47,39,31,45,47,27,45,31,29,45,27,30,45,29,40,38,48,49,48,38,39,48,49,34,39,49,50,52,51,51,53,50,54,50,53,51,52,55,56,55,52,57,56,52,58,57,52,59,58,52,60,59,52,52,61,60,60,62,59,58,63,57,64,62,60,64,60,65,66,64,65,66,65,67,67,68,66,66,69,64,69,70,64,69,63,70,69,71,63,71,57,63,69,55,71,69,51,55,69,53,51,69,54,53,62,64,72,72,73,62,72,63,73,63,58,73,74,76,75,77,79,78,77,80,79,81,79,80,82,79,81,82,83,79,79,83,84,85,84,83,86,79,84,87,89,88,90,89,87,87,91,90,87,92,91,93,92,87,93,87,94,94,95,93,87,96,94,97,99,98,100,98,99,101,103,102,104,106,105,107,109,108,110,112,111,113,111,112,114,116,115,117,115,116,116,114,118,117,116,118,114,119,118,114,115,119,119,120,118,120,121,118,121,122,118,122,123,118,118,123,124,125,124,123,126,125,123,127,126,123,128,127,123,129,127,128,129,128,115,130,117,118,131,115,128,121,131,122,119,115,131,132,131,128,122,131,132,126,133,125,134,136,135,135,137,134,136,134,138,134,137,138,139,136,138,135,136,139,140,139,138,141,140,138,142,141,138,143,142,138,143,138,144,144,145,143,145,146,143,146,147,143,147,148,143,147,149,148,148,149,135,137,150,138,135,151,148,151,141,142,151,152,148,151,142,152,135,139,151,153,146,145,154,156,155,157,159,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,169,171,168,172,174,173,175,173,174,176,178,177,177,179,176,180,182,181,181,183,180,184,186,185,185,187,184,188,190,189,189,191,188,192,194,193,193,195,192,196,198,197,197,199,196,200,202,201,203,201,202,204,206,205,206,207,205,208,205,207,205,208,204,208,209,204,210,204,209,211,213,212,214,212,213,215,217,216,217,218,216,219,216,218,216,219,215,219,220,215,221,215,220,222,224,223,225,223,224,223,225,226,227,226,225,228,230,229,231,229,230,232,234,233,235,233,234,233,235,236,237,236,235,238,240,239,241,239,240,240,238,242,243,242,238,244,246,245,246,247,245,248,245,247,245,248,244,248,249,244,250,244,249,251,253,252,254,252,253,255,257,256,258,256,257,256,258,259,260,259,258,261,263,262,263,264,262,265,262,264,262,265,261,265,266,261,267,261,266 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *224 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3008, "Material::colorRed", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8784314,0.2901961,0.3137255 + P: "DiffuseColor", "Color", "", "A",0.8784314,0.2901961,0.3137255 + } + } + + Material: 3010, "Material::colorRedDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.7568628,0.2117647,0.2313726 + P: "DiffuseColor", "Color", "", "A",0.7568628,0.2117647,0.2313726 + } + } + + Material: 3044, "Material::wood", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.5568628,0.3843137 + P: "DiffuseColor", "Color", "", "A",1,0.5568628,0.3843137 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tent_smallOpen, Model::RootNode + C: "OO",5051147440077652221,0 + + ;Geometry::, Model::Mesh tent_smallOpen + C: "OO",4619009456937787399,5051147440077652221 + + ;Material::colorRed, Model::Mesh tent_smallOpen + C: "OO",3008,5051147440077652221 + + ;Material::colorRedDark, Model::Mesh tent_smallOpen + C: "OO",3010,5051147440077652221 + + ;Material::wood, Model::Mesh tent_smallOpen + C: "OO",3044,5051147440077652221 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tent_smallOpen.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tent_smallOpen.fbx.import new file mode 100644 index 0000000..0cd7a4c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tent_smallOpen.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cgy21wigjmy7y" +path="res://.godot/imported/tent_smallOpen.fbx-e5c27b9af36a933264716689a9e2a8cc.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tent_smallOpen.fbx" +dest_files=["res://.godot/imported/tent_smallOpen.fbx-e5c27b9af36a933264716689a9e2a8cc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks.fbx new file mode 100644 index 0000000..1b88f4c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 36 + Millisecond: 178 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_blocks.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_blocks.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4808422718982291219, "Model::tree_blocks", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4957463965051591362, "Geometry::", "Mesh" { + Vertices: *624 { + a: 0.45,5.85,-0.45,0.45,3.1,-0.45,0.45,5.85,0.45,0.45,3.1,0.45,0.6975,0,0.6975,0.6975,0,-0.6975,-0.6975,0,0.6975,-0.6975,0,-0.6975,-0.45,3.1,-0.45,0.45,3.1,-0.45,-0.45,5.85,-0.45,0.45,5.85,-0.45,0.6975,0,0.6975,-0.6975,0,0.6975,0.45,3.1,0.45,-0.45,3.1,0.45,0.45,3.1,0.45,-0.45,3.1,0.45,0.45,5.85,0.45,-0.45,5.85,0.45,-0.6975,0,-0.6975,0.6975,0,-0.6975,-0.45,3.1,-0.45,0.45,3.1,-0.45,-0.6975,0,-0.6975,-0.45,3.1,-0.45,-0.6975,0,0.6975,-0.45,3.1,0.45,-0.45,3.1,-0.45,-0.45,5.85,-0.45,-0.45,3.1,0.45,-0.45,5.85,0.45,0.6975,0,-0.6975,0.6975,0,0.6975,0.45,3.1,-0.45,0.45,3.1,0.45,-3,5.85,0.825,-3,8.013605,0.825,-3,5.85,3,-3,8.013605,3,-0.856632,11.35,-0.5382786,2.5,11.35,-0.5382786,-0.856632,11.85,-0.5382786,3,11.85,-0.5382786,3,8.349999,-0.5382786,2.5,8.349999,-0.5382786,2.5,6.35,-2.5,0.5534229,6.35,0.553508,2.5,6.35,2.5,-0.825,6.35,2.5,-0.825,6.35,0.825,-2.5,6.35,0.553508,-2.5,6.35,0.825,0.5534229,6.35,-2.5,3,9.75,-0.8,3,9.75,-3,2.5,9.75,-0.8,2.5,9.75,-2.5,0.825,9.75,-3,0.825,9.75,-2.5,-3,5.85,-3,0.5534229,5.85,-3,-3,9.4,-3,0.5534229,9.4,-3,-2.5,6.35,0.553508,-2.5,9.4,0.553508,-2.5,6.35,0.825,-2.5,8.013605,0.825,-2.5,11.35,2.5,-2.5,11.35,-2.5,-2.5,9.4,-2.5,-2.5,8.013605,2.5,3,11.85,-3,3,11.85,-0.8,0.825,11.85,-3,0.825,11.85,-0.8,-0.856632,8.349999,2.5,-0.856632,11.35,2.5,-0.856632,8.349999,3,-0.856632,11.85,3,-0.856632,11.85,-0.5382786,-0.856632,11.35,-0.5382786,2.5,11.35,-0.8,2.5,9.75,-0.8,2.5,11.35,-0.5382786,2.5,8.349999,-0.5382786,2.5,6.35,-2.5,2.5,9.75,-2.5,2.5,6.35,2.5,2.5,8.349999,2.5,3,11.85,-3,3,9.75,-3,3,11.85,-0.8,3,9.75,-0.8,3,8.349999,-0.5382786,2.5,8.349999,2.5,3,8.349999,3,-0.856632,8.349999,3,-0.856632,8.349999,2.5,2.5,8.349999,-0.5382786,-0.825,5.85,0.825,-2.5,6.35,0.825,-3,5.85,0.825,-3,8.013605,0.825,-2.5,8.013605,0.825,-0.825,6.35,0.825,3,8.349999,3,-0.856632,8.349999,3,3,11.85,3,-0.856632,11.85,3,3,11.85,-0.5382786,3,8.349999,-0.5382786,3,11.85,3,3,8.349999,3,0.825,9.75,-3,0.825,11.85,-3,0.825,9.75,-2.5,0.825,11.35,-2.5,0.825,11.85,-0.8,0.825,11.35,-0.8,0.5534229,5.85,-3,0.45,5.85,0.45,0.5534229,5.85,0.553508,-3,5.85,0.553508,-0.45,5.85,0.45,-0.45,5.85,-0.45,0.45,5.85,-0.45,-3,5.85,-3,0.5534229,9.4,-3,0.5534229,5.85,-3,0.5534229,9.4,-2.5,0.5534229,6.35,-2.5,0.5534229,5.85,0.553508,0.5534229,6.35,0.553508,-0.825,5.85,3,-3,5.85,3,-0.825,8.013605,3,-3,8.013605,3,0.825,9.75,-3,3,9.75,-3,0.825,11.85,-3,3,11.85,-3,-0.825,5.85,3,-0.825,5.85,0.825,-3,5.85,3,-3,5.85,0.825,3,9.75,-0.8,2.5,9.75,-0.8,3,11.85,-0.8,2.5,11.35,-0.8,0.825,11.35,-0.8,0.825,11.85,-0.8,3,11.85,-0.5382786,3,11.85,3,-0.856632,11.85,-0.5382786,-0.856632,11.85,3,-2.5,8.013605,0.825,-2.5,8.013605,2.5,-3,8.013605,0.825,-3,8.013605,3,-0.825,8.013605,3,-0.825,8.013605,2.5,-0.825,8.013605,2.5,-0.825,6.35,2.5,-0.825,8.013605,3,-0.825,5.85,3,-0.825,5.85,0.825,-0.825,6.35,0.825,0.5534229,5.85,0.553508,-3,5.85,0.553508,0.5534229,6.35,0.553508,-2.5,6.35,0.553508,-3,9.4,0.553508,-2.5,9.4,0.553508,-2.5,9.4,-2.5,0.5534229,9.4,-2.5,-2.5,11.35,-2.5,0.825,9.75,-2.5,0.825,11.35,-2.5,2.5,9.75,-2.5,2.5,6.35,-2.5,0.5534229,6.35,-2.5,2.5,6.35,2.5,-0.825,6.35,2.5,2.5,8.349999,2.5,-0.825,8.013605,2.5,-2.5,8.013605,2.5,-0.856632,8.349999,2.5,-2.5,11.35,2.5,-0.856632,11.35,2.5,-3,5.85,-3,-3,9.4,-3,-3,5.85,0.553508,-3,9.4,0.553508,0.5534229,9.4,-3,0.5534229,9.4,-2.5,-3,9.4,-3,-2.5,9.4,-2.5,-2.5,9.4,0.553508,-3,9.4,0.553508,0.825,11.35,-2.5,0.825,11.35,-0.8,-2.5,11.35,-2.5,-0.856632,11.35,-0.5382786,-0.856632,11.35,2.5,-2.5,11.35,2.5,2.5,11.35,-0.5382786,2.5,11.35,-0.8 + } + PolygonVertexIndex: *396 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,42,43,-42,43,44,-42,45,41,-45,46,48,-48,49,47,-49,50,47,-50,51,47,-51,52,51,-51,47,53,-47,54,56,-56,57,55,-57,58,55,-58,59,58,-58,60,62,-62,63,61,-63,64,66,-66,66,67,-66,67,68,-66,68,69,-66,70,65,-70,71,68,-68,72,74,-74,75,73,-75,76,78,-78,78,79,-78,79,80,-78,81,77,-81,82,84,-84,84,85,-84,85,86,-84,87,83,-87,88,86,-86,89,88,-86,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,95,-98,95,99,-95,100,102,-102,103,101,-103,104,101,-104,101,105,-101,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,115,-118,119,118,-118,120,122,-122,123,121,-123,124,121,-124,125,124,-124,121,126,-121,127,120,-127,125,127,-127,123,127,-126,128,130,-130,131,129,-131,132,129,-132,133,132,-132,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,149,-149,151,150,-149,152,154,-154,155,153,-155,156,158,-158,158,159,-158,159,160,-158,161,157,-161,162,164,-164,164,165,-164,165,166,-164,167,163,-167,168,170,-170,171,169,-171,172,169,-172,173,172,-172,174,176,-176,177,175,-177,178,177,-177,177,179,-176,179,180,-176,181,175,-181,182,184,-184,185,183,-185,186,185,-185,187,186,-185,188,186,-188,189,188,-188,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,197,-197,199,198,-197,200,202,-202,203,201,-203,204,203,-203,205,204,-203,203,206,-202,207,201,-207 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1188 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: 1.771654,23.0315,1.771654,12.20472,-1.771654,23.0315,-1.771654,12.20472,2.746063,2.746063,2.746063,-2.746063,-2.746063,2.746063,-2.746063,-2.746063,1.771654,12.20472,-1.771654,12.20472,1.771654,23.0315,-1.771654,23.0315,2.746063,-0.2185467,-2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.02501,1.771654,12.20472,-1.771654,12.20472,1.771654,23.0315,-1.771654,23.0315,2.746063,-0.2185467,-2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.02501,-2.746063,-0.2185467,-1.771654,12.02501,2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.20472,-1.771654,23.0315,1.771654,12.20472,1.771654,23.0315,2.746063,-0.2185467,-2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.02501,3.248032,23.0315,3.248032,31.54963,11.81102,23.0315,11.81102,31.54963,3.372567,44.68504,-9.84252,44.68504,3.372567,46.65355,-11.81102,46.65355,-11.81102,32.87402,-9.84252,32.87402,9.84252,-9.84252,2.17883,2.179166,9.84252,9.84252,-3.248032,9.84252,-3.248032,3.248032,-9.84252,2.179166,-9.84252,3.248032,2.17883,-9.84252,11.81102,-3.149606,11.81102,-11.81102,9.84252,-3.149606,9.84252,-9.84252,3.248032,-11.81102,3.248032,-9.84252,11.81102,23.0315,-2.17883,23.0315,11.81102,37.00787,-2.17883,37.00787,2.179166,25,2.179166,37.00787,3.248032,25,3.248032,31.54963,9.84252,44.68504,-9.84252,44.68504,-9.84252,37.00787,9.84252,31.54963,-11.81102,-11.81102,-11.81102,-3.149606,-3.248032,-11.81102,-3.248032,-3.149606,9.84252,32.87402,9.84252,44.68504,11.81102,32.87402,11.81102,46.65355,-2.119207,46.65355,-2.119207,44.68504,3.149606,44.68504,3.149606,38.38583,2.119207,44.68504,2.119207,32.87402,9.84252,25,9.84252,38.38583,-9.84252,25,-9.84252,32.87402,11.81102,46.65355,11.81102,38.38583,3.149606,46.65355,3.149606,38.38583,11.81102,-2.119207,9.84252,9.84252,11.81102,11.81102,-3.372567,11.81102,-3.372567,9.84252,9.84252,-2.119207,3.248032,23.0315,9.84252,25,11.81102,23.0315,11.81102,31.54963,9.84252,31.54963,3.248032,25,11.81102,32.87402,-3.372567,32.87402,11.81102,46.65355,-3.372567,46.65355,2.119207,46.65355,2.119207,32.87402,-11.81102,46.65355,-11.81102,32.87402,-11.81102,38.38583,-11.81102,46.65355,-9.84252,38.38583,-9.84252,44.68504,-3.149606,46.65355,-3.149606,44.68504,2.17883,-11.81102,1.771654,1.771654,2.17883,2.179166,-11.81102,2.179166,-1.771654,1.771654,-1.771654,-1.771654,1.771654,-1.771654,-11.81102,-11.81102,11.81102,37.00787,11.81102,23.0315,9.84252,37.00787,9.84252,25,-2.179166,23.0315,-2.179166,25,-3.248032,23.0315,-11.81102,23.0315,-3.248032,31.54963,-11.81102,31.54963,-3.248032,38.38583,-11.81102,38.38583,-3.248032,46.65355,-11.81102,46.65355,-3.248032,11.81102,-3.248032,3.248032,-11.81102,11.81102,-11.81102,3.248032,11.81102,38.38583,9.84252,38.38583,11.81102,46.65355,9.84252,44.68504,3.248032,44.68504,3.248032,46.65355,-11.81102,-2.119207,-11.81102,11.81102,3.372567,-2.119207,3.372567,11.81102,9.84252,3.248032,9.84252,9.84252,11.81102,3.248032,11.81102,11.81102,3.248032,11.81102,3.248032,9.84252,-9.84252,31.54963,-9.84252,25,-11.81102,31.54963,-11.81102,23.0315,-3.248032,23.0315,-3.248032,25,2.17883,23.0315,-11.81102,23.0315,2.17883,25,-9.84252,25,-11.81102,37.00787,-9.84252,37.00787,9.84252,37.00787,-2.17883,37.00787,9.84252,44.68504,-3.248032,38.38583,-3.248032,44.68504,-9.84252,38.38583,-9.84252,25,-2.17883,25,9.84252,25,-3.248032,25,9.84252,32.87402,-3.248032,31.54963,-9.84252,31.54963,-3.372567,32.87402,-9.84252,44.68504,-3.372567,44.68504,-11.81102,23.0315,-11.81102,37.00787,2.179166,23.0315,2.179166,37.00787,-2.17883,-11.81102,-2.17883,-9.84252,11.81102,-11.81102,9.84252,-9.84252,9.84252,2.179166,11.81102,2.179166,-3.248032,-9.84252,-3.248032,-3.149606,9.84252,-9.84252,3.372567,-2.119207,3.372567,9.84252,9.84252,9.84252,-9.84252,-2.119207,-9.84252,-3.149606 + } + UVIndex: *396 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,42,43,41,43,44,41,45,41,44,46,48,47,49,47,48,50,47,49,51,47,50,52,51,50,47,53,46,54,56,55,57,55,56,58,55,57,59,58,57,60,62,61,63,61,62,64,66,65,66,67,65,67,68,65,68,69,65,70,65,69,71,68,67,72,74,73,75,73,74,76,78,77,78,79,77,79,80,77,81,77,80,82,84,83,84,85,83,85,86,83,87,83,86,88,86,85,89,88,85,90,92,91,93,91,92,94,96,95,97,95,96,98,95,97,95,99,94,100,102,101,103,101,102,104,101,103,101,105,100,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,115,117,119,118,117,120,122,121,123,121,122,124,121,123,125,124,123,121,126,120,127,120,126,125,127,126,123,127,125,128,130,129,131,129,130,132,129,131,133,132,131,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,149,148,151,150,148,152,154,153,155,153,154,156,158,157,158,159,157,159,160,157,161,157,160,162,164,163,164,165,163,165,166,163,167,163,166,168,170,169,171,169,170,172,169,171,173,172,171,174,176,175,177,175,176,178,177,176,177,179,175,179,180,175,181,175,180,182,184,183,185,183,184,186,185,184,187,186,184,188,186,187,189,188,187,190,192,191,193,191,192,194,196,195,197,195,196,198,197,196,199,198,196,200,202,201,203,201,202,204,203,202,205,204,202,203,206,201,207,201,206 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *132 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_blocks, Model::RootNode + C: "OO",4808422718982291219,0 + + ;Geometry::, Model::Mesh tree_blocks + C: "OO",4957463965051591362,4808422718982291219 + + ;Material::woodBark, Model::Mesh tree_blocks + C: "OO",3046,4808422718982291219 + + ;Material::leafsGreen, Model::Mesh tree_blocks + C: "OO",3030,4808422718982291219 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks.fbx.import new file mode 100644 index 0000000..ddd5e6c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://h2sileni7b8o" +path="res://.godot/imported/tree_blocks.fbx-fc33105860573e7910996edff25db293.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_blocks.fbx" +dest_files=["res://.godot/imported/tree_blocks.fbx-fc33105860573e7910996edff25db293.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_dark.fbx new file mode 100644 index 0000000..23c6d5d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_dark.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 36 + Millisecond: 274 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_blocks_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_blocks_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4746263108906095637, "Model::tree_blocks_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5091581818064821176, "Geometry::", "Mesh" { + Vertices: *624 { + a: 0.45,5.85,-0.45,0.45,3.1,-0.45,0.45,5.85,0.45,0.45,3.1,0.45,0.6975,0,0.6975,0.6975,0,-0.6975,-0.6975,0,0.6975,-0.6975,0,-0.6975,-0.45,3.1,-0.45,0.45,3.1,-0.45,-0.45,5.85,-0.45,0.45,5.85,-0.45,0.6975,0,0.6975,-0.6975,0,0.6975,0.45,3.1,0.45,-0.45,3.1,0.45,0.45,3.1,0.45,-0.45,3.1,0.45,0.45,5.85,0.45,-0.45,5.85,0.45,-0.6975,0,-0.6975,0.6975,0,-0.6975,-0.45,3.1,-0.45,0.45,3.1,-0.45,-0.6975,0,-0.6975,-0.45,3.1,-0.45,-0.6975,0,0.6975,-0.45,3.1,0.45,-0.45,3.1,-0.45,-0.45,5.85,-0.45,-0.45,3.1,0.45,-0.45,5.85,0.45,0.6975,0,-0.6975,0.6975,0,0.6975,0.45,3.1,-0.45,0.45,3.1,0.45,-3,5.85,0.825,-3,8.013605,0.825,-3,5.85,3,-3,8.013605,3,-0.856632,11.35,-0.5382786,2.5,11.35,-0.5382786,-0.856632,11.85,-0.5382786,3,11.85,-0.5382786,3,8.349999,-0.5382786,2.5,8.349999,-0.5382786,2.5,6.35,-2.5,0.5534229,6.35,0.553508,2.5,6.35,2.5,-0.825,6.35,2.5,-0.825,6.35,0.825,-2.5,6.35,0.553508,-2.5,6.35,0.825,0.5534229,6.35,-2.5,3,9.75,-0.8,3,9.75,-3,2.5,9.75,-0.8,2.5,9.75,-2.5,0.825,9.75,-3,0.825,9.75,-2.5,-3,5.85,-3,0.5534229,5.85,-3,-3,9.4,-3,0.5534229,9.4,-3,-2.5,6.35,0.553508,-2.5,9.4,0.553508,-2.5,6.35,0.825,-2.5,8.013605,0.825,-2.5,11.35,2.5,-2.5,11.35,-2.5,-2.5,9.4,-2.5,-2.5,8.013605,2.5,3,11.85,-3,3,11.85,-0.8,0.825,11.85,-3,0.825,11.85,-0.8,-0.856632,8.349999,2.5,-0.856632,11.35,2.5,-0.856632,8.349999,3,-0.856632,11.85,3,-0.856632,11.85,-0.5382786,-0.856632,11.35,-0.5382786,2.5,11.35,-0.8,2.5,9.75,-0.8,2.5,11.35,-0.5382786,2.5,8.349999,-0.5382786,2.5,6.35,-2.5,2.5,9.75,-2.5,2.5,6.35,2.5,2.5,8.349999,2.5,3,11.85,-3,3,9.75,-3,3,11.85,-0.8,3,9.75,-0.8,3,8.349999,-0.5382786,2.5,8.349999,2.5,3,8.349999,3,-0.856632,8.349999,3,-0.856632,8.349999,2.5,2.5,8.349999,-0.5382786,-0.825,5.85,0.825,-2.5,6.35,0.825,-3,5.85,0.825,-3,8.013605,0.825,-2.5,8.013605,0.825,-0.825,6.35,0.825,3,8.349999,3,-0.856632,8.349999,3,3,11.85,3,-0.856632,11.85,3,3,11.85,-0.5382786,3,8.349999,-0.5382786,3,11.85,3,3,8.349999,3,0.825,9.75,-3,0.825,11.85,-3,0.825,9.75,-2.5,0.825,11.35,-2.5,0.825,11.85,-0.8,0.825,11.35,-0.8,0.5534229,5.85,-3,0.45,5.85,0.45,0.5534229,5.85,0.553508,-3,5.85,0.553508,-0.45,5.85,0.45,-0.45,5.85,-0.45,0.45,5.85,-0.45,-3,5.85,-3,0.5534229,9.4,-3,0.5534229,5.85,-3,0.5534229,9.4,-2.5,0.5534229,6.35,-2.5,0.5534229,5.85,0.553508,0.5534229,6.35,0.553508,-0.825,5.85,3,-3,5.85,3,-0.825,8.013605,3,-3,8.013605,3,0.825,9.75,-3,3,9.75,-3,0.825,11.85,-3,3,11.85,-3,-0.825,5.85,3,-0.825,5.85,0.825,-3,5.85,3,-3,5.85,0.825,3,9.75,-0.8,2.5,9.75,-0.8,3,11.85,-0.8,2.5,11.35,-0.8,0.825,11.35,-0.8,0.825,11.85,-0.8,3,11.85,-0.5382786,3,11.85,3,-0.856632,11.85,-0.5382786,-0.856632,11.85,3,-2.5,8.013605,0.825,-2.5,8.013605,2.5,-3,8.013605,0.825,-3,8.013605,3,-0.825,8.013605,3,-0.825,8.013605,2.5,-0.825,8.013605,2.5,-0.825,6.35,2.5,-0.825,8.013605,3,-0.825,5.85,3,-0.825,5.85,0.825,-0.825,6.35,0.825,0.5534229,5.85,0.553508,-3,5.85,0.553508,0.5534229,6.35,0.553508,-2.5,6.35,0.553508,-3,9.4,0.553508,-2.5,9.4,0.553508,-2.5,9.4,-2.5,0.5534229,9.4,-2.5,-2.5,11.35,-2.5,0.825,9.75,-2.5,0.825,11.35,-2.5,2.5,9.75,-2.5,2.5,6.35,-2.5,0.5534229,6.35,-2.5,2.5,6.35,2.5,-0.825,6.35,2.5,2.5,8.349999,2.5,-0.825,8.013605,2.5,-2.5,8.013605,2.5,-0.856632,8.349999,2.5,-2.5,11.35,2.5,-0.856632,11.35,2.5,-3,5.85,-3,-3,9.4,-3,-3,5.85,0.553508,-3,9.4,0.553508,0.5534229,9.4,-3,0.5534229,9.4,-2.5,-3,9.4,-3,-2.5,9.4,-2.5,-2.5,9.4,0.553508,-3,9.4,0.553508,0.825,11.35,-2.5,0.825,11.35,-0.8,-2.5,11.35,-2.5,-0.856632,11.35,-0.5382786,-0.856632,11.35,2.5,-2.5,11.35,2.5,2.5,11.35,-0.5382786,2.5,11.35,-0.8 + } + PolygonVertexIndex: *396 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,42,43,-42,43,44,-42,45,41,-45,46,48,-48,49,47,-49,50,47,-50,51,47,-51,52,51,-51,47,53,-47,54,56,-56,57,55,-57,58,55,-58,59,58,-58,60,62,-62,63,61,-63,64,66,-66,66,67,-66,67,68,-66,68,69,-66,70,65,-70,71,68,-68,72,74,-74,75,73,-75,76,78,-78,78,79,-78,79,80,-78,81,77,-81,82,84,-84,84,85,-84,85,86,-84,87,83,-87,88,86,-86,89,88,-86,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,95,-98,95,99,-95,100,102,-102,103,101,-103,104,101,-104,101,105,-101,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,115,-118,119,118,-118,120,122,-122,123,121,-123,124,121,-124,125,124,-124,121,126,-121,127,120,-127,125,127,-127,123,127,-126,128,130,-130,131,129,-131,132,129,-132,133,132,-132,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,149,-149,151,150,-149,152,154,-154,155,153,-155,156,158,-158,158,159,-158,159,160,-158,161,157,-161,162,164,-164,164,165,-164,165,166,-164,167,163,-167,168,170,-170,171,169,-171,172,169,-172,173,172,-172,174,176,-176,177,175,-177,178,177,-177,177,179,-176,179,180,-176,181,175,-181,182,184,-184,185,183,-185,186,185,-185,187,186,-185,188,186,-188,189,188,-188,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,197,-197,199,198,-197,200,202,-202,203,201,-203,204,203,-203,205,204,-203,203,206,-202,207,201,-207 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1188 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *416 { + a: 1.771654,23.0315,1.771654,12.20472,-1.771654,23.0315,-1.771654,12.20472,2.746063,2.746063,2.746063,-2.746063,-2.746063,2.746063,-2.746063,-2.746063,1.771654,12.20472,-1.771654,12.20472,1.771654,23.0315,-1.771654,23.0315,2.746063,-0.2185467,-2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.02501,1.771654,12.20472,-1.771654,12.20472,1.771654,23.0315,-1.771654,23.0315,2.746063,-0.2185467,-2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.02501,-2.746063,-0.2185467,-1.771654,12.02501,2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.20472,-1.771654,23.0315,1.771654,12.20472,1.771654,23.0315,2.746063,-0.2185467,-2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.02501,3.248032,23.0315,3.248032,31.54963,11.81102,23.0315,11.81102,31.54963,3.372567,44.68504,-9.84252,44.68504,3.372567,46.65355,-11.81102,46.65355,-11.81102,32.87402,-9.84252,32.87402,9.84252,-9.84252,2.17883,2.179166,9.84252,9.84252,-3.248032,9.84252,-3.248032,3.248032,-9.84252,2.179166,-9.84252,3.248032,2.17883,-9.84252,11.81102,-3.149606,11.81102,-11.81102,9.84252,-3.149606,9.84252,-9.84252,3.248032,-11.81102,3.248032,-9.84252,11.81102,23.0315,-2.17883,23.0315,11.81102,37.00787,-2.17883,37.00787,2.179166,25,2.179166,37.00787,3.248032,25,3.248032,31.54963,9.84252,44.68504,-9.84252,44.68504,-9.84252,37.00787,9.84252,31.54963,-11.81102,-11.81102,-11.81102,-3.149606,-3.248032,-11.81102,-3.248032,-3.149606,9.84252,32.87402,9.84252,44.68504,11.81102,32.87402,11.81102,46.65355,-2.119207,46.65355,-2.119207,44.68504,3.149606,44.68504,3.149606,38.38583,2.119207,44.68504,2.119207,32.87402,9.84252,25,9.84252,38.38583,-9.84252,25,-9.84252,32.87402,11.81102,46.65355,11.81102,38.38583,3.149606,46.65355,3.149606,38.38583,11.81102,-2.119207,9.84252,9.84252,11.81102,11.81102,-3.372567,11.81102,-3.372567,9.84252,9.84252,-2.119207,3.248032,23.0315,9.84252,25,11.81102,23.0315,11.81102,31.54963,9.84252,31.54963,3.248032,25,11.81102,32.87402,-3.372567,32.87402,11.81102,46.65355,-3.372567,46.65355,2.119207,46.65355,2.119207,32.87402,-11.81102,46.65355,-11.81102,32.87402,-11.81102,38.38583,-11.81102,46.65355,-9.84252,38.38583,-9.84252,44.68504,-3.149606,46.65355,-3.149606,44.68504,2.17883,-11.81102,1.771654,1.771654,2.17883,2.179166,-11.81102,2.179166,-1.771654,1.771654,-1.771654,-1.771654,1.771654,-1.771654,-11.81102,-11.81102,11.81102,37.00787,11.81102,23.0315,9.84252,37.00787,9.84252,25,-2.179166,23.0315,-2.179166,25,-3.248032,23.0315,-11.81102,23.0315,-3.248032,31.54963,-11.81102,31.54963,-3.248032,38.38583,-11.81102,38.38583,-3.248032,46.65355,-11.81102,46.65355,-3.248032,11.81102,-3.248032,3.248032,-11.81102,11.81102,-11.81102,3.248032,11.81102,38.38583,9.84252,38.38583,11.81102,46.65355,9.84252,44.68504,3.248032,44.68504,3.248032,46.65355,-11.81102,-2.119207,-11.81102,11.81102,3.372567,-2.119207,3.372567,11.81102,9.84252,3.248032,9.84252,9.84252,11.81102,3.248032,11.81102,11.81102,3.248032,11.81102,3.248032,9.84252,-9.84252,31.54963,-9.84252,25,-11.81102,31.54963,-11.81102,23.0315,-3.248032,23.0315,-3.248032,25,2.17883,23.0315,-11.81102,23.0315,2.17883,25,-9.84252,25,-11.81102,37.00787,-9.84252,37.00787,9.84252,37.00787,-2.17883,37.00787,9.84252,44.68504,-3.248032,38.38583,-3.248032,44.68504,-9.84252,38.38583,-9.84252,25,-2.17883,25,9.84252,25,-3.248032,25,9.84252,32.87402,-3.248032,31.54963,-9.84252,31.54963,-3.372567,32.87402,-9.84252,44.68504,-3.372567,44.68504,-11.81102,23.0315,-11.81102,37.00787,2.179166,23.0315,2.179166,37.00787,-2.17883,-11.81102,-2.17883,-9.84252,11.81102,-11.81102,9.84252,-9.84252,9.84252,2.179166,11.81102,2.179166,-3.248032,-9.84252,-3.248032,-3.149606,9.84252,-9.84252,3.372567,-2.119207,3.372567,9.84252,9.84252,9.84252,-9.84252,-2.119207,-9.84252,-3.149606 + } + UVIndex: *396 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,42,43,41,43,44,41,45,41,44,46,48,47,49,47,48,50,47,49,51,47,50,52,51,50,47,53,46,54,56,55,57,55,56,58,55,57,59,58,57,60,62,61,63,61,62,64,66,65,66,67,65,67,68,65,68,69,65,70,65,69,71,68,67,72,74,73,75,73,74,76,78,77,78,79,77,79,80,77,81,77,80,82,84,83,84,85,83,85,86,83,87,83,86,88,86,85,89,88,85,90,92,91,93,91,92,94,96,95,97,95,96,98,95,97,95,99,94,100,102,101,103,101,102,104,101,103,101,105,100,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,115,117,119,118,117,120,122,121,123,121,122,124,121,123,125,124,123,121,126,120,127,120,126,125,127,126,123,127,125,128,130,129,131,129,130,132,129,131,133,132,131,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,149,148,151,150,148,152,154,153,155,153,154,156,158,157,158,159,157,159,160,157,161,157,160,162,164,163,164,165,163,165,166,163,167,163,166,168,170,169,171,169,170,172,169,171,173,172,171,174,176,175,177,175,176,178,177,176,177,179,175,179,180,175,181,175,180,182,184,183,185,183,184,186,185,184,187,186,184,188,186,187,189,188,187,190,192,191,193,191,192,194,196,195,197,195,196,198,197,196,199,198,196,200,202,201,203,201,202,204,203,202,205,204,202,203,206,201,207,201,206 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *132 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_blocks_dark, Model::RootNode + C: "OO",4746263108906095637,0 + + ;Geometry::, Model::Mesh tree_blocks_dark + C: "OO",5091581818064821176,4746263108906095637 + + ;Material::woodBarkDark, Model::Mesh tree_blocks_dark + C: "OO",3048,4746263108906095637 + + ;Material::leafsDark, Model::Mesh tree_blocks_dark + C: "OO",3026,4746263108906095637 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_dark.fbx.import new file mode 100644 index 0000000..5fc8622 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://3uv3v2vm5dq4" +path="res://.godot/imported/tree_blocks_dark.fbx-8563d42cd86a3d2e100947777c48a266.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_dark.fbx" +dest_files=["res://.godot/imported/tree_blocks_dark.fbx-8563d42cd86a3d2e100947777c48a266.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_fall.fbx new file mode 100644 index 0000000..4f6f5a8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 36 + Millisecond: 390 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_blocks_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_blocks_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5026213575326140556, "Model::tree_blocks_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5213832394870697133, "Geometry::", "Mesh" { + Vertices: *1248 { + a: 0.45,5.85,-0.45,0.45,3.1,-0.45,0.45,5.85,0.45,0.45,3.1,0.45,0.45,5.85,0.45,0.45,3.1,-0.45,0.45,5.85,-0.45,0.45,3.1,0.45,-3,5.85,3,-3,8.013605,0.825,-3,5.85,0.825,-3,8.013605,3,-0.856632,11.85,-0.5382786,2.5,11.35,-0.5382786,-0.856632,11.35,-0.5382786,3,11.85,-0.5382786,3,8.349999,-0.5382786,2.5,8.349999,-0.5382786,0.6975,0,0.6975,0.6975,0,-0.6975,-0.6975,0,0.6975,-0.6975,0,-0.6975,-0.6975,0,0.6975,0.6975,0,-0.6975,0.6975,0,0.6975,-0.6975,0,-0.6975,2.5,6.35,2.5,0.5534229,6.35,0.553508,2.5,6.35,-2.5,-0.825,6.35,2.5,-0.825,6.35,0.825,-2.5,6.35,0.553508,-2.5,6.35,0.825,0.5534229,6.35,-2.5,2.5,9.75,-0.8,3,9.75,-3,3,9.75,-0.8,2.5,9.75,-2.5,0.825,9.75,-3,0.825,9.75,-2.5,-3,9.4,-3,0.5534229,5.85,-3,-3,5.85,-3,0.5534229,9.4,-3,-0.45,3.1,-0.45,0.45,3.1,-0.45,-0.45,5.85,-0.45,0.45,5.85,-0.45,-0.45,5.85,-0.45,0.45,3.1,-0.45,-0.45,3.1,-0.45,0.45,5.85,-0.45,-2.5,6.35,0.825,-2.5,9.4,0.553508,-2.5,6.35,0.553508,-2.5,8.013605,0.825,-2.5,11.35,2.5,-2.5,11.35,-2.5,-2.5,9.4,-2.5,-2.5,8.013605,2.5,0.825,11.85,-3,3,11.85,-0.8,3,11.85,-3,0.825,11.85,-0.8,-0.856632,8.349999,3,-0.856632,11.35,2.5,-0.856632,8.349999,2.5,-0.856632,11.85,3,-0.856632,11.85,-0.5382786,-0.856632,11.35,-0.5382786,2.5,11.35,-0.5382786,2.5,9.75,-0.8,2.5,11.35,-0.8,2.5,8.349999,-0.5382786,2.5,6.35,-2.5,2.5,9.75,-2.5,2.5,6.35,2.5,2.5,8.349999,2.5,0.6975,0,0.6975,-0.6975,0,0.6975,0.45,3.1,0.45,-0.45,3.1,0.45,0.45,3.1,0.45,-0.6975,0,0.6975,0.6975,0,0.6975,-0.45,3.1,0.45,3,11.85,-0.8,3,9.75,-3,3,11.85,-3,3,9.75,-0.8,3,8.349999,3,2.5,8.349999,2.5,3,8.349999,-0.5382786,-0.856632,8.349999,3,-0.856632,8.349999,2.5,2.5,8.349999,-0.5382786,-3,5.85,0.825,-2.5,6.35,0.825,-0.825,5.85,0.825,-3,8.013605,0.825,-2.5,8.013605,0.825,-0.825,6.35,0.825,0.45,3.1,0.45,-0.45,3.1,0.45,0.45,5.85,0.45,-0.45,5.85,0.45,0.45,5.85,0.45,-0.45,3.1,0.45,0.45,3.1,0.45,-0.45,5.85,0.45,-0.6975,0,-0.6975,0.6975,0,-0.6975,-0.45,3.1,-0.45,0.45,3.1,-0.45,-0.45,3.1,-0.45,0.6975,0,-0.6975,-0.6975,0,-0.6975,0.45,3.1,-0.45,-0.6975,0,-0.6975,-0.45,3.1,-0.45,-0.6975,0,0.6975,-0.45,3.1,0.45,-0.6975,0,0.6975,-0.45,3.1,-0.45,-0.6975,0,-0.6975,-0.45,3.1,0.45,3,11.85,3,-0.856632,8.349999,3,3,8.349999,3,-0.856632,11.85,3,3,11.85,3,3,8.349999,-0.5382786,3,11.85,-0.5382786,3,8.349999,3,0.825,9.75,-2.5,0.825,11.85,-3,0.825,9.75,-3,0.825,11.35,-2.5,0.825,11.85,-0.8,0.825,11.35,-0.8,0.5534229,5.85,0.553508,0.45,5.85,0.45,0.5534229,5.85,-3,-3,5.85,0.553508,-0.45,5.85,0.45,-0.45,5.85,-0.45,0.45,5.85,-0.45,-3,5.85,-3,0.5534229,9.4,-2.5,0.5534229,5.85,-3,0.5534229,9.4,-3,0.5534229,6.35,-2.5,0.5534229,5.85,0.553508,0.5534229,6.35,0.553508,-0.45,3.1,-0.45,-0.45,5.85,-0.45,-0.45,3.1,0.45,-0.45,5.85,0.45,-0.45,3.1,0.45,-0.45,5.85,-0.45,-0.45,3.1,-0.45,-0.45,5.85,0.45,-0.825,8.013605,3,-3,5.85,3,-0.825,5.85,3,-3,8.013605,3,0.825,11.85,-3,3,9.75,-3,0.825,9.75,-3,3,11.85,-3,-3,5.85,3,-0.825,5.85,0.825,-0.825,5.85,3,-3,5.85,0.825,0.6975,0,-0.6975,0.6975,0,0.6975,0.45,3.1,-0.45,0.45,3.1,0.45,0.45,3.1,-0.45,0.6975,0,0.6975,0.6975,0,-0.6975,0.45,3.1,0.45,3,11.85,-0.8,2.5,9.75,-0.8,3,9.75,-0.8,2.5,11.35,-0.8,0.825,11.35,-0.8,0.825,11.85,-0.8,-0.856632,11.85,-0.5382786,3,11.85,3,3,11.85,-0.5382786,-0.856632,11.85,3,-3,8.013605,0.825,-2.5,8.013605,2.5,-2.5,8.013605,0.825,-3,8.013605,3,-0.825,8.013605,3,-0.825,8.013605,2.5,-0.825,8.013605,3,-0.825,6.35,2.5,-0.825,8.013605,2.5,-0.825,5.85,3,-0.825,5.85,0.825,-0.825,6.35,0.825,0.5534229,6.35,0.553508,-3,5.85,0.553508,0.5534229,5.85,0.553508,-2.5,6.35,0.553508,-3,9.4,0.553508,-2.5,9.4,0.553508,-2.5,11.35,-2.5,0.5534229,9.4,-2.5,-2.5,9.4,-2.5,0.825,9.75,-2.5,0.825,11.35,-2.5,2.5,9.75,-2.5,2.5,6.35,-2.5,0.5534229,6.35,-2.5,2.5,8.349999,2.5,-0.825,6.35,2.5,2.5,6.35,2.5,-0.825,8.013605,2.5,-2.5,8.013605,2.5,-0.856632,8.349999,2.5,-2.5,11.35,2.5,-0.856632,11.35,2.5,-3,5.85,0.553508,-3,9.4,-3,-3,5.85,-3,-3,9.4,0.553508,-3,9.4,-3,0.5534229,9.4,-2.5,0.5534229,9.4,-3,-2.5,9.4,-2.5,-2.5,9.4,0.553508,-3,9.4,0.553508,-2.5,11.35,-2.5,0.825,11.35,-0.8,0.825,11.35,-2.5,-0.856632,11.35,-0.5382786,-0.856632,11.35,2.5,-2.5,11.35,2.5,2.5,11.35,-0.5382786,2.5,11.35,-0.8,-3,5.85,0.825,-3,8.013605,0.825,-3,5.85,3,-3,8.013605,3,-0.856632,11.35,-0.5382786,2.5,11.35,-0.5382786,-0.856632,11.85,-0.5382786,3,11.85,-0.5382786,3,8.349999,-0.5382786,2.5,8.349999,-0.5382786,2.5,6.35,-2.5,0.5534229,6.35,0.553508,2.5,6.35,2.5,-0.825,6.35,2.5,-0.825,6.35,0.825,-2.5,6.35,0.553508,-2.5,6.35,0.825,0.5534229,6.35,-2.5,3,9.75,-0.8,3,9.75,-3,2.5,9.75,-0.8,2.5,9.75,-2.5,0.825,9.75,-3,0.825,9.75,-2.5,-3,5.85,-3,0.5534229,5.85,-3,-3,9.4,-3,0.5534229,9.4,-3,-2.5,6.35,0.553508,-2.5,9.4,0.553508,-2.5,6.35,0.825,-2.5,8.013605,0.825,-2.5,11.35,2.5,-2.5,11.35,-2.5,-2.5,9.4,-2.5,-2.5,8.013605,2.5,3,11.85,-3,3,11.85,-0.8,0.825,11.85,-3,0.825,11.85,-0.8,-0.856632,8.349999,2.5,-0.856632,11.35,2.5,-0.856632,8.349999,3,-0.856632,11.85,3,-0.856632,11.85,-0.5382786,-0.856632,11.35,-0.5382786,2.5,11.35,-0.8,2.5,9.75,-0.8,2.5,11.35,-0.5382786,2.5,8.349999,-0.5382786,2.5,6.35,-2.5,2.5,9.75,-2.5,2.5,6.35,2.5,2.5,8.349999,2.5,3,11.85,-3,3,9.75,-3,3,11.85,-0.8,3,9.75,-0.8,3,8.349999,-0.5382786,2.5,8.349999,2.5,3,8.349999,3,-0.856632,8.349999,3,-0.856632,8.349999,2.5,2.5,8.349999,-0.5382786,-0.825,5.85,0.825,-2.5,6.35,0.825,-3,5.85,0.825,-3,8.013605,0.825,-2.5,8.013605,0.825,-0.825,6.35,0.825,3,8.349999,3,-0.856632,8.349999,3,3,11.85,3,-0.856632,11.85,3,3,11.85,-0.5382786,3,8.349999,-0.5382786,3,11.85,3,3,8.349999,3,0.825,9.75,-3,0.825,11.85,-3,0.825,9.75,-2.5,0.825,11.35,-2.5,0.825,11.85,-0.8,0.825,11.35,-0.8,0.5534229,5.85,-3,0.45,5.85,0.45,0.5534229,5.85,0.553508,-3,5.85,0.553508,-0.45,5.85,0.45,-0.45,5.85,-0.45,0.45,5.85,-0.45,-3,5.85,-3,0.5534229,9.4,-3,0.5534229,5.85,-3,0.5534229,9.4,-2.5,0.5534229,6.35,-2.5,0.5534229,5.85,0.553508,0.5534229,6.35,0.553508,-0.825,5.85,3,-3,5.85,3,-0.825,8.013605,3,-3,8.013605,3,0.825,9.75,-3,3,9.75,-3,0.825,11.85,-3,3,11.85,-3,-0.825,5.85,3,-0.825,5.85,0.825,-3,5.85,3,-3,5.85,0.825,3,9.75,-0.8,2.5,9.75,-0.8,3,11.85,-0.8,2.5,11.35,-0.8,0.825,11.35,-0.8,0.825,11.85,-0.8,3,11.85,-0.5382786,3,11.85,3,-0.856632,11.85,-0.5382786,-0.856632,11.85,3,-2.5,8.013605,0.825,-2.5,8.013605,2.5,-3,8.013605,0.825,-3,8.013605,3,-0.825,8.013605,3,-0.825,8.013605,2.5,-0.825,8.013605,2.5,-0.825,6.35,2.5,-0.825,8.013605,3,-0.825,5.85,3,-0.825,5.85,0.825,-0.825,6.35,0.825,0.5534229,5.85,0.553508,-3,5.85,0.553508,0.5534229,6.35,0.553508,-2.5,6.35,0.553508,-3,9.4,0.553508,-2.5,9.4,0.553508,-2.5,9.4,-2.5,0.5534229,9.4,-2.5,-2.5,11.35,-2.5,0.825,9.75,-2.5,0.825,11.35,-2.5,2.5,9.75,-2.5,2.5,6.35,-2.5,0.5534229,6.35,-2.5,2.5,6.35,2.5,-0.825,6.35,2.5,2.5,8.349999,2.5,-0.825,8.013605,2.5,-2.5,8.013605,2.5,-0.856632,8.349999,2.5,-2.5,11.35,2.5,-0.856632,11.35,2.5,-3,5.85,-3,-3,9.4,-3,-3,5.85,0.553508,-3,9.4,0.553508,0.5534229,9.4,-3,0.5534229,9.4,-2.5,-3,9.4,-3,-2.5,9.4,-2.5,-2.5,9.4,0.553508,-3,9.4,0.553508,0.825,11.35,-2.5,0.825,11.35,-0.8,-2.5,11.35,-2.5,-0.856632,11.35,-0.5382786,-0.856632,11.35,2.5,-2.5,11.35,2.5,2.5,11.35,-0.5382786,2.5,11.35,-0.8 + } + PolygonVertexIndex: *792 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,9,11,-9,12,14,-14,15,12,-14,16,15,-14,13,17,-17,18,20,-20,21,19,-21,22,24,-24,23,25,-23,26,28,-28,27,29,-27,27,30,-30,27,31,-31,31,32,-31,33,27,-29,34,36,-36,35,37,-35,35,38,-38,38,39,-38,40,42,-42,41,43,-41,44,46,-46,47,45,-47,48,50,-50,49,51,-49,52,54,-54,55,52,-54,56,55,-54,57,56,-54,53,58,-58,56,59,-56,60,62,-62,61,63,-61,64,66,-66,67,64,-66,68,67,-66,65,69,-69,70,72,-72,73,70,-72,74,73,-72,71,75,-75,74,76,-74,76,77,-74,78,80,-80,81,79,-81,82,84,-84,83,85,-83,86,88,-88,87,89,-87,90,92,-92,91,93,-91,91,94,-94,95,91,-93,96,98,-98,97,99,-97,97,100,-100,101,97,-99,102,104,-104,105,103,-105,106,108,-108,107,109,-107,110,112,-112,113,111,-113,114,116,-116,115,117,-115,118,120,-120,121,119,-121,122,124,-124,123,125,-123,126,128,-128,127,129,-127,130,132,-132,131,133,-131,134,136,-136,135,137,-135,135,138,-138,138,139,-138,140,142,-142,141,143,-141,141,144,-144,144,145,-144,146,141,-143,142,147,-147,147,145,-147,147,143,-146,148,150,-150,149,151,-149,149,152,-152,152,153,-152,154,156,-156,157,155,-157,158,160,-160,159,161,-159,162,164,-164,163,165,-163,166,168,-168,167,169,-167,170,172,-172,171,173,-171,174,176,-176,177,175,-177,178,180,-180,179,181,-179,182,184,-184,183,185,-183,185,186,-183,186,187,-183,188,190,-190,189,191,-189,192,194,-194,195,192,-194,196,195,-194,193,197,-197,198,200,-200,201,198,-200,202,201,-200,199,203,-203,204,206,-206,205,207,-205,205,208,-208,208,209,-208,210,212,-212,211,213,-211,213,214,-211,215,213,-212,216,215,-212,211,217,-217,218,220,-220,219,221,-219,221,222,-219,222,223,-219,222,224,-224,224,225,-224,226,228,-228,227,229,-227,230,232,-232,231,233,-231,233,234,-231,234,235,-231,236,238,-238,237,239,-237,239,240,-237,240,241,-237,242,239,-238,237,243,-243,244,246,-246,247,245,-247,248,250,-250,250,251,-250,251,252,-250,253,249,-253,254,256,-256,257,255,-257,258,255,-258,259,255,-259,260,259,-259,255,261,-255,262,264,-264,265,263,-265,266,263,-266,267,266,-266,268,270,-270,271,269,-271,272,274,-274,274,275,-274,275,276,-274,276,277,-274,278,273,-278,279,276,-276,280,282,-282,283,281,-283,284,286,-286,286,287,-286,287,288,-286,289,285,-289,290,292,-292,292,293,-292,293,294,-292,295,291,-295,296,294,-294,297,296,-294,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,303,-306,303,307,-303,308,310,-310,311,309,-311,312,309,-312,309,313,-309,314,316,-316,317,315,-317,318,320,-320,321,319,-321,322,324,-324,325,323,-325,326,323,-326,327,326,-326,328,330,-330,331,329,-331,332,329,-332,333,332,-332,329,334,-329,335,328,-335,333,335,-335,331,335,-334,336,338,-338,339,337,-339,340,337,-340,341,340,-340,342,344,-344,345,343,-345,346,348,-348,349,347,-349,350,352,-352,353,351,-353,354,356,-356,357,355,-357,358,357,-357,359,358,-357,360,362,-362,363,361,-363,364,366,-366,366,367,-366,367,368,-366,369,365,-369,370,372,-372,372,373,-372,373,374,-372,375,371,-375,376,378,-378,379,377,-379,380,377,-380,381,380,-380,382,384,-384,385,383,-385,386,385,-385,385,387,-384,387,388,-384,389,383,-389,390,392,-392,393,391,-393,394,393,-393,395,394,-393,396,394,-396,397,396,-396,398,400,-400,401,399,-401,402,404,-404,405,403,-405,406,405,-405,407,406,-405,408,410,-410,411,409,-411,412,411,-411,413,412,-411,411,414,-410,415,409,-415 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2376 { + a: 1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,0.07958546,0.996828,0,-0.07958546,-0.996828,0,-0.07958546,-0.996828,0,-0.07958546,-0.996828,0,-0.07958546,-0.996828,0,-0.07958546,-0.996828,0,-0.07958546,-0.996828,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,0.07958546,-0.996828,0,-0.07958546,0.996828,0,-0.07958546,0.996828,0,-0.07958546,0.996828,0,-0.07958546,0.996828,0,-0.07958546,0.996828,0,-0.07958546,0.996828,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,-0.996828,0.07958546,0,0.996828,-0.07958546,0,0.996828,-0.07958546,0,0.996828,-0.07958546,0,0.996828,-0.07958546,0,0.996828,-0.07958546,0,0.996828,-0.07958546,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,0.996828,0.07958546,0,-0.996828,-0.07958546,0,-0.996828,-0.07958546,0,-0.996828,-0.07958546,0,-0.996828,-0.07958546,0,-0.996828,-0.07958546,0,-0.996828,-0.07958546,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *832 { + a: 1.771654,23.0315,1.771654,12.20472,-1.771654,23.0315,-1.771654,12.20472,-1.771654,23.0315,1.771654,12.20472,1.771654,23.0315,-1.771654,12.20472,11.81102,23.0315,3.248032,31.54963,3.248032,23.0315,11.81102,31.54963,3.372567,46.65355,-9.84252,44.68504,3.372567,44.68504,-11.81102,46.65355,-11.81102,32.87402,-9.84252,32.87402,2.746063,2.746063,2.746063,-2.746063,-2.746063,2.746063,-2.746063,-2.746063,-2.746063,2.746063,2.746063,-2.746063,2.746063,2.746063,-2.746063,-2.746063,9.84252,9.84252,2.17883,2.179166,9.84252,-9.84252,-3.248032,9.84252,-3.248032,3.248032,-9.84252,2.179166,-9.84252,3.248032,2.17883,-9.84252,9.84252,-3.149606,11.81102,-11.81102,11.81102,-3.149606,9.84252,-9.84252,3.248032,-11.81102,3.248032,-9.84252,11.81102,37.00787,-2.17883,23.0315,11.81102,23.0315,-2.17883,37.00787,1.771654,12.20472,-1.771654,12.20472,1.771654,23.0315,-1.771654,23.0315,1.771654,23.0315,-1.771654,12.20472,1.771654,12.20472,-1.771654,23.0315,3.248032,25,2.179166,37.00787,2.179166,25,3.248032,31.54963,9.84252,44.68504,-9.84252,44.68504,-9.84252,37.00787,9.84252,31.54963,-3.248032,-11.81102,-11.81102,-3.149606,-11.81102,-11.81102,-3.248032,-3.149606,11.81102,32.87402,9.84252,44.68504,9.84252,32.87402,11.81102,46.65355,-2.119207,46.65355,-2.119207,44.68504,2.119207,44.68504,3.149606,38.38583,3.149606,44.68504,2.119207,32.87402,9.84252,25,9.84252,38.38583,-9.84252,25,-9.84252,32.87402,2.746063,-0.2185467,-2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.02501,1.771654,12.02501,-2.746063,-0.2185467,2.746063,-0.2185467,-1.771654,12.02501,3.149606,46.65355,11.81102,38.38583,11.81102,46.65355,3.149606,38.38583,11.81102,11.81102,9.84252,9.84252,11.81102,-2.119207,-3.372567,11.81102,-3.372567,9.84252,9.84252,-2.119207,11.81102,23.0315,9.84252,25,3.248032,23.0315,11.81102,31.54963,9.84252,31.54963,3.248032,25,1.771654,12.20472,-1.771654,12.20472,1.771654,23.0315,-1.771654,23.0315,1.771654,23.0315,-1.771654,12.20472,1.771654,12.20472,-1.771654,23.0315,2.746063,-0.2185467,-2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.02501,1.771654,12.02501,-2.746063,-0.2185467,2.746063,-0.2185467,-1.771654,12.02501,-2.746063,-0.2185467,-1.771654,12.02501,2.746063,-0.2185467,1.771654,12.02501,2.746063,-0.2185467,-1.771654,12.02501,-2.746063,-0.2185467,1.771654,12.02501,11.81102,46.65355,-3.372567,32.87402,11.81102,32.87402,-3.372567,46.65355,-11.81102,46.65355,2.119207,32.87402,2.119207,46.65355,-11.81102,32.87402,-9.84252,38.38583,-11.81102,46.65355,-11.81102,38.38583,-9.84252,44.68504,-3.149606,46.65355,-3.149606,44.68504,2.17883,2.179166,1.771654,1.771654,2.17883,-11.81102,-11.81102,2.179166,-1.771654,1.771654,-1.771654,-1.771654,1.771654,-1.771654,-11.81102,-11.81102,9.84252,37.00787,11.81102,23.0315,11.81102,37.00787,9.84252,25,-2.179166,23.0315,-2.179166,25,-1.771654,12.20472,-1.771654,23.0315,1.771654,12.20472,1.771654,23.0315,1.771654,12.20472,-1.771654,23.0315,-1.771654,12.20472,1.771654,23.0315,-3.248032,31.54963,-11.81102,23.0315,-3.248032,23.0315,-11.81102,31.54963,-3.248032,46.65355,-11.81102,38.38583,-3.248032,38.38583,-11.81102,46.65355,-11.81102,11.81102,-3.248032,3.248032,-3.248032,11.81102,-11.81102,3.248032,2.746063,-0.2185467,-2.746063,-0.2185467,1.771654,12.02501,-1.771654,12.02501,1.771654,12.02501,-2.746063,-0.2185467,2.746063,-0.2185467,-1.771654,12.02501,11.81102,46.65355,9.84252,38.38583,11.81102,38.38583,9.84252,44.68504,3.248032,44.68504,3.248032,46.65355,3.372567,-2.119207,-11.81102,11.81102,-11.81102,-2.119207,3.372567,11.81102,11.81102,3.248032,9.84252,9.84252,9.84252,3.248032,11.81102,11.81102,3.248032,11.81102,3.248032,9.84252,-11.81102,31.54963,-9.84252,25,-9.84252,31.54963,-11.81102,23.0315,-3.248032,23.0315,-3.248032,25,2.17883,25,-11.81102,23.0315,2.17883,23.0315,-9.84252,25,-11.81102,37.00787,-9.84252,37.00787,9.84252,44.68504,-2.17883,37.00787,9.84252,37.00787,-3.248032,38.38583,-3.248032,44.68504,-9.84252,38.38583,-9.84252,25,-2.17883,25,9.84252,32.87402,-3.248032,25,9.84252,25,-3.248032,31.54963,-9.84252,31.54963,-3.372567,32.87402,-9.84252,44.68504,-3.372567,44.68504,2.179166,23.0315,-11.81102,37.00787,-11.81102,23.0315,2.179166,37.00787,11.81102,-11.81102,-2.17883,-9.84252,-2.17883,-11.81102,9.84252,-9.84252,9.84252,2.179166,11.81102,2.179166,9.84252,-9.84252,-3.248032,-3.149606,-3.248032,-9.84252,3.372567,-2.119207,3.372567,9.84252,9.84252,9.84252,-9.84252,-2.119207,-9.84252,-3.149606,3.248032,23.0315,3.248032,31.54963,11.81102,23.0315,11.81102,31.54963,3.372567,44.68504,-9.84252,44.68504,3.372567,46.65355,-11.81102,46.65355,-11.81102,32.87402,-9.84252,32.87402,9.84252,-9.84252,2.17883,2.179166,9.84252,9.84252,-3.248032,9.84252,-3.248032,3.248032,-9.84252,2.179166,-9.84252,3.248032,2.17883,-9.84252,11.81102,-3.149606,11.81102,-11.81102,9.84252,-3.149606,9.84252,-9.84252,3.248032,-11.81102,3.248032,-9.84252,11.81102,23.0315,-2.17883,23.0315,11.81102,37.00787,-2.17883,37.00787,2.179166,25,2.179166,37.00787,3.248032,25,3.248032,31.54963,9.84252,44.68504,-9.84252,44.68504,-9.84252,37.00787,9.84252,31.54963,-11.81102,-11.81102,-11.81102,-3.149606,-3.248032,-11.81102,-3.248032,-3.149606,9.84252,32.87402,9.84252,44.68504,11.81102,32.87402,11.81102,46.65355,-2.119207,46.65355,-2.119207,44.68504,3.149606,44.68504,3.149606,38.38583,2.119207,44.68504,2.119207,32.87402,9.84252,25,9.84252,38.38583,-9.84252,25,-9.84252,32.87402,11.81102,46.65355,11.81102,38.38583,3.149606,46.65355,3.149606,38.38583,11.81102,-2.119207,9.84252,9.84252,11.81102,11.81102,-3.372567,11.81102,-3.372567,9.84252,9.84252,-2.119207,3.248032,23.0315,9.84252,25,11.81102,23.0315,11.81102,31.54963,9.84252,31.54963,3.248032,25,11.81102,32.87402,-3.372567,32.87402,11.81102,46.65355,-3.372567,46.65355,2.119207,46.65355,2.119207,32.87402,-11.81102,46.65355,-11.81102,32.87402,-11.81102,38.38583,-11.81102,46.65355,-9.84252,38.38583,-9.84252,44.68504,-3.149606,46.65355,-3.149606,44.68504,2.17883,-11.81102,1.771654,1.771654,2.17883,2.179166,-11.81102,2.179166,-1.771654,1.771654,-1.771654,-1.771654,1.771654,-1.771654,-11.81102,-11.81102,11.81102,37.00787,11.81102,23.0315,9.84252,37.00787,9.84252,25,-2.179166,23.0315,-2.179166,25,-3.248032,23.0315,-11.81102,23.0315,-3.248032,31.54963,-11.81102,31.54963,-3.248032,38.38583,-11.81102,38.38583,-3.248032,46.65355,-11.81102,46.65355,-3.248032,11.81102,-3.248032,3.248032,-11.81102,11.81102,-11.81102,3.248032,11.81102,38.38583,9.84252,38.38583,11.81102,46.65355,9.84252,44.68504,3.248032,44.68504,3.248032,46.65355,-11.81102,-2.119207,-11.81102,11.81102,3.372567,-2.119207,3.372567,11.81102,9.84252,3.248032,9.84252,9.84252,11.81102,3.248032,11.81102,11.81102,3.248032,11.81102,3.248032,9.84252,-9.84252,31.54963,-9.84252,25,-11.81102,31.54963,-11.81102,23.0315,-3.248032,23.0315,-3.248032,25,2.17883,23.0315,-11.81102,23.0315,2.17883,25,-9.84252,25,-11.81102,37.00787,-9.84252,37.00787,9.84252,37.00787,-2.17883,37.00787,9.84252,44.68504,-3.248032,38.38583,-3.248032,44.68504,-9.84252,38.38583,-9.84252,25,-2.17883,25,9.84252,25,-3.248032,25,9.84252,32.87402,-3.248032,31.54963,-9.84252,31.54963,-3.372567,32.87402,-9.84252,44.68504,-3.372567,44.68504,-11.81102,23.0315,-11.81102,37.00787,2.179166,23.0315,2.179166,37.00787,-2.17883,-11.81102,-2.17883,-9.84252,11.81102,-11.81102,9.84252,-9.84252,9.84252,2.179166,11.81102,2.179166,-3.248032,-9.84252,-3.248032,-3.149606,9.84252,-9.84252,3.372567,-2.119207,3.372567,9.84252,9.84252,9.84252,-9.84252,-2.119207,-9.84252,-3.149606 + } + UVIndex: *792 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,9,11,8,12,14,13,15,12,13,16,15,13,13,17,16,18,20,19,21,19,20,22,24,23,23,25,22,26,28,27,27,29,26,27,30,29,27,31,30,31,32,30,33,27,28,34,36,35,35,37,34,35,38,37,38,39,37,40,42,41,41,43,40,44,46,45,47,45,46,48,50,49,49,51,48,52,54,53,55,52,53,56,55,53,57,56,53,53,58,57,56,59,55,60,62,61,61,63,60,64,66,65,67,64,65,68,67,65,65,69,68,70,72,71,73,70,71,74,73,71,71,75,74,74,76,73,76,77,73,78,80,79,81,79,80,82,84,83,83,85,82,86,88,87,87,89,86,90,92,91,91,93,90,91,94,93,95,91,92,96,98,97,97,99,96,97,100,99,101,97,98,102,104,103,105,103,104,106,108,107,107,109,106,110,112,111,113,111,112,114,116,115,115,117,114,118,120,119,121,119,120,122,124,123,123,125,122,126,128,127,127,129,126,130,132,131,131,133,130,134,136,135,135,137,134,135,138,137,138,139,137,140,142,141,141,143,140,141,144,143,144,145,143,146,141,142,142,147,146,147,145,146,147,143,145,148,150,149,149,151,148,149,152,151,152,153,151,154,156,155,157,155,156,158,160,159,159,161,158,162,164,163,163,165,162,166,168,167,167,169,166,170,172,171,171,173,170,174,176,175,177,175,176,178,180,179,179,181,178,182,184,183,183,185,182,185,186,182,186,187,182,188,190,189,189,191,188,192,194,193,195,192,193,196,195,193,193,197,196,198,200,199,201,198,199,202,201,199,199,203,202,204,206,205,205,207,204,205,208,207,208,209,207,210,212,211,211,213,210,213,214,210,215,213,211,216,215,211,211,217,216,218,220,219,219,221,218,221,222,218,222,223,218,222,224,223,224,225,223,226,228,227,227,229,226,230,232,231,231,233,230,233,234,230,234,235,230,236,238,237,237,239,236,239,240,236,240,241,236,242,239,237,237,243,242,244,246,245,247,245,246,248,250,249,250,251,249,251,252,249,253,249,252,254,256,255,257,255,256,258,255,257,259,255,258,260,259,258,255,261,254,262,264,263,265,263,264,266,263,265,267,266,265,268,270,269,271,269,270,272,274,273,274,275,273,275,276,273,276,277,273,278,273,277,279,276,275,280,282,281,283,281,282,284,286,285,286,287,285,287,288,285,289,285,288,290,292,291,292,293,291,293,294,291,295,291,294,296,294,293,297,296,293,298,300,299,301,299,300,302,304,303,305,303,304,306,303,305,303,307,302,308,310,309,311,309,310,312,309,311,309,313,308,314,316,315,317,315,316,318,320,319,321,319,320,322,324,323,325,323,324,326,323,325,327,326,325,328,330,329,331,329,330,332,329,331,333,332,331,329,334,328,335,328,334,333,335,334,331,335,333,336,338,337,339,337,338,340,337,339,341,340,339,342,344,343,345,343,344,346,348,347,349,347,348,350,352,351,353,351,352,354,356,355,357,355,356,358,357,356,359,358,356,360,362,361,363,361,362,364,366,365,366,367,365,367,368,365,369,365,368,370,372,371,372,373,371,373,374,371,375,371,374,376,378,377,379,377,378,380,377,379,381,380,379,382,384,383,385,383,384,386,385,384,385,387,383,387,388,383,389,383,388,390,392,391,393,391,392,394,393,392,395,394,392,396,394,395,397,396,395,398,400,399,401,399,400,402,404,403,405,403,404,406,405,404,407,406,404,408,410,409,411,409,410,412,411,410,413,412,410,411,414,409,415,409,414 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *264 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_blocks_fall, Model::RootNode + C: "OO",5026213575326140556,0 + + ;Geometry::, Model::Mesh tree_blocks_fall + C: "OO",5213832394870697133,5026213575326140556 + + ;Material::woodBirch, Model::Mesh tree_blocks_fall + C: "OO",3050,5026213575326140556 + + ;Material::leafsFall, Model::Mesh tree_blocks_fall + C: "OO",3028,5026213575326140556 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_fall.fbx.import new file mode 100644 index 0000000..65ed777 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dbk5fqb2nxop8" +path="res://.godot/imported/tree_blocks_fall.fbx-d5cbec1818a7d563ce72770ede18f396.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_blocks_fall.fbx" +dest_files=["res://.godot/imported/tree_blocks_fall.fbx-d5cbec1818a7d563ce72770ede18f396.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_cone.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone.fbx new file mode 100644 index 0000000..012574d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 36 + Millisecond: 489 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_cone.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_cone.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5574442027403617273, "Model::tree_cone", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4729915435453334658, "Geometry::", "Mesh" { + Vertices: *696 { + a: 0.750464,0,0.750464,-0.750464,0,0.750464,0.4878016,0.917696,0.4878016,-0.4878016,0.917696,0.4878016,-0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,-0.750464,0,0.750464,-0.4878016,0.917696,0.4878016,-0.750464,0,-0.750464,0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,0.4878016,0.917696,-0.4878016,0.750464,0,-0.750464,0.750464,0,0.750464,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,-0.949105,1.790125,-0.07591996,-0.9377697,2.047796,-0.07591996,-0.949105,1.790125,0.1304161,-0.9377697,2.047796,0.1304161,-0.4355784,2.10482,-0.139152,-0.4355784,2.10482,0.193648,-0.9377697,2.047796,-0.07591996,-0.9377697,2.047796,0.1304161,-0.4538611,1.689222,0.193648,-0.949105,1.790125,0.1304161,-0.4355784,2.10482,0.193648,-0.9377697,2.047796,0.1304161,0.750464,0,0.750464,0.750464,0,-0.750464,-0.750464,0,0.750464,-0.750464,0,-0.750464,-0.4538611,1.689222,-0.139152,-0.4355784,2.10482,-0.139152,-0.949105,1.790125,-0.07591996,-0.9377697,2.047796,-0.07591996,-0.4538611,1.689222,0.193648,-0.4538611,1.689222,-0.139152,-0.949105,1.790125,0.1304161,-0.949105,1.790125,-0.07591996,-0.2890224,5.436287,-0.2890224,-0.4538611,1.689222,-0.139152,-0.4878016,0.917696,-0.4878016,-0.4878016,0.917696,0.4878016,-0.4538611,1.689222,0.193648,-0.4355784,2.10482,0.193648,-0.2890224,5.436287,0.2890224,-0.4355784,2.10482,-0.139152,-0.1791644,3.900567,0.3565809,-0.1126044,3.859668,0.9413434,-0.1791644,3.568089,0.3712071,-0.1126044,3.66018,0.9501191,0.1536356,3.900567,0.3565809,0.1536356,3.568089,0.3712071,0.08707564,3.859668,0.9413434,0.08707564,3.66018,0.9501191,-0.4878016,0.917696,0.4878016,0.1536356,3.568089,0.3712071,0.4878016,0.917696,0.4878016,0.2890224,5.436287,0.2890224,0.1536356,3.900567,0.3565809,-0.1791644,3.900567,0.3565809,-0.1791644,3.568089,0.3712071,-0.2890224,5.436287,0.2890224,0.1536356,3.568089,0.3712071,-0.1791644,3.568089,0.3712071,0.08707564,3.66018,0.9501191,-0.1126044,3.66018,0.9501191,-0.4878016,0.917696,-0.4878016,0.4878016,0.917696,-0.4878016,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,0.2890224,5.436287,-0.2890224,0.2890224,5.436287,0.2890224,0.08707564,3.66018,0.9501191,-0.1126044,3.66018,0.9501191,0.08707564,3.859668,0.9413434,-0.1126044,3.859668,0.9413434,0.1536356,3.900567,0.3565809,0.08707564,3.859668,0.9413434,-0.1791644,3.900567,0.3565809,-0.1126044,3.859668,0.9413434,0.6870955,13.82285,-0.6870955,0.3067391,14.30333,-0.3067391,0,13.82285,-0.9716997,0,14.30333,-0.4337946,0,6.965088,2.648318,-1.872644,6.965088,1.872644,0,11.50781,1.927976,-1.363285,11.50781,1.363285,1.872644,6.965088,-1.872644,2.648318,6.965088,-2.887646E-14,1.363285,11.50781,-1.363285,1.927976,11.50781,-4.331469E-14,-1.872644,6.965088,-1.872644,-2.648318,6.965088,-2.887646E-14,-1.451662,5.436287,-1.451662,-2.05296,5.436287,-1.443823E-14,0,11.50781,1.927976,-1.363285,11.50781,1.363285,0,13.82285,0.9716997,-0.6870955,13.82285,0.6870955,0,11.50781,-1.927976,1.363285,11.50781,-1.363285,0,13.82285,-0.9716997,0.6870955,13.82285,-0.6870955,1.363285,11.50781,1.363285,0,11.50781,1.927976,0.6870955,13.82285,0.6870955,0,13.82285,0.9716997,-2.648318,6.965088,-2.887646E-14,-1.872644,6.965088,1.872644,-2.05296,5.436287,-1.443823E-14,-1.451662,5.436287,1.451662,0,6.965088,-2.648318,1.872644,6.965088,-1.872644,0,11.50781,-1.927976,1.363285,11.50781,-1.363285,0,5.436287,2.05296,-1.451662,5.436287,1.451662,0,6.965088,2.648318,-1.872644,6.965088,1.872644,0.6870955,13.82285,0.6870955,0,13.82285,0.9716997,0.3067391,14.30333,0.3067391,0,14.30333,0.4337946,0,5.436287,-2.05296,1.451662,5.436287,-1.451662,0,6.965088,-2.648318,1.872644,6.965088,-1.872644,-1.451662,5.436287,-1.451662,0,5.436287,-2.05296,-1.872644,6.965088,-1.872644,0,6.965088,-2.648318,2.648318,6.965088,-2.887646E-14,2.05296,5.436287,-1.443823E-14,1.872644,6.965088,1.872644,1.451662,5.436287,1.451662,1.451662,5.436287,1.451662,0,5.436287,2.05296,1.872644,6.965088,1.872644,0,6.965088,2.648318,1.872644,6.965088,-1.872644,1.451662,5.436287,-1.451662,2.648318,6.965088,-2.887646E-14,2.05296,5.436287,-1.443823E-14,-1.927976,11.50781,-4.331469E-14,-1.363285,11.50781,1.363285,-2.648318,6.965088,-2.887646E-14,-1.872644,6.965088,1.872644,2.05296,5.436287,-1.443823E-14,1.451662,5.436287,-1.451662,1.451662,5.436287,1.451662,0,5.436287,2.05296,0.2890224,5.436287,0.2890224,-0.2890224,5.436287,0.2890224,-1.451662,5.436287,1.451662,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,0,5.436287,-2.05296,-1.451662,5.436287,-1.451662,-2.05296,5.436287,-1.443823E-14,-1.363285,11.50781,-1.363285,0,11.50781,-1.927976,-0.6870955,13.82285,-0.6870955,0,13.82285,-0.9716997,-1.872644,6.965088,-1.872644,-1.363285,11.50781,-1.363285,-2.648318,6.965088,-2.887646E-14,-1.927976,11.50781,-4.331469E-14,0,13.82285,-0.9716997,0,14.30333,-0.4337946,-0.6870955,13.82285,-0.6870955,-0.3067391,14.30333,-0.3067391,0.9716997,13.82285,-5.775292E-14,1.927976,11.50781,-4.331469E-14,0.6870955,13.82285,0.6870955,1.363285,11.50781,1.363285,-0.3067391,14.30333,-0.3067391,-0.4337946,14.30333,-5.775292E-14,-0.6870955,13.82285,-0.6870955,-0.9716997,13.82285,-5.775292E-14,-0.3067391,14.30333,0.3067391,-0.6870955,13.82285,0.6870955,-0.4337946,14.30333,-5.775292E-14,-0.9716997,13.82285,-5.775292E-14,-1.872644,6.965088,-1.872644,0,6.965088,-2.648318,-1.363285,11.50781,-1.363285,0,11.50781,-1.927976,1.872644,6.965088,1.872644,0,6.965088,2.648318,1.363285,11.50781,1.363285,0,11.50781,1.927976,0.9716997,13.82285,-5.775292E-14,0.6870955,13.82285,0.6870955,0.4337946,14.30333,-5.775292E-14,0.3067391,14.30333,0.3067391,0,14.30333,0.4337946,0,13.82285,0.9716997,-0.3067391,14.30333,0.3067391,-0.6870955,13.82285,0.6870955,-1.363285,11.50781,-1.363285,-0.6870955,13.82285,-0.6870955,-1.927976,11.50781,-4.331469E-14,-0.9716997,13.82285,-5.775292E-14,0.9716997,13.82285,-5.775292E-14,0.4337946,14.30333,-5.775292E-14,0.6870955,13.82285,-0.6870955,0.3067391,14.30333,-0.3067391,1.363285,11.50781,-1.363285,1.927976,11.50781,-4.331469E-14,0.6870955,13.82285,-0.6870955,0.9716997,13.82285,-5.775292E-14,0.4337946,14.30333,-5.775292E-14,0.3067391,14.30333,0.3067391,0.3067391,14.30333,-0.3067391,0,14.30333,-0.4337946,0,14.30333,0.4337946,-0.3067391,14.30333,-0.3067391,-0.3067391,14.30333,0.3067391,-0.4337946,14.30333,-5.775292E-14,1.927976,11.50781,-4.331469E-14,2.648318,6.965088,-2.887646E-14,1.363285,11.50781,1.363285,1.872644,6.965088,1.872644,-0.9716997,13.82285,-5.775292E-14,-0.6870955,13.82285,0.6870955,-1.927976,11.50781,-4.331469E-14,-1.363285,11.50781,1.363285 + } + PolygonVertexIndex: *396 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,45,-44,46,40,-48,41,47,-41,45,46,-48,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,60,-60,57,62,-57,63,56,-63,61,63,-63,59,63,-62,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,153,-156,157,156,-156,158,157,-156,159,157,-159,156,160,-154,161,153,-161,159,161,-161,162,161,-160,158,162,-160,163,162,-159,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,217,-220,221,220,-220,222,220,-222,223,222,-222,224,226,-226,227,225,-227,228,230,-230,231,229,-231 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1188 { + a: 0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *464 { + a: 2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,-2.954583,-0.8130127,-1.920479,2.945041,2.954583,-0.8130127,1.920479,2.945041,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,-0.2988975,6.876705,-0.2988975,7.892138,0.513449,6.876705,0.513449,7.892138,-0.5478424,-0.7689713,0.7623939,-0.7689713,-0.2988975,-2.758808,0.513449,-2.758808,-1.677004,6.644963,-3.64261,7.042224,-1.605594,8.2812,-3.598336,8.056692,2.954583,2.954583,2.954583,-2.954583,-2.954583,2.954583,-2.954583,-2.954583,1.70394,6.646138,1.63253,8.282376,3.669546,7.0434,3.625272,8.057867,0.7623939,3.0786,-0.5478424,3.0786,0.513449,5.068437,-0.2988975,5.068437,-1.137884,21.33202,-0.5478424,6.565524,-1.920479,3.525083,1.920479,3.525083,0.7623939,6.565524,0.7623939,8.20332,1.137884,21.33202,-0.5478424,8.20332,1.314784,15.35208,3.631864,15.19106,1.371996,14.04309,3.666191,14.40566,-1.326185,15.35258,-1.383397,14.04359,-3.643265,15.19155,-3.677593,14.40616,-1.920479,3.525083,0.6048647,13.96979,1.920479,3.525083,1.137884,21.33202,0.6048647,15.28003,-0.7053715,15.28003,-0.7053715,13.96979,-1.137884,21.33202,0.6048647,3.650196,-0.7053715,3.650196,0.3428175,5.958035,-0.4433243,5.958035,1.920479,3.525083,-1.920479,3.525083,1.137884,21.33202,-1.137884,21.33202,1.920479,3.525083,-1.920479,3.525083,1.137884,21.33202,-1.137884,21.33202,0.3428175,14.23184,-0.4433243,14.23184,0.3428175,15.01798,-0.4433243,15.01798,0.6048647,-0.328979,0.3428175,-2.636818,-0.7053715,-0.328979,-0.4433243,-2.636818,-1.46399,35.28609,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,-3.99003,29.0635,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,-3.99003,29.0635,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,1.46399,35.28609,-1.46399,35.28609,0.6535669,38.00755,-0.6535669,38.00755,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.99003,29.0635,3.093046,22.66689,-3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.99003,29.0635,3.093046,22.66689,-3.99003,29.0635,-3.093046,22.66689,-2.904742,43.81132,2.904742,43.81132,-3.99003,25.73569,3.99003,25.73569,8.08252,-5.684342E-14,5.715205,-5.715205,5.715205,5.715205,0,8.08252,1.137884,1.137884,-1.137884,1.137884,-5.715205,5.715205,-1.137884,-1.137884,1.137884,-1.137884,0,-8.08252,-5.715205,-5.715205,-8.08252,-5.684342E-14,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,-3.99003,25.73569,-2.904742,43.81132,3.99003,25.73569,2.904742,43.81132,-1.46399,35.28609,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,1.46399,49.58384,2.904742,39.82835,-1.46399,49.58384,-2.904742,39.82835,-0.6535669,38.00755,0.6535669,38.00755,-1.46399,35.28609,1.46399,35.28609,0.6535669,38.00755,1.46399,35.28609,-0.6535669,38.00755,-1.46399,35.28609,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,1.46399,35.28609,-1.46399,35.28609,0.6535669,38.00755,-0.6535669,38.00755,0.6535669,38.00755,1.46399,35.28609,-0.6535669,38.00755,-1.46399,35.28609,-2.904742,39.82835,-1.46399,49.58384,2.904742,39.82835,1.46399,49.58384,-1.46399,35.28609,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,-1.707853,-2.273737E-13,-1.207634,1.207634,-1.207634,-1.207634,0,-1.707853,0,1.707853,1.207634,-1.207634,1.207634,1.207634,1.707853,-2.273737E-13,2.904742,43.81132,3.99003,25.73569,-2.904742,43.81132,-3.99003,25.73569,-1.46399,49.58384,1.46399,49.58384,-2.904742,39.82835,2.904742,39.82835 + } + UVIndex: *396 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,46,45,43,46,40,47,41,47,40,45,46,47,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,60,59,57,62,56,63,56,62,61,63,62,59,63,61,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,153,155,157,156,155,158,157,155,159,157,158,156,160,153,161,153,160,159,161,160,162,161,159,158,162,159,163,162,158,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,217,219,221,220,219,222,220,221,223,222,221,224,226,225,227,225,226,228,230,229,231,229,230 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *132 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_cone, Model::RootNode + C: "OO",5574442027403617273,0 + + ;Geometry::, Model::Mesh tree_cone + C: "OO",4729915435453334658,5574442027403617273 + + ;Material::woodBark, Model::Mesh tree_cone + C: "OO",3046,5574442027403617273 + + ;Material::leafsGreen, Model::Mesh tree_cone + C: "OO",3030,5574442027403617273 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_cone.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone.fbx.import new file mode 100644 index 0000000..e922edd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dgf1x2hgxu0ee" +path="res://.godot/imported/tree_cone.fbx-22b47cc66d6ff3118b00fb2de16884be.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_cone.fbx" +dest_files=["res://.godot/imported/tree_cone.fbx-22b47cc66d6ff3118b00fb2de16884be.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_dark.fbx new file mode 100644 index 0000000..5bbfc6d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_dark.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 36 + Millisecond: 610 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_cone_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_cone_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4675373892775374717, "Model::tree_cone_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5313286091385431915, "Geometry::", "Mesh" { + Vertices: *1392 { + a: 0.750464,0,0.750464,-0.750464,0,0.750464,0.4878016,0.917696,0.4878016,-0.4878016,0.917696,0.4878016,0.4878016,0.917696,0.4878016,-0.750464,0,0.750464,0.750464,0,0.750464,-0.4878016,0.917696,0.4878016,-0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,-0.750464,0,0.750464,-0.4878016,0.917696,0.4878016,-0.750464,0,0.750464,-0.4878016,0.917696,-0.4878016,-0.750464,0,-0.750464,-0.4878016,0.917696,0.4878016,-0.750464,0,-0.750464,0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,0.4878016,0.917696,-0.4878016,-0.4878016,0.917696,-0.4878016,0.750464,0,-0.750464,-0.750464,0,-0.750464,0.4878016,0.917696,-0.4878016,0.750464,0,-0.750464,0.750464,0,0.750464,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,0.4878016,0.917696,-0.4878016,0.750464,0,0.750464,0.750464,0,-0.750464,0.4878016,0.917696,0.4878016,-0.949105,1.790125,-0.07591996,-0.9377697,2.047796,-0.07591996,-0.949105,1.790125,0.1304161,-0.9377697,2.047796,0.1304161,-0.949105,1.790125,0.1304161,-0.9377697,2.047796,-0.07591996,-0.949105,1.790125,-0.07591996,-0.9377697,2.047796,0.1304161,-0.4355784,2.10482,-0.139152,-0.4355784,2.10482,0.193648,-0.9377697,2.047796,-0.07591996,-0.9377697,2.047796,0.1304161,-0.9377697,2.047796,-0.07591996,-0.4355784,2.10482,0.193648,-0.4355784,2.10482,-0.139152,-0.9377697,2.047796,0.1304161,-0.4538611,1.689222,0.193648,-0.949105,1.790125,0.1304161,-0.4355784,2.10482,0.193648,-0.9377697,2.047796,0.1304161,-0.4355784,2.10482,0.193648,-0.949105,1.790125,0.1304161,-0.4538611,1.689222,0.193648,-0.9377697,2.047796,0.1304161,0.750464,0,0.750464,0.750464,0,-0.750464,-0.750464,0,0.750464,-0.750464,0,-0.750464,-0.750464,0,0.750464,0.750464,0,-0.750464,0.750464,0,0.750464,-0.750464,0,-0.750464,-0.4538611,1.689222,-0.139152,-0.4355784,2.10482,-0.139152,-0.949105,1.790125,-0.07591996,-0.9377697,2.047796,-0.07591996,-0.949105,1.790125,-0.07591996,-0.4355784,2.10482,-0.139152,-0.4538611,1.689222,-0.139152,-0.9377697,2.047796,-0.07591996,-0.4538611,1.689222,0.193648,-0.4538611,1.689222,-0.139152,-0.949105,1.790125,0.1304161,-0.949105,1.790125,-0.07591996,-0.949105,1.790125,0.1304161,-0.4538611,1.689222,-0.139152,-0.4538611,1.689222,0.193648,-0.949105,1.790125,-0.07591996,-0.2890224,5.436287,-0.2890224,-0.4538611,1.689222,-0.139152,-0.4878016,0.917696,-0.4878016,-0.4878016,0.917696,0.4878016,-0.4538611,1.689222,0.193648,-0.4355784,2.10482,0.193648,-0.2890224,5.436287,0.2890224,-0.4355784,2.10482,-0.139152,-0.4878016,0.917696,-0.4878016,-0.4538611,1.689222,-0.139152,-0.2890224,5.436287,-0.2890224,-0.4878016,0.917696,0.4878016,-0.4538611,1.689222,0.193648,-0.4355784,2.10482,0.193648,-0.2890224,5.436287,0.2890224,-0.4355784,2.10482,-0.139152,0,13.82285,-0.9716997,0.3067391,14.30333,-0.3067391,0.6870955,13.82285,-0.6870955,0,14.30333,-0.4337946,0,11.50781,1.927976,-1.872644,6.965088,1.872644,0,6.965088,2.648318,-1.363285,11.50781,1.363285,1.363285,11.50781,-1.363285,2.648318,6.965088,-2.887646E-14,1.872644,6.965088,-1.872644,1.927976,11.50781,-4.331469E-14,-1.451662,5.436287,-1.451662,-2.648318,6.965088,-2.887646E-14,-1.872644,6.965088,-1.872644,-2.05296,5.436287,-1.443823E-14,-0.1791644,3.900567,0.3565809,-0.1126044,3.859668,0.9413434,-0.1791644,3.568089,0.3712071,-0.1126044,3.66018,0.9501191,-0.1791644,3.568089,0.3712071,-0.1126044,3.859668,0.9413434,-0.1791644,3.900567,0.3565809,-0.1126044,3.66018,0.9501191,0,13.82285,0.9716997,-1.363285,11.50781,1.363285,0,11.50781,1.927976,-0.6870955,13.82285,0.6870955,0,13.82285,-0.9716997,1.363285,11.50781,-1.363285,0,11.50781,-1.927976,0.6870955,13.82285,-0.6870955,0.6870955,13.82285,0.6870955,0,11.50781,1.927976,1.363285,11.50781,1.363285,0,13.82285,0.9716997,-2.05296,5.436287,-1.443823E-14,-1.872644,6.965088,1.872644,-2.648318,6.965088,-2.887646E-14,-1.451662,5.436287,1.451662,0,11.50781,-1.927976,1.872644,6.965088,-1.872644,0,6.965088,-2.648318,1.363285,11.50781,-1.363285,0,6.965088,2.648318,-1.451662,5.436287,1.451662,0,5.436287,2.05296,-1.872644,6.965088,1.872644,0.3067391,14.30333,0.3067391,0,13.82285,0.9716997,0.6870955,13.82285,0.6870955,0,14.30333,0.4337946,0.1536356,3.900567,0.3565809,0.1536356,3.568089,0.3712071,0.08707564,3.859668,0.9413434,0.08707564,3.66018,0.9501191,0.08707564,3.859668,0.9413434,0.1536356,3.568089,0.3712071,0.1536356,3.900567,0.3565809,0.08707564,3.66018,0.9501191,0,6.965088,-2.648318,1.451662,5.436287,-1.451662,0,5.436287,-2.05296,1.872644,6.965088,-1.872644,-0.4878016,0.917696,0.4878016,0.1536356,3.568089,0.3712071,0.4878016,0.917696,0.4878016,0.2890224,5.436287,0.2890224,0.1536356,3.900567,0.3565809,-0.1791644,3.900567,0.3565809,-0.1791644,3.568089,0.3712071,-0.2890224,5.436287,0.2890224,0.4878016,0.917696,0.4878016,0.1536356,3.568089,0.3712071,-0.4878016,0.917696,0.4878016,0.2890224,5.436287,0.2890224,0.1536356,3.900567,0.3565809,-0.1791644,3.900567,0.3565809,-0.1791644,3.568089,0.3712071,-0.2890224,5.436287,0.2890224,-1.872644,6.965088,-1.872644,0,5.436287,-2.05296,-1.451662,5.436287,-1.451662,0,6.965088,-2.648318,1.872644,6.965088,1.872644,2.05296,5.436287,-1.443823E-14,2.648318,6.965088,-2.887646E-14,1.451662,5.436287,1.451662,1.872644,6.965088,1.872644,0,5.436287,2.05296,1.451662,5.436287,1.451662,0,6.965088,2.648318,2.648318,6.965088,-2.887646E-14,1.451662,5.436287,-1.451662,1.872644,6.965088,-1.872644,2.05296,5.436287,-1.443823E-14,-2.648318,6.965088,-2.887646E-14,-1.363285,11.50781,1.363285,-1.927976,11.50781,-4.331469E-14,-1.872644,6.965088,1.872644,0.1536356,3.568089,0.3712071,-0.1791644,3.568089,0.3712071,0.08707564,3.66018,0.9501191,-0.1126044,3.66018,0.9501191,0.08707564,3.66018,0.9501191,-0.1791644,3.568089,0.3712071,0.1536356,3.568089,0.3712071,-0.1126044,3.66018,0.9501191,1.451662,5.436287,1.451662,1.451662,5.436287,-1.451662,2.05296,5.436287,-1.443823E-14,0,5.436287,2.05296,0.2890224,5.436287,0.2890224,-0.2890224,5.436287,0.2890224,-1.451662,5.436287,1.451662,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,0,5.436287,-2.05296,-1.451662,5.436287,-1.451662,-2.05296,5.436287,-1.443823E-14,-0.4878016,0.917696,-0.4878016,0.4878016,0.917696,-0.4878016,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,-0.2890224,5.436287,-0.2890224,0.4878016,0.917696,-0.4878016,-0.4878016,0.917696,-0.4878016,0.2890224,5.436287,-0.2890224,-0.6870955,13.82285,-0.6870955,0,11.50781,-1.927976,-1.363285,11.50781,-1.363285,0,13.82285,-0.9716997,-2.648318,6.965088,-2.887646E-14,-1.363285,11.50781,-1.363285,-1.872644,6.965088,-1.872644,-1.927976,11.50781,-4.331469E-14,-0.6870955,13.82285,-0.6870955,0,14.30333,-0.4337946,0,13.82285,-0.9716997,-0.3067391,14.30333,-0.3067391,0.6870955,13.82285,0.6870955,1.927976,11.50781,-4.331469E-14,0.9716997,13.82285,-5.775292E-14,1.363285,11.50781,1.363285,-0.6870955,13.82285,-0.6870955,-0.4337946,14.30333,-5.775292E-14,-0.3067391,14.30333,-0.3067391,-0.9716997,13.82285,-5.775292E-14,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,0.2890224,5.436287,-0.2890224,0.2890224,5.436287,0.2890224,0.2890224,5.436287,-0.2890224,0.4878016,0.917696,0.4878016,0.4878016,0.917696,-0.4878016,0.2890224,5.436287,0.2890224,0.08707564,3.66018,0.9501191,-0.1126044,3.66018,0.9501191,0.08707564,3.859668,0.9413434,-0.1126044,3.859668,0.9413434,0.08707564,3.859668,0.9413434,-0.1126044,3.66018,0.9501191,0.08707564,3.66018,0.9501191,-0.1126044,3.859668,0.9413434,-0.4337946,14.30333,-5.775292E-14,-0.6870955,13.82285,0.6870955,-0.3067391,14.30333,0.3067391,-0.9716997,13.82285,-5.775292E-14,0.1536356,3.900567,0.3565809,0.08707564,3.859668,0.9413434,-0.1791644,3.900567,0.3565809,-0.1126044,3.859668,0.9413434,-0.1791644,3.900567,0.3565809,0.08707564,3.859668,0.9413434,0.1536356,3.900567,0.3565809,-0.1126044,3.859668,0.9413434,-1.363285,11.50781,-1.363285,0,6.965088,-2.648318,-1.872644,6.965088,-1.872644,0,11.50781,-1.927976,1.363285,11.50781,1.363285,0,6.965088,2.648318,1.872644,6.965088,1.872644,0,11.50781,1.927976,0.4337946,14.30333,-5.775292E-14,0.6870955,13.82285,0.6870955,0.9716997,13.82285,-5.775292E-14,0.3067391,14.30333,0.3067391,-0.3067391,14.30333,0.3067391,0,13.82285,0.9716997,0,14.30333,0.4337946,-0.6870955,13.82285,0.6870955,-1.927976,11.50781,-4.331469E-14,-0.6870955,13.82285,-0.6870955,-1.363285,11.50781,-1.363285,-0.9716997,13.82285,-5.775292E-14,0.6870955,13.82285,-0.6870955,0.4337946,14.30333,-5.775292E-14,0.9716997,13.82285,-5.775292E-14,0.3067391,14.30333,-0.3067391,0.6870955,13.82285,-0.6870955,1.927976,11.50781,-4.331469E-14,1.363285,11.50781,-1.363285,0.9716997,13.82285,-5.775292E-14,0.3067391,14.30333,-0.3067391,0.3067391,14.30333,0.3067391,0.4337946,14.30333,-5.775292E-14,0,14.30333,-0.4337946,0,14.30333,0.4337946,-0.3067391,14.30333,-0.3067391,-0.3067391,14.30333,0.3067391,-0.4337946,14.30333,-5.775292E-14,1.363285,11.50781,1.363285,2.648318,6.965088,-2.887646E-14,1.927976,11.50781,-4.331469E-14,1.872644,6.965088,1.872644,-1.927976,11.50781,-4.331469E-14,-0.6870955,13.82285,0.6870955,-0.9716997,13.82285,-5.775292E-14,-1.363285,11.50781,1.363285,0.6870955,13.82285,-0.6870955,0.3067391,14.30333,-0.3067391,0,13.82285,-0.9716997,0,14.30333,-0.4337946,0,6.965088,2.648318,-1.872644,6.965088,1.872644,0,11.50781,1.927976,-1.363285,11.50781,1.363285,1.872644,6.965088,-1.872644,2.648318,6.965088,-2.887646E-14,1.363285,11.50781,-1.363285,1.927976,11.50781,-4.331469E-14,-1.872644,6.965088,-1.872644,-2.648318,6.965088,-2.887646E-14,-1.451662,5.436287,-1.451662,-2.05296,5.436287,-1.443823E-14,0,11.50781,1.927976,-1.363285,11.50781,1.363285,0,13.82285,0.9716997,-0.6870955,13.82285,0.6870955,0,11.50781,-1.927976,1.363285,11.50781,-1.363285,0,13.82285,-0.9716997,0.6870955,13.82285,-0.6870955,1.363285,11.50781,1.363285,0,11.50781,1.927976,0.6870955,13.82285,0.6870955,0,13.82285,0.9716997,-2.648318,6.965088,-2.887646E-14,-1.872644,6.965088,1.872644,-2.05296,5.436287,-1.443823E-14,-1.451662,5.436287,1.451662,0,6.965088,-2.648318,1.872644,6.965088,-1.872644,0,11.50781,-1.927976,1.363285,11.50781,-1.363285,0,5.436287,2.05296,-1.451662,5.436287,1.451662,0,6.965088,2.648318,-1.872644,6.965088,1.872644,0.6870955,13.82285,0.6870955,0,13.82285,0.9716997,0.3067391,14.30333,0.3067391,0,14.30333,0.4337946,0,5.436287,-2.05296,1.451662,5.436287,-1.451662,0,6.965088,-2.648318,1.872644,6.965088,-1.872644,-1.451662,5.436287,-1.451662,0,5.436287,-2.05296,-1.872644,6.965088,-1.872644,0,6.965088,-2.648318,2.648318,6.965088,-2.887646E-14,2.05296,5.436287,-1.443823E-14,1.872644,6.965088,1.872644,1.451662,5.436287,1.451662,1.451662,5.436287,1.451662,0,5.436287,2.05296,1.872644,6.965088,1.872644,0,6.965088,2.648318,1.872644,6.965088,-1.872644,1.451662,5.436287,-1.451662,2.648318,6.965088,-2.887646E-14,2.05296,5.436287,-1.443823E-14,-1.927976,11.50781,-4.331469E-14,-1.363285,11.50781,1.363285,-2.648318,6.965088,-2.887646E-14,-1.872644,6.965088,1.872644,2.05296,5.436287,-1.443823E-14,1.451662,5.436287,-1.451662,1.451662,5.436287,1.451662,0,5.436287,2.05296,0.2890224,5.436287,0.2890224,-0.2890224,5.436287,0.2890224,-1.451662,5.436287,1.451662,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,0,5.436287,-2.05296,-1.451662,5.436287,-1.451662,-2.05296,5.436287,-1.443823E-14,-1.363285,11.50781,-1.363285,0,11.50781,-1.927976,-0.6870955,13.82285,-0.6870955,0,13.82285,-0.9716997,-1.872644,6.965088,-1.872644,-1.363285,11.50781,-1.363285,-2.648318,6.965088,-2.887646E-14,-1.927976,11.50781,-4.331469E-14,0,13.82285,-0.9716997,0,14.30333,-0.4337946,-0.6870955,13.82285,-0.6870955,-0.3067391,14.30333,-0.3067391,0.9716997,13.82285,-5.775292E-14,1.927976,11.50781,-4.331469E-14,0.6870955,13.82285,0.6870955,1.363285,11.50781,1.363285,-0.3067391,14.30333,-0.3067391,-0.4337946,14.30333,-5.775292E-14,-0.6870955,13.82285,-0.6870955,-0.9716997,13.82285,-5.775292E-14,-0.3067391,14.30333,0.3067391,-0.6870955,13.82285,0.6870955,-0.4337946,14.30333,-5.775292E-14,-0.9716997,13.82285,-5.775292E-14,-1.872644,6.965088,-1.872644,0,6.965088,-2.648318,-1.363285,11.50781,-1.363285,0,11.50781,-1.927976,1.872644,6.965088,1.872644,0,6.965088,2.648318,1.363285,11.50781,1.363285,0,11.50781,1.927976,0.9716997,13.82285,-5.775292E-14,0.6870955,13.82285,0.6870955,0.4337946,14.30333,-5.775292E-14,0.3067391,14.30333,0.3067391,0,14.30333,0.4337946,0,13.82285,0.9716997,-0.3067391,14.30333,0.3067391,-0.6870955,13.82285,0.6870955,-1.363285,11.50781,-1.363285,-0.6870955,13.82285,-0.6870955,-1.927976,11.50781,-4.331469E-14,-0.9716997,13.82285,-5.775292E-14,0.9716997,13.82285,-5.775292E-14,0.4337946,14.30333,-5.775292E-14,0.6870955,13.82285,-0.6870955,0.3067391,14.30333,-0.3067391,1.363285,11.50781,-1.363285,1.927976,11.50781,-4.331469E-14,0.6870955,13.82285,-0.6870955,0.9716997,13.82285,-5.775292E-14,0.4337946,14.30333,-5.775292E-14,0.3067391,14.30333,0.3067391,0.3067391,14.30333,-0.3067391,0,14.30333,-0.4337946,0,14.30333,0.4337946,-0.3067391,14.30333,-0.3067391,-0.3067391,14.30333,0.3067391,-0.4337946,14.30333,-5.775292E-14,1.927976,11.50781,-4.331469E-14,2.648318,6.965088,-2.887646E-14,1.363285,11.50781,1.363285,1.872644,6.965088,1.872644,-0.9716997,13.82285,-5.775292E-14,-0.6870955,13.82285,0.6870955,-1.927976,11.50781,-4.331469E-14,-1.363285,11.50781,1.363285 + } + PolygonVertexIndex: *792 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,81,-84,85,84,-84,86,85,-84,86,80,-88,81,87,-81,85,86,-88,88,90,-90,89,91,-89,89,92,-92,92,93,-92,93,94,-92,90,94,-96,95,89,-91,94,93,-96,96,98,-98,97,99,-97,100,102,-102,101,103,-101,104,106,-106,105,107,-105,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,121,123,-121,124,126,-126,125,127,-125,128,130,-130,129,131,-129,132,134,-134,133,135,-133,136,138,-138,137,139,-137,140,142,-142,141,143,-141,144,146,-146,145,147,-145,148,150,-150,151,149,-151,152,154,-154,153,155,-153,156,158,-158,157,159,-157,160,162,-162,163,161,-163,164,161,-164,165,164,-164,161,166,-161,167,160,-167,165,167,-167,163,167,-166,168,170,-170,169,171,-169,169,172,-172,172,173,-172,174,169,-171,170,175,-175,175,173,-175,175,171,-174,176,178,-178,177,179,-177,180,182,-182,181,183,-181,184,186,-186,185,187,-185,188,190,-190,189,191,-189,192,194,-194,193,195,-193,196,198,-198,199,197,-199,200,202,-202,201,203,-201,204,206,-206,205,207,-205,205,208,-208,208,209,-208,209,210,-208,209,211,-211,212,208,-206,205,213,-213,213,211,-213,213,214,-212,214,210,-212,214,215,-211,216,218,-218,219,217,-219,220,222,-222,221,223,-221,224,226,-226,225,227,-225,228,230,-230,229,231,-229,232,234,-234,233,235,-233,236,238,-238,237,239,-237,240,242,-242,241,243,-241,244,246,-246,247,245,-247,248,250,-250,249,251,-249,252,254,-254,255,253,-255,256,258,-258,257,259,-257,260,262,-262,261,263,-261,264,266,-266,267,265,-267,268,270,-270,269,271,-269,272,274,-274,273,275,-273,276,278,-278,277,279,-277,280,282,-282,281,283,-281,284,286,-286,285,287,-285,288,290,-290,289,291,-289,292,294,-294,293,295,-293,296,298,-298,297,299,-297,300,302,-302,301,303,-301,301,304,-304,304,305,-304,304,306,-306,306,307,-306,308,310,-310,309,311,-309,312,314,-314,313,315,-313,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,385,-388,389,388,-388,390,389,-388,391,389,-391,388,392,-386,393,385,-393,391,393,-393,394,393,-392,390,394,-392,395,394,-391,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415,416,418,-418,419,417,-419,420,422,-422,423,421,-423,424,426,-426,427,425,-427,428,430,-430,431,429,-431,432,434,-434,435,433,-435,436,438,-438,439,437,-439,440,442,-442,443,441,-443,444,446,-446,447,445,-447,448,450,-450,451,449,-451,452,449,-452,453,452,-452,454,452,-454,455,454,-454,456,458,-458,459,457,-459,460,462,-462,463,461,-463 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2376 { + a: 0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,-0.2751701,-0.9613956,0,-0.2751701,-0.9613956,0,-0.2751701,-0.9613956,0,-0.2751701,-0.9613956,0,-0.2751701,-0.9613956,0,-0.2751701,-0.9613956,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,0.9613956,-0.2751701,0,0.9613956,-0.2751701,0,0.9613956,-0.2751701,0,0.9613956,-0.2751701,0,0.9613956,-0.2751701,0,0.9613956,-0.2751701,0,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,-0.2751701,0.9613956,0,-0.2751701,0.9613956,0,-0.2751701,0.9613956,0,-0.2751701,0.9613956,0,-0.2751701,0.9613956,0,-0.2751701,0.9613956,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,-0.9613956,-0.2751701,0,-0.9613956,-0.2751701,0,-0.9613956,-0.2751701,0,-0.9613956,-0.2751701,0,-0.9613956,-0.2751701,0,-0.9613956,-0.2751701,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,0.112826,-0.9936148,0,0.112826,-0.9936148,0,0.112826,-0.9936148,0,0.112826,-0.9936148,0,0.112826,-0.9936148,0,0.112826,-0.9936148,0,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,0.1255412,-0.005522731,-0.992073,0.1255412,-0.005522731,-0.992073,0.1255412,-0.005522731,-0.992073,0.1255412,-0.005522731,-0.992073,0.1255412,-0.005522731,-0.992073,0.1255412,-0.005522731,-0.992073,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,0.1255412,-0.005522731,0.992073,0.1255412,-0.005522731,0.992073,0.1255412,-0.005522731,0.992073,0.1255412,-0.005522731,0.992073,0.1255412,-0.005522731,0.992073,0.1255412,-0.005522731,0.992073,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,0.1996423,0.9798688,0,0.1996423,0.9798688,0,0.1996423,0.9798688,0,0.1996423,0.9798688,0,0.1996423,0.9798688,0,0.1996423,0.9798688,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,0.9990338,-0.04394889,0,-0.265998,-0.7189265,0.6421759,-0.265998,-0.7189265,0.6421759,-0.265998,-0.7189265,0.6421759,-0.265998,-0.7189265,0.6421759,-0.265998,-0.7189265,0.6421759,-0.265998,-0.7189265,0.6421759,0.3786418,-0.144953,-0.914122,0.3786418,-0.144953,-0.914122,0.3786418,-0.144953,-0.914122,0.3786418,-0.144953,-0.914122,0.3786418,-0.144953,-0.914122,0.3786418,-0.144953,-0.914122,-0.914122,-0.144953,0.3786418,-0.914122,-0.144953,0.3786418,-0.914122,-0.144953,0.3786418,-0.914122,-0.144953,0.3786418,-0.914122,-0.144953,0.3786418,-0.914122,-0.144953,0.3786418,0.8693262,0.3385404,0.3600867,0.8693262,0.3385404,0.3600867,0.8693262,0.3385404,0.3600867,0.8693262,0.3385404,0.3600867,0.8693262,0.3385404,0.3600867,0.8693262,0.3385404,0.3600867,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,0.9935327,-0.004990246,-0.1134369,0.9935327,-0.004990246,-0.1134369,0.9935327,-0.004990246,-0.1134369,0.9935327,-0.004990246,-0.1134369,0.9935327,-0.004990246,-0.1134369,0.9935327,-0.004990246,-0.1134369,0.3575325,-0.3565464,-0.86316,0.3575325,-0.3565464,-0.86316,0.3575325,-0.3565464,-0.86316,0.3575325,-0.3565464,-0.86316,0.3575325,-0.3565464,-0.86316,0.3575325,-0.3565464,-0.86316,-0.3575325,-0.3565464,0.86316,-0.3575325,-0.3565464,0.86316,-0.3575325,-0.3565464,0.86316,-0.3575325,-0.3565464,0.86316,-0.3575325,-0.3565464,0.86316,-0.3575325,-0.3565464,0.86316,-0.3575325,-0.3565464,-0.86316,-0.3575325,-0.3565464,-0.86316,-0.3575325,-0.3565464,-0.86316,-0.3575325,-0.3565464,-0.86316,-0.3575325,-0.3565464,-0.86316,-0.3575325,-0.3565464,-0.86316,0.8693262,0.3385404,-0.3600867,0.8693262,0.3385404,-0.3600867,0.8693262,0.3385404,-0.3600867,0.8693262,0.3385404,-0.3600867,0.8693262,0.3385404,-0.3600867,0.8693262,0.3385404,-0.3600867,-0.3786418,-0.144953,0.914122,-0.3786418,-0.144953,0.914122,-0.3786418,-0.144953,0.914122,-0.3786418,-0.144953,0.914122,-0.3786418,-0.144953,0.914122,-0.3786418,-0.144953,0.914122,0.3600867,0.3385404,-0.8693262,0.3600867,0.3385404,-0.8693262,0.3600867,0.3385404,-0.8693262,0.3600867,0.3385404,-0.8693262,0.3600867,0.3385404,-0.8693262,0.3600867,0.3385404,-0.8693262,-0.265998,-0.7189265,-0.6421759,-0.265998,-0.7189265,-0.6421759,-0.265998,-0.7189265,-0.6421759,-0.265998,-0.7189265,-0.6421759,-0.265998,-0.7189265,-0.6421759,-0.265998,-0.7189265,-0.6421759,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,-0.9935327,-0.004990246,-0.1134369,-0.9935327,-0.004990246,-0.1134369,-0.9935327,-0.004990246,-0.1134369,-0.9935327,-0.004990246,-0.1134369,-0.9935327,-0.004990246,-0.1134369,-0.9935327,-0.004990246,-0.1134369,-0.3600867,0.3385404,0.8693262,-0.3600867,0.3385404,0.8693262,-0.3600867,0.3385404,0.8693262,-0.3600867,0.3385404,0.8693262,-0.3600867,0.3385404,0.8693262,-0.3600867,0.3385404,0.8693262,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0.3600867,0.3385404,0.8693262,0.3600867,0.3385404,0.8693262,0.3600867,0.3385404,0.8693262,0.3600867,0.3385404,0.8693262,0.3600867,0.3385404,0.8693262,0.3600867,0.3385404,0.8693262,-0.8693262,0.3385404,-0.3600867,-0.8693262,0.3385404,-0.3600867,-0.8693262,0.3385404,-0.3600867,-0.8693262,0.3385404,-0.3600867,-0.8693262,0.3385404,-0.3600867,-0.8693262,0.3385404,-0.3600867,-0.3600867,0.3385404,-0.8693262,-0.3600867,0.3385404,-0.8693262,-0.3600867,0.3385404,-0.8693262,-0.3600867,0.3385404,-0.8693262,-0.3600867,0.3385404,-0.8693262,-0.3600867,0.3385404,-0.8693262,-0.8693262,0.3385404,0.3600867,-0.8693262,0.3385404,0.3600867,-0.8693262,0.3385404,0.3600867,-0.8693262,0.3385404,0.3600867,-0.8693262,0.3385404,0.3600867,-0.8693262,0.3385404,0.3600867,0.914122,-0.144953,-0.3786418,0.914122,-0.144953,-0.3786418,0.914122,-0.144953,-0.3786418,0.914122,-0.144953,-0.3786418,0.914122,-0.144953,-0.3786418,0.914122,-0.144953,-0.3786418,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,0.9875824,-0.1571015,0,0.9875824,-0.1571015,0,0.9875824,-0.1571015,0,0.9875824,-0.1571015,0,0.9875824,-0.1571015,0,0.9875824,-0.1571015,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,-0.04394889,0.9990338,0,-0.04394889,0.9990338,0,-0.04394889,0.9990338,0,-0.04394889,0.9990338,0,-0.04394889,0.9990338,0,-0.04394889,0.9990338,0.3575325,-0.3565464,0.86316,0.3575325,-0.3565464,0.86316,0.3575325,-0.3565464,0.86316,0.3575325,-0.3565464,0.86316,0.3575325,-0.3565464,0.86316,0.3575325,-0.3565464,0.86316,0.914122,-0.144953,0.3786418,0.914122,-0.144953,0.3786418,0.914122,-0.144953,0.3786418,0.914122,-0.144953,0.3786418,0.914122,-0.144953,0.3786418,0.914122,-0.144953,0.3786418,0.265998,-0.7189265,0.6421759,0.265998,-0.7189265,0.6421759,0.265998,-0.7189265,0.6421759,0.265998,-0.7189265,0.6421759,0.265998,-0.7189265,0.6421759,0.265998,-0.7189265,0.6421759,-0.86316,-0.3565464,-0.3575325,-0.86316,-0.3565464,-0.3575325,-0.86316,-0.3565464,-0.3575325,-0.86316,-0.3565464,-0.3575325,-0.86316,-0.3565464,-0.3575325,-0.86316,-0.3565464,-0.3575325,0.6421759,-0.7189265,0.265998,0.6421759,-0.7189265,0.265998,0.6421759,-0.7189265,0.265998,0.6421759,-0.7189265,0.265998,0.6421759,-0.7189265,0.265998,0.6421759,-0.7189265,0.265998,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,-0.9990338,-0.04394889,0,-0.9990338,-0.04394889,0,-0.9990338,-0.04394889,0,-0.9990338,-0.04394889,0,-0.9990338,-0.04394889,0,-0.9990338,-0.04394889,0,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0,-0.04394889,-0.9990338,0.6421759,-0.7189265,-0.265998,0.6421759,-0.7189265,-0.265998,0.6421759,-0.7189265,-0.265998,0.6421759,-0.7189265,-0.265998,0.6421759,-0.7189265,-0.265998,0.6421759,-0.7189265,-0.265998,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,-0.997563,-0.06977224,0,-0.997563,-0.06977224,0,-0.997563,-0.06977224,0,-0.997563,-0.06977224,0,-0.997563,-0.06977224,0,-0.997563,-0.06977224,0.3786418,-0.144953,0.914122,0.3786418,-0.144953,0.914122,0.3786418,-0.144953,0.914122,0.3786418,-0.144953,0.914122,0.3786418,-0.144953,0.914122,0.3786418,-0.144953,0.914122,-0.3786418,-0.144953,-0.914122,-0.3786418,-0.144953,-0.914122,-0.3786418,-0.144953,-0.914122,-0.3786418,-0.144953,-0.914122,-0.3786418,-0.144953,-0.914122,-0.3786418,-0.144953,-0.914122,-0.6421759,-0.7189265,-0.265998,-0.6421759,-0.7189265,-0.265998,-0.6421759,-0.7189265,-0.265998,-0.6421759,-0.7189265,-0.265998,-0.6421759,-0.7189265,-0.265998,-0.6421759,-0.7189265,-0.265998,0.265998,-0.7189265,-0.6421759,0.265998,-0.7189265,-0.6421759,0.265998,-0.7189265,-0.6421759,0.265998,-0.7189265,-0.6421759,0.265998,-0.7189265,-0.6421759,0.265998,-0.7189265,-0.6421759,0.86316,-0.3565464,0.3575325,0.86316,-0.3565464,0.3575325,0.86316,-0.3565464,0.3575325,0.86316,-0.3565464,0.3575325,0.86316,-0.3565464,0.3575325,0.86316,-0.3565464,0.3575325,-0.6421759,-0.7189265,0.265998,-0.6421759,-0.7189265,0.265998,-0.6421759,-0.7189265,0.265998,-0.6421759,-0.7189265,0.265998,-0.6421759,-0.7189265,0.265998,-0.6421759,-0.7189265,0.265998,-0.86316,-0.3565464,0.3575325,-0.86316,-0.3565464,0.3575325,-0.86316,-0.3565464,0.3575325,-0.86316,-0.3565464,0.3575325,-0.86316,-0.3565464,0.3575325,-0.86316,-0.3565464,0.3575325,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.914122,-0.144953,-0.3786418,-0.914122,-0.144953,-0.3786418,-0.914122,-0.144953,-0.3786418,-0.914122,-0.144953,-0.3786418,-0.914122,-0.144953,-0.3786418,-0.914122,-0.144953,-0.3786418,0.86316,-0.3565464,-0.3575325,0.86316,-0.3565464,-0.3575325,0.86316,-0.3565464,-0.3575325,0.86316,-0.3565464,-0.3575325,0.86316,-0.3565464,-0.3575325,0.86316,-0.3565464,-0.3575325,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *928 { + a: 2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,1.920479,2.945041,-2.954583,-0.8130127,2.954583,-0.8130127,-1.920479,2.945041,-2.954583,-0.8130127,-1.920479,2.945041,2.954583,-0.8130127,1.920479,2.945041,2.954583,-0.8130127,-1.920479,2.945041,-2.954583,-0.8130127,1.920479,2.945041,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,1.920479,2.945041,-2.954583,-0.8130127,2.954583,-0.8130127,-1.920479,2.945041,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,1.920479,2.945041,-2.954583,-0.8130127,2.954583,-0.8130127,-1.920479,2.945041,-0.2988975,6.876705,-0.2988975,7.892138,0.513449,6.876705,0.513449,7.892138,0.513449,6.876705,-0.2988975,7.892138,-0.2988975,6.876705,0.513449,7.892138,-0.5478424,-0.7689713,0.7623939,-0.7689713,-0.2988975,-2.758808,0.513449,-2.758808,-0.2988975,-2.758808,0.7623939,-0.7689713,-0.5478424,-0.7689713,0.513449,-2.758808,-1.677004,6.644963,-3.64261,7.042224,-1.605594,8.2812,-3.598336,8.056692,-1.605594,8.2812,-3.64261,7.042224,-1.677004,6.644963,-3.598336,8.056692,2.954583,2.954583,2.954583,-2.954583,-2.954583,2.954583,-2.954583,-2.954583,-2.954583,2.954583,2.954583,-2.954583,2.954583,2.954583,-2.954583,-2.954583,1.70394,6.646138,1.63253,8.282376,3.669546,7.0434,3.625272,8.057867,3.669546,7.0434,1.63253,8.282376,1.70394,6.646138,3.625272,8.057867,0.7623939,3.0786,-0.5478424,3.0786,0.513449,5.068437,-0.2988975,5.068437,0.513449,5.068437,-0.5478424,3.0786,0.7623939,3.0786,-0.2988975,5.068437,-1.137884,21.33202,-0.5478424,6.565524,-1.920479,3.525083,1.920479,3.525083,0.7623939,6.565524,0.7623939,8.20332,1.137884,21.33202,-0.5478424,8.20332,-1.920479,3.525083,-0.5478424,6.565524,-1.137884,21.33202,1.920479,3.525083,0.7623939,6.565524,0.7623939,8.20332,1.137884,21.33202,-0.5478424,8.20332,1.46399,35.28609,-0.6535669,38.00755,-1.46399,35.28609,0.6535669,38.00755,2.904742,43.81132,-3.99003,25.73569,3.99003,25.73569,-2.904742,43.81132,2.904742,43.81132,-3.99003,25.73569,3.99003,25.73569,-2.904742,43.81132,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.093046,22.66689,1.314784,15.35208,3.631864,15.19106,1.371996,14.04309,3.666191,14.40566,1.371996,14.04309,3.631864,15.19106,1.314784,15.35208,3.666191,14.40566,1.46399,49.58384,-2.904742,39.82835,2.904742,39.82835,-1.46399,49.58384,1.46399,49.58384,-2.904742,39.82835,2.904742,39.82835,-1.46399,49.58384,1.46399,49.58384,-2.904742,39.82835,2.904742,39.82835,-1.46399,49.58384,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.093046,22.66689,2.904742,43.81132,-3.99003,25.73569,3.99003,25.73569,-2.904742,43.81132,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,-3.99003,29.0635,0.6535669,38.00755,-1.46399,35.28609,1.46399,35.28609,-0.6535669,38.00755,-1.326185,15.35258,-1.383397,14.04359,-3.643265,15.19155,-3.677593,14.40616,-3.643265,15.19155,-1.383397,14.04359,-1.326185,15.35258,-3.677593,14.40616,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,-3.99003,29.0635,-1.920479,3.525083,0.6048647,13.96979,1.920479,3.525083,1.137884,21.33202,0.6048647,15.28003,-0.7053715,15.28003,-0.7053715,13.96979,-1.137884,21.33202,1.920479,3.525083,0.6048647,13.96979,-1.920479,3.525083,1.137884,21.33202,0.6048647,15.28003,-0.7053715,15.28003,-0.7053715,13.96979,-1.137884,21.33202,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,-3.99003,29.0635,-3.99003,29.0635,3.093046,22.66689,3.99003,29.0635,-3.093046,22.66689,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,-3.99003,29.0635,-3.99003,29.0635,3.093046,22.66689,3.99003,29.0635,-3.093046,22.66689,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.99003,25.73569,0.6048647,3.650196,-0.7053715,3.650196,0.3428175,5.958035,-0.4433243,5.958035,0.3428175,5.958035,-0.7053715,3.650196,0.6048647,3.650196,-0.4433243,5.958035,5.715205,5.715205,5.715205,-5.715205,8.08252,-5.684342E-14,0,8.08252,1.137884,1.137884,-1.137884,1.137884,-5.715205,5.715205,-1.137884,-1.137884,1.137884,-1.137884,0,-8.08252,-5.715205,-5.715205,-8.08252,-5.684342E-14,1.920479,3.525083,-1.920479,3.525083,1.137884,21.33202,-1.137884,21.33202,1.137884,21.33202,-1.920479,3.525083,1.920479,3.525083,-1.137884,21.33202,1.46399,49.58384,-2.904742,39.82835,2.904742,39.82835,-1.46399,49.58384,3.99003,25.73569,-2.904742,43.81132,-3.99003,25.73569,2.904742,43.81132,1.46399,35.28609,-0.6535669,38.00755,-1.46399,35.28609,0.6535669,38.00755,-1.46399,49.58384,2.904742,39.82835,1.46399,49.58384,-2.904742,39.82835,-1.46399,35.28609,0.6535669,38.00755,-0.6535669,38.00755,1.46399,35.28609,1.920479,3.525083,-1.920479,3.525083,1.137884,21.33202,-1.137884,21.33202,1.137884,21.33202,-1.920479,3.525083,1.920479,3.525083,-1.137884,21.33202,0.3428175,14.23184,-0.4433243,14.23184,0.3428175,15.01798,-0.4433243,15.01798,0.3428175,15.01798,-0.4433243,14.23184,0.3428175,14.23184,-0.4433243,15.01798,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,-1.46399,35.28609,0.6048647,-0.328979,0.3428175,-2.636818,-0.7053715,-0.328979,-0.4433243,-2.636818,-0.7053715,-0.328979,0.3428175,-2.636818,0.6048647,-0.328979,-0.4433243,-2.636818,2.904742,43.81132,-3.99003,25.73569,3.99003,25.73569,-2.904742,43.81132,2.904742,43.81132,-3.99003,25.73569,3.99003,25.73569,-2.904742,43.81132,0.6535669,38.00755,-1.46399,35.28609,1.46399,35.28609,-0.6535669,38.00755,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,-1.46399,35.28609,2.904742,39.82835,-1.46399,49.58384,-2.904742,39.82835,1.46399,49.58384,1.46399,35.28609,-0.6535669,38.00755,-1.46399,35.28609,0.6535669,38.00755,1.46399,49.58384,-2.904742,39.82835,2.904742,39.82835,-1.46399,49.58384,-1.207634,-1.207634,-1.207634,1.207634,-1.707853,-2.273737E-13,0,-1.707853,0,1.707853,1.207634,-1.207634,1.207634,1.207634,1.707853,-2.273737E-13,-2.904742,43.81132,3.99003,25.73569,2.904742,43.81132,-3.99003,25.73569,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,2.904742,39.82835,-1.46399,35.28609,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,-3.99003,29.0635,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,-3.99003,29.0635,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,1.46399,35.28609,-1.46399,35.28609,0.6535669,38.00755,-0.6535669,38.00755,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.99003,29.0635,3.093046,22.66689,-3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.99003,29.0635,3.093046,22.66689,-3.99003,29.0635,-3.093046,22.66689,-2.904742,43.81132,2.904742,43.81132,-3.99003,25.73569,3.99003,25.73569,8.08252,-5.684342E-14,5.715205,-5.715205,5.715205,5.715205,0,8.08252,1.137884,1.137884,-1.137884,1.137884,-5.715205,5.715205,-1.137884,-1.137884,1.137884,-1.137884,0,-8.08252,-5.715205,-5.715205,-8.08252,-5.684342E-14,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,-3.99003,25.73569,-2.904742,43.81132,3.99003,25.73569,2.904742,43.81132,-1.46399,35.28609,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,1.46399,49.58384,2.904742,39.82835,-1.46399,49.58384,-2.904742,39.82835,-0.6535669,38.00755,0.6535669,38.00755,-1.46399,35.28609,1.46399,35.28609,0.6535669,38.00755,1.46399,35.28609,-0.6535669,38.00755,-1.46399,35.28609,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,1.46399,35.28609,-1.46399,35.28609,0.6535669,38.00755,-0.6535669,38.00755,0.6535669,38.00755,1.46399,35.28609,-0.6535669,38.00755,-1.46399,35.28609,-2.904742,39.82835,-1.46399,49.58384,2.904742,39.82835,1.46399,49.58384,-1.46399,35.28609,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,-1.707853,-2.273737E-13,-1.207634,1.207634,-1.207634,-1.207634,0,-1.707853,0,1.707853,1.207634,-1.207634,1.207634,1.207634,1.707853,-2.273737E-13,2.904742,43.81132,3.99003,25.73569,-2.904742,43.81132,-3.99003,25.73569,-1.46399,49.58384,1.46399,49.58384,-2.904742,39.82835,2.904742,39.82835 + } + UVIndex: *792 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,83,81,82,84,81,83,85,84,83,86,85,83,86,80,87,81,87,80,85,86,87,88,90,89,89,91,88,89,92,91,92,93,91,93,94,91,90,94,95,95,89,90,94,93,95,96,98,97,97,99,96,100,102,101,101,103,100,104,106,105,105,107,104,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,121,123,120,124,126,125,125,127,124,128,130,129,129,131,128,132,134,133,133,135,132,136,138,137,137,139,136,140,142,141,141,143,140,144,146,145,145,147,144,148,150,149,151,149,150,152,154,153,153,155,152,156,158,157,157,159,156,160,162,161,163,161,162,164,161,163,165,164,163,161,166,160,167,160,166,165,167,166,163,167,165,168,170,169,169,171,168,169,172,171,172,173,171,174,169,170,170,175,174,175,173,174,175,171,173,176,178,177,177,179,176,180,182,181,181,183,180,184,186,185,185,187,184,188,190,189,189,191,188,192,194,193,193,195,192,196,198,197,199,197,198,200,202,201,201,203,200,204,206,205,205,207,204,205,208,207,208,209,207,209,210,207,209,211,210,212,208,205,205,213,212,213,211,212,213,214,211,214,210,211,214,215,210,216,218,217,219,217,218,220,222,221,221,223,220,224,226,225,225,227,224,228,230,229,229,231,228,232,234,233,233,235,232,236,238,237,237,239,236,240,242,241,241,243,240,244,246,245,247,245,246,248,250,249,249,251,248,252,254,253,255,253,254,256,258,257,257,259,256,260,262,261,261,263,260,264,266,265,267,265,266,268,270,269,269,271,268,272,274,273,273,275,272,276,278,277,277,279,276,280,282,281,281,283,280,284,286,285,285,287,284,288,290,289,289,291,288,292,294,293,293,295,292,296,298,297,297,299,296,300,302,301,301,303,300,301,304,303,304,305,303,304,306,305,306,307,305,308,310,309,309,311,308,312,314,313,313,315,312,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,385,387,389,388,387,390,389,387,391,389,390,388,392,385,393,385,392,391,393,392,394,393,391,390,394,391,395,394,390,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414,416,418,417,419,417,418,420,422,421,423,421,422,424,426,425,427,425,426,428,430,429,431,429,430,432,434,433,435,433,434,436,438,437,439,437,438,440,442,441,443,441,442,444,446,445,447,445,446,448,450,449,451,449,450,452,449,451,453,452,451,454,452,453,455,454,453,456,458,457,459,457,458,460,462,461,463,461,462 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *264 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_cone_dark, Model::RootNode + C: "OO",4675373892775374717,0 + + ;Geometry::, Model::Mesh tree_cone_dark + C: "OO",5313286091385431915,4675373892775374717 + + ;Material::woodBarkDark, Model::Mesh tree_cone_dark + C: "OO",3048,4675373892775374717 + + ;Material::leafsDark, Model::Mesh tree_cone_dark + C: "OO",3026,4675373892775374717 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_dark.fbx.import new file mode 100644 index 0000000..e812f9b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c434ssfy2uvx5" +path="res://.godot/imported/tree_cone_dark.fbx-e4e58a58a3ffcdcb98f0d6102bc6de12.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_cone_dark.fbx" +dest_files=["res://.godot/imported/tree_cone_dark.fbx-e4e58a58a3ffcdcb98f0d6102bc6de12.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_fall.fbx new file mode 100644 index 0000000..162ab79 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 36 + Millisecond: 708 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_cone_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_cone_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5000459404509870952, "Model::tree_cone_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4900632101479407286, "Geometry::", "Mesh" { + Vertices: *696 { + a: 0.750464,0,0.750464,-0.750464,0,0.750464,0.4878016,0.917696,0.4878016,-0.4878016,0.917696,0.4878016,-0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,-0.750464,0,0.750464,-0.4878016,0.917696,0.4878016,-0.750464,0,-0.750464,0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,0.4878016,0.917696,-0.4878016,0.750464,0,-0.750464,0.750464,0,0.750464,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,-0.949105,1.790125,-0.07591996,-0.9377697,2.047796,-0.07591996,-0.949105,1.790125,0.1304161,-0.9377697,2.047796,0.1304161,-0.4355784,2.10482,-0.139152,-0.4355784,2.10482,0.193648,-0.9377697,2.047796,-0.07591996,-0.9377697,2.047796,0.1304161,-0.4538611,1.689222,0.193648,-0.949105,1.790125,0.1304161,-0.4355784,2.10482,0.193648,-0.9377697,2.047796,0.1304161,0.750464,0,0.750464,0.750464,0,-0.750464,-0.750464,0,0.750464,-0.750464,0,-0.750464,-0.4538611,1.689222,-0.139152,-0.4355784,2.10482,-0.139152,-0.949105,1.790125,-0.07591996,-0.9377697,2.047796,-0.07591996,-0.4538611,1.689222,0.193648,-0.4538611,1.689222,-0.139152,-0.949105,1.790125,0.1304161,-0.949105,1.790125,-0.07591996,-0.2890224,5.436287,-0.2890224,-0.4538611,1.689222,-0.139152,-0.4878016,0.917696,-0.4878016,-0.4878016,0.917696,0.4878016,-0.4538611,1.689222,0.193648,-0.4355784,2.10482,0.193648,-0.2890224,5.436287,0.2890224,-0.4355784,2.10482,-0.139152,-0.1791644,3.900567,0.3565809,-0.1126044,3.859668,0.9413434,-0.1791644,3.568089,0.3712071,-0.1126044,3.66018,0.9501191,0.1536356,3.900567,0.3565809,0.1536356,3.568089,0.3712071,0.08707564,3.859668,0.9413434,0.08707564,3.66018,0.9501191,-0.4878016,0.917696,0.4878016,0.1536356,3.568089,0.3712071,0.4878016,0.917696,0.4878016,0.2890224,5.436287,0.2890224,0.1536356,3.900567,0.3565809,-0.1791644,3.900567,0.3565809,-0.1791644,3.568089,0.3712071,-0.2890224,5.436287,0.2890224,0.1536356,3.568089,0.3712071,-0.1791644,3.568089,0.3712071,0.08707564,3.66018,0.9501191,-0.1126044,3.66018,0.9501191,-0.4878016,0.917696,-0.4878016,0.4878016,0.917696,-0.4878016,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,0.2890224,5.436287,-0.2890224,0.2890224,5.436287,0.2890224,0.08707564,3.66018,0.9501191,-0.1126044,3.66018,0.9501191,0.08707564,3.859668,0.9413434,-0.1126044,3.859668,0.9413434,0.1536356,3.900567,0.3565809,0.08707564,3.859668,0.9413434,-0.1791644,3.900567,0.3565809,-0.1126044,3.859668,0.9413434,0.6870955,13.82285,-0.6870955,0.3067391,14.30333,-0.3067391,0,13.82285,-0.9716997,0,14.30333,-0.4337946,0,6.965088,2.648318,-1.872644,6.965088,1.872644,0,11.50781,1.927976,-1.363285,11.50781,1.363285,1.872644,6.965088,-1.872644,2.648318,6.965088,-2.887646E-14,1.363285,11.50781,-1.363285,1.927976,11.50781,-4.331469E-14,-1.872644,6.965088,-1.872644,-2.648318,6.965088,-2.887646E-14,-1.451662,5.436287,-1.451662,-2.05296,5.436287,-1.443823E-14,0,11.50781,1.927976,-1.363285,11.50781,1.363285,0,13.82285,0.9716997,-0.6870955,13.82285,0.6870955,0,11.50781,-1.927976,1.363285,11.50781,-1.363285,0,13.82285,-0.9716997,0.6870955,13.82285,-0.6870955,1.363285,11.50781,1.363285,0,11.50781,1.927976,0.6870955,13.82285,0.6870955,0,13.82285,0.9716997,-2.648318,6.965088,-2.887646E-14,-1.872644,6.965088,1.872644,-2.05296,5.436287,-1.443823E-14,-1.451662,5.436287,1.451662,0,6.965088,-2.648318,1.872644,6.965088,-1.872644,0,11.50781,-1.927976,1.363285,11.50781,-1.363285,0,5.436287,2.05296,-1.451662,5.436287,1.451662,0,6.965088,2.648318,-1.872644,6.965088,1.872644,0.6870955,13.82285,0.6870955,0,13.82285,0.9716997,0.3067391,14.30333,0.3067391,0,14.30333,0.4337946,0,5.436287,-2.05296,1.451662,5.436287,-1.451662,0,6.965088,-2.648318,1.872644,6.965088,-1.872644,-1.451662,5.436287,-1.451662,0,5.436287,-2.05296,-1.872644,6.965088,-1.872644,0,6.965088,-2.648318,2.648318,6.965088,-2.887646E-14,2.05296,5.436287,-1.443823E-14,1.872644,6.965088,1.872644,1.451662,5.436287,1.451662,1.451662,5.436287,1.451662,0,5.436287,2.05296,1.872644,6.965088,1.872644,0,6.965088,2.648318,1.872644,6.965088,-1.872644,1.451662,5.436287,-1.451662,2.648318,6.965088,-2.887646E-14,2.05296,5.436287,-1.443823E-14,-1.927976,11.50781,-4.331469E-14,-1.363285,11.50781,1.363285,-2.648318,6.965088,-2.887646E-14,-1.872644,6.965088,1.872644,2.05296,5.436287,-1.443823E-14,1.451662,5.436287,-1.451662,1.451662,5.436287,1.451662,0,5.436287,2.05296,0.2890224,5.436287,0.2890224,-0.2890224,5.436287,0.2890224,-1.451662,5.436287,1.451662,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,0,5.436287,-2.05296,-1.451662,5.436287,-1.451662,-2.05296,5.436287,-1.443823E-14,-1.363285,11.50781,-1.363285,0,11.50781,-1.927976,-0.6870955,13.82285,-0.6870955,0,13.82285,-0.9716997,-1.872644,6.965088,-1.872644,-1.363285,11.50781,-1.363285,-2.648318,6.965088,-2.887646E-14,-1.927976,11.50781,-4.331469E-14,0,13.82285,-0.9716997,0,14.30333,-0.4337946,-0.6870955,13.82285,-0.6870955,-0.3067391,14.30333,-0.3067391,0.9716997,13.82285,-5.775292E-14,1.927976,11.50781,-4.331469E-14,0.6870955,13.82285,0.6870955,1.363285,11.50781,1.363285,-0.3067391,14.30333,-0.3067391,-0.4337946,14.30333,-5.775292E-14,-0.6870955,13.82285,-0.6870955,-0.9716997,13.82285,-5.775292E-14,-0.3067391,14.30333,0.3067391,-0.6870955,13.82285,0.6870955,-0.4337946,14.30333,-5.775292E-14,-0.9716997,13.82285,-5.775292E-14,-1.872644,6.965088,-1.872644,0,6.965088,-2.648318,-1.363285,11.50781,-1.363285,0,11.50781,-1.927976,1.872644,6.965088,1.872644,0,6.965088,2.648318,1.363285,11.50781,1.363285,0,11.50781,1.927976,0.9716997,13.82285,-5.775292E-14,0.6870955,13.82285,0.6870955,0.4337946,14.30333,-5.775292E-14,0.3067391,14.30333,0.3067391,0,14.30333,0.4337946,0,13.82285,0.9716997,-0.3067391,14.30333,0.3067391,-0.6870955,13.82285,0.6870955,-1.363285,11.50781,-1.363285,-0.6870955,13.82285,-0.6870955,-1.927976,11.50781,-4.331469E-14,-0.9716997,13.82285,-5.775292E-14,0.9716997,13.82285,-5.775292E-14,0.4337946,14.30333,-5.775292E-14,0.6870955,13.82285,-0.6870955,0.3067391,14.30333,-0.3067391,1.363285,11.50781,-1.363285,1.927976,11.50781,-4.331469E-14,0.6870955,13.82285,-0.6870955,0.9716997,13.82285,-5.775292E-14,0.4337946,14.30333,-5.775292E-14,0.3067391,14.30333,0.3067391,0.3067391,14.30333,-0.3067391,0,14.30333,-0.4337946,0,14.30333,0.4337946,-0.3067391,14.30333,-0.3067391,-0.3067391,14.30333,0.3067391,-0.4337946,14.30333,-5.775292E-14,1.927976,11.50781,-4.331469E-14,2.648318,6.965088,-2.887646E-14,1.363285,11.50781,1.363285,1.872644,6.965088,1.872644,-0.9716997,13.82285,-5.775292E-14,-0.6870955,13.82285,0.6870955,-1.927976,11.50781,-4.331469E-14,-1.363285,11.50781,1.363285 + } + PolygonVertexIndex: *396 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,45,-44,46,40,-48,41,47,-41,45,46,-48,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,57,-60,61,60,-60,57,62,-57,63,56,-63,61,63,-63,59,63,-62,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,153,-156,157,156,-156,158,157,-156,159,157,-159,156,160,-154,161,153,-161,159,161,-161,162,161,-160,158,162,-160,163,162,-159,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,217,-220,221,220,-220,222,220,-222,223,222,-222,224,226,-226,227,225,-227,228,230,-230,231,229,-231 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1188 { + a: 0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,0.265998,0.7189265,-0.6421759,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,-0.3786418,0.144953,0.914122,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,0.914122,0.144953,-0.3786418,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.8693262,-0.3385404,-0.3600867,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,-0.3575325,0.3565464,0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,-0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,0.3575325,0.3565464,0.86316,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,-0.8693262,-0.3385404,0.3600867,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,0.3786418,0.144953,-0.914122,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,-0.3600867,-0.3385404,0.8693262,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.265998,0.7189265,0.6421759,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,-0.3600867,-0.3385404,-0.8693262,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.8693262,-0.3385404,0.3600867,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.3600867,-0.3385404,0.8693262,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,0.8693262,-0.3385404,-0.3600867,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,-0.914122,0.144953,0.3786418,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.3575325,0.3565464,-0.86316,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.914122,0.144953,-0.3786418,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,-0.265998,0.7189265,-0.6421759,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,0.86316,0.3565464,0.3575325,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,-0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.6421759,0.7189265,0.265998,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,-0.3786418,0.144953,-0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.3786418,0.144953,0.914122,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,0.6421759,0.7189265,0.265998,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.265998,0.7189265,0.6421759,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,-0.86316,0.3565464,-0.3575325,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.6421759,0.7189265,-0.265998,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0.86316,0.3565464,-0.3575325,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,0.914122,0.144953,0.3786418,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325,-0.86316,0.3565464,0.3575325 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *464 { + a: 2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,-2.954583,-0.8130127,-1.920479,2.945041,2.954583,-0.8130127,1.920479,2.945041,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,-0.2988975,6.876705,-0.2988975,7.892138,0.513449,6.876705,0.513449,7.892138,-0.5478424,-0.7689713,0.7623939,-0.7689713,-0.2988975,-2.758808,0.513449,-2.758808,-1.677004,6.644963,-3.64261,7.042224,-1.605594,8.2812,-3.598336,8.056692,2.954583,2.954583,2.954583,-2.954583,-2.954583,2.954583,-2.954583,-2.954583,1.70394,6.646138,1.63253,8.282376,3.669546,7.0434,3.625272,8.057867,0.7623939,3.0786,-0.5478424,3.0786,0.513449,5.068437,-0.2988975,5.068437,-1.137884,21.33202,-0.5478424,6.565524,-1.920479,3.525083,1.920479,3.525083,0.7623939,6.565524,0.7623939,8.20332,1.137884,21.33202,-0.5478424,8.20332,1.314784,15.35208,3.631864,15.19106,1.371996,14.04309,3.666191,14.40566,-1.326185,15.35258,-1.383397,14.04359,-3.643265,15.19155,-3.677593,14.40616,-1.920479,3.525083,0.6048647,13.96979,1.920479,3.525083,1.137884,21.33202,0.6048647,15.28003,-0.7053715,15.28003,-0.7053715,13.96979,-1.137884,21.33202,0.6048647,3.650196,-0.7053715,3.650196,0.3428175,5.958035,-0.4433243,5.958035,1.920479,3.525083,-1.920479,3.525083,1.137884,21.33202,-1.137884,21.33202,1.920479,3.525083,-1.920479,3.525083,1.137884,21.33202,-1.137884,21.33202,0.3428175,14.23184,-0.4433243,14.23184,0.3428175,15.01798,-0.4433243,15.01798,0.6048647,-0.328979,0.3428175,-2.636818,-0.7053715,-0.328979,-0.4433243,-2.636818,-1.46399,35.28609,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,-3.99003,29.0635,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,-3.99003,29.0635,3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,1.46399,35.28609,-1.46399,35.28609,0.6535669,38.00755,-0.6535669,38.00755,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.99003,29.0635,3.093046,22.66689,-3.99003,29.0635,-3.093046,22.66689,3.093046,22.66689,-3.093046,22.66689,3.99003,29.0635,-3.99003,29.0635,3.99003,29.0635,3.093046,22.66689,-3.99003,29.0635,-3.093046,22.66689,-2.904742,43.81132,2.904742,43.81132,-3.99003,25.73569,3.99003,25.73569,8.08252,-5.684342E-14,5.715205,-5.715205,5.715205,5.715205,0,8.08252,1.137884,1.137884,-1.137884,1.137884,-5.715205,5.715205,-1.137884,-1.137884,1.137884,-1.137884,0,-8.08252,-5.715205,-5.715205,-8.08252,-5.684342E-14,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,-3.99003,25.73569,-2.904742,43.81132,3.99003,25.73569,2.904742,43.81132,-1.46399,35.28609,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,1.46399,49.58384,2.904742,39.82835,-1.46399,49.58384,-2.904742,39.82835,-0.6535669,38.00755,0.6535669,38.00755,-1.46399,35.28609,1.46399,35.28609,0.6535669,38.00755,1.46399,35.28609,-0.6535669,38.00755,-1.46399,35.28609,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,3.99003,25.73569,-3.99003,25.73569,2.904742,43.81132,-2.904742,43.81132,1.46399,35.28609,-1.46399,35.28609,0.6535669,38.00755,-0.6535669,38.00755,0.6535669,38.00755,1.46399,35.28609,-0.6535669,38.00755,-1.46399,35.28609,-2.904742,39.82835,-1.46399,49.58384,2.904742,39.82835,1.46399,49.58384,-1.46399,35.28609,-0.6535669,38.00755,1.46399,35.28609,0.6535669,38.00755,2.904742,39.82835,-2.904742,39.82835,1.46399,49.58384,-1.46399,49.58384,-1.707853,-2.273737E-13,-1.207634,1.207634,-1.207634,-1.207634,0,-1.707853,0,1.707853,1.207634,-1.207634,1.207634,1.207634,1.707853,-2.273737E-13,2.904742,43.81132,3.99003,25.73569,-2.904742,43.81132,-3.99003,25.73569,-1.46399,49.58384,1.46399,49.58384,-2.904742,39.82835,2.904742,39.82835 + } + UVIndex: *396 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,46,45,43,46,40,47,41,47,40,45,46,47,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,57,59,61,60,59,57,62,56,63,56,62,61,63,62,59,63,61,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,153,155,157,156,155,158,157,155,159,157,158,156,160,153,161,153,160,159,161,160,162,161,159,158,162,159,163,162,158,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,217,219,221,220,219,222,220,221,223,222,221,224,226,225,227,225,226,228,230,229,231,229,230 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *132 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_cone_fall, Model::RootNode + C: "OO",5000459404509870952,0 + + ;Geometry::, Model::Mesh tree_cone_fall + C: "OO",4900632101479407286,5000459404509870952 + + ;Material::woodBirch, Model::Mesh tree_cone_fall + C: "OO",3050,5000459404509870952 + + ;Material::leafsFall, Model::Mesh tree_cone_fall + C: "OO",3028,5000459404509870952 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_fall.fbx.import new file mode 100644 index 0000000..8b60aa6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_cone_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://casrfsdt5k7w3" +path="res://.godot/imported/tree_cone_fall.fbx-5934d8b5c29157471f8d02e5ef21d7ca.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_cone_fall.fbx" +dest_files=["res://.godot/imported/tree_cone_fall.fbx-5934d8b5c29157471f8d02e5ef21d7ca.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_default.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_default.fbx new file mode 100644 index 0000000..be7b674 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_default.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 36 + Millisecond: 807 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_default.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_default.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4950450784633931576, "Model::tree_default", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4807946401315389261, "Geometry::", "Mesh" { + Vertices: *576 { + a: 0.2941937,5.362355,0.5199339,-0.2808062,5.362355,0.5199339,0.2165687,5.466605,1.36708,-0.2031813,5.466605,1.36708,0.4739102,6.828754,-0.2028732,1.221828,6.906879,-0.1482482,0.4590095,7.30352,-0.2028732,1.210354,7.272449,-0.1482482,1.210354,7.272449,-0.1482482,1.210354,7.272449,0.2175018,0.4590095,7.30352,-0.2028732,0.4590095,7.30352,0.2721268,0.3298907,1.925519,-0.6278008,0.2391407,2.038967,-1.349597,-0.2201093,1.925519,-0.6278008,-0.1293593,2.038967,-1.349597,-0.2808062,5.937072,0.5018963,-0.2031813,5.88615,1.353913,-0.2808062,5.362355,0.5199339,-0.2031813,5.466605,1.36708,0.688234,0,-0.688234,-0.2201093,1.925519,-0.6278008,-0.688234,0,-0.688234,-0.4370287,8.003875,-0.4370287,-0.2201093,2.475247,-0.6105472,0.3298907,2.475247,-0.6105472,0.3298907,1.925519,-0.6278008,0.4370287,8.003875,-0.4370287,0.2391407,2.038967,-1.349597,0.3298907,1.925519,-0.6278008,0.2391407,2.407286,-1.338037,0.3298907,2.475247,-0.6105472,1.210354,7.272449,-0.1482482,1.221828,6.906879,-0.1482482,1.210354,7.272449,0.2175018,1.221828,6.906879,0.2175018,-0.5981585,2.869977,0.3604403,-1.444634,2.995593,0.2614402,-0.5793365,3.469682,0.3604403,-1.432024,3.397395,0.2614402,-0.4370287,8.003875,-0.4370287,-0.5981585,2.869977,-0.2395597,-0.688234,0,-0.688234,-0.688234,0,0.688234,-0.5981585,2.869977,0.3604403,-0.5793365,3.469682,0.3604403,-0.4370287,8.003875,0.4370287,-0.5793365,3.469682,-0.2395597,1.221828,6.906879,0.2175018,1.221828,6.906879,-0.1482482,0.4739102,6.828754,0.2721268,0.4739102,6.828754,-0.2028732,-0.1293593,2.038967,-1.349597,-0.1293593,2.407286,-1.338037,-0.2201093,1.925519,-0.6278008,-0.2201093,2.475247,-0.6105472,0.688234,0,0.688234,0.688234,0,-0.688234,-0.688234,0,0.688234,-0.688234,0,-0.688234,0.4739102,6.828754,0.2721268,0.4590095,7.30352,0.2721268,1.221828,6.906879,0.2175018,1.210354,7.272449,0.2175018,0.2941937,5.937072,0.5018963,0.2941937,5.362355,0.5199339,0.2165687,5.88615,1.353913,0.2165687,5.466605,1.36708,-0.688234,0,0.688234,0.2941937,5.362355,0.5199339,0.688234,0,0.688234,0.4370287,8.003875,0.4370287,0.2941937,5.937072,0.5018963,-0.2808062,5.937072,0.5018963,-0.2808062,5.362355,0.5199339,-0.4370287,8.003875,0.4370287,0.2941937,5.937072,0.5018963,0.2165687,5.88615,1.353913,-0.2808062,5.937072,0.5018963,-0.2031813,5.88615,1.353913,0.3298907,2.475247,-0.6105472,-0.2201093,2.475247,-0.6105472,0.2391407,2.407286,-1.338037,-0.1293593,2.407286,-1.338037,0.4370287,8.003875,-0.4370287,0.4590095,7.30352,-0.2028732,0.4370287,8.003875,0.4370287,0.4590095,7.30352,0.2721268,0.4739102,6.828754,0.2721268,0.4739102,6.828754,-0.2028732,0.688234,0,0.688234,0.688234,0,-0.688234,0.2165687,5.466605,1.36708,-0.2031813,5.466605,1.36708,0.2165687,5.88615,1.353913,-0.2031813,5.88615,1.353913,-0.1293593,2.038967,-1.349597,0.2391407,2.038967,-1.349597,-0.1293593,2.407286,-1.338037,0.2391407,2.407286,-1.338037,-0.5981585,2.869977,0.3604403,-0.5981585,2.869977,-0.2395597,-1.444634,2.995593,0.2614402,-1.444634,2.995593,-0.1405597,-0.5981585,2.869977,-0.2395597,-0.5793365,3.469682,-0.2395597,-1.444634,2.995593,-0.1405597,-1.432024,3.397395,-0.1405597,-0.5793365,3.469682,-0.2395597,-0.5793365,3.469682,0.3604403,-1.432024,3.397395,-0.1405597,-1.432024,3.397395,0.2614402,-1.444634,2.995593,-0.1405597,-1.432024,3.397395,-0.1405597,-1.444634,2.995593,0.2614402,-1.432024,3.397395,0.2614402,-2.9445,8.003875,0,-3.775,9.553875,0,-1.47225,8.003875,2.550013,-1.8875,9.553875,3.269245,3.775,9.553875,0,2.9445,8.003875,0,1.8875,9.553875,3.269245,1.47225,8.003875,2.550013,2.9445,8.003875,0,1.47225,8.003875,-2.550013,1.47225,8.003875,2.550013,0.4370287,8.003875,0.4370287,-1.47225,8.003875,2.550013,-0.4370287,8.003875,0.4370287,-0.4370287,8.003875,-0.4370287,0.4370287,8.003875,-0.4370287,-1.47225,8.003875,-2.550013,-2.9445,8.003875,0,0,17.07887,0,1.453375,15.00387,2.51732,-1.453375,15.00387,2.51732,1.8875,9.553875,-3.269245,1.47225,8.003875,-2.550013,3.775,9.553875,0,2.9445,8.003875,0,-1.8875,9.553875,-3.269245,-1.453375,15.00387,-2.51732,-3.775,9.553875,0,-2.90675,15.00387,0,1.8875,9.553875,-3.269245,3.775,9.553875,0,1.453375,15.00387,-2.51732,2.90675,15.00387,0,2.90675,15.00387,0,3.775,9.553875,0,1.453375,15.00387,2.51732,1.8875,9.553875,3.269245,2.90675,15.00387,0,1.453375,15.00387,2.51732,0,17.07887,0,1.8875,9.553875,3.269245,-1.8875,9.553875,3.269245,1.453375,15.00387,2.51732,-1.453375,15.00387,2.51732,-1.47225,8.003875,-2.550013,1.47225,8.003875,-2.550013,-1.8875,9.553875,-3.269245,1.8875,9.553875,-3.269245,-1.8875,9.553875,-3.269245,-3.775,9.553875,0,-1.47225,8.003875,-2.550013,-2.9445,8.003875,0,1.47225,8.003875,2.550013,-1.47225,8.003875,2.550013,1.8875,9.553875,3.269245,-1.8875,9.553875,3.269245,-3.775,9.553875,0,-2.90675,15.00387,0,-1.8875,9.553875,3.269245,-1.453375,15.00387,2.51732,-1.453375,15.00387,-2.51732,0,17.07887,0,-2.90675,15.00387,0,-1.8875,9.553875,-3.269245,1.8875,9.553875,-3.269245,-1.453375,15.00387,-2.51732,1.453375,15.00387,-2.51732,1.453375,15.00387,-2.51732,0,17.07887,0,-1.453375,15.00387,-2.51732,1.453375,15.00387,-2.51732,2.90675,15.00387,0,0,17.07887,0,0,17.07887,0,-1.453375,15.00387,2.51732,-2.90675,15.00387,0 + } + PolygonVertexIndex: *342 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,21,-24,25,24,-24,21,26,-21,27,20,-27,25,27,-27,23,27,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,45,-44,46,40,-48,41,47,-41,45,46,-48,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,69,-72,73,72,-72,69,74,-69,75,68,-75,73,75,-75,71,75,-74,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,85,89,-85,89,90,-85,88,90,-90,86,90,-89,91,84,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,127,-127,129,127,-129,130,129,-129,127,131,-126,132,125,-132,130,132,-132,128,132,-131,133,132,-129,134,136,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,181,-181,182,180,-182,183,185,-185,186,188,-188,189,191,-191 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1026 { + a: 0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7716424,0.6360566,0,0.7716424,0.6360566,0,0.7716424,0.6360566,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *384 { + a: 1.158243,4.610208,-1.105536,4.610208,0.8526326,7.970589,-0.7999265,7.970589,-1.802873,26.88267,-4.755273,27.19025,-1.744364,28.75183,-4.71022,28.6295,0.5836543,-3.578113,-0.8563063,-3.578113,0.7987134,-0.6175358,-1.071365,-0.6175358,-1.298782,3.618743,-0.9414989,6.495347,0.8665719,3.618743,0.5092885,6.495347,1.867295,23.37055,5.235584,23.17007,1.938016,21.10788,5.28721,21.51831,-2.709583,-0.08499963,0.8665719,7.499515,2.709583,-0.08499963,1.720586,31.44184,0.8665719,9.664867,-1.298782,9.664867,-1.298782,7.499515,-1.720586,31.44184,5.155391,8.021159,2.291302,7.574507,5.110232,9.471243,2.2239,9.738811,0.5836543,28.46811,0.5836543,27.02815,-0.8563063,28.46811,-0.8563063,27.02815,-2.175069,11.29295,-5.530366,11.7875,-2.101464,13.65401,-5.481051,13.36941,-1.720586,31.44184,-0.9431484,11.21969,-2.709583,-0.08499962,2.709583,-0.08499962,1.419056,11.21969,1.419056,13.58189,1.720586,31.44184,-0.9431484,13.58189,-0.8563063,7.609377,0.5836543,7.609377,-1.071365,4.648799,0.7987134,4.648799,-5.209047,8.02283,-5.163888,9.472914,-2.344958,7.576178,-2.277556,9.740481,2.709583,2.709583,2.709583,-2.709583,-2.709583,2.709583,-2.709583,-2.709583,1.783077,26.88205,1.724568,28.75121,4.735477,27.18963,4.690424,28.62888,-1.862504,23.3704,-1.933224,21.10773,-5.230793,23.16992,-5.282419,21.51816,-2.709583,-0.08499962,1.158243,21.03703,2.709583,-0.08499962,1.720586,31.44184,1.158243,23.30081,-1.105536,23.30081,-1.105536,21.03703,-1.720586,31.44184,1.158243,-0.5779288,0.8526326,-3.938311,-1.105536,-0.5779288,-0.7999265,-3.938311,-1.298782,-1.486877,0.8665719,-1.486877,-0.9414989,-4.363482,0.5092885,-4.363482,1.720586,31.44184,0.7987134,28.68318,-1.720585,31.44184,-1.071365,28.68318,-1.071365,26.8131,0.7987134,26.8131,-2.709582,-0.08499966,2.709583,-0.08499965,0.8526326,21.34264,-0.7999265,21.34264,0.8526326,22.9952,-0.7999265,22.9952,0.5092885,7.8568,-0.9414989,7.8568,0.5092885,9.307588,-0.9414989,9.307588,1.419056,3.988046,-0.9431484,3.988046,1.029292,7.357124,-0.5533847,7.357124,2.230099,11.29466,2.156494,13.65572,5.585397,11.78921,5.536081,13.37112,-0.9431484,-1.118783,1.419056,-1.118783,-0.5533847,-4.487861,1.029292,-4.487861,-0.5533847,11.60945,-0.5533847,13.19213,1.029292,11.60945,1.029292,13.19213,-5.79626,32.80966,-7.431103,39.53699,5.796262,32.80967,7.431098,39.53699,7.431103,39.53699,5.79626,32.80966,-7.431098,39.53699,-5.796262,32.80967,11.59252,0,5.79626,-10.03942,5.79626,10.03942,1.720586,1.720586,-5.79626,10.03942,-1.720586,1.720586,-1.720586,-1.720586,1.720586,-1.720586,-5.79626,-10.03942,-11.59252,0,0,42.76823,5.721948,29.92458,-5.721948,29.92458,7.431098,39.53699,5.796262,32.80967,-7.431103,39.53699,-5.79626,32.80966,-7.431098,35.50159,-5.721951,57.16153,7.431104,35.50159,5.72195,57.16154,7.431098,35.50159,-7.431104,35.50159,5.721951,57.16153,-5.72195,57.16154,5.72195,57.16154,7.431104,35.50159,-5.721951,57.16153,-7.431098,35.50159,5.721949,29.92458,-5.721951,29.92458,-1.776357E-15,42.76823,7.431103,35.50159,-7.431103,35.50159,5.721948,57.16154,-5.721948,57.16154,5.79626,32.80967,-5.79626,32.80967,7.431103,39.53699,-7.431103,39.53699,-7.431098,39.53699,7.431103,39.53699,-5.796262,32.80967,5.79626,32.80966,5.79626,32.80967,-5.79626,32.80967,7.431103,39.53699,-7.431103,39.53699,-7.431104,35.50159,-5.72195,57.16154,7.431098,35.50159,5.721951,57.16153,-5.721951,29.92458,0,42.76823,5.721949,29.92458,7.431103,35.50159,-7.431103,35.50159,5.721948,57.16154,-5.721948,57.16154,-5.721948,29.92458,0,42.76823,5.721948,29.92458,5.721951,29.92458,-5.721949,29.92458,1.776357E-15,42.76823,-1.776357E-15,42.76823,5.721951,29.92458,-5.721949,29.92458 + } + UVIndex: *342 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,21,23,25,24,23,21,26,20,27,20,26,25,27,26,23,27,25,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,46,45,43,46,40,47,41,47,40,45,46,47,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,69,71,73,72,71,69,74,68,75,68,74,73,75,74,71,75,73,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,85,89,84,89,90,84,88,90,89,86,90,88,91,84,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,127,126,129,127,128,130,129,128,127,131,125,132,125,131,130,132,131,128,132,130,133,132,128,134,136,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,155,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,181,180,182,180,181,183,185,184,186,188,187,189,191,190 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *114 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_default, Model::RootNode + C: "OO",4950450784633931576,0 + + ;Geometry::, Model::Mesh tree_default + C: "OO",4807946401315389261,4950450784633931576 + + ;Material::woodBark, Model::Mesh tree_default + C: "OO",3046,4950450784633931576 + + ;Material::leafsGreen, Model::Mesh tree_default + C: "OO",3030,4950450784633931576 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_default.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_default.fbx.import new file mode 100644 index 0000000..cf608fa --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_default.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bxf7d2hmaovdu" +path="res://.godot/imported/tree_default.fbx-c66764402931b40df2e7c392b9b1a24a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_default.fbx" +dest_files=["res://.godot/imported/tree_default.fbx-c66764402931b40df2e7c392b9b1a24a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_default_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_default_dark.fbx new file mode 100644 index 0000000..b30a8b5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_default_dark.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 36 + Millisecond: 900 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_default_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_default_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5179303627456951897, "Model::tree_default_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4735148082292502504, "Geometry::", "Mesh" { + Vertices: *576 { + a: 0.2941937,5.362355,0.5199339,-0.2808062,5.362355,0.5199339,0.2165687,5.466605,1.36708,-0.2031813,5.466605,1.36708,0.4739102,6.828754,-0.2028732,1.221828,6.906879,-0.1482482,0.4590095,7.30352,-0.2028732,1.210354,7.272449,-0.1482482,1.210354,7.272449,-0.1482482,1.210354,7.272449,0.2175018,0.4590095,7.30352,-0.2028732,0.4590095,7.30352,0.2721268,0.3298907,1.925519,-0.6278008,0.2391407,2.038967,-1.349597,-0.2201093,1.925519,-0.6278008,-0.1293593,2.038967,-1.349597,-0.2808062,5.937072,0.5018963,-0.2031813,5.88615,1.353913,-0.2808062,5.362355,0.5199339,-0.2031813,5.466605,1.36708,0.688234,0,-0.688234,-0.2201093,1.925519,-0.6278008,-0.688234,0,-0.688234,-0.4370287,8.003875,-0.4370287,-0.2201093,2.475247,-0.6105472,0.3298907,2.475247,-0.6105472,0.3298907,1.925519,-0.6278008,0.4370287,8.003875,-0.4370287,0.2391407,2.038967,-1.349597,0.3298907,1.925519,-0.6278008,0.2391407,2.407286,-1.338037,0.3298907,2.475247,-0.6105472,1.210354,7.272449,-0.1482482,1.221828,6.906879,-0.1482482,1.210354,7.272449,0.2175018,1.221828,6.906879,0.2175018,-0.5981585,2.869977,0.3604403,-1.444634,2.995593,0.2614402,-0.5793365,3.469682,0.3604403,-1.432024,3.397395,0.2614402,-0.4370287,8.003875,-0.4370287,-0.5981585,2.869977,-0.2395597,-0.688234,0,-0.688234,-0.688234,0,0.688234,-0.5981585,2.869977,0.3604403,-0.5793365,3.469682,0.3604403,-0.4370287,8.003875,0.4370287,-0.5793365,3.469682,-0.2395597,1.221828,6.906879,0.2175018,1.221828,6.906879,-0.1482482,0.4739102,6.828754,0.2721268,0.4739102,6.828754,-0.2028732,-0.1293593,2.038967,-1.349597,-0.1293593,2.407286,-1.338037,-0.2201093,1.925519,-0.6278008,-0.2201093,2.475247,-0.6105472,0.688234,0,0.688234,0.688234,0,-0.688234,-0.688234,0,0.688234,-0.688234,0,-0.688234,0.4739102,6.828754,0.2721268,0.4590095,7.30352,0.2721268,1.221828,6.906879,0.2175018,1.210354,7.272449,0.2175018,0.2941937,5.937072,0.5018963,0.2941937,5.362355,0.5199339,0.2165687,5.88615,1.353913,0.2165687,5.466605,1.36708,-0.688234,0,0.688234,0.2941937,5.362355,0.5199339,0.688234,0,0.688234,0.4370287,8.003875,0.4370287,0.2941937,5.937072,0.5018963,-0.2808062,5.937072,0.5018963,-0.2808062,5.362355,0.5199339,-0.4370287,8.003875,0.4370287,0.2941937,5.937072,0.5018963,0.2165687,5.88615,1.353913,-0.2808062,5.937072,0.5018963,-0.2031813,5.88615,1.353913,0.3298907,2.475247,-0.6105472,-0.2201093,2.475247,-0.6105472,0.2391407,2.407286,-1.338037,-0.1293593,2.407286,-1.338037,0.4370287,8.003875,-0.4370287,0.4590095,7.30352,-0.2028732,0.4370287,8.003875,0.4370287,0.4590095,7.30352,0.2721268,0.4739102,6.828754,0.2721268,0.4739102,6.828754,-0.2028732,0.688234,0,0.688234,0.688234,0,-0.688234,0.2165687,5.466605,1.36708,-0.2031813,5.466605,1.36708,0.2165687,5.88615,1.353913,-0.2031813,5.88615,1.353913,-0.1293593,2.038967,-1.349597,0.2391407,2.038967,-1.349597,-0.1293593,2.407286,-1.338037,0.2391407,2.407286,-1.338037,-0.5981585,2.869977,0.3604403,-0.5981585,2.869977,-0.2395597,-1.444634,2.995593,0.2614402,-1.444634,2.995593,-0.1405597,-0.5981585,2.869977,-0.2395597,-0.5793365,3.469682,-0.2395597,-1.444634,2.995593,-0.1405597,-1.432024,3.397395,-0.1405597,-0.5793365,3.469682,-0.2395597,-0.5793365,3.469682,0.3604403,-1.432024,3.397395,-0.1405597,-1.432024,3.397395,0.2614402,-1.444634,2.995593,-0.1405597,-1.432024,3.397395,-0.1405597,-1.444634,2.995593,0.2614402,-1.432024,3.397395,0.2614402,-2.9445,8.003875,0,-3.775,9.553875,0,-1.47225,8.003875,2.550013,-1.8875,9.553875,3.269245,3.775,9.553875,0,2.9445,8.003875,0,1.8875,9.553875,3.269245,1.47225,8.003875,2.550013,2.9445,8.003875,0,1.47225,8.003875,-2.550013,1.47225,8.003875,2.550013,0.4370287,8.003875,0.4370287,-1.47225,8.003875,2.550013,-0.4370287,8.003875,0.4370287,-0.4370287,8.003875,-0.4370287,0.4370287,8.003875,-0.4370287,-1.47225,8.003875,-2.550013,-2.9445,8.003875,0,0,17.07887,0,1.453375,15.00387,2.51732,-1.453375,15.00387,2.51732,1.8875,9.553875,-3.269245,1.47225,8.003875,-2.550013,3.775,9.553875,0,2.9445,8.003875,0,-1.8875,9.553875,-3.269245,-1.453375,15.00387,-2.51732,-3.775,9.553875,0,-2.90675,15.00387,0,1.8875,9.553875,-3.269245,3.775,9.553875,0,1.453375,15.00387,-2.51732,2.90675,15.00387,0,2.90675,15.00387,0,3.775,9.553875,0,1.453375,15.00387,2.51732,1.8875,9.553875,3.269245,2.90675,15.00387,0,1.453375,15.00387,2.51732,0,17.07887,0,1.8875,9.553875,3.269245,-1.8875,9.553875,3.269245,1.453375,15.00387,2.51732,-1.453375,15.00387,2.51732,-1.47225,8.003875,-2.550013,1.47225,8.003875,-2.550013,-1.8875,9.553875,-3.269245,1.8875,9.553875,-3.269245,-1.8875,9.553875,-3.269245,-3.775,9.553875,0,-1.47225,8.003875,-2.550013,-2.9445,8.003875,0,1.47225,8.003875,2.550013,-1.47225,8.003875,2.550013,1.8875,9.553875,3.269245,-1.8875,9.553875,3.269245,-3.775,9.553875,0,-2.90675,15.00387,0,-1.8875,9.553875,3.269245,-1.453375,15.00387,2.51732,-1.453375,15.00387,-2.51732,0,17.07887,0,-2.90675,15.00387,0,-1.8875,9.553875,-3.269245,1.8875,9.553875,-3.269245,-1.453375,15.00387,-2.51732,1.453375,15.00387,-2.51732,1.453375,15.00387,-2.51732,0,17.07887,0,-1.453375,15.00387,-2.51732,1.453375,15.00387,-2.51732,2.90675,15.00387,0,0,17.07887,0,0,17.07887,0,-1.453375,15.00387,2.51732,-2.90675,15.00387,0 + } + PolygonVertexIndex: *342 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,21,-24,25,24,-24,21,26,-21,27,20,-27,25,27,-27,23,27,-26,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,41,-44,45,44,-44,46,45,-44,46,40,-48,41,47,-41,45,46,-48,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,69,-72,73,72,-72,69,74,-69,75,68,-75,73,75,-75,71,75,-74,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,87,-87,85,89,-85,89,90,-85,88,90,-90,86,90,-89,91,84,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,127,-127,129,127,-129,130,129,-129,127,131,-126,132,125,-132,130,132,-132,128,132,-131,133,132,-129,134,136,-136,137,139,-139,140,138,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,181,-181,182,180,-182,183,185,-185,186,188,-188,189,191,-191 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1026 { + a: 0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7716424,0.6360566,0,0.7716424,0.6360566,0,0.7716424,0.6360566,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *384 { + a: 1.158243,4.610208,-1.105536,4.610208,0.8526326,7.970589,-0.7999265,7.970589,-1.802873,26.88267,-4.755273,27.19025,-1.744364,28.75183,-4.71022,28.6295,0.5836543,-3.578113,-0.8563063,-3.578113,0.7987134,-0.6175358,-1.071365,-0.6175358,-1.298782,3.618743,-0.9414989,6.495347,0.8665719,3.618743,0.5092885,6.495347,1.867295,23.37055,5.235584,23.17007,1.938016,21.10788,5.28721,21.51831,-2.709583,-0.08499963,0.8665719,7.499515,2.709583,-0.08499963,1.720586,31.44184,0.8665719,9.664867,-1.298782,9.664867,-1.298782,7.499515,-1.720586,31.44184,5.155391,8.021159,2.291302,7.574507,5.110232,9.471243,2.2239,9.738811,0.5836543,28.46811,0.5836543,27.02815,-0.8563063,28.46811,-0.8563063,27.02815,-2.175069,11.29295,-5.530366,11.7875,-2.101464,13.65401,-5.481051,13.36941,-1.720586,31.44184,-0.9431484,11.21969,-2.709583,-0.08499962,2.709583,-0.08499962,1.419056,11.21969,1.419056,13.58189,1.720586,31.44184,-0.9431484,13.58189,-0.8563063,7.609377,0.5836543,7.609377,-1.071365,4.648799,0.7987134,4.648799,-5.209047,8.02283,-5.163888,9.472914,-2.344958,7.576178,-2.277556,9.740481,2.709583,2.709583,2.709583,-2.709583,-2.709583,2.709583,-2.709583,-2.709583,1.783077,26.88205,1.724568,28.75121,4.735477,27.18963,4.690424,28.62888,-1.862504,23.3704,-1.933224,21.10773,-5.230793,23.16992,-5.282419,21.51816,-2.709583,-0.08499962,1.158243,21.03703,2.709583,-0.08499962,1.720586,31.44184,1.158243,23.30081,-1.105536,23.30081,-1.105536,21.03703,-1.720586,31.44184,1.158243,-0.5779288,0.8526326,-3.938311,-1.105536,-0.5779288,-0.7999265,-3.938311,-1.298782,-1.486877,0.8665719,-1.486877,-0.9414989,-4.363482,0.5092885,-4.363482,1.720586,31.44184,0.7987134,28.68318,-1.720585,31.44184,-1.071365,28.68318,-1.071365,26.8131,0.7987134,26.8131,-2.709582,-0.08499966,2.709583,-0.08499965,0.8526326,21.34264,-0.7999265,21.34264,0.8526326,22.9952,-0.7999265,22.9952,0.5092885,7.8568,-0.9414989,7.8568,0.5092885,9.307588,-0.9414989,9.307588,1.419056,3.988046,-0.9431484,3.988046,1.029292,7.357124,-0.5533847,7.357124,2.230099,11.29466,2.156494,13.65572,5.585397,11.78921,5.536081,13.37112,-0.9431484,-1.118783,1.419056,-1.118783,-0.5533847,-4.487861,1.029292,-4.487861,-0.5533847,11.60945,-0.5533847,13.19213,1.029292,11.60945,1.029292,13.19213,-5.79626,32.80966,-7.431103,39.53699,5.796262,32.80967,7.431098,39.53699,7.431103,39.53699,5.79626,32.80966,-7.431098,39.53699,-5.796262,32.80967,11.59252,0,5.79626,-10.03942,5.79626,10.03942,1.720586,1.720586,-5.79626,10.03942,-1.720586,1.720586,-1.720586,-1.720586,1.720586,-1.720586,-5.79626,-10.03942,-11.59252,0,0,42.76823,5.721948,29.92458,-5.721948,29.92458,7.431098,39.53699,5.796262,32.80967,-7.431103,39.53699,-5.79626,32.80966,-7.431098,35.50159,-5.721951,57.16153,7.431104,35.50159,5.72195,57.16154,7.431098,35.50159,-7.431104,35.50159,5.721951,57.16153,-5.72195,57.16154,5.72195,57.16154,7.431104,35.50159,-5.721951,57.16153,-7.431098,35.50159,5.721949,29.92458,-5.721951,29.92458,-1.776357E-15,42.76823,7.431103,35.50159,-7.431103,35.50159,5.721948,57.16154,-5.721948,57.16154,5.79626,32.80967,-5.79626,32.80967,7.431103,39.53699,-7.431103,39.53699,-7.431098,39.53699,7.431103,39.53699,-5.796262,32.80967,5.79626,32.80966,5.79626,32.80967,-5.79626,32.80967,7.431103,39.53699,-7.431103,39.53699,-7.431104,35.50159,-5.72195,57.16154,7.431098,35.50159,5.721951,57.16153,-5.721951,29.92458,0,42.76823,5.721949,29.92458,7.431103,35.50159,-7.431103,35.50159,5.721948,57.16154,-5.721948,57.16154,-5.721948,29.92458,0,42.76823,5.721948,29.92458,5.721951,29.92458,-5.721949,29.92458,1.776357E-15,42.76823,-1.776357E-15,42.76823,5.721951,29.92458,-5.721949,29.92458 + } + UVIndex: *342 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,21,23,25,24,23,21,26,20,27,20,26,25,27,26,23,27,25,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,41,43,45,44,43,46,45,43,46,40,47,41,47,40,45,46,47,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,69,71,73,72,71,69,74,68,75,68,74,73,75,74,71,75,73,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,87,86,85,89,84,89,90,84,88,90,89,86,90,88,91,84,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,127,126,129,127,128,130,129,128,127,131,125,132,125,131,130,132,131,128,132,130,133,132,128,134,136,135,137,139,138,140,138,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,155,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,181,180,182,180,181,183,185,184,186,188,187,189,191,190 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *114 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_default_dark, Model::RootNode + C: "OO",5179303627456951897,0 + + ;Geometry::, Model::Mesh tree_default_dark + C: "OO",4735148082292502504,5179303627456951897 + + ;Material::woodBarkDark, Model::Mesh tree_default_dark + C: "OO",3048,5179303627456951897 + + ;Material::leafsDark, Model::Mesh tree_default_dark + C: "OO",3026,5179303627456951897 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_default_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_default_dark.fbx.import new file mode 100644 index 0000000..9fbd42b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_default_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d1apagfeml7qc" +path="res://.godot/imported/tree_default_dark.fbx-6e7b1d04c23f3faee6cfd232cbb2813e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_default_dark.fbx" +dest_files=["res://.godot/imported/tree_default_dark.fbx-6e7b1d04c23f3faee6cfd232cbb2813e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_default_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_default_fall.fbx new file mode 100644 index 0000000..3bed254 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_default_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 37 + Millisecond: 11 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_default_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_default_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4763909531850385777, "Model::tree_default_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5420681195433699023, "Geometry::", "Mesh" { + Vertices: *1152 { + a: 0.2941937,5.362355,0.5199339,-0.2808062,5.362355,0.5199339,0.2165687,5.466605,1.36708,-0.2031813,5.466605,1.36708,0.2165687,5.466605,1.36708,-0.2808062,5.362355,0.5199339,0.2941937,5.362355,0.5199339,-0.2031813,5.466605,1.36708,0.4739102,6.828754,-0.2028732,1.221828,6.906879,-0.1482482,0.4590095,7.30352,-0.2028732,1.210354,7.272449,-0.1482482,0.4590095,7.30352,-0.2028732,1.221828,6.906879,-0.1482482,0.4739102,6.828754,-0.2028732,1.210354,7.272449,-0.1482482,1.210354,7.272449,-0.1482482,1.210354,7.272449,0.2175018,0.4590095,7.30352,-0.2028732,0.4590095,7.30352,0.2721268,0.4590095,7.30352,-0.2028732,1.210354,7.272449,0.2175018,1.210354,7.272449,-0.1482482,0.4590095,7.30352,0.2721268,0.3298907,1.925519,-0.6278008,0.2391407,2.038967,-1.349597,-0.2201093,1.925519,-0.6278008,-0.1293593,2.038967,-1.349597,-0.2201093,1.925519,-0.6278008,0.2391407,2.038967,-1.349597,0.3298907,1.925519,-0.6278008,-0.1293593,2.038967,-1.349597,-0.2808062,5.937072,0.5018963,-0.2031813,5.88615,1.353913,-0.2808062,5.362355,0.5199339,-0.2031813,5.466605,1.36708,-0.2808062,5.362355,0.5199339,-0.2031813,5.88615,1.353913,-0.2808062,5.937072,0.5018963,-0.2031813,5.466605,1.36708,-1.47225,8.003875,2.550013,-3.775,9.553875,0,-2.9445,8.003875,0,-1.8875,9.553875,3.269245,1.8875,9.553875,3.269245,2.9445,8.003875,0,3.775,9.553875,0,1.47225,8.003875,2.550013,0.688234,0,-0.688234,-0.2201093,1.925519,-0.6278008,-0.688234,0,-0.688234,-0.4370287,8.003875,-0.4370287,-0.2201093,2.475247,-0.6105472,0.3298907,2.475247,-0.6105472,0.3298907,1.925519,-0.6278008,0.4370287,8.003875,-0.4370287,-0.688234,0,-0.688234,-0.2201093,1.925519,-0.6278008,0.688234,0,-0.688234,-0.4370287,8.003875,-0.4370287,-0.2201093,2.475247,-0.6105472,0.3298907,2.475247,-0.6105472,0.3298907,1.925519,-0.6278008,0.4370287,8.003875,-0.4370287,0.2391407,2.038967,-1.349597,0.3298907,1.925519,-0.6278008,0.2391407,2.407286,-1.338037,0.3298907,2.475247,-0.6105472,0.2391407,2.407286,-1.338037,0.3298907,1.925519,-0.6278008,0.2391407,2.038967,-1.349597,0.3298907,2.475247,-0.6105472,1.210354,7.272449,-0.1482482,1.221828,6.906879,-0.1482482,1.210354,7.272449,0.2175018,1.221828,6.906879,0.2175018,1.210354,7.272449,0.2175018,1.221828,6.906879,-0.1482482,1.210354,7.272449,-0.1482482,1.221828,6.906879,0.2175018,1.47225,8.003875,2.550013,1.47225,8.003875,-2.550013,2.9445,8.003875,0,0.4370287,8.003875,0.4370287,-1.47225,8.003875,2.550013,-0.4370287,8.003875,0.4370287,-0.4370287,8.003875,-0.4370287,0.4370287,8.003875,-0.4370287,-1.47225,8.003875,-2.550013,-2.9445,8.003875,0,-0.5981585,2.869977,0.3604403,-1.444634,2.995593,0.2614402,-0.5793365,3.469682,0.3604403,-1.432024,3.397395,0.2614402,-0.5793365,3.469682,0.3604403,-1.444634,2.995593,0.2614402,-0.5981585,2.869977,0.3604403,-1.432024,3.397395,0.2614402,-1.453375,15.00387,2.51732,1.453375,15.00387,2.51732,0,17.07887,0,-0.4370287,8.003875,-0.4370287,-0.5981585,2.869977,-0.2395597,-0.688234,0,-0.688234,-0.688234,0,0.688234,-0.5981585,2.869977,0.3604403,-0.5793365,3.469682,0.3604403,-0.4370287,8.003875,0.4370287,-0.5793365,3.469682,-0.2395597,-0.688234,0,-0.688234,-0.5981585,2.869977,-0.2395597,-0.4370287,8.003875,-0.4370287,-0.688234,0,0.688234,-0.5981585,2.869977,0.3604403,-0.5793365,3.469682,0.3604403,-0.4370287,8.003875,0.4370287,-0.5793365,3.469682,-0.2395597,1.221828,6.906879,0.2175018,1.221828,6.906879,-0.1482482,0.4739102,6.828754,0.2721268,0.4739102,6.828754,-0.2028732,0.4739102,6.828754,0.2721268,1.221828,6.906879,-0.1482482,1.221828,6.906879,0.2175018,0.4739102,6.828754,-0.2028732,-0.1293593,2.038967,-1.349597,-0.1293593,2.407286,-1.338037,-0.2201093,1.925519,-0.6278008,-0.2201093,2.475247,-0.6105472,-0.2201093,1.925519,-0.6278008,-0.1293593,2.407286,-1.338037,-0.1293593,2.038967,-1.349597,-0.2201093,2.475247,-0.6105472,0.688234,0,0.688234,0.688234,0,-0.688234,-0.688234,0,0.688234,-0.688234,0,-0.688234,-0.688234,0,0.688234,0.688234,0,-0.688234,0.688234,0,0.688234,-0.688234,0,-0.688234,0.4739102,6.828754,0.2721268,0.4590095,7.30352,0.2721268,1.221828,6.906879,0.2175018,1.210354,7.272449,0.2175018,1.221828,6.906879,0.2175018,0.4590095,7.30352,0.2721268,0.4739102,6.828754,0.2721268,1.210354,7.272449,0.2175018,3.775,9.553875,0,1.47225,8.003875,-2.550013,1.8875,9.553875,-3.269245,2.9445,8.003875,0,0.2941937,5.937072,0.5018963,0.2941937,5.362355,0.5199339,0.2165687,5.88615,1.353913,0.2165687,5.466605,1.36708,0.2165687,5.88615,1.353913,0.2941937,5.362355,0.5199339,0.2941937,5.937072,0.5018963,0.2165687,5.466605,1.36708,-3.775,9.553875,0,-1.453375,15.00387,-2.51732,-1.8875,9.553875,-3.269245,-2.90675,15.00387,0,-0.688234,0,0.688234,0.2941937,5.362355,0.5199339,0.688234,0,0.688234,0.4370287,8.003875,0.4370287,0.2941937,5.937072,0.5018963,-0.2808062,5.937072,0.5018963,-0.2808062,5.362355,0.5199339,-0.4370287,8.003875,0.4370287,0.688234,0,0.688234,0.2941937,5.362355,0.5199339,-0.688234,0,0.688234,0.4370287,8.003875,0.4370287,0.2941937,5.937072,0.5018963,-0.2808062,5.937072,0.5018963,-0.2808062,5.362355,0.5199339,-0.4370287,8.003875,0.4370287,1.453375,15.00387,-2.51732,3.775,9.553875,0,1.8875,9.553875,-3.269245,2.90675,15.00387,0,1.453375,15.00387,2.51732,3.775,9.553875,0,2.90675,15.00387,0,1.8875,9.553875,3.269245,0.2941937,5.937072,0.5018963,0.2165687,5.88615,1.353913,-0.2808062,5.937072,0.5018963,-0.2031813,5.88615,1.353913,-0.2808062,5.937072,0.5018963,0.2165687,5.88615,1.353913,0.2941937,5.937072,0.5018963,-0.2031813,5.88615,1.353913,0.3298907,2.475247,-0.6105472,-0.2201093,2.475247,-0.6105472,0.2391407,2.407286,-1.338037,-0.1293593,2.407286,-1.338037,0.2391407,2.407286,-1.338037,-0.2201093,2.475247,-0.6105472,0.3298907,2.475247,-0.6105472,-0.1293593,2.407286,-1.338037,0,17.07887,0,1.453375,15.00387,2.51732,2.90675,15.00387,0,0.4370287,8.003875,-0.4370287,0.4590095,7.30352,-0.2028732,0.4370287,8.003875,0.4370287,0.4590095,7.30352,0.2721268,0.4739102,6.828754,0.2721268,0.4739102,6.828754,-0.2028732,0.688234,0,0.688234,0.688234,0,-0.688234,0.4370287,8.003875,0.4370287,0.4590095,7.30352,-0.2028732,0.4370287,8.003875,-0.4370287,0.4590095,7.30352,0.2721268,0.4739102,6.828754,0.2721268,0.4739102,6.828754,-0.2028732,0.688234,0,0.688234,0.688234,0,-0.688234,1.453375,15.00387,2.51732,-1.8875,9.553875,3.269245,1.8875,9.553875,3.269245,-1.453375,15.00387,2.51732,-1.8875,9.553875,-3.269245,1.47225,8.003875,-2.550013,-1.47225,8.003875,-2.550013,1.8875,9.553875,-3.269245,-1.47225,8.003875,-2.550013,-3.775,9.553875,0,-1.8875,9.553875,-3.269245,-2.9445,8.003875,0,0.2165687,5.466605,1.36708,-0.2031813,5.466605,1.36708,0.2165687,5.88615,1.353913,-0.2031813,5.88615,1.353913,0.2165687,5.88615,1.353913,-0.2031813,5.466605,1.36708,0.2165687,5.466605,1.36708,-0.2031813,5.88615,1.353913,1.8875,9.553875,3.269245,-1.47225,8.003875,2.550013,1.47225,8.003875,2.550013,-1.8875,9.553875,3.269245,-0.1293593,2.038967,-1.349597,0.2391407,2.038967,-1.349597,-0.1293593,2.407286,-1.338037,0.2391407,2.407286,-1.338037,-0.1293593,2.407286,-1.338037,0.2391407,2.038967,-1.349597,-0.1293593,2.038967,-1.349597,0.2391407,2.407286,-1.338037,-0.5981585,2.869977,0.3604403,-0.5981585,2.869977,-0.2395597,-1.444634,2.995593,0.2614402,-1.444634,2.995593,-0.1405597,-1.444634,2.995593,0.2614402,-0.5981585,2.869977,-0.2395597,-0.5981585,2.869977,0.3604403,-1.444634,2.995593,-0.1405597,-0.5981585,2.869977,-0.2395597,-0.5793365,3.469682,-0.2395597,-1.444634,2.995593,-0.1405597,-1.432024,3.397395,-0.1405597,-1.444634,2.995593,-0.1405597,-0.5793365,3.469682,-0.2395597,-0.5981585,2.869977,-0.2395597,-1.432024,3.397395,-0.1405597,-1.8875,9.553875,3.269245,-2.90675,15.00387,0,-3.775,9.553875,0,-1.453375,15.00387,2.51732,-2.90675,15.00387,0,0,17.07887,0,-1.453375,15.00387,-2.51732,-1.453375,15.00387,-2.51732,1.8875,9.553875,-3.269245,-1.8875,9.553875,-3.269245,1.453375,15.00387,-2.51732,-0.5793365,3.469682,-0.2395597,-0.5793365,3.469682,0.3604403,-1.432024,3.397395,-0.1405597,-1.432024,3.397395,0.2614402,-1.432024,3.397395,-0.1405597,-0.5793365,3.469682,0.3604403,-0.5793365,3.469682,-0.2395597,-1.432024,3.397395,0.2614402,-1.453375,15.00387,-2.51732,0,17.07887,0,1.453375,15.00387,-2.51732,0,17.07887,0,2.90675,15.00387,0,1.453375,15.00387,-2.51732,-1.444634,2.995593,-0.1405597,-1.432024,3.397395,-0.1405597,-1.444634,2.995593,0.2614402,-1.432024,3.397395,0.2614402,-1.444634,2.995593,0.2614402,-1.432024,3.397395,-0.1405597,-1.444634,2.995593,-0.1405597,-1.432024,3.397395,0.2614402,-2.90675,15.00387,0,-1.453375,15.00387,2.51732,0,17.07887,0,-2.9445,8.003875,0,-3.775,9.553875,0,-1.47225,8.003875,2.550013,-1.8875,9.553875,3.269245,3.775,9.553875,0,2.9445,8.003875,0,1.8875,9.553875,3.269245,1.47225,8.003875,2.550013,2.9445,8.003875,0,1.47225,8.003875,-2.550013,1.47225,8.003875,2.550013,0.4370287,8.003875,0.4370287,-1.47225,8.003875,2.550013,-0.4370287,8.003875,0.4370287,-0.4370287,8.003875,-0.4370287,0.4370287,8.003875,-0.4370287,-1.47225,8.003875,-2.550013,-2.9445,8.003875,0,0,17.07887,0,1.453375,15.00387,2.51732,-1.453375,15.00387,2.51732,1.8875,9.553875,-3.269245,1.47225,8.003875,-2.550013,3.775,9.553875,0,2.9445,8.003875,0,-1.8875,9.553875,-3.269245,-1.453375,15.00387,-2.51732,-3.775,9.553875,0,-2.90675,15.00387,0,1.8875,9.553875,-3.269245,3.775,9.553875,0,1.453375,15.00387,-2.51732,2.90675,15.00387,0,2.90675,15.00387,0,3.775,9.553875,0,1.453375,15.00387,2.51732,1.8875,9.553875,3.269245,2.90675,15.00387,0,1.453375,15.00387,2.51732,0,17.07887,0,1.8875,9.553875,3.269245,-1.8875,9.553875,3.269245,1.453375,15.00387,2.51732,-1.453375,15.00387,2.51732,-1.47225,8.003875,-2.550013,1.47225,8.003875,-2.550013,-1.8875,9.553875,-3.269245,1.8875,9.553875,-3.269245,-1.8875,9.553875,-3.269245,-3.775,9.553875,0,-1.47225,8.003875,-2.550013,-2.9445,8.003875,0,1.47225,8.003875,2.550013,-1.47225,8.003875,2.550013,1.8875,9.553875,3.269245,-1.8875,9.553875,3.269245,-3.775,9.553875,0,-2.90675,15.00387,0,-1.8875,9.553875,3.269245,-1.453375,15.00387,2.51732,-1.453375,15.00387,-2.51732,0,17.07887,0,-2.90675,15.00387,0,-1.8875,9.553875,-3.269245,1.8875,9.553875,-3.269245,-1.453375,15.00387,-2.51732,1.453375,15.00387,-2.51732,1.453375,15.00387,-2.51732,0,17.07887,0,-1.453375,15.00387,-2.51732,1.453375,15.00387,-2.51732,2.90675,15.00387,0,0,17.07887,0,0,17.07887,0,-1.453375,15.00387,2.51732,-2.90675,15.00387,0 + } + PolygonVertexIndex: *684 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,41,43,-41,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,49,-52,53,52,-52,49,54,-49,55,48,-55,53,55,-55,51,55,-54,56,58,-58,57,59,-57,57,60,-60,60,61,-60,62,57,-59,58,63,-63,63,61,-63,63,59,-62,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,75,73,-75,76,78,-78,77,79,-77,80,82,-82,81,83,-81,83,84,-81,83,85,-85,85,86,-85,87,83,-82,81,88,-88,88,86,-88,88,84,-87,88,89,-85,90,92,-92,93,91,-93,94,96,-96,95,97,-95,98,100,-100,101,103,-103,104,102,-104,105,102,-105,106,105,-105,107,106,-105,107,101,-109,102,108,-102,106,107,-109,109,111,-111,110,112,-110,110,113,-113,113,114,-113,114,115,-113,111,115,-117,116,110,-112,115,114,-117,117,119,-119,120,118,-120,121,123,-123,122,124,-122,125,127,-127,128,126,-128,129,131,-131,130,132,-130,133,135,-135,136,134,-136,137,139,-139,138,140,-138,141,143,-143,144,142,-144,145,147,-147,146,148,-146,149,151,-151,150,152,-150,153,155,-155,156,154,-156,157,159,-159,158,160,-158,161,163,-163,162,164,-162,165,167,-167,168,166,-168,169,166,-169,170,169,-169,166,171,-166,172,165,-172,170,172,-172,168,172,-171,173,175,-175,174,176,-174,174,177,-177,177,178,-177,179,174,-176,175,180,-180,180,178,-180,180,176,-179,181,183,-183,182,184,-182,185,187,-187,186,188,-186,189,191,-191,192,190,-192,193,195,-195,194,196,-194,197,199,-199,200,198,-200,201,203,-203,202,204,-202,205,207,-207,208,210,-210,211,209,-211,212,211,-211,209,213,-209,213,214,-209,212,214,-214,210,214,-213,215,208,-215,216,218,-218,217,219,-217,219,220,-217,221,217,-219,222,221,-219,222,220,-222,222,216,-221,218,223,-223,224,226,-226,225,227,-225,228,230,-230,229,231,-229,232,234,-234,233,235,-233,236,238,-238,239,237,-239,240,242,-242,241,243,-241,244,246,-246,245,247,-245,248,250,-250,251,249,-251,252,254,-254,253,255,-253,256,258,-258,259,257,-259,260,262,-262,261,263,-261,264,266,-266,267,265,-267,268,270,-270,269,271,-269,272,274,-274,273,275,-273,276,278,-278,279,281,-281,280,282,-280,283,285,-285,286,284,-286,287,289,-289,288,290,-288,291,293,-293,294,296,-296,297,299,-299,300,298,-300,301,303,-303,302,304,-302,305,307,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,319,-319,321,319,-321,322,321,-321,319,323,-318,324,317,-324,322,324,-324,320,324,-323,325,324,-321,326,328,-328,329,331,-331,332,330,-332,333,335,-335,336,334,-336,337,339,-339,340,338,-340,341,343,-343,344,342,-344,345,347,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,373,-373,374,372,-374,375,377,-377,378,380,-380,381,383,-383 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2052 { + a: 0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,-0.9925131,0.1221388,0,0.9925131,-0.1221388,0,0.9925131,-0.1221388,0,0.9925131,-0.1221388,0,0.9925131,-0.1221388,0,0.9925131,-0.1221388,0,0.9925131,-0.1221388,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,0.07260517,0.002278762,-0.9973581,-0.07260517,-0.002278762,0.9973581,-0.07260517,-0.002278762,0.9973581,-0.07260517,-0.002278762,0.9973581,-0.07260517,-0.002278762,0.9973581,-0.07260517,-0.002278762,0.9973581,-0.07260517,-0.002278762,0.9973581,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,0.04131754,0.9991461,0,-0.04131754,-0.9991461,0,-0.04131754,-0.9991461,0,-0.04131754,-0.9991461,0,-0.04131754,-0.9991461,0,-0.04131754,-0.9991461,0,-0.04131754,-0.9991461,0,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,-0.9878722,-0.1552692,0,0.9878722,0.1552692,0,0.9878722,0.1552692,0,0.9878722,0.1552692,0,0.9878722,0.1552692,0,0.9878722,0.1552692,0,0.9878722,0.1552692,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,-0.9958559,0.002852935,0.09090022,0.9958559,-0.002852935,-0.09090022,0.9958559,-0.002852935,-0.09090022,0.9958559,-0.002852935,-0.09090022,0.9958559,-0.002852935,-0.09090022,0.9958559,-0.002852935,-0.09090022,0.9958559,-0.002852935,-0.09090022,0.785572,0.4209143,-0.4535502,0.785572,0.4209143,-0.4535502,0.785572,0.4209143,-0.4535502,0.785572,0.4209143,-0.4535502,0.785572,0.4209143,-0.4535502,0.785572,0.4209143,-0.4535502,-0.785572,0.4209143,-0.4535502,-0.785572,0.4209143,-0.4535502,-0.785572,0.4209143,-0.4535502,-0.785572,0.4209143,-0.4535502,-0.785572,0.4209143,-0.4535502,-0.785572,0.4209143,-0.4535502,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,0.03137001,-0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0,-0.03137001,0.9995079,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,0.9922568,0.003896248,-0.1241421,-0.9922568,-0.003896248,0.1241421,-0.9922568,-0.003896248,0.1241421,-0.9922568,-0.003896248,0.1241421,-0.9922568,-0.003896248,0.1241421,-0.9922568,-0.003896248,0.1241421,-0.9922568,-0.003896248,0.1241421,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,0.9995079,0.03137053,0,-0.9995079,-0.03137053,0,-0.9995079,-0.03137053,0,-0.9995079,-0.03137053,0,-0.9995079,-0.03137053,0,-0.9995079,-0.03137053,0,-0.9995079,-0.03137053,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,-0.1156316,0.003629147,0.9932855,0.1156316,-0.003629147,-0.9932855,0.1156316,-0.003629147,-0.9932855,0.1156316,-0.003629147,-0.9932855,0.1156316,-0.003629147,-0.9932855,0.1156316,-0.003629147,-0.9932855,0.1156316,-0.003629147,-0.9932855,0,-0.7716424,-0.6360566,0,-0.7716424,-0.6360566,0,-0.7716424,-0.6360566,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,-0.9995079,0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.9995079,-0.03137001,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,0.1038915,-0.9945886,0,-0.1038915,0.9945886,0,-0.1038915,0.9945886,0,-0.1038915,0.9945886,0,-0.1038915,0.9945886,0,-0.1038915,0.9945886,0,-0.1038915,0.9945886,0,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,-0.9922568,0.003896246,-0.124142,0.9922568,-0.003896246,0.124142,0.9922568,-0.003896246,0.124142,0.9922568,-0.003896246,0.124142,0.9922568,-0.003896246,0.124142,0.9922568,-0.003896246,0.124142,0.9922568,-0.003896246,0.124142,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,0.0726051,0.00227876,0.9973581,-0.0726051,-0.00227876,-0.9973581,-0.0726051,-0.00227876,-0.9973581,-0.0726051,-0.00227876,-0.9973581,-0.0726051,-0.00227876,-0.9973581,-0.0726051,-0.00227876,-0.9973581,-0.0726051,-0.00227876,-0.9973581,-0.785572,0.4209143,0.4535502,-0.785572,0.4209143,0.4535502,-0.785572,0.4209143,0.4535502,-0.785572,0.4209143,0.4535502,-0.785572,0.4209143,0.4535502,-0.785572,0.4209143,0.4535502,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,0.9958559,0.002852941,0.09090039,-0.9958559,-0.002852941,-0.09090039,-0.9958559,-0.002852941,-0.09090039,-0.9958559,-0.002852941,-0.09090039,-0.9958559,-0.002852941,-0.09090039,-0.9958559,-0.002852941,-0.09090039,-0.9958559,-0.002852941,-0.09090039,0.8578987,-0.1366735,0.4953081,0.8578987,-0.1366735,0.4953081,0.8578987,-0.1366735,0.4953081,0.8578987,-0.1366735,0.4953081,0.8578987,-0.1366735,0.4953081,0.8578987,-0.1366735,0.4953081,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,0.03137001,0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,0,-0.03137001,-0.9995079,-0.8578987,-0.1366735,0.4953081,-0.8578987,-0.1366735,0.4953081,-0.8578987,-0.1366735,0.4953081,-0.8578987,-0.1366735,0.4953081,-0.8578987,-0.1366735,0.4953081,-0.8578987,-0.1366735,0.4953081,-0.8578987,-0.1366735,-0.4953081,-0.8578987,-0.1366735,-0.4953081,-0.8578987,-0.1366735,-0.4953081,-0.8578987,-0.1366735,-0.4953081,-0.8578987,-0.1366735,-0.4953081,-0.8578987,-0.1366735,-0.4953081,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,0.9982187,0.05966043,0,-0.9982187,-0.05966043,0,-0.9982187,-0.05966043,0,-0.9982187,-0.05966043,0,-0.9982187,-0.05966043,0,-0.9982187,-0.05966043,0,-0.9982187,-0.05966043,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,0.9956648,-0.09301442,0,-0.9956648,0.09301442,0,-0.9956648,0.09301442,0,-0.9956648,0.09301442,0,-0.9956648,0.09301442,0,-0.9956648,0.09301442,0,-0.9956648,0.09301442,-0.5508413,-0.7716423,-0.3180283,-0.5508413,-0.7716423,-0.3180283,-0.5508413,-0.7716423,-0.3180283,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,0.9995079,0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,-0.9995079,-0.03137002,0,0,-0.1366732,-0.9906161,0,-0.1366732,-0.9906161,0,-0.1366732,-0.9906161,0,-0.1366732,-0.9906161,0,-0.1366732,-0.9906161,0,-0.1366732,-0.9906161,0,0.4209136,0.9071007,0,0.4209136,0.9071007,0,0.4209136,0.9071007,0,0.4209136,0.9071007,0,0.4209136,0.9071007,0,0.4209136,0.9071007,0.785572,0.4209143,0.4535502,0.785572,0.4209143,0.4535502,0.785572,0.4209143,0.4535502,0.785572,0.4209143,0.4535502,0.785572,0.4209143,0.4535502,0.785572,0.4209143,0.4535502,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,0.03136977,0.9995079,0,-0.03136977,-0.9995079,0,-0.03136977,-0.9995079,0,-0.03136977,-0.9995079,0,-0.03136977,-0.9995079,0,-0.03136977,-0.9995079,0,-0.03136977,-0.9995079,0,0.4209136,-0.9071007,0,0.4209136,-0.9071007,0,0.4209136,-0.9071007,0,0.4209136,-0.9071007,0,0.4209136,-0.9071007,0,0.4209136,-0.9071007,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,0.03136968,-0.9995079,0,-0.03136968,0.9995079,0,-0.03136968,0.9995079,0,-0.03136968,0.9995079,0,-0.03136968,0.9995079,0,-0.03136968,0.9995079,0,-0.03136968,0.9995079,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,-0.1467902,-0.9891676,0,0.1467902,0.9891676,0,0.1467902,0.9891676,0,0.1467902,0.9891676,0,0.1467902,0.9891676,0,0.1467902,0.9891676,0,0.1467902,0.9891676,0,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,-0.1156316,0.003629147,-0.9932855,0.1156316,-0.003629147,0.9932855,0.1156316,-0.003629147,0.9932855,0.1156316,-0.003629147,0.9932855,0.1156316,-0.003629147,0.9932855,0.1156316,-0.003629147,0.9932855,0.1156316,-0.003629147,0.9932855,0.8578987,-0.1366735,-0.4953081,0.8578987,-0.1366735,-0.4953081,0.8578987,-0.1366735,-0.4953081,0.8578987,-0.1366735,-0.4953081,0.8578987,-0.1366735,-0.4953081,0.8578987,-0.1366735,-0.4953081,0.5508413,-0.7716423,0.3180283,0.5508413,-0.7716423,0.3180283,0.5508413,-0.7716423,0.3180283,0,-0.1366732,0.9906161,0,-0.1366732,0.9906161,0,-0.1366732,0.9906161,0,-0.1366732,0.9906161,0,-0.1366732,0.9906161,0,-0.1366732,0.9906161,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,-0.08447316,0.9964257,0,0.08447316,-0.9964257,0,0.08447316,-0.9964257,0,0.08447316,-0.9964257,0,0.08447316,-0.9964257,0,0.08447316,-0.9964257,0,0.08447316,-0.9964257,0,0,-0.7716424,0.6360566,0,-0.7716424,0.6360566,0,-0.7716424,0.6360566,-0.5508413,-0.7716423,0.3180283,-0.5508413,-0.7716423,0.3180283,-0.5508413,-0.7716423,0.3180283,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,-0.9995079,0.03137013,0,0.9995079,-0.03137013,0,0.9995079,-0.03137013,0,0.9995079,-0.03137013,0,0.9995079,-0.03137013,0,0.9995079,-0.03137013,0,0.9995079,-0.03137013,0,0.5508413,-0.7716423,-0.3180283,0.5508413,-0.7716423,-0.3180283,0.5508413,-0.7716423,-0.3180283,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,-0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0.785572,-0.4209143,0.4535502,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7716424,0.6360566,0,0.7716424,0.6360566,0,0.7716424,0.6360566,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,0.785572,-0.4209143,-0.4535502,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,0,-0.4209136,-0.9071007,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,-0.785572,-0.4209143,-0.4535502,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,0,-0.4209136,0.9071007,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *768 { + a: 1.158243,4.610208,-1.105536,4.610208,0.8526326,7.970589,-0.7999265,7.970589,0.8526326,7.970589,-1.105536,4.610208,1.158243,4.610208,-0.7999265,7.970589,-1.802873,26.88267,-4.755273,27.19025,-1.744364,28.75183,-4.71022,28.6295,-1.744364,28.75183,-4.755273,27.19025,-1.802873,26.88267,-4.71022,28.6295,0.5836543,-3.578113,-0.8563063,-3.578113,0.7987134,-0.6175358,-1.071365,-0.6175358,0.7987134,-0.6175358,-0.8563063,-3.578113,0.5836543,-3.578113,-1.071365,-0.6175358,-1.298782,3.618743,-0.9414989,6.495347,0.8665719,3.618743,0.5092885,6.495347,0.8665719,3.618743,-0.9414989,6.495347,-1.298782,3.618743,0.5092885,6.495347,1.867295,23.37055,5.235584,23.17007,1.938016,21.10788,5.28721,21.51831,1.938016,21.10788,5.235584,23.17007,1.867295,23.37055,5.28721,21.51831,5.796262,32.80967,-7.431103,39.53699,-5.79626,32.80966,7.431098,39.53699,-7.431098,39.53699,5.79626,32.80966,7.431103,39.53699,-5.796262,32.80967,-2.709583,-0.08499963,0.8665719,7.499515,2.709583,-0.08499963,1.720586,31.44184,0.8665719,9.664867,-1.298782,9.664867,-1.298782,7.499515,-1.720586,31.44184,2.709583,-0.08499963,0.8665719,7.499515,-2.709583,-0.08499963,1.720586,31.44184,0.8665719,9.664867,-1.298782,9.664867,-1.298782,7.499515,-1.720586,31.44184,5.155391,8.021159,2.291302,7.574507,5.110232,9.471243,2.2239,9.738811,5.110232,9.471243,2.291302,7.574507,5.155391,8.021159,2.2239,9.738811,0.5836543,28.46811,0.5836543,27.02815,-0.8563063,28.46811,-0.8563063,27.02815,-0.8563063,28.46811,0.5836543,27.02815,0.5836543,28.46811,-0.8563063,27.02815,5.79626,10.03942,5.79626,-10.03942,11.59252,0,1.720586,1.720586,-5.79626,10.03942,-1.720586,1.720586,-1.720586,-1.720586,1.720586,-1.720586,-5.79626,-10.03942,-11.59252,0,-2.175069,11.29295,-5.530366,11.7875,-2.101464,13.65401,-5.481051,13.36941,-2.101464,13.65401,-5.530366,11.7875,-2.175069,11.29295,-5.481051,13.36941,-5.721948,29.92458,5.721948,29.92458,0,42.76823,-1.720586,31.44184,-0.9431484,11.21969,-2.709583,-0.08499962,2.709583,-0.08499962,1.419056,11.21969,1.419056,13.58189,1.720586,31.44184,-0.9431484,13.58189,-2.709583,-0.08499962,-0.9431484,11.21969,-1.720586,31.44184,2.709583,-0.08499962,1.419056,11.21969,1.419056,13.58189,1.720586,31.44184,-0.9431484,13.58189,-0.8563063,7.609377,0.5836543,7.609377,-1.071365,4.648799,0.7987134,4.648799,-1.071365,4.648799,0.5836543,7.609377,-0.8563063,7.609377,0.7987134,4.648799,-5.209047,8.02283,-5.163888,9.472914,-2.344958,7.576178,-2.277556,9.740481,-2.344958,7.576178,-5.163888,9.472914,-5.209047,8.02283,-2.277556,9.740481,2.709583,2.709583,2.709583,-2.709583,-2.709583,2.709583,-2.709583,-2.709583,-2.709583,2.709583,2.709583,-2.709583,2.709583,2.709583,-2.709583,-2.709583,1.783077,26.88205,1.724568,28.75121,4.735477,27.18963,4.690424,28.62888,4.735477,27.18963,1.724568,28.75121,1.783077,26.88205,4.690424,28.62888,-7.431103,39.53699,5.796262,32.80967,7.431098,39.53699,-5.79626,32.80966,-1.862504,23.3704,-1.933224,21.10773,-5.230793,23.16992,-5.282419,21.51816,-5.230793,23.16992,-1.933224,21.10773,-1.862504,23.3704,-5.282419,21.51816,7.431104,35.50159,-5.721951,57.16153,-7.431098,35.50159,5.72195,57.16154,-2.709583,-0.08499962,1.158243,21.03703,2.709583,-0.08499962,1.720586,31.44184,1.158243,23.30081,-1.105536,23.30081,-1.105536,21.03703,-1.720586,31.44184,2.709583,-0.08499962,1.158243,21.03703,-2.709583,-0.08499962,1.720586,31.44184,1.158243,23.30081,-1.105536,23.30081,-1.105536,21.03703,-1.720586,31.44184,5.721951,57.16153,-7.431104,35.50159,7.431098,35.50159,-5.72195,57.16154,-5.721951,57.16153,7.431104,35.50159,5.72195,57.16154,-7.431098,35.50159,1.158243,-0.5779288,0.8526326,-3.938311,-1.105536,-0.5779288,-0.7999265,-3.938311,-1.105536,-0.5779288,0.8526326,-3.938311,1.158243,-0.5779288,-0.7999265,-3.938311,-1.298782,-1.486877,0.8665719,-1.486877,-0.9414989,-4.363482,0.5092885,-4.363482,-0.9414989,-4.363482,0.8665719,-1.486877,-1.298782,-1.486877,0.5092885,-4.363482,-1.776357E-15,42.76823,-5.721951,29.92458,5.721949,29.92458,1.720586,31.44184,0.7987134,28.68318,-1.720585,31.44184,-1.071365,28.68318,-1.071365,26.8131,0.7987134,26.8131,-2.709582,-0.08499966,2.709583,-0.08499965,-1.720585,31.44184,0.7987134,28.68318,1.720586,31.44184,-1.071365,28.68318,-1.071365,26.8131,0.7987134,26.8131,-2.709582,-0.08499966,2.709583,-0.08499965,5.721948,57.16154,-7.431103,35.50159,7.431103,35.50159,-5.721948,57.16154,7.431103,39.53699,-5.79626,32.80967,5.79626,32.80967,-7.431103,39.53699,-5.796262,32.80967,7.431103,39.53699,-7.431098,39.53699,5.79626,32.80966,0.8526326,21.34264,-0.7999265,21.34264,0.8526326,22.9952,-0.7999265,22.9952,0.8526326,22.9952,-0.7999265,21.34264,0.8526326,21.34264,-0.7999265,22.9952,7.431103,39.53699,-5.79626,32.80967,5.79626,32.80967,-7.431103,39.53699,0.5092885,7.8568,-0.9414989,7.8568,0.5092885,9.307588,-0.9414989,9.307588,0.5092885,9.307588,-0.9414989,7.8568,0.5092885,7.8568,-0.9414989,9.307588,1.419056,3.988046,-0.9431484,3.988046,1.029292,7.357124,-0.5533847,7.357124,1.029292,7.357124,-0.9431484,3.988046,1.419056,3.988046,-0.5533847,7.357124,2.230099,11.29466,2.156494,13.65572,5.585397,11.78921,5.536081,13.37112,5.585397,11.78921,2.156494,13.65572,2.230099,11.29466,5.536081,13.37112,7.431098,35.50159,-5.72195,57.16154,-7.431104,35.50159,5.721951,57.16153,5.721949,29.92458,0,42.76823,-5.721951,29.92458,5.721948,57.16154,-7.431103,35.50159,7.431103,35.50159,-5.721948,57.16154,-0.9431484,-1.118783,1.419056,-1.118783,-0.5533847,-4.487861,1.029292,-4.487861,-0.5533847,-4.487861,1.419056,-1.118783,-0.9431484,-1.118783,1.029292,-4.487861,5.721948,29.92458,0,42.76823,-5.721948,29.92458,1.776357E-15,42.76823,-5.721949,29.92458,5.721951,29.92458,-0.5533847,11.60945,-0.5533847,13.19213,1.029292,11.60945,1.029292,13.19213,1.029292,11.60945,-0.5533847,13.19213,-0.5533847,11.60945,1.029292,13.19213,-5.721949,29.92458,5.721951,29.92458,-1.776357E-15,42.76823,-5.79626,32.80966,-7.431103,39.53699,5.796262,32.80967,7.431098,39.53699,7.431103,39.53699,5.79626,32.80966,-7.431098,39.53699,-5.796262,32.80967,11.59252,0,5.79626,-10.03942,5.79626,10.03942,1.720586,1.720586,-5.79626,10.03942,-1.720586,1.720586,-1.720586,-1.720586,1.720586,-1.720586,-5.79626,-10.03942,-11.59252,0,0,42.76823,5.721948,29.92458,-5.721948,29.92458,7.431098,39.53699,5.796262,32.80967,-7.431103,39.53699,-5.79626,32.80966,-7.431098,35.50159,-5.721951,57.16153,7.431104,35.50159,5.72195,57.16154,7.431098,35.50159,-7.431104,35.50159,5.721951,57.16153,-5.72195,57.16154,5.72195,57.16154,7.431104,35.50159,-5.721951,57.16153,-7.431098,35.50159,5.721949,29.92458,-5.721951,29.92458,-1.776357E-15,42.76823,7.431103,35.50159,-7.431103,35.50159,5.721948,57.16154,-5.721948,57.16154,5.79626,32.80967,-5.79626,32.80967,7.431103,39.53699,-7.431103,39.53699,-7.431098,39.53699,7.431103,39.53699,-5.796262,32.80967,5.79626,32.80966,5.79626,32.80967,-5.79626,32.80967,7.431103,39.53699,-7.431103,39.53699,-7.431104,35.50159,-5.72195,57.16154,7.431098,35.50159,5.721951,57.16153,-5.721951,29.92458,0,42.76823,5.721949,29.92458,7.431103,35.50159,-7.431103,35.50159,5.721948,57.16154,-5.721948,57.16154,-5.721948,29.92458,0,42.76823,5.721948,29.92458,5.721951,29.92458,-5.721949,29.92458,1.776357E-15,42.76823,-1.776357E-15,42.76823,5.721951,29.92458,-5.721949,29.92458 + } + UVIndex: *684 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,41,43,40,44,46,45,45,47,44,48,50,49,51,49,50,52,49,51,53,52,51,49,54,48,55,48,54,53,55,54,51,55,53,56,58,57,57,59,56,57,60,59,60,61,59,62,57,58,58,63,62,63,61,62,63,59,61,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,75,73,74,76,78,77,77,79,76,80,82,81,81,83,80,83,84,80,83,85,84,85,86,84,87,83,81,81,88,87,88,86,87,88,84,86,88,89,84,90,92,91,93,91,92,94,96,95,95,97,94,98,100,99,101,103,102,104,102,103,105,102,104,106,105,104,107,106,104,107,101,108,102,108,101,106,107,108,109,111,110,110,112,109,110,113,112,113,114,112,114,115,112,111,115,116,116,110,111,115,114,116,117,119,118,120,118,119,121,123,122,122,124,121,125,127,126,128,126,127,129,131,130,130,132,129,133,135,134,136,134,135,137,139,138,138,140,137,141,143,142,144,142,143,145,147,146,146,148,145,149,151,150,150,152,149,153,155,154,156,154,155,157,159,158,158,160,157,161,163,162,162,164,161,165,167,166,168,166,167,169,166,168,170,169,168,166,171,165,172,165,171,170,172,171,168,172,170,173,175,174,174,176,173,174,177,176,177,178,176,179,174,175,175,180,179,180,178,179,180,176,178,181,183,182,182,184,181,185,187,186,186,188,185,189,191,190,192,190,191,193,195,194,194,196,193,197,199,198,200,198,199,201,203,202,202,204,201,205,207,206,208,210,209,211,209,210,212,211,210,209,213,208,213,214,208,212,214,213,210,214,212,215,208,214,216,218,217,217,219,216,219,220,216,221,217,218,222,221,218,222,220,221,222,216,220,218,223,222,224,226,225,225,227,224,228,230,229,229,231,228,232,234,233,233,235,232,236,238,237,239,237,238,240,242,241,241,243,240,244,246,245,245,247,244,248,250,249,251,249,250,252,254,253,253,255,252,256,258,257,259,257,258,260,262,261,261,263,260,264,266,265,267,265,266,268,270,269,269,271,268,272,274,273,273,275,272,276,278,277,279,281,280,280,282,279,283,285,284,286,284,285,287,289,288,288,290,287,291,293,292,294,296,295,297,299,298,300,298,299,301,303,302,302,304,301,305,307,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,319,318,321,319,320,322,321,320,319,323,317,324,317,323,322,324,323,320,324,322,325,324,320,326,328,327,329,331,330,332,330,331,333,335,334,336,334,335,337,339,338,340,338,339,341,343,342,344,342,343,345,347,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,373,372,374,372,373,375,377,376,378,380,379,381,383,382 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *228 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_default_fall, Model::RootNode + C: "OO",4763909531850385777,0 + + ;Geometry::, Model::Mesh tree_default_fall + C: "OO",5420681195433699023,4763909531850385777 + + ;Material::woodBirch, Model::Mesh tree_default_fall + C: "OO",3050,4763909531850385777 + + ;Material::leafsFall, Model::Mesh tree_default_fall + C: "OO",3028,4763909531850385777 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_default_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_default_fall.fbx.import new file mode 100644 index 0000000..76feffb --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_default_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b2ywh0emim401" +path="res://.godot/imported/tree_default_fall.fbx-2468e3b7e4bd2a3b60f852d894481f8b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_default_fall.fbx" +dest_files=["res://.godot/imported/tree_default_fall.fbx-2468e3b7e4bd2a3b60f852d894481f8b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed.fbx new file mode 100644 index 0000000..2ab9fb5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 37 + Millisecond: 165 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_detailed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_detailed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4723909590072022607, "Model::tree_detailed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5400329500735007835, "Geometry::", "Mesh" { + Vertices: *2274 { + a: 0.6043379,6.190317,2.253915,0.6043379,6.190317,3.462589,-0.6043376,6.190317,2.253915,-0.6043376,6.190317,3.462589,1.248748,9.217318,-3.894665,1.248748,7.619823,-3.894665,1.588062,9.21571,-3.553743,1.588062,7.62143,-3.553743,1.588062,9.116588,-1.959462,1.248748,8.777553,-1.61854,1.593718,8.771919,-1.612875,-1.593718,8.771919,-1.612875,-0.3487476,8.777553,-1.61854,-0.6880623,9.116588,-1.959462,-0.6880623,9.21571,-2.059137,-1.597495,9.45055,-2.295282,-0.4530296,9.45055,-2.295282,1.588062,9.21571,-2.059137,1.597495,9.45055,-2.295282,1.35303,9.45055,-2.295282,-0.3487476,7.619823,-3.894665,-0.3487476,9.217318,-3.894665,-0.6880623,7.62143,-3.553743,-0.6880623,9.21571,-3.553743,-0.3487476,7.619823,-3.894665,1.248748,7.619823,-3.894665,-0.3487476,9.217318,-3.894665,1.248748,9.217318,-3.894665,-1.597495,9.45055,-2.295282,-0.4530296,9.45055,-2.295282,-1.597495,12.64554,-2.295282,-0.3468589,9.556631,-2.295282,1.246859,9.556631,-2.295282,1.597495,12.64554,-2.295282,1.597495,9.45055,-2.295282,1.35303,9.45055,-2.295282,-0.6880623,7.62143,-1.959462,-0.6880623,9.116588,-1.959462,-0.3487476,7.619823,-1.61854,-0.3487476,8.777553,-1.61854,-4.146324,6.004222,-0.2092165,-4.146324,7.917359,-0.2092165,-4.146324,6.004222,1.703922,-4.146324,7.917359,1.703922,-3.736879,5.595116,1.703583,-3.736879,5.595116,-0.2088779,-4.146324,6.004222,1.703922,-4.146324,6.004222,-0.2092165,-1.414973,7.917359,1.703922,-1.822151,7.919287,2.113028,-1.824418,8.326465,1.703583,-1.822151,7.919287,-0.6183224,-1.414973,7.917359,-0.2092165,-1.824418,8.326465,-0.2088779,-1.414973,7.917359,-0.2092165,-1.414973,6.004222,-0.2092165,-1.414973,7.917359,1.703922,-1.414973,6.004222,1.703922,-1.414973,6.004222,1.703922,-1.414973,6.004222,-0.2092165,-1.824418,5.595116,1.703583,-1.824418,5.595116,-0.2088779,1.588062,7.62143,-3.553743,1.248748,7.619823,-3.894665,1.246859,7.280508,-3.553463,-1.822151,6.002293,2.113028,-1.414973,6.004222,1.703922,-1.824418,5.595116,1.703583,-0.6043376,6.190317,2.253915,-0.6043376,6.190317,3.462589,-0.8631065,5.931763,2.253701,-0.8631065,5.931763,3.462805,0.6057701,4.72144,3.72136,0.6043379,4.464105,3.462589,-0.6057701,4.72144,3.72136,-0.6043376,4.464105,3.462589,1.593718,13.32417,-1.612875,1.593718,13.32417,1.57456,-1.593718,13.32417,-1.612875,-1.593718,13.32417,1.57456,2.276125,9.453762,-1.61344,1.597495,9.45055,-2.295282,1.593718,8.771919,-1.612875,-0.3487476,9.217318,-3.894665,-0.3468589,9.556631,-3.553463,-0.6880623,9.21571,-3.553743,-3.736879,8.326465,-0.2088779,-3.736879,8.326465,1.703583,-4.146324,7.917359,-0.2092165,-4.146324,7.917359,1.703922,-1.822151,6.002293,2.113028,-3.739147,6.002293,2.113028,-1.822151,7.919287,2.113028,-3.739147,7.919287,2.113028,1.588062,7.62143,-1.959462,1.588062,7.62143,-3.553743,1.246859,7.280508,-1.959744,1.246859,7.280508,-3.553463,1.248748,7.619823,-1.61854,1.588062,7.62143,-1.959462,1.246859,7.280508,-1.959744,-1.824418,5.595116,-0.2088779,-2.215604,5.595116,0.6560279,-1.824418,5.595116,1.703583,-3.736879,5.595116,1.703583,-2.126433,5.595116,0.1381262,-3.047897,5.595116,0.8875082,-3.736879,5.595116,-0.2088779,-2.952902,5.595116,0.3357711,-1.414973,7.917359,-0.2092165,-1.414973,7.917359,1.703922,-1.824418,8.326465,-0.2088779,-1.824418,8.326465,1.703583,1.597495,9.45055,2.256967,-1.597495,9.45055,2.256967,1.597495,12.64554,2.256967,-1.597495,12.64554,2.256967,-0.3468589,7.280508,-1.959744,-0.3468589,7.280508,-3.553463,-0.6880623,7.62143,-1.959462,-0.6880623,7.62143,-3.553743,1.593718,8.771919,-1.612875,0.2960315,8.771919,0.3824154,1.593718,8.771919,1.57456,-1.593718,8.771919,1.57456,-0.2960314,8.771919,0.3824154,-0.2960314,8.771919,-0.2096477,0.2960315,8.771919,-0.2096477,-1.593718,8.771919,-1.612875,-3.736879,8.326465,1.703583,-3.739147,7.919287,2.113028,-4.146324,7.917359,1.703922,1.597495,9.45055,2.256967,1.593718,8.771919,1.57456,-1.597495,9.45055,2.256967,-1.593718,8.771919,1.57456,2.276125,12.64233,-1.61344,2.276125,12.64233,1.575125,1.593718,13.32417,-1.612875,1.593718,13.32417,1.57456,-1.822151,7.919287,2.113028,-3.739147,7.919287,2.113028,-1.824418,8.326465,1.703583,-3.736879,8.326465,1.703583,-1.414973,6.004222,-0.2092165,-1.822151,6.002293,-0.6183224,-1.824418,5.595116,-0.2088779,-0.6043376,6.190317,3.462589,-0.6057701,5.932982,3.72136,-0.8631065,5.931763,3.462805,1.597495,12.64554,-2.295282,1.597495,9.45055,-2.295282,2.276125,12.64233,-1.61344,2.276125,9.453762,-1.61344,-0.6057701,5.932982,1.995146,-0.6043376,6.190317,2.253915,-0.8631065,5.931763,2.253701,-2.276125,9.453762,1.575125,-2.276125,12.64233,1.575125,-1.597495,9.45055,2.256967,-1.597495,12.64554,2.256967,1.248748,7.619823,-3.894665,-0.3487476,7.619823,-3.894665,1.246859,7.280508,-3.553463,-0.3468589,7.280508,-3.553463,-1.822151,7.919287,-0.6183224,-1.824418,8.326465,-0.2088779,-3.739147,7.919287,-0.6183224,-3.736879,8.326465,-0.2088779,-1.597495,9.45055,2.256967,-1.593718,8.771919,1.57456,-2.276125,9.453762,1.575125,-1.822151,6.002293,2.113028,-1.824418,5.595116,1.703583,-3.739147,6.002293,2.113028,-3.736879,5.595116,1.703583,-3.739147,6.002293,-0.6183224,-3.739147,7.919287,-0.6183224,-4.146324,6.004222,-0.2092165,-4.146324,7.917359,-0.2092165,-3.736879,5.595116,-0.2088779,-3.739147,6.002293,-0.6183224,-4.146324,6.004222,-0.2092165,1.597495,12.64554,-2.295282,1.593718,13.32417,-1.612875,-1.597495,12.64554,-2.295282,-1.593718,13.32417,-1.612875,-4.146324,6.004222,1.703922,-4.146324,7.917359,1.703922,-3.739147,6.002293,2.113028,-3.739147,7.919287,2.113028,-1.593718,13.32417,-1.612875,-1.593718,13.32417,1.57456,-2.276125,12.64233,-1.61344,-2.276125,12.64233,1.575125,2.276125,12.64233,1.575125,1.597495,12.64554,2.256967,1.593718,13.32417,1.57456,0.8631065,4.72266,3.462805,0.8631065,4.72266,2.253701,0.6043379,4.464105,3.462589,0.6043379,4.464105,2.253915,-0.8631065,4.72266,3.462805,-0.8631065,5.931763,3.462805,-0.6057701,4.72144,3.72136,-0.6057701,5.932982,3.72136,4.324826,7.878432,0.2229106,3.999083,7.876893,-0.1043739,3.997268,7.55115,0.2231816,2.4673,7.55115,1.753151,2.4673,7.55115,0.2231816,2.139745,7.878432,1.753421,2.139745,7.878432,0.2229106,-0.6880623,7.62143,-3.553743,-0.6880623,9.21571,-3.553743,-0.6880623,7.62143,-1.959462,-0.6880623,9.21571,-2.059137,-0.6880623,9.116588,-1.959462,1.588062,9.21571,-3.553743,1.588062,9.21571,-2.059137,1.246859,9.556631,-3.553463,1.35303,9.45055,-2.295282,1.246859,9.556631,-2.295282,-0.6057701,4.72144,1.995146,0.6057701,4.72144,1.995146,-0.6057701,5.932982,1.995146,0.6057701,5.932982,1.995146,2.465487,7.876893,-0.1043739,2.465487,9.410487,-0.1043739,2.139745,7.878432,0.2229106,2.231705,9.40938,0.130515,2.139745,9.317495,0.2229106,2.139745,7.878432,0.2229106,2.139745,9.317495,0.2229106,2.139745,7.878432,1.753421,2.139745,9.317495,1.575012,2.139745,9.408945,1.667483,2.139745,9.408945,1.753421,3.999083,9.410487,2.080706,2.465487,9.410487,2.080706,3.997268,9.736231,1.753151,2.4673,9.736231,1.753151,-0.6043376,4.464105,2.253915,-0.6057701,4.72144,1.995146,-0.8631065,4.72266,2.253701,0.6057701,4.72144,1.995146,-0.6057701,4.72144,1.995146,0.6043379,4.464105,2.253915,-0.6043376,4.464105,2.253915,4.324826,9.408945,1.753421,4.324826,7.878432,1.753421,3.999083,9.410487,2.080706,3.999083,7.876893,2.080706,0.8631065,5.931763,3.462805,0.6057701,5.932982,3.72136,0.6043379,6.190317,3.462589,1.597495,12.64554,2.256967,-1.597495,12.64554,2.256967,1.593718,13.32417,1.57456,-1.593718,13.32417,1.57456,-0.6057701,4.72144,1.995146,-0.6057701,5.932982,1.995146,-0.8631065,4.72266,2.253701,-0.8631065,5.931763,2.253701,-1.597495,9.45055,-2.295282,-1.597495,12.64554,-2.295282,-2.276125,9.453762,-1.61344,-2.276125,12.64233,-1.61344,0.6057701,5.932982,3.72136,-0.6057701,5.932982,3.72136,0.6043379,6.190317,3.462589,-0.6043376,6.190317,3.462589,0.6057701,5.932982,1.995146,0.8631065,5.931763,2.253701,0.6043379,6.190317,2.253915,-3.739147,7.919287,-0.6183224,-3.736879,8.326465,-0.2088779,-4.146324,7.917359,-0.2092165,-1.414973,7.917359,1.703922,-1.414973,6.004222,1.703922,-1.822151,7.919287,2.113028,-1.822151,6.002293,2.113028,1.248748,9.217318,-3.894665,1.246859,9.556631,-3.553463,-0.3487476,9.217318,-3.894665,-0.3468589,9.556631,-3.553463,-3.739147,6.002293,-0.6183224,-1.822151,6.002293,-0.6183224,-3.739147,7.919287,-0.6183224,-1.822151,7.919287,-0.6183224,-2.276125,9.453762,-1.61344,-2.276125,12.64233,-1.61344,-2.276125,9.453762,1.575125,-2.276125,12.64233,1.575125,-0.3487476,7.619823,-1.61854,-0.3468589,7.280508,-1.959744,-0.6880623,7.62143,-1.959462,3.999083,9.410487,-0.1043739,3.999083,7.876893,-0.1043739,4.324826,9.408945,0.2229106,4.324826,7.878432,0.2229106,0.8631065,5.931763,3.462805,0.8631065,4.72266,3.462805,0.6057701,5.932982,3.72136,0.6057701,4.72144,3.72136,0.6057701,4.72144,3.72136,-0.6057701,4.72144,3.72136,0.6057701,5.932982,3.72136,-0.6057701,5.932982,3.72136,-1.593718,8.771919,-1.612875,-1.597495,9.45055,-2.295282,-2.276125,9.453762,-1.61344,0.6057701,5.932982,1.995146,0.6043379,6.190317,2.253915,-0.6057701,5.932982,1.995146,-0.6043376,6.190317,2.253915,0.8631065,4.72266,2.253701,0.6057701,4.72144,1.995146,0.6043379,4.464105,2.253915,0.8631065,5.931763,2.253701,0.8631065,4.72266,2.253701,0.8631065,5.931763,3.462805,0.8631065,4.72266,3.462805,2.139745,7.878432,1.753421,2.139745,9.408945,1.753421,2.465487,7.876893,2.080706,2.465487,9.410487,2.080706,-1.822151,6.002293,-0.6183224,-3.739147,6.002293,-0.6183224,-1.824418,5.595116,-0.2088779,-3.736879,5.595116,-0.2088779,4.324826,9.408945,0.2229106,4.324826,9.408945,1.753421,3.997268,9.736231,0.2231816,3.997268,9.736231,1.753151,0.6043379,4.464105,2.253915,0.2682797,4.464105,3.0334,0.6043379,4.464105,3.462589,-0.6043376,4.464105,3.462589,-0.2682796,4.464105,3.0334,0.2559772,4.464105,2.463454,-0.6043376,4.464105,2.253915,-0.2559771,4.464105,2.463454,2.4673,7.55115,0.2231816,2.465487,7.876893,-0.1043739,2.139745,7.878432,0.2229106,-0.6057701,4.72144,3.72136,-0.6043376,4.464105,3.462589,-0.8631065,4.72266,3.462805,-0.3468589,7.280508,-3.553463,-0.3487476,7.619823,-3.894665,-0.6880623,7.62143,-3.553743,-1.822151,7.919287,-0.6183224,-1.822151,6.002293,-0.6183224,-1.414973,7.917359,-0.2092165,-1.414973,6.004222,-0.2092165,2.465487,9.410487,-0.1043739,2.276125,9.453762,0.1305517,2.231705,9.40938,0.130515,2.276125,9.545213,0.2230234,2.4673,9.736231,0.2231816,-1.824418,8.326465,-0.2088779,-1.824418,8.326465,1.703583,-3.736879,8.326465,-0.2088779,-3.736879,8.326465,1.703583,-1.593718,8.771919,1.57456,-1.593718,8.771919,-1.612875,-2.276125,9.453762,1.575125,-2.276125,9.453762,-1.61344,1.597495,12.64554,-2.295282,2.276125,12.64233,-1.61344,1.593718,13.32417,-1.612875,2.4673,9.736231,1.753151,2.465487,9.410487,2.080706,2.139745,9.408945,1.753421,4.324826,7.878432,1.753421,4.324826,7.878432,0.2229106,3.997268,7.55115,1.753151,3.997268,7.55115,0.2231816,-3.739147,6.002293,2.113028,-3.736879,5.595116,1.703583,-4.146324,6.004222,1.703922,1.248748,9.217318,-3.894665,1.588062,9.21571,-3.553743,1.246859,9.556631,-3.553463,3.997268,7.55115,0.2231816,3.504346,7.55115,1.193048,3.997268,7.55115,1.753151,2.4673,7.55115,1.753151,2.854678,7.55115,1.04613,2.854678,7.55115,0.5778356,3.504346,7.55115,0.6930912,2.4673,7.55115,0.2231816,1.588062,9.21571,-3.553743,1.588062,7.62143,-3.553743,1.588062,9.21571,-2.059137,1.588062,7.62143,-1.959462,1.588062,9.116588,-1.959462,1.248748,7.619823,-1.61854,1.246859,7.280508,-1.959744,-0.3487476,7.619823,-1.61854,0.3869906,7.302905,-1.937222,0.3935554,7.280508,-1.959744,-0.09571224,7.302905,-1.937222,-0.3468589,7.280508,-1.959744,-0.09162532,7.280508,-1.959744,3.999083,9.410487,-0.1043739,4.324826,9.408945,0.2229106,3.997268,9.736231,0.2231816,2.184165,9.453327,1.66752,2.139745,9.408945,1.667483,1.597495,9.45055,2.256967,2.139745,9.317495,1.575012,1.593718,8.771919,1.57456,-1.593718,13.32417,1.57456,-1.597495,12.64554,2.256967,-2.276125,12.64233,1.575125,3.999083,9.410487,-0.1043739,3.997268,9.736231,0.2231816,2.465487,9.410487,-0.1043739,2.4673,9.736231,0.2231816,1.246859,9.556631,-3.553463,1.246859,9.556631,-2.295282,-0.3468589,9.556631,-3.553463,-0.3468589,9.556631,-2.295282,-0.8631065,4.72266,2.253701,-0.8631065,5.931763,2.253701,-0.8631065,4.72266,3.462805,-0.8631065,5.931763,3.462805,2.465487,7.876893,2.080706,2.4673,7.55115,1.753151,2.139745,7.878432,1.753421,3.999083,7.876893,2.080706,4.324826,7.878432,1.753421,3.997268,7.55115,1.753151,0.6057701,5.932982,1.995146,0.6057701,4.72144,1.995146,0.8631065,5.931763,2.253701,0.8631065,4.72266,2.253701,1.588062,9.116588,-1.959462,1.588062,7.62143,-1.959462,1.248748,8.777553,-1.61854,1.248748,7.619823,-1.61854,2.139745,9.317495,1.575012,2.139745,9.317495,0.2229106,1.593718,8.771919,1.57456,1.593718,8.771919,-1.612875,2.231705,9.40938,0.130515,2.276125,9.453762,-1.61344,2.276125,9.453762,0.1305517,1.248748,7.619823,-1.61854,-0.3487476,7.619823,-1.61854,1.248748,8.777553,-1.61854,-0.3487476,8.777553,-1.61854,-0.6043376,4.464105,3.462589,-0.6043376,4.464105,2.253915,-0.8631065,4.72266,3.462805,-0.8631065,4.72266,2.253701,3.999083,7.876893,2.080706,3.997268,7.55115,1.753151,2.465487,7.876893,2.080706,2.4673,7.55115,1.753151,-0.3468589,9.556631,-3.553463,-0.3468589,9.556631,-2.295282,-0.6880623,9.21571,-3.553743,-0.4530296,9.45055,-2.295282,-0.6880623,9.21571,-2.059137,4.324826,9.408945,1.753421,3.999083,9.410487,2.080706,3.997268,9.736231,1.753151,2.465487,7.876893,-0.1043739,3.999083,7.876893,-0.1043739,2.465487,9.410487,-0.1043739,3.999083,9.410487,-0.1043739,4.324826,9.408945,0.2229106,4.324826,7.878432,0.2229106,4.324826,9.408945,1.753421,4.324826,7.878432,1.753421,3.999083,7.876893,2.080706,2.465487,7.876893,2.080706,3.999083,9.410487,2.080706,2.465487,9.410487,2.080706,-1.597495,12.64554,-2.295282,-1.593718,13.32417,-1.612875,-2.276125,12.64233,-1.61344,0.8631065,5.931763,2.253701,0.8631065,5.931763,3.462805,0.6043379,6.190317,2.253915,0.6043379,6.190317,3.462589,3.997268,9.736231,0.2231816,3.997268,9.736231,1.753151,2.4673,9.736231,0.2231816,2.4673,9.736231,1.753151,2.276125,12.64233,-1.61344,2.276125,9.453762,-1.61344,2.276125,12.64233,1.575125,2.276125,9.453762,0.1305517,2.276125,9.545213,0.2230234,2.276125,9.545213,1.575125,2.4673,9.736231,0.2231816,2.4673,9.736231,1.753151,2.276125,9.545213,0.2230234,2.276125,9.545213,1.575125,2.139745,9.408945,1.753421,2.184165,9.453327,1.66752,2.139745,9.408945,1.667483,3.999083,7.876893,-0.1043739,2.465487,7.876893,-0.1043739,3.997268,7.55115,0.2231816,2.4673,7.55115,0.2231816,0.6057701,4.72144,3.72136,0.8631065,4.72266,3.462805,0.6043379,4.464105,3.462589,2.276125,12.64233,1.575125,2.276125,9.545213,1.575125,1.597495,12.64554,2.256967,2.184165,9.453327,1.66752,1.597495,9.45055,2.256967,1.246859,7.280508,-1.959744,1.246859,7.280508,-3.553463,0.3935554,7.280508,-1.959744,0.6044291,7.280508,-2.634526,-0.3468589,7.280508,-3.553463,0.08336318,7.280508,-2.634526,-0.09162532,7.280508,-1.959744,-0.3468589,7.280508,-1.959744,3.507123,7.46749,1.184054,3.507123,7.46749,0.6785424,1.908005,6.2644,0.6840542,1.908005,6.2644,0.1785424,-0.2740264,3.61126,1.896236,-0.2559771,4.15492,1.954682,-0.2740264,4.29101,3.014792,-0.2559771,4.464105,2.463454,-0.2682796,4.464105,3.0334,0.08336318,7.280508,-2.634526,-0.09162532,7.280508,-1.959744,-0.2605329,6.317155,-1.599269,-0.09571224,7.302905,-1.937222,-0.2413516,6.894928,-1.498793,1.908005,6.2644,0.1785424,3.507123,7.46749,0.6785424,1.889396,6.824925,0.2760191,2.854678,7.55115,0.5778356,3.504346,7.55115,0.6930912,0.4567104,3.568995,0.5842021,0.2740263,3.61126,1.896236,0.4266286,4.475097,0.6816121,0.2559772,4.15492,1.954682,-0.5436898,0,-0.5436898,0.5436898,0,-0.5436898,-0.6321973,0.498095,-0.6321976,0.6321974,0.498095,-0.6321976,0.4867921,2.662893,-0.4867921,0.4867921,2.662893,0.4867922,0.3888551,5.612888,0.02621952,0.4567104,3.568995,0.5842021,0.4266286,4.475097,0.6816121,0.3888551,5.612888,0.8039299,0.3869906,7.302905,-1.937222,0.2413515,6.894928,-1.498793,-0.09571224,7.302905,-1.937222,-0.2413516,6.894928,-1.498793,3.507123,7.46749,0.6785424,3.507123,7.46749,1.184054,3.504346,7.55115,0.6930912,3.504346,7.55115,1.193048,0.4567104,3.568995,0.5842021,-0.4567104,3.568995,0.5842021,0.2740263,3.61126,1.896236,-0.2740264,3.61126,1.896236,0.5436898,0,0.5436898,-0.5436898,0,0.5436898,0.6321974,0.498095,0.6321974,-0.6321973,0.498095,0.6321974,0.6321974,0.498095,-0.6321976,0.5436898,0,-0.5436898,0.6321974,0.498095,0.6321974,0.5436898,0,0.5436898,-2.04523,4.99479,0.5385624,-3.047897,5.595116,0.8875082,-2.029009,5.483395,0.5910897,-2.215604,5.595116,0.6560279,0.2740263,3.61126,1.896236,0.2740263,4.29101,3.014792,0.2559772,4.15492,1.954682,0.2559772,4.464105,2.463454,0.2682797,4.464105,3.0334,0.3602262,6.475235,0.8966362,-0.3602261,6.475235,0.8966362,0.2960315,8.771919,0.3824154,-0.2960314,8.771919,0.3824154,-0.6321973,0.498095,-0.6321976,-0.6321973,0.498095,0.6321974,-0.5436898,0,-0.5436898,-0.5436898,0,0.5436898,-0.4867921,2.662893,-0.4867921,0.4867921,2.662893,-0.4867921,-0.4236426,4.565045,-0.1560031,0.3888551,5.612888,0.02621952,-0.3976624,5.347602,-0.01991443,-0.3888551,5.612888,0.02621952,1.908005,6.2644,0.6840542,1.889396,6.824925,0.7443131,3.507123,7.46749,1.184054,2.854678,7.55115,1.04613,3.504346,7.55115,1.193048,0.5436898,0,0.5436898,0.5436898,0,-0.5436898,-0.5436898,0,0.5436898,-0.5436898,0,-0.5436898,0.2559772,4.15492,1.954682,0.2559772,4.464105,2.463454,-0.2559771,4.15492,1.954682,-0.2559771,4.464105,2.463454,1.908005,6.2644,0.6840542,1.908005,6.2644,0.1785424,0.3888551,5.612888,0.8039299,0.3888551,5.612888,0.02621952,-0.2960314,8.771919,-0.2096477,-0.2960314,8.771919,0.3824154,-0.3602261,6.475235,0.1761839,-0.3602261,6.475235,0.8966362,-0.2605329,6.317155,-1.599269,-0.2413516,6.894928,-1.498793,-0.3888551,5.612888,0.02621952,-0.3602261,6.475235,0.1761839,0.4266286,4.475097,0.6816121,0.2559772,4.15492,1.954682,-0.4266289,4.475097,0.6816121,-0.2559771,4.15492,1.954682,-0.4236426,4.565045,-0.1560031,-0.3976624,5.347602,-0.01991443,-2.043379,5.05056,0.01924089,-2.027271,5.535745,0.1036159,0.4867921,2.662893,0.4867922,-0.4867921,2.662893,0.4867922,0.4567104,3.568995,0.5842021,-0.4567104,3.568995,0.5842021,-0.6321973,0.498095,-0.6321976,0.6321974,0.498095,-0.6321976,-0.4867921,2.662893,-0.4867921,0.4867921,2.662893,-0.4867921,0.4266286,4.475097,0.6816121,-0.4266289,4.475097,0.6816121,0.3888551,5.612888,0.8039299,-0.4004654,5.263169,0.7663336,-0.3602261,6.475235,0.8966362,0.3602262,6.475235,0.8966362,0.3888551,5.612888,0.02621952,0.2605329,6.317155,-1.599269,-0.3888551,5.612888,0.02621952,-0.2605329,6.317155,-1.599269,1.889396,6.824925,0.2760191,1.889396,6.824925,0.7443131,0.3602262,6.475235,0.1761839,0.3602262,6.475235,0.8966362,0.3602262,6.475235,0.1761839,-0.3602261,6.475235,0.1761839,0.2413515,6.894928,-1.498793,-0.2413516,6.894928,-1.498793,-0.6321973,0.498095,-0.6321976,-0.4867921,2.662893,-0.4867921,-0.6321973,0.498095,0.6321974,-0.4867921,2.662893,0.4867922,0.2740263,4.29101,3.014792,0.2740263,3.61126,1.896236,-0.2740264,4.29101,3.014792,-0.2740264,3.61126,1.896236,-2.027271,5.535745,0.1036159,-2.029009,5.483395,0.5910897,-2.126433,5.595116,0.1381262,-2.215604,5.595116,0.6560279,-0.3976624,5.347602,-0.01991443,-0.4004654,5.263169,0.7663336,-2.027271,5.535745,0.1036159,-2.029009,5.483395,0.5910897,-0.4266289,4.475097,0.6816121,-2.04523,4.99479,0.5385624,-0.4004654,5.263169,0.7663336,-2.029009,5.483395,0.5910897,0.6321974,0.498095,0.6321974,-0.6321973,0.498095,0.6321974,0.4867921,2.662893,0.4867922,-0.4867921,2.662893,0.4867922,0.6044291,7.280508,-2.634526,0.2605329,6.317155,-1.599269,0.3935554,7.280508,-1.959744,0.3869906,7.302905,-1.937222,0.2413515,6.894928,-1.498793,0.3888551,5.612888,0.8039299,0.3602262,6.475235,0.8966362,1.908005,6.2644,0.6840542,1.889396,6.824925,0.7443131,2.854678,7.55115,0.5778356,2.854678,7.55115,1.04613,1.889396,6.824925,0.2760191,1.889396,6.824925,0.7443131,-0.3602261,6.475235,0.1761839,0.3602262,6.475235,0.1761839,-0.2960314,8.771919,-0.2096477,0.2960315,8.771919,-0.2096477,-0.3976624,5.347602,-0.01991443,-0.3888551,5.612888,0.02621952,-0.4004654,5.263169,0.7663336,-0.3602261,6.475235,0.1761839,-0.3602261,6.475235,0.8966362,0.6321974,0.498095,-0.6321976,0.6321974,0.498095,0.6321974,0.4867921,2.662893,-0.4867921,0.4867921,2.662893,0.4867922,0.2960315,8.771919,-0.2096477,0.3602262,6.475235,0.1761839,0.2960315,8.771919,0.3824154,0.3602262,6.475235,0.8966362,0.2605329,6.317155,-1.599269,0.3888551,5.612888,0.02621952,0.2413515,6.894928,-1.498793,0.3602262,6.475235,0.1761839,-2.043379,5.05056,0.01924089,-2.027271,5.535745,0.1036159,-2.952902,5.595116,0.3357711,-2.126433,5.595116,0.1381262,0.3888551,5.612888,0.02621952,1.908005,6.2644,0.1785424,0.3602262,6.475235,0.1761839,1.889396,6.824925,0.2760191,-0.4567104,3.568995,0.5842021,-0.4266289,4.475097,0.6816121,-0.2740264,3.61126,1.896236,-0.2559771,4.15492,1.954682,-0.4236426,4.565045,-0.1560031,-2.043379,5.05056,0.01924089,-0.4266289,4.475097,0.6816121,-2.04523,4.99479,0.5385624,0.6044291,7.280508,-2.634526,0.08336318,7.280508,-2.634526,0.2605329,6.317155,-1.599269,-0.2605329,6.317155,-1.599269,0.2740263,4.29101,3.014792,-0.2740264,4.29101,3.014792,0.2682797,4.464105,3.0334,-0.2682796,4.464105,3.0334,-2.043379,5.05056,0.01924089,-2.952902,5.595116,0.3357711,-2.04523,4.99479,0.5385624,-3.047897,5.595116,0.8875082,-0.4867921,2.662893,-0.4867921,-0.4236426,4.565045,-0.1560031,-0.4867921,2.662893,0.4867922,-0.4567104,3.568995,0.5842021,-0.4266289,4.475097,0.6816121,0.3602262,6.475235,0.1761839,0.3602262,6.475235,0.8966362,-0.3602261,6.475235,0.1761839,-0.3602261,6.475235,0.8966362,-0.3602261,6.475235,0.1761839,0.3602262,6.475235,0.8966362 + } + PolygonVertexIndex: *1206 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,14,13,-12,11,15,-15,16,14,-16,8,17,-11,10,17,-19,19,18,-18,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,31,-31,30,33,-33,33,34,-33,35,32,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,67,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,85,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,103,-103,104,102,-104,105,101,-103,106,102,-105,101,105,-108,104,107,-107,108,107,-106,106,107,-109,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,122,-125,126,125,-125,122,127,-122,128,121,-128,126,128,-128,124,128,-127,129,131,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,149,-149,150,152,-152,153,151,-153,154,156,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,171,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,216,-216,218,220,-220,221,219,-221,222,221,-221,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,230,-230,232,234,-234,235,233,-235,236,235,-235,237,236,-235,238,240,-240,241,239,-241,242,244,-244,245,247,-247,248,246,-248,249,251,-251,252,250,-252,253,255,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,277,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,299,-299,300,298,-300,301,303,-303,304,302,-304,305,307,-307,308,306,-308,309,311,-311,312,314,-314,315,313,-315,316,318,-318,319,321,-321,322,320,-322,323,325,-325,326,324,-326,327,329,-329,330,328,-330,331,333,-333,334,332,-334,335,337,-337,338,336,-338,339,336,-339,336,340,-336,341,335,-341,338,341,-340,342,341,-341,339,341,-343,343,345,-345,346,348,-348,349,351,-351,352,354,-354,355,353,-355,356,358,-358,357,359,-357,360,356,-360,361,363,-363,364,362,-364,365,367,-367,368,366,-368,369,371,-371,372,374,-374,375,377,-377,378,376,-378,379,381,-381,382,384,-384,385,387,-387,388,386,-388,389,386,-389,390,389,-389,386,391,-386,392,385,-392,390,392,-392,388,392,-391,393,395,-395,396,394,-396,397,396,-396,398,400,-400,401,399,-401,402,399,-402,403,401,-401,404,403,-401,403,404,-406,406,408,-408,409,411,-411,412,410,-412,413,412,-412,414,416,-416,417,419,-419,420,418,-420,421,423,-423,424,422,-424,425,427,-427,428,426,-428,429,431,-431,432,434,-434,435,437,-437,438,436,-438,439,441,-441,442,440,-442,443,445,-445,445,446,-445,444,446,-448,446,448,-448,449,447,-449,450,452,-452,453,451,-453,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,465,463,-465,466,465,-465,467,469,-469,470,472,-472,473,471,-473,474,476,-476,477,475,-477,478,480,-480,481,479,-481,482,484,-484,485,487,-487,488,486,-488,489,491,-491,492,490,-492,493,495,-495,496,494,-496,497,496,-496,498,497,-496,499,501,-501,502,500,-502,503,500,-503,504,503,-503,505,503,-505,506,508,-508,509,507,-509,510,512,-512,513,515,-515,516,514,-516,517,516,-516,518,520,-520,521,519,-521,519,521,-523,523,522,-522,524,522,-524,525,522,-525,526,528,-528,529,527,-529,530,532,-532,533,531,-533,534,533,-533,535,537,-537,538,536,-538,539,538,-538,540,542,-542,543,541,-543,544,541,-544,545,547,-547,548,546,-548,549,551,-551,552,550,-552,553,555,-555,556,554,-556,557,556,-556,558,557,-556,559,561,-561,562,560,-562,563,565,-565,566,564,-566,567,569,-569,570,568,-570,571,573,-573,574,572,-574,575,577,-577,578,576,-578,579,581,-581,582,580,-582,583,585,-585,586,584,-586,587,584,-587,588,590,-590,591,589,-591,592,594,-594,595,593,-595,596,598,-598,599,597,-599,600,599,-599,601,599,-601,602,604,-604,605,603,-605,606,605,-605,607,609,-609,610,608,-610,611,613,-613,614,612,-614,615,617,-617,618,616,-618,619,621,-621,622,620,-622,623,625,-625,626,624,-626,627,629,-629,630,628,-630,631,633,-633,634,632,-634,635,637,-637,638,636,-638,639,641,-641,642,640,-642,643,645,-645,646,644,-646,647,646,-646,648,647,-646,649,651,-651,652,650,-652,653,655,-655,656,654,-656,657,659,-659,660,658,-660,661,663,-663,664,662,-664,665,667,-667,668,666,-668,669,671,-671,672,670,-672,673,675,-675,676,674,-676,677,679,-679,680,678,-680,681,683,-683,684,682,-684,685,687,-687,688,686,-688,689,686,-689,690,692,-692,693,691,-693,694,696,-696,697,695,-697,698,700,-700,701,699,-701,702,704,-704,705,703,-705,706,705,-705,707,709,-709,710,708,-710,711,713,-713,714,712,-714,715,717,-717,718,716,-718,719,721,-721,722,720,-722,723,725,-725,726,724,-726,727,729,-729,730,728,-730,731,733,-733,734,732,-734,735,737,-737,738,736,-738,739,741,-741,742,740,-742,743,745,-745,746,744,-746,747,749,-749,750,748,-750,751,748,-751,752,754,-754,755,757,-757 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3618 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,0.5788449,0.5798004,0.5733848,0.5788449,0.5798004,0.5733848,0.5788449,0.5798004,0.5733848,0.5788449,0.5798003,-0.5733848,0.5788449,0.5798003,-0.5733848,0.5788449,0.5798003,-0.5733848,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.5788486,-0.5797967,-0.5733849,0.5788486,-0.5797967,-0.5733849,0.5788486,-0.5797967,-0.5733849,0.5788469,-0.5797991,0.5733841,0.5788469,-0.5797991,0.5733841,0.5788469,-0.5797991,0.5733841,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.578845,-0.5797996,-0.5733857,0.578845,-0.5797996,-0.5733857,0.578845,-0.5797996,-0.5733857,-0.5788488,0.5797969,-0.5733843,-0.5788488,0.5797969,-0.5733843,-0.5788488,0.5797969,-0.5733843,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.5788466,-0.5797986,0.5733848,0.5788466,-0.5797986,0.5733848,0.5788466,-0.5797986,0.5733848,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5788446,0.5798011,0.5733843,-0.5788446,0.5798011,0.5733843,-0.5788446,0.5798011,0.5733843,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0.578847,-0.579799,-0.5733842,0.578847,-0.579799,-0.5733842,0.578847,-0.579799,-0.5733842,-0.5788457,0.5798017,0.5733827,-0.5788457,0.5798017,0.5733827,-0.5788457,0.5798017,0.5733827,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,-0.5788466,0.5798,-0.5733835,-0.5788466,0.5798,-0.5733835,-0.5788466,0.5798,-0.5733835,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,-0.5788447,-0.5797995,0.5733859,-0.5788447,-0.5797995,0.5733859,-0.5788447,-0.5797995,0.5733859,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.5788468,-0.5797997,-0.5733837,-0.5788468,-0.5797997,-0.5733837,-0.5788468,-0.5797997,-0.5733837,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,0.5788454,0.5797992,0.5733854,0.5788454,0.5797992,0.5733854,0.5788454,0.5797992,0.5733854,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,0.578841,-0.5798028,-0.5733864,0.578841,-0.5798028,-0.5733864,0.578841,-0.5798028,-0.5733864,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,-0.5788469,-0.5798004,-0.5733828,-0.5788469,-0.5798004,-0.5733828,-0.5788469,-0.5798004,-0.5733828,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.5788459,0.5798014,0.5733827,0.5788459,0.5798014,0.5733827,0.5788459,0.5798014,0.5733827,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0.5788467,0.5797996,-0.5733836,0.5788467,0.5797996,-0.5733836,0.5788467,0.5797996,-0.5733836,-0.5788447,0.579801,-0.5733843,-0.5788447,0.579801,-0.5733843,-0.5788447,0.579801,-0.5733843,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5788465,-0.5797986,0.5733849,-0.5788465,-0.5797986,0.5733849,-0.5788465,-0.5797986,0.5733849,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.5788446,-0.5797996,-0.5733858,-0.5788446,-0.5797996,-0.5733858,-0.5788446,-0.5797996,-0.5733858,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0.5788471,-0.5798001,-0.573383,0.5788471,-0.5798001,-0.573383,0.5788471,-0.5798001,-0.573383,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5788425,-0.5798005,-0.5733871,-0.5788425,-0.5798005,-0.5733871,-0.5788425,-0.5798005,-0.5733871,-0.578846,-0.5798021,0.5733819,-0.578846,-0.5798021,0.5733819,-0.578846,-0.5798021,0.5733819,-0.5788485,-0.5797967,-0.5733849,-0.5788485,-0.5797967,-0.5733849,-0.5788485,-0.5797967,-0.5733849,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,0.5788454,0.5797993,-0.5733854,0.5788454,0.5797993,-0.5733854,0.5788454,0.5797993,-0.5733854,-0.5788456,0.5797991,0.5733854,-0.5788456,0.5797991,0.5733854,-0.5788456,0.5797991,0.5733854,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,-0.5788466,-0.5797998,0.5733836,-0.5788466,-0.5797998,0.5733836,-0.5788466,-0.5797998,0.5733836,0.5788488,0.5797969,-0.5733843,0.5788488,0.5797969,-0.5733843,0.5788488,0.5797969,-0.5733843,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0.5788437,0.5798014,-0.573385,0.5788437,0.5798014,-0.573385,0.5788437,0.5798014,-0.573385,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,-0.5788452,0.5797992,0.5733856,-0.5788452,0.5797992,0.5733856,-0.5788452,0.5797992,0.5733856,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5788428,-0.5798005,0.5733868,-0.5788428,-0.5798005,0.5733868,-0.5788428,-0.5798005,0.5733868,0.5788412,-0.5798028,0.5733861,0.5788412,-0.5798028,0.5733861,0.5788412,-0.5798028,0.5733861,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,0.578844,0.5798013,0.5733847,0.578844,0.5798013,0.5733847,0.578844,0.5798013,0.5733847,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.5788452,0.5797994,-0.5733857,-0.5788452,0.5797994,-0.5733857,-0.5788452,0.5797994,-0.5733857,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0.5788462,-0.5798017,0.5733821,0.5788462,-0.5798017,0.5733821,0.5788462,-0.5798017,0.5733821,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1516 { + a: -2.379283,8.873681,-2.379283,13.63224,2.379282,8.873681,2.379282,13.63224,7.399755,36.28865,7.399755,29.9993,5.506048,36.28232,5.506048,30.00563,-6.252214,30.77904,-4.91633,28.88611,-6.274479,28.85466,6.274478,28.85466,1.373022,28.88611,2.708906,30.77904,2.708906,31.33247,6.289351,32.64364,1.783581,32.64364,-6.252214,31.33247,-6.289352,32.64364,-5.326889,32.64364,-9.899322,29.9993,-9.899322,36.28865,-8.005614,30.00563,-8.005614,36.28232,1.373022,29.9993,-4.916329,29.9993,1.373022,36.28865,-4.916329,36.28865,6.289351,37.20689,1.783581,37.20689,6.289351,49.78559,1.365586,37.62453,-4.908893,37.62453,-6.289352,49.78559,-6.289352,37.20689,-5.326889,37.20689,-7.378741,30.00563,-7.378741,35.89208,-5.485037,29.9993,-5.485037,34.55729,-0.8236871,23.63867,-0.8236871,31.17071,6.708354,23.63867,6.708354,31.17071,6.70702,25.97706,-0.8223539,25.97706,6.708354,28.25582,-0.8236871,28.25582,-8.686359,24.95407,-10.9588,24.96338,-9.819844,26.93091,6.778039,27.36453,4.505599,27.35521,5.639085,29.33205,0.8236871,31.17071,0.8236871,23.63867,-6.708354,31.17071,-6.708354,23.63867,-6.708354,12.76743,0.8236871,12.76743,-6.70702,10.48867,0.8223539,10.48867,5.540041,32.73161,7.433744,32.72384,6.484615,31.08424,-10.9588,19.69303,-8.686361,19.70235,-9.819843,17.7255,8.873681,15.5429,13.63224,15.5429,8.872839,14.10273,13.63309,14.10273,2.384922,23.49595,2.379283,22.05917,-2.384922,23.49595,-2.379282,22.05917,-6.274479,-6.349902,-6.274479,6.199056,6.274479,-6.349902,6.274479,6.199056,-1.793515,36.60808,1.993883,36.59256,0.09562617,33.31335,-9.92734,22.74456,-8.97821,24.38416,-8.033637,22.73679,-0.8223539,12.76291,6.70702,12.76291,-0.8236871,10.48416,6.708354,10.48416,-7.173822,23.63107,-14.72105,23.63107,-7.173822,31.1783,-14.72105,31.1783,7.714416,25.63124,13.99111,25.63124,7.715527,23.73228,13.99001,23.73228,7.986989,23.86729,9.880689,23.87506,8.93612,22.22768,-7.182746,-0.8223539,-8.722849,2.582787,-7.182746,6.70702,-14.71212,6.70702,-8.371785,0.5438038,-11.99959,3.494127,-14.71212,-0.8223539,-11.6256,1.321934,0.8236871,25.97263,-6.708354,25.97263,0.8223539,28.25137,-6.70702,28.25137,6.289352,37.20689,-6.289351,37.20689,6.289352,49.78559,-6.289351,49.78559,-7.715527,21.22575,-13.99001,21.22575,-7.714416,23.12471,-13.99111,23.12471,6.274479,-6.349902,1.165478,1.505572,6.274479,6.199056,-6.274479,6.199056,-1.165478,1.505572,-1.165478,-0.8253845,1.165478,-0.8253845,-6.274479,-6.349902,-5.588625,17.91197,-4.449673,15.94444,-6.722112,15.93513,6.289352,32.53668,6.274479,28.74769,-6.289351,32.53668,-6.274479,28.74769,6.352125,28.84113,-6.201278,28.84113,6.349902,32.63905,-6.199056,32.63905,-7.173822,16.08635,-14.72105,16.08635,-7.182746,18.35973,-14.71212,18.35973,4.505592,17.30122,6.778031,17.2919,5.639074,15.32437,8.010635,13.31424,8.730459,12.07076,7.294277,12.06487,1.96815,49.78559,1.96815,37.20689,-1.819258,49.77294,-1.819258,37.21954,7.258909,21.25396,7.97873,22.49743,8.695091,21.24806,-1.92618,37.21954,-1.92618,49.77294,1.86123,37.20689,1.86123,49.78559,-4.916329,32.02612,1.373022,32.02612,-4.908893,30.13163,1.365586,30.13163,7.173822,20.25897,7.182746,22.53236,14.72105,20.25897,14.71212,22.53236,1.88671,36.53101,-0.0115461,33.2518,-1.90069,36.54653,-7.173822,22.56197,-7.182746,20.28858,-14.72105,22.56197,-14.71212,20.28858,8.659337,23.63107,8.659337,31.1783,10.93178,23.63867,10.93178,31.17071,9.769359,24.34328,8.630404,26.31081,10.90284,26.32013,-6.289352,28.69838,-6.274479,32.48736,6.289351,28.69838,6.274479,32.48736,-6.76088,23.63867,-6.76088,31.17071,-4.488434,23.63107,-4.488434,31.1783,-6.349902,32.63904,6.199056,32.63904,-6.352125,28.84112,6.201278,28.84112,1.900677,34.3314,-1.886721,34.34692,0.0115361,37.62614,-13.63309,15.54569,-8.872839,15.54569,-13.63224,14.10552,-8.873681,14.10552,7.265683,18.59315,7.265683,23.3534,8.70187,18.58835,8.70187,23.3582,-12.60618,31.92727,-10.78822,31.91983,-11.69938,30.3458,6.902168,14.14121,0.8786679,14.14121,6.903234,15.96421,0.8776009,15.96421,-13.99111,30.00563,-13.99111,36.28232,-7.714416,30.00563,-8.106837,36.28232,-7.714416,35.89208,13.99111,21.2221,8.106835,21.22211,13.99001,23.12106,9.036544,22.53018,9.036544,23.12106,2.384922,18.58835,-2.384922,18.58835,2.384922,23.3582,-2.384922,23.3582,-7.138654,31.01139,-7.138654,37.04916,-5.320697,31.01745,-5.833924,37.0448,-5.320697,36.68305,0.8776009,31.01745,0.8776009,36.68305,6.903234,31.01745,6.200833,36.68305,6.564895,37.04309,6.903234,37.04309,15.74442,20.31641,9.706642,20.31641,15.73728,22.13513,9.713781,22.13513,7.978734,11.67889,7.258913,12.92236,8.695095,12.92826,-2.384922,7.537703,2.384922,7.537703,-2.379283,6.100924,2.379282,6.100924,7.118516,37.04309,7.118516,31.01745,5.300558,37.04916,5.300558,31.01139,-7.294277,12.06488,-8.730459,12.07078,-8.010634,13.31425,6.289352,28.80534,-6.289351,28.80534,6.274479,32.59433,-6.274479,32.59433,7.249767,18.58835,7.249767,23.3582,8.685953,18.59315,8.685953,23.3534,-1.968146,37.20689,-1.968146,49.78559,1.819264,37.21954,1.819264,49.77294,2.384922,6.082161,-2.384922,6.082161,2.379283,7.518945,-2.379282,7.518945,-7.258909,21.25396,-8.695091,21.24807,-7.978731,22.49743,8.630432,18.34559,9.769384,20.31312,10.90287,18.33628,-8.684521,31.17071,-8.684521,23.63867,-10.95697,31.1783,-10.95697,23.63107,-4.916329,14.71632,-4.908893,16.61081,1.373022,14.71632,1.365586,16.61081,14.72105,23.63107,7.173822,23.63107,14.72105,31.1783,7.173822,31.1783,-6.352125,37.21954,-6.352125,49.77294,6.201278,37.21954,6.201278,49.77294,-5.493397,22.40774,-6.442528,20.76813,-7.387096,22.4155,-10.81542,37.04916,-10.81542,31.01139,-12.63338,37.04309,-12.63338,31.01745,-7.265683,23.3534,-7.265683,18.59315,-8.701869,23.3582,-8.701869,18.58835,2.384922,18.58835,-2.384922,18.58835,2.384922,23.3582,-2.384922,23.3582,-0.09562232,33.31335,-1.993878,36.59256,1.793521,36.60808,-2.384922,22.04046,-2.379283,23.47724,2.384922,22.04046,2.379282,23.47724,-8.695095,12.92826,-7.258913,12.92237,-7.978735,11.67889,-8.872839,23.3534,-8.872839,18.59315,-13.63309,23.3534,-13.63309,18.59315,10.83556,31.01745,10.83556,37.04309,12.65351,31.01139,12.65351,37.04916,7.173822,18.38935,14.72105,18.38935,7.182746,16.11596,14.71212,16.11596,-0.8776009,14.13766,-6.903234,14.13766,-0.8786679,15.96067,-6.902168,15.96067,2.379283,8.873681,1.056219,11.94252,2.379283,13.63224,-2.379282,13.63224,-1.056219,11.94252,1.007784,9.69864,-2.379282,8.873681,-1.007784,9.69864,-6.211837,19.8621,-7.122996,21.43613,-5.305045,21.44357,8.730471,22.1055,8.010646,20.86202,7.294288,22.11139,-8.978203,29.62469,-9.927331,31.26429,-8.033628,31.27206,6.786062,31.1783,6.786062,23.63107,4.513616,31.17071,4.513616,23.63867,-7.122969,34.01684,-5.941212,34.22595,-5.818243,34.01149,-5.682564,34.66785,-6.211805,35.59087,7.182746,-0.8223539,7.182746,6.70702,14.71212,-0.8223539,14.71212,6.70702,6.199056,28.84846,-6.349902,28.84846,6.201278,32.64637,-6.352125,32.64637,1.99389,34.28537,-1.793508,34.26985,0.09563246,37.56459,11.7397,32.41602,12.65086,30.842,10.83291,30.83454,-6.903234,33.9683,-0.8776009,33.9683,-6.902168,32.14531,-0.8786679,32.14531,-4.449635,28.71194,-5.58859,26.74441,-6.722074,28.72126,7.433754,21.28501,5.540051,21.27724,6.484624,22.92461,15.73728,0.8786679,13.79664,4.69704,15.73728,6.902168,9.713781,6.902168,11.23889,4.11862,11.23889,2.274943,13.79664,2.728705,9.713781,0.8786679,13.99111,36.28232,13.99111,30.00563,8.106837,36.28232,7.714416,30.00563,7.714416,35.89208,4.916329,16.63544,4.908894,14.74094,-1.373022,16.63544,1.523585,14.86599,1.549431,14.74094,-0.3768198,14.86599,-1.365586,14.74094,-0.3607296,14.74094,-10.78818,23.533,-12.60613,23.52555,-11.69934,25.10703,1.387452,36.54444,1.264483,36.32998,-1.886721,36.53102,1.52313,35.88808,0.01153641,33.2518,-0.01153989,37.62614,1.886717,34.34692,-1.900682,34.3314,-15.74442,25.83355,-15.73728,27.65226,-9.706642,25.83355,-9.713781,27.65226,-4.908893,-13.99001,-4.908893,-9.036545,1.365586,-13.99001,1.365586,-9.036545,8.872839,18.59315,8.872839,23.3534,13.63309,18.59315,13.63309,23.3534,12.65087,24.61098,11.73971,23.03695,10.83291,24.61842,5.260351,35.0947,7.078305,35.10215,6.171506,33.52068,-7.249767,23.3582,-7.249767,18.58835,-8.685953,23.3534,-8.685953,18.59315,9.878313,35.89208,9.878313,30.00563,7.984609,34.55729,7.984609,29.9993,-6.200833,31.88736,-0.8776004,31.88736,-6.199056,28.84846,6.349902,28.84846,-0.5138379,32.39916,6.352125,32.64638,-0.5139825,32.64638,4.916329,29.9993,-1.373022,29.9993,4.916329,34.55729,-1.373022,34.55729,13.63224,14.10551,8.873681,14.10551,13.63309,15.54568,8.872839,15.54568,15.74442,27.67592,15.73728,25.85721,9.706642,27.67592,9.713781,25.85721,-13.99001,25.62759,-9.036545,25.62759,-13.99111,23.72863,-9.036545,25.0367,-8.106836,23.72863,7.078243,20.35069,5.260289,20.35815,6.171448,21.93217,-9.706642,31.01139,-15.74442,31.01139,-9.706642,37.04916,-15.74442,37.04916,-0.8776009,37.04309,-0.8776009,31.01745,-6.903234,37.04309,-6.903234,31.01745,15.74442,31.01139,9.706642,31.01139,15.74442,37.04916,9.706642,37.04916,-1.993886,34.28537,-0.09562861,37.56459,1.793514,34.26984,-8.872839,14.10274,-13.63309,14.10274,-8.873681,15.54291,-13.63224,15.54291,-15.73728,0.8786679,-15.73728,6.902168,-9.713781,0.8786679,-9.713781,6.902168,6.352125,49.77294,6.352125,37.21954,-6.201278,49.77294,-0.5139831,37.21954,-0.8780449,37.57958,-6.201278,37.57958,0.87867,33.96486,6.90217,33.96486,0.8780468,32.90088,6.20128,32.90087,6.903236,32.14185,6.565042,32.38907,6.564897,32.14185,-15.74442,22.1588,-9.706642,22.1588,-15.73728,20.34009,-9.713781,20.34009,-8.730471,22.1055,-7.294288,22.11139,-8.010645,20.86202,1.926174,49.77294,1.926174,37.57958,-1.861234,49.78559,1.412948,37.21782,-1.861234,37.20689,4.908893,-7.715527,4.908893,-13.99001,1.549431,-7.715527,2.379642,-10.37215,-1.365586,-13.99001,0.3282015,-10.37215,-0.3607296,-7.715527,-1.365586,-7.715527,-4.661632,28.70862,-2.671427,28.70862,-2.693127,20.83007,-0.7029228,20.83007,7.487041,14.17604,7.715556,16.31779,11.88978,16.85391,9.71813,17.53582,11.96253,17.53582,-10.12243,28.40869,-7.377933,28.40869,-5.837255,24.60509,-7.288063,28.49712,-5.473301,26.8863,-7.519127,24.17731,-14.06193,28.98753,-7.514026,26.41841,-11.46348,29.32202,-14.06117,29.32202,-2.031278,14.01086,-7.246598,14.17729,-2.427413,17.57878,-7.484278,16.31804,2.140511,0.3744866,-2.140511,0.3744866,2.488966,2.366209,-2.488966,2.366209,1.916504,10.41446,-1.916505,10.41446,-0.1032264,22.03502,-2.300008,13.98376,-2.683512,17.55306,-3.165078,22.03502,1.523585,25.16976,0.9502029,22.81194,-0.3768198,25.16976,-0.9502032,22.81194,-2.671427,28.92525,-4.661632,28.92525,-2.728705,29.2548,-4.69704,29.2548,1.798072,2.751215,-1.798072,2.751215,1.078844,7.919384,-1.078844,7.919384,2.140511,0.3744857,-2.140511,0.3744857,2.488966,2.366208,-2.488966,2.366208,2.488967,2.366208,2.140511,0.3744856,-2.488966,2.366208,-2.140511,0.3744856,-8.325786,19.52849,-12.49705,21.90688,-8.319671,21.46426,-9.095937,21.90688,-7.487041,14.17604,-11.88978,16.85391,-7.715556,16.31779,-9.71813,17.53582,-11.96253,17.53582,1.418213,24.10586,-1.418213,24.10586,1.165478,33.37179,-1.165478,33.37179,-2.488967,2.366208,2.488966,2.366208,-2.140511,0.3744855,2.140511,0.3744855,1.916505,10.00045,-1.916504,10.00045,1.667884,17.60164,-1.530926,21.78892,1.5656,20.72881,1.530926,21.78892,7.920851,24.61738,7.901721,26.83802,14.49573,29.38367,11.87054,29.7151,14.49287,29.7151,2.140511,2.140511,2.140511,-2.140511,-2.140511,2.140511,-2.140511,-2.140511,-1.007784,15.07164,-1.007784,17.41555,1.007784,15.07164,1.007784,17.41555,-2.693127,16.6246,-0.7029228,16.6246,-3.165078,10.11688,-0.1032264,10.11688,-0.8253845,34.48907,1.505572,34.48907,0.6936374,25.44347,3.530064,25.44347,-6.223549,24.78615,-5.83321,27.063,0.1947869,22.01081,0.777382,25.4091,1.67964,1.694768,1.007784,-3.473402,-1.679641,1.694768,-1.007784,-3.473402,1.631277,17.58018,1.558847,20.70819,8.03663,19.52086,7.991725,21.46022,1.916505,10.62862,-1.916505,10.62862,1.798072,14.21651,-1.798072,14.21651,2.488966,1.789792,-2.488966,1.789792,1.916505,10.33182,-1.916505,10.33182,1.67964,17.8044,-1.679641,17.8044,1.530926,22.30969,-1.576635,20.92492,-1.418213,25.72433,1.418213,25.72433,-1.530926,8.690438,-1.02572,15.66484,1.530926,8.690438,1.02572,15.66484,1.086689,13.24133,2.930367,13.24133,0.6936374,7.065562,3.530064,7.065562,1.418213,5.523312,-1.418213,5.523312,0.9502029,12.32157,-0.9502032,12.32157,-2.488967,1.789792,-1.916504,10.33182,2.488966,1.789792,1.916505,10.33182,1.078844,18.91656,1.078844,13.7634,-1.078844,18.91656,-1.078844,13.7634,-1.756313,18.37752,-3.648832,17.99781,-1.956454,18.80816,-4.025439,18.80816,-0.9700074,4.623304,-3.310051,2.569839,-5.553715,9.199011,-7.004541,7.925861,-1.343431,17.81919,-7.737263,19.87598,-1.200916,20.93815,-7.648905,21.80974,2.488966,1.789792,-2.488966,1.789792,1.916505,10.33182,-1.916505,10.33182,10.60979,28.64098,6.315667,24.84748,7.826468,28.64098,7.734125,28.72918,5.915573,27.12264,1.13223,22.32235,0.975714,25.73525,7.12595,24.90084,7.024214,27.11922,2.274943,26.85399,4.11862,26.85399,1.086689,22.09823,2.930367,22.09823,1.418213,25.02584,-1.418213,25.02584,1.165478,34.19461,-1.165478,34.19461,-0.07840332,20.99001,0.1032264,22.03502,3.017062,20.65742,0.6936374,25.43196,3.530064,25.43196,2.488967,1.789792,-2.488966,1.789792,1.916504,10.33182,-1.916505,10.33182,0.8253845,34.48907,-0.6936374,25.44347,-1.505572,34.48907,-3.530064,25.44347,6.223549,24.78615,-0.1947869,22.01081,5.83321,27.063,-0.777382,25.4091,7.841795,19.26721,7.857381,21.20703,11.61424,21.4444,8.268678,21.4444,-1.533048,21.77943,-7.527222,24.38328,-1.435321,25.22591,-7.463697,26.62349,2.031278,14.01086,2.427413,17.57878,7.246598,14.17729,7.484278,16.31804,-0.03138086,7.317445,2.717756,13.41966,3.086675,6.186924,4.650951,12.71873,-2.379642,27.11945,-0.3282015,27.11945,-1.02572,21.55195,1.02572,21.55195,1.078844,18.06559,-1.078844,18.06559,1.056219,18.751,-1.056219,18.751,1.439701,17.44053,3.275405,21.39043,3.455863,17.03601,5.47956,21.39042,-1.916504,10.41447,-0.6141853,17.90738,1.916505,10.41447,2.300008,13.98376,2.683512,17.55306,-1.056219,18.751,1.056219,18.751,-1.078844,18.06559,-1.056219,18.751,1.056219,18.751,-1.078844,18.06559 + } + UVIndex: *1206 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,14,13,11,11,15,14,16,14,15,8,17,10,10,17,18,19,18,17,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,31,30,30,33,32,33,34,32,35,32,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,53,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,67,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,85,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,103,102,104,102,103,105,101,102,106,102,104,101,105,107,104,107,106,108,107,105,106,107,108,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,122,124,126,125,124,122,127,121,128,121,127,126,128,127,124,128,126,129,131,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,149,148,150,152,151,153,151,152,154,156,155,157,159,158,160,158,159,161,163,162,164,162,163,165,167,166,168,166,167,169,171,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,211,210,212,210,211,213,215,214,216,214,215,217,216,215,218,220,219,221,219,220,222,221,220,223,225,224,226,224,225,227,229,228,230,228,229,231,230,229,232,234,233,235,233,234,236,235,234,237,236,234,238,240,239,241,239,240,242,244,243,245,247,246,248,246,247,249,251,250,252,250,251,253,255,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,277,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,299,298,300,298,299,301,303,302,304,302,303,305,307,306,308,306,307,309,311,310,312,314,313,315,313,314,316,318,317,319,321,320,322,320,321,323,325,324,326,324,325,327,329,328,330,328,329,331,333,332,334,332,333,335,337,336,338,336,337,339,336,338,336,340,335,341,335,340,338,341,339,342,341,340,339,341,342,343,345,344,346,348,347,349,351,350,352,354,353,355,353,354,356,358,357,357,359,356,360,356,359,361,363,362,364,362,363,365,367,366,368,366,367,369,371,370,372,374,373,375,377,376,378,376,377,379,381,380,382,384,383,385,387,386,388,386,387,389,386,388,390,389,388,386,391,385,392,385,391,390,392,391,388,392,390,393,395,394,396,394,395,397,396,395,398,400,399,401,399,400,402,399,401,403,401,400,404,403,400,403,404,405,406,408,407,409,411,410,412,410,411,413,412,411,414,416,415,417,419,418,420,418,419,421,423,422,424,422,423,425,427,426,428,426,427,429,431,430,432,434,433,435,437,436,438,436,437,439,441,440,442,440,441,443,445,444,445,446,444,444,446,447,446,448,447,449,447,448,450,452,451,453,451,452,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,465,463,464,466,465,464,467,469,468,470,472,471,473,471,472,474,476,475,477,475,476,478,480,479,481,479,480,482,484,483,485,487,486,488,486,487,489,491,490,492,490,491,493,495,494,496,494,495,497,496,495,498,497,495,499,501,500,502,500,501,503,500,502,504,503,502,505,503,504,506,508,507,509,507,508,510,512,511,513,515,514,516,514,515,517,516,515,518,520,519,521,519,520,519,521,522,523,522,521,524,522,523,525,522,524,526,528,527,529,527,528,530,532,531,533,531,532,534,533,532,535,537,536,538,536,537,539,538,537,540,542,541,543,541,542,544,541,543,545,547,546,548,546,547,549,551,550,552,550,551,553,555,554,556,554,555,557,556,555,558,557,555,559,561,560,562,560,561,563,565,564,566,564,565,567,569,568,570,568,569,571,573,572,574,572,573,575,577,576,578,576,577,579,581,580,582,580,581,583,585,584,586,584,585,587,584,586,588,590,589,591,589,590,592,594,593,595,593,594,596,598,597,599,597,598,600,599,598,601,599,600,602,604,603,605,603,604,606,605,604,607,609,608,610,608,609,611,613,612,614,612,613,615,617,616,618,616,617,619,621,620,622,620,621,623,625,624,626,624,625,627,629,628,630,628,629,631,633,632,634,632,633,635,637,636,638,636,637,639,641,640,642,640,641,643,645,644,646,644,645,647,646,645,648,647,645,649,651,650,652,650,651,653,655,654,656,654,655,657,659,658,660,658,659,661,663,662,664,662,663,665,667,666,668,666,667,669,671,670,672,670,671,673,675,674,676,674,675,677,679,678,680,678,679,681,683,682,684,682,683,685,687,686,688,686,687,689,686,688,690,692,691,693,691,692,694,696,695,697,695,696,698,700,699,701,699,700,702,704,703,705,703,704,706,705,704,707,709,708,710,708,709,711,713,712,714,712,713,715,717,716,718,716,717,719,721,720,722,720,721,723,725,724,726,724,725,727,729,728,730,728,729,731,733,732,734,732,733,735,737,736,738,736,737,739,741,740,742,740,741,743,745,744,746,744,745,747,749,748,750,748,749,751,748,750,752,754,753,755,757,756 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *402 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_detailed, Model::RootNode + C: "OO",4723909590072022607,0 + + ;Geometry::, Model::Mesh tree_detailed + C: "OO",5400329500735007835,4723909590072022607 + + ;Material::leafsGreen, Model::Mesh tree_detailed + C: "OO",3030,4723909590072022607 + + ;Material::woodBark, Model::Mesh tree_detailed + C: "OO",3046,4723909590072022607 + + ;Material::_defaultMat, Model::Mesh tree_detailed + C: "OO",3004,4723909590072022607 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed.fbx.import new file mode 100644 index 0000000..0a1a381 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b5pu7oopqvysu" +path="res://.godot/imported/tree_detailed.fbx-36e22b5478b9d47ffac99257b21ea960.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_detailed.fbx" +dest_files=["res://.godot/imported/tree_detailed.fbx-36e22b5478b9d47ffac99257b21ea960.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_dark.fbx new file mode 100644 index 0000000..a73a08c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_dark.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 37 + Millisecond: 320 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_detailed_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_detailed_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5257352143546913789, "Model::tree_detailed_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4828924568416809099, "Geometry::", "Mesh" { + Vertices: *2274 { + a: 0.6043379,6.190317,2.253915,0.6043379,6.190317,3.462589,-0.6043376,6.190317,2.253915,-0.6043376,6.190317,3.462589,1.248748,9.217318,-3.894665,1.248748,7.619823,-3.894665,1.588062,9.21571,-3.553743,1.588062,7.62143,-3.553743,1.588062,9.116588,-1.959462,1.248748,8.777553,-1.61854,1.593718,8.771919,-1.612875,-1.593718,8.771919,-1.612875,-0.3487476,8.777553,-1.61854,-0.6880623,9.116588,-1.959462,-0.6880623,9.21571,-2.059137,-1.597495,9.45055,-2.295282,-0.4530296,9.45055,-2.295282,1.588062,9.21571,-2.059137,1.597495,9.45055,-2.295282,1.35303,9.45055,-2.295282,-0.3487476,7.619823,-3.894665,-0.3487476,9.217318,-3.894665,-0.6880623,7.62143,-3.553743,-0.6880623,9.21571,-3.553743,-0.3487476,7.619823,-3.894665,1.248748,7.619823,-3.894665,-0.3487476,9.217318,-3.894665,1.248748,9.217318,-3.894665,-1.597495,9.45055,-2.295282,-0.4530296,9.45055,-2.295282,-1.597495,12.64554,-2.295282,-0.3468589,9.556631,-2.295282,1.246859,9.556631,-2.295282,1.597495,12.64554,-2.295282,1.597495,9.45055,-2.295282,1.35303,9.45055,-2.295282,-0.6880623,7.62143,-1.959462,-0.6880623,9.116588,-1.959462,-0.3487476,7.619823,-1.61854,-0.3487476,8.777553,-1.61854,-4.146324,6.004222,-0.2092165,-4.146324,7.917359,-0.2092165,-4.146324,6.004222,1.703922,-4.146324,7.917359,1.703922,-3.736879,5.595116,1.703583,-3.736879,5.595116,-0.2088779,-4.146324,6.004222,1.703922,-4.146324,6.004222,-0.2092165,-1.414973,7.917359,1.703922,-1.822151,7.919287,2.113028,-1.824418,8.326465,1.703583,-1.822151,7.919287,-0.6183224,-1.414973,7.917359,-0.2092165,-1.824418,8.326465,-0.2088779,-1.414973,7.917359,-0.2092165,-1.414973,6.004222,-0.2092165,-1.414973,7.917359,1.703922,-1.414973,6.004222,1.703922,-1.414973,6.004222,1.703922,-1.414973,6.004222,-0.2092165,-1.824418,5.595116,1.703583,-1.824418,5.595116,-0.2088779,1.588062,7.62143,-3.553743,1.248748,7.619823,-3.894665,1.246859,7.280508,-3.553463,-1.822151,6.002293,2.113028,-1.414973,6.004222,1.703922,-1.824418,5.595116,1.703583,-0.6043376,6.190317,2.253915,-0.6043376,6.190317,3.462589,-0.8631065,5.931763,2.253701,-0.8631065,5.931763,3.462805,0.6057701,4.72144,3.72136,0.6043379,4.464105,3.462589,-0.6057701,4.72144,3.72136,-0.6043376,4.464105,3.462589,1.593718,13.32417,-1.612875,1.593718,13.32417,1.57456,-1.593718,13.32417,-1.612875,-1.593718,13.32417,1.57456,2.276125,9.453762,-1.61344,1.597495,9.45055,-2.295282,1.593718,8.771919,-1.612875,-0.3487476,9.217318,-3.894665,-0.3468589,9.556631,-3.553463,-0.6880623,9.21571,-3.553743,-3.736879,8.326465,-0.2088779,-3.736879,8.326465,1.703583,-4.146324,7.917359,-0.2092165,-4.146324,7.917359,1.703922,-1.822151,6.002293,2.113028,-3.739147,6.002293,2.113028,-1.822151,7.919287,2.113028,-3.739147,7.919287,2.113028,1.588062,7.62143,-1.959462,1.588062,7.62143,-3.553743,1.246859,7.280508,-1.959744,1.246859,7.280508,-3.553463,1.248748,7.619823,-1.61854,1.588062,7.62143,-1.959462,1.246859,7.280508,-1.959744,-1.824418,5.595116,-0.2088779,-2.215604,5.595116,0.6560279,-1.824418,5.595116,1.703583,-3.736879,5.595116,1.703583,-2.126433,5.595116,0.1381262,-3.047897,5.595116,0.8875082,-3.736879,5.595116,-0.2088779,-2.952902,5.595116,0.3357711,-1.414973,7.917359,-0.2092165,-1.414973,7.917359,1.703922,-1.824418,8.326465,-0.2088779,-1.824418,8.326465,1.703583,1.597495,9.45055,2.256967,-1.597495,9.45055,2.256967,1.597495,12.64554,2.256967,-1.597495,12.64554,2.256967,-0.3468589,7.280508,-1.959744,-0.3468589,7.280508,-3.553463,-0.6880623,7.62143,-1.959462,-0.6880623,7.62143,-3.553743,1.593718,8.771919,-1.612875,0.2960315,8.771919,0.3824154,1.593718,8.771919,1.57456,-1.593718,8.771919,1.57456,-0.2960314,8.771919,0.3824154,-0.2960314,8.771919,-0.2096477,0.2960315,8.771919,-0.2096477,-1.593718,8.771919,-1.612875,-3.736879,8.326465,1.703583,-3.739147,7.919287,2.113028,-4.146324,7.917359,1.703922,1.597495,9.45055,2.256967,1.593718,8.771919,1.57456,-1.597495,9.45055,2.256967,-1.593718,8.771919,1.57456,2.276125,12.64233,-1.61344,2.276125,12.64233,1.575125,1.593718,13.32417,-1.612875,1.593718,13.32417,1.57456,-1.822151,7.919287,2.113028,-3.739147,7.919287,2.113028,-1.824418,8.326465,1.703583,-3.736879,8.326465,1.703583,-1.414973,6.004222,-0.2092165,-1.822151,6.002293,-0.6183224,-1.824418,5.595116,-0.2088779,-0.6043376,6.190317,3.462589,-0.6057701,5.932982,3.72136,-0.8631065,5.931763,3.462805,1.597495,12.64554,-2.295282,1.597495,9.45055,-2.295282,2.276125,12.64233,-1.61344,2.276125,9.453762,-1.61344,-0.6057701,5.932982,1.995146,-0.6043376,6.190317,2.253915,-0.8631065,5.931763,2.253701,-2.276125,9.453762,1.575125,-2.276125,12.64233,1.575125,-1.597495,9.45055,2.256967,-1.597495,12.64554,2.256967,1.248748,7.619823,-3.894665,-0.3487476,7.619823,-3.894665,1.246859,7.280508,-3.553463,-0.3468589,7.280508,-3.553463,-1.822151,7.919287,-0.6183224,-1.824418,8.326465,-0.2088779,-3.739147,7.919287,-0.6183224,-3.736879,8.326465,-0.2088779,-1.597495,9.45055,2.256967,-1.593718,8.771919,1.57456,-2.276125,9.453762,1.575125,-1.822151,6.002293,2.113028,-1.824418,5.595116,1.703583,-3.739147,6.002293,2.113028,-3.736879,5.595116,1.703583,-3.739147,6.002293,-0.6183224,-3.739147,7.919287,-0.6183224,-4.146324,6.004222,-0.2092165,-4.146324,7.917359,-0.2092165,-3.736879,5.595116,-0.2088779,-3.739147,6.002293,-0.6183224,-4.146324,6.004222,-0.2092165,1.597495,12.64554,-2.295282,1.593718,13.32417,-1.612875,-1.597495,12.64554,-2.295282,-1.593718,13.32417,-1.612875,-4.146324,6.004222,1.703922,-4.146324,7.917359,1.703922,-3.739147,6.002293,2.113028,-3.739147,7.919287,2.113028,-1.593718,13.32417,-1.612875,-1.593718,13.32417,1.57456,-2.276125,12.64233,-1.61344,-2.276125,12.64233,1.575125,2.276125,12.64233,1.575125,1.597495,12.64554,2.256967,1.593718,13.32417,1.57456,0.8631065,4.72266,3.462805,0.8631065,4.72266,2.253701,0.6043379,4.464105,3.462589,0.6043379,4.464105,2.253915,-0.8631065,4.72266,3.462805,-0.8631065,5.931763,3.462805,-0.6057701,4.72144,3.72136,-0.6057701,5.932982,3.72136,4.324826,7.878432,0.2229106,3.999083,7.876893,-0.1043739,3.997268,7.55115,0.2231816,2.4673,7.55115,1.753151,2.4673,7.55115,0.2231816,2.139745,7.878432,1.753421,2.139745,7.878432,0.2229106,-0.6880623,7.62143,-3.553743,-0.6880623,9.21571,-3.553743,-0.6880623,7.62143,-1.959462,-0.6880623,9.21571,-2.059137,-0.6880623,9.116588,-1.959462,1.588062,9.21571,-3.553743,1.588062,9.21571,-2.059137,1.246859,9.556631,-3.553463,1.35303,9.45055,-2.295282,1.246859,9.556631,-2.295282,-0.6057701,4.72144,1.995146,0.6057701,4.72144,1.995146,-0.6057701,5.932982,1.995146,0.6057701,5.932982,1.995146,2.465487,7.876893,-0.1043739,2.465487,9.410487,-0.1043739,2.139745,7.878432,0.2229106,2.231705,9.40938,0.130515,2.139745,9.317495,0.2229106,2.139745,7.878432,0.2229106,2.139745,9.317495,0.2229106,2.139745,7.878432,1.753421,2.139745,9.317495,1.575012,2.139745,9.408945,1.667483,2.139745,9.408945,1.753421,3.999083,9.410487,2.080706,2.465487,9.410487,2.080706,3.997268,9.736231,1.753151,2.4673,9.736231,1.753151,-0.6043376,4.464105,2.253915,-0.6057701,4.72144,1.995146,-0.8631065,4.72266,2.253701,0.6057701,4.72144,1.995146,-0.6057701,4.72144,1.995146,0.6043379,4.464105,2.253915,-0.6043376,4.464105,2.253915,4.324826,9.408945,1.753421,4.324826,7.878432,1.753421,3.999083,9.410487,2.080706,3.999083,7.876893,2.080706,0.8631065,5.931763,3.462805,0.6057701,5.932982,3.72136,0.6043379,6.190317,3.462589,1.597495,12.64554,2.256967,-1.597495,12.64554,2.256967,1.593718,13.32417,1.57456,-1.593718,13.32417,1.57456,-0.6057701,4.72144,1.995146,-0.6057701,5.932982,1.995146,-0.8631065,4.72266,2.253701,-0.8631065,5.931763,2.253701,-1.597495,9.45055,-2.295282,-1.597495,12.64554,-2.295282,-2.276125,9.453762,-1.61344,-2.276125,12.64233,-1.61344,0.6057701,5.932982,3.72136,-0.6057701,5.932982,3.72136,0.6043379,6.190317,3.462589,-0.6043376,6.190317,3.462589,0.6057701,5.932982,1.995146,0.8631065,5.931763,2.253701,0.6043379,6.190317,2.253915,-3.739147,7.919287,-0.6183224,-3.736879,8.326465,-0.2088779,-4.146324,7.917359,-0.2092165,-1.414973,7.917359,1.703922,-1.414973,6.004222,1.703922,-1.822151,7.919287,2.113028,-1.822151,6.002293,2.113028,1.248748,9.217318,-3.894665,1.246859,9.556631,-3.553463,-0.3487476,9.217318,-3.894665,-0.3468589,9.556631,-3.553463,-3.739147,6.002293,-0.6183224,-1.822151,6.002293,-0.6183224,-3.739147,7.919287,-0.6183224,-1.822151,7.919287,-0.6183224,-2.276125,9.453762,-1.61344,-2.276125,12.64233,-1.61344,-2.276125,9.453762,1.575125,-2.276125,12.64233,1.575125,-0.3487476,7.619823,-1.61854,-0.3468589,7.280508,-1.959744,-0.6880623,7.62143,-1.959462,3.999083,9.410487,-0.1043739,3.999083,7.876893,-0.1043739,4.324826,9.408945,0.2229106,4.324826,7.878432,0.2229106,0.8631065,5.931763,3.462805,0.8631065,4.72266,3.462805,0.6057701,5.932982,3.72136,0.6057701,4.72144,3.72136,0.6057701,4.72144,3.72136,-0.6057701,4.72144,3.72136,0.6057701,5.932982,3.72136,-0.6057701,5.932982,3.72136,-1.593718,8.771919,-1.612875,-1.597495,9.45055,-2.295282,-2.276125,9.453762,-1.61344,0.6057701,5.932982,1.995146,0.6043379,6.190317,2.253915,-0.6057701,5.932982,1.995146,-0.6043376,6.190317,2.253915,0.8631065,4.72266,2.253701,0.6057701,4.72144,1.995146,0.6043379,4.464105,2.253915,0.8631065,5.931763,2.253701,0.8631065,4.72266,2.253701,0.8631065,5.931763,3.462805,0.8631065,4.72266,3.462805,2.139745,7.878432,1.753421,2.139745,9.408945,1.753421,2.465487,7.876893,2.080706,2.465487,9.410487,2.080706,-1.822151,6.002293,-0.6183224,-3.739147,6.002293,-0.6183224,-1.824418,5.595116,-0.2088779,-3.736879,5.595116,-0.2088779,4.324826,9.408945,0.2229106,4.324826,9.408945,1.753421,3.997268,9.736231,0.2231816,3.997268,9.736231,1.753151,0.6043379,4.464105,2.253915,0.2682797,4.464105,3.0334,0.6043379,4.464105,3.462589,-0.6043376,4.464105,3.462589,-0.2682796,4.464105,3.0334,0.2559772,4.464105,2.463454,-0.6043376,4.464105,2.253915,-0.2559771,4.464105,2.463454,2.4673,7.55115,0.2231816,2.465487,7.876893,-0.1043739,2.139745,7.878432,0.2229106,-0.6057701,4.72144,3.72136,-0.6043376,4.464105,3.462589,-0.8631065,4.72266,3.462805,-0.3468589,7.280508,-3.553463,-0.3487476,7.619823,-3.894665,-0.6880623,7.62143,-3.553743,-1.822151,7.919287,-0.6183224,-1.822151,6.002293,-0.6183224,-1.414973,7.917359,-0.2092165,-1.414973,6.004222,-0.2092165,2.465487,9.410487,-0.1043739,2.276125,9.453762,0.1305517,2.231705,9.40938,0.130515,2.276125,9.545213,0.2230234,2.4673,9.736231,0.2231816,-1.824418,8.326465,-0.2088779,-1.824418,8.326465,1.703583,-3.736879,8.326465,-0.2088779,-3.736879,8.326465,1.703583,-1.593718,8.771919,1.57456,-1.593718,8.771919,-1.612875,-2.276125,9.453762,1.575125,-2.276125,9.453762,-1.61344,1.597495,12.64554,-2.295282,2.276125,12.64233,-1.61344,1.593718,13.32417,-1.612875,2.4673,9.736231,1.753151,2.465487,9.410487,2.080706,2.139745,9.408945,1.753421,4.324826,7.878432,1.753421,4.324826,7.878432,0.2229106,3.997268,7.55115,1.753151,3.997268,7.55115,0.2231816,-3.739147,6.002293,2.113028,-3.736879,5.595116,1.703583,-4.146324,6.004222,1.703922,1.248748,9.217318,-3.894665,1.588062,9.21571,-3.553743,1.246859,9.556631,-3.553463,3.997268,7.55115,0.2231816,3.504346,7.55115,1.193048,3.997268,7.55115,1.753151,2.4673,7.55115,1.753151,2.854678,7.55115,1.04613,2.854678,7.55115,0.5778356,3.504346,7.55115,0.6930912,2.4673,7.55115,0.2231816,1.588062,9.21571,-3.553743,1.588062,7.62143,-3.553743,1.588062,9.21571,-2.059137,1.588062,7.62143,-1.959462,1.588062,9.116588,-1.959462,1.248748,7.619823,-1.61854,1.246859,7.280508,-1.959744,-0.3487476,7.619823,-1.61854,0.3869906,7.302905,-1.937222,0.3935554,7.280508,-1.959744,-0.09571224,7.302905,-1.937222,-0.3468589,7.280508,-1.959744,-0.09162532,7.280508,-1.959744,3.999083,9.410487,-0.1043739,4.324826,9.408945,0.2229106,3.997268,9.736231,0.2231816,2.184165,9.453327,1.66752,2.139745,9.408945,1.667483,1.597495,9.45055,2.256967,2.139745,9.317495,1.575012,1.593718,8.771919,1.57456,-1.593718,13.32417,1.57456,-1.597495,12.64554,2.256967,-2.276125,12.64233,1.575125,3.999083,9.410487,-0.1043739,3.997268,9.736231,0.2231816,2.465487,9.410487,-0.1043739,2.4673,9.736231,0.2231816,1.246859,9.556631,-3.553463,1.246859,9.556631,-2.295282,-0.3468589,9.556631,-3.553463,-0.3468589,9.556631,-2.295282,-0.8631065,4.72266,2.253701,-0.8631065,5.931763,2.253701,-0.8631065,4.72266,3.462805,-0.8631065,5.931763,3.462805,2.465487,7.876893,2.080706,2.4673,7.55115,1.753151,2.139745,7.878432,1.753421,3.999083,7.876893,2.080706,4.324826,7.878432,1.753421,3.997268,7.55115,1.753151,0.6057701,5.932982,1.995146,0.6057701,4.72144,1.995146,0.8631065,5.931763,2.253701,0.8631065,4.72266,2.253701,1.588062,9.116588,-1.959462,1.588062,7.62143,-1.959462,1.248748,8.777553,-1.61854,1.248748,7.619823,-1.61854,2.139745,9.317495,1.575012,2.139745,9.317495,0.2229106,1.593718,8.771919,1.57456,1.593718,8.771919,-1.612875,2.231705,9.40938,0.130515,2.276125,9.453762,-1.61344,2.276125,9.453762,0.1305517,1.248748,7.619823,-1.61854,-0.3487476,7.619823,-1.61854,1.248748,8.777553,-1.61854,-0.3487476,8.777553,-1.61854,-0.6043376,4.464105,3.462589,-0.6043376,4.464105,2.253915,-0.8631065,4.72266,3.462805,-0.8631065,4.72266,2.253701,3.999083,7.876893,2.080706,3.997268,7.55115,1.753151,2.465487,7.876893,2.080706,2.4673,7.55115,1.753151,-0.3468589,9.556631,-3.553463,-0.3468589,9.556631,-2.295282,-0.6880623,9.21571,-3.553743,-0.4530296,9.45055,-2.295282,-0.6880623,9.21571,-2.059137,4.324826,9.408945,1.753421,3.999083,9.410487,2.080706,3.997268,9.736231,1.753151,2.465487,7.876893,-0.1043739,3.999083,7.876893,-0.1043739,2.465487,9.410487,-0.1043739,3.999083,9.410487,-0.1043739,4.324826,9.408945,0.2229106,4.324826,7.878432,0.2229106,4.324826,9.408945,1.753421,4.324826,7.878432,1.753421,3.999083,7.876893,2.080706,2.465487,7.876893,2.080706,3.999083,9.410487,2.080706,2.465487,9.410487,2.080706,-1.597495,12.64554,-2.295282,-1.593718,13.32417,-1.612875,-2.276125,12.64233,-1.61344,0.8631065,5.931763,2.253701,0.8631065,5.931763,3.462805,0.6043379,6.190317,2.253915,0.6043379,6.190317,3.462589,3.997268,9.736231,0.2231816,3.997268,9.736231,1.753151,2.4673,9.736231,0.2231816,2.4673,9.736231,1.753151,2.276125,12.64233,-1.61344,2.276125,9.453762,-1.61344,2.276125,12.64233,1.575125,2.276125,9.453762,0.1305517,2.276125,9.545213,0.2230234,2.276125,9.545213,1.575125,2.4673,9.736231,0.2231816,2.4673,9.736231,1.753151,2.276125,9.545213,0.2230234,2.276125,9.545213,1.575125,2.139745,9.408945,1.753421,2.184165,9.453327,1.66752,2.139745,9.408945,1.667483,3.999083,7.876893,-0.1043739,2.465487,7.876893,-0.1043739,3.997268,7.55115,0.2231816,2.4673,7.55115,0.2231816,0.6057701,4.72144,3.72136,0.8631065,4.72266,3.462805,0.6043379,4.464105,3.462589,2.276125,12.64233,1.575125,2.276125,9.545213,1.575125,1.597495,12.64554,2.256967,2.184165,9.453327,1.66752,1.597495,9.45055,2.256967,1.246859,7.280508,-1.959744,1.246859,7.280508,-3.553463,0.3935554,7.280508,-1.959744,0.6044291,7.280508,-2.634526,-0.3468589,7.280508,-3.553463,0.08336318,7.280508,-2.634526,-0.09162532,7.280508,-1.959744,-0.3468589,7.280508,-1.959744,3.507123,7.46749,1.184054,3.507123,7.46749,0.6785424,1.908005,6.2644,0.6840542,1.908005,6.2644,0.1785424,-0.2740264,3.61126,1.896236,-0.2559771,4.15492,1.954682,-0.2740264,4.29101,3.014792,-0.2559771,4.464105,2.463454,-0.2682796,4.464105,3.0334,0.08336318,7.280508,-2.634526,-0.09162532,7.280508,-1.959744,-0.2605329,6.317155,-1.599269,-0.09571224,7.302905,-1.937222,-0.2413516,6.894928,-1.498793,1.908005,6.2644,0.1785424,3.507123,7.46749,0.6785424,1.889396,6.824925,0.2760191,2.854678,7.55115,0.5778356,3.504346,7.55115,0.6930912,0.4567104,3.568995,0.5842021,0.2740263,3.61126,1.896236,0.4266286,4.475097,0.6816121,0.2559772,4.15492,1.954682,-0.5436898,0,-0.5436898,0.5436898,0,-0.5436898,-0.6321973,0.498095,-0.6321976,0.6321974,0.498095,-0.6321976,0.4867921,2.662893,-0.4867921,0.4867921,2.662893,0.4867922,0.3888551,5.612888,0.02621952,0.4567104,3.568995,0.5842021,0.4266286,4.475097,0.6816121,0.3888551,5.612888,0.8039299,0.3869906,7.302905,-1.937222,0.2413515,6.894928,-1.498793,-0.09571224,7.302905,-1.937222,-0.2413516,6.894928,-1.498793,3.507123,7.46749,0.6785424,3.507123,7.46749,1.184054,3.504346,7.55115,0.6930912,3.504346,7.55115,1.193048,0.4567104,3.568995,0.5842021,-0.4567104,3.568995,0.5842021,0.2740263,3.61126,1.896236,-0.2740264,3.61126,1.896236,0.5436898,0,0.5436898,-0.5436898,0,0.5436898,0.6321974,0.498095,0.6321974,-0.6321973,0.498095,0.6321974,0.6321974,0.498095,-0.6321976,0.5436898,0,-0.5436898,0.6321974,0.498095,0.6321974,0.5436898,0,0.5436898,-2.04523,4.99479,0.5385624,-3.047897,5.595116,0.8875082,-2.029009,5.483395,0.5910897,-2.215604,5.595116,0.6560279,0.2740263,3.61126,1.896236,0.2740263,4.29101,3.014792,0.2559772,4.15492,1.954682,0.2559772,4.464105,2.463454,0.2682797,4.464105,3.0334,0.3602262,6.475235,0.8966362,-0.3602261,6.475235,0.8966362,0.2960315,8.771919,0.3824154,-0.2960314,8.771919,0.3824154,-0.6321973,0.498095,-0.6321976,-0.6321973,0.498095,0.6321974,-0.5436898,0,-0.5436898,-0.5436898,0,0.5436898,-0.4867921,2.662893,-0.4867921,0.4867921,2.662893,-0.4867921,-0.4236426,4.565045,-0.1560031,0.3888551,5.612888,0.02621952,-0.3976624,5.347602,-0.01991443,-0.3888551,5.612888,0.02621952,1.908005,6.2644,0.6840542,1.889396,6.824925,0.7443131,3.507123,7.46749,1.184054,2.854678,7.55115,1.04613,3.504346,7.55115,1.193048,0.5436898,0,0.5436898,0.5436898,0,-0.5436898,-0.5436898,0,0.5436898,-0.5436898,0,-0.5436898,0.2559772,4.15492,1.954682,0.2559772,4.464105,2.463454,-0.2559771,4.15492,1.954682,-0.2559771,4.464105,2.463454,1.908005,6.2644,0.6840542,1.908005,6.2644,0.1785424,0.3888551,5.612888,0.8039299,0.3888551,5.612888,0.02621952,-0.2960314,8.771919,-0.2096477,-0.2960314,8.771919,0.3824154,-0.3602261,6.475235,0.1761839,-0.3602261,6.475235,0.8966362,-0.2605329,6.317155,-1.599269,-0.2413516,6.894928,-1.498793,-0.3888551,5.612888,0.02621952,-0.3602261,6.475235,0.1761839,0.4266286,4.475097,0.6816121,0.2559772,4.15492,1.954682,-0.4266289,4.475097,0.6816121,-0.2559771,4.15492,1.954682,-0.4236426,4.565045,-0.1560031,-0.3976624,5.347602,-0.01991443,-2.043379,5.05056,0.01924089,-2.027271,5.535745,0.1036159,0.4867921,2.662893,0.4867922,-0.4867921,2.662893,0.4867922,0.4567104,3.568995,0.5842021,-0.4567104,3.568995,0.5842021,-0.6321973,0.498095,-0.6321976,0.6321974,0.498095,-0.6321976,-0.4867921,2.662893,-0.4867921,0.4867921,2.662893,-0.4867921,0.4266286,4.475097,0.6816121,-0.4266289,4.475097,0.6816121,0.3888551,5.612888,0.8039299,-0.4004654,5.263169,0.7663336,-0.3602261,6.475235,0.8966362,0.3602262,6.475235,0.8966362,0.3888551,5.612888,0.02621952,0.2605329,6.317155,-1.599269,-0.3888551,5.612888,0.02621952,-0.2605329,6.317155,-1.599269,1.889396,6.824925,0.2760191,1.889396,6.824925,0.7443131,0.3602262,6.475235,0.1761839,0.3602262,6.475235,0.8966362,0.3602262,6.475235,0.1761839,-0.3602261,6.475235,0.1761839,0.2413515,6.894928,-1.498793,-0.2413516,6.894928,-1.498793,-0.6321973,0.498095,-0.6321976,-0.4867921,2.662893,-0.4867921,-0.6321973,0.498095,0.6321974,-0.4867921,2.662893,0.4867922,0.2740263,4.29101,3.014792,0.2740263,3.61126,1.896236,-0.2740264,4.29101,3.014792,-0.2740264,3.61126,1.896236,-2.027271,5.535745,0.1036159,-2.029009,5.483395,0.5910897,-2.126433,5.595116,0.1381262,-2.215604,5.595116,0.6560279,-0.3976624,5.347602,-0.01991443,-0.4004654,5.263169,0.7663336,-2.027271,5.535745,0.1036159,-2.029009,5.483395,0.5910897,-0.4266289,4.475097,0.6816121,-2.04523,4.99479,0.5385624,-0.4004654,5.263169,0.7663336,-2.029009,5.483395,0.5910897,0.6321974,0.498095,0.6321974,-0.6321973,0.498095,0.6321974,0.4867921,2.662893,0.4867922,-0.4867921,2.662893,0.4867922,0.6044291,7.280508,-2.634526,0.2605329,6.317155,-1.599269,0.3935554,7.280508,-1.959744,0.3869906,7.302905,-1.937222,0.2413515,6.894928,-1.498793,0.3888551,5.612888,0.8039299,0.3602262,6.475235,0.8966362,1.908005,6.2644,0.6840542,1.889396,6.824925,0.7443131,2.854678,7.55115,0.5778356,2.854678,7.55115,1.04613,1.889396,6.824925,0.2760191,1.889396,6.824925,0.7443131,-0.3602261,6.475235,0.1761839,0.3602262,6.475235,0.1761839,-0.2960314,8.771919,-0.2096477,0.2960315,8.771919,-0.2096477,-0.3976624,5.347602,-0.01991443,-0.3888551,5.612888,0.02621952,-0.4004654,5.263169,0.7663336,-0.3602261,6.475235,0.1761839,-0.3602261,6.475235,0.8966362,0.6321974,0.498095,-0.6321976,0.6321974,0.498095,0.6321974,0.4867921,2.662893,-0.4867921,0.4867921,2.662893,0.4867922,0.2960315,8.771919,-0.2096477,0.3602262,6.475235,0.1761839,0.2960315,8.771919,0.3824154,0.3602262,6.475235,0.8966362,0.2605329,6.317155,-1.599269,0.3888551,5.612888,0.02621952,0.2413515,6.894928,-1.498793,0.3602262,6.475235,0.1761839,-2.043379,5.05056,0.01924089,-2.027271,5.535745,0.1036159,-2.952902,5.595116,0.3357711,-2.126433,5.595116,0.1381262,0.3888551,5.612888,0.02621952,1.908005,6.2644,0.1785424,0.3602262,6.475235,0.1761839,1.889396,6.824925,0.2760191,-0.4567104,3.568995,0.5842021,-0.4266289,4.475097,0.6816121,-0.2740264,3.61126,1.896236,-0.2559771,4.15492,1.954682,-0.4236426,4.565045,-0.1560031,-2.043379,5.05056,0.01924089,-0.4266289,4.475097,0.6816121,-2.04523,4.99479,0.5385624,0.6044291,7.280508,-2.634526,0.08336318,7.280508,-2.634526,0.2605329,6.317155,-1.599269,-0.2605329,6.317155,-1.599269,0.2740263,4.29101,3.014792,-0.2740264,4.29101,3.014792,0.2682797,4.464105,3.0334,-0.2682796,4.464105,3.0334,-2.043379,5.05056,0.01924089,-2.952902,5.595116,0.3357711,-2.04523,4.99479,0.5385624,-3.047897,5.595116,0.8875082,-0.4867921,2.662893,-0.4867921,-0.4236426,4.565045,-0.1560031,-0.4867921,2.662893,0.4867922,-0.4567104,3.568995,0.5842021,-0.4266289,4.475097,0.6816121,0.3602262,6.475235,0.1761839,0.3602262,6.475235,0.8966362,-0.3602261,6.475235,0.1761839,-0.3602261,6.475235,0.8966362,-0.3602261,6.475235,0.1761839,0.3602262,6.475235,0.8966362 + } + PolygonVertexIndex: *1206 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,14,13,-12,11,15,-15,16,14,-16,8,17,-11,10,17,-19,19,18,-18,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,31,-31,30,33,-33,33,34,-33,35,32,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,67,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,85,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,103,-103,104,102,-104,105,101,-103,106,102,-105,101,105,-108,104,107,-107,108,107,-106,106,107,-109,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,122,-125,126,125,-125,122,127,-122,128,121,-128,126,128,-128,124,128,-127,129,131,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,149,-149,150,152,-152,153,151,-153,154,156,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,171,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,216,-216,218,220,-220,221,219,-221,222,221,-221,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,230,-230,232,234,-234,235,233,-235,236,235,-235,237,236,-235,238,240,-240,241,239,-241,242,244,-244,245,247,-247,248,246,-248,249,251,-251,252,250,-252,253,255,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,277,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,299,-299,300,298,-300,301,303,-303,304,302,-304,305,307,-307,308,306,-308,309,311,-311,312,314,-314,315,313,-315,316,318,-318,319,321,-321,322,320,-322,323,325,-325,326,324,-326,327,329,-329,330,328,-330,331,333,-333,334,332,-334,335,337,-337,338,336,-338,339,336,-339,336,340,-336,341,335,-341,338,341,-340,342,341,-341,339,341,-343,343,345,-345,346,348,-348,349,351,-351,352,354,-354,355,353,-355,356,358,-358,357,359,-357,360,356,-360,361,363,-363,364,362,-364,365,367,-367,368,366,-368,369,371,-371,372,374,-374,375,377,-377,378,376,-378,379,381,-381,382,384,-384,385,387,-387,388,386,-388,389,386,-389,390,389,-389,386,391,-386,392,385,-392,390,392,-392,388,392,-391,393,395,-395,396,394,-396,397,396,-396,398,400,-400,401,399,-401,402,399,-402,403,401,-401,404,403,-401,403,404,-406,406,408,-408,409,411,-411,412,410,-412,413,412,-412,414,416,-416,417,419,-419,420,418,-420,421,423,-423,424,422,-424,425,427,-427,428,426,-428,429,431,-431,432,434,-434,435,437,-437,438,436,-438,439,441,-441,442,440,-442,443,445,-445,445,446,-445,444,446,-448,446,448,-448,449,447,-449,450,452,-452,453,451,-453,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,465,463,-465,466,465,-465,467,469,-469,470,472,-472,473,471,-473,474,476,-476,477,475,-477,478,480,-480,481,479,-481,482,484,-484,485,487,-487,488,486,-488,489,491,-491,492,490,-492,493,495,-495,496,494,-496,497,496,-496,498,497,-496,499,501,-501,502,500,-502,503,500,-503,504,503,-503,505,503,-505,506,508,-508,509,507,-509,510,512,-512,513,515,-515,516,514,-516,517,516,-516,518,520,-520,521,519,-521,519,521,-523,523,522,-522,524,522,-524,525,522,-525,526,528,-528,529,527,-529,530,532,-532,533,531,-533,534,533,-533,535,537,-537,538,536,-538,539,538,-538,540,542,-542,543,541,-543,544,541,-544,545,547,-547,548,546,-548,549,551,-551,552,550,-552,553,555,-555,556,554,-556,557,556,-556,558,557,-556,559,561,-561,562,560,-562,563,565,-565,566,564,-566,567,569,-569,570,568,-570,571,573,-573,574,572,-574,575,577,-577,578,576,-578,579,581,-581,582,580,-582,583,585,-585,586,584,-586,587,584,-587,588,590,-590,591,589,-591,592,594,-594,595,593,-595,596,598,-598,599,597,-599,600,599,-599,601,599,-601,602,604,-604,605,603,-605,606,605,-605,607,609,-609,610,608,-610,611,613,-613,614,612,-614,615,617,-617,618,616,-618,619,621,-621,622,620,-622,623,625,-625,626,624,-626,627,629,-629,630,628,-630,631,633,-633,634,632,-634,635,637,-637,638,636,-638,639,641,-641,642,640,-642,643,645,-645,646,644,-646,647,646,-646,648,647,-646,649,651,-651,652,650,-652,653,655,-655,656,654,-656,657,659,-659,660,658,-660,661,663,-663,664,662,-664,665,667,-667,668,666,-668,669,671,-671,672,670,-672,673,675,-675,676,674,-676,677,679,-679,680,678,-680,681,683,-683,684,682,-684,685,687,-687,688,686,-688,689,686,-689,690,692,-692,693,691,-693,694,696,-696,697,695,-697,698,700,-700,701,699,-701,702,704,-704,705,703,-705,706,705,-705,707,709,-709,710,708,-710,711,713,-713,714,712,-714,715,717,-717,718,716,-718,719,721,-721,722,720,-722,723,725,-725,726,724,-726,727,729,-729,730,728,-730,731,733,-733,734,732,-734,735,737,-737,738,736,-738,739,741,-741,742,740,-742,743,745,-745,746,744,-746,747,749,-749,750,748,-750,751,748,-751,752,754,-754,755,757,-757 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3618 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,0.5788449,0.5798004,0.5733848,0.5788449,0.5798004,0.5733848,0.5788449,0.5798004,0.5733848,0.5788449,0.5798003,-0.5733848,0.5788449,0.5798003,-0.5733848,0.5788449,0.5798003,-0.5733848,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.5788486,-0.5797967,-0.5733849,0.5788486,-0.5797967,-0.5733849,0.5788486,-0.5797967,-0.5733849,0.5788469,-0.5797991,0.5733841,0.5788469,-0.5797991,0.5733841,0.5788469,-0.5797991,0.5733841,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.578845,-0.5797996,-0.5733857,0.578845,-0.5797996,-0.5733857,0.578845,-0.5797996,-0.5733857,-0.5788488,0.5797969,-0.5733843,-0.5788488,0.5797969,-0.5733843,-0.5788488,0.5797969,-0.5733843,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.5788466,-0.5797986,0.5733848,0.5788466,-0.5797986,0.5733848,0.5788466,-0.5797986,0.5733848,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5788446,0.5798011,0.5733843,-0.5788446,0.5798011,0.5733843,-0.5788446,0.5798011,0.5733843,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0.578847,-0.579799,-0.5733842,0.578847,-0.579799,-0.5733842,0.578847,-0.579799,-0.5733842,-0.5788457,0.5798017,0.5733827,-0.5788457,0.5798017,0.5733827,-0.5788457,0.5798017,0.5733827,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,-0.5788466,0.5798,-0.5733835,-0.5788466,0.5798,-0.5733835,-0.5788466,0.5798,-0.5733835,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,-0.5788447,-0.5797995,0.5733859,-0.5788447,-0.5797995,0.5733859,-0.5788447,-0.5797995,0.5733859,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.5788468,-0.5797997,-0.5733837,-0.5788468,-0.5797997,-0.5733837,-0.5788468,-0.5797997,-0.5733837,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,0.5788454,0.5797992,0.5733854,0.5788454,0.5797992,0.5733854,0.5788454,0.5797992,0.5733854,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,0.578841,-0.5798028,-0.5733864,0.578841,-0.5798028,-0.5733864,0.578841,-0.5798028,-0.5733864,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,-0.5788469,-0.5798004,-0.5733828,-0.5788469,-0.5798004,-0.5733828,-0.5788469,-0.5798004,-0.5733828,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.5788459,0.5798014,0.5733827,0.5788459,0.5798014,0.5733827,0.5788459,0.5798014,0.5733827,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0.5788467,0.5797996,-0.5733836,0.5788467,0.5797996,-0.5733836,0.5788467,0.5797996,-0.5733836,-0.5788447,0.579801,-0.5733843,-0.5788447,0.579801,-0.5733843,-0.5788447,0.579801,-0.5733843,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5788465,-0.5797986,0.5733849,-0.5788465,-0.5797986,0.5733849,-0.5788465,-0.5797986,0.5733849,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.5788446,-0.5797996,-0.5733858,-0.5788446,-0.5797996,-0.5733858,-0.5788446,-0.5797996,-0.5733858,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0.5788471,-0.5798001,-0.573383,0.5788471,-0.5798001,-0.573383,0.5788471,-0.5798001,-0.573383,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5788425,-0.5798005,-0.5733871,-0.5788425,-0.5798005,-0.5733871,-0.5788425,-0.5798005,-0.5733871,-0.578846,-0.5798021,0.5733819,-0.578846,-0.5798021,0.5733819,-0.578846,-0.5798021,0.5733819,-0.5788485,-0.5797967,-0.5733849,-0.5788485,-0.5797967,-0.5733849,-0.5788485,-0.5797967,-0.5733849,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,0.5788454,0.5797993,-0.5733854,0.5788454,0.5797993,-0.5733854,0.5788454,0.5797993,-0.5733854,-0.5788456,0.5797991,0.5733854,-0.5788456,0.5797991,0.5733854,-0.5788456,0.5797991,0.5733854,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,-0.5788466,-0.5797998,0.5733836,-0.5788466,-0.5797998,0.5733836,-0.5788466,-0.5797998,0.5733836,0.5788488,0.5797969,-0.5733843,0.5788488,0.5797969,-0.5733843,0.5788488,0.5797969,-0.5733843,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0.5788437,0.5798014,-0.573385,0.5788437,0.5798014,-0.573385,0.5788437,0.5798014,-0.573385,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,-0.5788452,0.5797992,0.5733856,-0.5788452,0.5797992,0.5733856,-0.5788452,0.5797992,0.5733856,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5788428,-0.5798005,0.5733868,-0.5788428,-0.5798005,0.5733868,-0.5788428,-0.5798005,0.5733868,0.5788412,-0.5798028,0.5733861,0.5788412,-0.5798028,0.5733861,0.5788412,-0.5798028,0.5733861,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,0.578844,0.5798013,0.5733847,0.578844,0.5798013,0.5733847,0.578844,0.5798013,0.5733847,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.5788452,0.5797994,-0.5733857,-0.5788452,0.5797994,-0.5733857,-0.5788452,0.5797994,-0.5733857,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0.5788462,-0.5798017,0.5733821,0.5788462,-0.5798017,0.5733821,0.5788462,-0.5798017,0.5733821,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1516 { + a: -2.379283,8.873681,-2.379283,13.63224,2.379282,8.873681,2.379282,13.63224,7.399755,36.28865,7.399755,29.9993,5.506048,36.28232,5.506048,30.00563,-6.252214,30.77904,-4.91633,28.88611,-6.274479,28.85466,6.274478,28.85466,1.373022,28.88611,2.708906,30.77904,2.708906,31.33247,6.289351,32.64364,1.783581,32.64364,-6.252214,31.33247,-6.289352,32.64364,-5.326889,32.64364,-9.899322,29.9993,-9.899322,36.28865,-8.005614,30.00563,-8.005614,36.28232,1.373022,29.9993,-4.916329,29.9993,1.373022,36.28865,-4.916329,36.28865,6.289351,37.20689,1.783581,37.20689,6.289351,49.78559,1.365586,37.62453,-4.908893,37.62453,-6.289352,49.78559,-6.289352,37.20689,-5.326889,37.20689,-7.378741,30.00563,-7.378741,35.89208,-5.485037,29.9993,-5.485037,34.55729,-0.8236871,23.63867,-0.8236871,31.17071,6.708354,23.63867,6.708354,31.17071,6.70702,25.97706,-0.8223539,25.97706,6.708354,28.25582,-0.8236871,28.25582,-8.686359,24.95407,-10.9588,24.96338,-9.819844,26.93091,6.778039,27.36453,4.505599,27.35521,5.639085,29.33205,0.8236871,31.17071,0.8236871,23.63867,-6.708354,31.17071,-6.708354,23.63867,-6.708354,12.76743,0.8236871,12.76743,-6.70702,10.48867,0.8223539,10.48867,5.540041,32.73161,7.433744,32.72384,6.484615,31.08424,-10.9588,19.69303,-8.686361,19.70235,-9.819843,17.7255,8.873681,15.5429,13.63224,15.5429,8.872839,14.10273,13.63309,14.10273,2.384922,23.49595,2.379283,22.05917,-2.384922,23.49595,-2.379282,22.05917,-6.274479,-6.349902,-6.274479,6.199056,6.274479,-6.349902,6.274479,6.199056,-1.793515,36.60808,1.993883,36.59256,0.09562617,33.31335,-9.92734,22.74456,-8.97821,24.38416,-8.033637,22.73679,-0.8223539,12.76291,6.70702,12.76291,-0.8236871,10.48416,6.708354,10.48416,-7.173822,23.63107,-14.72105,23.63107,-7.173822,31.1783,-14.72105,31.1783,7.714416,25.63124,13.99111,25.63124,7.715527,23.73228,13.99001,23.73228,7.986989,23.86729,9.880689,23.87506,8.93612,22.22768,-7.182746,-0.8223539,-8.722849,2.582787,-7.182746,6.70702,-14.71212,6.70702,-8.371785,0.5438038,-11.99959,3.494127,-14.71212,-0.8223539,-11.6256,1.321934,0.8236871,25.97263,-6.708354,25.97263,0.8223539,28.25137,-6.70702,28.25137,6.289352,37.20689,-6.289351,37.20689,6.289352,49.78559,-6.289351,49.78559,-7.715527,21.22575,-13.99001,21.22575,-7.714416,23.12471,-13.99111,23.12471,6.274479,-6.349902,1.165478,1.505572,6.274479,6.199056,-6.274479,6.199056,-1.165478,1.505572,-1.165478,-0.8253845,1.165478,-0.8253845,-6.274479,-6.349902,-5.588625,17.91197,-4.449673,15.94444,-6.722112,15.93513,6.289352,32.53668,6.274479,28.74769,-6.289351,32.53668,-6.274479,28.74769,6.352125,28.84113,-6.201278,28.84113,6.349902,32.63905,-6.199056,32.63905,-7.173822,16.08635,-14.72105,16.08635,-7.182746,18.35973,-14.71212,18.35973,4.505592,17.30122,6.778031,17.2919,5.639074,15.32437,8.010635,13.31424,8.730459,12.07076,7.294277,12.06487,1.96815,49.78559,1.96815,37.20689,-1.819258,49.77294,-1.819258,37.21954,7.258909,21.25396,7.97873,22.49743,8.695091,21.24806,-1.92618,37.21954,-1.92618,49.77294,1.86123,37.20689,1.86123,49.78559,-4.916329,32.02612,1.373022,32.02612,-4.908893,30.13163,1.365586,30.13163,7.173822,20.25897,7.182746,22.53236,14.72105,20.25897,14.71212,22.53236,1.88671,36.53101,-0.0115461,33.2518,-1.90069,36.54653,-7.173822,22.56197,-7.182746,20.28858,-14.72105,22.56197,-14.71212,20.28858,8.659337,23.63107,8.659337,31.1783,10.93178,23.63867,10.93178,31.17071,9.769359,24.34328,8.630404,26.31081,10.90284,26.32013,-6.289352,28.69838,-6.274479,32.48736,6.289351,28.69838,6.274479,32.48736,-6.76088,23.63867,-6.76088,31.17071,-4.488434,23.63107,-4.488434,31.1783,-6.349902,32.63904,6.199056,32.63904,-6.352125,28.84112,6.201278,28.84112,1.900677,34.3314,-1.886721,34.34692,0.0115361,37.62614,-13.63309,15.54569,-8.872839,15.54569,-13.63224,14.10552,-8.873681,14.10552,7.265683,18.59315,7.265683,23.3534,8.70187,18.58835,8.70187,23.3582,-12.60618,31.92727,-10.78822,31.91983,-11.69938,30.3458,6.902168,14.14121,0.8786679,14.14121,6.903234,15.96421,0.8776009,15.96421,-13.99111,30.00563,-13.99111,36.28232,-7.714416,30.00563,-8.106837,36.28232,-7.714416,35.89208,13.99111,21.2221,8.106835,21.22211,13.99001,23.12106,9.036544,22.53018,9.036544,23.12106,2.384922,18.58835,-2.384922,18.58835,2.384922,23.3582,-2.384922,23.3582,-7.138654,31.01139,-7.138654,37.04916,-5.320697,31.01745,-5.833924,37.0448,-5.320697,36.68305,0.8776009,31.01745,0.8776009,36.68305,6.903234,31.01745,6.200833,36.68305,6.564895,37.04309,6.903234,37.04309,15.74442,20.31641,9.706642,20.31641,15.73728,22.13513,9.713781,22.13513,7.978734,11.67889,7.258913,12.92236,8.695095,12.92826,-2.384922,7.537703,2.384922,7.537703,-2.379283,6.100924,2.379282,6.100924,7.118516,37.04309,7.118516,31.01745,5.300558,37.04916,5.300558,31.01139,-7.294277,12.06488,-8.730459,12.07078,-8.010634,13.31425,6.289352,28.80534,-6.289351,28.80534,6.274479,32.59433,-6.274479,32.59433,7.249767,18.58835,7.249767,23.3582,8.685953,18.59315,8.685953,23.3534,-1.968146,37.20689,-1.968146,49.78559,1.819264,37.21954,1.819264,49.77294,2.384922,6.082161,-2.384922,6.082161,2.379283,7.518945,-2.379282,7.518945,-7.258909,21.25396,-8.695091,21.24807,-7.978731,22.49743,8.630432,18.34559,9.769384,20.31312,10.90287,18.33628,-8.684521,31.17071,-8.684521,23.63867,-10.95697,31.1783,-10.95697,23.63107,-4.916329,14.71632,-4.908893,16.61081,1.373022,14.71632,1.365586,16.61081,14.72105,23.63107,7.173822,23.63107,14.72105,31.1783,7.173822,31.1783,-6.352125,37.21954,-6.352125,49.77294,6.201278,37.21954,6.201278,49.77294,-5.493397,22.40774,-6.442528,20.76813,-7.387096,22.4155,-10.81542,37.04916,-10.81542,31.01139,-12.63338,37.04309,-12.63338,31.01745,-7.265683,23.3534,-7.265683,18.59315,-8.701869,23.3582,-8.701869,18.58835,2.384922,18.58835,-2.384922,18.58835,2.384922,23.3582,-2.384922,23.3582,-0.09562232,33.31335,-1.993878,36.59256,1.793521,36.60808,-2.384922,22.04046,-2.379283,23.47724,2.384922,22.04046,2.379282,23.47724,-8.695095,12.92826,-7.258913,12.92237,-7.978735,11.67889,-8.872839,23.3534,-8.872839,18.59315,-13.63309,23.3534,-13.63309,18.59315,10.83556,31.01745,10.83556,37.04309,12.65351,31.01139,12.65351,37.04916,7.173822,18.38935,14.72105,18.38935,7.182746,16.11596,14.71212,16.11596,-0.8776009,14.13766,-6.903234,14.13766,-0.8786679,15.96067,-6.902168,15.96067,2.379283,8.873681,1.056219,11.94252,2.379283,13.63224,-2.379282,13.63224,-1.056219,11.94252,1.007784,9.69864,-2.379282,8.873681,-1.007784,9.69864,-6.211837,19.8621,-7.122996,21.43613,-5.305045,21.44357,8.730471,22.1055,8.010646,20.86202,7.294288,22.11139,-8.978203,29.62469,-9.927331,31.26429,-8.033628,31.27206,6.786062,31.1783,6.786062,23.63107,4.513616,31.17071,4.513616,23.63867,-7.122969,34.01684,-5.941212,34.22595,-5.818243,34.01149,-5.682564,34.66785,-6.211805,35.59087,7.182746,-0.8223539,7.182746,6.70702,14.71212,-0.8223539,14.71212,6.70702,6.199056,28.84846,-6.349902,28.84846,6.201278,32.64637,-6.352125,32.64637,1.99389,34.28537,-1.793508,34.26985,0.09563246,37.56459,11.7397,32.41602,12.65086,30.842,10.83291,30.83454,-6.903234,33.9683,-0.8776009,33.9683,-6.902168,32.14531,-0.8786679,32.14531,-4.449635,28.71194,-5.58859,26.74441,-6.722074,28.72126,7.433754,21.28501,5.540051,21.27724,6.484624,22.92461,15.73728,0.8786679,13.79664,4.69704,15.73728,6.902168,9.713781,6.902168,11.23889,4.11862,11.23889,2.274943,13.79664,2.728705,9.713781,0.8786679,13.99111,36.28232,13.99111,30.00563,8.106837,36.28232,7.714416,30.00563,7.714416,35.89208,4.916329,16.63544,4.908894,14.74094,-1.373022,16.63544,1.523585,14.86599,1.549431,14.74094,-0.3768198,14.86599,-1.365586,14.74094,-0.3607296,14.74094,-10.78818,23.533,-12.60613,23.52555,-11.69934,25.10703,1.387452,36.54444,1.264483,36.32998,-1.886721,36.53102,1.52313,35.88808,0.01153641,33.2518,-0.01153989,37.62614,1.886717,34.34692,-1.900682,34.3314,-15.74442,25.83355,-15.73728,27.65226,-9.706642,25.83355,-9.713781,27.65226,-4.908893,-13.99001,-4.908893,-9.036545,1.365586,-13.99001,1.365586,-9.036545,8.872839,18.59315,8.872839,23.3534,13.63309,18.59315,13.63309,23.3534,12.65087,24.61098,11.73971,23.03695,10.83291,24.61842,5.260351,35.0947,7.078305,35.10215,6.171506,33.52068,-7.249767,23.3582,-7.249767,18.58835,-8.685953,23.3534,-8.685953,18.59315,9.878313,35.89208,9.878313,30.00563,7.984609,34.55729,7.984609,29.9993,-6.200833,31.88736,-0.8776004,31.88736,-6.199056,28.84846,6.349902,28.84846,-0.5138379,32.39916,6.352125,32.64638,-0.5139825,32.64638,4.916329,29.9993,-1.373022,29.9993,4.916329,34.55729,-1.373022,34.55729,13.63224,14.10551,8.873681,14.10551,13.63309,15.54568,8.872839,15.54568,15.74442,27.67592,15.73728,25.85721,9.706642,27.67592,9.713781,25.85721,-13.99001,25.62759,-9.036545,25.62759,-13.99111,23.72863,-9.036545,25.0367,-8.106836,23.72863,7.078243,20.35069,5.260289,20.35815,6.171448,21.93217,-9.706642,31.01139,-15.74442,31.01139,-9.706642,37.04916,-15.74442,37.04916,-0.8776009,37.04309,-0.8776009,31.01745,-6.903234,37.04309,-6.903234,31.01745,15.74442,31.01139,9.706642,31.01139,15.74442,37.04916,9.706642,37.04916,-1.993886,34.28537,-0.09562861,37.56459,1.793514,34.26984,-8.872839,14.10274,-13.63309,14.10274,-8.873681,15.54291,-13.63224,15.54291,-15.73728,0.8786679,-15.73728,6.902168,-9.713781,0.8786679,-9.713781,6.902168,6.352125,49.77294,6.352125,37.21954,-6.201278,49.77294,-0.5139831,37.21954,-0.8780449,37.57958,-6.201278,37.57958,0.87867,33.96486,6.90217,33.96486,0.8780468,32.90088,6.20128,32.90087,6.903236,32.14185,6.565042,32.38907,6.564897,32.14185,-15.74442,22.1588,-9.706642,22.1588,-15.73728,20.34009,-9.713781,20.34009,-8.730471,22.1055,-7.294288,22.11139,-8.010645,20.86202,1.926174,49.77294,1.926174,37.57958,-1.861234,49.78559,1.412948,37.21782,-1.861234,37.20689,4.908893,-7.715527,4.908893,-13.99001,1.549431,-7.715527,2.379642,-10.37215,-1.365586,-13.99001,0.3282015,-10.37215,-0.3607296,-7.715527,-1.365586,-7.715527,-4.661632,28.70862,-2.671427,28.70862,-2.693127,20.83007,-0.7029228,20.83007,7.487041,14.17604,7.715556,16.31779,11.88978,16.85391,9.71813,17.53582,11.96253,17.53582,-10.12243,28.40869,-7.377933,28.40869,-5.837255,24.60509,-7.288063,28.49712,-5.473301,26.8863,-7.519127,24.17731,-14.06193,28.98753,-7.514026,26.41841,-11.46348,29.32202,-14.06117,29.32202,-2.031278,14.01086,-7.246598,14.17729,-2.427413,17.57878,-7.484278,16.31804,2.140511,0.3744866,-2.140511,0.3744866,2.488966,2.366209,-2.488966,2.366209,1.916504,10.41446,-1.916505,10.41446,-0.1032264,22.03502,-2.300008,13.98376,-2.683512,17.55306,-3.165078,22.03502,1.523585,25.16976,0.9502029,22.81194,-0.3768198,25.16976,-0.9502032,22.81194,-2.671427,28.92525,-4.661632,28.92525,-2.728705,29.2548,-4.69704,29.2548,1.798072,2.751215,-1.798072,2.751215,1.078844,7.919384,-1.078844,7.919384,2.140511,0.3744857,-2.140511,0.3744857,2.488966,2.366208,-2.488966,2.366208,2.488967,2.366208,2.140511,0.3744856,-2.488966,2.366208,-2.140511,0.3744856,-8.325786,19.52849,-12.49705,21.90688,-8.319671,21.46426,-9.095937,21.90688,-7.487041,14.17604,-11.88978,16.85391,-7.715556,16.31779,-9.71813,17.53582,-11.96253,17.53582,1.418213,24.10586,-1.418213,24.10586,1.165478,33.37179,-1.165478,33.37179,-2.488967,2.366208,2.488966,2.366208,-2.140511,0.3744855,2.140511,0.3744855,1.916505,10.00045,-1.916504,10.00045,1.667884,17.60164,-1.530926,21.78892,1.5656,20.72881,1.530926,21.78892,7.920851,24.61738,7.901721,26.83802,14.49573,29.38367,11.87054,29.7151,14.49287,29.7151,2.140511,2.140511,2.140511,-2.140511,-2.140511,2.140511,-2.140511,-2.140511,-1.007784,15.07164,-1.007784,17.41555,1.007784,15.07164,1.007784,17.41555,-2.693127,16.6246,-0.7029228,16.6246,-3.165078,10.11688,-0.1032264,10.11688,-0.8253845,34.48907,1.505572,34.48907,0.6936374,25.44347,3.530064,25.44347,-6.223549,24.78615,-5.83321,27.063,0.1947869,22.01081,0.777382,25.4091,1.67964,1.694768,1.007784,-3.473402,-1.679641,1.694768,-1.007784,-3.473402,1.631277,17.58018,1.558847,20.70819,8.03663,19.52086,7.991725,21.46022,1.916505,10.62862,-1.916505,10.62862,1.798072,14.21651,-1.798072,14.21651,2.488966,1.789792,-2.488966,1.789792,1.916505,10.33182,-1.916505,10.33182,1.67964,17.8044,-1.679641,17.8044,1.530926,22.30969,-1.576635,20.92492,-1.418213,25.72433,1.418213,25.72433,-1.530926,8.690438,-1.02572,15.66484,1.530926,8.690438,1.02572,15.66484,1.086689,13.24133,2.930367,13.24133,0.6936374,7.065562,3.530064,7.065562,1.418213,5.523312,-1.418213,5.523312,0.9502029,12.32157,-0.9502032,12.32157,-2.488967,1.789792,-1.916504,10.33182,2.488966,1.789792,1.916505,10.33182,1.078844,18.91656,1.078844,13.7634,-1.078844,18.91656,-1.078844,13.7634,-1.756313,18.37752,-3.648832,17.99781,-1.956454,18.80816,-4.025439,18.80816,-0.9700074,4.623304,-3.310051,2.569839,-5.553715,9.199011,-7.004541,7.925861,-1.343431,17.81919,-7.737263,19.87598,-1.200916,20.93815,-7.648905,21.80974,2.488966,1.789792,-2.488966,1.789792,1.916505,10.33182,-1.916505,10.33182,10.60979,28.64098,6.315667,24.84748,7.826468,28.64098,7.734125,28.72918,5.915573,27.12264,1.13223,22.32235,0.975714,25.73525,7.12595,24.90084,7.024214,27.11922,2.274943,26.85399,4.11862,26.85399,1.086689,22.09823,2.930367,22.09823,1.418213,25.02584,-1.418213,25.02584,1.165478,34.19461,-1.165478,34.19461,-0.07840332,20.99001,0.1032264,22.03502,3.017062,20.65742,0.6936374,25.43196,3.530064,25.43196,2.488967,1.789792,-2.488966,1.789792,1.916504,10.33182,-1.916505,10.33182,0.8253845,34.48907,-0.6936374,25.44347,-1.505572,34.48907,-3.530064,25.44347,6.223549,24.78615,-0.1947869,22.01081,5.83321,27.063,-0.777382,25.4091,7.841795,19.26721,7.857381,21.20703,11.61424,21.4444,8.268678,21.4444,-1.533048,21.77943,-7.527222,24.38328,-1.435321,25.22591,-7.463697,26.62349,2.031278,14.01086,2.427413,17.57878,7.246598,14.17729,7.484278,16.31804,-0.03138086,7.317445,2.717756,13.41966,3.086675,6.186924,4.650951,12.71873,-2.379642,27.11945,-0.3282015,27.11945,-1.02572,21.55195,1.02572,21.55195,1.078844,18.06559,-1.078844,18.06559,1.056219,18.751,-1.056219,18.751,1.439701,17.44053,3.275405,21.39043,3.455863,17.03601,5.47956,21.39042,-1.916504,10.41447,-0.6141853,17.90738,1.916505,10.41447,2.300008,13.98376,2.683512,17.55306,-1.056219,18.751,1.056219,18.751,-1.078844,18.06559,-1.056219,18.751,1.056219,18.751,-1.078844,18.06559 + } + UVIndex: *1206 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,14,13,11,11,15,14,16,14,15,8,17,10,10,17,18,19,18,17,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,31,30,30,33,32,33,34,32,35,32,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,53,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,67,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,85,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,103,102,104,102,103,105,101,102,106,102,104,101,105,107,104,107,106,108,107,105,106,107,108,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,122,124,126,125,124,122,127,121,128,121,127,126,128,127,124,128,126,129,131,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,149,148,150,152,151,153,151,152,154,156,155,157,159,158,160,158,159,161,163,162,164,162,163,165,167,166,168,166,167,169,171,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,211,210,212,210,211,213,215,214,216,214,215,217,216,215,218,220,219,221,219,220,222,221,220,223,225,224,226,224,225,227,229,228,230,228,229,231,230,229,232,234,233,235,233,234,236,235,234,237,236,234,238,240,239,241,239,240,242,244,243,245,247,246,248,246,247,249,251,250,252,250,251,253,255,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,277,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,299,298,300,298,299,301,303,302,304,302,303,305,307,306,308,306,307,309,311,310,312,314,313,315,313,314,316,318,317,319,321,320,322,320,321,323,325,324,326,324,325,327,329,328,330,328,329,331,333,332,334,332,333,335,337,336,338,336,337,339,336,338,336,340,335,341,335,340,338,341,339,342,341,340,339,341,342,343,345,344,346,348,347,349,351,350,352,354,353,355,353,354,356,358,357,357,359,356,360,356,359,361,363,362,364,362,363,365,367,366,368,366,367,369,371,370,372,374,373,375,377,376,378,376,377,379,381,380,382,384,383,385,387,386,388,386,387,389,386,388,390,389,388,386,391,385,392,385,391,390,392,391,388,392,390,393,395,394,396,394,395,397,396,395,398,400,399,401,399,400,402,399,401,403,401,400,404,403,400,403,404,405,406,408,407,409,411,410,412,410,411,413,412,411,414,416,415,417,419,418,420,418,419,421,423,422,424,422,423,425,427,426,428,426,427,429,431,430,432,434,433,435,437,436,438,436,437,439,441,440,442,440,441,443,445,444,445,446,444,444,446,447,446,448,447,449,447,448,450,452,451,453,451,452,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,465,463,464,466,465,464,467,469,468,470,472,471,473,471,472,474,476,475,477,475,476,478,480,479,481,479,480,482,484,483,485,487,486,488,486,487,489,491,490,492,490,491,493,495,494,496,494,495,497,496,495,498,497,495,499,501,500,502,500,501,503,500,502,504,503,502,505,503,504,506,508,507,509,507,508,510,512,511,513,515,514,516,514,515,517,516,515,518,520,519,521,519,520,519,521,522,523,522,521,524,522,523,525,522,524,526,528,527,529,527,528,530,532,531,533,531,532,534,533,532,535,537,536,538,536,537,539,538,537,540,542,541,543,541,542,544,541,543,545,547,546,548,546,547,549,551,550,552,550,551,553,555,554,556,554,555,557,556,555,558,557,555,559,561,560,562,560,561,563,565,564,566,564,565,567,569,568,570,568,569,571,573,572,574,572,573,575,577,576,578,576,577,579,581,580,582,580,581,583,585,584,586,584,585,587,584,586,588,590,589,591,589,590,592,594,593,595,593,594,596,598,597,599,597,598,600,599,598,601,599,600,602,604,603,605,603,604,606,605,604,607,609,608,610,608,609,611,613,612,614,612,613,615,617,616,618,616,617,619,621,620,622,620,621,623,625,624,626,624,625,627,629,628,630,628,629,631,633,632,634,632,633,635,637,636,638,636,637,639,641,640,642,640,641,643,645,644,646,644,645,647,646,645,648,647,645,649,651,650,652,650,651,653,655,654,656,654,655,657,659,658,660,658,659,661,663,662,664,662,663,665,667,666,668,666,667,669,671,670,672,670,671,673,675,674,676,674,675,677,679,678,680,678,679,681,683,682,684,682,683,685,687,686,688,686,687,689,686,688,690,692,691,693,691,692,694,696,695,697,695,696,698,700,699,701,699,700,702,704,703,705,703,704,706,705,704,707,709,708,710,708,709,711,713,712,714,712,713,715,717,716,718,716,717,719,721,720,722,720,721,723,725,724,726,724,725,727,729,728,730,728,729,731,733,732,734,732,733,735,737,736,738,736,737,739,741,740,742,740,741,743,745,744,746,744,745,747,749,748,750,748,749,751,748,750,752,754,753,755,757,756 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *402 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_detailed_dark, Model::RootNode + C: "OO",5257352143546913789,0 + + ;Geometry::, Model::Mesh tree_detailed_dark + C: "OO",4828924568416809099,5257352143546913789 + + ;Material::leafsDark, Model::Mesh tree_detailed_dark + C: "OO",3026,5257352143546913789 + + ;Material::woodBarkDark, Model::Mesh tree_detailed_dark + C: "OO",3048,5257352143546913789 + + ;Material::_defaultMat, Model::Mesh tree_detailed_dark + C: "OO",3004,5257352143546913789 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_dark.fbx.import new file mode 100644 index 0000000..e17b893 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dcw1ngiw2lb7t" +path="res://.godot/imported/tree_detailed_dark.fbx-90391d3c69e11ade1ff4873f7c42080b.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_dark.fbx" +dest_files=["res://.godot/imported/tree_detailed_dark.fbx-90391d3c69e11ade1ff4873f7c42080b.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_fall.fbx new file mode 100644 index 0000000..3ad02e6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_fall.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 37 + Millisecond: 476 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_detailed_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_detailed_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4808497324105978685, "Model::tree_detailed_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5143224655962479558, "Geometry::", "Mesh" { + Vertices: *2274 { + a: 0.6043379,6.190317,2.253915,0.6043379,6.190317,3.462589,-0.6043376,6.190317,2.253915,-0.6043376,6.190317,3.462589,1.248748,9.217318,-3.894665,1.248748,7.619823,-3.894665,1.588062,9.21571,-3.553743,1.588062,7.62143,-3.553743,1.588062,9.116588,-1.959462,1.248748,8.777553,-1.61854,1.593718,8.771919,-1.612875,-1.593718,8.771919,-1.612875,-0.3487476,8.777553,-1.61854,-0.6880623,9.116588,-1.959462,-0.6880623,9.21571,-2.059137,-1.597495,9.45055,-2.295282,-0.4530296,9.45055,-2.295282,1.588062,9.21571,-2.059137,1.597495,9.45055,-2.295282,1.35303,9.45055,-2.295282,-0.3487476,7.619823,-3.894665,-0.3487476,9.217318,-3.894665,-0.6880623,7.62143,-3.553743,-0.6880623,9.21571,-3.553743,-0.3487476,7.619823,-3.894665,1.248748,7.619823,-3.894665,-0.3487476,9.217318,-3.894665,1.248748,9.217318,-3.894665,-1.597495,9.45055,-2.295282,-0.4530296,9.45055,-2.295282,-1.597495,12.64554,-2.295282,-0.3468589,9.556631,-2.295282,1.246859,9.556631,-2.295282,1.597495,12.64554,-2.295282,1.597495,9.45055,-2.295282,1.35303,9.45055,-2.295282,-0.6880623,7.62143,-1.959462,-0.6880623,9.116588,-1.959462,-0.3487476,7.619823,-1.61854,-0.3487476,8.777553,-1.61854,-4.146324,6.004222,-0.2092165,-4.146324,7.917359,-0.2092165,-4.146324,6.004222,1.703922,-4.146324,7.917359,1.703922,-3.736879,5.595116,1.703583,-3.736879,5.595116,-0.2088779,-4.146324,6.004222,1.703922,-4.146324,6.004222,-0.2092165,-1.414973,7.917359,1.703922,-1.822151,7.919287,2.113028,-1.824418,8.326465,1.703583,-1.822151,7.919287,-0.6183224,-1.414973,7.917359,-0.2092165,-1.824418,8.326465,-0.2088779,-1.414973,7.917359,-0.2092165,-1.414973,6.004222,-0.2092165,-1.414973,7.917359,1.703922,-1.414973,6.004222,1.703922,-1.414973,6.004222,1.703922,-1.414973,6.004222,-0.2092165,-1.824418,5.595116,1.703583,-1.824418,5.595116,-0.2088779,1.588062,7.62143,-3.553743,1.248748,7.619823,-3.894665,1.246859,7.280508,-3.553463,-1.822151,6.002293,2.113028,-1.414973,6.004222,1.703922,-1.824418,5.595116,1.703583,-0.6043376,6.190317,2.253915,-0.6043376,6.190317,3.462589,-0.8631065,5.931763,2.253701,-0.8631065,5.931763,3.462805,0.6057701,4.72144,3.72136,0.6043379,4.464105,3.462589,-0.6057701,4.72144,3.72136,-0.6043376,4.464105,3.462589,1.593718,13.32417,-1.612875,1.593718,13.32417,1.57456,-1.593718,13.32417,-1.612875,-1.593718,13.32417,1.57456,2.276125,9.453762,-1.61344,1.597495,9.45055,-2.295282,1.593718,8.771919,-1.612875,-0.3487476,9.217318,-3.894665,-0.3468589,9.556631,-3.553463,-0.6880623,9.21571,-3.553743,-3.736879,8.326465,-0.2088779,-3.736879,8.326465,1.703583,-4.146324,7.917359,-0.2092165,-4.146324,7.917359,1.703922,-1.822151,6.002293,2.113028,-3.739147,6.002293,2.113028,-1.822151,7.919287,2.113028,-3.739147,7.919287,2.113028,1.588062,7.62143,-1.959462,1.588062,7.62143,-3.553743,1.246859,7.280508,-1.959744,1.246859,7.280508,-3.553463,1.248748,7.619823,-1.61854,1.588062,7.62143,-1.959462,1.246859,7.280508,-1.959744,-1.824418,5.595116,-0.2088779,-2.215604,5.595116,0.6560279,-1.824418,5.595116,1.703583,-3.736879,5.595116,1.703583,-2.126433,5.595116,0.1381262,-3.047897,5.595116,0.8875082,-3.736879,5.595116,-0.2088779,-2.952902,5.595116,0.3357711,-1.414973,7.917359,-0.2092165,-1.414973,7.917359,1.703922,-1.824418,8.326465,-0.2088779,-1.824418,8.326465,1.703583,1.597495,9.45055,2.256967,-1.597495,9.45055,2.256967,1.597495,12.64554,2.256967,-1.597495,12.64554,2.256967,-0.3468589,7.280508,-1.959744,-0.3468589,7.280508,-3.553463,-0.6880623,7.62143,-1.959462,-0.6880623,7.62143,-3.553743,1.593718,8.771919,-1.612875,0.2960315,8.771919,0.3824154,1.593718,8.771919,1.57456,-1.593718,8.771919,1.57456,-0.2960314,8.771919,0.3824154,-0.2960314,8.771919,-0.2096477,0.2960315,8.771919,-0.2096477,-1.593718,8.771919,-1.612875,-3.736879,8.326465,1.703583,-3.739147,7.919287,2.113028,-4.146324,7.917359,1.703922,1.597495,9.45055,2.256967,1.593718,8.771919,1.57456,-1.597495,9.45055,2.256967,-1.593718,8.771919,1.57456,2.276125,12.64233,-1.61344,2.276125,12.64233,1.575125,1.593718,13.32417,-1.612875,1.593718,13.32417,1.57456,-1.822151,7.919287,2.113028,-3.739147,7.919287,2.113028,-1.824418,8.326465,1.703583,-3.736879,8.326465,1.703583,-1.414973,6.004222,-0.2092165,-1.822151,6.002293,-0.6183224,-1.824418,5.595116,-0.2088779,-0.6043376,6.190317,3.462589,-0.6057701,5.932982,3.72136,-0.8631065,5.931763,3.462805,1.597495,12.64554,-2.295282,1.597495,9.45055,-2.295282,2.276125,12.64233,-1.61344,2.276125,9.453762,-1.61344,-0.6057701,5.932982,1.995146,-0.6043376,6.190317,2.253915,-0.8631065,5.931763,2.253701,-2.276125,9.453762,1.575125,-2.276125,12.64233,1.575125,-1.597495,9.45055,2.256967,-1.597495,12.64554,2.256967,1.248748,7.619823,-3.894665,-0.3487476,7.619823,-3.894665,1.246859,7.280508,-3.553463,-0.3468589,7.280508,-3.553463,-1.822151,7.919287,-0.6183224,-1.824418,8.326465,-0.2088779,-3.739147,7.919287,-0.6183224,-3.736879,8.326465,-0.2088779,-1.597495,9.45055,2.256967,-1.593718,8.771919,1.57456,-2.276125,9.453762,1.575125,-1.822151,6.002293,2.113028,-1.824418,5.595116,1.703583,-3.739147,6.002293,2.113028,-3.736879,5.595116,1.703583,-3.739147,6.002293,-0.6183224,-3.739147,7.919287,-0.6183224,-4.146324,6.004222,-0.2092165,-4.146324,7.917359,-0.2092165,-3.736879,5.595116,-0.2088779,-3.739147,6.002293,-0.6183224,-4.146324,6.004222,-0.2092165,1.597495,12.64554,-2.295282,1.593718,13.32417,-1.612875,-1.597495,12.64554,-2.295282,-1.593718,13.32417,-1.612875,-4.146324,6.004222,1.703922,-4.146324,7.917359,1.703922,-3.739147,6.002293,2.113028,-3.739147,7.919287,2.113028,-1.593718,13.32417,-1.612875,-1.593718,13.32417,1.57456,-2.276125,12.64233,-1.61344,-2.276125,12.64233,1.575125,2.276125,12.64233,1.575125,1.597495,12.64554,2.256967,1.593718,13.32417,1.57456,0.8631065,4.72266,3.462805,0.8631065,4.72266,2.253701,0.6043379,4.464105,3.462589,0.6043379,4.464105,2.253915,-0.8631065,4.72266,3.462805,-0.8631065,5.931763,3.462805,-0.6057701,4.72144,3.72136,-0.6057701,5.932982,3.72136,4.324826,7.878432,0.2229106,3.999083,7.876893,-0.1043739,3.997268,7.55115,0.2231816,2.4673,7.55115,1.753151,2.4673,7.55115,0.2231816,2.139745,7.878432,1.753421,2.139745,7.878432,0.2229106,-0.6880623,7.62143,-3.553743,-0.6880623,9.21571,-3.553743,-0.6880623,7.62143,-1.959462,-0.6880623,9.21571,-2.059137,-0.6880623,9.116588,-1.959462,1.588062,9.21571,-3.553743,1.588062,9.21571,-2.059137,1.246859,9.556631,-3.553463,1.35303,9.45055,-2.295282,1.246859,9.556631,-2.295282,-0.6057701,4.72144,1.995146,0.6057701,4.72144,1.995146,-0.6057701,5.932982,1.995146,0.6057701,5.932982,1.995146,2.465487,7.876893,-0.1043739,2.465487,9.410487,-0.1043739,2.139745,7.878432,0.2229106,2.231705,9.40938,0.130515,2.139745,9.317495,0.2229106,2.139745,7.878432,0.2229106,2.139745,9.317495,0.2229106,2.139745,7.878432,1.753421,2.139745,9.317495,1.575012,2.139745,9.408945,1.667483,2.139745,9.408945,1.753421,3.999083,9.410487,2.080706,2.465487,9.410487,2.080706,3.997268,9.736231,1.753151,2.4673,9.736231,1.753151,-0.6043376,4.464105,2.253915,-0.6057701,4.72144,1.995146,-0.8631065,4.72266,2.253701,0.6057701,4.72144,1.995146,-0.6057701,4.72144,1.995146,0.6043379,4.464105,2.253915,-0.6043376,4.464105,2.253915,4.324826,9.408945,1.753421,4.324826,7.878432,1.753421,3.999083,9.410487,2.080706,3.999083,7.876893,2.080706,0.8631065,5.931763,3.462805,0.6057701,5.932982,3.72136,0.6043379,6.190317,3.462589,1.597495,12.64554,2.256967,-1.597495,12.64554,2.256967,1.593718,13.32417,1.57456,-1.593718,13.32417,1.57456,-0.6057701,4.72144,1.995146,-0.6057701,5.932982,1.995146,-0.8631065,4.72266,2.253701,-0.8631065,5.931763,2.253701,-1.597495,9.45055,-2.295282,-1.597495,12.64554,-2.295282,-2.276125,9.453762,-1.61344,-2.276125,12.64233,-1.61344,0.6057701,5.932982,3.72136,-0.6057701,5.932982,3.72136,0.6043379,6.190317,3.462589,-0.6043376,6.190317,3.462589,0.6057701,5.932982,1.995146,0.8631065,5.931763,2.253701,0.6043379,6.190317,2.253915,-3.739147,7.919287,-0.6183224,-3.736879,8.326465,-0.2088779,-4.146324,7.917359,-0.2092165,-1.414973,7.917359,1.703922,-1.414973,6.004222,1.703922,-1.822151,7.919287,2.113028,-1.822151,6.002293,2.113028,1.248748,9.217318,-3.894665,1.246859,9.556631,-3.553463,-0.3487476,9.217318,-3.894665,-0.3468589,9.556631,-3.553463,-3.739147,6.002293,-0.6183224,-1.822151,6.002293,-0.6183224,-3.739147,7.919287,-0.6183224,-1.822151,7.919287,-0.6183224,-2.276125,9.453762,-1.61344,-2.276125,12.64233,-1.61344,-2.276125,9.453762,1.575125,-2.276125,12.64233,1.575125,-0.3487476,7.619823,-1.61854,-0.3468589,7.280508,-1.959744,-0.6880623,7.62143,-1.959462,3.999083,9.410487,-0.1043739,3.999083,7.876893,-0.1043739,4.324826,9.408945,0.2229106,4.324826,7.878432,0.2229106,0.8631065,5.931763,3.462805,0.8631065,4.72266,3.462805,0.6057701,5.932982,3.72136,0.6057701,4.72144,3.72136,0.6057701,4.72144,3.72136,-0.6057701,4.72144,3.72136,0.6057701,5.932982,3.72136,-0.6057701,5.932982,3.72136,-1.593718,8.771919,-1.612875,-1.597495,9.45055,-2.295282,-2.276125,9.453762,-1.61344,0.6057701,5.932982,1.995146,0.6043379,6.190317,2.253915,-0.6057701,5.932982,1.995146,-0.6043376,6.190317,2.253915,0.8631065,4.72266,2.253701,0.6057701,4.72144,1.995146,0.6043379,4.464105,2.253915,0.8631065,5.931763,2.253701,0.8631065,4.72266,2.253701,0.8631065,5.931763,3.462805,0.8631065,4.72266,3.462805,2.139745,7.878432,1.753421,2.139745,9.408945,1.753421,2.465487,7.876893,2.080706,2.465487,9.410487,2.080706,-1.822151,6.002293,-0.6183224,-3.739147,6.002293,-0.6183224,-1.824418,5.595116,-0.2088779,-3.736879,5.595116,-0.2088779,4.324826,9.408945,0.2229106,4.324826,9.408945,1.753421,3.997268,9.736231,0.2231816,3.997268,9.736231,1.753151,0.6043379,4.464105,2.253915,0.2682797,4.464105,3.0334,0.6043379,4.464105,3.462589,-0.6043376,4.464105,3.462589,-0.2682796,4.464105,3.0334,0.2559772,4.464105,2.463454,-0.6043376,4.464105,2.253915,-0.2559771,4.464105,2.463454,2.4673,7.55115,0.2231816,2.465487,7.876893,-0.1043739,2.139745,7.878432,0.2229106,-0.6057701,4.72144,3.72136,-0.6043376,4.464105,3.462589,-0.8631065,4.72266,3.462805,-0.3468589,7.280508,-3.553463,-0.3487476,7.619823,-3.894665,-0.6880623,7.62143,-3.553743,-1.822151,7.919287,-0.6183224,-1.822151,6.002293,-0.6183224,-1.414973,7.917359,-0.2092165,-1.414973,6.004222,-0.2092165,2.465487,9.410487,-0.1043739,2.276125,9.453762,0.1305517,2.231705,9.40938,0.130515,2.276125,9.545213,0.2230234,2.4673,9.736231,0.2231816,-1.824418,8.326465,-0.2088779,-1.824418,8.326465,1.703583,-3.736879,8.326465,-0.2088779,-3.736879,8.326465,1.703583,-1.593718,8.771919,1.57456,-1.593718,8.771919,-1.612875,-2.276125,9.453762,1.575125,-2.276125,9.453762,-1.61344,1.597495,12.64554,-2.295282,2.276125,12.64233,-1.61344,1.593718,13.32417,-1.612875,2.4673,9.736231,1.753151,2.465487,9.410487,2.080706,2.139745,9.408945,1.753421,4.324826,7.878432,1.753421,4.324826,7.878432,0.2229106,3.997268,7.55115,1.753151,3.997268,7.55115,0.2231816,-3.739147,6.002293,2.113028,-3.736879,5.595116,1.703583,-4.146324,6.004222,1.703922,1.248748,9.217318,-3.894665,1.588062,9.21571,-3.553743,1.246859,9.556631,-3.553463,3.997268,7.55115,0.2231816,3.504346,7.55115,1.193048,3.997268,7.55115,1.753151,2.4673,7.55115,1.753151,2.854678,7.55115,1.04613,2.854678,7.55115,0.5778356,3.504346,7.55115,0.6930912,2.4673,7.55115,0.2231816,1.588062,9.21571,-3.553743,1.588062,7.62143,-3.553743,1.588062,9.21571,-2.059137,1.588062,7.62143,-1.959462,1.588062,9.116588,-1.959462,1.248748,7.619823,-1.61854,1.246859,7.280508,-1.959744,-0.3487476,7.619823,-1.61854,0.3869906,7.302905,-1.937222,0.3935554,7.280508,-1.959744,-0.09571224,7.302905,-1.937222,-0.3468589,7.280508,-1.959744,-0.09162532,7.280508,-1.959744,3.999083,9.410487,-0.1043739,4.324826,9.408945,0.2229106,3.997268,9.736231,0.2231816,2.184165,9.453327,1.66752,2.139745,9.408945,1.667483,1.597495,9.45055,2.256967,2.139745,9.317495,1.575012,1.593718,8.771919,1.57456,-1.593718,13.32417,1.57456,-1.597495,12.64554,2.256967,-2.276125,12.64233,1.575125,3.999083,9.410487,-0.1043739,3.997268,9.736231,0.2231816,2.465487,9.410487,-0.1043739,2.4673,9.736231,0.2231816,1.246859,9.556631,-3.553463,1.246859,9.556631,-2.295282,-0.3468589,9.556631,-3.553463,-0.3468589,9.556631,-2.295282,-0.8631065,4.72266,2.253701,-0.8631065,5.931763,2.253701,-0.8631065,4.72266,3.462805,-0.8631065,5.931763,3.462805,2.465487,7.876893,2.080706,2.4673,7.55115,1.753151,2.139745,7.878432,1.753421,3.999083,7.876893,2.080706,4.324826,7.878432,1.753421,3.997268,7.55115,1.753151,0.6057701,5.932982,1.995146,0.6057701,4.72144,1.995146,0.8631065,5.931763,2.253701,0.8631065,4.72266,2.253701,1.588062,9.116588,-1.959462,1.588062,7.62143,-1.959462,1.248748,8.777553,-1.61854,1.248748,7.619823,-1.61854,2.139745,9.317495,1.575012,2.139745,9.317495,0.2229106,1.593718,8.771919,1.57456,1.593718,8.771919,-1.612875,2.231705,9.40938,0.130515,2.276125,9.453762,-1.61344,2.276125,9.453762,0.1305517,1.248748,7.619823,-1.61854,-0.3487476,7.619823,-1.61854,1.248748,8.777553,-1.61854,-0.3487476,8.777553,-1.61854,-0.6043376,4.464105,3.462589,-0.6043376,4.464105,2.253915,-0.8631065,4.72266,3.462805,-0.8631065,4.72266,2.253701,3.999083,7.876893,2.080706,3.997268,7.55115,1.753151,2.465487,7.876893,2.080706,2.4673,7.55115,1.753151,-0.3468589,9.556631,-3.553463,-0.3468589,9.556631,-2.295282,-0.6880623,9.21571,-3.553743,-0.4530296,9.45055,-2.295282,-0.6880623,9.21571,-2.059137,4.324826,9.408945,1.753421,3.999083,9.410487,2.080706,3.997268,9.736231,1.753151,2.465487,7.876893,-0.1043739,3.999083,7.876893,-0.1043739,2.465487,9.410487,-0.1043739,3.999083,9.410487,-0.1043739,4.324826,9.408945,0.2229106,4.324826,7.878432,0.2229106,4.324826,9.408945,1.753421,4.324826,7.878432,1.753421,3.999083,7.876893,2.080706,2.465487,7.876893,2.080706,3.999083,9.410487,2.080706,2.465487,9.410487,2.080706,-1.597495,12.64554,-2.295282,-1.593718,13.32417,-1.612875,-2.276125,12.64233,-1.61344,0.8631065,5.931763,2.253701,0.8631065,5.931763,3.462805,0.6043379,6.190317,2.253915,0.6043379,6.190317,3.462589,3.997268,9.736231,0.2231816,3.997268,9.736231,1.753151,2.4673,9.736231,0.2231816,2.4673,9.736231,1.753151,2.276125,12.64233,-1.61344,2.276125,9.453762,-1.61344,2.276125,12.64233,1.575125,2.276125,9.453762,0.1305517,2.276125,9.545213,0.2230234,2.276125,9.545213,1.575125,2.4673,9.736231,0.2231816,2.4673,9.736231,1.753151,2.276125,9.545213,0.2230234,2.276125,9.545213,1.575125,2.139745,9.408945,1.753421,2.184165,9.453327,1.66752,2.139745,9.408945,1.667483,3.999083,7.876893,-0.1043739,2.465487,7.876893,-0.1043739,3.997268,7.55115,0.2231816,2.4673,7.55115,0.2231816,0.6057701,4.72144,3.72136,0.8631065,4.72266,3.462805,0.6043379,4.464105,3.462589,2.276125,12.64233,1.575125,2.276125,9.545213,1.575125,1.597495,12.64554,2.256967,2.184165,9.453327,1.66752,1.597495,9.45055,2.256967,1.246859,7.280508,-1.959744,1.246859,7.280508,-3.553463,0.3935554,7.280508,-1.959744,0.6044291,7.280508,-2.634526,-0.3468589,7.280508,-3.553463,0.08336318,7.280508,-2.634526,-0.09162532,7.280508,-1.959744,-0.3468589,7.280508,-1.959744,3.507123,7.46749,1.184054,3.507123,7.46749,0.6785424,1.908005,6.2644,0.6840542,1.908005,6.2644,0.1785424,-0.2740264,3.61126,1.896236,-0.2559771,4.15492,1.954682,-0.2740264,4.29101,3.014792,-0.2559771,4.464105,2.463454,-0.2682796,4.464105,3.0334,0.08336318,7.280508,-2.634526,-0.09162532,7.280508,-1.959744,-0.2605329,6.317155,-1.599269,-0.09571224,7.302905,-1.937222,-0.2413516,6.894928,-1.498793,1.908005,6.2644,0.1785424,3.507123,7.46749,0.6785424,1.889396,6.824925,0.2760191,2.854678,7.55115,0.5778356,3.504346,7.55115,0.6930912,0.4567104,3.568995,0.5842021,0.2740263,3.61126,1.896236,0.4266286,4.475097,0.6816121,0.2559772,4.15492,1.954682,-0.5436898,0,-0.5436898,0.5436898,0,-0.5436898,-0.6321973,0.498095,-0.6321976,0.6321974,0.498095,-0.6321976,0.4867921,2.662893,-0.4867921,0.4867921,2.662893,0.4867922,0.3888551,5.612888,0.02621952,0.4567104,3.568995,0.5842021,0.4266286,4.475097,0.6816121,0.3888551,5.612888,0.8039299,0.3869906,7.302905,-1.937222,0.2413515,6.894928,-1.498793,-0.09571224,7.302905,-1.937222,-0.2413516,6.894928,-1.498793,3.507123,7.46749,0.6785424,3.507123,7.46749,1.184054,3.504346,7.55115,0.6930912,3.504346,7.55115,1.193048,0.4567104,3.568995,0.5842021,-0.4567104,3.568995,0.5842021,0.2740263,3.61126,1.896236,-0.2740264,3.61126,1.896236,0.5436898,0,0.5436898,-0.5436898,0,0.5436898,0.6321974,0.498095,0.6321974,-0.6321973,0.498095,0.6321974,0.6321974,0.498095,-0.6321976,0.5436898,0,-0.5436898,0.6321974,0.498095,0.6321974,0.5436898,0,0.5436898,-2.04523,4.99479,0.5385624,-3.047897,5.595116,0.8875082,-2.029009,5.483395,0.5910897,-2.215604,5.595116,0.6560279,0.2740263,3.61126,1.896236,0.2740263,4.29101,3.014792,0.2559772,4.15492,1.954682,0.2559772,4.464105,2.463454,0.2682797,4.464105,3.0334,0.3602262,6.475235,0.8966362,-0.3602261,6.475235,0.8966362,0.2960315,8.771919,0.3824154,-0.2960314,8.771919,0.3824154,-0.6321973,0.498095,-0.6321976,-0.6321973,0.498095,0.6321974,-0.5436898,0,-0.5436898,-0.5436898,0,0.5436898,-0.4867921,2.662893,-0.4867921,0.4867921,2.662893,-0.4867921,-0.4236426,4.565045,-0.1560031,0.3888551,5.612888,0.02621952,-0.3976624,5.347602,-0.01991443,-0.3888551,5.612888,0.02621952,1.908005,6.2644,0.6840542,1.889396,6.824925,0.7443131,3.507123,7.46749,1.184054,2.854678,7.55115,1.04613,3.504346,7.55115,1.193048,0.5436898,0,0.5436898,0.5436898,0,-0.5436898,-0.5436898,0,0.5436898,-0.5436898,0,-0.5436898,0.2559772,4.15492,1.954682,0.2559772,4.464105,2.463454,-0.2559771,4.15492,1.954682,-0.2559771,4.464105,2.463454,1.908005,6.2644,0.6840542,1.908005,6.2644,0.1785424,0.3888551,5.612888,0.8039299,0.3888551,5.612888,0.02621952,-0.2960314,8.771919,-0.2096477,-0.2960314,8.771919,0.3824154,-0.3602261,6.475235,0.1761839,-0.3602261,6.475235,0.8966362,-0.2605329,6.317155,-1.599269,-0.2413516,6.894928,-1.498793,-0.3888551,5.612888,0.02621952,-0.3602261,6.475235,0.1761839,0.4266286,4.475097,0.6816121,0.2559772,4.15492,1.954682,-0.4266289,4.475097,0.6816121,-0.2559771,4.15492,1.954682,-0.4236426,4.565045,-0.1560031,-0.3976624,5.347602,-0.01991443,-2.043379,5.05056,0.01924089,-2.027271,5.535745,0.1036159,0.4867921,2.662893,0.4867922,-0.4867921,2.662893,0.4867922,0.4567104,3.568995,0.5842021,-0.4567104,3.568995,0.5842021,-0.6321973,0.498095,-0.6321976,0.6321974,0.498095,-0.6321976,-0.4867921,2.662893,-0.4867921,0.4867921,2.662893,-0.4867921,0.4266286,4.475097,0.6816121,-0.4266289,4.475097,0.6816121,0.3888551,5.612888,0.8039299,-0.4004654,5.263169,0.7663336,-0.3602261,6.475235,0.8966362,0.3602262,6.475235,0.8966362,0.3888551,5.612888,0.02621952,0.2605329,6.317155,-1.599269,-0.3888551,5.612888,0.02621952,-0.2605329,6.317155,-1.599269,1.889396,6.824925,0.2760191,1.889396,6.824925,0.7443131,0.3602262,6.475235,0.1761839,0.3602262,6.475235,0.8966362,0.3602262,6.475235,0.1761839,-0.3602261,6.475235,0.1761839,0.2413515,6.894928,-1.498793,-0.2413516,6.894928,-1.498793,-0.6321973,0.498095,-0.6321976,-0.4867921,2.662893,-0.4867921,-0.6321973,0.498095,0.6321974,-0.4867921,2.662893,0.4867922,0.2740263,4.29101,3.014792,0.2740263,3.61126,1.896236,-0.2740264,4.29101,3.014792,-0.2740264,3.61126,1.896236,-2.027271,5.535745,0.1036159,-2.029009,5.483395,0.5910897,-2.126433,5.595116,0.1381262,-2.215604,5.595116,0.6560279,-0.3976624,5.347602,-0.01991443,-0.4004654,5.263169,0.7663336,-2.027271,5.535745,0.1036159,-2.029009,5.483395,0.5910897,-0.4266289,4.475097,0.6816121,-2.04523,4.99479,0.5385624,-0.4004654,5.263169,0.7663336,-2.029009,5.483395,0.5910897,0.6321974,0.498095,0.6321974,-0.6321973,0.498095,0.6321974,0.4867921,2.662893,0.4867922,-0.4867921,2.662893,0.4867922,0.6044291,7.280508,-2.634526,0.2605329,6.317155,-1.599269,0.3935554,7.280508,-1.959744,0.3869906,7.302905,-1.937222,0.2413515,6.894928,-1.498793,0.3888551,5.612888,0.8039299,0.3602262,6.475235,0.8966362,1.908005,6.2644,0.6840542,1.889396,6.824925,0.7443131,2.854678,7.55115,0.5778356,2.854678,7.55115,1.04613,1.889396,6.824925,0.2760191,1.889396,6.824925,0.7443131,-0.3602261,6.475235,0.1761839,0.3602262,6.475235,0.1761839,-0.2960314,8.771919,-0.2096477,0.2960315,8.771919,-0.2096477,-0.3976624,5.347602,-0.01991443,-0.3888551,5.612888,0.02621952,-0.4004654,5.263169,0.7663336,-0.3602261,6.475235,0.1761839,-0.3602261,6.475235,0.8966362,0.6321974,0.498095,-0.6321976,0.6321974,0.498095,0.6321974,0.4867921,2.662893,-0.4867921,0.4867921,2.662893,0.4867922,0.2960315,8.771919,-0.2096477,0.3602262,6.475235,0.1761839,0.2960315,8.771919,0.3824154,0.3602262,6.475235,0.8966362,0.2605329,6.317155,-1.599269,0.3888551,5.612888,0.02621952,0.2413515,6.894928,-1.498793,0.3602262,6.475235,0.1761839,-2.043379,5.05056,0.01924089,-2.027271,5.535745,0.1036159,-2.952902,5.595116,0.3357711,-2.126433,5.595116,0.1381262,0.3888551,5.612888,0.02621952,1.908005,6.2644,0.1785424,0.3602262,6.475235,0.1761839,1.889396,6.824925,0.2760191,-0.4567104,3.568995,0.5842021,-0.4266289,4.475097,0.6816121,-0.2740264,3.61126,1.896236,-0.2559771,4.15492,1.954682,-0.4236426,4.565045,-0.1560031,-2.043379,5.05056,0.01924089,-0.4266289,4.475097,0.6816121,-2.04523,4.99479,0.5385624,0.6044291,7.280508,-2.634526,0.08336318,7.280508,-2.634526,0.2605329,6.317155,-1.599269,-0.2605329,6.317155,-1.599269,0.2740263,4.29101,3.014792,-0.2740264,4.29101,3.014792,0.2682797,4.464105,3.0334,-0.2682796,4.464105,3.0334,-2.043379,5.05056,0.01924089,-2.952902,5.595116,0.3357711,-2.04523,4.99479,0.5385624,-3.047897,5.595116,0.8875082,-0.4867921,2.662893,-0.4867921,-0.4236426,4.565045,-0.1560031,-0.4867921,2.662893,0.4867922,-0.4567104,3.568995,0.5842021,-0.4266289,4.475097,0.6816121,0.3602262,6.475235,0.1761839,0.3602262,6.475235,0.8966362,-0.3602261,6.475235,0.1761839,-0.3602261,6.475235,0.8966362,-0.3602261,6.475235,0.1761839,0.3602262,6.475235,0.8966362 + } + PolygonVertexIndex: *1206 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,9,-12,13,12,-12,14,13,-12,11,15,-15,16,14,-16,8,17,-11,10,17,-19,19,18,-18,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,31,-31,30,33,-33,33,34,-33,35,32,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,67,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,85,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,103,-103,104,102,-104,105,101,-103,106,102,-105,101,105,-108,104,107,-107,108,107,-106,106,107,-109,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,119,-119,120,118,-120,121,123,-123,124,122,-124,125,122,-125,126,125,-125,122,127,-122,128,121,-128,126,128,-128,124,128,-127,129,131,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,149,-149,150,152,-152,153,151,-153,154,156,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,171,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,216,-216,218,220,-220,221,219,-221,222,221,-221,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,230,-230,232,234,-234,235,233,-235,236,235,-235,237,236,-235,238,240,-240,241,239,-241,242,244,-244,245,247,-247,248,246,-248,249,251,-251,252,250,-252,253,255,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,277,-277,278,280,-280,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,299,-299,300,298,-300,301,303,-303,304,302,-304,305,307,-307,308,306,-308,309,311,-311,312,314,-314,315,313,-315,316,318,-318,319,321,-321,322,320,-322,323,325,-325,326,324,-326,327,329,-329,330,328,-330,331,333,-333,334,332,-334,335,337,-337,338,336,-338,339,336,-339,336,340,-336,341,335,-341,338,341,-340,342,341,-341,339,341,-343,343,345,-345,346,348,-348,349,351,-351,352,354,-354,355,353,-355,356,358,-358,357,359,-357,360,356,-360,361,363,-363,364,362,-364,365,367,-367,368,366,-368,369,371,-371,372,374,-374,375,377,-377,378,376,-378,379,381,-381,382,384,-384,385,387,-387,388,386,-388,389,386,-389,390,389,-389,386,391,-386,392,385,-392,390,392,-392,388,392,-391,393,395,-395,396,394,-396,397,396,-396,398,400,-400,401,399,-401,402,399,-402,403,401,-401,404,403,-401,403,404,-406,406,408,-408,409,411,-411,412,410,-412,413,412,-412,414,416,-416,417,419,-419,420,418,-420,421,423,-423,424,422,-424,425,427,-427,428,426,-428,429,431,-431,432,434,-434,435,437,-437,438,436,-438,439,441,-441,442,440,-442,443,445,-445,445,446,-445,444,446,-448,446,448,-448,449,447,-449,450,452,-452,453,451,-453,454,456,-456,457,455,-457,458,460,-460,461,459,-461,462,464,-464,465,463,-465,466,465,-465,467,469,-469,470,472,-472,473,471,-473,474,476,-476,477,475,-477,478,480,-480,481,479,-481,482,484,-484,485,487,-487,488,486,-488,489,491,-491,492,490,-492,493,495,-495,496,494,-496,497,496,-496,498,497,-496,499,501,-501,502,500,-502,503,500,-503,504,503,-503,505,503,-505,506,508,-508,509,507,-509,510,512,-512,513,515,-515,516,514,-516,517,516,-516,518,520,-520,521,519,-521,519,521,-523,523,522,-522,524,522,-524,525,522,-525,526,528,-528,529,527,-529,530,532,-532,533,531,-533,534,533,-533,535,537,-537,538,536,-538,539,538,-538,540,542,-542,543,541,-543,544,541,-544,545,547,-547,548,546,-548,549,551,-551,552,550,-552,553,555,-555,556,554,-556,557,556,-556,558,557,-556,559,561,-561,562,560,-562,563,565,-565,566,564,-566,567,569,-569,570,568,-570,571,573,-573,574,572,-574,575,577,-577,578,576,-578,579,581,-581,582,580,-582,583,585,-585,586,584,-586,587,584,-587,588,590,-590,591,589,-591,592,594,-594,595,593,-595,596,598,-598,599,597,-599,600,599,-599,601,599,-601,602,604,-604,605,603,-605,606,605,-605,607,609,-609,610,608,-610,611,613,-613,614,612,-614,615,617,-617,618,616,-618,619,621,-621,622,620,-622,623,625,-625,626,624,-626,627,629,-629,630,628,-630,631,633,-633,634,632,-634,635,637,-637,638,636,-638,639,641,-641,642,640,-642,643,645,-645,646,644,-646,647,646,-646,648,647,-646,649,651,-651,652,650,-652,653,655,-655,656,654,-656,657,659,-659,660,658,-660,661,663,-663,664,662,-664,665,667,-667,668,666,-668,669,671,-671,672,670,-672,673,675,-675,676,674,-676,677,679,-679,680,678,-680,681,683,-683,684,682,-684,685,687,-687,688,686,-688,689,686,-689,690,692,-692,693,691,-693,694,696,-696,697,695,-697,698,700,-700,701,699,-701,702,704,-704,705,703,-705,706,705,-705,707,709,-709,710,708,-710,711,713,-713,714,712,-714,715,717,-717,718,716,-718,719,721,-721,722,720,-722,723,725,-725,726,724,-726,727,729,-729,730,728,-730,731,733,-733,734,732,-734,735,737,-737,738,736,-738,739,741,-741,742,740,-742,743,745,-745,746,744,-746,747,749,-749,750,748,-750,751,748,-751,752,754,-754,755,757,-757 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *3618 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0.7087762,0,-0.7054334,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,0,-0.7090663,-0.7051418,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,-0.7087762,0,-0.7054334,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,-0.7068146,-0.7073988,0,0.5788449,0.5798004,0.5733848,0.5788449,0.5798004,0.5733848,0.5788449,0.5798004,0.5733848,0.5788449,0.5798003,-0.5733848,0.5788449,0.5798003,-0.5733848,0.5788449,0.5798003,-0.5733848,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.7068152,-0.7073982,0,0.5788486,-0.5797967,-0.5733849,0.5788486,-0.5797967,-0.5733849,0.5788486,-0.5797967,-0.5733849,0.5788469,-0.5797991,0.5733841,0.5788469,-0.5797991,0.5733841,0.5788469,-0.5797991,0.5733841,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,-0.7068141,0.7073992,0,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,-0.7090705,0.7051376,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.578845,-0.5797996,-0.5733857,0.578845,-0.5797996,-0.5733857,0.578845,-0.5797996,-0.5733857,-0.5788488,0.5797969,-0.5733843,-0.5788488,0.5797969,-0.5733843,-0.5788488,0.5797969,-0.5733843,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,-0.7068126,0.7074008,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.7068152,-0.7073981,0,0.5788466,-0.5797986,0.5733848,0.5788466,-0.5797986,0.5733848,0.5788466,-0.5797986,0.5733848,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0.7068132,0.7074002,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,-0.7068152,-0.7073981,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5788446,0.5798011,0.5733843,-0.5788446,0.5798011,0.5733843,-0.5788446,0.5798011,0.5733843,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0,-0.7090665,0.7051416,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0.7068142,0.7073992,0,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0,0.7090675,0.7051406,0.578847,-0.579799,-0.5733842,0.578847,-0.579799,-0.5733842,0.578847,-0.579799,-0.5733842,-0.5788457,0.5798017,0.5733827,-0.5788457,0.5798017,0.5733827,-0.5788457,0.5798017,0.5733827,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,-0.5788466,0.5798,-0.5733835,-0.5788466,0.5798,-0.5733835,-0.5788466,0.5798,-0.5733835,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,-0.7087747,0,0.705435,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,-0.7090654,-0.7051428,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,0,0.7090675,-0.7051406,-0.5788447,-0.5797995,0.5733859,-0.5788447,-0.5797995,0.5733859,-0.5788447,-0.5797995,0.5733859,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,0,-0.7090671,0.705141,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.708775,0,-0.7054345,-0.5788468,-0.5797997,-0.5733837,-0.5788468,-0.5797997,-0.5733837,-0.5788468,-0.5797997,-0.5733837,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,0,0.7090665,-0.7051415,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.708775,0,0.7054345,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,-0.706814,0.7073994,0,0.5788454,0.5797992,0.5733854,0.5788454,0.5797992,0.5733854,0.5788454,0.5797992,0.5733854,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,0.7068144,-0.707399,0,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,-0.7087749,0,0.7054347,0.578841,-0.5798028,-0.5733864,0.578841,-0.5798028,-0.5733864,0.578841,-0.5798028,-0.5733864,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-0.7068117,-0.7074018,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0.7068155,0.7073979,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-0.7087748,0,-0.7054348,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,0,0.7090663,0.7051418,-0.5788469,-0.5798004,-0.5733828,-0.5788469,-0.5798004,-0.5733828,-0.5788469,-0.5798004,-0.5733828,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0,-0.7090688,-0.7051392,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.7087746,0,0.705435,0.5788459,0.5798014,0.5733827,0.5788459,0.5798014,0.5733827,0.5788459,0.5798014,0.5733827,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,0,0.7090665,0.7051416,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087749,0,-0.7054347,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,-0.7087747,0,-0.705435,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0,0.7090698,0.7051383,0.5788467,0.5797996,-0.5733836,0.5788467,0.5797996,-0.5733836,0.5788467,0.5797996,-0.5733836,-0.5788447,0.579801,-0.5733843,-0.5788447,0.579801,-0.5733843,-0.5788447,0.579801,-0.5733843,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0.7090659,-0.7051423,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5788465,-0.5797986,0.5733849,-0.5788465,-0.5797986,0.5733849,-0.5788465,-0.5797986,0.5733849,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087743,0,-0.7054353,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0.7087749,0,0.7054347,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.5788446,-0.5797996,-0.5733858,-0.5788446,-0.5797996,-0.5733858,-0.5788446,-0.5797996,-0.5733858,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0,0.7090682,-0.7051399,0.5788471,-0.5798001,-0.573383,0.5788471,-0.5798001,-0.573383,0.5788471,-0.5798001,-0.573383,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,-0.7087751,0,0.7054345,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0,-0.709067,-0.7051411,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0.7068119,0.7074015,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5788425,-0.5798005,-0.5733871,-0.5788425,-0.5798005,-0.5733871,-0.5788425,-0.5798005,-0.5733871,-0.578846,-0.5798021,0.5733819,-0.578846,-0.5798021,0.5733819,-0.578846,-0.5798021,0.5733819,-0.5788485,-0.5797967,-0.5733849,-0.5788485,-0.5797967,-0.5733849,-0.5788485,-0.5797967,-0.5733849,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,0.708775,0,-0.7054346,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,-0.5788459,0.5797984,-0.5733857,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,-0.7068135,-0.7073999,0,0.5788454,0.5797993,-0.5733854,0.5788454,0.5797993,-0.5733854,0.5788454,0.5797993,-0.5733854,-0.5788456,0.5797991,0.5733854,-0.5788456,0.5797991,0.5733854,-0.5788456,0.5797991,0.5733854,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,0.7068094,-0.7074041,0,-0.5788466,-0.5797998,0.5733836,-0.5788466,-0.5797998,0.5733836,-0.5788466,-0.5797998,0.5733836,0.5788488,0.5797969,-0.5733843,0.5788488,0.5797969,-0.5733843,0.5788488,0.5797969,-0.5733843,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0,-0.7090665,0.7051415,0.5788437,0.5798014,-0.573385,0.5788437,0.5798014,-0.573385,0.5788437,0.5798014,-0.573385,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,0.5788454,-0.5797992,0.5733854,-0.5788452,0.5797992,0.5733856,-0.5788452,0.5797992,0.5733856,-0.5788452,0.5797992,0.5733856,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,0.7090662,-0.7051419,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.5788428,-0.5798005,0.5733868,-0.5788428,-0.5798005,0.5733868,-0.5788428,-0.5798005,0.5733868,0.5788412,-0.5798028,0.5733861,0.5788412,-0.5798028,0.5733861,0.5788412,-0.5798028,0.5733861,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.7087749,0,-0.7054347,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0.7068139,-0.7073995,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,-0.7068141,-0.7073992,0,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,0,-0.7090663,0.7051418,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,-0.7068155,0.7073979,0,0.578844,0.5798013,0.5733847,0.578844,0.5798013,0.5733847,0.578844,0.5798013,0.5733847,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.5788452,0.5797994,-0.5733857,-0.5788452,0.5797994,-0.5733857,-0.5788452,0.5797994,-0.5733857,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0.7068144,0.707399,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,-0.7068143,0.7073991,0,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0,-0.7090662,-0.7051419,0.5788462,-0.5798017,0.5733821,0.5788462,-0.5798017,0.5733821,0.5788462,-0.5798017,0.5733821,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0.708775,0,0.7054346,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,0.6011992,-0.7990991,0,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9991373,0.03548936,-0.02156699,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,-0.9652129,0.07557267,-0.2503051,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.1720046,0.1743174,-0.9695504,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0.9903622,0.01811749,0.1373118,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0,-0.1749519,-0.984577,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0.9994493,0.03318076,0,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0,0.7320728,0.6812264,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0.9994494,0.03317979,0,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.9994816,0.03219659,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0,-0.1749515,0.984577,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.984577,-0.1749515,0,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.2662743,-0.1117643,0.9573958,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0.9991373,0.03548889,-0.02156675,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,0,0.2184875,0.9758397,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,-0.984577,-0.1749514,0,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,-0.219199,-0.1114798,0.9692904,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0,0.8545731,-0.519331,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,0.3941483,-0.9190468,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9996096,0.02794013,0,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,-0.9972569,0.0435196,-0.05987167,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,0,0.9697992,0.2439048,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,-0.05459384,0.1728345,-0.9834367,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,-0.1068885,0.994271,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,0.06701717,-0.9977518,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.1068887,0.994271,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,0,-0.9175785,-0.3975547,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,-0.2229249,0.9748355,0,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,0,0.9700132,0.2430525,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,-0.9977518,0.06701705,0,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0,-0.854575,0.5193281,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.5349095,0.8398747,0.09209972,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,0.1219953,0.9868104,0.1064063,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,-0.1200787,-0.1021736,0.9874926,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0,0.06701705,0.9977518,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.9542838,-0.02017991,0.29822,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,0.1216947,-0.1020993,0.9873024,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,-0.6011985,0.7990997,0,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9977518,0.06701706,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,0.9972569,0.04351966,-0.05987167,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,-0.2290317,0.1741527,-0.9577135,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,0.02494114,0.1720815,-0.9847669,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.9903622,0.0181174,0.1373118,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,-0.295811,-0.9496734,-0.1030365,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.7320726,-0.6812266,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,0,-0.1068835,0.9942715,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.5349087,-0.8398753,-0.09209929,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,-0.9994493,0.03318067,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1516 { + a: -2.379283,8.873681,-2.379283,13.63224,2.379282,8.873681,2.379282,13.63224,7.399755,36.28865,7.399755,29.9993,5.506048,36.28232,5.506048,30.00563,-6.252214,30.77904,-4.91633,28.88611,-6.274479,28.85466,6.274478,28.85466,1.373022,28.88611,2.708906,30.77904,2.708906,31.33247,6.289351,32.64364,1.783581,32.64364,-6.252214,31.33247,-6.289352,32.64364,-5.326889,32.64364,-9.899322,29.9993,-9.899322,36.28865,-8.005614,30.00563,-8.005614,36.28232,1.373022,29.9993,-4.916329,29.9993,1.373022,36.28865,-4.916329,36.28865,6.289351,37.20689,1.783581,37.20689,6.289351,49.78559,1.365586,37.62453,-4.908893,37.62453,-6.289352,49.78559,-6.289352,37.20689,-5.326889,37.20689,-7.378741,30.00563,-7.378741,35.89208,-5.485037,29.9993,-5.485037,34.55729,-0.8236871,23.63867,-0.8236871,31.17071,6.708354,23.63867,6.708354,31.17071,6.70702,25.97706,-0.8223539,25.97706,6.708354,28.25582,-0.8236871,28.25582,-8.686359,24.95407,-10.9588,24.96338,-9.819844,26.93091,6.778039,27.36453,4.505599,27.35521,5.639085,29.33205,0.8236871,31.17071,0.8236871,23.63867,-6.708354,31.17071,-6.708354,23.63867,-6.708354,12.76743,0.8236871,12.76743,-6.70702,10.48867,0.8223539,10.48867,5.540041,32.73161,7.433744,32.72384,6.484615,31.08424,-10.9588,19.69303,-8.686361,19.70235,-9.819843,17.7255,8.873681,15.5429,13.63224,15.5429,8.872839,14.10273,13.63309,14.10273,2.384922,23.49595,2.379283,22.05917,-2.384922,23.49595,-2.379282,22.05917,-6.274479,-6.349902,-6.274479,6.199056,6.274479,-6.349902,6.274479,6.199056,-1.793515,36.60808,1.993883,36.59256,0.09562617,33.31335,-9.92734,22.74456,-8.97821,24.38416,-8.033637,22.73679,-0.8223539,12.76291,6.70702,12.76291,-0.8236871,10.48416,6.708354,10.48416,-7.173822,23.63107,-14.72105,23.63107,-7.173822,31.1783,-14.72105,31.1783,7.714416,25.63124,13.99111,25.63124,7.715527,23.73228,13.99001,23.73228,7.986989,23.86729,9.880689,23.87506,8.93612,22.22768,-7.182746,-0.8223539,-8.722849,2.582787,-7.182746,6.70702,-14.71212,6.70702,-8.371785,0.5438038,-11.99959,3.494127,-14.71212,-0.8223539,-11.6256,1.321934,0.8236871,25.97263,-6.708354,25.97263,0.8223539,28.25137,-6.70702,28.25137,6.289352,37.20689,-6.289351,37.20689,6.289352,49.78559,-6.289351,49.78559,-7.715527,21.22575,-13.99001,21.22575,-7.714416,23.12471,-13.99111,23.12471,6.274479,-6.349902,1.165478,1.505572,6.274479,6.199056,-6.274479,6.199056,-1.165478,1.505572,-1.165478,-0.8253845,1.165478,-0.8253845,-6.274479,-6.349902,-5.588625,17.91197,-4.449673,15.94444,-6.722112,15.93513,6.289352,32.53668,6.274479,28.74769,-6.289351,32.53668,-6.274479,28.74769,6.352125,28.84113,-6.201278,28.84113,6.349902,32.63905,-6.199056,32.63905,-7.173822,16.08635,-14.72105,16.08635,-7.182746,18.35973,-14.71212,18.35973,4.505592,17.30122,6.778031,17.2919,5.639074,15.32437,8.010635,13.31424,8.730459,12.07076,7.294277,12.06487,1.96815,49.78559,1.96815,37.20689,-1.819258,49.77294,-1.819258,37.21954,7.258909,21.25396,7.97873,22.49743,8.695091,21.24806,-1.92618,37.21954,-1.92618,49.77294,1.86123,37.20689,1.86123,49.78559,-4.916329,32.02612,1.373022,32.02612,-4.908893,30.13163,1.365586,30.13163,7.173822,20.25897,7.182746,22.53236,14.72105,20.25897,14.71212,22.53236,1.88671,36.53101,-0.0115461,33.2518,-1.90069,36.54653,-7.173822,22.56197,-7.182746,20.28858,-14.72105,22.56197,-14.71212,20.28858,8.659337,23.63107,8.659337,31.1783,10.93178,23.63867,10.93178,31.17071,9.769359,24.34328,8.630404,26.31081,10.90284,26.32013,-6.289352,28.69838,-6.274479,32.48736,6.289351,28.69838,6.274479,32.48736,-6.76088,23.63867,-6.76088,31.17071,-4.488434,23.63107,-4.488434,31.1783,-6.349902,32.63904,6.199056,32.63904,-6.352125,28.84112,6.201278,28.84112,1.900677,34.3314,-1.886721,34.34692,0.0115361,37.62614,-13.63309,15.54569,-8.872839,15.54569,-13.63224,14.10552,-8.873681,14.10552,7.265683,18.59315,7.265683,23.3534,8.70187,18.58835,8.70187,23.3582,-12.60618,31.92727,-10.78822,31.91983,-11.69938,30.3458,6.902168,14.14121,0.8786679,14.14121,6.903234,15.96421,0.8776009,15.96421,-13.99111,30.00563,-13.99111,36.28232,-7.714416,30.00563,-8.106837,36.28232,-7.714416,35.89208,13.99111,21.2221,8.106835,21.22211,13.99001,23.12106,9.036544,22.53018,9.036544,23.12106,2.384922,18.58835,-2.384922,18.58835,2.384922,23.3582,-2.384922,23.3582,-7.138654,31.01139,-7.138654,37.04916,-5.320697,31.01745,-5.833924,37.0448,-5.320697,36.68305,0.8776009,31.01745,0.8776009,36.68305,6.903234,31.01745,6.200833,36.68305,6.564895,37.04309,6.903234,37.04309,15.74442,20.31641,9.706642,20.31641,15.73728,22.13513,9.713781,22.13513,7.978734,11.67889,7.258913,12.92236,8.695095,12.92826,-2.384922,7.537703,2.384922,7.537703,-2.379283,6.100924,2.379282,6.100924,7.118516,37.04309,7.118516,31.01745,5.300558,37.04916,5.300558,31.01139,-7.294277,12.06488,-8.730459,12.07078,-8.010634,13.31425,6.289352,28.80534,-6.289351,28.80534,6.274479,32.59433,-6.274479,32.59433,7.249767,18.58835,7.249767,23.3582,8.685953,18.59315,8.685953,23.3534,-1.968146,37.20689,-1.968146,49.78559,1.819264,37.21954,1.819264,49.77294,2.384922,6.082161,-2.384922,6.082161,2.379283,7.518945,-2.379282,7.518945,-7.258909,21.25396,-8.695091,21.24807,-7.978731,22.49743,8.630432,18.34559,9.769384,20.31312,10.90287,18.33628,-8.684521,31.17071,-8.684521,23.63867,-10.95697,31.1783,-10.95697,23.63107,-4.916329,14.71632,-4.908893,16.61081,1.373022,14.71632,1.365586,16.61081,14.72105,23.63107,7.173822,23.63107,14.72105,31.1783,7.173822,31.1783,-6.352125,37.21954,-6.352125,49.77294,6.201278,37.21954,6.201278,49.77294,-5.493397,22.40774,-6.442528,20.76813,-7.387096,22.4155,-10.81542,37.04916,-10.81542,31.01139,-12.63338,37.04309,-12.63338,31.01745,-7.265683,23.3534,-7.265683,18.59315,-8.701869,23.3582,-8.701869,18.58835,2.384922,18.58835,-2.384922,18.58835,2.384922,23.3582,-2.384922,23.3582,-0.09562232,33.31335,-1.993878,36.59256,1.793521,36.60808,-2.384922,22.04046,-2.379283,23.47724,2.384922,22.04046,2.379282,23.47724,-8.695095,12.92826,-7.258913,12.92237,-7.978735,11.67889,-8.872839,23.3534,-8.872839,18.59315,-13.63309,23.3534,-13.63309,18.59315,10.83556,31.01745,10.83556,37.04309,12.65351,31.01139,12.65351,37.04916,7.173822,18.38935,14.72105,18.38935,7.182746,16.11596,14.71212,16.11596,-0.8776009,14.13766,-6.903234,14.13766,-0.8786679,15.96067,-6.902168,15.96067,2.379283,8.873681,1.056219,11.94252,2.379283,13.63224,-2.379282,13.63224,-1.056219,11.94252,1.007784,9.69864,-2.379282,8.873681,-1.007784,9.69864,-6.211837,19.8621,-7.122996,21.43613,-5.305045,21.44357,8.730471,22.1055,8.010646,20.86202,7.294288,22.11139,-8.978203,29.62469,-9.927331,31.26429,-8.033628,31.27206,6.786062,31.1783,6.786062,23.63107,4.513616,31.17071,4.513616,23.63867,-7.122969,34.01684,-5.941212,34.22595,-5.818243,34.01149,-5.682564,34.66785,-6.211805,35.59087,7.182746,-0.8223539,7.182746,6.70702,14.71212,-0.8223539,14.71212,6.70702,6.199056,28.84846,-6.349902,28.84846,6.201278,32.64637,-6.352125,32.64637,1.99389,34.28537,-1.793508,34.26985,0.09563246,37.56459,11.7397,32.41602,12.65086,30.842,10.83291,30.83454,-6.903234,33.9683,-0.8776009,33.9683,-6.902168,32.14531,-0.8786679,32.14531,-4.449635,28.71194,-5.58859,26.74441,-6.722074,28.72126,7.433754,21.28501,5.540051,21.27724,6.484624,22.92461,15.73728,0.8786679,13.79664,4.69704,15.73728,6.902168,9.713781,6.902168,11.23889,4.11862,11.23889,2.274943,13.79664,2.728705,9.713781,0.8786679,13.99111,36.28232,13.99111,30.00563,8.106837,36.28232,7.714416,30.00563,7.714416,35.89208,4.916329,16.63544,4.908894,14.74094,-1.373022,16.63544,1.523585,14.86599,1.549431,14.74094,-0.3768198,14.86599,-1.365586,14.74094,-0.3607296,14.74094,-10.78818,23.533,-12.60613,23.52555,-11.69934,25.10703,1.387452,36.54444,1.264483,36.32998,-1.886721,36.53102,1.52313,35.88808,0.01153641,33.2518,-0.01153989,37.62614,1.886717,34.34692,-1.900682,34.3314,-15.74442,25.83355,-15.73728,27.65226,-9.706642,25.83355,-9.713781,27.65226,-4.908893,-13.99001,-4.908893,-9.036545,1.365586,-13.99001,1.365586,-9.036545,8.872839,18.59315,8.872839,23.3534,13.63309,18.59315,13.63309,23.3534,12.65087,24.61098,11.73971,23.03695,10.83291,24.61842,5.260351,35.0947,7.078305,35.10215,6.171506,33.52068,-7.249767,23.3582,-7.249767,18.58835,-8.685953,23.3534,-8.685953,18.59315,9.878313,35.89208,9.878313,30.00563,7.984609,34.55729,7.984609,29.9993,-6.200833,31.88736,-0.8776004,31.88736,-6.199056,28.84846,6.349902,28.84846,-0.5138379,32.39916,6.352125,32.64638,-0.5139825,32.64638,4.916329,29.9993,-1.373022,29.9993,4.916329,34.55729,-1.373022,34.55729,13.63224,14.10551,8.873681,14.10551,13.63309,15.54568,8.872839,15.54568,15.74442,27.67592,15.73728,25.85721,9.706642,27.67592,9.713781,25.85721,-13.99001,25.62759,-9.036545,25.62759,-13.99111,23.72863,-9.036545,25.0367,-8.106836,23.72863,7.078243,20.35069,5.260289,20.35815,6.171448,21.93217,-9.706642,31.01139,-15.74442,31.01139,-9.706642,37.04916,-15.74442,37.04916,-0.8776009,37.04309,-0.8776009,31.01745,-6.903234,37.04309,-6.903234,31.01745,15.74442,31.01139,9.706642,31.01139,15.74442,37.04916,9.706642,37.04916,-1.993886,34.28537,-0.09562861,37.56459,1.793514,34.26984,-8.872839,14.10274,-13.63309,14.10274,-8.873681,15.54291,-13.63224,15.54291,-15.73728,0.8786679,-15.73728,6.902168,-9.713781,0.8786679,-9.713781,6.902168,6.352125,49.77294,6.352125,37.21954,-6.201278,49.77294,-0.5139831,37.21954,-0.8780449,37.57958,-6.201278,37.57958,0.87867,33.96486,6.90217,33.96486,0.8780468,32.90088,6.20128,32.90087,6.903236,32.14185,6.565042,32.38907,6.564897,32.14185,-15.74442,22.1588,-9.706642,22.1588,-15.73728,20.34009,-9.713781,20.34009,-8.730471,22.1055,-7.294288,22.11139,-8.010645,20.86202,1.926174,49.77294,1.926174,37.57958,-1.861234,49.78559,1.412948,37.21782,-1.861234,37.20689,4.908893,-7.715527,4.908893,-13.99001,1.549431,-7.715527,2.379642,-10.37215,-1.365586,-13.99001,0.3282015,-10.37215,-0.3607296,-7.715527,-1.365586,-7.715527,-4.661632,28.70862,-2.671427,28.70862,-2.693127,20.83007,-0.7029228,20.83007,7.487041,14.17604,7.715556,16.31779,11.88978,16.85391,9.71813,17.53582,11.96253,17.53582,-10.12243,28.40869,-7.377933,28.40869,-5.837255,24.60509,-7.288063,28.49712,-5.473301,26.8863,-7.519127,24.17731,-14.06193,28.98753,-7.514026,26.41841,-11.46348,29.32202,-14.06117,29.32202,-2.031278,14.01086,-7.246598,14.17729,-2.427413,17.57878,-7.484278,16.31804,2.140511,0.3744866,-2.140511,0.3744866,2.488966,2.366209,-2.488966,2.366209,1.916504,10.41446,-1.916505,10.41446,-0.1032264,22.03502,-2.300008,13.98376,-2.683512,17.55306,-3.165078,22.03502,1.523585,25.16976,0.9502029,22.81194,-0.3768198,25.16976,-0.9502032,22.81194,-2.671427,28.92525,-4.661632,28.92525,-2.728705,29.2548,-4.69704,29.2548,1.798072,2.751215,-1.798072,2.751215,1.078844,7.919384,-1.078844,7.919384,2.140511,0.3744857,-2.140511,0.3744857,2.488966,2.366208,-2.488966,2.366208,2.488967,2.366208,2.140511,0.3744856,-2.488966,2.366208,-2.140511,0.3744856,-8.325786,19.52849,-12.49705,21.90688,-8.319671,21.46426,-9.095937,21.90688,-7.487041,14.17604,-11.88978,16.85391,-7.715556,16.31779,-9.71813,17.53582,-11.96253,17.53582,1.418213,24.10586,-1.418213,24.10586,1.165478,33.37179,-1.165478,33.37179,-2.488967,2.366208,2.488966,2.366208,-2.140511,0.3744855,2.140511,0.3744855,1.916505,10.00045,-1.916504,10.00045,1.667884,17.60164,-1.530926,21.78892,1.5656,20.72881,1.530926,21.78892,7.920851,24.61738,7.901721,26.83802,14.49573,29.38367,11.87054,29.7151,14.49287,29.7151,2.140511,2.140511,2.140511,-2.140511,-2.140511,2.140511,-2.140511,-2.140511,-1.007784,15.07164,-1.007784,17.41555,1.007784,15.07164,1.007784,17.41555,-2.693127,16.6246,-0.7029228,16.6246,-3.165078,10.11688,-0.1032264,10.11688,-0.8253845,34.48907,1.505572,34.48907,0.6936374,25.44347,3.530064,25.44347,-6.223549,24.78615,-5.83321,27.063,0.1947869,22.01081,0.777382,25.4091,1.67964,1.694768,1.007784,-3.473402,-1.679641,1.694768,-1.007784,-3.473402,1.631277,17.58018,1.558847,20.70819,8.03663,19.52086,7.991725,21.46022,1.916505,10.62862,-1.916505,10.62862,1.798072,14.21651,-1.798072,14.21651,2.488966,1.789792,-2.488966,1.789792,1.916505,10.33182,-1.916505,10.33182,1.67964,17.8044,-1.679641,17.8044,1.530926,22.30969,-1.576635,20.92492,-1.418213,25.72433,1.418213,25.72433,-1.530926,8.690438,-1.02572,15.66484,1.530926,8.690438,1.02572,15.66484,1.086689,13.24133,2.930367,13.24133,0.6936374,7.065562,3.530064,7.065562,1.418213,5.523312,-1.418213,5.523312,0.9502029,12.32157,-0.9502032,12.32157,-2.488967,1.789792,-1.916504,10.33182,2.488966,1.789792,1.916505,10.33182,1.078844,18.91656,1.078844,13.7634,-1.078844,18.91656,-1.078844,13.7634,-1.756313,18.37752,-3.648832,17.99781,-1.956454,18.80816,-4.025439,18.80816,-0.9700074,4.623304,-3.310051,2.569839,-5.553715,9.199011,-7.004541,7.925861,-1.343431,17.81919,-7.737263,19.87598,-1.200916,20.93815,-7.648905,21.80974,2.488966,1.789792,-2.488966,1.789792,1.916505,10.33182,-1.916505,10.33182,10.60979,28.64098,6.315667,24.84748,7.826468,28.64098,7.734125,28.72918,5.915573,27.12264,1.13223,22.32235,0.975714,25.73525,7.12595,24.90084,7.024214,27.11922,2.274943,26.85399,4.11862,26.85399,1.086689,22.09823,2.930367,22.09823,1.418213,25.02584,-1.418213,25.02584,1.165478,34.19461,-1.165478,34.19461,-0.07840332,20.99001,0.1032264,22.03502,3.017062,20.65742,0.6936374,25.43196,3.530064,25.43196,2.488967,1.789792,-2.488966,1.789792,1.916504,10.33182,-1.916505,10.33182,0.8253845,34.48907,-0.6936374,25.44347,-1.505572,34.48907,-3.530064,25.44347,6.223549,24.78615,-0.1947869,22.01081,5.83321,27.063,-0.777382,25.4091,7.841795,19.26721,7.857381,21.20703,11.61424,21.4444,8.268678,21.4444,-1.533048,21.77943,-7.527222,24.38328,-1.435321,25.22591,-7.463697,26.62349,2.031278,14.01086,2.427413,17.57878,7.246598,14.17729,7.484278,16.31804,-0.03138086,7.317445,2.717756,13.41966,3.086675,6.186924,4.650951,12.71873,-2.379642,27.11945,-0.3282015,27.11945,-1.02572,21.55195,1.02572,21.55195,1.078844,18.06559,-1.078844,18.06559,1.056219,18.751,-1.056219,18.751,1.439701,17.44053,3.275405,21.39043,3.455863,17.03601,5.47956,21.39042,-1.916504,10.41447,-0.6141853,17.90738,1.916505,10.41447,2.300008,13.98376,2.683512,17.55306,-1.056219,18.751,1.056219,18.751,-1.078844,18.06559,-1.056219,18.751,1.056219,18.751,-1.078844,18.06559 + } + UVIndex: *1206 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,9,11,13,12,11,14,13,11,11,15,14,16,14,15,8,17,10,10,17,18,19,18,17,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,31,30,30,33,32,33,34,32,35,32,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,53,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,67,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,85,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,103,102,104,102,103,105,101,102,106,102,104,101,105,107,104,107,106,108,107,105,106,107,108,109,111,110,112,110,111,113,115,114,116,114,115,117,119,118,120,118,119,121,123,122,124,122,123,125,122,124,126,125,124,122,127,121,128,121,127,126,128,127,124,128,126,129,131,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,149,148,150,152,151,153,151,152,154,156,155,157,159,158,160,158,159,161,163,162,164,162,163,165,167,166,168,166,167,169,171,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,211,210,212,210,211,213,215,214,216,214,215,217,216,215,218,220,219,221,219,220,222,221,220,223,225,224,226,224,225,227,229,228,230,228,229,231,230,229,232,234,233,235,233,234,236,235,234,237,236,234,238,240,239,241,239,240,242,244,243,245,247,246,248,246,247,249,251,250,252,250,251,253,255,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,277,276,278,280,279,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,299,298,300,298,299,301,303,302,304,302,303,305,307,306,308,306,307,309,311,310,312,314,313,315,313,314,316,318,317,319,321,320,322,320,321,323,325,324,326,324,325,327,329,328,330,328,329,331,333,332,334,332,333,335,337,336,338,336,337,339,336,338,336,340,335,341,335,340,338,341,339,342,341,340,339,341,342,343,345,344,346,348,347,349,351,350,352,354,353,355,353,354,356,358,357,357,359,356,360,356,359,361,363,362,364,362,363,365,367,366,368,366,367,369,371,370,372,374,373,375,377,376,378,376,377,379,381,380,382,384,383,385,387,386,388,386,387,389,386,388,390,389,388,386,391,385,392,385,391,390,392,391,388,392,390,393,395,394,396,394,395,397,396,395,398,400,399,401,399,400,402,399,401,403,401,400,404,403,400,403,404,405,406,408,407,409,411,410,412,410,411,413,412,411,414,416,415,417,419,418,420,418,419,421,423,422,424,422,423,425,427,426,428,426,427,429,431,430,432,434,433,435,437,436,438,436,437,439,441,440,442,440,441,443,445,444,445,446,444,444,446,447,446,448,447,449,447,448,450,452,451,453,451,452,454,456,455,457,455,456,458,460,459,461,459,460,462,464,463,465,463,464,466,465,464,467,469,468,470,472,471,473,471,472,474,476,475,477,475,476,478,480,479,481,479,480,482,484,483,485,487,486,488,486,487,489,491,490,492,490,491,493,495,494,496,494,495,497,496,495,498,497,495,499,501,500,502,500,501,503,500,502,504,503,502,505,503,504,506,508,507,509,507,508,510,512,511,513,515,514,516,514,515,517,516,515,518,520,519,521,519,520,519,521,522,523,522,521,524,522,523,525,522,524,526,528,527,529,527,528,530,532,531,533,531,532,534,533,532,535,537,536,538,536,537,539,538,537,540,542,541,543,541,542,544,541,543,545,547,546,548,546,547,549,551,550,552,550,551,553,555,554,556,554,555,557,556,555,558,557,555,559,561,560,562,560,561,563,565,564,566,564,565,567,569,568,570,568,569,571,573,572,574,572,573,575,577,576,578,576,577,579,581,580,582,580,581,583,585,584,586,584,585,587,584,586,588,590,589,591,589,590,592,594,593,595,593,594,596,598,597,599,597,598,600,599,598,601,599,600,602,604,603,605,603,604,606,605,604,607,609,608,610,608,609,611,613,612,614,612,613,615,617,616,618,616,617,619,621,620,622,620,621,623,625,624,626,624,625,627,629,628,630,628,629,631,633,632,634,632,633,635,637,636,638,636,637,639,641,640,642,640,641,643,645,644,646,644,645,647,646,645,648,647,645,649,651,650,652,650,651,653,655,654,656,654,655,657,659,658,660,658,659,661,663,662,664,662,663,665,667,666,668,666,667,669,671,670,672,670,671,673,675,674,676,674,675,677,679,678,680,678,679,681,683,682,684,682,683,685,687,686,688,686,687,689,686,688,690,692,691,693,691,692,694,696,695,697,695,696,698,700,699,701,699,700,702,704,703,705,703,704,706,705,704,707,709,708,710,708,709,711,713,712,714,712,713,715,717,716,718,716,717,719,721,720,722,720,721,723,725,724,726,724,725,727,729,728,730,728,729,731,733,732,734,732,733,735,737,736,738,736,737,739,741,740,742,740,741,743,745,744,746,744,745,747,749,748,750,748,749,751,748,750,752,754,753,755,757,756 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *402 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_detailed_fall, Model::RootNode + C: "OO",4808497324105978685,0 + + ;Geometry::, Model::Mesh tree_detailed_fall + C: "OO",5143224655962479558,4808497324105978685 + + ;Material::leafsFall, Model::Mesh tree_detailed_fall + C: "OO",3028,4808497324105978685 + + ;Material::woodBirch, Model::Mesh tree_detailed_fall + C: "OO",3050,4808497324105978685 + + ;Material::_defaultMat, Model::Mesh tree_detailed_fall + C: "OO",3004,4808497324105978685 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_fall.fbx.import new file mode 100644 index 0000000..9c26af7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c8p3yfbebm3bn" +path="res://.godot/imported/tree_detailed_fall.fbx-52f5db5f0ad4a6c8d784a018ff60d0c6.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_detailed_fall.fbx" +dest_files=["res://.godot/imported/tree_detailed_fall.fbx-52f5db5f0ad4a6c8d784a018ff60d0c6.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_fat.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat.fbx new file mode 100644 index 0000000..f60090c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 37 + Millisecond: 569 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_fat.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_fat.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5058206790801039671, "Model::tree_fat", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5122135931621874173, "Geometry::", "Mesh" { + Vertices: *288 { + a: 1.8875,3.978875,-3.269245,3.775,3.978875,0,1.453375,9.428875,-2.51732,2.90675,9.428875,0,1.453375,9.428875,-2.51732,2.90675,9.428875,0,0,11.50387,0,0,11.50387,0,1.453375,9.428875,2.51732,-1.453375,9.428875,2.51732,-1.453375,9.428875,-2.51732,0,11.50387,0,-2.90675,9.428875,0,1.8875,3.978875,3.269245,-1.8875,3.978875,3.269245,1.453375,9.428875,2.51732,-1.453375,9.428875,2.51732,-1.8875,3.978875,-3.269245,1.8875,3.978875,-3.269245,-1.453375,9.428875,-2.51732,1.453375,9.428875,-2.51732,2.9445,2.428875,0,1.47225,2.428875,-2.550013,1.47225,2.428875,2.550013,0.4370287,2.428875,0.4370287,-1.47225,2.428875,2.550013,-0.4370287,2.428875,0.4370287,-0.4370287,2.428875,-0.4370287,0.4370287,2.428875,-0.4370287,-1.47225,2.428875,-2.550013,-2.9445,2.428875,0,-1.8875,3.978875,-3.269245,-3.775,3.978875,0,-1.47225,2.428875,-2.550013,-2.9445,2.428875,0,3.775,3.978875,0,2.9445,2.428875,0,1.8875,3.978875,3.269245,1.47225,2.428875,2.550013,-3.775,3.978875,0,-2.90675,9.428875,0,-1.8875,3.978875,3.269245,-1.453375,9.428875,2.51732,1.47225,2.428875,2.550013,-1.47225,2.428875,2.550013,1.8875,3.978875,3.269245,-1.8875,3.978875,3.269245,-1.8875,3.978875,-3.269245,-1.453375,9.428875,-2.51732,-3.775,3.978875,0,-2.90675,9.428875,0,2.90675,9.428875,0,1.453375,9.428875,2.51732,0,11.50387,0,1.8875,3.978875,-3.269245,1.47225,2.428875,-2.550013,3.775,3.978875,0,2.9445,2.428875,0,1.453375,9.428875,-2.51732,0,11.50387,0,-1.453375,9.428875,-2.51732,-1.47225,2.428875,-2.550013,1.47225,2.428875,-2.550013,-1.8875,3.978875,-3.269245,1.8875,3.978875,-3.269245,2.90675,9.428875,0,3.775,3.978875,0,1.453375,9.428875,2.51732,1.8875,3.978875,3.269245,-2.9445,2.428875,0,-3.775,3.978875,0,-1.47225,2.428875,2.550013,-1.8875,3.978875,3.269245,0,11.50387,0,-1.453375,9.428875,2.51732,-2.90675,9.428875,0,0.688234,0,-0.688234,0.688234,0,0.688234,0.4370287,2.428875,-0.4370287,0.4370287,2.428875,0.4370287,0.688234,0,0.688234,-0.688234,0,0.688234,0.4370287,2.428875,0.4370287,-0.4370287,2.428875,0.4370287,-0.688234,0,-0.688234,-0.4370287,2.428875,-0.4370287,-0.688234,0,0.688234,-0.4370287,2.428875,0.4370287,0.688234,0,0.688234,0.688234,0,-0.688234,-0.688234,0,0.688234,-0.688234,0,-0.688234,-0.688234,0,-0.688234,0.688234,0,-0.688234,-0.4370287,2.428875,-0.4370287,0.4370287,2.428875,-0.4370287 + } + PolygonVertexIndex: *150 { + a: 0,2,-2,3,1,-3,4,6,-6,7,9,-9,10,12,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,26,24,-26,27,26,-26,24,28,-23,29,22,-29,27,29,-29,25,29,-28,30,29,-26,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *450 { + a: 0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,0,0.7716424,0.6360566,0,0.7716424,0.6360566,0,0.7716424,0.6360566,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: 7.431098,13.75873,-7.431104,13.75873,5.721951,35.41868,-5.72195,35.41868,5.721951,15.96389,-5.721949,15.96389,1.776357E-15,28.80754,0,28.80754,5.721948,15.96389,-5.721948,15.96389,-5.721951,15.96389,0,28.80754,5.721949,15.96389,7.431103,13.75874,-7.431103,13.75874,5.721948,35.41869,-5.721948,35.41869,7.431103,13.75874,-7.431103,13.75874,5.721948,35.41869,-5.721948,35.41869,11.59252,0,5.79626,-10.03942,5.79626,10.03942,1.720586,1.720586,-5.79626,10.03942,-1.720586,1.720586,-1.720586,-1.720586,1.720586,-1.720586,-5.79626,-10.03942,-11.59252,0,-7.431098,19.62721,7.431103,19.62721,-5.796262,12.89988,5.79626,12.89988,7.431103,19.62721,5.79626,12.89988,-7.431098,19.62721,-5.796262,12.89988,-7.431104,13.75873,-5.72195,35.41868,7.431098,13.75873,5.721951,35.41868,5.79626,12.89988,-5.79626,12.89988,7.431103,19.6272,-7.431103,19.6272,-7.431098,13.75873,-5.721951,35.41868,7.431104,13.75873,5.72195,35.41868,5.721949,15.96389,-5.721951,15.96389,0,28.80754,7.431098,19.62721,5.796262,12.89988,-7.431103,19.62721,-5.79626,12.89988,-5.721948,15.96389,0,28.80754,5.721948,15.96389,5.79626,12.89988,-5.79626,12.89988,7.431103,19.6272,-7.431103,19.6272,5.72195,35.41868,7.431104,13.75873,-5.721951,35.41868,-7.431098,13.75873,-5.79626,12.89988,-7.431103,19.62721,5.796262,12.89988,7.431098,19.62721,0,28.80754,5.721951,15.96389,-5.721949,15.96389,2.709583,-0.2787504,-2.709583,-0.2787504,1.720586,9.334757,-1.720586,9.334757,2.709583,-0.2787504,-2.709583,-0.2787504,1.720586,9.334757,-1.720586,9.334757,-2.709583,-0.2787504,-1.720586,9.334757,2.709583,-0.2787504,1.720586,9.334757,2.709583,2.709583,2.709583,-2.709583,-2.709583,2.709583,-2.709583,-2.709583,2.709583,-0.2787504,-2.709583,-0.2787504,1.720586,9.334757,-1.720586,9.334757 + } + UVIndex: *150 { + a: 0,2,1,3,1,2,4,6,5,7,9,8,10,12,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,26,24,25,27,26,25,24,28,22,29,22,28,27,29,28,25,29,27,30,29,25,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,56,55,57,55,56,58,60,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *50 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_fat, Model::RootNode + C: "OO",5058206790801039671,0 + + ;Geometry::, Model::Mesh tree_fat + C: "OO",5122135931621874173,5058206790801039671 + + ;Material::leafsGreen, Model::Mesh tree_fat + C: "OO",3030,5058206790801039671 + + ;Material::woodBark, Model::Mesh tree_fat + C: "OO",3046,5058206790801039671 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_fat.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat.fbx.import new file mode 100644 index 0000000..e29379a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cd0uof1glw1hu" +path="res://.godot/imported/tree_fat.fbx-a7f8c277c81495dd4d3d28d2672b24e2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_fat.fbx" +dest_files=["res://.godot/imported/tree_fat.fbx-a7f8c277c81495dd4d3d28d2672b24e2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_darkh.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_darkh.fbx new file mode 100644 index 0000000..8352b24 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_darkh.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 37 + Millisecond: 657 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_fat_darkh.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_fat_darkh.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5253313722919996945, "Model::tree_fat_darkh", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5432792650029376243, "Geometry::", "Mesh" { + Vertices: *288 { + a: 1.8875,3.978875,-3.269245,3.775,3.978875,0,1.453375,9.428875,-2.51732,2.90675,9.428875,0,1.453375,9.428875,-2.51732,2.90675,9.428875,0,0,11.50387,0,0,11.50387,0,1.453375,9.428875,2.51732,-1.453375,9.428875,2.51732,-1.453375,9.428875,-2.51732,0,11.50387,0,-2.90675,9.428875,0,1.8875,3.978875,3.269245,-1.8875,3.978875,3.269245,1.453375,9.428875,2.51732,-1.453375,9.428875,2.51732,-1.8875,3.978875,-3.269245,1.8875,3.978875,-3.269245,-1.453375,9.428875,-2.51732,1.453375,9.428875,-2.51732,2.9445,2.428875,0,1.47225,2.428875,-2.550013,1.47225,2.428875,2.550013,0.4370287,2.428875,0.4370287,-1.47225,2.428875,2.550013,-0.4370287,2.428875,0.4370287,-0.4370287,2.428875,-0.4370287,0.4370287,2.428875,-0.4370287,-1.47225,2.428875,-2.550013,-2.9445,2.428875,0,-1.8875,3.978875,-3.269245,-3.775,3.978875,0,-1.47225,2.428875,-2.550013,-2.9445,2.428875,0,3.775,3.978875,0,2.9445,2.428875,0,1.8875,3.978875,3.269245,1.47225,2.428875,2.550013,-3.775,3.978875,0,-2.90675,9.428875,0,-1.8875,3.978875,3.269245,-1.453375,9.428875,2.51732,1.47225,2.428875,2.550013,-1.47225,2.428875,2.550013,1.8875,3.978875,3.269245,-1.8875,3.978875,3.269245,-1.8875,3.978875,-3.269245,-1.453375,9.428875,-2.51732,-3.775,3.978875,0,-2.90675,9.428875,0,2.90675,9.428875,0,1.453375,9.428875,2.51732,0,11.50387,0,1.8875,3.978875,-3.269245,1.47225,2.428875,-2.550013,3.775,3.978875,0,2.9445,2.428875,0,1.453375,9.428875,-2.51732,0,11.50387,0,-1.453375,9.428875,-2.51732,-1.47225,2.428875,-2.550013,1.47225,2.428875,-2.550013,-1.8875,3.978875,-3.269245,1.8875,3.978875,-3.269245,2.90675,9.428875,0,3.775,3.978875,0,1.453375,9.428875,2.51732,1.8875,3.978875,3.269245,-2.9445,2.428875,0,-3.775,3.978875,0,-1.47225,2.428875,2.550013,-1.8875,3.978875,3.269245,0,11.50387,0,-1.453375,9.428875,2.51732,-2.90675,9.428875,0,0.688234,0,-0.688234,0.688234,0,0.688234,0.4370287,2.428875,-0.4370287,0.4370287,2.428875,0.4370287,0.688234,0,0.688234,-0.688234,0,0.688234,0.4370287,2.428875,0.4370287,-0.4370287,2.428875,0.4370287,-0.688234,0,-0.688234,-0.4370287,2.428875,-0.4370287,-0.688234,0,0.688234,-0.4370287,2.428875,0.4370287,0.688234,0,0.688234,0.688234,0,-0.688234,-0.688234,0,0.688234,-0.688234,0,-0.688234,-0.688234,0,-0.688234,0.688234,0,-0.688234,-0.4370287,2.428875,-0.4370287,0.4370287,2.428875,-0.4370287 + } + PolygonVertexIndex: *150 { + a: 0,2,-2,3,1,-3,4,6,-6,7,9,-9,10,12,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,26,24,-26,27,26,-26,24,28,-23,29,22,-29,27,29,-29,25,29,-28,30,29,-26,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *450 { + a: 0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,0,0.7716424,0.6360566,0,0.7716424,0.6360566,0,0.7716424,0.6360566,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: 7.431098,13.75873,-7.431104,13.75873,5.721951,35.41868,-5.72195,35.41868,5.721951,15.96389,-5.721949,15.96389,1.776357E-15,28.80754,0,28.80754,5.721948,15.96389,-5.721948,15.96389,-5.721951,15.96389,0,28.80754,5.721949,15.96389,7.431103,13.75874,-7.431103,13.75874,5.721948,35.41869,-5.721948,35.41869,7.431103,13.75874,-7.431103,13.75874,5.721948,35.41869,-5.721948,35.41869,11.59252,0,5.79626,-10.03942,5.79626,10.03942,1.720586,1.720586,-5.79626,10.03942,-1.720586,1.720586,-1.720586,-1.720586,1.720586,-1.720586,-5.79626,-10.03942,-11.59252,0,-7.431098,19.62721,7.431103,19.62721,-5.796262,12.89988,5.79626,12.89988,7.431103,19.62721,5.79626,12.89988,-7.431098,19.62721,-5.796262,12.89988,-7.431104,13.75873,-5.72195,35.41868,7.431098,13.75873,5.721951,35.41868,5.79626,12.89988,-5.79626,12.89988,7.431103,19.6272,-7.431103,19.6272,-7.431098,13.75873,-5.721951,35.41868,7.431104,13.75873,5.72195,35.41868,5.721949,15.96389,-5.721951,15.96389,0,28.80754,7.431098,19.62721,5.796262,12.89988,-7.431103,19.62721,-5.79626,12.89988,-5.721948,15.96389,0,28.80754,5.721948,15.96389,5.79626,12.89988,-5.79626,12.89988,7.431103,19.6272,-7.431103,19.6272,5.72195,35.41868,7.431104,13.75873,-5.721951,35.41868,-7.431098,13.75873,-5.79626,12.89988,-7.431103,19.62721,5.796262,12.89988,7.431098,19.62721,0,28.80754,5.721951,15.96389,-5.721949,15.96389,2.709583,-0.2787504,-2.709583,-0.2787504,1.720586,9.334757,-1.720586,9.334757,2.709583,-0.2787504,-2.709583,-0.2787504,1.720586,9.334757,-1.720586,9.334757,-2.709583,-0.2787504,-1.720586,9.334757,2.709583,-0.2787504,1.720586,9.334757,2.709583,2.709583,2.709583,-2.709583,-2.709583,2.709583,-2.709583,-2.709583,2.709583,-0.2787504,-2.709583,-0.2787504,1.720586,9.334757,-1.720586,9.334757 + } + UVIndex: *150 { + a: 0,2,1,3,1,2,4,6,5,7,9,8,10,12,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,26,24,25,27,26,25,24,28,22,29,22,28,27,29,28,25,29,27,30,29,25,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,56,55,57,55,56,58,60,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *50 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_fat_darkh, Model::RootNode + C: "OO",5253313722919996945,0 + + ;Geometry::, Model::Mesh tree_fat_darkh + C: "OO",5432792650029376243,5253313722919996945 + + ;Material::leafsDark, Model::Mesh tree_fat_darkh + C: "OO",3026,5253313722919996945 + + ;Material::woodBarkDark, Model::Mesh tree_fat_darkh + C: "OO",3048,5253313722919996945 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_darkh.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_darkh.fbx.import new file mode 100644 index 0000000..976be9d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_darkh.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bubwl6e8iw5s7" +path="res://.godot/imported/tree_fat_darkh.fbx-89b53810c2ce256720b12751d7dafc2c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_fat_darkh.fbx" +dest_files=["res://.godot/imported/tree_fat_darkh.fbx-89b53810c2ce256720b12751d7dafc2c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_fall.fbx new file mode 100644 index 0000000..6b30eed --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 37 + Millisecond: 744 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_fat_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_fat_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5708907015956525864, "Model::tree_fat_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5025408694302009557, "Geometry::", "Mesh" { + Vertices: *288 { + a: 1.8875,3.978875,-3.269245,3.775,3.978875,0,1.453375,9.428875,-2.51732,2.90675,9.428875,0,1.453375,9.428875,-2.51732,2.90675,9.428875,0,0,11.50387,0,0,11.50387,0,1.453375,9.428875,2.51732,-1.453375,9.428875,2.51732,-1.453375,9.428875,-2.51732,0,11.50387,0,-2.90675,9.428875,0,1.8875,3.978875,3.269245,-1.8875,3.978875,3.269245,1.453375,9.428875,2.51732,-1.453375,9.428875,2.51732,-1.8875,3.978875,-3.269245,1.8875,3.978875,-3.269245,-1.453375,9.428875,-2.51732,1.453375,9.428875,-2.51732,2.9445,2.428875,0,1.47225,2.428875,-2.550013,1.47225,2.428875,2.550013,0.4370287,2.428875,0.4370287,-1.47225,2.428875,2.550013,-0.4370287,2.428875,0.4370287,-0.4370287,2.428875,-0.4370287,0.4370287,2.428875,-0.4370287,-1.47225,2.428875,-2.550013,-2.9445,2.428875,0,-1.8875,3.978875,-3.269245,-3.775,3.978875,0,-1.47225,2.428875,-2.550013,-2.9445,2.428875,0,3.775,3.978875,0,2.9445,2.428875,0,1.8875,3.978875,3.269245,1.47225,2.428875,2.550013,-3.775,3.978875,0,-2.90675,9.428875,0,-1.8875,3.978875,3.269245,-1.453375,9.428875,2.51732,1.47225,2.428875,2.550013,-1.47225,2.428875,2.550013,1.8875,3.978875,3.269245,-1.8875,3.978875,3.269245,-1.8875,3.978875,-3.269245,-1.453375,9.428875,-2.51732,-3.775,3.978875,0,-2.90675,9.428875,0,2.90675,9.428875,0,1.453375,9.428875,2.51732,0,11.50387,0,1.8875,3.978875,-3.269245,1.47225,2.428875,-2.550013,3.775,3.978875,0,2.9445,2.428875,0,1.453375,9.428875,-2.51732,0,11.50387,0,-1.453375,9.428875,-2.51732,-1.47225,2.428875,-2.550013,1.47225,2.428875,-2.550013,-1.8875,3.978875,-3.269245,1.8875,3.978875,-3.269245,2.90675,9.428875,0,3.775,3.978875,0,1.453375,9.428875,2.51732,1.8875,3.978875,3.269245,-2.9445,2.428875,0,-3.775,3.978875,0,-1.47225,2.428875,2.550013,-1.8875,3.978875,3.269245,0,11.50387,0,-1.453375,9.428875,2.51732,-2.90675,9.428875,0,0.688234,0,-0.688234,0.688234,0,0.688234,0.4370287,2.428875,-0.4370287,0.4370287,2.428875,0.4370287,0.688234,0,0.688234,-0.688234,0,0.688234,0.4370287,2.428875,0.4370287,-0.4370287,2.428875,0.4370287,-0.688234,0,-0.688234,-0.4370287,2.428875,-0.4370287,-0.688234,0,0.688234,-0.4370287,2.428875,0.4370287,0.688234,0,0.688234,0.688234,0,-0.688234,-0.688234,0,0.688234,-0.688234,0,-0.688234,-0.688234,0,-0.688234,0.688234,0,-0.688234,-0.4370287,2.428875,-0.4370287,0.4370287,2.428875,-0.4370287 + } + PolygonVertexIndex: *150 { + a: 0,2,-2,3,1,-3,4,6,-6,7,9,-9,10,12,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,26,24,-26,27,26,-26,24,28,-23,29,22,-29,27,29,-29,25,29,-28,30,29,-26,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *450 { + a: 0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.8578987,0.1366735,-0.4953081,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,0.5508413,0.7716423,-0.3180283,0,0.7716424,0.6360566,0,0.7716424,0.6360566,0,0.7716424,0.6360566,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,-0.5508413,0.7716423,-0.3180283,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,0.1366732,-0.9906161,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,-0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,0.785572,-0.4209144,0.4535502,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,-0.8578987,0.1366735,0.4953081,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,0,-0.4209137,0.9071007,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,-0.8578987,0.1366735,-0.4953081,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0.5508413,0.7716423,0.3180283,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0.785572,-0.4209144,-0.4535502,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0,0.7716424,-0.6360566,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0,-0.4209137,-0.9071007,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,0.8578987,0.1366735,0.4953081,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.785572,-0.4209144,0.4535502,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283,-0.5508413,0.7716423,0.3180283,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0.9946942,0.1028758,0,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,0,0.1028758,0.9946942,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,-0.9946942,0.1028758,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942,0,0.1028758,-0.9946942 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *192 { + a: 7.431098,13.75873,-7.431104,13.75873,5.721951,35.41868,-5.72195,35.41868,5.721951,15.96389,-5.721949,15.96389,1.776357E-15,28.80754,0,28.80754,5.721948,15.96389,-5.721948,15.96389,-5.721951,15.96389,0,28.80754,5.721949,15.96389,7.431103,13.75874,-7.431103,13.75874,5.721948,35.41869,-5.721948,35.41869,7.431103,13.75874,-7.431103,13.75874,5.721948,35.41869,-5.721948,35.41869,11.59252,0,5.79626,-10.03942,5.79626,10.03942,1.720586,1.720586,-5.79626,10.03942,-1.720586,1.720586,-1.720586,-1.720586,1.720586,-1.720586,-5.79626,-10.03942,-11.59252,0,-7.431098,19.62721,7.431103,19.62721,-5.796262,12.89988,5.79626,12.89988,7.431103,19.62721,5.79626,12.89988,-7.431098,19.62721,-5.796262,12.89988,-7.431104,13.75873,-5.72195,35.41868,7.431098,13.75873,5.721951,35.41868,5.79626,12.89988,-5.79626,12.89988,7.431103,19.6272,-7.431103,19.6272,-7.431098,13.75873,-5.721951,35.41868,7.431104,13.75873,5.72195,35.41868,5.721949,15.96389,-5.721951,15.96389,0,28.80754,7.431098,19.62721,5.796262,12.89988,-7.431103,19.62721,-5.79626,12.89988,-5.721948,15.96389,0,28.80754,5.721948,15.96389,5.79626,12.89988,-5.79626,12.89988,7.431103,19.6272,-7.431103,19.6272,5.72195,35.41868,7.431104,13.75873,-5.721951,35.41868,-7.431098,13.75873,-5.79626,12.89988,-7.431103,19.62721,5.796262,12.89988,7.431098,19.62721,0,28.80754,5.721951,15.96389,-5.721949,15.96389,2.709583,-0.2787504,-2.709583,-0.2787504,1.720586,9.334757,-1.720586,9.334757,2.709583,-0.2787504,-2.709583,-0.2787504,1.720586,9.334757,-1.720586,9.334757,-2.709583,-0.2787504,-1.720586,9.334757,2.709583,-0.2787504,1.720586,9.334757,2.709583,2.709583,2.709583,-2.709583,-2.709583,2.709583,-2.709583,-2.709583,2.709583,-0.2787504,-2.709583,-0.2787504,1.720586,9.334757,-1.720586,9.334757 + } + UVIndex: *150 { + a: 0,2,1,3,1,2,4,6,5,7,9,8,10,12,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,26,24,25,27,26,25,24,28,22,29,22,28,27,29,28,25,29,27,30,29,25,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,56,55,57,55,56,58,60,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *50 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_fat_fall, Model::RootNode + C: "OO",5708907015956525864,0 + + ;Geometry::, Model::Mesh tree_fat_fall + C: "OO",5025408694302009557,5708907015956525864 + + ;Material::leafsFall, Model::Mesh tree_fat_fall + C: "OO",3028,5708907015956525864 + + ;Material::woodBirch, Model::Mesh tree_fat_fall + C: "OO",3050,5708907015956525864 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_fall.fbx.import new file mode 100644 index 0000000..f51fe00 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_fat_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c5wwj0yl34om1" +path="res://.godot/imported/tree_fat_fall.fbx-9d69692aaca06c3b76799aaba89c83ea.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_fat_fall.fbx" +dest_files=["res://.godot/imported/tree_fat_fall.fbx-9d69692aaca06c3b76799aaba89c83ea.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_oak.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak.fbx new file mode 100644 index 0000000..5a8da91 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 37 + Millisecond: 851 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_oak.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_oak.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5590791230708680895, "Model::tree_oak", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5555439509981787295, "Geometry::", "Mesh" { + Vertices: *972 { + a: 2.722354,11.1256,-1.571752,1.361178,12.2624,-0.785876,4.768372E-07,11.1256,-3.143504,4.768372E-07,12.2624,-1.571752,3.202771,7.228,-1.84912,2.521867,5.604,-1.456,3.202771,7.228,1.84912,2.521867,5.604,1.456,2.521867,5.604,1.456,4.768372E-07,5.604,2.912,3.202771,7.228,1.84912,4.768372E-07,7.228,3.69824,-3.20277,7.228,-1.84912,-3.20277,7.228,1.84912,-2.521866,5.604,-1.456,-2.521866,5.604,1.456,1.361178,12.2624,-0.785876,1.361178,12.2624,0.785876,4.768372E-07,12.2624,-1.571752,4.768372E-07,12.2624,1.571752,-1.361176,12.2624,-0.785876,-1.361176,12.2624,0.785876,-3.20277,7.228,-1.84912,-2.722354,11.1256,-1.571752,-3.20277,7.228,1.84912,-2.722354,11.1256,1.571752,2.521867,5.604,1.456,2.521867,5.604,-1.456,1.260934,5.004,0.7279999,1.260934,5.004,-0.7279999,4.768372E-07,12.2624,1.571752,4.768372E-07,11.1256,3.143504,-1.361176,12.2624,0.785876,-2.722354,11.1256,1.571752,-1.260933,5.004,0.7279999,-1.260933,5.004,-0.7279999,-2.521866,5.604,1.456,-2.521866,5.604,-1.456,4.768372E-07,5.604,2.912,-2.521866,5.604,1.456,4.768372E-07,7.228,3.69824,-3.20277,7.228,1.84912,2.521867,5.604,1.456,1.260934,5.004,0.7279999,4.768372E-07,5.604,2.912,4.768372E-07,5.004,1.456,4.768372E-07,5.604,2.912,4.768372E-07,5.004,1.456,-2.521866,5.604,1.456,-1.260933,5.004,0.7279999,4.768372E-07,11.1256,-3.143504,4.768372E-07,12.2624,-1.571752,-2.722354,11.1256,-1.571752,-1.361176,12.2624,-0.785876,-3.20277,7.228,-1.84912,4.768372E-07,7.228,-3.69824,-2.722354,11.1256,-1.571752,4.768372E-07,11.1256,-3.143504,2.722354,11.1256,-1.571752,2.722354,11.1256,1.571752,1.361178,12.2624,-0.785876,1.361178,12.2624,0.785876,4.768372E-07,5.004,-1.456,4.768372E-07,5.604,-2.912,-1.260933,5.004,-0.7279999,-2.521866,5.604,-1.456,3.202771,7.228,-1.84912,3.202771,7.228,1.84912,2.722354,11.1256,-1.571752,2.722354,11.1256,1.571752,4.768372E-07,5.604,-2.912,2.521867,5.604,-1.456,4.768372E-07,7.228,-3.69824,3.202771,7.228,-1.84912,3.202771,7.228,1.84912,4.768372E-07,7.228,3.69824,2.722354,11.1256,1.571752,4.768372E-07,11.1256,3.143504,4.768372E-07,7.228,-3.69824,3.202771,7.228,-1.84912,4.768372E-07,11.1256,-3.143504,2.722354,11.1256,-1.571752,-1.361176,12.2624,-0.785876,-1.361176,12.2624,0.785876,-2.722354,11.1256,-1.571752,-2.722354,11.1256,1.571752,2.722354,11.1256,1.571752,4.768372E-07,11.1256,3.143504,1.361178,12.2624,0.785876,4.768372E-07,12.2624,1.571752,2.521867,5.604,-1.456,4.768372E-07,5.604,-2.912,1.260934,5.004,-0.7279999,4.768372E-07,5.004,-1.456,4.768372E-07,7.228,3.69824,-3.20277,7.228,1.84912,4.768372E-07,11.1256,3.143504,-2.722354,11.1256,1.571752,-2.521866,5.604,-1.456,4.768372E-07,5.604,-2.912,-3.20277,7.228,-1.84912,4.768372E-07,7.228,-3.69824,1.260934,5.004,0.7279999,1.260934,5.004,-0.7279999,4.768372E-07,5.004,1.456,0.4030735,5.004,0.2327139,4.768372E-07,5.004,0.4654291,-1.260933,5.004,0.7279999,-0.4030726,5.004,0.2327139,-0.4030726,5.004,-0.2327139,0.4030735,5.004,-0.2327139,4.768372E-07,5.004,-1.456,4.768372E-07,5.004,-0.4654291,-1.260933,5.004,-0.7279999,4.768372E-07,1.6,0.6930001,-0.6001556,1.6,0.3465002,4.768372E-07,5.004,0.4654291,-0.4030726,5.004,0.2327139,0.6001556,1.6,-0.3465002,0.6001556,1.6,0.3465002,0.4030735,5.004,-0.2327139,0.4030735,5.004,0.2327139,0.4567444,2.110837,-0.9734637,0.6100314,2.110837,-0.8849638,0.4516294,2.287541,-0.9646041,0.6049154,2.287541,-0.8761041,0.5716195,3.158772,0.8370821,0.3770754,3.068474,0.3771219,0.4183335,3.158772,0.9255819,0.1172674,3.068474,0.527122,4.768372E-07,1.6,0.6930001,0.3770754,3.068474,0.3771219,0.6001556,1.6,0.3465002,0.4030735,5.004,0.2327139,0.3684056,3.367972,0.3621051,0.1085975,3.367972,0.512105,0.1172674,3.068474,0.527122,4.768372E-07,5.004,0.4654291,-0.6001556,1.6,-0.3465002,-0.4030726,5.004,-0.2327139,-0.6001556,1.6,0.3465002,-0.4030726,5.004,0.2327139,-0.6001556,1.6,-0.3465002,4.768372E-07,1.6,-0.6930001,-0.4030726,5.004,-0.2327139,4.768372E-07,5.004,-0.4654291,0.5716195,3.158772,0.8370821,0.4183335,3.158772,0.9255819,0.5665045,3.335475,0.828222,0.4132175,3.335475,0.9167221,0.1085975,3.367972,0.512105,0.4132175,3.335475,0.9167221,0.1172674,3.068474,0.527122,0.4183335,3.158772,0.9255819,0.5665045,3.335475,0.828222,0.4132175,3.335475,0.9167221,0.3684056,3.367972,0.3621051,0.1085975,3.367972,0.512105,0.6100314,2.110837,-0.8849638,0.4154876,2.020539,-0.4250038,0.6049154,2.287541,-0.8761041,0.4068174,2.320037,-0.4099867,0.4567444,2.110837,-0.9734637,0.4516294,2.287541,-0.9646041,0.1556795,2.020539,-0.5750039,0.1470094,2.320037,-0.5599868,0.3684056,3.367972,0.3621051,0.3770754,3.068474,0.3771219,0.5665045,3.335475,0.828222,0.5716195,3.158772,0.8370821,0.6049154,2.287541,-0.8761041,0.4068174,2.320037,-0.4099867,0.4516294,2.287541,-0.9646041,0.1470094,2.320037,-0.5599868,0.6001556,1.6,-0.3465002,0.1556795,2.020539,-0.5750039,4.768372E-07,1.6,-0.6930001,4.768372E-07,5.004,-0.4654291,0.1470094,2.320037,-0.5599868,0.4068174,2.320037,-0.4099867,0.4154876,2.020539,-0.4250038,0.4030735,5.004,-0.2327139,0.6100314,2.110837,-0.8849638,0.4567444,2.110837,-0.9734637,0.4154876,2.020539,-0.4250038,0.1556795,2.020539,-0.5750039,0.8206527,1.602965E-30,-0.4738043,0.8206527,1.602965E-30,-0.2653304,0.6001556,1.6,-0.3465002,0.7654746,0.4003911,-0.2695471,0.6001556,1.6,0.3465002,0.7654746,0.4003911,0.2695471,0.8206527,1.602965E-30,0.4738043,0.8206527,1.602965E-30,0.2653304,0.1846467,1.602965E-30,0.8410028,0.1191849,0.8151528,0.7490817,0.7338089,1.602965E-30,1.612134,1.029244,1.602965E-30,1.441564,0.7338089,1.602965E-30,1.612134,0.5891307,0.8151528,0.4777583,0.1191849,0.8151528,0.7490817,0.5891307,0.8151528,0.4777583,0.6360058,1.602965E-30,0.5804103,1.029244,1.602965E-30,1.441564,-0.6401089,1.602965E-30,-0.5780412,-1.178043,1.602965E-30,-1.699293,-0.6161717,0.4003911,-0.5281472,-0.1493022,0.4003911,-0.797694,-0.6161717,0.4003911,-0.5281472,-0.882608,1.602965E-30,-1.869863,-1.178043,1.602965E-30,-1.699293,-0.1493022,0.4003911,0.797694,-0.1805431,1.602965E-30,0.8433715,-0.882608,1.602965E-30,1.869863,-0.6401089,1.602965E-30,0.5780412,-0.6161717,0.4003911,0.5281472,-1.178043,1.602965E-30,1.699293,-0.1493022,0.4003911,0.797694,-0.882608,1.602965E-30,1.869863,-0.6161717,0.4003911,0.5281472,-1.178043,1.602965E-30,1.699293,-0.8206527,1.602965E-30,0.2605924,-1.763053,1.602965E-30,0.1705696,-0.708316,0.8151528,0.2713234,-1.763053,1.602965E-30,-0.1705696,-0.8206527,1.602965E-30,-0.2605924,-0.708316,0.8151528,-0.2713234,0.8206527,1.602965E-30,0.4738043,0.8206527,1.602965E-30,0.2653304,0.6360058,1.602965E-30,0.5804103,0.8206527,1.602965E-30,-0.2653304,0.8206527,1.602965E-30,-0.4738043,0.6360063,1.602965E-30,-0.5804101,0.1846471,1.602965E-30,-0.8410025,0.7338094,1.602965E-30,-1.612133,1.029244,1.602965E-30,-1.441564,2.060653,1.602965E-30,-0.1705696,2.060653,1.602965E-30,0.1705696,0.1846467,1.602965E-30,0.8410028,0.7338089,1.602965E-30,1.612134,1.029244,1.602965E-30,1.441564,6.520273E-07,1.602965E-30,-0.9476083,6.520273E-07,1.602965E-30,0.9476083,-0.1805431,1.602965E-30,0.8433715,-0.1805431,1.602965E-30,-0.8433715,-0.882608,1.602965E-30,1.869863,-0.6401089,1.602965E-30,0.5780412,-1.178043,1.602965E-30,1.699293,-0.6401089,1.602965E-30,-0.5780412,-0.8206527,1.602965E-30,0.4738043,-0.8206527,1.602965E-30,-0.4738043,-0.8206527,1.602965E-30,0.2605924,-0.8206527,1.602965E-30,-0.2605924,-1.763053,1.602965E-30,0.1705696,-1.763053,1.602965E-30,-0.1705696,-0.882608,1.602965E-30,-1.869863,-1.178043,1.602965E-30,-1.699293,2.060653,1.602965E-30,-0.1705696,2.060653,1.602965E-30,0.1705696,0.7654746,0.4003911,-0.2695471,0.7654746,0.4003911,0.2695471,1.029244,1.602965E-30,-1.441564,0.5891311,0.8151528,-0.477758,0.7338094,1.602965E-30,-1.612133,0.1191854,0.8151528,-0.7490815,0.1846471,1.602965E-30,-0.8410025,0.7338094,1.602965E-30,-1.612133,0.1191854,0.8151528,-0.7490815,1.029244,1.602965E-30,-1.441564,0.6360063,1.602965E-30,-0.5804101,0.5891311,0.8151528,-0.477758,-0.6401089,1.602965E-30,-0.5780412,-0.6161717,0.4003911,-0.5281472,-0.8206527,1.602965E-30,-0.4738043,-0.6001556,1.6,-0.3465002,-0.1493022,0.4003911,-0.797694,4.768372E-07,1.6,-0.6930001,6.520273E-07,1.602965E-30,-0.9476083,-0.1805431,1.602965E-30,-0.8433715,-0.8206527,1.602965E-30,-0.4738043,-0.6001556,1.6,-0.3465002,-0.8206527,1.602965E-30,-0.2605924,-0.708316,0.8151528,-0.2713234,-0.6001556,1.6,0.3465002,-0.708316,0.8151528,0.2713234,-0.8206527,1.602965E-30,0.4738043,-0.8206527,1.602965E-30,0.2605924,-0.1805431,1.602965E-30,0.8433715,-0.1493022,0.4003911,0.797694,6.520273E-07,1.602965E-30,0.9476083,4.768372E-07,1.6,0.6930001,-0.6001556,1.6,0.3465002,-0.6161717,0.4003911,0.5281472,-0.8206527,1.602965E-30,0.4738043,-0.6401089,1.602965E-30,0.5780412,6.520273E-07,1.602965E-30,-0.9476083,0.1846471,1.602965E-30,-0.8410025,4.768372E-07,1.6,-0.6930001,0.1191854,0.8151528,-0.7490815,0.6001556,1.6,-0.3465002,0.5891311,0.8151528,-0.477758,0.8206527,1.602965E-30,-0.4738043,0.6360063,1.602965E-30,-0.5804101,0.8206527,1.602965E-30,0.4738043,0.6360058,1.602965E-30,0.5804103,0.6001556,1.6,0.3465002,0.5891307,0.8151528,0.4777583,0.1191849,0.8151528,0.7490817,4.768372E-07,1.6,0.6930001,6.520273E-07,1.602965E-30,0.9476083,0.1846467,1.602965E-30,0.8410028,2.060653,1.602965E-30,0.1705696,0.8206527,1.602965E-30,0.2653304,0.7654746,0.4003911,0.2695471,-0.708316,0.8151528,-0.2713234,-0.708316,0.8151528,0.2713234,-1.763053,1.602965E-30,-0.1705696,-1.763053,1.602965E-30,0.1705696,0.8206527,1.602965E-30,-0.2653304,2.060653,1.602965E-30,-0.1705696,0.7654746,0.4003911,-0.2695471,-0.882608,1.602965E-30,-1.869863,-0.1805431,1.602965E-30,-0.8433715,-0.1493022,0.4003911,-0.797694 + } + PolygonVertexIndex: *588 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,105,-105,107,106,-105,108,106,-108,109,108,-108,105,110,-104,111,103,-111,112,111,-111,109,111,-113,113,111,-110,107,113,-110,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,131,-134,135,134,-134,131,136,-131,137,130,-137,135,137,-137,133,137,-136,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,175,-178,179,178,-178,175,180,-175,181,174,-181,179,181,-181,177,181,-180,182,184,-184,185,183,-185,186,188,-188,189,187,-189,188,190,-190,191,189,-191,190,192,-192,193,191,-193,194,196,-196,197,199,-199,200,198,-200,201,203,-203,204,206,-206,207,209,-209,210,208,-210,211,213,-213,214,216,-216,217,219,-219,220,218,-220,221,223,-223,224,226,-226,227,229,-229,230,228,-230,231,230,-230,232,231,-230,229,233,-233,233,234,-233,235,232,-235,230,236,-229,237,228,-237,233,229,-239,238,229,-240,240,239,-230,241,233,-239,242,241,-239,243,241,-243,244,241,-244,245,244,-244,246,244,-246,247,246,-246,246,248,-245,246,249,-249,250,248,-250,251,250,-250,252,250,-252,251,253,-253,254,252,-254,255,244,-249,256,255,-249,257,259,-259,260,258,-260,261,263,-263,264,262,-264,265,267,-267,268,270,-270,271,273,-273,274,272,-274,275,272,-275,274,276,-276,276,277,-276,278,275,-278,279,281,-281,282,280,-282,280,282,-284,284,283,-283,283,284,-286,286,285,-285,287,289,-289,290,288,-290,290,291,-289,288,291,-293,291,293,-293,294,292,-294,295,297,-297,298,296,-298,297,299,-299,298,299,-301,299,301,-301,302,300,-302,303,305,-305,306,304,-306,307,306,-306,305,308,-308,308,309,-308,310,307,-310,311,313,-313,314,316,-316,317,315,-317,318,320,-320,321,323,-323 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1764 { + a: 0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,-0.8145548,0,0.5800868,-0.8145548,0,0.5800868,-0.8145548,0,0.5800868,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.909647,0,-0.4153822,0.909647,0,-0.4153822,0.909647,0,-0.4153822,-0.9016068,0,0.4325566,-0.9016068,0,0.4325566,-0.9016068,0,0.4325566,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,0.8254089,0,0.5645353,0.8254089,0,0.5645353,0.8254089,0,0.5645353,-0.9016068,0,-0.4325566,-0.9016068,0,-0.4325566,-0.9016068,0,-0.4325566,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.09509219,0,0.9954685,-0.09509219,0,0.9954685,-0.09509219,0,0.9954685,-0.09509219,0,-0.9954685,-0.09509219,0,-0.9954685,-0.09509219,0,-0.9954685,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,-0.8145548,0,-0.5800868,-0.8145548,0,-0.5800868,-0.8145548,0,-0.5800868,0.909647,0,0.4153822,0.909647,0,0.4153822,0.909647,0,0.4153822,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.07619788,0,0.9970927,0.07619788,0,0.9970927,0.07619788,0,0.9970927,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,0.07619788,0,-0.9970927,0.07619788,0,-0.9970927,0.07619788,0,-0.9970927,0.8254089,0,-0.5645353,0.8254089,0,-0.5645353,0.8254089,0,-0.5645353 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *648 { + a: -6.188001,19.85095,-3.094002,26.83303,6.187998,19.85095,3.093998,26.83303,7.28,31.11893,5.732284,24.18598,-7.28,31.11893,-5.732284,24.18598,5.732285,24.18598,-5.732282,24.18598,7.280003,31.11893,-7.279998,31.11893,-7.28,31.11893,7.28,31.11893,-5.732284,24.18598,5.732284,24.18598,-5.358967,-3.094,-5.358967,3.094,-1.877312E-06,-6.187999,-1.877312E-06,6.188,5.358963,-3.094,5.358963,3.094,-7.28,26.70041,-6.187999,42.16142,7.28,26.70041,6.188,42.16142,-5.732284,18.44527,5.732284,18.44527,-2.866142,12.94761,2.866142,12.94761,3.094002,26.83302,6.188002,19.85095,-3.093998,26.83302,-6.187999,19.85095,2.866142,12.9476,-2.866142,12.9476,5.732284,18.44527,-5.732284,18.44527,5.732285,24.18598,-5.732283,24.18598,7.280001,31.11893,-7.279999,31.11893,5.732285,18.44527,2.866144,12.94761,-5.732282,18.44527,-2.86614,12.94761,5.732285,18.44527,2.866143,12.94761,-5.732283,18.44527,-2.866141,12.9476,-6.188001,19.85095,-3.094001,26.83303,6.188,19.85095,3.093998,26.83303,7.279999,26.70041,-7.280002,26.70041,6.187999,42.16142,-6.188002,42.16142,6.187999,19.85095,-6.188,19.85095,3.094,26.83303,-3.094,26.83303,-2.866143,12.94761,-5.732285,18.44527,2.866141,12.9476,5.732283,18.44527,7.28,26.70041,-7.28,26.70041,6.187999,42.16142,-6.188,42.16142,5.732282,24.18598,-5.732285,24.18598,7.279998,31.11893,-7.280003,31.11893,7.280003,26.70041,-7.279998,26.70041,6.188001,42.16142,-6.187998,42.16142,7.279999,26.70041,-7.280002,26.70041,6.187998,42.16142,-6.188001,42.16142,-3.094,26.83302,3.094,26.83302,-6.187999,19.85094,6.188,19.85094,6.188001,19.85095,-6.187998,19.85095,3.094002,26.83302,-3.093999,26.83302,-5.732285,18.44527,5.732281,18.44527,-2.866144,12.94761,2.86614,12.94761,7.280001,26.70041,-7.279999,26.70041,6.188001,42.16142,-6.187999,42.16142,5.732283,24.18598,-5.732285,24.18598,7.28,31.11893,-7.280001,31.11893,4.964306,2.866142,4.964306,-2.866142,1.877312E-06,5.732284,1.586904,0.9161966,1.877312E-06,1.832398,-4.964302,2.866142,-1.5869,0.9161966,-1.5869,-0.9161966,1.586904,-0.9161966,1.877312E-06,-5.732284,1.877312E-06,-1.832398,-4.964302,-2.866142,1.364175,6.152109,-1.364172,6.152109,0.9162008,19.57613,-0.9161972,19.57613,1.364174,6.15211,-1.364174,6.15211,0.9161966,19.57613,-0.9161966,19.57613,0.3589758,8.052682,-0.3378762,8.052682,0.3589755,8.749532,-0.3378732,8.749532,0.3011661,6.143971,0.5432916,4.160633,-0.3956821,6.143972,-0.6378124,4.160632,-1.364173,6.152109,0.5432904,11.94318,1.364172,6.152109,0.9162,19.57613,0.5432907,13.12428,-0.6378129,13.12428,-0.6378137,11.94318,-0.9161979,19.57613,-1.364174,6.152109,-0.9161966,19.57613,1.364174,6.152109,0.9161966,19.57613,1.364172,6.152109,-1.364175,6.152109,0.9161972,19.57613,-0.9162008,19.57613,0.3011666,12.18531,-0.3956816,12.18531,0.3011678,12.88216,-0.3956842,12.88216,1.867474,13.25325,3.861437,13.12531,1.935233,12.07409,3.901416,12.42961,0.3011709,-3.083723,-0.3956811,-3.083723,0.5432937,-1.100385,-0.6378099,-1.100385,4.145549,8.30418,2.179369,7.948667,4.105571,8.999882,2.111609,9.127822,-4.142977,8.304033,-4.103002,8.999735,-2.176798,7.948521,-2.109038,9.127675,-1.878997,13.25391,-1.946755,12.07476,-3.872958,13.12597,-3.912936,12.43027,-0.3378739,-3.588253,-0.5800033,-1.604916,0.3589748,-3.588254,0.6011008,-1.604915,-1.364172,6.152109,0.6011016,7.810547,1.364173,6.152109,0.9161981,19.57613,0.6011016,8.991648,-0.5800024,8.991647,-0.5800024,7.810547,-0.9161999,19.57613,-0.3378798,5.639456,0.3589722,5.639456,-0.5800049,3.656118,0.6010992,3.656119,1.865371,-0.4410861,1.044608,-0.4410861,1.364174,5.917662,1.061209,1.150155,-1.364174,5.917662,-1.061209,1.150155,-1.865371,-0.4410861,-1.044608,-0.4410861,3.118716,6.682524E-15,2.674432,3.209263,6.845842,6.682524E-15,0.6715315,-5.492106,-0.6715358,-5.492106,1.0682,-0.2439937,-1.068204,-0.2439937,-2.674432,3.209263,-3.118716,-1.022708E-14,-6.845842,-1.022708E-14,-3.141926,-5.698989E-14,-8.038051,-5.698989E-14,-2.924056,1.576343,-1.061209,-2.413666,1.061209,-2.413666,-0.6715337,-7.750889,0.6715336,-7.750889,-2.924056,1.576343,-3.141926,-4.047706E-14,-8.038051,-4.047706E-14,3.141926,-2.5556E-14,2.924056,1.576343,8.038051,-2.5556E-14,1.061209,-2.413666,0.6715337,-7.750889,-1.061209,-2.413666,-0.6715336,-7.750889,-3.118715,1.608104E-14,-6.845841,1.608104E-14,-2.674431,3.209263,6.845841,-3.156557E-15,3.118715,-3.156557E-15,2.674431,3.209263,3.230916,1.865371,3.230916,1.044608,2.50396,2.28508,3.230916,-1.044608,3.230916,-1.865371,2.503962,-2.285079,0.7269571,-3.311034,2.889013,-6.346982,4.052144,-5.675448,8.112806,-0.6715337,8.112806,0.6715337,0.7269554,3.311035,2.889011,6.346983,4.052142,5.675449,2.567037E-06,-3.730741,2.567037E-06,3.730741,-0.7107996,3.32036,-0.7107996,-3.32036,-3.474835,7.361665,-2.520114,2.275753,-4.637965,6.690131,-2.520114,-2.275753,-3.230916,1.865371,-3.230916,-1.865371,-3.230916,1.025954,-3.230916,-1.025954,-6.941153,0.6715337,-6.941153,-0.6715337,-3.474835,-7.361665,-4.637965,-6.690131,0.6715337,-7.750889,-0.6715337,-7.750889,1.061209,-2.413666,-1.061209,-2.413666,-0.6715336,-5.492106,-1.068202,-0.2439937,0.6715337,-5.492106,1.068202,-0.2439937,-3.118716,-2.308505E-15,-6.845842,-2.308505E-15,-2.674432,3.209263,6.845842,-6.201537E-15,3.118716,-6.201537E-15,2.674432,3.209263,1.044608,-0.4410861,1.061209,1.150155,1.865371,-0.4410861,1.364174,5.917662,-1.061209,1.150155,-1.364174,5.917662,-1.865371,-0.4410861,-1.044608,-0.4410861,-1.865371,-0.4410861,-1.364174,5.917662,-1.025954,-0.4410861,-1.068202,2.798508,1.364174,5.917662,1.068202,2.798508,1.865371,-0.4410861,1.025954,-0.4410861,1.044608,-0.4410861,1.061209,1.150155,1.865371,-0.4410861,1.364174,5.917662,-1.364174,5.917662,-1.061209,1.150155,-1.865371,-0.4410861,-1.044608,-0.4410861,1.865369,-0.4410865,1.025954,-0.4410865,1.364172,5.917662,1.068202,2.798508,-1.364172,5.917662,-1.068202,2.798508,-1.865369,-0.4410865,-1.025954,-0.4410865,1.865369,-0.4410865,1.025952,-0.4410865,1.364172,5.917662,1.0682,2.798508,-1.068204,2.798508,-1.364172,5.917662,-1.865369,-0.4410865,-1.025956,-0.4410865,8.038051,1.409628E-14,3.141926,1.409628E-14,2.924056,1.576343,-1.068202,-0.2439929,1.068202,-0.2439929,-0.6715337,-5.492105,0.6715337,-5.492105,-3.141926,3.018567E-14,-8.038051,3.018567E-14,-2.924056,1.576343,8.038051,-1.018905E-13,3.141926,-1.018905E-13,2.924056,1.576343 + } + UVIndex: *588 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,105,104,107,106,104,108,106,107,109,108,107,105,110,103,111,103,110,112,111,110,109,111,112,113,111,109,107,113,109,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,131,133,135,134,133,131,136,130,137,130,136,135,137,136,133,137,135,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,175,177,179,178,177,175,180,174,181,174,180,179,181,180,177,181,179,182,184,183,185,183,184,186,188,187,189,187,188,188,190,189,191,189,190,190,192,191,193,191,192,194,196,195,197,199,198,200,198,199,201,203,202,204,206,205,207,209,208,210,208,209,211,213,212,214,216,215,217,219,218,220,218,219,221,223,222,224,226,225,227,229,228,230,228,229,231,230,229,232,231,229,229,233,232,233,234,232,235,232,234,230,236,228,237,228,236,233,229,238,238,229,239,240,239,229,241,233,238,242,241,238,243,241,242,244,241,243,245,244,243,246,244,245,247,246,245,246,248,244,246,249,248,250,248,249,251,250,249,252,250,251,251,253,252,254,252,253,255,244,248,256,255,248,257,259,258,260,258,259,261,263,262,264,262,263,265,267,266,268,270,269,271,273,272,274,272,273,275,272,274,274,276,275,276,277,275,278,275,277,279,281,280,282,280,281,280,282,283,284,283,282,283,284,285,286,285,284,287,289,288,290,288,289,290,291,288,288,291,292,291,293,292,294,292,293,295,297,296,298,296,297,297,299,298,298,299,300,299,301,300,302,300,301,303,305,304,306,304,305,307,306,305,305,308,307,308,309,307,310,307,309,311,313,312,314,316,315,317,315,316,318,320,319,321,323,322 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *196 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_oak, Model::RootNode + C: "OO",5590791230708680895,0 + + ;Geometry::, Model::Mesh tree_oak + C: "OO",5555439509981787295,5590791230708680895 + + ;Material::leafsGreen, Model::Mesh tree_oak + C: "OO",3030,5590791230708680895 + + ;Material::woodBark, Model::Mesh tree_oak + C: "OO",3046,5590791230708680895 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_oak.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak.fbx.import new file mode 100644 index 0000000..068cc3b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cyyxu8uf5pp5g" +path="res://.godot/imported/tree_oak.fbx-935a771d572251d18840caba13578a9a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_oak.fbx" +dest_files=["res://.godot/imported/tree_oak.fbx-935a771d572251d18840caba13578a9a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_dark.fbx new file mode 100644 index 0000000..671f782 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_dark.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 37 + Millisecond: 959 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_oak_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_oak_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4907435951834185910, "Model::tree_oak_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4930750660645150127, "Geometry::", "Mesh" { + Vertices: *972 { + a: 2.722354,11.1256,-1.571752,1.361178,12.2624,-0.785876,4.768372E-07,11.1256,-3.143504,4.768372E-07,12.2624,-1.571752,3.202771,7.228,-1.84912,2.521867,5.604,-1.456,3.202771,7.228,1.84912,2.521867,5.604,1.456,2.521867,5.604,1.456,4.768372E-07,5.604,2.912,3.202771,7.228,1.84912,4.768372E-07,7.228,3.69824,-3.20277,7.228,-1.84912,-3.20277,7.228,1.84912,-2.521866,5.604,-1.456,-2.521866,5.604,1.456,1.361178,12.2624,-0.785876,1.361178,12.2624,0.785876,4.768372E-07,12.2624,-1.571752,4.768372E-07,12.2624,1.571752,-1.361176,12.2624,-0.785876,-1.361176,12.2624,0.785876,-3.20277,7.228,-1.84912,-2.722354,11.1256,-1.571752,-3.20277,7.228,1.84912,-2.722354,11.1256,1.571752,2.521867,5.604,1.456,2.521867,5.604,-1.456,1.260934,5.004,0.7279999,1.260934,5.004,-0.7279999,4.768372E-07,12.2624,1.571752,4.768372E-07,11.1256,3.143504,-1.361176,12.2624,0.785876,-2.722354,11.1256,1.571752,-1.260933,5.004,0.7279999,-1.260933,5.004,-0.7279999,-2.521866,5.604,1.456,-2.521866,5.604,-1.456,4.768372E-07,5.604,2.912,-2.521866,5.604,1.456,4.768372E-07,7.228,3.69824,-3.20277,7.228,1.84912,2.521867,5.604,1.456,1.260934,5.004,0.7279999,4.768372E-07,5.604,2.912,4.768372E-07,5.004,1.456,4.768372E-07,5.604,2.912,4.768372E-07,5.004,1.456,-2.521866,5.604,1.456,-1.260933,5.004,0.7279999,4.768372E-07,11.1256,-3.143504,4.768372E-07,12.2624,-1.571752,-2.722354,11.1256,-1.571752,-1.361176,12.2624,-0.785876,-3.20277,7.228,-1.84912,4.768372E-07,7.228,-3.69824,-2.722354,11.1256,-1.571752,4.768372E-07,11.1256,-3.143504,2.722354,11.1256,-1.571752,2.722354,11.1256,1.571752,1.361178,12.2624,-0.785876,1.361178,12.2624,0.785876,4.768372E-07,5.004,-1.456,4.768372E-07,5.604,-2.912,-1.260933,5.004,-0.7279999,-2.521866,5.604,-1.456,3.202771,7.228,-1.84912,3.202771,7.228,1.84912,2.722354,11.1256,-1.571752,2.722354,11.1256,1.571752,4.768372E-07,5.604,-2.912,2.521867,5.604,-1.456,4.768372E-07,7.228,-3.69824,3.202771,7.228,-1.84912,3.202771,7.228,1.84912,4.768372E-07,7.228,3.69824,2.722354,11.1256,1.571752,4.768372E-07,11.1256,3.143504,4.768372E-07,7.228,-3.69824,3.202771,7.228,-1.84912,4.768372E-07,11.1256,-3.143504,2.722354,11.1256,-1.571752,-1.361176,12.2624,-0.785876,-1.361176,12.2624,0.785876,-2.722354,11.1256,-1.571752,-2.722354,11.1256,1.571752,2.722354,11.1256,1.571752,4.768372E-07,11.1256,3.143504,1.361178,12.2624,0.785876,4.768372E-07,12.2624,1.571752,2.521867,5.604,-1.456,4.768372E-07,5.604,-2.912,1.260934,5.004,-0.7279999,4.768372E-07,5.004,-1.456,4.768372E-07,7.228,3.69824,-3.20277,7.228,1.84912,4.768372E-07,11.1256,3.143504,-2.722354,11.1256,1.571752,-2.521866,5.604,-1.456,4.768372E-07,5.604,-2.912,-3.20277,7.228,-1.84912,4.768372E-07,7.228,-3.69824,1.260934,5.004,0.7279999,1.260934,5.004,-0.7279999,4.768372E-07,5.004,1.456,0.4030735,5.004,0.2327139,4.768372E-07,5.004,0.4654291,-1.260933,5.004,0.7279999,-0.4030726,5.004,0.2327139,-0.4030726,5.004,-0.2327139,0.4030735,5.004,-0.2327139,4.768372E-07,5.004,-1.456,4.768372E-07,5.004,-0.4654291,-1.260933,5.004,-0.7279999,4.768372E-07,1.6,0.6930001,-0.6001556,1.6,0.3465002,4.768372E-07,5.004,0.4654291,-0.4030726,5.004,0.2327139,0.6001556,1.6,-0.3465002,0.6001556,1.6,0.3465002,0.4030735,5.004,-0.2327139,0.4030735,5.004,0.2327139,0.4567444,2.110837,-0.9734637,0.6100314,2.110837,-0.8849638,0.4516294,2.287541,-0.9646041,0.6049154,2.287541,-0.8761041,0.5716195,3.158772,0.8370821,0.3770754,3.068474,0.3771219,0.4183335,3.158772,0.9255819,0.1172674,3.068474,0.527122,4.768372E-07,1.6,0.6930001,0.3770754,3.068474,0.3771219,0.6001556,1.6,0.3465002,0.4030735,5.004,0.2327139,0.3684056,3.367972,0.3621051,0.1085975,3.367972,0.512105,0.1172674,3.068474,0.527122,4.768372E-07,5.004,0.4654291,-0.6001556,1.6,-0.3465002,-0.4030726,5.004,-0.2327139,-0.6001556,1.6,0.3465002,-0.4030726,5.004,0.2327139,-0.6001556,1.6,-0.3465002,4.768372E-07,1.6,-0.6930001,-0.4030726,5.004,-0.2327139,4.768372E-07,5.004,-0.4654291,0.5716195,3.158772,0.8370821,0.4183335,3.158772,0.9255819,0.5665045,3.335475,0.828222,0.4132175,3.335475,0.9167221,0.1085975,3.367972,0.512105,0.4132175,3.335475,0.9167221,0.1172674,3.068474,0.527122,0.4183335,3.158772,0.9255819,0.5665045,3.335475,0.828222,0.4132175,3.335475,0.9167221,0.3684056,3.367972,0.3621051,0.1085975,3.367972,0.512105,0.6100314,2.110837,-0.8849638,0.4154876,2.020539,-0.4250038,0.6049154,2.287541,-0.8761041,0.4068174,2.320037,-0.4099867,0.4567444,2.110837,-0.9734637,0.4516294,2.287541,-0.9646041,0.1556795,2.020539,-0.5750039,0.1470094,2.320037,-0.5599868,0.3684056,3.367972,0.3621051,0.3770754,3.068474,0.3771219,0.5665045,3.335475,0.828222,0.5716195,3.158772,0.8370821,0.6049154,2.287541,-0.8761041,0.4068174,2.320037,-0.4099867,0.4516294,2.287541,-0.9646041,0.1470094,2.320037,-0.5599868,0.6001556,1.6,-0.3465002,0.1556795,2.020539,-0.5750039,4.768372E-07,1.6,-0.6930001,4.768372E-07,5.004,-0.4654291,0.1470094,2.320037,-0.5599868,0.4068174,2.320037,-0.4099867,0.4154876,2.020539,-0.4250038,0.4030735,5.004,-0.2327139,0.6100314,2.110837,-0.8849638,0.4567444,2.110837,-0.9734637,0.4154876,2.020539,-0.4250038,0.1556795,2.020539,-0.5750039,0.8206527,1.602965E-30,-0.4738043,0.8206527,1.602965E-30,-0.2653304,0.6001556,1.6,-0.3465002,0.7654746,0.4003911,-0.2695471,0.6001556,1.6,0.3465002,0.7654746,0.4003911,0.2695471,0.8206527,1.602965E-30,0.4738043,0.8206527,1.602965E-30,0.2653304,0.1846467,1.602965E-30,0.8410028,0.1191849,0.8151528,0.7490817,0.7338089,1.602965E-30,1.612134,1.029244,1.602965E-30,1.441564,0.7338089,1.602965E-30,1.612134,0.5891307,0.8151528,0.4777583,0.1191849,0.8151528,0.7490817,0.5891307,0.8151528,0.4777583,0.6360058,1.602965E-30,0.5804103,1.029244,1.602965E-30,1.441564,-0.6401089,1.602965E-30,-0.5780412,-1.178043,1.602965E-30,-1.699293,-0.6161717,0.4003911,-0.5281472,-0.1493022,0.4003911,-0.797694,-0.6161717,0.4003911,-0.5281472,-0.882608,1.602965E-30,-1.869863,-1.178043,1.602965E-30,-1.699293,-0.1493022,0.4003911,0.797694,-0.1805431,1.602965E-30,0.8433715,-0.882608,1.602965E-30,1.869863,-0.6401089,1.602965E-30,0.5780412,-0.6161717,0.4003911,0.5281472,-1.178043,1.602965E-30,1.699293,-0.1493022,0.4003911,0.797694,-0.882608,1.602965E-30,1.869863,-0.6161717,0.4003911,0.5281472,-1.178043,1.602965E-30,1.699293,-0.8206527,1.602965E-30,0.2605924,-1.763053,1.602965E-30,0.1705696,-0.708316,0.8151528,0.2713234,-1.763053,1.602965E-30,-0.1705696,-0.8206527,1.602965E-30,-0.2605924,-0.708316,0.8151528,-0.2713234,0.8206527,1.602965E-30,0.4738043,0.8206527,1.602965E-30,0.2653304,0.6360058,1.602965E-30,0.5804103,0.8206527,1.602965E-30,-0.2653304,0.8206527,1.602965E-30,-0.4738043,0.6360063,1.602965E-30,-0.5804101,0.1846471,1.602965E-30,-0.8410025,0.7338094,1.602965E-30,-1.612133,1.029244,1.602965E-30,-1.441564,2.060653,1.602965E-30,-0.1705696,2.060653,1.602965E-30,0.1705696,0.1846467,1.602965E-30,0.8410028,0.7338089,1.602965E-30,1.612134,1.029244,1.602965E-30,1.441564,6.520273E-07,1.602965E-30,-0.9476083,6.520273E-07,1.602965E-30,0.9476083,-0.1805431,1.602965E-30,0.8433715,-0.1805431,1.602965E-30,-0.8433715,-0.882608,1.602965E-30,1.869863,-0.6401089,1.602965E-30,0.5780412,-1.178043,1.602965E-30,1.699293,-0.6401089,1.602965E-30,-0.5780412,-0.8206527,1.602965E-30,0.4738043,-0.8206527,1.602965E-30,-0.4738043,-0.8206527,1.602965E-30,0.2605924,-0.8206527,1.602965E-30,-0.2605924,-1.763053,1.602965E-30,0.1705696,-1.763053,1.602965E-30,-0.1705696,-0.882608,1.602965E-30,-1.869863,-1.178043,1.602965E-30,-1.699293,2.060653,1.602965E-30,-0.1705696,2.060653,1.602965E-30,0.1705696,0.7654746,0.4003911,-0.2695471,0.7654746,0.4003911,0.2695471,1.029244,1.602965E-30,-1.441564,0.5891311,0.8151528,-0.477758,0.7338094,1.602965E-30,-1.612133,0.1191854,0.8151528,-0.7490815,0.1846471,1.602965E-30,-0.8410025,0.7338094,1.602965E-30,-1.612133,0.1191854,0.8151528,-0.7490815,1.029244,1.602965E-30,-1.441564,0.6360063,1.602965E-30,-0.5804101,0.5891311,0.8151528,-0.477758,-0.6401089,1.602965E-30,-0.5780412,-0.6161717,0.4003911,-0.5281472,-0.8206527,1.602965E-30,-0.4738043,-0.6001556,1.6,-0.3465002,-0.1493022,0.4003911,-0.797694,4.768372E-07,1.6,-0.6930001,6.520273E-07,1.602965E-30,-0.9476083,-0.1805431,1.602965E-30,-0.8433715,-0.8206527,1.602965E-30,-0.4738043,-0.6001556,1.6,-0.3465002,-0.8206527,1.602965E-30,-0.2605924,-0.708316,0.8151528,-0.2713234,-0.6001556,1.6,0.3465002,-0.708316,0.8151528,0.2713234,-0.8206527,1.602965E-30,0.4738043,-0.8206527,1.602965E-30,0.2605924,-0.1805431,1.602965E-30,0.8433715,-0.1493022,0.4003911,0.797694,6.520273E-07,1.602965E-30,0.9476083,4.768372E-07,1.6,0.6930001,-0.6001556,1.6,0.3465002,-0.6161717,0.4003911,0.5281472,-0.8206527,1.602965E-30,0.4738043,-0.6401089,1.602965E-30,0.5780412,6.520273E-07,1.602965E-30,-0.9476083,0.1846471,1.602965E-30,-0.8410025,4.768372E-07,1.6,-0.6930001,0.1191854,0.8151528,-0.7490815,0.6001556,1.6,-0.3465002,0.5891311,0.8151528,-0.477758,0.8206527,1.602965E-30,-0.4738043,0.6360063,1.602965E-30,-0.5804101,0.8206527,1.602965E-30,0.4738043,0.6360058,1.602965E-30,0.5804103,0.6001556,1.6,0.3465002,0.5891307,0.8151528,0.4777583,0.1191849,0.8151528,0.7490817,4.768372E-07,1.6,0.6930001,6.520273E-07,1.602965E-30,0.9476083,0.1846467,1.602965E-30,0.8410028,2.060653,1.602965E-30,0.1705696,0.8206527,1.602965E-30,0.2653304,0.7654746,0.4003911,0.2695471,-0.708316,0.8151528,-0.2713234,-0.708316,0.8151528,0.2713234,-1.763053,1.602965E-30,-0.1705696,-1.763053,1.602965E-30,0.1705696,0.8206527,1.602965E-30,-0.2653304,2.060653,1.602965E-30,-0.1705696,0.7654746,0.4003911,-0.2695471,-0.882608,1.602965E-30,-1.869863,-0.1805431,1.602965E-30,-0.8433715,-0.1493022,0.4003911,-0.797694 + } + PolygonVertexIndex: *588 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,105,-105,107,106,-105,108,106,-108,109,108,-108,105,110,-104,111,103,-111,112,111,-111,109,111,-113,113,111,-110,107,113,-110,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,131,-134,135,134,-134,131,136,-131,137,130,-137,135,137,-137,133,137,-136,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,175,-178,179,178,-178,175,180,-175,181,174,-181,179,181,-181,177,181,-180,182,184,-184,185,183,-185,186,188,-188,189,187,-189,188,190,-190,191,189,-191,190,192,-192,193,191,-193,194,196,-196,197,199,-199,200,198,-200,201,203,-203,204,206,-206,207,209,-209,210,208,-210,211,213,-213,214,216,-216,217,219,-219,220,218,-220,221,223,-223,224,226,-226,227,229,-229,230,228,-230,231,230,-230,232,231,-230,229,233,-233,233,234,-233,235,232,-235,230,236,-229,237,228,-237,233,229,-239,238,229,-240,240,239,-230,241,233,-239,242,241,-239,243,241,-243,244,241,-244,245,244,-244,246,244,-246,247,246,-246,246,248,-245,246,249,-249,250,248,-250,251,250,-250,252,250,-252,251,253,-253,254,252,-254,255,244,-249,256,255,-249,257,259,-259,260,258,-260,261,263,-263,264,262,-264,265,267,-267,268,270,-270,271,273,-273,274,272,-274,275,272,-275,274,276,-276,276,277,-276,278,275,-278,279,281,-281,282,280,-282,280,282,-284,284,283,-283,283,284,-286,286,285,-285,287,289,-289,290,288,-290,290,291,-289,288,291,-293,291,293,-293,294,292,-294,295,297,-297,298,296,-298,297,299,-299,298,299,-301,299,301,-301,302,300,-302,303,305,-305,306,304,-306,307,306,-306,305,308,-308,308,309,-308,310,307,-310,311,313,-313,314,316,-316,317,315,-317,318,320,-320,321,323,-323 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1764 { + a: 0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,-0.8145548,0,0.5800868,-0.8145548,0,0.5800868,-0.8145548,0,0.5800868,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.909647,0,-0.4153822,0.909647,0,-0.4153822,0.909647,0,-0.4153822,-0.9016068,0,0.4325566,-0.9016068,0,0.4325566,-0.9016068,0,0.4325566,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,0.8254089,0,0.5645353,0.8254089,0,0.5645353,0.8254089,0,0.5645353,-0.9016068,0,-0.4325566,-0.9016068,0,-0.4325566,-0.9016068,0,-0.4325566,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.09509219,0,0.9954685,-0.09509219,0,0.9954685,-0.09509219,0,0.9954685,-0.09509219,0,-0.9954685,-0.09509219,0,-0.9954685,-0.09509219,0,-0.9954685,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,-0.8145548,0,-0.5800868,-0.8145548,0,-0.5800868,-0.8145548,0,-0.5800868,0.909647,0,0.4153822,0.909647,0,0.4153822,0.909647,0,0.4153822,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.07619788,0,0.9970927,0.07619788,0,0.9970927,0.07619788,0,0.9970927,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,0.07619788,0,-0.9970927,0.07619788,0,-0.9970927,0.07619788,0,-0.9970927,0.8254089,0,-0.5645353,0.8254089,0,-0.5645353,0.8254089,0,-0.5645353 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *648 { + a: -6.188001,19.85095,-3.094002,26.83303,6.187998,19.85095,3.093998,26.83303,7.28,31.11893,5.732284,24.18598,-7.28,31.11893,-5.732284,24.18598,5.732285,24.18598,-5.732282,24.18598,7.280003,31.11893,-7.279998,31.11893,-7.28,31.11893,7.28,31.11893,-5.732284,24.18598,5.732284,24.18598,-5.358967,-3.094,-5.358967,3.094,-1.877312E-06,-6.187999,-1.877312E-06,6.188,5.358963,-3.094,5.358963,3.094,-7.28,26.70041,-6.187999,42.16142,7.28,26.70041,6.188,42.16142,-5.732284,18.44527,5.732284,18.44527,-2.866142,12.94761,2.866142,12.94761,3.094002,26.83302,6.188002,19.85095,-3.093998,26.83302,-6.187999,19.85095,2.866142,12.9476,-2.866142,12.9476,5.732284,18.44527,-5.732284,18.44527,5.732285,24.18598,-5.732283,24.18598,7.280001,31.11893,-7.279999,31.11893,5.732285,18.44527,2.866144,12.94761,-5.732282,18.44527,-2.86614,12.94761,5.732285,18.44527,2.866143,12.94761,-5.732283,18.44527,-2.866141,12.9476,-6.188001,19.85095,-3.094001,26.83303,6.188,19.85095,3.093998,26.83303,7.279999,26.70041,-7.280002,26.70041,6.187999,42.16142,-6.188002,42.16142,6.187999,19.85095,-6.188,19.85095,3.094,26.83303,-3.094,26.83303,-2.866143,12.94761,-5.732285,18.44527,2.866141,12.9476,5.732283,18.44527,7.28,26.70041,-7.28,26.70041,6.187999,42.16142,-6.188,42.16142,5.732282,24.18598,-5.732285,24.18598,7.279998,31.11893,-7.280003,31.11893,7.280003,26.70041,-7.279998,26.70041,6.188001,42.16142,-6.187998,42.16142,7.279999,26.70041,-7.280002,26.70041,6.187998,42.16142,-6.188001,42.16142,-3.094,26.83302,3.094,26.83302,-6.187999,19.85094,6.188,19.85094,6.188001,19.85095,-6.187998,19.85095,3.094002,26.83302,-3.093999,26.83302,-5.732285,18.44527,5.732281,18.44527,-2.866144,12.94761,2.86614,12.94761,7.280001,26.70041,-7.279999,26.70041,6.188001,42.16142,-6.187999,42.16142,5.732283,24.18598,-5.732285,24.18598,7.28,31.11893,-7.280001,31.11893,4.964306,2.866142,4.964306,-2.866142,1.877312E-06,5.732284,1.586904,0.9161966,1.877312E-06,1.832398,-4.964302,2.866142,-1.5869,0.9161966,-1.5869,-0.9161966,1.586904,-0.9161966,1.877312E-06,-5.732284,1.877312E-06,-1.832398,-4.964302,-2.866142,1.364175,6.152109,-1.364172,6.152109,0.9162008,19.57613,-0.9161972,19.57613,1.364174,6.15211,-1.364174,6.15211,0.9161966,19.57613,-0.9161966,19.57613,0.3589758,8.052682,-0.3378762,8.052682,0.3589755,8.749532,-0.3378732,8.749532,0.3011661,6.143971,0.5432916,4.160633,-0.3956821,6.143972,-0.6378124,4.160632,-1.364173,6.152109,0.5432904,11.94318,1.364172,6.152109,0.9162,19.57613,0.5432907,13.12428,-0.6378129,13.12428,-0.6378137,11.94318,-0.9161979,19.57613,-1.364174,6.152109,-0.9161966,19.57613,1.364174,6.152109,0.9161966,19.57613,1.364172,6.152109,-1.364175,6.152109,0.9161972,19.57613,-0.9162008,19.57613,0.3011666,12.18531,-0.3956816,12.18531,0.3011678,12.88216,-0.3956842,12.88216,1.867474,13.25325,3.861437,13.12531,1.935233,12.07409,3.901416,12.42961,0.3011709,-3.083723,-0.3956811,-3.083723,0.5432937,-1.100385,-0.6378099,-1.100385,4.145549,8.30418,2.179369,7.948667,4.105571,8.999882,2.111609,9.127822,-4.142977,8.304033,-4.103002,8.999735,-2.176798,7.948521,-2.109038,9.127675,-1.878997,13.25391,-1.946755,12.07476,-3.872958,13.12597,-3.912936,12.43027,-0.3378739,-3.588253,-0.5800033,-1.604916,0.3589748,-3.588254,0.6011008,-1.604915,-1.364172,6.152109,0.6011016,7.810547,1.364173,6.152109,0.9161981,19.57613,0.6011016,8.991648,-0.5800024,8.991647,-0.5800024,7.810547,-0.9161999,19.57613,-0.3378798,5.639456,0.3589722,5.639456,-0.5800049,3.656118,0.6010992,3.656119,1.865371,-0.4410861,1.044608,-0.4410861,1.364174,5.917662,1.061209,1.150155,-1.364174,5.917662,-1.061209,1.150155,-1.865371,-0.4410861,-1.044608,-0.4410861,3.118716,6.682524E-15,2.674432,3.209263,6.845842,6.682524E-15,0.6715315,-5.492106,-0.6715358,-5.492106,1.0682,-0.2439937,-1.068204,-0.2439937,-2.674432,3.209263,-3.118716,-1.022708E-14,-6.845842,-1.022708E-14,-3.141926,-5.698989E-14,-8.038051,-5.698989E-14,-2.924056,1.576343,-1.061209,-2.413666,1.061209,-2.413666,-0.6715337,-7.750889,0.6715336,-7.750889,-2.924056,1.576343,-3.141926,-4.047706E-14,-8.038051,-4.047706E-14,3.141926,-2.5556E-14,2.924056,1.576343,8.038051,-2.5556E-14,1.061209,-2.413666,0.6715337,-7.750889,-1.061209,-2.413666,-0.6715336,-7.750889,-3.118715,1.608104E-14,-6.845841,1.608104E-14,-2.674431,3.209263,6.845841,-3.156557E-15,3.118715,-3.156557E-15,2.674431,3.209263,3.230916,1.865371,3.230916,1.044608,2.50396,2.28508,3.230916,-1.044608,3.230916,-1.865371,2.503962,-2.285079,0.7269571,-3.311034,2.889013,-6.346982,4.052144,-5.675448,8.112806,-0.6715337,8.112806,0.6715337,0.7269554,3.311035,2.889011,6.346983,4.052142,5.675449,2.567037E-06,-3.730741,2.567037E-06,3.730741,-0.7107996,3.32036,-0.7107996,-3.32036,-3.474835,7.361665,-2.520114,2.275753,-4.637965,6.690131,-2.520114,-2.275753,-3.230916,1.865371,-3.230916,-1.865371,-3.230916,1.025954,-3.230916,-1.025954,-6.941153,0.6715337,-6.941153,-0.6715337,-3.474835,-7.361665,-4.637965,-6.690131,0.6715337,-7.750889,-0.6715337,-7.750889,1.061209,-2.413666,-1.061209,-2.413666,-0.6715336,-5.492106,-1.068202,-0.2439937,0.6715337,-5.492106,1.068202,-0.2439937,-3.118716,-2.308505E-15,-6.845842,-2.308505E-15,-2.674432,3.209263,6.845842,-6.201537E-15,3.118716,-6.201537E-15,2.674432,3.209263,1.044608,-0.4410861,1.061209,1.150155,1.865371,-0.4410861,1.364174,5.917662,-1.061209,1.150155,-1.364174,5.917662,-1.865371,-0.4410861,-1.044608,-0.4410861,-1.865371,-0.4410861,-1.364174,5.917662,-1.025954,-0.4410861,-1.068202,2.798508,1.364174,5.917662,1.068202,2.798508,1.865371,-0.4410861,1.025954,-0.4410861,1.044608,-0.4410861,1.061209,1.150155,1.865371,-0.4410861,1.364174,5.917662,-1.364174,5.917662,-1.061209,1.150155,-1.865371,-0.4410861,-1.044608,-0.4410861,1.865369,-0.4410865,1.025954,-0.4410865,1.364172,5.917662,1.068202,2.798508,-1.364172,5.917662,-1.068202,2.798508,-1.865369,-0.4410865,-1.025954,-0.4410865,1.865369,-0.4410865,1.025952,-0.4410865,1.364172,5.917662,1.0682,2.798508,-1.068204,2.798508,-1.364172,5.917662,-1.865369,-0.4410865,-1.025956,-0.4410865,8.038051,1.409628E-14,3.141926,1.409628E-14,2.924056,1.576343,-1.068202,-0.2439929,1.068202,-0.2439929,-0.6715337,-5.492105,0.6715337,-5.492105,-3.141926,3.018567E-14,-8.038051,3.018567E-14,-2.924056,1.576343,8.038051,-1.018905E-13,3.141926,-1.018905E-13,2.924056,1.576343 + } + UVIndex: *588 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,105,104,107,106,104,108,106,107,109,108,107,105,110,103,111,103,110,112,111,110,109,111,112,113,111,109,107,113,109,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,131,133,135,134,133,131,136,130,137,130,136,135,137,136,133,137,135,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,175,177,179,178,177,175,180,174,181,174,180,179,181,180,177,181,179,182,184,183,185,183,184,186,188,187,189,187,188,188,190,189,191,189,190,190,192,191,193,191,192,194,196,195,197,199,198,200,198,199,201,203,202,204,206,205,207,209,208,210,208,209,211,213,212,214,216,215,217,219,218,220,218,219,221,223,222,224,226,225,227,229,228,230,228,229,231,230,229,232,231,229,229,233,232,233,234,232,235,232,234,230,236,228,237,228,236,233,229,238,238,229,239,240,239,229,241,233,238,242,241,238,243,241,242,244,241,243,245,244,243,246,244,245,247,246,245,246,248,244,246,249,248,250,248,249,251,250,249,252,250,251,251,253,252,254,252,253,255,244,248,256,255,248,257,259,258,260,258,259,261,263,262,264,262,263,265,267,266,268,270,269,271,273,272,274,272,273,275,272,274,274,276,275,276,277,275,278,275,277,279,281,280,282,280,281,280,282,283,284,283,282,283,284,285,286,285,284,287,289,288,290,288,289,290,291,288,288,291,292,291,293,292,294,292,293,295,297,296,298,296,297,297,299,298,298,299,300,299,301,300,302,300,301,303,305,304,306,304,305,307,306,305,305,308,307,308,309,307,310,307,309,311,313,312,314,316,315,317,315,316,318,320,319,321,323,322 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *196 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_oak_dark, Model::RootNode + C: "OO",4907435951834185910,0 + + ;Geometry::, Model::Mesh tree_oak_dark + C: "OO",4930750660645150127,4907435951834185910 + + ;Material::leafsDark, Model::Mesh tree_oak_dark + C: "OO",3026,4907435951834185910 + + ;Material::woodBarkDark, Model::Mesh tree_oak_dark + C: "OO",3048,4907435951834185910 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_dark.fbx.import new file mode 100644 index 0000000..f13c77c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4tjjv7jm4ea2" +path="res://.godot/imported/tree_oak_dark.fbx-2141fd6040fcdb0f03d653d426ceb533.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_oak_dark.fbx" +dest_files=["res://.godot/imported/tree_oak_dark.fbx-2141fd6040fcdb0f03d653d426ceb533.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_fall.fbx new file mode 100644 index 0000000..06ab16e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 38 + Millisecond: 69 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_oak_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_oak_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5567256586316757652, "Model::tree_oak_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5761081191475439406, "Geometry::", "Mesh" { + Vertices: *972 { + a: 2.722354,11.1256,-1.571752,1.361178,12.2624,-0.785876,4.768372E-07,11.1256,-3.143504,4.768372E-07,12.2624,-1.571752,3.202771,7.228,-1.84912,2.521867,5.604,-1.456,3.202771,7.228,1.84912,2.521867,5.604,1.456,2.521867,5.604,1.456,4.768372E-07,5.604,2.912,3.202771,7.228,1.84912,4.768372E-07,7.228,3.69824,-3.20277,7.228,-1.84912,-3.20277,7.228,1.84912,-2.521866,5.604,-1.456,-2.521866,5.604,1.456,1.361178,12.2624,-0.785876,1.361178,12.2624,0.785876,4.768372E-07,12.2624,-1.571752,4.768372E-07,12.2624,1.571752,-1.361176,12.2624,-0.785876,-1.361176,12.2624,0.785876,-3.20277,7.228,-1.84912,-2.722354,11.1256,-1.571752,-3.20277,7.228,1.84912,-2.722354,11.1256,1.571752,2.521867,5.604,1.456,2.521867,5.604,-1.456,1.260934,5.004,0.7279999,1.260934,5.004,-0.7279999,4.768372E-07,12.2624,1.571752,4.768372E-07,11.1256,3.143504,-1.361176,12.2624,0.785876,-2.722354,11.1256,1.571752,-1.260933,5.004,0.7279999,-1.260933,5.004,-0.7279999,-2.521866,5.604,1.456,-2.521866,5.604,-1.456,4.768372E-07,5.604,2.912,-2.521866,5.604,1.456,4.768372E-07,7.228,3.69824,-3.20277,7.228,1.84912,2.521867,5.604,1.456,1.260934,5.004,0.7279999,4.768372E-07,5.604,2.912,4.768372E-07,5.004,1.456,4.768372E-07,5.604,2.912,4.768372E-07,5.004,1.456,-2.521866,5.604,1.456,-1.260933,5.004,0.7279999,4.768372E-07,11.1256,-3.143504,4.768372E-07,12.2624,-1.571752,-2.722354,11.1256,-1.571752,-1.361176,12.2624,-0.785876,-3.20277,7.228,-1.84912,4.768372E-07,7.228,-3.69824,-2.722354,11.1256,-1.571752,4.768372E-07,11.1256,-3.143504,2.722354,11.1256,-1.571752,2.722354,11.1256,1.571752,1.361178,12.2624,-0.785876,1.361178,12.2624,0.785876,4.768372E-07,5.004,-1.456,4.768372E-07,5.604,-2.912,-1.260933,5.004,-0.7279999,-2.521866,5.604,-1.456,3.202771,7.228,-1.84912,3.202771,7.228,1.84912,2.722354,11.1256,-1.571752,2.722354,11.1256,1.571752,4.768372E-07,5.604,-2.912,2.521867,5.604,-1.456,4.768372E-07,7.228,-3.69824,3.202771,7.228,-1.84912,3.202771,7.228,1.84912,4.768372E-07,7.228,3.69824,2.722354,11.1256,1.571752,4.768372E-07,11.1256,3.143504,4.768372E-07,7.228,-3.69824,3.202771,7.228,-1.84912,4.768372E-07,11.1256,-3.143504,2.722354,11.1256,-1.571752,-1.361176,12.2624,-0.785876,-1.361176,12.2624,0.785876,-2.722354,11.1256,-1.571752,-2.722354,11.1256,1.571752,2.722354,11.1256,1.571752,4.768372E-07,11.1256,3.143504,1.361178,12.2624,0.785876,4.768372E-07,12.2624,1.571752,2.521867,5.604,-1.456,4.768372E-07,5.604,-2.912,1.260934,5.004,-0.7279999,4.768372E-07,5.004,-1.456,4.768372E-07,7.228,3.69824,-3.20277,7.228,1.84912,4.768372E-07,11.1256,3.143504,-2.722354,11.1256,1.571752,-2.521866,5.604,-1.456,4.768372E-07,5.604,-2.912,-3.20277,7.228,-1.84912,4.768372E-07,7.228,-3.69824,1.260934,5.004,0.7279999,1.260934,5.004,-0.7279999,4.768372E-07,5.004,1.456,0.4030735,5.004,0.2327139,4.768372E-07,5.004,0.4654291,-1.260933,5.004,0.7279999,-0.4030726,5.004,0.2327139,-0.4030726,5.004,-0.2327139,0.4030735,5.004,-0.2327139,4.768372E-07,5.004,-1.456,4.768372E-07,5.004,-0.4654291,-1.260933,5.004,-0.7279999,4.768372E-07,1.6,0.6930001,-0.6001556,1.6,0.3465002,4.768372E-07,5.004,0.4654291,-0.4030726,5.004,0.2327139,0.6001556,1.6,-0.3465002,0.6001556,1.6,0.3465002,0.4030735,5.004,-0.2327139,0.4030735,5.004,0.2327139,0.4567444,2.110837,-0.9734637,0.6100314,2.110837,-0.8849638,0.4516294,2.287541,-0.9646041,0.6049154,2.287541,-0.8761041,0.5716195,3.158772,0.8370821,0.3770754,3.068474,0.3771219,0.4183335,3.158772,0.9255819,0.1172674,3.068474,0.527122,4.768372E-07,1.6,0.6930001,0.3770754,3.068474,0.3771219,0.6001556,1.6,0.3465002,0.4030735,5.004,0.2327139,0.3684056,3.367972,0.3621051,0.1085975,3.367972,0.512105,0.1172674,3.068474,0.527122,4.768372E-07,5.004,0.4654291,-0.6001556,1.6,-0.3465002,-0.4030726,5.004,-0.2327139,-0.6001556,1.6,0.3465002,-0.4030726,5.004,0.2327139,-0.6001556,1.6,-0.3465002,4.768372E-07,1.6,-0.6930001,-0.4030726,5.004,-0.2327139,4.768372E-07,5.004,-0.4654291,0.5716195,3.158772,0.8370821,0.4183335,3.158772,0.9255819,0.5665045,3.335475,0.828222,0.4132175,3.335475,0.9167221,0.1085975,3.367972,0.512105,0.4132175,3.335475,0.9167221,0.1172674,3.068474,0.527122,0.4183335,3.158772,0.9255819,0.5665045,3.335475,0.828222,0.4132175,3.335475,0.9167221,0.3684056,3.367972,0.3621051,0.1085975,3.367972,0.512105,0.6100314,2.110837,-0.8849638,0.4154876,2.020539,-0.4250038,0.6049154,2.287541,-0.8761041,0.4068174,2.320037,-0.4099867,0.4567444,2.110837,-0.9734637,0.4516294,2.287541,-0.9646041,0.1556795,2.020539,-0.5750039,0.1470094,2.320037,-0.5599868,0.3684056,3.367972,0.3621051,0.3770754,3.068474,0.3771219,0.5665045,3.335475,0.828222,0.5716195,3.158772,0.8370821,0.6049154,2.287541,-0.8761041,0.4068174,2.320037,-0.4099867,0.4516294,2.287541,-0.9646041,0.1470094,2.320037,-0.5599868,0.6001556,1.6,-0.3465002,0.1556795,2.020539,-0.5750039,4.768372E-07,1.6,-0.6930001,4.768372E-07,5.004,-0.4654291,0.1470094,2.320037,-0.5599868,0.4068174,2.320037,-0.4099867,0.4154876,2.020539,-0.4250038,0.4030735,5.004,-0.2327139,0.6100314,2.110837,-0.8849638,0.4567444,2.110837,-0.9734637,0.4154876,2.020539,-0.4250038,0.1556795,2.020539,-0.5750039,0.8206527,1.602965E-30,-0.4738043,0.8206527,1.602965E-30,-0.2653304,0.6001556,1.6,-0.3465002,0.7654746,0.4003911,-0.2695471,0.6001556,1.6,0.3465002,0.7654746,0.4003911,0.2695471,0.8206527,1.602965E-30,0.4738043,0.8206527,1.602965E-30,0.2653304,0.1846467,1.602965E-30,0.8410028,0.1191849,0.8151528,0.7490817,0.7338089,1.602965E-30,1.612134,1.029244,1.602965E-30,1.441564,0.7338089,1.602965E-30,1.612134,0.5891307,0.8151528,0.4777583,0.1191849,0.8151528,0.7490817,0.5891307,0.8151528,0.4777583,0.6360058,1.602965E-30,0.5804103,1.029244,1.602965E-30,1.441564,-0.6401089,1.602965E-30,-0.5780412,-1.178043,1.602965E-30,-1.699293,-0.6161717,0.4003911,-0.5281472,-0.1493022,0.4003911,-0.797694,-0.6161717,0.4003911,-0.5281472,-0.882608,1.602965E-30,-1.869863,-1.178043,1.602965E-30,-1.699293,-0.1493022,0.4003911,0.797694,-0.1805431,1.602965E-30,0.8433715,-0.882608,1.602965E-30,1.869863,-0.6401089,1.602965E-30,0.5780412,-0.6161717,0.4003911,0.5281472,-1.178043,1.602965E-30,1.699293,-0.1493022,0.4003911,0.797694,-0.882608,1.602965E-30,1.869863,-0.6161717,0.4003911,0.5281472,-1.178043,1.602965E-30,1.699293,-0.8206527,1.602965E-30,0.2605924,-1.763053,1.602965E-30,0.1705696,-0.708316,0.8151528,0.2713234,-1.763053,1.602965E-30,-0.1705696,-0.8206527,1.602965E-30,-0.2605924,-0.708316,0.8151528,-0.2713234,0.8206527,1.602965E-30,0.4738043,0.8206527,1.602965E-30,0.2653304,0.6360058,1.602965E-30,0.5804103,0.8206527,1.602965E-30,-0.2653304,0.8206527,1.602965E-30,-0.4738043,0.6360063,1.602965E-30,-0.5804101,0.1846471,1.602965E-30,-0.8410025,0.7338094,1.602965E-30,-1.612133,1.029244,1.602965E-30,-1.441564,2.060653,1.602965E-30,-0.1705696,2.060653,1.602965E-30,0.1705696,0.1846467,1.602965E-30,0.8410028,0.7338089,1.602965E-30,1.612134,1.029244,1.602965E-30,1.441564,6.520273E-07,1.602965E-30,-0.9476083,6.520273E-07,1.602965E-30,0.9476083,-0.1805431,1.602965E-30,0.8433715,-0.1805431,1.602965E-30,-0.8433715,-0.882608,1.602965E-30,1.869863,-0.6401089,1.602965E-30,0.5780412,-1.178043,1.602965E-30,1.699293,-0.6401089,1.602965E-30,-0.5780412,-0.8206527,1.602965E-30,0.4738043,-0.8206527,1.602965E-30,-0.4738043,-0.8206527,1.602965E-30,0.2605924,-0.8206527,1.602965E-30,-0.2605924,-1.763053,1.602965E-30,0.1705696,-1.763053,1.602965E-30,-0.1705696,-0.882608,1.602965E-30,-1.869863,-1.178043,1.602965E-30,-1.699293,2.060653,1.602965E-30,-0.1705696,2.060653,1.602965E-30,0.1705696,0.7654746,0.4003911,-0.2695471,0.7654746,0.4003911,0.2695471,1.029244,1.602965E-30,-1.441564,0.5891311,0.8151528,-0.477758,0.7338094,1.602965E-30,-1.612133,0.1191854,0.8151528,-0.7490815,0.1846471,1.602965E-30,-0.8410025,0.7338094,1.602965E-30,-1.612133,0.1191854,0.8151528,-0.7490815,1.029244,1.602965E-30,-1.441564,0.6360063,1.602965E-30,-0.5804101,0.5891311,0.8151528,-0.477758,-0.6401089,1.602965E-30,-0.5780412,-0.6161717,0.4003911,-0.5281472,-0.8206527,1.602965E-30,-0.4738043,-0.6001556,1.6,-0.3465002,-0.1493022,0.4003911,-0.797694,4.768372E-07,1.6,-0.6930001,6.520273E-07,1.602965E-30,-0.9476083,-0.1805431,1.602965E-30,-0.8433715,-0.8206527,1.602965E-30,-0.4738043,-0.6001556,1.6,-0.3465002,-0.8206527,1.602965E-30,-0.2605924,-0.708316,0.8151528,-0.2713234,-0.6001556,1.6,0.3465002,-0.708316,0.8151528,0.2713234,-0.8206527,1.602965E-30,0.4738043,-0.8206527,1.602965E-30,0.2605924,-0.1805431,1.602965E-30,0.8433715,-0.1493022,0.4003911,0.797694,6.520273E-07,1.602965E-30,0.9476083,4.768372E-07,1.6,0.6930001,-0.6001556,1.6,0.3465002,-0.6161717,0.4003911,0.5281472,-0.8206527,1.602965E-30,0.4738043,-0.6401089,1.602965E-30,0.5780412,6.520273E-07,1.602965E-30,-0.9476083,0.1846471,1.602965E-30,-0.8410025,4.768372E-07,1.6,-0.6930001,0.1191854,0.8151528,-0.7490815,0.6001556,1.6,-0.3465002,0.5891311,0.8151528,-0.477758,0.8206527,1.602965E-30,-0.4738043,0.6360063,1.602965E-30,-0.5804101,0.8206527,1.602965E-30,0.4738043,0.6360058,1.602965E-30,0.5804103,0.6001556,1.6,0.3465002,0.5891307,0.8151528,0.4777583,0.1191849,0.8151528,0.7490817,4.768372E-07,1.6,0.6930001,6.520273E-07,1.602965E-30,0.9476083,0.1846467,1.602965E-30,0.8410028,2.060653,1.602965E-30,0.1705696,0.8206527,1.602965E-30,0.2653304,0.7654746,0.4003911,0.2695471,-0.708316,0.8151528,-0.2713234,-0.708316,0.8151528,0.2713234,-1.763053,1.602965E-30,-0.1705696,-1.763053,1.602965E-30,0.1705696,0.8206527,1.602965E-30,-0.2653304,2.060653,1.602965E-30,-0.1705696,0.7654746,0.4003911,-0.2695471,-0.882608,1.602965E-30,-1.869863,-0.1805431,1.602965E-30,-0.8433715,-0.1493022,0.4003911,-0.797694 + } + PolygonVertexIndex: *588 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,19,-19,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,105,-105,107,106,-105,108,106,-108,109,108,-108,105,110,-104,111,103,-111,112,111,-111,109,111,-113,113,111,-110,107,113,-110,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,131,-134,135,134,-134,131,136,-131,137,130,-137,135,137,-137,133,137,-136,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,175,-178,179,178,-178,175,180,-175,181,174,-181,179,181,-181,177,181,-180,182,184,-184,185,183,-185,186,188,-188,189,187,-189,188,190,-190,191,189,-191,190,192,-192,193,191,-193,194,196,-196,197,199,-199,200,198,-200,201,203,-203,204,206,-206,207,209,-209,210,208,-210,211,213,-213,214,216,-216,217,219,-219,220,218,-220,221,223,-223,224,226,-226,227,229,-229,230,228,-230,231,230,-230,232,231,-230,229,233,-233,233,234,-233,235,232,-235,230,236,-229,237,228,-237,233,229,-239,238,229,-240,240,239,-230,241,233,-239,242,241,-239,243,241,-243,244,241,-244,245,244,-244,246,244,-246,247,246,-246,246,248,-245,246,249,-249,250,248,-250,251,250,-250,252,250,-252,251,253,-253,254,252,-254,255,244,-249,256,255,-249,257,259,-259,260,258,-260,261,263,-263,264,262,-264,265,267,-267,268,270,-270,271,273,-273,274,272,-274,275,272,-275,274,276,-276,276,277,-276,278,275,-278,279,281,-281,282,280,-282,280,282,-284,284,283,-283,283,284,-286,286,285,-285,287,289,-289,290,288,-290,290,291,-289,288,291,-293,291,293,-293,294,292,-294,295,297,-297,298,296,-298,297,299,-299,298,299,-301,299,301,-301,302,300,-302,303,305,-305,306,304,-306,307,306,-306,305,308,-308,308,309,-308,310,307,-310,311,313,-313,314,316,-316,317,315,-317,318,320,-320,321,323,-323 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1764 { + a: 0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.3205056,0.7675316,-0.555132,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.9222204,-0.3866647,0,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,0.4611101,-0.3866646,0.7986663,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,-0.9222204,-0.3866646,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,-0.9924891,0.1223335,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,0.4296742,-0.902984,0,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.3205056,0.7675316,0.555132,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4296741,-0.902984,0,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,-0.4611101,-0.3866646,0.7986663,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.2148371,-0.902984,0.3721087,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.3205056,0.7675316,-0.555132,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,-0.4962445,0.1223336,-0.8595207,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,0.6410112,0.7675316,0,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,-0.2148371,-0.902984,-0.3721087,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.9924891,0.1223336,0,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4611101,-0.3866646,-0.7986663,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,0.4962445,0.1223336,-0.8595207,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,-0.6410111,0.7675316,0,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.3205056,0.7675316,0.555132,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,0.2148371,-0.902984,-0.3721088,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4962445,0.1223335,0.8595207,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,-0.4611101,-0.3866646,-0.7986663,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,-0.4991642,0.05780061,0.8645774,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.9983281,0.0578004,0,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.4991642,0.05779905,-0.8645775,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.08962248,-0.9838045,0.1552308,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,0.4991644,0.0578005,0.8645774,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.9983281,0.05780068,0,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,-0.4991642,0.05780061,-0.8645774,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,0.4991637,0.05780111,0.8645777,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,-0.7986091,0.007055951,0.6018087,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.03225381,0.9979172,0.05586538,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,0.9204861,0.007057459,0.3907117,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,-0.7986097,0.007056309,-0.6018077,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.9204857,0.007055539,-0.3907126,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.03225293,0.9979174,-0.0558637,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.4991644,0.05780056,-0.8645773,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.08962249,-0.9838044,-0.1552309,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,0.9906372,0.1365204,0,-0.8145548,0,0.5800868,-0.8145548,0,0.5800868,-0.8145548,0,0.5800868,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.3057542,0.7912382,0.5295814,0.909647,0,-0.4153822,0.909647,0,-0.4153822,0.909647,0,-0.4153822,-0.9016068,0,0.4325566,-0.9016068,0,0.4325566,-0.9016068,0,0.4325566,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,-0.1476744,0.9553894,-0.2557797,0.8254089,0,0.5645353,0.8254089,0,0.5645353,0.8254089,0,0.5645353,-0.9016068,0,-0.4325566,-0.9016068,0,-0.4325566,-0.9016068,0,-0.4325566,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.1476744,0.9553894,0.2557797,-0.09509219,0,0.9954685,-0.09509219,0,0.9954685,-0.09509219,0,0.9954685,-0.09509219,0,-0.9954685,-0.09509219,0,-0.9954685,-0.09509219,0,-0.9954685,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.2953489,0.9553894,0,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,0.3057542,0.7912382,-0.5295814,-0.8145548,0,-0.5800868,-0.8145548,0,-0.5800868,-0.8145548,0,-0.5800868,0.909647,0,0.4153822,0.909647,0,0.4153822,0.909647,0,0.4153822,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.4953183,0.1365204,-0.8579172,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.9906372,0.1365204,0,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,-0.4953183,0.1365204,0.8579172,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,-0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.4953188,0.1365205,0.8579168,0.07619788,0,0.9970927,0.07619788,0,0.9970927,0.07619788,0,0.9970927,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,-0.611508,0.7912382,0,0.07619788,0,-0.9970927,0.07619788,0,-0.9970927,0.07619788,0,-0.9970927,0.8254089,0,-0.5645353,0.8254089,0,-0.5645353,0.8254089,0,-0.5645353 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *648 { + a: -6.188001,19.85095,-3.094002,26.83303,6.187998,19.85095,3.093998,26.83303,7.28,31.11893,5.732284,24.18598,-7.28,31.11893,-5.732284,24.18598,5.732285,24.18598,-5.732282,24.18598,7.280003,31.11893,-7.279998,31.11893,-7.28,31.11893,7.28,31.11893,-5.732284,24.18598,5.732284,24.18598,-5.358967,-3.094,-5.358967,3.094,-1.877312E-06,-6.187999,-1.877312E-06,6.188,5.358963,-3.094,5.358963,3.094,-7.28,26.70041,-6.187999,42.16142,7.28,26.70041,6.188,42.16142,-5.732284,18.44527,5.732284,18.44527,-2.866142,12.94761,2.866142,12.94761,3.094002,26.83302,6.188002,19.85095,-3.093998,26.83302,-6.187999,19.85095,2.866142,12.9476,-2.866142,12.9476,5.732284,18.44527,-5.732284,18.44527,5.732285,24.18598,-5.732283,24.18598,7.280001,31.11893,-7.279999,31.11893,5.732285,18.44527,2.866144,12.94761,-5.732282,18.44527,-2.86614,12.94761,5.732285,18.44527,2.866143,12.94761,-5.732283,18.44527,-2.866141,12.9476,-6.188001,19.85095,-3.094001,26.83303,6.188,19.85095,3.093998,26.83303,7.279999,26.70041,-7.280002,26.70041,6.187999,42.16142,-6.188002,42.16142,6.187999,19.85095,-6.188,19.85095,3.094,26.83303,-3.094,26.83303,-2.866143,12.94761,-5.732285,18.44527,2.866141,12.9476,5.732283,18.44527,7.28,26.70041,-7.28,26.70041,6.187999,42.16142,-6.188,42.16142,5.732282,24.18598,-5.732285,24.18598,7.279998,31.11893,-7.280003,31.11893,7.280003,26.70041,-7.279998,26.70041,6.188001,42.16142,-6.187998,42.16142,7.279999,26.70041,-7.280002,26.70041,6.187998,42.16142,-6.188001,42.16142,-3.094,26.83302,3.094,26.83302,-6.187999,19.85094,6.188,19.85094,6.188001,19.85095,-6.187998,19.85095,3.094002,26.83302,-3.093999,26.83302,-5.732285,18.44527,5.732281,18.44527,-2.866144,12.94761,2.86614,12.94761,7.280001,26.70041,-7.279999,26.70041,6.188001,42.16142,-6.187999,42.16142,5.732283,24.18598,-5.732285,24.18598,7.28,31.11893,-7.280001,31.11893,4.964306,2.866142,4.964306,-2.866142,1.877312E-06,5.732284,1.586904,0.9161966,1.877312E-06,1.832398,-4.964302,2.866142,-1.5869,0.9161966,-1.5869,-0.9161966,1.586904,-0.9161966,1.877312E-06,-5.732284,1.877312E-06,-1.832398,-4.964302,-2.866142,1.364175,6.152109,-1.364172,6.152109,0.9162008,19.57613,-0.9161972,19.57613,1.364174,6.15211,-1.364174,6.15211,0.9161966,19.57613,-0.9161966,19.57613,0.3589758,8.052682,-0.3378762,8.052682,0.3589755,8.749532,-0.3378732,8.749532,0.3011661,6.143971,0.5432916,4.160633,-0.3956821,6.143972,-0.6378124,4.160632,-1.364173,6.152109,0.5432904,11.94318,1.364172,6.152109,0.9162,19.57613,0.5432907,13.12428,-0.6378129,13.12428,-0.6378137,11.94318,-0.9161979,19.57613,-1.364174,6.152109,-0.9161966,19.57613,1.364174,6.152109,0.9161966,19.57613,1.364172,6.152109,-1.364175,6.152109,0.9161972,19.57613,-0.9162008,19.57613,0.3011666,12.18531,-0.3956816,12.18531,0.3011678,12.88216,-0.3956842,12.88216,1.867474,13.25325,3.861437,13.12531,1.935233,12.07409,3.901416,12.42961,0.3011709,-3.083723,-0.3956811,-3.083723,0.5432937,-1.100385,-0.6378099,-1.100385,4.145549,8.30418,2.179369,7.948667,4.105571,8.999882,2.111609,9.127822,-4.142977,8.304033,-4.103002,8.999735,-2.176798,7.948521,-2.109038,9.127675,-1.878997,13.25391,-1.946755,12.07476,-3.872958,13.12597,-3.912936,12.43027,-0.3378739,-3.588253,-0.5800033,-1.604916,0.3589748,-3.588254,0.6011008,-1.604915,-1.364172,6.152109,0.6011016,7.810547,1.364173,6.152109,0.9161981,19.57613,0.6011016,8.991648,-0.5800024,8.991647,-0.5800024,7.810547,-0.9161999,19.57613,-0.3378798,5.639456,0.3589722,5.639456,-0.5800049,3.656118,0.6010992,3.656119,1.865371,-0.4410861,1.044608,-0.4410861,1.364174,5.917662,1.061209,1.150155,-1.364174,5.917662,-1.061209,1.150155,-1.865371,-0.4410861,-1.044608,-0.4410861,3.118716,6.682524E-15,2.674432,3.209263,6.845842,6.682524E-15,0.6715315,-5.492106,-0.6715358,-5.492106,1.0682,-0.2439937,-1.068204,-0.2439937,-2.674432,3.209263,-3.118716,-1.022708E-14,-6.845842,-1.022708E-14,-3.141926,-5.698989E-14,-8.038051,-5.698989E-14,-2.924056,1.576343,-1.061209,-2.413666,1.061209,-2.413666,-0.6715337,-7.750889,0.6715336,-7.750889,-2.924056,1.576343,-3.141926,-4.047706E-14,-8.038051,-4.047706E-14,3.141926,-2.5556E-14,2.924056,1.576343,8.038051,-2.5556E-14,1.061209,-2.413666,0.6715337,-7.750889,-1.061209,-2.413666,-0.6715336,-7.750889,-3.118715,1.608104E-14,-6.845841,1.608104E-14,-2.674431,3.209263,6.845841,-3.156557E-15,3.118715,-3.156557E-15,2.674431,3.209263,3.230916,1.865371,3.230916,1.044608,2.50396,2.28508,3.230916,-1.044608,3.230916,-1.865371,2.503962,-2.285079,0.7269571,-3.311034,2.889013,-6.346982,4.052144,-5.675448,8.112806,-0.6715337,8.112806,0.6715337,0.7269554,3.311035,2.889011,6.346983,4.052142,5.675449,2.567037E-06,-3.730741,2.567037E-06,3.730741,-0.7107996,3.32036,-0.7107996,-3.32036,-3.474835,7.361665,-2.520114,2.275753,-4.637965,6.690131,-2.520114,-2.275753,-3.230916,1.865371,-3.230916,-1.865371,-3.230916,1.025954,-3.230916,-1.025954,-6.941153,0.6715337,-6.941153,-0.6715337,-3.474835,-7.361665,-4.637965,-6.690131,0.6715337,-7.750889,-0.6715337,-7.750889,1.061209,-2.413666,-1.061209,-2.413666,-0.6715336,-5.492106,-1.068202,-0.2439937,0.6715337,-5.492106,1.068202,-0.2439937,-3.118716,-2.308505E-15,-6.845842,-2.308505E-15,-2.674432,3.209263,6.845842,-6.201537E-15,3.118716,-6.201537E-15,2.674432,3.209263,1.044608,-0.4410861,1.061209,1.150155,1.865371,-0.4410861,1.364174,5.917662,-1.061209,1.150155,-1.364174,5.917662,-1.865371,-0.4410861,-1.044608,-0.4410861,-1.865371,-0.4410861,-1.364174,5.917662,-1.025954,-0.4410861,-1.068202,2.798508,1.364174,5.917662,1.068202,2.798508,1.865371,-0.4410861,1.025954,-0.4410861,1.044608,-0.4410861,1.061209,1.150155,1.865371,-0.4410861,1.364174,5.917662,-1.364174,5.917662,-1.061209,1.150155,-1.865371,-0.4410861,-1.044608,-0.4410861,1.865369,-0.4410865,1.025954,-0.4410865,1.364172,5.917662,1.068202,2.798508,-1.364172,5.917662,-1.068202,2.798508,-1.865369,-0.4410865,-1.025954,-0.4410865,1.865369,-0.4410865,1.025952,-0.4410865,1.364172,5.917662,1.0682,2.798508,-1.068204,2.798508,-1.364172,5.917662,-1.865369,-0.4410865,-1.025956,-0.4410865,8.038051,1.409628E-14,3.141926,1.409628E-14,2.924056,1.576343,-1.068202,-0.2439929,1.068202,-0.2439929,-0.6715337,-5.492105,0.6715337,-5.492105,-3.141926,3.018567E-14,-8.038051,3.018567E-14,-2.924056,1.576343,8.038051,-1.018905E-13,3.141926,-1.018905E-13,2.924056,1.576343 + } + UVIndex: *588 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,19,18,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,105,104,107,106,104,108,106,107,109,108,107,105,110,103,111,103,110,112,111,110,109,111,112,113,111,109,107,113,109,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,131,133,135,134,133,131,136,130,137,130,136,135,137,136,133,137,135,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,175,177,179,178,177,175,180,174,181,174,180,179,181,180,177,181,179,182,184,183,185,183,184,186,188,187,189,187,188,188,190,189,191,189,190,190,192,191,193,191,192,194,196,195,197,199,198,200,198,199,201,203,202,204,206,205,207,209,208,210,208,209,211,213,212,214,216,215,217,219,218,220,218,219,221,223,222,224,226,225,227,229,228,230,228,229,231,230,229,232,231,229,229,233,232,233,234,232,235,232,234,230,236,228,237,228,236,233,229,238,238,229,239,240,239,229,241,233,238,242,241,238,243,241,242,244,241,243,245,244,243,246,244,245,247,246,245,246,248,244,246,249,248,250,248,249,251,250,249,252,250,251,251,253,252,254,252,253,255,244,248,256,255,248,257,259,258,260,258,259,261,263,262,264,262,263,265,267,266,268,270,269,271,273,272,274,272,273,275,272,274,274,276,275,276,277,275,278,275,277,279,281,280,282,280,281,280,282,283,284,283,282,283,284,285,286,285,284,287,289,288,290,288,289,290,291,288,288,291,292,291,293,292,294,292,293,295,297,296,298,296,297,297,299,298,298,299,300,299,301,300,302,300,301,303,305,304,306,304,305,307,306,305,305,308,307,308,309,307,310,307,309,311,313,312,314,316,315,317,315,316,318,320,319,321,323,322 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *196 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_oak_fall, Model::RootNode + C: "OO",5567256586316757652,0 + + ;Geometry::, Model::Mesh tree_oak_fall + C: "OO",5761081191475439406,5567256586316757652 + + ;Material::leafsFall, Model::Mesh tree_oak_fall + C: "OO",3028,5567256586316757652 + + ;Material::woodBirch, Model::Mesh tree_oak_fall + C: "OO",3050,5567256586316757652 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_fall.fbx.import new file mode 100644 index 0000000..3f7528a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_oak_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dk5rcvc4e50ks" +path="res://.godot/imported/tree_oak_fall.fbx-23b7cf1f9b8024d0a9861d0c0186c123.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_oak_fall.fbx" +dest_files=["res://.godot/imported/tree_oak_fall.fbx-23b7cf1f9b8024d0a9861d0c0186c123.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palm.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_palm.fbx new file mode 100644 index 0000000..59beadd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palm.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 38 + Millisecond: 176 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_palm.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_palm.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5484962301285079541, "Model::tree_palm", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5754168983736401786, "Geometry::", "Mesh" { + Vertices: *888 { + a: 0.31,0,0.31,-0.31,0,0.31,0.53816,0.6036,0.53816,-0.53816,0.6036,0.53816,0.53816,0.6036,-0.53816,0.31,0,-0.31,0.53816,0.6036,0.53816,0.31,0,0.31,0.31,0,0.31,0.31,0,-0.31,-0.31,0,0.31,-0.31,0,-0.31,0.53816,0.6036,-0.53816,0.53816,0.6036,0.53816,0.17794,14.3468,-0.17794,0.17794,14.3468,0.17794,-0.53816,0.6036,-0.53816,-0.17794,14.3468,-0.17794,-0.53816,0.6036,0.53816,-0.17794,14.3468,0.17794,-0.31,0,-0.31,0.31,0,-0.31,-0.53816,0.6036,-0.53816,0.53816,0.6036,-0.53816,0.53816,0.6036,0.53816,-0.53816,0.6036,0.53816,0.17794,14.3468,0.17794,-0.17794,14.3468,0.17794,-0.53816,0.6036,-0.53816,0.53816,0.6036,-0.53816,-0.17794,14.3468,-0.17794,0.17794,14.3468,-0.17794,-0.53816,0.6036,-0.53816,-0.53816,0.6036,0.53816,-0.31,0,-0.31,-0.31,0,0.31,3.919605,14.14189,1.327171,3.109167,14.14189,2.73089,2.677376,14.88703,0.60997,1.866938,14.88703,2.013689,2.677376,14.88703,0.60997,3.109167,14.14189,2.73089,3.919605,14.14189,1.327171,1.866938,14.88703,2.013689,0.17794,14.3468,-0.17794,0.17794,14.3468,0.17794,-0.17794,14.3468,-0.17794,-0.17794,14.3468,0.17794,-3.291916E-12,14.3468,-0.5,0.2886752,14.3468,-0.5,-0.2886752,14.3468,-0.5,-0.2886752,14.3468,0.5,-0.4330127,14.3468,0.25,-0.4330127,14.3468,-0.25,-0.5773503,14.3468,-4.331469E-14,0.2886752,14.3468,0.5,0.4330127,14.3468,-0.25,0.4330127,14.3468,0.25,0.5773503,14.3468,-3.681748E-12,-2.887646E-14,14.3468,0.5,-0.17794,14.3468,-0.17794,0.17794,14.3468,0.17794,0.17794,14.3468,-0.17794,-0.17794,14.3468,0.17794,-3.291916E-12,14.3468,-0.5,0.2886752,14.3468,-0.5,-0.2886752,14.3468,-0.5,-0.2886752,14.3468,0.5,-0.4330127,14.3468,0.25,-0.4330127,14.3468,-0.25,-0.5773503,14.3468,-4.331469E-14,0.2886752,14.3468,0.5,0.4330127,14.3468,-0.25,0.4330127,14.3468,0.25,0.5773503,14.3468,-3.681748E-12,-2.887646E-14,14.3468,0.5,1.45128,14.88703,-0.09791677,0.6408424,14.88703,1.305802,0.7369268,14.3468,-0.2763946,0.5773503,14.3468,-3.681748E-12,0.4330127,14.3468,0.25,0.1290986,14.3468,0.7763946,0.2886752,14.3468,0.5,0.7369268,14.3468,-0.2763946,0.6408424,14.88703,1.305802,1.45128,14.88703,-0.09791677,0.5773503,14.3468,-3.681748E-12,0.4330127,14.3468,0.25,0.1290986,14.3468,0.7763946,0.2886752,14.3468,0.5,-0.5841082,12.69183,-5.063818,0.3884167,12.69183,-5.063818,-0.8104383,14.14189,-4.058063,0.8104365,14.14189,-4.058063,-0.8104383,14.14189,-4.058063,0.3884167,12.69183,-5.063818,-0.5841082,12.69183,-5.063818,0.8104365,14.14189,-4.058063,2.677376,14.88703,0.60997,1.866938,14.88703,2.013689,1.45128,14.88703,-0.09791677,0.6408424,14.88703,1.305802,1.45128,14.88703,-0.09791677,1.866938,14.88703,2.013689,2.677376,14.88703,0.60997,0.6408424,14.88703,1.305802,0.8104365,14.14189,-4.058063,0.8104365,14.88703,-2.62366,-0.8104383,14.14189,-4.058063,-0.8104383,14.88703,-2.62366,-0.8104383,14.14189,-4.058063,0.8104365,14.88703,-2.62366,0.8104365,14.14189,-4.058063,-0.8104383,14.88703,-2.62366,-1.866938,15.14591,-2.013689,-2.677376,15.14591,-0.60997,-3.109167,14.54369,-2.73089,-3.919605,14.54369,-1.327171,-3.109167,14.54369,-2.73089,-2.677376,15.14591,-0.60997,-1.866938,15.14591,-2.013689,-3.919605,14.54369,-1.327171,0.8104365,14.88703,-1.207887,0.6078281,14.3468,-0.5,-0.8104383,14.88703,-1.207887,0.2886752,14.3468,-0.5,-3.291916E-12,14.3468,-0.5,-0.2886752,14.3468,-0.5,-0.6078281,14.3468,-0.5,-0.8104383,14.88703,-1.207887,0.6078281,14.3468,-0.5,0.8104365,14.88703,-1.207887,0.2886752,14.3468,-0.5,-3.291916E-12,14.3468,-0.5,-0.2886752,14.3468,-0.5,-0.6078281,14.3468,-0.5,2.677375,15.14591,-0.6099715,1.451279,15.14591,0.09791522,1.866937,15.14591,-2.01369,0.6408415,15.14591,-1.305804,1.866937,15.14591,-2.01369,1.451279,15.14591,0.09791522,2.677375,15.14591,-0.6099715,0.6408415,15.14591,-1.305804,0.8104383,14.54369,4.058063,-0.8104365,14.54369,4.058063,0.8104383,15.14591,2.62366,-0.8104365,15.14591,2.62366,0.8104383,15.14591,2.62366,-0.8104365,14.54369,4.058063,0.8104383,14.54369,4.058063,-0.8104365,15.14591,2.62366,3.919604,14.54369,-1.327173,2.677375,15.14591,-0.6099715,3.109167,14.54369,-2.730892,1.866937,15.14591,-2.01369,3.109167,14.54369,-2.730892,2.677375,15.14591,-0.6099715,3.919604,14.54369,-1.327173,1.866937,15.14591,-2.01369,-0.6408424,15.14591,-1.305802,-1.45128,15.14591,0.09791677,-1.866938,15.14591,-2.013689,-2.677376,15.14591,-0.60997,-1.866938,15.14591,-2.013689,-1.45128,15.14591,0.09791677,-0.6408424,15.14591,-1.305802,-2.677376,15.14591,-0.60997,0.5841082,12.89876,5.063818,-0.3884167,12.89876,5.063818,0.8104383,14.54369,4.058063,-0.8104365,14.54369,4.058063,0.8104383,14.54369,4.058063,-0.3884167,12.89876,5.063818,0.5841082,12.89876,5.063818,-0.8104365,14.54369,4.058063,1.451279,15.14591,0.09791522,1.118313,14.77344,0.1811061,0.6408415,15.14591,-1.305804,0.5773503,14.3468,-3.681748E-12,0.4023142,14.77344,-1.059042,0.4330127,14.3468,-0.25,0.2886752,14.3468,-0.5,0.6408415,15.14591,-1.305804,1.118313,14.77344,0.1811061,1.451279,15.14591,0.09791522,0.5773503,14.3468,-3.681748E-12,0.4023142,14.77344,-1.059042,0.4330127,14.3468,-0.25,0.2886752,14.3468,-0.5,3.919605,14.14189,1.327171,4.677449,12.69183,2.026056,3.109167,14.14189,2.73089,4.191186,12.69183,2.868287,3.109167,14.14189,2.73089,4.677449,12.69183,2.026056,3.919605,14.14189,1.327171,4.191186,12.69183,2.868287,-0.2886752,14.3468,0.5,-2.887646E-14,14.3468,0.5,-0.7159989,14.77344,0.8779343,0.2886752,14.3468,0.5,0.7160002,14.77344,0.8779353,-0.8104365,15.14591,1.207887,0.8104383,15.14591,1.207887,-0.7159989,14.77344,0.8779343,-2.887646E-14,14.3468,0.5,-0.2886752,14.3468,0.5,0.2886752,14.3468,0.5,0.7160002,14.77344,0.8779353,-0.8104365,15.14591,1.207887,0.8104383,15.14591,1.207887,-0.1290986,14.3468,0.7763946,-0.6408415,14.88703,1.305804,-0.2886752,14.3468,0.5,-0.4330127,14.3468,0.25,-0.5773503,14.3468,-4.331469E-14,-0.7369268,14.3468,-0.2763946,-1.451279,14.88703,-0.09791522,-0.2886752,14.3468,0.5,-0.6408415,14.88703,1.305804,-0.1290986,14.3468,0.7763946,-0.4330127,14.3468,0.25,-0.5773503,14.3468,-4.331469E-14,-0.7369268,14.3468,-0.2763946,-1.451279,14.88703,-0.09791522,-1.866937,14.88703,2.01369,-3.109167,14.14189,2.730892,-2.677375,14.88703,0.6099715,-3.919604,14.14189,1.327173,-2.677375,14.88703,0.6099715,-3.109167,14.14189,2.730892,-1.866937,14.88703,2.01369,-3.919604,14.14189,1.327173,-3.919604,14.14189,1.327173,-3.109167,14.14189,2.730892,-4.579603,12.69183,2.19553,-4.09334,12.69183,3.037761,-4.579603,12.69183,2.19553,-3.109167,14.14189,2.730892,-3.919604,14.14189,1.327173,-4.09334,12.69183,3.037761,-0.2886752,14.3468,-0.5,-0.4330127,14.3468,-0.25,-0.4023139,14.77344,-1.05904,-0.6408424,15.14591,-1.305802,-0.5773503,14.3468,-4.331469E-14,-1.118315,14.77344,0.1811066,-1.45128,15.14591,0.09791677,-0.4023139,14.77344,-1.05904,-0.4330127,14.3468,-0.25,-0.2886752,14.3468,-0.5,-0.6408424,15.14591,-1.305802,-0.5773503,14.3468,-4.331469E-14,-1.118315,14.77344,0.1811066,-1.45128,15.14591,0.09791677,-0.6408415,14.88703,1.305804,-1.866937,14.88703,2.01369,-1.451279,14.88703,-0.09791522,-2.677375,14.88703,0.6099715,-1.451279,14.88703,-0.09791522,-1.866937,14.88703,2.01369,-0.6408415,14.88703,1.305804,-2.677375,14.88703,0.6099715,0.8104365,14.88703,-2.62366,0.8104365,14.88703,-1.207887,-0.8104383,14.88703,-2.62366,-0.8104383,14.88703,-1.207887,-0.8104383,14.88703,-2.62366,0.8104365,14.88703,-1.207887,0.8104365,14.88703,-2.62366,-0.8104383,14.88703,-1.207887,0.8104383,15.14591,2.62366,-0.8104365,15.14591,2.62366,0.8104383,15.14591,1.207887,-0.8104365,15.14591,1.207887,0.8104383,15.14591,1.207887,-0.8104365,15.14591,2.62366,0.8104383,15.14591,2.62366,-0.8104365,15.14591,1.207887,-4.191186,12.89876,-2.868287,-3.109167,14.54369,-2.73089,-4.677449,12.89876,-2.026056,-3.919605,14.54369,-1.327171,-4.677449,12.89876,-2.026056,-3.109167,14.54369,-2.73089,-4.191186,12.89876,-2.868287,-3.919605,14.54369,-1.327171,4.09334,12.89876,-3.037761,4.579603,12.89876,-2.19553,3.109167,14.54369,-2.730892,3.919604,14.54369,-1.327173,3.109167,14.54369,-2.730892,4.579603,12.89876,-2.19553,4.09334,12.89876,-3.037761,3.919604,14.54369,-1.327173 + } + PolygonVertexIndex: *558 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,41,43,-41,44,46,-46,47,45,-47,46,44,-49,49,48,-45,44,45,-50,50,46,-49,47,46,-51,51,47,-51,52,51,-51,53,52,-51,54,52,-54,45,55,-50,49,55,-57,55,57,-57,58,56,-58,59,55,-46,47,59,-46,51,59,-48,60,62,-62,61,63,-61,62,60,-65,64,65,-63,61,62,-66,60,66,-65,60,63,-67,63,67,-67,67,68,-67,68,69,-67,68,70,-70,71,61,-66,71,65,-73,73,71,-73,72,74,-74,71,75,-62,75,63,-62,75,67,-64,76,78,-78,79,77,-79,80,77,-80,81,77,-81,82,81,-81,83,85,-85,84,86,-84,84,87,-87,84,88,-88,88,89,-88,90,92,-92,93,91,-93,94,96,-96,95,97,-95,98,100,-100,101,99,-101,102,104,-104,103,105,-103,106,108,-108,109,107,-109,110,112,-112,111,113,-111,114,116,-116,117,115,-117,118,120,-120,119,121,-119,122,124,-124,125,123,-125,126,125,-125,127,126,-125,128,127,-125,129,131,-131,130,132,-130,132,133,-130,133,134,-130,134,135,-130,136,138,-138,139,137,-139,140,142,-142,141,143,-141,144,146,-146,147,145,-147,148,150,-150,149,151,-149,152,154,-154,155,153,-155,156,158,-158,157,159,-157,160,162,-162,163,161,-163,164,166,-166,165,167,-165,168,170,-170,171,169,-171,172,174,-174,173,175,-173,176,178,-178,179,177,-179,180,179,-179,181,179,-181,182,181,-181,183,185,-185,184,186,-184,186,187,-184,186,188,-188,188,189,-188,190,192,-192,193,191,-193,194,196,-196,195,197,-195,198,200,-200,201,199,-201,202,201,-201,203,202,-201,204,202,-204,205,207,-207,206,208,-206,208,209,-206,209,210,-206,209,211,-211,212,214,-214,215,213,-215,216,213,-216,217,213,-217,218,213,-218,219,221,-221,220,222,-220,220,223,-223,220,224,-224,220,225,-225,226,228,-228,229,227,-229,230,232,-232,231,233,-231,234,236,-236,237,235,-237,238,240,-240,239,241,-239,242,244,-244,245,243,-245,246,243,-246,247,246,-246,248,247,-246,249,251,-251,250,252,-250,250,253,-253,253,254,-253,254,255,-253,256,258,-258,259,257,-259,260,262,-262,261,263,-261,264,266,-266,267,265,-267,268,270,-270,269,271,-269,272,274,-274,275,273,-275,276,278,-278,277,279,-277,280,282,-282,283,281,-283,284,286,-286,285,287,-285,288,290,-290,291,289,-291,292,294,-294,293,295,-293 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1674 { + a: 0,-0.3535814,0.9354037,0,-0.3535814,0.9354037,0,-0.3535814,0.9354037,0,-0.3535814,0.9354037,0,-0.3535814,0.9354037,0,-0.3535814,0.9354037,0.9354037,-0.3535814,0,0.9354037,-0.3535814,0,0.9354037,-0.3535814,0,0.9354037,-0.3535814,0,0.9354037,-0.3535814,0,0.9354037,-0.3535814,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9996567,0.02620178,0,0.9996567,0.02620178,0,0.9996567,0.02620178,0,0.9996567,0.02620178,0,0.9996567,0.02620178,0,0.9996567,0.02620178,0,-0.9996567,0.02620178,0,-0.9996567,0.02620178,0,-0.9996567,0.02620178,0,-0.9996567,0.02620178,0,-0.9996567,0.02620178,0,-0.9996567,0.02620178,0,0,-0.3535814,-0.9354037,0,-0.3535814,-0.9354037,0,-0.3535814,-0.9354037,0,-0.3535814,-0.9354037,0,-0.3535814,-0.9354037,0,-0.3535814,-0.9354037,0,0.02620178,0.9996567,0,0.02620178,0.9996567,0,0.02620178,0.9996567,0,0.02620178,0.9996567,0,0.02620178,0.9996567,0,0.02620178,0.9996567,0,0.02620178,-0.9996567,0,0.02620178,-0.9996567,0,0.02620178,-0.9996567,0,0.02620178,-0.9996567,0,0.02620178,-0.9996567,0,0.02620178,-0.9996567,-0.9354037,-0.3535814,0,-0.9354037,-0.3535814,0,-0.9354037,-0.3535814,0,-0.9354037,-0.3535814,0,-0.9354037,-0.3535814,0,-0.9354037,-0.3535814,0,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *592 { + a: 1.220472,0.4315363,-1.220472,0.4315363,2.11874,2.97202,-2.11874,2.97202,2.11874,2.97202,1.220472,0.4315363,-2.11874,2.97202,-1.220472,0.4315363,1.220472,1.220472,1.220472,-1.220472,-1.220472,1.220472,-1.220472,-1.220472,2.11874,2.320047,-2.11874,2.320047,0.7005512,56.44572,-0.7005512,56.44572,-2.11874,2.320047,-0.7005512,56.44572,2.11874,2.320047,0.7005512,56.44572,1.220472,0.4315363,-1.220472,0.4315363,2.11874,2.97202,-2.11874,2.97202,2.11874,2.320047,-2.11874,2.320047,0.7005512,56.44572,-0.7005512,56.44572,2.11874,2.320047,-2.11874,2.320047,0.7005512,56.44572,-0.7005512,56.44572,-2.11874,2.97202,2.11874,2.97202,-1.220472,0.4315363,1.220472,0.4315363,3.190702,11.48865,-3.190695,11.48865,3.190702,17.85243,-3.190695,17.85243,3.190702,17.85243,-3.190695,11.48865,3.190702,11.48865,-3.190695,17.85243,-0.7005512,-0.7005512,-0.7005512,0.7005512,0.7005512,-0.7005512,0.7005512,0.7005512,1.29603E-11,-1.968504,-1.136516,-1.968504,1.136516,-1.968504,1.136516,1.968504,1.704774,0.984252,1.704774,-0.984252,2.273033,-1.705303E-13,-1.136516,1.968504,-1.704774,-0.984252,-1.704774,0.984252,-2.273033,-1.449507E-11,1.136868E-13,1.968504,0.7005512,-0.7005512,-0.7005512,0.7005512,-0.7005512,-0.7005512,0.7005512,0.7005512,1.29603E-11,-1.968504,-1.136516,-1.968504,1.136516,-1.968504,1.136516,1.968504,1.704774,0.984252,1.704774,-0.984252,2.273033,-1.705303E-13,-1.136516,1.968504,-1.704774,-0.984252,-1.704774,0.984252,-2.273033,-1.449507E-11,1.136868E-13,1.968504,-3.190702,39.3377,3.190695,39.3377,-2.393024,35.83188,-1.136516,35.83188,3.907985E-14,35.83188,2.393024,35.83188,1.136516,35.83188,-2.393024,35.83188,3.190695,39.3377,-3.190702,39.3377,-1.136516,35.83188,3.907985E-14,35.83188,2.393024,35.83188,1.136516,35.83188,2.299639,29.6962,-1.5292,29.6962,3.190702,36.64389,-3.190695,36.64389,3.190702,36.64389,-1.5292,29.6962,2.299639,29.6962,-3.190695,36.64389,-10.54085,2.401457,-7.350151,7.927909,-5.7137,-0.3854991,-2.523001,5.140953,-5.7137,-0.3854991,-7.350151,7.927909,-10.54085,2.401457,-2.523001,5.140953,-3.190695,11.48865,-3.190695,17.85243,3.190702,11.48865,3.190702,17.85243,3.190702,11.48865,-3.190695,17.85243,-3.190695,11.48865,3.190702,17.85243,-3.190695,13.5589,3.190702,13.5589,-3.190695,7.434126,3.190702,7.434126,-3.190695,7.434126,3.190702,13.5589,-3.190695,13.5589,3.190702,7.434126,3.190695,39.3377,2.393024,35.83188,-3.190702,39.3377,1.136516,35.83188,-1.296028E-11,35.83188,-1.136516,35.83188,-2.393024,35.83188,-3.190702,39.3377,2.393024,35.83188,3.190695,39.3377,1.136516,35.83188,-1.296028E-11,35.83188,-1.136516,35.83188,-2.393024,35.83188,-10.54085,-2.401463,-5.713696,0.385493,-7.350147,-7.927915,-2.522998,-5.140959,-7.350147,-7.927915,-5.713696,0.385493,-10.54085,-2.401463,-2.522998,-5.140959,3.190702,7.434126,-3.190695,7.434126,3.190702,13.5589,-3.190695,13.5589,3.190702,13.5589,-3.190695,7.434126,3.190702,7.434126,-3.190695,13.5589,-3.190695,7.434126,-3.190695,13.5589,3.190702,7.434126,3.190702,13.5589,3.190702,7.434126,-3.190695,13.5589,-3.190695,7.434126,3.190702,13.5589,2.523001,-5.140953,5.7137,0.3854991,7.350151,-7.927909,10.54085,-2.401457,7.350151,-7.927909,5.7137,0.3854991,2.523001,-5.140953,10.54085,-2.401457,2.299639,32.926,-1.5292,32.926,3.190702,40.5167,-3.190695,40.5167,3.190702,40.5167,-1.5292,32.926,2.299639,32.926,-3.190695,40.5167,3.190695,47.78835,2.818893,45.8293,-3.190702,47.78835,1.136516,43.58537,-2.818898,45.8293,-1.295652E-11,43.58537,-1.136516,43.58537,-3.190702,47.78835,2.818893,45.8293,3.190695,47.78835,1.136516,43.58537,-2.818898,45.8293,-1.295652E-11,43.58537,-1.136516,43.58537,3.190702,36.64389,2.299639,29.6962,-3.190695,36.64389,-1.5292,29.6962,-3.190695,36.64389,2.299639,29.6962,3.190702,36.64389,-1.5292,29.6962,1.136516,43.58537,1.280792E-11,43.58537,2.818893,45.8293,-1.136516,43.58537,-2.818898,45.8293,3.190695,47.78835,-3.190702,47.78835,2.818893,45.8293,1.280792E-11,43.58537,1.136516,43.58537,-1.136516,43.58537,-2.818898,45.8293,3.190695,47.78835,-3.190702,47.78835,-2.393024,35.83188,-3.190702,39.3377,-1.136516,35.83188,1.290346E-11,35.83188,1.136516,35.83188,2.393024,35.83188,3.190695,39.3377,-1.136516,35.83188,-3.190702,39.3377,-2.393024,35.83188,1.290346E-11,35.83188,1.136516,35.83188,2.393024,35.83188,3.190695,39.3377,3.190702,17.85243,3.190702,11.48865,-3.190695,17.85243,-3.190695,11.48865,-3.190695,17.85243,3.190702,11.48865,3.190702,17.85243,-3.190695,11.48865,-3.190695,36.64389,3.190702,36.64389,-1.5292,29.6962,2.299639,29.6962,-1.5292,29.6962,3.190702,36.64389,-3.190695,36.64389,2.299639,29.6962,1.136516,43.58537,-3.441691E-15,43.58537,2.818893,45.8293,3.190695,47.78835,-1.136516,43.58537,-2.818898,45.8293,-3.190702,47.78835,2.818893,45.8293,-3.441691E-15,43.58537,1.136516,43.58537,3.190695,47.78835,-1.136516,43.58537,-2.818898,45.8293,-3.190702,47.78835,2.522998,5.140959,7.350147,7.927915,5.713696,-0.385493,10.54085,2.401463,5.713696,-0.385493,7.350147,7.927915,2.522998,5.140959,10.54085,2.401463,-3.190695,-10.32937,-3.190695,-4.75546,3.190702,-10.32937,3.190702,-4.75546,3.190702,-10.32937,-3.190695,-4.75546,-3.190695,-10.32937,3.190702,-4.75546,-3.190702,10.32937,3.190695,10.32937,-3.190702,4.75546,3.190695,4.75546,-3.190702,4.75546,3.190695,10.32937,-3.190702,10.32937,3.190695,4.75546,-1.5292,32.926,-3.190695,40.5167,2.299639,32.926,3.190702,40.5167,2.299639,32.926,-3.190695,40.5167,-1.5292,32.926,3.190702,40.5167,2.299639,32.926,-1.5292,32.926,3.190702,40.5167,-3.190695,40.5167,3.190702,40.5167,-1.5292,32.926,2.299639,32.926,-3.190695,40.5167 + } + UVIndex: *558 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,41,43,40,44,46,45,47,45,46,46,44,48,49,48,44,44,45,49,50,46,48,47,46,50,51,47,50,52,51,50,53,52,50,54,52,53,45,55,49,49,55,56,55,57,56,58,56,57,59,55,45,47,59,45,51,59,47,60,62,61,61,63,60,62,60,64,64,65,62,61,62,65,60,66,64,60,63,66,63,67,66,67,68,66,68,69,66,68,70,69,71,61,65,71,65,72,73,71,72,72,74,73,71,75,61,75,63,61,75,67,63,76,78,77,79,77,78,80,77,79,81,77,80,82,81,80,83,85,84,84,86,83,84,87,86,84,88,87,88,89,87,90,92,91,93,91,92,94,96,95,95,97,94,98,100,99,101,99,100,102,104,103,103,105,102,106,108,107,109,107,108,110,112,111,111,113,110,114,116,115,117,115,116,118,120,119,119,121,118,122,124,123,125,123,124,126,125,124,127,126,124,128,127,124,129,131,130,130,132,129,132,133,129,133,134,129,134,135,129,136,138,137,139,137,138,140,142,141,141,143,140,144,146,145,147,145,146,148,150,149,149,151,148,152,154,153,155,153,154,156,158,157,157,159,156,160,162,161,163,161,162,164,166,165,165,167,164,168,170,169,171,169,170,172,174,173,173,175,172,176,178,177,179,177,178,180,179,178,181,179,180,182,181,180,183,185,184,184,186,183,186,187,183,186,188,187,188,189,187,190,192,191,193,191,192,194,196,195,195,197,194,198,200,199,201,199,200,202,201,200,203,202,200,204,202,203,205,207,206,206,208,205,208,209,205,209,210,205,209,211,210,212,214,213,215,213,214,216,213,215,217,213,216,218,213,217,219,221,220,220,222,219,220,223,222,220,224,223,220,225,224,226,228,227,229,227,228,230,232,231,231,233,230,234,236,235,237,235,236,238,240,239,239,241,238,242,244,243,245,243,244,246,243,245,247,246,245,248,247,245,249,251,250,250,252,249,250,253,252,253,254,252,254,255,252,256,258,257,259,257,258,260,262,261,261,263,260,264,266,265,267,265,266,268,270,269,269,271,268,272,274,273,275,273,274,276,278,277,277,279,276,280,282,281,283,281,282,284,286,285,285,287,284,288,290,289,291,289,290,292,294,293,293,295,292 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *186 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_palm, Model::RootNode + C: "OO",5484962301285079541,0 + + ;Geometry::, Model::Mesh tree_palm + C: "OO",5754168983736401786,5484962301285079541 + + ;Material::woodBark, Model::Mesh tree_palm + C: "OO",3046,5484962301285079541 + + ;Material::leafsGreen, Model::Mesh tree_palm + C: "OO",3030,5484962301285079541 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palm.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_palm.fbx.import new file mode 100644 index 0000000..015cbba --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palm.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dnft2o4f2tcvx" +path="res://.godot/imported/tree_palm.fbx-25d8c7e063ddc596b1c11567f07d367d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_palm.fbx" +dest_files=["res://.godot/imported/tree_palm.fbx-25d8c7e063ddc596b1c11567f07d367d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmBend.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmBend.fbx new file mode 100644 index 0000000..8dbbc59 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmBend.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 38 + Millisecond: 285 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_palmBend.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_palmBend.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5359598015688059235, "Model::tree_palmBend", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4749485073798812853, "Geometry::", "Mesh" { + Vertices: *984 { + a: -0.5841082,11.34503,-5.063818,0.3884167,11.34503,-5.063818,-0.8104383,12.79508,-4.058063,0.8104365,12.79508,-4.058063,-0.8104383,12.79508,-4.058063,0.3884167,11.34503,-5.063818,-0.5841082,11.34503,-5.063818,0.8104365,12.79508,-4.058063,0.35,13,-0.35,0.35,13,0.35,-0.35,13,-0.35,-0.35,13,0.35,0.2886752,13,-0.5,0.4330127,13,-0.25,-2.887646E-14,13,-0.5,-0.2886752,13,-0.5,-0.4330127,13,-0.25,-0.4330127,13,0.25,-0.5773503,13,0,0.4330127,13,0.25,0.5773503,13,-3.638433E-12,0.2886752,13,0.5,3.234163E-12,13,0.5,-0.2886752,13,0.5,0.8104365,12.79508,-4.058063,0.8104365,13.54023,-2.62366,-0.8104383,12.79508,-4.058063,-0.8104383,13.54023,-2.62366,-0.8104383,12.79508,-4.058063,0.8104365,13.54023,-2.62366,0.8104365,12.79508,-4.058063,-0.8104383,13.54023,-2.62366,-1.866937,13.54023,2.01369,-3.109167,12.79508,2.730892,-2.677375,13.54023,0.6099715,-3.919604,12.79508,1.327173,-2.677375,13.54023,0.6099715,-3.109167,12.79508,2.730892,-1.866937,13.54023,2.01369,-3.919604,12.79508,1.327173,3.919605,12.79508,1.327171,3.109167,12.79508,2.73089,2.677376,13.54023,0.60997,1.866938,13.54023,2.013689,2.677376,13.54023,0.60997,3.109167,12.79508,2.73089,3.919605,12.79508,1.327171,1.866938,13.54023,2.013689,0.5841082,11.55196,5.063818,-0.3884167,11.55196,5.063818,0.8104383,13.19689,4.058063,-0.8104365,13.19689,4.058063,0.8104383,13.19689,4.058063,-0.3884167,11.55196,5.063818,0.5841082,11.55196,5.063818,-0.8104365,13.19689,4.058063,0.8104365,13.54023,-1.207887,0.6078281,13,-0.5,-0.8104383,13.54023,-1.207887,0.2886752,13,-0.5,-2.887646E-14,13,-0.5,-0.2886752,13,-0.5,-0.6078281,13,-0.5,-0.8104383,13.54023,-1.207887,0.6078281,13,-0.5,0.8104365,13.54023,-1.207887,0.2886752,13,-0.5,-2.887646E-14,13,-0.5,-0.2886752,13,-0.5,-0.6078281,13,-0.5,2.677375,13.79911,-0.6099715,1.451279,13.79911,0.09791522,1.866937,13.79911,-2.01369,0.6408415,13.79911,-1.305804,1.866937,13.79911,-2.01369,1.451279,13.79911,0.09791522,2.677375,13.79911,-0.6099715,0.6408415,13.79911,-1.305804,-0.1290986,13,0.7763946,-0.6408415,13.54023,1.305804,-0.2886752,13,0.5,-0.4330127,13,0.25,-0.5773503,13,0,-0.7369268,13,-0.2763946,-1.451279,13.54023,-0.09791522,-0.2886752,13,0.5,-0.6408415,13.54023,1.305804,-0.1290986,13,0.7763946,-0.4330127,13,0.25,-0.5773503,13,0,-0.7369268,13,-0.2763946,-1.451279,13.54023,-0.09791522,3.919604,13.19689,-1.327173,2.677375,13.79911,-0.6099715,3.109167,13.19689,-2.730892,1.866937,13.79911,-2.01369,3.109167,13.19689,-2.730892,2.677375,13.79911,-0.6099715,3.919604,13.19689,-1.327173,1.866937,13.79911,-2.01369,-0.6408424,13.79911,-1.305802,-1.45128,13.79911,0.09791677,-1.866938,13.79911,-2.013689,-2.677376,13.79911,-0.60997,-1.866938,13.79911,-2.013689,-1.45128,13.79911,0.09791677,-0.6408424,13.79911,-1.305802,-2.677376,13.79911,-0.60997,4.09334,11.55196,-3.037761,4.579603,11.55196,-2.19553,3.109167,13.19689,-2.730892,3.919604,13.19689,-1.327173,3.109167,13.19689,-2.730892,4.579603,11.55196,-2.19553,4.09334,11.55196,-3.037761,3.919604,13.19689,-1.327173,2.677376,13.54023,0.60997,1.866938,13.54023,2.013689,1.45128,13.54023,-0.09791677,0.6408424,13.54023,1.305802,1.45128,13.54023,-0.09791677,1.866938,13.54023,2.013689,2.677376,13.54023,0.60997,0.6408424,13.54023,1.305802,-0.2886752,13,0.5,3.234163E-12,13,0.5,-0.7159989,13.42664,0.8779343,0.2886752,13,0.5,0.7160002,13.42664,0.8779353,-0.8104365,13.79911,1.207887,0.8104383,13.79911,1.207887,-0.7159989,13.42664,0.8779343,3.234163E-12,13,0.5,-0.2886752,13,0.5,0.2886752,13,0.5,0.7160002,13.42664,0.8779353,-0.8104365,13.79911,1.207887,0.8104383,13.79911,1.207887,-4.191186,11.55196,-2.868287,-3.109167,13.19689,-2.73089,-4.677449,11.55196,-2.026056,-3.919605,13.19689,-1.327171,-4.677449,11.55196,-2.026056,-3.109167,13.19689,-2.73089,-4.191186,11.55196,-2.868287,-3.919605,13.19689,-1.327171,0.8104365,13.54023,-2.62366,0.8104365,13.54023,-1.207887,-0.8104383,13.54023,-2.62366,-0.8104383,13.54023,-1.207887,-0.8104383,13.54023,-2.62366,0.8104365,13.54023,-1.207887,0.8104365,13.54023,-2.62366,-0.8104383,13.54023,-1.207887,3.919605,12.79508,1.327171,4.677449,11.34503,2.026056,3.109167,12.79508,2.73089,4.191186,11.34503,2.868287,3.109167,12.79508,2.73089,4.677449,11.34503,2.026056,3.919605,12.79508,1.327171,4.191186,11.34503,2.868287,1.45128,13.54023,-0.09791677,0.6408424,13.54023,1.305802,0.7369268,13,-0.2763946,0.5773503,13,-3.638433E-12,0.4330127,13,0.25,0.1290986,13,0.7763946,0.2886752,13,0.5,0.7369268,13,-0.2763946,0.6408424,13.54023,1.305802,1.45128,13.54023,-0.09791677,0.5773503,13,-3.638433E-12,0.4330127,13,0.25,0.1290986,13,0.7763946,0.2886752,13,0.5,0.8104383,13.79911,2.62366,-0.8104365,13.79911,2.62366,0.8104383,13.79911,1.207887,-0.8104365,13.79911,1.207887,0.8104383,13.79911,1.207887,-0.8104365,13.79911,2.62366,0.8104383,13.79911,2.62366,-0.8104365,13.79911,1.207887,0.8104383,13.19689,4.058063,-0.8104365,13.19689,4.058063,0.8104383,13.79911,2.62366,-0.8104365,13.79911,2.62366,0.8104383,13.79911,2.62366,-0.8104365,13.19689,4.058063,0.8104383,13.19689,4.058063,-0.8104365,13.79911,2.62366,-3.919604,12.79508,1.327173,-3.109167,12.79508,2.730892,-4.579603,11.34503,2.19553,-4.09334,11.34503,3.037761,-4.579603,11.34503,2.19553,-3.109167,12.79508,2.730892,-3.919604,12.79508,1.327173,-4.09334,11.34503,3.037761,-0.2886752,13,-0.5,-0.4330127,13,-0.25,-0.4023139,13.42664,-1.05904,-0.6408424,13.79911,-1.305802,-0.5773503,13,0,-1.118315,13.42664,0.1811066,-1.45128,13.79911,0.09791677,-0.4023139,13.42664,-1.05904,-0.4330127,13,-0.25,-0.2886752,13,-0.5,-0.6408424,13.79911,-1.305802,-0.5773503,13,0,-1.118315,13.42664,0.1811066,-1.45128,13.79911,0.09791677,1.451279,13.79911,0.09791522,1.118313,13.42664,0.1811061,0.6408415,13.79911,-1.305804,0.5773503,13,-3.638433E-12,0.4023142,13.42664,-1.059042,0.4330127,13,-0.25,0.2886752,13,-0.5,0.6408415,13.79911,-1.305804,1.118313,13.42664,0.1811061,1.451279,13.79911,0.09791522,0.5773503,13,-3.638433E-12,0.4023142,13.42664,-1.059042,0.4330127,13,-0.25,0.2886752,13,-0.5,0.2886752,13,-0.5,0.35,13,-0.35,0.4330127,13,-0.25,-0.35,13,-0.35,-2.887646E-14,13,-0.5,-0.2886752,13,-0.5,-0.4330127,13,-0.25,-0.35,13,0.35,-0.4330127,13,0.25,-0.5773503,13,0,0.35,13,0.35,0.4330127,13,0.25,0.5773503,13,-3.638433E-12,0.2886752,13,0.5,3.234163E-12,13,0.5,-0.2886752,13,0.5,-0.6408415,13.54023,1.305804,-1.866937,13.54023,2.01369,-1.451279,13.54023,-0.09791522,-2.677375,13.54023,0.6099715,-1.451279,13.54023,-0.09791522,-1.866937,13.54023,2.01369,-0.6408415,13.54023,1.305804,-2.677375,13.54023,0.6099715,-1.866938,13.79911,-2.013689,-2.677376,13.79911,-0.60997,-3.109167,13.19689,-2.73089,-3.919605,13.19689,-1.327171,-3.109167,13.19689,-2.73089,-2.677376,13.79911,-0.60997,-1.866938,13.79911,-2.013689,-3.919605,13.19689,-1.327171,0.5,0,0.5,0.5,0,-0.5,-0.5,0,0.5,-0.5,0,-0.5,-0.5,10,1.5,-1.5,10,1.5,0.35,13,0.35,-0.35,13,0.35,0.35,13,-0.35,-0.5,10,0.5,0.35,13,0.35,-0.5,10,1.5,-0.35,13,-0.35,-0.35,13,0.35,-1.5,10,0.5,-1.5,10,1.5,-1.5,10,0.5,-0.5,10,0.5,-0.35,13,-0.35,0.35,13,-0.35,0.655,1,-0.655,0.5,0,-0.5,0.655,1,0.655,0.5,0,0.5,-0.655,1,-0.655,-0.655,1,0.655,-0.5,0,-0.5,-0.5,0,0.5,-0.5,0,-0.5,0.5,0,-0.5,-0.655,1,-0.655,0.655,1,-0.655,0.5,0,0.5,-0.5,0,0.5,0.655,1,0.655,-0.655,1,0.655,-0.5,6,-0.5,-1.5,6,-0.5,-0.5,10,1.5,-1.5,10,1.5,0.655,1,0.655,-0.655,1,0.655,-0.5,6,-0.5,-1.5,6,-0.5,-1.5,6,-1.5,-0.5,6,-1.5,-1.5,10,0.5,-0.5,10,0.5,-0.5,6,-1.5,-0.5,6,-0.5,-0.5,10,0.5,-0.5,10,1.5,-1.5,6,-1.5,-1.5,6,-0.5,-0.655,1,-0.655,-0.655,1,0.655,-0.655,1,-0.655,0.655,1,-0.655,-1.5,6,-1.5,-0.5,6,-1.5,-0.5,6,-1.5,0.655,1,-0.655,-0.5,6,-0.5,0.655,1,0.655,-1.5,6,-1.5,-1.5,10,0.5,-1.5,6,-0.5,-1.5,10,1.5 + } + PolygonVertexIndex: *600 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,10,8,-13,13,12,-9,8,9,-14,14,10,-13,15,10,-15,16,10,-16,11,10,-17,17,11,-17,18,17,-17,9,19,-14,20,13,-20,21,19,-10,11,21,-10,22,21,-12,23,22,-12,17,23,-12,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,59,57,-59,60,59,-59,61,60,-59,62,61,-59,63,65,-65,64,66,-64,66,67,-64,67,68,-64,68,69,-64,70,72,-72,73,71,-73,74,76,-76,75,77,-75,78,80,-80,81,79,-81,82,79,-82,83,79,-83,84,79,-84,85,87,-87,86,88,-86,86,89,-89,86,90,-90,86,91,-91,92,94,-94,95,93,-95,96,98,-98,97,99,-97,100,102,-102,103,101,-103,104,106,-106,105,107,-105,108,110,-110,111,109,-111,112,114,-114,113,115,-113,116,118,-118,119,117,-119,120,122,-122,121,123,-121,124,126,-126,127,125,-127,128,127,-127,129,128,-127,130,128,-130,131,133,-133,132,134,-132,134,135,-132,135,136,-132,135,137,-137,138,140,-140,141,139,-141,142,144,-144,143,145,-143,146,148,-148,149,147,-149,150,152,-152,151,153,-151,154,156,-156,157,155,-157,158,160,-160,159,161,-159,162,164,-164,165,163,-165,166,163,-166,167,163,-167,168,167,-167,169,171,-171,170,172,-170,170,173,-173,170,174,-174,174,175,-174,176,178,-178,179,177,-179,180,182,-182,181,183,-181,184,186,-186,187,185,-187,188,190,-190,189,191,-189,192,194,-194,195,193,-195,196,198,-198,197,199,-197,200,202,-202,203,201,-203,204,201,-204,205,204,-204,206,205,-204,207,209,-209,208,210,-208,208,211,-211,211,212,-211,212,213,-211,214,216,-216,217,215,-217,218,217,-217,219,217,-219,220,219,-219,221,223,-223,222,224,-222,224,225,-222,224,226,-226,226,227,-226,228,230,-230,229,231,-229,231,232,-229,231,233,-233,231,234,-234,231,235,-235,235,236,-235,236,237,-235,238,229,-231,239,238,-231,230,240,-240,239,241,-239,241,235,-239,241,242,-236,242,243,-236,243,236,-236,244,246,-246,247,245,-247,248,250,-250,249,251,-249,252,254,-254,255,253,-255,256,258,-258,257,259,-257,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1800 { + a: 0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,0.5699252,-0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,-0.5699252,0.8216965,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,0,-0.8874055,0.4609897,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,-0.3992289,0.8874055,0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,-0.8874055,-0.2304949,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,0.3992289,0.8874055,0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,-0.3992289,-0.8874055,-0.2304949,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,0.5216469,0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,0,-0.5216469,-0.8531615,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,-0.7949512,-0.6066734,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,0.5253946,0.7949512,-0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,-0.5253946,-0.7949512,0.3033367,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,0.3352433,0.9220353,-0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,-0.3352433,-0.9220353,0.1935528,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,0.7388595,0.5216469,-0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808,-0.7388595,-0.5216469,0.4265808,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,0.6630908,-0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,0,-0.6630908,0.7485389,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,-0.7388595,0.5216469,-0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0.7388595,-0.5216469,0.4265808,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,0.7116101,0.5699252,0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.7116101,-0.5699252,-0.4108483,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,-0.5253946,0.7949512,-0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0.5253946,-0.7949512,0.3033367,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,0.9220353,0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,0,-0.9220353,-0.3871056,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,-0.7116101,0.5699252,0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.7116101,-0.5699252,-0.4108483,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,0.6482537,0.6630909,0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,-0.6630909,-0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,-0.6482537,0.6630909,0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0.6482537,-0.6630909,-0.3742695,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,-0.3352433,0.9220353,-0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0.3352433,-0.9220353,0.1935528,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.357936,0.9337461,0,0.357936,0.9337461,0,0.357936,0.9337461,0,0.357936,0.9337461,0,0.357936,0.9337461,0,0.357936,0.9337461,0.9621267,-0.2726026,0,0.9621267,-0.2726026,0,0.9621267,-0.2726026,0,0.9621267,-0.2726026,0,0.9621267,-0.2726026,0,0.9621267,-0.2726026,0,-0.9337461,0.357936,0,-0.9337461,0.357936,0,-0.9337461,0.357936,0,-0.9337461,0.357936,0,-0.9337461,0.357936,0,-0.9337461,0.357936,0,0,-0.2726026,-0.9621267,0,-0.2726026,-0.9621267,0,-0.2726026,-0.9621267,0,-0.2726026,-0.9621267,0,-0.2726026,-0.9621267,0,-0.2726026,-0.9621267,0.9881997,-0.1531709,0,0.9881997,-0.1531709,0,0.9881997,-0.1531709,0,0.9881997,-0.1531709,0,0.9881997,-0.1531709,0,0.9881997,-0.1531709,0,-0.9881997,-0.1531709,0,-0.9881997,-0.1531709,0,-0.9881997,-0.1531709,0,-0.9881997,-0.1531709,0,-0.9881997,-0.1531709,0,-0.9881997,-0.1531709,0,0,-0.1531709,-0.9881997,0,-0.1531709,-0.9881997,0,-0.1531709,-0.9881997,0,-0.1531709,-0.9881997,0,-0.1531709,-0.9881997,0,-0.1531709,-0.9881997,0,-0.1531709,0.9881997,0,-0.1531709,0.9881997,0,-0.1531709,0.9881997,0,-0.1531709,0.9881997,0,-0.1531709,0.9881997,0,-0.1531709,0.9881997,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,-0.4472136,0.8944272,0,0.225073,0.974342,0,0.225073,0.974342,0,0.225073,0.974342,0,0.225073,0.974342,0,0.225073,0.974342,0,0.225073,0.974342,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,0,0.4472136,-0.8944272,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.9860183,-0.1666371,0,-0.9860183,-0.1666371,0,-0.9860183,-0.1666371,0,-0.9860183,-0.1666371,0,-0.9860183,-0.1666371,0,-0.9860183,-0.1666371,0,0,-0.1666371,-0.9860183,0,-0.1666371,-0.9860183,0,-0.1666371,-0.9860183,0,-0.1666371,-0.9860183,0,-0.1666371,-0.9860183,0,-0.1666371,-0.9860183,0.974342,0.225073,0,0.974342,0.225073,0,0.974342,0.225073,0,0.974342,0.225073,0,0.974342,0.225073,0,0.974342,0.225073,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *656 { + a: 2.299639,25.33926,-1.5292,25.33926,3.190702,32.28695,-3.190695,32.28695,3.190702,32.28695,-1.5292,25.33926,2.299639,25.33926,-3.190695,32.28695,-1.377953,-1.377953,-1.377953,1.377953,1.377953,-1.377953,1.377953,1.377953,-1.136516,-1.968504,-1.704774,-0.984252,1.136868E-13,-1.968504,1.136516,-1.968504,1.704774,-0.984252,1.704774,0.984252,2.273033,0,-1.704774,0.984252,-2.273033,-1.432454E-11,-1.136516,1.968504,-1.273293E-11,1.968504,1.136516,1.968504,-3.190695,9.044314,-3.190695,15.4081,3.190702,9.044314,3.190702,15.4081,3.190702,9.044314,-3.190695,15.4081,-3.190695,9.044314,3.190702,15.4081,3.190702,15.4081,3.190702,9.044314,-3.190695,15.4081,-3.190695,9.044314,-3.190695,15.4081,3.190702,9.044314,3.190702,15.4081,-3.190695,9.044314,3.190702,9.044314,-3.190695,9.044314,3.190702,15.4081,-3.190695,15.4081,3.190702,15.4081,-3.190695,9.044314,3.190702,9.044314,-3.190695,15.4081,2.299639,28.40223,-1.5292,28.40223,3.190702,35.99293,-3.190695,35.99293,3.190702,35.99293,-1.5292,28.40223,2.299639,28.40223,-3.190695,35.99293,3.190695,36.1209,2.393024,32.61507,-3.190702,36.1209,1.136516,32.61507,-1.136696E-13,32.61507,-1.136516,32.61507,-2.393024,32.61507,-3.190702,36.1209,2.393024,32.61507,3.190695,36.1209,1.136516,32.61507,-1.136696E-13,32.61507,-1.136516,32.61507,-2.393024,32.61507,-10.54085,-2.401463,-5.713696,0.385493,-7.350147,-7.927915,-2.522998,-5.140959,-7.350147,-7.927915,-5.713696,0.385493,-10.54085,-2.401463,-2.522998,-5.140959,-2.393024,32.61507,-3.190702,36.1209,-1.136516,32.61507,6.330714E-12,32.61507,1.136516,32.61507,2.393024,32.61507,3.190695,36.1209,-1.136516,32.61507,-3.190702,36.1209,-2.393024,32.61507,6.330714E-12,32.61507,1.136516,32.61507,2.393024,32.61507,3.190695,36.1209,-3.190695,5.381551,-3.190695,11.50632,3.190702,5.381551,3.190702,11.50632,3.190702,5.381551,-3.190695,11.50632,-3.190695,5.381551,3.190702,11.50632,2.523001,-5.140953,5.7137,0.3854991,7.350151,-7.927909,10.54085,-2.401457,7.350151,-7.927909,5.7137,0.3854991,2.523001,-5.140953,10.54085,-2.401457,2.299639,28.40223,-1.5292,28.40223,3.190702,35.99293,-3.190695,35.99293,3.190702,35.99293,-1.5292,28.40223,2.299639,28.40223,-3.190695,35.99293,-10.54085,2.401457,-7.350151,7.927909,-5.7137,-0.3854991,-2.523001,5.140953,-5.7137,-0.3854991,-7.350151,7.927909,-10.54085,2.401457,-2.523001,5.140953,1.136516,39.61634,-3.869228E-14,39.61634,2.818893,41.86028,-1.136516,39.61634,-2.818898,41.86028,3.190695,43.81932,-3.190702,43.81932,2.818893,41.86028,-3.869228E-14,39.61634,1.136516,39.61634,-1.136516,39.61634,-2.818898,41.86028,3.190695,43.81932,-3.190702,43.81932,-1.5292,28.40223,-3.190695,35.99293,2.299639,28.40223,3.190702,35.99293,2.299639,28.40223,-3.190695,35.99293,-1.5292,28.40223,3.190702,35.99293,-3.190695,-10.32937,-3.190695,-4.75546,3.190702,-10.32937,3.190702,-4.75546,3.190702,-10.32937,-3.190695,-4.75546,-3.190695,-10.32937,3.190702,-4.75546,3.190702,32.28695,2.299639,25.33926,-3.190695,32.28695,-1.5292,25.33926,-3.190695,32.28695,2.299639,25.33926,3.190702,32.28695,-1.5292,25.33926,-3.190702,36.1209,3.190695,36.1209,-2.393024,32.61507,-1.136516,32.61507,-6.236567E-12,32.61507,2.393024,32.61507,1.136516,32.61507,-2.393024,32.61507,3.190695,36.1209,-3.190702,36.1209,-1.136516,32.61507,-6.236567E-12,32.61507,2.393024,32.61507,1.136516,32.61507,-3.190702,10.32937,3.190695,10.32937,-3.190702,4.75546,3.190695,4.75546,-3.190702,4.75546,3.190695,10.32937,-3.190702,10.32937,3.190695,4.75546,3.190702,5.381551,-3.190695,5.381551,3.190702,11.50632,-3.190695,11.50632,3.190702,11.50632,-3.190695,5.381551,3.190702,5.381551,-3.190695,11.50632,-3.190695,32.28695,3.190702,32.28695,-1.5292,25.33926,2.299639,25.33926,-1.5292,25.33926,3.190702,32.28695,-3.190695,32.28695,2.299639,25.33926,1.136516,39.61634,6.272205E-12,39.61634,2.818893,41.86028,3.190695,43.81932,-1.136516,39.61634,-2.818898,41.86028,-3.190702,43.81932,2.818893,41.86028,6.272205E-12,39.61634,1.136516,39.61634,3.190695,43.81932,-1.136516,39.61634,-2.818898,41.86028,-3.190702,43.81932,3.190695,43.81932,2.818893,41.86028,-3.190702,43.81932,1.136516,39.61634,-2.818898,41.86028,-6.385559E-12,39.61634,-1.136516,39.61634,-3.190702,43.81932,2.818893,41.86028,3.190695,43.81932,1.136516,39.61634,-2.818898,41.86028,-6.385559E-12,39.61634,-1.136516,39.61634,-1.136516,-1.968504,-1.377953,-1.377953,-1.704774,-0.984252,1.377953,-1.377953,1.136868E-13,-1.968504,1.136516,-1.968504,1.704774,-0.984252,1.377953,1.377953,1.704774,0.984252,2.273033,0,-1.377953,1.377953,-1.704774,0.984252,-2.273033,-1.432454E-11,-1.136516,1.968504,-1.273293E-11,1.968504,1.136516,1.968504,2.522998,5.140959,7.350147,7.927915,5.713696,-0.385493,10.54085,2.401463,5.713696,-0.385493,7.350147,7.927915,2.522998,5.140959,10.54085,2.401463,-3.190695,11.50632,3.190702,11.50632,-3.190695,5.381551,3.190702,5.381551,-3.190695,5.381551,3.190702,11.50632,-3.190695,11.50632,3.190702,5.381551,1.968504,1.968504,1.968504,-1.968504,-1.968504,1.968504,-1.968504,-1.968504,-1.968504,34.64786,-5.905512,34.64786,1.377953,47.29694,-1.377953,47.29694,1.377953,49.61834,-1.968504,37.34238,-1.377953,49.61834,-5.905512,37.34238,-1.377953,47.29694,1.377953,47.29694,1.968504,34.64786,5.905512,34.64786,5.905512,37.34238,1.968504,37.34238,1.377953,49.61834,-1.377953,49.61834,2.57874,4.285538,1.968504,0.3015176,-2.57874,4.285538,-1.968504,0.3015176,-2.57874,4.285538,2.57874,4.285538,-1.968504,0.3015176,1.968504,0.3015176,1.968504,0.3015176,-1.968504,0.3015176,2.57874,4.285538,-2.57874,4.285538,1.968504,0.3015176,-1.968504,0.3015176,2.57874,4.285538,-2.57874,4.285538,-1.968504,20.24786,-5.905512,20.24786,-1.968504,37.85469,-5.905512,37.85469,2.57874,3.255587,-2.57874,3.255587,-1.968504,23.45901,-5.905512,23.45901,5.905512,18.48718,1.968504,18.48718,5.905512,36.09401,1.968504,36.09401,5.905512,23.62205,1.968504,23.62205,-1.968504,39.37008,-5.905512,39.37008,-5.905512,24.27585,-1.968504,24.27585,-2.57874,4.311676,2.57874,4.311676,2.57874,4.311676,-2.57874,4.311676,5.905512,24.27585,1.968504,24.27585,5.905512,23.45901,2.57874,3.255587,1.968504,23.45901,-2.57874,3.255587,-5.905512,23.62205,1.968504,39.37008,-1.968504,23.62205,5.905512,39.37008 + } + UVIndex: *600 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,10,8,12,13,12,8,8,9,13,14,10,12,15,10,14,16,10,15,11,10,16,17,11,16,18,17,16,9,19,13,20,13,19,21,19,9,11,21,9,22,21,11,23,22,11,17,23,11,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,59,57,58,60,59,58,61,60,58,62,61,58,63,65,64,64,66,63,66,67,63,67,68,63,68,69,63,70,72,71,73,71,72,74,76,75,75,77,74,78,80,79,81,79,80,82,79,81,83,79,82,84,79,83,85,87,86,86,88,85,86,89,88,86,90,89,86,91,90,92,94,93,95,93,94,96,98,97,97,99,96,100,102,101,103,101,102,104,106,105,105,107,104,108,110,109,111,109,110,112,114,113,113,115,112,116,118,117,119,117,118,120,122,121,121,123,120,124,126,125,127,125,126,128,127,126,129,128,126,130,128,129,131,133,132,132,134,131,134,135,131,135,136,131,135,137,136,138,140,139,141,139,140,142,144,143,143,145,142,146,148,147,149,147,148,150,152,151,151,153,150,154,156,155,157,155,156,158,160,159,159,161,158,162,164,163,165,163,164,166,163,165,167,163,166,168,167,166,169,171,170,170,172,169,170,173,172,170,174,173,174,175,173,176,178,177,179,177,178,180,182,181,181,183,180,184,186,185,187,185,186,188,190,189,189,191,188,192,194,193,195,193,194,196,198,197,197,199,196,200,202,201,203,201,202,204,201,203,205,204,203,206,205,203,207,209,208,208,210,207,208,211,210,211,212,210,212,213,210,214,216,215,217,215,216,218,217,216,219,217,218,220,219,218,221,223,222,222,224,221,224,225,221,224,226,225,226,227,225,228,230,229,229,231,228,231,232,228,231,233,232,231,234,233,231,235,234,235,236,234,236,237,234,238,229,230,239,238,230,230,240,239,239,241,238,241,235,238,241,242,235,242,243,235,243,236,235,244,246,245,247,245,246,248,250,249,249,251,248,252,254,253,255,253,254,256,258,257,257,259,256,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *200 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_palmBend, Model::RootNode + C: "OO",5359598015688059235,0 + + ;Geometry::, Model::Mesh tree_palmBend + C: "OO",4749485073798812853,5359598015688059235 + + ;Material::leafsGreen, Model::Mesh tree_palmBend + C: "OO",3030,5359598015688059235 + + ;Material::woodBark, Model::Mesh tree_palmBend + C: "OO",3046,5359598015688059235 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmBend.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmBend.fbx.import new file mode 100644 index 0000000..0851311 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmBend.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cfldno3k8x4lu" +path="res://.godot/imported/tree_palmBend.fbx-71a059c7fa8570957bc89b7c8f10333d.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_palmBend.fbx" +dest_files=["res://.godot/imported/tree_palmBend.fbx-71a059c7fa8570957bc89b7c8f10333d.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedShort.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedShort.fbx new file mode 100644 index 0000000..691644f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedShort.fbx @@ -0,0 +1,503 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 38 + Millisecond: 436 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_palmDetailedShort.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_palmDetailedShort.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5324074938911296421, "Model::tree_palmDetailedShort", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4806570766811655831, "Geometry::", "Mesh" { + Vertices: *216 { + a: 0.8471444,0.5072599,-0.8471447,0.7285445,8.014827E-31,-0.7285445,0.8471444,0.5072599,0.8471447,0.7285445,8.014827E-31,0.7285445,-0.3765083,9.481858,-0.4021794,-0.3765083,9.481858,0.3508373,0.555797,6.594379,0.2360864,0.555797,6.594379,1.201492,0.3765083,9.481858,-0.4021794,0.3765083,9.481858,0.3508373,-0.3765083,9.481858,-0.4021794,-0.3765083,9.481858,0.3508373,-0.8471447,0.5072599,-0.8471447,0.8471444,0.5072599,-0.8471447,-0.6523014,2.71189,0.1516987,0.6523014,2.71189,0.1516987,-0.8471447,0.5072599,-0.8471447,-0.6523014,2.71189,0.1516987,-0.8471447,0.5072599,0.8471447,-0.6523014,2.71189,1.456301,0.7285445,8.014827E-31,0.7285445,0.7285445,8.014827E-31,-0.7285445,-0.7285445,8.014827E-31,0.7285445,-0.7285445,8.014827E-31,-0.7285445,-0.8471447,0.5072599,-0.8471447,-0.8471447,0.5072599,0.8471447,-0.7285445,8.014827E-31,-0.7285445,-0.7285445,8.014827E-31,0.7285445,0.6523014,2.71189,0.1516987,0.6523014,2.71189,1.456301,1.521203,6.594379,0.2360864,1.521203,6.594379,1.201492,0.6523014,2.71189,1.456301,-0.6523014,2.71189,1.456301,1.521203,6.594379,1.201492,0.555797,6.594379,1.201492,0.8471444,0.5072599,0.8471447,-0.8471447,0.5072599,0.8471447,0.6523014,2.71189,1.456301,-0.6523014,2.71189,1.456301,-0.6523014,2.71189,0.1516987,0.6523014,2.71189,0.1516987,0.555797,6.594379,0.2360864,1.521203,6.594379,0.2360864,-0.7285445,8.014827E-31,-0.7285445,0.7285445,8.014827E-31,-0.7285445,-0.8471447,0.5072599,-0.8471447,0.8471444,0.5072599,-0.8471447,1.521203,6.594379,1.201492,0.555797,6.594379,1.201492,0.3765083,9.481858,0.3508373,-0.3765083,9.481858,0.3508373,-0.6523014,2.71189,0.1516987,0.555797,6.594379,0.2360864,-0.6523014,2.71189,1.456301,0.555797,6.594379,1.201492,0.555797,6.594379,0.2360864,1.521203,6.594379,0.2360864,-0.3765083,9.481858,-0.4021794,0.3765083,9.481858,-0.4021794,0.7285445,8.014827E-31,0.7285445,-0.7285445,8.014827E-31,0.7285445,0.8471444,0.5072599,0.8471447,-0.8471447,0.5072599,0.8471447,0.8471444,0.5072599,-0.8471447,0.8471444,0.5072599,0.8471447,0.6523014,2.71189,0.1516987,0.6523014,2.71189,1.456301,0.3765083,9.481858,-0.4021794,1.521203,6.594379,0.2360864,0.3765083,9.481858,0.3508373,1.521203,6.594379,1.201492 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: 0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.412686,-0.9108734,0,0.412686,-0.9108734,0,0.412686,-0.9108734,0,0.412686,-0.9108734,0,0.412686,-0.9108734,0,0.412686,-0.9108734,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,0,0.06548942,0.9978532,0,0.06548942,0.9978532,0,0.06548942,0.9978532,0,0.06548942,0.9978532,0,0.06548942,0.9978532,0,0.06548942,0.9978532,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0,0.2825933,0.9592398,0,0.2825933,0.9592398,0,0.2825933,0.9592398,0,0.2825933,0.9592398,0,0.2825933,0.9592398,0,0.2825933,0.9592398,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0.9296154,0.368531,0,0.9296154,0.368531,0,0.9296154,0.368531,0,0.9296154,0.368531,0,0.9296154,0.368531,0,0.9296154,0.368531,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 3.335215,2.703954,2.868285,0.653009,-3.335215,2.703954,-2.868285,0.653009,-1.583383,35.97979,1.381249,35.97979,0.9294741,24.03389,4.730285,24.03389,-1.482316,-1.583383,-1.482316,1.381249,1.482316,-1.583383,1.482316,1.381249,3.335215,0.442696,-3.335214,0.442696,2.568116,9.971622,-2.568116,9.971622,-3.335215,1.695713,0.5972391,10.40919,3.335215,1.695713,5.73347,10.40919,2.868285,2.868285,2.868285,-2.868285,-2.868285,2.868285,-2.868285,-2.868285,-3.335215,2.703956,3.335215,2.703956,-2.868285,0.6530104,2.868285,0.6530104,-0.5972391,10.97986,-5.73347,10.97986,-0.9294741,26.64337,-4.730285,26.64337,2.568116,10.27833,-2.568116,10.27833,5.988987,25.59661,2.188177,25.59661,3.335214,2.813219,-3.335215,2.813219,2.568116,11.8181,-2.568116,11.8181,2.568116,10.68719,-2.568116,10.68719,-2.188177,25.97619,-5.988987,25.97619,2.868285,0.6530103,-2.868285,0.6530103,3.335215,2.703956,-3.335214,2.703956,5.988987,23.56715,2.188177,23.56715,1.482316,35.41824,-1.482316,35.41824,0.5972391,9.431566,0.9294741,25.43986,5.73347,9.431566,4.730285,25.43986,-2.188177,25.14957,-5.988987,25.14957,1.482316,36.79202,-1.482316,36.79202,2.868285,0.6530104,-2.868285,0.6530104,3.335214,2.703956,-3.335215,2.703956,3.335215,1.695714,-3.335215,1.695714,-0.5972391,10.40919,-5.73347,10.40919,1.583383,34.15641,-0.9294741,21.92766,-1.381249,34.15641,-4.730285,21.92766 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 5035703950625263680, "Model::leafs", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-1.776576E-07,8.624943,-0.02567085 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4976714282717507732, "Geometry::", "Mesh" { + Vertices: *852 { + a: -2.731489,1.154973,0.8104381,-2.731489,1.154973,-0.8104367,-4.165891,0.6892583,0.8104381,-4.165891,0.6892583,-0.8104367,-5.171645,0,-0.3884169,-4.165891,0.6892583,-0.8104367,-5.171645,0.2421719,-0.3884169,-4.165891,1.192231,-0.8104367,0.8104367,1.937375,-2.731489,0.8104367,1.937375,-1.315715,-0.8104381,1.937375,-2.731489,-0.8104381,1.937375,-1.315715,0.8104367,1.154973,2.731489,0.8104367,1.154973,1.315715,-0.8104381,1.154973,2.731489,-0.8104381,1.154973,1.315715,0.8104367,1.937375,1.315715,0.8104367,1.937375,2.731489,-0.8104381,1.937375,1.315715,-0.8104381,1.937375,2.731489,-0.607828,0.8569158,0.607828,-0.607828,1.397145,0.607828,-0.8104381,1.154973,1.315715,-0.8104381,1.937375,1.315715,0.8104367,1.192231,-4.165892,-0.8104381,1.192231,-4.165892,0.3884169,0.2421719,-5.171645,-0.5841081,0.2421719,-5.171645,0.6078283,0.8569158,0.607828,0.6078283,0.8569158,-0.6078283,-0.607828,0.8569158,0.607828,-0.607828,0.8569158,-0.6078283,0.8104367,1.192231,4.165891,0.8104367,0.6892583,4.165891,0.5841084,0.2421719,5.171645,0.5841084,0,5.171645,0.6078283,1.397145,0.607828,0.6078283,0.8569158,0.607828,0.8104367,1.937375,1.315715,0.8104367,1.154973,1.315715,-0.5841081,0,-5.171645,-0.5841081,0.2421719,-5.171645,-0.8104381,0.6892583,-4.165892,-0.8104381,1.192231,-4.165892,-1.315715,1.154973,0.8104381,-1.315715,1.154973,-0.8104367,-2.731489,1.154973,0.8104381,-2.731489,1.154973,-0.8104367,0.8104367,1.937375,1.315715,-0.8104381,1.937375,1.315715,0.6078283,1.397145,0.607828,-0.607828,1.397145,0.607828,0.8104367,1.937375,2.731489,0.8104367,1.192231,4.165891,-0.8104381,1.937375,2.731489,-0.8104381,1.192231,4.165891,0.8104367,1.154973,1.315715,0.6078283,0.8569158,0.607828,-0.8104381,1.154973,1.315715,-0.607828,0.8569158,0.607828,0.8104367,0.6892583,4.165891,0.8104367,1.154973,2.731489,-0.8104381,0.6892583,4.165891,-0.8104381,1.154973,2.731489,-0.607828,1.397145,-0.6078283,0.6078283,1.397145,-0.6078283,-0.4254799,1.676574,-0.4254802,0.4254802,1.676574,-0.4254802,0.8104367,1.192231,4.165891,0.5841084,0.2421719,5.171645,-0.8104381,1.192231,4.165891,-0.3884165,0.2421719,5.171645,-0.8104381,0.6892583,-4.165892,-0.8104381,1.192231,-4.165892,-0.8104381,1.154973,-2.731489,-0.8104381,1.937375,-2.731489,-0.8104381,1.154973,-1.315715,-0.8104381,1.937375,-1.315715,0.8104367,1.154973,-1.315715,0.8104367,1.154973,-2.731489,-0.8104381,1.154973,-1.315715,-0.8104381,1.154973,-2.731489,0.8104367,1.192231,-4.165892,0.8104367,1.937375,-2.731489,-0.8104381,1.192231,-4.165892,-0.8104381,1.937375,-2.731489,-4.165891,0.6892583,0.8104381,-4.165891,0.6892583,-0.8104367,-5.171645,0,0.5841081,-5.171645,0,-0.3884169,4.165892,0.6892583,0.8104381,4.165892,0.6892583,-0.8104367,2.731489,1.154973,0.8104381,2.731489,1.154973,-0.8104367,0.6078283,0.8569158,-0.6078283,1.315715,1.154973,-0.8104367,0.6078283,1.397145,-0.6078283,1.315715,1.937375,-0.8104367,0.5841084,0,5.171645,-0.3884165,0,5.171645,0.5841084,0.2421719,5.171645,-0.3884165,0.2421719,5.171645,5.171645,0.2421719,-0.5841084,5.171645,0.2421719,0.3884165,4.165892,1.192231,-0.8104367,4.165892,1.192231,0.8104381,0.6078283,0.8569158,0.607828,0.6078283,1.397145,0.607828,1.315715,1.154973,0.8104381,1.315715,1.937375,0.8104381,4.165892,0.6892583,0.8104381,2.731489,1.154973,0.8104381,4.165892,1.192231,0.8104381,1.315715,1.154973,0.8104381,1.315715,1.937375,0.8104381,2.731489,1.937375,0.8104381,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,0.4254802,1.676574,-0.4254802,0.4254802,1.676574,0.4254799,0.4254802,1.676574,-0.4254802,0.4254802,1.676574,0.4254799,-0.4254799,1.676574,-0.4254802,-0.4254799,1.676574,0.4254799,-4.165891,1.192231,-0.8104367,-4.165891,1.192231,0.8104381,-5.171645,0.2421719,-0.3884169,-5.171645,0.2421719,0.5841081,-0.607828,0.8569158,0.607828,-0.607828,0.8569158,-0.6078283,-1.315715,1.154973,0.8104381,-1.315715,1.154973,-0.8104367,-0.607828,0.8569158,-0.6078283,-0.607828,1.397145,-0.6078283,-1.315715,1.154973,-0.8104367,-1.315715,1.937375,-0.8104367,0.8104367,1.937375,1.315715,0.8104367,1.154973,1.315715,0.8104367,1.937375,2.731489,0.8104367,1.154973,2.731489,0.8104367,1.192231,4.165891,0.8104367,0.6892583,4.165891,0.8104367,1.937375,-1.315715,0.8104367,1.154973,-1.315715,0.6078283,1.397145,-0.6078283,0.6078283,0.8569158,-0.6078283,0.8104367,1.937375,-1.315715,0.6078283,1.397145,-0.6078283,-0.8104381,1.937375,-1.315715,-0.607828,1.397145,-0.6078283,0.8104367,0.6892583,-4.165892,0.3884169,0,-5.171645,-0.8104381,0.6892583,-4.165892,-0.5841081,0,-5.171645,-0.8104381,1.154973,-1.315715,-0.8104381,1.937375,-1.315715,-0.607828,0.8569158,-0.6078283,-0.607828,1.397145,-0.6078283,-5.171645,0,0.5841081,-5.171645,0.2421719,0.5841081,-4.165891,0.6892583,0.8104381,-4.165891,1.192231,0.8104381,0.8104367,1.154973,-2.731489,0.8104367,0.6892583,-4.165892,-0.8104381,1.154973,-2.731489,-0.8104381,0.6892583,-4.165892,0.6078283,1.397145,0.607828,-0.607828,1.397145,0.607828,0.4254802,1.676574,0.4254799,-0.4254799,1.676574,0.4254799,-4.165891,0.6892583,-0.8104367,-2.731489,1.154973,-0.8104367,-4.165891,1.192231,-0.8104367,-1.315715,1.154973,-0.8104367,-1.315715,1.937375,-0.8104367,-2.731489,1.937375,-0.8104367,-5.171645,0,-0.3884169,-5.171645,0.2421719,-0.3884169,-5.171645,0,0.5841081,-5.171645,0.2421719,0.5841081,-0.607828,1.397145,-0.6078283,-0.607828,1.397145,0.607828,-1.315715,1.937375,-0.8104367,-1.315715,1.937375,0.8104381,-1.315715,1.937375,-0.8104367,-1.315715,1.937375,0.8104381,-2.731489,1.937375,-0.8104367,-2.731489,1.937375,0.8104381,0.3884169,0.2421719,-5.171645,0.3884169,0,-5.171645,0.8104367,1.192231,-4.165892,0.8104367,0.6892583,-4.165892,-0.607828,0.8569158,0.607828,-1.315715,1.154973,0.8104381,-0.607828,1.397145,0.607828,-1.315715,1.937375,0.8104381,-0.8104381,0.6892583,4.165891,-0.8104381,1.192231,4.165891,-0.3884165,0,5.171645,-0.3884165,0.2421719,5.171645,-1.315715,1.154973,0.8104381,-2.731489,1.154973,0.8104381,-1.315715,1.937375,0.8104381,-4.165891,1.192231,0.8104381,-2.731489,1.937375,0.8104381,-4.165891,0.6892583,0.8104381,0.8104367,1.154973,-1.315715,-0.8104381,1.154973,-1.315715,0.6078283,0.8569158,-0.6078283,-0.607828,0.8569158,-0.6078283,0.8104367,0.6892583,4.165891,-0.8104381,0.6892583,4.165891,0.5841084,0,5.171645,-0.3884165,0,5.171645,-0.607828,1.397145,-0.6078283,-0.4254799,1.676574,-0.4254802,-0.607828,1.397145,0.607828,-0.4254799,1.676574,0.4254799,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,-0.607828,1.397145,-0.6078283,-0.607828,1.397145,0.607828,0.8104367,1.192231,-4.165892,0.8104367,0.6892583,-4.165892,0.8104367,1.937375,-2.731489,0.8104367,1.154973,-2.731489,0.8104367,1.937375,-1.315715,0.8104367,1.154973,-1.315715,-0.5841081,0,-5.171645,0.3884169,0,-5.171645,-0.5841081,0.2421719,-5.171645,0.3884169,0.2421719,-5.171645,-0.8104381,1.154973,1.315715,-0.8104381,1.937375,1.315715,-0.8104381,1.154973,2.731489,-0.8104381,1.937375,2.731489,-0.8104381,0.6892583,4.165891,-0.8104381,1.192231,4.165891,-2.731489,1.937375,-0.8104367,-2.731489,1.937375,0.8104381,-4.165891,1.192231,-0.8104367,-4.165891,1.192231,0.8104381,5.171645,0,0.3884165,4.165892,0.6892583,0.8104381,5.171645,0.2421719,0.3884165,4.165892,1.192231,0.8104381,1.315715,1.937375,-0.8104367,1.315715,1.937375,0.8104381,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,1.315715,1.154973,-0.8104367,2.731489,1.154973,-0.8104367,1.315715,1.937375,-0.8104367,4.165892,1.192231,-0.8104367,2.731489,1.937375,-0.8104367,4.165892,0.6892583,-0.8104367,2.731489,1.154973,0.8104381,2.731489,1.154973,-0.8104367,1.315715,1.154973,0.8104381,1.315715,1.154973,-0.8104367,5.171645,0,0.3884165,5.171645,0,-0.5841084,4.165892,0.6892583,0.8104381,4.165892,0.6892583,-0.8104367,5.171645,0.2421719,-0.5841084,5.171645,0,-0.5841084,5.171645,0.2421719,0.3884165,5.171645,0,0.3884165,5.171645,0,-0.5841084,5.171645,0.2421719,-0.5841084,4.165892,0.6892583,-0.8104367,4.165892,1.192231,-0.8104367,4.165892,1.192231,-0.8104367,4.165892,1.192231,0.8104381,2.731489,1.937375,-0.8104367,2.731489,1.937375,0.8104381,2.731489,1.937375,-0.8104367,2.731489,1.937375,0.8104381,1.315715,1.937375,-0.8104367,1.315715,1.937375,0.8104381,1.315715,1.154973,0.8104381,1.315715,1.154973,-0.8104367,0.6078283,0.8569158,0.607828,0.6078283,0.8569158,-0.6078283 + } + PolygonVertexIndex: *450 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,113,-113,115,114,-113,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,139,-139,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,173,-173,175,174,-173,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,203,-203,201,203,-206,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,225,-225,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,235,-235,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,253,-253,251,253,-256,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1350 { + a: 0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *568 { + a: -3.190701,-8.824106,3.190696,-8.824106,-3.190701,-14.76155,3.190696,-14.76155,18.18327,0,13.88914,2.713615,18.18327,0.9534324,13.88914,4.693821,-3.190696,-10.75389,-3.190696,-5.179981,3.190701,-10.75389,3.190701,-5.179981,3.190696,10.75389,3.190696,5.179979,-3.190701,10.75389,-3.190701,5.179979,-3.190696,5.179979,-3.190696,10.75389,3.190701,5.179979,3.190701,10.75389,2.959129,3.373684,2.959129,5.500572,5.857993,4.547139,5.857993,7.62746,-3.190696,-8.699576,3.190701,-8.699576,-1.5292,-14.14654,2.299638,-14.14654,2.393025,2.393023,2.393025,-2.393025,-2.393023,2.393023,-2.393023,-2.393025,-15.30051,4.693821,-15.30051,2.713615,-19.35919,0.9534324,-19.35919,0,-2.959126,5.500572,-2.959126,3.373684,-5.857988,7.62746,-5.857988,4.547139,-19.35918,0,-19.35918,0.9534324,-15.3005,2.713615,-15.3005,4.693821,-5.179979,3.190701,-5.179979,-3.190696,-10.75389,3.190701,-10.75389,-3.190696,-3.190696,8.745208,3.190701,8.745208,-2.393025,5.239388,2.393023,5.239388,3.190696,-6.026881,3.190696,-12.39066,-3.190701,-6.026881,-3.190701,-12.39066,3.190696,6.538601,2.393025,3.514677,-3.190701,6.538601,-2.393023,3.514677,-3.190696,-14.76155,-3.190696,-8.824106,3.190701,-14.76155,3.190701,-8.824106,2.393023,3.298699,-2.393025,3.298699,1.675118,4.612336,-1.675119,4.612336,3.190696,-8.699578,2.299639,-14.14655,-3.190701,-8.699578,-1.529199,-14.14655,-16.40115,2.713615,-16.40115,4.693821,-10.75389,4.547139,-10.75389,7.62746,-5.179981,4.547139,-5.179981,7.62746,3.190696,-5.179981,3.190696,-10.75389,-3.190701,-5.179981,-3.190701,-10.75389,-3.190696,-12.39066,-3.190696,-6.026882,3.190701,-12.39066,3.190701,-6.026882,-3.190701,-11.995,3.190696,-11.995,-2.299638,-16.79528,1.5292,-16.79528,3.190701,-14.76156,-3.190696,-14.76156,3.190701,-8.824107,-3.190696,-8.824107,-2.959127,3.373684,-5.857989,4.547139,-2.959127,5.500572,-5.857989,7.62746,2.299639,0,-1.529199,0,2.299639,0.9534324,-1.529199,0.9534324,2.299639,-14.14654,-1.529199,-14.14654,3.190696,-8.699576,-3.190701,-8.699576,2.95913,3.373684,2.95913,5.500572,5.857995,4.547139,5.857995,7.62746,16.40115,2.713615,10.75389,4.547139,16.40115,4.693821,5.179981,4.547139,5.179981,7.62746,10.75389,7.62746,2.393025,3.298699,-2.393023,3.298699,1.675119,4.612336,-1.675118,4.612336,-1.675119,-1.675119,-1.675119,1.675118,1.675118,-1.675119,1.675118,1.675118,-3.190696,-8.699578,3.190701,-8.699578,-1.5292,-14.14655,2.299638,-14.14655,2.393023,3.514677,-2.393025,3.514677,3.190701,6.538601,-3.190696,6.538601,2.959126,3.373684,2.959126,5.500572,5.857988,4.547139,5.857988,7.62746,-5.179979,7.62746,-5.179979,4.547139,-10.75389,7.62746,-10.75389,4.547139,-16.40114,4.693821,-16.40114,2.713615,5.857989,7.62746,5.857989,4.547139,2.959127,5.500572,2.959127,3.373684,3.190696,8.745209,2.393025,5.239388,-3.190701,8.745209,-2.393023,5.239388,3.190696,-11.995,1.5292,-16.79528,-3.190701,-11.995,-2.299638,-16.79528,-5.857995,4.547139,-5.857995,7.62746,-2.95913,3.373684,-2.95913,5.500572,-19.35918,-1.241583E-15,-19.35918,0.9534324,-15.3005,2.713615,-15.3005,4.693821,3.190696,-8.824107,3.190696,-14.76156,-3.190701,-8.824107,-3.190701,-14.76156,2.393025,3.2987,-2.393023,3.2987,1.675119,4.612337,-1.675118,4.612337,16.40114,2.713615,10.75389,4.547139,16.40114,4.693821,5.179979,4.547139,5.179979,7.62746,10.75389,7.62746,-1.5292,0,-1.5292,0.9534324,2.299638,0,2.299638,0.9534324,2.393025,5.239388,-2.393023,5.239388,3.190696,8.745208,-3.190701,8.745208,5.179979,-3.190696,5.179979,3.190701,10.75389,-3.190696,10.75389,3.190701,18.18327,0.9534324,18.18327,6.494096E-15,13.88914,4.693821,13.88914,2.713615,-2.959129,3.373684,-5.857993,4.547139,-2.959129,5.500572,-5.857993,7.62746,13.88912,2.713615,13.88912,4.693821,18.18325,0,18.18325,0.9534324,-5.179979,4.547139,-10.75389,4.547139,-5.179979,7.62746,-16.40114,4.693821,-10.75389,7.62746,-16.40114,2.713615,-3.190696,6.538603,3.190701,6.538603,-2.393025,3.514678,2.393023,3.514678,-3.190696,-11.995,3.190701,-11.995,-2.299639,-16.79528,1.529199,-16.79528,-2.393025,3.2987,-1.675119,4.612337,2.393023,3.2987,1.675118,4.612337,-2.393025,-2.393025,-2.393025,2.393023,2.393023,-2.393025,2.393023,2.393023,16.40115,4.693821,16.40115,2.713615,10.75389,7.62746,10.75389,4.547139,5.179981,7.62746,5.179981,4.547139,2.299638,0,-1.5292,0,2.299638,0.9534324,-1.5292,0.9534324,5.179979,4.547139,5.179979,7.62746,10.75389,4.547139,10.75389,7.62746,16.40114,2.713615,16.40114,4.693821,-3.190696,-6.026881,3.190701,-6.026881,-3.190696,-12.39066,3.190701,-12.39066,18.18325,0,13.88912,2.713615,18.18325,0.9534324,13.88912,4.693821,-3.190696,8.745209,3.190701,8.745209,-2.393025,5.239388,2.393023,5.239388,-5.179981,4.547139,-10.75389,4.547139,-5.179981,7.62746,-16.40115,4.693821,-10.75389,7.62746,-16.40115,2.713615,10.75389,3.190701,10.75389,-3.190696,5.179981,3.190701,5.179981,-3.190696,1.529199,-16.79528,-2.299639,-16.79528,3.190701,-11.995,-3.190696,-11.995,2.299639,0.9534324,2.299639,0,-1.529199,0.9534324,-1.529199,0,-19.35919,-1.24158E-15,-19.35919,0.9534324,-15.30051,2.713615,-15.30051,4.693821,3.190696,-12.39066,-3.190701,-12.39066,3.190696,-6.026882,-3.190701,-6.026882,-10.75389,-3.190696,-10.75389,3.190701,-5.179981,-3.190696,-5.179981,3.190701,-3.190701,6.538603,3.190696,6.538603,-2.393023,3.514678,2.393025,3.514678 + } + UVIndex: *450 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,113,112,115,114,112,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,139,138,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,173,172,175,174,172,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,203,202,201,203,205,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,225,224,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,235,234,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,253,252,251,253,255,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *150 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4802333130616600163, "Model::leafs", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-1.776574E-07,8.624943,-0.02567085 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-45,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",0.9999999,1.35,0.9999999 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4948388144942833768, "Geometry::", "Mesh" { + Vertices: *852 { + a: -2.731489,1.154973,0.8104381,-2.731489,1.154973,-0.8104367,-4.165891,0.6892583,0.8104381,-4.165891,0.6892583,-0.8104367,-5.171645,0,-0.3884169,-4.165891,0.6892583,-0.8104367,-5.171645,0.2421719,-0.3884169,-4.165891,1.192231,-0.8104367,0.8104367,1.937375,-2.731489,0.8104367,1.937375,-1.315715,-0.8104381,1.937375,-2.731489,-0.8104381,1.937375,-1.315715,0.8104367,1.154973,2.731489,0.8104367,1.154973,1.315715,-0.8104381,1.154973,2.731489,-0.8104381,1.154973,1.315715,0.8104367,1.937375,1.315715,0.8104367,1.937375,2.731489,-0.8104381,1.937375,1.315715,-0.8104381,1.937375,2.731489,-0.607828,0.8569158,0.607828,-0.607828,1.397145,0.607828,-0.8104381,1.154973,1.315715,-0.8104381,1.937375,1.315715,0.8104367,1.192231,-4.165892,-0.8104381,1.192231,-4.165892,0.3884169,0.2421719,-5.171645,-0.5841081,0.2421719,-5.171645,0.6078283,0.8569158,0.607828,0.6078283,0.8569158,-0.6078283,-0.607828,0.8569158,0.607828,-0.607828,0.8569158,-0.6078283,0.8104367,1.192231,4.165891,0.8104367,0.6892583,4.165891,0.5841084,0.2421719,5.171645,0.5841084,0,5.171645,0.6078283,1.397145,0.607828,0.6078283,0.8569158,0.607828,0.8104367,1.937375,1.315715,0.8104367,1.154973,1.315715,-0.5841081,0,-5.171645,-0.5841081,0.2421719,-5.171645,-0.8104381,0.6892583,-4.165892,-0.8104381,1.192231,-4.165892,-1.315715,1.154973,0.8104381,-1.315715,1.154973,-0.8104367,-2.731489,1.154973,0.8104381,-2.731489,1.154973,-0.8104367,0.8104367,1.937375,1.315715,-0.8104381,1.937375,1.315715,0.6078283,1.397145,0.607828,-0.607828,1.397145,0.607828,0.8104367,1.192231,4.165891,-0.8104381,1.192231,4.165891,0.8104367,1.937375,2.731489,-0.8104381,1.937375,2.731489,0.8104367,1.154973,1.315715,0.6078283,0.8569158,0.607828,-0.8104381,1.154973,1.315715,-0.607828,0.8569158,0.607828,0.8104367,0.6892583,4.165891,0.8104367,1.154973,2.731489,-0.8104381,0.6892583,4.165891,-0.8104381,1.154973,2.731489,-0.607828,1.397145,-0.6078283,0.6078283,1.397145,-0.6078283,-0.4254799,1.676574,-0.4254802,0.4254802,1.676574,-0.4254802,0.8104367,1.192231,4.165891,0.5841084,0.2421719,5.171645,-0.8104381,1.192231,4.165891,-0.3884165,0.2421719,5.171645,-0.8104381,0.6892583,-4.165892,-0.8104381,1.192231,-4.165892,-0.8104381,1.154973,-2.731489,-0.8104381,1.937375,-2.731489,-0.8104381,1.154973,-1.315715,-0.8104381,1.937375,-1.315715,0.8104367,1.154973,-1.315715,0.8104367,1.154973,-2.731489,-0.8104381,1.154973,-1.315715,-0.8104381,1.154973,-2.731489,0.8104367,1.192231,-4.165892,0.8104367,1.937375,-2.731489,-0.8104381,1.192231,-4.165892,-0.8104381,1.937375,-2.731489,-4.165891,0.6892583,0.8104381,-4.165891,0.6892583,-0.8104367,-5.171645,0,0.5841081,-5.171645,0,-0.3884169,4.165892,0.6892583,0.8104381,4.165892,0.6892583,-0.8104367,2.731489,1.154973,0.8104381,2.731489,1.154973,-0.8104367,0.6078283,0.8569158,-0.6078283,1.315715,1.154973,-0.8104367,0.6078283,1.397145,-0.6078283,1.315715,1.937375,-0.8104367,0.5841084,0,5.171645,-0.3884165,0,5.171645,0.5841084,0.2421719,5.171645,-0.3884165,0.2421719,5.171645,5.171645,0.2421719,-0.5841084,5.171645,0.2421719,0.3884165,4.165892,1.192231,-0.8104367,4.165892,1.192231,0.8104381,0.6078283,0.8569158,0.607828,0.6078283,1.397145,0.607828,1.315715,1.154973,0.8104381,1.315715,1.937375,0.8104381,4.165892,0.6892583,0.8104381,2.731489,1.154973,0.8104381,4.165892,1.192231,0.8104381,1.315715,1.154973,0.8104381,1.315715,1.937375,0.8104381,2.731489,1.937375,0.8104381,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,0.4254802,1.676574,-0.4254802,0.4254802,1.676574,0.4254799,0.4254802,1.676574,-0.4254802,0.4254802,1.676574,0.4254799,-0.4254799,1.676574,-0.4254802,-0.4254799,1.676574,0.4254799,-4.165891,1.192231,-0.8104367,-4.165891,1.192231,0.8104381,-5.171645,0.2421719,-0.3884169,-5.171645,0.2421719,0.5841081,-0.607828,0.8569158,0.607828,-0.607828,0.8569158,-0.6078283,-1.315715,1.154973,0.8104381,-1.315715,1.154973,-0.8104367,-0.607828,0.8569158,-0.6078283,-0.607828,1.397145,-0.6078283,-1.315715,1.154973,-0.8104367,-1.315715,1.937375,-0.8104367,0.8104367,1.937375,1.315715,0.8104367,1.154973,1.315715,0.8104367,1.937375,2.731489,0.8104367,1.154973,2.731489,0.8104367,1.192231,4.165891,0.8104367,0.6892583,4.165891,0.8104367,1.937375,-1.315715,0.8104367,1.154973,-1.315715,0.6078283,1.397145,-0.6078283,0.6078283,0.8569158,-0.6078283,0.8104367,1.937375,-1.315715,0.6078283,1.397145,-0.6078283,-0.8104381,1.937375,-1.315715,-0.607828,1.397145,-0.6078283,0.8104367,0.6892583,-4.165892,0.3884169,0,-5.171645,-0.8104381,0.6892583,-4.165892,-0.5841081,0,-5.171645,-0.8104381,1.154973,-1.315715,-0.8104381,1.937375,-1.315715,-0.607828,0.8569158,-0.6078283,-0.607828,1.397145,-0.6078283,-5.171645,0,0.5841081,-5.171645,0.2421719,0.5841081,-4.165891,0.6892583,0.8104381,-4.165891,1.192231,0.8104381,0.8104367,1.154973,-2.731489,0.8104367,0.6892583,-4.165892,-0.8104381,1.154973,-2.731489,-0.8104381,0.6892583,-4.165892,0.6078283,1.397145,0.607828,-0.607828,1.397145,0.607828,0.4254802,1.676574,0.4254799,-0.4254799,1.676574,0.4254799,-4.165891,0.6892583,-0.8104367,-2.731489,1.154973,-0.8104367,-4.165891,1.192231,-0.8104367,-1.315715,1.154973,-0.8104367,-1.315715,1.937375,-0.8104367,-2.731489,1.937375,-0.8104367,-5.171645,0,-0.3884169,-5.171645,0.2421719,-0.3884169,-5.171645,0,0.5841081,-5.171645,0.2421719,0.5841081,-0.607828,1.397145,-0.6078283,-0.607828,1.397145,0.607828,-1.315715,1.937375,-0.8104367,-1.315715,1.937375,0.8104381,-1.315715,1.937375,0.8104381,-2.731489,1.937375,0.8104381,-1.315715,1.937375,-0.8104367,-2.731489,1.937375,-0.8104367,0.3884169,0.2421719,-5.171645,0.3884169,0,-5.171645,0.8104367,1.192231,-4.165892,0.8104367,0.6892583,-4.165892,-0.607828,0.8569158,0.607828,-1.315715,1.154973,0.8104381,-0.607828,1.397145,0.607828,-1.315715,1.937375,0.8104381,-0.8104381,0.6892583,4.165891,-0.8104381,1.192231,4.165891,-0.3884165,0,5.171645,-0.3884165,0.2421719,5.171645,-1.315715,1.154973,0.8104381,-2.731489,1.154973,0.8104381,-1.315715,1.937375,0.8104381,-4.165891,1.192231,0.8104381,-2.731489,1.937375,0.8104381,-4.165891,0.6892583,0.8104381,0.8104367,1.154973,-1.315715,-0.8104381,1.154973,-1.315715,0.6078283,0.8569158,-0.6078283,-0.607828,0.8569158,-0.6078283,0.8104367,0.6892583,4.165891,-0.8104381,0.6892583,4.165891,0.5841084,0,5.171645,-0.3884165,0,5.171645,-0.607828,1.397145,-0.6078283,-0.4254799,1.676574,-0.4254802,-0.607828,1.397145,0.607828,-0.4254799,1.676574,0.4254799,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,-0.607828,1.397145,-0.6078283,-0.607828,1.397145,0.607828,0.8104367,1.192231,-4.165892,0.8104367,0.6892583,-4.165892,0.8104367,1.937375,-2.731489,0.8104367,1.154973,-2.731489,0.8104367,1.937375,-1.315715,0.8104367,1.154973,-1.315715,-0.5841081,0,-5.171645,0.3884169,0,-5.171645,-0.5841081,0.2421719,-5.171645,0.3884169,0.2421719,-5.171645,-0.8104381,1.154973,1.315715,-0.8104381,1.937375,1.315715,-0.8104381,1.154973,2.731489,-0.8104381,1.937375,2.731489,-0.8104381,0.6892583,4.165891,-0.8104381,1.192231,4.165891,-2.731489,1.937375,0.8104381,-4.165891,1.192231,0.8104381,-2.731489,1.937375,-0.8104367,-4.165891,1.192231,-0.8104367,5.171645,0,0.3884165,4.165892,0.6892583,0.8104381,5.171645,0.2421719,0.3884165,4.165892,1.192231,0.8104381,1.315715,1.937375,0.8104381,0.6078283,1.397145,0.607828,1.315715,1.937375,-0.8104367,0.6078283,1.397145,-0.6078283,1.315715,1.154973,-0.8104367,2.731489,1.154973,-0.8104367,1.315715,1.937375,-0.8104367,4.165892,1.192231,-0.8104367,2.731489,1.937375,-0.8104367,4.165892,0.6892583,-0.8104367,2.731489,1.154973,0.8104381,2.731489,1.154973,-0.8104367,1.315715,1.154973,0.8104381,1.315715,1.154973,-0.8104367,5.171645,0,-0.5841084,4.165892,0.6892583,-0.8104367,5.171645,0,0.3884165,4.165892,0.6892583,0.8104381,5.171645,0.2421719,-0.5841084,5.171645,0,-0.5841084,5.171645,0.2421719,0.3884165,5.171645,0,0.3884165,5.171645,0,-0.5841084,5.171645,0.2421719,-0.5841084,4.165892,0.6892583,-0.8104367,4.165892,1.192231,-0.8104367,4.165892,1.192231,0.8104381,2.731489,1.937375,0.8104381,4.165892,1.192231,-0.8104367,2.731489,1.937375,-0.8104367,2.731489,1.937375,0.8104381,1.315715,1.937375,0.8104381,2.731489,1.937375,-0.8104367,1.315715,1.937375,-0.8104367,1.315715,1.154973,0.8104381,1.315715,1.154973,-0.8104367,0.6078283,0.8569158,0.607828,0.6078283,0.8569158,-0.6078283 + } + PolygonVertexIndex: *450 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,113,-113,115,114,-113,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,139,-139,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,173,-173,175,174,-173,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,203,-203,201,203,-206,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,225,-225,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,235,-235,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,253,-253,251,253,-256,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1350 { + a: 0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *568 { + a: -3.190701,-8.824106,3.190696,-8.824106,-3.190701,-14.76155,3.190696,-14.76155,18.18327,0,13.88914,2.713615,18.18327,0.9534324,13.88914,4.693821,-3.190696,-10.75389,-3.190696,-5.179981,3.190701,-10.75389,3.190701,-5.179981,3.190696,10.75389,3.190696,5.179979,-3.190701,10.75389,-3.190701,5.179979,-3.190696,5.179979,-3.190696,10.75389,3.190701,5.179979,3.190701,10.75389,2.959129,3.373684,2.959129,5.500572,5.857993,4.547139,5.857993,7.62746,-3.190696,-8.699576,3.190701,-8.699576,-1.5292,-14.14654,2.299638,-14.14654,2.393025,2.393023,2.393025,-2.393025,-2.393023,2.393023,-2.393023,-2.393025,-15.30051,4.693821,-15.30051,2.713615,-19.35919,0.9534324,-19.35919,0,-2.959126,5.500572,-2.959126,3.373684,-5.857988,7.62746,-5.857988,4.547139,-19.35918,0,-19.35918,0.9534324,-15.3005,2.713615,-15.3005,4.693821,-5.179979,3.190701,-5.179979,-3.190696,-10.75389,3.190701,-10.75389,-3.190696,-3.190696,8.745208,3.190701,8.745208,-2.393025,5.239388,2.393023,5.239388,3.190696,-12.39066,-3.190701,-12.39066,3.190696,-6.026881,-3.190701,-6.026881,3.190696,6.538601,2.393025,3.514677,-3.190701,6.538601,-2.393023,3.514677,-3.190696,-14.76155,-3.190696,-8.824106,3.190701,-14.76155,3.190701,-8.824106,2.393023,3.298699,-2.393025,3.298699,1.675118,4.612336,-1.675119,4.612336,3.190696,-8.699578,2.299639,-14.14655,-3.190701,-8.699578,-1.529199,-14.14655,-16.40115,2.713615,-16.40115,4.693821,-10.75389,4.547139,-10.75389,7.62746,-5.179981,4.547139,-5.179981,7.62746,3.190696,-5.179981,3.190696,-10.75389,-3.190701,-5.179981,-3.190701,-10.75389,-3.190696,-12.39066,-3.190696,-6.026882,3.190701,-12.39066,3.190701,-6.026882,-3.190701,-11.995,3.190696,-11.995,-2.299638,-16.79528,1.5292,-16.79528,3.190701,-14.76156,-3.190696,-14.76156,3.190701,-8.824107,-3.190696,-8.824107,-2.959127,3.373684,-5.857989,4.547139,-2.959127,5.500572,-5.857989,7.62746,2.299639,0,-1.529199,0,2.299639,0.9534324,-1.529199,0.9534324,2.299639,-14.14654,-1.529199,-14.14654,3.190696,-8.699576,-3.190701,-8.699576,2.95913,3.373684,2.95913,5.500572,5.857995,4.547139,5.857995,7.62746,16.40115,2.713615,10.75389,4.547139,16.40115,4.693821,5.179981,4.547139,5.179981,7.62746,10.75389,7.62746,2.393025,3.298699,-2.393023,3.298699,1.675119,4.612336,-1.675118,4.612336,-1.675119,-1.675119,-1.675119,1.675118,1.675118,-1.675119,1.675118,1.675118,-3.190696,-8.699578,3.190701,-8.699578,-1.5292,-14.14655,2.299638,-14.14655,2.393023,3.514677,-2.393025,3.514677,3.190701,6.538601,-3.190696,6.538601,2.959126,3.373684,2.959126,5.500572,5.857988,4.547139,5.857988,7.62746,-5.179979,7.62746,-5.179979,4.547139,-10.75389,7.62746,-10.75389,4.547139,-16.40114,4.693821,-16.40114,2.713615,5.857989,7.62746,5.857989,4.547139,2.959127,5.500572,2.959127,3.373684,3.190696,8.745209,2.393025,5.239388,-3.190701,8.745209,-2.393023,5.239388,3.190696,-11.995,1.5292,-16.79528,-3.190701,-11.995,-2.299638,-16.79528,-5.857995,4.547139,-5.857995,7.62746,-2.95913,3.373684,-2.95913,5.500572,-19.35918,-1.241583E-15,-19.35918,0.9534324,-15.3005,2.713615,-15.3005,4.693821,3.190696,-8.824107,3.190696,-14.76156,-3.190701,-8.824107,-3.190701,-14.76156,2.393025,3.2987,-2.393023,3.2987,1.675119,4.612337,-1.675118,4.612337,16.40114,2.713615,10.75389,4.547139,16.40114,4.693821,5.179979,4.547139,5.179979,7.62746,10.75389,7.62746,-1.5292,0,-1.5292,0.9534324,2.299638,0,2.299638,0.9534324,2.393025,5.239388,-2.393023,5.239388,3.190696,8.745208,-3.190701,8.745208,5.179979,3.190701,10.75389,3.190701,5.179979,-3.190696,10.75389,-3.190696,18.18327,0.9534324,18.18327,6.494096E-15,13.88914,4.693821,13.88914,2.713615,-2.959129,3.373684,-5.857993,4.547139,-2.959129,5.500572,-5.857993,7.62746,13.88912,2.713615,13.88912,4.693821,18.18325,0,18.18325,0.9534324,-5.179979,4.547139,-10.75389,4.547139,-5.179979,7.62746,-16.40114,4.693821,-10.75389,7.62746,-16.40114,2.713615,-3.190696,6.538603,3.190701,6.538603,-2.393025,3.514678,2.393023,3.514678,-3.190696,-11.995,3.190701,-11.995,-2.299639,-16.79528,1.529199,-16.79528,-2.393025,3.2987,-1.675119,4.612337,2.393023,3.2987,1.675118,4.612337,-2.393025,-2.393025,-2.393025,2.393023,2.393023,-2.393025,2.393023,2.393023,16.40115,4.693821,16.40115,2.713615,10.75389,7.62746,10.75389,4.547139,5.179981,7.62746,5.179981,4.547139,2.299638,0,-1.5292,0,2.299638,0.9534324,-1.5292,0.9534324,5.179979,4.547139,5.179979,7.62746,10.75389,4.547139,10.75389,7.62746,16.40114,2.713615,16.40114,4.693821,3.190701,-6.026881,3.190701,-12.39066,-3.190696,-6.026881,-3.190696,-12.39066,18.18325,0,13.88912,2.713615,18.18325,0.9534324,13.88912,4.693821,3.190701,8.745209,2.393023,5.239388,-3.190696,8.745209,-2.393025,5.239388,-5.179981,4.547139,-10.75389,4.547139,-5.179981,7.62746,-16.40115,4.693821,-10.75389,7.62746,-16.40115,2.713615,10.75389,3.190701,10.75389,-3.190696,5.179981,3.190701,5.179981,-3.190696,-2.299639,-16.79528,-3.190696,-11.995,1.529199,-16.79528,3.190701,-11.995,2.299639,0.9534324,2.299639,0,-1.529199,0.9534324,-1.529199,0,-19.35919,-1.24158E-15,-19.35919,0.9534324,-15.30051,2.713615,-15.30051,4.693821,-3.190701,-12.39066,-3.190701,-6.026882,3.190696,-12.39066,3.190696,-6.026882,-10.75389,3.190701,-5.179981,3.190701,-10.75389,-3.190696,-5.179981,-3.190696,-3.190701,6.538603,3.190696,6.538603,-2.393023,3.514678,2.393025,3.514678 + } + UVIndex: *450 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,113,112,115,114,112,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,139,138,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,173,172,175,174,172,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,203,202,201,203,205,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,225,224,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,235,234,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,253,252,251,253,255,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *150 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_palmDetailedShort, Model::RootNode + C: "OO",5324074938911296421,0 + + ;Geometry::, Model::Mesh tree_palmDetailedShort + C: "OO",4806570766811655831,5324074938911296421 + + ;Material::woodBark, Model::Mesh tree_palmDetailedShort + C: "OO",3046,5324074938911296421 + + ;Model::Mesh leafs, Model::USING PARENT + C: "OO",5035703950625263680,5324074938911296421 + + ;Geometry::, Model::Mesh leafs + C: "OO",4976714282717507732,5035703950625263680 + + ;Material::leafsGreen, Model::Mesh leafs + C: "OO",3030,5035703950625263680 + + ;Model::Mesh leafs, Model::USING PARENT + C: "OO",4802333130616600163,5324074938911296421 + + ;Geometry::, Model::Mesh leafs + C: "OO",4948388144942833768,4802333130616600163 + + ;Material::leafsGreen, Model::Mesh leafs + C: "OO",3030,4802333130616600163 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedShort.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedShort.fbx.import new file mode 100644 index 0000000..1a991d0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedShort.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://do6jyaf3b5pnb" +path="res://.godot/imported/tree_palmDetailedShort.fbx-1e5a1e31c5fd094849dae46966af933a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedShort.fbx" +dest_files=["res://.godot/imported/tree_palmDetailedShort.fbx-1e5a1e31c5fd094849dae46966af933a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedTall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedTall.fbx new file mode 100644 index 0000000..fd009d0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedTall.fbx @@ -0,0 +1,503 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 38 + Millisecond: 589 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_palmDetailedTall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_palmDetailedTall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5049713903895682411, "Model::tree_palmDetailedTall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5248018606123666938, "Geometry::", "Mesh" { + Vertices: *216 { + a: 0.7285445,2.003707E-31,0.7285445,0.7285445,2.003707E-31,-0.7285445,-0.7285445,2.003707E-31,0.7285445,-0.7285445,2.003707E-31,-0.7285445,-0.482703,8.676815,0.2360864,0.482703,8.676815,0.2360864,-0.3765083,12.47613,-0.4021794,0.3765083,12.47613,-0.4021794,-0.6523014,3.568276,-0.6523014,0.6523014,3.568276,-0.6523014,-0.482703,8.676815,0.2360864,0.482703,8.676815,0.2360864,0.3765083,12.47613,-0.4021794,0.3765083,12.47613,0.3508373,-0.3765083,12.47613,-0.4021794,-0.3765083,12.47613,0.3508373,-0.6523014,3.568276,-0.6523014,-0.482703,8.676815,0.2360864,-0.6523014,3.568276,0.6523014,-0.482703,8.676815,1.201492,-0.3765083,12.47613,-0.4021794,-0.3765083,12.47613,0.3508373,-0.482703,8.676815,0.2360864,-0.482703,8.676815,1.201492,-0.8471447,0.6674472,-0.8471447,-0.6523014,3.568276,-0.6523014,-0.8471447,0.6674472,0.8471447,-0.6523014,3.568276,0.6523014,0.7285445,2.003707E-31,0.7285445,-0.7285445,2.003707E-31,0.7285445,0.8471444,0.6674472,0.8471447,-0.8471447,0.6674472,0.8471447,-0.7285445,2.003707E-31,-0.7285445,0.7285445,2.003707E-31,-0.7285445,-0.8471447,0.6674472,-0.8471447,0.8471444,0.6674472,-0.8471447,-0.8471447,0.6674472,-0.8471447,-0.8471447,0.6674472,0.8471447,-0.7285445,2.003707E-31,-0.7285445,-0.7285445,2.003707E-31,0.7285445,0.8471444,0.6674472,-0.8471447,0.7285445,2.003707E-31,-0.7285445,0.8471444,0.6674472,0.8471447,0.7285445,2.003707E-31,0.7285445,0.6523014,3.568276,0.6523014,-0.6523014,3.568276,0.6523014,0.482703,8.676815,1.201492,-0.482703,8.676815,1.201492,0.6523014,3.568276,-0.6523014,0.6523014,3.568276,0.6523014,0.482703,8.676815,0.2360864,0.482703,8.676815,1.201492,0.8471444,0.6674472,-0.8471447,0.8471444,0.6674472,0.8471447,0.6523014,3.568276,-0.6523014,0.6523014,3.568276,0.6523014,0.8471444,0.6674472,0.8471447,-0.8471447,0.6674472,0.8471447,0.6523014,3.568276,0.6523014,-0.6523014,3.568276,0.6523014,-0.8471447,0.6674472,-0.8471447,0.8471444,0.6674472,-0.8471447,-0.6523014,3.568276,-0.6523014,0.6523014,3.568276,-0.6523014,0.482703,8.676815,1.201492,-0.482703,8.676815,1.201492,0.3765083,12.47613,0.3508373,-0.3765083,12.47613,0.3508373,0.3765083,12.47613,-0.4021794,0.482703,8.676815,0.2360864,0.3765083,12.47613,0.3508373,0.482703,8.676815,1.201492 + } + PolygonVertexIndex: *108 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *324 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0.9994493,0.03318072,0,0.9994493,0.03318072,0,0.9994493,0.03318072,0,0.9994493,0.03318072,0,0.9994493,0.03318072,0,0.9994493,0.03318072,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *144 { + a: 2.868285,2.868285,2.868285,-2.868285,-2.868285,2.868285,-2.868285,-2.868285,1.900406,33.53462,-1.900405,33.53462,1.482316,48.70216,-1.482316,48.70216,2.568116,13.40061,-2.568116,13.40061,1.900406,33.81482,-1.900405,33.81482,-1.482316,-1.583383,-1.482316,1.381249,1.482316,-1.583383,1.482316,1.381249,-2.568116,13.95538,0.9294741,34.07882,2.568116,13.95538,4.730285,34.07882,-1.583383,49.05803,1.381249,49.05803,0.9294741,34.09425,4.730285,34.09425,-3.335215,2.398321,-2.568116,13.84464,3.335215,2.398321,2.568116,13.84464,2.868285,0.5018116,-2.868285,0.5018116,3.335214,3.170719,-3.335215,3.170719,2.868285,0.5018114,-2.868285,0.5018114,3.335215,3.170719,-3.335214,3.170719,-3.335215,3.170719,3.335215,3.170719,-2.868285,0.5018116,2.868285,0.5018116,3.335215,3.170718,2.868285,0.5018104,-3.335215,3.170718,-2.868285,0.5018104,2.568116,14.24235,-2.568116,14.24235,1.900405,34.4706,-1.900406,34.4706,2.568116,13.95538,-2.568116,13.95538,-0.9294741,34.07882,-4.730285,34.07882,3.335215,2.398321,-3.335215,2.398321,2.568116,13.84464,-2.568116,13.84464,3.335214,2.398321,-3.335215,2.398321,2.568116,13.84464,-2.568116,13.84464,3.335215,2.398321,-3.335214,2.398321,2.568116,13.84464,-2.568116,13.84464,1.900405,32.30185,-1.900406,32.30185,1.482316,47.63012,-1.482316,47.63012,1.583383,49.05803,-0.9294741,34.09425,-1.381249,49.05803,-4.730285,34.09425 + } + UVIndex: *108 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *36 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4956631098819574510, "Model::leafs", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-1.776574E-07,11.61921,-0.02567085 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,-45,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",0.9999999,1.35,0.9999999 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5632396904634173576, "Geometry::", "Mesh" { + Vertices: *852 { + a: -2.731489,1.154973,0.8104381,-2.731489,1.154973,-0.8104367,-4.165891,0.6892583,0.8104381,-4.165891,0.6892583,-0.8104367,-5.171645,0,-0.3884169,-4.165891,0.6892583,-0.8104367,-5.171645,0.2421719,-0.3884169,-4.165891,1.192231,-0.8104367,0.8104367,1.937375,-2.731489,0.8104367,1.937375,-1.315715,-0.8104381,1.937375,-2.731489,-0.8104381,1.937375,-1.315715,0.8104367,1.154973,2.731489,0.8104367,1.154973,1.315715,-0.8104381,1.154973,2.731489,-0.8104381,1.154973,1.315715,0.8104367,1.937375,2.731489,-0.8104381,1.937375,2.731489,0.8104367,1.937375,1.315715,-0.8104381,1.937375,1.315715,-0.607828,0.8569158,0.607828,-0.607828,1.397145,0.607828,-0.8104381,1.154973,1.315715,-0.8104381,1.937375,1.315715,0.8104367,1.192231,-4.165892,-0.8104381,1.192231,-4.165892,0.3884169,0.2421719,-5.171645,-0.5841081,0.2421719,-5.171645,0.6078283,0.8569158,-0.6078283,-0.607828,0.8569158,-0.6078283,0.6078283,0.8569158,0.607828,-0.607828,0.8569158,0.607828,0.8104367,1.192231,4.165891,0.8104367,0.6892583,4.165891,0.5841084,0.2421719,5.171645,0.5841084,0,5.171645,0.6078283,1.397145,0.607828,0.6078283,0.8569158,0.607828,0.8104367,1.937375,1.315715,0.8104367,1.154973,1.315715,-0.5841081,0,-5.171645,-0.5841081,0.2421719,-5.171645,-0.8104381,0.6892583,-4.165892,-0.8104381,1.192231,-4.165892,-1.315715,1.154973,0.8104381,-1.315715,1.154973,-0.8104367,-2.731489,1.154973,0.8104381,-2.731489,1.154973,-0.8104367,0.8104367,1.937375,1.315715,-0.8104381,1.937375,1.315715,0.6078283,1.397145,0.607828,-0.607828,1.397145,0.607828,0.8104367,1.192231,4.165891,-0.8104381,1.192231,4.165891,0.8104367,1.937375,2.731489,-0.8104381,1.937375,2.731489,0.8104367,1.154973,1.315715,0.6078283,0.8569158,0.607828,-0.8104381,1.154973,1.315715,-0.607828,0.8569158,0.607828,0.8104367,0.6892583,4.165891,0.8104367,1.154973,2.731489,-0.8104381,0.6892583,4.165891,-0.8104381,1.154973,2.731489,-0.607828,1.397145,-0.6078283,0.6078283,1.397145,-0.6078283,-0.4254799,1.676574,-0.4254802,0.4254802,1.676574,-0.4254802,0.8104367,1.192231,4.165891,0.5841084,0.2421719,5.171645,-0.8104381,1.192231,4.165891,-0.3884165,0.2421719,5.171645,-0.8104381,0.6892583,-4.165892,-0.8104381,1.192231,-4.165892,-0.8104381,1.154973,-2.731489,-0.8104381,1.937375,-2.731489,-0.8104381,1.154973,-1.315715,-0.8104381,1.937375,-1.315715,0.8104367,1.154973,-1.315715,0.8104367,1.154973,-2.731489,-0.8104381,1.154973,-1.315715,-0.8104381,1.154973,-2.731489,0.8104367,1.192231,-4.165892,0.8104367,1.937375,-2.731489,-0.8104381,1.192231,-4.165892,-0.8104381,1.937375,-2.731489,-4.165891,0.6892583,-0.8104367,-5.171645,0,-0.3884169,-4.165891,0.6892583,0.8104381,-5.171645,0,0.5841081,4.165892,0.6892583,0.8104381,4.165892,0.6892583,-0.8104367,2.731489,1.154973,0.8104381,2.731489,1.154973,-0.8104367,0.6078283,0.8569158,-0.6078283,1.315715,1.154973,-0.8104367,0.6078283,1.397145,-0.6078283,1.315715,1.937375,-0.8104367,0.5841084,0,5.171645,-0.3884165,0,5.171645,0.5841084,0.2421719,5.171645,-0.3884165,0.2421719,5.171645,5.171645,0.2421719,-0.5841084,5.171645,0.2421719,0.3884165,4.165892,1.192231,-0.8104367,4.165892,1.192231,0.8104381,0.6078283,0.8569158,0.607828,0.6078283,1.397145,0.607828,1.315715,1.154973,0.8104381,1.315715,1.937375,0.8104381,4.165892,0.6892583,0.8104381,2.731489,1.154973,0.8104381,4.165892,1.192231,0.8104381,1.315715,1.154973,0.8104381,1.315715,1.937375,0.8104381,2.731489,1.937375,0.8104381,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,0.4254802,1.676574,-0.4254802,0.4254802,1.676574,0.4254799,0.4254802,1.676574,-0.4254802,0.4254802,1.676574,0.4254799,-0.4254799,1.676574,-0.4254802,-0.4254799,1.676574,0.4254799,-4.165891,1.192231,-0.8104367,-4.165891,1.192231,0.8104381,-5.171645,0.2421719,-0.3884169,-5.171645,0.2421719,0.5841081,-0.607828,0.8569158,0.607828,-0.607828,0.8569158,-0.6078283,-1.315715,1.154973,0.8104381,-1.315715,1.154973,-0.8104367,-0.607828,0.8569158,-0.6078283,-0.607828,1.397145,-0.6078283,-1.315715,1.154973,-0.8104367,-1.315715,1.937375,-0.8104367,0.8104367,1.937375,1.315715,0.8104367,1.154973,1.315715,0.8104367,1.937375,2.731489,0.8104367,1.154973,2.731489,0.8104367,1.192231,4.165891,0.8104367,0.6892583,4.165891,0.8104367,1.937375,-1.315715,0.8104367,1.154973,-1.315715,0.6078283,1.397145,-0.6078283,0.6078283,0.8569158,-0.6078283,0.8104367,1.937375,-1.315715,0.6078283,1.397145,-0.6078283,-0.8104381,1.937375,-1.315715,-0.607828,1.397145,-0.6078283,0.8104367,0.6892583,-4.165892,0.3884169,0,-5.171645,-0.8104381,0.6892583,-4.165892,-0.5841081,0,-5.171645,-0.8104381,1.154973,-1.315715,-0.8104381,1.937375,-1.315715,-0.607828,0.8569158,-0.6078283,-0.607828,1.397145,-0.6078283,-5.171645,0,0.5841081,-5.171645,0.2421719,0.5841081,-4.165891,0.6892583,0.8104381,-4.165891,1.192231,0.8104381,0.8104367,1.154973,-2.731489,0.8104367,0.6892583,-4.165892,-0.8104381,1.154973,-2.731489,-0.8104381,0.6892583,-4.165892,0.6078283,1.397145,0.607828,-0.607828,1.397145,0.607828,0.4254802,1.676574,0.4254799,-0.4254799,1.676574,0.4254799,-4.165891,0.6892583,-0.8104367,-2.731489,1.154973,-0.8104367,-4.165891,1.192231,-0.8104367,-1.315715,1.154973,-0.8104367,-1.315715,1.937375,-0.8104367,-2.731489,1.937375,-0.8104367,-5.171645,0,-0.3884169,-5.171645,0.2421719,-0.3884169,-5.171645,0,0.5841081,-5.171645,0.2421719,0.5841081,-0.607828,1.397145,0.607828,-1.315715,1.937375,0.8104381,-0.607828,1.397145,-0.6078283,-1.315715,1.937375,-0.8104367,-1.315715,1.937375,0.8104381,-2.731489,1.937375,0.8104381,-1.315715,1.937375,-0.8104367,-2.731489,1.937375,-0.8104367,0.3884169,0.2421719,-5.171645,0.3884169,0,-5.171645,0.8104367,1.192231,-4.165892,0.8104367,0.6892583,-4.165892,-0.607828,0.8569158,0.607828,-1.315715,1.154973,0.8104381,-0.607828,1.397145,0.607828,-1.315715,1.937375,0.8104381,-0.8104381,0.6892583,4.165891,-0.8104381,1.192231,4.165891,-0.3884165,0,5.171645,-0.3884165,0.2421719,5.171645,-1.315715,1.154973,0.8104381,-2.731489,1.154973,0.8104381,-1.315715,1.937375,0.8104381,-4.165891,1.192231,0.8104381,-2.731489,1.937375,0.8104381,-4.165891,0.6892583,0.8104381,0.8104367,1.154973,-1.315715,-0.8104381,1.154973,-1.315715,0.6078283,0.8569158,-0.6078283,-0.607828,0.8569158,-0.6078283,0.8104367,0.6892583,4.165891,-0.8104381,0.6892583,4.165891,0.5841084,0,5.171645,-0.3884165,0,5.171645,-0.607828,1.397145,-0.6078283,-0.4254799,1.676574,-0.4254802,-0.607828,1.397145,0.607828,-0.4254799,1.676574,0.4254799,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,-0.607828,1.397145,-0.6078283,-0.607828,1.397145,0.607828,0.8104367,1.192231,-4.165892,0.8104367,0.6892583,-4.165892,0.8104367,1.937375,-2.731489,0.8104367,1.154973,-2.731489,0.8104367,1.937375,-1.315715,0.8104367,1.154973,-1.315715,-0.5841081,0,-5.171645,0.3884169,0,-5.171645,-0.5841081,0.2421719,-5.171645,0.3884169,0.2421719,-5.171645,-0.8104381,1.154973,1.315715,-0.8104381,1.937375,1.315715,-0.8104381,1.154973,2.731489,-0.8104381,1.937375,2.731489,-0.8104381,0.6892583,4.165891,-0.8104381,1.192231,4.165891,-2.731489,1.937375,0.8104381,-4.165891,1.192231,0.8104381,-2.731489,1.937375,-0.8104367,-4.165891,1.192231,-0.8104367,5.171645,0,0.3884165,4.165892,0.6892583,0.8104381,5.171645,0.2421719,0.3884165,4.165892,1.192231,0.8104381,1.315715,1.937375,0.8104381,0.6078283,1.397145,0.607828,1.315715,1.937375,-0.8104367,0.6078283,1.397145,-0.6078283,1.315715,1.154973,-0.8104367,2.731489,1.154973,-0.8104367,1.315715,1.937375,-0.8104367,4.165892,1.192231,-0.8104367,2.731489,1.937375,-0.8104367,4.165892,0.6892583,-0.8104367,2.731489,1.154973,0.8104381,2.731489,1.154973,-0.8104367,1.315715,1.154973,0.8104381,1.315715,1.154973,-0.8104367,5.171645,0,-0.5841084,4.165892,0.6892583,-0.8104367,5.171645,0,0.3884165,4.165892,0.6892583,0.8104381,5.171645,0.2421719,-0.5841084,5.171645,0,-0.5841084,5.171645,0.2421719,0.3884165,5.171645,0,0.3884165,5.171645,0,-0.5841084,5.171645,0.2421719,-0.5841084,4.165892,0.6892583,-0.8104367,4.165892,1.192231,-0.8104367,4.165892,1.192231,0.8104381,2.731489,1.937375,0.8104381,4.165892,1.192231,-0.8104367,2.731489,1.937375,-0.8104367,2.731489,1.937375,0.8104381,1.315715,1.937375,0.8104381,2.731489,1.937375,-0.8104367,1.315715,1.937375,-0.8104367,1.315715,1.154973,0.8104381,1.315715,1.154973,-0.8104367,0.6078283,0.8569158,0.607828,0.6078283,0.8569158,-0.6078283 + } + PolygonVertexIndex: *450 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,113,-113,115,114,-113,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,139,-139,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,173,-173,175,174,-173,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,203,-203,201,203,-206,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,225,-225,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,235,-235,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,253,-253,251,253,-256,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1350 { + a: 0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *568 { + a: -3.190701,-8.824106,3.190696,-8.824106,-3.190701,-14.76155,3.190696,-14.76155,18.18327,0,13.88914,2.713615,18.18327,0.9534324,13.88914,4.693821,-3.190696,-10.75389,-3.190696,-5.179981,3.190701,-10.75389,3.190701,-5.179981,3.190696,10.75389,3.190696,5.179979,-3.190701,10.75389,-3.190701,5.179979,-3.190696,10.75389,3.190701,10.75389,-3.190696,5.179979,3.190701,5.179979,2.959129,3.373684,2.959129,5.500572,5.857993,4.547139,5.857993,7.62746,-3.190696,-8.699576,3.190701,-8.699576,-1.5292,-14.14654,2.299638,-14.14654,2.393025,-2.393025,-2.393023,-2.393025,2.393025,2.393023,-2.393023,2.393023,-15.30051,4.693821,-15.30051,2.713615,-19.35919,0.9534324,-19.35919,0,-2.959126,5.500572,-2.959126,3.373684,-5.857988,7.62746,-5.857988,4.547139,-19.35918,0,-19.35918,0.9534324,-15.3005,2.713615,-15.3005,4.693821,-5.179979,3.190701,-5.179979,-3.190696,-10.75389,3.190701,-10.75389,-3.190696,-3.190696,8.745208,3.190701,8.745208,-2.393025,5.239388,2.393023,5.239388,3.190696,-12.39066,-3.190701,-12.39066,3.190696,-6.026881,-3.190701,-6.026881,3.190696,6.538601,2.393025,3.514677,-3.190701,6.538601,-2.393023,3.514677,-3.190696,-14.76155,-3.190696,-8.824106,3.190701,-14.76155,3.190701,-8.824106,2.393023,3.298699,-2.393025,3.298699,1.675118,4.612336,-1.675119,4.612336,3.190696,-8.699578,2.299639,-14.14655,-3.190701,-8.699578,-1.529199,-14.14655,-16.40115,2.713615,-16.40115,4.693821,-10.75389,4.547139,-10.75389,7.62746,-5.179981,4.547139,-5.179981,7.62746,3.190696,-5.179981,3.190696,-10.75389,-3.190701,-5.179981,-3.190701,-10.75389,-3.190696,-12.39066,-3.190696,-6.026882,3.190701,-12.39066,3.190701,-6.026882,3.190696,-11.995,1.5292,-16.79528,-3.190701,-11.995,-2.299638,-16.79528,3.190701,-14.76156,-3.190696,-14.76156,3.190701,-8.824107,-3.190696,-8.824107,-2.959127,3.373684,-5.857989,4.547139,-2.959127,5.500572,-5.857989,7.62746,2.299639,0,-1.529199,0,2.299639,0.9534324,-1.529199,0.9534324,2.299639,-14.14654,-1.529199,-14.14654,3.190696,-8.699576,-3.190701,-8.699576,2.95913,3.373684,2.95913,5.500572,5.857995,4.547139,5.857995,7.62746,16.40115,2.713615,10.75389,4.547139,16.40115,4.693821,5.179981,4.547139,5.179981,7.62746,10.75389,7.62746,2.393025,3.298699,-2.393023,3.298699,1.675119,4.612336,-1.675118,4.612336,-1.675119,-1.675119,-1.675119,1.675118,1.675118,-1.675119,1.675118,1.675118,-3.190696,-8.699578,3.190701,-8.699578,-1.5292,-14.14655,2.299638,-14.14655,2.393023,3.514677,-2.393025,3.514677,3.190701,6.538601,-3.190696,6.538601,2.959126,3.373684,2.959126,5.500572,5.857988,4.547139,5.857988,7.62746,-5.179979,7.62746,-5.179979,4.547139,-10.75389,7.62746,-10.75389,4.547139,-16.40114,4.693821,-16.40114,2.713615,5.857989,7.62746,5.857989,4.547139,2.959127,5.500572,2.959127,3.373684,3.190696,8.745209,2.393025,5.239388,-3.190701,8.745209,-2.393023,5.239388,3.190696,-11.995,1.5292,-16.79528,-3.190701,-11.995,-2.299638,-16.79528,-5.857995,4.547139,-5.857995,7.62746,-2.95913,3.373684,-2.95913,5.500572,-19.35918,-1.241583E-15,-19.35918,0.9534324,-15.3005,2.713615,-15.3005,4.693821,3.190696,-8.824107,3.190696,-14.76156,-3.190701,-8.824107,-3.190701,-14.76156,2.393025,3.2987,-2.393023,3.2987,1.675119,4.612337,-1.675118,4.612337,16.40114,2.713615,10.75389,4.547139,16.40114,4.693821,5.179979,4.547139,5.179979,7.62746,10.75389,7.62746,-1.5292,0,-1.5292,0.9534324,2.299638,0,2.299638,0.9534324,-2.393023,5.239388,-3.190701,8.745208,2.393025,5.239388,3.190696,8.745208,5.179979,3.190701,10.75389,3.190701,5.179979,-3.190696,10.75389,-3.190696,18.18327,0.9534324,18.18327,6.494096E-15,13.88914,4.693821,13.88914,2.713615,-2.959129,3.373684,-5.857993,4.547139,-2.959129,5.500572,-5.857993,7.62746,13.88912,2.713615,13.88912,4.693821,18.18325,0,18.18325,0.9534324,-5.179979,4.547139,-10.75389,4.547139,-5.179979,7.62746,-16.40114,4.693821,-10.75389,7.62746,-16.40114,2.713615,-3.190696,6.538603,3.190701,6.538603,-2.393025,3.514678,2.393023,3.514678,-3.190696,-11.995,3.190701,-11.995,-2.299639,-16.79528,1.529199,-16.79528,-2.393025,3.2987,-1.675119,4.612337,2.393023,3.2987,1.675118,4.612337,-2.393025,-2.393025,-2.393025,2.393023,2.393023,-2.393025,2.393023,2.393023,16.40115,4.693821,16.40115,2.713615,10.75389,7.62746,10.75389,4.547139,5.179981,7.62746,5.179981,4.547139,2.299638,0,-1.5292,0,2.299638,0.9534324,-1.5292,0.9534324,5.179979,4.547139,5.179979,7.62746,10.75389,4.547139,10.75389,7.62746,16.40114,2.713615,16.40114,4.693821,3.190701,-6.026881,3.190701,-12.39066,-3.190696,-6.026881,-3.190696,-12.39066,18.18325,0,13.88912,2.713615,18.18325,0.9534324,13.88912,4.693821,3.190701,8.745209,2.393023,5.239388,-3.190696,8.745209,-2.393025,5.239388,-5.179981,4.547139,-10.75389,4.547139,-5.179981,7.62746,-16.40115,4.693821,-10.75389,7.62746,-16.40115,2.713615,10.75389,3.190701,10.75389,-3.190696,5.179981,3.190701,5.179981,-3.190696,-2.299639,-16.79528,-3.190696,-11.995,1.529199,-16.79528,3.190701,-11.995,2.299639,0.9534324,2.299639,0,-1.529199,0.9534324,-1.529199,0,-19.35919,-1.24158E-15,-19.35919,0.9534324,-15.30051,2.713615,-15.30051,4.693821,-3.190701,-12.39066,-3.190701,-6.026882,3.190696,-12.39066,3.190696,-6.026882,-10.75389,3.190701,-5.179981,3.190701,-10.75389,-3.190696,-5.179981,-3.190696,-3.190701,6.538603,3.190696,6.538603,-2.393023,3.514678,2.393025,3.514678 + } + UVIndex: *450 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,113,112,115,114,112,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,139,138,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,173,172,175,174,172,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,203,202,201,203,205,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,225,224,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,235,234,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,253,252,251,253,255,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *150 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Model: 4996232408649830192, "Model::leafs", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",-1.776575E-07,11.61921,-0.02567085 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5617276735293159277, "Geometry::", "Mesh" { + Vertices: *852 { + a: -2.731489,1.154973,0.8104381,-2.731489,1.154973,-0.8104367,-4.165891,0.6892583,0.8104381,-4.165891,0.6892583,-0.8104367,-5.171645,0,-0.3884169,-4.165891,0.6892583,-0.8104367,-5.171645,0.2421719,-0.3884169,-4.165891,1.192231,-0.8104367,0.8104367,1.937375,-2.731489,0.8104367,1.937375,-1.315715,-0.8104381,1.937375,-2.731489,-0.8104381,1.937375,-1.315715,0.8104367,1.154973,2.731489,0.8104367,1.154973,1.315715,-0.8104381,1.154973,2.731489,-0.8104381,1.154973,1.315715,0.8104367,1.937375,1.315715,0.8104367,1.937375,2.731489,-0.8104381,1.937375,1.315715,-0.8104381,1.937375,2.731489,-0.607828,0.8569158,0.607828,-0.607828,1.397145,0.607828,-0.8104381,1.154973,1.315715,-0.8104381,1.937375,1.315715,0.8104367,1.192231,-4.165892,-0.8104381,1.192231,-4.165892,0.3884169,0.2421719,-5.171645,-0.5841081,0.2421719,-5.171645,0.6078283,0.8569158,0.607828,0.6078283,0.8569158,-0.6078283,-0.607828,0.8569158,0.607828,-0.607828,0.8569158,-0.6078283,0.8104367,1.192231,4.165891,0.8104367,0.6892583,4.165891,0.5841084,0.2421719,5.171645,0.5841084,0,5.171645,0.6078283,1.397145,0.607828,0.6078283,0.8569158,0.607828,0.8104367,1.937375,1.315715,0.8104367,1.154973,1.315715,-0.5841081,0,-5.171645,-0.5841081,0.2421719,-5.171645,-0.8104381,0.6892583,-4.165892,-0.8104381,1.192231,-4.165892,-1.315715,1.154973,0.8104381,-1.315715,1.154973,-0.8104367,-2.731489,1.154973,0.8104381,-2.731489,1.154973,-0.8104367,0.8104367,1.937375,1.315715,-0.8104381,1.937375,1.315715,0.6078283,1.397145,0.607828,-0.607828,1.397145,0.607828,0.8104367,1.937375,2.731489,0.8104367,1.192231,4.165891,-0.8104381,1.937375,2.731489,-0.8104381,1.192231,4.165891,0.8104367,1.154973,1.315715,0.6078283,0.8569158,0.607828,-0.8104381,1.154973,1.315715,-0.607828,0.8569158,0.607828,0.8104367,0.6892583,4.165891,0.8104367,1.154973,2.731489,-0.8104381,0.6892583,4.165891,-0.8104381,1.154973,2.731489,-0.607828,1.397145,-0.6078283,0.6078283,1.397145,-0.6078283,-0.4254799,1.676574,-0.4254802,0.4254802,1.676574,-0.4254802,0.8104367,1.192231,4.165891,0.5841084,0.2421719,5.171645,-0.8104381,1.192231,4.165891,-0.3884165,0.2421719,5.171645,-0.8104381,0.6892583,-4.165892,-0.8104381,1.192231,-4.165892,-0.8104381,1.154973,-2.731489,-0.8104381,1.937375,-2.731489,-0.8104381,1.154973,-1.315715,-0.8104381,1.937375,-1.315715,0.8104367,1.154973,-1.315715,0.8104367,1.154973,-2.731489,-0.8104381,1.154973,-1.315715,-0.8104381,1.154973,-2.731489,0.8104367,1.192231,-4.165892,0.8104367,1.937375,-2.731489,-0.8104381,1.192231,-4.165892,-0.8104381,1.937375,-2.731489,-4.165891,0.6892583,0.8104381,-4.165891,0.6892583,-0.8104367,-5.171645,0,0.5841081,-5.171645,0,-0.3884169,4.165892,0.6892583,0.8104381,4.165892,0.6892583,-0.8104367,2.731489,1.154973,0.8104381,2.731489,1.154973,-0.8104367,0.6078283,0.8569158,-0.6078283,1.315715,1.154973,-0.8104367,0.6078283,1.397145,-0.6078283,1.315715,1.937375,-0.8104367,0.5841084,0,5.171645,-0.3884165,0,5.171645,0.5841084,0.2421719,5.171645,-0.3884165,0.2421719,5.171645,5.171645,0.2421719,-0.5841084,5.171645,0.2421719,0.3884165,4.165892,1.192231,-0.8104367,4.165892,1.192231,0.8104381,0.6078283,0.8569158,0.607828,0.6078283,1.397145,0.607828,1.315715,1.154973,0.8104381,1.315715,1.937375,0.8104381,4.165892,0.6892583,0.8104381,2.731489,1.154973,0.8104381,4.165892,1.192231,0.8104381,1.315715,1.154973,0.8104381,1.315715,1.937375,0.8104381,2.731489,1.937375,0.8104381,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,0.4254802,1.676574,-0.4254802,0.4254802,1.676574,0.4254799,0.4254802,1.676574,-0.4254802,0.4254802,1.676574,0.4254799,-0.4254799,1.676574,-0.4254802,-0.4254799,1.676574,0.4254799,-4.165891,1.192231,-0.8104367,-4.165891,1.192231,0.8104381,-5.171645,0.2421719,-0.3884169,-5.171645,0.2421719,0.5841081,-0.607828,0.8569158,0.607828,-0.607828,0.8569158,-0.6078283,-1.315715,1.154973,0.8104381,-1.315715,1.154973,-0.8104367,-0.607828,0.8569158,-0.6078283,-0.607828,1.397145,-0.6078283,-1.315715,1.154973,-0.8104367,-1.315715,1.937375,-0.8104367,0.8104367,1.937375,1.315715,0.8104367,1.154973,1.315715,0.8104367,1.937375,2.731489,0.8104367,1.154973,2.731489,0.8104367,1.192231,4.165891,0.8104367,0.6892583,4.165891,0.8104367,1.937375,-1.315715,0.8104367,1.154973,-1.315715,0.6078283,1.397145,-0.6078283,0.6078283,0.8569158,-0.6078283,0.8104367,1.937375,-1.315715,0.6078283,1.397145,-0.6078283,-0.8104381,1.937375,-1.315715,-0.607828,1.397145,-0.6078283,0.8104367,0.6892583,-4.165892,0.3884169,0,-5.171645,-0.8104381,0.6892583,-4.165892,-0.5841081,0,-5.171645,-0.8104381,1.154973,-1.315715,-0.8104381,1.937375,-1.315715,-0.607828,0.8569158,-0.6078283,-0.607828,1.397145,-0.6078283,-5.171645,0,0.5841081,-5.171645,0.2421719,0.5841081,-4.165891,0.6892583,0.8104381,-4.165891,1.192231,0.8104381,0.8104367,1.154973,-2.731489,0.8104367,0.6892583,-4.165892,-0.8104381,1.154973,-2.731489,-0.8104381,0.6892583,-4.165892,0.6078283,1.397145,0.607828,-0.607828,1.397145,0.607828,0.4254802,1.676574,0.4254799,-0.4254799,1.676574,0.4254799,-4.165891,0.6892583,-0.8104367,-2.731489,1.154973,-0.8104367,-4.165891,1.192231,-0.8104367,-1.315715,1.154973,-0.8104367,-1.315715,1.937375,-0.8104367,-2.731489,1.937375,-0.8104367,-5.171645,0,-0.3884169,-5.171645,0.2421719,-0.3884169,-5.171645,0,0.5841081,-5.171645,0.2421719,0.5841081,-0.607828,1.397145,-0.6078283,-0.607828,1.397145,0.607828,-1.315715,1.937375,-0.8104367,-1.315715,1.937375,0.8104381,-1.315715,1.937375,-0.8104367,-1.315715,1.937375,0.8104381,-2.731489,1.937375,-0.8104367,-2.731489,1.937375,0.8104381,0.3884169,0.2421719,-5.171645,0.3884169,0,-5.171645,0.8104367,1.192231,-4.165892,0.8104367,0.6892583,-4.165892,-0.607828,0.8569158,0.607828,-1.315715,1.154973,0.8104381,-0.607828,1.397145,0.607828,-1.315715,1.937375,0.8104381,-0.8104381,0.6892583,4.165891,-0.8104381,1.192231,4.165891,-0.3884165,0,5.171645,-0.3884165,0.2421719,5.171645,-1.315715,1.154973,0.8104381,-2.731489,1.154973,0.8104381,-1.315715,1.937375,0.8104381,-4.165891,1.192231,0.8104381,-2.731489,1.937375,0.8104381,-4.165891,0.6892583,0.8104381,0.8104367,1.154973,-1.315715,-0.8104381,1.154973,-1.315715,0.6078283,0.8569158,-0.6078283,-0.607828,0.8569158,-0.6078283,0.8104367,0.6892583,4.165891,-0.8104381,0.6892583,4.165891,0.5841084,0,5.171645,-0.3884165,0,5.171645,-0.607828,1.397145,-0.6078283,-0.4254799,1.676574,-0.4254802,-0.607828,1.397145,0.607828,-0.4254799,1.676574,0.4254799,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,-0.607828,1.397145,-0.6078283,-0.607828,1.397145,0.607828,0.8104367,1.192231,-4.165892,0.8104367,0.6892583,-4.165892,0.8104367,1.937375,-2.731489,0.8104367,1.154973,-2.731489,0.8104367,1.937375,-1.315715,0.8104367,1.154973,-1.315715,-0.5841081,0,-5.171645,0.3884169,0,-5.171645,-0.5841081,0.2421719,-5.171645,0.3884169,0.2421719,-5.171645,-0.8104381,1.154973,1.315715,-0.8104381,1.937375,1.315715,-0.8104381,1.154973,2.731489,-0.8104381,1.937375,2.731489,-0.8104381,0.6892583,4.165891,-0.8104381,1.192231,4.165891,-2.731489,1.937375,-0.8104367,-2.731489,1.937375,0.8104381,-4.165891,1.192231,-0.8104367,-4.165891,1.192231,0.8104381,5.171645,0,0.3884165,4.165892,0.6892583,0.8104381,5.171645,0.2421719,0.3884165,4.165892,1.192231,0.8104381,1.315715,1.937375,-0.8104367,1.315715,1.937375,0.8104381,0.6078283,1.397145,-0.6078283,0.6078283,1.397145,0.607828,1.315715,1.154973,-0.8104367,2.731489,1.154973,-0.8104367,1.315715,1.937375,-0.8104367,4.165892,1.192231,-0.8104367,2.731489,1.937375,-0.8104367,4.165892,0.6892583,-0.8104367,2.731489,1.154973,0.8104381,2.731489,1.154973,-0.8104367,1.315715,1.154973,0.8104381,1.315715,1.154973,-0.8104367,5.171645,0,0.3884165,5.171645,0,-0.5841084,4.165892,0.6892583,0.8104381,4.165892,0.6892583,-0.8104367,5.171645,0.2421719,-0.5841084,5.171645,0,-0.5841084,5.171645,0.2421719,0.3884165,5.171645,0,0.3884165,5.171645,0,-0.5841084,5.171645,0.2421719,-0.5841084,4.165892,0.6892583,-0.8104367,4.165892,1.192231,-0.8104367,4.165892,1.192231,-0.8104367,4.165892,1.192231,0.8104381,2.731489,1.937375,-0.8104367,2.731489,1.937375,0.8104381,2.731489,1.937375,-0.8104367,2.731489,1.937375,0.8104381,1.315715,1.937375,-0.8104367,1.315715,1.937375,0.8104381,1.315715,1.154973,0.8104381,1.315715,1.154973,-0.8104367,0.6078283,0.8569158,0.607828,0.6078283,0.8569158,-0.6078283 + } + PolygonVertexIndex: *450 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,75,-75,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,113,-113,115,114,-113,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,139,-139,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,173,-173,175,174,-173,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,203,-203,201,203,-206,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,225,-225,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,235,-235,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,253,-253,251,253,-256,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1350 { + a: 0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *568 { + a: -3.190701,-8.824106,3.190696,-8.824106,-3.190701,-14.76155,3.190696,-14.76155,18.18327,0,13.88914,2.713615,18.18327,0.9534324,13.88914,4.693821,-3.190696,-10.75389,-3.190696,-5.179981,3.190701,-10.75389,3.190701,-5.179981,3.190696,10.75389,3.190696,5.179979,-3.190701,10.75389,-3.190701,5.179979,-3.190696,5.179979,-3.190696,10.75389,3.190701,5.179979,3.190701,10.75389,2.959129,3.373684,2.959129,5.500572,5.857993,4.547139,5.857993,7.62746,-3.190696,-8.699576,3.190701,-8.699576,-1.5292,-14.14654,2.299638,-14.14654,2.393025,2.393023,2.393025,-2.393025,-2.393023,2.393023,-2.393023,-2.393025,-15.30051,4.693821,-15.30051,2.713615,-19.35919,0.9534324,-19.35919,0,-2.959126,5.500572,-2.959126,3.373684,-5.857988,7.62746,-5.857988,4.547139,-19.35918,0,-19.35918,0.9534324,-15.3005,2.713615,-15.3005,4.693821,-5.179979,3.190701,-5.179979,-3.190696,-10.75389,3.190701,-10.75389,-3.190696,-3.190696,8.745208,3.190701,8.745208,-2.393025,5.239388,2.393023,5.239388,3.190696,-6.026881,3.190696,-12.39066,-3.190701,-6.026881,-3.190701,-12.39066,3.190696,6.538601,2.393025,3.514677,-3.190701,6.538601,-2.393023,3.514677,-3.190696,-14.76155,-3.190696,-8.824106,3.190701,-14.76155,3.190701,-8.824106,2.393023,3.298699,-2.393025,3.298699,1.675118,4.612336,-1.675119,4.612336,3.190696,-8.699578,2.299639,-14.14655,-3.190701,-8.699578,-1.529199,-14.14655,-16.40115,2.713615,-16.40115,4.693821,-10.75389,4.547139,-10.75389,7.62746,-5.179981,4.547139,-5.179981,7.62746,3.190696,-5.179981,3.190696,-10.75389,-3.190701,-5.179981,-3.190701,-10.75389,-3.190696,-12.39066,-3.190696,-6.026882,3.190701,-12.39066,3.190701,-6.026882,-3.190701,-11.995,3.190696,-11.995,-2.299638,-16.79528,1.5292,-16.79528,3.190701,-14.76156,-3.190696,-14.76156,3.190701,-8.824107,-3.190696,-8.824107,-2.959127,3.373684,-5.857989,4.547139,-2.959127,5.500572,-5.857989,7.62746,2.299639,0,-1.529199,0,2.299639,0.9534324,-1.529199,0.9534324,2.299639,-14.14654,-1.529199,-14.14654,3.190696,-8.699576,-3.190701,-8.699576,2.95913,3.373684,2.95913,5.500572,5.857995,4.547139,5.857995,7.62746,16.40115,2.713615,10.75389,4.547139,16.40115,4.693821,5.179981,4.547139,5.179981,7.62746,10.75389,7.62746,2.393025,3.298699,-2.393023,3.298699,1.675119,4.612336,-1.675118,4.612336,-1.675119,-1.675119,-1.675119,1.675118,1.675118,-1.675119,1.675118,1.675118,-3.190696,-8.699578,3.190701,-8.699578,-1.5292,-14.14655,2.299638,-14.14655,2.393023,3.514677,-2.393025,3.514677,3.190701,6.538601,-3.190696,6.538601,2.959126,3.373684,2.959126,5.500572,5.857988,4.547139,5.857988,7.62746,-5.179979,7.62746,-5.179979,4.547139,-10.75389,7.62746,-10.75389,4.547139,-16.40114,4.693821,-16.40114,2.713615,5.857989,7.62746,5.857989,4.547139,2.959127,5.500572,2.959127,3.373684,3.190696,8.745209,2.393025,5.239388,-3.190701,8.745209,-2.393023,5.239388,3.190696,-11.995,1.5292,-16.79528,-3.190701,-11.995,-2.299638,-16.79528,-5.857995,4.547139,-5.857995,7.62746,-2.95913,3.373684,-2.95913,5.500572,-19.35918,-1.241583E-15,-19.35918,0.9534324,-15.3005,2.713615,-15.3005,4.693821,3.190696,-8.824107,3.190696,-14.76156,-3.190701,-8.824107,-3.190701,-14.76156,2.393025,3.2987,-2.393023,3.2987,1.675119,4.612337,-1.675118,4.612337,16.40114,2.713615,10.75389,4.547139,16.40114,4.693821,5.179979,4.547139,5.179979,7.62746,10.75389,7.62746,-1.5292,0,-1.5292,0.9534324,2.299638,0,2.299638,0.9534324,2.393025,5.239388,-2.393023,5.239388,3.190696,8.745208,-3.190701,8.745208,5.179979,-3.190696,5.179979,3.190701,10.75389,-3.190696,10.75389,3.190701,18.18327,0.9534324,18.18327,6.494096E-15,13.88914,4.693821,13.88914,2.713615,-2.959129,3.373684,-5.857993,4.547139,-2.959129,5.500572,-5.857993,7.62746,13.88912,2.713615,13.88912,4.693821,18.18325,0,18.18325,0.9534324,-5.179979,4.547139,-10.75389,4.547139,-5.179979,7.62746,-16.40114,4.693821,-10.75389,7.62746,-16.40114,2.713615,-3.190696,6.538603,3.190701,6.538603,-2.393025,3.514678,2.393023,3.514678,-3.190696,-11.995,3.190701,-11.995,-2.299639,-16.79528,1.529199,-16.79528,-2.393025,3.2987,-1.675119,4.612337,2.393023,3.2987,1.675118,4.612337,-2.393025,-2.393025,-2.393025,2.393023,2.393023,-2.393025,2.393023,2.393023,16.40115,4.693821,16.40115,2.713615,10.75389,7.62746,10.75389,4.547139,5.179981,7.62746,5.179981,4.547139,2.299638,0,-1.5292,0,2.299638,0.9534324,-1.5292,0.9534324,5.179979,4.547139,5.179979,7.62746,10.75389,4.547139,10.75389,7.62746,16.40114,2.713615,16.40114,4.693821,-3.190696,-6.026881,3.190701,-6.026881,-3.190696,-12.39066,3.190701,-12.39066,18.18325,0,13.88912,2.713615,18.18325,0.9534324,13.88912,4.693821,-3.190696,8.745209,3.190701,8.745209,-2.393025,5.239388,2.393023,5.239388,-5.179981,4.547139,-10.75389,4.547139,-5.179981,7.62746,-16.40115,4.693821,-10.75389,7.62746,-16.40115,2.713615,10.75389,3.190701,10.75389,-3.190696,5.179981,3.190701,5.179981,-3.190696,1.529199,-16.79528,-2.299639,-16.79528,3.190701,-11.995,-3.190696,-11.995,2.299639,0.9534324,2.299639,0,-1.529199,0.9534324,-1.529199,0,-19.35919,-1.24158E-15,-19.35919,0.9534324,-15.30051,2.713615,-15.30051,4.693821,3.190696,-12.39066,-3.190701,-12.39066,3.190696,-6.026882,-3.190701,-6.026882,-10.75389,-3.190696,-10.75389,3.190701,-5.179981,-3.190696,-5.179981,3.190701,-3.190701,6.538603,3.190696,6.538603,-2.393023,3.514678,2.393025,3.514678 + } + UVIndex: *450 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,75,74,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,113,112,115,114,112,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,139,138,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,173,172,175,174,172,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,203,202,201,203,205,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,225,224,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,235,234,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,253,252,251,253,255,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *150 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_palmDetailedTall, Model::RootNode + C: "OO",5049713903895682411,0 + + ;Geometry::, Model::Mesh tree_palmDetailedTall + C: "OO",5248018606123666938,5049713903895682411 + + ;Material::woodBark, Model::Mesh tree_palmDetailedTall + C: "OO",3046,5049713903895682411 + + ;Model::Mesh leafs, Model::USING PARENT + C: "OO",4956631098819574510,5049713903895682411 + + ;Geometry::, Model::Mesh leafs + C: "OO",5632396904634173576,4956631098819574510 + + ;Material::leafsGreen, Model::Mesh leafs + C: "OO",3030,4956631098819574510 + + ;Model::Mesh leafs, Model::USING PARENT + C: "OO",4996232408649830192,5049713903895682411 + + ;Geometry::, Model::Mesh leafs + C: "OO",5617276735293159277,4996232408649830192 + + ;Material::leafsGreen, Model::Mesh leafs + C: "OO",3030,4996232408649830192 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedTall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedTall.fbx.import new file mode 100644 index 0000000..c81bf68 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedTall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dxxklhannw1wf" +path="res://.godot/imported/tree_palmDetailedTall.fbx-93b6abe2dbe6c85a969b92822a04a033.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_palmDetailedTall.fbx" +dest_files=["res://.godot/imported/tree_palmDetailedTall.fbx-93b6abe2dbe6c85a969b92822a04a033.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmShort.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmShort.fbx new file mode 100644 index 0000000..caec6d7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmShort.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 38 + Millisecond: 704 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_palmShort.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_palmShort.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5616218908800376946, "Model::tree_palmShort", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4726462340938358924, "Geometry::", "Mesh" { + Vertices: *1068 { + a: 0.8104349,10.56232,1.290045,0.8104349,10.56232,2.705819,-0.8104399,10.56232,1.290045,-0.8104399,10.56232,2.705819,-0.6078297,9.481859,0.5821586,-1.315717,9.779917,0.7847688,-0.6078297,10.02209,0.5821586,-1.315717,10.56232,0.7847688,0.6078266,10.02209,-0.6334977,0.6078266,10.02209,0.5821586,-0.6078297,10.02209,-0.6334977,-0.6078297,10.02209,0.5821586,0.8104349,9.817174,4.140222,0.5841066,8.867115,5.145977,-0.8104399,9.817174,4.140222,-0.3884183,8.867115,5.145977,0.8104349,10.56232,1.290045,-0.8104399,10.56232,1.290045,0.6078266,10.02209,0.5821586,-0.6078297,10.02209,0.5821586,0.8104349,9.817174,-4.19156,-0.8104399,9.817174,-4.19156,0.3884151,8.867115,-5.197315,-0.5841098,8.867115,-5.197315,-0.8104399,9.314201,-4.19156,-0.8104399,9.817174,-4.19156,-0.8104399,9.779917,-2.757158,-0.8104399,10.56232,-2.757158,-0.8104399,9.779917,-1.341385,-0.8104399,10.56232,-1.341385,0.8104349,10.56232,1.290045,0.8104349,9.779917,1.290045,0.8104349,10.56232,2.705819,0.8104349,9.779917,2.705819,0.8104349,9.817174,4.140222,0.8104349,9.314201,4.140222,0.8104349,9.779917,-1.341385,0.8104349,9.779917,-2.757158,-0.8104399,9.779917,-1.341385,-0.8104399,9.779917,-2.757158,-1.315717,9.779917,0.7847688,-1.315717,9.779917,-0.836106,-2.73149,9.779917,0.7847688,-2.73149,9.779917,-0.836106,0.8104349,9.817174,4.140222,0.8104349,9.314201,4.140222,0.5841066,8.867115,5.145977,0.5841066,8.624944,5.145977,-0.6078297,10.02209,-0.6334977,0.6078266,10.02209,-0.6334977,-0.4254816,10.30152,-0.4511496,0.4254785,10.30152,-0.4511496,-0.8104399,9.779917,-1.341385,-0.8104399,10.56232,-1.341385,-0.6078297,9.481859,-0.6334977,-0.6078297,10.02209,-0.6334977,0.5841066,8.624944,5.145977,-0.3884183,8.624944,5.145977,0.5841066,8.867115,5.145977,-0.3884183,8.867115,5.145977,0.8104349,9.779917,1.290045,0.6078266,9.481859,0.5821586,-0.8104399,9.779917,1.290045,-0.6078297,9.481859,0.5821586,0.6078266,10.02209,0.5821586,-0.6078297,10.02209,0.5821586,0.4254785,10.30152,0.3998105,-0.4254816,10.30152,0.3998105,-0.5841098,8.624944,-5.197315,0.3884151,8.624944,-5.197315,-0.5841098,8.867115,-5.197315,0.3884151,8.867115,-5.197315,0.8104349,9.779917,-2.757158,0.8104349,9.314201,-4.19156,-0.8104399,9.779917,-2.757158,-0.8104399,9.314201,-4.19156,-0.6078297,9.481859,0.5821586,-0.6078297,10.02209,0.5821586,-0.8104399,9.779917,1.290045,-0.8104399,10.56232,1.290045,-4.165893,9.817174,-0.836106,-4.165893,9.817174,0.7847688,-5.171648,8.867115,-0.4140862,-5.171648,8.867115,0.5584387,0.6078266,10.02209,-0.6334977,0.6078266,10.02209,0.5821586,0.4254785,10.30152,-0.4511496,0.4254785,10.30152,0.3998105,-2.73149,9.779917,0.7847688,-2.73149,9.779917,-0.836106,-4.165893,9.314201,0.7847688,-4.165893,9.314201,-0.836106,0.8104349,9.314201,4.140222,0.8104349,9.779917,2.705819,-0.8104399,9.314201,4.140222,-0.8104399,9.779917,2.705819,-0.5841098,8.624944,-5.197315,-0.5841098,8.867115,-5.197315,-0.8104399,9.314201,-4.19156,-0.8104399,9.817174,-4.19156,0.8104349,10.56232,-2.757158,0.8104349,10.56232,-1.341385,-0.8104399,10.56232,-2.757158,-0.8104399,10.56232,-1.341385,-0.8104399,9.314201,4.140222,-0.8104399,9.817174,4.140222,-0.3884183,8.624944,5.145977,-0.3884183,8.867115,5.145977,0.8104349,9.779917,-1.341385,-0.8104399,9.779917,-1.341385,0.6078266,9.481859,-0.6334977,-0.6078297,9.481859,-0.6334977,0.8104349,9.779917,2.705819,0.8104349,9.779917,1.290045,-0.8104399,9.779917,2.705819,-0.8104399,9.779917,1.290045,-5.171648,8.624944,0.5584387,-5.171648,8.867115,0.5584387,-4.165893,9.314201,0.7847688,-4.165893,9.817174,0.7847688,0.8104349,9.314201,4.140222,-0.8104399,9.314201,4.140222,0.5841066,8.624944,5.145977,-0.3884183,8.624944,5.145977,-4.165893,9.314201,-0.836106,-2.73149,9.779917,-0.836106,-4.165893,9.817174,-0.836106,-1.315717,9.779917,-0.836106,-1.315717,10.56232,-0.836106,-2.73149,10.56232,-0.836106,4.16589,9.314201,0.7847688,4.16589,9.314201,-0.836106,2.731487,9.779917,0.7847688,2.731487,9.779917,-0.836106,-5.171648,8.624944,-0.4140862,-4.165893,9.314201,-0.836106,-5.171648,8.867115,-0.4140862,-4.165893,9.817174,-0.836106,0.3884151,8.867115,-5.197315,0.3884151,8.624944,-5.197315,0.8104349,9.817174,-4.19156,0.8104349,9.314201,-4.19156,0.6078266,9.481859,-0.6334977,1.315713,9.779917,-0.836106,0.6078266,10.02209,-0.6334977,1.315713,10.56232,-0.836106,0.6078266,10.02209,0.5821586,0.6078266,9.481859,0.5821586,0.8104349,10.56232,1.290045,0.8104349,9.779917,1.290045,0.8104349,9.817174,-4.19156,0.8104349,9.314201,-4.19156,0.8104349,10.56232,-2.757158,0.8104349,9.779917,-2.757158,0.8104349,10.56232,-1.341385,0.8104349,9.779917,-1.341385,-2.73149,10.56232,-0.836106,-2.73149,10.56232,0.7847688,-4.165893,9.817174,-0.836106,-4.165893,9.817174,0.7847688,0.8104349,9.817174,-4.19156,0.8104349,10.56232,-2.757158,-0.8104399,9.817174,-4.19156,-0.8104399,10.56232,-2.757158,0.8104349,10.56232,-1.341385,0.6078266,10.02209,-0.6334977,-0.8104399,10.56232,-1.341385,-0.6078297,10.02209,-0.6334977,0.8104349,9.314201,-4.19156,0.3884151,8.624944,-5.197315,-0.8104399,9.314201,-4.19156,-0.5841098,8.624944,-5.197315,0.8104349,10.56232,2.705819,0.8104349,9.817174,4.140222,-0.8104399,10.56232,2.705819,-0.8104399,9.817174,4.140222,0.4254785,10.30152,-0.4511496,0.4254785,10.30152,0.3998105,-0.4254816,10.30152,-0.4511496,-0.4254816,10.30152,0.3998105,-4.165893,9.314201,0.7847688,-4.165893,9.314201,-0.836106,-5.171648,8.624944,0.5584387,-5.171648,8.624944,-0.4140862,-0.6078297,9.481859,0.5821586,-0.6078297,9.481859,-0.6334977,-1.315717,9.779917,0.7847688,-1.315717,9.779917,-0.836106,0.6078266,9.481859,-0.6334977,0.3765083,9.481858,0.3508373,0.6078266,9.481859,0.5821586,-0.6078297,9.481859,0.5821586,-0.3765083,9.481858,0.3508373,-0.3765083,9.481858,-0.4021794,0.3765083,9.481858,-0.4021794,-0.6078297,9.481859,-0.6334977,-1.315717,10.56232,-0.836106,-1.315717,10.56232,0.7847688,-2.73149,10.56232,-0.836106,-2.73149,10.56232,0.7847688,-1.315717,9.779917,0.7847688,-2.73149,9.779917,0.7847688,-1.315717,10.56232,0.7847688,-4.165893,9.817174,0.7847688,-2.73149,10.56232,0.7847688,-4.165893,9.314201,0.7847688,-0.8104399,9.779917,1.290045,-0.8104399,10.56232,1.290045,-0.8104399,9.779917,2.705819,-0.8104399,10.56232,2.705819,-0.8104399,9.314201,4.140222,-0.8104399,9.817174,4.140222,-5.171648,8.624944,-0.4140862,-5.171648,8.867115,-0.4140862,-5.171648,8.624944,0.5584387,-5.171648,8.867115,0.5584387,-0.6078297,9.481859,-0.6334977,-0.6078297,10.02209,-0.6334977,-1.315717,9.779917,-0.836106,-1.315717,10.56232,-0.836106,-0.6078297,10.02209,-0.6334977,-0.6078297,10.02209,0.5821586,-1.315717,10.56232,-0.836106,-1.315717,10.56232,0.7847688,0.8104349,10.56232,-1.341385,0.8104349,9.779917,-1.341385,0.6078266,10.02209,-0.6334977,0.6078266,9.481859,-0.6334977,2.731487,10.56232,-0.836106,2.731487,10.56232,0.7847688,1.315713,10.56232,-0.836106,1.315713,10.56232,0.7847688,1.315713,9.779917,-0.836106,2.731487,9.779917,-0.836106,1.315713,10.56232,-0.836106,4.16589,9.817174,-0.836106,2.731487,10.56232,-0.836106,4.16589,9.314201,-0.836106,-0.6078297,10.02209,-0.6334977,-0.4254816,10.30152,-0.4511496,-0.6078297,10.02209,0.5821586,-0.4254816,10.30152,0.3998105,0.6078266,9.481859,0.5821586,0.6078266,10.02209,0.5821586,1.315713,9.779917,0.7847688,1.315713,10.56232,0.7847688,5.171644,8.624944,0.3627472,4.16589,9.314201,0.7847688,5.171644,8.867115,0.3627472,4.16589,9.817174,0.7847688,5.171644,8.867115,-0.6097777,5.171644,8.867115,0.3627472,4.16589,9.817174,-0.836106,4.16589,9.817174,0.7847688,5.171644,8.624944,0.3627472,5.171644,8.624944,-0.6097777,4.16589,9.314201,0.7847688,4.16589,9.314201,-0.836106,4.16589,9.817174,-0.836106,4.16589,9.817174,0.7847688,2.731487,10.56232,-0.836106,2.731487,10.56232,0.7847688,4.16589,9.314201,0.7847688,2.731487,9.779917,0.7847688,4.16589,9.817174,0.7847688,1.315713,9.779917,0.7847688,1.315713,10.56232,0.7847688,2.731487,10.56232,0.7847688,1.315713,9.779917,0.7847688,1.315713,9.779917,-0.836106,0.6078266,9.481859,0.5821586,0.6078266,9.481859,-0.6334977,1.315713,10.56232,-0.836106,1.315713,10.56232,0.7847688,0.6078266,10.02209,-0.6334977,0.6078266,10.02209,0.5821586,2.731487,9.779917,0.7847688,2.731487,9.779917,-0.836106,1.315713,9.779917,0.7847688,1.315713,9.779917,-0.836106,5.171644,8.867115,-0.6097777,5.171644,8.624944,-0.6097777,5.171644,8.867115,0.3627472,5.171644,8.624944,0.3627472,5.171644,8.624944,-0.6097777,5.171644,8.867115,-0.6097777,4.16589,9.314201,-0.836106,4.16589,9.817174,-0.836106,-0.8471447,0.5072599,-0.8471447,0.8471444,0.5072599,-0.8471447,-0.6523014,2.71189,0.1516987,0.6523014,2.71189,0.1516987,0.8471444,0.5072599,0.8471447,-0.8471447,0.5072599,0.8471447,0.6523014,2.71189,1.456301,-0.6523014,2.71189,1.456301,-0.7285445,0,-0.7285445,0.7285445,0,-0.7285445,-0.8471447,0.5072599,-0.8471447,0.8471444,0.5072599,-0.8471447,0.6523014,2.71189,0.1516987,0.6523014,2.71189,1.456301,1.521203,6.594379,0.2360864,1.521203,6.594379,1.201493,-0.8471447,0.5072599,-0.8471447,-0.6523014,2.71189,0.1516987,-0.8471447,0.5072599,0.8471447,-0.6523014,2.71189,1.456301,1.521203,6.594379,1.201493,0.555797,6.594379,1.201493,0.3765083,9.481858,0.3508373,-0.3765083,9.481858,0.3508373,0.8471444,0.5072599,-0.8471447,0.8471444,0.5072599,0.8471447,0.6523014,2.71189,0.1516987,0.6523014,2.71189,1.456301,0.7285445,0,0.7285445,0.7285445,0,-0.7285445,-0.7285445,0,0.7285445,-0.7285445,0,-0.7285445,0.555797,6.594379,0.2360864,1.521203,6.594379,0.2360864,-0.3765083,9.481858,-0.4021794,0.3765083,9.481858,-0.4021794,-0.8471447,0.5072599,-0.8471447,-0.8471447,0.5072599,0.8471447,-0.7285445,0,-0.7285445,-0.7285445,0,0.7285445,0.8471444,0.5072599,-0.8471447,0.7285445,0,-0.7285445,0.8471444,0.5072599,0.8471447,0.7285445,0,0.7285445,0.3765083,9.481858,-0.4021794,1.521203,6.594379,0.2360864,0.3765083,9.481858,0.3508373,1.521203,6.594379,1.201493,0.6523014,2.71189,1.456301,-0.6523014,2.71189,1.456301,1.521203,6.594379,1.201493,0.555797,6.594379,1.201493,-0.6523014,2.71189,0.1516987,0.555797,6.594379,0.2360864,-0.6523014,2.71189,1.456301,0.555797,6.594379,1.201493,-0.3765083,9.481858,-0.4021794,-0.3765083,9.481858,0.3508373,0.555797,6.594379,0.2360864,0.555797,6.594379,1.201493,0.7285445,0,0.7285445,-0.7285445,0,0.7285445,0.8471444,0.5072599,0.8471447,-0.8471447,0.5072599,0.8471447,-0.6523014,2.71189,0.1516987,0.6523014,2.71189,0.1516987,0.555797,6.594379,0.2360864,1.521203,6.594379,0.2360864 + } + PolygonVertexIndex: *570 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,27,-27,29,27,-29,30,32,-32,33,31,-33,34,33,-33,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,127,-127,129,128,-127,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,153,-153,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,189,-192,193,192,-192,189,194,-189,195,188,-195,193,195,-195,191,195,-194,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,203,-203,201,203,-206,206,208,-208,209,207,-209,210,209,-209,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,235,-235,233,235,-238,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,265,-265,267,266,-265,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1710 { + a: 0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0,0.412686,-0.9108734,0,0.412686,-0.9108734,0,0.412686,-0.9108734,0,0.412686,-0.9108734,0,0.412686,-0.9108734,0,0.412686,-0.9108734,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,-0.2663284,0.9638824,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0,-0.2276658,-0.9737394,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,0.9758599,-0.2183975,0,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,-0.9961174,0.08803599,0,0,0.2825933,0.9592398,0,0.2825933,0.9592398,0,0.2825933,0.9592398,0,0.2825933,0.9592398,0,0.2825933,0.9592398,0,0.2825933,0.9592398,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0.9961174,0.08803586,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,0,-0.2158359,-0.9764297,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,-0.9737394,-0.2276658,0,0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,0.9737395,-0.2276653,0,0.9296154,0.368531,0,0.9296154,0.368531,0,0.9296154,0.368531,0,0.9296154,0.368531,0,0.9296154,0.368531,0,0.9296154,0.368531,0,0,0.06548942,0.9978532,0,0.06548942,0.9978532,0,0.06548942,0.9978532,0,0.06548942,0.9978532,0,0.06548942,0.9978532,0,0.06548942,0.9978532,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,-0.9548419,0.2971143,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,-0.9516258,-0.3072596,0,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0,-0.2276658,0.9737394,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639,0,0.02173033,-0.9997639 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *712 { + a: -3.190689,5.078919,-3.190689,10.65283,3.190708,5.078919,3.190708,10.65283,-2.931327,37.33015,-5.830191,38.50361,-2.931327,39.45704,-5.830191,41.58393,-2.393018,-2.494085,-2.393018,2.291963,2.393031,-2.494085,2.393031,2.291963,3.190689,14.69152,2.299632,9.244555,-3.190708,14.69152,-1.529206,9.244555,-3.190689,29.26535,3.190708,29.26535,-2.393018,25.75953,2.393031,25.75953,-3.190689,14.5446,3.190708,14.5446,-1.529193,9.097633,2.299645,9.097633,-16.50221,36.67009,-16.50221,38.65029,-10.85495,38.50361,-10.85495,41.58393,-5.281041,38.50361,-5.281041,41.58393,-5.078919,41.58393,-5.078919,38.50361,-10.65283,41.58393,-10.65283,38.50361,-16.30009,38.65029,-16.30009,36.67009,3.190689,-5.281041,3.190689,-10.85495,-3.190708,-5.281041,-3.190708,-10.85495,-5.179986,3.089641,-5.179986,-3.291756,-10.7539,3.089641,-10.7539,-3.291756,-15.20191,38.65029,-15.20191,36.67009,-19.2606,34.9099,-19.2606,33.95647,2.393031,31.68056,-2.393018,31.68056,1.675125,32.9942,-1.675112,32.9942,-5.955155,38.50361,-5.955155,41.58393,-3.056291,37.33015,-3.056291,39.45704,2.299632,33.95647,-1.529206,33.95647,2.299632,34.9099,-1.529206,34.9099,3.190689,19.62251,2.393018,16.59858,-3.190708,19.62251,-2.393031,16.59858,2.393018,31.79102,-2.393031,31.79102,1.675112,33.10466,-1.675125,33.10466,2.299645,33.95647,-1.529193,33.95647,2.299645,34.9099,-1.529193,34.9099,3.190689,1.565757,3.190689,-4.371691,-3.190708,1.565757,-3.190708,-4.371691,2.861972,37.33015,2.861972,39.45704,5.760836,38.50361,5.760836,41.58393,-3.291756,14.61805,3.089641,14.61805,-1.630261,9.171083,2.198578,9.171083,2.494085,31.7358,-2.291963,31.7358,1.776179,33.04943,-1.574057,33.04943,-3.089641,1.661876,3.291756,1.661876,-3.089641,-4.27557,3.291756,-4.27557,-3.190689,-4.179442,-3.190689,1.758004,3.190708,-4.179442,3.190708,1.758004,-19.45778,33.95647,-19.45778,34.9099,-15.39909,36.67009,-15.39909,38.65029,-3.190689,-10.85495,-3.190689,-5.281041,3.190708,-10.85495,3.190708,-5.281041,13.79593,36.67009,13.79593,38.65029,18.09006,33.95647,18.09006,34.9099,-3.190689,19.80879,3.190708,19.80879,-2.393018,16.78487,2.393031,16.78487,3.190689,10.65283,3.190689,5.078919,-3.190708,10.65283,-3.190708,5.078919,-19.38138,33.95647,-19.38138,34.9099,-15.32269,36.67009,-15.32269,38.65029,-3.190689,7.284087,3.190708,7.284087,-2.299632,2.48381,1.529206,2.48381,16.40115,36.67009,10.7539,38.50361,16.40115,38.65029,5.179986,38.50361,5.179986,41.58393,10.7539,41.58393,3.089641,-4.275563,-3.291756,-4.275563,3.089641,1.661885,-3.291756,1.661885,18.14417,33.95647,13.85004,36.67009,18.14417,34.9099,13.85004,38.65029,18.27646,34.9099,18.27646,33.95647,13.98233,38.65029,13.98233,36.67009,-2.986929,37.33015,-5.885791,38.50361,-2.986929,39.45704,-5.885791,41.58393,-2.861964,39.45704,-2.861964,37.33015,-5.760827,41.58393,-5.760827,38.50361,16.50221,38.65029,16.50221,36.67009,10.85495,41.58393,10.85495,38.50361,5.281041,41.58393,5.281041,38.50361,-3.291756,9.626702,3.089641,9.626702,-3.291756,3.262923,3.089641,3.262923,-3.190689,3.173239,-3.190689,9.537021,3.190708,3.173239,3.190708,9.537021,3.190689,29.42603,2.393018,25.92021,-3.190708,29.42603,-2.393031,25.92021,3.190689,7.117369,1.529193,2.317094,-3.190708,7.117369,-2.299645,2.317094,3.190689,9.71639,3.190689,3.35261,-3.190708,9.71639,-3.190708,3.35261,-1.675112,-1.776179,-1.675112,1.574057,1.675125,-1.776179,1.675125,1.574057,-3.089641,7.200718,3.291756,7.200718,-2.198578,2.400442,1.630261,2.400442,2.291963,16.69173,-2.494085,16.69173,3.089641,19.71566,-3.291756,19.71566,2.393018,-2.494081,1.482317,1.381253,2.393018,2.291967,-2.39303,2.291967,-1.482316,1.381253,-1.482316,-1.58338,1.482317,-1.58338,-2.39303,-2.494081,5.179986,-3.291756,5.179986,3.089641,10.7539,-3.291756,10.7539,3.089641,-5.179986,38.50361,-10.7539,38.50361,-5.179986,41.58393,-16.40115,38.65029,-10.7539,41.58393,-16.40115,36.67009,5.078919,38.50361,5.078919,41.58393,10.65283,38.50361,10.65283,41.58393,16.30009,36.67009,16.30009,38.65029,-1.630261,33.95647,-1.630261,34.9099,2.198578,33.95647,2.198578,34.9099,2.986941,37.33015,2.986941,39.45704,5.885803,38.50361,5.885803,41.58393,2.494085,25.83988,-2.291963,25.83988,3.291756,29.3457,-3.089641,29.3457,5.955146,41.58393,5.955146,38.50361,3.056284,39.45704,3.056284,37.33015,-10.75389,-3.291756,-10.75389,3.089641,-5.179974,-3.291756,-5.179974,3.089641,-5.179974,38.50361,-10.75389,38.50361,-5.179974,41.58393,-16.40114,38.65029,-10.75389,41.58393,-16.40114,36.67009,-2.494085,31.73579,-1.776179,33.04943,2.291963,31.73579,1.574057,33.04943,2.931315,37.33015,2.931315,39.45704,5.830179,38.50361,5.830179,41.58393,18.22235,33.95647,13.92822,36.67009,18.22235,34.9099,13.92822,38.65029,2.4007,9.171103,-1.428138,9.171103,3.291756,14.61807,-3.089641,14.61807,1.428138,2.400463,-2.4007,2.400463,3.089641,7.200738,-3.291756,7.200738,3.291756,3.262927,-3.089641,3.262927,3.291756,9.626708,-3.089641,9.626708,16.40114,36.67009,10.75389,38.50361,16.40114,38.65029,5.179974,38.50361,5.179974,41.58393,10.75389,41.58393,-3.089641,19.71564,3.291756,19.71564,-2.291963,16.69172,2.494085,16.69172,-3.291756,29.34569,3.089641,29.34569,-2.494085,25.83987,2.291963,25.83987,10.75389,3.089641,10.75389,-3.291756,5.179974,3.089641,5.179974,-3.291756,2.4007,34.9099,2.4007,33.95647,-1.428138,34.9099,-1.428138,33.95647,-19.337,33.95647,-19.337,34.9099,-15.27832,36.67009,-15.27832,38.65029,3.335215,0.4426959,-3.335214,0.4426959,2.568116,9.971622,-2.568116,9.971622,3.335214,2.813219,-3.335215,2.813219,2.568116,11.8181,-2.568116,11.8181,2.868285,0.6530103,-2.868285,0.6530103,3.335215,2.703956,-3.335214,2.703956,-0.5972391,10.97986,-5.73347,10.97986,-0.9294741,26.64337,-4.730286,26.64337,-3.335215,1.695713,0.5972391,10.40919,3.335215,1.695713,5.73347,10.40919,5.988987,23.56715,2.188177,23.56715,1.482316,35.41824,-1.482316,35.41824,3.335215,1.695714,-3.335215,1.695714,-0.5972391,10.40919,-5.73347,10.40919,2.868285,2.868285,2.868285,-2.868285,-2.868285,2.868285,-2.868285,-2.868285,-2.188177,25.14957,-5.988987,25.14957,1.482316,36.79202,-1.482316,36.79202,-3.335215,2.703956,3.335215,2.703956,-2.868285,0.6530105,2.868285,0.6530105,3.335215,2.703954,2.868285,0.653009,-3.335215,2.703954,-2.868285,0.653009,1.583383,34.15641,-0.9294741,21.92766,-1.381249,34.15641,-4.730286,21.92766,2.568116,10.27833,-2.568116,10.27833,5.988987,25.59661,2.188177,25.59661,0.5972391,9.431566,0.9294741,25.43986,5.73347,9.431566,4.730286,25.43986,-1.583383,35.97979,1.381249,35.97979,0.9294741,24.03389,4.730286,24.03389,2.868285,0.6530105,-2.868285,0.6530105,3.335214,2.703956,-3.335215,2.703956,2.568116,10.68719,-2.568116,10.68719,-2.188177,25.97619,-5.988987,25.97619 + } + UVIndex: *570 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,27,26,29,27,28,30,32,31,33,31,32,34,33,32,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,127,126,129,128,126,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,153,152,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,189,191,193,192,191,189,194,188,195,188,194,193,195,194,191,195,193,196,198,197,199,197,198,200,202,201,203,201,202,204,203,202,201,203,205,206,208,207,209,207,208,210,209,208,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,235,234,233,235,237,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,265,264,267,266,264,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *190 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_palmShort, Model::RootNode + C: "OO",5616218908800376946,0 + + ;Geometry::, Model::Mesh tree_palmShort + C: "OO",4726462340938358924,5616218908800376946 + + ;Material::leafsGreen, Model::Mesh tree_palmShort + C: "OO",3030,5616218908800376946 + + ;Material::woodBark, Model::Mesh tree_palmShort + C: "OO",3046,5616218908800376946 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmShort.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmShort.fbx.import new file mode 100644 index 0000000..5d6d7bb --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmShort.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cr1g2fapjaxm6" +path="res://.godot/imported/tree_palmShort.fbx-f3f373b29b2e06907f74e5bba908b9d9.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_palmShort.fbx" +dest_files=["res://.godot/imported/tree_palmShort.fbx-f3f373b29b2e06907f74e5bba908b9d9.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmTall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmTall.fbx new file mode 100644 index 0000000..e1681a0 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmTall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 38 + Millisecond: 816 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_palmTall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_palmTall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5350280525053558944, "Model::tree_palmTall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5719431206121206767, "Geometry::", "Mesh" { + Vertices: *1068 { + a: -5.171648,11.61922,-0.4140862,-5.171648,11.86139,-0.4140862,-5.171648,11.61922,0.5584387,-5.171648,11.86139,0.5584387,0.8104349,12.77419,2.705819,0.8104349,12.77419,1.290045,-0.8104399,12.77419,2.705819,-0.8104399,12.77419,1.290045,0.8104349,12.77419,-1.341385,-0.8104399,12.77419,-1.341385,0.6078266,12.47613,-0.6334977,-0.6078297,12.47613,-0.6334977,-0.8104399,12.30847,4.140222,-0.8104399,12.81145,4.140222,-0.3884183,11.61922,5.145977,-0.3884183,11.86139,5.145977,-0.5841098,11.61922,-5.197315,0.3884151,11.61922,-5.197315,-0.5841098,11.86139,-5.197315,0.3884151,11.86139,-5.197315,-0.6078297,12.47613,-0.6334977,-0.6078297,13.01636,-0.6334977,-1.315717,12.77419,-0.836106,-1.315717,13.55659,-0.836106,0.8104349,12.81145,-4.19156,0.8104349,12.30847,-4.19156,0.8104349,13.55659,-2.757158,0.8104349,12.77419,-2.757158,0.8104349,13.55659,-1.341385,0.8104349,12.77419,-1.341385,0.3884151,11.86139,-5.197315,0.3884151,11.61922,-5.197315,0.8104349,12.81145,-4.19156,0.8104349,12.30847,-4.19156,-1.315717,12.77419,0.7847688,-1.315717,12.77419,-0.836106,-2.73149,12.77419,0.7847688,-2.73149,12.77419,-0.836106,0.6078266,13.01636,0.5821586,-0.6078297,13.01636,0.5821586,0.4254785,13.29579,0.3998105,-0.4254816,13.29579,0.3998105,0.8104349,12.30847,4.140222,-0.8104399,12.30847,4.140222,0.5841066,11.61922,5.145977,-0.3884183,11.61922,5.145977,0.8104349,12.81145,-4.19156,-0.8104399,12.81145,-4.19156,0.3884151,11.86139,-5.197315,-0.5841098,11.86139,-5.197315,0.6078266,13.01636,-0.6334977,0.6078266,13.01636,0.5821586,0.4254785,13.29579,-0.4511496,0.4254785,13.29579,0.3998105,-0.6078297,13.01636,-0.6334977,-0.4254816,13.29579,-0.4511496,-0.6078297,13.01636,0.5821586,-0.4254816,13.29579,0.3998105,0.8104349,12.77419,-2.757158,0.8104349,12.30847,-4.19156,-0.8104399,12.77419,-2.757158,-0.8104399,12.30847,-4.19156,0.8104349,12.77419,-1.341385,0.8104349,12.77419,-2.757158,-0.8104399,12.77419,-1.341385,-0.8104399,12.77419,-2.757158,-4.165893,12.81145,-0.836106,-4.165893,12.81145,0.7847688,-5.171648,11.86139,-0.4140862,-5.171648,11.86139,0.5584387,-2.73149,12.77419,0.7847688,-2.73149,12.77419,-0.836106,-4.165893,12.30847,0.7847688,-4.165893,12.30847,-0.836106,-0.8104399,12.30847,-4.19156,-0.8104399,12.81145,-4.19156,-0.8104399,12.77419,-2.757158,-0.8104399,13.55659,-2.757158,-0.8104399,12.77419,-1.341385,-0.8104399,13.55659,-1.341385,-1.315717,13.55659,-0.836106,-1.315717,13.55659,0.7847688,-2.73149,13.55659,-0.836106,-2.73149,13.55659,0.7847688,5.171644,11.86139,-0.6097777,5.171644,11.61922,-0.6097777,5.171644,11.86139,0.3627472,5.171644,11.61922,0.3627472,-5.171648,11.61922,-0.4140862,-4.165893,12.30847,-0.836106,-5.171648,11.86139,-0.4140862,-4.165893,12.81145,-0.836106,-0.6078297,12.47613,0.5821586,-0.6078297,12.47613,-0.6334977,-1.315717,12.77419,0.7847688,-1.315717,12.77419,-0.836106,0.8104349,13.55659,1.290045,0.8104349,12.77419,1.290045,0.8104349,13.55659,2.705819,0.8104349,12.77419,2.705819,0.8104349,12.81145,4.140222,0.8104349,12.30847,4.140222,0.8104349,12.81145,-4.19156,0.8104349,13.55659,-2.757158,-0.8104399,12.81145,-4.19156,-0.8104399,13.55659,-2.757158,0.8104349,12.81145,4.140222,0.8104349,12.30847,4.140222,0.5841066,11.86139,5.145977,0.5841066,11.61922,5.145977,2.731487,12.77419,0.7847688,2.731487,12.77419,-0.836106,1.315713,12.77419,0.7847688,1.315713,12.77419,-0.836106,-5.171648,11.61922,0.5584387,-5.171648,11.86139,0.5584387,-4.165893,12.30847,0.7847688,-4.165893,12.81145,0.7847688,4.16589,12.30847,0.7847688,4.16589,12.30847,-0.836106,2.731487,12.77419,0.7847688,2.731487,12.77419,-0.836106,0.8104349,13.55659,2.705819,0.8104349,12.81145,4.140222,-0.8104399,13.55659,2.705819,-0.8104399,12.81145,4.140222,2.731487,13.55659,-0.836106,2.731487,13.55659,0.7847688,1.315713,13.55659,-0.836106,1.315713,13.55659,0.7847688,0.5841066,11.61922,5.145977,-0.3884183,11.61922,5.145977,0.5841066,11.86139,5.145977,-0.3884183,11.86139,5.145977,5.171644,11.61922,-0.6097777,5.171644,11.86139,-0.6097777,4.16589,12.30847,-0.836106,4.16589,12.81145,-0.836106,0.6078266,12.47613,0.5821586,0.6078266,13.01636,0.5821586,1.315713,12.77419,0.7847688,1.315713,13.55659,0.7847688,1.315713,12.77419,0.7847688,1.315713,12.77419,-0.836106,0.6078266,12.47613,0.5821586,0.6078266,12.47613,-0.6334977,4.16589,12.81145,-0.836106,4.16589,12.81145,0.7847688,2.731487,13.55659,-0.836106,2.731487,13.55659,0.7847688,5.171644,11.61922,0.3627472,4.16589,12.30847,0.7847688,5.171644,11.86139,0.3627472,4.16589,12.81145,0.7847688,0.6078266,12.47613,-0.6334977,1.315713,12.77419,-0.836106,0.6078266,13.01636,-0.6334977,1.315713,13.55659,-0.836106,5.171644,11.61922,0.3627472,5.171644,11.61922,-0.6097777,4.16589,12.30847,0.7847688,4.16589,12.30847,-0.836106,1.315713,12.77419,-0.836106,2.731487,12.77419,-0.836106,1.315713,13.55659,-0.836106,4.16589,12.81145,-0.836106,2.731487,13.55659,-0.836106,4.16589,12.30847,-0.836106,1.315713,13.55659,-0.836106,1.315713,13.55659,0.7847688,0.6078266,13.01636,-0.6334977,0.6078266,13.01636,0.5821586,4.16589,12.30847,0.7847688,2.731487,12.77419,0.7847688,4.16589,12.81145,0.7847688,1.315713,12.77419,0.7847688,1.315713,13.55659,0.7847688,2.731487,13.55659,0.7847688,0.8104349,12.30847,4.140222,0.8104349,12.77419,2.705819,-0.8104399,12.30847,4.140222,-0.8104399,12.77419,2.705819,5.171644,11.86139,-0.6097777,5.171644,11.86139,0.3627472,4.16589,12.81145,-0.836106,4.16589,12.81145,0.7847688,0.6078266,12.47613,-0.6334977,0.3765083,12.47613,0.3508373,0.6078266,12.47613,0.5821586,-0.6078297,12.47613,0.5821586,-0.3765083,12.47613,0.3508373,-0.3765083,12.47613,-0.4021794,0.3765083,12.47613,-0.4021794,-0.6078297,12.47613,-0.6334977,-0.6078297,12.47613,0.5821586,-0.6078297,13.01636,0.5821586,-0.8104399,12.77419,1.290045,-0.8104399,13.55659,1.290045,0.8104349,13.55659,1.290045,-0.8104399,13.55659,1.290045,0.6078266,13.01636,0.5821586,-0.6078297,13.01636,0.5821586,0.4254785,13.29579,-0.4511496,0.4254785,13.29579,0.3998105,-0.4254816,13.29579,-0.4511496,-0.4254816,13.29579,0.3998105,-0.6078297,12.47613,0.5821586,-1.315717,12.77419,0.7847688,-0.6078297,13.01636,0.5821586,-1.315717,13.55659,0.7847688,-0.8104399,12.77419,1.290045,-0.8104399,13.55659,1.290045,-0.8104399,12.77419,2.705819,-0.8104399,13.55659,2.705819,-0.8104399,12.30847,4.140222,-0.8104399,12.81145,4.140222,0.8104349,13.55659,1.290045,0.8104349,13.55659,2.705819,-0.8104399,13.55659,1.290045,-0.8104399,13.55659,2.705819,-4.165893,12.30847,0.7847688,-4.165893,12.30847,-0.836106,-5.171648,11.61922,0.5584387,-5.171648,11.61922,-0.4140862,0.8104349,12.30847,-4.19156,0.3884151,11.61922,-5.197315,-0.8104399,12.30847,-4.19156,-0.5841098,11.61922,-5.197315,0.8104349,12.77419,1.290045,0.6078266,12.47613,0.5821586,-0.8104399,12.77419,1.290045,-0.6078297,12.47613,0.5821586,0.8104349,12.81145,4.140222,0.5841066,11.86139,5.145977,-0.8104399,12.81145,4.140222,-0.3884183,11.86139,5.145977,0.6078266,13.01636,0.5821586,0.6078266,12.47613,0.5821586,0.8104349,13.55659,1.290045,0.8104349,12.77419,1.290045,0.8104349,13.55659,-1.341385,0.6078266,13.01636,-0.6334977,-0.8104399,13.55659,-1.341385,-0.6078297,13.01636,-0.6334977,-4.165893,12.30847,-0.836106,-2.73149,12.77419,-0.836106,-4.165893,12.81145,-0.836106,-1.315717,12.77419,-0.836106,-1.315717,13.55659,-0.836106,-2.73149,13.55659,-0.836106,0.8104349,13.55659,-2.757158,0.8104349,13.55659,-1.341385,-0.8104399,13.55659,-2.757158,-0.8104399,13.55659,-1.341385,-1.315717,12.77419,0.7847688,-2.73149,12.77419,0.7847688,-1.315717,13.55659,0.7847688,-4.165893,12.81145,0.7847688,-2.73149,13.55659,0.7847688,-4.165893,12.30847,0.7847688,-0.8104399,12.77419,-1.341385,-0.8104399,13.55659,-1.341385,-0.6078297,12.47613,-0.6334977,-0.6078297,13.01636,-0.6334977,-2.73149,13.55659,-0.836106,-2.73149,13.55659,0.7847688,-4.165893,12.81145,-0.836106,-4.165893,12.81145,0.7847688,0.8104349,13.55659,-1.341385,0.8104349,12.77419,-1.341385,0.6078266,13.01636,-0.6334977,0.6078266,12.47613,-0.6334977,0.6078266,13.01636,-0.6334977,0.6078266,13.01636,0.5821586,-0.6078297,13.01636,-0.6334977,-0.6078297,13.01636,0.5821586,-0.5841098,11.61922,-5.197315,-0.5841098,11.86139,-5.197315,-0.8104399,12.30847,-4.19156,-0.8104399,12.81145,-4.19156,-0.6078297,13.01636,-0.6334977,-0.6078297,13.01636,0.5821586,-1.315717,13.55659,-0.836106,-1.315717,13.55659,0.7847688,-0.6078297,13.01636,-0.6334977,0.6078266,13.01636,-0.6334977,-0.4254816,13.29579,-0.4511496,0.4254785,13.29579,-0.4511496,0.3765083,12.47613,-0.4021794,0.482703,8.676815,0.2360864,0.3765083,12.47613,0.3508373,0.482703,8.676815,1.201493,0.8471444,0.6674473,0.8471447,-0.8471447,0.6674473,0.8471447,0.6523014,3.568276,0.6523014,-0.6523014,3.568276,0.6523014,-0.4827031,8.676815,0.2360864,0.482703,8.676815,0.2360864,-0.3765083,12.47613,-0.4021794,0.3765083,12.47613,-0.4021794,-0.7285445,0,-0.7285445,0.7285445,0,-0.7285445,-0.8471447,0.6674473,-0.8471447,0.8471444,0.6674473,-0.8471447,0.482703,8.676815,1.201493,-0.4827031,8.676815,1.201493,0.3765083,12.47613,0.3508373,-0.3765083,12.47613,0.3508373,-0.8471447,0.6674473,-0.8471447,-0.6523014,3.568276,-0.6523014,-0.8471447,0.6674473,0.8471447,-0.6523014,3.568276,0.6523014,0.8471444,0.6674473,-0.8471447,0.8471444,0.6674473,0.8471447,0.6523014,3.568276,-0.6523014,0.6523014,3.568276,0.6523014,0.7285445,0,0.7285445,-0.7285445,0,0.7285445,0.8471444,0.6674473,0.8471447,-0.8471447,0.6674473,0.8471447,0.6523014,3.568276,-0.6523014,0.6523014,3.568276,0.6523014,0.482703,8.676815,0.2360864,0.482703,8.676815,1.201493,-0.8471447,0.6674473,-0.8471447,-0.8471447,0.6674473,0.8471447,-0.7285445,0,-0.7285445,-0.7285445,0,0.7285445,-0.6523014,3.568276,-0.6523014,0.6523014,3.568276,-0.6523014,-0.4827031,8.676815,0.2360864,0.482703,8.676815,0.2360864,0.8471444,0.6674473,-0.8471447,0.7285445,0,-0.7285445,0.8471444,0.6674473,0.8471447,0.7285445,0,0.7285445,-0.6523014,3.568276,-0.6523014,-0.4827031,8.676815,0.2360864,-0.6523014,3.568276,0.6523014,-0.4827031,8.676815,1.201493,-0.8471447,0.6674473,-0.8471447,0.8471444,0.6674473,-0.8471447,-0.6523014,3.568276,-0.6523014,0.6523014,3.568276,-0.6523014,-0.3765083,12.47613,-0.4021794,-0.3765083,12.47613,0.3508373,-0.4827031,8.676815,0.2360864,-0.4827031,8.676815,1.201493,0.6523014,3.568276,0.6523014,-0.6523014,3.568276,0.6523014,0.482703,8.676815,1.201493,-0.4827031,8.676815,1.201493,0.7285445,0,0.7285445,0.7285445,0,-0.7285445,-0.7285445,0,0.7285445,-0.7285445,0,-0.7285445 + } + PolygonVertexIndex: *570 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,27,-27,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,99,-99,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,165,-165,163,165,-168,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,175,-175,177,176,-175,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,187,-190,191,190,-190,187,192,-187,193,186,-193,191,193,-193,189,193,-192,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,213,-213,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,247,-247,249,248,-247,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,257,-257,255,257,-260,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1710 { + a: -1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,0,-0.9216354,-0.3880571,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,-0.9221115,0,0.3869242,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,0.2751669,0,-0.9613966,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0.922112,0,-0.3869231,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,0.5465028,0.8374573,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,-0.8248827,-0.5653039,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0,0.7269483,-0.6866922,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,-0.8374573,0.5465028,0,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-0.9511248,0.3088067,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,-0.6866919,0.7269485,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,0.3088068,-0.9511247,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3869229,0,-0.9221121,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,-0.3880571,-0.9216354,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0,0.8874055,-0.4609897,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0.9756027,0,0.2195431,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.2195447,0,0.9756025,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,-0.3088067,-0.9511248,0,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,0.8874055,0.4609899,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,0.2195432,0,-0.9756027,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,-0.2751691,0,0.9613959,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.3880571,-0.9216354,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.4609897,0.8874055,0,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,0.3869244,0,0.9221114,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.2751669,0,-0.9613966,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,-0.5653042,-0.8248825,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,-0.6066734,0.7949512,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0,-0.9511247,-0.3088068,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0.6866922,0.7269483,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,-0.9613959,0,-0.2751691,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,0.7949512,-0.6066734,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,0.2751691,0,0.9613959,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0.5653039,-0.8248827,0,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.8248825,0.5653042,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,-0.9216354,0.3880571,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0,0.7269485,0.6866919,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0.9613966,0,-0.2751669,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0.7949512,0.6066734,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.9613959,0,0.2751691,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,-0.4609899,0.8874055,0,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0.9613966,0,0.2751669,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,-0.9756024,0,-0.2195448,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0.6066734,0.7949512,0,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0,0.5465028,-0.8374573,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,0.06701713,0.9977518,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1656734,-0.9861807,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,0,-0.1749517,-0.984577,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,-0.9977518,0.06701713,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0.9977518,0.06701704,0,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0,-0.1749518,0.984577,0.9994493,0.03318072,0,0.9994493,0.03318072,0,0.9994493,0.03318072,0,0.9994493,0.03318072,0,0.9994493,0.03318072,0,0.9994493,0.03318072,0,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,-0.984577,-0.1749518,0,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,0.9845771,-0.1749514,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,-0.9994493,0.03318072,0,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,0,0.06701712,-0.9977518,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,-0.9996096,0.02794011,0,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *712 { + a: -1.630261,45.74494,-1.630261,46.69838,2.198578,45.74494,2.198578,46.69838,3.190689,10.65283,3.190689,5.078919,-3.190708,10.65283,-3.190708,5.078919,-3.190689,24.38339,3.190708,24.38339,-2.393018,21.35947,2.393031,21.35947,13.79593,48.45856,13.79593,50.43876,18.09006,45.74494,18.09006,46.69838,2.299645,45.74494,-1.529193,45.74494,2.299645,46.69838,-1.529193,46.69838,2.986941,49.11863,2.986941,51.24551,5.885803,50.29208,5.885803,53.3724,16.50221,50.43876,16.50221,48.45856,10.85495,53.3724,10.85495,50.29208,5.281041,53.3724,5.281041,50.29208,18.27646,46.69838,18.27646,45.74494,13.98233,50.43876,13.98233,48.45856,-5.179986,3.089641,-5.179986,-3.291756,-10.7539,3.089641,-10.7539,-3.291756,2.393018,41.66336,-2.393031,41.66336,1.675112,42.977,-1.675125,42.977,-3.190689,13.94816,3.190708,13.94816,-2.299632,9.147881,1.529206,9.147881,-3.190689,22.63965,3.190708,22.63965,-1.529193,17.19268,2.299645,17.19268,2.494085,41.60814,-2.291963,41.60814,1.776179,42.92178,-1.574057,42.92178,-2.494085,41.60813,-1.776179,42.92177,2.291963,41.60813,1.574057,42.92177,3.190689,5.206116,3.190689,-0.7313319,-3.190708,5.206116,-3.190708,-0.7313319,3.190689,-5.281041,3.190689,-10.85495,-3.190708,-5.281041,-3.190708,-10.85495,-3.291756,22.7131,3.089641,22.7131,-1.630261,17.26613,2.198578,17.26613,-3.089641,5.302236,3.291756,5.302236,-3.089641,-0.63521,3.291756,-0.63521,-16.50221,48.45856,-16.50221,50.43876,-10.85495,50.29208,-10.85495,53.3724,-5.281041,50.29208,-5.281041,53.3724,5.179986,-3.291756,5.179986,3.089641,10.7539,-3.291756,10.7539,3.089641,2.4007,46.69838,2.4007,45.74494,-1.428138,46.69838,-1.428138,45.74494,18.14417,45.74494,13.85004,48.45856,18.14417,46.69838,13.85004,50.43876,2.291963,21.26633,-2.494085,21.26633,3.089641,24.29025,-3.291756,24.29025,-5.078919,53.3724,-5.078919,50.29208,-10.65283,53.3724,-10.65283,50.29208,-16.30009,50.43876,-16.30009,48.45856,-3.190689,8.607604,-3.190689,14.97139,3.190708,8.607604,3.190708,14.97139,-15.20191,50.43876,-15.20191,48.45856,-19.2606,46.69838,-19.2606,45.74494,10.75389,3.089641,10.75389,-3.291756,5.179974,3.089641,5.179974,-3.291756,-19.38138,45.74494,-19.38138,46.69838,-15.32269,48.45856,-15.32269,50.43876,3.089641,-0.6352042,-3.291756,-0.6352042,3.089641,5.302244,-3.291756,5.302244,3.190689,15.15076,3.190689,8.786977,-3.190708,15.15076,-3.190708,8.786977,-10.75389,-3.291756,-10.75389,3.089641,-5.179974,-3.291756,-5.179974,3.089641,2.299632,45.74494,-1.529206,45.74494,2.299632,46.69838,-1.529206,46.69838,-19.337,45.74494,-19.337,46.69838,-15.27832,48.45856,-15.27832,50.43876,2.931315,49.11863,2.931315,51.24551,5.830179,50.29208,5.830179,53.3724,-3.089641,24.29024,3.291756,24.29024,-2.291963,21.26632,2.494085,21.26632,3.291756,8.697291,-3.089641,8.697291,3.291756,15.06107,-3.089641,15.06107,18.22235,45.74494,13.92822,48.45856,18.22235,46.69838,13.92822,50.43876,-2.986929,49.11863,-5.885791,50.29208,-2.986929,51.24551,-5.885791,53.3724,1.428138,9.064535,-2.4007,9.064535,3.089641,13.86481,-3.291756,13.86481,-5.179974,50.29208,-10.75389,50.29208,-5.179974,53.3724,-16.40114,50.43876,-10.75389,53.3724,-16.40114,48.45856,-3.291756,36.49744,3.089641,36.49744,-2.494085,32.99162,2.291963,32.99162,16.40114,48.45856,10.75389,50.29208,16.40114,50.43876,5.179974,50.29208,5.179974,53.3724,10.75389,53.3724,-3.190689,-0.5390823,-3.190689,5.398364,3.190708,-0.5390823,3.190708,5.398364,2.4007,17.26616,-1.428138,17.26616,3.291756,22.71312,-3.089641,22.71312,2.393018,-2.494082,1.482317,1.381252,2.393018,2.291966,-2.39303,2.291966,-1.482316,1.381252,-1.482316,-1.58338,1.482317,-1.58338,-2.39303,-2.494082,2.861972,49.11863,2.861972,51.24551,5.760836,50.29208,5.760836,53.3724,-3.190689,36.41711,3.190708,36.41711,-2.393018,32.91129,2.393031,32.91129,-1.675112,-1.776179,-1.675112,1.574057,1.675125,-1.776179,1.675125,1.574057,-2.931327,49.11863,-5.830191,50.29208,-2.931327,51.24551,-5.830191,53.3724,5.078919,50.29208,5.078919,53.3724,10.65283,50.29208,10.65283,53.3724,16.30009,48.45856,16.30009,50.43876,-3.190689,5.078919,-3.190689,10.65283,3.190708,5.078919,3.190708,10.65283,-3.089641,13.86479,3.291756,13.86479,-2.198578,9.064511,1.630261,9.064511,3.190689,13.78144,1.529193,8.981167,-3.190708,13.78144,-2.299645,8.981167,3.190689,24.19711,2.393018,21.17318,-3.190708,24.19711,-2.393031,21.17318,3.190689,22.78657,2.299632,17.3396,-3.190708,22.78657,-1.529206,17.3396,-2.861964,51.24551,-2.861964,49.11863,-5.760827,53.3724,-5.760827,50.29208,3.190689,36.57778,2.393018,33.07196,-3.190708,36.57778,-2.393031,33.07196,16.40115,48.45856,10.7539,50.29208,16.40115,50.43876,5.179986,50.29208,5.179986,53.3724,10.7539,53.3724,-3.190689,-10.85495,-3.190689,-5.281041,3.190708,-10.85495,3.190708,-5.281041,-5.179986,50.29208,-10.7539,50.29208,-5.179986,53.3724,-16.40115,50.43876,-10.7539,53.3724,-16.40115,48.45856,-5.955155,50.29208,-5.955155,53.3724,-3.056291,49.11863,-3.056291,51.24551,-3.291756,15.06107,3.089641,15.06107,-3.291756,8.697289,3.089641,8.697289,5.955146,53.3724,5.955146,50.29208,3.056284,51.24551,3.056284,49.11863,-2.393018,-2.494085,-2.393018,2.291963,2.393031,-2.494085,2.393031,2.291963,-19.45778,45.74494,-19.45778,46.69838,-15.39909,48.45856,-15.39909,50.43876,2.494085,32.99163,-2.291963,32.99163,3.291756,36.49745,-3.089641,36.49745,2.393031,41.55291,-2.393018,41.55291,1.675125,42.86654,-1.675112,42.86654,1.583383,49.05803,-0.9294741,34.09426,-1.381249,49.05803,-4.730286,34.09426,3.335214,2.398321,-3.335215,2.398321,2.568116,13.84464,-2.568116,13.84464,1.900406,33.53462,-1.900406,33.53462,1.482316,48.70216,-1.482316,48.70216,2.868285,0.5018114,-2.868285,0.5018114,3.335215,3.170719,-3.335214,3.170719,1.900406,32.30185,-1.900406,32.30185,1.482316,47.63012,-1.482316,47.63012,-3.335215,2.398321,-2.568116,13.84464,3.335215,2.398321,2.568116,13.84464,3.335215,2.398322,-3.335215,2.398322,2.568116,13.84464,-2.568116,13.84464,2.868285,0.5018116,-2.868285,0.5018116,3.335214,3.170719,-3.335215,3.170719,2.568116,13.95538,-2.568116,13.95538,-0.9294741,34.07882,-4.730286,34.07882,-3.335215,3.170719,3.335215,3.170719,-2.868285,0.5018116,2.868285,0.5018116,2.568116,13.40061,-2.568116,13.40061,1.900406,33.81482,-1.900406,33.81482,3.335215,3.170718,2.868285,0.5018104,-3.335215,3.170718,-2.868285,0.5018104,-2.568116,13.95538,0.9294741,34.07882,2.568116,13.95538,4.730286,34.07882,3.335215,2.398321,-3.335214,2.398321,2.568116,13.84464,-2.568116,13.84464,-1.583383,49.05803,1.381249,49.05803,0.9294741,34.09426,4.730286,34.09426,2.568116,14.24235,-2.568116,14.24235,1.900406,34.4706,-1.900406,34.4706,2.868285,2.868285,2.868285,-2.868285,-2.868285,2.868285,-2.868285,-2.868285 + } + UVIndex: *570 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,27,26,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,99,98,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,165,164,163,165,167,168,170,169,171,169,170,172,174,173,175,173,174,176,175,174,177,176,174,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,187,189,191,190,189,187,192,186,193,186,192,191,193,192,189,193,191,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,213,212,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,247,246,249,248,246,250,252,251,253,251,252,254,256,255,257,255,256,258,257,256,255,257,259,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *190 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_palmTall, Model::RootNode + C: "OO",5350280525053558944,0 + + ;Geometry::, Model::Mesh tree_palmTall + C: "OO",5719431206121206767,5350280525053558944 + + ;Material::leafsGreen, Model::Mesh tree_palmTall + C: "OO",3030,5350280525053558944 + + ;Material::woodBark, Model::Mesh tree_palmTall + C: "OO",3046,5350280525053558944 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_palmTall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmTall.fbx.import new file mode 100644 index 0000000..5ca7b71 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_palmTall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://y2lrs6c7ws1u" +path="res://.godot/imported/tree_palmTall.fbx-fb1ce2c73bf584a7f25f1648320fbabf.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_palmTall.fbx" +dest_files=["res://.godot/imported/tree_palmTall.fbx-fb1ce2c73bf584a7f25f1648320fbabf.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultA.fbx new file mode 100644 index 0000000..dacf080 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 38 + Millisecond: 930 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineDefaultA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineDefaultA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5358894781307873181, "Model::tree_pineDefaultA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4891491323748403361, "Geometry::", "Mesh" { + Vertices: *1176 { + a: 0.523347,12.75257,0.523347,-5.775292E-14,12.75257,0.7401245,-5.775292E-14,15.45836,-7.219114E-15,-5.775292E-14,12.75257,-0.7401245,0.523347,12.75257,-0.523347,-5.775292E-14,15.45836,-7.219114E-15,-5.775292E-14,7.901608,2.12784,-1.50461,7.901608,1.50461,-5.775292E-14,9.091368,1.510767,-1.068273,9.091368,1.068273,0.7371085,12.03322,-0.7371085,1.042429,12.03322,0,0.523347,12.75257,-0.523347,0.7401245,12.75257,-7.219114E-15,1.50461,7.901608,-1.50461,2.12784,7.901608,1.443823E-14,1.068273,9.091368,-1.068273,1.510767,9.091368,0,0.7371085,10.95407,0.7371085,-5.775292E-14,10.95407,1.042429,0.513347,12.03322,0.513347,0,12.03322,0.7259824,1.50461,7.901608,1.50461,-5.775292E-14,7.901608,2.12784,1.068273,9.091368,1.068273,-5.775292E-14,9.091368,1.510767,1.880763,5.436287,1.880763,-5.775292E-14,5.436287,2.6598,1.335341,6.923488,1.335341,-5.775292E-14,6.923488,1.888458,1.335341,6.923488,1.335341,-5.775292E-14,6.923488,1.888458,1.067629,7.901608,1.067629,0,7.901608,1.509855,-1.50461,7.901608,-1.50461,-1.068273,9.091368,-1.068273,-2.12784,7.901608,1.443823E-14,-1.510767,9.091368,0,-1.888458,6.923488,-1.443823E-14,-1.335341,6.923488,1.335341,-2.6598,5.436287,1.443823E-14,-1.880763,5.436287,1.880763,1.46821,9.870432,0,1.209212,9.870432,0,1.038181,9.870432,1.038181,0.8550422,9.870432,0.8550422,-5.775292E-14,9.870432,1.46821,-5.775292E-14,9.870432,1.209212,-1.038181,9.870432,1.038181,-0.8550422,9.870432,0.8550422,-1.209212,9.870432,-1.443823E-14,-1.46821,9.870432,0,1.038181,9.870432,-1.038181,0.8550422,9.870432,-0.8550422,-5.775292E-14,9.870432,-1.46821,-5.775292E-14,9.870432,-1.209212,-0.8550422,9.870432,-0.8550422,-1.038181,9.870432,-1.038181,-5.775292E-14,5.436287,2.6598,-1.880763,5.436287,1.880763,-5.775292E-14,6.923488,1.888458,-1.335341,6.923488,1.335341,-5.775292E-14,5.436287,-2.6598,1.880763,5.436287,-1.880763,-5.775292E-14,6.923488,-1.888458,1.335341,6.923488,-1.335341,1.068273,9.091368,-1.068273,1.510767,9.091368,0,0.8550422,9.870432,-0.8550422,1.209212,9.870432,0,-0.7371085,12.03322,-0.7371085,-0.523347,12.75257,-0.523347,-1.042429,12.03322,0,-0.7401245,12.75257,-7.219114E-15,0.7371085,10.95407,-0.7371085,1.042429,10.95407,-7.219114E-15,0.513347,12.03322,-0.513347,0.7259824,12.03322,-7.219114E-15,2.12784,7.901608,1.443823E-14,1.509855,7.901608,-7.219114E-15,1.50461,7.901608,1.50461,1.067629,7.901608,1.067629,-5.775292E-14,7.901608,2.12784,0,7.901608,1.509855,-1.067629,7.901608,1.067629,-1.50461,7.901608,1.50461,-1.509855,7.901608,-7.219114E-15,-2.12784,7.901608,1.443823E-14,1.50461,7.901608,-1.50461,1.067629,7.901608,-1.067629,-5.775292E-14,7.901608,-2.12784,0,7.901608,-1.509855,-1.067629,7.901608,-1.067629,-1.50461,7.901608,-1.50461,1.068273,9.091368,1.068273,-5.775292E-14,9.091368,1.510767,0.8550422,9.870432,0.8550422,-5.775292E-14,9.870432,1.209212,-1.880763,5.436287,-1.880763,-1.335341,6.923488,-1.335341,-2.6598,5.436287,1.443823E-14,-1.888458,6.923488,-1.443823E-14,-5.775292E-14,6.923488,-1.888458,1.335341,6.923488,-1.335341,0,7.901608,-1.509855,1.067629,7.901608,-1.067629,-0.7371085,12.03322,-0.7371085,-5.775292E-14,12.03322,-1.042429,-0.523347,12.75257,-0.523347,-5.775292E-14,12.75257,-0.7401245,-1.038181,9.870432,-1.038181,-0.7371085,10.95407,-0.7371085,-1.46821,9.870432,0,-1.042429,10.95407,-7.219114E-15,0.7259824,12.03322,-7.219114E-15,1.042429,10.95407,-7.219114E-15,0.513347,12.03322,0.513347,0.7371085,10.95407,0.7371085,1.510767,9.091368,0,2.12784,7.901608,1.443823E-14,1.068273,9.091368,1.068273,1.50461,7.901608,1.50461,-0.7401245,12.75257,-7.219114E-15,-0.523347,12.75257,0.523347,-1.042429,12.03322,0,-0.7371085,12.03322,0.7371085,0.7371085,12.03322,0.7371085,-5.775292E-14,12.03322,1.042429,0.523347,12.75257,0.523347,-5.775292E-14,12.75257,0.7401245,-5.775292E-14,7.901608,-2.12784,1.50461,7.901608,-1.50461,-5.775292E-14,9.091368,-1.510767,1.068273,9.091368,-1.068273,1.038181,9.870432,-1.038181,1.46821,9.870432,0,0.7371085,10.95407,-0.7371085,1.042429,10.95407,-7.219114E-15,-5.775292E-14,15.45836,-7.219114E-15,0.523347,12.75257,-0.523347,0.7401245,12.75257,-7.219114E-15,-1.510767,9.091368,0,-1.068273,9.091368,1.068273,-2.12784,7.901608,1.443823E-14,-1.50461,7.901608,1.50461,-5.775292E-14,12.03322,-1.042429,0.7371085,12.03322,-0.7371085,-5.775292E-14,12.75257,-0.7401245,0.523347,12.75257,-0.523347,-1.042429,10.95407,-7.219114E-15,-0.7371085,10.95407,0.7371085,-1.46821,9.870432,0,-1.038181,9.870432,1.038181,-5.775292E-14,12.03322,1.042429,-0.7371085,12.03322,0.7371085,-5.775292E-14,12.75257,0.7401245,-0.523347,12.75257,0.523347,-5.775292E-14,15.45836,-7.219114E-15,0.7401245,12.75257,-7.219114E-15,0.523347,12.75257,0.523347,-1.068273,9.091368,-1.068273,-0.8550422,9.870432,-0.8550422,-1.510767,9.091368,0,-1.209212,9.870432,-1.443823E-14,-0.7401245,12.75257,-7.219114E-15,-5.775292E-14,15.45836,-7.219114E-15,-0.523347,12.75257,0.523347,-0.7259824,12.03322,-1.443823E-14,-0.513347,12.03322,0.513347,-1.042429,10.95407,-7.219114E-15,-0.7371085,10.95407,0.7371085,-0.7371085,10.95407,-0.7371085,-0.513347,12.03322,-0.513347,-1.042429,10.95407,-7.219114E-15,-0.7259824,12.03322,-1.443823E-14,0.7401245,12.75257,-7.219114E-15,1.042429,12.03322,0,0.523347,12.75257,0.523347,0.7371085,12.03322,0.7371085,-1.335341,6.923488,-1.335341,-1.067629,7.901608,-1.067629,-1.888458,6.923488,-1.443823E-14,-1.509855,7.901608,-7.219114E-15,-5.775292E-14,9.870432,1.46821,-1.038181,9.870432,1.038181,-5.775292E-14,10.95407,1.042429,-0.7371085,10.95407,0.7371085,-5.775292E-14,9.091368,1.510767,-1.068273,9.091368,1.068273,-5.775292E-14,9.870432,1.209212,-0.8550422,9.870432,0.8550422,-5.775292E-14,10.95407,1.042429,-0.7371085,10.95407,0.7371085,0,12.03322,0.7259824,-0.513347,12.03322,0.513347,1.888458,6.923488,-1.443823E-14,2.6598,5.436287,1.443823E-14,1.335341,6.923488,1.335341,1.880763,5.436287,1.880763,1.888458,6.923488,-1.443823E-14,1.335341,6.923488,1.335341,1.509855,7.901608,-7.219114E-15,1.067629,7.901608,1.067629,-1.50461,7.901608,-1.50461,-5.775292E-14,7.901608,-2.12784,-1.068273,9.091368,-1.068273,-5.775292E-14,9.091368,-1.510767,-5.775292E-14,9.870432,-1.46821,1.038181,9.870432,-1.038181,-5.775292E-14,10.95407,-1.042429,0.7371085,10.95407,-0.7371085,-1.880763,5.436287,-1.880763,-5.775292E-14,5.436287,-2.6598,-1.335341,6.923488,-1.335341,-5.775292E-14,6.923488,-1.888458,1.335341,6.923488,-1.335341,1.888458,6.923488,-1.443823E-14,1.067629,7.901608,-1.067629,1.509855,7.901608,-7.219114E-15,-1.038181,9.870432,-1.038181,-5.775292E-14,9.870432,-1.46821,-0.7371085,10.95407,-0.7371085,-5.775292E-14,10.95407,-1.042429,1.880763,5.436287,-1.880763,2.6598,5.436287,1.443823E-14,1.335341,6.923488,-1.335341,1.888458,6.923488,-1.443823E-14,-0.7401245,12.75257,-7.219114E-15,-0.523347,12.75257,-0.523347,-5.775292E-14,15.45836,-7.219114E-15,1.209212,9.870432,0,1.510767,9.091368,0,0.8550422,9.870432,0.8550422,1.068273,9.091368,1.068273,-0.7371085,10.95407,-0.7371085,-5.775292E-14,10.95407,-1.042429,-0.513347,12.03322,-0.513347,-5.775292E-14,12.03322,-0.7259824,-1.068273,9.091368,-1.068273,-5.775292E-14,9.091368,-1.510767,-0.8550422,9.870432,-0.8550422,-5.775292E-14,9.870432,-1.209212,-0.523347,12.75257,-0.523347,-5.775292E-14,12.75257,-0.7401245,-5.775292E-14,15.45836,-7.219114E-15,-1.888458,6.923488,-1.443823E-14,-1.509855,7.901608,-7.219114E-15,-1.335341,6.923488,1.335341,-1.067629,7.901608,1.067629,-5.775292E-14,12.75257,0.7401245,-0.523347,12.75257,0.523347,-5.775292E-14,15.45836,-7.219114E-15,1.042429,10.95407,-7.219114E-15,1.46821,9.870432,0,0.7371085,10.95407,0.7371085,1.038181,9.870432,1.038181,-5.775292E-14,10.95407,-1.042429,0.7371085,10.95407,-0.7371085,-5.775292E-14,12.03322,-0.7259824,0.513347,12.03322,-0.513347,-5.775292E-14,6.923488,1.888458,-1.335341,6.923488,1.335341,0,7.901608,1.509855,-1.067629,7.901608,1.067629,1.042429,12.03322,0,0.7371085,12.03322,-0.7371085,0.7371085,12.03322,0.7371085,0.7259824,12.03322,-7.219114E-15,0.513347,12.03322,0.513347,-5.775292E-14,12.03322,1.042429,0,12.03322,0.7259824,-0.513347,12.03322,0.513347,-0.7371085,12.03322,0.7371085,-0.7259824,12.03322,-1.443823E-14,0.513347,12.03322,-0.513347,-5.775292E-14,12.03322,-1.042429,-5.775292E-14,12.03322,-0.7259824,-0.513347,12.03322,-0.513347,-0.7371085,12.03322,-0.7371085,-1.042429,12.03322,0,1.038181,9.870432,1.038181,-5.775292E-14,9.870432,1.46821,0.7371085,10.95407,0.7371085,-5.775292E-14,10.95407,1.042429,-5.775292E-14,9.091368,-1.510767,1.068273,9.091368,-1.068273,-5.775292E-14,9.870432,-1.209212,0.8550422,9.870432,-0.8550422,-1.335341,6.923488,-1.335341,-5.775292E-14,6.923488,-1.888458,-1.067629,7.901608,-1.067629,0,7.901608,-1.509855,-1.209212,9.870432,-1.443823E-14,-0.8550422,9.870432,0.8550422,-1.510767,9.091368,0,-1.068273,9.091368,1.068273,2.6598,5.436287,1.443823E-14,1.880763,5.436287,-1.880763,1.880763,5.436287,1.880763,-5.775292E-14,5.436287,2.6598,0.2890224,5.436287,0.2890224,-0.2890224,5.436287,0.2890224,-1.880763,5.436287,1.880763,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,-5.775292E-14,5.436287,-2.6598,-1.880763,5.436287,-1.880763,-2.6598,5.436287,1.443823E-14,0.750464,0,0.750464,-0.750464,0,0.750464,0.4878016,0.917696,0.4878016,-0.4878016,0.917696,0.4878016,0.750464,0,-0.750464,0.750464,0,0.750464,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,-0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,-0.750464,0,0.750464,-0.4878016,0.917696,0.4878016,-0.750464,0,-0.750464,0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,0.4878016,0.917696,-0.4878016,-0.4355784,2.10482,-0.2951519,-0.4355784,2.10482,0.03764804,-0.9377697,2.047796,-0.2319199,-0.9377697,2.047796,-0.02558396,-0.4538611,1.689222,0.03764804,-0.949105,1.790125,-0.02558396,-0.4355784,2.10482,0.03764804,-0.9377697,2.047796,-0.02558396,-0.4538611,1.689222,0.03764804,-0.4538611,1.689222,-0.2951519,-0.949105,1.790125,-0.02558396,-0.949105,1.790125,-0.2319199,0.750464,0,0.750464,0.750464,0,-0.750464,-0.750464,0,0.750464,-0.750464,0,-0.750464,-0.949105,1.790125,-0.2319199,-0.9377697,2.047796,-0.2319199,-0.949105,1.790125,-0.02558396,-0.9377697,2.047796,-0.02558396,-0.4538611,1.689222,-0.2951519,-0.4355784,2.10482,-0.2951519,-0.949105,1.790125,-0.2319199,-0.9377697,2.047796,-0.2319199,-0.1482742,4.214054,0.3427902,-0.0817142,4.173154,0.9275526,-0.1482742,3.881576,0.3574164,-0.0817142,3.973667,0.9363285,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,0.2890224,5.436287,-0.2890224,0.2890224,5.436287,0.2890224,0.1845258,3.881576,0.3574164,-0.1482742,3.881576,0.3574164,0.1179658,3.973667,0.9363285,-0.0817142,3.973667,0.9363285,0.1845258,4.214054,0.3427902,0.1845258,3.881576,0.3574164,0.1179658,4.173154,0.9275526,0.1179658,3.973667,0.9363285,-0.4878016,0.917696,-0.4878016,0.4878016,0.917696,-0.4878016,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,0.1845258,4.214054,0.3427902,0.1179658,4.173154,0.9275526,-0.1482742,4.214054,0.3427902,-0.0817142,4.173154,0.9275526,0.1179658,3.973667,0.9363285,-0.0817142,3.973667,0.9363285,0.1179658,4.173154,0.9275526,-0.0817142,4.173154,0.9275526,-0.4878016,0.917696,0.4878016,0.1845258,3.881576,0.3574164,0.4878016,0.917696,0.4878016,0.2890224,5.436287,0.2890224,0.1845258,4.214054,0.3427902,-0.1482742,4.214054,0.3427902,-0.1482742,3.881576,0.3574164,-0.2890224,5.436287,0.2890224,-0.4878016,0.917696,-0.4878016,-0.4538611,1.689222,-0.2951519,-0.4878016,0.917696,0.4878016,-0.4538611,1.689222,0.03764804,-0.4355784,2.10482,0.03764804,-0.2890224,5.436287,0.2890224,-0.4355784,2.10482,-0.2951519,-0.2890224,5.436287,-0.2890224 + } + PolygonVertexIndex: *690 { + a: 0,2,-2,3,5,-5,6,8,-8,9,7,-9,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,45,-45,47,45,-47,48,47,-47,49,47,-49,50,49,-49,51,50,-49,42,43,-53,53,52,-44,54,52,-54,55,54,-54,56,54,-56,57,54,-57,50,57,-57,51,57,-51,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,81,-81,83,81,-83,84,83,-83,85,84,-83,86,84,-86,87,86,-86,78,79,-89,89,88,-80,90,88,-90,91,90,-90,92,90,-92,93,90,-93,86,93,-93,87,93,-87,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,108,-108,109,107,-109,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,143,-143,144,142,-144,145,147,-147,148,146,-148,149,151,-151,152,150,-152,153,155,-155,156,154,-156,157,159,-159,160,162,-162,163,161,-163,164,166,-166,167,169,-169,170,168,-170,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,205,-205,206,204,-206,207,209,-209,210,208,-210,211,213,-213,214,212,-214,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,225,-225,226,224,-226,227,229,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,247,-247,248,246,-248,249,251,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,267,-267,269,268,-267,270,268,-270,271,270,-270,272,271,-270,273,271,-273,267,274,-266,275,265,-275,276,275,-275,277,275,-277,278,275,-278,273,278,-278,272,278,-274,279,278,-273,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,297,-300,301,300,-300,302,301,-300,303,301,-303,300,304,-298,305,297,-305,303,305,-305,306,305,-304,302,306,-304,307,306,-303,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,377,-380,381,380,-380,377,382,-377,383,376,-383,381,383,-383,379,383,-382,384,386,-386,387,385,-387,388,387,-387,389,388,-387,385,390,-385,391,384,-391,388,391,-391,389,391,-389 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2070 { + a: 0.3640014,0.3086322,0.8787771,0.3710195,0.2450095,0.8957203,0.3640014,0.3086322,0.8787771,0.3640014,0.3086322,-0.8787771,0.3710195,0.2450095,-0.8957203,0.3640014,0.3086322,-0.8787771,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,0.8612435,0.3619348,-0.3567388,0.8787771,0.3086322,-0.3640014,0.8612435,0.3619348,-0.3567388,0.8787771,0.3086322,-0.3640014,0.8612435,0.3619348,-0.3567388,0.8787771,0.3086322,-0.3640014,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.3644813,0.3047398,0.8799357,0.3693685,0.2614892,0.8917344,0.3644813,0.3047398,0.8799357,0.3693685,0.2614892,0.8917344,0.3644813,0.3047398,0.8799357,0.3693685,0.2614892,0.8917344,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,-0.8331671,0.4321253,-0.3451091,-0.8331671,0.4321253,-0.3451091,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8331671,0.4321253,-0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,-0.8612435,0.3619348,-0.3567388,-0.8612435,0.3619348,-0.3567388,-0.8787771,0.3086322,-0.3640014,-0.8787771,0.3086322,-0.3640014,-0.8787771,0.3086322,-0.3640014,-0.8612435,0.3619348,-0.3567388,0.8799357,0.3047398,-0.3644813,0.8917344,0.2614892,-0.3693685,0.8799357,0.3047398,-0.3644813,0.8917344,0.2614892,-0.3693685,0.8799357,0.3047398,-0.3644813,0.8917344,0.2614892,-0.3693685,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,-0.8331671,0.4321253,-0.3451091,-0.8331671,0.4321253,-0.3451091,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8331671,0.4321253,-0.3451091,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,-0.3567388,0.3619348,-0.8612435,-0.3640014,0.3086322,-0.8787771,-0.3567388,0.3619348,-0.8612435,-0.3640014,0.3086322,-0.8787771,-0.3567388,0.3619348,-0.8612435,-0.3640014,0.3086322,-0.8787771,-0.8684304,0.3412233,-0.3597156,-0.8684304,0.3412233,-0.3597156,-0.8799357,0.3047398,-0.3644813,-0.8799357,0.3047398,-0.3644813,-0.8799357,0.3047398,-0.3644813,-0.8684304,0.3412233,-0.3597156,0.8917344,0.2614892,0.3693685,0.8917344,0.2614892,0.3693685,0.8799357,0.3047398,0.3644813,0.8799357,0.3047398,0.3644813,0.8799357,0.3047398,0.3644813,0.8917344,0.2614892,0.3693685,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8508487,0.3896761,0.3524331,-0.8787771,0.3086322,0.3640014,-0.8612435,0.3619348,0.3567388,-0.8787771,0.3086322,0.3640014,-0.8612435,0.3619348,0.3567388,-0.8787771,0.3086322,0.3640014,-0.8612435,0.3619348,0.3567388,0.3567388,0.3619348,0.8612435,0.3640014,0.3086322,0.8787771,0.3567388,0.3619348,0.8612435,0.3640014,0.3086322,0.8787771,0.3567388,0.3619348,0.8612435,0.3640014,0.3086322,0.8787771,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.8684304,0.3412233,-0.3597156,0.8799357,0.3047398,-0.3644813,0.8684304,0.3412233,-0.3597156,0.8799357,0.3047398,-0.3644813,0.8684304,0.3412233,-0.3597156,0.8799357,0.3047398,-0.3644813,0.8957203,0.2450095,-0.3710195,0.8787771,0.3086322,-0.3640014,0.8787771,0.3086322,-0.3640014,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,0.3567388,0.3619348,-0.8612435,0.3640014,0.3086322,-0.8787771,0.3567388,0.3619348,-0.8612435,0.3640014,0.3086322,-0.8787771,0.3567388,0.3619348,-0.8612435,0.3640014,0.3086322,-0.8787771,-0.8799357,0.3047398,0.3644813,-0.8684304,0.3412233,0.3597156,-0.8799357,0.3047398,0.3644813,-0.8684304,0.3412233,0.3597156,-0.8799357,0.3047398,0.3644813,-0.8684304,0.3412233,0.3597156,-0.3567388,0.3619348,0.8612435,-0.3640014,0.3086322,0.8787771,-0.3567388,0.3619348,0.8612435,-0.3640014,0.3086322,0.8787771,-0.3567388,0.3619348,0.8612435,-0.3640014,0.3086322,0.8787771,0.8957203,0.2450095,0.3710195,0.8787771,0.3086322,0.3640014,0.8787771,0.3086322,0.3640014,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8508487,0.3896761,-0.3524331,-0.8787771,0.3086322,0.3640014,-0.8787771,0.3086322,0.3640014,-0.8957203,0.2450095,0.3710195,-0.8917344,0.2614892,0.3693685,-0.8799357,0.3047398,0.3644813,-0.8917344,0.2614892,0.3693685,-0.8799357,0.3047398,0.3644813,-0.8917344,0.2614892,0.3693685,-0.8799357,0.3047398,0.3644813,-0.8799357,0.3047398,-0.3644813,-0.8799357,0.3047398,-0.3644813,-0.8917344,0.2614892,-0.3693685,-0.8917344,0.2614892,-0.3693685,-0.8917344,0.2614892,-0.3693685,-0.8799357,0.3047398,-0.3644813,0.8787771,0.3086322,0.3640014,0.8787771,0.3086322,0.3640014,0.8612435,0.3619348,0.3567388,0.8612435,0.3619348,0.3567388,0.8612435,0.3619348,0.3567388,0.8787771,0.3086322,0.3640014,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8508487,0.3896761,-0.3524331,-0.3597156,0.3412233,0.8684304,-0.3644813,0.3047398,0.8799357,-0.3597156,0.3412233,0.8684304,-0.3644813,0.3047398,0.8799357,-0.3597156,0.3412233,0.8684304,-0.3644813,0.3047398,0.8799357,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3644813,0.3047398,0.8799357,-0.3693685,0.2614892,0.8917344,-0.3644813,0.3047398,0.8799357,-0.3693685,0.2614892,0.8917344,-0.3644813,0.3047398,0.8799357,-0.3693685,0.2614892,0.8917344,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,0.3597156,0.3412233,-0.8684304,0.3644813,0.3047398,-0.8799357,0.3597156,0.3412233,-0.8684304,0.3644813,0.3047398,-0.8799357,0.3597156,0.3412233,-0.8684304,0.3644813,0.3047398,-0.8799357,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,-0.3597156,0.3412233,-0.8684304,-0.3644813,0.3047398,-0.8799357,-0.3597156,0.3412233,-0.8684304,-0.3644813,0.3047398,-0.8799357,-0.3597156,0.3412233,-0.8684304,-0.3644813,0.3047398,-0.8799357,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,-0.8787771,0.3086322,-0.3640014,-0.8957203,0.2450095,-0.3710195,-0.8787771,0.3086322,-0.3640014,0.8699278,0.336725,0.3603359,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,-0.3644813,0.3047398,-0.8799357,-0.3693685,0.2614892,-0.8917344,-0.3644813,0.3047398,-0.8799357,-0.3693685,0.2614892,-0.8917344,-0.3644813,0.3047398,-0.8799357,-0.3693685,0.2614892,-0.8917344,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3640014,0.3086322,-0.8787771,-0.3710195,0.2450095,-0.8957203,-0.3640014,0.3086322,-0.8787771,-0.8508487,0.3896761,0.3524331,-0.8508487,0.3896761,0.3524331,-0.8699278,0.336725,0.3603359,-0.8699278,0.336725,0.3603359,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,-0.3640014,0.3086322,0.8787771,-0.3710195,0.2450095,0.8957203,-0.3640014,0.3086322,0.8787771,0.8799357,0.3047398,0.3644813,0.8799357,0.3047398,0.3644813,0.8684304,0.3412233,0.3597156,0.8684304,0.3412233,0.3597156,0.8684304,0.3412233,0.3597156,0.8799357,0.3047398,0.3644813,0.3644813,0.3047398,-0.8799357,0.3693685,0.2614892,-0.8917344,0.3644813,0.3047398,-0.8799357,0.3693685,0.2614892,-0.8917344,0.3644813,0.3047398,-0.8799357,0.3693685,0.2614892,-0.8917344,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3597156,0.3412233,0.8684304,0.3644813,0.3047398,0.8799357,0.3597156,0.3412233,0.8684304,0.3644813,0.3047398,0.8799357,0.3597156,0.3412233,0.8684304,0.3644813,0.3047398,0.8799357,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.112826,0.9936148,0,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1255412,0.005522731,0.992073,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,-0.1996423,-0.9798688,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.1255412,0.005522731,-0.992073,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,-0.9935327,0.004990246,0.1134369,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0,-0.9875824,0.1571015,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0.9935327,0.004990246,0.1134369,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.997563,0.06977224,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *784 { + a: 1.115092,48.01709,-1.115092,48.01709,-1.991894E-13,59.00471,1.115092,48.01709,-1.115092,48.01709,2.218306E-13,59.00471,3.205863,24.70975,-3.205863,24.70975,2.276162,29.90383,-2.276162,29.90383,1.570552,42.79068,-1.570552,42.79068,1.115092,45.82874,-1.115092,45.82874,3.205863,24.70975,-3.205863,24.70975,2.276162,29.90383,-2.276162,29.90383,1.570552,40.63425,-1.570552,40.63425,1.093785,45.03603,-1.093785,45.03603,3.205863,24.70975,-3.205863,24.70975,2.276162,29.90383,-2.276162,29.90383,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,2.845203,23.35311,-2.845203,23.35311,2.274789,27.4428,-2.274789,27.4428,-3.205863,24.70975,-2.276162,29.90383,3.205863,24.70975,2.276162,29.90383,-2.845203,21.61324,2.845203,21.61324,-4.007329,15.12064,4.007329,15.12064,5.780353,0,4.760678,0,4.087327,4.087327,3.366308,3.366308,-2.273737E-13,5.780353,-2.273737E-13,4.760678,-4.087327,4.087327,-3.366308,3.366308,-4.760678,-5.684342E-14,-5.780353,0,4.087327,-4.087327,3.366308,-3.366308,-2.273737E-13,-5.780353,-2.273737E-13,-4.760678,-3.366308,-3.366308,-4.087327,-4.087327,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,2.276162,31.85225,-2.276162,31.85225,1.821833,35.10965,-1.821833,35.10965,-1.570552,42.79068,-1.115092,45.82874,1.570552,42.79068,1.115092,45.82874,1.570552,40.63425,-1.570552,40.63425,1.093785,45.03603,-1.093785,45.03603,8.377323,5.684342E-14,5.94431,-2.842171E-14,5.923662,5.923662,4.203262,4.203262,-2.273737E-13,8.377323,0,5.94431,-4.203262,4.203262,-5.923662,5.923662,-5.94431,-2.842171E-14,-8.377323,5.684342E-14,5.923662,-5.923662,4.203262,-4.203262,-2.273737E-13,-8.377323,0,-5.94431,-4.203262,-4.203262,-5.923662,-5.923662,2.276162,31.85225,-2.276162,31.85225,1.821833,35.10965,-1.821833,35.10965,-4.007329,15.12064,-2.845203,21.61324,4.007329,15.12064,2.845203,21.61324,2.845203,23.35311,-2.845203,23.35311,2.274789,27.4428,-2.274789,27.4428,1.570552,42.79068,-1.570552,42.79068,1.115092,45.82874,-1.115092,45.82874,-2.212045,34.70543,-1.570552,39.2441,2.212045,34.70543,1.570552,39.2441,1.093785,45.03603,1.570552,40.63425,-1.093785,45.03603,-1.570552,40.63425,2.276162,29.90383,3.205863,24.70975,-2.276162,29.90383,-3.205863,24.70975,-1.115092,45.82874,1.115092,45.82874,-1.570552,42.79068,1.570552,42.79068,1.570552,42.79068,-1.570552,42.79068,1.115092,45.82874,-1.115092,45.82874,3.205863,24.70975,-3.205863,24.70975,2.276162,29.90383,-2.276162,29.90383,2.212045,34.70543,-2.212045,34.70543,1.570552,39.2441,-1.570552,39.2441,1.132704E-13,59.00471,1.115092,48.01709,-1.115092,48.01709,-2.276162,29.90383,2.276162,29.90383,-3.205863,24.70975,3.205863,24.70975,1.570552,42.79068,-1.570552,42.79068,1.115092,45.82874,-1.115092,45.82874,-1.570552,39.2441,1.570552,39.2441,-2.212045,34.70543,2.212045,34.70543,1.570552,42.79068,-1.570552,42.79068,1.115092,45.82874,-1.115092,45.82874,-5.986573E-14,59.00471,1.115092,48.01709,-1.115092,48.01709,-2.276162,31.85225,-1.821833,35.10965,2.276162,31.85225,1.821833,35.10965,-1.115092,48.01709,-1.141585E-13,59.00471,1.115092,48.01709,-1.093785,45.03603,1.093785,45.03603,-1.570552,40.63425,1.570552,40.63425,-1.570552,40.63425,-1.093785,45.03603,1.570552,40.63425,1.093785,45.03603,1.115092,45.82874,1.570552,42.79068,-1.115092,45.82874,-1.570552,42.79068,-2.845203,23.35311,-2.274789,27.4428,2.845203,23.35311,2.274789,27.4428,2.212045,34.70543,-2.212045,34.70543,1.570552,39.2441,-1.570552,39.2441,2.276162,31.85225,-2.276162,31.85225,1.821833,35.10965,-1.821833,35.10965,1.570552,40.63425,-1.570552,40.63425,1.093785,45.03603,-1.093785,45.03603,2.845203,21.61324,4.007329,15.12064,-2.845203,21.61324,-4.007329,15.12064,2.845203,23.35311,-2.845203,23.35311,2.274789,27.4428,-2.274789,27.4428,3.205863,24.70975,-3.205863,24.70975,2.276162,29.90383,-2.276162,29.90383,2.212045,34.70543,-2.212045,34.70543,1.570552,39.2441,-1.570552,39.2441,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,2.845203,23.35311,-2.845203,23.35311,2.274789,27.4428,-2.274789,27.4428,2.212045,34.70543,-2.212045,34.70543,1.570552,39.2441,-1.570552,39.2441,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,1.115092,48.01709,-1.115092,48.01709,6.075391E-14,59.00471,1.821833,35.10965,2.276162,31.85225,-1.821833,35.10965,-2.276162,31.85225,1.570552,40.63425,-1.570552,40.63425,1.093785,45.03603,-1.093785,45.03603,2.276162,31.85225,-2.276162,31.85225,1.821833,35.10965,-1.821833,35.10965,1.115092,48.01709,-1.115092,48.01709,1.991894E-13,59.00471,-2.845203,23.35311,-2.274789,27.4428,2.845203,23.35311,2.274789,27.4428,1.115092,48.01709,-1.115092,48.01709,-2.209424E-13,59.00471,1.570552,39.2441,2.212045,34.70543,-1.570552,39.2441,-2.212045,34.70543,1.570552,40.63425,-1.570552,40.63425,1.093785,45.03603,-1.093785,45.03603,2.845203,23.35311,-2.845203,23.35311,2.274789,27.4428,-2.274789,27.4428,4.104051,0,2.902002,-2.902002,2.902002,2.902002,2.858198,-2.842171E-14,2.021051,2.021051,-2.273737E-13,4.104051,0,2.858198,-2.021051,2.021051,-2.902002,2.902002,-2.858198,-5.684342E-14,2.021051,-2.021051,-2.273737E-13,-4.104051,-2.273737E-13,-2.858198,-2.021051,-2.021051,-2.902002,-2.902002,-4.104051,0,2.212045,34.70543,-2.212045,34.70543,1.570552,39.2441,-1.570552,39.2441,2.276162,31.85225,-2.276162,31.85225,1.821833,35.10965,-1.821833,35.10965,2.845203,23.35311,-2.845203,23.35311,2.274789,27.4428,-2.274789,27.4428,-1.821833,35.10965,1.821833,35.10965,-2.276162,31.85225,2.276162,31.85225,10.47165,5.754181E-14,7.404577,-7.404577,7.404577,7.404577,-2.275822E-13,10.47165,1.137884,1.137884,-1.137884,1.137884,-7.404577,7.404577,-1.137884,-1.137884,1.137884,-1.137884,-2.275822E-13,-10.47165,-7.404577,-7.404577,-10.47165,5.754181E-14,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,-2.954583,-0.8130127,-1.920479,2.945041,2.954583,-0.8130127,1.920479,2.945041,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,-1.162016,-0.7689713,0.1482206,-0.7689713,-0.9130707,-2.758808,-0.1007242,-2.758808,-1.754109,6.648328,-3.719716,7.045589,-1.6827,8.284566,-3.675442,8.060057,0.1482206,3.0786,-1.162016,3.0786,-0.1007242,5.068437,-0.9130707,5.068437,2.954583,2.954583,2.954583,-2.954583,-2.954583,2.954583,-2.954583,-2.954583,-0.9130707,6.876705,-0.9130707,7.892138,-0.1007242,6.876705,-0.1007242,7.892138,1.626834,6.642773,1.555425,8.279011,3.592441,7.040035,3.548167,8.054502,1.274636,16.5869,3.591716,16.42587,1.331848,15.27791,3.626043,15.64048,1.920479,3.525083,-1.920479,3.525083,1.137884,21.33202,-1.137884,21.33202,0.7264795,3.790471,-0.5837567,3.790471,0.4644323,6.09831,-0.3217094,6.09831,-1.258446,16.58619,-1.315657,15.27721,-3.575526,16.42517,-3.609853,15.63978,1.920479,3.525083,-1.920479,3.525083,1.137884,21.33202,-1.137884,21.33202,0.7264795,-0.1887043,0.4644323,-2.496543,-0.5837567,-0.1887043,-0.3217094,-2.496543,0.4644323,15.46723,-0.3217094,15.46723,0.4644323,16.25337,-0.3217094,16.25337,-1.920479,3.525083,0.7264795,15.20519,1.920479,3.525083,1.137884,21.33202,0.7264795,16.51542,-0.5837567,16.51542,-0.5837567,15.20519,-1.137884,21.33202,-1.920479,3.525083,-1.162016,6.565524,1.920479,3.525083,0.1482206,6.565524,0.1482206,8.20332,1.137884,21.33202,-1.162016,8.20332,-1.137884,21.33202 + } + UVIndex: *690 { + a: 0,2,1,3,5,4,6,8,7,9,7,8,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,45,44,47,45,46,48,47,46,49,47,48,50,49,48,51,50,48,42,43,52,53,52,43,54,52,53,55,54,53,56,54,55,57,54,56,50,57,56,51,57,50,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,81,80,83,81,82,84,83,82,85,84,82,86,84,85,87,86,85,78,79,88,89,88,79,90,88,89,91,90,89,92,90,91,93,90,92,86,93,92,87,93,86,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,108,107,109,107,108,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,143,142,144,142,143,145,147,146,148,146,147,149,151,150,152,150,151,153,155,154,156,154,155,157,159,158,160,162,161,163,161,162,164,166,165,167,169,168,170,168,169,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,180,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,201,200,202,200,201,203,205,204,206,204,205,207,209,208,210,208,209,211,213,212,214,212,213,215,217,216,218,216,217,219,221,220,222,220,221,223,225,224,226,224,225,227,229,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,247,246,248,246,247,249,251,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,267,266,269,268,266,270,268,269,271,270,269,272,271,269,273,271,272,267,274,265,275,265,274,276,275,274,277,275,276,278,275,277,273,278,277,272,278,273,279,278,272,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,297,299,301,300,299,302,301,299,303,301,302,300,304,297,305,297,304,303,305,304,306,305,303,302,306,303,307,306,302,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,377,379,381,380,379,377,382,376,383,376,382,381,383,382,379,383,381,384,386,385,387,385,386,388,387,386,389,388,386,385,390,384,391,384,390,388,391,390,389,391,388 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *230 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineDefaultA, Model::RootNode + C: "OO",5358894781307873181,0 + + ;Geometry::, Model::Mesh tree_pineDefaultA + C: "OO",4891491323748403361,5358894781307873181 + + ;Material::leafsDark, Model::Mesh tree_pineDefaultA + C: "OO",3026,5358894781307873181 + + ;Material::woodBarkDark, Model::Mesh tree_pineDefaultA + C: "OO",3048,5358894781307873181 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultA.fbx.import new file mode 100644 index 0000000..a05bbf4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bf8jejf003rnb" +path="res://.godot/imported/tree_pineDefaultA.fbx-a591b8df9b833e9480208528b8e7b5d8.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultA.fbx" +dest_files=["res://.godot/imported/tree_pineDefaultA.fbx-a591b8df9b833e9480208528b8e7b5d8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultB.fbx new file mode 100644 index 0000000..3dc54a3 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 39 + Millisecond: 46 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineDefaultB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineDefaultB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4632887247905658290, "Model::tree_pineDefaultB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4932755908671785467, "Geometry::", "Mesh" { + Vertices: *1248 { + a: 0.8240565,4.632693,-0.1007419,0.8342583,4.400789,-0.1007419,0.8240565,4.632693,0.1313861,0.8342583,4.400789,0.1313861,-0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,-0.750464,0,0.750464,-0.4878016,0.917696,0.4878016,0.750464,0,0.750464,-0.750464,0,0.750464,0.4878016,0.917696,0.4878016,-0.4878016,0.917696,0.4878016,0.8240565,4.632693,-0.1007419,0.8240565,4.632693,0.1313861,0.3222125,4.681821,-0.1718779,0.3222125,4.681821,0.2025221,-0.750464,0,-0.750464,0.750464,0,-0.750464,-0.4878016,0.917696,-0.4878016,0.4878016,0.917696,-0.4878016,0.1982868,1.65137,-0.8198783,0.2752468,1.558487,-0.4596123,0.1982868,1.913197,-0.8083602,0.2752468,1.974085,-0.4413295,0.2485612,3.359611,0.3803784,0.2485612,2.902453,0.4004894,0.1549612,3.270917,0.9672434,0.1549612,3.042338,0.9772989,0.2485612,2.902453,0.4004894,-0.1258388,2.902453,0.4004894,0.1549612,3.042338,0.9772989,-0.0322388,3.042338,0.9772989,0.2752468,1.974085,-0.4413295,-0.1407532,1.974085,-0.4413295,0.1982868,1.913197,-0.8083602,-0.06379322,1.913197,-0.8083602,0.2890224,5.436287,-0.2890224,0.3222125,4.681821,-0.1718779,0.2890224,5.436287,0.2890224,0.3222125,4.681821,0.2025221,0.338667,4.307783,0.2025221,0.338667,4.307783,-0.1718779,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,-0.4878016,0.917696,-0.4878016,-0.2890224,5.436287,-0.2890224,-0.4878016,0.917696,0.4878016,-0.2890224,5.436287,0.2890224,0.4878016,0.917696,-0.4878016,-0.1407532,1.558487,-0.4596123,-0.4878016,0.917696,-0.4878016,-0.2890224,5.436287,-0.2890224,-0.1407532,1.974085,-0.4413295,0.2752468,1.974085,-0.4413295,0.2752468,1.558487,-0.4596123,0.2890224,5.436287,-0.2890224,0.2485612,3.359611,0.3803784,0.1549612,3.270917,0.9672434,-0.1258388,3.359611,0.3803784,-0.0322388,3.270917,0.9672434,-0.06379322,1.65137,-0.8198783,-0.06379322,1.913197,-0.8083602,-0.1407532,1.558487,-0.4596123,-0.1407532,1.974085,-0.4413295,0.750464,0,0.750464,0.750464,0,-0.750464,-0.750464,0,0.750464,-0.750464,0,-0.750464,-0.4878016,0.917696,0.4878016,0.2485612,2.902453,0.4004894,0.4878016,0.917696,0.4878016,0.2890224,5.436287,0.2890224,0.2485612,3.359611,0.3803784,-0.1258388,3.359611,0.3803784,-0.1258388,2.902453,0.4004894,-0.2890224,5.436287,0.2890224,0.8342583,4.400789,0.1313861,0.8342583,4.400789,-0.1007419,0.338667,4.307783,0.2025221,0.338667,4.307783,-0.1718779,0.2752468,1.558487,-0.4596123,0.1982868,1.65137,-0.8198783,-0.1407532,1.558487,-0.4596123,-0.06379322,1.65137,-0.8198783,-0.1258388,3.359611,0.3803784,-0.0322388,3.270917,0.9672434,-0.1258388,2.902453,0.4004894,-0.0322388,3.042338,0.9772989,-0.06379322,1.65137,-0.8198783,0.1982868,1.65137,-0.8198783,-0.06379322,1.913197,-0.8083602,0.1982868,1.913197,-0.8083602,0.750464,0,-0.750464,0.750464,0,0.750464,0.4878016,0.917696,-0.4878016,0.4878016,0.917696,0.4878016,0.1549612,3.042338,0.9772989,-0.0322388,3.042338,0.9772989,0.1549612,3.270917,0.9672434,-0.0322388,3.270917,0.9672434,0.338667,4.307783,0.2025221,0.3222125,4.681821,0.2025221,0.8342583,4.400789,0.1313861,0.8240565,4.632693,0.1313861,0.338667,4.307783,-0.1718779,0.8342583,4.400789,-0.1007419,0.3222125,4.681821,-0.1718779,0.8240565,4.632693,-0.1007419,1.888458,6.923488,-1.443823E-14,2.6598,5.436287,0,1.335341,6.923488,1.335341,1.880763,5.436287,1.880763,-0.9364861,9.785942,1.038181,-0.7290745,10.89133,0.7371085,0.09790064,9.874621,1.46821,0.005340036,10.95429,1.042429,1.359903,7.894341,-1.630958,1.979488,7.685735,-0.1393598,1.054612,9.077745,-1.080812,1.494517,8.929634,-0.02177669,0.005340036,10.95429,-1.042429,0.7397546,11.01726,-0.7371085,-0.08499273,12.00798,-0.7323159,0.4420935,12.01483,-0.5257452,-5.775292E-14,12.77765,0.7726479,-0.523347,12.77046,0.5559897,-5.775292E-14,15.45741,-0.05678061,0.09790064,9.874621,1.46821,0.005340036,10.95429,1.042429,1.132287,9.963299,1.038181,0.7397546,11.01726,0.7371085,-5.775292E-14,11.9996,-0.9850751,-5.775292E-14,12.72857,-0.7067871,-0.7371085,12.00972,-0.6799226,-0.523347,12.73576,-0.4901289,1.054612,9.077745,-1.080812,0.9114545,9.944366,-0.7590579,-0.007413076,9.234248,-1.510483,0.06481247,9.871784,-1.190206,1.359903,7.611148,1.364907,-0.1359064,7.714273,2.000663,1.054612,8.876678,1.046253,-0.007413076,8.949897,1.49764,0.7371085,12.0586,0.7934839,-5.775292E-14,12.06872,1.098636,0.523347,12.77046,0.5559897,-5.775292E-14,12.77765,0.7726479,-0.1359064,8.114768,-2.23613,-0.007413076,9.234248,-1.510483,-1.631716,8.217893,-1.600374,-1.069438,9.307467,-1.059096,0.005340036,10.95429,1.042429,-0.08911782,12.0561,0.7181544,0.7397546,11.01726,0.7371085,0.431758,12.04947,0.5184062,-0.9364861,9.785942,-1.038181,-0.7290745,10.89133,-0.7371085,-1.364943,9.749211,0,-1.033279,10.86525,-7.219114E-15,-1.033279,10.86525,-7.219114E-15,-0.7290745,10.89133,0.7371085,-1.364943,9.749211,0,-0.9364861,9.785942,1.038181,-1.033279,10.86525,-7.219114E-15,-0.7970532,12.03227,0,-0.7290745,10.89133,0.7371085,-0.5907538,12.04887,0.5004196,1.042429,12.03416,0.05678061,0.7371085,12.00972,-0.6799226,0.7371085,12.0586,0.7934839,0.6595195,12.03227,0,0.431758,12.04947,0.5184062,-5.775292E-14,12.06872,1.098636,-0.08911782,12.0561,0.7181544,-0.7371085,12.0586,0.7934839,-0.5907538,12.04887,0.5004196,-0.7970532,12.03227,0,-1.042429,12.03416,0.05678061,0.4420935,12.01483,-0.5257452,-5.775292E-14,11.9996,-0.9850751,-0.08499273,12.00798,-0.7323159,-0.7371085,12.00972,-0.6799226,-0.5947483,12.01545,-0.5072548,-1.888458,6.923488,-1.443823E-14,-1.335341,6.923488,1.335341,-2.6598,5.436287,0,-1.880763,5.436287,1.880763,1.560744,10.00003,0,1.215181,9.970406,0.07660513,1.132287,9.963299,1.038181,0.8872612,9.942293,0.8666178,0.09790064,9.874621,1.46821,0.08983727,9.873929,1.234885,-0.9364861,9.785942,1.038181,-0.8030859,9.797379,0.9406354,-1.246953,9.759326,0.05665225,-1.364943,9.749211,0,1.132287,9.963299,-1.038181,0.9114545,9.944366,-0.7590579,0.09790064,9.874621,-1.46821,0.06481247,9.871784,-1.190206,-0.9364861,9.785942,-1.038181,-0.8726054,9.791419,-0.8709829,-0.523347,12.73576,-0.4901289,-5.775292E-14,15.45741,-0.05678061,-0.7401245,12.75311,0.03293043,-0.523347,12.73576,-0.4901289,-5.775292E-14,12.72857,-0.7067871,-5.775292E-14,15.45741,-0.05678061,-1.631716,8.217893,-1.600374,-1.069438,9.307467,-1.059096,-2.251301,8.143307,-0.09610662,-1.509343,9.25451,0.008933069,-1.880763,5.436287,-1.880763,-1.335341,6.923488,-1.335341,-2.6598,5.436287,0,-1.888458,6.923488,-1.443823E-14,-0.7401245,12.75311,0.03293043,-5.775292E-14,15.45741,-0.05678061,-0.523347,12.77046,0.5559897,-5.775292E-14,12.72857,-0.7067871,0.523347,12.73576,-0.4901289,-5.775292E-14,15.45741,-0.05678061,-0.7290745,10.89133,-0.7371085,-0.5947483,12.01545,-0.5072548,-1.033279,10.86525,-7.219114E-15,-0.7970532,12.03227,0,0.523347,12.77046,0.5559897,-5.775292E-14,12.77765,0.7726479,-5.775292E-14,15.45741,-0.05678061,-5.775292E-14,15.45741,-0.05678061,0.523347,12.73576,-0.4901289,0.7401245,12.75311,0.03293043,-1.155058E-13,5.436287,-2.6598,1.880763,5.436287,-1.880763,-5.775292E-14,6.923488,-1.888458,1.335341,6.923488,-1.335341,-0.7401245,12.75311,0.03293043,-0.523347,12.77046,0.5559897,-1.042429,12.03416,0.05678061,-0.7371085,12.0586,0.7934839,1.043959,11.04333,-7.219114E-15,0.7397546,11.01726,0.7371085,0.6595195,12.03227,0,0.431758,12.04947,0.5184062,1.132287,9.963299,-1.038181,1.560744,10.00003,0,0.7397546,11.01726,-0.7371085,1.043959,11.04333,-7.219114E-15,-1.880763,5.436287,-1.880763,-1.155058E-13,5.436287,-2.6598,-1.335341,6.923488,-1.335341,-5.775292E-14,6.923488,-1.888458,1.880763,5.436287,1.880763,-1.155058E-13,5.436287,2.6598,1.335341,6.923488,1.335341,-5.775292E-14,6.923488,1.888458,-0.7371085,12.0586,0.7934839,-0.523347,12.77046,0.5559897,-5.775292E-14,12.06872,1.098636,-5.775292E-14,12.77765,0.7726479,-0.7371085,12.00972,-0.6799226,-0.523347,12.73576,-0.4901289,-1.042429,12.03416,0.05678061,-0.7401245,12.75311,0.03293043,-5.775292E-14,15.45741,-0.05678061,0.7401245,12.75311,0.03293043,0.523347,12.77046,0.5559897,1.979488,7.685735,-0.1393598,1.359903,7.611148,1.364907,1.494517,8.929634,-0.02177669,1.054612,8.876678,1.046253,-0.7290745,10.89133,0.7371085,-0.5907538,12.04887,0.5004196,0.005340036,10.95429,1.042429,-0.08911782,12.0561,0.7181544,-5.775292E-14,11.9996,-0.9850751,0.7371085,12.00972,-0.6799226,-5.775292E-14,12.72857,-0.7067871,0.523347,12.73576,-0.4901289,0.7401245,12.75311,0.03293043,1.042429,12.03416,0.05678061,0.523347,12.77046,0.5559897,0.7371085,12.0586,0.7934839,0.7371085,12.00972,-0.6799226,1.042429,12.03416,0.05678061,0.523347,12.73576,-0.4901289,0.7401245,12.75311,0.03293043,1.054612,9.077745,-1.080812,1.494517,8.929634,-0.02177669,0.9114545,9.944366,-0.7590579,1.215181,9.970406,0.07660513,1.880763,5.436287,-1.880763,2.6598,5.436287,0,1.335341,6.923488,-1.335341,1.888458,6.923488,-1.443823E-14,-1.335341,6.923488,-1.335341,-1.014645,8.095191,-1.014645,-1.888458,6.923488,-1.443823E-14,-1.453513,8.047167,0,1.335341,6.923488,1.335341,-5.775292E-14,6.923488,1.888458,1.134431,7.657538,1.134431,-5.775292E-14,7.739923,1.572439,-0.007413076,9.234248,-1.510483,0.06481247,9.871784,-1.190206,-1.069438,9.307467,-1.059096,-0.8726054,9.791419,-0.8709829,-2.251301,8.143307,-0.09610662,-1.509343,9.25451,0.008933069,-1.631716,7.9347,1.395492,-1.069438,9.1064,1.067968,0.09790064,9.874621,-1.46821,1.132287,9.963299,-1.038181,0.005340036,10.95429,-1.042429,0.7397546,11.01726,-0.7371085,-0.9364861,9.785942,-1.038181,0.09790064,9.874621,-1.46821,-0.7290745,10.89133,-0.7371085,0.005340036,10.95429,-1.042429,-1.155058E-13,5.436287,2.6598,-1.880763,5.436287,1.880763,-5.775292E-14,6.923488,1.888458,-1.335341,6.923488,1.335341,-5.775292E-14,6.923488,1.888458,-1.335341,6.923488,1.335341,-5.775292E-14,7.739923,1.572439,-1.066938,7.90413,1.066938,2.6598,5.436287,0,1.880763,5.436287,-1.880763,1.880763,5.436287,1.880763,-1.155058E-13,5.436287,2.6598,0.2890224,5.436287,0.2890224,-0.2890224,5.436287,0.2890224,-1.880763,5.436287,1.880763,-0.2890224,5.436287,-0.2890224,0.2890224,5.436287,-0.2890224,-1.155058E-13,5.436287,-2.6598,-1.880763,5.436287,-1.880763,-2.6598,5.436287,0,-0.7290745,10.89133,-0.7371085,0.005340036,10.95429,-1.042429,-0.5947483,12.01545,-0.5072548,-0.08499273,12.00798,-0.7323159,-1.069438,9.307467,-1.059096,-0.8726054,9.791419,-0.8709829,-1.509343,9.25451,0.008933069,-1.246953,9.759326,0.05665225,1.043959,11.04333,-7.219114E-15,1.560744,10.00003,0,0.7397546,11.01726,0.7371085,1.132287,9.963299,1.038181,-0.1359064,7.714273,2.000663,-1.631716,7.9347,1.395492,-0.007413076,8.949897,1.49764,-1.069438,9.1064,1.067968,1.494517,8.929634,-0.02177669,1.054612,8.876678,1.046253,1.215181,9.970406,0.07660513,0.8872612,9.942293,0.8666178,1.359903,7.894341,-1.630958,1.054612,9.077745,-1.080812,-0.1359064,8.114768,-2.23613,-0.007413076,9.234248,-1.510483,0.7397546,11.01726,-0.7371085,1.043959,11.04333,-7.219114E-15,0.4420935,12.01483,-0.5257452,0.6595195,12.03227,0,1.888458,6.923488,-1.443823E-14,1.335341,6.923488,1.335341,1.581711,7.715967,-7.219114E-15,1.134431,7.657538,1.134431,1.979488,7.685735,-0.1393598,1.581711,7.715967,-7.219114E-15,1.359903,7.611148,1.364907,1.134431,7.657538,1.134431,-0.1359064,7.714273,2.000663,-5.775292E-14,7.739923,1.572439,-1.066938,7.90413,1.066938,-1.631716,7.9347,1.395492,-1.453513,8.047167,0,1.359903,7.894341,-1.630958,1.075494,7.872869,-1.075494,-0.1359064,8.114768,-2.23613,-5.775292E-14,8.026708,-1.461432,-1.014645,8.095191,-1.014645,-1.631716,8.217893,-1.600374,-2.251301,8.143307,-0.09610662,1.335341,6.923488,-1.335341,1.888458,6.923488,-1.443823E-14,1.075494,7.872869,-1.075494,1.581711,7.715967,-7.219114E-15,-1.888458,6.923488,-1.443823E-14,-1.453513,8.047167,0,-1.335341,6.923488,1.335341,-1.066938,7.90413,1.066938,-0.007413076,8.949897,1.49764,-1.069438,9.1064,1.067968,0.08983727,9.873929,1.234885,-0.8030859,9.797379,0.9406354,-1.509343,9.25451,0.008933069,-1.246953,9.759326,0.05665225,-1.069438,9.1064,1.067968,-0.8030859,9.797379,0.9406354,-1.335341,6.923488,-1.335341,-5.775292E-14,6.923488,-1.888458,-1.014645,8.095191,-1.014645,-5.775292E-14,8.026708,-1.461432,-5.775292E-14,6.923488,-1.888458,1.335341,6.923488,-1.335341,-5.775292E-14,8.026708,-1.461432,1.075494,7.872869,-1.075494,1.054612,8.876678,1.046253,-0.007413076,8.949897,1.49764,0.8872612,9.942293,0.8666178,0.08983727,9.873929,1.234885 + } + PolygonVertexIndex: *738 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,39,-39,37,41,-37,36,41,-43,43,42,-42,40,43,-42,38,43,-41,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,49,-52,53,52,-52,49,54,-49,55,48,-55,53,55,-55,51,55,-54,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,69,-72,73,72,-72,69,74,-69,75,68,-75,73,75,-75,71,75,-74,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,145,-145,146,144,-146,147,149,-149,150,148,-150,151,153,-153,154,152,-154,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,169,-169,170,168,-170,171,170,-170,172,171,-170,173,171,-173,174,173,-173,175,173,-175,176,175,-175,177,176,-175,170,178,-169,179,168,-179,180,179,-179,181,179,-181,177,181,-177,182,181,-181,176,181,-183,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,190,-190,192,190,-192,193,192,-192,194,192,-194,195,194,-194,196,195,-194,187,188,-198,198,197,-189,199,197,-199,200,199,-199,201,199,-201,196,201,-196,202,201,-201,195,201,-203,203,205,-205,206,208,-208,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,219,-219,220,222,-222,223,225,-225,226,224,-226,227,229,-229,230,232,-232,233,235,-235,236,234,-236,237,239,-239,240,238,-240,241,243,-243,244,242,-244,245,247,-247,248,246,-248,249,251,-251,252,250,-252,253,255,-255,256,254,-256,257,259,-259,260,258,-260,261,263,-263,264,262,-264,265,267,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,329,-332,333,332,-332,334,333,-332,335,333,-335,332,336,-330,337,329,-337,335,337,-337,338,337,-336,334,338,-336,339,338,-335,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,375,-375,377,375,-377,378,377,-377,379,378,-377,380,378,-380,372,373,-382,382,381,-374,383,381,-383,384,383,-383,385,383,-385,386,383,-386,380,386,-386,379,386,-381,387,386,-380,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,401,-403,404,406,-406,407,405,-407,408,410,-410,411,409,-411,412,414,-414,415,413,-415 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2214 { + a: 0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,-0.9613956,0.2751701,0,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0,0.2751701,0.9613956,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0.09742919,0.9952425,0,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0,0.2751701,-0.9613956,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,0.9783715,0.009091079,-0.2066558,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0.9873304,0.006973726,0.1585248,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,-0.9718298,0.2356839,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0,0.9865172,-0.1636575,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,-0.9990338,0.04394889,0,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.9887716,0.1494343,0,0.9887716,0.1494343,0,0.9887716,0.1494343,0,0.9887716,0.1494343,0,0.9887716,0.1494343,0,0.9887716,0.1494343,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,-0.9783715,0.009091079,-0.2066558,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,0.1844479,-0.9828423,0,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,0,-0.9683352,-0.2496542,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,-0.9873304,0.006973726,0.1585248,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0,0.04394889,-0.9990338,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0.9613956,0.2751701,0,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0,0.04394889,0.9990338,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.1409386,0.006200083,-0.989999,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8508487,0.3896761,0.3524331,-0.3875472,0.3092504,0.8684304,-0.3875472,0.3092504,0.8684304,-0.3891791,0.2724932,0.8799357,-0.3891791,0.2724932,0.8799357,-0.3891791,0.2724932,0.8799357,-0.3875472,0.3092504,0.8684304,0.8749631,0.3705867,-0.3116168,0.8879568,0.3273612,-0.3230594,0.8749631,0.3705867,-0.3116168,0.8879568,0.3273612,-0.3230594,0.8749631,0.3705867,-0.3116168,0.8879568,0.3273612,-0.3230594,0.3371193,0.3347589,-0.8799357,0.3456829,0.2920839,-0.8917344,0.3371193,0.3347589,-0.8799357,0.3456829,0.2920839,-0.8917344,0.3371193,0.3347589,-0.8799357,0.3456829,0.2920839,-0.8917344,-0.3640014,0.3375985,0.8680612,-0.3710195,0.2745726,0.8871045,-0.3640014,0.3375985,0.8680612,0.3292547,0.370702,0.8684303,0.3292547,0.370702,0.8684303,0.3371193,0.3347589,0.8799357,0.3371193,0.3347589,0.8799357,0.3371193,0.3347589,0.8799357,0.3292547,0.370702,0.8684303,-0.3567387,0.3331812,-0.8727701,-0.3567387,0.3331812,-0.8727701,-0.3640014,0.2793265,-0.8885267,-0.3640014,0.2793265,-0.8885267,-0.3640014,0.2793265,-0.8885267,-0.3567387,0.3331812,-0.8727701,0.3924564,0.427856,-0.8141973,0.3924564,0.427856,-0.8141973,0.3945943,0.376394,-0.8382261,0.3945943,0.376394,-0.8382261,0.3945943,0.376394,-0.8382261,0.3924564,0.427856,-0.8141973,0.3897598,0.3121771,0.8663906,0.3924565,0.2677121,0.8799478,0.3897598,0.3121771,0.8663906,0.3924565,0.2677121,0.8799478,0.3897598,0.3121771,0.8663906,0.3924565,0.2677121,0.8799478,0.3567387,0.3902906,0.8487701,0.3640014,0.3375985,0.8680612,0.3567387,0.3902906,0.8487701,0.3640014,0.3375985,0.8680612,0.3567387,0.3902906,0.8487701,0.3640014,0.3375985,0.8680612,-0.2964213,0.5432053,-0.7855332,-0.2964213,0.5432053,-0.7855332,-0.3082869,0.5036431,-0.8070332,-0.3082869,0.5036431,-0.8070332,-0.3082869,0.5036431,-0.8070332,-0.2964213,0.5432053,-0.7855332,0.3371193,0.3347589,0.8799357,0.3371193,0.3347589,0.8799357,0.3456829,0.2920839,0.8917344,0.3456829,0.2920839,0.8917344,0.3456829,0.2920839,0.8917344,0.3371193,0.3347589,0.8799357,-0.8944027,0.2657976,-0.3597156,-0.8944027,0.2657976,-0.3597156,-0.9027498,0.2284647,-0.3644814,-0.9027498,0.2284647,-0.3644814,-0.9027498,0.2284647,-0.3644814,-0.8944027,0.2657976,-0.3597156,-0.9027498,0.2284647,0.3644814,-0.8944027,0.2657976,0.3597156,-0.9027498,0.2284647,0.3644814,-0.8944027,0.2657976,0.3597156,-0.9027498,0.2284647,0.3644814,-0.8944027,0.2657976,0.3597156,-0.9027498,0.2284647,0.3644814,-0.9027498,0.2284647,0.3644814,-0.9108111,0.1843644,0.3693685,-0.9108111,0.1843644,0.3693685,-0.9108111,0.1843644,0.3693685,-0.9027498,0.2284647,0.3644814,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,-0.8787771,0.2963939,-0.374034,-0.8787771,0.2963939,-0.374034,-0.8957203,0.2325735,-0.3789389,-0.3640014,0.2793265,-0.8885267,-0.3710195,0.215177,-0.9033512,-0.3640014,0.2793265,-0.8885267,-0.7816246,0.549751,-0.2946808,-0.7816246,0.549751,-0.2946808,-0.8037872,0.5103278,-0.305764,-0.8037872,0.5103278,-0.305764,-0.8037872,0.5103278,-0.305764,-0.7816246,0.549751,-0.2946808,-0.8331671,0.4321253,-0.3451091,-0.8331671,0.4321253,-0.3451091,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8331671,0.4321253,-0.3451091,-0.8787771,0.320531,0.3535685,-0.8787771,0.320531,0.3535685,-0.8957203,0.257176,0.3626922,0.3640014,0.2793265,-0.8885267,0.3710195,0.215177,-0.9033512,0.3640014,0.2793265,-0.8885267,-0.9027498,0.2284647,-0.3644814,-0.9027498,0.2284647,-0.3644814,-0.9108111,0.1843644,-0.3693685,-0.9108111,0.1843644,-0.3693685,-0.9108111,0.1843644,-0.3693685,-0.9027498,0.2284647,-0.3644814,0.3640014,0.3375985,0.8680612,0.3710195,0.2745726,0.8871045,0.3640014,0.3375985,0.8680612,0.8957203,0.2325735,-0.3789389,0.8787771,0.2963939,-0.374034,0.8787771,0.2963939,-0.374034,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,-0.8787771,0.320531,0.3535685,-0.8612435,0.3735636,0.3445427,-0.8787771,0.320531,0.3535685,-0.8612435,0.3735636,0.3445427,-0.8787771,0.320531,0.3535685,-0.8612435,0.3735636,0.3445427,0.8506899,0.3787875,0.3644813,0.8661398,0.3367027,0.3693684,0.8506899,0.3787875,0.3644813,0.8661398,0.3367027,0.3693684,0.8506899,0.3787875,0.3644813,0.8661398,0.3367027,0.3693684,0.8361104,0.4141549,-0.3597157,0.8506899,0.3787875,-0.3644813,0.8361104,0.4141549,-0.3597157,0.8506899,0.3787875,-0.3644813,0.8361104,0.4141549,-0.3597157,0.8506899,0.3787875,-0.3644813,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,-0.3567387,0.3902906,0.8487701,-0.3567387,0.3902906,0.8487701,-0.3640014,0.3375985,0.8680612,-0.3640014,0.3375985,0.8680612,-0.3640014,0.3375985,0.8680612,-0.3567387,0.3902906,0.8487701,-0.8612435,0.3499081,-0.3685427,-0.8612435,0.3499081,-0.3685427,-0.8787771,0.2963939,-0.374034,-0.8787771,0.2963939,-0.374034,-0.8787771,0.2963939,-0.374034,-0.8612435,0.3499081,-0.3685427,0.8957203,0.257176,0.3626922,0.8787771,0.320531,0.3535685,0.8787771,0.320531,0.3535685,0.8749631,0.3056314,0.3755383,0.8879568,0.2610274,0.3786785,0.8749631,0.3056314,0.3755383,0.8879568,0.2610274,0.3786785,0.8749631,0.3056314,0.3755383,0.8879568,0.2610274,0.3786785,-0.3891791,0.2724932,0.8799357,-0.3891791,0.2724932,0.8799357,-0.3903542,0.2289833,0.8917344,-0.3903542,0.2289833,0.8917344,-0.3903542,0.2289833,0.8917344,-0.3891791,0.2724932,0.8799357,0.3567387,0.3331812,-0.8727701,0.3640014,0.2793265,-0.8885267,0.3567387,0.3331812,-0.8727701,0.3640014,0.2793265,-0.8885267,0.3567387,0.3331812,-0.8727701,0.3640014,0.2793265,-0.8885267,0.8787771,0.320531,0.3535685,0.8787771,0.320531,0.3535685,0.8612435,0.3735636,0.3445427,0.8612435,0.3735636,0.3445427,0.8612435,0.3735636,0.3445427,0.8787771,0.320531,0.3535685,0.8612435,0.3499081,-0.3685427,0.8787771,0.2963939,-0.374034,0.8612435,0.3499081,-0.3685427,0.8787771,0.2963939,-0.374034,0.8612435,0.3499081,-0.3685427,0.8787771,0.2963939,-0.374034,0.8879568,0.3273612,-0.3230594,0.9012056,0.2736458,-0.336075,0.8879568,0.3273612,-0.3230594,0.9012056,0.2736458,-0.336075,0.8879568,0.3273612,-0.3230594,0.9012056,0.2736458,-0.336075,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8508487,0.3896761,-0.3524331,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,-0.3082869,0.5036431,-0.8070332,-0.3082869,0.5036431,-0.8070332,-0.3218621,0.4538806,-0.8309013,-0.3218621,0.4538806,-0.8309013,-0.3218621,0.4538806,-0.8309013,-0.3082869,0.5036431,-0.8070332,-0.7816246,0.4847958,0.3924742,-0.7816246,0.4847958,0.3924742,-0.8037872,0.443994,0.3959739,-0.8037872,0.443994,0.3959739,-0.8037872,0.443994,0.3959739,-0.7816246,0.4847958,0.3924742,0.3292547,0.370702,-0.8684303,0.3371193,0.3347589,-0.8799357,0.3292547,0.370702,-0.8684303,0.3371193,0.3347589,-0.8799357,0.3292547,0.370702,-0.8684303,0.3371193,0.3347589,-0.8799357,-0.3875472,0.3092504,-0.8684304,-0.3891791,0.2724932,-0.8799357,-0.3875472,0.3092504,-0.8684304,-0.3891791,0.2724932,-0.8799357,-0.3875472,0.3092504,-0.8684304,-0.3891791,0.2724932,-0.8799357,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3891791,0.2724932,-0.8799357,-0.3903542,0.2289833,-0.8917344,-0.3891791,0.2724932,-0.8799357,-0.3903542,0.2289833,-0.8917344,-0.3891791,0.2724932,-0.8799357,-0.3903542,0.2289833,-0.8917344,-0.8037872,0.5103278,-0.305764,-0.8037872,0.5103278,-0.305764,-0.8284734,0.4607151,-0.3183918,-0.8284734,0.4607151,-0.3183918,-0.8284734,0.4607151,-0.3183918,-0.8037872,0.5103278,-0.305764,0.8506899,0.3787875,0.3644813,0.8506899,0.3787875,0.3644813,0.8361104,0.4141549,0.3597157,0.8361104,0.4141549,0.3597157,0.8361104,0.4141549,0.3597157,0.8506899,0.3787875,0.3644813,-0.2964213,0.3863894,0.8734058,-0.3082869,0.3434993,0.8871118,-0.2964213,0.3863894,0.8734058,-0.3082869,0.3434993,0.8871118,-0.2964213,0.3863894,0.8734058,-0.3082869,0.3434993,0.8871118,0.8879568,0.2610274,0.3786785,0.9012056,0.2058246,0.3813983,0.8879568,0.2610274,0.3786785,0.9012056,0.2058246,0.3813983,0.8879568,0.2610274,0.3786785,0.9012056,0.2058246,0.3813983,0.3897598,0.468993,-0.7925483,0.3897598,0.468993,-0.7925483,0.3924564,0.427856,-0.8141973,0.3924564,0.427856,-0.8141973,0.3924564,0.427856,-0.8141973,0.3897598,0.468993,-0.7925483,0.8506899,0.3787875,-0.3644813,0.8661398,0.3367027,-0.3693684,0.8506899,0.3787875,-0.3644813,0.8661398,0.3367027,-0.3693684,0.8506899,0.3787875,-0.3644813,0.8661398,0.3367027,-0.3693684,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,-0.8508487,0.3896761,0.3524331,-0.8508487,0.3896761,0.3524331,-0.8699278,0.336725,0.3603359,-0.8699278,0.336725,0.3603359,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,-0.3082869,0.3434993,0.8871118,-0.3218622,0.2901458,0.9012326,-0.3082869,0.3434993,0.8871118,-0.3218622,0.2901458,0.9012326,-0.3082869,0.3434993,0.8871118,-0.3218622,0.2901458,0.9012326,-0.8037872,0.443994,0.3959739,-0.8037872,0.443994,0.3959739,-0.8284734,0.3928939,0.3990816,-0.8284734,0.3928939,0.3990816,-0.8284734,0.3928939,0.3990816,-0.8037872,0.443994,0.3959739,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3924565,0.2677121,0.8799478,0.3945943,0.2126591,0.8939079,0.3924565,0.2677121,0.8799478,0.3945943,0.2126591,0.8939079,0.3924565,0.2677121,0.8799478,0.3945943,0.2126591,0.8939079 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *832 { + a: 0.3966215,18.07874,0.3966215,17.16485,-0.5172682,18.07874,-0.5172682,17.16485,-2.954583,-0.8130127,-1.920479,2.945041,2.954583,-0.8130127,1.920479,2.945041,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,0.3966215,-1.451876,-0.5172682,-1.451876,0.6766845,0.5333327,-0.7973312,0.5333327,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,2.99685,6.488181,1.546482,6.122485,2.952482,7.519038,1.476057,7.758765,-1.323481,13.2181,-1.401657,11.41822,-3.663174,12.8689,-3.702262,11.96896,0.9785874,4.225468,-0.4954284,4.225468,0.6100835,6.562198,-0.1269244,6.562198,-1.083649,-0.4421472,0.5541465,-0.4421472,-0.7806566,-1.906898,0.2511544,-1.906898,1.137884,21.33202,0.6766845,18.35881,-1.137884,21.33202,-0.7973312,18.35881,-0.7973312,16.88479,0.6766845,16.88479,1.920479,3.525083,-1.920479,3.525083,-1.920479,3.525083,-1.137884,21.33202,1.920479,3.525083,1.137884,21.33202,-1.920479,3.525083,0.5541465,6.050323,1.920479,3.525083,1.137884,21.33202,0.5541465,7.688118,-1.083649,7.688118,-1.083649,6.050323,-1.137884,21.33202,0.9785874,0.4958017,0.6100835,-1.840928,-0.4954284,0.4958017,-0.1269244,-1.840928,-3.106279,6.492891,-3.061911,7.523747,-1.655911,6.127194,-1.585486,7.763475,2.954583,2.954583,2.954583,-2.954583,-2.954583,2.954583,-2.954583,-2.954583,-1.920479,3.525083,0.9785874,11.34664,1.920479,3.525083,1.137884,21.33202,0.9785874,13.14822,-0.4954284,13.14822,-0.4954284,11.34664,-1.137884,21.33202,-0.5172682,6.423861,0.3966215,6.423861,-0.7973312,4.438653,0.6766845,4.438653,-1.083649,3.284022,-0.7806566,4.748773,0.5541465,3.284022,0.2511544,4.748773,1.400076,13.22143,3.739769,12.87223,1.478252,11.42155,3.778857,11.97229,0.2511544,6.353315,-0.7806566,6.353315,0.2511544,7.385126,-0.7806566,7.385126,2.954583,-0.8130127,-2.954583,-0.8130127,1.920479,2.945041,-1.920479,2.945041,0.6100835,11.79704,-0.1269244,11.79704,0.6100835,12.69782,-0.1269244,12.69782,1.207648,16.95339,1.143513,18.42601,3.178791,17.31956,3.139028,18.23259,-1.224652,16.95413,-3.195795,17.32031,-1.160518,18.42675,-3.156032,18.23333,2.845203,21.61324,4.007329,15.12064,-2.845203,21.61324,-4.007329,15.12064,-1.701223,35.01981,-1.438574,39.59606,2.707609,35.38693,1.691697,39.85672,4.252637,26.19966,-2.097822,25.31541,2.615503,31.21589,-1.893323,30.58808,1.463784,40.12658,-1.666609,40.38576,1.354088,44.4641,-0.8747141,44.49231,1.173723,47.60173,-1.056267,47.5723,-0.0862549,58.57368,-1.688809,34.05231,-1.435282,38.62908,2.719282,34.42822,1.694463,38.89598,-1.467363,43.3471,-1.052826,46.39101,1.673457,43.38937,1.177156,46.42102,-1.944244,30.99618,-1.973837,34.67891,2.559239,31.66125,1.764915,34.37047,2.678016,26.25205,-3.719451,26.67941,2.096584,31.49655,-2.445618,31.79998,1.464874,42.14679,-1.675932,42.19007,1.051324,45.19083,-1.178648,45.22156,-2.60753,22.2466,-2.072211,27.49601,3.785935,22.73017,2.467149,27.83934,-1.463784,40.12658,-1.349079,44.66217,1.666609,40.38576,0.8472177,44.6349,-2.416382,35.82688,-1.621363,40.34119,2.005165,35.67687,1.517935,40.23468,-1.517935,40.23468,1.621363,40.34119,-2.005165,35.67687,2.416382,35.82688,-1.528808,41.34829,-1.179296,46.02299,1.610559,41.45275,0.9516752,46.08949,4.104051,1.794268,2.902002,-1.107733,2.902002,4.69627,2.596534,1.5706,1.699835,3.612692,-2.273737E-13,5.898319,-0.3508576,4.399535,-2.902002,4.69627,-2.325802,3.541839,-3.138005,1.5706,-4.104051,1.794268,1.740525,-0.5004017,-2.273737E-13,-2.309782,-0.334617,-1.31412,-2.902002,-1.107733,-2.341529,-0.4275649,-2.845203,21.61324,2.845203,21.61324,-4.007329,15.12064,4.007329,15.12064,4.59462E-17,9.485086,-0.301595,8.119611,-4.087327,7.792061,-3.411881,6.823852,-5.780353,3.704734,-4.861753,3.672872,-4.087327,-0.3825926,-3.703289,0.1445316,-0.2230404,-1.609387,-4.018208E-17,-2.075619,4.087327,7.792061,2.988417,6.919451,5.780353,3.704734,4.685852,3.573988,4.087327,-0.3825926,3.429066,-0.1301712,-0.9743633,48.14968,-0.2058799,59.16697,1.254714,48.21992,1.172823,48.41372,-1.057173,48.38475,-0.08492927,59.38593,-3.62937,22.49962,-2.416292,27.63491,2.772711,22.14808,2.129185,27.38532,-4.007329,15.12064,-2.845203,21.61324,4.007329,15.12064,2.845203,21.61324,-0.9734548,47.81319,-0.2072038,58.83063,1.255609,47.88388,1.057173,48.38475,-1.172823,48.41372,0.08492927,59.38593,-1.610559,41.45275,-0.9707028,45.95559,1.528808,41.34829,1.179296,46.02299,1.056267,47.5723,-1.173723,47.60173,0.0862549,58.57368,0.2058799,59.16697,0.9743633,48.14968,-1.254714,48.21992,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,-0.9619363,45.54556,1.267031,45.6192,-1.316825,42.49412,1.822566,42.59784,1.612271,39.66612,-1.52694,39.55708,1.01855,43.80101,-1.210584,43.87292,1.992852,33.33845,-2.428385,33.49733,1.514767,37.89724,-1.624311,38.01004,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,-1.464874,42.14679,-1.051324,45.19083,1.675932,42.19007,1.178648,45.22156,-1.31932,42.99131,-0.963443,46.04263,1.820105,43.09402,1.265548,46.11556,0.2072038,58.83063,0.9734548,47.81319,-1.255609,47.88388,3.577929,26.68827,-2.826375,26.37987,2.399468,31.83163,-2.147588,31.61266,-1.465745,40.86766,-1.340558,45.5493,1.66502,41.12231,0.8123928,45.57852,1.467363,43.3471,-1.673457,43.38937,1.052826,46.39101,-1.177156,46.42102,0.9619363,45.54556,1.316825,42.49412,-1.267031,45.6192,-1.822566,42.59784,1.31932,42.99131,-1.820105,43.09402,0.963443,46.04263,-1.265548,46.11556,2.536194,32.90358,-1.975582,32.29733,1.546224,36.45088,-1.954234,36.55746,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,-2.845203,23.35311,-2.161896,28.25221,2.845203,23.35311,2.189903,28.05141,2.845203,23.35311,-2.845203,23.35311,2.417124,26.42231,-2.36908,26.76677,-2.120833,29.87317,-1.930524,32.69001,2.419982,30.19667,1.964887,32.33493,-4.315434,24.28307,-2.635075,29.28499,2.027159,23.34406,1.868166,28.6183,1.688809,34.05231,-2.719282,34.42822,1.435282,38.62908,-1.694463,38.89598,1.701223,35.01981,-2.707609,35.38693,1.438574,39.59606,-1.691697,39.85672,4.007329,15.12064,-4.007329,15.12064,2.845203,21.61324,-2.845203,21.61324,2.845203,23.35311,-2.845203,23.35311,2.36908,26.76677,-2.273319,27.45335,10.47165,0,7.404577,-7.404577,7.404577,7.404577,-4.547474E-13,10.47165,1.137884,1.137884,-1.137884,1.137884,-7.404577,7.404577,-1.137884,-1.137884,1.137884,-1.137884,-4.547474E-13,-10.47165,-7.404577,-7.404577,-10.47165,0,1.465745,40.86766,-1.66502,41.12231,1.344173,45.41411,-0.849628,45.38391,-2.381741,30.02312,-1.968423,32.16985,2.164519,29.78821,1.969304,32.02749,1.624311,38.01004,2.428385,33.49733,-1.514767,37.89724,-1.992852,33.33845,2.02472,25.06397,-4.317593,26.00486,1.867297,30.33825,-2.635746,31.00629,2.372175,33.2949,-2.175162,33.08185,1.586855,37.48207,-1.780649,37.36897,-1.97076,23.63954,-1.848027,28.91475,4.365228,24.62213,2.650525,29.61238,1.52694,39.55708,-1.612271,39.66612,1.2212,43.72809,-1.01855,43.80101,2.845203,23.35311,-2.845203,23.35311,2.38305,26.6666,-2.417124,26.42231,-5.517444,-1.150789,-4.077355,-0.3178134,0.5560067,-3.205884,0.4513993,-1.927701,6.303757,-0.3644766,4.679139,0.3422382,5.925278,4.86666,8.358851,5.708974,3.746883,8.807804,-8.358851,4.596961,-5.972795,4.00533,-6.303757,10.67041,-4.348814,8.24407,-0.4037354,10.131,-0.5560067,13.51182,5.517444,11.45672,2.845203,23.35311,-2.845203,23.35311,2.291549,27.32264,-2.38305,26.6666,-2.845203,23.35311,-2.189903,28.05141,2.845203,23.35311,2.273319,27.45335,1.955592,32.10611,-2.550972,32.74996,1.96824,35.90756,-1.732036,35.59263,-2.547156,31.39573,-1.929584,33.557,1.96079,30.76163,1.964235,33.71992,2.845203,23.35311,-2.845203,23.35311,2.161896,28.25221,-2.201834,27.96587,2.845203,23.35311,-2.845203,23.35311,2.201834,27.96587,-2.291549,27.32264,2.134978,32.99025,-2.407778,33.28526,1.817829,37.28379,-1.639761,37.00834 + } + UVIndex: *738 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,39,38,37,41,36,36,41,42,43,42,41,40,43,41,38,43,40,44,46,45,47,45,46,48,50,49,51,49,50,52,49,51,53,52,51,49,54,48,55,48,54,53,55,54,51,55,53,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,69,71,73,72,71,69,74,68,75,68,74,73,75,74,71,75,73,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,142,140,141,143,145,144,146,144,145,147,149,148,150,148,149,151,153,152,154,152,153,155,157,156,158,156,157,159,161,160,162,160,161,163,165,164,166,164,165,167,169,168,170,168,169,171,170,169,172,171,169,173,171,172,174,173,172,175,173,174,176,175,174,177,176,174,170,178,168,179,168,178,180,179,178,181,179,180,177,181,176,182,181,180,176,181,182,183,185,184,186,184,185,187,189,188,190,188,189,191,190,189,192,190,191,193,192,191,194,192,193,195,194,193,196,195,193,187,188,197,198,197,188,199,197,198,200,199,198,201,199,200,196,201,195,202,201,200,195,201,202,203,205,204,206,208,207,209,211,210,212,210,211,213,215,214,216,214,215,217,219,218,220,222,221,223,225,224,226,224,225,227,229,228,230,232,231,233,235,234,236,234,235,237,239,238,240,238,239,241,243,242,244,242,243,245,247,246,248,246,247,249,251,250,252,250,251,253,255,254,256,254,255,257,259,258,260,258,259,261,263,262,264,262,263,265,267,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,329,331,333,332,331,334,333,331,335,333,334,332,336,329,337,329,336,335,337,336,338,337,335,334,338,335,339,338,334,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,375,374,377,375,376,378,377,376,379,378,376,380,378,379,372,373,381,382,381,373,383,381,382,384,383,382,385,383,384,386,383,385,380,386,385,379,386,380,387,386,379,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,401,402,404,406,405,407,405,406,408,410,409,411,409,410,412,414,413,415,413,414 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *246 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineDefaultB, Model::RootNode + C: "OO",4632887247905658290,0 + + ;Geometry::, Model::Mesh tree_pineDefaultB + C: "OO",4932755908671785467,4632887247905658290 + + ;Material::woodBarkDark, Model::Mesh tree_pineDefaultB + C: "OO",3048,4632887247905658290 + + ;Material::leafsDark, Model::Mesh tree_pineDefaultB + C: "OO",3026,4632887247905658290 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultB.fbx.import new file mode 100644 index 0000000..c22c8e6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c8vix2l0cq6ah" +path="res://.godot/imported/tree_pineDefaultB.fbx-80347008ea7cb4d6f9f41d985c3def8a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineDefaultB.fbx" +dest_files=["res://.godot/imported/tree_pineDefaultB.fbx-80347008ea7cb4d6f9f41d985c3def8a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundA.fbx new file mode 100644 index 0000000..130e0d4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundA.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 39 + Millisecond: 136 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineGroundA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineGroundA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4773003275434279034, "Model::tree_pineGroundA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5271946290732908202, "Geometry::", "Mesh" { + Vertices: *396 { + a: 1.45065,3.801621,0.8375332,0,3.801621,1.675066,0.8408893,6.104972,0.4854876,0,6.104972,0.9709752,0,6.104972,-1.197672,1.037215,6.104972,-0.5988362,0,9.144686,0,0,1.805301,-2.16333,1.873499,1.805301,-1.081665,-5.775292E-14,3.801621,-1.321203,1.144195,3.801621,-0.6606015,0,3.801621,-1.675066,1.45065,3.801621,-0.8375332,0,6.104972,-0.9709752,0.8408893,6.104972,-0.4854876,1.037215,6.104972,0.5988362,0,6.104972,1.197672,0,9.144686,0,-1.873499,1.805301,-1.081665,-1.144195,3.801621,-0.6606015,-1.873499,1.805301,1.081665,-1.144195,3.801621,0.6606015,-1.037215,6.104972,-0.5988362,0,9.144686,0,-1.037215,6.104972,0.5988362,-1.037215,6.104972,-0.5988362,0,6.104972,-1.197672,0,9.144686,0,-1.45065,3.801621,-0.8375332,0,3.801621,-1.675066,-0.8408893,6.104972,-0.4854876,0,6.104972,-0.9709752,1.873499,1.805301,-1.081665,1.514981,1.805301,0.8746746,1.873499,1.805301,1.081665,0,1.805301,2.16333,0,1.805301,1.749349,-1.873499,1.805301,1.081665,-1.514981,1.805301,0.8746746,-1.514981,1.805301,-0.8746746,1.514981,1.805301,-0.8746746,0,1.805301,-2.16333,0,1.805301,-1.749349,-1.873499,1.805301,-1.081665,1.45065,3.801621,-0.8375332,1.45065,3.801621,0.8375332,0.8408893,6.104972,-0.4854876,0.8408893,6.104972,0.4854876,0,6.104972,1.197672,-1.037215,6.104972,0.5988362,0,9.144686,0,-1.45065,3.801621,-0.8375332,-0.8408893,6.104972,-0.4854876,-1.45065,3.801621,0.8375332,-0.8408893,6.104972,0.4854876,2.401922,-1.602965E-30,-1.38675,2.401922,-1.602965E-30,1.38675,1.514981,1.805301,-0.8746746,1.514981,1.805301,0.8746746,0,3.801621,1.675066,-1.45065,3.801621,0.8375332,0,6.104972,0.9709752,-0.8408893,6.104972,0.4854876,1.45065,3.801621,-0.8375332,1.144195,3.801621,0.6606015,1.45065,3.801621,0.8375332,0,3.801621,1.675066,0,3.801621,1.321203,-1.45065,3.801621,0.8375332,-1.144195,3.801621,0.6606015,-1.144195,3.801621,-0.6606015,1.144195,3.801621,-0.6606015,0,3.801621,-1.675066,-5.775292E-14,3.801621,-1.321203,-1.45065,3.801621,-0.8375332,-2.401922,-1.602965E-30,-1.38675,-1.514981,1.805301,-0.8746746,-2.401922,-1.602965E-30,1.38675,-1.514981,1.805301,0.8746746,0,1.805301,2.16333,-1.873499,1.805301,1.081665,0,3.801621,1.321203,-1.144195,3.801621,0.6606015,1.037215,6.104972,-0.5988362,0.8408893,6.104972,0.4854876,1.037215,6.104972,0.5988362,0,6.104972,1.197672,0,6.104972,0.9709752,-1.037215,6.104972,0.5988362,-0.8408893,6.104972,0.4854876,-0.8408893,6.104972,-0.4854876,0.8408893,6.104972,-0.4854876,0,6.104972,-1.197672,0,6.104972,-0.9709752,-1.037215,6.104972,-0.5988362,0,9.144686,0,1.037215,6.104972,-0.5988362,1.037215,6.104972,0.5988362,1.873499,1.805301,-1.081665,1.873499,1.805301,1.081665,1.144195,3.801621,-0.6606015,1.144195,3.801621,0.6606015,2.401922,-1.602965E-30,1.38675,2.401922,-1.602965E-30,-1.38675,0,-1.602965E-30,2.7735,0,-1.602965E-30,-2.7735,-2.401922,-1.602965E-30,1.38675,-2.401922,-1.602965E-30,-1.38675,0,-1.602965E-30,-2.7735,2.401922,-1.602965E-30,-1.38675,0,1.805301,-1.749349,1.514981,1.805301,-0.8746746,-2.401922,-1.602965E-30,-1.38675,0,-1.602965E-30,-2.7735,-1.514981,1.805301,-0.8746746,0,1.805301,-1.749349,0,-1.602965E-30,2.7735,-2.401922,-1.602965E-30,1.38675,0,1.805301,1.749349,-1.514981,1.805301,0.8746746,1.873499,1.805301,1.081665,0,1.805301,2.16333,1.144195,3.801621,0.6606015,0,3.801621,1.321203,2.401922,-1.602965E-30,1.38675,0,-1.602965E-30,2.7735,1.514981,1.805301,0.8746746,0,1.805301,1.749349,-1.873499,1.805301,-1.081665,0,1.805301,-2.16333,-1.144195,3.801621,-0.6606015,-5.775292E-14,3.801621,-1.321203 + } + PolygonVertexIndex: *246 { + a: 0,2,-2,3,1,-3,4,6,-6,7,9,-9,10,8,-10,11,13,-13,14,12,-14,15,17,-17,18,20,-20,21,19,-21,22,24,-24,25,27,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,33,-36,37,36,-36,38,36,-38,39,38,-38,33,40,-33,41,32,-41,42,41,-41,39,41,-43,43,41,-40,37,43,-40,44,46,-46,47,45,-47,48,50,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,65,-65,66,64,-66,67,64,-67,68,67,-67,69,67,-69,70,69,-69,64,71,-64,72,63,-72,73,72,-72,74,72,-74,70,74,-74,68,74,-71,75,77,-77,78,76,-78,79,81,-81,82,80,-82,83,85,-85,86,84,-86,87,84,-87,88,87,-87,89,87,-89,90,89,-89,84,91,-84,92,83,-92,93,92,-92,90,92,-94,94,92,-91,88,94,-91,95,97,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,105,-105,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *738 { + a: 0.48335,0.2559123,0.8371867,0.48335,0.2559123,0.8371867,0.48335,0.2559123,0.8371867,0.48335,0.2559123,0.8371867,0.48335,0.2559123,0.8371867,0.48335,0.2559123,0.8371867,0.4732099,0.3229386,-0.8196236,0.4732099,0.3229386,-0.8196236,0.4732099,0.3229386,-0.8196236,0.4696417,0.3431427,-0.8134431,0.4696417,0.3431427,-0.8134431,0.4696417,0.3431427,-0.8134431,0.4696417,0.3431427,-0.8134431,0.4696417,0.3431427,-0.8134431,0.4696417,0.3431427,-0.8134431,0.48335,0.2559123,-0.8371867,0.48335,0.2559123,-0.8371867,0.48335,0.2559123,-0.8371867,0.48335,0.2559123,-0.8371867,0.48335,0.2559123,-0.8371867,0.48335,0.2559123,-0.8371867,0.4732099,0.3229386,0.8196236,0.4732099,0.3229386,0.8196236,0.4732099,0.3229386,0.8196236,-0.9392833,0.3431427,0,-0.9392833,0.3431427,0,-0.9392833,0.3431427,0,-0.9392833,0.3431427,0,-0.9392833,0.3431427,0,-0.9392833,0.3431427,0,-0.9464199,0.3229386,0,-0.9464199,0.3229386,0,-0.9464199,0.3229386,0,-0.4732099,0.3229386,-0.8196236,-0.4732099,0.3229386,-0.8196236,-0.4732099,0.3229386,-0.8196236,-0.48335,0.2559123,-0.8371867,-0.48335,0.2559123,-0.8371867,-0.48335,0.2559123,-0.8371867,-0.48335,0.2559123,-0.8371867,-0.48335,0.2559123,-0.8371867,-0.48335,0.2559123,-0.8371867,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9667,0.2559123,0,0.9667,0.2559123,0,0.9667,0.2559123,0,0.9667,0.2559123,0,0.9667,0.2559123,0,0.9667,0.2559123,0,-0.4732099,0.3229386,0.8196236,-0.4732099,0.3229386,0.8196236,-0.4732099,0.3229386,0.8196236,-0.9667,0.2559123,0,-0.9667,0.2559123,0,-0.9667,0.2559123,0,-0.9667,0.2559123,0,-0.9667,0.2559123,0,-0.9667,0.2559123,0,0.8975294,0.4409546,0,0.8975294,0.4409546,0,0.8975294,0.4409546,0,0.8975294,0.4409546,0,0.8975294,0.4409546,0,0.8975294,0.4409546,0,-0.48335,0.2559123,0.8371867,-0.48335,0.2559123,0.8371867,-0.48335,0.2559123,0.8371867,-0.48335,0.2559123,0.8371867,-0.48335,0.2559123,0.8371867,-0.48335,0.2559123,0.8371867,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8975294,0.4409546,0,-0.8975294,0.4409546,0,-0.8975294,0.4409546,0,-0.8975294,0.4409546,0,-0.8975294,0.4409546,0,-0.8975294,0.4409546,0,-0.4696417,0.3431427,0.8134431,-0.4696417,0.3431427,0.8134431,-0.4696417,0.3431427,0.8134431,-0.4696417,0.3431427,0.8134431,-0.4696417,0.3431427,0.8134431,-0.4696417,0.3431427,0.8134431,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9464199,0.3229386,0,0.9464199,0.3229386,0,0.9464199,0.3229386,0,0.9392833,0.3431427,0,0.9392833,0.3431427,0,0.9392833,0.3431427,0,0.9392833,0.3431427,0,0.9392833,0.3431427,0,0.9392833,0.3431427,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4487646,0.4409544,-0.7772834,0.4487646,0.4409544,-0.7772834,0.4487646,0.4409544,-0.7772834,0.4487646,0.4409544,-0.7772834,0.4487646,0.4409544,-0.7772834,0.4487646,0.4409544,-0.7772834,-0.4487646,0.4409544,-0.7772834,-0.4487646,0.4409544,-0.7772834,-0.4487646,0.4409544,-0.7772834,-0.4487646,0.4409544,-0.7772834,-0.4487646,0.4409544,-0.7772834,-0.4487646,0.4409544,-0.7772834,-0.4487646,0.4409544,0.7772834,-0.4487646,0.4409544,0.7772834,-0.4487646,0.4409544,0.7772834,-0.4487646,0.4409544,0.7772834,-0.4487646,0.4409544,0.7772834,-0.4487646,0.4409544,0.7772834,0.4696417,0.3431427,0.8134431,0.4696417,0.3431427,0.8134431,0.4696417,0.3431427,0.8134431,0.4696417,0.3431427,0.8134431,0.4696417,0.3431427,0.8134431,0.4696417,0.3431427,0.8134431,0.4487646,0.4409544,0.7772834,0.4487646,0.4409544,0.7772834,0.4487646,0.4409544,0.7772834,0.4487646,0.4409544,0.7772834,0.4487646,0.4409544,0.7772834,0.4487646,0.4409544,0.7772834,-0.4696417,0.3431427,-0.8134431,-0.4696417,0.3431427,-0.8134431,-0.4696417,0.3431427,-0.8134431,-0.4696417,0.3431427,-0.8134431,-0.4696417,0.3431427,-0.8134431,-0.4696417,0.3431427,-0.8134431 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: 3.297375,13.00704,-3.297375,13.00704,1.911369,22.38773,-1.911369,22.38773,2.357623,21.42878,-2.357623,21.42878,-8.881784E-16,34.07367,4.258524,4.144929,-4.258523,4.144929,2.600794,12.51251,-2.600792,12.51251,3.297375,13.00704,-3.297375,13.00704,1.911369,22.38773,-1.911369,22.38773,2.357623,21.42878,-2.357623,21.42878,0,34.07367,-4.258524,4.144929,-2.600793,12.51251,4.258524,4.144929,2.600793,12.51251,-2.357623,21.42878,0,34.07367,2.357623,21.42878,2.357623,21.42878,-2.357623,21.42878,0,34.07367,3.297375,13.00704,-3.297375,13.00704,1.911369,22.38773,-1.911369,22.38773,7.375979,-4.258524,5.964491,3.443601,7.375979,4.258524,0,8.517048,0,6.887201,-7.375979,4.258524,-5.964491,3.443601,-5.964491,-3.443601,5.964491,-3.443601,0,-8.517048,0,-6.887201,-7.375979,-4.258524,3.297375,13.00704,-3.297375,13.00704,1.911369,22.38773,-1.911369,22.38773,2.357623,21.42878,-2.357623,21.42878,-8.881784E-16,34.07367,-3.297375,13.00704,-1.911369,22.38773,3.297375,13.00704,1.911369,22.38773,5.459646,-4.169837,-5.459646,-4.169837,3.443601,3.749108,-3.443601,3.749108,3.297375,13.00704,-3.297375,13.00704,1.911369,22.38773,-1.911369,22.38773,5.711221,-3.297375,4.504705,2.600793,5.711221,3.297375,0,6.59475,0,5.201587,-5.711221,3.297375,-4.504705,2.600793,-4.504705,-2.600793,4.504705,-2.600793,0,-6.59475,-2.273737E-13,-5.201587,-5.711221,-3.297375,-5.459646,-4.169837,-3.443601,3.749108,5.459646,-4.169837,3.443601,3.749108,4.258524,4.144929,-4.258523,4.144929,2.600794,12.51251,-2.600792,12.51251,4.083523,-2.357623,3.310588,1.911369,4.083523,2.357623,0,4.715246,0,3.822737,-4.083523,2.357623,-3.310588,1.911369,-3.310588,-1.911369,3.310588,-1.911369,0,-4.715246,0,-3.822737,-4.083523,-2.357623,0,34.07367,2.357623,21.42878,-2.357623,21.42878,4.258524,4.144929,-4.258524,4.144929,2.600793,12.51251,-2.600793,12.51251,9.456386,5.459646,9.456386,-5.459646,0,10.91929,0,-10.91929,-9.456386,5.459646,-9.456386,-5.459646,5.459645,-4.169834,-5.459649,-4.169834,3.4436,3.74911,-3.443601,3.74911,5.459649,-4.169834,-5.459645,-4.169834,3.443601,3.74911,-3.4436,3.74911,5.459645,-4.169834,-5.459649,-4.169834,3.4436,3.74911,-3.443601,3.74911,4.258523,4.144929,-4.258524,4.144929,2.600792,12.51251,-2.600794,12.51251,5.459649,-4.169834,-5.459645,-4.169834,3.443601,3.74911,-3.4436,3.74911,4.258523,4.144929,-4.258524,4.144929,2.600792,12.51251,-2.600794,12.51251 + } + UVIndex: *246 { + a: 0,2,1,3,1,2,4,6,5,7,9,8,10,8,9,11,13,12,14,12,13,15,17,16,18,20,19,21,19,20,22,24,23,25,27,26,28,30,29,31,29,30,32,34,33,35,33,34,36,33,35,37,36,35,38,36,37,39,38,37,33,40,32,41,32,40,42,41,40,39,41,42,43,41,39,37,43,39,44,46,45,47,45,46,48,50,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,65,64,66,64,65,67,64,66,68,67,66,69,67,68,70,69,68,64,71,63,72,63,71,73,72,71,74,72,73,70,74,73,68,74,70,75,77,76,78,76,77,79,81,80,82,80,81,83,85,84,86,84,85,87,84,86,88,87,86,89,87,88,90,89,88,84,91,83,92,83,91,93,92,91,90,92,93,94,92,90,88,94,90,95,97,96,98,100,99,101,99,100,102,104,103,105,103,104,106,105,104,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *82 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineGroundA, Model::RootNode + C: "OO",4773003275434279034,0 + + ;Geometry::, Model::Mesh tree_pineGroundA + C: "OO",5271946290732908202,4773003275434279034 + + ;Material::leafsDark, Model::Mesh tree_pineGroundA + C: "OO",3026,4773003275434279034 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundA.fbx.import new file mode 100644 index 0000000..ef2ec7a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cvf0iqutr8g1d" +path="res://.godot/imported/tree_pineGroundA.fbx-4f98740221e8d695effc041883729a00.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundA.fbx" +dest_files=["res://.godot/imported/tree_pineGroundA.fbx-4f98740221e8d695effc041883729a00.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundB.fbx new file mode 100644 index 0000000..742628e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundB.fbx @@ -0,0 +1,327 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 39 + Millisecond: 223 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineGroundB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineGroundB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5385246030276834031, "Model::tree_pineGroundB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5212421584228269424, "Geometry::", "Mesh" { + Vertices: *396 { + a: -1.295608,4.089219,-0.7336039,-0.923362,7.047863,-0.5343235,-1.295608,4.225749,0.9371757,-0.9396115,6.995326,0.3945369,-1.951536,2.283285,-1.140346,-1.229114,4.101013,-0.6968886,-1.951536,2.141321,1.019397,-1.142254,4.229198,0.7312156,-1.295608,4.089219,-0.7336039,0.1454279,4.210544,-1.580914,-0.923362,7.047863,-0.5343235,-0.1344694,7.021914,-1.011377,1.786334,1.985809,-1.155391,1.786334,1.843845,1.004351,1.161236,4.426356,-0.5837854,1.116485,4.522041,0.6595596,-0.09013721,6.895857,1.11938,-1.125526,7.000431,0.5244229,0.0901372,10.41967,0.07688885,2.401922,8.014827E-31,-1.38675,2.401922,8.014827E-31,1.38675,1.545273,1.987755,-0.8921636,1.598523,1.864195,0.9229073,-0.09013721,7.034013,-1.272897,0.9452518,6.929438,-0.6779402,0.0901372,10.41967,0.07688885,-2.401922,8.014827E-31,-1.38675,-1.444059,2.222609,-0.8337278,-2.401922,8.014827E-31,1.38675,-1.490457,2.114948,0.8605158,1.586464,4.468399,-0.7574459,1.586464,4.604929,0.9133338,0.7440673,6.936909,-0.5710912,0.7940999,6.874587,0.4493393,-1.125526,7.069508,-0.6717159,-0.09013721,7.034013,-1.272897,0.0901372,10.41967,0.07688885,2.401922,8.014827E-31,1.38675,0,8.014827E-31,2.7735,1.598523,1.864195,0.9229073,0,1.933435,1.811358,0.9452518,6.860361,0.5181986,-0.09013721,6.895857,1.11938,0.0901372,10.41967,0.07688885,0.0901372,10.41967,0.07688885,0.9452518,6.929438,-0.6779402,0.9452518,6.860361,0.5181986,0.1454279,4.483604,1.760644,-0.1067886,6.907592,0.9357255,1.586464,4.604929,0.9133338,0.7940999,6.874587,0.4493393,2.401922,8.014827E-31,1.38675,2.401922,8.014827E-31,-1.38675,0,8.014827E-31,2.7735,0,8.014827E-31,-2.7735,-2.401922,8.014827E-31,1.38675,-2.401922,8.014827E-31,-1.38675,-1.125526,7.069508,-0.6717159,0.0901372,10.41967,0.07688885,-1.125526,7.000431,0.5244229,-0.08260068,1.921601,2.091746,-1.951536,2.141321,1.019397,0.0682212,4.43619,1.305347,-1.142254,4.229198,0.7312156,0.1454279,4.210544,-1.580914,1.586464,4.468399,-0.7574459,-0.1344694,7.021914,-1.011377,0.7440673,6.936909,-0.5710912,1.786334,1.985809,-1.155391,1.598523,1.864195,0.9229073,1.786334,1.843845,1.004351,-0.08260068,1.921601,2.091746,0,1.933435,1.811358,-1.490457,2.114948,0.8605158,-1.951536,2.141321,1.019397,1.545273,1.987755,-0.8921636,-0.08260068,2.205529,-2.22774,0,2.164021,-1.696611,-1.444059,2.222609,-0.8337278,-1.951536,2.283285,-1.140346,-1.295608,4.225749,0.9371757,-0.9396115,6.995326,0.3945369,0.1454279,4.483604,1.760644,-0.1067886,6.907592,0.9357255,-2.401922,8.014827E-31,-1.38675,0,8.014827E-31,-2.7735,-1.444059,2.222609,-0.8337278,0,2.164021,-1.696611,-0.08260068,2.205529,-2.22774,0.04396331,4.215225,-1.359448,-1.951536,2.283285,-1.140346,-1.229114,4.101013,-0.6968886,0.9452518,6.929438,-0.6779402,0.7940999,6.874587,0.4493393,0.9452518,6.860361,0.5181986,-0.09013721,6.895857,1.11938,-0.1067886,6.907592,0.9357255,-1.125526,7.000431,0.5244229,-0.9396115,6.995326,0.3945369,0.7440673,6.936909,-0.5710912,-0.09013721,7.034013,-1.272897,-0.1344694,7.021914,-1.011377,-1.125526,7.069508,-0.6717159,-0.923362,7.047863,-0.5343235,1.786334,1.985809,-1.155391,1.161236,4.426356,-0.5837854,-0.08260068,2.205529,-2.22774,0.04396331,4.215225,-1.359448,0,8.014827E-31,2.7735,-2.401922,8.014827E-31,1.38675,0,1.933435,1.811358,-1.490457,2.114948,0.8605158,1.786334,1.843845,1.004351,-0.08260068,1.921601,2.091746,1.116485,4.522041,0.6595596,0.0682212,4.43619,1.305347,0,8.014827E-31,-2.7735,2.401922,8.014827E-31,-1.38675,0,2.164021,-1.696611,1.545273,1.987755,-0.8921636,1.586464,4.468399,-0.7574459,1.116485,4.522041,0.6595596,1.586464,4.604929,0.9133338,0.1454279,4.483604,1.760644,1.161236,4.426356,-0.5837854,0.0682212,4.43619,1.305347,-1.295608,4.225749,0.9371757,-1.142254,4.229198,0.7312156,-1.229114,4.101013,-0.6968886,0.1454279,4.210544,-1.580914,0.04396331,4.215225,-1.359448,-1.295608,4.089219,-0.7336039 + } + PolygonVertexIndex: *246 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,21,-21,22,20,-22,23,25,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,39,-39,40,38,-40,41,43,-43,44,46,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,54,-54,56,54,-56,57,59,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,69,-72,73,72,-72,74,73,-72,69,75,-69,76,68,-76,77,76,-76,78,76,-78,79,76,-79,73,79,-79,74,79,-74,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,93,-96,97,96,-96,98,96,-98,93,99,-93,100,92,-100,101,100,-100,102,100,-102,97,102,-99,103,102,-102,98,102,-104,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,120,-122,125,121,-124,126,125,-124,127,125,-127,128,127,-127,120,124,-130,130,129,-125,131,129,-131,128,131,-131,126,131,-129 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *738 { + a: -0.9920399,0.1255058,-0.01025594,-0.9920399,0.1255058,-0.01025594,-0.9920399,0.1255058,-0.01025594,-0.9920399,0.1255058,-0.01025594,-0.9920399,0.1255058,-0.01025594,-0.9920399,0.1255058,-0.01025594,-0.931022,0.3641771,0.02393822,-0.931022,0.3641771,0.02393822,-0.931022,0.3641771,0.02393822,-0.931022,0.3641771,0.02393822,-0.931022,0.3641771,0.02393822,-0.931022,0.3641771,0.02393822,-0.5106877,0.1215807,-0.8511265,-0.5106877,0.1215807,-0.8511265,-0.5106877,0.1215807,-0.8511265,-0.5106877,0.1215807,-0.8511265,-0.5106877,0.1215807,-0.8511265,-0.5106877,0.1215807,-0.8511265,0.9695024,0.244554,0.01607495,0.9695024,0.244554,0.01607495,0.9695024,0.244554,0.01607495,0.9695024,0.244554,0.01607495,0.9695024,0.244554,0.01607495,0.9695024,0.244554,0.01607495,-0.4582869,0.2736206,0.8456388,-0.4582869,0.2736206,0.8456388,-0.4582869,0.2736206,0.8456388,0.9183478,0.3957742,0,0.9183478,0.3957742,0,0.9183478,0.3957742,0,0.9183478,0.3957742,0,0.9183478,0.3957742,0,0.9183478,0.3957742,0,0.4980273,0.2981262,-0.8143032,0.4980273,0.2981262,-0.8143032,0.4980273,0.2981262,-0.8143032,-0.9183478,0.3957742,0,-0.9183478,0.3957742,0,-0.9183478,0.3957742,0,-0.9183478,0.3957742,0,-0.9183478,0.3957742,0,-0.9183478,0.3957742,0,0.9454625,0.3246486,-0.0265292,0.9454625,0.3246486,-0.0265292,0.9454625,0.3246486,-0.0265292,0.9454625,0.3246486,-0.0265292,0.9454625,0.3246486,-0.0265292,0.9454625,0.3246486,-0.0265292,-0.4614428,0.3496387,-0.815367,-0.4614428,0.3496387,-0.815367,-0.4614428,0.3496387,-0.815367,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4951831,0.2230739,0.8396617,0.4951831,0.2230739,0.8396617,0.4951831,0.2230739,0.8396617,0.9718593,0.2351704,0.01358099,0.9718593,0.2351704,0.01358099,0.9718593,0.2351704,0.01358099,0.4579714,0.3287354,0.8259511,0.4579714,0.3287354,0.8259511,0.4579714,0.3287354,0.8259511,0.4579714,0.3287354,0.8259511,0.4579714,0.3287354,0.8259511,0.4579714,0.3287354,0.8259511,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9412346,0.3371916,0.0194728,-0.9412346,0.3371916,0.0194728,-0.9412346,0.3371916,0.0194728,-0.4501657,0.2910092,0.8441945,-0.4501657,0.2910092,0.8441945,-0.4501657,0.2910092,0.8441945,-0.4501657,0.2910092,0.8441945,-0.4501657,0.2910092,0.8441945,-0.4501657,0.2910092,0.8441945,0.4539923,0.2201079,-0.8633907,0.4539923,0.2201079,-0.8633907,0.4539923,0.2201079,-0.8633907,0.4539923,0.2201079,-0.8633907,0.4539923,0.2201079,-0.8633907,0.4539923,0.2201079,-0.8633907,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.07942528,-0.9946943,-0.06538329,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.4591739,0.395774,-0.7953126,-0.4591739,0.395774,-0.7953126,-0.4591739,0.395774,-0.7953126,-0.4591739,0.395774,-0.7953126,-0.4591739,0.395774,-0.7953126,-0.4591739,0.395774,-0.7953126,-0.4539442,0.3773348,-0.8071884,-0.4539442,0.3773348,-0.8071884,-0.4539442,0.3773348,-0.8071884,-0.4539442,0.3773348,-0.8071884,-0.4539442,0.3773348,-0.8071884,-0.4539442,0.3773348,-0.8071884,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,-0.06754778,-0.9960564,-0.05752207,0.4997833,0.3168149,-0.8061296,0.4997833,0.3168149,-0.8061296,0.4997833,0.3168149,-0.8061296,0.4997833,0.3168149,-0.8061296,0.4997833,0.3168149,-0.8061296,0.4997833,0.3168149,-0.8061296,-0.4591739,0.395774,0.7953126,-0.4591739,0.395774,0.7953126,-0.4591739,0.395774,0.7953126,-0.4591739,0.395774,0.7953126,-0.4591739,0.395774,0.7953126,-0.4591739,0.395774,0.7953126,0.4963836,0.2318517,0.8365692,0.4963836,0.2318517,0.8365692,0.4963836,0.2318517,0.8365692,0.4963836,0.2318517,0.8365692,0.4963836,0.2318517,0.8365692,0.4963836,0.2318517,0.8365692,0.4591739,0.395774,-0.7953128,0.4591739,0.395774,-0.7953128,0.4591739,0.395774,-0.7953128,0.4591739,0.395774,-0.7953128,0.4591739,0.395774,-0.7953128,0.4591739,0.395774,-0.7953128,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665,0.1306714,-0.9881321,0.08074665 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: -2.835319,15.32809,-2.065943,27.06914,3.742202,15.8699,1.591453,26.86065,-4.68555,5.616912,-2.867128,13.30099,3.814565,5.016786,2.762261,13.84286,2.887896,15.35967,-3.693269,15.8409,2.034881,27.09494,-1.594693,26.99201,4.664752,5.87953,-3.837003,5.303113,2.373845,15.78887,-2.523463,16.17738,1.787809,25.00654,-2.912127,25.43458,0.4562324,39.43027,5.459646,-3.742594,-5.459646,-3.742594,3.512455,4.779022,-3.633493,4.249313,2.917457,25.21431,-1.782179,24.78299,-0.46068,39.17869,-5.459646,-3.742593,-3.282393,5.785854,5.459646,-3.742593,3.387857,5.324304,2.805709,14.58515,-3.769576,15.15345,2.165341,24.86025,-1.856046,24.60084,2.553943,24.50824,-2.159421,24.35908,-0.1597482,38.58641,5.459648,-3.742591,-5.459645,-3.742591,3.633494,4.249314,-3.565665,4.546153,2.169182,25.51498,-2.544362,25.65834,0.1519012,39.89025,-0.2977239,39.78738,2.720795,25.6498,-1.987953,25.37,-2.860594,14.58681,-2.154122,24.69168,3.718731,15.09258,1.876343,24.55409,9.456386,5.459646,9.456386,-5.459646,0,10.91929,0,-10.91929,-9.456386,5.459646,-9.456386,-5.459646,-2.735641,24.72731,0.3099875,38.73742,1.97256,24.43844,3.587968,5.078746,-4.891128,5.982918,2.655128,15.42655,-2.613573,14.57476,2.389958,14.8992,-4.140374,15.9399,2.321731,26.24586,-1.546388,25.90277,-7.981664,-1.720924,-1.194568,-6.375061,-1.416955,-7.153851,6.56471,-4.178161,5.505767,-3.725245,6.345023,3.221169,7.981665,4.230456,-6.578378,-1.64645,-6.564708,6.687693,-5.156984,5.099205,1.079138,7.34133,1.416955,9.663383,-2.387693,14.86972,-2.323678,26.06875,4.142327,15.91238,1.585786,25.71399,5.459648,-3.742591,-5.459645,-3.742591,3.282394,5.785856,-3.339785,5.534688,-4.015734,5.09655,-2.774383,13.64032,4.496165,5.42711,2.872919,13.15477,-4.444869,1.321924,-0.6801079,-1.112032,-0.859528,-1.743354,3.585341,-0.1681765,3.077352,0.352574,4.444869,4.47228,3.58099,4.245659,-3.611065,1.653531,-3.585341,5.96238,-2.688292,5.425604,0.8595282,7.537557,0.7553199,6.577097,-3.580386,5.016542,-2.674546,15.14683,4.89787,5.928563,2.673089,14.27046,5.459645,-3.742591,-5.459648,-3.742591,3.565665,4.546153,-3.387858,5.324306,4.030491,5.440938,-4.482009,5.755638,2.455177,16.28038,-2.391468,15.93291,5.459645,-3.742591,-5.459649,-3.742591,3.339785,5.534688,-3.512455,4.779024,5.820112,6.403556,0.1016712,7.778429,0.2243956,9.902884,-5.595715,6.793281,4.358455,5.326011,-4.230633,5.578011,-5.82011,0.1843517,-4.812938,0.2727596,-0.2097451,-3.012704,5.595717,-0.2053736,4.644001,-0.08542997,-0.2243936,-3.314976 + } + UVIndex: *246 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,21,20,22,20,21,23,25,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,39,38,40,38,39,41,43,42,44,46,45,47,49,48,50,48,49,51,53,52,54,52,53,55,54,53,56,54,55,57,59,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,69,71,73,72,71,74,73,71,69,75,68,76,68,75,77,76,75,78,76,77,79,76,78,73,79,78,74,79,73,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,93,95,97,96,95,98,96,97,93,99,92,100,92,99,101,100,99,102,100,101,97,102,98,103,102,101,98,102,103,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,120,121,125,121,123,126,125,123,127,125,126,128,127,126,120,124,129,130,129,124,131,129,130,128,131,130,126,131,128 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *82 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineGroundB, Model::RootNode + C: "OO",5385246030276834031,0 + + ;Geometry::, Model::Mesh tree_pineGroundB + C: "OO",5212421584228269424,5385246030276834031 + + ;Material::leafsDark, Model::Mesh tree_pineGroundB + C: "OO",3026,5385246030276834031 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundB.fbx.import new file mode 100644 index 0000000..1202dd2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dqj8y4iwglcn6" +path="res://.godot/imported/tree_pineGroundB.fbx-e1e67bd60a5114a7fb01e87ac9c08734.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineGroundB.fbx" +dest_files=["res://.godot/imported/tree_pineGroundB.fbx-e1e67bd60a5114a7fb01e87ac9c08734.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundA.fbx new file mode 100644 index 0000000..070ccc5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 39 + Millisecond: 334 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineRoundA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineRoundA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5758318117253206367, "Model::tree_pineRoundA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5258209936797550849, "Geometry::", "Mesh" { + Vertices: *948 { + a: 0.3363218,5.659683,0.3363218,-0.3363218,5.659683,0.3363218,0.3228006,6.489684,0.3228006,-0.3228006,6.489684,0.3228006,-0.2542211,10.69945,-0.2542211,-0.2407,11.52945,-0.2407,-0.2542211,10.69945,0.2542211,-0.2407,11.52945,0.2407,0.65155,-6.382362E-16,0.65155,0.65155,-6.382362E-16,-0.65155,-0.65155,-6.382362E-16,0.65155,-0.65155,-6.382362E-16,-0.65155,0.415,0.83,-0.415,0.415,0.83,0.415,0.3987746,1.826,-0.3987746,0.3987746,1.826,0.3987746,-0.65155,-6.382362E-16,-0.65155,0.65155,-6.382362E-16,-0.65155,-0.415,0.83,-0.415,0.415,0.83,-0.415,0.3755614,3.250944,0.3755614,-0.3755614,3.250944,0.3755614,0.3620403,4.080944,0.3620403,-0.3620403,4.080944,0.3620403,-0.2981108,8.005274,-0.2981108,-0.2845896,8.835274,-0.2845896,-0.2981108,8.005274,0.2981108,-0.2845896,8.835274,0.2845896,0.3363218,5.659683,-0.3363218,0.3363218,5.659683,0.3363218,0.3228006,6.489684,-0.3228006,0.3228006,6.489684,0.3228006,-0.415,0.83,-0.415,-0.3987746,1.826,-0.3987746,-0.415,0.83,0.415,-0.3987746,1.826,0.3987746,0.2542211,10.69945,-0.2542211,0.2542211,10.69945,0.2542211,0.2407,11.52945,-0.2407,0.2407,11.52945,0.2407,-0.3363218,5.659683,-0.3363218,-0.3228006,6.489684,-0.3228006,-0.3363218,5.659683,0.3363218,-0.3228006,6.489684,0.3228006,-0.3755614,3.250944,-0.3755614,-0.3620403,4.080944,-0.3620403,-0.3755614,3.250944,0.3755614,-0.3620403,4.080944,0.3620403,-0.3755614,3.250944,-0.3755614,0.3755614,3.250944,-0.3755614,-0.3620403,4.080944,-0.3620403,0.3620403,4.080944,-0.3620403,-0.415,0.83,-0.415,0.415,0.83,-0.415,-0.3987746,1.826,-0.3987746,0.3987746,1.826,-0.3987746,0.3755614,3.250944,-0.3755614,0.3755614,3.250944,0.3755614,0.3620403,4.080944,-0.3620403,0.3620403,4.080944,0.3620403,0.2981108,8.005274,-0.2981108,0.2981108,8.005274,0.2981108,0.2845896,8.835274,-0.2845896,0.2845896,8.835274,0.2845896,0.2981108,8.005274,0.2981108,-0.2981108,8.005274,0.2981108,0.2845896,8.835274,0.2845896,-0.2845896,8.835274,0.2845896,0.415,0.83,0.415,-0.415,0.83,0.415,0.3987746,1.826,0.3987746,-0.3987746,1.826,0.3987746,0.65155,-6.382362E-16,0.65155,-0.65155,-6.382362E-16,0.65155,0.415,0.83,0.415,-0.415,0.83,0.415,0.65155,-6.382362E-16,-0.65155,0.65155,-6.382362E-16,0.65155,0.415,0.83,-0.415,0.415,0.83,0.415,-0.65155,-6.382362E-16,-0.65155,-0.415,0.83,-0.415,-0.65155,-6.382362E-16,0.65155,-0.415,0.83,0.415,0.2542211,10.69945,0.2542211,-0.2542211,10.69945,0.2542211,0.2407,11.52945,0.2407,-0.2407,11.52945,0.2407,-0.3363218,5.659683,-0.3363218,0.3363218,5.659683,-0.3363218,-0.3228006,6.489684,-0.3228006,0.3228006,6.489684,-0.3228006,-0.2981108,8.005274,-0.2981108,0.2981108,8.005274,-0.2981108,-0.2845896,8.835274,-0.2845896,0.2845896,8.835274,-0.2845896,-0.2542211,10.69945,-0.2542211,0.2542211,10.69945,-0.2542211,-0.2407,11.52945,-0.2407,0.2407,11.52945,-0.2407,-2.278714,4.080944,-1.315616,-1.572313,5.659683,-0.9077753,-2.278714,4.080944,1.315616,-1.572313,5.659683,0.9077753,-1.046386,11.52945,-0.6041311,2.021352E-13,11.52945,-1.208262,-0.2924125,13.66437,-0.1688244,2.021352E-13,13.66437,-0.3376488,1.443823E-13,8.835274,-1.726089,1.494837,8.835274,-0.8630443,2.310117E-13,10.69945,-0.964711,0.8354642,10.69945,-0.4823555,1.443823E-13,4.080944,2.631233,-2.278714,4.080944,1.315616,1.443823E-13,5.659683,1.815551,-1.572313,5.659683,0.9077753,-3.085094,1.826,-1.78118,-1.979705,3.250944,-1.142983,-3.085094,1.826,1.78118,-1.979705,3.250944,1.142983,0.8354642,10.69945,-0.4823555,0.8354642,10.69945,0.4823555,2.310117E-13,10.69945,-0.964711,0.2542211,10.69945,-0.2542211,0.2542211,10.69945,0.2542211,-0.2542211,10.69945,-0.2542211,-0.8354642,10.69945,-0.4823555,2.310117E-13,10.69945,0.964711,-0.2542211,10.69945,0.2542211,-0.8354642,10.69945,0.4823555,1.822972,6.489684,1.052493,1.822972,6.489684,-1.052493,1.443823E-13,6.489684,2.104986,0.3228006,6.489684,0.3228006,-0.3228006,6.489684,0.3228006,-1.822972,6.489684,1.052493,-0.3228006,6.489684,-0.3228006,0.3228006,6.489684,-0.3228006,1.443823E-13,6.489684,-2.104986,-1.822972,6.489684,-1.052493,1.046386,11.52945,-0.6041311,1.046386,11.52945,0.6041311,0.2924125,13.66437,-0.1688244,0.2924125,13.66437,0.1688244,2.278714,4.080944,-1.315616,2.278714,4.080944,1.315616,1.572313,5.659683,-0.9077753,1.572313,5.659683,0.9077753,-1.494837,8.835274,-0.8630443,-0.8354642,10.69945,-0.4823555,-1.494837,8.835274,0.8630443,-0.8354642,10.69945,0.4823555,1.046386,11.52945,0.6041311,1.046386,11.52945,-0.6041311,2.021352E-13,11.52945,1.208262,0.2407,11.52945,0.2407,-0.2407,11.52945,0.2407,-1.046386,11.52945,0.6041311,-0.2407,11.52945,-0.2407,0.2407,11.52945,-0.2407,2.021352E-13,11.52945,-1.208262,-1.046386,11.52945,-0.6041311,2.021352E-13,11.52945,-1.208262,1.046386,11.52945,-0.6041311,2.021352E-13,13.66437,-0.3376488,0.2924125,13.66437,-0.1688244,-3.085094,1.826,-1.78118,2.310117E-13,1.826,-3.56236,-1.979705,3.250944,-1.142983,2.310117E-13,3.250944,-2.285966,1.822972,6.489684,1.052493,1.443823E-13,6.489684,2.104986,1.25785,8.005274,0.7262203,1.443823E-13,8.005274,1.452441,2.310117E-13,1.826,-3.56236,3.085094,1.826,-1.78118,2.310117E-13,3.250944,-2.285966,1.979705,3.250944,-1.142983,2.278714,4.080944,1.315616,2.278714,4.080944,-1.315616,1.443823E-13,4.080944,2.631233,0.3620403,4.080944,0.3620403,0.3620403,4.080944,-0.3620403,-0.3620403,4.080944,0.3620403,-2.278714,4.080944,1.315616,-0.3620403,4.080944,-0.3620403,1.443823E-13,4.080944,-2.631233,-2.278714,4.080944,-1.315616,1.443823E-13,8.835274,1.726089,-1.494837,8.835274,0.8630443,2.310117E-13,10.69945,0.964711,-0.8354642,10.69945,0.4823555,-2.278714,4.080944,-1.315616,1.443823E-13,4.080944,-2.631233,-1.572313,5.659683,-0.9077753,1.443823E-13,5.659683,-1.815551,-1.822972,6.489684,-1.052493,-1.25785,8.005274,-0.7262203,-1.822972,6.489684,1.052493,-1.25785,8.005274,0.7262203,1.443823E-13,6.489684,-2.104986,1.822972,6.489684,-1.052493,1.443823E-13,8.005274,-1.452441,1.25785,8.005274,-0.7262203,3.085094,1.826,-1.78118,3.085094,1.826,1.78118,1.979705,3.250944,-1.142983,1.979705,3.250944,1.142983,-1.822972,6.489684,-1.052493,1.443823E-13,6.489684,-2.104986,-1.25785,8.005274,-0.7262203,1.443823E-13,8.005274,-1.452441,1.443823E-13,4.080944,-2.631233,2.278714,4.080944,-1.315616,1.443823E-13,5.659683,-1.815551,1.572313,5.659683,-0.9077753,2.310117E-13,1.826,3.56236,-3.085094,1.826,1.78118,2.310117E-13,3.250944,2.285966,-1.979705,3.250944,1.142983,1.494837,8.835274,0.8630443,1.494837,8.835274,-0.8630443,1.443823E-13,8.835274,1.726089,0.2845896,8.835274,0.2845896,-0.2845896,8.835274,0.2845896,-1.494837,8.835274,0.8630443,-0.2845896,8.835274,-0.2845896,0.2845896,8.835274,-0.2845896,1.443823E-13,8.835274,-1.726089,-1.494837,8.835274,-0.8630443,1.494837,8.835274,-0.8630443,1.494837,8.835274,0.8630443,0.8354642,10.69945,-0.4823555,0.8354642,10.69945,0.4823555,1.25785,8.005274,-0.7262203,1.25785,8.005274,0.7262203,1.443823E-13,8.005274,-1.452441,0.2981108,8.005274,-0.2981108,0.2981108,8.005274,0.2981108,-0.2981108,8.005274,-0.2981108,-1.25785,8.005274,-0.7262203,-0.2981108,8.005274,0.2981108,1.443823E-13,8.005274,1.452441,-1.25785,8.005274,0.7262203,1.822972,6.489684,-1.052493,1.822972,6.489684,1.052493,1.25785,8.005274,-0.7262203,1.25785,8.005274,0.7262203,1.494837,8.835274,0.8630443,1.443823E-13,8.835274,1.726089,0.8354642,10.69945,0.4823555,2.310117E-13,10.69945,0.964711,1.979705,3.250944,-1.142983,1.979705,3.250944,1.142983,2.310117E-13,3.250944,-2.285966,0.3755614,3.250944,-0.3755614,-0.3755614,3.250944,-0.3755614,-1.979705,3.250944,-1.142983,-0.3755614,3.250944,0.3755614,0.3755614,3.250944,0.3755614,2.310117E-13,3.250944,2.285966,-1.979705,3.250944,1.142983,-1.046386,11.52945,-0.6041311,-0.2924125,13.66437,-0.1688244,-1.046386,11.52945,0.6041311,-0.2924125,13.66437,0.1688244,1.046386,11.52945,0.6041311,2.021352E-13,11.52945,1.208262,0.2924125,13.66437,0.1688244,2.021352E-13,13.66437,0.3376488,2.278714,4.080944,1.315616,1.443823E-13,4.080944,2.631233,1.572313,5.659683,0.9077753,1.443823E-13,5.659683,1.815551,3.085094,1.826,1.78118,2.310117E-13,1.826,3.56236,1.979705,3.250944,1.142983,2.310117E-13,3.250944,2.285966,0.2924125,13.66437,-0.1688244,0.2924125,13.66437,0.1688244,2.021352E-13,13.66437,-0.3376488,2.021352E-13,13.66437,0.3376488,-0.2924125,13.66437,-0.1688244,-0.2924125,13.66437,0.1688244,-1.494837,8.835274,-0.8630443,1.443823E-13,8.835274,-1.726089,-0.8354642,10.69945,-0.4823555,2.310117E-13,10.69945,-0.964711,1.572313,5.659683,-0.9077753,1.572313,5.659683,0.9077753,1.443823E-13,5.659683,-1.815551,0.3363218,5.659683,-0.3363218,-0.3363218,5.659683,-0.3363218,-1.572313,5.659683,-0.9077753,-0.3363218,5.659683,0.3363218,0.3363218,5.659683,0.3363218,1.443823E-13,5.659683,1.815551,-1.572313,5.659683,0.9077753,1.443823E-13,6.489684,2.104986,-1.822972,6.489684,1.052493,1.443823E-13,8.005274,1.452441,-1.25785,8.005274,0.7262203,2.021352E-13,11.52945,1.208262,-1.046386,11.52945,0.6041311,2.021352E-13,13.66437,0.3376488,-0.2924125,13.66437,0.1688244,3.085094,1.826,1.78118,3.085094,1.826,-1.78118,2.310117E-13,1.826,3.56236,0.3987746,1.826,0.3987746,-0.3987746,1.826,0.3987746,-3.085094,1.826,1.78118,-0.3987746,1.826,-0.3987746,0.3987746,1.826,-0.3987746,2.310117E-13,1.826,-3.56236,-3.085094,1.826,-1.78118 + } + PolygonVertexIndex: *612 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,121,-124,125,123,-123,126,125,-123,121,124,-128,128,127,-125,129,127,-129,125,129,-129,126,129,-126,130,132,-132,133,131,-133,134,133,-133,135,134,-133,136,134,-136,133,137,-132,138,131,-138,136,138,-138,139,138,-137,135,139,-137,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,155,-155,157,156,-155,158,156,-158,155,159,-154,160,153,-160,158,160,-160,161,160,-159,157,161,-159,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,179,-182,183,181,-181,184,183,-181,185,183,-185,179,182,-187,185,186,-183,187,186,-186,184,187,-186,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,223,-223,225,224,-223,226,224,-226,223,227,-222,228,221,-228,226,228,-228,229,228,-227,225,229,-227,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,235,-238,239,237,-237,240,239,-237,241,239,-241,235,238,-243,241,242,-239,243,242,-242,240,243,-242,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,255,-255,257,256,-255,258,256,-258,255,259,-254,260,253,-260,258,260,-260,261,260,-259,257,261,-259,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,281,-281,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,291,-291,293,292,-291,294,292,-294,291,295,-290,296,289,-296,294,296,-296,297,296,-295,293,297,-295,298,300,-300,301,299,-301,302,304,-304,305,303,-305,306,308,-308,309,307,-309,310,309,-309,311,310,-309,312,310,-312,309,313,-308,314,307,-314,312,314,-314,315,314,-313,311,315,-313 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1836 { + a: 0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0,0.274086,-0.9617053,0,0.274086,-0.9617053,0,0.274086,-0.9617053,0,0.274086,-0.9617053,0,0.274086,-0.9617053,0,0.274086,-0.9617053,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,-0.9998673,0.0162884,0,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0.9998673,0.0162884,0,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.274086,0.9617053,0,0.274086,0.9617053,0,0.274086,0.9617053,0,0.274086,0.9617053,0,0.274086,0.9617053,0,0.274086,0.9617053,0.9617053,0.274086,0,0.9617053,0.274086,0,0.9617053,0.274086,0,0.9617053,0.274086,0,0.9617053,0.274086,0,0.9617053,0.274086,0,-0.9617053,0.274086,0,-0.9617053,0.274086,0,-0.9617053,0.274086,0,-0.9617053,0.274086,0,-0.9617053,0.274086,0,-0.9617053,0.274086,0,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,0,0.0162884,-0.9998673,-0.9127917,0.4084254,0,-0.9127917,0.4084254,0,-0.9127917,0.4084254,0,-0.9127917,0.4084254,0,-0.9127917,0.4084254,0,-0.9127917,0.4084254,0,-0.4714625,0.333005,-0.816597,-0.4714625,0.333005,-0.816597,-0.4714625,0.333005,-0.816597,-0.4714625,0.333005,-0.816597,-0.4714625,0.333005,-0.816597,-0.4714625,0.333005,-0.816597,0.4713818,0.3334622,-0.8164572,0.4713818,0.3334622,-0.8164572,0.4713818,0.3334622,-0.8164572,0.4713818,0.3334622,-0.8164572,0.4713818,0.3334622,-0.8164572,0.4713818,0.3334622,-0.8164572,-0.4563958,0.4084254,0.7905008,-0.4563958,0.4084254,0.7905008,-0.4563958,0.4084254,0.7905008,-0.4563958,0.4084254,0.7905008,-0.4563958,0.4084254,0.7905008,-0.4563958,0.4084254,0.7905008,-0.790131,0.612938,0,-0.790131,0.612938,0,-0.790131,0.612938,0,-0.790131,0.612938,0,-0.790131,0.612938,0,-0.790131,0.612938,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.942925,0.3330051,0,0.942925,0.3330051,0,0.942925,0.3330051,0,0.942925,0.3330051,0,0.942925,0.3330051,0,0.942925,0.3330051,0,0.9127917,0.4084254,0,0.9127917,0.4084254,0,0.9127917,0.4084254,0,0.9127917,0.4084254,0,0.9127917,0.4084254,0,0.9127917,0.4084254,0,-0.9427634,0.3334622,0,-0.9427634,0.3334622,0,-0.9427634,0.3334622,0,-0.9427634,0.3334622,0,-0.9427634,0.3334622,0,-0.9427634,0.3334622,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4714625,0.333005,-0.816597,0.4714625,0.333005,-0.816597,0.4714625,0.333005,-0.816597,0.4714625,0.333005,-0.816597,0.4714625,0.333005,-0.816597,0.4714625,0.333005,-0.816597,-0.3950655,0.612938,-0.6842735,-0.3950655,0.612938,-0.6842735,-0.3950655,0.612938,-0.6842735,-0.3950655,0.612938,-0.6842735,-0.3950655,0.612938,-0.6842735,-0.3950655,0.612938,-0.6842735,0.4684916,0.3493748,0.8114512,0.4684916,0.3493748,0.8114512,0.4684916,0.3493748,0.8114512,0.4684916,0.3493748,0.8114512,0.4684916,0.3493748,0.8114512,0.4684916,0.3493748,0.8114512,0.3950655,0.612938,-0.6842735,0.3950655,0.612938,-0.6842735,0.3950655,0.612938,-0.6842735,0.3950655,0.612938,-0.6842735,0.3950655,0.612938,-0.6842735,0.3950655,0.612938,-0.6842735,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4713818,0.3334622,0.8164572,-0.4713818,0.3334622,0.8164572,-0.4713818,0.3334622,0.8164572,-0.4713818,0.3334622,0.8164572,-0.4713818,0.3334622,0.8164572,-0.4713818,0.3334622,0.8164572,-0.4563958,0.4084254,-0.7905008,-0.4563958,0.4084254,-0.7905008,-0.4563958,0.4084254,-0.7905008,-0.4563958,0.4084254,-0.7905008,-0.4563958,0.4084254,-0.7905008,-0.4563958,0.4084254,-0.7905008,-0.936983,0.3493748,0,-0.936983,0.3493748,0,-0.936983,0.3493748,0,-0.936983,0.3493748,0,-0.936983,0.3493748,0,-0.936983,0.3493748,0,0.4684916,0.3493748,-0.8114512,0.4684916,0.3493748,-0.8114512,0.4684916,0.3493748,-0.8114512,0.4684916,0.3493748,-0.8114512,0.4684916,0.3493748,-0.8114512,0.4684916,0.3493748,-0.8114512,0.790131,0.612938,0,0.790131,0.612938,0,0.790131,0.612938,0,0.790131,0.612938,0,0.790131,0.612938,0,0.790131,0.612938,0,-0.4684916,0.3493748,-0.8114512,-0.4684916,0.3493748,-0.8114512,-0.4684916,0.3493748,-0.8114512,-0.4684916,0.3493748,-0.8114512,-0.4684916,0.3493748,-0.8114512,-0.4684916,0.3493748,-0.8114512,0.4563958,0.4084254,-0.7905008,0.4563958,0.4084254,-0.7905008,0.4563958,0.4084254,-0.7905008,0.4563958,0.4084254,-0.7905008,0.4563958,0.4084254,-0.7905008,0.4563958,0.4084254,-0.7905008,-0.3950655,0.612938,0.6842735,-0.3950655,0.612938,0.6842735,-0.3950655,0.612938,0.6842735,-0.3950655,0.612938,0.6842735,-0.3950655,0.612938,0.6842735,-0.3950655,0.612938,0.6842735,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9427634,0.3334622,0,0.9427634,0.3334622,0,0.9427634,0.3334622,0,0.9427634,0.3334622,0,0.9427634,0.3334622,0,0.9427634,0.3334622,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.936983,0.3493748,0,0.936983,0.3493748,0,0.936983,0.3493748,0,0.936983,0.3493748,0,0.936983,0.3493748,0,0.936983,0.3493748,0,0.4713818,0.3334622,0.8164572,0.4713818,0.3334622,0.8164572,0.4713818,0.3334622,0.8164572,0.4713818,0.3334622,0.8164572,0.4713818,0.3334622,0.8164572,0.4713818,0.3334622,0.8164572,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.942925,0.3330051,0,-0.942925,0.3330051,0,-0.942925,0.3330051,0,-0.942925,0.3330051,0,-0.942925,0.3330051,0,-0.942925,0.3330051,0,0.4714625,0.333005,0.816597,0.4714625,0.333005,0.816597,0.4714625,0.333005,0.816597,0.4714625,0.333005,0.816597,0.4714625,0.333005,0.816597,0.4714625,0.333005,0.816597,0.4563958,0.4084254,0.7905008,0.4563958,0.4084254,0.7905008,0.4563958,0.4084254,0.7905008,0.4563958,0.4084254,0.7905008,0.4563958,0.4084254,0.7905008,0.4563958,0.4084254,0.7905008,0.3950655,0.612938,0.6842735,0.3950655,0.612938,0.6842735,0.3950655,0.612938,0.6842735,0.3950655,0.612938,0.6842735,0.3950655,0.612938,0.6842735,0.3950655,0.612938,0.6842735,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4713818,0.3334622,-0.8164572,-0.4713818,0.3334622,-0.8164572,-0.4713818,0.3334622,-0.8164572,-0.4713818,0.3334622,-0.8164572,-0.4713818,0.3334622,-0.8164572,-0.4713818,0.3334622,-0.8164572,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4684916,0.3493748,0.8114512,-0.4684916,0.3493748,0.8114512,-0.4684916,0.3493748,0.8114512,-0.4684916,0.3493748,0.8114512,-0.4684916,0.3493748,0.8114512,-0.4684916,0.3493748,0.8114512,-0.4714625,0.333005,0.816597,-0.4714625,0.333005,0.816597,-0.4714625,0.333005,0.816597,-0.4714625,0.333005,0.816597,-0.4714625,0.333005,0.816597,-0.4714625,0.333005,0.816597,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *632 { + a: 1.324101,22.2577,-1.324101,22.2577,1.270869,25.52585,-1.270869,25.52585,-1.000871,42.10192,-0.9476378,45.37008,1.000871,42.10192,0.9476378,45.37008,2.565157,2.565157,2.565157,-2.565157,-2.565157,2.565157,-2.565157,-2.565157,1.633858,3.24067,-1.633858,3.24067,1.569979,7.16245,-1.569979,7.16245,2.565157,-0.7030737,-2.565157,-0.7030737,1.633858,2.694762,-1.633858,2.694762,1.478588,12.77321,-1.478588,12.77321,1.425356,16.04136,-1.425356,16.04136,-1.173665,31.49353,-1.120432,34.76168,1.173665,31.49353,1.120432,34.76168,1.324101,22.2577,-1.324101,22.2577,1.270869,25.52585,-1.270869,25.52585,-1.633858,3.24067,-1.569979,7.16245,1.633858,3.24067,1.569979,7.16245,1.000871,42.10192,-1.000871,42.10192,0.9476378,45.37008,-0.9476378,45.37008,-1.324101,22.2577,-1.270869,25.52585,1.324101,22.2577,1.270869,25.52585,-1.478588,12.77321,-1.425356,16.04136,1.478588,12.77321,1.425356,16.04136,1.478588,12.77321,-1.478588,12.77321,1.425356,16.04136,-1.425356,16.04136,1.633858,3.24067,-1.633858,3.24067,1.569979,7.16245,-1.569979,7.16245,1.478588,12.77321,-1.478588,12.77321,1.425356,16.04136,-1.425356,16.04136,1.173665,31.49353,-1.173665,31.49353,1.120432,34.76168,-1.120432,34.76168,1.173665,31.49353,-1.173665,31.49353,1.120432,34.76168,-1.120432,34.76168,1.633858,3.24067,-1.633858,3.24067,1.569979,7.16245,-1.569979,7.16245,2.565157,-0.7030737,-2.565157,-0.7030737,1.633858,2.694762,-1.633858,2.694762,2.565157,-0.7030737,-2.565157,-0.7030737,1.633858,2.694762,-1.633858,2.694762,-2.565157,-0.7030737,-1.633858,2.694762,2.565157,-0.7030737,1.633858,2.694762,1.000871,42.10192,-1.000871,42.10192,0.9476378,45.37008,-0.9476378,45.37008,1.324101,22.2577,-1.324101,22.2577,1.270869,25.52585,-1.270869,25.52585,1.173665,31.49353,-1.173665,31.49353,1.120432,34.76168,-1.120432,34.76168,1.000871,42.10192,-1.000871,42.10192,0.9476378,45.37008,-0.9476378,45.37008,-5.179592,11.00144,-3.573919,17.81079,5.179592,11.00144,3.573919,17.81079,2.378469,41.42896,-2.378469,41.42896,0.6646631,50.34293,-0.6646631,50.34293,3.397812,30.83111,-3.397812,30.83111,1.899037,38.61596,-1.899037,38.61596,5.179592,11.00144,-5.179592,11.00144,3.573919,17.81079,-3.573919,17.81079,-7.01252,-1.764537,-4.499934,5.335572,7.01252,-1.764537,4.499934,5.335572,-3.289229,-1.899037,-3.289229,1.899037,-9.094947E-13,-3.798075,-1.000871,-1.000871,-1.000871,1.000871,1.000871,-1.000871,3.289229,-1.899037,-9.094947E-13,3.798075,1.000871,1.000871,3.289229,1.899037,7.177053,4.143674,7.177053,-4.143674,5.684342E-13,8.287348,1.270869,1.270869,-1.270869,1.270869,-7.177053,4.143674,-1.270869,-1.270869,1.270869,-1.270869,5.684342E-13,-8.287348,-7.177053,-4.143674,2.378469,41.42896,-2.378469,41.42896,0.6646631,50.34293,-0.6646631,50.34293,5.179592,11.00144,-5.179592,11.00144,3.573919,17.81079,-3.573919,17.81079,-3.397812,30.83111,-1.899037,38.61596,3.397812,30.83111,1.899037,38.61596,4.119628,2.378469,4.119628,-2.378469,7.958079E-13,4.756938,0.9476378,0.9476378,-0.9476378,0.9476378,-4.119628,2.378469,-0.9476378,-0.9476378,0.9476378,-0.9476378,7.958079E-13,-4.756938,-4.119628,-2.378469,2.378469,41.42896,-2.378469,41.42896,0.6646631,50.34293,-0.6646631,50.34293,7.01252,-1.764537,-7.01252,-1.764537,4.499934,5.335572,-4.499934,5.335572,4.143674,21.43237,-4.143674,21.43237,2.859135,27.80057,-2.859135,27.80057,7.01252,-1.764537,-7.01252,-1.764537,4.499934,5.335572,-4.499934,5.335572,8.971316,5.179592,8.971316,-5.179592,5.684342E-13,10.35918,1.425356,1.425356,1.425356,-1.425356,-1.425356,1.425356,-8.971316,5.179592,-1.425356,-1.425356,5.684342E-13,-10.35918,-8.971316,-5.179592,3.397812,30.83111,-3.397812,30.83111,1.899037,38.61596,-1.899037,38.61596,5.179592,11.00144,-5.179592,11.00144,3.573919,17.81079,-3.573919,17.81079,-4.143674,21.43237,-2.859135,27.80057,4.143674,21.43237,2.859135,27.80057,4.143674,21.43237,-4.143674,21.43237,2.859135,27.80057,-2.859135,27.80057,7.01252,-1.764537,-7.01252,-1.764537,4.499934,5.335572,-4.499934,5.335572,4.143674,21.43237,-4.143674,21.43237,2.859135,27.80057,-2.859135,27.80057,5.179592,11.00144,-5.179592,11.00144,3.573919,17.81079,-3.573919,17.81079,7.01252,-1.764537,-7.01252,-1.764537,4.499934,5.335572,-4.499934,5.335572,5.885184,3.397812,5.885184,-3.397812,5.684342E-13,6.795625,1.120432,1.120432,-1.120432,1.120432,-5.885184,3.397812,-1.120432,-1.120432,1.120432,-1.120432,5.684342E-13,-6.795625,-5.885184,-3.397812,3.397812,30.83111,-3.397812,30.83111,1.899037,38.61596,-1.899037,38.61596,-4.952167,-2.859135,-4.952167,2.859135,-5.684342E-13,-5.71827,-1.173665,-1.173665,-1.173665,1.173665,1.173665,-1.173665,4.952167,-2.859135,1.173665,1.173665,-5.684342E-13,5.71827,4.952167,2.859135,4.143674,21.43237,-4.143674,21.43237,2.859135,27.80057,-2.859135,27.80057,3.397812,30.83111,-3.397812,30.83111,1.899037,38.61596,-1.899037,38.61596,-7.794114,-4.499934,-7.794114,4.499934,-9.094947E-13,-8.999867,-1.478588,-1.478588,1.478588,-1.478588,7.794114,-4.499934,1.478588,1.478588,-1.478588,1.478588,-9.094947E-13,8.999867,7.794114,4.499934,-2.378469,41.42896,-0.6646631,50.34293,2.378469,41.42896,0.6646631,50.34293,2.378469,41.42896,-2.378469,41.42896,0.6646631,50.34293,-0.6646631,50.34293,5.179592,11.00144,-5.179592,11.00144,3.573919,17.81079,-3.573919,17.81079,7.01252,-1.764537,-7.01252,-1.764537,4.499934,5.335572,-4.499934,5.335572,-1.15123,-0.6646631,-1.15123,0.6646631,-7.958079E-13,-1.329326,-7.958079E-13,1.329326,1.15123,-0.6646631,1.15123,0.6646631,3.397812,30.83111,-3.397812,30.83111,1.899037,38.61596,-1.899037,38.61596,-6.190208,-3.573919,-6.190208,3.573919,-5.684342E-13,-7.147837,-1.324101,-1.324101,1.324101,-1.324101,6.190208,-3.573919,1.324101,1.324101,-1.324101,1.324101,-5.684342E-13,7.147837,6.190208,3.573919,4.143674,21.43237,-4.143674,21.43237,2.859135,27.80057,-2.859135,27.80057,2.378469,41.42896,-2.378469,41.42896,0.6646631,50.34293,-0.6646631,50.34293,12.14604,7.01252,12.14604,-7.01252,9.094947E-13,14.02504,1.569979,1.569979,-1.569979,1.569979,-12.14604,7.01252,-1.569979,-1.569979,1.569979,-1.569979,9.094947E-13,-14.02504,-12.14604,-7.01252 + } + UVIndex: *612 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,121,123,125,123,122,126,125,122,121,124,127,128,127,124,129,127,128,125,129,128,126,129,125,130,132,131,133,131,132,134,133,132,135,134,132,136,134,135,133,137,131,138,131,137,136,138,137,139,138,136,135,139,136,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,155,154,157,156,154,158,156,157,155,159,153,160,153,159,158,160,159,161,160,158,157,161,158,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,179,181,183,181,180,184,183,180,185,183,184,179,182,186,185,186,182,187,186,185,184,187,185,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,223,222,225,224,222,226,224,225,223,227,221,228,221,227,226,228,227,229,228,226,225,229,226,230,232,231,233,231,232,234,236,235,237,235,236,238,235,237,239,237,236,240,239,236,241,239,240,235,238,242,241,242,238,243,242,241,240,243,241,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,255,254,257,256,254,258,256,257,255,259,253,260,253,259,258,260,259,261,260,258,257,261,258,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,281,280,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,291,290,293,292,290,294,292,293,291,295,289,296,289,295,294,296,295,297,296,294,293,297,294,298,300,299,301,299,300,302,304,303,305,303,304,306,308,307,309,307,308,310,309,308,311,310,308,312,310,311,309,313,307,314,307,313,312,314,313,315,314,312,311,315,312 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *204 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineRoundA, Model::RootNode + C: "OO",5758318117253206367,0 + + ;Geometry::, Model::Mesh tree_pineRoundA + C: "OO",5258209936797550849,5758318117253206367 + + ;Material::woodBarkDark, Model::Mesh tree_pineRoundA + C: "OO",3048,5758318117253206367 + + ;Material::leafsDark, Model::Mesh tree_pineRoundA + C: "OO",3026,5758318117253206367 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundA.fbx.import new file mode 100644 index 0000000..b513ed7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dvlsafndbly36" +path="res://.godot/imported/tree_pineRoundA.fbx-690df4dc93b3b4e0b39de16652247a0e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundA.fbx" +dest_files=["res://.godot/imported/tree_pineRoundA.fbx-690df4dc93b3b4e0b39de16652247a0e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundB.fbx new file mode 100644 index 0000000..ecf1079 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundB.fbx @@ -0,0 +1,353 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 39 + Millisecond: 493 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineRoundB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineRoundB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5435705864522871604, "Model::tree_pineRoundB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5239543738642504140, "Geometry::", "Mesh" { + Vertices: *1218 { + a: -0.4298025,1.715721,-0.535698,-0.5253707,0.826152,-0.2787504,-0.5613467,0.49128,-0.6672423,-0.5613467,0.49128,0.6672422,-0.5253707,0.826152,0.2787503,-0.4358205,1.659704,0.541716,-0.4596378,1.438008,-0.2130174,-0.4596378,1.438008,0.2130173,0.3606282,10.78102,-0.2547326,0.3426335,11.37084,-0.2367381,-0.1486257,10.78795,-0.2545212,-0.1300452,11.39698,-0.2359407,-0.3854992,3.023762,-0.4913947,-0.3537845,4.0633,-0.45968,-0.3870607,2.972586,0.4929562,-0.3520365,4.120598,0.457932,-0.5253707,0.826152,-0.2787504,-0.4596378,1.438008,-0.2130174,-1.152755,1.024309,-0.1561002,-1.115945,1.366948,-0.1192898,-0.5613467,0.49128,-0.6672423,0.7731377,0.49128,-0.6672423,-0.4298025,1.715721,-0.535698,0.6415935,1.715721,-0.535698,-0.5253707,0.826152,0.2787503,-0.5253707,0.826152,-0.2787504,-1.152755,1.024309,0.1561001,-1.152755,1.024309,-0.1561002,0.3592367,10.82663,0.2533412,-0.1472367,10.83348,0.2531321,0.343581,11.33979,0.2376855,-0.1309861,11.36614,0.2368816,1,0,-0.8941045,1,0,0.8941045,0.7731377,0.49128,-0.6672423,0.7731377,0.49128,0.6672422,-0.1965516,9.217045,0.3024472,-0.1718919,10.02533,0.2777873,0.4072705,9.252186,0.301375,0.3839124,10.01781,0.278017,-0.2479597,7.532004,-0.3538552,-0.2270414,8.217657,-0.3329369,-0.2499751,7.465944,0.3558706,-0.2277251,8.195247,0.3336206,0.5285546,5.276766,-0.4226591,0.4962905,6.334305,-0.3903951,-0.315832,5.307298,-0.4217275,-0.2841732,6.345007,-0.3900687,0.4620656,7.456122,0.3561701,-0.2499751,7.465944,0.3558706,0.4383335,8.234008,0.332438,-0.2277251,8.195247,0.3336206,0.4600468,7.522295,-0.3541514,0.4376546,8.256261,-0.3317592,-0.2479597,7.532004,-0.3538552,-0.2270414,8.217657,-0.3329369,0.5269437,5.329566,0.4210482,-0.3142282,5.359867,0.4201237,0.498516,6.261361,0.3926204,-0.2863948,6.272187,0.3922903,0.406655,9.272362,-0.3007596,0.4072705,9.252186,0.301375,0.3854392,9.967765,-0.2795438,0.3839124,10.01781,0.278017,0.7731377,0.49128,-0.6672423,0.7731377,0.49128,0.6672422,0.6415935,1.715721,-0.535698,0.6476115,1.659704,0.541716,-0.3854992,3.023762,-0.4913947,0.5972902,3.023762,-0.4913947,-0.3537845,4.0633,-0.45968,0.5665909,4.030019,-0.4606955,-1.152755,1.024309,-0.1561002,-1.115945,1.366948,-0.1192898,-1.152755,1.024309,0.1561001,-1.115945,1.366948,0.1192897,-0.4596378,1.438008,-0.2130174,-0.4596378,1.438008,0.2130173,-1.115945,1.366948,-0.1192898,-1.115945,1.366948,0.1192897,-0.315832,5.307298,-0.4217275,-0.2841732,6.345007,-0.3900687,-0.3142282,5.359867,0.4201237,-0.2863948,6.272187,0.3922903,1,0,0.8941045,-0.788209,0,0.8941045,0.7731377,0.49128,0.6672422,-0.5613467,0.49128,0.6672422,0.3606282,10.78102,-0.2547326,0.3592367,10.82663,0.2533412,0.3426335,11.37084,-0.2367381,0.343581,11.33979,0.2376855,-0.788209,0,-0.8941045,1,0,-0.8941045,-0.5613467,0.49128,-0.6672423,0.7731377,0.49128,-0.6672423,0.5988516,2.972586,0.4929562,-0.3870607,2.972586,0.4929562,0.564835,4.087569,0.4589394,-0.3520365,4.120598,0.457932,0.4600468,7.522295,-0.3541514,0.4620656,7.456122,0.3561701,0.4376546,8.256261,-0.3317592,0.4383335,8.234008,0.332438,-0.1486257,10.78795,-0.2545212,-0.1300452,11.39698,-0.2359407,-0.1472367,10.83348,0.2531321,-0.1309861,11.36614,0.2368816,-0.1959317,9.237362,-0.3018272,0.406655,9.272362,-0.3007596,-0.1734162,9.975369,-0.2793117,0.3854392,9.967765,-0.2795438,0.7731377,0.49128,0.6672422,-0.5613467,0.49128,0.6672422,0.6476115,1.659704,0.541716,-0.4358205,1.659704,0.541716,-0.1959317,9.237362,-0.3018272,-0.1734162,9.975369,-0.2793117,-0.1965516,9.217045,0.3024472,-0.1718919,10.02533,0.2777873,-0.788209,0,-0.8941045,-0.5613467,0.49128,-0.6672423,-0.788209,0,0.8941045,-0.5613467,0.49128,0.6672422,0.5972902,3.023762,-0.4913947,0.5988516,2.972586,0.4929562,0.5665909,4.030019,-0.4606955,0.564835,4.087569,0.4589394,0.5285546,5.276766,-0.4226591,0.5269437,5.329566,0.4210482,0.4962905,6.334305,-0.3903951,0.498516,6.261361,0.3926204,-0.5253707,0.826152,0.2787503,-1.152755,1.024309,0.1561001,-0.4596378,1.438008,0.2130173,-1.115945,1.366948,0.1192897,1,0,0.8941045,1,0,-0.8941045,-0.788209,0,0.8941045,-0.788209,0,-0.8941045,0.2849725,9.89036,-1.157399,1.256527,9.946492,-0.3848735,0.2166093,10.74254,-0.7053688,0.7669947,10.77434,-0.2677326,1.884865,8.328923,0.010074,1.009772,8.328923,-1.50563,1.01297,8.227423,1.523933,0.4383335,8.234008,0.332438,-0.7340176,8.125923,1.522087,-0.2277251,8.195247,0.3336206,0.4376546,8.256261,-0.3317592,-0.7372152,8.227423,-1.507477,-0.2270414,8.217657,-0.3329369,-1.60911,8.125923,0.006381826,0.4620656,7.456122,0.3561701,0.4600468,7.522295,-0.3541514,1.096626,7.544694,-0.6886834,-0.06738559,7.603357,-1.146765,-0.2479597,7.532004,-0.3538552,-1.049316,7.544694,-0.3717983,-0.2499751,7.465944,0.3558706,-0.8672357,7.42737,0.8612489,0.2967755,7.368709,1.31933,1.278706,7.42737,0.5443637,2.765027,1.768101,-1.543164,1.612293,3.040062,-0.8049005,0.1058955,1.847804,-3.076168,0.1058955,3.085215,-1.673347,0.7669947,10.77434,-0.2677326,0.6621963,10.83794,0.4252141,0.2166093,10.74254,-0.7053688,0.3606282,10.78102,-0.2547326,-0.1486257,10.78795,-0.2545212,-0.4385744,10.77434,-0.450058,0.3592367,10.82663,0.2533412,0.007012681,10.86973,0.6805246,-0.1472367,10.83348,0.2531321,-0.5433728,10.83794,0.2428886,-0.7372152,8.227423,-1.507477,1.009772,8.328923,-1.50563,-0.4218261,9.241404,-0.8134893,0.567842,9.298904,-0.8124436,-0.7340176,8.125923,1.522087,-0.4200147,9.183905,0.9027582,1.01297,8.227423,1.523933,0.5696535,9.241404,0.9038042,0.2849725,9.89036,-1.157399,0.2166093,10.74254,-0.7053688,-0.8715743,9.946492,-0.7067186,-0.4385744,10.77434,-0.450058,1.256527,9.946492,-0.3848735,1.071534,10.05876,0.8383331,0.7669947,10.77434,-0.2677326,0.6621963,10.83794,0.4252141,-0.7372152,8.227423,-1.507477,-0.4218261,9.241404,-0.8134893,-1.60911,8.125923,0.006381826,-0.9157548,9.183905,0.04411158,1.884865,8.328923,0.010074,1.01297,8.227423,1.523933,1.063582,9.298904,0.04620318,0.5696535,9.241404,0.9038042,-0.06738559,7.603357,-1.146765,-1.049316,7.544694,-0.3717983,-0.2243171,6.513608,-2.209503,-1.957646,6.410057,-0.8415136,-1.60911,8.125923,0.006381826,-0.9157548,9.183905,0.04411158,-0.7340176,8.125923,1.522087,-0.4200147,9.183905,0.9027582,2.765027,1.768101,-1.543164,2.765027,1.608694,1.522843,1.612293,3.040062,-0.8049005,1.612293,2.949758,0.9319923,-0.8715743,9.946492,-0.7067186,-0.4385744,10.77434,-0.450058,-1.056567,10.05876,0.5164882,-0.5433728,10.83794,0.2428886,0.1058955,1.52899,3.055847,0.1058955,2.904607,1.800439,2.765027,1.608694,1.522843,1.612293,2.949758,0.9319923,0.1058955,1.52899,3.055847,-2.553236,1.608694,1.522843,0.1058955,2.904607,1.800439,-1.400502,2.949758,0.9319923,-2.553236,1.768101,-1.543164,-1.400502,3.040062,-0.8049005,-2.553236,1.608694,1.522843,-1.400502,2.949758,0.9319923,0.4185092,6.099403,2.143708,-1.636233,6.202955,1.335093,0.2967755,7.368709,1.31933,-0.8672357,7.42737,0.8612489,2.765027,1.608694,1.522843,2.765027,1.768101,-1.543164,0.1058955,1.52899,3.055847,0.6476115,1.659704,0.541716,-0.4358205,1.659704,0.541716,-2.553236,1.608694,1.522843,0.6415935,1.715721,-0.535698,0.1058955,1.847804,-3.076168,-0.4298025,1.715721,-0.535698,-2.553236,1.768101,-1.543164,1.612293,3.040062,-0.8049005,1.612293,2.949758,0.9319923,0.1058955,3.085215,-1.673347,0.5972902,3.023762,-0.4913947,0.5988516,2.972586,0.4929562,-0.3854992,3.023762,-0.4913947,-1.400502,3.040062,-0.8049005,-0.3870607,2.972586,0.4929562,0.1058955,2.904607,1.800439,-1.400502,2.949758,0.9319923,0.1058955,1.847804,-3.076168,0.1058955,3.085215,-1.673347,-2.553236,1.768101,-1.543164,-1.400502,3.040062,-0.8049005,1.071534,10.05876,0.8383331,-0.08501269,10.11489,1.289014,0.6621963,10.83794,0.4252141,0.007012681,10.86973,0.6805246,1.009772,8.328923,-1.50563,1.884865,8.328923,0.010074,0.567842,9.298904,-0.8124436,1.063582,9.298904,0.04620318,-1.056567,10.05876,0.5164882,-0.5433728,10.83794,0.2428886,-0.08501269,10.11489,1.289014,0.007012681,10.86973,0.6805246,1.624961,5.262777,-0.01340322,2.720465,3.985571,0.07183044,0.8791086,5.370452,1.278452,1.403867,4.175642,2.352246,1.830425,6.410057,-1.400887,2.151838,6.202955,0.7757187,1.096626,7.544694,-0.6886834,1.278706,7.42737,0.5443637,0.3854392,9.967765,-0.2795438,0.3839124,10.01781,0.278017,1.071534,10.05876,0.8383331,-0.08501269,10.11489,1.289014,-0.1718919,10.02533,0.2777873,-1.056567,10.05876,0.5164882,-0.1734162,9.975369,-0.2793117,-0.8715743,9.946492,-0.7067186,0.2849725,9.89036,-1.157399,1.256527,9.946492,-0.3848735,2.151838,6.202955,0.7757187,1.830425,6.410057,-1.400887,0.4185092,6.099403,2.143708,0.498516,6.261361,0.3926204,-0.2863948,6.272187,0.3922903,-1.636233,6.202955,1.335093,0.4962905,6.334305,-0.3903951,-0.2243171,6.513608,-2.209503,-0.2841732,6.345007,-0.3900687,-1.957646,6.410057,-0.8415136,0.4072705,9.252186,0.301375,0.406655,9.272362,-0.3007596,0.567842,9.298904,-0.8124436,-0.4218261,9.241404,-0.8134893,-0.1959317,9.237362,-0.3018272,-0.1965516,9.217045,0.3024472,-0.4200147,9.183905,0.9027582,-0.9157548,9.183905,0.04411158,0.5696535,9.241404,0.9038042,1.063582,9.298904,0.04620318,-0.7277558,11.43324,-0.2838852,-0.06435506,11.43324,-0.84649,-0.3402861,11.95917,-0.118495,0.03553041,11.95917,-0.4372106,0.9062474,11.30466,0.298005,0.2428465,11.30466,0.8606099,0.5853766,11.88633,0.2111458,0.2095601,11.88633,0.5298613,0.7526466,11.36895,-0.555545,0.4983617,11.92275,-0.2723902,-0.06435506,11.43324,-0.84649,0.03553041,11.95917,-0.4372106,0.8759507,5.208941,-1.307082,0.5285546,5.276766,-0.4226591,-0.6189138,5.262777,-1.308905,-0.315832,5.307298,-0.4217275,-0.6157556,5.424291,1.276629,-1.364767,5.370452,-0.01704989,0.5269437,5.329566,0.4210482,0.8791086,5.370452,1.278452,1.624961,5.262777,-0.01340322,-0.3142282,5.359867,0.4201237,1.403867,4.175642,2.352246,-1.234905,4.270678,2.349027,0.8791086,5.370452,1.278452,-0.6157556,5.424291,1.276629,0.9062474,11.30466,0.298005,0.7526466,11.36895,-0.555545,0.2428465,11.30466,0.8606099,0.343581,11.33979,0.2376855,-0.1309861,11.36614,0.2368816,-0.5741552,11.36895,0.5696648,0.3426335,11.37084,-0.2367381,-0.06435506,11.43324,-0.84649,-0.1300452,11.39698,-0.2359407,-0.7277558,11.43324,-0.2838852,2.720465,3.985571,0.07183044,1.398292,3.890536,-2.211804,1.403867,4.175642,2.352246,0.564835,4.087569,0.4589394,-1.234905,4.270678,2.349027,0.5665909,4.030019,-0.4606955,-0.3520365,4.120598,0.457932,-0.3537845,4.0633,-0.45968,-1.24048,3.985571,-2.215022,-2.557079,4.175642,0.06539325,0.5853766,11.88633,0.2111458,0.2095601,11.88633,0.5298613,0.4983617,11.92275,-0.2723902,0.03553041,11.95917,-0.4372106,-0.2532713,11.92275,0.3650412,-0.3402861,11.95917,-0.118495,1.830425,6.410057,-1.400887,1.096626,7.544694,-0.6886834,-0.2243171,6.513608,-2.209503,-0.06738559,7.603357,-1.146765,1.398292,3.890536,-2.211804,2.720465,3.985571,0.07183044,0.8759507,5.208941,-1.307082,1.624961,5.262777,-0.01340322,-1.957646,6.410057,-0.8415136,-1.049316,7.544694,-0.3717983,-1.636233,6.202955,1.335093,-0.8672357,7.42737,0.8612489,0.7526466,11.36895,-0.555545,0.9062474,11.30466,0.298005,0.4983617,11.92275,-0.2723902,0.5853766,11.88633,0.2111458,1.398292,3.890536,-2.211804,0.8759507,5.208941,-1.307082,-1.24048,3.985571,-2.215022,-0.6189138,5.262777,-1.308905,0.4185092,6.099403,2.143708,0.2967755,7.368709,1.31933,2.151838,6.202955,0.7757187,1.278706,7.42737,0.5443637,-0.6157556,5.424291,1.276629,-1.234905,4.270678,2.349027,-1.364767,5.370452,-0.01704989,-2.557079,4.175642,0.06539325,0.2428465,11.30466,0.8606099,-0.5741552,11.36895,0.5696648,0.2095601,11.88633,0.5298613,-0.2532713,11.92275,0.3650412,-0.7277558,11.43324,-0.2838852,-0.3402861,11.95917,-0.118495,-0.5741552,11.36895,0.5696648,-0.2532713,11.92275,0.3650412,-1.24048,3.985571,-2.215022,-0.6189138,5.262777,-1.308905,-2.557079,4.175642,0.06539325,-1.364767,5.370452,-0.01704989,0.7731377,0.49128,-0.6672423,0.7731377,0.49128,0.6672422,-0.5613467,0.49128,-0.6672423,-0.5613467,0.49128,0.6672422,-0.5613467,0.49128,-0.6672423,0.7731377,0.49128,0.6672422 + } + PolygonVertexIndex: *786 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,5,0,-7,1,6,-1,7,5,-7,4,5,-8,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,147,-147,149,147,-149,147,150,-146,151,145,-151,148,151,-150,152,151,-151,149,151,-153,153,151,-149,154,156,-156,157,155,-157,158,155,-158,159,158,-158,160,158,-160,161,160,-160,154,162,-157,160,162,-155,161,162,-161,163,156,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,171,-171,173,172,-171,171,174,-170,175,169,-175,176,175,-175,177,175,-177,172,177,-177,173,177,-173,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,204,-204,205,203,-205,206,208,-208,209,207,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,237,-237,239,238,-237,237,240,-236,241,235,-241,242,241,-241,243,241,-243,238,243,-243,239,243,-239,244,246,-246,247,245,-247,248,245,-248,249,247,-247,250,249,-247,251,249,-251,245,248,-253,251,252,-249,253,252,-252,250,253,-252,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,267,-269,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,280,-280,281,279,-281,282,279,-282,283,282,-282,284,282,-284,285,284,-284,278,286,-281,284,286,-279,285,286,-285,287,280,-287,288,290,-290,291,289,-291,292,291,-291,293,292,-291,291,294,-290,295,289,-295,296,295,-295,297,295,-297,292,297,-297,293,297,-293,298,300,-300,301,299,-301,302,299,-302,303,302,-302,304,303,-302,303,304,-299,305,304,-302,298,306,-301,304,306,-299,307,300,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,323,-323,325,324,-323,321,326,-321,326,327,-321,324,327,-327,328,320,-328,329,324,-327,323,324,-330,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,337,-337,339,338,-337,337,340,-336,341,335,-341,342,341,-341,343,341,-343,338,343,-343,339,343,-339,344,346,-346,347,345,-347,348,347,-347,349,345,-348,350,347,-349,351,350,-349,345,349,-353,351,352,-350,348,352,-352,353,352,-349,354,356,-356,357,355,-357,358,355,-358,359,358,-358,360,362,-362,363,361,-363,364,366,-366,367,365,-367,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391,392,394,-394,395,393,-395,396,398,-398,399,397,-399,400,402,-402,403,405,-405 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2358 { + a: -0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,0,0.03049408,-0.999535,0,0.03049408,-0.999535,0,0.03049408,-0.999535,0,0.03049408,-0.999535,0,0.03049408,-0.999535,0,0.03049408,-0.999535,-0.999535,0.0304943,0,-0.999535,0.0304943,0,-0.999535,0.0304943,0,-0.999535,0.0304943,0,-0.999535,0.0304943,0,-0.999535,0.0304943,0,-0.153237,0.1218161,-0.9806525,-0.153237,0.1218161,-0.9806525,-0.153237,0.1218161,-0.9806525,-0.153237,0.1218161,-0.9806525,-0.153237,0.1218161,-0.9806525,-0.153237,0.1218161,-0.9806525,0,0.1068174,-0.9942787,0,0.1068174,-0.9942787,0,0.1068174,-0.9942787,0,0.1068174,-0.9942787,0,0.1068174,-0.9942787,0,0.1068174,-0.9942787,-0.3011808,-0.953567,0,-0.3011808,-0.953567,0,-0.3011808,-0.953567,0,-0.3011808,-0.953567,0,-0.3011808,-0.953567,0,-0.3011808,-0.953567,0,0,0.03049422,0.999535,0,0.03049422,0.999535,0,0.03049422,0.999535,0,0.03049422,0.999535,0,0.03049422,0.999535,0,0.03049422,0.999535,0.9078766,0.4192374,0,0.9078766,0.4192374,0,0.9078766,0.4192374,0,0.9078766,0.4192374,0,0.9078766,0.4192374,0,0.9078766,0.4192374,0,0,0.03049436,0.999535,0,0.03049436,0.999535,0,0.03049436,0.999535,0,0.03049436,0.999535,0,0.03049436,0.999535,0,0.03049436,0.999535,-0.999535,0.03049441,0,-0.999535,0.03049441,0,-0.999535,0.03049441,0,-0.999535,0.03049441,0,-0.999535,0.03049441,0,-0.999535,0.03049441,0,0,0.0304943,-0.999535,0,0.0304943,-0.999535,0,0.0304943,-0.999535,0,0.0304943,-0.999535,0,0.0304943,-0.999535,0,0.0304943,-0.999535,0,0.0304943,0.999535,0,0.0304943,0.999535,0,0.0304943,0.999535,0,0.0304943,0.999535,0,0.0304943,0.999535,0,0.0304943,0.999535,0,0.03049435,-0.999535,0,0.03049435,-0.999535,0,0.03049435,-0.999535,0,0.03049435,-0.999535,0,0.03049435,-0.999535,0,0.03049435,-0.999535,0,0.03049428,0.999535,0,0.03049428,0.999535,0,0.03049428,0.999535,0,0.03049428,0.999535,0,0.03049428,0.999535,0,0.03049428,0.999535,0.999535,0.03049427,0,0.999535,0.03049427,0,0.999535,0.03049427,0,0.999535,0.03049427,0,0.999535,0.03049427,0,0.999535,0.03049427,0,0.9942787,0.1068174,0,0.9942787,0.1068174,0,0.9942787,0.1068174,0,0.9942787,0.1068174,0,0.9942787,0.1068174,0,0.9942787,0.1068174,0,0,0.03049417,-0.999535,0,0.03049417,-0.999535,0,0.03049417,-0.999535,0,0.03049417,-0.999535,0,0.03049417,-0.999535,0,0.03049417,-0.999535,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.9942787,0.1068174,0,-0.1076428,0.9941896,0,-0.1076428,0.9941896,0,-0.1076428,0.9941896,0,-0.1076428,0.9941896,0,-0.1076428,0.9941896,0,-0.1076428,0.9941896,0,-0.999535,0.03049421,0,-0.999535,0.03049421,0,-0.999535,0.03049421,0,-0.999535,0.03049421,0,-0.999535,0.03049421,0,-0.999535,0.03049421,0,0,0.4192376,0.9078766,0,0.4192376,0.9078766,0,0.4192376,0.9078766,0,0.4192376,0.9078766,0,0.4192376,0.9078766,0,0.4192376,0.9078766,0.999535,0.03049443,0,0.999535,0.03049443,0,0.999535,0.03049443,0,0.999535,0.03049443,0,0.999535,0.03049443,0,0.999535,0.03049443,0,0,0.4192374,-0.9078766,0,0.4192374,-0.9078766,0,0.4192374,-0.9078766,0,0.4192374,-0.9078766,0,0.4192374,-0.9078766,0,0.4192374,-0.9078766,0,0.03049443,0.999535,0,0.03049443,0.999535,0,0.03049443,0.999535,0,0.03049443,0.999535,0,0.03049443,0.999535,0,0.03049443,0.999535,0.999535,0.03049427,0,0.999535,0.03049427,0,0.999535,0.03049427,0,0.999535,0.03049427,0,0.999535,0.03049427,0,0.999535,0.03049427,0,-0.999535,0.03049408,0,-0.999535,0.03049408,0,-0.999535,0.03049408,0,-0.999535,0.03049408,0,-0.999535,0.03049408,0,-0.999535,0.03049408,0,0,0.03049431,-0.999535,0,0.03049431,-0.999535,0,0.03049431,-0.999535,0,0.03049431,-0.999535,0,0.03049431,-0.999535,0,0.03049431,-0.999535,0,0.1068174,0.9942787,0,0.1068174,0.9942787,0,0.1068174,0.9942787,0,0.1068174,0.9942787,0,0.1068174,0.9942787,0,0.1068174,0.9942787,-0.999535,0.03049424,0,-0.999535,0.03049424,0,-0.999535,0.03049424,0,-0.999535,0.03049424,0,-0.999535,0.03049424,0,-0.999535,0.03049424,0,-0.9078766,0.4192374,0,-0.9078766,0.4192374,0,-0.9078766,0.4192374,0,-0.9078766,0.4192374,0,-0.9078766,0.4192374,0,-0.9078766,0.4192374,0,0.999535,0.03049434,0,0.999535,0.03049434,0,0.999535,0.03049434,0,0.999535,0.03049434,0,0.999535,0.03049434,0,0.999535,0.03049434,0,0.999535,0.03049439,0,0.999535,0.03049439,0,0.999535,0.03049439,0,0.999535,0.03049439,0,0.999535,0.03049439,0,0.999535,0.03049439,0,-0.153237,0.1218161,0.9806525,-0.153237,0.1218161,0.9806525,-0.153237,0.1218161,0.9806525,-0.153237,0.1218161,0.9806525,-0.153237,0.1218161,0.9806525,-0.153237,0.1218161,0.9806525,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5479102,0.4258797,-0.7200145,0.5479102,0.4258797,-0.7200145,0.5479102,0.4258797,-0.7200145,0.5479102,0.4258797,-0.7200145,0.5479102,0.4258797,-0.7200145,0.5479102,0.4258797,-0.7200145,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.0580054,-0.9977544,-0.03348944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.01369032,0.995599,0.09270944,0.3744599,0.6953738,-0.6133801,0.3744599,0.6953738,-0.6133801,0.3744599,0.6953738,-0.6133801,0.3744599,0.6953738,-0.6133801,0.3744599,0.6953738,-0.6133801,0.3744599,0.6953738,-0.6133801,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,0.01351415,0.9959078,-0.08935912,-0.0323284,0.5713338,-0.8200809,-0.0323284,0.5713338,-0.8200809,-0.0323284,0.5713338,-0.8200809,-0.0323284,0.5713338,-0.8200809,-0.0323284,0.5713338,-0.8200809,-0.0323284,0.5713338,-0.8200809,-0.03063778,0.5117121,0.8586105,-0.03063778,0.5117121,0.8586105,-0.03063778,0.5117121,0.8586105,-0.03063778,0.5117121,0.8586105,-0.03063778,0.5117121,0.8586105,-0.03063778,0.5117121,0.8586105,-0.3104925,0.4258797,-0.8498358,-0.3104925,0.4258797,-0.8498358,-0.3104925,0.4258797,-0.8498358,-0.3104925,0.4258797,-0.8498358,-0.3104925,0.4258797,-0.8498358,-0.3104925,0.4258797,-0.8498358,0.8628778,0.4982531,0.0847693,0.8628778,0.4982531,0.0847693,0.8628778,0.4982531,0.0847693,0.8628778,0.4982531,0.0847693,0.8628778,0.4982531,0.0847693,0.8628778,0.4982531,0.0847693,-0.7588974,0.5117121,-0.4027722,-0.7588974,0.5117121,-0.4027722,-0.7588974,0.5117121,-0.4027722,-0.7588974,0.5117121,-0.4027722,-0.7588974,0.5117121,-0.4027722,-0.7588974,0.5117121,-0.4027722,0.6940466,0.5713339,0.4380376,0.6940466,0.5713339,0.4380376,0.6940466,0.5713339,0.4380376,0.6940466,0.5713339,0.4380376,0.6940466,0.5713339,0.4380376,0.6940466,0.5713339,0.4380376,-0.4988036,0.6408729,-0.5835039,-0.4988036,0.6408729,-0.5835039,-0.4988036,0.6408729,-0.5835039,-0.4988036,0.6408729,-0.5835039,-0.4988036,0.6408729,-0.5835039,-0.4988036,0.6408729,-0.5835039,-0.7589136,0.4817331,0.438159,-0.7589136,0.4817331,0.438159,-0.7589136,0.4817331,0.438159,-0.7589136,0.4817331,0.438159,-0.7589136,0.4817331,0.438159,-0.7589136,0.4817331,0.438159,0.7503762,0.6601195,0.03432071,0.7503762,0.6601195,0.03432071,0.7503762,0.6601195,0.03432071,0.7503762,0.6601195,0.03432071,0.7503762,0.6601195,0.03432071,0.7503762,0.6601195,0.03432071,-0.8493555,0.498253,-0.1741816,-0.8493555,0.498253,-0.1741816,-0.8493555,0.498253,-0.1741816,-0.8493555,0.498253,-0.1741816,-0.8493555,0.498253,-0.1741816,-0.8493555,0.498253,-0.1741816,0.3758814,0.6246638,0.6844767,0.3758814,0.6246638,0.6844767,0.3758814,0.6246638,0.6844767,0.3758814,0.6246638,0.6844767,0.3758814,0.6246638,0.6844767,0.3758814,0.6246638,0.6844767,-0.3758813,0.6246638,0.6844767,-0.3758813,0.6246638,0.6844767,-0.3758813,0.6246638,0.6844767,-0.3758813,0.6246638,0.6844767,-0.3758813,0.6246638,0.6844767,-0.3758813,0.6246638,0.6844767,-0.7503762,0.6601195,0.03432071,-0.7503762,0.6601195,0.03432071,-0.7503762,0.6601195,0.03432071,-0.7503762,0.6601195,0.03432071,-0.7503762,0.6601195,0.03432071,-0.7503762,0.6601195,0.03432071,-0.2951133,0.5003518,0.8139756,-0.2951133,0.5003518,0.8139756,-0.2951133,0.5003518,0.8139756,-0.2951133,0.5003518,0.8139756,-0.2951133,0.5003518,0.8139756,-0.2951133,0.5003518,0.8139756,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,-0.9986512,-0.05192159,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,0,0.9986512,0.05192119,-0.3744599,0.6953738,-0.6133801,-0.3744599,0.6953738,-0.6133801,-0.3744599,0.6953738,-0.6133801,-0.3744599,0.6953738,-0.6133801,-0.3744599,0.6953738,-0.6133801,-0.3744599,0.6953738,-0.6133801,0.3221962,0.5700056,0.7558328,0.3221962,0.5700056,0.7558328,0.3221962,0.5700056,0.7558328,0.3221962,0.5700056,0.7558328,0.3221962,0.5700056,0.7558328,0.3221962,0.5700056,0.7558328,0.6921927,0.6009651,-0.3996377,0.6921927,0.6009651,-0.3996377,0.6921927,0.6009651,-0.3996377,0.6921927,0.6009651,-0.3996377,0.6921927,0.6009651,-0.3996377,0.6921927,0.6009651,-0.3996377,-0.5312929,0.5700057,0.6267546,-0.5312929,0.5700057,0.6267546,-0.5312929,0.5700057,0.6267546,-0.5312929,0.5700057,0.6267546,-0.5312929,0.5700057,0.6267546,-0.5312929,0.5700057,0.6267546,0.6988574,0.6228955,0.3515673,0.6988574,0.6228955,0.3515673,0.6988574,0.6228955,0.3515673,0.6988574,0.6228955,0.3515673,0.6988574,0.6228955,0.3515673,0.6988574,0.6228955,0.3515673,0.8182847,0.5709525,-0.06650806,0.8182847,0.5709525,-0.06650806,0.8182847,0.5709525,-0.06650806,0.8182847,0.5709525,-0.06650806,0.8182847,0.5709525,-0.06650806,0.8182847,0.5709525,-0.06650806,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.0135143,-0.9959078,0.08935904,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.01369007,-0.9955992,-0.09270883,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.05800553,0.9977544,0.03348923,-0.5258003,0.5823494,-0.6200024,-0.5258003,0.5823494,-0.6200024,-0.5258003,0.5823494,-0.6200024,-0.5258003,0.5823494,-0.6200024,-0.5258003,0.5823494,-0.6200024,-0.5258003,0.5823494,-0.6200024,0.5852056,0.4258687,0.6900509,0.5852056,0.4258687,0.6900509,0.5852056,0.4258687,0.6900509,0.5852056,0.4258687,0.6900509,0.5852056,0.4258687,0.6900509,0.5852056,0.4258687,0.6900509,0.3192273,0.5435144,-0.7763284,0.3192273,0.5435144,-0.7763284,0.3192273,0.5435144,-0.7763284,0.3192273,0.5435144,-0.7763284,0.3192273,0.5435144,-0.7763284,0.3192273,0.5435144,-0.7763284,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.0359976,0.997405,-0.06234968,0.02337005,0.6739125,0.7384415,0.02337005,0.6739125,0.7384415,0.02337005,0.6739125,0.7384415,0.02337005,0.6739125,0.7384415,0.02337005,0.6739125,0.7384415,0.02337005,0.6739125,0.7384415,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.05521332,-0.9963497,-0.06510498,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,-0.03599767,-0.997405,0.06234976,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.05521312,0.9963497,0.06510507,0.3088633,0.6408729,-0.7027697,0.3088633,0.6408729,-0.7027697,0.3088633,0.6408729,-0.7027697,0.3088633,0.6408729,-0.7027697,0.3088633,0.6408729,-0.7027697,0.3088633,0.6408729,-0.7027697,0.6996362,0.571482,-0.428856,0.6996362,0.571482,-0.428856,0.6996362,0.571482,-0.428856,0.6996362,0.571482,-0.428856,0.6996362,0.571482,-0.428856,0.6996362,0.571482,-0.428856,-0.8025828,0.5709526,0.1728409,-0.8025828,0.5709526,0.1728409,-0.8025828,0.5709526,0.1728409,-0.8025828,0.5709526,0.1728409,-0.8025828,0.5709526,0.1728409,-0.8025828,0.5709526,0.1728409,0.8766266,0.4652607,-0.122712,0.8766266,0.4652607,-0.122712,0.8766266,0.4652607,-0.122712,0.8766266,0.4652607,-0.122712,0.8766266,0.4652607,-0.122712,0.8766266,0.4652607,-0.122712,0.02158214,0.571482,-0.8203307,0.02158214,0.571482,-0.8203307,0.02158214,0.571482,-0.8203307,0.02158214,0.571482,-0.8203307,0.02158214,0.571482,-0.8203307,0.02158214,0.571482,-0.8203307,0.5177826,0.5003517,0.6939375,0.5177826,0.5003517,0.6939375,0.5177826,0.5003517,0.6939375,0.5177826,0.5003517,0.6939375,0.5177826,0.5003517,0.6939375,0.5177826,0.5003517,0.6939375,-0.6511941,0.6739125,0.3489816,-0.6511941,0.6739125,0.3489816,-0.6511941,0.6739125,0.3489816,-0.6511941,0.6739125,0.3489816,-0.6511941,0.6739125,0.3489816,-0.6511941,0.6739125,0.3489816,-0.2642399,0.4652606,0.8448135,-0.2642399,0.4652606,0.8448135,-0.2642399,0.4652606,0.8448135,-0.2642399,0.4652606,0.8448135,-0.2642399,0.4652606,0.8448135,-0.2642399,0.4652606,0.8448135,-0.8180423,0.5435144,0.1881461,-0.8180423,0.5435144,0.1881461,-0.8180423,0.5435144,0.1881461,-0.8180423,0.5435144,0.1881461,-0.8180423,0.5435144,0.1881461,-0.8180423,0.5435144,0.1881461,-0.6538948,0.6228956,-0.4294446,-0.6538948,0.6228956,-0.4294446,-0.6538948,0.6228956,-0.4294446,-0.6538948,0.6228956,-0.4294446,-0.6538948,0.6228956,-0.4294446,-0.6538948,0.6228956,-0.4294446,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *812 { + a: -2.109047,6.53541,-1.097442,3.013018,-2.626938,1.687038,2.626938,1.687038,1.097442,3.013018,2.13274,6.313603,-0.8386512,5.435761,0.8386509,5.435761,-1.419796,42.39463,-1.348951,44.71784,0.5851408,42.42192,0.5119891,44.82081,-1.934625,11.85276,-1.809764,15.94733,1.940773,11.65118,1.802882,16.17302,1.874159,3.057361,1.658425,5.484317,4.389111,3.843361,4.2683,5.202456,2.210027,1.642504,-3.043849,1.642504,1.692136,6.490877,-2.525959,6.490877,1.097442,2.951958,-1.097442,2.951958,0.6145675,5.54225,-0.6145677,5.54225,1.414318,42.57427,-0.579672,42.60127,1.352681,44.59553,-0.5156935,44.69933,3.520097,-1.650541,-3.520097,-1.650541,2.626938,0.4798949,-2.626938,0.4798949,-0.773825,36.23439,-0.6767396,39.41812,1.603427,36.37281,1.511466,39.38849,-1.393131,29.61,-1.310775,32.31068,1.401065,29.3498,1.313467,32.2224,-2.080924,20.71426,-1.9539,24.87974,1.243433,20.83453,1.118792,24.92189,1.819156,29.2984,-0.9841543,29.33708,1.725722,32.36237,-0.8965558,32.20969,-1.811208,29.55905,-1.72305,32.45002,0.9762195,29.59729,0.8938638,32.29797,2.074581,20.92224,-1.237119,21.04159,1.962661,24.59243,-1.127539,24.63507,1.184093,36.43956,-1.186516,36.3601,1.100566,39.17865,-1.094555,39.37578,2.626938,1.597971,-2.626938,1.597971,2.109047,6.446343,-2.13274,6.224536,1.517713,11.84004,-2.351536,11.84004,1.392852,15.93462,-2.230673,15.80353,-0.6145677,3.52486,-0.4696447,4.881596,0.6145675,3.52486,0.4696445,4.881596,-0.8386512,-1.189669,0.838651,-1.189669,-0.4696447,-3.788655,0.4696445,-3.788655,-1.660344,20.84724,-1.535703,24.93461,1.65403,21.0543,1.54445,24.64778,3.937008,-1.475757,-3.103185,-1.475757,3.043849,0.6546795,-2.210027,0.6546795,1.002884,42.38192,-0.9974064,42.56156,0.93204,44.70513,-0.9357696,44.58282,3.103185,-1.475756,-3.937008,-1.475756,2.210027,0.6546797,-3.043849,0.6546797,2.357684,11.63847,-1.523861,11.63847,2.22376,16.03021,-1.385971,16.1603,1.394297,29.54633,-1.402244,29.28569,1.306139,32.43731,-1.308811,32.34966,-1.002052,42.43464,-0.9289004,44.83352,0.9965832,42.61398,0.9326047,44.71204,0.7713842,36.31442,-1.601004,36.45227,0.6827409,39.22131,-1.517478,39.19136,3.043849,1.642504,-2.210027,1.642504,2.549651,6.26907,-1.715829,6.26907,-1.188296,36.32713,-1.099653,39.23403,1.190737,36.2471,1.093651,39.43083,-3.520097,-1.300972,-2.626938,0.8294646,3.520097,-1.300972,2.626938,0.8294646,1.934625,11.82733,-1.940772,11.62575,1.813762,15.79081,-1.806848,16.0175,1.664012,20.70155,-1.65767,20.90952,1.536988,24.86703,-1.54575,24.57971,-1.874159,3.057361,-4.389111,3.843361,-1.658425,5.484317,-4.2683,5.202456,3.937008,3.520097,3.937008,-3.520097,-3.103185,3.520097,-3.103185,-3.520097,1.866581,33.39704,-3.019143,33.64129,1.003058,37.10516,-1.764704,37.24353,-3.744712,8.588628,3.14578,8.588627,-7.189958,2.622424,-1.996325,3.009505,-3.744712,-3.343778,-0.6892178,0.7311015,0.2696243,4.317603,6.591026,2.622424,1.582097,2.048512,3.145781,-3.343778,1.594793,1.105303,1.995463,3.885238,4.667195,4.826185,0.397096,7.290619,-0.7622311,4.293081,-3.873013,4.826202,-1.178271,1.517807,-3.873022,-0.1026483,0.3970766,-2.567081,4.667186,-0.1026651,-6.125672,-2.547668,-3.766616,4.420585,5.95468,-2.111022,3.076901,4.667947,-2.828094,2.345953,-2.82809,5.11645,-0.4279429,0.9607,-1.253868,2.636984,0.7284023,2.938847,1.972213,2.345945,-1.547562,4.623734,-0.4279339,6.501693,0.4241317,4.922311,1.972218,5.116441,2.66639,23.1307,-4.205889,23.6176,1.533288,27.99479,-2.359858,28.27063,-2.674302,24.3688,-1.525807,29.2169,4.199485,24.83391,2.368193,29.48038,-2.617524,33.57192,-1.754001,37.28004,2.2682,33.81617,1.013761,37.41841,1.991652,31.57324,-2.872257,32.08301,1.344247,35.33232,-1.411158,35.6211,-3.881713,25.0937,-2.050421,29.74017,2.992074,24.62858,1.84358,29.47669,3.927088,23.31475,-2.945191,22.82784,2.081056,27.96777,-1.812091,27.69194,-2.731994,20.66928,2.189049,20.36842,-4.981058,15.08032,3.70569,14.54924,-3.145781,25.386,-1.652267,30.13917,3.744712,25.386,2.251197,30.13917,6.566485,-1.766423,-5.491802,-2.601911,3.455614,4.900223,-3.375405,4.42692,-2.036286,31.99911,-1.38888,35.75818,2.827625,32.50888,1.366525,36.04696,-5.425607,-2.012005,-3.046521,4.9234,6.655953,-1.610166,3.79768,5.151037,6.156476,-1.761291,-5.925084,-1.359452,3.777391,5.174114,-3.066811,5.401751,-6.528388,-1.216575,-3.417517,5.45007,5.5299,-2.052064,3.413503,4.976767,4.425693,17.10234,-4.264527,17.5732,2.868876,22.87404,-2.054134,23.14078,-10.88593,-5.658514,-10.88593,6.428682,-0.4169118,-11.70212,-2.549651,-1.790594,1.715829,-1.790594,10.05211,-5.658515,-2.525958,2.456923,-0.4169108,12.47228,1.692136,2.456923,10.05211,6.428681,6.347611,3.786057,6.34761,-3.06134,0.4169118,7.209756,2.351536,2.550115,2.357684,-1.330516,-1.517713,2.550115,-5.513789,3.786058,-1.523861,-1.330516,0.4169108,-6.485038,-5.513789,-3.061339,-6.666364,-1.808902,-3.788584,4.970068,5.41399,-2.245547,3.054933,4.722705,2.586493,29.86454,-2.297931,30.13351,1.741797,33.59809,-1.025229,33.75045,3.145779,22.35886,-3.744712,22.35886,1.652266,27.13671,-2.251198,27.13671,-1.858206,30.12081,-1.013511,33.85435,3.026218,30.38977,1.753516,34.00672,2.922165,12.66392,4.560655,6.236287,-2.940985,13.20581,-5.789127,7.192836,4.913383,16.36261,-3.730276,15.36945,2.352685,21.80374,-2.543948,21.24111,1.335842,2.236882,1.658147,4.417143,4.664751,6.200789,0.4279391,8.646065,-0.505591,4.744804,-3.808873,6.200791,-0.8395017,2.568152,-3.808875,1.310241,0.4279374,-1.135035,4.66475,1.31024,-7.934781,-1.951493,-7.934782,6.749037,-0.3970853,-6.301756,-1.715798,0.5022628,1.341061,0.9569768,7.140607,-1.95149,-2.157467,3.566697,-0.3970893,11.0993,0.8824494,4.016273,7.140606,6.749041,1.829263,3.233339,-0.2249597,4.419201,-1.652279,5.979526,-3.603998,2.599665,-1.414786,2.362129,0.6443006,1.167825,2.251209,-0.7801669,-1.652255,-0.7801815,4.202929,2.599693,2.251185,5.97954,1.462292,35.01701,-1.962282,35.01701,0.7200161,37.56404,-1.220005,37.56404,1.962282,38.90503,-1.462292,38.90503,1.220005,41.43603,-0.7200158,41.43603,-1.908731,35.85931,-1.406789,38.45675,1.501745,36.16082,0.5252455,38.62757,-0.413601,-4.68838,-0.9701265,-0.9794223,4.686801,-1.744311,1.907017,0.6902649,-0.4135998,7.087896,4.686801,4.143827,-2.625475,1.907903,-5.514002,4.143827,-5.514001,-1.744311,0.2443614,3.564901,5.231331,5.79004,-5.151936,6.296469,3.300113,12.157,-2.582007,12.44389,-1.962274,0.608501,-3.674568,3.573347,1.462301,0.6085101,-0.4263967,2.228318,0.9965032,3.443618,3.174581,3.573364,-1.631636,3.660474,-1.962289,6.5382,-0.2103282,4.866121,1.462286,6.538209,9.416955,-3.967383,0.4135974,-9.164326,9.41696,6.426508,2.829257,1.610326,0.4136023,11.62345,1.024938,-1.536837,-0.2988442,3.416444,-2.111128,0.2831118,-8.589758,-3.967377,-8.589758,6.426513,1.220005,1.877933,-0.7200162,1.877933,2.190016,3.557519,1.220005,5.237107,-1.690027,3.557519,-0.720016,5.237107,-4.378266,14.27859,-2.861625,20.09777,4.308482,14.80967,2.059417,20.39863,4.547158,7.286475,-5.838447,7.742416,2.585085,13.6117,-3.29836,13.86998,-4.861397,16.81507,-2.300697,22.2562,3.782264,15.82191,2.595936,21.69357,1.75528,38.11366,-1.656539,37.82772,0.7900471,40.57678,-1.142748,40.41481,-5.274165,7.511991,-3.312093,13.83721,5.111441,7.967932,2.571354,14.0955,-3.726627,16.91378,-2.169811,22.68548,4.963593,17.38464,2.753199,22.95222,3.284942,12.73775,5.854869,6.590328,-2.597178,12.45086,-4.528396,6.083899,1.92394,38.02429,-1.487878,38.31022,1.410149,40.61137,-0.5226455,40.77335,-1.731433,36.40221,-0.7549331,38.86895,1.679044,36.10069,1.177102,38.69814,-4.608197,6.750692,-2.969707,13.17833,5.741585,7.707242,2.893443,13.72021,-0.9357696,44.58282,0.93204,44.70513,-0.9974064,42.56156,-0.9357696,44.58282,0.93204,44.70513,-0.9974064,42.56156 + } + UVIndex: *786 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,5,0,6,1,6,0,7,5,6,4,5,7,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,147,146,149,147,148,147,150,145,151,145,150,148,151,149,152,151,150,149,151,152,153,151,148,154,156,155,157,155,156,158,155,157,159,158,157,160,158,159,161,160,159,154,162,156,160,162,154,161,162,160,163,156,162,164,166,165,167,165,166,168,170,169,171,169,170,172,171,170,173,172,170,171,174,169,175,169,174,176,175,174,177,175,176,172,177,176,173,177,172,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,204,203,205,203,204,206,208,207,209,207,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,237,236,239,238,236,237,240,235,241,235,240,242,241,240,243,241,242,238,243,242,239,243,238,244,246,245,247,245,246,248,245,247,249,247,246,250,249,246,251,249,250,245,248,252,251,252,248,253,252,251,250,253,251,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,267,268,270,272,271,273,271,272,274,276,275,277,275,276,278,280,279,281,279,280,282,279,281,283,282,281,284,282,283,285,284,283,278,286,280,284,286,278,285,286,284,287,280,286,288,290,289,291,289,290,292,291,290,293,292,290,291,294,289,295,289,294,296,295,294,297,295,296,292,297,296,293,297,292,298,300,299,301,299,300,302,299,301,303,302,301,304,303,301,303,304,298,305,304,301,298,306,300,304,306,298,307,300,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,323,322,325,324,322,321,326,320,326,327,320,324,327,326,328,320,327,329,324,326,323,324,329,330,332,331,333,331,332,334,336,335,337,335,336,338,337,336,339,338,336,337,340,335,341,335,340,342,341,340,343,341,342,338,343,342,339,343,338,344,346,345,347,345,346,348,347,346,349,345,347,350,347,348,351,350,348,345,349,352,351,352,349,348,352,351,353,352,348,354,356,355,357,355,356,358,355,357,359,358,357,360,362,361,363,361,362,364,366,365,367,365,366,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390,392,394,393,395,393,394,396,398,397,399,397,398,400,402,401,403,405,404 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *262 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3004, "Material::_defaultMat", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,1,1 + P: "DiffuseColor", "Color", "", "A",1,1,1 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineRoundB, Model::RootNode + C: "OO",5435705864522871604,0 + + ;Geometry::, Model::Mesh tree_pineRoundB + C: "OO",5239543738642504140,5435705864522871604 + + ;Material::woodBarkDark, Model::Mesh tree_pineRoundB + C: "OO",3048,5435705864522871604 + + ;Material::leafsDark, Model::Mesh tree_pineRoundB + C: "OO",3026,5435705864522871604 + + ;Material::_defaultMat, Model::Mesh tree_pineRoundB + C: "OO",3004,5435705864522871604 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundB.fbx.import new file mode 100644 index 0000000..7d838ac --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bfoaa2hrptkut" +path="res://.godot/imported/tree_pineRoundB.fbx-f5357f4d542bcf5db608f31a3edea499.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundB.fbx" +dest_files=["res://.godot/imported/tree_pineRoundB.fbx-f5357f4d542bcf5db608f31a3edea499.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundC.fbx new file mode 100644 index 0000000..b4752ef --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundC.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 39 + Millisecond: 606 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineRoundC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineRoundC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4739981127629206442, "Model::tree_pineRoundC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4796456443181504688, "Geometry::", "Mesh" { + Vertices: *1026 { + a: 2.401922,2,1.38675,-2.310117E-13,2,2.7735,1.505743,4.134202,0.869341,-2.310117E-13,4.134202,1.738682,1.292714,4.64152,0.7463487,-2.310117E-13,4.64152,1.492697,1.969576,4.134202,1.137135,-2.310117E-13,4.134202,2.27427,1.167007,6.236605,0.6737717,-2.310117E-13,6.236605,1.347543,1.060025,6.51685,0.612006,-2.310117E-13,6.51685,1.224012,1.969576,4.134202,-1.137135,1.969576,3.594773,-1.443823E-14,1.969576,4.134202,1.137135,-2.310117E-13,4.134202,1.738682,-1.505743,4.134202,0.869341,-2.310117E-13,4.64152,1.492697,-1.292714,4.64152,0.7463487,-2.401922,2,1.38675,-2.310117E-13,2,2.7735,-2.310117E-13,2,2.7735,-1.200961,1.401962,2.080125,-2.401922,2,1.38675,-1.969576,4.134202,-1.137135,-0.9847877,3.594773,-1.705703,-2.310117E-13,4.134202,-2.27427,1.505743,4.134202,-0.869341,1.505743,4.134202,0.869341,1.292714,4.64152,-0.7463487,1.292714,4.64152,0.7463487,2.401922,2,1.38675,2.401922,2,-1.38675,-2.310117E-13,9.980862,0.7382222,-0.6393193,9.980862,0.3691113,-2.310117E-13,10.08756,0.706867,-0.6121647,10.08756,0.3534335,-1.13743,8.023592,0.6566955,-2.310117E-13,8.023592,1.313391,1.969576,4.134202,-1.137135,1.505743,4.134202,0.869341,1.969576,4.134202,1.137135,-2.310117E-13,4.134202,2.27427,-2.310117E-13,4.134202,1.738682,-1.969576,4.134202,1.137135,-1.505743,4.134202,0.869341,-1.505743,4.134202,-0.869341,1.505743,4.134202,-0.869341,-2.310117E-13,4.134202,-2.27427,-2.310117E-13,4.134202,-1.738682,-1.969576,4.134202,-1.137135,-2.310117E-13,4.134202,2.27427,-1.969576,4.134202,1.137135,-2.310117E-13,6.236605,1.347543,-1.167007,6.236605,0.6737717,-2.310117E-13,6.51685,1.224012,-1.060025,6.51685,0.612006,-2.310117E-13,4.134202,-1.738682,1.505743,4.134202,-0.869341,-2.310117E-13,4.64152,-1.492697,1.292714,4.64152,-0.7463487,2.401922,2,-1.38675,-2.310117E-13,2,-2.7735,-2.401922,1.401962,-4.331469E-14,-2.401922,2,-1.38675,-2.401922,2,1.38675,-1.477182,6.236605,-0.8528513,-0.7950193,8.023592,-0.4590045,-1.477182,6.236605,0.8528513,-0.7950193,8.023592,0.4590045,-2.310117E-13,6.236605,1.705703,-1.477182,6.236605,0.8528513,-2.310117E-13,8.023592,0.918009,-0.7950193,8.023592,0.4590045,0.6393193,9.980862,-0.3691113,0.6393193,9.980862,0.3691113,0.6121647,10.08756,-0.3534335,0.6121647,10.08756,0.3534335,1.13743,8.023592,0.6566955,1.13743,8.023592,-0.6566955,-2.310117E-13,2,-2.7735,1.200961,1.401962,-2.080125,2.401922,2,-1.38675,-2.310117E-13,9.980862,-0.9325075,0.8075752,9.980862,-0.4662538,-2.310117E-13,12.52853,-0.1606002,0.1390838,12.52853,-0.08030008,1.13743,8.023592,0.6566955,-2.310117E-13,8.023592,1.313391,0.6393193,9.980862,0.3691113,-2.310117E-13,9.980862,0.7382222,0.6121647,10.08756,0.3534335,-2.310117E-13,10.08756,0.706867,1.13743,8.023592,0.6566955,0.568715,7.556312,0.9850433,-2.310117E-13,8.023592,1.313391,-1.505743,4.134202,-0.869341,-1.292714,4.64152,-0.7463487,-1.505743,4.134202,0.869341,-1.292714,4.64152,0.7463487,-2.401922,2,1.38675,-2.401922,2,-1.38675,-1.13743,8.023592,-0.6566955,-2.310117E-13,8.023592,-1.313391,-0.6393193,9.980862,-0.3691113,-2.310117E-13,9.980862,-0.7382222,-0.6121647,10.08756,-0.3534335,-2.310117E-13,10.08756,-0.706867,-1.969576,4.134202,-1.137135,-2.310117E-13,4.134202,-2.27427,-1.167007,6.236605,-0.6737717,-2.310117E-13,6.236605,-1.347543,-1.060025,6.51685,-0.612006,-2.310117E-13,6.51685,-1.224012,2.401922,2,1.38675,1.200961,1.401962,2.080125,-2.310117E-13,2,2.7735,-2.401922,2,-1.38675,-2.310117E-13,2,-2.7735,-1.505743,4.134202,-0.869341,-2.310117E-13,4.134202,-1.738682,-1.292714,4.64152,-0.7463487,-2.310117E-13,4.64152,-1.492697,-1.969576,3.594773,-2.887646E-14,-1.969576,4.134202,-1.137135,-1.969576,4.134202,1.137135,1.969576,4.134202,1.137135,0.9847877,3.594773,1.705703,-2.310117E-13,4.134202,2.27427,1.969576,4.134202,-1.137135,1.969576,4.134202,1.137135,1.167007,6.236605,-0.6737717,1.167007,6.236605,0.6737717,1.060025,6.51685,-0.612006,1.060025,6.51685,0.612006,-2.310117E-13,4.134202,-2.27427,1.969576,4.134202,-1.137135,-2.310117E-13,6.236605,-1.347543,1.167007,6.236605,-0.6737717,-2.310117E-13,6.51685,-1.224012,1.060025,6.51685,-0.612006,2.401922,2,-1.38675,2.401922,1.401962,-2.887646E-14,2.401922,2,1.38675,-2.310117E-13,4.134202,-2.27427,0.9847877,3.594773,-1.705703,1.969576,4.134202,-1.137135,-2.401922,2,-1.38675,-1.200961,1.401962,-2.080125,-2.310117E-13,2,-2.7735,-2.310117E-13,4.134202,2.27427,-0.9847877,3.594773,1.705703,-1.969576,4.134202,1.137135,-1.969576,4.134202,-1.137135,-1.167007,6.236605,-0.6737717,-1.969576,4.134202,1.137135,-1.167007,6.236605,0.6737717,-1.060025,6.51685,-0.612006,-1.060025,6.51685,0.612006,-0.6393193,9.980862,-0.3691113,-0.6121647,10.08756,-0.3534335,-0.6393193,9.980862,0.3691113,-0.6121647,10.08756,0.3534335,-1.13743,8.023592,0.6566955,-1.13743,8.023592,-0.6566955,-2.310117E-13,8.023592,-1.313391,0.568715,7.556312,-0.9850433,1.13743,8.023592,-0.6566955,-1.13743,8.023592,-0.6566955,-0.568715,7.556312,-0.9850433,-2.310117E-13,8.023592,-1.313391,1.13743,8.023592,-0.6566955,0.7950193,8.023592,0.4590045,1.13743,8.023592,0.6566955,-2.310117E-13,8.023592,1.313391,-2.310117E-13,8.023592,0.918009,-1.13743,8.023592,0.6566955,-0.7950193,8.023592,0.4590045,-0.7950193,8.023592,-0.4590045,0.7950193,8.023592,-0.4590045,-2.310117E-13,8.023592,-1.313391,-2.310117E-13,8.023592,-0.918009,-1.13743,8.023592,-0.6566955,-2.310117E-13,9.980862,0.9325075,-0.8075752,9.980862,0.4662538,-2.310117E-13,12.52853,0.1606002,-0.1390838,12.52853,0.08030008,-1.477182,6.236605,-0.8528513,-0.7385907,5.832033,-1.279277,-2.310117E-13,6.236605,-1.705703,1.477182,6.236605,0.8528513,-2.310117E-13,6.236605,1.705703,0.7950193,8.023592,0.4590045,-2.310117E-13,8.023592,0.918009,-2.310117E-13,8.023592,-1.313391,1.13743,8.023592,-0.6566955,-2.310117E-13,9.980862,-0.7382222,0.6393193,9.980862,-0.3691113,-2.310117E-13,10.08756,-0.706867,0.6121647,10.08756,-0.3534335,1.477182,6.236605,-0.8528513,1.167007,6.236605,0.6737717,1.477182,6.236605,0.8528513,-2.310117E-13,6.236605,1.705703,-2.310117E-13,6.236605,1.347543,-1.477182,6.236605,0.8528513,-1.167007,6.236605,0.6737717,-1.167007,6.236605,-0.6737717,1.167007,6.236605,-0.6737717,-2.310117E-13,6.236605,-1.705703,-2.310117E-13,6.236605,-1.347543,-1.477182,6.236605,-0.8528513,-2.310117E-13,9.980862,-0.9325075,0.4037875,9.649094,-0.6993808,0.8075752,9.980862,-0.4662538,-1.13743,7.556312,4.331469E-14,-1.13743,8.023592,-0.6566955,-1.13743,8.023592,0.6566955,-0.8075752,9.980862,-0.4662538,-0.1390838,12.52853,-0.08030008,-0.8075752,9.980862,0.4662538,-0.1390838,12.52853,0.08030008,-2.310117E-13,8.023592,1.313391,-0.568715,7.556312,0.9850433,-1.13743,8.023592,0.6566955,0.1390838,12.52853,-0.08030008,0.1390838,12.52853,0.08030008,-2.310117E-13,12.52853,-0.1606002,-2.310117E-13,12.52853,0.1606002,-0.1390838,12.52853,-0.08030008,-0.1390838,12.52853,0.08030008,0.8075752,9.980862,-0.4662538,0.8075752,9.649094,1.010676E-13,0.8075752,9.980862,0.4662538,-1.477182,5.832033,2.887646E-14,-1.477182,6.236605,-0.8528513,-1.477182,6.236605,0.8528513,0.8075752,9.980862,0.4662538,0.4037875,9.649094,0.6993808,-2.310117E-13,9.980862,0.9325075,-2.310117E-13,6.236605,-1.705703,0.7385907,5.832033,-1.279277,1.477182,6.236605,-0.8528513,1.477182,6.236605,0.8528513,0.7385907,5.832033,1.279277,-2.310117E-13,6.236605,1.705703,-0.8075752,9.649094,8.662937E-14,-0.8075752,9.980862,-0.4662538,-0.8075752,9.980862,0.4662538,-0.8075752,9.980862,-0.4662538,-0.4037875,9.649094,-0.6993808,-2.310117E-13,9.980862,-0.9325075,0.8075752,9.980862,0.4662538,-2.310117E-13,9.980862,0.9325075,0.1390838,12.52853,0.08030008,-2.310117E-13,12.52853,0.1606002,0.8075752,9.980862,-0.4662538,0.8075752,9.980862,0.4662538,0.1390838,12.52853,-0.08030008,0.1390838,12.52853,0.08030008,0.8075752,9.980862,-0.4662538,0.6393193,9.980862,0.3691113,0.8075752,9.980862,0.4662538,-2.310117E-13,9.980862,0.9325075,-2.310117E-13,9.980862,0.7382222,-0.8075752,9.980862,0.4662538,-0.6393193,9.980862,0.3691113,-0.6393193,9.980862,-0.3691113,0.6393193,9.980862,-0.3691113,-2.310117E-13,9.980862,-0.9325075,-2.310117E-13,9.980862,-0.7382222,-0.8075752,9.980862,-0.4662538,-2.310117E-13,6.236605,-1.705703,1.477182,6.236605,-0.8528513,-2.310117E-13,8.023592,-0.918009,0.7950193,8.023592,-0.4590045,1.477182,6.236605,-0.8528513,1.477182,5.832033,2.887646E-14,1.477182,6.236605,0.8528513,-1.477182,6.236605,-0.8528513,-2.310117E-13,6.236605,-1.705703,-0.7950193,8.023592,-0.4590045,-2.310117E-13,8.023592,-0.918009,2.401922,2,1.38675,2.401922,2,-1.38675,-2.310117E-13,2,2.7735,0.6992499,2,0.4037121,-3.17641E-13,2,0.8074241,-2.401922,2,1.38675,-0.6992499,2,0.4037121,-0.6992499,2,-0.4037121,0.6992499,2,-0.4037121,-2.310117E-13,2,-2.7735,-3.17641E-13,2,-0.8074241,-2.401922,2,-1.38675,-2.310117E-13,9.980862,0.9325075,-0.4037875,9.649094,0.6993808,-0.8075752,9.980862,0.4662538,-2.310117E-13,6.236605,1.705703,-0.7385907,5.832033,1.279277,-1.477182,6.236605,0.8528513,-0.8075752,9.980862,-0.4662538,-2.310117E-13,9.980862,-0.9325075,-0.1390838,12.52853,-0.08030008,-2.310117E-13,12.52853,-0.1606002,1.13743,8.023592,-0.6566955,1.13743,7.556312,4.331469E-14,1.13743,8.023592,0.6566955,1.477182,6.236605,-0.8528513,1.477182,6.236605,0.8528513,0.7950193,8.023592,-0.4590045,0.7950193,8.023592,0.4590045,1.06286,0,-0.6136423,1.06286,0,0.6136423,0.6992499,2,-0.4037121,0.6992499,2,0.4037121,1.06286,0,0.6136423,1.06286,0,-0.6136423,0,0,1.227285,0,0,-1.227285,-1.06286,0,0.6136423,-1.06286,0,-0.6136423,0,0,-1.227285,1.06286,0,-0.6136423,-3.17641E-13,2,-0.8074241,0.6992499,2,-0.4037121,-1.06286,0,-0.6136423,-0.6992499,2,-0.4037121,-1.06286,0,0.6136423,-0.6992499,2,0.4037121,0,0,1.227285,-1.06286,0,0.6136423,-3.17641E-13,2,0.8074241,-0.6992499,2,0.4037121,-1.06286,0,-0.6136423,0,0,-1.227285,-0.6992499,2,-0.4037121,-3.17641E-13,2,-0.8074241,1.06286,0,0.6136423,0,0,1.227285,0.6992499,2,0.4037121,-3.17641E-13,2,0.8074241 + } + PolygonVertexIndex: *618 { + a: 0,2,-2,3,1,-3,2,4,-4,5,3,-5,6,8,-8,9,7,-9,8,10,-10,11,9,-11,12,14,-14,15,17,-17,18,16,-18,16,19,-16,20,15,-20,21,23,-23,24,26,-26,27,29,-29,30,28,-30,28,31,-28,32,27,-32,33,35,-35,36,34,-36,34,37,-34,38,33,-38,39,41,-41,42,40,-42,43,40,-43,44,43,-43,45,43,-45,46,45,-45,40,47,-40,48,39,-48,49,48,-48,46,48,-50,50,48,-47,44,50,-47,51,53,-53,54,52,-54,53,55,-55,56,54,-56,57,59,-59,60,58,-60,58,61,-58,62,57,-62,63,65,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,75,78,-75,79,74,-79,80,82,-82,83,85,-85,86,84,-86,87,89,-89,90,88,-90,89,91,-91,92,90,-92,93,95,-95,96,98,-98,99,97,-99,98,96,-101,101,100,-97,102,104,-104,105,103,-105,104,106,-106,107,105,-107,108,110,-110,111,109,-111,110,112,-112,113,111,-113,114,116,-116,117,119,-119,120,118,-120,119,121,-121,122,120,-122,123,125,-125,126,128,-128,129,131,-131,132,130,-132,131,133,-133,134,132,-134,135,137,-137,138,136,-138,137,139,-139,140,138,-140,141,143,-143,144,146,-146,147,149,-149,150,152,-152,153,155,-155,156,154,-156,154,156,-158,158,157,-157,159,161,-161,162,160,-162,161,159,-164,164,163,-160,165,167,-167,168,170,-170,171,173,-173,174,172,-174,175,172,-175,176,175,-175,177,175,-177,178,177,-177,172,179,-172,180,171,-180,181,180,-180,178,180,-182,182,180,-179,176,182,-179,183,185,-185,186,184,-186,187,189,-189,190,192,-192,193,191,-193,194,196,-196,197,195,-197,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,201,-204,205,204,-204,206,204,-206,207,206,-206,201,208,-201,209,200,-209,210,209,-209,207,209,-211,211,209,-208,205,211,-208,212,214,-214,215,217,-217,218,220,-220,221,219,-221,222,224,-224,225,227,-227,228,226,-228,229,228,-228,230,228,-230,231,233,-233,234,236,-236,237,239,-239,240,242,-242,243,245,-245,246,248,-248,249,251,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,261,-264,265,264,-264,266,264,-266,267,266,-266,261,268,-261,269,260,-269,270,269,-269,267,269,-271,271,269,-268,265,271,-268,272,274,-274,275,273,-275,276,278,-278,279,281,-281,282,280,-282,283,285,-285,286,284,-286,287,286,-286,288,287,-286,289,287,-289,290,289,-289,286,291,-285,292,284,-292,293,292,-292,294,292,-294,290,294,-294,288,294,-291,295,297,-297,298,300,-300,301,303,-303,304,302,-304,305,307,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,319,-319,321,319,-321,322,324,-324,325,323,-325,326,328,-328,329,327,-329,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,340,-340,341,339,-341 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1854 { + a: 0.4610054,0.3871641,0.7984848,0.4610054,0.3871641,0.7984848,0.4610054,0.3871641,0.7984848,0.4610054,0.3871641,0.7984848,0.4610054,0.3871641,0.7984848,0.4610054,0.3871641,0.7984848,0.4610054,0.3871641,0.7984848,0.4610055,0.3871637,0.7984849,0.4610054,0.3871641,0.7984848,0.4610055,0.3871637,0.7984849,0.4610054,0.3871641,0.7984848,0.4610055,0.3871637,0.7984849,0.4671215,0.356637,0.8090782,0.4671215,0.356637,0.8090782,0.4671215,0.356637,0.8090782,0.4671215,0.356637,0.8090782,0.4671215,0.356637,0.8090782,0.4671215,0.356637,0.8090782,0.4671215,0.356637,0.8090782,0.4671216,0.3566373,0.8090781,0.4671215,0.356637,0.8090782,0.4671216,0.3566373,0.8090781,0.4671215,0.356637,0.8090782,0.4671216,0.3566373,0.8090781,1,0,0,1,0,0,1,0,0,-0.4610055,0.3871637,0.7984849,-0.4610055,0.3871637,0.7984849,-0.4610055,0.3871637,0.7984849,-0.4610055,0.3871637,0.7984849,-0.4610055,0.3871637,0.7984849,-0.4610055,0.3871637,0.7984849,-0.4610055,0.3871637,0.7984849,-0.4610054,0.3871641,0.7984848,-0.4610055,0.3871637,0.7984849,-0.4610054,0.3871641,0.7984848,-0.4610055,0.3871637,0.7984849,-0.4610054,0.3871641,0.7984848,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.922011,0.3871636,0,0.922011,0.3871636,0,0.922011,0.3871636,0,0.922011,0.3871636,0,0.922011,0.3871636,0,0.922011,0.3871636,0,0.922011,0.3871636,0,0.9220108,0.3871641,0,0.922011,0.3871636,0,0.9220108,0.3871641,0,0.922011,0.3871636,0,0.9220108,0.3871641,0,-0.4845547,0.2466302,0.8392736,-0.4845547,0.2466302,0.8392736,-0.4845547,0.2466302,0.8392736,-0.4845547,0.2466302,0.8392736,-0.4845547,0.2466302,0.8392736,-0.4845547,0.2466302,0.8392736,-0.4845547,0.2466302,0.8392736,-0.4845546,0.2466311,0.8392735,-0.4845547,0.2466302,0.8392736,-0.4845546,0.2466311,0.8392735,-0.4845547,0.2466302,0.8392736,-0.4845546,0.2466311,0.8392735,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4671215,0.356637,0.8090782,-0.4671215,0.356637,0.8090782,-0.4671215,0.356637,0.8090782,-0.4671215,0.356637,0.8090782,-0.4671215,0.356637,0.8090782,-0.4671215,0.356637,0.8090782,-0.4671215,0.356637,0.8090782,-0.4671216,0.3566373,0.8090781,-0.4671215,0.356637,0.8090782,-0.4671216,0.3566373,0.8090781,-0.4671215,0.356637,0.8090782,-0.4671216,0.3566373,0.8090781,0.4610055,0.3871637,-0.7984849,0.4610055,0.3871637,-0.7984849,0.4610055,0.3871637,-0.7984849,0.4610055,0.3871637,-0.7984849,0.4610055,0.3871637,-0.7984849,0.4610055,0.3871637,-0.7984849,0.4610055,0.3871637,-0.7984849,0.4610054,0.3871641,-0.7984848,0.4610055,0.3871637,-0.7984849,0.4610054,0.3871641,-0.7984848,0.4610055,0.3871637,-0.7984849,0.4610054,0.3871641,-0.7984848,-1,0,0,-1,0,0,-1,0,0,-0.9342431,0.3566369,0,-0.9342431,0.3566369,0,-0.9342431,0.3566369,0,-0.9342431,0.3566369,0,-0.9342431,0.3566369,0,-0.9342431,0.3566369,0,-0.4671215,0.3566369,0.8090782,-0.4671215,0.3566369,0.8090782,-0.4671215,0.3566369,0.8090782,-0.4671215,0.3566369,0.8090782,-0.4671215,0.3566369,0.8090782,-0.4671215,0.3566369,0.8090782,0.9691096,0.2466301,0,0.9691096,0.2466301,0,0.9691096,0.2466301,0,0.9691096,0.2466301,0,0.9691096,0.2466301,0,0.9691096,0.2466301,0,0.9691096,0.2466301,0,0.9691095,0.2466311,0,0.9691096,0.2466301,0,0.9691095,0.2466311,0,0.9691096,0.2466301,0,0.9691095,0.2466311,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.4836282,0.2538016,-0.8376685,0.4836282,0.2538016,-0.8376685,0.4836282,0.2538016,-0.8376685,0.4836282,0.2538016,-0.8376685,0.4836282,0.2538016,-0.8376685,0.4836282,0.2538016,-0.8376685,0.4845546,0.2466311,0.8392735,0.4845546,0.2466311,0.8392735,0.4845546,0.2466311,0.8392735,0.4845546,0.2466311,0.8392735,0.4845546,0.2466311,0.8392735,0.4845546,0.2466311,0.8392735,0.4845546,0.2466311,0.8392735,0.4845547,0.2466302,0.8392736,0.4845546,0.2466311,0.8392735,0.4845547,0.2466302,0.8392736,0.4845546,0.2466311,0.8392735,0.4845547,0.2466302,0.8392736,0.5,3.484908E-07,0.8660254,0.5,3.484908E-07,0.8660254,0.5,3.484908E-07,0.8660254,-0.922011,0.3871636,0,-0.922011,0.3871636,0,-0.922011,0.3871636,0,-0.922011,0.3871636,0,-0.922011,0.3871636,0,-0.922011,0.3871636,0,-0.922011,0.3871636,0,-0.922011,0.3871636,0,-0.9220108,0.3871641,0,-0.9220108,0.3871641,0,-0.9220108,0.3871641,0,-0.922011,0.3871636,0,-0.4845546,0.2466311,-0.8392735,-0.4845546,0.2466311,-0.8392735,-0.4845546,0.2466311,-0.8392735,-0.4845546,0.2466311,-0.8392735,-0.4845546,0.2466311,-0.8392735,-0.4845546,0.2466311,-0.8392735,-0.4845546,0.2466311,-0.8392735,-0.4845547,0.2466302,-0.8392736,-0.4845546,0.2466311,-0.8392735,-0.4845547,0.2466302,-0.8392736,-0.4845546,0.2466311,-0.8392735,-0.4845547,0.2466302,-0.8392736,-0.4671215,0.356637,-0.8090782,-0.4671215,0.356637,-0.8090782,-0.4671215,0.356637,-0.8090782,-0.4671215,0.356637,-0.8090782,-0.4671215,0.356637,-0.8090782,-0.4671215,0.356637,-0.8090782,-0.4671215,0.356637,-0.8090782,-0.4671216,0.3566373,-0.8090781,-0.4671215,0.356637,-0.8090782,-0.4671216,0.3566373,-0.8090781,-0.4671215,0.356637,-0.8090782,-0.4671216,0.3566373,-0.8090781,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.4610054,0.3871641,-0.7984848,-0.4610054,0.3871641,-0.7984848,-0.4610054,0.3871641,-0.7984848,-0.4610054,0.3871641,-0.7984848,-0.4610054,0.3871641,-0.7984848,-0.4610054,0.3871641,-0.7984848,-0.4610054,0.3871641,-0.7984848,-0.4610055,0.3871637,-0.7984849,-0.4610054,0.3871641,-0.7984848,-0.4610055,0.3871637,-0.7984849,-0.4610054,0.3871641,-0.7984848,-0.4610055,0.3871637,-0.7984849,-1,0,0,-1,0,0,-1,0,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.934243,0.3566371,0,0.934243,0.3566371,0,0.934243,0.3566371,0,0.934243,0.3566371,0,0.934243,0.3566371,0,0.934243,0.3566371,0,0.934243,0.3566371,0,0.9342429,0.3566374,0,0.934243,0.3566371,0,0.9342429,0.3566374,0,0.934243,0.3566371,0,0.9342429,0.3566374,0,0.4671215,0.356637,-0.8090782,0.4671215,0.356637,-0.8090782,0.4671215,0.356637,-0.8090782,0.4671215,0.356637,-0.8090782,0.4671215,0.356637,-0.8090782,0.4671215,0.356637,-0.8090782,0.4671215,0.356637,-0.8090782,0.4671216,0.3566373,-0.8090781,0.4671215,0.356637,-0.8090782,0.4671216,0.3566373,-0.8090781,0.4671215,0.356637,-0.8090782,0.4671216,0.3566373,-0.8090781,1,0,0,1,0,0,1,0,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.934243,0.3566371,0,-0.934243,0.3566371,0,-0.934243,0.3566371,0,-0.934243,0.3566371,0,-0.934243,0.3566371,0,-0.934243,0.3566371,0,-0.934243,0.3566371,0,-0.934243,0.3566371,0,-0.9342429,0.3566374,0,-0.9342429,0.3566374,0,-0.9342429,0.3566374,0,-0.934243,0.3566371,0,-0.9691096,0.2466301,0,-0.9691096,0.2466301,0,-0.9691096,0.2466301,0,-0.9691096,0.2466301,0,-0.9691096,0.2466301,0,-0.9691096,0.2466301,0,-0.9691096,0.2466301,0,-0.9691096,0.2466301,0,-0.9691095,0.2466311,0,-0.9691095,0.2466311,0,-0.9691095,0.2466311,0,-0.9691096,0.2466301,0,0.5,3.484908E-07,-0.8660254,0.5,3.484908E-07,-0.8660254,0.5,3.484908E-07,-0.8660254,-0.5,3.484908E-07,-0.8660254,-0.5,3.484908E-07,-0.8660254,-0.5,3.484908E-07,-0.8660254,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4836282,0.2538016,0.8376685,-0.4836282,0.2538016,0.8376685,-0.4836282,0.2538016,0.8376685,-0.4836282,0.2538016,0.8376685,-0.4836282,0.2538016,0.8376685,-0.4836282,0.2538016,0.8376685,-0.5,-5.300969E-07,-0.8660254,-0.5,-5.300969E-07,-0.8660254,-0.5,-5.300969E-07,-0.8660254,0.4671215,0.3566369,0.8090782,0.4671215,0.3566369,0.8090782,0.4671215,0.3566369,0.8090782,0.4671215,0.3566369,0.8090782,0.4671215,0.3566369,0.8090782,0.4671215,0.3566369,0.8090782,0.4845546,0.2466311,-0.8392735,0.4845546,0.2466311,-0.8392735,0.4845546,0.2466311,-0.8392735,0.4845546,0.2466311,-0.8392735,0.4845546,0.2466311,-0.8392735,0.4845546,0.2466311,-0.8392735,0.4845546,0.2466311,-0.8392735,0.4845547,0.2466302,-0.8392736,0.4845546,0.2466311,-0.8392735,0.4845547,0.2466302,-0.8392736,0.4845546,0.2466311,-0.8392735,0.4845547,0.2466302,-0.8392736,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-1,0,0,-1,0,0,-1,0,0,-0.9672564,0.2538016,0,-0.9672564,0.2538016,0,-0.9672564,0.2538016,0,-0.9672564,0.2538016,0,-0.9672564,0.2538016,0,-0.9672564,0.2538016,0,-0.5,3.484908E-07,0.8660254,-0.5,3.484908E-07,0.8660254,-0.5,3.484908E-07,0.8660254,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,-5.300969E-07,-0.8660254,0.5,-5.300969E-07,-0.8660254,0.5,-5.300969E-07,-0.8660254,0.5,-5.300969E-07,0.8660254,0.5,-5.300969E-07,0.8660254,0.5,-5.300969E-07,0.8660254,-1,0,0,-1,0,0,-1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.4836282,0.2538016,0.8376685,0.4836282,0.2538016,0.8376685,0.4836282,0.2538016,0.8376685,0.4836282,0.2538016,0.8376685,0.4836282,0.2538016,0.8376685,0.4836282,0.2538016,0.8376685,0.9672564,0.2538016,0,0.9672564,0.2538016,0,0.9672564,0.2538016,0,0.9672564,0.2538016,0,0.9672564,0.2538016,0,0.9672564,0.2538016,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4671215,0.3566369,-0.8090782,0.4671215,0.3566369,-0.8090782,0.4671215,0.3566369,-0.8090782,0.4671215,0.3566369,-0.8090782,0.4671215,0.3566369,-0.8090782,0.4671215,0.3566369,-0.8090782,1,0,0,1,0,0,1,0,0,-0.4671215,0.3566369,-0.8090782,-0.4671215,0.3566369,-0.8090782,-0.4671215,0.3566369,-0.8090782,-0.4671215,0.3566369,-0.8090782,-0.4671215,0.3566369,-0.8090782,-0.4671215,0.3566369,-0.8090782,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,-5.300969E-07,0.8660254,-0.5,-5.300969E-07,0.8660254,-0.5,-5.300969E-07,0.8660254,-0.4836282,0.2538016,-0.8376685,-0.4836282,0.2538016,-0.8376685,-0.4836282,0.2538016,-0.8376685,-0.4836282,0.2538016,-0.8376685,-0.4836282,0.2538016,-0.8376685,-0.4836282,0.2538016,-0.8376685,1,0,0,1,0,0,1,0,0,0.9342431,0.3566369,0,0.9342431,0.3566369,0,0.9342431,0.3566369,0,0.9342431,0.3566369,0,0.9342431,0.3566369,0,0.9342431,0.3566369,0,0.9838722,0.1788729,0,0.9838722,0.1788729,0,0.9838722,0.1788729,0,0.9838722,0.1788729,0,0.9838722,0.1788729,0,0.9838722,0.1788729,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4919361,0.1788728,-0.8520584,0.4919361,0.1788728,-0.8520584,0.4919361,0.1788728,-0.8520584,0.4919361,0.1788728,-0.8520584,0.4919361,0.1788728,-0.8520584,0.4919361,0.1788728,-0.8520584,-0.9838722,0.1788729,0,-0.9838722,0.1788729,0,-0.9838722,0.1788729,0,-0.9838722,0.1788729,0,-0.9838722,0.1788729,0,-0.9838722,0.1788729,0,-0.4919361,0.1788728,0.8520584,-0.4919361,0.1788728,0.8520584,-0.4919361,0.1788728,0.8520584,-0.4919361,0.1788728,0.8520584,-0.4919361,0.1788728,0.8520584,-0.4919361,0.1788728,0.8520584,-0.4919361,0.1788728,-0.8520584,-0.4919361,0.1788728,-0.8520584,-0.4919361,0.1788728,-0.8520584,-0.4919361,0.1788728,-0.8520584,-0.4919361,0.1788728,-0.8520584,-0.4919361,0.1788728,-0.8520584,0.4919361,0.1788728,0.8520584,0.4919361,0.1788728,0.8520584,0.4919361,0.1788728,0.8520584,0.4919361,0.1788728,0.8520584,0.4919361,0.1788728,0.8520584,0.4919361,0.1788728,0.8520584 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *684 { + a: 5.459646,3.598756,-5.459646,3.598756,3.422602,12.71185,-3.422602,12.71185,2.938381,14.87811,-2.938381,14.87811,4.47691,12.44065,-4.47691,12.44065,2.652644,21.30042,-2.652645,21.30042,2.409472,22.48141,-2.409473,22.48141,4.47691,16.27639,5.684342E-14,14.15265,-4.47691,16.27639,3.422602,12.71185,-3.422602,12.71185,2.938381,14.87811,-2.938381,14.87811,-5.459646,3.598756,5.459646,3.598756,5.459645,7.874017,-5.177694E-07,5.519538,-5.459646,7.874017,4.47691,16.27639,-5.032497E-09,14.15265,-4.476909,16.27639,3.422602,12.71185,-3.422602,12.71185,2.938381,14.87811,-2.938381,14.87811,-5.459646,3.598755,5.459646,3.598755,1.453193,37.46013,-1.453193,37.46013,1.39147,37.89361,-1.391471,37.89361,-2.585415,29.50871,2.585414,29.50871,7.754235,-4.47691,5.928121,3.422602,7.754235,4.47691,-9.094947E-13,8.953819,-9.094947E-13,6.845205,-7.754235,4.47691,-5.928121,3.422602,-5.928121,-3.422602,5.928121,-3.422602,-9.094947E-13,-8.953819,-9.094947E-13,-6.845205,-7.754235,-4.47691,4.47691,12.44065,-4.47691,12.44065,2.652645,21.30042,-2.652644,21.30042,2.409473,22.48141,-2.409472,22.48141,3.422602,12.71185,-3.422602,12.71185,2.938381,14.87811,-2.938381,14.87811,-5.459646,3.598756,5.459646,3.598756,-1.705303E-13,5.519537,-5.459646,7.874016,5.459646,7.874016,-3.357682,20.86491,-1.807104,28.39548,3.357682,20.86491,1.807104,28.39548,3.357682,20.86491,-3.357682,20.86491,1.807104,28.39548,-1.807105,28.39548,1.453194,37.46014,-1.453194,37.46014,1.39147,37.89361,-1.39147,37.89361,-2.585415,29.50871,2.585415,29.50871,5.459645,7.874017,-5.177678E-07,5.519538,-5.459646,7.874017,1.835645,37.20113,-1.835645,37.20113,0.3161421,47.57087,-0.3161421,47.57087,2.585415,29.50871,-2.585414,29.50871,1.453193,37.46012,-1.453193,37.46012,1.391471,37.89361,-1.39147,37.89361,2.585415,31.58894,3.224348E-07,29.74926,-2.585414,31.58894,-3.422602,12.71185,-2.938381,14.87811,3.422602,12.71185,2.938381,14.87811,5.459646,3.598755,-5.459646,3.598755,2.585415,29.50871,-2.585414,29.50871,1.453193,37.46012,-1.453193,37.46012,1.391471,37.89361,-1.39147,37.89361,4.47691,12.44065,-4.47691,12.44065,2.652644,21.30042,-2.652645,21.30042,2.409472,22.48141,-2.409473,22.48141,5.459646,7.874017,5.177678E-07,5.519538,-5.459645,7.874017,5.459646,3.598756,-5.459646,3.598756,3.422602,12.71185,-3.422602,12.71185,2.938381,14.87811,-2.938381,14.87811,-1.136868E-13,14.15265,-4.47691,16.27639,4.47691,16.27639,4.47691,16.27639,-5.033978E-09,14.15265,-4.476909,16.27639,4.47691,12.44065,-4.47691,12.44065,2.652645,21.30042,-2.652645,21.30042,2.409472,22.48141,-2.409472,22.48141,4.47691,12.44065,-4.47691,12.44065,2.652645,21.30042,-2.652644,21.30042,2.409473,22.48141,-2.409472,22.48141,5.459646,7.874016,1.136868E-13,5.519537,-5.459646,7.874016,4.476909,16.27639,5.034063E-09,14.15265,-4.47691,16.27639,5.459646,7.874017,5.177694E-07,5.519538,-5.459645,7.874017,4.476909,16.27639,5.032411E-09,14.15265,-4.47691,16.27639,-4.47691,12.44065,-2.652645,21.30042,4.47691,12.44065,2.652645,21.30042,-2.409472,22.48141,2.409472,22.48141,-1.453194,37.46014,-1.39147,37.89361,1.453194,37.46014,1.39147,37.89361,2.585415,29.50871,-2.585415,29.50871,2.585414,31.58894,-3.224347E-07,29.74926,-2.585415,31.58894,2.585415,31.58894,3.224363E-07,29.74926,-2.585414,31.58894,4.47807,-2.585415,3.129997,1.807104,4.47807,2.585415,-9.094947E-13,5.17083,-9.094947E-13,3.614209,-4.47807,2.585415,-3.129997,1.807104,-3.129997,-1.807104,3.129997,-1.807104,-9.094947E-13,-5.17083,-9.094947E-13,-3.614209,-4.47807,-2.585415,1.835645,37.20113,-1.835645,37.20113,0.3161421,47.57087,-0.3161421,47.57087,3.357682,24.55356,1.449968E-07,22.96076,-3.357682,24.55356,3.357682,20.86491,-3.357682,20.86491,1.807105,28.39548,-1.807104,28.39548,2.585414,29.50871,-2.585415,29.50871,1.453193,37.46012,-1.453193,37.46012,1.39147,37.89361,-1.391471,37.89361,5.815676,-3.357682,4.594515,2.652645,5.815676,3.357682,-9.094947E-13,6.715364,-9.094947E-13,5.305289,-5.815676,3.357682,-4.594515,2.652645,-4.594515,-2.652645,4.594515,-2.652645,-9.094947E-13,-6.715364,-9.094947E-13,-5.305289,-5.815676,-3.357682,1.835645,39.29473,5.433958E-07,37.98856,-1.835645,39.29473,1.705303E-13,29.74926,-2.585415,31.58894,2.585415,31.58894,-1.835645,37.20113,-0.3161421,47.57087,1.835645,37.20113,0.3161421,47.57087,2.585414,31.58894,-3.224363E-07,29.74926,-2.585415,31.58894,-0.5475741,-0.3161421,-0.5475741,0.3161421,9.094947E-13,-0.6322842,9.094947E-13,0.6322842,0.5475741,-0.3161421,0.5475741,0.3161421,1.835645,39.29473,-3.979039E-13,37.98856,-1.835645,39.29473,1.136868E-13,22.96076,-3.357682,24.55356,3.357682,24.55356,1.835645,39.29473,-5.433957E-07,37.98856,-1.835645,39.29473,3.357682,24.55356,-1.449952E-07,22.96076,-3.357682,24.55356,3.357682,24.55356,1.449953E-07,22.96076,-3.357682,24.55356,3.410605E-13,37.98856,-1.835645,39.29473,1.835645,39.29473,1.835645,39.29473,-5.433942E-07,37.98856,-1.835645,39.29473,1.835645,37.20113,-1.835645,37.20113,0.3161421,47.57087,-0.3161421,47.57087,1.835645,37.20113,-1.835645,37.20113,0.3161421,47.57087,-0.3161421,47.57087,3.17943,-1.835645,2.517005,1.453194,3.17943,1.835645,-9.094947E-13,3.671289,-9.094947E-13,2.906387,-3.17943,1.835645,-2.517005,1.453194,-2.517005,-1.453194,2.517005,-1.453194,-9.094947E-13,-3.671289,-9.094947E-13,-2.906387,-3.17943,-1.835645,3.357682,20.86491,-3.357682,20.86491,1.807104,28.39548,-1.807105,28.39548,3.357682,24.55356,-1.136868E-13,22.96076,-3.357682,24.55356,3.357682,20.86491,-3.357682,20.86491,1.807105,28.39548,-1.807104,28.39548,9.456384,5.459646,9.456384,-5.459646,-9.094947E-13,10.91929,2.752952,1.589418,-1.250555E-12,3.178835,-9.456384,5.459646,-2.752952,1.589418,-2.752952,-1.589418,2.752952,-1.589418,-9.094947E-13,-10.91929,-1.250555E-12,-3.178835,-9.456384,-5.459646,1.835645,39.29473,5.433942E-07,37.98856,-1.835645,39.29473,3.357682,24.55356,-1.449968E-07,22.96076,-3.357682,24.55356,1.835645,37.20113,-1.835645,37.20113,0.3161421,47.57087,-0.3161421,47.57087,2.585415,31.58894,-1.705303E-13,29.74926,-2.585415,31.58894,3.357682,20.86491,-3.357682,20.86491,1.807104,28.39548,-1.807104,28.39548,2.415915,-0.7484912,-2.415915,-0.7484912,1.589418,7.254597,-1.589418,7.254597,4.184487,2.415915,4.184487,-2.415915,0,4.83183,0,-4.83183,-4.184487,2.415915,-4.184487,-2.415915,2.415915,-0.7484911,-2.415915,-0.7484911,1.589418,7.254597,-1.589418,7.254597,-2.415915,-0.7484912,-1.589418,7.254597,2.415915,-0.7484912,1.589418,7.254597,2.415915,-0.7484911,-2.415915,-0.7484911,1.589418,7.254597,-1.589418,7.254597,2.415915,-0.7484911,-2.415915,-0.7484911,1.589418,7.254597,-1.589418,7.254597,2.415915,-0.7484911,-2.415915,-0.7484911,1.589418,7.254597,-1.589418,7.254597 + } + UVIndex: *618 { + a: 0,2,1,3,1,2,2,4,3,5,3,4,6,8,7,9,7,8,8,10,9,11,9,10,12,14,13,15,17,16,18,16,17,16,19,15,20,15,19,21,23,22,24,26,25,27,29,28,30,28,29,28,31,27,32,27,31,33,35,34,36,34,35,34,37,33,38,33,37,39,41,40,42,40,41,43,40,42,44,43,42,45,43,44,46,45,44,40,47,39,48,39,47,49,48,47,46,48,49,50,48,46,44,50,46,51,53,52,54,52,53,53,55,54,56,54,55,57,59,58,60,58,59,58,61,57,62,57,61,63,65,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,75,78,74,79,74,78,80,82,81,83,85,84,86,84,85,87,89,88,90,88,89,89,91,90,92,90,91,93,95,94,96,98,97,99,97,98,98,96,100,101,100,96,102,104,103,105,103,104,104,106,105,107,105,106,108,110,109,111,109,110,110,112,111,113,111,112,114,116,115,117,119,118,120,118,119,119,121,120,122,120,121,123,125,124,126,128,127,129,131,130,132,130,131,131,133,132,134,132,133,135,137,136,138,136,137,137,139,138,140,138,139,141,143,142,144,146,145,147,149,148,150,152,151,153,155,154,156,154,155,154,156,157,158,157,156,159,161,160,162,160,161,161,159,163,164,163,159,165,167,166,168,170,169,171,173,172,174,172,173,175,172,174,176,175,174,177,175,176,178,177,176,172,179,171,180,171,179,181,180,179,178,180,181,182,180,178,176,182,178,183,185,184,186,184,185,187,189,188,190,192,191,193,191,192,194,196,195,197,195,196,196,198,197,199,197,198,200,202,201,203,201,202,204,201,203,205,204,203,206,204,205,207,206,205,201,208,200,209,200,208,210,209,208,207,209,210,211,209,207,205,211,207,212,214,213,215,217,216,218,220,219,221,219,220,222,224,223,225,227,226,228,226,227,229,228,227,230,228,229,231,233,232,234,236,235,237,239,238,240,242,241,243,245,244,246,248,247,249,251,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,261,263,265,264,263,266,264,265,267,266,265,261,268,260,269,260,268,270,269,268,267,269,270,271,269,267,265,271,267,272,274,273,275,273,274,276,278,277,279,281,280,282,280,281,283,285,284,286,284,285,287,286,285,288,287,285,289,287,288,290,289,288,286,291,284,292,284,291,293,292,291,294,292,293,290,294,293,288,294,290,295,297,296,298,300,299,301,303,302,304,302,303,305,307,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,319,318,321,319,320,322,324,323,325,323,324,326,328,327,329,327,328,330,332,331,333,331,332,334,336,335,337,335,336,338,340,339,341,339,340 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *206 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineRoundC, Model::RootNode + C: "OO",4739981127629206442,0 + + ;Geometry::, Model::Mesh tree_pineRoundC + C: "OO",4796456443181504688,4739981127629206442 + + ;Material::leafsDark, Model::Mesh tree_pineRoundC + C: "OO",3026,4739981127629206442 + + ;Material::woodBarkDark, Model::Mesh tree_pineRoundC + C: "OO",3048,4739981127629206442 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundC.fbx.import new file mode 100644 index 0000000..bc323a1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://1kyuks6ckk0s" +path="res://.godot/imported/tree_pineRoundC.fbx-4e8a104a1e9bbba8337063f0c74f9f71.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundC.fbx" +dest_files=["res://.godot/imported/tree_pineRoundC.fbx-4e8a104a1e9bbba8337063f0c74f9f71.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundD.fbx new file mode 100644 index 0000000..d7fba17 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundD.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 39 + Millisecond: 720 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineRoundD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineRoundD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4758091865978610530, "Model::tree_pineRoundD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5034495764459129434, "Geometry::", "Mesh" { + Vertices: *918 { + a: -1.969576,3.774601,-1.24306,-1.146971,5.60056,-0.7105117,-1.969576,3.703165,1.030087,-1.182661,5.478442,0.631328,5.775292E-14,3.667446,2.166661,5.775292E-14,5.41449,1.334058,1.969576,3.703165,1.030087,1.182661,5.478442,0.631328,-1.13743,7.071612,-0.6336613,-0.634323,8.706218,-0.1165667,-1.13743,6.893365,0.667578,-0.64508,8.570177,0.6103597,5.775292E-14,6.804242,1.318197,5.775292E-14,8.500412,0.9831475,1.13743,6.893365,0.667578,0.64508,8.570177,0.6103597,-2.401922,1.913105,-1.38675,-1.493254,3.76263,-0.8621305,-2.401922,1.913105,1.38675,-1.520116,3.707955,0.877639,2.401922,1.913105,-1.38675,2.401922,1.913105,1.38675,1.493254,3.76263,-0.8621305,1.520116,3.707955,0.877639,-1.13743,7.071612,-0.6336613,5.775292E-14,7.160738,-1.284281,-0.634323,8.706218,-0.1165667,2.887646E-14,8.772552,-0.4710138,5.775292E-14,3.667446,2.166661,-1.969576,3.703165,1.030087,5.775292E-14,5.41449,1.334058,-1.182661,5.478442,0.631328,5.775292E-14,1.913105,-2.7735,2.401922,1.913105,-1.38675,5.775292E-14,3.789249,-1.70916,1.493254,3.76263,-0.8621305,2.401922,1.913105,1.38675,5.775292E-14,1.913105,2.7735,1.520116,3.707955,0.877639,5.775292E-14,3.679874,1.771209,1.13743,7.071612,-0.6336613,0.634323,8.706218,-0.1165667,5.775292E-14,7.160738,-1.284281,2.887646E-14,8.772552,-0.4710138,1.969576,3.774601,-1.24306,1.146971,5.60056,-0.7105117,5.775292E-14,3.81032,-2.379634,2.887646E-14,5.658895,-1.351513,-1.13743,7.071612,-0.6336613,-0.568715,6.720485,-1.013174,5.775292E-14,7.160738,-1.284281,-1.13743,6.586797,-0.0372445,-1.13743,7.071612,-0.6336613,-1.13743,6.893365,0.667578,0.05,8.475752,1.114911,-0.3537875,8.239912,0.8336008,-0.7575753,8.561523,0.656614,5.775292E-14,6.804242,1.318197,-1.13743,6.893365,0.667578,5.775292E-14,8.500412,0.9831475,-0.64508,8.570177,0.6103597,5.775292E-14,1.913105,2.7735,-2.401922,1.913105,1.38675,5.775292E-14,3.679874,1.771209,-1.520116,3.707955,0.877639,-2.401922,1.913105,-1.38675,5.775292E-14,1.913105,-2.7735,-1.493254,3.76263,-0.8621305,5.775292E-14,3.789249,-1.70916,1.969576,3.774601,-1.24306,1.969576,3.703165,1.030087,1.146971,5.60056,-0.7105117,1.182661,5.478442,0.631328,-1.969576,3.774601,-1.24306,5.775292E-14,3.81032,-2.379634,-1.146971,5.60056,-0.7105117,2.887646E-14,5.658895,-1.351513,0.9847877,3.224482,1.583892,5.775292E-14,3.667446,2.166661,1.969576,3.703165,1.030087,-1.969576,3.774601,-1.24306,-0.9847877,3.331637,-1.825829,5.775292E-14,3.81032,-2.379634,-2.401922,1.401962,-2.887646E-14,-2.401922,1.913105,-1.38675,-2.401922,1.913105,1.38675,2.401922,1.913105,1.38675,1.200961,1.401962,2.080125,5.775292E-14,1.913105,2.7735,0.568715,6.720485,-1.013174,1.13743,7.071612,-0.6336613,5.775292E-14,7.160738,-1.284281,-1.969576,3.278059,-0.1209684,-1.969576,3.774601,-1.24306,-1.969576,3.703165,1.030087,1.477182,5.617782,-0.899747,1.477182,5.46319,0.7989354,0.8246905,7.038532,-0.3921758,0.8442327,6.90763,0.5634462,-0.7575753,8.368565,0.1461547,-0.7575753,8.733058,-0.2599807,-0.7575753,8.561523,0.656614,1.969576,3.774601,-1.24306,1.520116,3.707955,0.877639,1.969576,3.703165,1.030087,5.775292E-14,3.667446,2.166661,5.775292E-14,3.679874,1.771209,-1.969576,3.703165,1.030087,-1.520116,3.707955,0.877639,1.493254,3.76263,-0.8621305,5.775292E-14,3.81032,-2.379634,5.775292E-14,3.789249,-1.70916,-1.493254,3.76263,-0.8621305,-1.969576,3.774601,-1.24306,5.775292E-14,6.804242,1.318197,-0.568715,6.453113,0.938685,-1.13743,6.893365,0.667578,5.775292E-14,1.913105,-2.7735,1.200961,1.401962,-2.080125,2.401922,1.913105,-1.38675,5.775292E-14,1.913105,2.7735,-1.200961,1.401962,2.080125,-2.401922,1.913105,1.38675,0.568715,6.453113,0.938685,5.775292E-14,6.804242,1.318197,1.13743,6.893365,0.667578,0.8575752,8.733058,-0.2599807,0.1890838,10.8024,0.51994,0.05,8.818825,-0.718278,0.05,10.81717,0.44101,0.9847877,3.331637,-1.825829,1.969576,3.774601,-1.24306,5.775292E-14,3.81032,-2.379634,1.969576,3.774601,-1.24306,1.969576,3.278059,-0.1209684,1.969576,3.703165,1.030087,0.8575752,8.733058,-0.2599807,0.8575752,8.368565,0.1461547,0.8575752,8.561523,0.656614,0.05,8.475752,1.114911,0.05,10.75808,0.7567292,0.8575752,8.561523,0.656614,0.1890838,10.77286,0.6777995,5.775292E-14,3.667446,2.166661,-0.9847877,3.224482,1.583892,-1.969576,3.703165,1.030087,-1.477182,5.196119,-0.08174553,-1.477182,5.617782,-0.899747,-1.477182,5.46319,0.7989354,0.7385907,5.080177,1.192266,5.775292E-14,5.385892,1.648277,1.477182,5.46319,0.7989354,0.8575752,8.733058,-0.2599807,0.64508,8.570177,0.6103597,0.8575752,8.561523,0.656614,0.05,8.475752,1.114911,5.775292E-14,8.500412,0.9831475,-0.7575753,8.561523,0.656614,-0.64508,8.570177,0.6103597,0.634323,8.706218,-0.1165667,0.05,8.818825,-0.718278,2.887646E-14,8.772552,-0.4710138,-0.7575753,8.733058,-0.2599807,-0.634323,8.706218,-0.1165667,-2.401922,1.913105,-1.38675,-1.200961,1.401962,-2.080125,5.775292E-14,1.913105,-2.7735,-1.477182,5.617782,-0.899747,-0.7385907,5.312065,-1.355757,5.775292E-14,5.695078,-1.749088,1.477182,5.617782,-0.899747,1.477182,5.196119,-0.08174553,1.477182,5.46319,0.7989354,2.401922,1.913105,1.38675,2.401922,1.913105,-1.38675,5.775292E-14,1.913105,2.7735,0.797011,1.913105,0.4601544,5.775292E-14,1.913105,0.9203089,-2.401922,1.913105,1.38675,-0.797011,1.913105,0.4601544,-0.797011,1.913105,-0.4601544,0.797011,1.913105,-0.4601544,5.775292E-14,1.913105,-2.7735,5.775292E-14,1.913105,-0.9203089,-2.401922,1.913105,-1.38675,0.05,8.475752,1.114911,-0.7575753,8.561523,0.656614,0.05,10.75808,0.7567292,-0.08908383,10.77286,0.6777995,0.4537875,8.497218,-0.5412912,0.8575752,8.733058,-0.2599807,0.05,8.818825,-0.718278,2.401922,1.913105,-1.38675,2.401922,1.401962,-2.165734E-14,2.401922,1.913105,1.38675,-0.7575753,8.733058,-0.2599807,-0.08908383,10.8024,0.51994,-0.7575753,8.561523,0.656614,-0.08908383,10.77286,0.6777995,0.1890838,10.8024,0.51994,0.1890838,10.77286,0.6777995,0.05,10.81717,0.44101,0.05,10.75808,0.7567292,-0.08908383,10.8024,0.51994,-0.08908383,10.77286,0.6777995,0.8575752,8.733058,-0.2599807,0.8575752,8.561523,0.656614,0.1890838,10.8024,0.51994,0.1890838,10.77286,0.6777995,1.477182,5.617782,-0.899747,0.8246905,7.038532,-0.3921758,5.775292E-14,5.695078,-1.749088,5.775292E-14,7.101737,-0.8535861,5.775292E-14,5.385892,1.648277,2.887646E-14,6.839823,1.058445,1.477182,5.46319,0.7989354,0.8442327,6.90763,0.5634462,0.4537875,8.239912,0.8336008,0.05,8.475752,1.114911,0.8575752,8.561523,0.656614,0.7385907,5.312065,-1.355757,1.477182,5.617782,-0.899747,5.775292E-14,5.695078,-1.749088,-0.7575753,8.733058,-0.2599807,0.05,8.818825,-0.718278,-0.08908383,10.8024,0.51994,0.05,10.81717,0.44101,-1.477182,5.617782,-0.899747,5.775292E-14,5.695078,-1.749088,-0.8246905,7.038532,-0.3921758,5.775292E-14,7.101737,-0.8535861,1.13743,7.071612,-0.6336613,0.8442327,6.90763,0.5634462,1.13743,6.893365,0.667578,5.775292E-14,6.804242,1.318197,2.887646E-14,6.839823,1.058445,-1.13743,6.893365,0.667578,-0.8442327,6.90763,0.5634462,0.8246905,7.038532,-0.3921758,5.775292E-14,7.160738,-1.284281,5.775292E-14,7.101737,-0.8535861,-0.8246905,7.038532,-0.3921758,-1.13743,7.071612,-0.6336613,1.13743,7.071612,-0.6336613,1.13743,6.893365,0.667578,0.634323,8.706218,-0.1165667,0.64508,8.570177,0.6103597,-0.7575753,8.733058,-0.2599807,-0.3537875,8.497218,-0.5412912,0.05,8.818825,-0.718278,-1.477182,5.617782,-0.899747,-0.8246905,7.038532,-0.3921758,-1.477182,5.46319,0.7989354,-0.8442327,6.90763,0.5634462,5.775292E-14,5.385892,1.648277,-0.7385907,5.080177,1.192266,-1.477182,5.46319,0.7989354,5.775292E-14,5.385892,1.648277,-1.477182,5.46319,0.7989354,2.887646E-14,6.839823,1.058445,-0.8442327,6.90763,0.5634462,1.13743,7.071612,-0.6336613,1.13743,6.586797,-0.0372445,1.13743,6.893365,0.667578,1.477182,5.617782,-0.899747,1.182661,5.478442,0.631328,1.477182,5.46319,0.7989354,5.775292E-14,5.385892,1.648277,5.775292E-14,5.41449,1.334058,-1.477182,5.46319,0.7989354,-1.182661,5.478442,0.631328,1.146971,5.60056,-0.7105117,5.775292E-14,5.695078,-1.749088,2.887646E-14,5.658895,-1.351513,-1.477182,5.617782,-0.899747,-1.146971,5.60056,-0.7105117,1.036114,0,0.5982007,1.036114,0,-0.5982007,0,0,1.196401,0,0,-1.196401,-1.036114,0,0.5982007,-1.036114,0,-0.5982007,1.036114,0,0.5982007,0,0,1.196401,0.797011,1.913105,0.4601544,5.775292E-14,1.913105,0.9203089,-1.036114,0,-0.5982007,0,0,-1.196401,-0.797011,1.913105,-0.4601544,5.775292E-14,1.913105,-0.9203089,0,0,-1.196401,1.036114,0,-0.5982007,5.775292E-14,1.913105,-0.9203089,0.797011,1.913105,-0.4601544,1.036114,0,-0.5982007,1.036114,0,0.5982007,0.797011,1.913105,-0.4601544,0.797011,1.913105,0.4601544,-1.036114,0,-0.5982007,-0.797011,1.913105,-0.4601544,-1.036114,0,0.5982007,-0.797011,1.913105,0.4601544,0,0,1.196401,-1.036114,0,0.5982007,5.775292E-14,1.913105,0.9203089,-0.797011,1.913105,0.4601544 + } + PolygonVertexIndex: *510 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,53,-53,54,56,-56,57,59,-59,60,58,-60,61,63,-63,64,62,-64,65,67,-67,68,66,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,82,-82,83,85,-85,86,88,-88,89,91,-91,92,94,-94,95,97,-97,98,96,-98,99,101,-101,102,104,-104,105,103,-105,106,103,-106,107,106,-106,108,106,-108,103,109,-103,110,102,-110,111,110,-110,112,110,-112,113,110,-113,108,113,-113,107,113,-109,114,116,-116,117,119,-119,120,122,-122,123,125,-125,126,128,-128,129,127,-129,130,132,-132,133,135,-135,136,138,-138,139,141,-141,142,140,-142,143,145,-145,146,148,-148,149,151,-151,152,154,-154,155,153,-155,156,153,-156,157,156,-156,158,156,-158,153,159,-153,160,152,-160,161,160,-160,162,160,-162,157,162,-159,163,162,-162,158,162,-164,164,166,-166,167,169,-169,170,172,-172,173,175,-175,176,174,-176,177,176,-176,178,177,-176,179,177,-179,180,179,-179,176,181,-175,182,174,-182,183,182,-182,180,182,-184,184,182,-181,178,184,-181,185,187,-187,188,186,-188,189,191,-191,192,194,-194,195,197,-197,198,196,-198,199,201,-201,202,200,-202,203,202,-202,204,202,-204,205,207,-207,208,206,-208,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,219,-219,220,222,-222,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,233,-233,234,232,-234,235,232,-235,236,235,-235,237,235,-237,232,238,-232,239,231,-239,240,239,-239,241,239,-241,242,239,-242,237,242,-242,236,242,-238,243,245,-245,246,244,-246,247,249,-249,250,252,-252,253,251,-253,254,256,-256,257,259,-259,260,258,-260,261,263,-263,264,266,-266,267,265,-267,268,265,-268,269,268,-268,270,268,-270,265,271,-265,272,264,-272,273,272,-272,274,272,-274,269,274,-271,275,274,-274,270,274,-276,276,278,-278,279,277,-279,280,279,-279,281,279,-281,282,284,-284,285,283,-285,286,288,-288,289,287,-289,290,292,-292,293,291,-293,294,296,-296,297,295,-297,298,300,-300,301,299,-301,302,304,-304,305,303,-305 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1530 { + a: -0.9130678,0.4076065,0.0128096,-0.9130678,0.4076065,0.0128096,-0.9130678,0.4076065,0.0128096,-0.9130678,0.4076065,0.0128096,-0.9130678,0.4076065,0.0128096,-0.9130678,0.4076065,0.0128096,0.4565341,0.3827686,0.8031593,0.4565341,0.3827686,0.8031593,0.4565341,0.3827686,0.8031593,0.4565341,0.3827686,0.8031593,0.4565341,0.3827686,0.8031593,0.4565341,0.3827686,0.8031593,-0.9584161,0.2827341,0.03872969,-0.9584161,0.2827341,0.03872969,-0.9584161,0.2827341,0.03872969,-0.9584161,0.2827341,0.03872969,-0.9584161,0.2827341,0.03872969,-0.9584161,0.2827341,0.03872969,0.4792081,0.1700885,0.8610629,0.4792081,0.1700885,0.8610629,0.4792081,0.1700885,0.8610629,0.4792081,0.1700885,0.8610629,0.4792081,0.1700885,0.8610629,0.4792081,0.1700885,0.8610629,-0.8975295,0.4409544,0,-0.8975295,0.4409544,0,-0.8975295,0.4409544,0,-0.8975295,0.4409544,0,-0.8975295,0.4409544,0,-0.8975295,0.4409544,0,0.8975295,0.4409544,0,0.8975295,0.4409544,0,0.8975295,0.4409544,0,0.8975295,0.4409544,0,0.8975295,0.4409544,0,0.8975295,0.4409544,0,-0.4792086,0.3953798,-0.7836031,-0.4792086,0.3953798,-0.7836031,-0.4792086,0.3953798,-0.7836031,-0.4792086,0.3953798,-0.7836031,-0.4792086,0.3953798,-0.7836031,-0.4792086,0.3953798,-0.7836031,-0.4565341,0.3827686,0.8031593,-0.4565341,0.3827686,0.8031593,-0.4565341,0.3827686,0.8031593,-0.4565341,0.3827686,0.8031593,-0.4565341,0.3827686,0.8031593,-0.4565341,0.3827686,0.8031593,0.4487647,0.4409544,-0.7772834,0.4487647,0.4409544,-0.7772834,0.4487647,0.4409544,-0.7772834,0.4487647,0.4409544,-0.7772834,0.4487647,0.4409544,-0.7772834,0.4487647,0.4409544,-0.7772834,0.4487647,0.4409544,0.7772834,0.4487647,0.4409544,0.7772834,0.4487647,0.4409544,0.7772834,0.4487647,0.4409544,0.7772834,0.4487647,0.4409544,0.7772834,0.4487647,0.4409544,0.7772834,0.4792086,0.3953798,-0.7836031,0.4792086,0.3953798,-0.7836031,0.4792086,0.3953798,-0.7836031,0.4792086,0.3953798,-0.7836031,0.4792086,0.3953798,-0.7836031,0.4792086,0.3953798,-0.7836031,0.4565339,0.4324441,-0.7775403,0.4565339,0.4324441,-0.7775403,0.4565339,0.4324441,-0.7775403,0.4565339,0.4324441,-0.7775403,0.4565339,0.4324441,-0.7775403,0.4565339,0.4324441,-0.7775403,-0.5000002,0.1175335,-0.8580126,-0.5000002,0.1175335,-0.8580126,-0.5000002,0.1175335,-0.8580126,-1,0,0,-1,0,0,-1,0,0,-0.5000003,-0.1593066,0.8512469,-0.5000003,-0.1593066,0.8512469,-0.5000003,-0.1593066,0.8512469,-0.4792081,0.1700885,0.8610629,-0.4792081,0.1700885,0.8610629,-0.4792081,0.1700885,0.8610629,-0.4792081,0.1700885,0.8610629,-0.4792081,0.1700885,0.8610629,-0.4792081,0.1700885,0.8610629,-0.4487647,0.4409544,0.7772834,-0.4487647,0.4409544,0.7772834,-0.4487647,0.4409544,0.7772834,-0.4487647,0.4409544,0.7772834,-0.4487647,0.4409544,0.7772834,-0.4487647,0.4409544,0.7772834,-0.4487647,0.4409544,-0.7772834,-0.4487647,0.4409544,-0.7772834,-0.4487647,0.4409544,-0.7772834,-0.4487647,0.4409544,-0.7772834,-0.4487647,0.4409544,-0.7772834,-0.4487647,0.4409544,-0.7772834,0.9130678,0.4076065,0.0128096,0.9130678,0.4076065,0.0128096,0.9130678,0.4076065,0.0128096,0.9130678,0.4076065,0.0128096,0.9130678,0.4076065,0.0128096,0.9130678,0.4076065,0.0128096,-0.4565339,0.4324441,-0.7775403,-0.4565339,0.4324441,-0.7775403,-0.4565339,0.4324441,-0.7775403,-0.4565339,0.4324441,-0.7775403,-0.4565339,0.4324441,-0.7775403,-0.4565339,0.4324441,-0.7775403,0.5,-0.02720274,0.8655981,0.5,-0.02720274,0.8655981,0.5,-0.02720274,0.8655981,-0.4999999,0.02720259,-0.8655981,-0.4999999,0.02720259,-0.8655981,-0.4999999,0.02720259,-0.8655981,-1,0,0,-1,0,0,-1,0,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5000002,0.1175335,-0.8580126,0.5000002,0.1175335,-0.8580126,0.5000002,0.1175335,-0.8580126,-1,0,0,-1,0,0,-1,0,0,0.9130678,0.4061293,0.03696058,0.9130678,0.4061293,0.03696058,0.9130678,0.4061293,0.03696058,0.9130678,0.4061293,0.03696058,0.9130678,0.4061293,0.03696058,0.9130678,0.4061293,0.03696058,-1,0,0,-1,0,0,-1,0,0,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,0,-0.9995066,-0.03141078,-0.4999999,-0.1175325,0.8580129,-0.4999999,-0.1175325,0.8580129,-0.4999999,-0.1175325,0.8580129,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.4999999,-0.1175325,0.8580129,0.4999999,-0.1175325,0.8580129,0.4999999,-0.1175325,0.8580129,0.477982,0.4407648,-0.7597761,0.477982,0.4407648,-0.7597761,0.477982,0.4407648,-0.7597761,0.477982,0.4407648,-0.7597761,0.477982,0.4407648,-0.7597761,0.477982,0.4407648,-0.7597761,0.4999999,0.02720259,-0.8655981,0.4999999,0.02720259,-0.8655981,0.4999999,0.02720259,-0.8655981,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.477982,0.1361818,0.8677487,0.477982,0.1361818,0.8677487,0.477982,0.1361818,0.8677487,0.477982,0.1361818,0.8677487,0.477982,0.1361818,0.8677487,0.477982,0.1361818,0.8677487,-0.5,-0.02720274,0.8655981,-0.5,-0.02720274,0.8655981,-0.5,-0.02720274,0.8655981,-1,0,0,-1,0,0,-1,0,0,0.5000001,-0.0784912,0.8624611,0.5000001,-0.0784912,0.8624611,0.5000001,-0.0784912,0.8624611,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,0,-0.9829353,-0.1839513,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0.07849035,-0.8624612,-0.5,0.07849035,-0.8624612,-0.5,0.07849035,-0.8624612,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.477982,0.1361818,0.8677487,-0.477982,0.1361818,0.8677487,-0.477982,0.1361818,0.8677487,-0.477982,0.1361818,0.8677487,-0.477982,0.1361818,0.8677487,-0.477982,0.1361818,0.8677487,0.4999998,0.1593067,-0.851247,0.4999998,0.1593067,-0.851247,0.4999998,0.1593067,-0.851247,1,0,0,1,0,0,1,0,0,-0.9559647,0.2884734,0.05398602,-0.9559647,0.2884734,0.05398602,-0.9559647,0.2884734,0.05398602,-0.9559647,0.2884734,0.05398602,-0.9559647,0.2884734,0.05398602,-0.9559647,0.2884734,0.05398602,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0,0.9829353,0.1839513,0.9559647,0.2884734,0.05398602,0.9559647,0.2884734,0.05398602,0.9559647,0.2884734,0.05398602,0.9559647,0.2884734,0.05398602,0.9559647,0.2884734,0.05398602,0.9559647,0.2884734,0.05398602,0.4565337,0.4777963,-0.750525,0.4565337,0.4777963,-0.750525,0.4565337,0.4777963,-0.750525,0.4565337,0.4777963,-0.750525,0.4565337,0.4777963,-0.750525,0.4565337,0.4777963,-0.750525,0.4565338,0.3344624,0.8244464,0.4565338,0.3344624,0.8244464,0.4565338,0.3344624,0.8244464,0.4565338,0.3344624,0.8244464,0.4565338,0.3344624,0.8244464,0.4565338,0.3344624,0.8244464,0.5000003,-0.1593064,0.8512469,0.5000003,-0.1593064,0.8512469,0.5000003,-0.1593064,0.8512469,0.5,0.07849035,-0.8624612,0.5,0.07849035,-0.8624612,0.5,0.07849035,-0.8624612,-0.477982,0.4407648,-0.7597761,-0.477982,0.4407648,-0.7597761,-0.477982,0.4407648,-0.7597761,-0.477982,0.4407648,-0.7597761,-0.477982,0.4407648,-0.7597761,-0.477982,0.4407648,-0.7597761,-0.4565337,0.4777963,-0.750525,-0.4565337,0.4777963,-0.750525,-0.4565337,0.4777963,-0.750525,-0.4565337,0.4777963,-0.750525,-0.4565337,0.4777963,-0.750525,-0.4565337,0.4777963,-0.750525,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0,-0.9907479,-0.1357154,0.9584161,0.2827341,0.03872969,0.9584161,0.2827341,0.03872969,0.9584161,0.2827341,0.03872969,0.9584161,0.2827341,0.03872969,0.9584161,0.2827341,0.03872969,0.9584161,0.2827341,0.03872969,-0.4999998,0.1593066,-0.851247,-0.4999998,0.1593066,-0.851247,-0.4999998,0.1593066,-0.851247,-0.9130678,0.4061293,0.03696058,-0.9130678,0.4061293,0.03696058,-0.9130678,0.4061293,0.03696058,-0.9130678,0.4061293,0.03696058,-0.9130678,0.4061293,0.03696058,-0.9130678,0.4061293,0.03696058,-0.5000001,-0.0784912,0.8624611,-0.5000001,-0.0784912,0.8624611,-0.5000001,-0.0784912,0.8624611,-0.4565338,0.3344624,0.8244464,-0.4565338,0.3344624,0.8244464,-0.4565338,0.3344624,0.8244464,-0.4565338,0.3344624,0.8244464,-0.4565338,0.3344624,0.8244464,-0.4565338,0.3344624,0.8244464,1,0,0,1,0,0,1,0,0,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-0.9958844,-0.09063265,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4961401,0.1240169,0.8593398,0.4961401,0.1240169,0.8593398,0.4961401,0.1240169,0.8593398,0.4961401,0.1240169,0.8593398,0.4961401,0.1240169,0.8593398,0.4961401,0.1240169,0.8593398,-0.4961401,0.1240169,-0.8593398,-0.4961401,0.1240169,-0.8593398,-0.4961401,0.1240169,-0.8593398,-0.4961401,0.1240169,-0.8593398,-0.4961401,0.1240169,-0.8593398,-0.4961401,0.1240169,-0.8593398,0.4961401,0.1240169,-0.8593398,0.4961401,0.1240169,-0.8593398,0.4961401,0.1240169,-0.8593398,0.4961401,0.1240169,-0.8593398,0.4961401,0.1240169,-0.8593398,0.4961401,0.1240169,-0.8593398,0.9922801,0.1240169,0,0.9922801,0.1240169,0,0.9922801,0.1240169,0,0.9922801,0.1240169,0,0.9922801,0.1240169,0,0.9922801,0.1240169,0,-0.9922801,0.1240169,0,-0.9922801,0.1240169,0,-0.9922801,0.1240169,0,-0.9922801,0.1240169,0,-0.9922801,0.1240169,0,-0.9922801,0.1240169,0,-0.4961401,0.1240169,0.8593398,-0.4961401,0.1240169,0.8593398,-0.4961401,0.1240169,0.8593398,-0.4961401,0.1240169,0.8593398,-0.4961401,0.1240169,0.8593398,-0.4961401,0.1240169,0.8593398 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *612 { + a: -5.002231,10.43772,-2.860359,18.3102,3.946288,10.12973,2.419983,17.7837,-4.215331,10.50062,-2.595466,17.94573,4.737195,10.65284,2.819621,18.21827,-2.673507,25.46844,-0.5593851,32.17764,2.445305,24.73683,2.298486,31.61927,-2.523746,25.6267,-1.882279,32.40328,2.634809,25.98277,1.050604,32.68201,-5.459646,2.590279,-3.394215,10.70321,5.459646,2.590279,3.455272,10.46338,5.459646,2.590279,-5.459646,2.590279,3.394215,10.70321,-3.455272,10.46338,2.518769,23.80724,-2.637931,24.18925,1.891089,30.81358,-0.9674688,31.09791,4.215331,10.50062,-4.737195,10.65284,2.595466,17.94573,-2.819621,18.21827,5.459646,2.59028,-5.459646,2.59028,3.364489,10.81997,-3.394215,10.70321,5.459646,2.590279,-5.459646,2.590279,3.455272,10.46338,-3.486631,10.3402,-2.518769,23.80724,-1.891089,30.81358,2.637931,24.18925,0.9674688,31.09791,-4.20888,9.876381,-2.477682,17.84924,4.743581,10.03234,2.694116,18.10395,2.612986,27.12969,-0.07382926,25.73765,-2.545758,27.48302,-0.1466319,25.93227,-2.49473,27.84099,2.62826,27.13923,2.392835,33.53001,0.4611652,32.5895,-1.262487,33.87206,2.523746,25.6267,-2.634809,25.98277,1.882279,32.40328,-1.050604,32.68201,5.459646,2.590279,-5.459646,2.590279,3.486631,10.3402,-3.455272,10.46338,5.459646,2.59028,-5.459646,2.59028,3.394215,10.70321,-3.364489,10.81997,5.002231,10.43772,-3.946288,10.12973,2.860359,18.3102,-2.419983,17.7837,4.20888,9.876381,-4.743581,10.03234,2.477682,17.84924,-2.694116,18.10395,0.2382151,12.88975,-4.26666,14.63435,4.686054,14.77503,4.266661,14.63435,-0.2382149,12.88975,-4.686053,14.77503,-1.136868E-13,5.519537,-5.459646,7.531912,5.459646,7.531912,5.459646,7.531914,5.177688E-07,5.519539,-5.459645,7.531914,0.07382926,25.73765,-2.612986,27.12969,2.545758,27.48302,-0.4762537,12.90574,-4.893938,14.86063,4.055461,14.57939,3.774636,17.90929,-2.907618,17.24326,1.674058,24.03034,-2.082043,23.46637,0.575412,32.94711,-1.023546,34.38212,2.585094,33.70678,-7.754236,5.358306,-5.984706,-2.995025,-7.754235,-3.595512,1.347097E-06,-8.07242,1.101228E-06,-6.514752,7.754236,-3.595509,5.984707,-2.995023,-5.878953,3.857843,-1.47951E-06,9.835217,-1.062651E-06,7.194252,5.878952,3.857845,7.754234,5.358308,2.612987,27.1297,-0.07382814,25.73765,-2.545757,27.48302,5.459645,7.531914,-5.177688E-07,5.519539,-5.459646,7.531914,5.459645,7.531914,-5.177685E-07,5.519539,-5.459646,7.531914,0.07382814,25.73765,-2.612987,27.1297,2.545757,27.48302,-2.312754,29.68787,-1.720131,38.76408,1.339212,30.06405,-1.091175,38.82886,0.2382149,12.88975,-4.266661,14.63435,4.686053,14.77503,4.893938,14.86063,0.4762537,12.90574,-4.055461,14.57939,1.023546,34.38212,-0.575412,32.94711,-2.585094,33.70678,-1.945368,32.52172,-1.264996,41.59177,1.710065,32.86257,-0.6354424,41.65047,4.26666,14.63435,-0.2382151,12.88975,-4.686054,14.77503,-0.3218328,20.45716,-3.542311,22.11725,3.145415,21.50862,0.1614138,20.37221,-3.254681,21.57954,3.453742,21.8848,-3.37628,7.330717,-2.539686,3.844691,-3.376282,3.659428,-0.1968533,1.82378,-2.52964E-06,2.351542,2.982578,3.659424,2.539683,3.844688,-2.497334,6.756291,-0.1968485,9.166359,1.211919E-06,8.175979,2.98258,7.330713,2.497335,6.756288,5.459646,7.531914,5.177684E-07,5.519539,-5.459645,7.531914,3.254681,21.57954,-0.1614145,20.3722,-3.453742,21.88479,3.542311,22.11725,0.3218328,20.45716,-3.145415,21.50862,9.456384,5.459646,9.456384,-5.459646,2.273737E-13,10.91929,3.137838,1.811632,2.273737E-13,3.623263,-9.456384,5.459646,-3.137838,1.811632,-3.137838,-1.811632,3.137838,-1.811632,2.273737E-13,-10.91929,2.273737E-13,-3.623263,-9.456384,-5.459646,2.290213,32.54758,-1.36522,32.88844,1.609841,41.61763,0.9802883,41.67634,-0.4611641,32.5895,-2.392834,33.53002,1.262487,33.87206,5.459646,7.531912,8.526513E-14,5.519537,-5.459646,7.531912,-1.190085,32.07808,2.023977,40.58681,2.412815,31.37276,2.644482,40.46534,0.7444245,5.81121,0.7444245,5.178926,0.1968504,6.127352,0.1968504,4.862783,-0.3507237,5.81121,-0.3507237,5.178926,1.212283,31.96469,-2.390617,31.25937,-2.001779,40.47342,-2.622284,40.35195,-3.127738,16.53929,-1.971525,22.90661,3.578686,16.8857,1.746462,23.18988,-3.143619,18.08438,-2.018682,24.15832,3.563978,18.4073,1.833099,24.44159,-0.1216933,32.62127,-2.053363,33.56178,1.601959,33.90383,0.1614145,20.3722,-3.254681,21.57954,3.453742,21.88479,1.979514,29.78028,-1.672452,30.15645,1.386891,38.85648,0.7579339,38.92126,3.127738,16.53929,-3.578686,16.8857,1.971525,22.90661,-1.746462,23.18988,-4.478069,6.250098,-3.323751,1.493064,-4.47807,1.079268,-1.060844E-06,-1.506147,-8.518034E-07,-0.4739493,4.478069,1.079266,3.32375,1.493063,-3.246813,5.290489,1.033549E-06,8.835514,6.869391E-07,7.124028,3.246813,5.290488,4.47807,6.250097,2.673507,25.46844,-2.445305,24.73683,0.5593851,32.17764,-2.298486,31.61927,2.053363,33.56178,0.1216922,32.62127,-1.601959,33.90382,-3.774636,17.90929,-1.674058,24.03034,2.907618,17.24326,2.082043,23.46637,3.254681,21.57954,-0.1614138,20.37221,-3.453742,21.8848,3.143619,18.08438,-3.563978,18.4073,2.018682,24.15832,-1.833099,24.44159,2.49473,27.84099,0.1466319,25.93227,-2.62826,27.13923,-5.815676,5.532278,-4.656145,-0.5204877,-5.815676,-1.183086,-1.325392E-07,-4.540769,-1.072727E-07,-3.298575,5.815676,-1.183087,4.656145,-0.5204879,-4.515633,4.784178,1.406451E-07,8.889959,1.086759E-07,7.318233,5.815676,5.532278,4.515633,4.784178,4.07919,2.355121,4.07919,-2.355121,0,4.710242,0,-4.710242,-4.07919,2.355121,-4.07919,-2.355121,2.355122,-0.5058884,-2.355121,-0.5058884,1.811632,7.084621,-1.811632,7.084621,2.355122,-0.5058884,-2.355121,-0.5058884,1.811632,7.084621,-1.811632,7.084621,2.355121,-0.5058884,-2.355122,-0.5058884,1.811632,7.084621,-1.811632,7.084621,2.355121,-0.5058885,-2.355121,-0.5058885,1.811632,7.084621,-1.811632,7.084621,-2.355121,-0.5058885,-1.811632,7.084621,2.355121,-0.5058885,1.811632,7.084621,2.355121,-0.5058884,-2.355122,-0.5058884,1.811632,7.084621,-1.811632,7.084621 + } + UVIndex: *510 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,53,52,54,56,55,57,59,58,60,58,59,61,63,62,64,62,63,65,67,66,68,66,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,82,81,83,85,84,86,88,87,89,91,90,92,94,93,95,97,96,98,96,97,99,101,100,102,104,103,105,103,104,106,103,105,107,106,105,108,106,107,103,109,102,110,102,109,111,110,109,112,110,111,113,110,112,108,113,112,107,113,108,114,116,115,117,119,118,120,122,121,123,125,124,126,128,127,129,127,128,130,132,131,133,135,134,136,138,137,139,141,140,142,140,141,143,145,144,146,148,147,149,151,150,152,154,153,155,153,154,156,153,155,157,156,155,158,156,157,153,159,152,160,152,159,161,160,159,162,160,161,157,162,158,163,162,161,158,162,163,164,166,165,167,169,168,170,172,171,173,175,174,176,174,175,177,176,175,178,177,175,179,177,178,180,179,178,176,181,174,182,174,181,183,182,181,180,182,183,184,182,180,178,184,180,185,187,186,188,186,187,189,191,190,192,194,193,195,197,196,198,196,197,199,201,200,202,200,201,203,202,201,204,202,203,205,207,206,208,206,207,209,211,210,212,210,211,213,215,214,216,214,215,217,219,218,220,222,221,223,225,224,226,224,225,227,229,228,230,228,229,231,233,232,234,232,233,235,232,234,236,235,234,237,235,236,232,238,231,239,231,238,240,239,238,241,239,240,242,239,241,237,242,241,236,242,237,243,245,244,246,244,245,247,249,248,250,252,251,253,251,252,254,256,255,257,259,258,260,258,259,261,263,262,264,266,265,267,265,266,268,265,267,269,268,267,270,268,269,265,271,264,272,264,271,273,272,271,274,272,273,269,274,270,275,274,273,270,274,275,276,278,277,279,277,278,280,279,278,281,279,280,282,284,283,285,283,284,286,288,287,289,287,288,290,292,291,293,291,292,294,296,295,297,295,296,298,300,299,301,299,300,302,304,303,305,303,304 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *170 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineRoundD, Model::RootNode + C: "OO",4758091865978610530,0 + + ;Geometry::, Model::Mesh tree_pineRoundD + C: "OO",5034495764459129434,4758091865978610530 + + ;Material::leafsDark, Model::Mesh tree_pineRoundD + C: "OO",3026,4758091865978610530 + + ;Material::woodBarkDark, Model::Mesh tree_pineRoundD + C: "OO",3048,4758091865978610530 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundD.fbx.import new file mode 100644 index 0000000..881a2ab --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://wlxx5gx0t8a7" +path="res://.godot/imported/tree_pineRoundD.fbx-b04a9e28877324835302c86e20017a62.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundD.fbx" +dest_files=["res://.godot/imported/tree_pineRoundD.fbx-b04a9e28877324835302c86e20017a62.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundE.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundE.fbx new file mode 100644 index 0000000..e40d061 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundE.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 39 + Millisecond: 829 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineRoundE.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineRoundE.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4765692732565139683, "Model::tree_pineRoundE", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5436174257587253468, "Geometry::", "Mesh" { + Vertices: *1032 { + a: -1.888458,4.011488,-2.165734E-14,-1.335341,4.011488,1.335341,-2.6598,2.524288,7.219114E-15,-1.880763,2.524288,1.880763,0,4.989608,-2.12784,1.50461,4.989608,-1.50461,0,6.179368,-1.510767,1.068273,6.179368,-1.068273,1.038181,6.958432,-1.038181,1.46821,6.958432,0,0.7371085,8.042066,-0.7371085,1.042429,8.042066,-1.443823E-14,0,9.121216,-1.042429,0.7371085,9.121216,-0.7371085,0,9.840565,-0.7401245,0.523347,9.840565,-0.523347,-0.7401245,9.840565,-1.443823E-14,0,12.54636,-1.443823E-14,-0.523347,9.840565,0.523347,0,6.179368,1.510767,-1.068273,6.179368,1.068273,0,6.958432,1.209212,-0.8550422,6.958432,0.8550422,0.7371085,9.121216,-0.7371085,1.042429,9.121216,0,0.523347,9.840565,-0.523347,0.7401245,9.840565,-1.443823E-14,1.50461,4.989608,-1.50461,2.12784,4.989608,1.443823E-14,1.068273,6.179368,-1.068273,1.510767,6.179368,0,1.50461,4.989608,1.50461,0,4.989608,2.12784,1.068273,6.179368,1.068273,0,6.179368,1.510767,1.888458,4.011488,-2.165734E-14,2.6598,2.524288,7.219114E-15,1.335341,4.011488,1.335341,1.880763,2.524288,1.880763,-0.7371085,9.121216,-0.7371085,-0.523347,9.840565,-0.523347,-1.042429,9.121216,0,-0.7401245,9.840565,-1.443823E-14,0.523347,9.840565,0.523347,0,9.840565,0.7401245,0,12.54636,-1.443823E-14,-1.50461,4.989608,-1.50461,0,4.989608,-2.12784,-1.068273,6.179368,-1.068273,0,6.179368,-1.510767,1.880763,2.524288,-1.880763,2.6598,2.524288,7.219114E-15,1.335341,4.011488,-1.335341,1.888458,4.011488,-2.165734E-14,2.6598,2.524288,7.219114E-15,1.880763,2.524288,-1.880763,1.880763,2.524288,1.880763,0,2.524288,2.6598,0.3853633,2.524288,0.3853633,-0.3853633,2.524288,0.3853633,-1.880763,2.524288,1.880763,-0.3853633,2.524288,-0.3853633,0.3853633,2.524288,-0.3853633,0,2.524288,-2.6598,-1.880763,2.524288,-1.880763,-2.6598,2.524288,7.219114E-15,-1.888458,4.011488,-2.165734E-14,-1.509855,4.989608,-1.443823E-14,-1.335341,4.011488,1.335341,-1.067629,4.989608,1.067629,-0.7371085,9.121216,-0.7371085,0,9.121216,-1.042429,-0.523347,9.840565,-0.523347,0,9.840565,-0.7401245,0,4.011488,1.888458,-1.335341,4.011488,1.335341,5.775292E-14,4.989608,1.509855,-1.067629,4.989608,1.067629,-1.335341,4.011488,-1.335341,-1.067629,4.989608,-1.067629,-1.888458,4.011488,-2.165734E-14,-1.509855,4.989608,-1.443823E-14,1.038181,6.958432,1.038181,0,6.958432,1.46821,0.7371085,8.042066,0.7371085,0,8.042066,1.042429,0.7371085,8.042066,0.7371085,0,8.042066,1.042429,0.513347,9.121216,0.513347,5.775292E-14,9.121216,0.7259824,-0.523347,9.840565,-0.523347,0,9.840565,-0.7401245,0,12.54636,-1.443823E-14,-1.880763,2.524288,-1.880763,0,2.524288,-2.6598,-1.335341,4.011488,-1.335341,0,4.011488,-1.888458,1.46821,6.958432,0,1.209212,6.958432,0,1.038181,6.958432,1.038181,0.8550422,6.958432,0.8550422,0,6.958432,1.46821,0,6.958432,1.209212,-1.038181,6.958432,1.038181,-0.8550422,6.958432,0.8550422,-1.209212,6.958432,-2.165734E-14,-1.46821,6.958432,0,1.038181,6.958432,-1.038181,0.8550422,6.958432,-0.8550422,0,6.958432,-1.46821,0,6.958432,-1.209212,-0.8550422,6.958432,-0.8550422,-1.038181,6.958432,-1.038181,0,12.54636,-1.443823E-14,0.523347,9.840565,-0.523347,0.7401245,9.840565,-1.443823E-14,0,2.524288,2.6598,-1.880763,2.524288,1.880763,0,4.011488,1.888458,-1.335341,4.011488,1.335341,0,8.042066,-1.042429,0.7371085,8.042066,-0.7371085,0,9.121216,-0.7259824,0.513347,9.121216,-0.513347,-1.042429,8.042066,-1.443823E-14,-0.7371085,8.042066,0.7371085,-1.46821,6.958432,0,-1.038181,6.958432,1.038181,-1.510767,6.179368,0,-1.068273,6.179368,1.068273,-2.12784,4.989608,1.443823E-14,-1.50461,4.989608,1.50461,1.880763,2.524288,1.880763,0,2.524288,2.6598,1.335341,4.011488,1.335341,0,4.011488,1.888458,0,6.958432,1.46821,-1.038181,6.958432,1.038181,0,8.042066,1.042429,-0.7371085,8.042066,0.7371085,-1.209212,6.958432,-2.165734E-14,-0.8550422,6.958432,0.8550422,-1.510767,6.179368,0,-1.068273,6.179368,1.068273,1.510767,6.179368,0,2.12784,4.989608,1.443823E-14,1.068273,6.179368,1.068273,1.50461,4.989608,1.50461,0,2.524288,-2.6598,1.880763,2.524288,-1.880763,0,4.011488,-1.888458,1.335341,4.011488,-1.335341,0,9.840565,0.7401245,-0.523347,9.840565,0.523347,0,12.54636,-1.443823E-14,2.12784,4.989608,1.443823E-14,1.509855,4.989608,-1.443823E-14,1.50461,4.989608,1.50461,1.067629,4.989608,1.067629,0,4.989608,2.12784,5.775292E-14,4.989608,1.509855,-1.067629,4.989608,1.067629,-1.50461,4.989608,1.50461,-1.509855,4.989608,-1.443823E-14,-2.12784,4.989608,1.443823E-14,1.50461,4.989608,-1.50461,1.067629,4.989608,-1.067629,0,4.989608,-2.12784,5.775292E-14,4.989608,-1.509855,-1.067629,4.989608,-1.067629,-1.50461,4.989608,-1.50461,-1.038181,6.958432,-1.038181,-0.7371085,8.042066,-0.7371085,-1.46821,6.958432,0,-1.042429,8.042066,-1.443823E-14,1.068273,6.179368,1.068273,0,6.179368,1.510767,0.8550422,6.958432,0.8550422,0,6.958432,1.209212,0,8.042066,1.042429,-0.7371085,8.042066,0.7371085,5.775292E-14,9.121216,0.7259824,-0.513347,9.121216,0.513347,0,4.011488,-1.888458,1.335341,4.011488,-1.335341,5.775292E-14,4.989608,-1.509855,1.067629,4.989608,-1.067629,-1.50461,4.989608,-1.50461,-1.068273,6.179368,-1.068273,-2.12784,4.989608,1.443823E-14,-1.510767,6.179368,0,0.7371085,8.042066,-0.7371085,1.042429,8.042066,-1.443823E-14,0.513347,9.121216,-0.513347,0.7259824,9.121216,-1.443823E-14,1.042429,9.121216,0,0.7371085,9.121216,-0.7371085,0.7371085,9.121216,0.7371085,0.7259824,9.121216,-1.443823E-14,0.513347,9.121216,0.513347,0,9.121216,1.042429,5.775292E-14,9.121216,0.7259824,-0.513347,9.121216,0.513347,-0.7371085,9.121216,0.7371085,-0.7259824,9.121216,-2.165734E-14,0.513347,9.121216,-0.513347,0,9.121216,-1.042429,0,9.121216,-0.7259824,-0.513347,9.121216,-0.513347,-0.7371085,9.121216,-0.7371085,-1.042429,9.121216,0,-1.068273,6.179368,-1.068273,0,6.179368,-1.510767,-0.8550422,6.958432,-0.8550422,0,6.958432,-1.209212,1.335341,4.011488,1.335341,0,4.011488,1.888458,1.067629,4.989608,1.067629,5.775292E-14,4.989608,1.509855,0.7401245,9.840565,-1.443823E-14,1.042429,9.121216,0,0.523347,9.840565,0.523347,0.7371085,9.121216,0.7371085,0,9.121216,1.042429,-0.7371085,9.121216,0.7371085,0,9.840565,0.7401245,-0.523347,9.840565,0.523347,1.335341,4.011488,-1.335341,1.888458,4.011488,-2.165734E-14,1.067629,4.989608,-1.067629,1.509855,4.989608,-1.443823E-14,-1.038181,6.958432,-1.038181,0,6.958432,-1.46821,-0.7371085,8.042066,-0.7371085,0,8.042066,-1.042429,1.209212,6.958432,0,1.510767,6.179368,0,0.8550422,6.958432,0.8550422,1.068273,6.179368,1.068273,-0.7371085,8.042066,-0.7371085,0,8.042066,-1.042429,-0.513347,9.121216,-0.513347,0,9.121216,-0.7259824,0.7259824,9.121216,-1.443823E-14,1.042429,8.042066,-1.443823E-14,0.513347,9.121216,0.513347,0.7371085,8.042066,0.7371085,0.7371085,9.121216,0.7371085,0,9.121216,1.042429,0.523347,9.840565,0.523347,0,9.840565,0.7401245,0,12.54636,-1.443823E-14,0.7401245,9.840565,-1.443823E-14,0.523347,9.840565,0.523347,-1.335341,4.011488,-1.335341,0,4.011488,-1.888458,-1.067629,4.989608,-1.067629,5.775292E-14,4.989608,-1.509855,-0.7401245,9.840565,-1.443823E-14,-0.523347,9.840565,0.523347,-1.042429,9.121216,0,-0.7371085,9.121216,0.7371085,-1.880763,2.524288,-1.880763,-1.335341,4.011488,-1.335341,-2.6598,2.524288,7.219114E-15,-1.888458,4.011488,-2.165734E-14,-0.7401245,9.840565,-1.443823E-14,-0.523347,9.840565,-0.523347,0,12.54636,-1.443823E-14,1.068273,6.179368,-1.068273,1.510767,6.179368,0,0.8550422,6.958432,-0.8550422,1.209212,6.958432,0,1.888458,4.011488,-2.165734E-14,1.335341,4.011488,1.335341,1.509855,4.989608,-1.443823E-14,1.067629,4.989608,1.067629,0,4.989608,2.12784,-1.50461,4.989608,1.50461,0,6.179368,1.510767,-1.068273,6.179368,1.068273,-0.7259824,9.121216,-2.165734E-14,-0.513347,9.121216,0.513347,-1.042429,8.042066,-1.443823E-14,-0.7371085,8.042066,0.7371085,0,6.179368,-1.510767,1.068273,6.179368,-1.068273,0,6.958432,-1.209212,0.8550422,6.958432,-0.8550422,-1.068273,6.179368,-1.068273,-0.8550422,6.958432,-0.8550422,-1.510767,6.179368,0,-1.209212,6.958432,-2.165734E-14,0,6.958432,-1.46821,1.038181,6.958432,-1.038181,0,8.042066,-1.042429,0.7371085,8.042066,-0.7371085,0,9.840565,-0.7401245,0.523347,9.840565,-0.523347,0,12.54636,-1.443823E-14,1.042429,8.042066,-1.443823E-14,1.46821,6.958432,0,0.7371085,8.042066,0.7371085,1.038181,6.958432,1.038181,-0.7371085,8.042066,-0.7371085,-0.513347,9.121216,-0.513347,-1.042429,8.042066,-1.443823E-14,-0.7259824,9.121216,-2.165734E-14,0.750464,-4.963934E-18,-0.750464,0.750464,-4.963934E-18,0.750464,0.4878016,0.7096961,-0.4878016,0.4878016,0.7096961,0.4878016,0.4878016,0.7096961,0.4878016,-0.4878016,0.7096961,0.4878016,0.3853633,2.524288,0.3853633,-0.3853633,2.524288,0.3853633,-0.750464,-4.963934E-18,-0.750464,0.750464,-4.963934E-18,-0.750464,-0.4878016,0.7096961,-0.4878016,0.4878016,0.7096961,-0.4878016,0.750464,-4.963934E-18,0.750464,0.750464,-4.963934E-18,-0.750464,-0.750464,-4.963934E-18,0.750464,-0.750464,-4.963934E-18,-0.750464,-0.4878016,0.7096961,-0.4878016,0.4878016,0.7096961,-0.4878016,-0.3853633,2.524288,-0.3853633,0.3853633,2.524288,-0.3853633,-0.750464,-4.963934E-18,-0.750464,-0.4878016,0.7096961,-0.4878016,-0.750464,-4.963934E-18,0.750464,-0.4878016,0.7096961,0.4878016,-0.4878016,0.7096961,-0.4878016,-0.3853633,2.524288,-0.3853633,-0.4878016,0.7096961,0.4878016,-0.3853633,2.524288,0.3853633,0.4878016,0.7096961,-0.4878016,0.4878016,0.7096961,0.4878016,0.3853633,2.524288,-0.3853633,0.3853633,2.524288,0.3853633,0.750464,-4.963934E-18,0.750464,-0.750464,-4.963934E-18,0.750464,0.4878016,0.7096961,0.4878016,-0.4878016,0.7096961,0.4878016 + } + PolygonVertexIndex: *594 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,55,-58,59,58,-58,60,59,-58,61,59,-61,58,62,-56,63,55,-63,61,63,-63,64,63,-62,60,64,-62,65,64,-61,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,95,-95,96,94,-96,97,99,-99,100,98,-100,101,100,-100,102,100,-102,103,102,-102,104,102,-104,105,104,-104,106,105,-104,97,98,-108,108,107,-99,109,107,-109,110,109,-109,111,109,-111,112,109,-112,105,112,-112,106,112,-106,113,115,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,157,-157,158,156,-158,159,158,-158,160,158,-160,161,160,-160,162,161,-160,163,161,-163,164,163,-163,155,156,-166,166,165,-157,167,165,-167,168,167,-167,169,167,-169,170,167,-170,163,170,-170,164,170,-164,171,173,-173,174,172,-174,175,177,-177,178,176,-178,179,181,-181,182,180,-182,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,198,-198,200,199,-198,201,199,-201,202,201,-201,203,202,-201,204,202,-204,198,205,-197,206,196,-206,207,206,-206,208,206,-208,209,206,-209,204,209,-209,203,209,-205,210,209,-204,211,213,-213,214,212,-214,215,217,-217,218,216,-218,219,221,-221,222,220,-222,223,225,-225,226,224,-226,227,229,-229,230,228,-230,231,233,-233,234,232,-234,235,237,-237,238,236,-238,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,253,-253,254,256,-256,257,255,-257,258,260,-260,261,259,-261,262,264,-264,265,263,-265,266,268,-268,269,271,-271,272,270,-272,273,275,-275,276,274,-276,277,279,-279,280,278,-280,281,283,-283,284,282,-284,285,287,-287,288,286,-288,289,291,-291,292,290,-292,293,295,-295,296,294,-296,297,299,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1782 { + a: -0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.8684304,0.3412233,-0.3597156,0.8799357,0.3047398,-0.3644813,0.8684304,0.3412233,-0.3597156,0.8799357,0.3047398,-0.3644813,0.8684304,0.3412233,-0.3597156,0.8799357,0.3047398,-0.3644813,0.3567388,0.3619348,-0.8612435,0.3640014,0.3086322,-0.8787771,0.3567388,0.3619348,-0.8612435,0.3640014,0.3086322,-0.8787771,0.3567388,0.3619348,-0.8612435,0.3640014,0.3086322,-0.8787771,-0.8787771,0.3086322,0.3640014,-0.8787771,0.3086322,0.3640014,-0.8957203,0.2450095,0.3710195,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,0.8612435,0.3619348,-0.3567388,0.8787771,0.3086322,-0.3640014,0.8612435,0.3619348,-0.3567388,0.8787771,0.3086322,-0.3640014,0.8612435,0.3619348,-0.3567388,0.8787771,0.3086322,-0.3640014,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8508487,0.3896761,0.3524331,-0.8612435,0.3619348,-0.3567388,-0.8612435,0.3619348,-0.3567388,-0.8787771,0.3086322,-0.3640014,-0.8787771,0.3086322,-0.3640014,-0.8787771,0.3086322,-0.3640014,-0.8612435,0.3619348,-0.3567388,0.3640014,0.3086322,0.8787771,0.3710195,0.2450095,0.8957203,0.3640014,0.3086322,0.8787771,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8508487,0.3896761,0.3524331,-0.8508487,0.3896761,0.3524331,-0.8699278,0.336725,0.3603359,-0.8699278,0.336725,0.3603359,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,-0.3567388,0.3619348,-0.8612435,-0.3640014,0.3086322,-0.8787771,-0.3567388,0.3619348,-0.8612435,-0.3640014,0.3086322,-0.8787771,-0.3567388,0.3619348,-0.8612435,-0.3640014,0.3086322,-0.8787771,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8508487,0.3896761,-0.3524331,0.3597156,0.3412233,0.8684304,0.3644813,0.3047398,0.8799357,0.3597156,0.3412233,0.8684304,0.3644813,0.3047398,0.8799357,0.3597156,0.3412233,0.8684304,0.3644813,0.3047398,0.8799357,0.3644813,0.3047398,0.8799357,0.3693685,0.2614892,0.8917344,0.3644813,0.3047398,0.8799357,0.3693685,0.2614892,0.8917344,0.3644813,0.3047398,0.8799357,0.3693685,0.2614892,0.8917344,-0.3640014,0.3086322,-0.8787771,-0.3710195,0.2450095,-0.8957203,-0.3640014,0.3086322,-0.8787771,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8957203,0.2450095,-0.3710195,0.8787771,0.3086322,-0.3640014,0.8787771,0.3086322,-0.3640014,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,0.3644813,0.3047398,-0.8799357,0.3693685,0.2614892,-0.8917344,0.3644813,0.3047398,-0.8799357,0.3693685,0.2614892,-0.8917344,0.3644813,0.3047398,-0.8799357,0.3693685,0.2614892,-0.8917344,-0.8799357,0.3047398,0.3644813,-0.8684304,0.3412233,0.3597156,-0.8799357,0.3047398,0.3644813,-0.8684304,0.3412233,0.3597156,-0.8799357,0.3047398,0.3644813,-0.8684304,0.3412233,0.3597156,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,-0.3597156,0.3412233,0.8684304,-0.3644813,0.3047398,0.8799357,-0.3597156,0.3412233,0.8684304,-0.3644813,0.3047398,0.8799357,-0.3597156,0.3412233,0.8684304,-0.3644813,0.3047398,0.8799357,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8508487,0.3896761,0.3524331,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,-0.3640014,0.3086322,0.8787771,-0.3710195,0.2450095,0.8957203,-0.3640014,0.3086322,0.8787771,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8684304,0.3412233,-0.3597156,-0.8684304,0.3412233,-0.3597156,-0.8799357,0.3047398,-0.3644813,-0.8799357,0.3047398,-0.3644813,-0.8799357,0.3047398,-0.3644813,-0.8684304,0.3412233,-0.3597156,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,-0.3644813,0.3047398,0.8799357,-0.3693685,0.2614892,0.8917344,-0.3644813,0.3047398,0.8799357,-0.3693685,0.2614892,0.8917344,-0.3644813,0.3047398,0.8799357,-0.3693685,0.2614892,0.8917344,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,-0.8331671,0.4321253,-0.3451091,-0.8331671,0.4321253,-0.3451091,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8331671,0.4321253,-0.3451091,0.8799357,0.3047398,-0.3644813,0.8917344,0.2614892,-0.3693685,0.8799357,0.3047398,-0.3644813,0.8917344,0.2614892,-0.3693685,0.8799357,0.3047398,-0.3644813,0.8917344,0.2614892,-0.3693685,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.8787771,0.3086322,0.3640014,0.8787771,0.3086322,0.3640014,0.8612435,0.3619348,0.3567388,0.8612435,0.3619348,0.3567388,0.8612435,0.3619348,0.3567388,0.8787771,0.3086322,0.3640014,-0.3567388,0.3619348,0.8612435,-0.3640014,0.3086322,0.8787771,-0.3567388,0.3619348,0.8612435,-0.3640014,0.3086322,0.8787771,-0.3567388,0.3619348,0.8612435,-0.3640014,0.3086322,0.8787771,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,-0.3597156,0.3412233,-0.8684304,-0.3644813,0.3047398,-0.8799357,-0.3597156,0.3412233,-0.8684304,-0.3644813,0.3047398,-0.8799357,-0.3597156,0.3412233,-0.8684304,-0.3644813,0.3047398,-0.8799357,0.8699278,0.336725,0.3603359,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,-0.3644813,0.3047398,-0.8799357,-0.3693685,0.2614892,-0.8917344,-0.3644813,0.3047398,-0.8799357,-0.3693685,0.2614892,-0.8917344,-0.3644813,0.3047398,-0.8799357,-0.3693685,0.2614892,-0.8917344,0.8917344,0.2614892,0.3693685,0.8917344,0.2614892,0.3693685,0.8799357,0.3047398,0.3644813,0.8799357,0.3047398,0.3644813,0.8799357,0.3047398,0.3644813,0.8917344,0.2614892,0.3693685,0.3567388,0.3619348,0.8612435,0.3640014,0.3086322,0.8787771,0.3567388,0.3619348,0.8612435,0.3640014,0.3086322,0.8787771,0.3567388,0.3619348,0.8612435,0.3640014,0.3086322,0.8787771,0.8957203,0.2450095,0.3710195,0.8787771,0.3086322,0.3640014,0.8787771,0.3086322,0.3640014,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.8787771,0.3086322,0.3640014,-0.8612435,0.3619348,0.3567388,-0.8787771,0.3086322,0.3640014,-0.8612435,0.3619348,0.3567388,-0.8787771,0.3086322,0.3640014,-0.8612435,0.3619348,0.3567388,-0.8331671,0.4321253,-0.3451091,-0.8331671,0.4321253,-0.3451091,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8331671,0.4321253,-0.3451091,-0.8787771,0.3086322,-0.3640014,-0.8957203,0.2450095,-0.3710195,-0.8787771,0.3086322,-0.3640014,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.8917344,0.2614892,0.3693685,-0.8799357,0.3047398,0.3644813,-0.8917344,0.2614892,0.3693685,-0.8799357,0.3047398,0.3644813,-0.8917344,0.2614892,0.3693685,-0.8799357,0.3047398,0.3644813,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8508487,0.3896761,-0.3524331,0.3597156,0.3412233,-0.8684304,0.3644813,0.3047398,-0.8799357,0.3597156,0.3412233,-0.8684304,0.3644813,0.3047398,-0.8799357,0.3597156,0.3412233,-0.8684304,0.3644813,0.3047398,-0.8799357,0.3640014,0.3086322,-0.8787771,0.3710195,0.2450095,-0.8957203,0.3640014,0.3086322,-0.8787771,0.8799357,0.3047398,0.3644813,0.8799357,0.3047398,0.3644813,0.8684304,0.3412233,0.3597156,0.8684304,0.3412233,0.3597156,0.8684304,0.3412233,0.3597156,0.8799357,0.3047398,0.3644813,-0.8799357,0.3047398,-0.3644813,-0.8799357,0.3047398,-0.3644813,-0.8917344,0.2614892,-0.3693685,-0.8917344,0.2614892,-0.3693685,-0.8917344,0.2614892,-0.3693685,-0.8799357,0.3047398,-0.3644813,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,0.9984103,0.05636281,0,0.9984103,0.05636281,0,0.9984103,0.05636281,0,0.9984103,0.05636281,0,0.9984103,0.05636281,0,0.9984103,0.05636281,0,0,0.3470959,0.9378296,0,0.3470959,0.9378296,0,0.3470959,0.9378296,0,0.3470959,0.9378296,0,0.3470959,0.9378296,0,0.3470959,0.9378296 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *688 { + a: -2.845203,11.27434,2.845203,11.27434,-4.007329,4.781734,4.007329,4.781734,3.205863,14.37085,-3.205863,14.37085,2.276162,19.56493,-2.276162,19.56493,2.212045,23.92894,-2.212045,23.92894,1.570552,28.46761,-1.570552,28.46761,1.570552,32.10337,-1.570552,32.10337,1.115092,35.14143,-1.115092,35.14143,-1.115092,36.90196,-5.340465E-14,47.88958,1.115092,36.90196,2.276162,21.05717,-2.276162,21.05717,1.821833,24.31458,-1.821833,24.31458,1.570552,32.10337,-1.570552,32.10337,1.115092,35.14143,-1.115092,35.14143,3.205863,14.37085,-3.205863,14.37085,2.276162,19.56493,-2.276162,19.56493,3.205863,14.37085,-3.205863,14.37085,2.276162,19.56493,-2.276162,19.56493,2.845203,11.27434,4.007329,4.781734,-2.845203,11.27434,-4.007329,4.781734,-1.570552,32.10337,-1.115092,35.14143,1.570552,32.10337,1.115092,35.14143,1.115092,36.90196,-1.115092,36.90196,2.086486E-14,47.88958,3.205863,14.37085,-3.205863,14.37085,2.276162,19.56493,-2.276162,19.56493,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,10.47165,2.842171E-14,7.404577,-7.404577,7.404577,7.404577,0,10.47165,1.517178,1.517178,-1.517178,1.517178,-7.404577,7.404577,-1.517178,-1.517178,1.517178,-1.517178,0,-10.47165,-7.404577,-7.404577,-10.47165,2.842171E-14,-2.845203,12.55804,-2.274789,16.64773,2.845203,12.55804,2.274789,16.64773,1.570552,32.10337,-1.570552,32.10337,1.115092,35.14143,-1.115092,35.14143,2.845203,12.55804,-2.845203,12.55804,2.274789,16.64773,-2.274789,16.64773,-2.845203,12.55804,-2.274789,16.64773,2.845203,12.55804,2.274789,16.64773,2.212045,23.92894,-2.212045,23.92894,1.570552,28.46761,-1.570552,28.46761,1.570552,29.56857,-1.570552,29.56857,1.093785,33.97035,-1.093785,33.97035,1.115092,36.90196,-1.115092,36.90196,-2.175303E-14,47.88958,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,5.780353,0,4.760678,0,4.087327,4.087327,3.366308,3.366308,0,5.780353,0,4.760678,-4.087327,4.087327,-3.366308,3.366308,-4.760678,-8.526513E-14,-5.780353,0,4.087327,-4.087327,3.366308,-3.366308,0,-5.780353,0,-4.760678,-3.366308,-3.366308,-4.087327,-4.087327,5.340465E-14,47.88958,1.115092,36.90196,-1.115092,36.90196,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,1.570552,29.56857,-1.570552,29.56857,1.093785,33.97035,-1.093785,33.97035,-1.570552,28.46761,1.570552,28.46761,-2.212045,23.92894,2.212045,23.92894,-2.276162,19.56493,2.276162,19.56493,-3.205863,14.37085,3.205863,14.37085,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,2.212045,23.92894,-2.212045,23.92894,1.570552,28.46761,-1.570552,28.46761,-1.821833,24.31458,1.821833,24.31458,-2.276162,21.05717,2.276162,21.05717,2.276162,19.56493,3.205863,14.37085,-2.276162,19.56493,-3.205863,14.37085,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,1.115092,36.90196,-1.115092,36.90196,-2.175303E-14,47.88958,8.377323,5.684342E-14,5.94431,-5.684342E-14,5.923662,5.923662,4.203262,4.203262,0,8.377323,2.273737E-13,5.94431,-4.203262,4.203262,-5.923662,5.923662,-5.94431,-5.684342E-14,-8.377323,5.684342E-14,5.923662,-5.923662,4.203262,-4.203262,0,-8.377323,2.273737E-13,-5.94431,-4.203262,-4.203262,-5.923662,-5.923662,-2.212045,23.92894,-1.570552,28.46761,2.212045,23.92894,1.570552,28.46761,2.276162,21.05717,-2.276162,21.05717,1.821833,24.31458,-1.821833,24.31458,1.570552,29.56857,-1.570552,29.56857,1.093785,33.97035,-1.093785,33.97035,2.845203,12.55804,-2.845203,12.55804,2.274789,16.64773,-2.274789,16.64773,-3.205863,14.37085,-2.276162,19.56493,3.205863,14.37085,2.276162,19.56493,1.570552,29.56857,-1.570552,29.56857,1.093785,33.97035,-1.093785,33.97035,4.104051,0,2.902002,-2.902002,2.902002,2.902002,2.858198,-5.684342E-14,2.021051,2.021051,0,4.104051,2.273737E-13,2.858198,-2.021051,2.021051,-2.902002,2.902002,-2.858198,-8.526513E-14,2.021051,-2.021051,0,-4.104051,0,-2.858198,-2.021051,-2.021051,-2.902002,-2.902002,-4.104051,0,2.276162,21.05717,-2.276162,21.05717,1.821833,24.31458,-1.821833,24.31458,2.845203,12.55804,-2.845203,12.55804,2.274789,16.64773,-2.274789,16.64773,1.115092,35.14143,1.570552,32.10337,-1.115092,35.14143,-1.570552,32.10337,1.570552,32.10337,-1.570552,32.10337,1.115092,35.14143,-1.115092,35.14143,2.845203,12.55804,-2.845203,12.55804,2.274789,16.64773,-2.274789,16.64773,2.212045,23.92894,-2.212045,23.92894,1.570552,28.46761,-1.570552,28.46761,1.821833,24.31458,2.276162,21.05717,-1.821833,24.31458,-2.276162,21.05717,1.570552,29.56857,-1.570552,29.56857,1.093785,33.97035,-1.093785,33.97035,1.093785,33.97035,1.570552,29.56857,-1.093785,33.97035,-1.570552,29.56857,1.570552,32.10337,-1.570552,32.10337,1.115092,35.14143,-1.115092,35.14143,5.340465E-14,47.88958,1.115092,36.90196,-1.115092,36.90196,2.845203,12.55804,-2.845203,12.55804,2.274789,16.64773,-2.274789,16.64773,-1.115092,35.14143,1.115092,35.14143,-1.570552,32.10337,1.570552,32.10337,-4.007329,4.781734,-2.845203,11.27434,4.007329,4.781734,2.845203,11.27434,1.115092,36.90196,-1.115092,36.90196,-5.251647E-14,47.88958,2.276162,21.05717,-2.276162,21.05717,1.821833,24.31458,-1.821833,24.31458,2.845203,12.55804,-2.845203,12.55804,2.274789,16.64773,-2.274789,16.64773,3.205863,14.37085,-3.205863,14.37085,2.276162,19.56493,-2.276162,19.56493,-1.093785,33.97035,1.093785,33.97035,-1.570552,29.56857,1.570552,29.56857,2.276162,21.05717,-2.276162,21.05717,1.821833,24.31458,-1.821833,24.31458,-2.276162,21.05717,-1.821833,24.31458,2.276162,21.05717,1.821833,24.31458,2.212045,23.92894,-2.212045,23.92894,1.570552,28.46761,-1.570552,28.46761,1.115092,36.90196,-1.115092,36.90196,2.175303E-14,47.88958,1.570552,28.46761,2.212045,23.92894,-1.570552,28.46761,-2.212045,23.92894,-1.570552,29.56857,-1.093785,33.97035,1.570552,29.56857,1.093785,33.97035,2.954583,-1.025524,-2.954583,-1.025524,1.920479,1.95378,-1.920479,1.95378,1.920479,2.681394,-1.920479,2.681394,1.517178,9.836831,-1.517178,9.836831,2.954583,-1.025524,-2.954583,-1.025524,1.920479,1.95378,-1.920479,1.95378,2.954583,2.954583,2.954583,-2.954583,-2.954583,2.954583,-2.954583,-2.954583,1.920479,2.681394,-1.920479,2.681394,1.517178,9.836831,-1.517178,9.836831,-2.954583,-1.025524,-1.920479,1.95378,2.954583,-1.025524,1.920479,1.95378,-1.920479,2.681394,-1.517178,9.836831,1.920479,2.681394,1.517178,9.836831,1.920479,2.681394,-1.920479,2.681394,1.517178,9.836831,-1.517178,9.836831,2.954583,-1.025524,-2.954583,-1.025524,1.920479,1.95378,-1.920479,1.95378 + } + UVIndex: *594 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,28,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,55,57,59,58,57,60,59,57,61,59,60,58,62,55,63,55,62,61,63,62,64,63,61,60,64,61,65,64,60,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,95,94,96,94,95,97,99,98,100,98,99,101,100,99,102,100,101,103,102,101,104,102,103,105,104,103,106,105,103,97,98,107,108,107,98,109,107,108,110,109,108,111,109,110,112,109,111,105,112,111,106,112,105,113,115,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,157,156,158,156,157,159,158,157,160,158,159,161,160,159,162,161,159,163,161,162,164,163,162,155,156,165,166,165,156,167,165,166,168,167,166,169,167,168,170,167,169,163,170,169,164,170,163,171,173,172,174,172,173,175,177,176,178,176,177,179,181,180,182,180,181,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,198,197,200,199,197,201,199,200,202,201,200,203,202,200,204,202,203,198,205,196,206,196,205,207,206,205,208,206,207,209,206,208,204,209,208,203,209,204,210,209,203,211,213,212,214,212,213,215,217,216,218,216,217,219,221,220,222,220,221,223,225,224,226,224,225,227,229,228,230,228,229,231,233,232,234,232,233,235,237,236,238,236,237,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,253,252,254,256,255,257,255,256,258,260,259,261,259,260,262,264,263,265,263,264,266,268,267,269,271,270,272,270,271,273,275,274,276,274,275,277,279,278,280,278,279,281,283,282,284,282,283,285,287,286,288,286,287,289,291,290,292,290,291,293,295,294,296,294,295,297,299,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *198 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineRoundE, Model::RootNode + C: "OO",4765692732565139683,0 + + ;Geometry::, Model::Mesh tree_pineRoundE + C: "OO",5436174257587253468,4765692732565139683 + + ;Material::leafsDark, Model::Mesh tree_pineRoundE + C: "OO",3026,4765692732565139683 + + ;Material::woodBarkDark, Model::Mesh tree_pineRoundE + C: "OO",3048,4765692732565139683 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundE.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundE.fbx.import new file mode 100644 index 0000000..f10f4a8 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundE.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bcln83tmkux2l" +path="res://.godot/imported/tree_pineRoundE.fbx-c8f2337dba91cc962847b1b5eb8754bc.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundE.fbx" +dest_files=["res://.godot/imported/tree_pineRoundE.fbx-c8f2337dba91cc962847b1b5eb8754bc.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundF.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundF.fbx new file mode 100644 index 0000000..b2e506e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundF.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 39 + Millisecond: 964 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineRoundF.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineRoundF.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5304746979571316361, "Model::tree_pineRoundF", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5252784671773231811, "Geometry::", "Mesh" { + Vertices: *1104 { + a: 0,9.86565,0.7726479,-0.523347,9.858463,0.5559897,0,12.54541,-0.05678061,-0.7401245,9.841111,0.03293043,-0.523347,9.858463,0.5559897,-1.042429,9.122157,0.05678061,-0.7371085,9.146596,0.7934839,-0.1359064,5.202768,-2.23613,-0.007413076,6.322248,-1.510483,-1.631716,5.305893,-1.600374,-1.069438,6.395466,-1.059096,-0.9364861,6.873942,1.038181,-0.7290745,7.979332,0.7371085,0.09790064,6.962621,1.46821,0.005340036,8.042294,1.042429,-0.523347,9.82376,-0.4901289,0,9.816572,-0.7067871,0,12.54541,-0.05678061,1.359903,4.982341,-1.630958,1.979488,4.773735,-0.1393598,1.054612,6.165745,-1.080812,1.494517,6.017634,-0.02177669,-1.880763,2.524288,-1.880763,-1.335341,4.011488,-1.335341,-2.6598,2.524288,0,-1.888458,4.011488,-2.165734E-14,0,12.54541,-0.05678061,0.523347,9.82376,-0.4901289,0.7401245,9.841111,0.03293043,-0.7290745,7.979332,0.7371085,-0.5907538,9.136874,0.5004196,0.005340036,8.042294,1.042429,-0.08911782,9.144097,0.7181544,0.7371085,9.146596,0.7934839,0,9.156719,1.098636,0.523347,9.858463,0.5559897,0,9.86565,0.7726479,0,9.816572,-0.7067871,0.523347,9.82376,-0.4901289,0,12.54541,-0.05678061,0.09790064,6.962621,1.46821,0.005340036,8.042294,1.042429,1.132287,7.051299,1.038181,0.7397546,8.105255,0.7371085,1.880763,2.524288,1.880763,0,2.524288,2.6598,1.335341,4.011488,1.335341,0,4.011488,1.888458,1.043959,8.131334,-1.443823E-14,0.7397546,8.105255,0.7371085,0.6595195,9.120274,-7.219114E-15,0.431758,9.137471,0.5184062,-1.033279,7.953253,-1.443823E-14,-0.7970532,9.120274,-7.219114E-15,-0.7290745,7.979332,0.7371085,-0.5907538,9.136874,0.5004196,1.054612,6.165745,-1.080812,0.9114545,7.032367,-0.7590579,-0.007413076,6.322248,-1.510483,0.06481247,6.959784,-1.190206,-1.631716,5.305893,-1.600374,-1.069438,6.395466,-1.059096,-2.251301,5.231306,-0.09610662,-1.509343,6.34251,0.008933069,-1.888458,4.011488,-2.165734E-14,-1.335341,4.011488,1.335341,-2.6598,2.524288,0,-1.880763,2.524288,1.880763,0,9.087595,-0.9850751,0.7371085,9.097718,-0.6799226,0,9.816572,-0.7067871,0.523347,9.82376,-0.4901289,1.979488,4.773735,-0.1393598,1.359903,4.699149,1.364907,1.494517,6.017634,-0.02177669,1.054612,5.964678,1.046253,0,2.524288,-2.6598,1.880763,2.524288,-1.880763,0,4.011488,-1.888458,1.335341,4.011488,-1.335341,1.335341,4.011488,1.335341,0,4.011488,1.888458,1.134431,4.745538,1.134431,5.775292E-14,4.827922,1.572439,-1.033279,7.953253,-1.443823E-14,-0.7290745,7.979332,0.7371085,-1.364943,6.837211,0,-0.9364861,6.873942,1.038181,0.09790064,6.962621,-1.46821,1.132287,7.051299,-1.038181,0.005340036,8.042294,-1.042429,0.7397546,8.105255,-0.7371085,-0.7290745,7.979332,-0.7371085,-0.5947483,9.103446,-0.5072548,-1.033279,7.953253,-1.443823E-14,-0.7970532,9.120274,-7.219114E-15,0,4.011488,1.888458,-1.335341,4.011488,1.335341,5.775292E-14,4.827922,1.572439,-1.066938,4.992129,1.066938,-0.7371085,9.097718,-0.6799226,-0.523347,9.82376,-0.4901289,-1.042429,9.122157,0.05678061,-0.7401245,9.841111,0.03293043,1.560744,7.088031,0,1.215181,7.058405,0.07660513,1.132287,7.051299,1.038181,0.8872612,7.030293,0.8666178,0.09790064,6.962621,1.46821,0.08983727,6.96193,1.234885,-0.9364861,6.873942,1.038181,-0.8030859,6.885379,0.9406354,-1.246953,6.847326,0.05665225,-1.364943,6.837211,0,1.132287,7.051299,-1.038181,0.9114545,7.032367,-0.7590579,0.09790064,6.962621,-1.46821,0.06481247,6.959784,-1.190206,-0.9364861,6.873942,-1.038181,-0.8726054,6.879419,-0.8709829,1.888458,4.011488,-2.165734E-14,2.6598,2.524288,0,1.335341,4.011488,1.335341,1.880763,2.524288,1.880763,-2.251301,5.231306,-0.09610662,-1.509343,6.34251,0.008933069,-1.631716,5.0227,1.395492,-1.069438,6.1944,1.067968,0.005340036,8.042294,1.042429,-0.08911782,9.144097,0.7181544,0.7397546,8.105255,0.7371085,0.431758,9.137471,0.5184062,0.7401245,9.841111,0.03293043,1.042429,9.122157,0.05678061,0.523347,9.858463,0.5559897,0.7371085,9.146596,0.7934839,0,12.54541,-0.05678061,0.7401245,9.841111,0.03293043,0.523347,9.858463,0.5559897,-1.509343,6.34251,0.008933069,-1.246953,6.847326,0.05665225,-1.069438,6.1944,1.067968,-0.8030859,6.885379,0.9406354,2.6598,2.524288,0,1.880763,2.524288,-1.880763,1.880763,2.524288,1.880763,0,2.524288,2.6598,0.3853633,2.524288,0.3853633,-0.3853633,2.524288,0.3853633,-1.880763,2.524288,1.880763,-0.3853633,2.524288,-0.3853633,0.3853633,2.524288,-0.3853633,0,2.524288,-2.6598,-1.880763,2.524288,-1.880763,-2.6598,2.524288,0,1.359903,4.699149,1.364907,-0.1359064,4.802273,2.000663,1.054612,5.964678,1.046253,-0.007413076,6.037896,1.49764,-0.9364861,6.873942,-1.038181,-0.7290745,7.979332,-0.7371085,-1.364943,6.837211,0,-1.033279,7.953253,-1.443823E-14,-1.880763,2.524288,-1.880763,0,2.524288,-2.6598,-1.335341,4.011488,-1.335341,0,4.011488,-1.888458,0.523347,9.858463,0.5559897,0,9.86565,0.7726479,0,12.54541,-0.05678061,1.880763,2.524288,-1.880763,2.6598,2.524288,0,1.335341,4.011488,-1.335341,1.888458,4.011488,-2.165734E-14,-1.335341,4.011488,-1.335341,0,4.011488,-1.888458,-1.014645,5.183191,-1.014645,5.775292E-14,5.114707,-1.461432,0,2.524288,2.6598,-1.880763,2.524288,1.880763,0,4.011488,1.888458,-1.335341,4.011488,1.335341,1.888458,4.011488,-2.165734E-14,1.335341,4.011488,1.335341,1.581711,4.803967,-1.443823E-14,1.134431,4.745538,1.134431,-0.7290745,7.979332,-0.7371085,0.005340036,8.042294,-1.042429,-0.5947483,9.103446,-0.5072548,-0.08499273,9.095981,-0.7323159,-0.1359064,4.802273,2.000663,-1.631716,5.0227,1.395492,-0.007413076,6.037896,1.49764,-1.069438,6.1944,1.067968,-0.523347,9.82376,-0.4901289,0,12.54541,-0.05678061,-0.7401245,9.841111,0.03293043,-0.7371085,9.146596,0.7934839,-0.523347,9.858463,0.5559897,0,9.156719,1.098636,0,9.86565,0.7726479,-1.888458,4.011488,-2.165734E-14,-1.453513,5.135168,0,-1.335341,4.011488,1.335341,-1.066938,4.992129,1.066938,1.132287,7.051299,-1.038181,1.560744,7.088031,0,0.7397546,8.105255,-0.7371085,1.043959,8.131334,-1.443823E-14,1.494517,6.017634,-0.02177669,1.054612,5.964678,1.046253,1.215181,7.058405,0.07660513,0.8872612,7.030293,0.8666178,1.979488,4.773735,-0.1393598,1.581711,4.803967,-1.443823E-14,1.359903,4.699149,1.364907,1.134431,4.745538,1.134431,-0.1359064,4.802273,2.000663,5.775292E-14,4.827922,1.572439,-1.066938,4.992129,1.066938,-1.631716,5.0227,1.395492,-1.453513,5.135168,0,1.359903,4.982341,-1.630958,1.075494,4.960869,-1.075494,-0.1359064,5.202768,-2.23613,5.775292E-14,5.114707,-1.461432,-1.014645,5.183191,-1.014645,-1.631716,5.305893,-1.600374,-2.251301,5.231306,-0.09610662,-0.007413076,6.037896,1.49764,-1.069438,6.1944,1.067968,0.08983727,6.96193,1.234885,-0.8030859,6.885379,0.9406354,1.042429,9.122157,0.05678061,0.7371085,9.097718,-0.6799226,0.7371085,9.146596,0.7934839,0.6595195,9.120274,-7.219114E-15,0.431758,9.137471,0.5184062,0,9.156719,1.098636,-0.08911782,9.144097,0.7181544,-0.7371085,9.146596,0.7934839,-0.5907538,9.136874,0.5004196,-0.7970532,9.120274,-7.219114E-15,-1.042429,9.122157,0.05678061,0.4420935,9.102833,-0.5257452,0,9.087595,-0.9850751,-0.08499273,9.095981,-0.7323159,-0.7371085,9.097718,-0.6799226,-0.5947483,9.103446,-0.5072548,-1.069438,6.395466,-1.059096,-0.8726054,6.879419,-0.8709829,-1.509343,6.34251,0.008933069,-1.246953,6.847326,0.05665225,0.7397546,8.105255,-0.7371085,1.043959,8.131334,-1.443823E-14,0.4420935,9.102833,-0.5257452,0.6595195,9.120274,-7.219114E-15,0,9.087595,-0.9850751,0,9.816572,-0.7067871,-0.7371085,9.097718,-0.6799226,-0.523347,9.82376,-0.4901289,0.005340036,8.042294,-1.042429,0.7397546,8.105255,-0.7371085,-0.08499273,9.095981,-0.7323159,0.4420935,9.102833,-0.5257452,1.335341,4.011488,-1.335341,1.888458,4.011488,-2.165734E-14,1.075494,4.960869,-1.075494,1.581711,4.803967,-1.443823E-14,-0.7401245,9.841111,0.03293043,0,12.54541,-0.05678061,-0.523347,9.858463,0.5559897,0.7371085,9.097718,-0.6799226,1.042429,9.122157,0.05678061,0.523347,9.82376,-0.4901289,0.7401245,9.841111,0.03293043,-0.007413076,6.322248,-1.510483,0.06481247,6.959784,-1.190206,-1.069438,6.395466,-1.059096,-0.8726054,6.879419,-0.8709829,1.054612,6.165745,-1.080812,1.494517,6.017634,-0.02177669,0.9114545,7.032367,-0.7590579,1.215181,7.058405,0.07660513,1.054612,5.964678,1.046253,-0.007413076,6.037896,1.49764,0.8872612,7.030293,0.8666178,0.08983727,6.96193,1.234885,-1.335341,4.011488,-1.335341,-1.014645,5.183191,-1.014645,-1.888458,4.011488,-2.165734E-14,-1.453513,5.135168,0,0,4.011488,-1.888458,1.335341,4.011488,-1.335341,5.775292E-14,5.114707,-1.461432,1.075494,4.960869,-1.075494,1.359903,4.982341,-1.630958,1.054612,6.165745,-1.080812,-0.1359064,5.202768,-2.23613,-0.007413076,6.322248,-1.510483,1.043959,8.131334,-1.443823E-14,1.560744,7.088031,0,0.7397546,8.105255,0.7371085,1.132287,7.051299,1.038181,-0.9364861,6.873942,-1.038181,0.09790064,6.962621,-1.46821,-0.7290745,7.979332,-0.7371085,0.005340036,8.042294,-1.042429,0.06975073,1.180081,1.086241,-0.2093853,1.180081,1.086241,0.06975073,1.458773,1.070508,-0.2093853,1.458773,1.070508,-0.4878016,0.7096961,0.4878016,0.1589827,1.05582,0.468262,0.4878016,0.7096961,0.4878016,0.3853633,2.524288,0.3853633,0.1589827,1.512693,0.4424704,-0.2986173,1.512693,0.4424704,-0.2986173,1.05582,0.468262,-0.3853633,2.524288,0.3853633,-0.2986173,1.512693,0.4424704,-0.2093853,1.458773,1.070508,-0.2986173,1.05582,0.468262,-0.2093853,1.180081,1.086241,0.1589827,1.512693,0.4424704,0.06975073,1.458773,1.070508,-0.2986173,1.512693,0.4424704,-0.2093853,1.458773,1.070508,0.750464,2.323573E-17,0.750464,0.750464,2.323573E-17,-0.750464,-0.750464,2.323573E-17,0.750464,-0.750464,2.323573E-17,-0.750464,-0.750464,2.323573E-17,-0.750464,0.750464,2.323573E-17,-0.750464,-0.4878016,0.7096961,-0.4878016,0.4878016,0.7096961,-0.4878016,0.750464,2.323573E-17,-0.750464,0.750464,2.323573E-17,0.750464,0.4878016,0.7096961,-0.4878016,0.4878016,0.7096961,0.4878016,-0.4878016,0.7096961,-0.4878016,0.4878016,0.7096961,-0.4878016,-0.3853633,2.524288,-0.3853633,0.3853633,2.524288,-0.3853633,0.750464,2.323573E-17,0.750464,-0.750464,2.323573E-17,0.750464,0.4878016,0.7096961,0.4878016,-0.4878016,0.7096961,0.4878016,0.4878016,0.7096961,-0.4878016,0.4878016,0.7096961,0.4878016,0.3853633,2.524288,-0.3853633,0.3853633,2.524288,0.3853633,-0.750464,2.323573E-17,-0.750464,-0.4878016,0.7096961,-0.4878016,-0.750464,2.323573E-17,0.750464,-0.4878016,0.7096961,0.4878016,-0.4878016,0.7096961,-0.4878016,-0.3853633,2.524288,-0.3853633,-0.4878016,0.7096961,0.4878016,-0.3853633,2.524288,0.3853633,0.1589827,1.512693,0.4424704,0.1589827,1.05582,0.468262,0.06975073,1.458773,1.070508,0.06975073,1.180081,1.086241,0.1589827,1.05582,0.468262,-0.2986173,1.05582,0.468262,0.06975073,1.180081,1.086241,-0.2093853,1.180081,1.086241 + } + PolygonVertexIndex: *642 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,10,8,-10,11,13,-13,14,12,-14,15,17,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,31,-31,32,30,-32,33,35,-35,36,34,-36,37,39,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,107,-107,109,107,-109,110,109,-109,111,109,-111,112,111,-111,113,112,-111,104,105,-115,115,114,-106,116,114,-116,117,116,-116,118,116,-118,113,118,-113,119,118,-118,112,118,-120,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,141,-141,142,140,-142,143,145,-145,146,144,-146,147,144,-147,148,147,-147,149,148,-147,150,148,-150,147,151,-145,152,144,-152,150,152,-152,153,152,-151,149,153,-151,154,153,-150,155,157,-157,158,156,-158,159,161,-161,162,160,-162,163,165,-165,166,164,-166,167,169,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,184,-184,185,183,-185,186,188,-188,189,187,-189,190,192,-192,193,191,-193,194,196,-196,197,199,-199,200,198,-200,201,203,-203,204,202,-204,205,207,-207,208,206,-208,209,211,-211,212,210,-212,213,215,-215,216,214,-216,217,216,-216,218,216,-218,219,218,-218,220,219,-218,221,219,-221,213,214,-223,223,222,-215,224,222,-224,225,224,-224,226,224,-226,227,224,-227,221,227,-227,220,227,-222,228,227,-221,229,231,-231,232,230,-232,233,235,-235,236,234,-236,237,236,-236,238,237,-236,239,237,-239,240,239,-239,241,239,-241,242,241,-241,243,242,-241,236,244,-235,245,234,-245,246,245,-245,247,245,-247,243,247,-243,248,247,-247,242,247,-249,249,251,-251,252,250,-252,253,255,-255,256,254,-256,257,259,-259,260,258,-260,261,263,-263,264,262,-264,265,267,-267,268,266,-268,269,271,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,289,-291,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,313,-316,317,316,-316,313,318,-313,319,312,-319,317,319,-319,315,319,-318,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,330,-330,331,329,-331,332,334,-334,335,333,-335,336,338,-338,339,337,-339,340,342,-342,343,341,-343,344,346,-346,347,345,-347,348,350,-350,351,349,-351,352,354,-354,355,353,-355,356,358,-358,359,357,-359,360,362,-362,363,361,-363,364,366,-366,367,365,-367 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1926 { + a: -0.3640014,0.3375985,0.8680612,-0.3710195,0.2745726,0.8871045,-0.3640014,0.3375985,0.8680612,-0.8787771,0.320531,0.3535685,-0.8612435,0.3735636,0.3445427,-0.8787771,0.320531,0.3535685,-0.8612435,0.3735636,0.3445427,-0.8787771,0.320531,0.3535685,-0.8612435,0.3735636,0.3445427,-0.2964213,0.5432053,-0.7855332,-0.2964213,0.5432053,-0.7855332,-0.3082869,0.5036431,-0.8070332,-0.3082869,0.5036431,-0.8070332,-0.3082869,0.5036431,-0.8070332,-0.2964213,0.5432053,-0.7855332,-0.3875472,0.3092504,0.8684304,-0.3875472,0.3092504,0.8684304,-0.3891791,0.2724932,0.8799357,-0.3891791,0.2724932,0.8799357,-0.3891791,0.2724932,0.8799357,-0.3875472,0.3092504,0.8684304,-0.3640014,0.2793265,-0.8885267,-0.3710195,0.215177,-0.9033512,-0.3640014,0.2793265,-0.8885267,0.8749631,0.3705867,-0.3116168,0.8879568,0.3273612,-0.3230594,0.8749631,0.3705867,-0.3116168,0.8879568,0.3273612,-0.3230594,0.8749631,0.3705867,-0.3116168,0.8879568,0.3273612,-0.3230594,-0.8331671,0.4321253,-0.3451091,-0.8331671,0.4321253,-0.3451091,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8331671,0.4321253,-0.3451091,0.8957203,0.2325735,-0.3789389,0.8787771,0.2963939,-0.374034,0.8787771,0.2963939,-0.374034,-0.3891791,0.2724932,0.8799357,-0.3891791,0.2724932,0.8799357,-0.3903542,0.2289833,0.8917344,-0.3903542,0.2289833,0.8917344,-0.3903542,0.2289833,0.8917344,-0.3891791,0.2724932,0.8799357,0.3567387,0.3902906,0.8487701,0.3640014,0.3375985,0.8680612,0.3567387,0.3902906,0.8487701,0.3640014,0.3375985,0.8680612,0.3567387,0.3902906,0.8487701,0.3640014,0.3375985,0.8680612,0.3640014,0.2793265,-0.8885267,0.3710195,0.215177,-0.9033512,0.3640014,0.2793265,-0.8885267,0.3292547,0.370702,0.8684303,0.3292547,0.370702,0.8684303,0.3371193,0.3347589,0.8799357,0.3371193,0.3347589,0.8799357,0.3371193,0.3347589,0.8799357,0.3292547,0.370702,0.8684303,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.3451091,0.4321253,0.8331671,0.3524331,0.3896761,0.8508487,0.8506899,0.3787875,0.3644813,0.8661398,0.3367027,0.3693684,0.8506899,0.3787875,0.3644813,0.8661398,0.3367027,0.3693684,0.8506899,0.3787875,0.3644813,0.8661398,0.3367027,0.3693684,-0.9027498,0.2284647,0.3644814,-0.9027498,0.2284647,0.3644814,-0.9108111,0.1843644,0.3693685,-0.9108111,0.1843644,0.3693685,-0.9108111,0.1843644,0.3693685,-0.9027498,0.2284647,0.3644814,0.3924564,0.427856,-0.8141973,0.3924564,0.427856,-0.8141973,0.3945943,0.376394,-0.8382261,0.3945943,0.376394,-0.8382261,0.3945943,0.376394,-0.8382261,0.3924564,0.427856,-0.8141973,-0.7816246,0.549751,-0.2946808,-0.7816246,0.549751,-0.2946808,-0.8037872,0.5103278,-0.305764,-0.8037872,0.5103278,-0.305764,-0.8037872,0.5103278,-0.305764,-0.7816246,0.549751,-0.2946808,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,-0.8508487,0.3896761,0.3524331,-0.8331671,0.4321253,0.3451091,0.3567387,0.3331812,-0.8727701,0.3640014,0.2793265,-0.8885267,0.3567387,0.3331812,-0.8727701,0.3640014,0.2793265,-0.8885267,0.3567387,0.3331812,-0.8727701,0.3640014,0.2793265,-0.8885267,0.8749631,0.3056314,0.3755383,0.8879568,0.2610274,0.3786785,0.8749631,0.3056314,0.3755383,0.8879568,0.2610274,0.3786785,0.8749631,0.3056314,0.3755383,0.8879568,0.2610274,0.3786785,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3451091,0.4321253,-0.8331671,0.3524331,0.3896761,-0.8508487,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,0.3524331,0.3896761,0.8508487,0.3603359,0.336725,0.8699278,-0.9027498,0.2284647,0.3644814,-0.8944027,0.2657976,0.3597156,-0.9027498,0.2284647,0.3644814,-0.8944027,0.2657976,0.3597156,-0.9027498,0.2284647,0.3644814,-0.8944027,0.2657976,0.3597156,0.3292547,0.370702,-0.8684303,0.3371193,0.3347589,-0.8799357,0.3292547,0.370702,-0.8684303,0.3371193,0.3347589,-0.8799357,0.3292547,0.370702,-0.8684303,0.3371193,0.3347589,-0.8799357,-0.9027498,0.2284647,-0.3644814,-0.9027498,0.2284647,-0.3644814,-0.9108111,0.1843644,-0.3693685,-0.9108111,0.1843644,-0.3693685,-0.9108111,0.1843644,-0.3693685,-0.9027498,0.2284647,-0.3644814,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.3524331,0.3896761,0.8508487,-0.3603359,0.336725,0.8699278,-0.8612435,0.3499081,-0.3685427,-0.8612435,0.3499081,-0.3685427,-0.8787771,0.2963939,-0.374034,-0.8787771,0.2963939,-0.374034,-0.8787771,0.2963939,-0.374034,-0.8612435,0.3499081,-0.3685427,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.0854169,-0.9963452,0,0.8508487,0.3896761,0.3524331,0.8508487,0.3896761,0.3524331,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8331671,0.4321253,0.3451091,0.8508487,0.3896761,0.3524331,-0.7816246,0.4847958,0.3924742,-0.7816246,0.4847958,0.3924742,-0.8037872,0.443994,0.3959739,-0.8037872,0.443994,0.3959739,-0.8037872,0.443994,0.3959739,-0.7816246,0.4847958,0.3924742,0.3371193,0.3347589,0.8799357,0.3371193,0.3347589,0.8799357,0.3456829,0.2920839,0.8917344,0.3456829,0.2920839,0.8917344,0.3456829,0.2920839,0.8917344,0.3371193,0.3347589,0.8799357,0.8787771,0.320531,0.3535685,0.8787771,0.320531,0.3535685,0.8612435,0.3735636,0.3445427,0.8612435,0.3735636,0.3445427,0.8612435,0.3735636,0.3445427,0.8787771,0.320531,0.3535685,0.8957203,0.257176,0.3626922,0.8787771,0.320531,0.3535685,0.8787771,0.320531,0.3535685,-0.8037872,0.443994,0.3959739,-0.8037872,0.443994,0.3959739,-0.8284734,0.3928939,0.3990816,-0.8284734,0.3928939,0.3990816,-0.8284734,0.3928939,0.3990816,-0.8037872,0.443994,0.3959739,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3897598,0.3121771,0.8663906,0.3924565,0.2677121,0.8799478,0.3897598,0.3121771,0.8663906,0.3924565,0.2677121,0.8799478,0.3897598,0.3121771,0.8663906,0.3924565,0.2677121,0.8799478,-0.8944027,0.2657976,-0.3597156,-0.8944027,0.2657976,-0.3597156,-0.9027498,0.2284647,-0.3644814,-0.9027498,0.2284647,-0.3644814,-0.9027498,0.2284647,-0.3644814,-0.8944027,0.2657976,-0.3597156,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,-0.3451091,0.4321253,-0.8331671,-0.3524331,0.3896761,-0.8508487,0.3640014,0.3375985,0.8680612,0.3710195,0.2745726,0.8871045,0.3640014,0.3375985,0.8680612,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,0.8331671,0.4321253,-0.3451091,0.8508487,0.3896761,-0.3524331,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3524331,0.3896761,-0.8508487,-0.3603359,0.336725,-0.8699278,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,-0.3451091,0.4321253,0.8331671,-0.3524331,0.3896761,0.8508487,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,0.8508487,0.3896761,0.3524331,0.8699278,0.336725,0.3603359,-0.3891791,0.2724932,-0.8799357,-0.3903542,0.2289833,-0.8917344,-0.3891791,0.2724932,-0.8799357,-0.3903542,0.2289833,-0.8917344,-0.3891791,0.2724932,-0.8799357,-0.3903542,0.2289833,-0.8917344,-0.2964213,0.3863894,0.8734058,-0.3082869,0.3434993,0.8871118,-0.2964213,0.3863894,0.8734058,-0.3082869,0.3434993,0.8871118,-0.2964213,0.3863894,0.8734058,-0.3082869,0.3434993,0.8871118,-0.8787771,0.2963939,-0.374034,-0.8787771,0.2963939,-0.374034,-0.8957203,0.2325735,-0.3789389,-0.3567387,0.3902906,0.8487701,-0.3567387,0.3902906,0.8487701,-0.3640014,0.3375985,0.8680612,-0.3640014,0.3375985,0.8680612,-0.3640014,0.3375985,0.8680612,-0.3567387,0.3902906,0.8487701,-0.8508487,0.3896761,0.3524331,-0.8508487,0.3896761,0.3524331,-0.8699278,0.336725,0.3603359,-0.8699278,0.336725,0.3603359,-0.8699278,0.336725,0.3603359,-0.8508487,0.3896761,0.3524331,0.8361104,0.4141549,-0.3597157,0.8506899,0.3787875,-0.3644813,0.8361104,0.4141549,-0.3597157,0.8506899,0.3787875,-0.3644813,0.8361104,0.4141549,-0.3597157,0.8506899,0.3787875,-0.3644813,0.8879568,0.2610274,0.3786785,0.9012056,0.2058246,0.3813983,0.8879568,0.2610274,0.3786785,0.9012056,0.2058246,0.3813983,0.8879568,0.2610274,0.3786785,0.9012056,0.2058246,0.3813983,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.1079994,-0.9897389,-0.09355788,-0.3082869,0.3434993,0.8871118,-0.3218622,0.2901458,0.9012326,-0.3082869,0.3434993,0.8871118,-0.3218622,0.2901458,0.9012326,-0.3082869,0.3434993,0.8871118,-0.3218622,0.2901458,0.9012326,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,0,-0.9994503,0.0331552,-0.8037872,0.5103278,-0.305764,-0.8037872,0.5103278,-0.305764,-0.8284734,0.4607151,-0.3183918,-0.8284734,0.4607151,-0.3183918,-0.8284734,0.4607151,-0.3183918,-0.8037872,0.5103278,-0.305764,0.8506899,0.3787875,-0.3644813,0.8661398,0.3367027,-0.3693684,0.8506899,0.3787875,-0.3644813,0.8661398,0.3367027,-0.3693684,0.8506899,0.3787875,-0.3644813,0.8661398,0.3367027,-0.3693684,-0.3567387,0.3331812,-0.8727701,-0.3567387,0.3331812,-0.8727701,-0.3640014,0.2793265,-0.8885267,-0.3640014,0.2793265,-0.8885267,-0.3640014,0.2793265,-0.8885267,-0.3567387,0.3331812,-0.8727701,0.3371193,0.3347589,-0.8799357,0.3456829,0.2920839,-0.8917344,0.3371193,0.3347589,-0.8799357,0.3456829,0.2920839,-0.8917344,0.3371193,0.3347589,-0.8799357,0.3456829,0.2920839,-0.8917344,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,0.8508487,0.3896761,-0.3524331,0.8699278,0.336725,-0.3603359,-0.8787771,0.320531,0.3535685,-0.8787771,0.320531,0.3535685,-0.8957203,0.257176,0.3626922,0.8612435,0.3499081,-0.3685427,0.8787771,0.2963939,-0.374034,0.8612435,0.3499081,-0.3685427,0.8787771,0.2963939,-0.374034,0.8612435,0.3499081,-0.3685427,0.8787771,0.2963939,-0.374034,-0.3082869,0.5036431,-0.8070332,-0.3082869,0.5036431,-0.8070332,-0.3218621,0.4538806,-0.8309013,-0.3218621,0.4538806,-0.8309013,-0.3218621,0.4538806,-0.8309013,-0.3082869,0.5036431,-0.8070332,0.8879568,0.3273612,-0.3230594,0.9012056,0.2736458,-0.336075,0.8879568,0.3273612,-0.3230594,0.9012056,0.2736458,-0.336075,0.8879568,0.3273612,-0.3230594,0.9012056,0.2736458,-0.336075,0.3924565,0.2677121,0.8799478,0.3945943,0.2126591,0.8939079,0.3924565,0.2677121,0.8799478,0.3945943,0.2126591,0.8939079,0.3924565,0.2677121,0.8799478,0.3945943,0.2126591,0.8939079,-0.8508487,0.3896761,-0.3524331,-0.8508487,0.3896761,-0.3524331,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8699278,0.336725,-0.3603359,-0.8508487,0.3896761,-0.3524331,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3524331,0.3896761,-0.8508487,0.3603359,0.336725,-0.8699278,0.3897598,0.468993,-0.7925483,0.3897598,0.468993,-0.7925483,0.3924564,0.427856,-0.8141973,0.3924564,0.427856,-0.8141973,0.3924564,0.427856,-0.8141973,0.3897598,0.468993,-0.7925483,0.8506899,0.3787875,0.3644813,0.8506899,0.3787875,0.3644813,0.8361104,0.4141549,0.3597157,0.8361104,0.4141549,0.3597157,0.8361104,0.4141549,0.3597157,0.8506899,0.3787875,0.3644813,-0.3875472,0.3092504,-0.8684304,-0.3891791,0.2724932,-0.8799357,-0.3875472,0.3092504,-0.8684304,-0.3891791,0.2724932,-0.8799357,-0.3875472,0.3092504,-0.8684304,-0.3891791,0.2724932,-0.8799357,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,0,0.05636281,0.9984103,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,-0.9899297,0.007978717,0.1413349,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,0.9963348,0.08553969,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0,0.3470959,-0.9378296,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0.9378296,0.3470959,0,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,0,0.05636281,-0.9984103,0,0.3470959,0.9378296,0,0.3470959,0.9378296,0,0.3470959,0.9378296,0,0.3470959,0.9378296,0,0.3470959,0.9378296,0,0.3470959,0.9378296,0.9984103,0.05636281,0,0.9984103,0.05636281,0,0.9984103,0.05636281,0,0.9984103,0.05636281,0,0.9984103,0.05636281,0,0.9984103,0.05636281,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9378296,0.3470959,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,-0.9984103,0.05636281,0,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,0.9899297,0.007978717,0.1413349,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301,0,-0.9803773,0.1971301 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *736 { + a: 1.173723,36.57779,-1.056267,36.54836,-0.0862549,47.54974,-0.9619363,34.91097,1.267031,34.98462,-1.316825,31.85953,1.822566,31.96326,-2.60753,12.62095,-2.072211,17.87036,3.785935,13.10452,2.467149,18.21369,-1.701223,24.11723,-1.438574,28.69348,2.707609,24.48435,1.691697,28.95414,1.172823,37.21771,-1.057173,37.18874,-0.08492927,48.18991,4.252637,15.55139,-2.097822,14.66715,2.615503,20.56763,-1.893323,19.93981,-4.007329,4.781734,-2.845203,11.27434,4.007329,4.781734,2.845203,11.27434,0.2058799,48.01677,0.9743633,36.99949,-1.254714,37.06973,-1.465745,29.70771,-1.340558,34.38935,1.66502,29.96235,0.8123928,34.41856,1.464874,31.59145,-1.675932,31.63474,1.051324,34.63549,-1.178648,34.66623,1.057173,37.18874,-1.172823,37.21771,0.08492927,48.18991,-1.688809,23.40458,-1.435282,27.98134,2.719282,23.78049,1.694463,28.24824,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,1.612271,28.87096,-1.52694,28.76192,1.01855,33.00585,-1.210584,33.07775,-1.528808,30.08025,-1.179296,34.75495,1.610559,30.18471,0.9516752,34.82145,-1.944244,20.37472,-1.973837,24.05745,2.559239,21.03979,1.764915,23.74901,-3.62937,12.92294,-2.416292,18.05823,2.772711,12.5714,2.129185,17.80864,-2.845203,11.27434,2.845203,11.27434,-4.007329,4.781734,4.007329,4.781734,1.467363,32.53758,-1.673457,32.57985,1.052826,35.58149,-1.177156,35.6115,3.577929,15.77229,-2.826375,15.46388,2.399468,20.91564,-2.147588,20.69667,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,2.845203,12.55804,-2.845203,12.55804,2.417124,15.62723,-2.36908,15.9717,-1.517935,29.18251,1.621363,29.28902,-2.005165,24.6247,2.416382,24.77471,1.688809,23.40458,-2.719282,23.78049,1.435282,27.98134,-1.694463,28.24824,-1.610559,30.18471,-0.9707028,34.68755,1.528808,30.08025,1.179296,34.75495,2.845203,12.55804,-2.845203,12.55804,2.36908,15.9717,-2.273319,16.65828,-1.31932,32.25149,-0.963443,35.30281,1.820105,32.3542,1.265548,35.37574,0,8.505819,-0.301595,7.140343,-4.087327,6.812793,-3.411881,5.844584,-5.780353,2.725466,-4.861753,2.693604,-4.087327,-1.361861,-3.703289,-0.8347362,-0.2230404,-2.588655,0,-3.054887,4.087327,6.812793,2.988417,5.940183,5.780353,2.725466,4.685852,2.59472,4.087327,-1.361861,3.429066,-1.109439,2.845203,11.27434,4.007329,4.781734,-2.845203,11.27434,-4.007329,4.781734,-4.315434,14.25585,-2.635075,19.25777,2.027159,13.31684,1.868166,18.59107,-1.463784,29.16195,-1.349079,33.69754,1.666609,29.42113,0.8472177,33.67027,0.9619363,34.91097,1.316825,31.85953,-1.267031,34.98462,-1.822566,31.96326,0.2072038,47.75167,0.9734548,36.73423,-1.255609,36.80492,-2.547156,20.85311,-1.929584,23.01437,1.96079,20.219,1.964235,23.17729,10.47165,0,7.404577,-7.404577,7.404577,7.404577,0,10.47165,1.517178,1.517178,-1.517178,1.517178,-7.404577,7.404577,-1.517178,-1.517178,1.517178,-1.517178,0,-10.47165,-7.404577,-7.404577,-10.47165,0,2.678016,15.36044,-3.719451,15.7878,2.096584,20.60494,-2.445618,20.90837,-2.416382,24.77471,-1.621363,29.28902,2.005165,24.6247,1.517935,29.18251,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,1.056267,36.54836,-1.173723,36.57779,0.0862549,47.54974,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,2.845203,12.55804,-2.845203,12.55804,2.161896,17.45714,-2.201834,17.1708,4.007329,4.781734,-4.007329,4.781734,2.845203,11.27434,-2.845203,11.27434,2.845203,12.55804,-2.845203,12.55804,2.38305,15.87153,-2.417124,15.62723,1.465745,29.70771,-1.66502,29.96235,1.344173,34.25415,-0.849628,34.22395,2.02472,14.48979,-4.317593,15.43068,1.867297,19.76407,-2.635746,20.43211,-0.9743633,36.99949,-0.2058799,48.01677,1.254714,37.06973,-1.464874,31.59145,-1.051324,34.63549,1.675932,31.63474,1.178648,34.66623,-2.845203,12.55804,-2.189903,17.25634,2.845203,12.55804,2.273319,16.65828,1.992852,22.90333,-2.428385,23.06221,1.514767,27.46211,-1.624311,27.57492,2.372175,22.0758,-2.175162,21.86275,1.586855,26.26298,-1.780649,26.14988,-5.517444,-2.788936,-4.077355,-1.955961,0.5560067,-4.844031,0.4513993,-3.565848,6.303757,-2.002624,4.679139,-1.295909,5.925278,3.228513,8.358851,4.070827,3.746883,7.169657,-8.358851,2.958814,-5.972795,2.367183,-6.303757,9.032265,-4.348814,6.605923,-0.4037354,8.492849,-0.5560067,11.87367,5.517444,9.818577,1.955592,21.13472,-2.550972,21.77857,1.96824,24.93617,-1.732036,24.62124,4.104051,1.414159,2.902002,-1.487843,2.902002,4.316161,2.596534,1.19049,1.699835,3.232582,1.121843E-29,5.518209,-0.3508576,4.019425,-2.902002,4.316161,-2.325802,3.16173,-3.138005,1.19049,-4.104051,1.414159,1.740525,-0.8805117,-1.005883E-29,-2.689892,-0.334617,-1.69423,-2.902002,-1.487843,-2.341529,-0.8076748,-2.381741,19.84776,-1.968423,21.99449,2.164519,19.61286,1.969304,21.85213,1.52694,28.76192,-1.612271,28.87096,1.2212,32.93293,-1.01855,33.00585,-1.467363,32.53758,-1.052826,35.58149,1.673457,32.57985,1.177156,35.6115,1.463784,29.16195,-1.666609,29.42113,1.354088,33.49947,-0.8747141,33.52768,2.845203,12.55804,-2.845203,12.55804,2.291549,16.52757,-2.38305,15.87153,-0.9734548,36.73423,-0.2072038,47.75167,1.255609,36.80492,1.31932,32.25149,-1.820105,32.3542,0.963443,35.30281,-1.265548,35.37574,-2.120833,19.65752,-1.930524,22.47437,2.419982,19.98103,1.964887,22.11929,2.536194,21.87661,-1.975582,21.27036,1.546224,25.42391,-1.954234,25.53049,2.134978,21.78791,-2.407778,22.08292,1.817829,26.08146,-1.639761,25.80601,-2.845203,12.55804,-2.161896,17.45714,2.845203,12.55804,2.189903,17.25634,2.845203,12.55804,-2.845203,12.55804,2.201834,17.1708,-2.291549,16.52757,-1.97076,13.51402,-1.848027,18.78922,4.365228,14.4966,2.650525,19.48686,1.624311,27.57492,2.428385,23.06221,-1.514767,27.46211,-1.992852,22.90333,1.701223,24.11723,-2.707609,24.48435,1.438574,28.69348,-1.691697,28.95414,0.2746092,4.397565,-0.8243514,4.397565,0.2746092,5.496525,-0.8243514,5.496525,-1.920479,2.681394,0.6259162,4.046258,1.920479,2.681394,1.517178,9.836831,0.6259162,5.847833,-1.175659,5.847833,-1.175659,4.046258,-1.517178,9.836831,1.558355,5.944044,4.055775,5.731755,1.658877,4.145276,4.117094,4.634506,0.6259162,-1.226194,0.2746092,-3.707878,-1.175659,-1.226194,-0.8243514,-3.707878,2.954583,2.954583,2.954583,-2.954583,-2.954583,2.954583,-2.954583,-2.954583,2.954583,-1.025524,-2.954583,-1.025524,1.920479,1.95378,-1.920479,1.95378,2.954583,-1.025524,-2.954583,-1.025524,1.920479,1.95378,-1.920479,1.95378,1.920479,2.681394,-1.920479,2.681394,1.517178,9.836831,-1.517178,9.836831,2.954583,-1.025524,-2.954583,-1.025524,1.920479,1.95378,-1.920479,1.95378,1.920479,2.681394,-1.920479,2.681394,1.517178,9.836831,-1.517178,9.836831,-2.954583,-1.025524,-1.920479,1.95378,2.954583,-1.025524,1.920479,1.95378,-1.920479,2.681394,-1.517178,9.836831,1.920479,2.681394,1.517178,9.836831,-1.636055,5.948386,-1.736578,4.149618,-4.133475,5.736097,-4.194794,4.638848,0.6259162,2.626801,-1.175659,2.626801,0.2746092,5.108485,-0.8243514,5.108485 + } + UVIndex: *642 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,10,8,9,11,13,12,14,12,13,15,17,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,31,30,32,30,31,33,35,34,36,34,35,37,39,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,107,106,109,107,108,110,109,108,111,109,110,112,111,110,113,112,110,104,105,114,115,114,105,116,114,115,117,116,115,118,116,117,113,118,112,119,118,117,112,118,119,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,141,140,142,140,141,143,145,144,146,144,145,147,144,146,148,147,146,149,148,146,150,148,149,147,151,144,152,144,151,150,152,151,153,152,150,149,153,150,154,153,149,155,157,156,158,156,157,159,161,160,162,160,161,163,165,164,166,164,165,167,169,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,184,183,185,183,184,186,188,187,189,187,188,190,192,191,193,191,192,194,196,195,197,199,198,200,198,199,201,203,202,204,202,203,205,207,206,208,206,207,209,211,210,212,210,211,213,215,214,216,214,215,217,216,215,218,216,217,219,218,217,220,219,217,221,219,220,213,214,222,223,222,214,224,222,223,225,224,223,226,224,225,227,224,226,221,227,226,220,227,221,228,227,220,229,231,230,232,230,231,233,235,234,236,234,235,237,236,235,238,237,235,239,237,238,240,239,238,241,239,240,242,241,240,243,242,240,236,244,234,245,234,244,246,245,244,247,245,246,243,247,242,248,247,246,242,247,248,249,251,250,252,250,251,253,255,254,256,254,255,257,259,258,260,258,259,261,263,262,264,262,263,265,267,266,268,266,267,269,271,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,289,290,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,313,315,317,316,315,313,318,312,319,312,318,317,319,318,315,319,317,320,322,321,323,321,322,324,326,325,327,325,326,328,330,329,331,329,330,332,334,333,335,333,334,336,338,337,339,337,338,340,342,341,343,341,342,344,346,345,347,345,346,348,350,349,351,349,350,352,354,353,355,353,354,356,358,357,359,357,358,360,362,361,363,361,362,364,366,365,367,365,366 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *214 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineRoundF, Model::RootNode + C: "OO",5304746979571316361,0 + + ;Geometry::, Model::Mesh tree_pineRoundF + C: "OO",5252784671773231811,5304746979571316361 + + ;Material::leafsDark, Model::Mesh tree_pineRoundF + C: "OO",3026,5304746979571316361 + + ;Material::woodBarkDark, Model::Mesh tree_pineRoundF + C: "OO",3048,5304746979571316361 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundF.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundF.fbx.import new file mode 100644 index 0000000..d8288cd --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundF.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ciixqtk717xxt" +path="res://.godot/imported/tree_pineRoundF.fbx-b3ca086647984eef97db6f0735a4ba7e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineRoundF.fbx" +dest_files=["res://.godot/imported/tree_pineRoundF.fbx-b3ca086647984eef97db6f0735a4ba7e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallA.fbx new file mode 100644 index 0000000..89b3b6d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 72 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineSmallA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineSmallA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5462336501385050994, "Model::tree_pineSmallA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5016025371879563420, "Geometry::", "Mesh" { + Vertices: *840 { + a: -1.5,2,-2.5,-1.5,3,-2.5,-2.5,2,-1.5,-2.5,3,-1.5,2.5,3,1.5,2.5,2,1.5,1.5,3,2.5,1.5,2,2.5,-2.5,2,-1.5,-2.5,3,-1.5,-2.5,2,1.5,-2.5,3,1.5,1.5,2,2.5,-1.5,2,2.5,1.5,3,2.5,-1.5,3,2.5,1.5,3,-2.5,1.5,2,-2.5,2.5,3,-1.5,2.5,2,-1.5,-2.5,2,1.5,-2.5,3,1.5,-1.5,2,2.5,-1.5,3,2.5,2.5,3,-1.5,2.5,2,-1.5,2.5,3,1.5,2.5,2,1.5,-1.5,2,-2.5,1.5,2,-2.5,-1.5,3,-2.5,1.5,3,-2.5,-1.5,3,2.5,-2.5,3,1.5,-0.8184,5,1.364,-1.364,5,0.8184,1.364,5,0.8184,2.5,3,1.5,0.8184,5,1.364,1.5,3,2.5,-1.5,3,-2.5,1.5,3,-2.5,-0.8184,5,-1.364,0.8184,5,-1.364,-2.5,3,-1.5,-1.364,5,-0.8184,-2.5,3,1.5,-1.364,5,0.8184,2.5,3,-1.5,2.5,3,1.5,1.364,5,-0.8184,1.364,5,0.8184,1.5,3,2.5,-1.5,3,2.5,0.8184,5,1.364,-0.8184,5,1.364,-2.5,3,-1.5,-1.5,3,-2.5,-1.364,5,-0.8184,-0.8184,5,-1.364,1.08,5,1.8,-1.08,5,1.8,1.08,5.72,1.8,-1.08,5.72,1.8,-1.08,5,-1.8,-1.08,5.72,-1.8,-1.8,5,-1.08,-1.8,5.72,-1.08,1.8,5.72,1.08,1.08,5.72,1.8,0.792,7.16,0.4752,0.4752,7.16,0.792,-1.8,5,1.08,-1.8,5.72,1.08,-1.08,5,1.8,-1.08,5.72,1.8,-0.4752,7.16,0.792,-1.08,5.72,1.8,-0.792,7.16,0.4752,-1.8,5.72,1.08,1.08,5.72,-1.8,1.08,5,-1.8,1.8,5.72,-1.08,1.8,5,-1.08,1.8,5,-1.08,1.364,5,0.8184,1.8,5,1.08,1.08,5,1.8,0.8184,5,1.364,-1.08,5,1.8,-0.8184,5,1.364,-1.364,5,0.8184,-1.8,5,1.08,-1.364,5,-0.8184,1.364,5,-0.8184,1.08,5,-1.8,0.8184,5,-1.364,-1.08,5,-1.8,-0.8184,5,-1.364,-1.8,5,-1.08,1.5,3,-2.5,2.5,3,-1.5,0.8184,5,-1.364,1.364,5,-0.8184,2.5,2,1.5,2.5,2,-1.5,1.5,2,2.5,1.5,2,-2.5,0.5548985,2,0.5548985,-1.5,2,2.5,-0.5548985,2,0.5548985,-0.5548985,2,-0.5548985,0.5548985,2,-0.5548985,-1.5,2,-2.5,-2.5,2,1.5,-2.5,2,-1.5,1.8,5.72,-1.08,1.8,5,-1.08,1.8,5.72,1.08,1.8,5,1.08,1.8,5.72,1.08,1.8,5,1.08,1.08,5.72,1.8,1.08,5,1.8,-1.8,5.72,-1.08,-0.792,7.16,-0.4752,-1.8,5.72,1.08,-0.792,7.16,0.4752,-0.4752,7.16,-0.792,-0.792,7.16,-0.4752,-1.08,5.72,-1.8,-1.8,5.72,-1.08,1.8,5.72,-1.08,0.792,7.16,-0.4752,1.08,5.72,-1.8,0.4752,7.16,-0.792,1.08,5.72,1.8,-1.08,5.72,1.8,0.4752,7.16,0.792,-0.4752,7.16,0.792,-1.8,5,-1.08,-1.8,5.72,-1.08,-1.8,5,1.08,-1.8,5.72,1.08,-1.08,5.72,-1.8,1.08,5.72,-1.8,-0.4752,7.16,-0.792,0.4752,7.16,-0.792,1.8,5.72,-1.08,1.8,5.72,1.08,0.792,7.16,-0.4752,0.792,7.16,0.4752,-0.756,7.16,-1.26,-0.756,7.664001,-1.26,-1.26,7.16,-0.756,-1.26,7.664001,-0.756,-1.08,5,-1.8,1.08,5,-1.8,-1.08,5.72,-1.8,1.08,5.72,-1.8,0.756,7.664001,-1.26,0.756,7.16,-1.26,1.26,7.664001,-0.756,1.26,7.16,-0.756,0.756,7.16,1.26,-0.756,7.16,1.26,0.756,7.664001,1.26,-0.756,7.664001,1.26,-1.26,7.16,-0.756,-1.26,7.664001,-0.756,-1.26,7.16,0.756,-1.26,7.664001,0.756,-0.756,7.16,-1.26,0.756,7.16,-1.26,-0.756,7.664001,-1.26,0.756,7.664001,-1.26,1.26,7.16,0.756,1.26,7.16,-0.756,0.756,7.16,1.26,0.792,7.16,0.4752,0.4752,7.16,0.792,-0.756,7.16,1.26,-0.4752,7.16,0.792,-0.792,7.16,0.4752,-1.26,7.16,0.756,-0.792,7.16,-0.4752,0.792,7.16,-0.4752,0.756,7.16,-1.26,0.4752,7.16,-0.792,-0.756,7.16,-1.26,-0.4752,7.16,-0.792,-1.26,7.16,-0.756,0.393624,9.672,0.2361744,1.26,7.664001,0.756,0.2361744,9.672,0.393624,0.756,7.664001,1.26,0.756,7.664001,-1.26,1.26,7.664001,-0.756,0.2361744,9.672,-0.393624,0.393624,9.672,-0.2361744,0.393624,9.672,-0.2361744,0.393624,9.672,0.2361744,0.2361744,9.672,-0.393624,0.2361744,9.672,0.393624,-0.2361744,9.672,-0.393624,-0.2361744,9.672,0.393624,-0.393624,9.672,-0.2361744,-0.393624,9.672,0.2361744,-1.26,7.16,0.756,-1.26,7.664001,0.756,-0.756,7.16,1.26,-0.756,7.664001,1.26,1.26,7.664001,-0.756,1.26,7.16,-0.756,1.26,7.664001,0.756,1.26,7.16,0.756,1.26,7.664001,0.756,1.26,7.16,0.756,0.756,7.664001,1.26,0.756,7.16,1.26,1.26,7.664001,-0.756,1.26,7.664001,0.756,0.393624,9.672,-0.2361744,0.393624,9.672,0.2361744,-0.756,7.664001,-1.26,0.756,7.664001,-1.26,-0.2361744,9.672,-0.393624,0.2361744,9.672,-0.393624,-1.26,7.664001,-0.756,-0.393624,9.672,-0.2361744,-1.26,7.664001,0.756,-0.393624,9.672,0.2361744,0.756,7.664001,1.26,-0.756,7.664001,1.26,0.2361744,9.672,0.393624,-0.2361744,9.672,0.393624,-0.393624,9.672,0.2361744,-0.2361744,9.672,0.393624,-1.26,7.664001,0.756,-0.756,7.664001,1.26,-0.756,7.664001,-1.26,-0.2361744,9.672,-0.393624,-1.26,7.664001,-0.756,-0.393624,9.672,-0.2361744,0.9333394,0,0.9333394,0.9333394,0,-0.9333394,-0.9333394,0,0.9333394,-0.9333394,0,-0.9333394,-0.6325843,1,-0.6325843,0.6325843,1,-0.6325843,-0.5548985,2,-0.5548985,0.5548985,2,-0.5548985,0.9333394,0,0.9333394,-0.9333394,0,0.9333394,0.6325843,1,0.6325843,-0.6325843,1,0.6325843,0.9333394,0,-0.9333394,0.9333394,0,0.9333394,0.6325843,1,-0.6325843,0.6325843,1,0.6325843,-0.9333394,0,-0.9333394,0.9333394,0,-0.9333394,-0.6325843,1,-0.6325843,0.6325843,1,-0.6325843,0.6325843,1,0.6325843,-0.6325843,1,0.6325843,0.5548985,2,0.5548985,-0.5548985,2,0.5548985,-0.9333394,0,-0.9333394,-0.6325843,1,-0.6325843,-0.9333394,0,0.9333394,-0.6325843,1,0.6325843,0.6325843,1,-0.6325843,0.6325843,1,0.6325843,0.5548985,2,-0.5548985,0.5548985,2,0.5548985,-0.6325843,1,-0.6325843,-0.5548985,2,-0.5548985,-0.6325843,1,0.6325843,-0.5548985,2,0.5548985 + } + PolygonVertexIndex: *492 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,85,-88,89,88,-88,90,88,-90,91,90,-90,92,91,-90,93,91,-93,85,94,-85,95,84,-95,96,95,-95,97,95,-97,98,97,-97,93,97,-99,99,97,-94,92,99,-94,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,107,-107,109,108,-107,110,108,-110,111,110,-110,108,112,-108,113,107,-113,111,113,-113,109,113,-112,114,113,-110,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,158,-158,159,157,-159,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,179,-179,181,180,-179,182,180,-182,183,182,-182,184,183,-182,185,183,-185,179,186,-178,187,177,-187,188,187,-187,189,187,-189,190,189,-189,185,189,-191,191,189,-186,184,191,-186,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,203,-203,205,203,-205,206,205,-205,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1476 { + a: -0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-0.5948675,0.5406156,0.5948675,-0.5948675,0.5406156,0.5948675,-0.5948675,0.5406156,0.5948675,-0.5948675,0.5406156,0.5948675,-0.5948675,0.5406156,0.5948675,-0.5948675,0.5406156,0.5948675,0.5948675,0.5406156,0.5948675,0.5948675,0.5406156,0.5948675,0.5948675,0.5406156,0.5948675,0.5948675,0.5406156,0.5948675,0.5948675,0.5406156,0.5948675,0.5948675,0.5406156,0.5948675,0,0.4938899,-0.8695245,0,0.4938899,-0.8695245,0,0.4938899,-0.8695245,0,0.4938899,-0.8695245,0,0.4938899,-0.8695245,0,0.4938899,-0.8695245,-0.8695245,0.4938899,0,-0.8695245,0.4938899,0,-0.8695245,0.4938899,0,-0.8695245,0.4938899,0,-0.8695245,0.4938899,0,-0.8695245,0.4938899,0,0.8695245,0.4938899,0,0.8695245,0.4938899,0,0.8695245,0.4938899,0,0.8695245,0.4938899,0,0.8695245,0.4938899,0,0.8695245,0.4938899,0,0,0.4938899,0.8695245,0,0.4938899,0.8695245,0,0.4938899,0.8695245,0,0.4938899,0.8695245,0,0.4938899,0.8695245,0,0.4938899,0.8695245,-0.5948675,0.5406156,-0.5948675,-0.5948675,0.5406156,-0.5948675,-0.5948675,0.5406156,-0.5948675,-0.5948675,0.5406156,-0.5948675,-0.5948675,0.5406156,-0.5948675,-0.5948675,0.5406156,-0.5948675,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0.554325,0.6208441,0.554325,0.554325,0.6208441,0.554325,0.554325,0.6208441,0.554325,0.554325,0.6208441,0.554325,0.554325,0.6208441,0.554325,0.554325,0.6208441,0.554325,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.554325,0.6208441,0.554325,-0.554325,0.6208441,0.554325,-0.554325,0.6208441,0.554325,-0.554325,0.6208441,0.554325,-0.554325,0.6208441,0.554325,-0.554325,0.6208441,0.554325,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.5948675,0.5406156,-0.5948675,0.5948675,0.5406156,-0.5948675,0.5948675,0.5406156,-0.5948675,0.5948675,0.5406156,-0.5948675,0.5948675,0.5406156,-0.5948675,0.5948675,0.5406156,-0.5948675,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.8192319,0.5734624,0,-0.554325,0.6208441,-0.554325,-0.554325,0.6208441,-0.554325,-0.554325,0.6208441,-0.554325,-0.554325,0.6208441,-0.554325,-0.554325,0.6208441,-0.554325,-0.554325,0.6208441,-0.554325,0.554325,0.6208441,-0.554325,0.554325,0.6208441,-0.554325,0.554325,0.6208441,-0.554325,0.554325,0.6208441,-0.554325,0.554325,0.6208441,-0.554325,0.554325,0.6208441,-0.554325,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,0,0.5734624,0.8192319,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0,0.5734624,-0.8192319,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,0.8192319,0.5734624,0,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,-0.7071068,0,-0.7071068,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0.7071068,0,-0.7071068,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6354404,0.4386695,0.6354404,0.6354404,0.4386695,0.6354404,0.6354404,0.4386695,0.6354404,0.6354404,0.4386695,0.6354404,0.6354404,0.4386695,0.6354404,0.6354404,0.4386695,0.6354404,0.6354404,0.4386695,-0.6354404,0.6354404,0.4386695,-0.6354404,0.6354404,0.4386695,-0.6354404,0.6354404,0.4386695,-0.6354404,0.6354404,0.4386695,-0.6354404,0.6354404,0.4386695,-0.6354404,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,-0.7071068,0,0.7071068,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.7071068,0,0.7071068,0.9181813,0.3961605,0,0.9181813,0.3961605,0,0.9181813,0.3961605,0,0.9181813,0.3961605,0,0.9181813,0.3961605,0,0.9181813,0.3961605,0,0,0.3961605,-0.9181813,0,0.3961605,-0.9181813,0,0.3961605,-0.9181813,0,0.3961605,-0.9181813,0,0.3961605,-0.9181813,0,0.3961605,-0.9181813,-0.9181813,0.3961605,0,-0.9181813,0.3961605,0,-0.9181813,0.3961605,0,-0.9181813,0.3961605,0,-0.9181813,0.3961605,0,-0.9181813,0.3961605,0,0,0.3961605,0.9181813,0,0.3961605,0.9181813,0,0.3961605,0.9181813,0,0.3961605,0.9181813,0,0.3961605,0.9181813,0,0.3961605,0.9181813,-0.6354404,0.4386695,0.6354404,-0.6354404,0.4386695,0.6354404,-0.6354404,0.4386695,0.6354404,-0.6354404,0.4386695,0.6354404,-0.6354404,0.4386695,0.6354404,-0.6354404,0.4386695,0.6354404,-0.6354404,0.4386695,-0.6354404,-0.6354404,0.4386695,-0.6354404,-0.6354404,0.4386695,-0.6354404,-0.6354404,0.4386695,-0.6354404,-0.6354404,0.4386695,-0.6354404,-0.6354404,0.4386695,-0.6354404,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.07745243,-0.996996,0,0.07745243,-0.996996,0,0.07745243,-0.996996,0,0.07745243,-0.996996,0,0.07745243,-0.996996,0,0.07745243,-0.996996,0,0.2880111,0.9576271,0,0.2880111,0.9576271,0,0.2880111,0.9576271,0,0.2880111,0.9576271,0,0.2880111,0.9576271,0,0.2880111,0.9576271,0.9576271,0.2880111,0,0.9576271,0.2880111,0,0.9576271,0.2880111,0,0.9576271,0.2880111,0,0.9576271,0.2880111,0,0.9576271,0.2880111,0,0,0.2880111,-0.9576271,0,0.2880111,-0.9576271,0,0.2880111,-0.9576271,0,0.2880111,-0.9576271,0,0.2880111,-0.9576271,0,0.2880111,-0.9576271,0,0.07745243,0.996996,0,0.07745243,0.996996,0,0.07745243,0.996996,0,0.07745243,0.996996,0,0.07745243,0.996996,0,0.07745243,0.996996,-0.9576271,0.2880111,0,-0.9576271,0.2880111,0,-0.9576271,0.2880111,0,-0.9576271,0.2880111,0,-0.9576271,0.2880111,0,-0.9576271,0.2880111,0,0.996996,0.07745243,0,0.996996,0.07745243,0,0.996996,0.07745243,0,0.996996,0.07745243,0,0.996996,0.07745243,0,0.996996,0.07745243,0,-0.996996,0.07745243,0,-0.996996,0.07745243,0,-0.996996,0.07745243,0,-0.996996,0.07745243,0,-0.996996,0.07745243,0,-0.996996,0.07745243,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *560 { + a: -2.783885,7.874016,-2.783885,11.81102,2.783885,7.874016,2.783885,11.81102,2.783885,11.81102,2.783885,7.874016,-2.783885,11.81102,-2.783885,7.874016,-5.905512,7.874016,-5.905512,11.81102,5.905512,7.874016,5.905512,11.81102,5.905512,7.874016,-5.905512,7.874016,5.905512,11.81102,-5.905512,11.81102,2.783885,11.81102,2.783885,7.874016,-2.783885,11.81102,-2.783885,7.874016,-2.783885,7.874016,-2.783885,11.81102,2.783885,7.874016,2.783885,11.81102,5.905512,11.81102,5.905512,7.874016,-5.905512,11.81102,-5.905512,7.874016,5.905512,7.874016,-5.905512,7.874016,5.905512,11.81102,-5.905512,11.81102,2.783885,3.91621,-2.783885,3.91621,1.518888,13.27589,-1.518888,13.27589,1.518888,13.27589,2.783885,3.91621,-1.518888,13.27589,-2.783885,3.91621,5.905512,5.408853,-5.905512,5.408853,3.222047,14.4644,-3.222047,14.4644,-5.905512,5.408853,-3.222047,14.4644,5.905512,5.408853,3.222047,14.4644,5.905512,5.408853,-5.905512,5.408853,3.222047,14.4644,-3.222047,14.4644,5.905512,5.408853,-5.905512,5.408853,3.222047,14.4644,-3.222047,14.4644,2.783885,3.91621,-2.783885,3.91621,1.518888,13.27589,-1.518888,13.27589,4.251968,19.68504,-4.251968,19.68504,4.251968,22.51969,-4.251968,22.51969,-2.004397,19.68504,-2.004397,22.51969,2.004397,19.68504,2.004397,22.51969,2.004397,12.67628,-2.004397,12.67628,0.8819348,19.90812,-0.8819348,19.90812,-2.004397,19.68504,-2.004397,22.51969,2.004397,19.68504,2.004397,22.51969,0.8819348,19.90812,2.004397,12.67628,-0.8819348,19.90812,-2.004397,12.67628,2.004397,22.51969,2.004397,19.68504,-2.004397,22.51969,-2.004397,19.68504,7.086614,-4.251968,5.370079,3.222047,7.086614,4.251968,4.251968,7.086614,3.222047,5.370079,-4.251968,7.086614,-3.222047,5.370079,-5.370079,3.222047,-7.086614,4.251968,-5.370079,-3.222047,5.370079,-3.222047,4.251968,-7.086614,3.222047,-5.370079,-4.251968,-7.086614,-3.222047,-5.370079,-7.086614,-4.251968,2.783885,3.91621,-2.783885,3.91621,1.518888,13.27589,-1.518888,13.27589,9.84252,5.905512,9.84252,-5.905512,5.905512,9.84252,5.905512,-9.84252,2.18464,2.18464,-5.905512,9.84252,-2.18464,2.18464,-2.18464,-2.18464,2.18464,-2.18464,-5.905512,-9.84252,-9.84252,5.905512,-9.84252,-5.905512,4.251968,22.51969,4.251968,19.68504,-4.251968,22.51969,-4.251968,19.68504,2.004397,22.51969,2.004397,19.68504,-2.004397,22.51969,-2.004397,19.68504,-4.251968,14.38494,-1.870866,21.30519,4.251968,14.38494,1.870866,21.30519,-0.8819348,19.90812,0.8819348,19.90812,-2.004397,12.67628,2.004397,12.67628,-2.004397,12.67628,-0.8819348,19.90812,2.004397,12.67628,0.8819348,19.90812,4.251968,14.38494,-4.251968,14.38494,1.870866,21.30519,-1.870866,21.30519,-4.251968,19.68504,-4.251968,22.51969,4.251968,19.68504,4.251968,22.51969,4.251968,14.38494,-4.251968,14.38494,1.870866,21.30519,-1.870866,21.30519,4.251968,14.38494,-4.251968,14.38494,1.870866,21.30519,-1.870866,21.30519,-1.403078,28.18898,-1.403078,30.17323,1.403078,28.18898,1.403078,30.17323,4.251968,19.68504,-4.251968,19.68504,4.251968,22.51969,-4.251968,22.51969,1.403078,30.17323,1.403078,28.18898,-1.403078,30.17323,-1.403078,28.18898,2.976378,28.18898,-2.976378,28.18898,2.976378,30.17323,-2.976378,30.17323,-2.976378,28.18898,-2.976378,30.17323,2.976378,28.18898,2.976378,30.17323,2.976378,28.18898,-2.976378,28.18898,2.976378,30.17323,-2.976378,30.17323,4.96063,2.976378,4.96063,-2.976378,2.976378,4.96063,3.11811,1.870866,1.870866,3.11811,-2.976378,4.96063,-1.870866,3.11811,-3.11811,1.870866,-4.96063,2.976378,-3.11811,-1.870866,3.11811,-1.870866,2.976378,-4.96063,1.870866,-3.11811,-2.976378,-4.96063,-1.870866,-3.11811,-4.96063,-2.976378,0.4383216,33.45029,1.403078,24.65317,-0.4383216,33.45029,-1.403078,24.65317,1.403078,24.65317,-1.403078,24.65317,0.4383216,33.45029,-0.4383216,33.45029,-1.549701,-0.9298205,-1.549701,0.9298205,-0.9298205,-1.549701,-0.9298205,1.549701,0.9298205,-1.549701,0.9298205,1.549701,1.549701,-0.9298205,1.549701,0.9298205,-1.403078,28.18898,-1.403078,30.17323,1.403078,28.18898,1.403078,30.17323,2.976378,30.17323,2.976378,28.18898,-2.976378,30.17323,-2.976378,28.18898,1.403078,30.17323,1.403078,28.18898,-1.403078,30.17323,-1.403078,28.18898,2.976378,25.73929,-2.976378,25.73929,0.9298205,34.34925,-0.9298205,34.34925,2.976378,25.73929,-2.976378,25.73929,0.9298205,34.34925,-0.9298205,34.34925,-2.976378,25.73929,-0.9298205,34.34925,2.976378,25.73929,0.9298205,34.34925,2.976378,25.73929,-2.976378,25.73929,0.9298205,34.34925,-0.9298205,34.34925,-0.4383216,33.45029,0.4383216,33.45029,-1.403078,24.65317,1.403078,24.65317,-1.403078,24.65317,-0.4383216,33.45029,1.403078,24.65317,0.4383216,33.45029,3.674564,3.674564,3.674564,-3.674564,-3.674564,3.674564,-3.674564,-3.674564,2.490489,3.732287,-2.490489,3.732287,2.18464,7.681157,-2.18464,7.681157,3.674564,-1.058315,-3.674564,-1.058315,2.490489,3.052896,-2.490489,3.052896,3.674564,-1.058315,-3.674564,-1.058315,2.490489,3.052896,-2.490489,3.052896,3.674564,-1.058315,-3.674564,-1.058315,2.490489,3.052896,-2.490489,3.052896,2.490489,3.732287,-2.490489,3.732287,2.18464,7.681157,-2.18464,7.681157,-3.674564,-1.058315,-2.490489,3.052896,3.674564,-1.058315,2.490489,3.052896,2.490489,3.732287,-2.490489,3.732287,2.18464,7.681157,-2.18464,7.681157,-2.490489,3.732287,-2.18464,7.681157,2.490489,3.732287,2.18464,7.681157 + } + UVIndex: *492 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,85,87,89,88,87,90,88,89,91,90,89,92,91,89,93,91,92,85,94,84,95,84,94,96,95,94,97,95,96,98,97,96,93,97,98,99,97,93,92,99,93,100,102,101,103,101,102,104,106,105,107,105,106,108,107,106,109,108,106,110,108,109,111,110,109,108,112,107,113,107,112,111,113,112,109,113,111,114,113,109,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,158,157,159,157,158,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,179,178,181,180,178,182,180,181,183,182,181,184,183,181,185,183,184,179,186,177,187,177,186,188,187,186,189,187,188,190,189,188,185,189,190,191,189,185,184,191,185,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,203,202,205,203,204,206,205,204,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *164 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineSmallA, Model::RootNode + C: "OO",5462336501385050994,0 + + ;Geometry::, Model::Mesh tree_pineSmallA + C: "OO",5016025371879563420,5462336501385050994 + + ;Material::leafsDark, Model::Mesh tree_pineSmallA + C: "OO",3026,5462336501385050994 + + ;Material::woodBarkDark, Model::Mesh tree_pineSmallA + C: "OO",3048,5462336501385050994 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallA.fbx.import new file mode 100644 index 0000000..10b6b87 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cfj4l45h5hey1" +path="res://.godot/imported/tree_pineSmallA.fbx-d14e427fefa114a5ff2ff35156507efe.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallA.fbx" +dest_files=["res://.godot/imported/tree_pineSmallA.fbx-d14e427fefa114a5ff2ff35156507efe.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallB.fbx new file mode 100644 index 0000000..9ea49de --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 167 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineSmallB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineSmallB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5558901295156302510, "Model::tree_pineSmallB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5490634869885783891, "Geometry::", "Mesh" { + Vertices: *456 { + a: 1.15415,5.004587,1.527869,1.113636,5.004587,1.282287,-0.9647585,5.004587,1.527869,-1.035203,5.004587,1.282287,-1.280785,5.004587,1.211843,-1.035203,5.004587,-0.8665517,1.113636,5.004587,-0.8665517,1.384885,5.004587,-1.112133,1.709217,5.004587,-0.7878008,1.709217,5.004587,1.211843,-0.9111993,5.004587,-1.112133,-1.280785,5.004587,-0.8337762,1.574101,2.830795,1.553536,1.384885,2.830795,1.742753,1.113636,5.004587,1.282287,-1.612659,2.830795,-1.327017,1.384885,2.830795,-1.327017,-1.035203,5.004587,-0.8665517,1.113636,5.004587,-0.8665517,-2.038763,2.830795,-0.9810002,-1.035203,5.004587,-0.8665517,-2.038763,2.830795,1.436504,-1.035203,5.004587,1.282287,1.823966,1.075472,1.692036,1.823966,1.075472,-1.620357,1.523384,1.075472,1.992618,1.517441,1.075472,-1.926882,0.4224558,1.075472,0.4224558,-1.303595,1.075472,1.992618,-0.4224558,1.075472,0.4224558,-0.4224558,1.075472,-0.422456,0.4224558,1.075472,-0.422456,-1.473129,1.075472,-1.926882,-1.745534,1.075472,1.550679,-1.745534,1.075472,-1.543841,-1.745534,1.075472,-1.543841,-1.210109,2.830795,-1.041457,-1.745534,1.075472,1.550679,-1.210109,2.830795,1.457193,-1.303595,1.075472,1.992618,-1.745534,1.075472,1.550679,-1.210109,2.830795,1.457193,1.384885,2.830795,1.742753,-1.732514,2.830795,1.742753,1.113636,5.004587,1.282287,-1.035203,5.004587,1.282287,1.574101,2.830795,-0.9810002,1.574101,2.830795,1.553536,1.113636,5.004587,-0.8665517,1.113636,5.004587,1.282287,-1.473129,1.075472,-1.926882,1.517441,1.075472,-1.926882,-1.210109,2.830795,-1.041457,1.288541,2.830795,-1.041457,1.517441,1.075472,-1.926882,1.823966,1.075472,-1.620357,1.288541,2.830795,-1.041457,1.823966,1.075472,1.692036,1.523384,1.075472,1.992618,1.288541,2.830795,1.457193,-2.038763,2.830795,-0.9810002,-1.612659,2.830795,-1.327017,-1.035203,5.004587,-0.8665517,-1.732514,2.830795,1.742753,-2.038763,2.830795,1.436504,-1.035203,5.004587,1.282287,1.523384,1.075472,1.992618,-1.303595,1.075472,1.992618,1.288541,2.830795,1.457193,-1.210109,2.830795,1.457193,1.823966,1.075472,-1.620357,1.823966,1.075472,1.692036,1.288541,2.830795,-1.041457,1.288541,2.830795,1.457193,1.574101,2.830795,1.553536,1.574101,2.830795,-0.9810002,1.384885,2.830795,1.742753,1.384885,2.830795,-1.327017,1.288541,2.830795,1.457193,-1.732514,2.830795,1.742753,-1.210109,2.830795,1.457193,-1.210109,2.830795,-1.041457,-1.612659,2.830795,-1.327017,-2.038763,2.830795,-0.9810002,-2.038763,2.830795,1.436504,1.288541,2.830795,-1.041457,1.384885,2.830795,-1.327017,1.574101,2.830795,-0.9810002,1.113636,5.004587,-0.8665517,-1.745534,1.075472,-1.543841,-1.473129,1.075472,-1.926882,-1.210109,2.830795,-1.041457,1.384885,5.004587,-1.112133,1.709217,5.004587,-0.7878008,-0.5287596,10.08622,0.209063,-0.9111993,5.004587,-1.112133,1.384885,5.004587,-1.112133,-0.5287596,10.08622,0.209063,-1.280785,5.004587,-0.8337762,-0.9111993,5.004587,-1.112133,-0.5287596,10.08622,0.209063,-0.9647585,5.004587,1.527869,-1.280785,5.004587,1.211843,-0.5287596,10.08622,0.209063,-0.5287596,10.08622,0.209063,1.709217,5.004587,-0.7878008,1.709217,5.004587,1.211843,-1.280785,5.004587,-0.8337762,-0.5287596,10.08622,0.209063,-1.280785,5.004587,1.211843,1.15415,5.004587,1.527869,-0.9647585,5.004587,1.527869,-0.5287596,10.08622,0.209063,1.709217,5.004587,1.211843,1.15415,5.004587,1.527869,-0.5287596,10.08622,0.209063,-0.5322944,0.2980225,-0.5322945,-0.4224558,1.075472,-0.422456,-0.5322944,0.2980225,0.5322943,-0.4224558,1.075472,0.4224558,-0.5322944,0.2980225,-0.5322945,0.5322944,0.2980225,-0.5322945,-0.4224558,1.075472,-0.422456,0.4224558,1.075472,-0.422456,0.5322944,0.2980225,-0.5322945,0.5322944,0.2980225,0.5322943,0.4224558,1.075472,-0.422456,0.4224558,1.075472,0.4224558,0.7132744,0,0.7132745,0.7132744,0,-0.7132745,-0.7132744,0,0.7132745,-0.7132744,0,-0.7132745,-0.7132744,0,-0.7132745,-0.5322944,0.2980225,-0.5322945,-0.7132744,0,0.7132745,-0.5322944,0.2980225,0.5322943,0.7132744,0,0.7132745,-0.7132744,0,0.7132745,0.5322944,0.2980225,0.5322943,-0.5322944,0.2980225,0.5322943,-0.7132744,0,-0.7132745,0.7132744,0,-0.7132745,-0.5322944,0.2980225,-0.5322945,0.5322944,0.2980225,-0.5322945,0.5322944,0.2980225,0.5322943,-0.5322944,0.2980225,0.5322943,0.4224558,1.075472,0.4224558,-0.4224558,1.075472,0.4224558,0.7132744,0,-0.7132745,0.7132744,0,0.7132745,0.5322944,0.2980225,-0.5322945,0.5322944,0.2980225,0.5322943 + } + PolygonVertexIndex: *258 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,1,6,-1,6,7,-1,7,8,-1,9,0,-9,10,7,-7,5,10,-7,11,10,-6,4,11,-6,12,14,-14,15,17,-17,18,16,-18,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,26,-26,28,27,-26,29,27,-29,30,29,-29,27,31,-27,32,26,-32,30,32,-32,28,32,-31,33,32,-29,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,59,-59,60,62,-62,63,65,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,78,-77,80,78,-80,81,80,-80,82,81,-80,83,82,-80,84,83,-80,82,77,-86,78,85,-78,81,82,-86,86,88,-88,89,91,-91,92,94,-94,95,97,-97,98,100,-100,101,103,-103,104,106,-106,107,109,-109,110,112,-112,113,115,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *774 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,0,0.2072278,0.9782928,0,0.2072278,0.9782928,0,0.2072278,0.9782928,0,0.2072278,0.9782928,0,0.2072278,0.9782928,0,0.2072278,0.9782928,0.9782928,0.2072277,0,0.9782928,0.2072277,0,0.9782928,0.2072277,0,0.9782928,0.2072277,0,0.9782928,0.2072277,0,0.9782928,0.2072277,0,0,0.45037,-0.8928421,0,0.45037,-0.8928421,0,0.45037,-0.8928421,0,0.45037,-0.8928421,0,0.45037,-0.8928421,0,0.45037,-0.8928421,0.6450937,0.4095223,-0.6450934,0.6450937,0.4095223,-0.6450934,0.6450937,0.4095223,-0.6450934,0.6753426,0.2963528,0.6753426,0.6753426,0.2963528,0.6753426,0.6753426,0.2963528,0.6753426,-0.5982906,0.3149988,-0.736766,-0.5982906,0.3149988,-0.736766,-0.5982906,0.3149988,-0.736766,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8584617,0.2065602,-0.4694426,0.8584617,0.2065602,-0.4694426,0.8584617,0.2065602,-0.4694426,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,0.6447954,0.4104605,-0.6447953,0.6447954,0.4104605,-0.6447953,0.6447954,0.4104605,-0.6447953,0,0.2516287,-0.9678238,0,0.2516287,-0.9678238,0,0.2516287,-0.9678238,-0.5832438,0.2452328,-0.774395,-0.5832438,0.2452328,-0.774395,-0.5832438,0.2452328,-0.774395,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,0.9151784,0.4030491,0,0.9151784,0.4030491,0,0.9151784,0.4030491,0,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,0,0.2512021,0.9679346,0,0.2512021,0.9679346,0,0.2512021,0.9679346,0.4610547,0.3628509,0.8097949,0.4610547,0.3628509,0.8097949,0.4610547,0.3628509,0.8097949,-0.9901669,0.1398912,0,-0.9901669,0.1398912,0,-0.9901669,0.1398912,0,-0.9901669,0.1398912,0,-0.9901669,0.1398912,0,-0.9901669,0.1398912,0,0,0.1398912,-0.9901669,0,0.1398912,-0.9901669,0,0.1398912,-0.9901669,0,0.1398912,-0.9901669,0,0.1398912,-0.9901669,0,0.1398912,-0.9901669,0.9901669,0.1398912,0,0.9901669,0.1398912,0,0.9901669,0.1398912,0,0.9901669,0.1398912,0,0.9901669,0.1398912,0,0.9901669,0.1398912,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8547394,0.5190573,0,-0.8547394,0.5190573,0,-0.8547394,0.5190573,0,-0.8547394,0.5190573,0,-0.8547394,0.5190573,0,-0.8547394,0.5190573,0,0,0.5190578,0.8547392,0,0.5190578,0.8547392,0,0.5190578,0.8547392,0,0.5190578,0.8547392,0,0.5190578,0.8547392,0,0.5190578,0.8547392,0,0.5190573,-0.8547394,0,0.5190573,-0.8547394,0,0.5190573,-0.8547394,0,0.5190573,-0.8547394,0,0.5190573,-0.8547394,0,0.5190573,-0.8547394,0,0.1398913,0.9901669,0,0.1398913,0.9901669,0,0.1398913,0.9901669,0,0.1398913,0.9901669,0,0.1398913,0.9901669,0,0.1398913,0.9901669,0.8547394,0.5190573,0,0.8547394,0.5190573,0,0.8547394,0.5190573,0,0.8547394,0.5190573,0,0.8547394,0.5190573,0,0.8547394,0.5190573,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *304 { + a: 4.543899,6.015231,4.384393,5.048375,-3.798262,6.015231,-4.075603,5.048375,-5.042459,4.771034,-4.075603,-3.411621,4.384393,-3.411621,5.452302,-4.378478,6.729202,-3.101578,6.729202,4.771034,-3.587399,-4.378478,-5.042459,-3.282584,0.05725085,8.825891,-0.996263,8.825891,-0.4695058,17.62321,6.349053,9.820282,-5.452302,9.820282,4.075603,18.56842,-4.384393,18.56842,-3.862206,6.754232,-3.411621,16.18047,5.655528,6.754232,5.048375,16.18047,7.18097,6.661558,7.18097,-6.379358,5.997576,7.844952,5.974178,-7.586151,1.663212,1.663212,-5.132265,7.844952,-1.663212,1.663212,-1.663212,-1.663213,1.663212,-1.663213,-5.799719,-7.586151,-6.87218,6.105038,-6.87218,-6.078114,-6.078114,2.04491,-4.100225,9.269976,6.105038,2.04491,5.736979,9.269976,1.918157,1.850875,-0.542454,1.850875,0.6878518,8.979928,5.452302,9.4811,-6.820921,9.4811,4.384393,18.22924,-4.075603,18.22924,3.862206,9.618696,-6.116284,9.618696,3.411621,18.36683,-5.048375,18.36683,5.799719,0.3638462,-5.974178,0.3638462,4.764207,8.103983,-5.072998,8.103983,1.139839,-0.06393619,-0.5668235,-0.06393619,-0.6878526,7.511114,0.3672797,1.143195,-1.306292,1.143195,-0.4695061,8.378955,3.796284,8.039237,1.635258,8.039237,1.013205,17.05653,0.02850388,7.019927,-1.676619,7.019927,0.6878536,16.16498,5.997576,1.761095,-5.132265,1.761095,5.072998,8.986162,-4.764207,8.986162,6.379358,1.954818,-6.661558,1.954818,4.100225,9.179884,-5.736979,9.179884,6.197249,6.116284,6.197249,-3.862206,5.452302,6.861231,5.452302,-5.224477,5.072998,5.736979,-6.820921,6.861231,-4.764207,5.736979,-4.764207,-4.100225,-6.349053,-5.224477,-8.026625,-3.862206,-8.026625,5.655528,5.072998,-4.100225,1.967911,9.398602,0.4152583,9.398602,0.8897127,18.14548,-0.9704834,0.4185998,-2.820983,0.4185998,-0.5803124,7.899334,-0.7593083,15.11355,-2.565117,15.11355,0.8899982,37.05336,3.587399,17.96738,-5.452302,17.96738,2.081731,38.63895,2.052998,17.71449,0.2314102,17.71449,2.158037,38.35108,1.567634,17.49469,-0.1919261,17.49469,-0.8899984,38.08892,-0.8230828,37.18035,3.101578,15.31965,-4.771034,15.31965,-3.282584,18.75264,0.8230828,38.97697,4.771034,18.75264,4.543899,17.56027,-3.798262,17.56027,-2.081731,38.22948,3.48723,15.64776,0.9725584,15.64776,-2.216309,37.11742,-2.095648,0.8686169,-1.663213,3.95984,2.095647,0.8686169,1.663212,3.95984,2.095647,0.8686169,-2.095647,0.8686169,1.663212,3.95984,-1.663212,3.95984,2.095648,0.8686169,-2.095647,0.8686169,1.663213,3.95984,-1.663212,3.95984,2.808167,2.808167,2.808167,-2.808167,-2.808167,2.808167,-2.808167,-2.808167,-2.808167,-1.4576,-2.095648,-0.08488069,2.808167,-1.4576,2.095647,-0.08488069,2.808167,-1.457601,-2.808167,-1.457601,2.095647,-0.08488174,-2.095647,-0.08488174,2.808167,-1.4576,-2.808167,-1.4576,2.095647,-0.08488094,-2.095647,-0.08488094,2.095647,0.8686169,-2.095647,0.8686169,1.663212,3.95984,-1.663212,3.95984,2.808167,-1.4576,-2.808167,-1.4576,2.095648,-0.08488069,-2.095647,-0.08488069 + } + UVIndex: *258 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,1,6,0,6,7,0,7,8,0,9,0,8,10,7,6,5,10,6,11,10,5,4,11,5,12,14,13,15,17,16,18,16,17,19,21,20,22,20,21,23,25,24,26,24,25,27,26,25,28,27,25,29,27,28,30,29,28,27,31,26,32,26,31,30,32,31,28,32,30,33,32,28,34,32,33,35,37,36,38,36,37,39,41,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,59,58,60,62,61,63,65,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,78,76,80,78,79,81,80,79,82,81,79,83,82,79,84,83,79,82,77,85,78,85,77,81,82,85,86,88,87,89,91,90,92,94,93,95,97,96,98,100,99,101,103,102,104,106,105,107,109,108,110,112,111,113,115,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *86 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineSmallB, Model::RootNode + C: "OO",5558901295156302510,0 + + ;Geometry::, Model::Mesh tree_pineSmallB + C: "OO",5490634869885783891,5558901295156302510 + + ;Material::leafsDark, Model::Mesh tree_pineSmallB + C: "OO",3026,5558901295156302510 + + ;Material::woodBarkDark, Model::Mesh tree_pineSmallB + C: "OO",3048,5558901295156302510 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallB.fbx.import new file mode 100644 index 0000000..d224ca2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c0lsxbynehpjr" +path="res://.godot/imported/tree_pineSmallB.fbx-427e573314359829a6fe246bce5b4b6a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallB.fbx" +dest_files=["res://.godot/imported/tree_pineSmallB.fbx-427e573314359829a6fe246bce5b4b6a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallC.fbx new file mode 100644 index 0000000..2c2653f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallC.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 288 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineSmallC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineSmallC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4755890157576011313, "Model::tree_pineSmallC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5013296623137104865, "Geometry::", "Mesh" { + Vertices: *264 { + a: 1.670001,5.562696,1.320001,-1.320001,5.562696,1.320001,-0.6249999,11.2307,-5.409122E-08,-2.077979,3.315001,-1.534885,-1.07442,5.562696,-1.074419,-2.077979,3.315001,1.534885,-1.07442,5.562696,1.074419,-2.077979,3.315001,-1.534885,1.534885,3.315001,-1.534885,-1.07442,5.562696,-1.074419,1.074419,5.562696,-1.074419,1.78475,1.5,-2.13475,0.5950083,1.5,0.5950083,1.78475,1.5,1.78475,-1.78475,1.5,1.78475,-0.5950083,1.5,0.5950083,-0.5950083,1.5,-0.5950083,0.5950083,1.5,-0.5950083,-1.78475,1.5,-2.13475,-1.78475,1.5,-2.13475,1.78475,1.5,-2.13475,-1.249325,3.315001,-1.249325,1.249325,3.315001,-1.249325,1.534885,3.315001,-1.534885,1.534885,3.315001,1.534885,1.074419,5.562696,-1.074419,1.074419,5.562696,1.074419,-0.6249999,11.2307,-5.409122E-08,1.670001,5.562696,-1.320001,1.670001,5.562696,1.320001,-1.320001,5.562696,-1.320001,-0.6249999,11.2307,-5.409122E-08,-1.320001,5.562696,1.320001,1.534885,3.315001,-1.534885,1.249325,3.315001,1.249325,1.534885,3.315001,1.534885,-2.077979,3.315001,1.534885,-1.249325,3.315001,1.249325,-1.249325,3.315001,-1.249325,1.249325,3.315001,-1.249325,-2.077979,3.315001,-1.534885,-1.320001,5.562696,-1.320001,1.670001,5.562696,-1.320001,-0.6249999,11.2307,-5.409122E-08,1.670001,5.562696,-1.320001,1.074419,5.562696,1.074419,1.670001,5.562696,1.320001,-1.320001,5.562696,1.320001,-1.07442,5.562696,1.074419,-1.07442,5.562696,-1.074419,1.074419,5.562696,-1.074419,-1.320001,5.562696,-1.320001,1.78475,1.5,-2.13475,1.78475,1.5,1.78475,1.249325,3.315001,-1.249325,1.249325,3.315001,1.249325,1.534885,3.315001,1.534885,-2.077979,3.315001,1.534885,1.074419,5.562696,1.074419,-1.07442,5.562696,1.074419,1.78475,1.5,1.78475,-1.78475,1.5,1.78475,1.249325,3.315001,1.249325,-1.249325,3.315001,1.249325,-1.78475,1.5,-2.13475,-1.249325,3.315001,-1.249325,-1.78475,1.5,1.78475,-1.249325,3.315001,1.249325,-0.7497104,0,-0.7497104,0.7497104,0,-0.7497104,-0.5950083,1.5,-0.5950083,0.5950083,1.5,-0.5950083,0.7497104,0,0.7497104,0.7497104,0,-0.7497104,-0.7497104,0,0.7497104,-0.7497104,0,-0.7497104,0.7497104,0,0.7497104,-0.7497104,0,0.7497104,0.5950083,1.5,0.5950083,-0.5950083,1.5,0.5950083,0.7497104,0,-0.7497104,0.7497104,0,0.7497104,0.5950083,1.5,-0.5950083,0.5950083,1.5,0.5950083,-0.7497104,0,-0.7497104,-0.5950083,1.5,-0.5950083,-0.7497104,0,0.7497104,-0.5950083,1.5,0.5950083 + } + PolygonVertexIndex: *162 { + a: 0,2,-2,3,5,-5,6,4,-6,7,9,-9,10,8,-10,11,13,-13,14,12,-14,15,12,-15,16,15,-15,12,17,-12,18,11,-18,16,18,-18,14,18,-17,19,21,-21,22,20,-22,23,25,-25,26,24,-26,27,29,-29,30,32,-32,33,35,-35,36,34,-36,37,34,-37,38,37,-37,34,39,-34,40,33,-40,38,40,-40,36,40,-39,41,43,-43,44,46,-46,47,45,-47,48,45,-48,49,48,-48,45,50,-45,51,44,-51,49,51,-51,47,51,-50,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *486 { + a: 0,0.226817,0.9739375,0,0.226817,0.9739375,0,0.226817,0.9739375,-0.9131191,0.4076928,0,-0.9131191,0.4076928,0,-0.9131191,0.4076928,0,-0.9131191,0.4076928,0,-0.9131191,0.4076928,0,-0.9131191,0.4076928,0,0,0.2006932,-0.9796541,0,0.2006932,-0.9796541,0,0.2006932,-0.9796541,0,0.2006932,-0.9796541,0,0.2006932,-0.9796541,0,0.2006932,-0.9796541,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.438447,-0.898757,0,0.438447,-0.898757,0,0.438447,-0.898757,0,0.438447,-0.898757,0,0.438447,-0.898757,0,0.438447,-0.898757,0.9796541,0.200693,0,0.9796541,0.200693,0,0.9796541,0.200693,0,0.9796541,0.200693,0,0.9796541,0.200693,0,0.9796541,0.200693,0,0.9269007,0.3753066,0,0.9269007,0.3753066,0,0.9269007,0.3753066,0,-0.9925661,0.1217069,0,-0.9925661,0.1217069,0,-0.9925661,0.1217069,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2268169,-0.9739375,0,0.2268169,-0.9739375,0,0.2268169,-0.9739375,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9591361,0.282945,0,0.9591361,0.282945,0,0.9591361,0.282945,0,0.9591361,0.282945,0,0.9591361,0.282945,0,0.9591361,0.282945,0,0,0.2006932,0.9796541,0,0.2006932,0.9796541,0,0.2006932,0.9796541,0,0.2006932,0.9796541,0,0.2006932,0.9796541,0,0.2006932,0.9796541,0,0.282945,0.9591361,0,0.282945,0.9591361,0,0.282945,0.9591361,0,0.282945,0.9591361,0,0.282945,0.9591361,0,0.282945,0.9591361,-0.9591361,0.282945,0,-0.9591361,0.282945,0,-0.9591361,0.282945,0,-0.9591361,0.282945,0,-0.9591361,0.282945,0,-0.9591361,0.282945,0,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0.9947237,0.1025906,0,0.9947237,0.1025906,0,0.9947237,0.1025906,0,0.9947237,0.1025906,0,0.9947237,0.1025906,0,0.9947237,0.1025906,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *176 { + a: 6.574808,20.15087,-5.196856,20.15087,-2.46063,43.06298,-6.042855,8.581944,-4.229998,18.27312,6.042855,8.581944,4.229998,18.27312,8.181021,11.57289,-6.042854,11.57289,4.229999,20.60587,-4.229998,20.60587,7.026575,-8.404528,2.342552,2.342552,7.026575,7.026574,-7.026576,7.026574,-2.342552,2.342552,-2.342552,-2.342552,2.342552,-2.342552,-7.026576,-8.404528,7.026576,1.62268,-7.026575,1.62268,4.918603,9.573298,-4.918602,9.573298,6.042855,11.57289,-6.042855,11.57289,4.229998,20.60587,-4.229998,20.60587,2.129576E-07,41.90672,5.196854,17.83191,-5.196854,17.83191,-5.196854,21.10508,-2.129576E-07,43.58717,5.196854,21.10508,6.042854,-6.042855,4.918602,4.918602,6.042854,6.042855,-8.181021,6.042855,-4.918603,4.918602,-4.918603,-4.918603,4.918602,-4.918603,-8.181021,-6.042855,5.196856,20.15087,-6.574808,20.15087,2.46063,43.06298,6.574808,-5.196854,4.229998,4.229998,6.574808,5.196854,-5.196856,5.196854,-4.229999,4.229998,-4.229999,-4.229998,4.229998,-4.229998,-5.196856,-5.196854,8.404528,3.676055,-7.026574,3.676055,4.918603,11.12617,-4.918602,11.12617,6.042854,11.57289,-8.181021,11.57289,4.229998,20.60587,-4.229999,20.60587,7.026575,3.676055,-7.026576,3.676055,4.918602,11.12617,-4.918603,11.12617,-8.404528,3.676054,-4.918603,11.12617,7.026574,3.676054,4.918602,11.12617,2.951616,-0.302808,-2.951616,-0.302808,2.342552,5.634027,-2.342552,5.634027,2.951616,2.951616,2.951616,-2.951616,-2.951616,2.951616,-2.951616,-2.951616,2.951616,-0.3028081,-2.951616,-0.3028081,2.342552,5.634027,-2.342552,5.634027,2.951616,-0.302808,-2.951616,-0.302808,2.342552,5.634027,-2.342552,5.634027,-2.951616,-0.302808,-2.342552,5.634027,2.951616,-0.302808,2.342552,5.634027 + } + UVIndex: *162 { + a: 0,2,1,3,5,4,6,4,5,7,9,8,10,8,9,11,13,12,14,12,13,15,12,14,16,15,14,12,17,11,18,11,17,16,18,17,14,18,16,19,21,20,22,20,21,23,25,24,26,24,25,27,29,28,30,32,31,33,35,34,36,34,35,37,34,36,38,37,36,34,39,33,40,33,39,38,40,39,36,40,38,41,43,42,44,46,45,47,45,46,48,45,47,49,48,47,45,50,44,51,44,50,49,51,50,47,51,49,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *54 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineSmallC, Model::RootNode + C: "OO",4755890157576011313,0 + + ;Geometry::, Model::Mesh tree_pineSmallC + C: "OO",5013296623137104865,4755890157576011313 + + ;Material::leafsDark, Model::Mesh tree_pineSmallC + C: "OO",3026,4755890157576011313 + + ;Material::woodBarkDark, Model::Mesh tree_pineSmallC + C: "OO",3048,4755890157576011313 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallC.fbx.import new file mode 100644 index 0000000..c2ccbd6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bkchcwfsomrov" +path="res://.godot/imported/tree_pineSmallC.fbx-31d56ec7cc8973184559234c3e009437.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallC.fbx" +dest_files=["res://.godot/imported/tree_pineSmallC.fbx-31d56ec7cc8973184559234c3e009437.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallD.fbx new file mode 100644 index 0000000..8b7d896 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallD.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 377 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineSmallD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineSmallD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5210631710540454641, "Model::tree_pineSmallD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5359827321405448437, "Geometry::", "Mesh" { + Vertices: *264 { + a: 1.534885,3.315001,-1.534885,1.249325,3.315001,1.249325,1.534885,3.315001,1.534885,-1.534885,3.315001,1.534885,-1.249325,3.315001,1.249325,-1.249325,3.315001,-1.249325,1.249325,3.315001,-1.249325,-1.534885,3.315001,-1.534885,-1.534885,3.315001,-1.534885,-1.074419,5.562696,-1.074419,-1.534885,3.315001,1.534885,-1.074419,5.562696,1.074419,-1.534885,3.315001,-1.534885,1.534885,3.315001,-1.534885,-1.074419,5.562696,-1.074419,1.074419,5.562696,-1.074419,-1.78475,1.5,-1.78475,1.78475,1.5,-1.78475,-1.249325,3.315001,-1.249325,1.249325,3.315001,-1.249325,1.78475,1.5,-1.78475,1.78475,1.5,1.78475,1.249325,3.315001,-1.249325,1.249325,3.315001,1.249325,1.320001,5.562696,1.320001,-1.320001,5.562696,1.320001,0,9.555696,7.219114E-15,1.78475,1.5,1.78475,-1.78475,1.5,1.78475,1.249325,3.315001,1.249325,-1.249325,3.315001,1.249325,1.78475,1.5,-1.78475,0.5950081,1.5,0.5950081,1.78475,1.5,1.78475,-1.78475,1.5,1.78475,-0.5950081,1.5,0.5950081,-0.5950081,1.5,-0.5950081,0.5950081,1.5,-0.5950081,-1.78475,1.5,-1.78475,1.320001,5.562696,-1.320001,1.074419,5.562696,1.074419,1.320001,5.562696,1.320001,-1.320001,5.562696,1.320001,-1.074419,5.562696,1.074419,-1.074419,5.562696,-1.074419,1.074419,5.562696,-1.074419,-1.320001,5.562696,-1.320001,-1.320001,5.562696,-1.320001,0,9.555696,7.219114E-15,-1.320001,5.562696,1.320001,0,9.555696,7.219114E-15,1.320001,5.562696,-1.320001,1.320001,5.562696,1.320001,-1.78475,1.5,-1.78475,-1.249325,3.315001,-1.249325,-1.78475,1.5,1.78475,-1.249325,3.315001,1.249325,1.534885,3.315001,-1.534885,1.534885,3.315001,1.534885,1.074419,5.562696,-1.074419,1.074419,5.562696,1.074419,-1.320001,5.562696,-1.320001,1.320001,5.562696,-1.320001,0,9.555696,7.219114E-15,1.534885,3.315001,1.534885,-1.534885,3.315001,1.534885,1.074419,5.562696,1.074419,-1.074419,5.562696,1.074419,-0.7497102,0,-0.7497102,0.7497102,0,-0.7497102,-0.5950081,1.5,-0.5950081,0.5950081,1.5,-0.5950081,0.7497102,0,0.7497102,-0.7497102,0,0.7497102,0.5950081,1.5,0.5950081,-0.5950081,1.5,0.5950081,0.7497102,0,0.7497102,0.7497102,0,-0.7497102,-0.7497102,0,0.7497102,-0.7497102,0,-0.7497102,-0.7497102,0,-0.7497102,-0.5950081,1.5,-0.5950081,-0.7497102,0,0.7497102,-0.5950081,1.5,0.5950081,0.7497102,0,-0.7497102,0.7497102,0,0.7497102,0.5950081,1.5,-0.5950081,0.5950081,1.5,0.5950081 + } + PolygonVertexIndex: *162 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,1,6,-1,7,0,-7,5,7,-7,3,7,-6,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,29,-29,30,28,-30,31,33,-33,34,32,-34,35,32,-35,36,35,-35,32,37,-32,38,31,-38,36,38,-38,34,38,-37,39,41,-41,42,40,-42,43,40,-43,44,43,-43,40,45,-40,46,39,-46,44,46,-46,42,46,-45,47,49,-49,50,52,-52,53,55,-55,56,54,-56,57,59,-59,60,58,-60,61,63,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *486 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9796541,0.200693,0,-0.9796541,0.200693,0,-0.9796541,0.200693,0,-0.9796541,0.200693,0,-0.9796541,0.200693,0,-0.9796541,0.200693,0,0,0.200693,-0.9796541,0,0.200693,-0.9796541,0,0.200693,-0.9796541,0,0.200693,-0.9796541,0,0.200693,-0.9796541,0,0.200693,-0.9796541,0,0.282945,-0.9591361,0,0.282945,-0.9591361,0,0.282945,-0.9591361,0,0.282945,-0.9591361,0,0.282945,-0.9591361,0,0.282945,-0.9591361,0.9591361,0.282945,0,0.9591361,0.282945,0,0.9591361,0.282945,0,0.9591361,0.282945,0,0.9591361,0.282945,0,0.9591361,0.282945,0,0,0.313873,0.9494649,0,0.313873,0.9494649,0,0.313873,0.9494649,0,0.282945,0.9591361,0,0.282945,0.9591361,0,0.282945,0.9591361,0,0.282945,0.9591361,0,0.282945,0.9591361,0,0.282945,0.9591361,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9494649,0.313873,0,-0.9494649,0.313873,0,-0.9494649,0.313873,0,0.9494649,0.313873,0,0.9494649,0.313873,0,0.9494649,0.313873,0,-0.9591361,0.282945,0,-0.9591361,0.282945,0,-0.9591361,0.282945,0,-0.9591361,0.282945,0,-0.9591361,0.282945,0,-0.9591361,0.282945,0,0.9796541,0.200693,0,0.9796541,0.200693,0,0.9796541,0.200693,0,0.9796541,0.200693,0,0.9796541,0.200693,0,0.9796541,0.200693,0,0,0.313873,-0.9494649,0,0.313873,-0.9494649,0,0.313873,-0.9494649,0,0.200693,0.9796541,0,0.200693,0.9796541,0,0.200693,0.9796541,0,0.200693,0.9796541,0,0.200693,0.9796541,0,0.200693,0.9796541,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,0.1025906,-0.9947237,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0,0.1025906,0.9947237,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0,-0.9947237,0.1025906,0,0.9947237,0.1025906,0,0.9947237,0.1025906,0,0.9947237,0.1025906,0,0.9947237,0.1025906,0,0.9947237,0.1025906,0,0.9947237,0.1025906,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *176 { + a: 6.042854,-6.042854,4.918602,4.918602,6.042854,6.042854,-6.042854,6.042854,-4.918602,4.918602,-4.918602,-4.918602,4.918602,-4.918602,-6.042854,-6.042854,-6.042854,11.57289,-4.229998,20.60587,6.042854,11.57289,4.229998,20.60587,6.042854,11.57289,-6.042854,11.57289,4.229998,20.60587,-4.229998,20.60587,7.026575,3.676055,-7.026575,3.676055,4.918602,11.12617,-4.918602,11.12617,7.026575,3.676055,-7.026575,3.676055,4.918602,11.12617,-4.918602,11.12617,5.196855,19.16249,-5.196855,19.16249,0,35.71968,7.026575,3.676055,-7.026575,3.676055,4.918602,11.12617,-4.918602,11.12617,7.026575,-7.026575,2.342552,2.342552,7.026575,7.026575,-7.026575,7.026575,-2.342552,2.342552,-2.342552,-2.342552,2.342552,-2.342552,-7.026575,-7.026575,5.196855,-5.196855,4.229998,4.229998,5.196855,5.196855,-5.196855,5.196855,-4.229998,4.229998,-4.229998,-4.229998,4.229998,-4.229998,-5.196855,-5.196855,-5.196855,19.16249,2.842171E-14,35.71968,5.196855,19.16249,-2.842171E-14,35.71968,5.196855,19.16249,-5.196855,19.16249,-7.026575,3.676055,-4.918602,11.12617,7.026575,3.676055,4.918602,11.12617,6.042854,11.57289,-6.042854,11.57289,4.229998,20.60587,-4.229998,20.60587,5.196855,19.16249,-5.196855,19.16249,0,35.71968,6.042854,11.57289,-6.042854,11.57289,4.229998,20.60587,-4.229998,20.60587,2.951615,-0.3028079,-2.951615,-0.3028079,2.342552,5.634028,-2.342552,5.634028,2.951615,-0.3028079,-2.951615,-0.3028079,2.342552,5.634028,-2.342552,5.634028,2.951615,2.951615,2.951615,-2.951615,-2.951615,2.951615,-2.951615,-2.951615,-2.951615,-0.3028079,-2.342552,5.634028,2.951615,-0.3028079,2.342552,5.634028,2.951615,-0.3028079,-2.951615,-0.3028079,2.342552,5.634028,-2.342552,5.634028 + } + UVIndex: *162 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,1,6,0,7,0,6,5,7,6,3,7,5,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,29,28,30,28,29,31,33,32,34,32,33,35,32,34,36,35,34,32,37,31,38,31,37,36,38,37,34,38,36,39,41,40,42,40,41,43,40,42,44,43,42,40,45,39,46,39,45,44,46,45,42,46,44,47,49,48,50,52,51,53,55,54,56,54,55,57,59,58,60,58,59,61,63,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *54 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineSmallD, Model::RootNode + C: "OO",5210631710540454641,0 + + ;Geometry::, Model::Mesh tree_pineSmallD + C: "OO",5359827321405448437,5210631710540454641 + + ;Material::leafsDark, Model::Mesh tree_pineSmallD + C: "OO",3026,5210631710540454641 + + ;Material::woodBarkDark, Model::Mesh tree_pineSmallD + C: "OO",3048,5210631710540454641 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallD.fbx.import new file mode 100644 index 0000000..3110fdf --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://s3il2a7gnpmk" +path="res://.godot/imported/tree_pineSmallD.fbx-536b285a5ee8a7615b1c6f5a5d47bbc8.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineSmallD.fbx" +dest_files=["res://.godot/imported/tree_pineSmallD.fbx-536b285a5ee8a7615b1c6f5a5d47bbc8.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA.fbx new file mode 100644 index 0000000..bbce293 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 471 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineTallA.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineTallA.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5748337669486214027, "Model::tree_pineTallA", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4891175452227395374, "Geometry::", "Mesh" { + Vertices: *408 { + a: 0.46371,0,0.46371,0.46371,0,-0.46371,-0.46371,0,0.46371,-0.46371,0,-0.46371,-0.46371,0,-0.46371,0.46371,0,-0.46371,-0.24505,6.28531,-0.2450501,0.24505,6.28531,-0.2450501,0.46371,0,-0.46371,0.46371,0,0.46371,0.24505,6.28531,-0.2450501,0.24505,6.28531,0.24505,0.46371,0,0.46371,-0.46371,0,0.46371,0.24505,6.28531,0.24505,-0.24505,6.28531,0.24505,-0.46371,0,-0.46371,-0.24505,6.28531,-0.2450501,-0.46371,0,0.46371,-0.24505,6.28531,0.24505,-1.777706,6.28531,-1.597324,-1.242281,8.040632,-1.09494,-1.777706,6.28531,1.497197,-1.242281,8.040632,1.40371,-1.764686,8.040632,1.68927,-2.070935,8.040632,1.383021,-1.067375,10.21443,1.228804,1.541929,8.040632,1.500054,1.541929,8.040632,-1.034483,1.352713,8.040632,1.68927,1.352713,8.040632,-1.3805,1.256369,8.040632,1.40371,-1.764686,8.040632,1.68927,-1.242281,8.040632,1.40371,-1.242281,8.040632,-1.09494,-1.644831,8.040632,-1.3805,-2.070935,8.040632,-1.034483,-2.070935,8.040632,1.383021,1.256369,8.040632,-1.09494,-2.070935,8.040632,-1.034483,-1.067375,10.21443,-0.9200345,-2.070935,8.040632,1.383021,-1.067375,10.21443,1.228804,-1.644831,8.040632,-1.3805,1.352713,8.040632,-1.3805,-1.067375,10.21443,-0.9200345,1.081464,10.21443,-0.9200345,1.541929,8.040632,-1.034483,1.541929,8.040632,1.500054,1.081464,10.21443,-0.9200345,1.081464,10.21443,1.228804,1.121978,10.21443,1.474386,1.081464,10.21443,1.228804,-0.9969307,10.21443,1.474386,-1.067375,10.21443,1.228804,-1.312957,10.21443,1.15836,-1.067375,10.21443,-0.9200345,1.081464,10.21443,-0.9200345,1.352713,10.21443,-1.165616,1.677045,10.21443,-0.8412835,1.677045,10.21443,1.15836,-0.9433715,10.21443,-1.165616,-1.312957,10.21443,-0.887259,1.485269,6.28531,-1.980365,1.791794,6.28531,-1.67384,1.256369,8.040632,-1.09494,1.081464,10.21443,1.228804,1.541929,8.040632,1.500054,1.352713,8.040632,1.68927,1.791794,6.28531,-1.67384,1.791794,6.28531,1.638553,1.256369,8.040632,-1.09494,1.256369,8.040632,1.40371,1.352713,8.040632,1.68927,-1.764686,8.040632,1.68927,1.081464,10.21443,1.228804,-1.067375,10.21443,1.228804,1.491212,6.28531,1.939135,-1.335767,6.28531,1.939135,1.256369,8.040632,1.40371,-1.242281,8.040632,1.40371,-2.070935,8.040632,-1.034483,-1.644831,8.040632,-1.3805,-1.067375,10.21443,-0.9200345,1.791794,6.28531,1.638553,1.791794,6.28531,-1.67384,1.491212,6.28531,1.939135,1.485269,6.28531,-1.980365,0.24505,6.28531,0.24505,-1.335767,6.28531,1.939135,-0.24505,6.28531,0.24505,-0.24505,6.28531,-0.2450501,0.24505,6.28531,-0.2450501,-1.505301,6.28531,-1.980365,-1.777706,6.28531,1.497197,-1.777706,6.28531,-1.597324,1.791794,6.28531,1.638553,1.491212,6.28531,1.939135,1.256369,8.040632,1.40371,1.352713,8.040632,-1.3805,1.541929,8.040632,-1.034483,1.081464,10.21443,-0.9200345,-1.777706,6.28531,-1.597324,-1.505301,6.28531,-1.980365,-1.242281,8.040632,-1.09494,-1.335767,6.28531,1.939135,-1.777706,6.28531,1.497197,-1.242281,8.040632,1.40371,-1.505301,6.28531,-1.980365,1.485269,6.28531,-1.980365,-1.242281,8.040632,-1.09494,1.256369,8.040632,-1.09494,-0.9969307,10.21443,1.474386,-1.312957,10.21443,1.15836,-0.5609317,15.29606,0.1555803,-1.312957,10.21443,-0.887259,-0.5609317,15.29606,0.1555803,-1.312957,10.21443,1.15836,-1.312957,10.21443,-0.887259,-0.9433715,10.21443,-1.165616,-0.5609317,15.29606,0.1555803,-0.9433715,10.21443,-1.165616,1.352713,10.21443,-1.165616,-0.5609317,15.29606,0.1555803,1.352713,10.21443,-1.165616,1.677045,10.21443,-0.8412835,-0.5609317,15.29606,0.1555803,-0.5609317,15.29606,0.1555803,1.677045,10.21443,-0.8412835,1.677045,10.21443,1.15836,1.121978,10.21443,1.474386,-0.9969307,10.21443,1.474386,-0.5609317,15.29606,0.1555803,1.677045,10.21443,1.15836,1.121978,10.21443,1.474386,-0.5609317,15.29606,0.1555803 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,29,-29,30,28,-30,31,30,-30,32,31,-30,33,31,-33,34,33,-33,35,34,-33,36,35,-33,37,36,-33,35,30,-39,31,38,-31,34,35,-39,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,54,-54,56,54,-56,52,57,-52,57,58,-52,58,59,-52,60,51,-60,61,58,-58,56,61,-58,62,61,-57,55,62,-57,63,65,-65,66,68,-68,69,71,-71,72,70,-72,73,75,-75,76,74,-76,77,79,-79,80,78,-80,81,83,-83,84,86,-86,87,85,-87,88,87,-87,89,88,-87,90,88,-90,91,90,-90,88,92,-88,93,87,-93,91,93,-93,89,93,-92,94,93,-90,95,93,-95,96,98,-98,99,101,-101,102,104,-104,105,107,-107,108,110,-110,111,109,-111,112,114,-114,115,117,-117,118,120,-120,121,123,-123,124,126,-126,127,129,-129,130,132,-132,133,135,-135 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.03476801,-0.9993954,0,0.03476801,-0.9993954,0,0.03476801,-0.9993954,0,0.03476801,-0.9993954,0,0.03476801,-0.9993954,0,0.03476801,-0.9993954,0.9993954,0.03476802,0,0.9993954,0.03476802,0,0.9993954,0.03476802,0,0.9993954,0.03476802,0,0.9993954,0.03476802,0,0.9993954,0.03476802,0,0,0.03476802,0.9993954,0,0.03476802,0.9993954,0,0.03476802,0.9993954,0,0.03476802,0.9993954,0,0.03476802,0.9993954,0,0.03476802,0.9993954,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6450937,0.4095224,-0.6450934,0.6450937,0.4095224,-0.6450934,0.6450937,0.4095224,-0.6450934,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,-0.5982906,0.3149987,-0.736766,-0.5982906,0.3149987,-0.736766,-0.5982906,0.3149987,-0.736766,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6753426,0.2963529,0.6753426,0.6753426,0.2963529,0.6753426,0.6753426,0.2963529,0.6753426,0.8584617,0.2065601,-0.4694426,0.8584617,0.2065601,-0.4694426,0.8584617,0.2065601,-0.4694426,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,-0.5832438,0.2452328,-0.774395,-0.5832438,0.2452328,-0.774395,-0.5832438,0.2452328,-0.774395,0,0.2516287,-0.9678238,0,0.2516287,-0.9678238,0,0.2516287,-0.9678238,0.6447954,0.4104606,-0.6447952,0.6447954,0.4104606,-0.6447952,0.6447954,0.4104606,-0.6447952,0.9151784,0.4030491,0,0.9151784,0.4030491,0,0.9151784,0.4030491,0,0,0.2512022,0.9679346,0,0.2512022,0.9679346,0,0.2512022,0.9679346,0.4610547,0.3628509,0.8097949,0.4610547,0.3628509,0.8097949,0.4610547,0.3628509,0.8097949 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *272 { + a: 1.82563,1.82563,1.82563,-1.82563,-1.82563,1.82563,-1.82563,-1.82563,1.82563,-0.06347352,-1.82563,-0.06347352,0.9647637,24.69681,-0.9647638,24.69681,1.82563,-0.06347355,-1.82563,-0.06347355,0.9647642,24.69681,-0.9647638,24.69681,1.82563,-0.06347355,-1.82563,-0.06347355,0.9647638,24.69681,-0.9647637,24.69681,-1.82563,-0.06347355,-0.9647642,24.69681,1.82563,-0.06347355,0.9647638,24.69681,-6.288675,21.62673,-4.310787,28.85179,5.894475,21.62673,5.526417,28.85179,-0.2099495,26.23587,-1.915072,26.23587,0.4494003,35.38092,6.070588,5.905723,6.070588,-4.072768,5.325641,6.650669,5.325641,-5.435039,4.946335,5.526417,-6.947583,6.650669,-4.890869,5.526417,-4.890869,-4.310787,-6.475715,-5.435039,-8.153287,-4.072768,-8.153287,5.444965,4.946335,-4.310787,-4.072768,25.32357,-3.622183,34.74981,5.444965,25.32357,4.837813,34.74981,6.475715,29.84258,-5.325641,29.84258,4.202265,38.59071,-4.257731,38.59071,4.072768,29.71087,-5.905723,29.71087,3.622183,38.45901,-4.837813,38.45901,4.417237,5.804669,4.257731,4.837813,-3.924924,5.804669,-4.202265,4.837813,-5.169121,4.560472,-4.202265,-3.622183,4.257731,-3.622183,5.325641,-4.58904,6.60254,-3.31214,6.60254,4.560472,-3.714061,-4.58904,-5.169121,-3.493146,1.378292,18.62411,-0.3283701,18.62411,-0.4493992,26.19916,-0.4101794,37.63217,0.1165772,28.83485,-0.9369367,28.83485,6.58992,21.61054,-6.450996,21.61054,4.310787,28.83561,-5.526417,28.83561,5.325641,29.59066,-6.947583,29.59066,4.257731,38.3388,-4.202265,38.3388,5.870914,21.4413,-5.258926,21.4413,4.946335,28.66637,-4.890869,28.66637,3.761875,27.42959,1.600849,27.42959,0.9787962,36.44688,7.054308,6.450996,7.054308,-6.58992,5.870914,7.63439,5.847516,-7.796713,0.9647638,0.9647638,-5.258926,7.63439,-0.9647637,0.9647638,-0.9647637,-0.9647642,0.9647638,-0.9647642,-5.926381,-7.796713,-6.998842,5.894475,-6.998842,-6.288675,0.4266061,20.80364,-1.246966,20.80364,-0.4101798,28.0394,2.213426,29.46951,0.6607731,29.46951,1.135227,38.21639,-1.068671,19.28062,-2.91917,19.28062,-0.6784997,26.76135,1.679704,21.74844,-0.7809073,21.74844,0.4493985,28.87749,5.926381,18.58225,-5.847516,18.58225,4.890869,26.32239,-4.946335,26.32239,1.32918,37.43451,-0.4303795,37.43451,-1.128452,58.02874,-3.493146,39.02428,0.6125208,59.24861,4.560472,39.02428,2.027497,37.5394,0.2059089,37.5394,2.132536,58.17599,3.714061,37.7656,-5.325641,37.7656,2.208393,58.43716,-0.520855,33.79289,-2.326664,33.79289,1.128452,55.7327,-0.6125208,56.00278,3.31214,34.14209,-4.560472,34.14209,4.417237,37.46664,-3.924924,37.46664,-2.208393,58.13584,3.481339,34.85017,0.9666674,34.85017,-2.2222,56.31983 + } + UVIndex: *234 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,29,28,30,28,29,31,30,29,32,31,29,33,31,32,34,33,32,35,34,32,36,35,32,37,36,32,35,30,38,31,38,30,34,35,38,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,54,53,56,54,55,52,57,51,57,58,51,58,59,51,60,51,59,61,58,57,56,61,57,62,61,56,55,62,56,63,65,64,66,68,67,69,71,70,72,70,71,73,75,74,76,74,75,77,79,78,80,78,79,81,83,82,84,86,85,87,85,86,88,87,86,89,88,86,90,88,89,91,90,89,88,92,87,93,87,92,91,93,92,89,93,91,94,93,89,95,93,94,96,98,97,99,101,100,102,104,103,105,107,106,108,110,109,111,109,110,112,114,113,115,117,116,118,120,119,121,123,122,124,126,125,127,129,128,130,132,131,133,135,134 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineTallA, Model::RootNode + C: "OO",5748337669486214027,0 + + ;Geometry::, Model::Mesh tree_pineTallA + C: "OO",4891175452227395374,5748337669486214027 + + ;Material::woodBarkDark, Model::Mesh tree_pineTallA + C: "OO",3048,5748337669486214027 + + ;Material::leafsDark, Model::Mesh tree_pineTallA + C: "OO",3026,5748337669486214027 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA.fbx.import new file mode 100644 index 0000000..37626b7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://betolc7hhdykb" +path="res://.godot/imported/tree_pineTallA.fbx-cded9fe549135cc822d925df98890f4a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA.fbx" +dest_files=["res://.godot/imported/tree_pineTallA.fbx-cded9fe549135cc822d925df98890f4a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA_detailed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA_detailed.fbx new file mode 100644 index 0000000..e20a8a7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA_detailed.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 572 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineTallA_detailed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineTallA_detailed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5180735625048683458, "Model::tree_pineTallA_detailed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4647715648669762556, "Geometry::", "Mesh" { + Vertices: *672 { + a: 0.46371,1,-0.46371,-0.226523,4.441597,-0.3213268,-0.46371,1,-0.46371,-0.24505,6.28531,-0.2450501,-0.226523,4.841255,-0.3047924,0.173477,4.841255,-0.3047924,0.173477,4.441597,-0.3213268,0.24505,6.28531,-0.2450501,0.24505,6.28531,-0.2450501,0.3822127,2.9699,-0.2172101,0.24505,6.28531,0.24505,0.3822127,2.9699,0.1827899,0.3987471,2.570242,0.1827899,0.3987471,2.570242,-0.2172101,0.46371,1,-0.46371,0.46371,1,0.46371,-0.46371,1,0.46371,0.2122833,5.140535,0.2924108,0.46371,1,0.46371,0.24505,6.28531,0.24505,0.2122833,5.540194,0.2758764,-0.1877167,5.540194,0.2758764,-0.1877167,5.140535,0.2924108,-0.24505,6.28531,0.24505,-0.46371,1,-0.46371,-0.24505,6.28531,-0.2450501,-0.46371,1,0.46371,-0.24505,6.28531,0.24505,0.695565,0,0.695565,0.695565,0,-0.695565,-0.695565,0,0.695565,-0.695565,0,-0.695565,-0.695565,0,-0.695565,-0.46371,1,-0.46371,-0.695565,0,0.695565,-0.46371,1,0.46371,0.695565,0,-0.695565,0.695565,0,0.695565,0.46371,1,-0.46371,0.46371,1,0.46371,-0.695565,0,-0.695565,0.695565,0,-0.695565,-0.46371,1,-0.46371,0.46371,1,-0.46371,0.695565,0,0.695565,-0.695565,0,0.695565,0.46371,1,0.46371,-0.46371,1,0.46371,-0.126523,4.87019,-1.004194,0.07347699,4.87019,-1.004194,-0.126523,5.070019,-0.9959269,0.07347699,5.070019,-0.9959269,0.173477,4.441597,-0.3213268,0.07347699,4.87019,-1.004194,-0.226523,4.441597,-0.3213268,-0.126523,4.87019,-1.004194,0.07347699,4.87019,-1.004194,0.173477,4.441597,-0.3213268,0.07347699,5.070019,-0.9959269,0.173477,4.841255,-0.3047924,-0.126523,4.87019,-1.004194,-0.126523,5.070019,-0.9959269,-0.226523,4.441597,-0.3213268,-0.226523,4.841255,-0.3047924,0.173477,4.841255,-0.3047924,-0.226523,4.841255,-0.3047924,0.07347699,5.070019,-0.9959269,-0.126523,5.070019,-0.9959269,0.3987471,2.570242,-0.2172101,1.081614,2.998835,-0.1172101,0.3822127,2.9699,-0.2172101,1.073347,3.198664,-0.1172101,1.073347,3.198664,-0.1172101,1.081614,2.998835,-0.1172101,1.073347,3.198664,0.08278988,1.081614,2.998835,0.08278988,1.081614,2.998835,0.08278988,1.081614,2.998835,-0.1172101,0.3987471,2.570242,0.1827899,0.3987471,2.570242,-0.2172101,1.073347,3.198664,-0.1172101,1.073347,3.198664,0.08278988,0.3822127,2.9699,-0.2172101,0.3822127,2.9699,0.1827899,0.3987471,2.570242,0.1827899,0.3822127,2.9699,0.1827899,1.081614,2.998835,0.08278988,1.073347,3.198664,0.08278988,0.2122833,5.540194,0.2758764,0.1122833,5.768957,0.9670109,-0.1877167,5.540194,0.2758764,-0.08771666,5.768957,0.9670109,0.2122833,5.540194,0.2758764,0.2122833,5.140535,0.2924108,0.1122833,5.768957,0.9670109,0.1122833,5.569128,0.9752781,0.2122833,5.140535,0.2924108,-0.1877167,5.140535,0.2924108,0.1122833,5.569128,0.9752781,-0.08771666,5.569128,0.9752781,0.1122833,5.569128,0.9752781,-0.08771666,5.569128,0.9752781,0.1122833,5.768957,0.9670109,-0.08771666,5.768957,0.9670109,-0.1877167,5.540194,0.2758764,-0.08771666,5.768957,0.9670109,-0.1877167,5.140535,0.2924108,-0.08771666,5.569128,0.9752781,-1.777706,6.28531,-1.597324,-1.242281,8.040632,-1.09494,-1.777706,6.28531,1.497197,-1.242281,8.040632,1.40371,-1.764686,8.040632,1.68927,-2.070935,8.040632,1.383021,-1.067375,10.21443,1.228804,1.541929,8.040632,1.500054,1.541929,8.040632,-1.034483,1.352713,8.040632,1.68927,1.352713,8.040632,-1.3805,1.256369,8.040632,1.40371,-1.764686,8.040632,1.68927,-1.242281,8.040632,1.40371,-1.242281,8.040632,-1.09494,-1.644831,8.040632,-1.3805,-2.070935,8.040632,-1.034483,-2.070935,8.040632,1.383021,1.256369,8.040632,-1.09494,-2.070935,8.040632,-1.034483,-1.067375,10.21443,-0.9200345,-2.070935,8.040632,1.383021,-1.067375,10.21443,1.228804,-1.644831,8.040632,-1.3805,1.352713,8.040632,-1.3805,-1.067375,10.21443,-0.9200345,1.081464,10.21443,-0.9200345,1.541929,8.040632,-1.034483,1.541929,8.040632,1.500054,1.081464,10.21443,-0.9200345,1.081464,10.21443,1.228804,1.121978,10.21443,1.474386,1.081464,10.21443,1.228804,-0.9969307,10.21443,1.474386,-1.067375,10.21443,1.228804,-1.312957,10.21443,1.15836,-1.067375,10.21443,-0.9200345,1.081464,10.21443,-0.9200345,1.352713,10.21443,-1.165616,1.677045,10.21443,-0.8412835,1.677045,10.21443,1.15836,-0.9433715,10.21443,-1.165616,-1.312957,10.21443,-0.887259,1.485269,6.28531,-1.980365,1.791794,6.28531,-1.67384,1.256369,8.040632,-1.09494,1.081464,10.21443,1.228804,1.541929,8.040632,1.500054,1.352713,8.040632,1.68927,1.791794,6.28531,-1.67384,1.791794,6.28531,1.638553,1.256369,8.040632,-1.09494,1.256369,8.040632,1.40371,1.352713,8.040632,1.68927,-1.764686,8.040632,1.68927,1.081464,10.21443,1.228804,-1.067375,10.21443,1.228804,1.491212,6.28531,1.939135,-1.335767,6.28531,1.939135,1.256369,8.040632,1.40371,-1.242281,8.040632,1.40371,-2.070935,8.040632,-1.034483,-1.644831,8.040632,-1.3805,-1.067375,10.21443,-0.9200345,1.791794,6.28531,1.638553,1.791794,6.28531,-1.67384,1.491212,6.28531,1.939135,1.485269,6.28531,-1.980365,0.24505,6.28531,0.24505,-1.335767,6.28531,1.939135,-0.24505,6.28531,0.24505,-0.24505,6.28531,-0.2450501,0.24505,6.28531,-0.2450501,-1.505301,6.28531,-1.980365,-1.777706,6.28531,1.497197,-1.777706,6.28531,-1.597324,1.791794,6.28531,1.638553,1.491212,6.28531,1.939135,1.256369,8.040632,1.40371,1.352713,8.040632,-1.3805,1.541929,8.040632,-1.034483,1.081464,10.21443,-0.9200345,-1.777706,6.28531,-1.597324,-1.505301,6.28531,-1.980365,-1.242281,8.040632,-1.09494,-1.335767,6.28531,1.939135,-1.777706,6.28531,1.497197,-1.242281,8.040632,1.40371,-1.505301,6.28531,-1.980365,1.485269,6.28531,-1.980365,-1.242281,8.040632,-1.09494,1.256369,8.040632,-1.09494,-0.9969307,10.21443,1.474386,-1.312957,10.21443,1.15836,-0.5609317,15.29606,0.1555803,-1.312957,10.21443,-0.887259,-0.5609317,15.29606,0.1555803,-1.312957,10.21443,1.15836,-1.312957,10.21443,-0.887259,-0.9433715,10.21443,-1.165616,-0.5609317,15.29606,0.1555803,-0.9433715,10.21443,-1.165616,1.352713,10.21443,-1.165616,-0.5609317,15.29606,0.1555803,1.352713,10.21443,-1.165616,1.677045,10.21443,-0.8412835,-0.5609317,15.29606,0.1555803,-0.5609317,15.29606,0.1555803,1.677045,10.21443,-0.8412835,1.677045,10.21443,1.15836,1.121978,10.21443,1.474386,-0.9969307,10.21443,1.474386,-0.5609317,15.29606,0.1555803,1.677045,10.21443,1.15836,1.121978,10.21443,1.474386,-0.5609317,15.29606,0.1555803 + } + PolygonVertexIndex: *402 { + a: 0,2,-2,3,1,-3,4,1,-4,5,4,-4,1,6,-1,7,0,-7,5,7,-7,3,7,-6,8,10,-10,11,9,-11,12,11,-11,9,13,-9,8,13,-15,15,14,-14,12,15,-14,10,15,-13,16,18,-18,19,17,-19,20,17,-20,21,20,-20,17,22,-17,23,16,-23,21,23,-23,19,23,-22,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,117,-117,118,116,-118,119,118,-118,120,119,-118,121,119,-121,122,121,-121,123,122,-121,124,123,-121,125,124,-121,123,118,-127,119,126,-119,122,123,-127,127,129,-129,130,128,-130,131,133,-133,134,132,-134,135,137,-137,138,136,-138,139,141,-141,142,140,-142,143,142,-142,144,142,-144,140,145,-140,145,146,-140,146,147,-140,148,139,-148,149,146,-146,144,149,-146,150,149,-145,143,150,-145,151,153,-153,154,156,-156,157,159,-159,160,158,-160,161,163,-163,164,162,-164,165,167,-167,168,166,-168,169,171,-171,172,174,-174,175,173,-175,176,175,-175,177,176,-175,178,176,-178,179,178,-178,176,180,-176,181,175,-181,179,181,-181,177,181,-180,182,181,-178,183,181,-183,184,186,-186,187,189,-189,190,192,-192,193,195,-195,196,198,-198,199,197,-199,200,202,-202,203,205,-205,206,208,-208,209,211,-211,212,214,-214,215,217,-217,218,220,-220,221,223,-223 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1206 { + a: 0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,0.0413359,-0.9991453,0,-0.8469928,-0.5316045,0,-0.8469928,-0.5316045,0,-0.8469928,-0.5316045,0,-0.8469928,-0.5316045,0,-0.8469928,-0.5316045,0,-0.8469928,-0.5316045,0.9899495,0.005845778,-0.1413005,0.9899495,0.005845778,-0.1413005,0.9899495,0.005845778,-0.1413005,0.9899495,0.005845778,-0.1413005,0.9899495,0.005845778,-0.1413005,0.9899495,0.005845778,-0.1413005,-0.9899495,0.005845778,-0.1413005,-0.9899495,0.005845778,-0.1413005,-0.9899495,0.005845778,-0.1413005,-0.9899495,0.005845778,-0.1413005,-0.9899495,0.005845778,-0.1413005,-0.9899495,0.005845778,-0.1413005,0,0.9493463,0.3142318,0,0.9493463,0.3142318,0,0.9493463,0.3142318,0,0.9493463,0.3142318,0,0.9493463,0.3142318,0,0.9493463,0.3142318,0.1413005,0.005845781,-0.9899495,0.1413005,0.005845781,-0.9899495,0.1413005,0.005845781,-0.9899495,0.1413005,0.005845781,-0.9899495,0.1413005,0.005845781,-0.9899495,0.1413005,0.005845781,-0.9899495,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.9991453,0.04133591,0,0.5316045,-0.8469927,0,0.5316045,-0.8469927,0,0.5316045,-0.8469927,0,0.5316045,-0.8469927,0,0.5316045,-0.8469927,0,0.5316045,-0.8469927,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0,0.1413005,0.005845781,0.9899495,0.1413005,0.005845781,0.9899495,0.1413005,0.005845781,0.9899495,0.1413005,0.005845781,0.9899495,0.1413005,0.005845781,0.9899495,0.1413005,0.005845781,0.9899495,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,0.9899495,0.005845781,0.1413005,0.9899495,0.005845781,0.1413005,0.9899495,0.005845781,0.1413005,0.9899495,0.005845781,0.1413005,0.9899495,0.005845781,0.1413005,0.9899495,0.005845781,0.1413005,0,-0.8469927,0.5316045,0,-0.8469927,0.5316045,0,-0.8469927,0.5316045,0,-0.8469927,0.5316045,0,-0.8469927,0.5316045,0,-0.8469927,0.5316045,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,0,0.04133591,0.9991453,-0.9899495,0.005845781,0.1413005,-0.9899495,0.005845781,0.1413005,-0.9899495,0.005845781,0.1413005,-0.9899495,0.005845781,0.1413005,-0.9899495,0.005845781,0.1413005,-0.9899495,0.005845781,0.1413005,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6450937,0.4095224,-0.6450934,0.6450937,0.4095224,-0.6450934,0.6450937,0.4095224,-0.6450934,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,-0.5982906,0.3149987,-0.736766,-0.5982906,0.3149987,-0.736766,-0.5982906,0.3149987,-0.736766,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.6753426,0.2963529,0.6753426,0.6753426,0.2963529,0.6753426,0.6753426,0.2963529,0.6753426,0.8584617,0.2065601,-0.4694426,0.8584617,0.2065601,-0.4694426,0.8584617,0.2065601,-0.4694426,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,-0.5832438,0.2452328,-0.774395,-0.5832438,0.2452328,-0.774395,-0.5832438,0.2452328,-0.774395,0,0.2516287,-0.9678238,0,0.2516287,-0.9678238,0,0.2516287,-0.9678238,0.6447954,0.4104606,-0.6447952,0.6447954,0.4104606,-0.6447952,0.6447954,0.4104606,-0.6447952,0.9151784,0.4030491,0,0.9151784,0.4030491,0,0.9151784,0.4030491,0,0,0.2512022,0.9679346,0,0.2512022,0.9679346,0,0.2512022,0.9679346,0.4610547,0.3628509,0.8097949,0.4610547,0.3628509,0.8097949,0.4610547,0.3628509,0.8097949 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *448 { + a: -1.82563,3.858179,0.8918229,17.41936,1.82563,3.858179,0.9647637,24.68428,0.8918229,18.99417,-0.6829802,18.99417,-0.6829802,17.41936,-0.9647638,24.68428,0.9647642,24.68428,0.855158,11.62032,-0.9647638,24.68428,-0.7196452,11.62032,-0.7196452,10.04552,0.855158,10.04552,1.82563,3.858179,-1.82563,3.858179,-1.82563,3.858179,0.8357612,20.17344,1.82563,3.858179,0.9647638,24.68428,0.8357612,21.74825,-0.739042,21.74825,-0.739042,20.17344,-0.9647637,24.68428,-1.82563,3.858179,-0.9647642,24.68428,1.82563,3.858179,0.9647638,24.68428,2.738445,2.738445,2.738445,-2.738445,-2.738445,2.738445,-2.738445,-2.738445,-2.738445,-0.6185151,-1.82563,3.422928,2.738445,-0.6185151,1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,0.4981221,18.99417,-0.2892795,18.99417,0.4981221,19.78157,-0.2892795,19.78157,-0.6829802,10.36746,-0.2892795,13.54158,0.8918229,10.36746,0.4981221,13.54158,3.872976,19.16871,1.155866,17.48131,3.840755,19.95545,1.091423,19.05479,-3.843466,19.1675,-3.811245,19.95424,-1.126356,17.4801,-1.061913,19.05358,0.6829802,7.128464,-0.8918229,7.128464,0.2892795,9.994649,-0.4981221,9.994649,-1.433283,10.11264,-4.150393,11.80005,-1.36884,11.68613,-4.118172,12.58679,0.4614572,12.40773,0.4614572,11.62032,-0.3259444,12.40773,-0.3259444,11.62032,-0.3259444,9.883125,0.4614572,9.883125,-0.7196452,6.709008,0.855158,6.709008,-0.4614572,7.968898,0.3259444,7.968898,-0.855158,5.102714,0.7196452,5.102714,1.452431,10.11343,1.387988,11.68691,4.169541,11.80083,4.13732,12.58757,-0.8357612,7.885067,-0.4420604,10.75125,0.739042,7.885067,0.3453412,10.75125,-0.9571344,21.80568,-1.021577,20.23219,-3.706466,22.70634,-3.738688,21.9196,0.8357612,11.73386,-0.739042,11.73386,0.4420604,14.90798,-0.3453412,14.90798,0.4420604,21.74825,-0.3453412,21.74825,0.4420604,22.53565,-0.3453412,22.53565,0.9708011,21.80624,3.720133,22.7069,1.035244,20.23275,3.752354,21.92016,-6.288675,21.62673,-4.310787,28.85179,5.894475,21.62673,5.526417,28.85179,-0.2099495,26.23587,-1.915072,26.23587,0.4494003,35.38092,6.070588,5.905723,6.070588,-4.072768,5.325641,6.650669,5.325641,-5.435039,4.946335,5.526417,-6.947583,6.650669,-4.890869,5.526417,-4.890869,-4.310787,-6.475715,-5.435039,-8.153287,-4.072768,-8.153287,5.444965,4.946335,-4.310787,-4.072768,25.32357,-3.622183,34.74981,5.444965,25.32357,4.837813,34.74981,6.475715,29.84258,-5.325641,29.84258,4.202265,38.59071,-4.257731,38.59071,4.072768,29.71087,-5.905723,29.71087,3.622183,38.45901,-4.837813,38.45901,4.417237,5.804669,4.257731,4.837813,-3.924924,5.804669,-4.202265,4.837813,-5.169121,4.560472,-4.202265,-3.622183,4.257731,-3.622183,5.325641,-4.58904,6.60254,-3.31214,6.60254,4.560472,-3.714061,-4.58904,-5.169121,-3.493146,1.378292,18.62411,-0.3283701,18.62411,-0.4493992,26.19916,-0.4101794,37.63217,0.1165772,28.83485,-0.9369367,28.83485,6.58992,21.61054,-6.450996,21.61054,4.310787,28.83561,-5.526417,28.83561,5.325641,29.59066,-6.947583,29.59066,4.257731,38.3388,-4.202265,38.3388,5.870914,21.4413,-5.258926,21.4413,4.946335,28.66637,-4.890869,28.66637,3.761875,27.42959,1.600849,27.42959,0.9787962,36.44688,7.054308,6.450996,7.054308,-6.58992,5.870914,7.63439,5.847516,-7.796713,0.9647638,0.9647638,-5.258926,7.63439,-0.9647637,0.9647638,-0.9647637,-0.9647642,0.9647638,-0.9647642,-5.926381,-7.796713,-6.998842,5.894475,-6.998842,-6.288675,0.4266061,20.80364,-1.246966,20.80364,-0.4101798,28.0394,2.213426,29.46951,0.6607731,29.46951,1.135227,38.21639,-1.068671,19.28062,-2.91917,19.28062,-0.6784997,26.76135,1.679704,21.74844,-0.7809073,21.74844,0.4493985,28.87749,5.926381,18.58225,-5.847516,18.58225,4.890869,26.32239,-4.946335,26.32239,1.32918,37.43451,-0.4303795,37.43451,-1.128452,58.02874,-3.493146,39.02428,0.6125208,59.24861,4.560472,39.02428,2.027497,37.5394,0.2059089,37.5394,2.132536,58.17599,3.714061,37.7656,-5.325641,37.7656,2.208393,58.43716,-0.520855,33.79289,-2.326664,33.79289,1.128452,55.7327,-0.6125208,56.00278,3.31214,34.14209,-4.560472,34.14209,4.417237,37.46664,-3.924924,37.46664,-2.208393,58.13584,3.481339,34.85017,0.9666674,34.85017,-2.2222,56.31983 + } + UVIndex: *402 { + a: 0,2,1,3,1,2,4,1,3,5,4,3,1,6,0,7,0,6,5,7,6,3,7,5,8,10,9,11,9,10,12,11,10,9,13,8,8,13,14,15,14,13,12,15,13,10,15,12,16,18,17,19,17,18,20,17,19,21,20,19,17,22,16,23,16,22,21,23,22,19,23,21,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,117,116,118,116,117,119,118,117,120,119,117,121,119,120,122,121,120,123,122,120,124,123,120,125,124,120,123,118,126,119,126,118,122,123,126,127,129,128,130,128,129,131,133,132,134,132,133,135,137,136,138,136,137,139,141,140,142,140,141,143,142,141,144,142,143,140,145,139,145,146,139,146,147,139,148,139,147,149,146,145,144,149,145,150,149,144,143,150,144,151,153,152,154,156,155,157,159,158,160,158,159,161,163,162,164,162,163,165,167,166,168,166,167,169,171,170,172,174,173,175,173,174,176,175,174,177,176,174,178,176,177,179,178,177,176,180,175,181,175,180,179,181,180,177,181,179,182,181,177,183,181,182,184,186,185,187,189,188,190,192,191,193,195,194,196,198,197,199,197,198,200,202,201,203,205,204,206,208,207,209,211,210,212,214,213,215,217,216,218,220,219,221,223,222 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *134 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineTallA_detailed, Model::RootNode + C: "OO",5180735625048683458,0 + + ;Geometry::, Model::Mesh tree_pineTallA_detailed + C: "OO",4647715648669762556,5180735625048683458 + + ;Material::woodBarkDark, Model::Mesh tree_pineTallA_detailed + C: "OO",3048,5180735625048683458 + + ;Material::leafsDark, Model::Mesh tree_pineTallA_detailed + C: "OO",3026,5180735625048683458 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA_detailed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA_detailed.fbx.import new file mode 100644 index 0000000..08910d9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA_detailed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dgu2mira62mdu" +path="res://.godot/imported/tree_pineTallA_detailed.fbx-0b41cc2a16d8443e3666a2f38ecd499c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallA_detailed.fbx" +dest_files=["res://.godot/imported/tree_pineTallA_detailed.fbx-0b41cc2a16d8443e3666a2f38ecd499c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB.fbx new file mode 100644 index 0000000..95b3b2a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 685 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineTallB.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineTallB.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5060098091270090106, "Model::tree_pineTallB", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5523763151842946353, "Geometry::", "Mesh" { + Vertices: *408 { + a: 1.121978,14.26443,1.474386,1.081464,14.26443,1.228804,-0.9969307,14.26443,1.474386,-1.067375,14.26443,1.228804,-1.312957,14.26443,1.15836,-1.067375,14.26443,-0.9200345,1.081464,14.26443,-0.9200345,1.352713,14.26443,-1.165616,1.677045,14.26443,-0.8412835,1.677045,14.26443,1.15836,-0.9433715,14.26443,-1.165616,-1.312957,14.26443,-0.887259,-1.764686,12.09063,1.68927,-2.070935,12.09063,1.383021,-1.067375,14.26443,1.228804,1.791794,10.33531,-1.67384,1.791794,10.33531,1.638553,1.256369,12.09063,-1.09494,1.256369,12.09063,1.40371,1.791794,10.33531,1.638553,1.491212,10.33531,1.939135,1.256369,12.09063,1.40371,1.485269,10.33531,-1.980365,1.791794,10.33531,-1.67384,1.256369,12.09063,-1.09494,1.791794,10.33531,1.638553,1.791794,10.33531,-1.67384,1.491212,10.33531,1.939135,1.485269,10.33531,-1.980365,0.24505,10.33531,0.24505,-1.335767,10.33531,1.939135,-0.24505,10.33531,0.24505,-0.24505,10.33531,-0.2450501,0.24505,10.33531,-0.2450501,-1.505301,10.33531,-1.980365,-1.777706,10.33531,1.497197,-1.777706,10.33531,-1.597324,-1.644831,12.09063,-1.3805,1.352713,12.09063,-1.3805,-1.067375,14.26443,-0.9200345,1.081464,14.26443,-0.9200345,-2.070935,12.09063,-1.034483,-1.067375,14.26443,-0.9200345,-2.070935,12.09063,1.383021,-1.067375,14.26443,1.228804,-1.777706,10.33531,-1.597324,-1.242281,12.09063,-1.09494,-1.777706,10.33531,1.497197,-1.242281,12.09063,1.40371,1.491212,10.33531,1.939135,-1.335767,10.33531,1.939135,1.256369,12.09063,1.40371,-1.242281,12.09063,1.40371,1.541929,12.09063,-1.034483,1.541929,12.09063,1.500054,1.081464,14.26443,-0.9200345,1.081464,14.26443,1.228804,-1.777706,10.33531,-1.597324,-1.505301,10.33531,-1.980365,-1.242281,12.09063,-1.09494,1.352713,12.09063,1.68927,-1.764686,12.09063,1.68927,1.081464,14.26443,1.228804,-1.067375,14.26443,1.228804,-2.070935,12.09063,-1.034483,-1.644831,12.09063,-1.3805,-1.067375,14.26443,-0.9200345,1.081464,14.26443,1.228804,1.541929,12.09063,1.500054,1.352713,12.09063,1.68927,-1.505301,10.33531,-1.980365,1.485269,10.33531,-1.980365,-1.242281,12.09063,-1.09494,1.256369,12.09063,-1.09494,-1.335767,10.33531,1.939135,-1.777706,10.33531,1.497197,-1.242281,12.09063,1.40371,1.541929,12.09063,1.500054,1.541929,12.09063,-1.034483,1.352713,12.09063,1.68927,1.352713,12.09063,-1.3805,1.256369,12.09063,1.40371,-1.764686,12.09063,1.68927,-1.242281,12.09063,1.40371,-1.242281,12.09063,-1.09494,-1.644831,12.09063,-1.3805,-2.070935,12.09063,-1.034483,-2.070935,12.09063,1.383021,1.256369,12.09063,-1.09494,1.352713,12.09063,-1.3805,1.541929,12.09063,-1.034483,1.081464,14.26443,-0.9200345,1.352713,14.26443,-1.165616,1.677045,14.26443,-0.8412835,-0.5609317,19.34606,0.1555803,-0.5609317,19.34606,0.1555803,1.677045,14.26443,-0.8412835,1.677045,14.26443,1.15836,1.677045,14.26443,1.15836,1.121978,14.26443,1.474386,-0.5609317,19.34606,0.1555803,1.121978,14.26443,1.474386,-0.9969307,14.26443,1.474386,-0.5609317,19.34606,0.1555803,-0.9969307,14.26443,1.474386,-1.312957,14.26443,1.15836,-0.5609317,19.34606,0.1555803,-1.312957,14.26443,-0.887259,-0.5609317,19.34606,0.1555803,-1.312957,14.26443,1.15836,-0.9433715,14.26443,-1.165616,1.352713,14.26443,-1.165616,-0.5609317,19.34606,0.1555803,-1.312957,14.26443,-0.887259,-0.9433715,14.26443,-1.165616,-0.5609317,19.34606,0.1555803,0.46371,0,-0.46371,0.46371,0,0.46371,0.24505,10.33531,-0.2450501,0.24505,10.33531,0.24505,0.46371,0,0.46371,0.46371,0,-0.46371,-0.46371,0,0.46371,-0.46371,0,-0.46371,0.46371,0,0.46371,-0.46371,0,0.46371,0.24505,10.33531,0.24505,-0.24505,10.33531,0.24505,-0.46371,0,-0.46371,0.46371,0,-0.46371,-0.24505,10.33531,-0.2450501,0.24505,10.33531,-0.2450501,-0.46371,0,-0.46371,-0.24505,10.33531,-0.2450501,-0.46371,0,0.46371,-0.24505,10.33531,0.24505 + } + PolygonVertexIndex: *234 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,1,6,-1,6,7,-1,7,8,-1,9,0,-9,10,7,-7,5,10,-7,11,10,-6,4,11,-6,12,14,-14,15,17,-17,18,16,-18,19,21,-21,22,24,-24,25,27,-27,28,26,-28,29,28,-28,30,29,-28,31,29,-31,32,31,-31,29,33,-29,34,28,-34,32,34,-34,30,34,-33,35,34,-31,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,62,-62,63,61,-63,64,66,-66,67,69,-69,70,72,-72,73,71,-73,74,76,-76,77,79,-79,80,78,-80,81,80,-80,82,81,-80,83,81,-83,84,83,-83,85,84,-83,86,85,-83,87,86,-83,85,80,-89,81,88,-81,84,85,-89,89,91,-91,92,94,-94,95,97,-97,98,100,-100,101,103,-103,104,106,-106,107,109,-109,110,112,-112,113,115,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *702 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.6753426,0.2963529,0.6753426,0.6753426,0.2963529,0.6753426,0.6753426,0.2963529,0.6753426,0.6450937,0.4095224,-0.6450934,0.6450937,0.4095224,-0.6450934,0.6450937,0.4095224,-0.6450934,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,-0.5982906,0.3149987,-0.736766,-0.5982906,0.3149987,-0.736766,-0.5982906,0.3149987,-0.736766,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8584617,0.2065601,-0.4694426,0.8584617,0.2065601,-0.4694426,0.8584617,0.2065601,-0.4694426,0.6447955,0.4104604,-0.6447954,0.6447955,0.4104604,-0.6447954,0.6447955,0.4104604,-0.6447954,0.9151784,0.4030489,0,0.9151784,0.4030489,0,0.9151784,0.4030489,0,0.4610547,0.3628508,0.8097949,0.4610547,0.3628508,0.8097949,0.4610547,0.3628508,0.8097949,0,0.2512021,0.9679346,0,0.2512021,0.9679346,0,0.2512021,0.9679346,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,0,0.2516286,-0.9678238,0,0.2516286,-0.9678238,0,0.2516286,-0.9678238,-0.5832438,0.2452327,-0.774395,-0.5832438,0.2452327,-0.774395,-0.5832438,0.2452327,-0.774395,0.9997763,0.02115187,0,0.9997763,0.02115187,0,0.9997763,0.02115187,0,0.9997763,0.02115187,0,0.9997763,0.02115187,0,0.9997763,0.02115187,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0,0.02115185,-0.9997763,0,0.02115185,-0.9997763,0,0.02115185,-0.9997763,0,0.02115185,-0.9997763,0,0.02115185,-0.9997763,0,0.02115185,-0.9997763,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *272 { + a: 4.417237,5.804669,4.257731,4.837813,-3.924924,5.804669,-4.202265,4.837813,-5.169121,4.560472,-4.202265,-3.622183,4.257731,-3.622183,5.325641,-4.58904,6.60254,-3.31214,6.60254,4.560472,-3.714061,-4.58904,-5.169121,-3.493146,-0.2099495,41.15761,-1.915072,41.15761,0.4494003,50.30266,6.58992,36.8617,-6.450996,36.8617,4.310787,44.08677,-5.526417,44.08677,0.4266061,36.03225,-1.246966,36.03225,-0.4101798,43.26801,1.378292,33.17063,-0.3283701,33.17063,-0.4493992,40.74568,7.054308,6.450996,7.054308,-6.58992,5.870914,7.63439,5.847516,-7.796713,0.9647638,0.9647638,-5.258926,7.63439,-0.9647637,0.9647638,-0.9647637,-0.9647642,0.9647638,-0.9647642,-5.926381,-7.796713,-6.998842,5.894475,-6.998842,-6.288675,6.475715,45.44134,-5.325641,45.44134,4.202265,54.18948,-4.257731,54.18948,-4.072768,39.80019,-3.622183,49.22643,5.444965,39.80019,4.837813,49.22643,-6.288675,36.87788,-4.310787,44.10295,5.894475,36.87788,5.526417,44.10295,5.870914,36.69246,-5.258926,36.69246,4.946335,43.91752,-4.890869,43.91752,4.072768,45.30964,-5.905723,45.30964,3.622183,54.05777,-4.837813,54.05777,-1.068671,34.01054,-2.91917,34.01054,-0.6784997,41.49127,5.325641,45.18943,-6.947583,45.18943,4.257731,53.93756,-4.202265,53.93756,3.761875,42.56275,1.600849,42.56275,0.9787962,51.58004,-0.4101794,53.14372,0.1165772,44.3464,-0.9369367,44.3464,5.926381,32.81851,-5.847516,32.81851,4.890869,40.55865,-4.946335,40.55865,1.679704,37.20499,-0.7809073,37.20499,0.4493985,44.33405,6.070588,5.905723,6.070588,-4.072768,5.325641,6.650669,5.325641,-5.435039,4.946335,5.526417,-6.947583,6.650669,-4.890869,5.526417,-4.890869,-4.310787,-6.475715,-5.435039,-8.153287,-4.072768,-8.153287,5.444965,4.946335,-4.310787,2.213426,45.07053,0.6607731,45.07053,1.135227,53.81741,-0.520855,48.33269,-2.326664,48.33269,1.128452,70.27251,-0.6125208,70.5952,3.31214,48.7345,-4.560472,48.7345,3.481339,49.70837,0.9666674,49.70837,-2.2222,71.17803,4.417237,52.90025,-3.924924,52.90025,-2.208393,73.56946,1.32918,52.92429,-0.4303795,52.92429,-1.128452,73.51853,-3.493146,54.79738,0.6125208,75.02171,4.560472,54.79738,3.714061,53.19744,-5.325641,53.19744,2.208393,73.86901,2.027497,52.99739,0.2059089,52.99739,2.132536,73.634,1.82563,-0.03861548,-1.82563,-0.03861548,0.9647642,40.66069,-0.9647638,40.66069,1.82563,1.82563,1.82563,-1.82563,-1.82563,1.82563,-1.82563,-1.82563,1.82563,-0.03861548,-1.82563,-0.03861548,0.9647638,40.66069,-0.9647637,40.66069,1.82563,-0.03861546,-1.82563,-0.03861546,0.9647637,40.66069,-0.9647638,40.66069,-1.82563,-0.03861548,-0.9647642,40.66069,1.82563,-0.03861548,0.9647638,40.66069 + } + UVIndex: *234 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,1,6,0,6,7,0,7,8,0,9,0,8,10,7,6,5,10,6,11,10,5,4,11,5,12,14,13,15,17,16,18,16,17,19,21,20,22,24,23,25,27,26,28,26,27,29,28,27,30,29,27,31,29,30,32,31,30,29,33,28,34,28,33,32,34,33,30,34,32,35,34,30,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,62,61,63,61,62,64,66,65,67,69,68,70,72,71,73,71,72,74,76,75,77,79,78,80,78,79,81,80,79,82,81,79,83,81,82,84,83,82,85,84,82,86,85,82,87,86,82,85,80,88,81,88,80,84,85,88,89,91,90,92,94,93,95,97,96,98,100,99,101,103,102,104,106,105,107,109,108,110,112,111,113,115,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *78 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineTallB, Model::RootNode + C: "OO",5060098091270090106,0 + + ;Geometry::, Model::Mesh tree_pineTallB + C: "OO",5523763151842946353,5060098091270090106 + + ;Material::leafsDark, Model::Mesh tree_pineTallB + C: "OO",3026,5060098091270090106 + + ;Material::woodBarkDark, Model::Mesh tree_pineTallB + C: "OO",3048,5060098091270090106 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB.fbx.import new file mode 100644 index 0000000..d572f6f --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://e38rc2nctkmk" +path="res://.godot/imported/tree_pineTallB.fbx-6e94fff5fc3329b71d99be2825a7131c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB.fbx" +dest_files=["res://.godot/imported/tree_pineTallB.fbx-6e94fff5fc3329b71d99be2825a7131c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB_detailed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB_detailed.fbx new file mode 100644 index 0000000..1ac521d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB_detailed.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 792 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineTallB_detailed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineTallB_detailed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5328955943535619312, "Model::tree_pineTallB_detailed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4773995791302873830, "Geometry::", "Mesh" { + Vertices: *816 { + a: 1.121978,14.26443,1.474386,1.081464,14.26443,1.228804,-0.9969307,14.26443,1.474386,-1.067375,14.26443,1.228804,-1.312957,14.26443,1.15836,-1.067375,14.26443,-0.9200345,1.081464,14.26443,-0.9200345,1.352713,14.26443,-1.165616,1.677045,14.26443,-0.8412835,1.677045,14.26443,1.15836,-0.9433715,14.26443,-1.165616,-1.312957,14.26443,-0.887259,-1.764686,12.09063,1.68927,-2.070935,12.09063,1.383021,-1.067375,14.26443,1.228804,1.791794,10.33531,-1.67384,1.791794,10.33531,1.638553,1.256369,12.09063,-1.09494,1.256369,12.09063,1.40371,1.791794,10.33531,1.638553,1.491212,10.33531,1.939135,1.256369,12.09063,1.40371,1.485269,10.33531,-1.980365,1.791794,10.33531,-1.67384,1.256369,12.09063,-1.09494,1.791794,10.33531,1.638553,1.791794,10.33531,-1.67384,1.491212,10.33531,1.939135,1.485269,10.33531,-1.980365,0.24505,10.33531,0.24505,-1.335767,10.33531,1.939135,-0.24505,10.33531,0.24505,-0.24505,10.33531,-0.2450501,0.24505,10.33531,-0.2450501,-1.505301,10.33531,-1.980365,-1.777706,10.33531,1.497197,-1.777706,10.33531,-1.597324,-1.644831,12.09063,-1.3805,1.352713,12.09063,-1.3805,-1.067375,14.26443,-0.9200345,1.081464,14.26443,-0.9200345,-2.070935,12.09063,-1.034483,-1.067375,14.26443,-0.9200345,-2.070935,12.09063,1.383021,-1.067375,14.26443,1.228804,-1.777706,10.33531,-1.597324,-1.242281,12.09063,-1.09494,-1.777706,10.33531,1.497197,-1.242281,12.09063,1.40371,1.491212,10.33531,1.939135,-1.335767,10.33531,1.939135,1.256369,12.09063,1.40371,-1.242281,12.09063,1.40371,1.541929,12.09063,-1.034483,1.541929,12.09063,1.500054,1.081464,14.26443,-0.9200345,1.081464,14.26443,1.228804,-1.777706,10.33531,-1.597324,-1.505301,10.33531,-1.980365,-1.242281,12.09063,-1.09494,1.352713,12.09063,1.68927,-1.764686,12.09063,1.68927,1.081464,14.26443,1.228804,-1.067375,14.26443,1.228804,-2.070935,12.09063,-1.034483,-1.644831,12.09063,-1.3805,-1.067375,14.26443,-0.9200345,1.081464,14.26443,1.228804,1.541929,12.09063,1.500054,1.352713,12.09063,1.68927,-1.505301,10.33531,-1.980365,1.485269,10.33531,-1.980365,-1.242281,12.09063,-1.09494,1.256369,12.09063,-1.09494,-1.335767,10.33531,1.939135,-1.777706,10.33531,1.497197,-1.242281,12.09063,1.40371,1.541929,12.09063,1.500054,1.541929,12.09063,-1.034483,1.352713,12.09063,1.68927,1.352713,12.09063,-1.3805,1.256369,12.09063,1.40371,-1.764686,12.09063,1.68927,-1.242281,12.09063,1.40371,-1.242281,12.09063,-1.09494,-1.644831,12.09063,-1.3805,-2.070935,12.09063,-1.034483,-2.070935,12.09063,1.383021,1.256369,12.09063,-1.09494,1.352713,12.09063,-1.3805,1.541929,12.09063,-1.034483,1.081464,14.26443,-0.9200345,1.352713,14.26443,-1.165616,1.677045,14.26443,-0.8412835,-0.5609317,19.34606,0.1555803,-0.5609317,19.34606,0.1555803,1.677045,14.26443,-0.8412835,1.677045,14.26443,1.15836,1.677045,14.26443,1.15836,1.121978,14.26443,1.474386,-0.5609317,19.34606,0.1555803,1.121978,14.26443,1.474386,-0.9969307,14.26443,1.474386,-0.5609317,19.34606,0.1555803,-0.9969307,14.26443,1.474386,-1.312957,14.26443,1.15836,-0.5609317,19.34606,0.1555803,-1.312957,14.26443,-0.887259,-0.5609317,19.34606,0.1555803,-1.312957,14.26443,1.15836,-0.9433715,14.26443,-1.165616,1.352713,14.26443,-1.165616,-0.5609317,19.34606,0.1555803,-1.312957,14.26443,-0.887259,-0.9433715,14.26443,-1.165616,-0.5609317,19.34606,0.1555803,0.695565,0,0.695565,0.695565,0,-0.695565,-0.695565,0,0.695565,-0.695565,0,-0.695565,-0.24505,10.33531,-0.2450501,-0.3741013,4.825688,-0.2272105,-0.46371,1,-0.46371,-0.46371,1,0.46371,-0.3741013,4.825688,0.1727895,-0.3647347,5.225578,0.1727895,-0.2953161,8.189284,0.2207175,-0.2859495,8.589174,0.2207175,-0.24505,10.33531,0.24505,-0.2859495,8.589174,-0.1792825,-0.3647347,5.225578,-0.2272105,-0.2953161,8.189284,-0.1792825,0.24505,10.33531,-0.2450501,0.2662217,9.431419,-0.1910886,0.24505,10.33531,0.24505,0.2662217,9.431419,0.2089114,0.2755883,9.031528,0.2089114,0.2755883,9.031528,-0.1910886,0.46371,1,-0.46371,0.46371,1,0.46371,-0.695565,0,-0.695565,-0.46371,1,-0.46371,-0.695565,0,0.695565,-0.46371,1,0.46371,0.695565,0,-0.695565,0.695565,0,0.695565,0.46371,1,-0.46371,0.46371,1,0.46371,-0.695565,0,-0.695565,0.695565,0,-0.695565,-0.46371,1,-0.46371,0.46371,1,-0.46371,0.46371,1,-0.46371,-0.2025325,6.58498,-0.3328936,-0.46371,1,-0.46371,-0.24505,10.33531,-0.2450501,-0.2025325,6.984871,-0.323527,0.1974675,6.984871,-0.323527,0.1974675,6.58498,-0.3328936,0.24505,10.33531,-0.2450501,-0.46371,1,0.46371,0.1784288,5.946178,0.3478562,0.46371,1,0.46371,0.24505,10.33531,0.24505,0.1784288,6.346068,0.3384896,-0.2215712,6.346068,0.3384896,-0.2215712,5.946178,0.3478562,-0.24505,10.33531,0.24505,0.695565,0,0.695565,-0.695565,0,0.695565,0.46371,1,0.46371,-0.46371,1,0.46371,-1.064543,5.24197,-0.1272105,-1.05986,5.441915,-0.1272105,-1.064543,5.24197,0.07278945,-1.05986,5.441915,0.07278945,-0.3741013,4.825688,0.1727895,-0.3741013,4.825688,-0.2272105,-1.064543,5.24197,0.07278945,-1.064543,5.24197,-0.1272105,-0.3647347,5.225578,-0.2272105,-0.3647347,5.225578,0.1727895,-1.05986,5.441915,-0.1272105,-1.05986,5.441915,0.07278945,-0.3741013,4.825688,-0.2272105,-0.3647347,5.225578,-0.2272105,-1.064543,5.24197,-0.1272105,-1.05986,5.441915,-0.1272105,-0.3741013,4.825688,0.1727895,-1.064543,5.24197,0.07278945,-0.3647347,5.225578,0.1727895,-1.05986,5.441915,0.07278945,0.07842878,6.36246,1.038298,-0.1215712,6.36246,1.038298,0.07842878,6.562405,1.033614,-0.1215712,6.562405,1.033614,0.1784288,5.946178,0.3478562,-0.2215712,5.946178,0.3478562,0.07842878,6.36246,1.038298,-0.1215712,6.36246,1.038298,0.1784288,6.346068,0.3384896,0.07842878,6.562405,1.033614,-0.2215712,6.346068,0.3384896,-0.1215712,6.562405,1.033614,-0.2215712,6.346068,0.3384896,-0.1215712,6.562405,1.033614,-0.2215712,5.946178,0.3478562,-0.1215712,6.36246,1.038298,0.1784288,6.346068,0.3384896,0.1784288,5.946178,0.3478562,0.07842878,6.562405,1.033614,0.07842878,6.36246,1.038298,0.1974675,6.58498,-0.3328936,0.09746753,7.001262,-1.023335,-0.2025325,6.58498,-0.3328936,-0.1025325,7.001262,-1.023335,-0.1025325,7.001262,-1.023335,0.09746753,7.001262,-1.023335,-0.1025325,7.201208,-1.018652,0.09746753,7.201208,-1.018652,0.1974675,6.984871,-0.323527,-0.2025325,6.984871,-0.323527,0.09746753,7.201208,-1.018652,-0.1025325,7.201208,-1.018652,0.09746753,7.001262,-1.023335,0.1974675,6.58498,-0.3328936,0.09746753,7.201208,-1.018652,0.1974675,6.984871,-0.323527,-0.1025325,7.001262,-1.023335,-0.1025325,7.201208,-1.018652,-0.2025325,6.58498,-0.3328936,-0.2025325,6.984871,-0.323527,-0.9857576,8.605565,-0.07928246,-0.9810743,8.805511,-0.07928246,-0.9857576,8.605565,0.1207175,-0.9810743,8.805511,0.1207175,-0.2859495,8.589174,-0.1792825,-0.2859495,8.589174,0.2207175,-0.9810743,8.805511,-0.07928246,-0.9810743,8.805511,0.1207175,-0.2953161,8.189284,0.2207175,-0.2953161,8.189284,-0.1792825,-0.9857576,8.605565,0.1207175,-0.9857576,8.605565,-0.07928246,-0.2953161,8.189284,0.2207175,-0.9857576,8.605565,0.1207175,-0.2859495,8.589174,0.2207175,-0.9810743,8.805511,0.1207175,-0.2953161,8.189284,-0.1792825,-0.2859495,8.589174,-0.1792825,-0.9857576,8.605565,-0.07928246,-0.9810743,8.805511,-0.07928246,0.9613465,9.647757,-0.09108861,0.9613465,9.647757,0.1089114,0.2662217,9.431419,-0.1910886,0.2662217,9.431419,0.2089114,0.2755883,9.031528,0.2089114,0.2662217,9.431419,0.2089114,0.9660298,9.447811,0.1089114,0.9613465,9.647757,0.1089114,0.2755883,9.031528,-0.1910886,0.9660298,9.447811,-0.09108861,0.2662217,9.431419,-0.1910886,0.9613465,9.647757,-0.09108861,0.9613465,9.647757,-0.09108861,0.9660298,9.447811,-0.09108861,0.9613465,9.647757,0.1089114,0.9660298,9.447811,0.1089114,0.9660298,9.447811,0.1089114,0.9660298,9.447811,-0.09108861,0.2755883,9.031528,0.2089114,0.2755883,9.031528,-0.1910886 + } + PolygonVertexIndex: *498 { + a: 0,2,-2,3,1,-3,4,3,-3,5,3,-5,1,6,-1,6,7,-1,7,8,-1,9,0,-9,10,7,-7,5,10,-7,11,10,-6,4,11,-6,12,14,-14,15,17,-17,18,16,-18,19,21,-21,22,24,-24,25,27,-27,28,26,-28,29,28,-28,30,29,-28,31,29,-31,32,31,-31,29,33,-29,34,28,-34,32,34,-34,30,34,-33,35,34,-31,36,34,-36,37,39,-39,40,38,-40,41,43,-43,44,42,-44,45,47,-47,48,46,-48,49,51,-51,52,50,-52,53,55,-55,56,54,-56,57,59,-59,60,62,-62,63,61,-63,64,66,-66,67,69,-69,70,72,-72,73,71,-73,74,76,-76,77,79,-79,80,78,-80,81,80,-80,82,81,-80,83,81,-83,84,83,-83,85,84,-83,86,85,-83,87,86,-83,85,80,-89,81,88,-81,84,85,-89,89,91,-91,92,94,-94,95,97,-97,98,100,-100,101,103,-103,104,106,-106,107,109,-109,110,112,-112,113,115,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,121,-124,125,124,-124,126,125,-124,127,126,-124,128,127,-124,128,120,-130,127,128,-130,130,129,-121,121,130,-121,131,129,-131,130,125,-132,126,131,-126,132,134,-134,135,133,-135,136,135,-135,133,137,-133,132,137,-139,139,138,-138,136,139,-138,134,139,-137,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155,156,153,-156,157,156,-156,153,158,-153,159,152,-159,157,159,-159,155,159,-158,160,162,-162,163,161,-163,164,161,-164,165,164,-164,161,166,-161,167,160,-167,165,167,-167,163,167,-166,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1494 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,-0.6617339,0.3524438,0.6617339,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.9564921,0.2917583,0,0.6753426,0.2963529,0.6753426,0.6753426,0.2963529,0.6753426,0.6753426,0.2963529,0.6753426,0.6450937,0.4095224,-0.6450934,0.6450937,0.4095224,-0.6450934,0.6450937,0.4095224,-0.6450934,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,0,0.2072277,-0.9782928,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9079164,0.4191513,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,-0.9564921,0.2917583,0,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0,0.2917583,0.9564921,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,0.9782928,0.2072276,0,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,-0.7528389,0.3828702,-0.5353913,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,0,0.2072277,0.9782928,-0.5982906,0.3149987,-0.736766,-0.5982906,0.3149987,-0.736766,-0.5982906,0.3149987,-0.736766,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0.6878899,0.2315488,0.6878899,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,0,0.4503701,-0.8928421,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,-0.6854508,0.2455891,0.6854511,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8584617,0.2065601,-0.4694426,0.8584617,0.2065601,-0.4694426,0.8584617,0.2065601,-0.4694426,0.6447955,0.4104604,-0.6447954,0.6447955,0.4104604,-0.6447954,0.6447955,0.4104604,-0.6447954,0.9151784,0.4030489,0,0.9151784,0.4030489,0,0.9151784,0.4030489,0,0.4610547,0.3628508,0.8097949,0.4610547,0.3628508,0.8097949,0.4610547,0.3628508,0.8097949,0,0.2512021,0.9679346,0,0.2512021,0.9679346,0,0.2512021,0.9679346,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,-0.6869247,0.2372108,0.6869247,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,-0.9892264,0.1463944,0,0,0.2516286,-0.9678238,0,0.2516286,-0.9678238,0,0.2516286,-0.9678238,-0.5832438,0.2452327,-0.774395,-0.5832438,0.2452327,-0.774395,-0.5832438,0.2452327,-0.774395,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,0.02341647,0.9997258,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,-0.9899495,0.003311589,0.1413826,-0.9899495,0.003311589,0.1413826,-0.9899495,0.003311589,0.1413826,-0.9899495,0.003311589,0.1413826,-0.9899495,0.003311589,0.1413826,-0.9899495,0.003311589,0.1413826,0.9899495,0.003311589,0.1413826,0.9899495,0.003311589,0.1413826,0.9899495,0.003311589,0.1413826,0.9899495,0.003311589,0.1413826,0.9899495,0.003311589,0.1413826,0.9899495,0.003311589,0.1413826,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.02341646,-0.9997258,0,0.9548272,0.2971613,0,0.9548272,0.2971613,0,0.9548272,0.2971613,0,0.9548272,0.2971613,0,0.9548272,0.2971613,0,0.9548272,0.2971613,0.9899495,0.003311588,-0.1413826,0.9899495,0.003311588,-0.1413826,0.9899495,0.003311588,-0.1413826,0.9899495,0.003311588,-0.1413826,0.9899495,0.003311588,-0.1413826,0.9899495,0.003311588,-0.1413826,-0.9899495,0.003311588,-0.1413826,-0.9899495,0.003311588,-0.1413826,-0.9899495,0.003311588,-0.1413826,-0.9899495,0.003311588,-0.1413826,-0.9899495,0.003311588,-0.1413826,-0.9899495,0.003311588,-0.1413826,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,-0.9997258,0.02341647,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,0.1413826,0.003311589,0.9899495,0.1413826,0.003311589,0.9899495,0.1413826,0.003311589,0.9899495,0.1413826,0.003311589,0.9899495,0.1413826,0.003311589,0.9899495,0.1413826,0.003311589,0.9899495,0.1413826,0.003311589,-0.9899495,0.1413826,0.003311589,-0.9899495,0.1413826,0.003311589,-0.9899495,0.1413826,0.003311589,-0.9899495,0.1413826,0.003311589,-0.9899495,0.1413826,0.003311589,-0.9899495,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.9997258,0.02341647,0,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *544 { + a: 4.417237,5.804669,4.257731,4.837813,-3.924924,5.804669,-4.202265,4.837813,-5.169121,4.560472,-4.202265,-3.622183,4.257731,-3.622183,5.325641,-4.58904,6.60254,-3.31214,6.60254,4.560472,-3.714061,-4.58904,-5.169121,-3.493146,-0.2099495,41.15761,-1.915072,41.15761,0.4494003,50.30266,6.58992,36.8617,-6.450996,36.8617,4.310787,44.08677,-5.526417,44.08677,0.4266061,36.03225,-1.246966,36.03225,-0.4101798,43.26801,1.378292,33.17063,-0.3283701,33.17063,-0.4493992,40.74568,7.054308,6.450996,7.054308,-6.58992,5.870914,7.63439,5.847516,-7.796713,0.9647638,0.9647638,-5.258926,7.63439,-0.9647637,0.9647638,-0.9647637,-0.9647642,0.9647638,-0.9647642,-5.926381,-7.796713,-6.998842,5.894475,-6.998842,-6.288675,6.475715,45.44134,-5.325641,45.44134,4.202265,54.18948,-4.257731,54.18948,-4.072768,39.80019,-3.622183,49.22643,5.444965,39.80019,4.837813,49.22643,-6.288675,36.87788,-4.310787,44.10295,5.894475,36.87788,5.526417,44.10295,5.870914,36.69246,-5.258926,36.69246,4.946335,43.91752,-4.890869,43.91752,4.072768,45.30964,-5.905723,45.30964,3.622183,54.05777,-4.837813,54.05777,-1.068671,34.01054,-2.91917,34.01054,-0.6784997,41.49127,5.325641,45.18943,-6.947583,45.18943,4.257731,53.93756,-4.202265,53.93756,3.761875,42.56275,1.600849,42.56275,0.9787962,51.58004,-0.4101794,53.14372,0.1165772,44.3464,-0.9369367,44.3464,5.926381,32.81851,-5.847516,32.81851,4.890869,40.55865,-4.946335,40.55865,1.679704,37.20499,-0.7809073,37.20499,0.4493985,44.33405,6.070588,5.905723,6.070588,-4.072768,5.325641,6.650669,5.325641,-5.435039,4.946335,5.526417,-6.947583,6.650669,-4.890869,5.526417,-4.890869,-4.310787,-6.475715,-5.435039,-8.153287,-4.072768,-8.153287,5.444965,4.946335,-4.310787,2.213426,45.07053,0.6607731,45.07053,1.135227,53.81741,-0.520855,48.33269,-2.326664,48.33269,1.128452,70.27251,-0.6125208,70.5952,3.31214,48.7345,-4.560472,48.7345,3.481339,49.70837,0.9666674,49.70837,-2.2222,71.17803,4.417237,52.90025,-3.924924,52.90025,-2.208393,73.56946,1.32918,52.92429,-0.4303795,52.92429,-1.128452,73.51853,-3.493146,54.79738,0.6125208,75.02171,4.560472,54.79738,3.714061,53.19744,-5.325641,53.19744,2.208393,73.86901,2.027497,52.99739,0.2059089,52.99739,2.132536,73.634,2.738445,2.738445,2.738445,-2.738445,-2.738445,2.738445,-2.738445,-2.738445,-0.9647642,40.65645,-0.8945297,18.95907,-1.82563,3.893178,1.82563,3.893178,0.6802734,18.95907,0.6802734,20.53388,0.8689667,32.20521,0.8689667,33.78001,0.9647638,40.65645,-0.7058365,33.78001,-0.8945297,20.53388,-0.7058365,32.20521,0.9647642,40.65645,0.7523174,37.09685,-0.9647638,40.65645,-0.8224857,37.09685,-0.8224857,35.52205,0.7523174,35.52205,1.82563,3.893178,-1.82563,3.893178,-2.738445,-0.6185151,-1.82563,3.422928,2.738445,-0.6185151,1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,-1.82563,3.893178,0.7973719,25.88732,1.82563,3.893178,0.9647637,40.65645,0.7973719,27.46213,-0.7774312,27.46213,-0.7774312,25.88732,-0.9647638,40.65645,-1.82563,3.893178,0.7024755,23.37166,1.82563,3.893178,0.9647638,40.65645,0.7024755,24.94646,-0.8723277,24.94646,-0.8723277,23.37166,-0.9647637,40.65645,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,-0.5008289,20.53388,-0.5008289,21.32128,0.2865726,20.53388,0.2865726,21.32128,0.6802734,11.07104,-0.8945297,11.07104,0.2865726,14.24515,-0.5008289,14.24515,0.8945297,7.484639,-0.6802734,7.484639,0.5008289,10.35082,-0.2865726,10.35082,1.331573,18.99505,1.295067,20.56943,4.078204,20.63396,4.059951,21.42115,-1.361866,18.99575,-4.108497,20.63466,-1.32536,20.57013,-4.090244,21.42185,0.3087747,24.94646,-0.4786269,24.94646,0.3087747,25.73387,-0.4786269,25.73387,0.7024755,13.26029,-0.8723277,13.26029,0.3087747,16.43441,-0.4786269,16.43441,-0.7024755,8.69687,-0.3087747,11.56306,0.8723277,8.69687,0.4786269,11.56306,1.195917,24.9809,3.960801,25.83262,1.232423,23.40652,3.979054,25.04543,-1.219931,24.98146,-1.256437,23.40708,-3.984815,25.83318,-4.003068,25.04599,-0.7774312,14.50841,-0.3837304,17.68253,0.7973719,14.50841,0.4036711,17.68253,0.4036711,27.46213,-0.3837304,27.46213,0.4036711,28.24953,-0.3837304,28.24953,0.7774312,9.387976,-0.7973719,9.387976,0.3837304,12.25416,-0.4036711,12.25416,3.934155,27.56073,1.187524,25.92182,3.915902,28.34792,1.151018,27.4962,-3.931336,27.56067,-3.913083,28.34785,-1.184705,25.92175,-1.148199,27.49613,-0.3121357,33.78001,-0.3121357,34.56741,0.4752659,33.78001,0.4752659,34.56741,0.7058365,11.12363,-0.8689667,11.12363,0.3121357,13.98982,-0.4752659,13.98982,0.8689667,17.64296,-0.7058365,17.64296,0.4752659,20.81708,-0.3121357,20.81708,-1.028125,32.23771,-3.774756,33.87662,-0.9916195,33.81209,-3.756503,34.66381,1.051189,32.23824,1.014683,33.81262,3.79782,33.87716,3.779567,34.66434,-0.3586166,14.90102,0.428785,14.90102,-0.7523174,12.03484,0.8224857,12.03484,0.9578088,35.5538,0.9213029,37.12818,3.70444,37.19271,3.686187,37.9799,-0.9677294,35.55403,-3.71436,37.19294,-0.9312235,37.12841,-3.696107,37.98014,0.3586166,37.88425,0.3586166,37.09685,-0.428785,37.88425,-0.428785,37.09685,-0.428785,22.46269,0.3586166,22.46269,-0.8224857,19.28857,0.7523174,19.28857 + } + UVIndex: *498 { + a: 0,2,1,3,1,2,4,3,2,5,3,4,1,6,0,6,7,0,7,8,0,9,0,8,10,7,6,5,10,6,11,10,5,4,11,5,12,14,13,15,17,16,18,16,17,19,21,20,22,24,23,25,27,26,28,26,27,29,28,27,30,29,27,31,29,30,32,31,30,29,33,28,34,28,33,32,34,33,30,34,32,35,34,30,36,34,35,37,39,38,40,38,39,41,43,42,44,42,43,45,47,46,48,46,47,49,51,50,52,50,51,53,55,54,56,54,55,57,59,58,60,62,61,63,61,62,64,66,65,67,69,68,70,72,71,73,71,72,74,76,75,77,79,78,80,78,79,81,80,79,82,81,79,83,81,82,84,83,82,85,84,82,86,85,82,87,86,82,85,80,88,81,88,80,84,85,88,89,91,90,92,94,93,95,97,96,98,100,99,101,103,102,104,106,105,107,109,108,110,112,111,113,115,114,116,118,117,119,117,118,120,122,121,123,121,122,124,121,123,125,124,123,126,125,123,127,126,123,128,127,123,128,120,129,127,128,129,130,129,120,121,130,120,131,129,130,130,125,131,126,131,125,132,134,133,135,133,134,136,135,134,133,137,132,132,137,138,139,138,137,136,139,137,134,139,136,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154,156,153,155,157,156,155,153,158,152,159,152,158,157,159,158,155,159,157,160,162,161,163,161,162,164,161,163,165,164,163,161,166,160,167,160,166,165,167,166,163,167,165,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266,268,270,269,271,269,270 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *166 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineTallB_detailed, Model::RootNode + C: "OO",5328955943535619312,0 + + ;Geometry::, Model::Mesh tree_pineTallB_detailed + C: "OO",4773995791302873830,5328955943535619312 + + ;Material::leafsDark, Model::Mesh tree_pineTallB_detailed + C: "OO",3026,5328955943535619312 + + ;Material::woodBarkDark, Model::Mesh tree_pineTallB_detailed + C: "OO",3048,5328955943535619312 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB_detailed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB_detailed.fbx.import new file mode 100644 index 0000000..d16d0ba --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB_detailed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b6okbuv56jwj4" +path="res://.godot/imported/tree_pineTallB_detailed.fbx-580e2a5a5ec9a25b985b684cb79b1d56.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallB_detailed.fbx" +dest_files=["res://.godot/imported/tree_pineTallB_detailed.fbx-580e2a5a5ec9a25b985b684cb79b1d56.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC.fbx new file mode 100644 index 0000000..325f6d6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 889 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineTallC.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineTallC.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4876297887171584131, "Model::tree_pineTallC", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4921558354927410111, "Geometry::", "Mesh" { + Vertices: *468 { + a: -0.08260068,8.49084,-2.22774,0.0439633,10.50054,-1.359448,-1.951536,8.568595,-1.140345,-1.229114,10.38632,-0.6968885,-0.08260068,8.20691,2.091746,-1.951536,8.42663,1.019397,0.06822117,10.7215,1.305347,-1.142254,10.51451,0.7312158,2.401922,6.28531,1.38675,2.401922,6.28531,-1.38675,0,6.28531,2.7735,0.24505,6.28531,0.24505,-0.24505,6.28531,0.24505,-2.401922,6.28531,1.38675,-0.24505,6.28531,-0.24505,0.24505,6.28531,-0.24505,0,6.28531,-2.7735,-2.401922,6.28531,-1.38675,-1.295608,10.37453,-0.7336038,0.145428,10.49586,-1.580914,-0.923362,13.33317,-0.5343237,-0.1344694,13.30723,-1.011377,-1.295608,10.51106,0.9371758,-0.9396117,13.28063,0.3945367,0.145428,10.76891,1.760645,-0.1067886,13.1929,0.9357255,1.786334,8.27112,-1.155391,1.161236,10.71167,-0.5837855,-0.08260068,8.49084,-2.22774,0.0439633,10.50054,-1.359448,1.786334,8.129155,1.004351,-0.08260068,8.20691,2.091746,1.116485,10.80735,0.6595594,0.06822117,10.7215,1.305347,-2.401922,6.28531,-1.38675,0,6.28531,-2.7735,-1.444059,8.507917,-0.833728,0,8.449332,-1.696611,0.145428,10.49586,-1.580914,1.586464,10.75371,-0.757446,-0.1344694,13.30723,-1.011377,0.7440672,13.22222,-0.571091,0.145428,10.76891,1.760645,-0.1067886,13.1929,0.9357255,1.586464,10.89024,0.9133338,0.7940999,13.1599,0.4493392,-1.951536,8.568595,-1.140345,-1.229114,10.38632,-0.6968885,-1.951536,8.42663,1.019397,-1.142254,10.51451,0.7312158,-1.295608,10.37453,-0.7336038,-0.923362,13.33317,-0.5343237,-1.295608,10.51106,0.9371758,-0.9396117,13.28063,0.3945367,1.586464,10.75371,-0.757446,1.116485,10.80735,0.6595594,1.586464,10.89024,0.9133338,0.145428,10.76891,1.760645,1.161236,10.71167,-0.5837855,0.06822117,10.7215,1.305347,-1.295608,10.51106,0.9371758,-1.142254,10.51451,0.7312158,-1.229114,10.38632,-0.6968885,0.145428,10.49586,-1.580914,0.0439633,10.50054,-1.359448,-1.295608,10.37453,-0.7336038,1.786334,8.27112,-1.155391,1.598523,8.149505,0.9229072,1.786334,8.129155,1.004351,-0.08260068,8.20691,2.091746,0,8.218745,1.811358,-1.490457,8.400257,0.8605158,-1.951536,8.42663,1.019397,1.545272,8.273065,-0.8921635,-0.08260068,8.49084,-2.22774,0,8.449332,-1.696611,-1.444059,8.507917,-0.833728,-1.951536,8.568595,-1.140345,1.786334,8.27112,-1.155391,1.786334,8.129155,1.004351,1.161236,10.71167,-0.5837855,1.116485,10.80735,0.6595594,1.586464,10.75371,-0.757446,1.586464,10.89024,0.9133338,0.7440672,13.22222,-0.571091,0.7940999,13.1599,0.4493392,2.401922,6.28531,1.38675,0,6.28531,2.7735,1.598523,8.149505,0.9229072,0,8.218745,1.811358,0,6.28531,-2.7735,2.401922,6.28531,-1.38675,0,8.449332,-1.696611,1.545272,8.273065,-0.8921635,-2.401922,6.28531,-1.38675,-1.444059,8.507917,-0.833728,-2.401922,6.28531,1.38675,-1.490457,8.400257,0.8605158,0.9452521,13.21475,-0.6779402,0.7940999,13.1599,0.4493392,0.9452521,13.14567,0.5181985,-0.09013723,13.18117,1.11938,-0.1067886,13.1929,0.9357255,-1.125526,13.28574,0.5244228,-0.9396117,13.28063,0.3945367,0.7440672,13.22222,-0.571091,-0.09013723,13.31932,-1.272897,-0.1344694,13.30723,-1.011377,-1.125526,13.35482,-0.6717157,-0.923362,13.33317,-0.5343237,2.401922,6.28531,-1.38675,2.401922,6.28531,1.38675,1.545272,8.273065,-0.8921635,1.598523,8.149505,0.9229072,0,6.28531,2.7735,-2.401922,6.28531,1.38675,0,8.218745,1.811358,-1.490457,8.400257,0.8605158,-1.125526,13.35482,-0.6717157,-0.09013723,13.31932,-1.272897,0.09013729,16.70499,0.07675856,-0.09013723,13.31932,-1.272897,0.9452521,13.21475,-0.6779402,0.09013729,16.70499,0.07675856,-0.09013723,13.18117,1.11938,-1.125526,13.28574,0.5244228,0.09013729,16.70499,0.07675856,0.9452521,13.14567,0.5181985,-0.09013723,13.18117,1.11938,0.09013729,16.70499,0.07675856,-1.125526,13.35482,-0.6717157,0.09013729,16.70499,0.07675856,-1.125526,13.28574,0.5244228,0.09013729,16.70499,0.07675856,0.9452521,13.21475,-0.6779402,0.9452521,13.14567,0.5181985,0.46371,0,0.46371,-0.46371,0,0.46371,0.24505,6.28531,0.24505,-0.24505,6.28531,0.24505,-0.46371,0,-0.46371,-0.24505,6.28531,-0.24505,-0.46371,0,0.46371,-0.24505,6.28531,0.24505,0.46371,0,0.46371,0.46371,0,-0.46371,-0.46371,0,0.46371,-0.46371,0,-0.46371,0.46371,0,-0.46371,0.46371,0,0.46371,0.24505,6.28531,-0.24505,0.24505,6.28531,0.24505,-0.46371,0,-0.46371,0.46371,0,-0.46371,-0.24505,6.28531,-0.24505,0.24505,6.28531,-0.24505 + } + PolygonVertexIndex: *294 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,12,-14,11,15,-10,16,9,-16,14,16,-16,17,16,-15,13,17,-15,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,54,-56,59,55,-58,60,59,-58,61,59,-61,62,61,-61,54,58,-64,64,63,-59,65,63,-65,62,65,-65,60,65,-63,66,68,-68,69,67,-69,70,67,-70,71,70,-70,72,71,-70,67,73,-67,74,66,-74,75,74,-74,76,74,-76,77,74,-77,71,77,-77,72,77,-72,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,99,-102,103,102,-102,104,102,-104,99,105,-99,106,98,-106,107,106,-106,108,106,-108,103,108,-105,109,108,-108,104,108,-110,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,123,-123,124,126,-126,127,129,-129,130,132,-132,133,135,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *882 { + a: -0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.4614484,0.3496102,-0.815376,-0.4614484,0.3496102,-0.815376,-0.4614484,0.3496102,-0.815376,0.4980289,0.2980977,-0.8143126,0.4980289,0.2980977,-0.8143126,0.4980289,0.2980977,-0.8143126,-0.4582804,0.2736493,0.845633,-0.4582804,0.2736493,0.845633,-0.4582804,0.2736493,0.845633,0.4951808,0.2231028,0.8396553,0.4951808,0.2231028,0.8396553,0.4951808,0.2231028,0.8396553,-0.9412345,0.3371918,0.01947216,-0.9412345,0.3371918,0.01947216,-0.9412345,0.3371918,0.01947216,0.9718593,0.2351704,0.01358119,0.9718593,0.2351704,0.01358119,0.9718593,0.2351704,0.01358119,0,0.03476803,0.9993954,0,0.03476803,0.9993954,0,0.03476803,0.9993954,0,0.03476803,0.9993954,0,0.03476803,0.9993954,0,0.03476803,0.9993954,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,-0.9993954,0.03476803,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9993954,0.03476803,0,0.9993954,0.03476803,0,0.9993954,0.03476803,0,0.9993954,0.03476803,0,0.9993954,0.03476803,0,0.9993954,0.03476803,0,0,0.03476803,-0.9993954,0,0.03476803,-0.9993954,0,0.03476803,-0.9993954,0,0.03476803,-0.9993954,0,0.03476803,-0.9993954,0,0.03476803,-0.9993954 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *312 { + a: -4.015736,28.01261,-2.774383,36.55638,4.496163,28.34317,2.872919,36.07084,3.587967,28.75309,-4.891129,29.65726,2.655126,39.10089,-2.613575,38.2491,9.456384,5.459646,9.456384,-5.459646,0,10.91929,0.9647636,0.9647636,-0.9647636,0.9647636,-9.456384,5.459646,-0.9647636,-0.9647636,0.9647636,-0.9647636,0,-10.91929,-9.456384,-5.459646,2.887897,39.92142,-3.693269,40.40265,2.034881,51.65668,-1.594693,51.55376,-2.387693,38.9628,-2.323679,50.16182,4.142328,40.00545,1.585786,49.80707,-3.580385,28.48716,-2.674547,38.61744,4.897871,29.39918,2.673089,37.74108,4.030492,29.51197,-4.482008,29.82667,2.455178,40.35141,-2.391467,40.00394,5.459644,18.98222,-5.459647,18.98222,3.282393,28.51066,-3.339786,28.2595,2.389958,39.03765,-4.140375,40.07835,2.32173,50.38431,-1.546389,50.04123,-2.860594,37.95683,-2.154122,48.06171,3.718732,38.4626,1.876343,47.92412,-4.68555,28.66296,-2.867129,36.34703,3.814564,28.06283,2.762261,36.88891,-2.835319,39.87775,-2.065944,51.61879,3.742202,40.41955,1.591453,51.41029,5.8201,10.2046,0.1016549,11.57945,0.2243724,13.70391,-5.595729,10.59429,4.358447,9.127048,-4.230642,9.379018,-5.820102,3.985356,-4.812932,4.073766,-0.2097273,0.7883181,5.595726,3.595668,4.644008,3.715608,-0.2243749,0.4860467,-7.981672,0.8247837,-1.194591,-3.829375,-1.416979,-4.608164,6.564694,-1.632499,5.505753,-1.17958,6.34503,5.766831,7.981676,6.776113,-6.578385,0.8992524,-6.564691,9.233397,-5.156971,7.644904,1.079158,9.887009,1.416983,12.20906,4.664753,29.87347,-3.837003,29.29705,2.373845,39.78281,-2.523462,40.17132,2.805712,37.99014,-3.769573,38.55843,2.165341,48.26524,-1.856045,48.00582,5.459646,18.98222,-5.459645,18.98222,3.633494,26.97412,-3.565666,27.27096,5.459646,18.98222,-5.459645,18.98222,3.339786,28.2595,-3.512454,27.50383,-5.459645,18.98221,-3.282394,28.51065,5.459646,18.98221,3.387857,28.04911,-4.444865,3.517349,-0.6800939,1.083409,-0.859512,0.4520847,3.585351,2.027281,3.077361,2.548029,4.44486,6.667741,3.580983,6.441117,-3.611062,3.84896,-3.585354,8.157807,-2.688303,7.621036,0.8595083,9.733004,0.7553028,8.772544,5.459645,18.98222,-5.459646,18.98222,3.512455,27.50383,-3.633493,26.97412,5.459646,18.98222,-5.459646,18.98222,3.565666,27.27096,-3.387857,28.04911,2.553941,47.69243,-2.159422,47.54326,-0.160001,61.77047,2.917441,48.83494,-1.782195,48.40363,-0.4604125,62.79922,1.787796,48.80698,-2.91214,49.23503,0.455988,63.23085,2.169178,49.6363,-2.544366,49.77967,0.1521616,64.0117,-2.735637,48.02344,0.3094744,62.03358,1.972562,47.73457,-0.2972109,63.83872,2.720796,49.70111,-1.987952,49.42131,1.82563,-0.06347356,-1.82563,-0.06347356,0.9647636,24.69681,-0.9647636,24.69681,-1.82563,-0.06347356,-0.9647636,24.69681,1.82563,-0.06347356,0.9647636,24.69681,1.82563,1.82563,1.82563,-1.82563,-1.82563,1.82563,-1.82563,-1.82563,1.82563,-0.06347356,-1.82563,-0.06347356,0.9647636,24.69681,-0.9647636,24.69681,1.82563,-0.06347356,-1.82563,-0.06347356,0.9647636,24.69681,-0.9647636,24.69681 + } + UVIndex: *294 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,12,13,11,15,9,16,9,15,14,16,15,17,16,14,13,17,14,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,54,55,59,55,57,60,59,57,61,59,60,62,61,60,54,58,63,64,63,58,65,63,64,62,65,64,60,65,62,66,68,67,69,67,68,70,67,69,71,70,69,72,71,69,67,73,66,74,66,73,75,74,73,76,74,75,77,74,76,71,77,76,72,77,71,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,99,101,103,102,101,104,102,103,99,105,98,106,98,105,107,106,105,108,106,107,103,108,104,109,108,107,104,108,109,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,123,122,124,126,125,127,129,128,130,132,131,133,135,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *98 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineTallC, Model::RootNode + C: "OO",4876297887171584131,0 + + ;Geometry::, Model::Mesh tree_pineTallC + C: "OO",4921558354927410111,4876297887171584131 + + ;Material::leafsDark, Model::Mesh tree_pineTallC + C: "OO",3026,4876297887171584131 + + ;Material::woodBarkDark, Model::Mesh tree_pineTallC + C: "OO",3048,4876297887171584131 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC.fbx.import new file mode 100644 index 0000000..d25957c --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ruboiioo3u3j" +path="res://.godot/imported/tree_pineTallC.fbx-c35adc961d4f77a38484b82e8d9ef0e3.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC.fbx" +dest_files=["res://.godot/imported/tree_pineTallC.fbx-c35adc961d4f77a38484b82e8d9ef0e3.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC_detailed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC_detailed.fbx new file mode 100644 index 0000000..c8c9a9b --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC_detailed.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 40 + Millisecond: 990 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineTallC_detailed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineTallC_detailed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4922756746661072939, "Model::tree_pineTallC_detailed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4760108754151876094, "Geometry::", "Mesh" { + Vertices: *732 { + a: -0.08260068,8.49084,-2.22774,0.0439633,10.50054,-1.359448,-1.951536,8.568595,-1.140345,-1.229114,10.38632,-0.6968885,-0.08260068,8.20691,2.091746,-1.951536,8.42663,1.019397,0.06822117,10.7215,1.305347,-1.142254,10.51451,0.7312158,2.401922,6.28531,1.38675,2.401922,6.28531,-1.38675,0,6.28531,2.7735,0.24505,6.28531,0.24505,-0.24505,6.28531,0.24505,-2.401922,6.28531,1.38675,-0.24505,6.28531,-0.24505,0.24505,6.28531,-0.24505,0,6.28531,-2.7735,-2.401922,6.28531,-1.38675,-1.295608,10.37453,-0.7336038,0.145428,10.49586,-1.580914,-0.923362,13.33317,-0.5343237,-0.1344694,13.30723,-1.011377,-1.295608,10.51106,0.9371758,-0.9396117,13.28063,0.3945367,0.145428,10.76891,1.760645,-0.1067886,13.1929,0.9357255,1.786334,8.27112,-1.155391,1.161236,10.71167,-0.5837855,-0.08260068,8.49084,-2.22774,0.0439633,10.50054,-1.359448,1.786334,8.129155,1.004351,-0.08260068,8.20691,2.091746,1.116485,10.80735,0.6595594,0.06822117,10.7215,1.305347,-2.401922,6.28531,-1.38675,0,6.28531,-2.7735,-1.444059,8.507917,-0.833728,0,8.449332,-1.696611,0.145428,10.49586,-1.580914,1.586464,10.75371,-0.757446,-0.1344694,13.30723,-1.011377,0.7440672,13.22222,-0.571091,0.145428,10.76891,1.760645,-0.1067886,13.1929,0.9357255,1.586464,10.89024,0.9133338,0.7940999,13.1599,0.4493392,-1.951536,8.568595,-1.140345,-1.229114,10.38632,-0.6968885,-1.951536,8.42663,1.019397,-1.142254,10.51451,0.7312158,-1.295608,10.37453,-0.7336038,-0.923362,13.33317,-0.5343237,-1.295608,10.51106,0.9371758,-0.9396117,13.28063,0.3945367,1.586464,10.75371,-0.757446,1.116485,10.80735,0.6595594,1.586464,10.89024,0.9133338,0.145428,10.76891,1.760645,1.161236,10.71167,-0.5837855,0.06822117,10.7215,1.305347,-1.295608,10.51106,0.9371758,-1.142254,10.51451,0.7312158,-1.229114,10.38632,-0.6968885,0.145428,10.49586,-1.580914,0.0439633,10.50054,-1.359448,-1.295608,10.37453,-0.7336038,1.786334,8.27112,-1.155391,1.598523,8.149505,0.9229072,1.786334,8.129155,1.004351,-0.08260068,8.20691,2.091746,0,8.218745,1.811358,-1.490457,8.400257,0.8605158,-1.951536,8.42663,1.019397,1.545272,8.273065,-0.8921635,-0.08260068,8.49084,-2.22774,0,8.449332,-1.696611,-1.444059,8.507917,-0.833728,-1.951536,8.568595,-1.140345,1.786334,8.27112,-1.155391,1.786334,8.129155,1.004351,1.161236,10.71167,-0.5837855,1.116485,10.80735,0.6595594,1.586464,10.75371,-0.757446,1.586464,10.89024,0.9133338,0.7440672,13.22222,-0.571091,0.7940999,13.1599,0.4493392,2.401922,6.28531,1.38675,0,6.28531,2.7735,1.598523,8.149505,0.9229072,0,8.218745,1.811358,0,6.28531,-2.7735,2.401922,6.28531,-1.38675,0,8.449332,-1.696611,1.545272,8.273065,-0.8921635,-2.401922,6.28531,-1.38675,-1.444059,8.507917,-0.833728,-2.401922,6.28531,1.38675,-1.490457,8.400257,0.8605158,0.9452521,13.21475,-0.6779402,0.7940999,13.1599,0.4493392,0.9452521,13.14567,0.5181985,-0.09013723,13.18117,1.11938,-0.1067886,13.1929,0.9357255,-1.125526,13.28574,0.5244228,-0.9396117,13.28063,0.3945367,0.7440672,13.22222,-0.571091,-0.09013723,13.31932,-1.272897,-0.1344694,13.30723,-1.011377,-1.125526,13.35482,-0.6717157,-0.923362,13.33317,-0.5343237,2.401922,6.28531,-1.38675,2.401922,6.28531,1.38675,1.545272,8.273065,-0.8921635,1.598523,8.149505,0.9229072,0,6.28531,2.7735,-2.401922,6.28531,1.38675,0,8.218745,1.811358,-1.490457,8.400257,0.8605158,-1.125526,13.35482,-0.6717157,-0.09013723,13.31932,-1.272897,0.09013729,16.70499,0.07675856,-0.09013723,13.31932,-1.272897,0.9452521,13.21475,-0.6779402,0.09013729,16.70499,0.07675856,-0.09013723,13.18117,1.11938,-1.125526,13.28574,0.5244228,0.09013729,16.70499,0.07675856,0.9452521,13.14567,0.5181985,-0.09013723,13.18117,1.11938,0.09013729,16.70499,0.07675856,-1.125526,13.35482,-0.6717157,0.09013729,16.70499,0.07675856,-1.125526,13.28574,0.5244228,0.09013729,16.70499,0.07675856,0.9452521,13.21475,-0.6779402,0.9452521,13.14567,0.5181985,-0.46371,1,0.46371,0.1923877,4.368423,0.3243541,0.46371,1,0.46371,0.24505,6.28531,0.24505,0.1923877,4.768081,0.3078197,-0.2076123,4.768081,0.3078197,-0.2076123,4.368423,0.3243541,-0.24505,6.28531,0.24505,-0.24505,6.28531,-0.24505,-0.4123335,2.24184,-0.2261132,-0.46371,1,-0.46371,-0.46371,1,0.46371,-0.4123335,2.24184,0.1738868,-0.3957991,2.641498,0.1738868,-0.24505,6.28531,0.24505,-0.3957991,2.641498,-0.2261132,0.24505,6.28531,-0.24505,0.2680421,5.72956,-0.204353,0.24505,6.28531,0.24505,0.2680421,5.72956,0.195647,0.2845764,5.329902,0.195647,0.2845764,5.329902,-0.204353,0.46371,1,-0.46371,0.46371,1,0.46371,-0.46371,1,-0.46371,0.46371,1,-0.46371,-0.24505,6.28531,-0.24505,0.24505,6.28531,-0.24505,0.695565,0,0.695565,0.695565,0,-0.695565,-0.695565,0,0.695565,-0.695565,0,-0.695565,-0.695565,0,-0.695565,-0.46371,1,-0.46371,-0.695565,0,0.695565,-0.46371,1,0.46371,0.695565,0,-0.695565,0.695565,0,0.695565,0.46371,1,-0.46371,0.46371,1,0.46371,-0.695565,0,-0.695565,0.695565,0,-0.695565,-0.46371,1,-0.46371,0.46371,1,-0.46371,0.695565,0,0.695565,-0.695565,0,0.695565,0.46371,1,0.46371,-0.46371,1,0.46371,0.1923877,4.768081,0.3078197,0.1923877,4.368423,0.3243541,0.09238766,4.996845,0.9989542,0.09238766,4.797016,1.007221,0.09238766,4.797016,1.007221,-0.1076123,4.797016,1.007221,0.09238766,4.996845,0.9989542,-0.1076123,4.996845,0.9989542,0.1923877,4.768081,0.3078197,0.09238766,4.996845,0.9989542,-0.2076123,4.768081,0.3078197,-0.1076123,4.996845,0.9989542,-0.2076123,4.768081,0.3078197,-0.1076123,4.996845,0.9989542,-0.2076123,4.368423,0.3243541,-0.1076123,4.797016,1.007221,0.1923877,4.368423,0.3243541,-0.2076123,4.368423,0.3243541,0.09238766,4.797016,1.007221,-0.1076123,4.797016,1.007221,-1.095201,2.670433,-0.1261132,-1.086934,2.870262,-0.1261132,-1.095201,2.670433,0.07388684,-1.086934,2.870262,0.07388684,-0.4123335,2.24184,-0.2261132,-0.3957991,2.641498,-0.2261132,-1.095201,2.670433,-0.1261132,-1.086934,2.870262,-0.1261132,-0.4123335,2.24184,0.1738868,-1.095201,2.670433,0.07388684,-0.3957991,2.641498,0.1738868,-1.086934,2.870262,0.07388684,-0.3957991,2.641498,-0.2261132,-0.3957991,2.641498,0.1738868,-1.086934,2.870262,-0.1261132,-1.086934,2.870262,0.07388684,-0.4123335,2.24184,0.1738868,-0.4123335,2.24184,-0.2261132,-1.095201,2.670433,0.07388684,-1.095201,2.670433,-0.1261132,0.2845764,5.329902,0.195647,0.2680421,5.72956,0.195647,0.9674438,5.758495,0.09564701,0.9591765,5.958323,0.09564701,0.9674438,5.758495,0.09564701,0.9674438,5.758495,-0.104353,0.2845764,5.329902,0.195647,0.2845764,5.329902,-0.204353,0.2845764,5.329902,-0.204353,0.9674438,5.758495,-0.104353,0.2680421,5.72956,-0.204353,0.9591765,5.958323,-0.104353,0.9591765,5.958323,-0.104353,0.9674438,5.758495,-0.104353,0.9591765,5.958323,0.09564701,0.9674438,5.758495,0.09564701,0.9591765,5.958323,-0.104353,0.9591765,5.958323,0.09564701,0.2680421,5.72956,-0.204353,0.2680421,5.72956,0.195647 + } + PolygonVertexIndex: *462 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,13,12,-11,14,12,-14,11,15,-10,16,9,-16,14,16,-16,17,16,-15,13,17,-15,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,54,-56,59,55,-58,60,59,-58,61,59,-61,62,61,-61,54,58,-64,64,63,-59,65,63,-65,62,65,-65,60,65,-63,66,68,-68,69,67,-69,70,67,-70,71,70,-70,72,71,-70,67,73,-67,74,66,-74,75,74,-74,76,74,-76,77,74,-77,71,77,-77,72,77,-72,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,99,-102,103,102,-102,104,102,-104,99,105,-99,106,98,-106,107,106,-106,108,106,-108,103,108,-105,109,108,-108,104,108,-110,110,112,-112,113,111,-113,114,116,-116,117,115,-117,118,120,-120,121,123,-123,124,126,-126,127,129,-129,130,132,-132,133,135,-135,136,138,-138,139,137,-139,140,137,-140,141,140,-140,137,142,-137,143,136,-143,141,143,-143,139,143,-142,144,146,-146,147,145,-147,148,145,-148,149,148,-148,150,149,-148,150,144,-152,145,151,-145,149,150,-152,152,154,-154,155,153,-155,156,155,-155,153,157,-153,152,157,-159,159,158,-158,156,159,-158,154,159,-157,160,162,-162,163,161,-163,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1386 { + a: -0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4539443,0.377335,-0.8071883,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,-0.5135159,0.2280811,0.8272125,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4997834,0.3168151,-0.8061295,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4539922,0.220108,-0.8633907,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,0.4579714,0.3287351,0.8259512,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.931022,0.3641771,0.02393833,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,-0.9920399,0.1255057,-0.01025588,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,0.1306711,-0.9881322,0.0807459,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,-0.07942502,-0.9946943,-0.06538349,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9695024,0.2445541,0.01607504,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.9454625,0.3246486,-0.02652882,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,-0.06754807,-0.9960564,-0.05752183,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.4614484,0.3496102,-0.815376,-0.4614484,0.3496102,-0.815376,-0.4614484,0.3496102,-0.815376,0.4980289,0.2980977,-0.8143126,0.4980289,0.2980977,-0.8143126,0.4980289,0.2980977,-0.8143126,-0.4582804,0.2736493,0.845633,-0.4582804,0.2736493,0.845633,-0.4582804,0.2736493,0.845633,0.4951808,0.2231028,0.8396553,0.4951808,0.2231028,0.8396553,0.4951808,0.2231028,0.8396553,-0.9412345,0.3371918,0.01947216,-0.9412345,0.3371918,0.01947216,-0.9412345,0.3371918,0.01947216,0.9718593,0.2351704,0.01358119,0.9718593,0.2351704,0.01358119,0.9718593,0.2351704,0.01358119,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0,0.04133592,-0.9991453,0,0.04133592,-0.9991453,0,0.04133592,-0.9991453,0,0.04133592,-0.9991453,0,0.04133592,-0.9991453,0,0.04133592,-0.9991453,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0.9899495,0.005845782,0.1413005,0.9899495,0.005845782,0.1413005,0.9899495,0.005845782,0.1413005,0.9899495,0.005845782,0.1413005,0.9899495,0.005845782,0.1413005,0.9899495,0.005845782,0.1413005,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.04133592,0.9991453,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,0,0.9493463,-0.3142318,-0.9899495,0.005845782,0.1413005,-0.9899495,0.005845782,0.1413005,-0.9899495,0.005845782,0.1413005,-0.9899495,0.005845782,0.1413005,-0.9899495,0.005845782,0.1413005,-0.9899495,0.005845782,0.1413005,0,-0.8469927,0.5316046,0,-0.8469927,0.5316046,0,-0.8469927,0.5316046,0,-0.8469927,0.5316046,0,-0.8469927,0.5316046,0,-0.8469927,0.5316046,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.9991453,0.04133592,0,-0.1413005,0.005845782,-0.9899495,-0.1413005,0.005845782,-0.9899495,-0.1413005,0.005845782,-0.9899495,-0.1413005,0.005845782,-0.9899495,-0.1413005,0.005845782,-0.9899495,-0.1413005,0.005845782,-0.9899495,-0.1413005,0.005845782,0.9899495,-0.1413005,0.005845782,0.9899495,-0.1413005,0.005845782,0.9899495,-0.1413005,0.005845782,0.9899495,-0.1413005,0.005845782,0.9899495,-0.1413005,0.005845782,0.9899495,0.3142318,0.9493463,0,0.3142318,0.9493463,0,0.3142318,0.9493463,0,0.3142318,0.9493463,0,0.3142318,0.9493463,0,0.3142318,0.9493463,0,-0.5316046,-0.8469927,0,-0.5316046,-0.8469927,0,-0.5316046,-0.8469927,0,-0.5316046,-0.8469927,0,-0.5316046,-0.8469927,0,-0.5316046,-0.8469927,0,0.1413005,0.005845782,0.9899495,0.1413005,0.005845782,0.9899495,0.1413005,0.005845782,0.9899495,0.1413005,0.005845782,0.9899495,0.1413005,0.005845782,0.9899495,0.1413005,0.005845782,0.9899495,0.5316046,-0.8469927,0,0.5316046,-0.8469927,0,0.5316046,-0.8469927,0,0.5316046,-0.8469927,0,0.5316046,-0.8469927,0,0.5316046,-0.8469927,0,0.1413005,0.005845782,-0.9899495,0.1413005,0.005845782,-0.9899495,0.1413005,0.005845782,-0.9899495,0.1413005,0.005845782,-0.9899495,0.1413005,0.005845782,-0.9899495,0.1413005,0.005845782,-0.9899495,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,0.9991453,0.04133592,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0,-0.3142318,0.9493463,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *488 { + a: -4.015736,28.01261,-2.774383,36.55638,4.496163,28.34317,2.872919,36.07084,3.587967,28.75309,-4.891129,29.65726,2.655126,39.10089,-2.613575,38.2491,9.456384,5.459646,9.456384,-5.459646,0,10.91929,0.9647636,0.9647636,-0.9647636,0.9647636,-9.456384,5.459646,-0.9647636,-0.9647636,0.9647636,-0.9647636,0,-10.91929,-9.456384,-5.459646,2.887897,39.92142,-3.693269,40.40265,2.034881,51.65668,-1.594693,51.55376,-2.387693,38.9628,-2.323679,50.16182,4.142328,40.00545,1.585786,49.80707,-3.580385,28.48716,-2.674547,38.61744,4.897871,29.39918,2.673089,37.74108,4.030492,29.51197,-4.482008,29.82667,2.455178,40.35141,-2.391467,40.00394,5.459644,18.98222,-5.459647,18.98222,3.282393,28.51066,-3.339786,28.2595,2.389958,39.03765,-4.140375,40.07835,2.32173,50.38431,-1.546389,50.04123,-2.860594,37.95683,-2.154122,48.06171,3.718732,38.4626,1.876343,47.92412,-4.68555,28.66296,-2.867129,36.34703,3.814564,28.06283,2.762261,36.88891,-2.835319,39.87775,-2.065944,51.61879,3.742202,40.41955,1.591453,51.41029,5.8201,10.2046,0.1016549,11.57945,0.2243724,13.70391,-5.595729,10.59429,4.358447,9.127048,-4.230642,9.379018,-5.820102,3.985356,-4.812932,4.073766,-0.2097273,0.7883181,5.595726,3.595668,4.644008,3.715608,-0.2243749,0.4860467,-7.981672,0.8247837,-1.194591,-3.829375,-1.416979,-4.608164,6.564694,-1.632499,5.505753,-1.17958,6.34503,5.766831,7.981676,6.776113,-6.578385,0.8992524,-6.564691,9.233397,-5.156971,7.644904,1.079158,9.887009,1.416983,12.20906,4.664753,29.87347,-3.837003,29.29705,2.373845,39.78281,-2.523462,40.17132,2.805712,37.99014,-3.769573,38.55843,2.165341,48.26524,-1.856045,48.00582,5.459646,18.98222,-5.459645,18.98222,3.633494,26.97412,-3.565666,27.27096,5.459646,18.98222,-5.459645,18.98222,3.339786,28.2595,-3.512454,27.50383,-5.459645,18.98221,-3.282394,28.51065,5.459646,18.98221,3.387857,28.04911,-4.444865,3.517349,-0.6800939,1.083409,-0.859512,0.4520847,3.585351,2.027281,3.077361,2.548029,4.44486,6.667741,3.580983,6.441117,-3.611062,3.84896,-3.585354,8.157807,-2.688303,7.621036,0.8595083,9.733004,0.7553028,8.772544,5.459645,18.98222,-5.459646,18.98222,3.512455,27.50383,-3.633493,26.97412,5.459646,18.98222,-5.459646,18.98222,3.565666,27.27096,-3.387857,28.04911,2.553941,47.69243,-2.159422,47.54326,-0.160001,61.77047,2.917441,48.83494,-1.782195,48.40363,-0.4604125,62.79922,1.787796,48.80698,-2.91214,49.23503,0.455988,63.23085,2.169178,49.6363,-2.544366,49.77967,0.1521616,64.0117,-2.735637,48.02344,0.3094744,62.03358,1.972562,47.73457,-0.2972109,63.83872,2.720796,49.70111,-1.987952,49.42131,-1.82563,3.858179,0.7574317,17.13103,1.82563,3.858179,0.9647636,24.68428,0.7574317,18.70583,-0.8173714,18.70583,-0.8173714,17.13103,-0.9647636,24.68428,-0.9647636,24.68428,-0.8902093,8.751493,-1.82563,3.858179,1.82563,3.858179,0.6845939,8.751493,0.6845939,10.3263,0.9647636,24.68428,-0.8902093,10.3263,0.9647636,24.68428,0.8045393,22.49442,-0.9647636,24.68428,-0.7702638,22.49442,-0.7702638,20.91962,0.8045393,20.91962,1.82563,3.858179,-1.82563,3.858179,1.82563,3.858179,-1.82563,3.858179,0.9647636,24.68428,-0.9647636,24.68428,2.738445,2.738445,2.738445,-2.738445,-2.738445,2.738445,-2.738445,-2.738445,-2.738445,-0.6185151,-1.82563,3.422928,2.738445,-0.6185151,1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,-1.092702,18.76627,-1.157144,17.19278,-3.842033,19.66693,-3.874255,18.88019,0.363731,18.70583,-0.4236706,18.70583,0.363731,19.49323,-0.4236706,19.49323,-0.7574317,7.049253,-0.363731,9.915438,0.8173714,7.049253,0.4236706,9.915438,1.084232,18.76592,3.833564,19.66658,1.148675,17.19244,3.865785,18.87984,0.7574317,10.2244,-0.8173714,10.2244,0.363731,13.39852,-0.4236706,13.39852,-0.4965085,10.3263,-0.4965085,11.1137,0.2908931,10.3263,0.2908931,11.1137,1.481283,8.819497,1.41684,10.39298,4.198393,10.5069,4.166172,11.29364,-1.510337,8.820686,-4.227448,10.50809,-1.445894,10.39417,-4.195226,11.29483,0.8902093,4.747217,-0.6845939,4.747217,0.4965085,7.613402,-0.2908931,7.613402,0.6845939,6.06699,-0.8902093,6.06699,0.2908931,9.241108,-0.4965085,9.241108,1.000298,20.97812,0.9358549,22.55161,3.717408,22.66553,3.685187,23.45227,-0.376563,15.27819,0.4108385,15.27819,-0.7702638,12.10407,0.8045393,12.10407,-0.9954544,20.97792,-3.712565,22.66533,-0.9310117,22.55141,-3.680343,23.45207,0.4108385,23.28182,0.4108385,22.49442,-0.376563,23.28182,-0.376563,22.49442,-0.4108385,10.95624,0.376563,10.95624,-0.8045393,8.090057,0.7702638,8.090057 + } + UVIndex: *462 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,13,12,10,14,12,13,11,15,9,16,9,15,14,16,15,17,16,14,13,17,14,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,54,55,59,55,57,60,59,57,61,59,60,62,61,60,54,58,63,64,63,58,65,63,64,62,65,64,60,65,62,66,68,67,69,67,68,70,67,69,71,70,69,72,71,69,67,73,66,74,66,73,75,74,73,76,74,75,77,74,76,71,77,76,72,77,71,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,99,101,103,102,101,104,102,103,99,105,98,106,98,105,107,106,105,108,106,107,103,108,104,109,108,107,104,108,109,110,112,111,113,111,112,114,116,115,117,115,116,118,120,119,121,123,122,124,126,125,127,129,128,130,132,131,133,135,134,136,138,137,139,137,138,140,137,139,141,140,139,137,142,136,143,136,142,141,143,142,139,143,141,144,146,145,147,145,146,148,145,147,149,148,147,150,149,147,150,144,151,145,151,144,149,150,151,152,154,153,155,153,154,156,155,154,153,157,152,152,157,158,159,158,157,156,159,157,154,159,156,160,162,161,163,161,162,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *154 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineTallC_detailed, Model::RootNode + C: "OO",4922756746661072939,0 + + ;Geometry::, Model::Mesh tree_pineTallC_detailed + C: "OO",4760108754151876094,4922756746661072939 + + ;Material::leafsDark, Model::Mesh tree_pineTallC_detailed + C: "OO",3026,4922756746661072939 + + ;Material::woodBarkDark, Model::Mesh tree_pineTallC_detailed + C: "OO",3048,4922756746661072939 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC_detailed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC_detailed.fbx.import new file mode 100644 index 0000000..a98b669 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC_detailed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dn87x0mk1us5t" +path="res://.godot/imported/tree_pineTallC_detailed.fbx-684f0286d0a5018b7162be4a9a4d95da.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallC_detailed.fbx" +dest_files=["res://.godot/imported/tree_pineTallC_detailed.fbx-684f0286d0a5018b7162be4a9a4d95da.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD.fbx new file mode 100644 index 0000000..5240615 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 41 + Millisecond: 104 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineTallD.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineTallD.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5627650998321485476, "Model::tree_pineTallD", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5390078511536097884, "Geometry::", "Mesh" { + Vertices: *468 { + a: 2.401922,10.33531,1.38675,2.401922,10.33531,-1.38675,0,10.33531,2.7735,0.24505,10.33531,0.24505,-0.24505,10.33531,0.24505,-2.401922,10.33531,1.38675,-0.24505,10.33531,-0.24505,0.24505,10.33531,-0.24505,0,10.33531,-2.7735,-2.401922,10.33531,-1.38675,0.145428,14.81892,1.760645,-0.1067886,17.2429,0.9357255,1.586464,14.94024,0.9133338,0.7940999,17.20989,0.4493392,-2.401922,10.33531,-1.38675,0,10.33531,-2.7735,-1.444059,12.55792,-0.833728,-2.887646E-14,12.49933,-1.696611,-1.295608,14.42453,-0.7336038,-0.923362,17.38317,-0.5343237,-1.295608,14.56106,0.9371758,-0.9396117,17.33063,0.3945367,-1.951536,12.6186,-1.140345,-1.229114,14.43632,-0.6968885,-1.951536,12.47663,1.019397,-1.142254,14.56451,0.7312158,-0.08260068,12.25691,2.091746,-1.951536,12.47663,1.019397,0.06822117,14.7715,1.305347,-1.142254,14.56451,0.7312158,-1.295608,14.56106,0.9371758,-0.9396117,17.33063,0.3945367,0.145428,14.81892,1.760645,-0.1067886,17.2429,0.9357255,0.145428,14.54585,-1.580914,1.586464,14.80371,-0.757446,-0.1344694,17.35723,-1.011377,0.7440672,17.27222,-0.571091,-1.295608,14.42453,-0.7336038,0.145428,14.54585,-1.580914,-0.923362,17.38317,-0.5343237,-0.1344694,17.35723,-1.011377,1.786334,12.17916,1.004351,-0.08260068,12.25691,2.091746,1.116485,14.85735,0.6595594,0.06822117,14.7715,1.305347,1.786334,12.32112,-1.155391,1.161236,14.76167,-0.5837855,-0.08260068,12.54084,-2.22774,0.0439633,14.55054,-1.359448,0,10.33531,2.7735,-2.401922,10.33531,1.38675,0,12.26874,1.811358,-1.490457,12.45026,0.8605158,1.586464,14.80371,-0.757446,1.586464,14.94024,0.9133338,0.7440672,17.27222,-0.571091,0.7940999,17.20989,0.4493392,-2.401922,10.33531,-1.38675,-1.444059,12.55792,-0.833728,-2.401922,10.33531,1.38675,-1.490457,12.45026,0.8605158,2.401922,10.33531,1.38675,0,10.33531,2.7735,1.598523,12.1995,0.9229072,0,12.26874,1.811358,1.786334,12.32112,-1.155391,1.598523,12.1995,0.9229072,1.786334,12.17916,1.004351,-0.08260068,12.25691,2.091746,0,12.26874,1.811358,-1.490457,12.45026,0.8605158,-1.951536,12.47663,1.019397,1.545272,12.32306,-0.8921635,-0.08260068,12.54084,-2.22774,-2.887646E-14,12.49933,-1.696611,-1.444059,12.55792,-0.833728,-1.951536,12.6186,-1.140345,1.586464,14.80371,-0.757446,1.116485,14.85735,0.6595594,1.586464,14.94024,0.9133338,0.145428,14.81892,1.760645,1.161236,14.76167,-0.5837855,0.06822117,14.7715,1.305347,-1.295608,14.56106,0.9371758,-1.142254,14.56451,0.7312158,-1.229114,14.43632,-0.6968885,0.145428,14.54585,-1.580914,0.0439633,14.55054,-1.359448,-1.295608,14.42453,-0.7336038,1.786334,12.32112,-1.155391,1.786334,12.17916,1.004351,1.161236,14.76167,-0.5837855,1.116485,14.85735,0.6595594,0,10.33531,-2.7735,2.401922,10.33531,-1.38675,-2.887646E-14,12.49933,-1.696611,1.545272,12.32306,-0.8921635,-0.08260068,12.54084,-2.22774,0.0439633,14.55054,-1.359448,-1.951536,12.6186,-1.140345,-1.229114,14.43632,-0.6968885,0.9452521,17.26475,-0.6779402,0.7940999,17.20989,0.4493392,0.9452521,17.19567,0.5181985,-0.09013723,17.23117,1.11938,-0.1067886,17.2429,0.9357255,-1.125526,17.33574,0.5244228,-0.9396117,17.33063,0.3945367,0.7440672,17.27222,-0.571091,-0.09013723,17.36932,-1.272897,-0.1344694,17.35723,-1.011377,-1.125526,17.40482,-0.6717157,-0.923362,17.38317,-0.5343237,2.401922,10.33531,-1.38675,2.401922,10.33531,1.38675,1.545272,12.32306,-0.8921635,1.598523,12.1995,0.9229072,0.9452521,17.19567,0.5181985,-0.09013723,17.23117,1.11938,0.09013723,20.75499,0.07675869,0.09013723,20.75499,0.07675869,0.9452521,17.26475,-0.6779402,0.9452521,17.19567,0.5181985,-0.09013723,17.36932,-1.272897,0.9452521,17.26475,-0.6779402,0.09013723,20.75499,0.07675869,-1.125526,17.40482,-0.6717157,-0.09013723,17.36932,-1.272897,0.09013723,20.75499,0.07675869,-1.125526,17.40482,-0.6717157,0.09013723,20.75499,0.07675869,-1.125526,17.33574,0.5244228,-0.09013723,17.23117,1.11938,-1.125526,17.33574,0.5244228,0.09013723,20.75499,0.07675869,0.46371,0,0.46371,0.46371,0,-0.46371,-0.46371,0,0.46371,-0.46371,0,-0.46371,-0.46371,0,-0.46371,0.46371,0,-0.46371,-0.24505,10.33531,-0.24505,0.24505,10.33531,-0.24505,-0.46371,0,-0.46371,-0.24505,10.33531,-0.24505,-0.46371,0,0.46371,-0.24505,10.33531,0.24505,0.46371,0,0.46371,-0.46371,0,0.46371,0.24505,10.33531,0.24505,-0.24505,10.33531,0.24505,0.46371,0,-0.46371,0.46371,0,0.46371,0.24505,10.33531,-0.24505,0.24505,10.33531,0.24505 + } + PolygonVertexIndex: *294 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,4,-6,3,7,-2,8,1,-8,6,8,-8,9,8,-7,5,9,-7,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,67,-70,71,70,-70,72,71,-70,67,73,-67,74,66,-74,75,74,-74,76,74,-76,77,74,-77,71,77,-77,72,77,-72,78,80,-80,81,79,-81,82,78,-80,83,79,-82,84,83,-82,85,83,-85,86,85,-85,78,82,-88,88,87,-83,89,87,-89,86,89,-89,84,89,-87,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,103,-106,107,106,-106,108,106,-108,103,109,-103,110,102,-110,111,110,-110,112,110,-112,107,112,-109,113,112,-112,108,112,-114,114,116,-116,117,115,-117,118,120,-120,121,123,-123,124,126,-126,127,129,-129,130,132,-132,133,135,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,146,-146,147,145,-147,148,150,-150,151,149,-151,152,154,-154,155,153,-155 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *882 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.4951809,0.2231027,0.8396553,0.4951809,0.2231027,0.8396553,0.4951809,0.2231027,0.8396553,0.9718593,0.2351704,0.01358099,0.9718593,0.2351704,0.01358099,0.9718593,0.2351704,0.01358099,0.4980298,0.2980976,-0.8143122,0.4980298,0.2980976,-0.8143122,0.4980298,0.2980976,-0.8143122,-0.4614489,0.3496103,-0.8153757,-0.4614489,0.3496103,-0.8153757,-0.4614489,0.3496103,-0.8153757,-0.9412346,0.3371915,0.01947322,-0.9412346,0.3371915,0.01947322,-0.9412346,0.3371915,0.01947322,-0.458281,0.2736492,0.8456327,-0.458281,0.2736492,0.8456327,-0.458281,0.2736492,0.8456327,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.02115187,-0.9997763,0,0.02115187,-0.9997763,0,0.02115187,-0.9997763,0,0.02115187,-0.9997763,0,0.02115187,-0.9997763,0,0.02115187,-0.9997763,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0,-0.9997763,0.02115187,0,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0,0.02115187,0.9997763,0.9997763,0.02115187,0,0.9997763,0.02115187,0,0.9997763,0.02115187,0,0.9997763,0.02115187,0,0.9997763,0.02115187,0,0.9997763,0.02115187,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *312 { + a: 9.456384,5.459646,9.456384,-5.459646,0,10.91929,0.9647636,0.9647636,-0.9647636,0.9647636,-9.456384,5.459646,-0.9647636,-0.9647636,0.9647636,-0.9647636,0,-10.91929,-9.456384,-5.459646,-2.860597,53.01553,-2.154123,63.12039,3.718729,53.52129,1.876342,62.98279,5.459644,33.62517,-5.459647,33.62517,3.282393,43.15361,-3.339786,42.90245,-2.83532,55.69655,-2.065945,67.43759,3.742201,56.23835,1.591452,67.2291,-4.68555,43.5129,-2.867128,51.19697,3.814565,42.91277,2.762262,51.73885,3.587967,44.00788,-4.891129,44.91205,2.655126,54.35568,-2.613575,53.50389,-2.387689,54.4874,-2.323677,65.68642,4.142332,55.53008,1.585789,65.33168,2.389959,54.59149,-4.140375,55.63219,2.32173,65.93815,-1.546388,65.59505,2.887897,55.74802,-3.693269,56.22924,2.03488,67.48328,-1.594693,67.38036,4.030492,45.02237,-4.482008,45.33707,2.455178,55.86181,-2.391467,55.51434,-3.580389,43.61068,-2.674549,53.74097,4.897868,44.52269,2.673087,52.8646,5.459646,33.62516,-5.459646,33.62516,3.565666,41.91391,-3.387857,42.69206,2.80571,53.07134,-3.769575,53.63964,2.16534,63.34643,-1.856046,63.08701,-5.459645,33.62516,-3.282394,43.1536,5.459646,33.62516,3.387857,42.69206,5.459646,33.62517,-5.459645,33.62517,3.633494,41.61707,-3.565666,41.91391,-7.981667,2.465095,-1.194576,-2.189051,-1.416963,-2.96784,6.564704,0.007840566,5.505762,0.4607581,6.345026,7.40717,7.981669,8.416455,-6.57838,2.539566,-6.564703,10.87371,-5.156979,9.28522,1.079145,11.52734,1.416966,13.84939,5.820096,12.65389,0.1016497,14.02873,0.224365,16.15319,-5.595733,13.04356,4.358444,11.57633,-4.230645,11.82829,-5.8201,6.434629,-4.812929,6.523043,-0.2097216,3.237598,5.595729,6.044955,4.644011,6.164894,-0.2243689,2.935328,4.664754,45.3342,-3.837002,44.75778,2.373846,55.24355,-2.523461,55.63205,5.459646,33.62517,-5.459645,33.62517,3.339786,42.90245,-3.512454,42.14678,-4.015734,42.77879,-2.774382,51.32257,4.496166,43.10936,2.87292,50.83702,-4.444869,4.932067,-0.6801069,2.498113,-0.8595273,1.866791,3.585341,3.441971,3.077353,3.962721,4.444868,8.082427,3.58099,7.855806,-3.611064,5.263675,-3.585341,9.572524,-2.688293,9.035749,0.8595271,11.1477,0.755318,10.18724,5.459645,33.62517,-5.459646,33.62517,3.512455,42.14678,-3.633493,41.61707,2.169178,65.17929,-2.544366,65.32265,0.1521611,79.5547,-0.2972115,79.33642,2.720795,65.1988,-1.987953,64.919,2.917445,64.0549,-1.782191,63.62358,-0.4604126,78.01918,2.553939,62.63111,-2.159425,62.48195,-0.1600003,76.70915,-2.735642,63.03453,0.3094753,77.04467,1.972557,62.74565,1.787799,64.14323,-2.912137,64.57127,0.4559881,78.56712,1.82563,1.82563,1.82563,-1.82563,-1.82563,1.82563,-1.82563,-1.82563,1.82563,-0.03861548,-1.82563,-0.03861548,0.9647636,40.66069,-0.9647636,40.66069,-1.82563,-0.03861548,-0.9647636,40.66069,1.82563,-0.03861548,0.9647636,40.66069,1.82563,-0.03861548,-1.82563,-0.03861548,0.9647636,40.66069,-0.9647636,40.66069,1.82563,-0.03861548,-1.82563,-0.03861548,0.9647636,40.66069,-0.9647636,40.66069 + } + UVIndex: *294 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,4,5,3,7,1,8,1,7,6,8,7,9,8,6,5,9,6,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,67,69,71,70,69,72,71,69,67,73,66,74,66,73,75,74,73,76,74,75,77,74,76,71,77,76,72,77,71,78,80,79,81,79,80,82,78,79,83,79,81,84,83,81,85,83,84,86,85,84,78,82,87,88,87,82,89,87,88,86,89,88,84,89,86,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,103,105,107,106,105,108,106,107,103,109,102,110,102,109,111,110,109,112,110,111,107,112,108,113,112,111,108,112,113,114,116,115,117,115,116,118,120,119,121,123,122,124,126,125,127,129,128,130,132,131,133,135,134,136,138,137,139,137,138,140,142,141,143,141,142,144,146,145,147,145,146,148,150,149,151,149,150,152,154,153,155,153,154 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *98 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineTallD, Model::RootNode + C: "OO",5627650998321485476,0 + + ;Geometry::, Model::Mesh tree_pineTallD + C: "OO",5390078511536097884,5627650998321485476 + + ;Material::leafsDark, Model::Mesh tree_pineTallD + C: "OO",3026,5627650998321485476 + + ;Material::woodBarkDark, Model::Mesh tree_pineTallD + C: "OO",3048,5627650998321485476 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD.fbx.import new file mode 100644 index 0000000..74c93b6 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dvrk5ch2e0aya" +path="res://.godot/imported/tree_pineTallD.fbx-bd7b5302fd0a0f39348197a7c4ac11a6.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD.fbx" +dest_files=["res://.godot/imported/tree_pineTallD.fbx-bd7b5302fd0a0f39348197a7c4ac11a6.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD_detailed.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD_detailed.fbx new file mode 100644 index 0000000..d2ff9e9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD_detailed.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 41 + Millisecond: 211 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_pineTallD_detailed.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_pineTallD_detailed.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4920450910217693267, "Model::tree_pineTallD_detailed", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5670665204729848902, "Geometry::", "Mesh" { + Vertices: *804 { + a: 2.401922,10.33531,1.38675,2.401922,10.33531,-1.38675,0,10.33531,2.7735,0.24505,10.33531,0.24505,-0.24505,10.33531,0.24505,-2.401922,10.33531,1.38675,-0.24505,10.33531,-0.24505,0.24505,10.33531,-0.24505,0,10.33531,-2.7735,-2.401922,10.33531,-1.38675,0.145428,14.81892,1.760645,-0.1067886,17.2429,0.9357255,1.586464,14.94024,0.9133338,0.7940999,17.20989,0.4493392,-2.401922,10.33531,-1.38675,0,10.33531,-2.7735,-1.444059,12.55792,-0.833728,-2.887646E-14,12.49933,-1.696611,-1.295608,14.42453,-0.7336038,-0.923362,17.38317,-0.5343237,-1.295608,14.56106,0.9371758,-0.9396117,17.33063,0.3945367,-1.951536,12.6186,-1.140345,-1.229114,14.43632,-0.6968885,-1.951536,12.47663,1.019397,-1.142254,14.56451,0.7312158,-0.08260068,12.25691,2.091746,-1.951536,12.47663,1.019397,0.06822117,14.7715,1.305347,-1.142254,14.56451,0.7312158,-1.295608,14.56106,0.9371758,-0.9396117,17.33063,0.3945367,0.145428,14.81892,1.760645,-0.1067886,17.2429,0.9357255,0.145428,14.54585,-1.580914,1.586464,14.80371,-0.757446,-0.1344694,17.35723,-1.011377,0.7440672,17.27222,-0.571091,-1.295608,14.42453,-0.7336038,0.145428,14.54585,-1.580914,-0.923362,17.38317,-0.5343237,-0.1344694,17.35723,-1.011377,1.786334,12.17916,1.004351,-0.08260068,12.25691,2.091746,1.116485,14.85735,0.6595594,0.06822117,14.7715,1.305347,1.786334,12.32112,-1.155391,1.161236,14.76167,-0.5837855,-0.08260068,12.54084,-2.22774,0.0439633,14.55054,-1.359448,0,10.33531,2.7735,-2.401922,10.33531,1.38675,0,12.26874,1.811358,-1.490457,12.45026,0.8605158,1.586464,14.80371,-0.757446,1.586464,14.94024,0.9133338,0.7440672,17.27222,-0.571091,0.7940999,17.20989,0.4493392,-2.401922,10.33531,-1.38675,-1.444059,12.55792,-0.833728,-2.401922,10.33531,1.38675,-1.490457,12.45026,0.8605158,2.401922,10.33531,1.38675,0,10.33531,2.7735,1.598523,12.1995,0.9229072,0,12.26874,1.811358,1.786334,12.32112,-1.155391,1.598523,12.1995,0.9229072,1.786334,12.17916,1.004351,-0.08260068,12.25691,2.091746,0,12.26874,1.811358,-1.490457,12.45026,0.8605158,-1.951536,12.47663,1.019397,1.545272,12.32306,-0.8921635,-0.08260068,12.54084,-2.22774,-2.887646E-14,12.49933,-1.696611,-1.444059,12.55792,-0.833728,-1.951536,12.6186,-1.140345,1.586464,14.80371,-0.757446,1.116485,14.85735,0.6595594,1.586464,14.94024,0.9133338,0.145428,14.81892,1.760645,1.161236,14.76167,-0.5837855,0.06822117,14.7715,1.305347,-1.295608,14.56106,0.9371758,-1.142254,14.56451,0.7312158,-1.229114,14.43632,-0.6968885,0.145428,14.54585,-1.580914,0.0439633,14.55054,-1.359448,-1.295608,14.42453,-0.7336038,1.786334,12.32112,-1.155391,1.786334,12.17916,1.004351,1.161236,14.76167,-0.5837855,1.116485,14.85735,0.6595594,0,10.33531,-2.7735,2.401922,10.33531,-1.38675,-2.887646E-14,12.49933,-1.696611,1.545272,12.32306,-0.8921635,-0.08260068,12.54084,-2.22774,0.0439633,14.55054,-1.359448,-1.951536,12.6186,-1.140345,-1.229114,14.43632,-0.6968885,0.9452521,17.26475,-0.6779402,0.7940999,17.20989,0.4493392,0.9452521,17.19567,0.5181985,-0.09013723,17.23117,1.11938,-0.1067886,17.2429,0.9357255,-1.125526,17.33574,0.5244228,-0.9396117,17.33063,0.3945367,0.7440672,17.27222,-0.571091,-0.09013723,17.36932,-1.272897,-0.1344694,17.35723,-1.011377,-1.125526,17.40482,-0.6717157,-0.923362,17.38317,-0.5343237,2.401922,10.33531,-1.38675,2.401922,10.33531,1.38675,1.545272,12.32306,-0.8921635,1.598523,12.1995,0.9229072,0.9452521,17.19567,0.5181985,-0.09013723,17.23117,1.11938,0.09013723,20.75499,0.07675869,0.09013723,20.75499,0.07675869,0.9452521,17.26475,-0.6779402,0.9452521,17.19567,0.5181985,-0.09013723,17.36932,-1.272897,0.9452521,17.26475,-0.6779402,0.09013723,20.75499,0.07675869,-1.125526,17.40482,-0.6717157,-0.09013723,17.36932,-1.272897,0.09013723,20.75499,0.07675869,-1.125526,17.40482,-0.6717157,0.09013723,20.75499,0.07675869,-1.125526,17.33574,0.5244228,-0.09013723,17.23117,1.11938,-1.125526,17.33574,0.5244228,0.09013723,20.75499,0.07675869,0.46371,1,-0.46371,-0.1948923,8.885913,-0.278999,-0.46371,1,-0.46371,-0.24505,10.33531,-0.24505,-0.1948923,9.285804,-0.2696325,0.2051077,9.285804,-0.2696325,0.2051077,8.885913,-0.278999,0.24505,10.33531,-0.24505,-0.24505,10.33531,-0.24505,-0.3820381,4.486839,-0.1715768,-0.46371,1,-0.46371,-0.46371,1,0.46371,-0.3820381,4.486839,0.2284232,-0.3726715,4.88673,0.2284232,-0.24505,10.33531,0.24505,-0.3726715,4.88673,-0.1715768,-0.46371,1,0.46371,0.2179434,5.659537,0.3545702,0.46371,1,0.46371,0.24505,10.33531,0.24505,0.2179434,6.059427,0.3452035,-0.1820566,6.059427,0.3452035,-0.1820566,5.659537,0.3545702,-0.24505,10.33531,0.24505,0.24505,10.33531,-0.24505,0.3143812,7.375333,-0.1851353,0.24505,10.33531,0.24505,0.3143812,7.375333,0.2148646,0.3237478,6.975443,0.2148646,0.3237478,6.975443,-0.1851353,0.46371,1,-0.46371,0.46371,1,0.46371,0.695565,0,0.695565,0.695565,0,-0.695565,-0.695565,0,0.695565,-0.695565,0,-0.695565,-0.695565,0,-0.695565,-0.46371,1,-0.46371,-0.695565,0,0.695565,-0.46371,1,0.46371,-0.695565,0,-0.695565,0.695565,0,-0.695565,-0.46371,1,-0.46371,0.46371,1,-0.46371,0.695565,0,0.695565,-0.695565,0,0.695565,0.46371,1,0.46371,-0.46371,1,0.46371,0.695565,0,-0.695565,0.695565,0,0.695565,0.46371,1,-0.46371,0.46371,1,0.46371,0.2179434,6.059427,0.3452035,0.1179434,6.275764,1.040328,-0.1820566,6.059427,0.3452035,-0.08205657,6.275764,1.040328,-0.1820566,6.059427,0.3452035,-0.08205657,6.275764,1.040328,-0.1820566,5.659537,0.3545702,-0.08205657,6.075819,1.045012,0.2179434,6.059427,0.3452035,0.2179434,5.659537,0.3545702,0.1179434,6.275764,1.040328,0.1179434,6.075819,1.045012,0.1179434,6.075819,1.045012,-0.08205657,6.075819,1.045012,0.1179434,6.275764,1.040328,-0.08205657,6.275764,1.040328,0.2179434,5.659537,0.3545702,-0.1820566,5.659537,0.3545702,0.1179434,6.075819,1.045012,-0.08205657,6.075819,1.045012,1.014189,7.391725,0.1148647,1.014189,7.391725,-0.08513533,0.3237478,6.975443,0.2148646,0.3237478,6.975443,-0.1851353,1.009506,7.59167,-0.08513533,1.014189,7.391725,-0.08513533,1.009506,7.59167,0.1148647,1.014189,7.391725,0.1148647,1.009506,7.59167,-0.08513533,1.009506,7.59167,0.1148647,0.3143812,7.375333,-0.1851353,0.3143812,7.375333,0.2148646,0.3237478,6.975443,0.2148646,0.3143812,7.375333,0.2148646,1.014189,7.391725,0.1148647,1.009506,7.59167,0.1148647,0.3237478,6.975443,-0.1851353,1.014189,7.391725,-0.08513533,0.3143812,7.375333,-0.1851353,1.009506,7.59167,-0.08513533,-1.07248,4.903121,-0.07157683,-1.067796,5.103066,-0.07157683,-1.07248,4.903121,0.1284232,-1.067796,5.103066,0.1284232,-0.3820381,4.486839,-0.1715768,-0.3726715,4.88673,-0.1715768,-1.07248,4.903121,-0.07157683,-1.067796,5.103066,-0.07157683,-0.3726715,4.88673,-0.1715768,-0.3726715,4.88673,0.2284232,-1.067796,5.103066,-0.07157683,-1.067796,5.103066,0.1284232,-0.3820381,4.486839,0.2284232,-0.3820381,4.486839,-0.1715768,-1.07248,4.903121,0.1284232,-1.07248,4.903121,-0.07157683,-0.3820381,4.486839,0.2284232,-1.07248,4.903121,0.1284232,-0.3726715,4.88673,0.2284232,-1.067796,5.103066,0.1284232,0.2051077,9.285804,-0.2696325,-0.1948923,9.285804,-0.2696325,0.1051077,9.50214,-0.9647572,-0.0948923,9.50214,-0.9647572,-0.0948923,9.302195,-0.9694405,-0.0948923,9.50214,-0.9647572,-0.1948923,8.885913,-0.278999,-0.1948923,9.285804,-0.2696325,0.2051077,8.885913,-0.278999,0.1051077,9.302195,-0.9694405,-0.1948923,8.885913,-0.278999,-0.0948923,9.302195,-0.9694405,-0.0948923,9.302195,-0.9694405,0.1051077,9.302195,-0.9694405,-0.0948923,9.50214,-0.9647572,0.1051077,9.50214,-0.9647572,0.1051077,9.302195,-0.9694405,0.2051077,8.885913,-0.278999,0.1051077,9.50214,-0.9647572,0.2051077,9.285804,-0.2696325 + } + PolygonVertexIndex: *510 { + a: 0,2,-2,3,1,-3,4,3,-3,5,4,-3,6,4,-6,3,7,-2,8,1,-8,6,8,-8,9,8,-7,5,9,-7,10,12,-12,13,11,-13,14,16,-16,17,15,-17,18,20,-20,21,19,-21,22,24,-24,25,23,-25,26,28,-28,29,27,-29,30,32,-32,33,31,-33,34,36,-36,37,35,-37,38,40,-40,41,39,-41,42,44,-44,45,43,-45,46,48,-48,49,47,-49,50,52,-52,53,51,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,67,-70,71,70,-70,72,71,-70,67,73,-67,74,66,-74,75,74,-74,76,74,-76,77,74,-77,71,77,-77,72,77,-72,78,80,-80,81,79,-81,82,78,-80,83,79,-82,84,83,-82,85,83,-85,86,85,-85,78,82,-88,88,87,-83,89,87,-89,86,89,-89,84,89,-87,90,92,-92,93,91,-93,94,96,-96,97,95,-97,98,100,-100,101,99,-101,102,104,-104,105,103,-105,106,103,-106,107,106,-106,108,106,-108,103,109,-103,110,102,-110,111,110,-110,112,110,-112,107,112,-109,113,112,-112,108,112,-114,114,116,-116,117,115,-117,118,120,-120,121,123,-123,124,126,-126,127,129,-129,130,132,-132,133,135,-135,136,138,-138,139,137,-139,140,137,-140,141,140,-140,137,142,-137,143,136,-143,141,143,-143,139,143,-142,144,146,-146,147,145,-147,148,145,-148,149,148,-148,150,149,-148,150,144,-152,145,151,-145,149,150,-152,152,154,-154,155,153,-155,156,153,-156,157,156,-156,153,158,-153,159,152,-159,157,159,-159,155,159,-158,160,162,-162,163,161,-163,164,163,-163,161,165,-161,160,165,-167,167,166,-166,164,167,-166,162,167,-165,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,178,-178,179,177,-179,180,182,-182,183,181,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239,240,242,-242,243,241,-243,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263,264,266,-266,267,265,-267 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1530 { + a: 0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,0.4579717,0.3287357,0.8259509,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.4591741,0.395774,-0.7953126,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9920399,0.1255058,-0.01025571,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.9310219,0.3641772,0.02393826,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.4501655,0.2910094,0.8441946,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,-0.5135165,0.228081,0.8272121,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,0.4539923,0.2201081,-0.8633907,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,-0.5106876,0.1215807,-0.8511266,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4963835,0.2318518,0.8365692,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,0.4997831,0.3168149,-0.8061298,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,-0.459174,0.3957741,0.7953126,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,0.9454625,0.3246491,-0.02652911,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,-0.9183478,0.3957741,0,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,0.4591739,0.395774,0.7953126,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,-0.07942501,-0.9946943,-0.06538322,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.130672,-0.9881321,0.08074623,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.9695024,0.244554,0.01607513,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,0.4591741,0.3957739,-0.7953126,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.4539441,0.3773348,-0.8071884,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,-0.0675484,-0.9960564,-0.05752256,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.918348,0.3957741,0,0.4951809,0.2231027,0.8396553,0.4951809,0.2231027,0.8396553,0.4951809,0.2231027,0.8396553,0.9718593,0.2351704,0.01358099,0.9718593,0.2351704,0.01358099,0.9718593,0.2351704,0.01358099,0.4980298,0.2980976,-0.8143122,0.4980298,0.2980976,-0.8143122,0.4980298,0.2980976,-0.8143122,-0.4614489,0.3496103,-0.8153757,-0.4614489,0.3496103,-0.8153757,-0.4614489,0.3496103,-0.8153757,-0.9412346,0.3371915,0.01947322,-0.9412346,0.3371915,0.01947322,-0.9412346,0.3371915,0.01947322,-0.458281,0.2736492,0.8456327,-0.458281,0.2736492,0.8456327,-0.458281,0.2736492,0.8456327,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,-0.9741589,0.2258636,0,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,-0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0,0.2258636,0.9741589,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0.9741589,0.2258636,0,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,0,0.9548272,-0.2971613,-0.9899495,0.00331159,0.1413826,-0.9899495,0.00331159,0.1413826,-0.9899495,0.00331159,0.1413826,-0.9899495,0.00331159,0.1413826,-0.9899495,0.00331159,0.1413826,-0.9899495,0.00331159,0.1413826,0.9899495,0.00331159,0.1413826,0.9899495,0.00331159,0.1413826,0.9899495,0.00331159,0.1413826,0.9899495,0.00331159,0.1413826,0.9899495,0.00331159,0.1413826,0.9899495,0.00331159,0.1413826,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,0.02341648,0.9997258,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0,-0.8563873,0.5163341,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0,0.5163341,-0.8563873,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,0.9997258,0.02341648,0,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,-0.2971613,0.9548272,0,0.1413826,0.00331159,0.9899495,0.1413826,0.00331159,0.9899495,0.1413826,0.00331159,0.9899495,0.1413826,0.00331159,0.9899495,0.1413826,0.00331159,0.9899495,0.1413826,0.00331159,0.9899495,0.1413826,0.00331159,-0.9899495,0.1413826,0.00331159,-0.9899495,0.1413826,0.00331159,-0.9899495,0.1413826,0.00331159,-0.9899495,0.1413826,0.00331159,-0.9899495,0.1413826,0.00331159,-0.9899495,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.9997258,0.02341648,0,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,-0.1413826,0.00331159,-0.9899495,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,0.2971613,0.9548272,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.5163341,-0.8563873,0,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,-0.1413826,0.00331159,0.9899495,0,0.9548272,0.2971613,0,0.9548272,0.2971613,0,0.9548272,0.2971613,0,0.9548272,0.2971613,0,0.9548272,0.2971613,0,0.9548272,0.2971613,-0.9899495,0.00331159,-0.1413826,-0.9899495,0.00331159,-0.1413826,-0.9899495,0.00331159,-0.1413826,-0.9899495,0.00331159,-0.1413826,-0.9899495,0.00331159,-0.1413826,-0.9899495,0.00331159,-0.1413826,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,-0.8563873,-0.5163341,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0,0.02341648,-0.9997258,0.9899495,0.00331159,-0.1413826,0.9899495,0.00331159,-0.1413826,0.9899495,0.00331159,-0.1413826,0.9899495,0.00331159,-0.1413826,0.9899495,0.00331159,-0.1413826,0.9899495,0.00331159,-0.1413826 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *536 { + a: 9.456384,5.459646,9.456384,-5.459646,0,10.91929,0.9647636,0.9647636,-0.9647636,0.9647636,-9.456384,5.459646,-0.9647636,-0.9647636,0.9647636,-0.9647636,0,-10.91929,-9.456384,-5.459646,-2.860597,53.01553,-2.154123,63.12039,3.718729,53.52129,1.876342,62.98279,5.459644,33.62517,-5.459647,33.62517,3.282393,43.15361,-3.339786,42.90245,-2.83532,55.69655,-2.065945,67.43759,3.742201,56.23835,1.591452,67.2291,-4.68555,43.5129,-2.867128,51.19697,3.814565,42.91277,2.762262,51.73885,3.587967,44.00788,-4.891129,44.91205,2.655126,54.35568,-2.613575,53.50389,-2.387689,54.4874,-2.323677,65.68642,4.142332,55.53008,1.585789,65.33168,2.389959,54.59149,-4.140375,55.63219,2.32173,65.93815,-1.546388,65.59505,2.887897,55.74802,-3.693269,56.22924,2.03488,67.48328,-1.594693,67.38036,4.030492,45.02237,-4.482008,45.33707,2.455178,55.86181,-2.391467,55.51434,-3.580389,43.61068,-2.674549,53.74097,4.897868,44.52269,2.673087,52.8646,5.459646,33.62516,-5.459646,33.62516,3.565666,41.91391,-3.387857,42.69206,2.80571,53.07134,-3.769575,53.63964,2.16534,63.34643,-1.856046,63.08701,-5.459645,33.62516,-3.282394,43.1536,5.459646,33.62516,3.387857,42.69206,5.459646,33.62517,-5.459645,33.62517,3.633494,41.61707,-3.565666,41.91391,-7.981667,2.465095,-1.194576,-2.189051,-1.416963,-2.96784,6.564704,0.007840566,5.505762,0.4607581,6.345026,7.40717,7.981669,8.416455,-6.57838,2.539566,-6.564703,10.87371,-5.156979,9.28522,1.079145,11.52734,1.416966,13.84939,5.820096,12.65389,0.1016497,14.02873,0.224365,16.15319,-5.595733,13.04356,4.358444,11.57633,-4.230645,11.82829,-5.8201,6.434629,-4.812929,6.523043,-0.2097216,3.237598,5.595729,6.044955,4.644011,6.164894,-0.2243689,2.935328,4.664754,45.3342,-3.837002,44.75778,2.373846,55.24355,-2.523461,55.63205,5.459646,33.62517,-5.459645,33.62517,3.339786,42.90245,-3.512454,42.14678,-4.015734,42.77879,-2.774382,51.32257,4.496166,43.10936,2.87292,50.83702,-4.444869,4.932067,-0.6801069,2.498113,-0.8595273,1.866791,3.585341,3.441971,3.077353,3.962721,4.444868,8.082427,3.58099,7.855806,-3.611064,5.263675,-3.585341,9.572524,-2.688293,9.035749,0.8595271,11.1477,0.755318,10.18724,5.459645,33.62517,-5.459646,33.62517,3.512455,42.14678,-3.633493,41.61707,2.169178,65.17929,-2.544366,65.32265,0.1521611,79.5547,-0.2972115,79.33642,2.720795,65.1988,-1.987953,64.919,2.917445,64.0549,-1.782191,63.62358,-0.4604126,78.01918,2.553939,62.63111,-2.159425,62.48195,-0.1600003,76.70915,-2.735642,63.03453,0.3094753,77.04467,1.972557,62.74565,1.787799,64.14323,-2.912137,64.57127,0.4559881,78.56712,-1.82563,3.893178,0.7672925,34.9486,1.82563,3.893178,0.9647636,40.65645,0.7672925,36.5234,-0.8075106,36.5234,-0.8075106,34.9486,-0.9647636,40.65645,-0.9647636,40.65645,-0.6754993,17.62466,-1.82563,3.893178,1.82563,3.893178,0.8993038,17.62466,0.8993038,19.19946,0.9647636,40.65645,-0.6754993,19.19946,-1.82563,3.893178,0.858045,22.24284,1.82563,3.893178,0.9647636,40.65645,0.858045,23.81765,-0.7167581,23.81765,-0.7167581,22.24284,-0.9647636,40.65645,0.9647636,40.65645,0.7288793,28.9998,-0.9647636,40.65645,-0.8459238,28.9998,-0.8459238,27.425,0.7288793,27.425,1.82563,3.893178,-1.82563,3.893178,2.738445,2.738445,2.738445,-2.738445,-2.738445,2.738445,-2.738445,-2.738445,-2.738445,-0.6185151,-1.82563,3.422928,2.738445,-0.6185151,1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,2.738445,-0.6185151,-2.738445,-0.6185151,1.82563,3.422928,-1.82563,3.422928,-0.858045,8.38676,-0.4643442,11.25294,0.7167581,8.38676,0.3230574,11.25294,1.244079,23.8529,4.008964,24.70462,1.280585,22.27851,4.027216,23.91743,-1.224104,23.85243,-1.26061,22.27805,-3.988988,24.70416,-4.007241,23.91697,0.4643442,23.81765,-0.3230574,23.81765,0.4643442,24.60505,-0.3230574,24.60505,0.858045,12.70024,-0.7167581,12.70024,0.4643442,15.87436,-0.3230574,15.87436,-0.4522231,18.44543,0.3351785,18.44543,-0.8459238,15.27131,0.7288793,15.27131,0.3351785,29.7872,0.3351785,28.9998,-0.4522231,29.7872,-0.4522231,28.9998,-0.3351785,12.67659,0.4522231,12.67659,-0.7288793,9.810407,0.8459238,9.810407,1.142195,27.45885,1.105689,29.03323,3.888826,29.09777,3.870573,29.88496,-1.158743,27.45924,-3.905374,29.09815,-1.122237,29.03362,-3.887121,29.88534,-0.2817985,19.19946,-0.2817985,19.98686,0.505603,19.19946,0.505603,19.98686,1.393474,17.66171,1.356968,19.23609,4.140105,19.30062,4.121852,20.08781,0.6754993,7.118047,-0.8993038,7.118047,0.2817985,9.984232,-0.505603,9.984232,0.8993038,10.40898,-0.6754993,10.40898,0.505603,13.5831,-0.2817985,13.5831,-1.361832,17.66097,-4.108463,19.29989,-1.325326,19.23535,-4.09021,20.08708,0.8075106,11.8773,-0.7672925,11.8773,0.4138099,14.74348,-0.3735917,14.74348,-3.725536,36.6196,-3.707283,37.40679,-0.9789053,34.98069,-0.9423994,36.55507,-0.8075106,19.00406,-0.4138099,22.17818,0.7672925,19.00406,0.3735917,22.17818,0.3735917,36.5234,-0.4138099,36.5234,0.3735917,37.3108,-0.4138099,37.3108,3.71985,36.61947,0.9732192,34.98056,3.701597,37.40666,0.9367132,36.55494 + } + UVIndex: *510 { + a: 0,2,1,3,1,2,4,3,2,5,4,2,6,4,5,3,7,1,8,1,7,6,8,7,9,8,6,5,9,6,10,12,11,13,11,12,14,16,15,17,15,16,18,20,19,21,19,20,22,24,23,25,23,24,26,28,27,29,27,28,30,32,31,33,31,32,34,36,35,37,35,36,38,40,39,41,39,40,42,44,43,45,43,44,46,48,47,49,47,48,50,52,51,53,51,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,67,69,71,70,69,72,71,69,67,73,66,74,66,73,75,74,73,76,74,75,77,74,76,71,77,76,72,77,71,78,80,79,81,79,80,82,78,79,83,79,81,84,83,81,85,83,84,86,85,84,78,82,87,88,87,82,89,87,88,86,89,88,84,89,86,90,92,91,93,91,92,94,96,95,97,95,96,98,100,99,101,99,100,102,104,103,105,103,104,106,103,105,107,106,105,108,106,107,103,109,102,110,102,109,111,110,109,112,110,111,107,112,108,113,112,111,108,112,113,114,116,115,117,115,116,118,120,119,121,123,122,124,126,125,127,129,128,130,132,131,133,135,134,136,138,137,139,137,138,140,137,139,141,140,139,137,142,136,143,136,142,141,143,142,139,143,141,144,146,145,147,145,146,148,145,147,149,148,147,150,149,147,150,144,151,145,151,144,149,150,151,152,154,153,155,153,154,156,153,155,157,156,155,153,158,152,159,152,158,157,159,158,155,159,157,160,162,161,163,161,162,164,163,162,161,165,160,160,165,166,167,166,165,164,167,165,162,167,164,168,170,169,171,169,170,172,174,173,175,173,174,176,178,177,179,177,178,180,182,181,183,181,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238,240,242,241,243,241,242,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262,264,266,265,267,265,266 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *170 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_pineTallD_detailed, Model::RootNode + C: "OO",4920450910217693267,0 + + ;Geometry::, Model::Mesh tree_pineTallD_detailed + C: "OO",5670665204729848902,4920450910217693267 + + ;Material::leafsDark, Model::Mesh tree_pineTallD_detailed + C: "OO",3026,4920450910217693267 + + ;Material::woodBarkDark, Model::Mesh tree_pineTallD_detailed + C: "OO",3048,4920450910217693267 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD_detailed.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD_detailed.fbx.import new file mode 100644 index 0000000..0de6a3d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD_detailed.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cmgwqbdj52j0w" +path="res://.godot/imported/tree_pineTallD_detailed.fbx-2318f581a0f8a198c09defd6ba4e3fd6.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_pineTallD_detailed.fbx" +dest_files=["res://.godot/imported/tree_pineTallD_detailed.fbx-2318f581a0f8a198c09defd6ba4e3fd6.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau.fbx new file mode 100644 index 0000000..d6d9890 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 41 + Millisecond: 325 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_plateau.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_plateau.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5588694147316278540, "Model::tree_plateau", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5753401087341598997, "Geometry::", "Mesh" { + Vertices: *1107 { + a: -1.086532,4.52775,1.868883,-2.379656,4.52775,1.122297,-1.086532,5.382237,1.868883,-2.379656,5.382237,1.122297,0.2065931,5.382237,-0.3708752,-0.1942755,5.819902,-0.1394335,-1.086532,5.382237,-1.117461,-1.086532,5.819902,-0.6545777,-0.09082552,4.15261,0.950582,-0.09082552,4.15261,0.6330955,-1.086532,4.15261,1.525453,-0.461316,4.15261,0.6330955,-0.461316,4.15261,-0.289537,-1.086532,4.15261,-0.7740315,-0.2473623,4.15261,-0.289537,-2.082238,4.15261,0.950582,-2.082238,4.15261,-0.1991604,1.580113,7.093243,3.193882,1.580113,6.72761,2.742002,-0.121367,7.093243,2.211533,0.2699733,6.72761,1.985592,-0.1942755,5.819902,-0.1394335,-0.1942755,5.819902,0.0004092231,-1.086532,5.819902,-0.6545777,-0.4059637,5.819902,0.0004092231,-0.4059637,5.819902,0.8123367,-1.086532,5.819902,1.406,-0.1942755,5.819902,0.8908553,-0.1942755,5.819902,0.8123367,-1.978788,5.819902,-0.1394335,-1.978788,5.819902,0.8908553,-2.379656,4.52775,-0.3708752,-2.379656,4.52775,1.122297,-2.082238,4.15261,-0.1991604,-2.082238,4.15261,0.950582,-0.09082552,4.15261,0.950582,-1.086532,4.15261,1.525453,0.2065931,4.52775,1.122297,-1.086532,4.52775,1.868883,-2.379656,4.52775,-0.3708752,-1.086532,4.52775,-1.117461,-2.379656,5.382237,-0.3708752,-1.086532,5.382237,-1.117461,0.2065931,4.52775,1.122297,-1.086532,4.52775,1.868883,0.2065931,5.382237,1.122297,-1.086532,5.382237,1.868883,-1.086532,5.819902,1.406,-1.086532,5.382237,1.868883,-1.978788,5.819902,0.8908553,-2.379656,5.382237,1.122297,-1.086532,4.52775,-1.117461,0.2065931,4.52775,-0.3708752,-1.086532,5.382237,-1.117461,0.2065931,5.382237,-0.3708752,-2.835801,10.39439,-1.657,-2.835801,11.78244,-1.657,-2.835801,10.39439,1.6175,-2.835801,11.78244,1.6175,0.2699733,6.72761,1.985592,0.2699733,6.72761,0.9099195,-0.121367,7.093243,2.211533,0.1261348,6.862,0.9243672,-0.121367,7.093243,0.8725923,2.835799,10.39439,-1.657,2.980232E-08,10.39439,-3.29425,2.183566,9.785,-1.280432,2.980232E-08,9.785,-2.541115,0.2065931,5.382237,-0.3708752,0.2065931,4.52775,-0.3708752,0.2065931,5.382237,-0.07570162,0.2065931,4.52775,-0.224299,2.835799,11.78244,1.6175,2.980232E-08,11.78244,3.25475,1.956702,12.4934,1.109952,2.980232E-08,12.4934,2.239655,0.2065931,5.382237,0.765286,0.2065931,5.382237,1.122297,-0.1942755,5.819902,0.8123367,-0.1942755,5.819902,0.8908553,3.281594,7.926077,2.211533,1.580113,7.926077,3.193882,2.754134,8.35265,1.907004,1.580113,8.35265,2.584825,-1.086532,5.382237,-1.117461,-1.086532,5.819902,-0.6545777,-2.379656,5.382237,-0.3708752,-1.978788,5.819902,-0.1394335,0.2065931,4.52775,0.6734248,0.2065931,4.52775,1.122297,0.2065931,5.382237,0.765286,0.2065931,5.382237,1.122297,-0.09082552,4.15261,0.6330955,-0.09082552,4.15261,0.950582,0.2065931,4.52775,0.6734248,0.2065931,4.52775,1.122297,0.05884901,7.093243,0.142785,1.580113,7.093243,-0.7355172,0.3011832,7.926077,0.002873294,1.580113,7.926077,-0.7355172,2.835799,11.78244,-1.657,2.835799,11.78244,1.6175,1.956702,12.4934,-1.149452,1.956702,12.4934,1.109952,2.980232E-08,12.4934,2.239655,2.980232E-08,11.78244,3.25475,-1.956702,12.4934,1.109952,-2.835801,11.78244,1.6175,3.281594,7.093243,0.2468328,1.580113,7.093243,-0.7355172,2.890252,6.72761,0.4727733,1.580113,6.72761,-0.283636,3.281594,7.093243,2.211533,1.580113,7.093243,3.193882,3.281594,7.926077,2.211533,1.580113,7.926077,3.193882,-1.086532,4.15261,1.525453,-2.082238,4.15261,0.950582,-1.086532,4.52775,1.868883,-2.379656,4.52775,1.122297,0.2065931,5.382237,1.122297,-1.086532,5.382237,1.868883,-0.1942755,5.819902,0.8908553,-1.086532,5.819902,1.406,1.580113,7.093243,3.193882,-0.121367,7.093243,2.211533,1.580113,7.926077,3.193882,-0.121367,7.926077,2.211533,1.580113,7.093243,-0.7355172,3.281594,7.093243,0.2468328,1.580113,7.926077,-0.7355172,3.281594,7.926077,0.2468328,3.281594,7.926077,0.2468328,3.281594,7.093243,0.2468328,3.281594,7.926077,2.211533,3.281594,7.093243,2.211533,-2.379656,4.52775,-0.3708752,-2.379656,5.382237,-0.3708752,-2.379656,4.52775,1.122297,-2.379656,5.382237,1.122297,1.580113,7.926077,-0.7355172,1.580113,8.35265,-0.1264601,0.3011832,7.926077,0.002873294,0.3412203,7.940563,0.0004398376,0.4060917,8.35265,0.5513613,0.3313906,8.292237,0.5082328,2.980232E-08,10.39439,-3.29425,2.835799,10.39439,-1.657,2.980232E-08,11.78244,-3.29425,2.835799,11.78244,-1.657,3.281594,7.093243,2.211533,2.890252,6.72761,1.985592,1.580113,7.093243,3.193882,1.580113,6.72761,2.742002,-2.082238,4.15261,-0.1991604,-1.086532,4.15261,-0.7740315,-2.379656,4.52775,-0.3708752,-1.086532,4.52775,-1.117461,2.835799,10.39439,1.6175,2.183566,9.785,1.240932,2.980232E-08,10.39439,3.25475,2.980232E-08,9.785,2.501615,2.835799,10.39439,1.6175,2.835799,10.39439,-1.657,2.183566,9.785,1.240932,2.183566,9.785,-1.280432,2.835799,11.78244,-1.657,2.835799,10.39439,-1.657,2.835799,11.78244,1.6175,2.835799,10.39439,1.6175,-0.121367,7.926077,0.6861235,-0.121367,7.926077,2.211533,-0.121367,7.093243,0.8725923,-0.121367,7.093243,2.211533,1.580113,8.35265,2.584825,1.580113,7.926077,3.193882,0.4060917,8.35265,1.907004,-0.121367,7.926077,2.211533,1.580113,6.72761,-0.283636,1.580113,7.093243,-0.7355172,0.3758288,6.72761,0.4116577,0.3695996,6.925238,0.1710092,0.05884901,7.093243,0.142785,0.3713672,6.862,0.2481432,3.281594,7.093243,2.211533,3.281594,7.093243,0.2468328,2.890252,6.72761,1.985592,2.890252,6.72761,0.4727733,2.754134,8.35265,0.5513613,2.754134,8.35265,1.907004,1.580113,8.35265,-0.1264601,1.580113,8.35265,2.584825,0.4060917,8.35265,0.5513613,0.4060917,8.35265,1.907004,2.980232E-08,10.39439,3.25475,2.980232E-08,9.785,2.501615,-2.835801,10.39439,1.6175,-2.183566,9.785,1.240932,1.956702,12.4934,-1.149452,1.956702,12.4934,1.109952,2.980232E-08,12.4934,-2.279155,2.980232E-08,12.4934,2.239655,-1.956702,12.4934,-1.149452,-1.956702,12.4934,1.109952,0.2065931,5.382237,-0.3708752,0.2065931,5.382237,-0.07570162,-0.1942755,5.819902,-0.1394335,-0.1942755,5.819902,0.0004092231,2.890252,6.72761,1.985592,2.890252,6.72761,0.4727733,1.580113,6.72761,2.742002,1.580113,6.72761,-0.283636,0.2699733,6.72761,1.985592,0.3758288,6.72761,0.9099195,0.2699733,6.72761,0.9099195,0.3758288,6.72761,0.4116577,-1.086532,4.15261,-0.7740315,-0.2473623,4.15261,-0.289537,-1.086532,4.52775,-1.117461,0.02261339,4.295692,-0.2646544,0.2065931,4.52775,-0.3708752,3.281594,7.926077,0.2468328,3.281594,7.926077,2.211533,2.754134,8.35265,0.5513613,2.754134,8.35265,1.907004,-2.379656,5.382237,-0.3708752,-1.978788,5.819902,-0.1394335,-2.379656,5.382237,1.122297,-1.978788,5.819902,0.8908553,2.183566,9.785,1.240932,2.183566,9.785,-1.280432,2.980232E-08,9.785,2.501615,0.2896664,9.785,0.2699162,-0.2896663,9.785,0.2699162,-2.183566,9.785,1.240932,-0.2896663,9.785,-0.3094162,0.2896664,9.785,-0.3094162,2.980232E-08,9.785,-2.541115,-2.183566,9.785,-1.280432,-1.956702,12.4934,-1.149452,-1.956702,12.4934,1.109952,-2.835801,11.78244,-1.657,-2.835801,11.78244,1.6175,2.835799,11.78244,-1.657,1.956702,12.4934,-1.149452,2.980232E-08,11.78244,-3.29425,2.980232E-08,12.4934,-2.279155,2.980232E-08,11.78244,-3.29425,2.980232E-08,12.4934,-2.279155,-2.835801,11.78244,-1.657,-1.956702,12.4934,-1.149452,-2.835801,10.39439,-1.657,2.980232E-08,10.39439,-3.29425,-2.835801,11.78244,-1.657,2.980232E-08,11.78244,-3.29425,0.4060917,8.35265,0.5513613,0.4060917,8.35265,1.907004,0.3313906,8.292237,0.5082328,0.3313906,8.292237,0.6041415,-0.121367,7.926077,2.211533,-0.121367,7.926077,0.6861235,0.2065931,4.52775,-0.3708752,0.02261339,4.295692,-0.2646544,0.2065931,4.52775,-0.224299,-2.183566,9.785,1.240932,-2.183566,9.785,-1.280432,-2.835801,10.39439,1.6175,-2.835801,10.39439,-1.657,3.281594,7.926077,0.2468328,2.754134,8.35265,0.5513613,1.580113,7.926077,-0.7355172,1.580113,8.35265,-0.1264601,2.980232E-08,9.785,-2.541115,2.980232E-08,10.39439,-3.29425,-2.183566,9.785,-1.280432,-2.835801,10.39439,-1.657,2.980232E-08,10.39439,3.25475,-2.835801,10.39439,1.6175,2.980232E-08,11.78244,3.25475,-2.835801,11.78244,1.6175,2.835799,10.39439,1.6175,2.980232E-08,10.39439,3.25475,2.835799,11.78244,1.6175,2.980232E-08,11.78244,3.25475,0.65175,0,0.65175,0.65175,0,-0.65175,-0.65175,0,0.65175,-0.65175,0,-0.65175,0.3695996,6.925238,0.1710092,0.3713672,6.862,0.1816328,0.3713672,6.862,0.2481432,0.5018475,2.93175,-0.5018475,0.5018475,2.93175,0.5018475,0.3713672,6.862,0.1816328,0.3713672,6.862,0.2481432,0.3758288,6.72761,0.4116577,0.3758288,6.72761,0.9099195,-0.4059637,5.819902,0.0004092231,-0.1942755,5.819902,0.0004092231,-0.371367,6.862,0.1816328,0.3713672,6.862,0.1816328,0.2065931,5.382237,-0.07570162,0.2065931,4.52775,-0.224299,0.5018475,2.93175,-0.5018475,0.02261339,4.295692,-0.2646544,-0.2473623,4.15261,-0.289537,-0.461316,4.15261,-0.289537,-0.5018475,2.93175,-0.5018475,-0.5018475,2.93175,-0.5018475,-0.461316,4.15261,-0.289537,-0.5018475,2.93175,0.5018475,-0.461316,4.15261,0.6330955,0.3713672,6.862,0.1816328,0.05884901,7.093243,0.142785,-0.371367,6.862,0.1816328,-0.2896663,9.785,-0.3094162,0.3695996,6.925238,0.1710092,0.3011832,7.926077,0.002873294,0.3412203,7.940563,0.0004398376,0.2896664,9.785,-0.3094162,0.3416252,7.926077,0.002873294,0.65175,0,0.65175,-0.65175,0,0.65175,0.5018475,2.93175,0.5018475,-0.5018475,2.93175,0.5018475,0.2896664,9.785,-0.3094162,0.3412203,7.940563,0.0004398376,0.2896664,9.785,0.2699162,0.3313906,8.292237,0.5082328,0.3313906,8.292237,0.6041415,-0.2896663,9.785,-0.3094162,-0.2896663,9.785,0.2699162,-0.371367,6.862,0.1816328,-0.371367,6.862,0.9243672,0.1261348,6.862,0.9243672,-0.371367,6.862,0.9243672,-0.121367,7.093243,0.8725923,-0.2896663,9.785,0.2699162,-0.121367,7.926077,0.6861235,0.3313906,8.292237,0.6041415,0.2896664,9.785,0.2699162,-0.65175,0,-0.65175,-0.5018475,2.93175,-0.5018475,-0.65175,0,0.65175,-0.5018475,2.93175,0.5018475,-0.5018475,2.93175,0.5018475,0.2065931,4.52775,0.6734248,0.5018475,2.93175,0.5018475,0.3758288,6.72761,0.9099195,-0.09082552,4.15261,0.6330955,0.2065931,5.382237,0.765286,-0.1942755,5.819902,0.8123367,-0.4059637,5.819902,0.8123367,0.2699733,6.72761,0.9099195,-0.371367,6.862,0.9243672,0.1261348,6.862,0.9243672,-0.461316,4.15261,0.6330955,-0.65175,0,-0.65175,0.65175,0,-0.65175,-0.5018475,2.93175,-0.5018475,0.5018475,2.93175,-0.5018475,-0.4059637,5.819902,0.0004092231,-0.371367,6.862,0.1816328,-0.4059637,5.819902,0.8123367,-0.371367,6.862,0.9243672,0.65175,0,-0.65175,0.65175,0,0.65175,0.5018475,2.93175,-0.5018475,0.5018475,2.93175,0.5018475 + } + PolygonVertexIndex: *645 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,10,13,-13,14,12,-14,15,13,-11,16,13,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,23,26,-26,26,27,-26,28,25,-28,29,26,-24,30,26,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,62,-62,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,141,-144,143,145,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,179,-182,183,181,-181,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,191,-191,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,201,-201,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,211,-211,213,211,-213,214,213,-213,213,215,-212,216,218,-218,219,217,-219,220,219,-219,221,223,-223,224,222,-224,225,227,-227,228,226,-228,229,231,-231,232,230,-232,233,232,-232,234,233,-232,235,233,-235,232,236,-231,237,230,-237,235,237,-237,238,237,-236,234,238,-236,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,259,256,-259,260,259,-259,261,263,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,293,-293,294,292,-294,295,292,-295,296,292,-296,297,299,-299,299,300,-299,298,300,-302,301,300,-303,300,303,-303,302,303,-305,304,303,-306,305,303,-307,307,306,-304,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,312,-314,317,313,-316,318,317,-316,319,318,-316,317,318,-321,321,323,-323,324,322,-324,325,327,-327,328,326,-328,329,328,-328,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,337,-337,339,337,-339,340,337,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348,349,345,-347,350,346,-349,351,350,-349,352,351,-349,353,352,-349,354,352,-354,355,354,-354,349,356,-346,357,359,-359,360,358,-360,361,363,-363,364,362,-364,365,367,-367,368,366,-368 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1935 { + a: -0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,0.7836061,-0.621258,0,0.7836061,-0.621258,0,0.7836061,-0.621258,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9996096,0.0279404,0,0.9996096,0.0279404,0,0.9996096,0.0279404,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656727,-0.9861808,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *738 { + a: -0.02567646,17.82579,-5.904305,17.82579,-0.02567646,21.18991,-5.904305,21.18991,0.02567985,14.49722,0.9368672,16.83385,5.904309,14.49722,4.993122,16.83385,-0.3575808,3.742449,-0.3575808,2.492502,-4.277684,6.005721,-1.816205,2.492502,-1.816205,-1.13991,-4.277684,-3.047368,-0.9738672,-1.13991,-8.197787,3.742449,-8.197787,-0.7840959,11.67464,24.74945,10.78512,22.64091,3.939605,24.74945,4.829134,22.64091,0.7648643,-0.5489507,0.7648643,0.001611115,4.277684,-2.577078,1.598282,0.001611115,1.598282,3.198176,4.277684,5.535431,0.7648643,3.507304,0.7648643,3.198176,7.790504,-0.5489507,7.790504,3.507304,-1.460139,19.78879,4.418491,19.78879,-0.7840959,17.90401,3.742449,17.90401,-2.180899,14.71352,-6.707444,14.71352,-1.504857,16.5983,-7.383487,16.5983,7.383483,17.82579,1.504856,17.82579,7.383483,21.18991,1.504856,21.18991,-1.504857,17.82579,-7.383487,17.82579,-1.504857,21.18991,-7.383487,21.18991,-0.9368659,12.21414,-0.02567765,9.877508,-4.993121,12.21414,-5.904305,9.877508,5.904309,17.82579,0.02567981,17.82579,5.904309,21.18991,0.02567981,21.18991,-6.523622,40.92279,-6.523622,46.38758,6.36811,40.92279,6.36811,46.38758,7.817293,17.30576,3.58236,17.30576,8.706822,19.4143,3.639241,18.08076,3.435403,19.4143,-6.406983,36.14515,6.484745,36.14515,-4.924438,32.63091,5.002195,32.63091,1.460139,21.18991,1.460139,17.82579,0.2980379,21.18991,0.883067,17.82579,6.484738,20.54113,-6.406989,20.54113,4.486524,24.99233,-4.408771,24.99233,-3.012937,15.07663,-4.418491,15.07663,-3.198176,17.41326,-3.507304,17.41326,6.83535,8.73674,-0.8996917,8.73674,5.636415,11.40746,0.2992398,11.40746,1.504857,11.60796,2.416044,13.94459,7.383484,11.60796,6.472299,13.94459,-2.651279,17.82579,-4.418491,17.82579,-3.012937,21.18991,-4.418491,21.18991,-2.492502,12.58891,-3.742449,12.58891,-2.651279,14.4737,-4.418491,14.4737,0.08042437,27.92615,-6.835341,27.92615,-1.021243,31.20503,-6.835341,31.20503,6.523622,20.48879,-6.36811,20.48879,4.525403,24.93999,-4.369892,24.93999,4.408769,24.99232,6.406987,20.54111,-4.486526,24.99232,-6.484748,20.54111,-11.67465,23.17039,-3.939604,23.17039,-10.78511,21.06184,-4.829134,21.06185,6.835349,27.92615,-0.8996928,27.92615,6.835349,31.20503,-0.8996928,31.20503,-0.701721,17.37107,-5.228267,17.37107,-0.02567787,19.25585,-5.904306,19.25585,-1.504857,12.76677,-7.383487,12.76677,-2.416044,15.1034,-6.472299,15.1034,11.67464,27.92615,3.939604,27.92615,11.67464,31.20503,3.939604,31.20503,-3.939605,27.92615,-11.67465,27.92615,-3.939605,31.20503,-11.67465,31.20503,-0.9717825,31.20503,-0.9717825,27.92615,-8.706822,31.20503,-8.706822,27.92615,-1.460139,17.82579,-1.460139,21.18991,4.418491,17.82579,4.418491,21.18991,-6.835341,20.09114,-5.63641,22.76186,-1.021243,20.09114,-1.162542,20.18183,-0.2992331,22.76186,-0.1294346,22.38362,6.484746,40.92279,-6.406982,40.92279,6.484746,46.38758,-6.406982,46.38758,6.835343,29.29507,5.945807,27.18652,-0.8996985,29.29506,-0.01017095,27.18653,6.707444,15.7794,2.180899,15.7794,7.383484,17.66418,1.504857,17.66418,6.484738,36.04674,5.002194,32.5325,-6.406989,36.04675,-4.924439,32.5325,-6.36811,36.09596,6.523622,36.09596,-4.885561,32.58173,5.041073,32.58173,6.523622,46.38758,6.523622,40.92279,-6.36811,46.38758,-6.36811,40.92279,2.701274,31.20503,8.706822,31.20503,3.435403,27.92615,8.706822,27.92615,10.47571,16.24452,11.67464,13.5738,5.138534,16.24452,3.939602,13.5738,-5.94581,16.51623,-6.835341,18.62477,-0.4710564,16.51623,-0.9235355,17.65591,0.08042444,18.62477,-0.7777234,17.29123,-8.706822,28.50552,-0.9717825,28.50552,-7.817293,26.39697,-1.861312,26.39697,-10.84305,2.170714,-10.84305,7.507892,-6.220917,-0.4978746,-6.220917,10.17648,-1.598786,2.170714,-1.598786,7.507892,6.406987,36.04673,4.924438,32.53249,-6.484748,36.04673,-5.002196,32.53249,-7.703551,-4.525403,-7.703551,4.369892,-1.17332E-07,-8.973051,-1.17332E-07,8.817539,7.703551,-4.525403,7.703551,4.369892,1.460139,15.07663,0.2980379,15.07663,0.5489507,17.41326,-0.001611115,17.41326,11.37894,7.817293,11.37894,1.861312,6.220917,10.79529,6.220917,-1.116677,1.062887,7.817293,1.479641,3.58236,1.062887,3.58236,1.479641,1.6207,5.228267,13.12185,1.413348,13.12185,5.904309,15.00664,0.4438716,13.84073,0.02567976,15.00664,-0.9717825,9.576861,-8.706822,9.576861,-2.170714,12.24759,-7.507892,12.24759,-1.460139,9.298119,-0.5489507,11.63474,4.418491,9.298119,3.507304,11.63474,8.596718,4.885561,8.596718,-5.041073,1.17332E-07,9.848878,1.140419,1.062662,-1.140418,1.062662,-8.596717,4.885561,-1.140418,-1.218174,1.140419,-1.218174,1.17332E-07,-10.00439,-8.596717,-5.041073,-4.525403,24.93995,4.369892,24.93995,-6.523622,20.48874,6.36811,20.48874,-6.406982,20.43641,-4.408769,24.88761,6.484745,20.43641,4.486526,24.88762,-6.484743,20.4364,-4.486525,24.8876,6.406992,20.4364,4.408771,24.8876,6.406992,40.92279,-6.484743,40.92279,6.406992,46.38758,-6.484743,46.38758,2.170714,21.92172,7.507892,21.92172,2.000917,21.54349,2.37851,21.54349,8.706822,19.251,2.701273,19.251,1.460139,14.4737,1.041946,13.30779,0.883067,14.4737,4.885561,32.58169,-5.041073,32.58169,6.36811,36.09593,-6.523622,36.09593,-11.67465,15.25408,-10.47571,17.9248,-3.939605,15.25408,-5.138535,17.9248,-5.002194,32.6309,-6.484743,36.14515,4.92444,32.6309,6.406992,36.14515,6.406987,40.92279,-6.484748,40.92279,6.406987,46.38758,-6.484748,46.38758,6.484738,40.92279,-6.40699,40.92279,6.484738,46.38758,-6.40699,46.38758,2.565945,2.565945,2.565945,-2.565945,-2.565945,2.565945,-2.565945,-2.565945,-0.6732647,27.21342,-0.71509,26.96435,-0.9769419,26.96435,1.975778,11.47041,-1.975778,11.47041,-0.7150899,26.95236,-0.9769419,26.95236,-1.6207,26.42297,-3.58236,26.42297,1.598282,22.57447,0.7648643,22.57447,1.462075,26.7388,-1.462076,26.7388,-0.8133587,20.82552,-0.8133586,17.41091,-1.975777,11.03314,-0.08902895,16.48359,0.9738673,15.91181,1.816205,15.91181,1.975778,11.03314,-1.975778,11.47041,-1.13991,16.27959,1.975778,11.47041,2.492502,16.27959,-1.462076,26.52394,-0.231689,27.4471,1.462075,26.52394,1.140418,38.19307,-1.455117,26.77639,-1.185761,30.77192,-1.343387,30.82975,-1.140419,38.19307,-1.344981,30.77193,2.565945,-0.1310275,-2.565945,-0.1310275,1.975778,11.42637,-1.975778,11.42637,1.218174,38.47672,-0.001731648,31.21232,-1.062662,38.47672,-2.000916,32.5974,-2.37851,32.5974,-1.218174,38.47672,1.062662,38.47672,0.71509,26.96435,3.639241,26.96435,0.4965943,25.56791,-1.462074,25.56791,-0.4778224,26.50086,-1.140418,37.3607,-0.4778225,29.86091,1.304688,31.33818,1.140419,37.3607,-2.565945,-0.1310274,-1.975778,11.42637,2.565945,-0.1310274,1.975778,11.42637,-1.975778,11.68739,0.8133587,18.00706,1.975778,11.68739,1.479641,26.71782,-0.3575808,16.52162,0.8133587,21.39056,-0.7648643,23.12358,-1.598282,23.12358,1.062887,26.71782,-1.462075,27.24997,0.4965939,27.24997,-1.816205,16.52162,2.565945,-0.1310275,-2.565945,-0.1310275,1.975778,11.42637,-1.975778,11.42637,0.001611115,22.84735,0.71509,26.95236,3.198176,22.84735,3.639241,26.95236,2.565945,-0.1310275,-2.565945,-0.1310275,1.975778,11.42637,-1.975778,11.42637 + } + UVIndex: *645 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,10,13,12,14,12,13,15,13,10,16,13,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,23,26,25,26,27,25,28,25,27,29,26,23,30,26,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,62,61,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,141,143,143,145,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,179,181,183,181,180,184,186,185,187,185,186,188,190,189,191,189,190,192,191,190,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,201,200,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,211,210,213,211,212,214,213,212,213,215,211,216,218,217,219,217,218,220,219,218,221,223,222,224,222,223,225,227,226,228,226,227,229,231,230,232,230,231,233,232,231,234,233,231,235,233,234,232,236,230,237,230,236,235,237,236,238,237,235,234,238,235,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,253,252,254,252,253,255,257,256,258,256,257,259,256,258,260,259,258,261,263,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,293,292,294,292,293,295,292,294,296,292,295,297,299,298,299,300,298,298,300,301,301,300,302,300,303,302,302,303,304,304,303,305,305,303,306,307,306,303,308,310,309,311,309,310,312,314,313,315,313,314,316,312,313,317,313,315,318,317,315,319,318,315,317,318,320,321,323,322,324,322,323,325,327,326,328,326,327,329,328,327,330,332,331,333,331,332,334,336,335,337,335,336,338,337,336,339,337,338,340,337,339,341,343,342,344,342,343,345,347,346,348,346,347,349,345,346,350,346,348,351,350,348,352,351,348,353,352,348,354,352,353,355,354,353,349,356,345,357,359,358,360,358,359,361,363,362,364,362,363,365,367,366,368,366,367 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *215 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_plateau, Model::RootNode + C: "OO",5588694147316278540,0 + + ;Geometry::, Model::Mesh tree_plateau + C: "OO",5753401087341598997,5588694147316278540 + + ;Material::leafsGreen, Model::Mesh tree_plateau + C: "OO",3030,5588694147316278540 + + ;Material::woodBark, Model::Mesh tree_plateau + C: "OO",3046,5588694147316278540 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau.fbx.import new file mode 100644 index 0000000..904360e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://g274nxrcb4ot" +path="res://.godot/imported/tree_plateau.fbx-82bad6f7ece5db017899999d870ff3c0.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_plateau.fbx" +dest_files=["res://.godot/imported/tree_plateau.fbx-82bad6f7ece5db017899999d870ff3c0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_dark.fbx new file mode 100644 index 0000000..a14caf1 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_dark.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 41 + Millisecond: 438 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_plateau_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_plateau_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4850779456727208007, "Model::tree_plateau_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4920628341074500932, "Geometry::", "Mesh" { + Vertices: *1107 { + a: -1.086532,4.52775,1.868883,-2.379656,4.52775,1.122297,-1.086532,5.382237,1.868883,-2.379656,5.382237,1.122297,0.2065931,5.382237,-0.3708752,-0.1942755,5.819902,-0.1394335,-1.086532,5.382237,-1.117461,-1.086532,5.819902,-0.6545777,-0.09082552,4.15261,0.950582,-0.09082552,4.15261,0.6330955,-1.086532,4.15261,1.525453,-0.461316,4.15261,0.6330955,-0.461316,4.15261,-0.289537,-1.086532,4.15261,-0.7740315,-0.2473623,4.15261,-0.289537,-2.082238,4.15261,0.950582,-2.082238,4.15261,-0.1991604,1.580113,7.093243,3.193882,1.580113,6.72761,2.742002,-0.121367,7.093243,2.211533,0.2699733,6.72761,1.985592,-0.1942755,5.819902,-0.1394335,-0.1942755,5.819902,0.0004092231,-1.086532,5.819902,-0.6545777,-0.4059637,5.819902,0.0004092231,-0.4059637,5.819902,0.8123367,-1.086532,5.819902,1.406,-0.1942755,5.819902,0.8908553,-0.1942755,5.819902,0.8123367,-1.978788,5.819902,-0.1394335,-1.978788,5.819902,0.8908553,-2.379656,4.52775,-0.3708752,-2.379656,4.52775,1.122297,-2.082238,4.15261,-0.1991604,-2.082238,4.15261,0.950582,-0.09082552,4.15261,0.950582,-1.086532,4.15261,1.525453,0.2065931,4.52775,1.122297,-1.086532,4.52775,1.868883,-2.379656,4.52775,-0.3708752,-1.086532,4.52775,-1.117461,-2.379656,5.382237,-0.3708752,-1.086532,5.382237,-1.117461,0.2065931,4.52775,1.122297,-1.086532,4.52775,1.868883,0.2065931,5.382237,1.122297,-1.086532,5.382237,1.868883,-1.086532,5.819902,1.406,-1.086532,5.382237,1.868883,-1.978788,5.819902,0.8908553,-2.379656,5.382237,1.122297,-1.086532,4.52775,-1.117461,0.2065931,4.52775,-0.3708752,-1.086532,5.382237,-1.117461,0.2065931,5.382237,-0.3708752,-2.835801,10.39439,-1.657,-2.835801,11.78244,-1.657,-2.835801,10.39439,1.6175,-2.835801,11.78244,1.6175,0.2699733,6.72761,1.985592,0.2699733,6.72761,0.9099195,-0.121367,7.093243,2.211533,0.1261348,6.862,0.9243672,-0.121367,7.093243,0.8725923,2.835799,10.39439,-1.657,2.980232E-08,10.39439,-3.29425,2.183566,9.785,-1.280432,2.980232E-08,9.785,-2.541115,0.2065931,5.382237,-0.3708752,0.2065931,4.52775,-0.3708752,0.2065931,5.382237,-0.07570162,0.2065931,4.52775,-0.224299,2.835799,11.78244,1.6175,2.980232E-08,11.78244,3.25475,1.956702,12.4934,1.109952,2.980232E-08,12.4934,2.239655,0.2065931,5.382237,0.765286,0.2065931,5.382237,1.122297,-0.1942755,5.819902,0.8123367,-0.1942755,5.819902,0.8908553,3.281594,7.926077,2.211533,1.580113,7.926077,3.193882,2.754134,8.35265,1.907004,1.580113,8.35265,2.584825,-1.086532,5.382237,-1.117461,-1.086532,5.819902,-0.6545777,-2.379656,5.382237,-0.3708752,-1.978788,5.819902,-0.1394335,0.2065931,4.52775,0.6734248,0.2065931,4.52775,1.122297,0.2065931,5.382237,0.765286,0.2065931,5.382237,1.122297,-0.09082552,4.15261,0.6330955,-0.09082552,4.15261,0.950582,0.2065931,4.52775,0.6734248,0.2065931,4.52775,1.122297,0.05884901,7.093243,0.142785,1.580113,7.093243,-0.7355172,0.3011832,7.926077,0.002873294,1.580113,7.926077,-0.7355172,2.835799,11.78244,-1.657,2.835799,11.78244,1.6175,1.956702,12.4934,-1.149452,1.956702,12.4934,1.109952,2.980232E-08,12.4934,2.239655,2.980232E-08,11.78244,3.25475,-1.956702,12.4934,1.109952,-2.835801,11.78244,1.6175,3.281594,7.093243,0.2468328,1.580113,7.093243,-0.7355172,2.890252,6.72761,0.4727733,1.580113,6.72761,-0.283636,3.281594,7.093243,2.211533,1.580113,7.093243,3.193882,3.281594,7.926077,2.211533,1.580113,7.926077,3.193882,-1.086532,4.15261,1.525453,-2.082238,4.15261,0.950582,-1.086532,4.52775,1.868883,-2.379656,4.52775,1.122297,0.2065931,5.382237,1.122297,-1.086532,5.382237,1.868883,-0.1942755,5.819902,0.8908553,-1.086532,5.819902,1.406,1.580113,7.093243,3.193882,-0.121367,7.093243,2.211533,1.580113,7.926077,3.193882,-0.121367,7.926077,2.211533,1.580113,7.093243,-0.7355172,3.281594,7.093243,0.2468328,1.580113,7.926077,-0.7355172,3.281594,7.926077,0.2468328,3.281594,7.926077,0.2468328,3.281594,7.093243,0.2468328,3.281594,7.926077,2.211533,3.281594,7.093243,2.211533,-2.379656,4.52775,-0.3708752,-2.379656,5.382237,-0.3708752,-2.379656,4.52775,1.122297,-2.379656,5.382237,1.122297,1.580113,7.926077,-0.7355172,1.580113,8.35265,-0.1264601,0.3011832,7.926077,0.002873294,0.3412203,7.940563,0.0004398376,0.4060917,8.35265,0.5513613,0.3313906,8.292237,0.5082328,2.980232E-08,10.39439,-3.29425,2.835799,10.39439,-1.657,2.980232E-08,11.78244,-3.29425,2.835799,11.78244,-1.657,3.281594,7.093243,2.211533,2.890252,6.72761,1.985592,1.580113,7.093243,3.193882,1.580113,6.72761,2.742002,-2.082238,4.15261,-0.1991604,-1.086532,4.15261,-0.7740315,-2.379656,4.52775,-0.3708752,-1.086532,4.52775,-1.117461,2.835799,10.39439,1.6175,2.183566,9.785,1.240932,2.980232E-08,10.39439,3.25475,2.980232E-08,9.785,2.501615,2.835799,10.39439,1.6175,2.835799,10.39439,-1.657,2.183566,9.785,1.240932,2.183566,9.785,-1.280432,2.835799,11.78244,-1.657,2.835799,10.39439,-1.657,2.835799,11.78244,1.6175,2.835799,10.39439,1.6175,-0.121367,7.926077,0.6861235,-0.121367,7.926077,2.211533,-0.121367,7.093243,0.8725923,-0.121367,7.093243,2.211533,1.580113,8.35265,2.584825,1.580113,7.926077,3.193882,0.4060917,8.35265,1.907004,-0.121367,7.926077,2.211533,1.580113,6.72761,-0.283636,1.580113,7.093243,-0.7355172,0.3758288,6.72761,0.4116577,0.3695996,6.925238,0.1710092,0.05884901,7.093243,0.142785,0.3713672,6.862,0.2481432,3.281594,7.093243,2.211533,3.281594,7.093243,0.2468328,2.890252,6.72761,1.985592,2.890252,6.72761,0.4727733,2.754134,8.35265,0.5513613,2.754134,8.35265,1.907004,1.580113,8.35265,-0.1264601,1.580113,8.35265,2.584825,0.4060917,8.35265,0.5513613,0.4060917,8.35265,1.907004,2.980232E-08,10.39439,3.25475,2.980232E-08,9.785,2.501615,-2.835801,10.39439,1.6175,-2.183566,9.785,1.240932,1.956702,12.4934,-1.149452,1.956702,12.4934,1.109952,2.980232E-08,12.4934,-2.279155,2.980232E-08,12.4934,2.239655,-1.956702,12.4934,-1.149452,-1.956702,12.4934,1.109952,0.2065931,5.382237,-0.3708752,0.2065931,5.382237,-0.07570162,-0.1942755,5.819902,-0.1394335,-0.1942755,5.819902,0.0004092231,2.890252,6.72761,1.985592,2.890252,6.72761,0.4727733,1.580113,6.72761,2.742002,1.580113,6.72761,-0.283636,0.2699733,6.72761,1.985592,0.3758288,6.72761,0.9099195,0.2699733,6.72761,0.9099195,0.3758288,6.72761,0.4116577,-1.086532,4.15261,-0.7740315,-0.2473623,4.15261,-0.289537,-1.086532,4.52775,-1.117461,0.02261339,4.295692,-0.2646544,0.2065931,4.52775,-0.3708752,3.281594,7.926077,0.2468328,3.281594,7.926077,2.211533,2.754134,8.35265,0.5513613,2.754134,8.35265,1.907004,-2.379656,5.382237,-0.3708752,-1.978788,5.819902,-0.1394335,-2.379656,5.382237,1.122297,-1.978788,5.819902,0.8908553,2.183566,9.785,1.240932,2.183566,9.785,-1.280432,2.980232E-08,9.785,2.501615,0.2896664,9.785,0.2699162,-0.2896663,9.785,0.2699162,-2.183566,9.785,1.240932,-0.2896663,9.785,-0.3094162,0.2896664,9.785,-0.3094162,2.980232E-08,9.785,-2.541115,-2.183566,9.785,-1.280432,-1.956702,12.4934,-1.149452,-1.956702,12.4934,1.109952,-2.835801,11.78244,-1.657,-2.835801,11.78244,1.6175,2.835799,11.78244,-1.657,1.956702,12.4934,-1.149452,2.980232E-08,11.78244,-3.29425,2.980232E-08,12.4934,-2.279155,2.980232E-08,11.78244,-3.29425,2.980232E-08,12.4934,-2.279155,-2.835801,11.78244,-1.657,-1.956702,12.4934,-1.149452,-2.835801,10.39439,-1.657,2.980232E-08,10.39439,-3.29425,-2.835801,11.78244,-1.657,2.980232E-08,11.78244,-3.29425,0.4060917,8.35265,0.5513613,0.4060917,8.35265,1.907004,0.3313906,8.292237,0.5082328,0.3313906,8.292237,0.6041415,-0.121367,7.926077,2.211533,-0.121367,7.926077,0.6861235,0.2065931,4.52775,-0.3708752,0.02261339,4.295692,-0.2646544,0.2065931,4.52775,-0.224299,-2.183566,9.785,1.240932,-2.183566,9.785,-1.280432,-2.835801,10.39439,1.6175,-2.835801,10.39439,-1.657,3.281594,7.926077,0.2468328,2.754134,8.35265,0.5513613,1.580113,7.926077,-0.7355172,1.580113,8.35265,-0.1264601,2.980232E-08,9.785,-2.541115,2.980232E-08,10.39439,-3.29425,-2.183566,9.785,-1.280432,-2.835801,10.39439,-1.657,2.980232E-08,10.39439,3.25475,-2.835801,10.39439,1.6175,2.980232E-08,11.78244,3.25475,-2.835801,11.78244,1.6175,2.835799,10.39439,1.6175,2.980232E-08,10.39439,3.25475,2.835799,11.78244,1.6175,2.980232E-08,11.78244,3.25475,0.65175,0,0.65175,0.65175,0,-0.65175,-0.65175,0,0.65175,-0.65175,0,-0.65175,0.3695996,6.925238,0.1710092,0.3713672,6.862,0.1816328,0.3713672,6.862,0.2481432,0.5018475,2.93175,-0.5018475,0.5018475,2.93175,0.5018475,0.3713672,6.862,0.1816328,0.3713672,6.862,0.2481432,0.3758288,6.72761,0.4116577,0.3758288,6.72761,0.9099195,-0.4059637,5.819902,0.0004092231,-0.1942755,5.819902,0.0004092231,-0.371367,6.862,0.1816328,0.3713672,6.862,0.1816328,0.2065931,5.382237,-0.07570162,0.2065931,4.52775,-0.224299,0.5018475,2.93175,-0.5018475,0.02261339,4.295692,-0.2646544,-0.2473623,4.15261,-0.289537,-0.461316,4.15261,-0.289537,-0.5018475,2.93175,-0.5018475,-0.5018475,2.93175,-0.5018475,-0.461316,4.15261,-0.289537,-0.5018475,2.93175,0.5018475,-0.461316,4.15261,0.6330955,0.3713672,6.862,0.1816328,0.05884901,7.093243,0.142785,-0.371367,6.862,0.1816328,-0.2896663,9.785,-0.3094162,0.3695996,6.925238,0.1710092,0.3011832,7.926077,0.002873294,0.3412203,7.940563,0.0004398376,0.2896664,9.785,-0.3094162,0.3416252,7.926077,0.002873294,0.65175,0,0.65175,-0.65175,0,0.65175,0.5018475,2.93175,0.5018475,-0.5018475,2.93175,0.5018475,0.2896664,9.785,-0.3094162,0.3412203,7.940563,0.0004398376,0.2896664,9.785,0.2699162,0.3313906,8.292237,0.5082328,0.3313906,8.292237,0.6041415,-0.2896663,9.785,-0.3094162,-0.2896663,9.785,0.2699162,-0.371367,6.862,0.1816328,-0.371367,6.862,0.9243672,0.1261348,6.862,0.9243672,-0.371367,6.862,0.9243672,-0.121367,7.093243,0.8725923,-0.2896663,9.785,0.2699162,-0.121367,7.926077,0.6861235,0.3313906,8.292237,0.6041415,0.2896664,9.785,0.2699162,-0.65175,0,-0.65175,-0.5018475,2.93175,-0.5018475,-0.65175,0,0.65175,-0.5018475,2.93175,0.5018475,-0.5018475,2.93175,0.5018475,0.2065931,4.52775,0.6734248,0.5018475,2.93175,0.5018475,0.3758288,6.72761,0.9099195,-0.09082552,4.15261,0.6330955,0.2065931,5.382237,0.765286,-0.1942755,5.819902,0.8123367,-0.4059637,5.819902,0.8123367,0.2699733,6.72761,0.9099195,-0.371367,6.862,0.9243672,0.1261348,6.862,0.9243672,-0.461316,4.15261,0.6330955,-0.65175,0,-0.65175,0.65175,0,-0.65175,-0.5018475,2.93175,-0.5018475,0.5018475,2.93175,-0.5018475,-0.4059637,5.819902,0.0004092231,-0.371367,6.862,0.1816328,-0.4059637,5.819902,0.8123367,-0.371367,6.862,0.9243672,0.65175,0,-0.65175,0.65175,0,0.65175,0.5018475,2.93175,-0.5018475,0.5018475,2.93175,0.5018475 + } + PolygonVertexIndex: *645 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,10,13,-13,14,12,-14,15,13,-11,16,13,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,23,26,-26,26,27,-26,28,25,-28,29,26,-24,30,26,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,62,-62,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,141,-144,143,145,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,179,-182,183,181,-181,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,191,-191,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,201,-201,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,211,-211,213,211,-213,214,213,-213,213,215,-212,216,218,-218,219,217,-219,220,219,-219,221,223,-223,224,222,-224,225,227,-227,228,226,-228,229,231,-231,232,230,-232,233,232,-232,234,233,-232,235,233,-235,232,236,-231,237,230,-237,235,237,-237,238,237,-236,234,238,-236,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,259,256,-259,260,259,-259,261,263,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,293,-293,294,292,-294,295,292,-295,296,292,-296,297,299,-299,299,300,-299,298,300,-302,301,300,-303,300,303,-303,302,303,-305,304,303,-306,305,303,-307,307,306,-304,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,312,-314,317,313,-316,318,317,-316,319,318,-316,317,318,-321,321,323,-323,324,322,-324,325,327,-327,328,326,-328,329,328,-328,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,337,-337,339,337,-339,340,337,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348,349,345,-347,350,346,-349,351,350,-349,352,351,-349,353,352,-349,354,352,-354,355,354,-354,349,356,-346,357,359,-359,360,358,-360,361,363,-363,364,362,-364,365,367,-367,368,366,-368 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1935 { + a: -0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,0.7836061,-0.621258,0,0.7836061,-0.621258,0,0.7836061,-0.621258,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9996096,0.0279404,0,0.9996096,0.0279404,0,0.9996096,0.0279404,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656727,-0.9861808,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *738 { + a: -0.02567646,17.82579,-5.904305,17.82579,-0.02567646,21.18991,-5.904305,21.18991,0.02567985,14.49722,0.9368672,16.83385,5.904309,14.49722,4.993122,16.83385,-0.3575808,3.742449,-0.3575808,2.492502,-4.277684,6.005721,-1.816205,2.492502,-1.816205,-1.13991,-4.277684,-3.047368,-0.9738672,-1.13991,-8.197787,3.742449,-8.197787,-0.7840959,11.67464,24.74945,10.78512,22.64091,3.939605,24.74945,4.829134,22.64091,0.7648643,-0.5489507,0.7648643,0.001611115,4.277684,-2.577078,1.598282,0.001611115,1.598282,3.198176,4.277684,5.535431,0.7648643,3.507304,0.7648643,3.198176,7.790504,-0.5489507,7.790504,3.507304,-1.460139,19.78879,4.418491,19.78879,-0.7840959,17.90401,3.742449,17.90401,-2.180899,14.71352,-6.707444,14.71352,-1.504857,16.5983,-7.383487,16.5983,7.383483,17.82579,1.504856,17.82579,7.383483,21.18991,1.504856,21.18991,-1.504857,17.82579,-7.383487,17.82579,-1.504857,21.18991,-7.383487,21.18991,-0.9368659,12.21414,-0.02567765,9.877508,-4.993121,12.21414,-5.904305,9.877508,5.904309,17.82579,0.02567981,17.82579,5.904309,21.18991,0.02567981,21.18991,-6.523622,40.92279,-6.523622,46.38758,6.36811,40.92279,6.36811,46.38758,7.817293,17.30576,3.58236,17.30576,8.706822,19.4143,3.639241,18.08076,3.435403,19.4143,-6.406983,36.14515,6.484745,36.14515,-4.924438,32.63091,5.002195,32.63091,1.460139,21.18991,1.460139,17.82579,0.2980379,21.18991,0.883067,17.82579,6.484738,20.54113,-6.406989,20.54113,4.486524,24.99233,-4.408771,24.99233,-3.012937,15.07663,-4.418491,15.07663,-3.198176,17.41326,-3.507304,17.41326,6.83535,8.73674,-0.8996917,8.73674,5.636415,11.40746,0.2992398,11.40746,1.504857,11.60796,2.416044,13.94459,7.383484,11.60796,6.472299,13.94459,-2.651279,17.82579,-4.418491,17.82579,-3.012937,21.18991,-4.418491,21.18991,-2.492502,12.58891,-3.742449,12.58891,-2.651279,14.4737,-4.418491,14.4737,0.08042437,27.92615,-6.835341,27.92615,-1.021243,31.20503,-6.835341,31.20503,6.523622,20.48879,-6.36811,20.48879,4.525403,24.93999,-4.369892,24.93999,4.408769,24.99232,6.406987,20.54111,-4.486526,24.99232,-6.484748,20.54111,-11.67465,23.17039,-3.939604,23.17039,-10.78511,21.06184,-4.829134,21.06185,6.835349,27.92615,-0.8996928,27.92615,6.835349,31.20503,-0.8996928,31.20503,-0.701721,17.37107,-5.228267,17.37107,-0.02567787,19.25585,-5.904306,19.25585,-1.504857,12.76677,-7.383487,12.76677,-2.416044,15.1034,-6.472299,15.1034,11.67464,27.92615,3.939604,27.92615,11.67464,31.20503,3.939604,31.20503,-3.939605,27.92615,-11.67465,27.92615,-3.939605,31.20503,-11.67465,31.20503,-0.9717825,31.20503,-0.9717825,27.92615,-8.706822,31.20503,-8.706822,27.92615,-1.460139,17.82579,-1.460139,21.18991,4.418491,17.82579,4.418491,21.18991,-6.835341,20.09114,-5.63641,22.76186,-1.021243,20.09114,-1.162542,20.18183,-0.2992331,22.76186,-0.1294346,22.38362,6.484746,40.92279,-6.406982,40.92279,6.484746,46.38758,-6.406982,46.38758,6.835343,29.29507,5.945807,27.18652,-0.8996985,29.29506,-0.01017095,27.18653,6.707444,15.7794,2.180899,15.7794,7.383484,17.66418,1.504857,17.66418,6.484738,36.04674,5.002194,32.5325,-6.406989,36.04675,-4.924439,32.5325,-6.36811,36.09596,6.523622,36.09596,-4.885561,32.58173,5.041073,32.58173,6.523622,46.38758,6.523622,40.92279,-6.36811,46.38758,-6.36811,40.92279,2.701274,31.20503,8.706822,31.20503,3.435403,27.92615,8.706822,27.92615,10.47571,16.24452,11.67464,13.5738,5.138534,16.24452,3.939602,13.5738,-5.94581,16.51623,-6.835341,18.62477,-0.4710564,16.51623,-0.9235355,17.65591,0.08042444,18.62477,-0.7777234,17.29123,-8.706822,28.50552,-0.9717825,28.50552,-7.817293,26.39697,-1.861312,26.39697,-10.84305,2.170714,-10.84305,7.507892,-6.220917,-0.4978746,-6.220917,10.17648,-1.598786,2.170714,-1.598786,7.507892,6.406987,36.04673,4.924438,32.53249,-6.484748,36.04673,-5.002196,32.53249,-7.703551,-4.525403,-7.703551,4.369892,-1.17332E-07,-8.973051,-1.17332E-07,8.817539,7.703551,-4.525403,7.703551,4.369892,1.460139,15.07663,0.2980379,15.07663,0.5489507,17.41326,-0.001611115,17.41326,11.37894,7.817293,11.37894,1.861312,6.220917,10.79529,6.220917,-1.116677,1.062887,7.817293,1.479641,3.58236,1.062887,3.58236,1.479641,1.6207,5.228267,13.12185,1.413348,13.12185,5.904309,15.00664,0.4438716,13.84073,0.02567976,15.00664,-0.9717825,9.576861,-8.706822,9.576861,-2.170714,12.24759,-7.507892,12.24759,-1.460139,9.298119,-0.5489507,11.63474,4.418491,9.298119,3.507304,11.63474,8.596718,4.885561,8.596718,-5.041073,1.17332E-07,9.848878,1.140419,1.062662,-1.140418,1.062662,-8.596717,4.885561,-1.140418,-1.218174,1.140419,-1.218174,1.17332E-07,-10.00439,-8.596717,-5.041073,-4.525403,24.93995,4.369892,24.93995,-6.523622,20.48874,6.36811,20.48874,-6.406982,20.43641,-4.408769,24.88761,6.484745,20.43641,4.486526,24.88762,-6.484743,20.4364,-4.486525,24.8876,6.406992,20.4364,4.408771,24.8876,6.406992,40.92279,-6.484743,40.92279,6.406992,46.38758,-6.484743,46.38758,2.170714,21.92172,7.507892,21.92172,2.000917,21.54349,2.37851,21.54349,8.706822,19.251,2.701273,19.251,1.460139,14.4737,1.041946,13.30779,0.883067,14.4737,4.885561,32.58169,-5.041073,32.58169,6.36811,36.09593,-6.523622,36.09593,-11.67465,15.25408,-10.47571,17.9248,-3.939605,15.25408,-5.138535,17.9248,-5.002194,32.6309,-6.484743,36.14515,4.92444,32.6309,6.406992,36.14515,6.406987,40.92279,-6.484748,40.92279,6.406987,46.38758,-6.484748,46.38758,6.484738,40.92279,-6.40699,40.92279,6.484738,46.38758,-6.40699,46.38758,2.565945,2.565945,2.565945,-2.565945,-2.565945,2.565945,-2.565945,-2.565945,-0.6732647,27.21342,-0.71509,26.96435,-0.9769419,26.96435,1.975778,11.47041,-1.975778,11.47041,-0.7150899,26.95236,-0.9769419,26.95236,-1.6207,26.42297,-3.58236,26.42297,1.598282,22.57447,0.7648643,22.57447,1.462075,26.7388,-1.462076,26.7388,-0.8133587,20.82552,-0.8133586,17.41091,-1.975777,11.03314,-0.08902895,16.48359,0.9738673,15.91181,1.816205,15.91181,1.975778,11.03314,-1.975778,11.47041,-1.13991,16.27959,1.975778,11.47041,2.492502,16.27959,-1.462076,26.52394,-0.231689,27.4471,1.462075,26.52394,1.140418,38.19307,-1.455117,26.77639,-1.185761,30.77192,-1.343387,30.82975,-1.140419,38.19307,-1.344981,30.77193,2.565945,-0.1310275,-2.565945,-0.1310275,1.975778,11.42637,-1.975778,11.42637,1.218174,38.47672,-0.001731648,31.21232,-1.062662,38.47672,-2.000916,32.5974,-2.37851,32.5974,-1.218174,38.47672,1.062662,38.47672,0.71509,26.96435,3.639241,26.96435,0.4965943,25.56791,-1.462074,25.56791,-0.4778224,26.50086,-1.140418,37.3607,-0.4778225,29.86091,1.304688,31.33818,1.140419,37.3607,-2.565945,-0.1310274,-1.975778,11.42637,2.565945,-0.1310274,1.975778,11.42637,-1.975778,11.68739,0.8133587,18.00706,1.975778,11.68739,1.479641,26.71782,-0.3575808,16.52162,0.8133587,21.39056,-0.7648643,23.12358,-1.598282,23.12358,1.062887,26.71782,-1.462075,27.24997,0.4965939,27.24997,-1.816205,16.52162,2.565945,-0.1310275,-2.565945,-0.1310275,1.975778,11.42637,-1.975778,11.42637,0.001611115,22.84735,0.71509,26.95236,3.198176,22.84735,3.639241,26.95236,2.565945,-0.1310275,-2.565945,-0.1310275,1.975778,11.42637,-1.975778,11.42637 + } + UVIndex: *645 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,10,13,12,14,12,13,15,13,10,16,13,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,23,26,25,26,27,25,28,25,27,29,26,23,30,26,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,62,61,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,141,143,143,145,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,179,181,183,181,180,184,186,185,187,185,186,188,190,189,191,189,190,192,191,190,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,201,200,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,211,210,213,211,212,214,213,212,213,215,211,216,218,217,219,217,218,220,219,218,221,223,222,224,222,223,225,227,226,228,226,227,229,231,230,232,230,231,233,232,231,234,233,231,235,233,234,232,236,230,237,230,236,235,237,236,238,237,235,234,238,235,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,253,252,254,252,253,255,257,256,258,256,257,259,256,258,260,259,258,261,263,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,293,292,294,292,293,295,292,294,296,292,295,297,299,298,299,300,298,298,300,301,301,300,302,300,303,302,302,303,304,304,303,305,305,303,306,307,306,303,308,310,309,311,309,310,312,314,313,315,313,314,316,312,313,317,313,315,318,317,315,319,318,315,317,318,320,321,323,322,324,322,323,325,327,326,328,326,327,329,328,327,330,332,331,333,331,332,334,336,335,337,335,336,338,337,336,339,337,338,340,337,339,341,343,342,344,342,343,345,347,346,348,346,347,349,345,346,350,346,348,351,350,348,352,351,348,353,352,348,354,352,353,355,354,353,349,356,345,357,359,358,360,358,359,361,363,362,364,362,363,365,367,366,368,366,367 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *215 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_plateau_dark, Model::RootNode + C: "OO",4850779456727208007,0 + + ;Geometry::, Model::Mesh tree_plateau_dark + C: "OO",4920628341074500932,4850779456727208007 + + ;Material::leafsDark, Model::Mesh tree_plateau_dark + C: "OO",3026,4850779456727208007 + + ;Material::woodBarkDark, Model::Mesh tree_plateau_dark + C: "OO",3048,4850779456727208007 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_dark.fbx.import new file mode 100644 index 0000000..f63805d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bbqwumih445p" +path="res://.godot/imported/tree_plateau_dark.fbx-9e0492eb470e15da778926458e10ec27.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_dark.fbx" +dest_files=["res://.godot/imported/tree_plateau_dark.fbx-9e0492eb470e15da778926458e10ec27.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_fall.fbx new file mode 100644 index 0000000..2551f36 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 41 + Millisecond: 552 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_plateau_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_plateau_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5205031284934349219, "Model::tree_plateau_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5480113307859325609, "Geometry::", "Mesh" { + Vertices: *1107 { + a: -1.086532,4.52775,1.868883,-2.379656,4.52775,1.122297,-1.086532,5.382237,1.868883,-2.379656,5.382237,1.122297,0.2065931,5.382237,-0.3708752,-0.1942755,5.819902,-0.1394335,-1.086532,5.382237,-1.117461,-1.086532,5.819902,-0.6545777,-0.09082552,4.15261,0.950582,-0.09082552,4.15261,0.6330955,-1.086532,4.15261,1.525453,-0.461316,4.15261,0.6330955,-0.461316,4.15261,-0.289537,-1.086532,4.15261,-0.7740315,-0.2473623,4.15261,-0.289537,-2.082238,4.15261,0.950582,-2.082238,4.15261,-0.1991604,1.580113,7.093243,3.193882,1.580113,6.72761,2.742002,-0.121367,7.093243,2.211533,0.2699733,6.72761,1.985592,-0.1942755,5.819902,-0.1394335,-0.1942755,5.819902,0.0004092231,-1.086532,5.819902,-0.6545777,-0.4059637,5.819902,0.0004092231,-0.4059637,5.819902,0.8123367,-1.086532,5.819902,1.406,-0.1942755,5.819902,0.8908553,-0.1942755,5.819902,0.8123367,-1.978788,5.819902,-0.1394335,-1.978788,5.819902,0.8908553,-2.379656,4.52775,-0.3708752,-2.379656,4.52775,1.122297,-2.082238,4.15261,-0.1991604,-2.082238,4.15261,0.950582,-0.09082552,4.15261,0.950582,-1.086532,4.15261,1.525453,0.2065931,4.52775,1.122297,-1.086532,4.52775,1.868883,-2.379656,4.52775,-0.3708752,-1.086532,4.52775,-1.117461,-2.379656,5.382237,-0.3708752,-1.086532,5.382237,-1.117461,0.2065931,4.52775,1.122297,-1.086532,4.52775,1.868883,0.2065931,5.382237,1.122297,-1.086532,5.382237,1.868883,-1.086532,5.819902,1.406,-1.086532,5.382237,1.868883,-1.978788,5.819902,0.8908553,-2.379656,5.382237,1.122297,-1.086532,4.52775,-1.117461,0.2065931,4.52775,-0.3708752,-1.086532,5.382237,-1.117461,0.2065931,5.382237,-0.3708752,-2.835801,10.39439,-1.657,-2.835801,11.78244,-1.657,-2.835801,10.39439,1.6175,-2.835801,11.78244,1.6175,0.2699733,6.72761,1.985592,0.2699733,6.72761,0.9099195,-0.121367,7.093243,2.211533,0.1261348,6.862,0.9243672,-0.121367,7.093243,0.8725923,2.835799,10.39439,-1.657,2.980232E-08,10.39439,-3.29425,2.183566,9.785,-1.280432,2.980232E-08,9.785,-2.541115,0.2065931,5.382237,-0.3708752,0.2065931,4.52775,-0.3708752,0.2065931,5.382237,-0.07570162,0.2065931,4.52775,-0.224299,2.835799,11.78244,1.6175,2.980232E-08,11.78244,3.25475,1.956702,12.4934,1.109952,2.980232E-08,12.4934,2.239655,0.2065931,5.382237,0.765286,0.2065931,5.382237,1.122297,-0.1942755,5.819902,0.8123367,-0.1942755,5.819902,0.8908553,3.281594,7.926077,2.211533,1.580113,7.926077,3.193882,2.754134,8.35265,1.907004,1.580113,8.35265,2.584825,-1.086532,5.382237,-1.117461,-1.086532,5.819902,-0.6545777,-2.379656,5.382237,-0.3708752,-1.978788,5.819902,-0.1394335,0.2065931,4.52775,0.6734248,0.2065931,4.52775,1.122297,0.2065931,5.382237,0.765286,0.2065931,5.382237,1.122297,-0.09082552,4.15261,0.6330955,-0.09082552,4.15261,0.950582,0.2065931,4.52775,0.6734248,0.2065931,4.52775,1.122297,0.05884901,7.093243,0.142785,1.580113,7.093243,-0.7355172,0.3011832,7.926077,0.002873294,1.580113,7.926077,-0.7355172,2.835799,11.78244,-1.657,2.835799,11.78244,1.6175,1.956702,12.4934,-1.149452,1.956702,12.4934,1.109952,2.980232E-08,12.4934,2.239655,2.980232E-08,11.78244,3.25475,-1.956702,12.4934,1.109952,-2.835801,11.78244,1.6175,3.281594,7.093243,0.2468328,1.580113,7.093243,-0.7355172,2.890252,6.72761,0.4727733,1.580113,6.72761,-0.283636,3.281594,7.093243,2.211533,1.580113,7.093243,3.193882,3.281594,7.926077,2.211533,1.580113,7.926077,3.193882,-1.086532,4.15261,1.525453,-2.082238,4.15261,0.950582,-1.086532,4.52775,1.868883,-2.379656,4.52775,1.122297,0.2065931,5.382237,1.122297,-1.086532,5.382237,1.868883,-0.1942755,5.819902,0.8908553,-1.086532,5.819902,1.406,1.580113,7.093243,3.193882,-0.121367,7.093243,2.211533,1.580113,7.926077,3.193882,-0.121367,7.926077,2.211533,1.580113,7.093243,-0.7355172,3.281594,7.093243,0.2468328,1.580113,7.926077,-0.7355172,3.281594,7.926077,0.2468328,3.281594,7.926077,0.2468328,3.281594,7.093243,0.2468328,3.281594,7.926077,2.211533,3.281594,7.093243,2.211533,-2.379656,4.52775,-0.3708752,-2.379656,5.382237,-0.3708752,-2.379656,4.52775,1.122297,-2.379656,5.382237,1.122297,1.580113,7.926077,-0.7355172,1.580113,8.35265,-0.1264601,0.3011832,7.926077,0.002873294,0.3412203,7.940563,0.0004398376,0.4060917,8.35265,0.5513613,0.3313906,8.292237,0.5082328,2.980232E-08,10.39439,-3.29425,2.835799,10.39439,-1.657,2.980232E-08,11.78244,-3.29425,2.835799,11.78244,-1.657,3.281594,7.093243,2.211533,2.890252,6.72761,1.985592,1.580113,7.093243,3.193882,1.580113,6.72761,2.742002,-2.082238,4.15261,-0.1991604,-1.086532,4.15261,-0.7740315,-2.379656,4.52775,-0.3708752,-1.086532,4.52775,-1.117461,2.835799,10.39439,1.6175,2.183566,9.785,1.240932,2.980232E-08,10.39439,3.25475,2.980232E-08,9.785,2.501615,2.835799,10.39439,1.6175,2.835799,10.39439,-1.657,2.183566,9.785,1.240932,2.183566,9.785,-1.280432,2.835799,11.78244,-1.657,2.835799,10.39439,-1.657,2.835799,11.78244,1.6175,2.835799,10.39439,1.6175,-0.121367,7.926077,0.6861235,-0.121367,7.926077,2.211533,-0.121367,7.093243,0.8725923,-0.121367,7.093243,2.211533,1.580113,8.35265,2.584825,1.580113,7.926077,3.193882,0.4060917,8.35265,1.907004,-0.121367,7.926077,2.211533,1.580113,6.72761,-0.283636,1.580113,7.093243,-0.7355172,0.3758288,6.72761,0.4116577,0.3695996,6.925238,0.1710092,0.05884901,7.093243,0.142785,0.3713672,6.862,0.2481432,3.281594,7.093243,2.211533,3.281594,7.093243,0.2468328,2.890252,6.72761,1.985592,2.890252,6.72761,0.4727733,2.754134,8.35265,0.5513613,2.754134,8.35265,1.907004,1.580113,8.35265,-0.1264601,1.580113,8.35265,2.584825,0.4060917,8.35265,0.5513613,0.4060917,8.35265,1.907004,2.980232E-08,10.39439,3.25475,2.980232E-08,9.785,2.501615,-2.835801,10.39439,1.6175,-2.183566,9.785,1.240932,1.956702,12.4934,-1.149452,1.956702,12.4934,1.109952,2.980232E-08,12.4934,-2.279155,2.980232E-08,12.4934,2.239655,-1.956702,12.4934,-1.149452,-1.956702,12.4934,1.109952,0.2065931,5.382237,-0.3708752,0.2065931,5.382237,-0.07570162,-0.1942755,5.819902,-0.1394335,-0.1942755,5.819902,0.0004092231,2.890252,6.72761,1.985592,2.890252,6.72761,0.4727733,1.580113,6.72761,2.742002,1.580113,6.72761,-0.283636,0.2699733,6.72761,1.985592,0.3758288,6.72761,0.9099195,0.2699733,6.72761,0.9099195,0.3758288,6.72761,0.4116577,-1.086532,4.15261,-0.7740315,-0.2473623,4.15261,-0.289537,-1.086532,4.52775,-1.117461,0.02261339,4.295692,-0.2646544,0.2065931,4.52775,-0.3708752,3.281594,7.926077,0.2468328,3.281594,7.926077,2.211533,2.754134,8.35265,0.5513613,2.754134,8.35265,1.907004,-2.379656,5.382237,-0.3708752,-1.978788,5.819902,-0.1394335,-2.379656,5.382237,1.122297,-1.978788,5.819902,0.8908553,2.183566,9.785,1.240932,2.183566,9.785,-1.280432,2.980232E-08,9.785,2.501615,0.2896664,9.785,0.2699162,-0.2896663,9.785,0.2699162,-2.183566,9.785,1.240932,-0.2896663,9.785,-0.3094162,0.2896664,9.785,-0.3094162,2.980232E-08,9.785,-2.541115,-2.183566,9.785,-1.280432,-1.956702,12.4934,-1.149452,-1.956702,12.4934,1.109952,-2.835801,11.78244,-1.657,-2.835801,11.78244,1.6175,2.835799,11.78244,-1.657,1.956702,12.4934,-1.149452,2.980232E-08,11.78244,-3.29425,2.980232E-08,12.4934,-2.279155,2.980232E-08,11.78244,-3.29425,2.980232E-08,12.4934,-2.279155,-2.835801,11.78244,-1.657,-1.956702,12.4934,-1.149452,-2.835801,10.39439,-1.657,2.980232E-08,10.39439,-3.29425,-2.835801,11.78244,-1.657,2.980232E-08,11.78244,-3.29425,0.4060917,8.35265,0.5513613,0.4060917,8.35265,1.907004,0.3313906,8.292237,0.5082328,0.3313906,8.292237,0.6041415,-0.121367,7.926077,2.211533,-0.121367,7.926077,0.6861235,0.2065931,4.52775,-0.3708752,0.02261339,4.295692,-0.2646544,0.2065931,4.52775,-0.224299,-2.183566,9.785,1.240932,-2.183566,9.785,-1.280432,-2.835801,10.39439,1.6175,-2.835801,10.39439,-1.657,3.281594,7.926077,0.2468328,2.754134,8.35265,0.5513613,1.580113,7.926077,-0.7355172,1.580113,8.35265,-0.1264601,2.980232E-08,9.785,-2.541115,2.980232E-08,10.39439,-3.29425,-2.183566,9.785,-1.280432,-2.835801,10.39439,-1.657,2.980232E-08,10.39439,3.25475,-2.835801,10.39439,1.6175,2.980232E-08,11.78244,3.25475,-2.835801,11.78244,1.6175,2.835799,10.39439,1.6175,2.980232E-08,10.39439,3.25475,2.835799,11.78244,1.6175,2.980232E-08,11.78244,3.25475,0.65175,0,0.65175,0.65175,0,-0.65175,-0.65175,0,0.65175,-0.65175,0,-0.65175,0.3695996,6.925238,0.1710092,0.3713672,6.862,0.1816328,0.3713672,6.862,0.2481432,0.5018475,2.93175,-0.5018475,0.5018475,2.93175,0.5018475,0.3713672,6.862,0.1816328,0.3713672,6.862,0.2481432,0.3758288,6.72761,0.4116577,0.3758288,6.72761,0.9099195,-0.4059637,5.819902,0.0004092231,-0.1942755,5.819902,0.0004092231,-0.371367,6.862,0.1816328,0.3713672,6.862,0.1816328,0.2065931,5.382237,-0.07570162,0.2065931,4.52775,-0.224299,0.5018475,2.93175,-0.5018475,0.02261339,4.295692,-0.2646544,-0.2473623,4.15261,-0.289537,-0.461316,4.15261,-0.289537,-0.5018475,2.93175,-0.5018475,-0.5018475,2.93175,-0.5018475,-0.461316,4.15261,-0.289537,-0.5018475,2.93175,0.5018475,-0.461316,4.15261,0.6330955,0.3713672,6.862,0.1816328,0.05884901,7.093243,0.142785,-0.371367,6.862,0.1816328,-0.2896663,9.785,-0.3094162,0.3695996,6.925238,0.1710092,0.3011832,7.926077,0.002873294,0.3412203,7.940563,0.0004398376,0.2896664,9.785,-0.3094162,0.3416252,7.926077,0.002873294,0.65175,0,0.65175,-0.65175,0,0.65175,0.5018475,2.93175,0.5018475,-0.5018475,2.93175,0.5018475,0.2896664,9.785,-0.3094162,0.3412203,7.940563,0.0004398376,0.2896664,9.785,0.2699162,0.3313906,8.292237,0.5082328,0.3313906,8.292237,0.6041415,-0.2896663,9.785,-0.3094162,-0.2896663,9.785,0.2699162,-0.371367,6.862,0.1816328,-0.371367,6.862,0.9243672,0.1261348,6.862,0.9243672,-0.371367,6.862,0.9243672,-0.121367,7.093243,0.8725923,-0.2896663,9.785,0.2699162,-0.121367,7.926077,0.6861235,0.3313906,8.292237,0.6041415,0.2896664,9.785,0.2699162,-0.65175,0,-0.65175,-0.5018475,2.93175,-0.5018475,-0.65175,0,0.65175,-0.5018475,2.93175,0.5018475,-0.5018475,2.93175,0.5018475,0.2065931,4.52775,0.6734248,0.5018475,2.93175,0.5018475,0.3758288,6.72761,0.9099195,-0.09082552,4.15261,0.6330955,0.2065931,5.382237,0.765286,-0.1942755,5.819902,0.8123367,-0.4059637,5.819902,0.8123367,0.2699733,6.72761,0.9099195,-0.371367,6.862,0.9243672,0.1261348,6.862,0.9243672,-0.461316,4.15261,0.6330955,-0.65175,0,-0.65175,0.65175,0,-0.65175,-0.5018475,2.93175,-0.5018475,0.5018475,2.93175,-0.5018475,-0.4059637,5.819902,0.0004092231,-0.371367,6.862,0.1816328,-0.4059637,5.819902,0.8123367,-0.371367,6.862,0.9243672,0.65175,0,-0.65175,0.65175,0,0.65175,0.5018475,2.93175,-0.5018475,0.5018475,2.93175,0.5018475 + } + PolygonVertexIndex: *645 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,11,-11,10,13,-13,14,12,-14,15,13,-11,16,13,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,24,-24,23,26,-26,26,27,-26,28,25,-28,29,26,-24,30,26,-30,31,33,-33,34,32,-34,35,37,-37,38,36,-38,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,52,-54,55,57,-57,58,56,-58,59,61,-61,62,60,-62,63,62,-62,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131,132,134,-134,135,133,-135,136,138,-138,139,137,-139,140,142,-142,143,141,-143,144,141,-144,143,145,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,164,-164,165,163,-165,166,168,-168,169,167,-169,170,172,-172,173,171,-173,174,176,-176,177,175,-177,178,180,-180,181,179,-181,182,179,-182,183,181,-181,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,191,-191,193,191,-193,194,196,-196,197,195,-197,198,200,-200,201,199,-201,202,201,-201,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,211,-211,213,211,-213,214,213,-213,213,215,-212,216,218,-218,219,217,-219,220,219,-219,221,223,-223,224,222,-224,225,227,-227,228,226,-228,229,231,-231,232,230,-232,233,232,-232,234,233,-232,235,233,-235,232,236,-231,237,230,-237,235,237,-237,238,237,-236,234,238,-236,239,241,-241,242,240,-242,243,245,-245,246,244,-246,247,249,-249,250,248,-250,251,253,-253,254,252,-254,255,257,-257,258,256,-258,259,256,-259,260,259,-259,261,263,-263,264,266,-266,267,265,-267,268,270,-270,271,269,-271,272,274,-274,275,273,-275,276,278,-278,279,277,-279,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,290,-290,291,293,-293,294,292,-294,295,292,-295,296,292,-296,297,299,-299,299,300,-299,298,300,-302,301,300,-303,300,303,-303,302,303,-305,304,303,-306,305,303,-307,307,306,-304,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,312,-314,317,313,-316,318,317,-316,319,318,-316,317,318,-321,321,323,-323,324,322,-324,325,327,-327,328,326,-328,329,328,-328,330,332,-332,333,331,-333,334,336,-336,337,335,-337,338,337,-337,339,337,-339,340,337,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348,349,345,-347,350,346,-349,351,350,-349,352,351,-349,353,352,-349,354,352,-354,355,354,-354,349,356,-346,357,359,-359,360,358,-360,361,363,-363,364,362,-364,365,367,-367,368,366,-368 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1935 { + a: -0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,-0.5000004,0,0.8660253,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0.3687131,0.6754277,-0.6386299,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,-0.3413497,-0.7306995,0.5912349,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,-0.7836066,-0.6212574,0,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,0.3918029,-0.6212586,0.6786224,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,0.5000001,0,0.8660253,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,-0.3687133,0.6754276,0.6386299,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,0.4999999,0,-0.8660255,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,-0.6826989,-0.7306998,0,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,0.3413504,-0.7306982,-0.5912361,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.3144132,0.7775458,0.5445795,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,0.3144124,0.7775465,0.5445789,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,-0.3687132,0.6754276,-0.63863,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,0.7836058,-0.6212583,0,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,-0.5000001,0,-0.8660254,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,0.6288267,0.7775455,0,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,-0.314413,0.7775459,0.5445793,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.3413491,-0.7307005,-0.591234,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,0.4999997,0,0.8660256,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,-0.391803,-0.6212583,0.6786225,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,0.3687131,0.6754277,0.6386297,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,0.4999998,0,-0.8660255,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,-0.3144129,0.7775462,-0.5445792,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.5000002,0,-0.8660253,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,0.3413494,-0.7306999,0.5912345,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,-0.391803,-0.6212582,-0.6786227,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.3413504,-0.7306982,0.5912361,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,0.6827012,-0.7306976,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3144126,0.7775465,0.544579,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,-0.3413495,-0.7307,-0.5912343,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0.682697,-0.7307016,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,-0.3413501,-0.7306985,0.5912359,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0.7374263,0.6754277,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.3918028,-0.6212583,-0.6786227,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,0.628825,0.7775468,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,-0.7374269,0.6754271,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,-0.6288258,0.7775462,0,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,0.3144132,0.7775458,-0.5445795,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.314413,0.7775459,-0.5445793,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.4999999,0,-0.8660255,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,-0.628826,0.7775461,0,0.7836061,-0.621258,0,0.7836061,-0.621258,0,0.7836061,-0.621258,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,-0.6827,-0.7306988,0,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,0.3144127,0.7775465,-0.544579,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.3413501,-0.7306985,-0.5912359,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,-0.4999999,0,0.8660255,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0.5000002,0,0.8660253,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9996096,0.0279404,0,0.9996096,0.0279404,0,0.9996096,0.0279404,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0.9994493,0.03318069,0,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,0,0.1713311,-0.9852135,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,-0.9994493,0.03318087,0,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656733,-0.9861807,0,-0.1656727,-0.9861808,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0,0.05106403,0.9986954,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,0.9996096,0.02794009,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,-0.9996096,0.02794008,0,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,0,0.2184876,0.9758397,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,-0.9986954,0.05106401,0,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,-0.1068886,0.994271,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,0,0.05106403,-0.9986954,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,-0.9994493,0.03318086,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0,0.9986954,0.05106403,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *738 { + a: -0.02567646,17.82579,-5.904305,17.82579,-0.02567646,21.18991,-5.904305,21.18991,0.02567985,14.49722,0.9368672,16.83385,5.904309,14.49722,4.993122,16.83385,-0.3575808,3.742449,-0.3575808,2.492502,-4.277684,6.005721,-1.816205,2.492502,-1.816205,-1.13991,-4.277684,-3.047368,-0.9738672,-1.13991,-8.197787,3.742449,-8.197787,-0.7840959,11.67464,24.74945,10.78512,22.64091,3.939605,24.74945,4.829134,22.64091,0.7648643,-0.5489507,0.7648643,0.001611115,4.277684,-2.577078,1.598282,0.001611115,1.598282,3.198176,4.277684,5.535431,0.7648643,3.507304,0.7648643,3.198176,7.790504,-0.5489507,7.790504,3.507304,-1.460139,19.78879,4.418491,19.78879,-0.7840959,17.90401,3.742449,17.90401,-2.180899,14.71352,-6.707444,14.71352,-1.504857,16.5983,-7.383487,16.5983,7.383483,17.82579,1.504856,17.82579,7.383483,21.18991,1.504856,21.18991,-1.504857,17.82579,-7.383487,17.82579,-1.504857,21.18991,-7.383487,21.18991,-0.9368659,12.21414,-0.02567765,9.877508,-4.993121,12.21414,-5.904305,9.877508,5.904309,17.82579,0.02567981,17.82579,5.904309,21.18991,0.02567981,21.18991,-6.523622,40.92279,-6.523622,46.38758,6.36811,40.92279,6.36811,46.38758,7.817293,17.30576,3.58236,17.30576,8.706822,19.4143,3.639241,18.08076,3.435403,19.4143,-6.406983,36.14515,6.484745,36.14515,-4.924438,32.63091,5.002195,32.63091,1.460139,21.18991,1.460139,17.82579,0.2980379,21.18991,0.883067,17.82579,6.484738,20.54113,-6.406989,20.54113,4.486524,24.99233,-4.408771,24.99233,-3.012937,15.07663,-4.418491,15.07663,-3.198176,17.41326,-3.507304,17.41326,6.83535,8.73674,-0.8996917,8.73674,5.636415,11.40746,0.2992398,11.40746,1.504857,11.60796,2.416044,13.94459,7.383484,11.60796,6.472299,13.94459,-2.651279,17.82579,-4.418491,17.82579,-3.012937,21.18991,-4.418491,21.18991,-2.492502,12.58891,-3.742449,12.58891,-2.651279,14.4737,-4.418491,14.4737,0.08042437,27.92615,-6.835341,27.92615,-1.021243,31.20503,-6.835341,31.20503,6.523622,20.48879,-6.36811,20.48879,4.525403,24.93999,-4.369892,24.93999,4.408769,24.99232,6.406987,20.54111,-4.486526,24.99232,-6.484748,20.54111,-11.67465,23.17039,-3.939604,23.17039,-10.78511,21.06184,-4.829134,21.06185,6.835349,27.92615,-0.8996928,27.92615,6.835349,31.20503,-0.8996928,31.20503,-0.701721,17.37107,-5.228267,17.37107,-0.02567787,19.25585,-5.904306,19.25585,-1.504857,12.76677,-7.383487,12.76677,-2.416044,15.1034,-6.472299,15.1034,11.67464,27.92615,3.939604,27.92615,11.67464,31.20503,3.939604,31.20503,-3.939605,27.92615,-11.67465,27.92615,-3.939605,31.20503,-11.67465,31.20503,-0.9717825,31.20503,-0.9717825,27.92615,-8.706822,31.20503,-8.706822,27.92615,-1.460139,17.82579,-1.460139,21.18991,4.418491,17.82579,4.418491,21.18991,-6.835341,20.09114,-5.63641,22.76186,-1.021243,20.09114,-1.162542,20.18183,-0.2992331,22.76186,-0.1294346,22.38362,6.484746,40.92279,-6.406982,40.92279,6.484746,46.38758,-6.406982,46.38758,6.835343,29.29507,5.945807,27.18652,-0.8996985,29.29506,-0.01017095,27.18653,6.707444,15.7794,2.180899,15.7794,7.383484,17.66418,1.504857,17.66418,6.484738,36.04674,5.002194,32.5325,-6.406989,36.04675,-4.924439,32.5325,-6.36811,36.09596,6.523622,36.09596,-4.885561,32.58173,5.041073,32.58173,6.523622,46.38758,6.523622,40.92279,-6.36811,46.38758,-6.36811,40.92279,2.701274,31.20503,8.706822,31.20503,3.435403,27.92615,8.706822,27.92615,10.47571,16.24452,11.67464,13.5738,5.138534,16.24452,3.939602,13.5738,-5.94581,16.51623,-6.835341,18.62477,-0.4710564,16.51623,-0.9235355,17.65591,0.08042444,18.62477,-0.7777234,17.29123,-8.706822,28.50552,-0.9717825,28.50552,-7.817293,26.39697,-1.861312,26.39697,-10.84305,2.170714,-10.84305,7.507892,-6.220917,-0.4978746,-6.220917,10.17648,-1.598786,2.170714,-1.598786,7.507892,6.406987,36.04673,4.924438,32.53249,-6.484748,36.04673,-5.002196,32.53249,-7.703551,-4.525403,-7.703551,4.369892,-1.17332E-07,-8.973051,-1.17332E-07,8.817539,7.703551,-4.525403,7.703551,4.369892,1.460139,15.07663,0.2980379,15.07663,0.5489507,17.41326,-0.001611115,17.41326,11.37894,7.817293,11.37894,1.861312,6.220917,10.79529,6.220917,-1.116677,1.062887,7.817293,1.479641,3.58236,1.062887,3.58236,1.479641,1.6207,5.228267,13.12185,1.413348,13.12185,5.904309,15.00664,0.4438716,13.84073,0.02567976,15.00664,-0.9717825,9.576861,-8.706822,9.576861,-2.170714,12.24759,-7.507892,12.24759,-1.460139,9.298119,-0.5489507,11.63474,4.418491,9.298119,3.507304,11.63474,8.596718,4.885561,8.596718,-5.041073,1.17332E-07,9.848878,1.140419,1.062662,-1.140418,1.062662,-8.596717,4.885561,-1.140418,-1.218174,1.140419,-1.218174,1.17332E-07,-10.00439,-8.596717,-5.041073,-4.525403,24.93995,4.369892,24.93995,-6.523622,20.48874,6.36811,20.48874,-6.406982,20.43641,-4.408769,24.88761,6.484745,20.43641,4.486526,24.88762,-6.484743,20.4364,-4.486525,24.8876,6.406992,20.4364,4.408771,24.8876,6.406992,40.92279,-6.484743,40.92279,6.406992,46.38758,-6.484743,46.38758,2.170714,21.92172,7.507892,21.92172,2.000917,21.54349,2.37851,21.54349,8.706822,19.251,2.701273,19.251,1.460139,14.4737,1.041946,13.30779,0.883067,14.4737,4.885561,32.58169,-5.041073,32.58169,6.36811,36.09593,-6.523622,36.09593,-11.67465,15.25408,-10.47571,17.9248,-3.939605,15.25408,-5.138535,17.9248,-5.002194,32.6309,-6.484743,36.14515,4.92444,32.6309,6.406992,36.14515,6.406987,40.92279,-6.484748,40.92279,6.406987,46.38758,-6.484748,46.38758,6.484738,40.92279,-6.40699,40.92279,6.484738,46.38758,-6.40699,46.38758,2.565945,2.565945,2.565945,-2.565945,-2.565945,2.565945,-2.565945,-2.565945,-0.6732647,27.21342,-0.71509,26.96435,-0.9769419,26.96435,1.975778,11.47041,-1.975778,11.47041,-0.7150899,26.95236,-0.9769419,26.95236,-1.6207,26.42297,-3.58236,26.42297,1.598282,22.57447,0.7648643,22.57447,1.462075,26.7388,-1.462076,26.7388,-0.8133587,20.82552,-0.8133586,17.41091,-1.975777,11.03314,-0.08902895,16.48359,0.9738673,15.91181,1.816205,15.91181,1.975778,11.03314,-1.975778,11.47041,-1.13991,16.27959,1.975778,11.47041,2.492502,16.27959,-1.462076,26.52394,-0.231689,27.4471,1.462075,26.52394,1.140418,38.19307,-1.455117,26.77639,-1.185761,30.77192,-1.343387,30.82975,-1.140419,38.19307,-1.344981,30.77193,2.565945,-0.1310275,-2.565945,-0.1310275,1.975778,11.42637,-1.975778,11.42637,1.218174,38.47672,-0.001731648,31.21232,-1.062662,38.47672,-2.000916,32.5974,-2.37851,32.5974,-1.218174,38.47672,1.062662,38.47672,0.71509,26.96435,3.639241,26.96435,0.4965943,25.56791,-1.462074,25.56791,-0.4778224,26.50086,-1.140418,37.3607,-0.4778225,29.86091,1.304688,31.33818,1.140419,37.3607,-2.565945,-0.1310274,-1.975778,11.42637,2.565945,-0.1310274,1.975778,11.42637,-1.975778,11.68739,0.8133587,18.00706,1.975778,11.68739,1.479641,26.71782,-0.3575808,16.52162,0.8133587,21.39056,-0.7648643,23.12358,-1.598282,23.12358,1.062887,26.71782,-1.462075,27.24997,0.4965939,27.24997,-1.816205,16.52162,2.565945,-0.1310275,-2.565945,-0.1310275,1.975778,11.42637,-1.975778,11.42637,0.001611115,22.84735,0.71509,26.95236,3.198176,22.84735,3.639241,26.95236,2.565945,-0.1310275,-2.565945,-0.1310275,1.975778,11.42637,-1.975778,11.42637 + } + UVIndex: *645 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,11,10,10,13,12,14,12,13,15,13,10,16,13,15,17,19,18,20,18,19,21,23,22,24,22,23,25,24,23,23,26,25,26,27,25,28,25,27,29,26,23,30,26,29,31,33,32,34,32,33,35,37,36,38,36,37,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,52,53,55,57,56,58,56,57,59,61,60,62,60,61,63,62,61,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130,132,134,133,135,133,134,136,138,137,139,137,138,140,142,141,143,141,142,144,141,143,143,145,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,164,163,165,163,164,166,168,167,169,167,168,170,172,171,173,171,172,174,176,175,177,175,176,178,180,179,181,179,180,182,179,181,183,181,180,184,186,185,187,185,186,188,190,189,191,189,190,192,191,190,193,191,192,194,196,195,197,195,196,198,200,199,201,199,200,202,201,200,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,211,210,213,211,212,214,213,212,213,215,211,216,218,217,219,217,218,220,219,218,221,223,222,224,222,223,225,227,226,228,226,227,229,231,230,232,230,231,233,232,231,234,233,231,235,233,234,232,236,230,237,230,236,235,237,236,238,237,235,234,238,235,239,241,240,242,240,241,243,245,244,246,244,245,247,249,248,250,248,249,251,253,252,254,252,253,255,257,256,258,256,257,259,256,258,260,259,258,261,263,262,264,266,265,267,265,266,268,270,269,271,269,270,272,274,273,275,273,274,276,278,277,279,277,278,280,282,281,283,281,282,284,286,285,287,285,286,288,290,289,291,293,292,294,292,293,295,292,294,296,292,295,297,299,298,299,300,298,298,300,301,301,300,302,300,303,302,302,303,304,304,303,305,305,303,306,307,306,303,308,310,309,311,309,310,312,314,313,315,313,314,316,312,313,317,313,315,318,317,315,319,318,315,317,318,320,321,323,322,324,322,323,325,327,326,328,326,327,329,328,327,330,332,331,333,331,332,334,336,335,337,335,336,338,337,336,339,337,338,340,337,339,341,343,342,344,342,343,345,347,346,348,346,347,349,345,346,350,346,348,351,350,348,352,351,348,353,352,348,354,352,353,355,354,353,349,356,345,357,359,358,360,358,359,361,363,362,364,362,363,365,367,366,368,366,367 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *215 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_plateau_fall, Model::RootNode + C: "OO",5205031284934349219,0 + + ;Geometry::, Model::Mesh tree_plateau_fall + C: "OO",5480113307859325609,5205031284934349219 + + ;Material::leafsFall, Model::Mesh tree_plateau_fall + C: "OO",3028,5205031284934349219 + + ;Material::woodBirch, Model::Mesh tree_plateau_fall + C: "OO",3050,5205031284934349219 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_fall.fbx.import new file mode 100644 index 0000000..de359f2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://d4fdfnjo3cafq" +path="res://.godot/imported/tree_plateau_fall.fbx-278786410a19205277778d228f09cd5f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_plateau_fall.fbx" +dest_files=["res://.godot/imported/tree_plateau_fall.fbx-278786410a19205277778d228f09cd5f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_simple.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple.fbx new file mode 100644 index 0000000..78dac63 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 41 + Millisecond: 826 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_simple.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_simple.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5134042529536892613, "Model::tree_simple", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5158630366703862963, "Geometry::", "Mesh" { + Vertices: *360 { + a: 0,15.19437,0,0,14.43893,1.18755,-1.028448,14.43893,0.593775,0,15.19437,0,1.028448,14.43893,0.593775,0,14.43893,1.18755,1.028448,14.43893,-0.593775,1.028448,14.43893,0.593775,0,15.19437,0,1.773187,9.150871,1.02375,0,9.150871,2.0475,1.773187,11.43229,1.02375,0,11.43229,2.0475,1.773187,11.43229,-1.02375,1.773187,9.150871,-1.02375,1.773187,11.43229,1.02375,1.773187,9.150871,1.02375,-1.773187,9.150871,-1.02375,0,9.150871,-2.0475,-1.773187,11.43229,-1.02375,0,11.43229,-2.0475,-1.773187,11.43229,-1.02375,-1.028448,14.43893,-0.593775,-1.773187,11.43229,1.02375,-1.028448,14.43893,0.593775,1.773187,9.150871,1.02375,1.773187,9.150871,-1.02375,0.9929848,8.6825,0.5733,0.9929848,8.6825,-0.5733,0.9929848,8.6825,0.5733,0.9929848,8.6825,-0.5733,0,8.6825,1.1466,0.2570758,8.6825,0.2570758,-0.2570758,8.6825,0.2570758,-0.9929848,8.6825,0.5733,-0.2570758,8.6825,-0.2570758,0.2570758,8.6825,-0.2570758,0,8.6825,-1.1466,-0.9929848,8.6825,-0.5733,0,8.6825,-1.1466,0,9.150871,-2.0475,-0.9929848,8.6825,-0.5733,-1.773187,9.150871,-1.02375,1.773187,9.150871,-1.02375,0,9.150871,-2.0475,0.9929848,8.6825,-0.5733,0,8.6825,-1.1466,0,9.150871,-2.0475,1.773187,9.150871,-1.02375,0,11.43229,-2.0475,1.773187,11.43229,-1.02375,0,14.43893,-1.18755,0,15.19437,0,-1.028448,14.43893,-0.593775,0,11.43229,2.0475,-1.773187,11.43229,1.02375,0,14.43893,1.18755,-1.028448,14.43893,0.593775,0,11.43229,-2.0475,1.773187,11.43229,-1.02375,0,14.43893,-1.18755,1.028448,14.43893,-0.593775,-0.9929848,8.6825,0.5733,-0.9929848,8.6825,-0.5733,-1.773187,9.150871,1.02375,-1.773187,9.150871,-1.02375,1.773187,9.150871,1.02375,0.9929848,8.6825,0.5733,0,9.150871,2.0475,0,8.6825,1.1466,0,9.150871,2.0475,0,8.6825,1.1466,-1.773187,9.150871,1.02375,-0.9929848,8.6825,0.5733,-1.773187,9.150871,-1.02375,-1.773187,11.43229,-1.02375,-1.773187,9.150871,1.02375,-1.773187,11.43229,1.02375,1.773187,11.43229,1.02375,0,11.43229,2.0475,1.028448,14.43893,0.593775,0,14.43893,1.18755,0,9.150871,2.0475,-1.773187,9.150871,1.02375,0,11.43229,2.0475,-1.773187,11.43229,1.02375,1.773187,11.43229,-1.02375,1.773187,11.43229,1.02375,1.028448,14.43893,-0.593775,1.028448,14.43893,0.593775,-1.773187,11.43229,-1.02375,0,11.43229,-2.0475,-1.028448,14.43893,-0.593775,0,14.43893,-1.18755,0,14.43893,-1.18755,1.028448,14.43893,-0.593775,0,15.19437,0,-1.028448,14.43893,-0.593775,0,15.19437,0,-1.028448,14.43893,0.593775,0.4048436,0,0.4048436,0.4048436,0,-0.4048436,-0.4048436,0,0.4048436,-0.4048436,0,-0.4048436,-0.4048436,0,-0.4048436,0.4048436,0,-0.4048436,-0.2570758,8.6825,-0.2570758,0.2570758,8.6825,-0.2570758,-0.4048436,0,-0.4048436,-0.2570758,8.6825,-0.2570758,-0.4048436,0,0.4048436,-0.2570758,8.6825,0.2570758,0.4048436,0,0.4048436,-0.4048436,0,0.4048436,0.2570758,8.6825,0.2570758,-0.2570758,8.6825,0.2570758,0.4048436,0,-0.4048436,0.4048436,0,0.4048436,0.2570758,8.6825,-0.2570758,0.2570758,8.6825,0.2570758 + } + PolygonVertexIndex: *186 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,32,-32,34,33,-32,35,33,-35,32,36,-31,37,30,-37,35,37,-37,38,37,-36,34,38,-36,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,99,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *558 { + a: -0.2959976,0.8059414,0.512683,-0.2959976,0.8059414,0.512683,-0.2959976,0.8059414,0.512683,0.2959976,0.8059414,0.512683,0.2959976,0.8059414,0.512683,0.2959976,0.8059414,0.512683,0.5919953,0.8059414,0,0.5919953,0.8059414,0,0.5919953,0.8059414,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.2959976,0.8059414,-0.512683,-0.2959976,0.8059414,-0.512683,-0.2959976,0.8059414,-0.512683,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,0.2959976,0.8059414,-0.512683,0.2959976,0.8059414,-0.512683,0.2959976,0.8059414,-0.512683,-0.5919953,0.8059414,0,-0.5919953,0.8059414,0,-0.5919953,0.8059414,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: -1.776357E-15,35.41337,2.337697,30.38942,-2.337697,30.38942,0,35.41337,2.337697,30.38942,-2.337697,30.38942,2.337697,30.38942,-2.337697,30.38942,0,35.41337,4.030512,36.02705,-4.030511,36.02705,4.030512,45.00903,-4.030511,45.00903,4.030512,45.00903,4.030512,36.02705,-4.030512,45.00903,-4.030512,36.02705,4.030512,36.02705,-4.030511,36.02705,4.030512,45.00903,-4.030511,45.00903,-4.030512,42.01027,-2.337697,54.20516,4.030512,42.01027,2.337697,54.20516,-4.030512,24.5284,4.030512,24.5284,-2.257087,20.94575,2.257087,20.94575,3.909389,2.257087,3.909389,-2.257087,0,4.514174,1.012109,1.012109,-1.012109,1.012109,-3.909389,2.257087,-1.012109,-1.012109,1.012109,-1.012109,0,-4.514174,-3.909389,-2.257087,-2.257087,20.94575,-4.030511,24.52839,2.257087,20.94575,4.030512,24.52839,-4.030512,24.52839,4.030511,24.52839,-2.257087,20.94575,2.257087,20.94575,4.030511,36.02705,-4.030512,36.02705,4.030511,45.00903,-4.030512,45.00903,-2.337697,30.38942,1.776357E-15,35.41337,2.337697,30.38942,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,2.257087,20.94575,-2.257087,20.94575,4.030512,24.5284,-4.030512,24.5284,4.030512,24.52839,2.257087,20.94575,-4.030511,24.52839,-2.257087,20.94575,4.030511,24.52839,2.257087,20.94575,-4.030512,24.52839,-2.257087,20.94575,-4.030512,36.02705,-4.030512,45.00903,4.030512,36.02705,4.030512,45.00903,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,4.030511,36.02705,-4.030512,36.02705,4.030511,45.00903,-4.030512,45.00903,4.030512,42.01027,-4.030512,42.01027,2.337697,54.20516,-2.337697,54.20516,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,2.337697,30.38942,-2.337697,30.38942,0,35.41337,-2.337697,30.38942,0,35.41337,2.337697,30.38942,1.593872,1.593872,1.593872,-1.593872,-1.593872,1.593872,-1.593872,-1.593872,1.593872,-0.02712225,-1.593872,-0.02712225,1.012109,34.1609,-1.012109,34.1609,-1.593872,-0.02712225,-1.012109,34.1609,1.593872,-0.02712225,1.012109,34.1609,1.593872,-0.02712225,-1.593872,-0.02712225,1.012109,34.1609,-1.012109,34.1609,1.593872,-0.02712225,-1.593872,-0.02712225,1.012109,34.1609,-1.012109,34.1609 + } + UVIndex: *186 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,32,31,34,33,31,35,33,34,32,36,30,37,30,36,35,37,36,38,37,35,34,38,35,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,99,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *62 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_simple, Model::RootNode + C: "OO",5134042529536892613,0 + + ;Geometry::, Model::Mesh tree_simple + C: "OO",5158630366703862963,5134042529536892613 + + ;Material::leafsGreen, Model::Mesh tree_simple + C: "OO",3030,5134042529536892613 + + ;Material::woodBark, Model::Mesh tree_simple + C: "OO",3046,5134042529536892613 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_simple.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple.fbx.import new file mode 100644 index 0000000..5fb297d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b30b43n6kdnsi" +path="res://.godot/imported/tree_simple.fbx-f9bed219dcedb298e09145db78257f47.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_simple.fbx" +dest_files=["res://.godot/imported/tree_simple.fbx-f9bed219dcedb298e09145db78257f47.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_dark.fbx new file mode 100644 index 0000000..634c793 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_dark.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 41 + Millisecond: 915 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_simple_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_simple_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4646590044523257506, "Model::tree_simple_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5012229374343978200, "Geometry::", "Mesh" { + Vertices: *360 { + a: 0,15.19437,0,0,14.43893,1.18755,-1.028448,14.43893,0.593775,0,15.19437,0,1.028448,14.43893,0.593775,0,14.43893,1.18755,1.028448,14.43893,-0.593775,1.028448,14.43893,0.593775,0,15.19437,0,1.773187,9.150871,1.02375,0,9.150871,2.0475,1.773187,11.43229,1.02375,0,11.43229,2.0475,1.773187,11.43229,-1.02375,1.773187,9.150871,-1.02375,1.773187,11.43229,1.02375,1.773187,9.150871,1.02375,-1.773187,9.150871,-1.02375,0,9.150871,-2.0475,-1.773187,11.43229,-1.02375,0,11.43229,-2.0475,-1.773187,11.43229,-1.02375,-1.028448,14.43893,-0.593775,-1.773187,11.43229,1.02375,-1.028448,14.43893,0.593775,1.773187,9.150871,1.02375,1.773187,9.150871,-1.02375,0.9929848,8.6825,0.5733,0.9929848,8.6825,-0.5733,0.9929848,8.6825,0.5733,0.9929848,8.6825,-0.5733,0,8.6825,1.1466,0.2570758,8.6825,0.2570758,-0.2570758,8.6825,0.2570758,-0.9929848,8.6825,0.5733,-0.2570758,8.6825,-0.2570758,0.2570758,8.6825,-0.2570758,0,8.6825,-1.1466,-0.9929848,8.6825,-0.5733,0,8.6825,-1.1466,0,9.150871,-2.0475,-0.9929848,8.6825,-0.5733,-1.773187,9.150871,-1.02375,1.773187,9.150871,-1.02375,0,9.150871,-2.0475,0.9929848,8.6825,-0.5733,0,8.6825,-1.1466,0,9.150871,-2.0475,1.773187,9.150871,-1.02375,0,11.43229,-2.0475,1.773187,11.43229,-1.02375,0,14.43893,-1.18755,0,15.19437,0,-1.028448,14.43893,-0.593775,0,11.43229,2.0475,-1.773187,11.43229,1.02375,0,14.43893,1.18755,-1.028448,14.43893,0.593775,0,11.43229,-2.0475,1.773187,11.43229,-1.02375,0,14.43893,-1.18755,1.028448,14.43893,-0.593775,-0.9929848,8.6825,0.5733,-0.9929848,8.6825,-0.5733,-1.773187,9.150871,1.02375,-1.773187,9.150871,-1.02375,1.773187,9.150871,1.02375,0.9929848,8.6825,0.5733,0,9.150871,2.0475,0,8.6825,1.1466,0,9.150871,2.0475,0,8.6825,1.1466,-1.773187,9.150871,1.02375,-0.9929848,8.6825,0.5733,-1.773187,9.150871,-1.02375,-1.773187,11.43229,-1.02375,-1.773187,9.150871,1.02375,-1.773187,11.43229,1.02375,1.773187,11.43229,1.02375,0,11.43229,2.0475,1.028448,14.43893,0.593775,0,14.43893,1.18755,0,9.150871,2.0475,-1.773187,9.150871,1.02375,0,11.43229,2.0475,-1.773187,11.43229,1.02375,1.773187,11.43229,-1.02375,1.773187,11.43229,1.02375,1.028448,14.43893,-0.593775,1.028448,14.43893,0.593775,-1.773187,11.43229,-1.02375,0,11.43229,-2.0475,-1.028448,14.43893,-0.593775,0,14.43893,-1.18755,0,14.43893,-1.18755,1.028448,14.43893,-0.593775,0,15.19437,0,-1.028448,14.43893,-0.593775,0,15.19437,0,-1.028448,14.43893,0.593775,0.4048436,0,0.4048436,0.4048436,0,-0.4048436,-0.4048436,0,0.4048436,-0.4048436,0,-0.4048436,-0.4048436,0,-0.4048436,0.4048436,0,-0.4048436,-0.2570758,8.6825,-0.2570758,0.2570758,8.6825,-0.2570758,-0.4048436,0,-0.4048436,-0.2570758,8.6825,-0.2570758,-0.4048436,0,0.4048436,-0.2570758,8.6825,0.2570758,0.4048436,0,0.4048436,-0.4048436,0,0.4048436,0.2570758,8.6825,0.2570758,-0.2570758,8.6825,0.2570758,0.4048436,0,-0.4048436,0.4048436,0,0.4048436,0.2570758,8.6825,-0.2570758,0.2570758,8.6825,0.2570758 + } + PolygonVertexIndex: *186 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,32,-32,34,33,-32,35,33,-35,32,36,-31,37,30,-37,35,37,-37,38,37,-36,34,38,-36,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,99,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *558 { + a: -0.2959976,0.8059414,0.512683,-0.2959976,0.8059414,0.512683,-0.2959976,0.8059414,0.512683,0.2959976,0.8059414,0.512683,0.2959976,0.8059414,0.512683,0.2959976,0.8059414,0.512683,0.5919953,0.8059414,0,0.5919953,0.8059414,0,0.5919953,0.8059414,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.2959976,0.8059414,-0.512683,-0.2959976,0.8059414,-0.512683,-0.2959976,0.8059414,-0.512683,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,0.2959976,0.8059414,-0.512683,0.2959976,0.8059414,-0.512683,0.2959976,0.8059414,-0.512683,-0.5919953,0.8059414,0,-0.5919953,0.8059414,0,-0.5919953,0.8059414,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: -1.776357E-15,35.41337,2.337697,30.38942,-2.337697,30.38942,0,35.41337,2.337697,30.38942,-2.337697,30.38942,2.337697,30.38942,-2.337697,30.38942,0,35.41337,4.030512,36.02705,-4.030511,36.02705,4.030512,45.00903,-4.030511,45.00903,4.030512,45.00903,4.030512,36.02705,-4.030512,45.00903,-4.030512,36.02705,4.030512,36.02705,-4.030511,36.02705,4.030512,45.00903,-4.030511,45.00903,-4.030512,42.01027,-2.337697,54.20516,4.030512,42.01027,2.337697,54.20516,-4.030512,24.5284,4.030512,24.5284,-2.257087,20.94575,2.257087,20.94575,3.909389,2.257087,3.909389,-2.257087,0,4.514174,1.012109,1.012109,-1.012109,1.012109,-3.909389,2.257087,-1.012109,-1.012109,1.012109,-1.012109,0,-4.514174,-3.909389,-2.257087,-2.257087,20.94575,-4.030511,24.52839,2.257087,20.94575,4.030512,24.52839,-4.030512,24.52839,4.030511,24.52839,-2.257087,20.94575,2.257087,20.94575,4.030511,36.02705,-4.030512,36.02705,4.030511,45.00903,-4.030512,45.00903,-2.337697,30.38942,1.776357E-15,35.41337,2.337697,30.38942,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,2.257087,20.94575,-2.257087,20.94575,4.030512,24.5284,-4.030512,24.5284,4.030512,24.52839,2.257087,20.94575,-4.030511,24.52839,-2.257087,20.94575,4.030511,24.52839,2.257087,20.94575,-4.030512,24.52839,-2.257087,20.94575,-4.030512,36.02705,-4.030512,45.00903,4.030512,36.02705,4.030512,45.00903,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,4.030511,36.02705,-4.030512,36.02705,4.030511,45.00903,-4.030512,45.00903,4.030512,42.01027,-4.030512,42.01027,2.337697,54.20516,-2.337697,54.20516,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,2.337697,30.38942,-2.337697,30.38942,0,35.41337,-2.337697,30.38942,0,35.41337,2.337697,30.38942,1.593872,1.593872,1.593872,-1.593872,-1.593872,1.593872,-1.593872,-1.593872,1.593872,-0.02712225,-1.593872,-0.02712225,1.012109,34.1609,-1.012109,34.1609,-1.593872,-0.02712225,-1.012109,34.1609,1.593872,-0.02712225,1.012109,34.1609,1.593872,-0.02712225,-1.593872,-0.02712225,1.012109,34.1609,-1.012109,34.1609,1.593872,-0.02712225,-1.593872,-0.02712225,1.012109,34.1609,-1.012109,34.1609 + } + UVIndex: *186 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,32,31,34,33,31,35,33,34,32,36,30,37,30,36,35,37,36,38,37,35,34,38,35,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,99,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *62 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_simple_dark, Model::RootNode + C: "OO",4646590044523257506,0 + + ;Geometry::, Model::Mesh tree_simple_dark + C: "OO",5012229374343978200,4646590044523257506 + + ;Material::leafsDark, Model::Mesh tree_simple_dark + C: "OO",3026,4646590044523257506 + + ;Material::woodBarkDark, Model::Mesh tree_simple_dark + C: "OO",3048,4646590044523257506 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_dark.fbx.import new file mode 100644 index 0000000..43fb96d --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://djtkktrv38sri" +path="res://.godot/imported/tree_simple_dark.fbx-42d2ff81d33674da52439a5dde61a82c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_simple_dark.fbx" +dest_files=["res://.godot/imported/tree_simple_dark.fbx-42d2ff81d33674da52439a5dde61a82c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_fall.fbx new file mode 100644 index 0000000..112a1ce --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 2 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_simple_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_simple_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5036926395882399861, "Model::tree_simple_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4798470691468877971, "Geometry::", "Mesh" { + Vertices: *360 { + a: 0,15.19437,0,0,14.43893,1.18755,-1.028448,14.43893,0.593775,0,15.19437,0,1.028448,14.43893,0.593775,0,14.43893,1.18755,1.028448,14.43893,-0.593775,1.028448,14.43893,0.593775,0,15.19437,0,1.773187,9.150871,1.02375,0,9.150871,2.0475,1.773187,11.43229,1.02375,0,11.43229,2.0475,1.773187,11.43229,-1.02375,1.773187,9.150871,-1.02375,1.773187,11.43229,1.02375,1.773187,9.150871,1.02375,-1.773187,9.150871,-1.02375,0,9.150871,-2.0475,-1.773187,11.43229,-1.02375,0,11.43229,-2.0475,-1.773187,11.43229,-1.02375,-1.028448,14.43893,-0.593775,-1.773187,11.43229,1.02375,-1.028448,14.43893,0.593775,1.773187,9.150871,1.02375,1.773187,9.150871,-1.02375,0.9929848,8.6825,0.5733,0.9929848,8.6825,-0.5733,0.9929848,8.6825,0.5733,0.9929848,8.6825,-0.5733,0,8.6825,1.1466,0.2570758,8.6825,0.2570758,-0.2570758,8.6825,0.2570758,-0.9929848,8.6825,0.5733,-0.2570758,8.6825,-0.2570758,0.2570758,8.6825,-0.2570758,0,8.6825,-1.1466,-0.9929848,8.6825,-0.5733,0,8.6825,-1.1466,0,9.150871,-2.0475,-0.9929848,8.6825,-0.5733,-1.773187,9.150871,-1.02375,1.773187,9.150871,-1.02375,0,9.150871,-2.0475,0.9929848,8.6825,-0.5733,0,8.6825,-1.1466,0,9.150871,-2.0475,1.773187,9.150871,-1.02375,0,11.43229,-2.0475,1.773187,11.43229,-1.02375,0,14.43893,-1.18755,0,15.19437,0,-1.028448,14.43893,-0.593775,0,11.43229,2.0475,-1.773187,11.43229,1.02375,0,14.43893,1.18755,-1.028448,14.43893,0.593775,0,11.43229,-2.0475,1.773187,11.43229,-1.02375,0,14.43893,-1.18755,1.028448,14.43893,-0.593775,-0.9929848,8.6825,0.5733,-0.9929848,8.6825,-0.5733,-1.773187,9.150871,1.02375,-1.773187,9.150871,-1.02375,1.773187,9.150871,1.02375,0.9929848,8.6825,0.5733,0,9.150871,2.0475,0,8.6825,1.1466,0,9.150871,2.0475,0,8.6825,1.1466,-1.773187,9.150871,1.02375,-0.9929848,8.6825,0.5733,-1.773187,9.150871,-1.02375,-1.773187,11.43229,-1.02375,-1.773187,9.150871,1.02375,-1.773187,11.43229,1.02375,1.773187,11.43229,1.02375,0,11.43229,2.0475,1.028448,14.43893,0.593775,0,14.43893,1.18755,0,9.150871,2.0475,-1.773187,9.150871,1.02375,0,11.43229,2.0475,-1.773187,11.43229,1.02375,1.773187,11.43229,-1.02375,1.773187,11.43229,1.02375,1.028448,14.43893,-0.593775,1.028448,14.43893,0.593775,-1.773187,11.43229,-1.02375,0,11.43229,-2.0475,-1.028448,14.43893,-0.593775,0,14.43893,-1.18755,0,14.43893,-1.18755,1.028448,14.43893,-0.593775,0,15.19437,0,-1.028448,14.43893,-0.593775,0,15.19437,0,-1.028448,14.43893,0.593775,0.4048436,0,0.4048436,0.4048436,0,-0.4048436,-0.4048436,0,0.4048436,-0.4048436,0,-0.4048436,-0.4048436,0,-0.4048436,0.4048436,0,-0.4048436,-0.2570758,8.6825,-0.2570758,0.2570758,8.6825,-0.2570758,-0.4048436,0,-0.4048436,-0.2570758,8.6825,-0.2570758,-0.4048436,0,0.4048436,-0.2570758,8.6825,0.2570758,0.4048436,0,0.4048436,-0.4048436,0,0.4048436,0.2570758,8.6825,0.2570758,-0.2570758,8.6825,0.2570758,0.4048436,0,-0.4048436,0.4048436,0,0.4048436,0.2570758,8.6825,-0.2570758,0.2570758,8.6825,0.2570758 + } + PolygonVertexIndex: *186 { + a: 0,2,-2,3,5,-5,6,8,-8,9,11,-11,12,10,-12,13,15,-15,16,14,-16,17,19,-19,20,18,-20,21,23,-23,24,22,-24,25,27,-27,28,26,-28,29,31,-31,32,30,-32,33,32,-32,34,33,-32,35,33,-35,32,36,-31,37,30,-37,35,37,-37,38,37,-36,34,38,-36,39,41,-41,42,40,-42,43,45,-45,46,44,-46,47,49,-49,50,48,-50,51,53,-53,54,56,-56,57,55,-57,58,60,-60,61,59,-61,62,64,-64,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,80,-80,81,79,-81,82,84,-84,85,83,-85,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,97,99,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *558 { + a: -0.2959976,0.8059414,0.512683,-0.2959976,0.8059414,0.512683,-0.2959976,0.8059414,0.512683,0.2959976,0.8059414,0.512683,0.2959976,0.8059414,0.512683,0.2959976,0.8059414,0.512683,0.5919953,0.8059414,0,0.5919953,0.8059414,0,0.5919953,0.8059414,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,-0.9706661,0.2404318,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0.5146978,-0.8573717,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,-0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.2573488,-0.8573718,-0.4457412,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.2959976,0.8059414,-0.512683,-0.2959976,0.8059414,-0.512683,-0.2959976,0.8059414,-0.512683,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,-0.485333,0.2404318,0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,0.485333,0.2404318,-0.8406214,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,-0.5146978,-0.8573717,0,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-0.2573488,-0.8573718,0.4457412,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,0.485333,0.2404318,0.8406214,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,0.9706661,0.2404318,0,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,-0.485333,0.2404318,-0.8406214,0.2959976,0.8059414,-0.512683,0.2959976,0.8059414,-0.512683,0.2959976,0.8059414,-0.512683,-0.5919953,0.8059414,0,-0.5919953,0.8059414,0,-0.5919953,0.8059414,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,0,0.01701658,-0.9998552,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,-0.9998552,0.01701658,0,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0,0.01701658,0.9998552,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0,0.9998552,0.01701658,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: -1.776357E-15,35.41337,2.337697,30.38942,-2.337697,30.38942,0,35.41337,2.337697,30.38942,-2.337697,30.38942,2.337697,30.38942,-2.337697,30.38942,0,35.41337,4.030512,36.02705,-4.030511,36.02705,4.030512,45.00903,-4.030511,45.00903,4.030512,45.00903,4.030512,36.02705,-4.030512,45.00903,-4.030512,36.02705,4.030512,36.02705,-4.030511,36.02705,4.030512,45.00903,-4.030511,45.00903,-4.030512,42.01027,-2.337697,54.20516,4.030512,42.01027,2.337697,54.20516,-4.030512,24.5284,4.030512,24.5284,-2.257087,20.94575,2.257087,20.94575,3.909389,2.257087,3.909389,-2.257087,0,4.514174,1.012109,1.012109,-1.012109,1.012109,-3.909389,2.257087,-1.012109,-1.012109,1.012109,-1.012109,0,-4.514174,-3.909389,-2.257087,-2.257087,20.94575,-4.030511,24.52839,2.257087,20.94575,4.030512,24.52839,-4.030512,24.52839,4.030511,24.52839,-2.257087,20.94575,2.257087,20.94575,4.030511,36.02705,-4.030512,36.02705,4.030511,45.00903,-4.030512,45.00903,-2.337697,30.38942,1.776357E-15,35.41337,2.337697,30.38942,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,2.257087,20.94575,-2.257087,20.94575,4.030512,24.5284,-4.030512,24.5284,4.030512,24.52839,2.257087,20.94575,-4.030511,24.52839,-2.257087,20.94575,4.030511,24.52839,2.257087,20.94575,-4.030512,24.52839,-2.257087,20.94575,-4.030512,36.02705,-4.030512,45.00903,4.030512,36.02705,4.030512,45.00903,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,4.030511,36.02705,-4.030512,36.02705,4.030511,45.00903,-4.030512,45.00903,4.030512,42.01027,-4.030512,42.01027,2.337697,54.20516,-2.337697,54.20516,4.030511,42.01027,-4.030511,42.01027,2.337697,54.20516,-2.337697,54.20516,2.337697,30.38942,-2.337697,30.38942,0,35.41337,-2.337697,30.38942,0,35.41337,2.337697,30.38942,1.593872,1.593872,1.593872,-1.593872,-1.593872,1.593872,-1.593872,-1.593872,1.593872,-0.02712225,-1.593872,-0.02712225,1.012109,34.1609,-1.012109,34.1609,-1.593872,-0.02712225,-1.012109,34.1609,1.593872,-0.02712225,1.012109,34.1609,1.593872,-0.02712225,-1.593872,-0.02712225,1.012109,34.1609,-1.012109,34.1609,1.593872,-0.02712225,-1.593872,-0.02712225,1.012109,34.1609,-1.012109,34.1609 + } + UVIndex: *186 { + a: 0,2,1,3,5,4,6,8,7,9,11,10,12,10,11,13,15,14,16,14,15,17,19,18,20,18,19,21,23,22,24,22,23,25,27,26,28,26,27,29,31,30,32,30,31,33,32,31,34,33,31,35,33,34,32,36,30,37,30,36,35,37,36,38,37,35,34,38,35,39,41,40,42,40,41,43,45,44,46,44,45,47,49,48,50,48,49,51,53,52,54,56,55,57,55,56,58,60,59,61,59,60,62,64,63,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,80,79,81,79,80,82,84,83,85,83,84,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,97,99,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *62 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_simple_fall, Model::RootNode + C: "OO",5036926395882399861,0 + + ;Geometry::, Model::Mesh tree_simple_fall + C: "OO",4798470691468877971,5036926395882399861 + + ;Material::leafsFall, Model::Mesh tree_simple_fall + C: "OO",3028,5036926395882399861 + + ;Material::woodBirch, Model::Mesh tree_simple_fall + C: "OO",3050,5036926395882399861 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_fall.fbx.import new file mode 100644 index 0000000..a858307 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_simple_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cx6ulynwcs8nm" +path="res://.godot/imported/tree_simple_fall.fbx-cd9cb739553d7f28b7d9e192db2154f0.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_simple_fall.fbx" +dest_files=["res://.godot/imported/tree_simple_fall.fbx-cd9cb739553d7f28b7d9e192db2154f0.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_small.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_small.fbx new file mode 100644 index 0000000..01d6b95 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_small.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 98 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_small.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_small.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5752241833602904039, "Model::tree_small", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4685732251664309137, "Geometry::", "Mesh" { + Vertices: *360 { + a: 0.4048436,0,0.4048436,-0.4048436,0,0.4048436,0.2570758,2.8575,0.2570758,-0.2570758,2.8575,0.2570758,0.4048436,0,0.4048436,0.4048436,0,-0.4048436,-0.4048436,0,0.4048436,-0.4048436,0,-0.4048436,0.4048436,0,-0.4048436,0.4048436,0,0.4048436,0.2570758,2.8575,-0.2570758,0.2570758,2.8575,0.2570758,-0.4048436,0,-0.4048436,0.4048436,0,-0.4048436,-0.2570758,2.8575,-0.2570758,0.2570758,2.8575,-0.2570758,-0.4048436,0,-0.4048436,-0.2570758,2.8575,-0.2570758,-0.4048436,0,0.4048436,-0.2570758,2.8575,0.2570758,1.773187,6.338249,-1.02375,1.773187,3.450375,-1.02375,1.773187,6.338249,1.02375,1.773187,3.450375,1.02375,0,11.10037,0,1.028448,10.14412,0.593775,0,10.14412,1.18755,0,6.338249,2.0475,-1.773187,6.338249,1.02375,0,10.14412,1.18755,-1.028448,10.14412,0.593775,0,11.10037,0,0,10.14412,1.18755,-1.028448,10.14412,0.593775,0.9929848,2.8575,0.5733,0.9929848,2.8575,-0.5733,0,2.8575,1.1466,0.2570758,2.8575,0.2570758,-0.2570758,2.8575,0.2570758,-0.9929848,2.8575,0.5733,-0.2570758,2.8575,-0.2570758,0.2570758,2.8575,-0.2570758,0,2.8575,-1.1466,-0.9929848,2.8575,-0.5733,0,10.14412,-1.18755,1.028448,10.14412,-0.593775,0,11.10037,0,-1.028448,10.14412,-0.593775,0,11.10037,0,-1.028448,10.14412,0.593775,0,2.8575,-1.1466,0,3.450375,-2.0475,-0.9929848,2.8575,-0.5733,-1.773187,3.450375,-1.02375,0,10.14412,-1.18755,0,11.10037,0,-1.028448,10.14412,-0.593775,1.773187,6.338249,-1.02375,1.773187,6.338249,1.02375,1.028448,10.14412,-0.593775,1.028448,10.14412,0.593775,1.028448,10.14412,-0.593775,1.028448,10.14412,0.593775,0,11.10037,0,1.773187,3.450375,1.02375,0,3.450375,2.0475,1.773187,6.338249,1.02375,0,6.338249,2.0475,0,6.338249,-2.0475,1.773187,6.338249,-1.02375,0,10.14412,-1.18755,1.028448,10.14412,-0.593775,-1.773187,3.450375,-1.02375,-1.773187,6.338249,-1.02375,-1.773187,3.450375,1.02375,-1.773187,6.338249,1.02375,1.773187,3.450375,1.02375,1.773187,3.450375,-1.02375,0.9929848,2.8575,0.5733,0.9929848,2.8575,-0.5733,0,3.450375,2.0475,-1.773187,3.450375,1.02375,0,6.338249,2.0475,-1.773187,6.338249,1.02375,-0.9929848,2.8575,0.5733,-0.9929848,2.8575,-0.5733,-1.773187,3.450375,1.02375,-1.773187,3.450375,-1.02375,-1.773187,6.338249,-1.02375,-1.028448,10.14412,-0.593775,-1.773187,6.338249,1.02375,-1.028448,10.14412,0.593775,1.773187,6.338249,1.02375,0,6.338249,2.0475,1.028448,10.14412,0.593775,0,10.14412,1.18755,1.773187,3.450375,1.02375,0.9929848,2.8575,0.5733,0,3.450375,2.0475,0,2.8575,1.1466,0,3.450375,-2.0475,1.773187,3.450375,-1.02375,0,6.338249,-2.0475,1.773187,6.338249,-1.02375,-1.773187,6.338249,-1.02375,0,6.338249,-2.0475,-1.028448,10.14412,-0.593775,0,10.14412,-1.18755,1.773187,3.450375,-1.02375,0,3.450375,-2.0475,0.9929848,2.8575,-0.5733,0,2.8575,-1.1466,0,3.450375,2.0475,0,2.8575,1.1466,-1.773187,3.450375,1.02375,-0.9929848,2.8575,0.5733,-1.773187,3.450375,-1.02375,0,3.450375,-2.0475,-1.773187,6.338249,-1.02375,0,6.338249,-2.0475 + } + PolygonVertexIndex: *186 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,29,-29,30,28,-30,31,33,-33,34,36,-36,37,35,-37,38,37,-37,39,38,-37,40,38,-40,37,41,-36,42,35,-42,40,42,-42,43,42,-41,39,43,-41,44,46,-46,47,49,-49,50,52,-52,53,51,-53,54,56,-56,57,59,-59,60,58,-60,61,63,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *558 { + a: 0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.3404668,0.7323452,0.5897058,0.3404668,0.7323452,0.5897058,0.3404668,0.7323452,0.5897058,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.3404668,0.7323452,0.5897058,-0.3404668,0.7323452,0.5897058,-0.3404668,0.7323452,0.5897058,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3404668,0.7323452,-0.5897058,0.3404668,0.7323452,-0.5897058,0.3404668,0.7323452,-0.5897058,-0.6809335,0.7323452,0,-0.6809335,0.7323452,0,-0.6809335,0.7323452,0,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3404668,0.7323452,-0.5897058,-0.3404668,0.7323452,-0.5897058,-0.3404668,0.7323452,-0.5897058,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.6809335,0.7323452,0,0.6809335,0.7323452,0,0.6809335,0.7323452,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: 1.593872,-0.08231279,-1.593872,-0.08231279,1.012109,11.18272,-1.012109,11.18272,1.593872,1.593872,1.593872,-1.593872,-1.593872,1.593872,-1.593872,-1.593872,1.593872,-0.08231279,-1.593872,-0.08231279,1.012109,11.18272,-1.012109,11.18272,1.593872,-0.08231279,-1.593872,-0.08231279,1.012109,11.18272,-1.012109,11.18272,-1.593872,-0.08231279,-1.012109,11.18272,1.593872,-0.08231279,1.012109,11.18272,4.030512,24.95374,4.030512,13.58415,-4.030512,24.95374,-4.030512,13.58415,-1.776357E-15,29.75834,2.337697,24.22951,-2.337697,24.22951,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,1.776357E-15,29.75834,2.337697,24.22951,-2.337697,24.22951,3.909389,2.257087,3.909389,-2.257087,0,4.514174,1.012109,1.012109,-1.012109,1.012109,-3.909389,2.257087,-1.012109,-1.012109,1.012109,-1.012109,0,-4.514174,-3.909389,-2.257087,2.337697,24.22951,-2.337697,24.22951,0,29.75834,-2.337697,24.22951,0,29.75834,2.337697,24.22951,-2.257087,9.919273,-4.030511,13.77717,2.257087,9.919273,4.030512,13.77717,-2.337697,24.22951,-1.776357E-15,29.75834,2.337697,24.22951,4.030512,23.14865,-4.030512,23.14865,2.337697,38.41658,-2.337697,38.41658,2.337697,24.22951,-2.337697,24.22951,0,29.75834,4.030512,13.58415,-4.030511,13.58415,4.030512,24.95374,-4.030511,24.95374,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,-4.030512,13.58415,-4.030512,24.95374,4.030512,13.58415,4.030512,24.95374,-4.030512,13.77717,4.030512,13.77717,-2.257087,9.919274,2.257087,9.919274,4.030511,13.58415,-4.030512,13.58415,4.030511,24.95374,-4.030512,24.95374,2.257087,9.919274,-2.257087,9.919274,4.030512,13.77717,-4.030512,13.77717,-4.030512,23.14865,-2.337697,38.41658,4.030512,23.14865,2.337697,38.41658,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,4.030512,13.77717,2.257087,9.919273,-4.030511,13.77717,-2.257087,9.919273,4.030511,13.58415,-4.030512,13.58415,4.030511,24.95374,-4.030512,24.95374,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,-4.030512,13.77717,4.030511,13.77717,-2.257087,9.919273,2.257087,9.919273,4.030511,13.77717,2.257087,9.919273,-4.030512,13.77717,-2.257087,9.919273,4.030512,13.58415,-4.030511,13.58415,4.030512,24.95374,-4.030511,24.95374 + } + UVIndex: *186 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,29,28,30,28,29,31,33,32,34,36,35,37,35,36,38,37,36,39,38,36,40,38,39,37,41,35,42,35,41,40,42,41,43,42,40,39,43,40,44,46,45,47,49,48,50,52,51,53,51,52,54,56,55,57,59,58,60,58,59,61,63,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *62 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_small, Model::RootNode + C: "OO",5752241833602904039,0 + + ;Geometry::, Model::Mesh tree_small + C: "OO",4685732251664309137,5752241833602904039 + + ;Material::woodBark, Model::Mesh tree_small + C: "OO",3046,5752241833602904039 + + ;Material::leafsGreen, Model::Mesh tree_small + C: "OO",3030,5752241833602904039 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_small.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_small.fbx.import new file mode 100644 index 0000000..910678a --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_small.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b8b48h15ycs6c" +path="res://.godot/imported/tree_small.fbx-31bdfa7a2b3147a3178812bd59f6e77e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_small.fbx" +dest_files=["res://.godot/imported/tree_small.fbx-31bdfa7a2b3147a3178812bd59f6e77e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_small_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_small_dark.fbx new file mode 100644 index 0000000..d7a2eb4 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_small_dark.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 196 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_small_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_small_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5194778890706320007, "Model::tree_small_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5157026630067373521, "Geometry::", "Mesh" { + Vertices: *720 { + a: 0.4048436,0,0.4048436,-0.4048436,0,0.4048436,0.2570758,2.8575,0.2570758,-0.2570758,2.8575,0.2570758,0.2570758,2.8575,0.2570758,-0.4048436,0,0.4048436,0.4048436,0,0.4048436,-0.2570758,2.8575,0.2570758,1.773187,6.338249,1.02375,1.773187,3.450375,-1.02375,1.773187,6.338249,-1.02375,1.773187,3.450375,1.02375,0,10.14412,1.18755,1.028448,10.14412,0.593775,0,11.10037,0,0,10.14412,1.18755,-1.773187,6.338249,1.02375,0,6.338249,2.0475,-1.028448,10.14412,0.593775,-1.028448,10.14412,0.593775,0,10.14412,1.18755,0,11.10037,0,0,2.8575,1.1466,0.9929848,2.8575,-0.5733,0.9929848,2.8575,0.5733,0.2570758,2.8575,0.2570758,-0.2570758,2.8575,0.2570758,-0.9929848,2.8575,0.5733,-0.2570758,2.8575,-0.2570758,0.2570758,2.8575,-0.2570758,0,2.8575,-1.1466,-0.9929848,2.8575,-0.5733,0,11.10037,0,1.028448,10.14412,-0.593775,0,10.14412,-1.18755,-1.028448,10.14412,0.593775,0,11.10037,0,-1.028448,10.14412,-0.593775,-0.9929848,2.8575,-0.5733,0,3.450375,-2.0475,0,2.8575,-1.1466,-1.773187,3.450375,-1.02375,-1.028448,10.14412,-0.593775,0,11.10037,0,0,10.14412,-1.18755,0.4048436,0,0.4048436,0.4048436,0,-0.4048436,-0.4048436,0,0.4048436,-0.4048436,0,-0.4048436,-0.4048436,0,0.4048436,0.4048436,0,-0.4048436,0.4048436,0,0.4048436,-0.4048436,0,-0.4048436,1.028448,10.14412,-0.593775,1.773187,6.338249,1.02375,1.773187,6.338249,-1.02375,1.028448,10.14412,0.593775,0,11.10037,0,1.028448,10.14412,0.593775,1.028448,10.14412,-0.593775,1.773187,6.338249,1.02375,0,3.450375,2.0475,1.773187,3.450375,1.02375,0,6.338249,2.0475,0.4048436,0,-0.4048436,0.4048436,0,0.4048436,0.2570758,2.8575,-0.2570758,0.2570758,2.8575,0.2570758,0.2570758,2.8575,-0.2570758,0.4048436,0,0.4048436,0.4048436,0,-0.4048436,0.2570758,2.8575,0.2570758,0,10.14412,-1.18755,1.773187,6.338249,-1.02375,0,6.338249,-2.0475,1.028448,10.14412,-0.593775,-1.773187,3.450375,1.02375,-1.773187,6.338249,-1.02375,-1.773187,3.450375,-1.02375,-1.773187,6.338249,1.02375,0.9929848,2.8575,0.5733,1.773187,3.450375,-1.02375,1.773187,3.450375,1.02375,0.9929848,2.8575,-0.5733,0,6.338249,2.0475,-1.773187,3.450375,1.02375,0,3.450375,2.0475,-1.773187,6.338249,1.02375,-0.4048436,0,-0.4048436,0.4048436,0,-0.4048436,-0.2570758,2.8575,-0.2570758,0.2570758,2.8575,-0.2570758,-0.2570758,2.8575,-0.2570758,0.4048436,0,-0.4048436,-0.4048436,0,-0.4048436,0.2570758,2.8575,-0.2570758,-1.773187,3.450375,1.02375,-0.9929848,2.8575,-0.5733,-0.9929848,2.8575,0.5733,-1.773187,3.450375,-1.02375,-1.773187,6.338249,1.02375,-1.028448,10.14412,-0.593775,-1.773187,6.338249,-1.02375,-1.028448,10.14412,0.593775,1.028448,10.14412,0.593775,0,6.338249,2.0475,1.773187,6.338249,1.02375,0,10.14412,1.18755,0,3.450375,2.0475,0.9929848,2.8575,0.5733,1.773187,3.450375,1.02375,0,2.8575,1.1466,0,6.338249,-2.0475,1.773187,3.450375,-1.02375,0,3.450375,-2.0475,1.773187,6.338249,-1.02375,-1.028448,10.14412,-0.593775,0,6.338249,-2.0475,-1.773187,6.338249,-1.02375,0,10.14412,-1.18755,0.9929848,2.8575,-0.5733,0,3.450375,-2.0475,1.773187,3.450375,-1.02375,0,2.8575,-1.1466,-1.773187,3.450375,1.02375,0,2.8575,1.1466,0,3.450375,2.0475,-0.9929848,2.8575,0.5733,-1.773187,6.338249,-1.02375,0,3.450375,-2.0475,-1.773187,3.450375,-1.02375,0,6.338249,-2.0475,-0.4048436,0,-0.4048436,-0.2570758,2.8575,-0.2570758,-0.4048436,0,0.4048436,-0.2570758,2.8575,0.2570758,-0.4048436,0,0.4048436,-0.2570758,2.8575,-0.2570758,-0.4048436,0,-0.4048436,-0.2570758,2.8575,0.2570758,1.773187,6.338249,-1.02375,1.773187,3.450375,-1.02375,1.773187,6.338249,1.02375,1.773187,3.450375,1.02375,0,11.10037,0,1.028448,10.14412,0.593775,0,10.14412,1.18755,0,6.338249,2.0475,-1.773187,6.338249,1.02375,0,10.14412,1.18755,-1.028448,10.14412,0.593775,0,11.10037,0,0,10.14412,1.18755,-1.028448,10.14412,0.593775,0.9929848,2.8575,0.5733,0.9929848,2.8575,-0.5733,0,2.8575,1.1466,0.2570758,2.8575,0.2570758,-0.2570758,2.8575,0.2570758,-0.9929848,2.8575,0.5733,-0.2570758,2.8575,-0.2570758,0.2570758,2.8575,-0.2570758,0,2.8575,-1.1466,-0.9929848,2.8575,-0.5733,0,10.14412,-1.18755,1.028448,10.14412,-0.593775,0,11.10037,0,-1.028448,10.14412,-0.593775,0,11.10037,0,-1.028448,10.14412,0.593775,0,2.8575,-1.1466,0,3.450375,-2.0475,-0.9929848,2.8575,-0.5733,-1.773187,3.450375,-1.02375,0,10.14412,-1.18755,0,11.10037,0,-1.028448,10.14412,-0.593775,1.773187,6.338249,-1.02375,1.773187,6.338249,1.02375,1.028448,10.14412,-0.593775,1.028448,10.14412,0.593775,1.028448,10.14412,-0.593775,1.028448,10.14412,0.593775,0,11.10037,0,1.773187,3.450375,1.02375,0,3.450375,2.0475,1.773187,6.338249,1.02375,0,6.338249,2.0475,0,6.338249,-2.0475,1.773187,6.338249,-1.02375,0,10.14412,-1.18755,1.028448,10.14412,-0.593775,-1.773187,3.450375,-1.02375,-1.773187,6.338249,-1.02375,-1.773187,3.450375,1.02375,-1.773187,6.338249,1.02375,1.773187,3.450375,1.02375,1.773187,3.450375,-1.02375,0.9929848,2.8575,0.5733,0.9929848,2.8575,-0.5733,0,3.450375,2.0475,-1.773187,3.450375,1.02375,0,6.338249,2.0475,-1.773187,6.338249,1.02375,-0.9929848,2.8575,0.5733,-0.9929848,2.8575,-0.5733,-1.773187,3.450375,1.02375,-1.773187,3.450375,-1.02375,-1.773187,6.338249,-1.02375,-1.028448,10.14412,-0.593775,-1.773187,6.338249,1.02375,-1.028448,10.14412,0.593775,1.773187,6.338249,1.02375,0,6.338249,2.0475,1.028448,10.14412,0.593775,0,10.14412,1.18755,1.773187,3.450375,1.02375,0.9929848,2.8575,0.5733,0,3.450375,2.0475,0,2.8575,1.1466,0,3.450375,-2.0475,1.773187,3.450375,-1.02375,0,6.338249,-2.0475,1.773187,6.338249,-1.02375,-1.773187,6.338249,-1.02375,0,6.338249,-2.0475,-1.028448,10.14412,-0.593775,0,10.14412,-1.18755,1.773187,3.450375,-1.02375,0,3.450375,-2.0475,0.9929848,2.8575,-0.5733,0,2.8575,-1.1466,0,3.450375,2.0475,0,2.8575,1.1466,-1.773187,3.450375,1.02375,-0.9929848,2.8575,0.5733,-1.773187,3.450375,-1.02375,0,3.450375,-2.0475,-1.773187,6.338249,-1.02375,0,6.338249,-2.0475 + } + PolygonVertexIndex: *372 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,9,11,-9,12,14,-14,15,17,-17,16,18,-16,19,21,-21,22,24,-24,23,25,-23,25,26,-23,26,27,-23,26,28,-28,29,25,-24,23,30,-30,30,28,-30,30,31,-29,31,27,-29,32,34,-34,35,37,-37,38,40,-40,39,41,-39,42,44,-44,45,47,-47,48,46,-48,49,51,-51,50,52,-50,53,55,-55,54,56,-54,57,59,-59,60,62,-62,61,63,-61,64,66,-66,67,65,-67,68,70,-70,69,71,-69,72,74,-74,73,75,-73,76,78,-78,77,79,-77,80,82,-82,81,83,-81,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,97,99,-97,100,102,-102,101,103,-101,104,106,-106,105,107,-105,108,110,-110,109,111,-109,112,114,-114,113,115,-113,116,118,-118,117,119,-117,120,122,-122,121,123,-121,124,126,-126,125,127,-125,128,130,-130,129,131,-129,132,134,-134,135,133,-135,136,138,-138,137,139,-137,140,142,-142,143,141,-143,144,146,-146,147,149,-149,150,148,-150,151,153,-153,154,156,-156,157,155,-157,158,157,-157,159,158,-157,160,158,-160,157,161,-156,162,155,-162,160,162,-162,163,162,-161,159,163,-161,164,166,-166,167,169,-169,170,172,-172,173,171,-173,174,176,-176,177,179,-179,180,178,-180,181,183,-183,184,186,-186,187,185,-187,188,190,-190,191,189,-191,192,194,-194,195,193,-195,196,198,-198,199,197,-199,200,202,-202,203,201,-203,204,206,-206,207,205,-207,208,210,-210,211,209,-211,212,214,-214,215,213,-215,216,218,-218,219,217,-219,220,222,-222,223,221,-223,224,226,-226,227,225,-227,228,230,-230,231,229,-231,232,234,-234,235,233,-235,236,238,-238,239,237,-239 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1116 { + a: 0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,-0.05164327,-0.9986656,0,-0.05164327,-0.9986656,0,-0.05164327,-0.9986656,0,-0.05164327,-0.9986656,0,-0.05164327,-0.9986656,0,-0.05164327,-0.9986656,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.3404668,-0.7323452,-0.5897058,-0.3404668,-0.7323452,-0.5897058,-0.3404668,-0.7323452,-0.5897058,0.4906936,-0.1920391,-0.8499063,0.4906936,-0.1920391,-0.8499063,0.4906936,-0.1920391,-0.8499063,0.4906936,-0.1920391,-0.8499063,0.4906936,-0.1920391,-0.8499063,0.4906936,-0.1920391,-0.8499063,0.3404668,-0.7323452,-0.5897058,0.3404668,-0.7323452,-0.5897058,0.3404668,-0.7323452,-0.5897058,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.3404668,-0.7323452,0.5897058,-0.3404668,-0.7323452,0.5897058,-0.3404668,-0.7323452,0.5897058,0.6809335,-0.7323452,0,0.6809335,-0.7323452,0,0.6809335,-0.7323452,0,0.3025162,0.7962008,0.5239735,0.3025162,0.7962008,0.5239735,0.3025162,0.7962008,0.5239735,0.3025162,0.7962008,0.5239735,0.3025162,0.7962008,0.5239735,0.3025162,0.7962008,0.5239735,0.3404668,-0.7323452,0.5897058,0.3404668,-0.7323452,0.5897058,0.3404668,-0.7323452,0.5897058,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.9813873,-0.1920391,0,-0.9813873,-0.1920391,0,-0.9813873,-0.1920391,0,-0.9813873,-0.1920391,0,-0.9813873,-0.1920391,0,-0.9813873,-0.1920391,0,-0.6809335,-0.7323452,0,-0.6809335,-0.7323452,0,-0.6809335,-0.7323452,0,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,-0.9986656,-0.05164327,0,-0.9986656,-0.05164327,0,-0.9986656,-0.05164327,0,-0.9986656,-0.05164327,0,-0.9986656,-0.05164327,0,-0.9986656,-0.05164327,0,-0.4906936,-0.1920391,0.8499063,-0.4906936,-0.1920391,0.8499063,-0.4906936,-0.1920391,0.8499063,-0.4906936,-0.1920391,0.8499063,-0.4906936,-0.1920391,0.8499063,-0.4906936,-0.1920391,0.8499063,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.6050325,0.7962008,0,-0.6050325,0.7962008,0,-0.6050325,0.7962008,0,-0.6050325,0.7962008,0,-0.6050325,0.7962008,0,-0.6050325,0.7962008,0,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,-0.05164327,0.9986656,0,-0.05164327,0.9986656,0,-0.05164327,0.9986656,0,-0.05164327,0.9986656,0,-0.05164327,0.9986656,0,-0.05164327,0.9986656,0.6050325,0.7962008,0,0.6050325,0.7962008,0,0.6050325,0.7962008,0,0.6050325,0.7962008,0,0.6050325,0.7962008,0,0.6050325,0.7962008,0,0.9813873,-0.1920391,0,0.9813873,-0.1920391,0,0.9813873,-0.1920391,0,0.9813873,-0.1920391,0,0.9813873,-0.1920391,0,0.9813873,-0.1920391,0,-0.4906936,-0.1920391,-0.8499063,-0.4906936,-0.1920391,-0.8499063,-0.4906936,-0.1920391,-0.8499063,-0.4906936,-0.1920391,-0.8499063,-0.4906936,-0.1920391,-0.8499063,-0.4906936,-0.1920391,-0.8499063,-0.3025162,0.7962008,-0.5239735,-0.3025162,0.7962008,-0.5239735,-0.3025162,0.7962008,-0.5239735,-0.3025162,0.7962008,-0.5239735,-0.3025162,0.7962008,-0.5239735,-0.3025162,0.7962008,-0.5239735,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,0.4906936,-0.1920391,0.8499063,0.4906936,-0.1920391,0.8499063,0.4906936,-0.1920391,0.8499063,0.4906936,-0.1920391,0.8499063,0.4906936,-0.1920391,0.8499063,0.4906936,-0.1920391,0.8499063,-0.3025162,0.7962008,0.5239735,-0.3025162,0.7962008,0.5239735,-0.3025162,0.7962008,0.5239735,-0.3025162,0.7962008,0.5239735,-0.3025162,0.7962008,0.5239735,-0.3025162,0.7962008,0.5239735,0.3025162,0.7962008,-0.5239735,0.3025162,0.7962008,-0.5239735,0.3025162,0.7962008,-0.5239735,0.3025162,0.7962008,-0.5239735,0.3025162,0.7962008,-0.5239735,0.3025162,0.7962008,-0.5239735,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,0.9986656,-0.05164327,0,0.9986656,-0.05164327,0,0.9986656,-0.05164327,0,0.9986656,-0.05164327,0,0.9986656,-0.05164327,0,0.9986656,-0.05164327,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.3404668,0.7323452,0.5897058,0.3404668,0.7323452,0.5897058,0.3404668,0.7323452,0.5897058,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.3404668,0.7323452,0.5897058,-0.3404668,0.7323452,0.5897058,-0.3404668,0.7323452,0.5897058,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3404668,0.7323452,-0.5897058,0.3404668,0.7323452,-0.5897058,0.3404668,0.7323452,-0.5897058,-0.6809335,0.7323452,0,-0.6809335,0.7323452,0,-0.6809335,0.7323452,0,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3404668,0.7323452,-0.5897058,-0.3404668,0.7323452,-0.5897058,-0.3404668,0.7323452,-0.5897058,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.6809335,0.7323452,0,0.6809335,0.7323452,0,0.6809335,0.7323452,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *480 { + a: 1.593872,-0.08231279,-1.593872,-0.08231279,1.012109,11.18272,-1.012109,11.18272,1.012109,11.18272,-1.593872,-0.08231279,1.593872,-0.08231279,-1.012109,11.18272,-4.030512,24.95374,4.030512,13.58415,4.030512,24.95374,-4.030512,13.58415,-2.337697,24.22951,2.337697,24.22951,-1.776357E-15,29.75834,2.337697,38.41658,-4.030511,23.14865,4.030511,23.14865,-2.337697,38.41658,-2.337697,24.22951,2.337697,24.22951,0,29.75834,0,4.514174,3.909389,-2.257087,3.909389,2.257087,1.012109,1.012109,-1.012109,1.012109,-3.909389,2.257087,-1.012109,-1.012109,1.012109,-1.012109,0,-4.514174,-3.909389,-2.257087,0,29.75834,-2.337697,24.22951,2.337697,24.22951,2.337697,24.22951,0,29.75834,-2.337697,24.22951,2.257087,9.919273,-4.030511,13.77717,-2.257087,9.919273,4.030512,13.77717,2.337697,24.22951,-1.776357E-15,29.75834,-2.337697,24.22951,1.593872,1.593872,1.593872,-1.593872,-1.593872,1.593872,-1.593872,-1.593872,-1.593872,1.593872,1.593872,-1.593872,1.593872,1.593872,-1.593872,-1.593872,2.337697,38.41658,-4.030512,23.14865,4.030512,23.14865,-2.337697,38.41658,0,29.75834,-2.337697,24.22951,2.337697,24.22951,4.030512,24.95374,-4.030511,13.58415,4.030512,13.58415,-4.030511,24.95374,1.593872,-0.08231279,-1.593872,-0.08231279,1.012109,11.18272,-1.012109,11.18272,1.012109,11.18272,-1.593872,-0.08231279,1.593872,-0.08231279,-1.012109,11.18272,2.337697,38.41658,-4.030511,23.14865,4.030511,23.14865,-2.337697,38.41658,4.030512,13.58415,-4.030512,24.95374,-4.030512,13.58415,4.030512,24.95374,-2.257087,9.919274,4.030512,13.77717,-4.030512,13.77717,2.257087,9.919274,4.030511,24.95374,-4.030512,13.58415,4.030511,13.58415,-4.030512,24.95374,1.593872,-0.08231279,-1.593872,-0.08231279,1.012109,11.18272,-1.012109,11.18272,1.012109,11.18272,-1.593872,-0.08231279,1.593872,-0.08231279,-1.012109,11.18272,4.030512,13.77717,-2.257087,9.919274,2.257087,9.919274,-4.030512,13.77717,4.030512,23.14865,-2.337697,38.41658,-4.030512,23.14865,2.337697,38.41658,2.337697,38.41658,-4.030511,23.14865,4.030511,23.14865,-2.337697,38.41658,-4.030511,13.77717,2.257087,9.919273,4.030512,13.77717,-2.257087,9.919273,4.030511,24.95374,-4.030512,13.58415,4.030511,13.58415,-4.030512,24.95374,2.337697,38.41658,-4.030511,23.14865,4.030511,23.14865,-2.337697,38.41658,-2.257087,9.919273,4.030511,13.77717,-4.030512,13.77717,2.257087,9.919273,-4.030512,13.77717,2.257087,9.919273,4.030511,13.77717,-2.257087,9.919273,4.030512,24.95374,-4.030511,13.58415,4.030512,13.58415,-4.030511,24.95374,-1.593872,-0.08231279,-1.012109,11.18272,1.593872,-0.08231279,1.012109,11.18272,1.593872,-0.08231279,-1.012109,11.18272,-1.593872,-0.08231279,1.012109,11.18272,4.030512,24.95374,4.030512,13.58415,-4.030512,24.95374,-4.030512,13.58415,-1.776357E-15,29.75834,2.337697,24.22951,-2.337697,24.22951,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,0,29.75834,2.337697,24.22951,-2.337697,24.22951,3.909389,2.257087,3.909389,-2.257087,0,4.514174,1.012109,1.012109,-1.012109,1.012109,-3.909389,2.257087,-1.012109,-1.012109,1.012109,-1.012109,0,-4.514174,-3.909389,-2.257087,2.337697,24.22951,-2.337697,24.22951,0,29.75834,-2.337697,24.22951,0,29.75834,2.337697,24.22951,-2.257087,9.919273,-4.030511,13.77717,2.257087,9.919273,4.030512,13.77717,-2.337697,24.22951,-1.776357E-15,29.75834,2.337697,24.22951,4.030512,23.14865,-4.030512,23.14865,2.337697,38.41658,-2.337697,38.41658,2.337697,24.22951,-2.337697,24.22951,0,29.75834,4.030512,13.58415,-4.030511,13.58415,4.030512,24.95374,-4.030511,24.95374,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,-4.030512,13.58415,-4.030512,24.95374,4.030512,13.58415,4.030512,24.95374,-4.030512,13.77717,4.030512,13.77717,-2.257087,9.919274,2.257087,9.919274,4.030511,13.58415,-4.030512,13.58415,4.030511,24.95374,-4.030512,24.95374,2.257087,9.919274,-2.257087,9.919274,4.030512,13.77717,-4.030512,13.77717,-4.030512,23.14865,-2.337697,38.41658,4.030512,23.14865,2.337697,38.41658,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,4.030512,13.77717,2.257087,9.919273,-4.030511,13.77717,-2.257087,9.919273,4.030511,13.58415,-4.030512,13.58415,4.030511,24.95374,-4.030512,24.95374,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,-4.030512,13.77717,4.030511,13.77717,-2.257087,9.919273,2.257087,9.919273,4.030511,13.77717,2.257087,9.919273,-4.030512,13.77717,-2.257087,9.919273,4.030512,13.58415,-4.030511,13.58415,4.030512,24.95374,-4.030511,24.95374 + } + UVIndex: *372 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,9,11,8,12,14,13,15,17,16,16,18,15,19,21,20,22,24,23,23,25,22,25,26,22,26,27,22,26,28,27,29,25,23,23,30,29,30,28,29,30,31,28,31,27,28,32,34,33,35,37,36,38,40,39,39,41,38,42,44,43,45,47,46,48,46,47,49,51,50,50,52,49,53,55,54,54,56,53,57,59,58,60,62,61,61,63,60,64,66,65,67,65,66,68,70,69,69,71,68,72,74,73,73,75,72,76,78,77,77,79,76,80,82,81,81,83,80,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,97,99,96,100,102,101,101,103,100,104,106,105,105,107,104,108,110,109,109,111,108,112,114,113,113,115,112,116,118,117,117,119,116,120,122,121,121,123,120,124,126,125,125,127,124,128,130,129,129,131,128,132,134,133,135,133,134,136,138,137,137,139,136,140,142,141,143,141,142,144,146,145,147,149,148,150,148,149,151,153,152,154,156,155,157,155,156,158,157,156,159,158,156,160,158,159,157,161,155,162,155,161,160,162,161,163,162,160,159,163,160,164,166,165,167,169,168,170,172,171,173,171,172,174,176,175,177,179,178,180,178,179,181,183,182,184,186,185,187,185,186,188,190,189,191,189,190,192,194,193,195,193,194,196,198,197,199,197,198,200,202,201,203,201,202,204,206,205,207,205,206,208,210,209,211,209,210,212,214,213,215,213,214,216,218,217,219,217,218,220,222,221,223,221,222,224,226,225,227,225,226,228,230,229,231,229,230,232,234,233,235,233,234,236,238,237,239,237,238 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *124 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_small_dark, Model::RootNode + C: "OO",5194778890706320007,0 + + ;Geometry::, Model::Mesh tree_small_dark + C: "OO",5157026630067373521,5194778890706320007 + + ;Material::woodBarkDark, Model::Mesh tree_small_dark + C: "OO",3048,5194778890706320007 + + ;Material::leafsDark, Model::Mesh tree_small_dark + C: "OO",3026,5194778890706320007 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_small_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_small_dark.fbx.import new file mode 100644 index 0000000..b86c136 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_small_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dbjie3melu1gs" +path="res://.godot/imported/tree_small_dark.fbx-81d16f0e058339a716c2fa4c5dee735f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_small_dark.fbx" +dest_files=["res://.godot/imported/tree_small_dark.fbx-81d16f0e058339a716c2fa4c5dee735f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_small_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_small_fall.fbx new file mode 100644 index 0000000..b9d1256 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_small_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 283 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_small_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_small_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5301577516867081879, "Model::tree_small_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4690764315167522422, "Geometry::", "Mesh" { + Vertices: *360 { + a: 0.4048436,0,0.4048436,-0.4048436,0,0.4048436,0.2570758,2.8575,0.2570758,-0.2570758,2.8575,0.2570758,0.4048436,0,0.4048436,0.4048436,0,-0.4048436,-0.4048436,0,0.4048436,-0.4048436,0,-0.4048436,0.4048436,0,-0.4048436,0.4048436,0,0.4048436,0.2570758,2.8575,-0.2570758,0.2570758,2.8575,0.2570758,-0.4048436,0,-0.4048436,0.4048436,0,-0.4048436,-0.2570758,2.8575,-0.2570758,0.2570758,2.8575,-0.2570758,-0.4048436,0,-0.4048436,-0.2570758,2.8575,-0.2570758,-0.4048436,0,0.4048436,-0.2570758,2.8575,0.2570758,1.773187,6.338249,-1.02375,1.773187,3.450375,-1.02375,1.773187,6.338249,1.02375,1.773187,3.450375,1.02375,0,11.10037,0,1.028448,10.14412,0.593775,0,10.14412,1.18755,0,6.338249,2.0475,-1.773187,6.338249,1.02375,0,10.14412,1.18755,-1.028448,10.14412,0.593775,0,11.10037,0,0,10.14412,1.18755,-1.028448,10.14412,0.593775,0.9929848,2.8575,0.5733,0.9929848,2.8575,-0.5733,0,2.8575,1.1466,0.2570758,2.8575,0.2570758,-0.2570758,2.8575,0.2570758,-0.9929848,2.8575,0.5733,-0.2570758,2.8575,-0.2570758,0.2570758,2.8575,-0.2570758,0,2.8575,-1.1466,-0.9929848,2.8575,-0.5733,0,10.14412,-1.18755,1.028448,10.14412,-0.593775,0,11.10037,0,-1.028448,10.14412,-0.593775,0,11.10037,0,-1.028448,10.14412,0.593775,0,2.8575,-1.1466,0,3.450375,-2.0475,-0.9929848,2.8575,-0.5733,-1.773187,3.450375,-1.02375,0,10.14412,-1.18755,0,11.10037,0,-1.028448,10.14412,-0.593775,1.773187,6.338249,-1.02375,1.773187,6.338249,1.02375,1.028448,10.14412,-0.593775,1.028448,10.14412,0.593775,1.028448,10.14412,-0.593775,1.028448,10.14412,0.593775,0,11.10037,0,1.773187,3.450375,1.02375,0,3.450375,2.0475,1.773187,6.338249,1.02375,0,6.338249,2.0475,0,6.338249,-2.0475,1.773187,6.338249,-1.02375,0,10.14412,-1.18755,1.028448,10.14412,-0.593775,-1.773187,3.450375,-1.02375,-1.773187,6.338249,-1.02375,-1.773187,3.450375,1.02375,-1.773187,6.338249,1.02375,1.773187,3.450375,1.02375,1.773187,3.450375,-1.02375,0.9929848,2.8575,0.5733,0.9929848,2.8575,-0.5733,0,3.450375,2.0475,-1.773187,3.450375,1.02375,0,6.338249,2.0475,-1.773187,6.338249,1.02375,-0.9929848,2.8575,0.5733,-0.9929848,2.8575,-0.5733,-1.773187,3.450375,1.02375,-1.773187,3.450375,-1.02375,-1.773187,6.338249,-1.02375,-1.028448,10.14412,-0.593775,-1.773187,6.338249,1.02375,-1.028448,10.14412,0.593775,1.773187,6.338249,1.02375,0,6.338249,2.0475,1.028448,10.14412,0.593775,0,10.14412,1.18755,1.773187,3.450375,1.02375,0.9929848,2.8575,0.5733,0,3.450375,2.0475,0,2.8575,1.1466,0,3.450375,-2.0475,1.773187,3.450375,-1.02375,0,6.338249,-2.0475,1.773187,6.338249,-1.02375,-1.773187,6.338249,-1.02375,0,6.338249,-2.0475,-1.028448,10.14412,-0.593775,0,10.14412,-1.18755,1.773187,3.450375,-1.02375,0,3.450375,-2.0475,0.9929848,2.8575,-0.5733,0,2.8575,-1.1466,0,3.450375,2.0475,0,2.8575,1.1466,-1.773187,3.450375,1.02375,-0.9929848,2.8575,0.5733,-1.773187,3.450375,-1.02375,0,3.450375,-2.0475,-1.773187,6.338249,-1.02375,0,6.338249,-2.0475 + } + PolygonVertexIndex: *186 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,29,-29,30,28,-30,31,33,-33,34,36,-36,37,35,-37,38,37,-37,39,38,-37,40,38,-40,37,41,-36,42,35,-42,40,42,-42,43,42,-41,39,43,-41,44,46,-46,47,49,-49,50,52,-52,53,51,-53,54,56,-56,57,59,-59,60,58,-60,61,63,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,82,-82,83,81,-83,84,86,-86,87,85,-87,88,90,-90,91,89,-91,92,94,-94,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *558 { + a: 0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,0.05164327,0.9986656,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0.9986656,0.05164327,0,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,0,0.05164327,-0.9986656,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,-0.9986656,0.05164327,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0.3404668,0.7323452,0.5897058,0.3404668,0.7323452,0.5897058,0.3404668,0.7323452,0.5897058,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.4906936,0.1920391,0.8499063,-0.3404668,0.7323452,0.5897058,-0.3404668,0.7323452,0.5897058,-0.3404668,0.7323452,0.5897058,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.3404668,0.7323452,-0.5897058,0.3404668,0.7323452,-0.5897058,0.3404668,0.7323452,-0.5897058,-0.6809335,0.7323452,0,-0.6809335,0.7323452,0,-0.6809335,0.7323452,0,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,-0.5239735,-0.3404668,0.7323452,-0.5897058,-0.3404668,0.7323452,-0.5897058,-0.3404668,0.7323452,-0.5897058,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.9813873,0.1920391,0,0.6809335,0.7323452,0,0.6809335,0.7323452,0,0.6809335,0.7323452,0,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.5,0,0.8660254,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,0.4906936,0.1920391,-0.8499063,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,0.6050325,-0.7962008,0,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.5,0,0.8660254,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.6050325,-0.7962008,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,-0.9813873,0.1920391,0,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.4906936,0.1920391,0.8499063,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.3025162,-0.7962008,0.5239735,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,0.5,0,-0.8660254,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,-0.4906936,0.1920391,-0.8499063,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,0.3025162,-0.7962008,-0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.3025162,-0.7962008,0.5239735,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254,-0.5,0,-0.8660254 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *240 { + a: 1.593872,-0.08231279,-1.593872,-0.08231279,1.012109,11.18272,-1.012109,11.18272,1.593872,1.593872,1.593872,-1.593872,-1.593872,1.593872,-1.593872,-1.593872,1.593872,-0.08231279,-1.593872,-0.08231279,1.012109,11.18272,-1.012109,11.18272,1.593872,-0.08231279,-1.593872,-0.08231279,1.012109,11.18272,-1.012109,11.18272,-1.593872,-0.08231279,-1.012109,11.18272,1.593872,-0.08231279,1.012109,11.18272,4.030512,24.95374,4.030512,13.58415,-4.030512,24.95374,-4.030512,13.58415,-1.776357E-15,29.75834,2.337697,24.22951,-2.337697,24.22951,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,1.776357E-15,29.75834,2.337697,24.22951,-2.337697,24.22951,3.909389,2.257087,3.909389,-2.257087,0,4.514174,1.012109,1.012109,-1.012109,1.012109,-3.909389,2.257087,-1.012109,-1.012109,1.012109,-1.012109,0,-4.514174,-3.909389,-2.257087,2.337697,24.22951,-2.337697,24.22951,0,29.75834,-2.337697,24.22951,0,29.75834,2.337697,24.22951,-2.257087,9.919273,-4.030511,13.77717,2.257087,9.919273,4.030512,13.77717,-2.337697,24.22951,-1.776357E-15,29.75834,2.337697,24.22951,4.030512,23.14865,-4.030512,23.14865,2.337697,38.41658,-2.337697,38.41658,2.337697,24.22951,-2.337697,24.22951,0,29.75834,4.030512,13.58415,-4.030511,13.58415,4.030512,24.95374,-4.030511,24.95374,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,-4.030512,13.58415,-4.030512,24.95374,4.030512,13.58415,4.030512,24.95374,-4.030512,13.77717,4.030512,13.77717,-2.257087,9.919274,2.257087,9.919274,4.030511,13.58415,-4.030512,13.58415,4.030511,24.95374,-4.030512,24.95374,2.257087,9.919274,-2.257087,9.919274,4.030512,13.77717,-4.030512,13.77717,-4.030512,23.14865,-2.337697,38.41658,4.030512,23.14865,2.337697,38.41658,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,4.030512,13.77717,2.257087,9.919273,-4.030511,13.77717,-2.257087,9.919273,4.030511,13.58415,-4.030512,13.58415,4.030511,24.95374,-4.030512,24.95374,4.030511,23.14865,-4.030511,23.14865,2.337697,38.41658,-2.337697,38.41658,-4.030512,13.77717,4.030511,13.77717,-2.257087,9.919273,2.257087,9.919273,4.030511,13.77717,2.257087,9.919273,-4.030512,13.77717,-2.257087,9.919273,4.030512,13.58415,-4.030511,13.58415,4.030512,24.95374,-4.030511,24.95374 + } + UVIndex: *186 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,29,28,30,28,29,31,33,32,34,36,35,37,35,36,38,37,36,39,38,36,40,38,39,37,41,35,42,35,41,40,42,41,43,42,40,39,43,40,44,46,45,47,49,48,50,52,51,53,51,52,54,56,55,57,59,58,60,58,59,61,63,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,82,81,83,81,82,84,86,85,87,85,86,88,90,89,91,89,90,92,94,93,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *62 { + a: 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_small_fall, Model::RootNode + C: "OO",5301577516867081879,0 + + ;Geometry::, Model::Mesh tree_small_fall + C: "OO",4690764315167522422,5301577516867081879 + + ;Material::woodBirch, Model::Mesh tree_small_fall + C: "OO",3050,5301577516867081879 + + ;Material::leafsFall, Model::Mesh tree_small_fall + C: "OO",3028,5301577516867081879 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_small_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_small_fall.fbx.import new file mode 100644 index 0000000..0f1fe30 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_small_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://e5ftp13i32be" +path="res://.godot/imported/tree_small_fall.fbx-dc73c538929a8613e790f1cd7ae8965e.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_small_fall.fbx" +dest_files=["res://.godot/imported/tree_small_fall.fbx-dc73c538929a8613e790f1cd7ae8965e.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_tall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall.fbx new file mode 100644 index 0000000..1b403f2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 386 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_tall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_tall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4870005356917966053, "Model::tree_tall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5398519260213182746, "Geometry::", "Mesh" { + Vertices: *396 { + a: 0,3.374208,-1.39872,1.211327,3.374208,-0.69936,0,6.639115,-2.306995,1.997916,6.639115,-1.153498,0,2.899837,-0.839232,0,3.374208,-1.39872,-0.7267962,2.899837,-0.419616,-1.211327,3.374208,-0.69936,-1.211327,3.374208,-0.69936,0,3.374208,-1.39872,-1.997916,6.639115,-1.153498,0,6.639115,-2.306995,1.211327,3.374208,0.69936,1.211327,3.374208,-0.69936,0.7267962,2.899837,0.419616,0.7267962,2.899837,-0.419616,1.997916,6.639115,-1.153498,1.997916,6.639115,1.153498,1.08939,16.0998,-0.6289598,1.08939,16.0998,0.6289598,1.211327,3.374208,0.69936,0,3.374208,1.39872,1.997916,6.639115,1.153498,0,6.639115,2.306995,0,6.639115,-2.306995,1.997916,6.639115,-1.153498,-2.887646E-14,16.0998,-1.25792,1.08939,16.0998,-0.6289598,-0.7267962,2.899837,0.419616,-0.7267962,2.899837,-0.419616,-1.211327,3.374208,0.69936,-1.211327,3.374208,-0.69936,1.211327,3.374208,0.69936,0.7267962,2.899837,0.419616,0,3.374208,1.39872,0,2.899837,0.839232,0,3.374208,1.39872,0,2.899837,0.839232,-1.211327,3.374208,0.69936,-0.7267962,2.899837,0.419616,-1.997916,6.639115,-1.153498,0,6.639115,-2.306995,-1.08939,16.0998,-0.6289598,-2.887646E-14,16.0998,-1.25792,0,3.374208,1.39872,-1.211327,3.374208,0.69936,0,6.639115,2.306995,-1.997916,6.639115,1.153498,1.997916,6.639115,-1.153498,1.211327,3.374208,-0.69936,1.997916,6.639115,1.153498,1.211327,3.374208,0.69936,1.997916,6.639115,1.153498,0,6.639115,2.306995,1.08939,16.0998,0.6289598,-2.887646E-14,16.0998,1.25792,-1.997916,6.639115,-1.153498,-1.997916,6.639115,1.153498,-1.211327,3.374208,-0.69936,-1.211327,3.374208,0.69936,-1.997916,6.639115,-1.153498,-1.08939,16.0998,-0.6289598,-1.997916,6.639115,1.153498,-1.08939,16.0998,0.6289598,-1.08939,16.0998,-0.6289598,-2.887646E-14,16.0998,-1.25792,-0.5836952,16.87719,-0.3369966,0,16.87719,-0.6739933,-2.887646E-14,16.0998,1.25792,-1.08939,16.0998,0.6289598,0,16.87719,0.6739933,-0.5836952,16.87719,0.3369966,-2.887646E-14,16.0998,-1.25792,1.08939,16.0998,-0.6289598,0,16.87719,-0.6739933,0.5836952,16.87719,-0.3369966,0.7267962,2.899837,0.419616,0.7267962,2.899837,-0.419616,0,2.899837,0.839232,0.2964596,2.899837,0.2964596,-0.2964596,2.899837,0.2964596,-0.7267962,2.899837,0.419616,-0.2964596,2.899837,-0.2964596,0.2964596,2.899837,-0.2964596,0,2.899837,-0.839232,-0.7267962,2.899837,-0.419616,0,6.639115,2.306995,-1.997916,6.639115,1.153498,-2.887646E-14,16.0998,1.25792,-1.08939,16.0998,0.6289598,0.5836952,16.87719,-0.3369966,0.5836952,16.87719,0.3369966,0,16.87719,-0.6739933,0,16.87719,0.6739933,-0.5836952,16.87719,-0.3369966,-0.5836952,16.87719,0.3369966,1.08939,16.0998,-0.6289598,1.08939,16.0998,0.6289598,0.5836952,16.87719,-0.3369966,0.5836952,16.87719,0.3369966,1.211327,3.374208,-0.69936,0,3.374208,-1.39872,0.7267962,2.899837,-0.419616,0,2.899837,-0.839232,1.08939,16.0998,0.6289598,-2.887646E-14,16.0998,1.25792,0.5836952,16.87719,0.3369966,0,16.87719,0.6739933,-1.08939,16.0998,-0.6289598,-0.5836952,16.87719,-0.3369966,-1.08939,16.0998,0.6289598,-0.5836952,16.87719,0.3369966,-0.4668656,0,-0.4668656,0.4668656,0,-0.4668656,-0.2964596,2.899837,-0.2964596,0.2964596,2.899837,-0.2964596,-0.4668656,0,-0.4668656,-0.2964596,2.899837,-0.2964596,-0.4668656,0,0.4668656,-0.2964596,2.899837,0.2964596,0.4668656,0,0.4668656,-0.4668656,0,0.4668656,0.2964596,2.899837,0.2964596,-0.2964596,2.899837,0.2964596,0.4668656,0,-0.4668656,0.4668656,0,0.4668656,0.2964596,2.899837,-0.2964596,0.2964596,2.899837,0.2964596,0.4668656,0,0.4668656,0.4668656,0,-0.4668656,-0.4668656,0,0.4668656,-0.4668656,0,-0.4668656 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,79,-79,81,80,-79,82,80,-82,79,83,-78,84,77,-84,82,84,-84,85,84,-83,81,85,-83,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,93,-93,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: 0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: 2.753386,14.03176,-2.753386,14.03176,4.541329,27.25351,-4.541328,27.25351,-1.652032,10.03147,-2.753386,12.70109,1.652031,10.03147,2.753386,12.70109,2.753386,14.03176,-2.753386,14.03176,4.541328,27.25351,-4.541329,27.25351,-2.753386,12.70109,2.753386,12.70109,-1.652032,10.03147,1.652032,10.03147,4.541329,25.26664,-4.541329,25.26664,2.476219,62.68477,-2.476219,62.68477,2.753386,14.03176,-2.753386,14.03176,4.541328,27.25351,-4.541329,27.25351,4.541329,25.26664,-4.541328,25.26664,2.476219,62.68477,-2.476219,62.68477,1.652032,10.03147,-1.652032,10.03147,2.753386,12.70109,-2.753386,12.70109,2.753386,12.70109,1.652031,10.03147,-2.753386,12.70109,-1.652032,10.03147,2.753386,12.70109,1.652032,10.03147,-2.753386,12.70109,-1.652031,10.03147,4.541328,25.26664,-4.541329,25.26664,2.476219,62.68477,-2.476219,62.68477,2.753386,14.03176,-2.753386,14.03176,4.541329,27.25351,-4.541328,27.25351,4.541329,27.25351,2.753386,14.03176,-4.541329,27.25351,-2.753386,14.03176,4.541328,25.26664,-4.541329,25.26664,2.476219,62.68477,-2.476219,62.68477,-4.541329,27.25351,4.541329,27.25351,-2.753386,14.03176,2.753386,14.03176,-4.541329,25.26664,-2.476219,62.68477,4.541329,25.26664,2.476219,62.68477,2.476219,50.79389,-2.47622,50.79389,1.326758,54.44506,-1.326759,54.44506,2.47622,50.79389,-2.476219,50.79389,1.326759,54.44506,-1.326758,54.44506,2.47622,50.79389,-2.476219,50.79389,1.326759,54.44506,-1.326758,54.44506,2.861402,1.652032,2.861402,-1.652032,0,3.304063,1.167164,1.167164,-1.167164,1.167164,-2.861402,1.652032,-1.167164,-1.167164,1.167164,-1.167164,0,-3.304063,-2.861402,-1.652032,4.541329,25.26664,-4.541328,25.26664,2.476219,62.68477,-2.476219,62.68477,-2.298012,-1.326759,-2.298012,1.326759,0,-2.653517,0,2.653517,2.298012,-1.326759,2.298012,1.326759,2.476219,50.79389,-2.476219,50.79389,1.326759,54.44506,-1.326759,54.44506,-2.753386,12.70109,2.753386,12.70109,-1.652031,10.03147,1.652032,10.03147,2.476219,50.79389,-2.47622,50.79389,1.326758,54.44506,-1.326759,54.44506,-2.476219,50.79389,-1.326759,54.44506,2.476219,50.79389,1.326759,54.44506,1.838053,-0.1078254,-1.838053,-0.1078254,1.167164,11.32855,-1.167164,11.32855,-1.838053,-0.1078254,-1.167164,11.32855,1.838053,-0.1078254,1.167164,11.32855,1.838053,-0.1078254,-1.838053,-0.1078254,1.167164,11.32855,-1.167164,11.32855,1.838053,-0.1078254,-1.838053,-0.1078254,1.167164,11.32855,-1.167164,11.32855,1.838053,1.838053,1.838053,-1.838053,-1.838053,1.838053,-1.838053,-1.838053 + } + UVIndex: *216 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,79,78,81,80,78,82,80,81,79,83,77,84,77,83,82,84,83,85,84,82,81,85,82,86,88,87,89,87,88,90,92,91,93,91,92,94,93,92,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_tall, Model::RootNode + C: "OO",4870005356917966053,0 + + ;Geometry::, Model::Mesh tree_tall + C: "OO",5398519260213182746,4870005356917966053 + + ;Material::leafsGreen, Model::Mesh tree_tall + C: "OO",3030,4870005356917966053 + + ;Material::woodBark, Model::Mesh tree_tall + C: "OO",3046,4870005356917966053 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_tall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall.fbx.import new file mode 100644 index 0000000..4e0841e --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://ba4q2fd3cayq" +path="res://.godot/imported/tree_tall.fbx-1b04d6ed7f7eee806efbd7446db8eb0f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_tall.fbx" +dest_files=["res://.godot/imported/tree_tall.fbx-1b04d6ed7f7eee806efbd7446db8eb0f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_dark.fbx new file mode 100644 index 0000000..25d7e46 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_dark.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 474 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_tall_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_tall_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4857783638438778332, "Model::tree_tall_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5336683971783893751, "Geometry::", "Mesh" { + Vertices: *396 { + a: 0,3.374208,-1.39872,1.211327,3.374208,-0.69936,0,6.639115,-2.306995,1.997916,6.639115,-1.153498,0,2.899837,-0.839232,0,3.374208,-1.39872,-0.7267962,2.899837,-0.419616,-1.211327,3.374208,-0.69936,-1.211327,3.374208,-0.69936,0,3.374208,-1.39872,-1.997916,6.639115,-1.153498,0,6.639115,-2.306995,1.211327,3.374208,0.69936,1.211327,3.374208,-0.69936,0.7267962,2.899837,0.419616,0.7267962,2.899837,-0.419616,1.997916,6.639115,-1.153498,1.997916,6.639115,1.153498,1.08939,16.0998,-0.6289598,1.08939,16.0998,0.6289598,1.211327,3.374208,0.69936,0,3.374208,1.39872,1.997916,6.639115,1.153498,0,6.639115,2.306995,0,6.639115,-2.306995,1.997916,6.639115,-1.153498,-2.887646E-14,16.0998,-1.25792,1.08939,16.0998,-0.6289598,-0.7267962,2.899837,0.419616,-0.7267962,2.899837,-0.419616,-1.211327,3.374208,0.69936,-1.211327,3.374208,-0.69936,1.211327,3.374208,0.69936,0.7267962,2.899837,0.419616,0,3.374208,1.39872,0,2.899837,0.839232,0,3.374208,1.39872,0,2.899837,0.839232,-1.211327,3.374208,0.69936,-0.7267962,2.899837,0.419616,-1.997916,6.639115,-1.153498,0,6.639115,-2.306995,-1.08939,16.0998,-0.6289598,-2.887646E-14,16.0998,-1.25792,0,3.374208,1.39872,-1.211327,3.374208,0.69936,0,6.639115,2.306995,-1.997916,6.639115,1.153498,1.997916,6.639115,-1.153498,1.211327,3.374208,-0.69936,1.997916,6.639115,1.153498,1.211327,3.374208,0.69936,1.997916,6.639115,1.153498,0,6.639115,2.306995,1.08939,16.0998,0.6289598,-2.887646E-14,16.0998,1.25792,-1.997916,6.639115,-1.153498,-1.997916,6.639115,1.153498,-1.211327,3.374208,-0.69936,-1.211327,3.374208,0.69936,-1.997916,6.639115,-1.153498,-1.08939,16.0998,-0.6289598,-1.997916,6.639115,1.153498,-1.08939,16.0998,0.6289598,-1.08939,16.0998,-0.6289598,-2.887646E-14,16.0998,-1.25792,-0.5836952,16.87719,-0.3369966,0,16.87719,-0.6739933,-2.887646E-14,16.0998,1.25792,-1.08939,16.0998,0.6289598,0,16.87719,0.6739933,-0.5836952,16.87719,0.3369966,-2.887646E-14,16.0998,-1.25792,1.08939,16.0998,-0.6289598,0,16.87719,-0.6739933,0.5836952,16.87719,-0.3369966,0.7267962,2.899837,0.419616,0.7267962,2.899837,-0.419616,0,2.899837,0.839232,0.2964596,2.899837,0.2964596,-0.2964596,2.899837,0.2964596,-0.7267962,2.899837,0.419616,-0.2964596,2.899837,-0.2964596,0.2964596,2.899837,-0.2964596,0,2.899837,-0.839232,-0.7267962,2.899837,-0.419616,0,6.639115,2.306995,-1.997916,6.639115,1.153498,-2.887646E-14,16.0998,1.25792,-1.08939,16.0998,0.6289598,0.5836952,16.87719,-0.3369966,0.5836952,16.87719,0.3369966,0,16.87719,-0.6739933,0,16.87719,0.6739933,-0.5836952,16.87719,-0.3369966,-0.5836952,16.87719,0.3369966,1.08939,16.0998,-0.6289598,1.08939,16.0998,0.6289598,0.5836952,16.87719,-0.3369966,0.5836952,16.87719,0.3369966,1.211327,3.374208,-0.69936,0,3.374208,-1.39872,0.7267962,2.899837,-0.419616,0,2.899837,-0.839232,1.08939,16.0998,0.6289598,-2.887646E-14,16.0998,1.25792,0.5836952,16.87719,0.3369966,0,16.87719,0.6739933,-1.08939,16.0998,-0.6289598,-0.5836952,16.87719,-0.3369966,-1.08939,16.0998,0.6289598,-0.5836952,16.87719,0.3369966,-0.4668656,0,-0.4668656,0.4668656,0,-0.4668656,-0.2964596,2.899837,-0.2964596,0.2964596,2.899837,-0.2964596,-0.4668656,0,-0.4668656,-0.2964596,2.899837,-0.2964596,-0.4668656,0,0.4668656,-0.2964596,2.899837,0.2964596,0.4668656,0,0.4668656,-0.4668656,0,0.4668656,0.2964596,2.899837,0.2964596,-0.2964596,2.899837,0.2964596,0.4668656,0,-0.4668656,0.4668656,0,0.4668656,0.2964596,2.899837,-0.2964596,0.2964596,2.899837,0.2964596,0.4668656,0,0.4668656,0.4668656,0,-0.4668656,-0.4668656,0,0.4668656,-0.4668656,0,-0.4668656 + } + PolygonVertexIndex: *216 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,50,-50,51,49,-51,52,54,-54,55,53,-55,56,58,-58,59,57,-59,60,62,-62,63,61,-63,64,66,-66,67,65,-67,68,70,-70,71,69,-71,72,74,-74,75,73,-75,76,78,-78,79,77,-79,80,79,-79,81,80,-79,82,80,-82,79,83,-78,84,77,-84,82,84,-84,85,84,-83,81,85,-83,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,93,-93,95,93,-95,96,98,-98,99,97,-99,100,102,-102,103,101,-103,104,106,-106,107,105,-107,108,110,-110,111,109,-111,112,114,-114,115,113,-115,116,118,-118,119,117,-119,120,122,-122,123,121,-123,124,126,-126,127,125,-127,128,130,-130,131,129,-131 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *648 { + a: 0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *264 { + a: 2.753386,14.03176,-2.753386,14.03176,4.541329,27.25351,-4.541328,27.25351,-1.652032,10.03147,-2.753386,12.70109,1.652031,10.03147,2.753386,12.70109,2.753386,14.03176,-2.753386,14.03176,4.541328,27.25351,-4.541329,27.25351,-2.753386,12.70109,2.753386,12.70109,-1.652032,10.03147,1.652032,10.03147,4.541329,25.26664,-4.541329,25.26664,2.476219,62.68477,-2.476219,62.68477,2.753386,14.03176,-2.753386,14.03176,4.541328,27.25351,-4.541329,27.25351,4.541329,25.26664,-4.541328,25.26664,2.476219,62.68477,-2.476219,62.68477,1.652032,10.03147,-1.652032,10.03147,2.753386,12.70109,-2.753386,12.70109,2.753386,12.70109,1.652031,10.03147,-2.753386,12.70109,-1.652032,10.03147,2.753386,12.70109,1.652032,10.03147,-2.753386,12.70109,-1.652031,10.03147,4.541328,25.26664,-4.541329,25.26664,2.476219,62.68477,-2.476219,62.68477,2.753386,14.03176,-2.753386,14.03176,4.541329,27.25351,-4.541328,27.25351,4.541329,27.25351,2.753386,14.03176,-4.541329,27.25351,-2.753386,14.03176,4.541328,25.26664,-4.541329,25.26664,2.476219,62.68477,-2.476219,62.68477,-4.541329,27.25351,4.541329,27.25351,-2.753386,14.03176,2.753386,14.03176,-4.541329,25.26664,-2.476219,62.68477,4.541329,25.26664,2.476219,62.68477,2.476219,50.79389,-2.47622,50.79389,1.326758,54.44506,-1.326759,54.44506,2.47622,50.79389,-2.476219,50.79389,1.326759,54.44506,-1.326758,54.44506,2.47622,50.79389,-2.476219,50.79389,1.326759,54.44506,-1.326758,54.44506,2.861402,1.652032,2.861402,-1.652032,0,3.304063,1.167164,1.167164,-1.167164,1.167164,-2.861402,1.652032,-1.167164,-1.167164,1.167164,-1.167164,0,-3.304063,-2.861402,-1.652032,4.541329,25.26664,-4.541328,25.26664,2.476219,62.68477,-2.476219,62.68477,-2.298012,-1.326759,-2.298012,1.326759,0,-2.653517,0,2.653517,2.298012,-1.326759,2.298012,1.326759,2.476219,50.79389,-2.476219,50.79389,1.326759,54.44506,-1.326759,54.44506,-2.753386,12.70109,2.753386,12.70109,-1.652031,10.03147,1.652032,10.03147,2.476219,50.79389,-2.47622,50.79389,1.326758,54.44506,-1.326759,54.44506,-2.476219,50.79389,-1.326759,54.44506,2.476219,50.79389,1.326759,54.44506,1.838053,-0.1078254,-1.838053,-0.1078254,1.167164,11.32855,-1.167164,11.32855,-1.838053,-0.1078254,-1.167164,11.32855,1.838053,-0.1078254,1.167164,11.32855,1.838053,-0.1078254,-1.838053,-0.1078254,1.167164,11.32855,-1.167164,11.32855,1.838053,-0.1078254,-1.838053,-0.1078254,1.167164,11.32855,-1.167164,11.32855,1.838053,1.838053,1.838053,-1.838053,-1.838053,1.838053,-1.838053,-1.838053 + } + UVIndex: *216 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,50,49,51,49,50,52,54,53,55,53,54,56,58,57,59,57,58,60,62,61,63,61,62,64,66,65,67,65,66,68,70,69,71,69,70,72,74,73,75,73,74,76,78,77,79,77,78,80,79,78,81,80,78,82,80,81,79,83,77,84,77,83,82,84,83,85,84,82,81,85,82,86,88,87,89,87,88,90,92,91,93,91,92,94,93,92,95,93,94,96,98,97,99,97,98,100,102,101,103,101,102,104,106,105,107,105,106,108,110,109,111,109,110,112,114,113,115,113,114,116,118,117,119,117,118,120,122,121,123,121,122,124,126,125,127,125,126,128,130,129,131,129,130 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *72 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_tall_dark, Model::RootNode + C: "OO",4857783638438778332,0 + + ;Geometry::, Model::Mesh tree_tall_dark + C: "OO",5336683971783893751,4857783638438778332 + + ;Material::leafsDark, Model::Mesh tree_tall_dark + C: "OO",3026,4857783638438778332 + + ;Material::woodBarkDark, Model::Mesh tree_tall_dark + C: "OO",3048,4857783638438778332 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_dark.fbx.import new file mode 100644 index 0000000..4bcf443 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://dit0sef1u1jqy" +path="res://.godot/imported/tree_tall_dark.fbx-b706c9b71d75f619ea127d9dd122e58f.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_tall_dark.fbx" +dest_files=["res://.godot/imported/tree_tall_dark.fbx-b706c9b71d75f619ea127d9dd122e58f.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_fall.fbx new file mode 100644 index 0000000..7d50e63 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 583 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_tall_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_tall_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4987586493964621564, "Model::tree_tall_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 5470716876880249283, "Geometry::", "Mesh" { + Vertices: *792 { + a: 0,3.374208,-1.39872,1.211327,3.374208,-0.69936,0,6.639115,-2.306995,1.997916,6.639115,-1.153498,0,6.639115,-2.306995,1.211327,3.374208,-0.69936,0,3.374208,-1.39872,1.997916,6.639115,-1.153498,0,2.899837,-0.839232,0,3.374208,-1.39872,-0.7267962,2.899837,-0.419616,-1.211327,3.374208,-0.69936,-0.7267962,2.899837,-0.419616,0,3.374208,-1.39872,0,2.899837,-0.839232,-1.211327,3.374208,-0.69936,-1.211327,3.374208,-0.69936,0,3.374208,-1.39872,-1.997916,6.639115,-1.153498,0,6.639115,-2.306995,-1.997916,6.639115,-1.153498,0,3.374208,-1.39872,-1.211327,3.374208,-0.69936,0,6.639115,-2.306995,1.211327,3.374208,0.69936,1.211327,3.374208,-0.69936,0.7267962,2.899837,0.419616,0.7267962,2.899837,-0.419616,0.7267962,2.899837,0.419616,1.211327,3.374208,-0.69936,1.211327,3.374208,0.69936,0.7267962,2.899837,-0.419616,1.997916,6.639115,-1.153498,1.997916,6.639115,1.153498,1.08939,16.0998,-0.6289598,1.08939,16.0998,0.6289598,1.08939,16.0998,-0.6289598,1.997916,6.639115,1.153498,1.997916,6.639115,-1.153498,1.08939,16.0998,0.6289598,1.211327,3.374208,0.69936,0,3.374208,1.39872,1.997916,6.639115,1.153498,0,6.639115,2.306995,1.997916,6.639115,1.153498,0,3.374208,1.39872,1.211327,3.374208,0.69936,0,6.639115,2.306995,0,6.639115,-2.306995,1.997916,6.639115,-1.153498,-2.887646E-14,16.0998,-1.25792,1.08939,16.0998,-0.6289598,-2.887646E-14,16.0998,-1.25792,1.997916,6.639115,-1.153498,0,6.639115,-2.306995,1.08939,16.0998,-0.6289598,-0.2964596,2.899837,-0.2964596,0.4668656,0,-0.4668656,-0.4668656,0,-0.4668656,0.2964596,2.899837,-0.2964596,-0.7267962,2.899837,0.419616,-0.7267962,2.899837,-0.419616,-1.211327,3.374208,0.69936,-1.211327,3.374208,-0.69936,-1.211327,3.374208,0.69936,-0.7267962,2.899837,-0.419616,-0.7267962,2.899837,0.419616,-1.211327,3.374208,-0.69936,-0.4668656,0,0.4668656,-0.2964596,2.899837,-0.2964596,-0.4668656,0,-0.4668656,-0.2964596,2.899837,0.2964596,0.2964596,2.899837,0.2964596,-0.4668656,0,0.4668656,0.4668656,0,0.4668656,-0.2964596,2.899837,0.2964596,0.2964596,2.899837,-0.2964596,0.4668656,0,0.4668656,0.4668656,0,-0.4668656,0.2964596,2.899837,0.2964596,1.211327,3.374208,0.69936,0.7267962,2.899837,0.419616,0,3.374208,1.39872,0,2.899837,0.839232,0,3.374208,1.39872,0.7267962,2.899837,0.419616,1.211327,3.374208,0.69936,0,2.899837,0.839232,0,3.374208,1.39872,0,2.899837,0.839232,-1.211327,3.374208,0.69936,-0.7267962,2.899837,0.419616,-1.211327,3.374208,0.69936,0,2.899837,0.839232,0,3.374208,1.39872,-0.7267962,2.899837,0.419616,-1.997916,6.639115,-1.153498,0,6.639115,-2.306995,-1.08939,16.0998,-0.6289598,-2.887646E-14,16.0998,-1.25792,-1.08939,16.0998,-0.6289598,0,6.639115,-2.306995,-1.997916,6.639115,-1.153498,-2.887646E-14,16.0998,-1.25792,0,3.374208,1.39872,-1.211327,3.374208,0.69936,0,6.639115,2.306995,-1.997916,6.639115,1.153498,0,6.639115,2.306995,-1.211327,3.374208,0.69936,0,3.374208,1.39872,-1.997916,6.639115,1.153498,1.997916,6.639115,-1.153498,1.211327,3.374208,-0.69936,1.997916,6.639115,1.153498,1.211327,3.374208,0.69936,1.997916,6.639115,1.153498,1.211327,3.374208,-0.69936,1.997916,6.639115,-1.153498,1.211327,3.374208,0.69936,-0.4668656,0,0.4668656,0.4668656,0,-0.4668656,0.4668656,0,0.4668656,-0.4668656,0,-0.4668656,1.997916,6.639115,1.153498,0,6.639115,2.306995,1.08939,16.0998,0.6289598,-2.887646E-14,16.0998,1.25792,1.08939,16.0998,0.6289598,0,6.639115,2.306995,1.997916,6.639115,1.153498,-2.887646E-14,16.0998,1.25792,-1.997916,6.639115,-1.153498,-1.997916,6.639115,1.153498,-1.211327,3.374208,-0.69936,-1.211327,3.374208,0.69936,-1.211327,3.374208,-0.69936,-1.997916,6.639115,1.153498,-1.997916,6.639115,-1.153498,-1.211327,3.374208,0.69936,-1.997916,6.639115,-1.153498,-1.08939,16.0998,-0.6289598,-1.997916,6.639115,1.153498,-1.08939,16.0998,0.6289598,-1.997916,6.639115,1.153498,-1.08939,16.0998,-0.6289598,-1.997916,6.639115,-1.153498,-1.08939,16.0998,0.6289598,-1.08939,16.0998,-0.6289598,-2.887646E-14,16.0998,-1.25792,-0.5836952,16.87719,-0.3369966,0,16.87719,-0.6739933,-0.5836952,16.87719,-0.3369966,-2.887646E-14,16.0998,-1.25792,-1.08939,16.0998,-0.6289598,0,16.87719,-0.6739933,-2.887646E-14,16.0998,1.25792,-1.08939,16.0998,0.6289598,0,16.87719,0.6739933,-0.5836952,16.87719,0.3369966,0,16.87719,0.6739933,-1.08939,16.0998,0.6289598,-2.887646E-14,16.0998,1.25792,-0.5836952,16.87719,0.3369966,-2.887646E-14,16.0998,-1.25792,1.08939,16.0998,-0.6289598,0,16.87719,-0.6739933,0.5836952,16.87719,-0.3369966,0,16.87719,-0.6739933,1.08939,16.0998,-0.6289598,-2.887646E-14,16.0998,-1.25792,0.5836952,16.87719,-0.3369966,0.7267962,2.899837,0.419616,0.7267962,2.899837,-0.419616,0,2.899837,0.839232,0.2964596,2.899837,0.2964596,-0.2964596,2.899837,0.2964596,-0.7267962,2.899837,0.419616,-0.2964596,2.899837,-0.2964596,0.2964596,2.899837,-0.2964596,0,2.899837,-0.839232,-0.7267962,2.899837,-0.419616,0,2.899837,0.839232,0.7267962,2.899837,-0.419616,0.7267962,2.899837,0.419616,0.2964596,2.899837,0.2964596,-0.2964596,2.899837,0.2964596,-0.7267962,2.899837,0.419616,-0.2964596,2.899837,-0.2964596,0.2964596,2.899837,-0.2964596,0,2.899837,-0.839232,-0.7267962,2.899837,-0.419616,0,6.639115,2.306995,-1.997916,6.639115,1.153498,-2.887646E-14,16.0998,1.25792,-1.08939,16.0998,0.6289598,-2.887646E-14,16.0998,1.25792,-1.997916,6.639115,1.153498,0,6.639115,2.306995,-1.08939,16.0998,0.6289598,0.5836952,16.87719,-0.3369966,0.5836952,16.87719,0.3369966,0,16.87719,-0.6739933,0,16.87719,0.6739933,-0.5836952,16.87719,-0.3369966,-0.5836952,16.87719,0.3369966,0,16.87719,-0.6739933,0.5836952,16.87719,0.3369966,0.5836952,16.87719,-0.3369966,0,16.87719,0.6739933,-0.5836952,16.87719,-0.3369966,-0.5836952,16.87719,0.3369966,1.08939,16.0998,-0.6289598,1.08939,16.0998,0.6289598,0.5836952,16.87719,-0.3369966,0.5836952,16.87719,0.3369966,0.5836952,16.87719,-0.3369966,1.08939,16.0998,0.6289598,1.08939,16.0998,-0.6289598,0.5836952,16.87719,0.3369966,1.211327,3.374208,-0.69936,0,3.374208,-1.39872,0.7267962,2.899837,-0.419616,0,2.899837,-0.839232,0.7267962,2.899837,-0.419616,0,3.374208,-1.39872,1.211327,3.374208,-0.69936,0,2.899837,-0.839232,1.08939,16.0998,0.6289598,-2.887646E-14,16.0998,1.25792,0.5836952,16.87719,0.3369966,0,16.87719,0.6739933,0.5836952,16.87719,0.3369966,-2.887646E-14,16.0998,1.25792,1.08939,16.0998,0.6289598,0,16.87719,0.6739933,-1.08939,16.0998,-0.6289598,-0.5836952,16.87719,-0.3369966,-1.08939,16.0998,0.6289598,-0.5836952,16.87719,0.3369966,-1.08939,16.0998,0.6289598,-0.5836952,16.87719,-0.3369966,-1.08939,16.0998,-0.6289598,-0.5836952,16.87719,0.3369966,-0.4668656,0,-0.4668656,0.4668656,0,-0.4668656,-0.2964596,2.899837,-0.2964596,0.2964596,2.899837,-0.2964596,-0.4668656,0,-0.4668656,-0.2964596,2.899837,-0.2964596,-0.4668656,0,0.4668656,-0.2964596,2.899837,0.2964596,0.4668656,0,0.4668656,-0.4668656,0,0.4668656,0.2964596,2.899837,0.2964596,-0.2964596,2.899837,0.2964596,0.4668656,0,-0.4668656,0.4668656,0,0.4668656,0.2964596,2.899837,-0.2964596,0.2964596,2.899837,0.2964596,0.4668656,0,0.4668656,0.4668656,0,-0.4668656,-0.4668656,0,0.4668656,-0.4668656,0,-0.4668656 + } + PolygonVertexIndex: *432 { + a: 0,2,-2,3,1,-3,4,6,-6,5,7,-5,8,10,-10,11,9,-11,12,14,-14,13,15,-13,16,18,-18,19,17,-19,20,22,-22,21,23,-21,24,26,-26,27,25,-27,28,30,-30,29,31,-29,32,34,-34,35,33,-35,36,38,-38,37,39,-37,40,42,-42,43,41,-43,44,46,-46,45,47,-45,48,50,-50,51,49,-51,52,54,-54,53,55,-53,56,58,-58,57,59,-57,60,62,-62,63,61,-63,64,66,-66,65,67,-65,68,70,-70,69,71,-69,72,74,-74,73,75,-73,76,78,-78,77,79,-77,80,82,-82,83,81,-83,84,86,-86,85,87,-85,88,90,-90,91,89,-91,92,94,-94,93,95,-93,96,98,-98,99,97,-99,100,102,-102,101,103,-101,104,106,-106,107,105,-107,108,110,-110,109,111,-109,112,114,-114,115,113,-115,116,118,-118,117,119,-117,120,122,-122,121,123,-121,124,126,-126,127,125,-127,128,130,-130,129,131,-129,132,134,-134,135,133,-135,136,138,-138,137,139,-137,140,142,-142,143,141,-143,144,146,-146,145,147,-145,148,150,-150,151,149,-151,152,154,-154,153,155,-153,156,158,-158,159,157,-159,160,162,-162,161,163,-161,164,166,-166,167,165,-167,168,170,-170,169,171,-169,172,174,-174,175,173,-175,176,175,-175,177,176,-175,178,176,-178,175,179,-174,180,173,-180,178,180,-180,181,180,-179,177,181,-179,182,184,-184,183,185,-183,185,186,-183,186,187,-183,186,188,-188,189,185,-184,183,190,-190,190,188,-190,190,191,-189,191,187,-189,192,194,-194,195,193,-195,196,198,-198,197,199,-197,200,202,-202,203,201,-203,204,203,-203,205,203,-205,206,208,-208,207,209,-207,209,210,-207,209,211,-211,212,214,-214,215,213,-215,216,218,-218,217,219,-217,220,222,-222,223,221,-223,224,226,-226,225,227,-225,228,230,-230,231,229,-231,232,234,-234,233,235,-233,236,238,-238,239,237,-239,240,242,-242,241,243,-241,244,246,-246,247,245,-247,248,250,-250,251,249,-251,252,254,-254,255,253,-255,256,258,-258,259,257,-259,260,262,-262,263,261,-263 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *1296 { + a: 0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,0.4860917,-0.2342208,-0.8419356,-0.4860917,0.2342208,0.8419356,-0.4860917,0.2342208,0.8419356,-0.4860917,0.2342208,0.8419356,-0.4860917,0.2342208,0.8419356,-0.4860917,0.2342208,0.8419356,-0.4860917,0.2342208,0.8419356,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,-0.3497879,-0.7145585,-0.6058503,0.3497879,0.7145585,0.6058503,0.3497879,0.7145585,0.6058503,0.3497879,0.7145585,0.6058503,0.3497879,0.7145585,0.6058503,0.3497879,0.7145585,0.6058503,0.3497879,0.7145585,0.6058503,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,-0.4860917,-0.2342208,-0.8419356,0.4860917,0.2342208,0.8419356,0.4860917,0.2342208,0.8419356,0.4860917,0.2342208,0.8419356,0.4860917,0.2342208,0.8419356,0.4860917,0.2342208,0.8419356,0.4860917,0.2342208,0.8419356,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,0.6995756,-0.7145585,0,-0.6995756,0.7145585,0,-0.6995756,0.7145585,0,-0.6995756,0.7145585,0,-0.6995756,0.7145585,0,-0.6995756,0.7145585,0,-0.6995756,0.7145585,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,0.9954205,0.09559201,0,-0.9954205,-0.09559201,0,-0.9954205,-0.09559201,0,-0.9954205,-0.09559201,0,-0.9954205,-0.09559201,0,-0.9954205,-0.09559201,0,-0.9954205,-0.09559201,0,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,0.4860917,-0.2342208,0.8419356,-0.4860917,0.2342208,-0.8419356,-0.4860917,0.2342208,-0.8419356,-0.4860917,0.2342208,-0.8419356,-0.4860917,0.2342208,-0.8419356,-0.4860917,0.2342208,-0.8419356,-0.4860917,0.2342208,-0.8419356,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,0.4977103,0.09559202,-0.8620595,-0.4977103,-0.09559202,0.8620595,-0.4977103,-0.09559202,0.8620595,-0.4977103,-0.09559202,0.8620595,-0.4977103,-0.09559202,0.8620595,-0.4977103,-0.09559202,0.8620595,-0.4977103,-0.09559202,0.8620595,0,-0.05866279,0.9982778,0,-0.05866279,0.9982778,0,-0.05866279,0.9982778,0,-0.05866279,0.9982778,0,-0.05866279,0.9982778,0,-0.05866279,0.9982778,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,-0.6995756,-0.7145585,0,0.6995756,0.7145585,0,0.6995756,0.7145585,0,0.6995756,0.7145585,0,0.6995756,0.7145585,0,0.6995756,0.7145585,0,0.6995756,0.7145585,0,0.9982778,-0.05866279,0,0.9982778,-0.05866279,0,0.9982778,-0.05866279,0,0.9982778,-0.05866279,0,0.9982778,-0.05866279,0,0.9982778,-0.05866279,0,0,-0.05866279,-0.9982778,0,-0.05866279,-0.9982778,0,-0.05866279,-0.9982778,0,-0.05866279,-0.9982778,0,-0.05866279,-0.9982778,0,-0.05866279,-0.9982778,-0.9982778,-0.05866279,0,-0.9982778,-0.05866279,0,-0.9982778,-0.05866279,0,-0.9982778,-0.05866279,0,-0.9982778,-0.05866279,0,-0.9982778,-0.05866279,0,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,0.3497879,-0.7145585,0.6058503,-0.3497879,0.7145585,-0.6058503,-0.3497879,0.7145585,-0.6058503,-0.3497879,0.7145585,-0.6058503,-0.3497879,0.7145585,-0.6058503,-0.3497879,0.7145585,-0.6058503,-0.3497879,0.7145585,-0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,-0.3497879,-0.7145585,0.6058503,0.3497879,0.7145585,-0.6058503,0.3497879,0.7145585,-0.6058503,0.3497879,0.7145585,-0.6058503,0.3497879,0.7145585,-0.6058503,0.3497879,0.7145585,-0.6058503,0.3497879,0.7145585,-0.6058503,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,-0.4977103,0.09559202,-0.8620595,0.4977103,-0.09559202,0.8620595,0.4977103,-0.09559202,0.8620595,0.4977103,-0.09559202,0.8620595,0.4977103,-0.09559202,0.8620595,0.4977103,-0.09559202,0.8620595,0.4977103,-0.09559202,0.8620595,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,-0.4860917,-0.2342208,0.8419356,0.4860917,0.2342208,-0.8419356,0.4860917,0.2342208,-0.8419356,0.4860917,0.2342208,-0.8419356,0.4860917,0.2342208,-0.8419356,0.4860917,0.2342208,-0.8419356,0.4860917,0.2342208,-0.8419356,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,0.9721834,-0.2342207,0,-0.9721834,0.2342207,0,-0.9721834,0.2342207,0,-0.9721834,0.2342207,0,-0.9721834,0.2342207,0,-0.9721834,0.2342207,0,-0.9721834,0.2342207,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,0.4977103,0.09559202,0.8620595,-0.4977103,-0.09559202,-0.8620595,-0.4977103,-0.09559202,-0.8620595,-0.4977103,-0.09559202,-0.8620595,-0.4977103,-0.09559202,-0.8620595,-0.4977103,-0.09559202,-0.8620595,-0.4977103,-0.09559202,-0.8620595,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,-0.9721834,-0.2342207,0,0.9721834,0.2342207,0,0.9721834,0.2342207,0,0.9721834,0.2342207,0,0.9721834,0.2342207,0,0.9721834,0.2342207,0,0.9721834,0.2342207,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,-0.9954205,0.09559201,0,0.9954205,-0.09559201,0,0.9954205,-0.09559201,0,0.9954205,-0.09559201,0,0.9954205,-0.09559201,0,0.9954205,-0.09559201,0,0.9954205,-0.09559201,0,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,-0.4191257,0.5452842,-0.7259469,0.4191257,-0.5452842,0.7259469,0.4191257,-0.5452842,0.7259469,0.4191257,-0.5452842,0.7259469,0.4191257,-0.5452842,0.7259469,0.4191257,-0.5452842,0.7259469,0.4191257,-0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,-0.4191257,0.5452842,0.7259469,0.4191257,-0.5452842,-0.7259469,0.4191257,-0.5452842,-0.7259469,0.4191257,-0.5452842,-0.7259469,0.4191257,-0.5452842,-0.7259469,0.4191257,-0.5452842,-0.7259469,0.4191257,-0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,0.4191257,0.5452842,-0.7259469,-0.4191257,-0.5452842,0.7259469,-0.4191257,-0.5452842,0.7259469,-0.4191257,-0.5452842,0.7259469,-0.4191257,-0.5452842,0.7259469,-0.4191257,-0.5452842,0.7259469,-0.4191257,-0.5452842,0.7259469,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,-0.4977103,0.09559202,0.8620595,0.4977103,-0.09559202,-0.8620595,0.4977103,-0.09559202,-0.8620595,0.4977103,-0.09559202,-0.8620595,0.4977103,-0.09559202,-0.8620595,0.4977103,-0.09559202,-0.8620595,0.4977103,-0.09559202,-0.8620595,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,0.8382512,0.5452842,0,-0.8382512,-0.5452842,0,-0.8382512,-0.5452842,0,-0.8382512,-0.5452842,0,-0.8382512,-0.5452842,0,-0.8382512,-0.5452842,0,-0.8382512,-0.5452842,0,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,0.3497879,-0.7145585,-0.6058503,-0.3497879,0.7145585,0.6058503,-0.3497879,0.7145585,0.6058503,-0.3497879,0.7145585,0.6058503,-0.3497879,0.7145585,0.6058503,-0.3497879,0.7145585,0.6058503,-0.3497879,0.7145585,0.6058503,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,0.4191257,0.5452842,0.7259469,-0.4191257,-0.5452842,-0.7259469,-0.4191257,-0.5452842,-0.7259469,-0.4191257,-0.5452842,-0.7259469,-0.4191257,-0.5452842,-0.7259469,-0.4191257,-0.5452842,-0.7259469,-0.4191257,-0.5452842,-0.7259469,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,-0.8382512,0.5452842,0,0.8382512,-0.5452842,0,0.8382512,-0.5452842,0,0.8382512,-0.5452842,0,0.8382512,-0.5452842,0,0.8382512,-0.5452842,0,0.8382512,-0.5452842,0,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,0,0.05866279,-0.9982778,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,-0.9982778,0.05866279,0,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0,0.05866279,0.9982778,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0.9982778,0.05866279,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *528 { + a: 2.753386,14.03176,-2.753386,14.03176,4.541329,27.25351,-4.541328,27.25351,4.541329,27.25351,-2.753386,14.03176,2.753386,14.03176,-4.541328,27.25351,-1.652032,10.03147,-2.753386,12.70109,1.652031,10.03147,2.753386,12.70109,1.652031,10.03147,-2.753386,12.70109,-1.652032,10.03147,2.753386,12.70109,2.753386,14.03176,-2.753386,14.03176,4.541328,27.25351,-4.541329,27.25351,4.541328,27.25351,-2.753386,14.03176,2.753386,14.03176,-4.541329,27.25351,-2.753386,12.70109,2.753386,12.70109,-1.652032,10.03147,1.652032,10.03147,-1.652032,10.03147,2.753386,12.70109,-2.753386,12.70109,1.652032,10.03147,4.541329,25.26664,-4.541329,25.26664,2.476219,62.68477,-2.476219,62.68477,2.476219,62.68477,-4.541329,25.26664,4.541329,25.26664,-2.476219,62.68477,2.753386,14.03176,-2.753386,14.03176,4.541328,27.25351,-4.541329,27.25351,4.541328,27.25351,-2.753386,14.03176,2.753386,14.03176,-4.541329,27.25351,4.541329,25.26664,-4.541328,25.26664,2.476219,62.68477,-2.476219,62.68477,2.476219,62.68477,-4.541328,25.26664,4.541329,25.26664,-2.476219,62.68477,1.167164,11.32855,-1.838053,-0.1078254,1.838053,-0.1078254,-1.167164,11.32855,1.652032,10.03147,-1.652032,10.03147,2.753386,12.70109,-2.753386,12.70109,2.753386,12.70109,-1.652032,10.03147,1.652032,10.03147,-2.753386,12.70109,1.838053,-0.1078254,-1.167164,11.32855,-1.838053,-0.1078254,1.167164,11.32855,1.167164,11.32855,-1.838053,-0.1078254,1.838053,-0.1078254,-1.167164,11.32855,1.167164,11.32855,-1.838053,-0.1078254,1.838053,-0.1078254,-1.167164,11.32855,2.753386,12.70109,1.652031,10.03147,-2.753386,12.70109,-1.652032,10.03147,-2.753386,12.70109,1.652031,10.03147,2.753386,12.70109,-1.652032,10.03147,2.753386,12.70109,1.652032,10.03147,-2.753386,12.70109,-1.652031,10.03147,-2.753386,12.70109,1.652032,10.03147,2.753386,12.70109,-1.652031,10.03147,4.541328,25.26664,-4.541329,25.26664,2.476219,62.68477,-2.476219,62.68477,2.476219,62.68477,-4.541329,25.26664,4.541328,25.26664,-2.476219,62.68477,2.753386,14.03176,-2.753386,14.03176,4.541329,27.25351,-4.541328,27.25351,4.541329,27.25351,-2.753386,14.03176,2.753386,14.03176,-4.541328,27.25351,4.541329,27.25351,2.753386,14.03176,-4.541329,27.25351,-2.753386,14.03176,-4.541329,27.25351,2.753386,14.03176,4.541329,27.25351,-2.753386,14.03176,-1.838053,1.838053,1.838053,-1.838053,1.838053,1.838053,-1.838053,-1.838053,4.541328,25.26664,-4.541329,25.26664,2.476219,62.68477,-2.476219,62.68477,2.476219,62.68477,-4.541329,25.26664,4.541328,25.26664,-2.476219,62.68477,-4.541329,27.25351,4.541329,27.25351,-2.753386,14.03176,2.753386,14.03176,-2.753386,14.03176,4.541329,27.25351,-4.541329,27.25351,2.753386,14.03176,-4.541329,25.26664,-2.476219,62.68477,4.541329,25.26664,2.476219,62.68477,4.541329,25.26664,-2.476219,62.68477,-4.541329,25.26664,2.476219,62.68477,2.476219,50.79389,-2.47622,50.79389,1.326758,54.44506,-1.326759,54.44506,1.326758,54.44506,-2.47622,50.79389,2.476219,50.79389,-1.326759,54.44506,2.47622,50.79389,-2.476219,50.79389,1.326759,54.44506,-1.326758,54.44506,1.326759,54.44506,-2.476219,50.79389,2.47622,50.79389,-1.326758,54.44506,2.47622,50.79389,-2.476219,50.79389,1.326759,54.44506,-1.326758,54.44506,1.326759,54.44506,-2.476219,50.79389,2.47622,50.79389,-1.326758,54.44506,2.861402,1.652032,2.861402,-1.652032,0,3.304063,1.167164,1.167164,-1.167164,1.167164,-2.861402,1.652032,-1.167164,-1.167164,1.167164,-1.167164,0,-3.304063,-2.861402,-1.652032,0,3.304063,2.861402,-1.652032,2.861402,1.652032,1.167164,1.167164,-1.167164,1.167164,-2.861402,1.652032,-1.167164,-1.167164,1.167164,-1.167164,0,-3.304063,-2.861402,-1.652032,4.541329,25.26664,-4.541328,25.26664,2.476219,62.68477,-2.476219,62.68477,2.476219,62.68477,-4.541328,25.26664,4.541329,25.26664,-2.476219,62.68477,-2.298012,-1.326759,-2.298012,1.326759,0,-2.653517,0,2.653517,2.298012,-1.326759,2.298012,1.326759,0,-2.653517,-2.298012,1.326759,-2.298012,-1.326759,0,2.653517,2.298012,-1.326759,2.298012,1.326759,2.476219,50.79389,-2.476219,50.79389,1.326759,54.44506,-1.326759,54.44506,1.326759,54.44506,-2.476219,50.79389,2.476219,50.79389,-1.326759,54.44506,-2.753386,12.70109,2.753386,12.70109,-1.652031,10.03147,1.652032,10.03147,-1.652031,10.03147,2.753386,12.70109,-2.753386,12.70109,1.652032,10.03147,2.476219,50.79389,-2.47622,50.79389,1.326758,54.44506,-1.326759,54.44506,1.326758,54.44506,-2.47622,50.79389,2.476219,50.79389,-1.326759,54.44506,-2.476219,50.79389,-1.326759,54.44506,2.476219,50.79389,1.326759,54.44506,2.476219,50.79389,-1.326759,54.44506,-2.476219,50.79389,1.326759,54.44506,1.838053,-0.1078254,-1.838053,-0.1078254,1.167164,11.32855,-1.167164,11.32855,-1.838053,-0.1078254,-1.167164,11.32855,1.838053,-0.1078254,1.167164,11.32855,1.838053,-0.1078254,-1.838053,-0.1078254,1.167164,11.32855,-1.167164,11.32855,1.838053,-0.1078254,-1.838053,-0.1078254,1.167164,11.32855,-1.167164,11.32855,1.838053,1.838053,1.838053,-1.838053,-1.838053,1.838053,-1.838053,-1.838053 + } + UVIndex: *432 { + a: 0,2,1,3,1,2,4,6,5,5,7,4,8,10,9,11,9,10,12,14,13,13,15,12,16,18,17,19,17,18,20,22,21,21,23,20,24,26,25,27,25,26,28,30,29,29,31,28,32,34,33,35,33,34,36,38,37,37,39,36,40,42,41,43,41,42,44,46,45,45,47,44,48,50,49,51,49,50,52,54,53,53,55,52,56,58,57,57,59,56,60,62,61,63,61,62,64,66,65,65,67,64,68,70,69,69,71,68,72,74,73,73,75,72,76,78,77,77,79,76,80,82,81,83,81,82,84,86,85,85,87,84,88,90,89,91,89,90,92,94,93,93,95,92,96,98,97,99,97,98,100,102,101,101,103,100,104,106,105,107,105,106,108,110,109,109,111,108,112,114,113,115,113,114,116,118,117,117,119,116,120,122,121,121,123,120,124,126,125,127,125,126,128,130,129,129,131,128,132,134,133,135,133,134,136,138,137,137,139,136,140,142,141,143,141,142,144,146,145,145,147,144,148,150,149,151,149,150,152,154,153,153,155,152,156,158,157,159,157,158,160,162,161,161,163,160,164,166,165,167,165,166,168,170,169,169,171,168,172,174,173,175,173,174,176,175,174,177,176,174,178,176,177,175,179,173,180,173,179,178,180,179,181,180,178,177,181,178,182,184,183,183,185,182,185,186,182,186,187,182,186,188,187,189,185,183,183,190,189,190,188,189,190,191,188,191,187,188,192,194,193,195,193,194,196,198,197,197,199,196,200,202,201,203,201,202,204,203,202,205,203,204,206,208,207,207,209,206,209,210,206,209,211,210,212,214,213,215,213,214,216,218,217,217,219,216,220,222,221,223,221,222,224,226,225,225,227,224,228,230,229,231,229,230,232,234,233,233,235,232,236,238,237,239,237,238,240,242,241,241,243,240,244,246,245,247,245,246,248,250,249,251,249,250,252,254,253,255,253,254,256,258,257,259,257,258,260,262,261,263,261,262 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *144 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_tall_fall, Model::RootNode + C: "OO",4987586493964621564,0 + + ;Geometry::, Model::Mesh tree_tall_fall + C: "OO",5470716876880249283,4987586493964621564 + + ;Material::leafsFall, Model::Mesh tree_tall_fall + C: "OO",3028,4987586493964621564 + + ;Material::woodBirch, Model::Mesh tree_tall_fall + C: "OO",3050,4987586493964621564 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_fall.fbx.import new file mode 100644 index 0000000..ff88f84 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_tall_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bal6l73gceo75" +path="res://.godot/imported/tree_tall_fall.fbx-24b7fff48f349f8d86ce4db407be088c.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_tall_fall.fbx" +dest_files=["res://.godot/imported/tree_tall_fall.fbx-24b7fff48f349f8d86ce4db407be088c.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_thin.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin.fbx new file mode 100644 index 0000000..031bdc9 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 699 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_thin.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_thin.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 4802391682145434813, "Model::tree_thin", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4783943820010772098, "Geometry::", "Mesh" { + Vertices: *1176 { + a: -3.423905,7.647891,-1.62108,-1.81198,7.647891,-1.62108,-3.238534,9.532882,-1.300008,-1.997352,9.532882,-1.300008,0.962572,9.075624,2.011274,-1.098578,9.075624,2.011274,1.253247,10.16063,2.514739,-1.389253,10.16063,2.514739,0.9028251,5.535567,-3.650486,1.708787,5.535567,-2.254518,0.7174535,7.420559,-3.329414,1.338045,7.420559,-2.254518,-1.81198,7.647891,-1.62108,-1.989292,7.111793,-1.313967,-1.006018,7.647891,-0.2251124,-1.360641,7.111793,-0.2251124,2.574497,10.16063,0.2262659,1.993147,9.075624,0.2262659,1.253247,10.16063,2.514739,0.962572,9.075624,2.011274,-1.389253,10.16063,-2.062207,-1.085366,13.97563,-1.535857,-2.710503,10.16063,0.2262659,-2.102728,13.97563,0.2262659,-1.997352,9.532882,-1.300008,-2.39357,9.991088,-0.6137365,-3.238534,9.532882,-1.300008,-2.842315,9.991088,-0.6137365,-2.710503,10.16063,0.2262659,-2.102728,13.97563,0.2262659,-1.389253,10.16063,2.514739,-1.085366,13.97563,1.988389,-3.423905,7.647891,-1.62108,-3.238534,9.532882,-1.300008,-4.229868,7.647891,-0.2251124,-3.859125,9.532882,-0.2251124,-2.842315,9.991088,-0.6137365,-3.066687,9.991088,-0.2251124,-3.238534,9.532882,-1.300008,-3.859125,9.532882,-0.2251124,-3.423905,7.647891,-1.62108,-4.229868,7.647891,-0.2251124,-3.246593,7.111793,-1.313967,-3.875245,7.111793,-0.2251124,-1.360641,7.111793,-0.2251124,-1.989292,7.111793,-1.313967,-1.989292,7.111793,0.8637429,-2.268886,7.111793,0.01053087,-3.246593,7.111793,0.8637429,-2.568441,7.111793,0.01053087,-2.568441,7.111793,-0.4393515,-2.268886,7.111793,-0.4393515,-3.246593,7.111793,-1.313967,-3.875245,7.111793,-0.2251124,-2.842315,9.991088,0.1635119,-3.238534,9.532882,0.8497831,-3.066687,9.991088,-0.2251124,-3.859125,9.532882,-0.2251124,-1.098578,9.075624,-1.558742,-1.745156,9.532882,-0.8631916,-1.577688,9.075624,-0.7288993,-2.26413,9.991088,-0.3895379,-1.389253,10.16063,-2.062207,-2.710503,10.16063,0.2262659,-2.583433,9.991088,0.1635119,-2.597214,9.949187,0.2262659,-1.989292,7.111793,0.8637429,-3.246593,7.111793,0.8637429,-1.81198,7.647891,1.170856,-3.423905,7.647891,1.170856,1.253247,10.16063,-2.062207,2.574497,10.16063,0.2262659,0.9493594,13.97563,-1.535857,1.966722,13.97563,0.2262659,1.993147,9.075624,0.2262659,0.962572,9.075624,-1.558742,0.962572,9.075624,2.011274,0.2249411,9.075624,0.3658504,-1.098578,9.075624,2.011274,-0.2249412,9.075624,0.3658504,-0.2249412,9.075624,-0.08403211,0.2249411,9.075624,-0.08403211,-1.098578,9.075624,-1.558742,-1.286827,9.075624,-0.2251124,-1.838291,9.075624,0.7300529,-1.577688,9.075624,-0.7288993,-3.875245,7.111793,-0.2251124,-4.229868,7.647891,-0.2251124,-3.246593,7.111793,0.8637429,-3.423905,7.647891,1.170856,-4.229868,7.647891,-0.2251124,-3.859125,9.532882,-0.2251124,-3.423905,7.647891,1.170856,-3.238534,9.532882,0.8497831,-1.838291,9.075624,0.7300529,-1.994265,9.5015,0.8551284,-1.098578,9.075624,2.011274,-1.389253,10.16063,2.514739,-2.014166,9.532882,0.8497831,-2.710503,10.16063,0.2262659,-2.597214,9.949187,0.2262659,-0.4358264,14.90298,0.8633547,-1.085366,13.97563,1.988389,-0.8036499,14.90298,0.2262659,-2.102728,13.97563,0.2262659,-3.246593,7.111793,-1.313967,-1.989292,7.111793,-1.313967,-3.423905,7.647891,-1.62108,-1.81198,7.647891,-1.62108,0.9493594,13.97563,1.988389,-1.085366,13.97563,1.988389,0.2998204,14.90298,0.8633547,-0.4358264,14.90298,0.8633547,-1.81198,7.647891,1.170856,-3.423905,7.647891,1.170856,-1.994265,9.5015,0.8551284,-3.238534,9.532882,0.8497831,-2.014166,9.532882,0.8497831,-1.006018,7.647891,-0.2251124,-1.360641,7.111793,-0.2251124,-1.81198,7.647891,1.170856,-1.989292,7.111793,0.8637429,1.253247,10.16063,-2.062207,0.962572,9.075624,-1.558742,2.574497,10.16063,0.2262659,1.993147,9.075624,0.2262659,-0.5317884,4.99947,-3.343374,0.725513,4.99947,-3.343374,-0.7091001,5.535567,-3.650486,0.9028251,5.535567,-3.650486,0.9028251,5.535567,-0.8585496,-0.7091001,5.535567,-0.8585496,0.7174535,7.420559,-1.179622,-0.5237286,7.420559,-1.179622,1.338045,7.420559,-2.254518,1.708787,5.535567,-2.254518,0.7174535,7.420559,-1.179622,0.9028251,5.535567,-0.8585496,0.7174535,7.420559,-1.179622,-0.5237286,7.420559,-1.179622,0.3212349,7.878765,-1.865894,-0.1275096,7.878765,-1.865894,1.966722,13.97563,0.2262659,0.9493594,13.97563,1.988389,0.6676439,14.90298,0.2262659,0.2998204,14.90298,0.8633547,-1.389253,10.16063,-2.062207,1.253247,10.16063,-2.062207,-1.085366,13.97563,-1.535857,0.9493594,13.97563,-1.535857,-1.160439,4.99947,-2.254518,-1.515063,5.535567,-2.254518,-0.5317884,4.99947,-1.165663,-0.7091001,5.535567,-0.8585496,-1.098578,9.075624,-1.558742,0.962572,9.075624,-1.558742,-1.389253,10.16063,-2.062207,1.253247,10.16063,-2.062207,0.5456069,7.878765,-2.254518,0.3212349,7.878765,-1.865894,0.3212349,7.878765,-2.643142,-0.1275096,7.878765,-2.643142,-0.1275096,7.878765,-1.865894,-0.3518821,7.878765,-2.254518,1.338045,7.420559,-2.254518,0.7174535,7.420559,-1.179622,0.5456069,7.878765,-2.254518,0.3212349,7.878765,-1.865894,1.708787,5.535567,-2.254518,1.354164,4.99947,-2.254518,0.9028251,5.535567,-0.8585496,0.725513,4.99947,-1.165663,-2.26413,9.991088,-0.3895379,-2.583433,9.991088,0.1635119,-2.39357,9.991088,-0.6137365,-2.842315,9.991088,-0.6137365,-2.842315,9.991088,0.1635119,-3.066687,9.991088,-0.2251124,-1.286827,9.075624,-0.2251124,-1.006018,7.647891,-0.2251124,-1.838291,9.075624,0.7300529,-1.81198,7.647891,1.170856,-1.994265,9.5015,0.8551284,0.7174535,7.420559,-3.329414,0.3212349,7.878765,-2.643142,-0.5237286,7.420559,-3.329414,-0.1275096,7.878765,-2.643142,-0.7091001,5.535567,-3.650486,0.9028251,5.535567,-3.650486,-0.5237286,7.420559,-3.329414,0.7174535,7.420559,-3.329414,1.338045,7.420559,-2.254518,0.5456069,7.878765,-2.254518,0.7174535,7.420559,-3.329414,0.3212349,7.878765,-2.643142,-1.81198,7.647891,-1.62108,-1.006018,7.647891,-0.2251124,-1.997352,9.532882,-1.300008,-1.577688,9.075624,-0.7288993,-1.745156,9.532882,-0.8631916,-1.286827,9.075624,-0.2251124,1.966722,13.97563,0.2262659,0.6676439,14.90298,0.2262659,0.9493594,13.97563,-1.535857,0.2998204,14.90298,-0.410823,-2.583433,9.991088,0.1635119,-2.597214,9.949187,0.2262659,-2.842315,9.991088,0.1635119,-3.238534,9.532882,0.8497831,-2.014166,9.532882,0.8497831,0.9493594,13.97563,-1.535857,0.2998204,14.90298,-0.410823,-1.085366,13.97563,-1.535857,-0.4358264,14.90298,-0.410823,0.9028251,5.535567,-3.650486,0.725513,4.99947,-3.343374,1.708787,5.535567,-2.254518,1.354164,4.99947,-2.254518,-0.1275096,7.878765,-2.643142,-0.3518821,7.878765,-2.254518,-0.5237286,7.420559,-3.329414,-1.14432,7.420559,-2.254518,-0.7091001,5.535567,-3.650486,-1.515063,5.535567,-2.254518,-0.5317884,4.99947,-3.343374,-1.160439,4.99947,-2.254518,-1.515063,5.535567,-2.254518,-1.14432,7.420559,-2.254518,-0.7091001,5.535567,-0.8585496,-0.5237286,7.420559,-1.179622,0.725513,4.99947,-1.165663,-0.5317884,4.99947,-1.165663,0.9028251,5.535567,-0.8585496,-0.7091001,5.535567,-0.8585496,-0.4358264,14.90298,-0.410823,-0.8036499,14.90298,0.2262659,-1.085366,13.97563,-1.535857,-2.102728,13.97563,0.2262659,-0.1275096,7.878765,-1.865894,-0.5237286,7.420559,-1.179622,-0.3518821,7.878765,-2.254518,-1.14432,7.420559,-2.254518,-1.745156,9.532882,-0.8631916,-2.26413,9.991088,-0.3895379,-1.997352,9.532882,-1.300008,-2.39357,9.991088,-0.6137365,1.253247,10.16063,2.514739,-1.389253,10.16063,2.514739,0.9493594,13.97563,1.988389,-1.085366,13.97563,1.988389,1.966722,13.97563,0.2262659,2.574497,10.16063,0.2262659,0.9493594,13.97563,1.988389,1.253247,10.16063,2.514739,1.354164,4.99947,-2.254518,0.725513,4.99947,-3.343374,0.725513,4.99947,-1.165663,0.3509684,4.99947,-1.927845,-0.5317884,4.99947,-1.165663,-0.09891412,4.99947,-1.927845,-0.09891412,4.99947,-2.260616,0.3509684,4.99947,-2.260616,-0.5317884,4.99947,-3.343374,-1.160439,4.99947,-2.254518,0.6676439,14.90298,0.2262659,0.2998204,14.90298,0.8633547,0.2998204,14.90298,-0.410823,-0.4358264,14.90298,-0.410823,-0.4358264,14.90298,0.8633547,-0.8036499,14.90298,0.2262659,-0.7091001,5.535567,-3.650486,-0.5237286,7.420559,-3.329414,-1.515063,5.535567,-2.254518,-1.14432,7.420559,-2.254518,0.2249411,7.275625,-0.5749412,0.2249411,5.000625,-0.2249411,0.2249411,9.075624,-0.08403211,0.2249411,7.275625,-0.1250588,0.2249411,9.075624,0.3658504,0.2249411,5.000625,0.2249412,0.3542381,0,0.3542381,0.3542381,0,-0.3542381,-0.3542381,0,0.3542381,-0.3542381,0,-0.3542381,0.3542381,0,-0.3542381,-0.2220534,3.29371,-0.2690754,-0.3542381,0,-0.3542381,-0.2249412,5.000625,-0.2249411,-0.1464244,3.776155,-0.2566013,0.2163579,3.776155,-0.2566013,0.2249411,5.000625,-0.2249411,0.1415999,3.29371,-0.2690754,0.2689236,4.46618,-1.504047,0.1757886,3.860802,-1.504047,0.2163579,3.776155,-0.2566013,0.1415999,3.29371,-0.2690754,-0.2740936,3.860802,-1.504047,-0.1809587,4.46618,-1.504047,-0.2220534,3.29371,-0.2690754,-0.1464244,3.776155,-0.2566013,-0.09891412,4.99947,-2.260616,-0.09891412,4.99947,-1.927845,-0.2740936,3.860802,-1.504047,-0.1809587,4.46618,-1.504047,-1.642441,5.718124,-0.2249411,-1.642441,6.323503,-0.3180763,-2.568441,7.111793,-0.4393515,-2.268886,7.111793,-0.4393515,0.1757886,3.860802,-1.504047,-0.2740936,3.860802,-1.504047,0.1415999,3.29371,-0.2690754,-0.2220534,3.29371,-0.2690754,-0.2249412,5.000625,0.2249412,-1.642441,5.718124,0.2249412,-0.2249412,5.606002,0.1318061,-1.642441,6.323503,0.1318061,0.2689236,4.46618,-1.504047,0.2163579,3.776155,-0.2566013,-0.1809587,4.46618,-1.504047,-0.1464244,3.776155,-0.2566013,-0.2249412,5.606002,-0.3180763,-0.2249412,5.606002,0.1318061,-1.642441,6.323503,-0.3180763,-1.642441,6.323503,0.1318061,-0.2249412,5.000625,-0.2249411,0.2249411,5.000625,-0.2249411,-0.2249412,5.606002,-0.3180763,0.2249411,7.275625,-0.5749412,-0.2249412,7.275625,-0.5749412,-0.3542381,0,-0.3542381,-0.2249412,5.000625,-0.2249411,-0.3542381,0,0.3542381,-0.2249412,5.000625,0.2249412,0.2249411,7.275625,-0.1250588,-0.2249412,7.275625,-0.1250588,0.2249411,9.075624,0.3658504,-0.2249412,9.075624,0.3658504,0.3509684,4.99947,-2.260616,0.1757886,3.860802,-1.504047,0.3509684,4.99947,-1.927845,0.2689236,4.46618,-1.504047,-0.2249412,5.000625,0.2249412,-0.2249412,5.000625,-0.2249411,-1.642441,5.718124,0.2249412,-1.642441,5.718124,-0.2249411,-0.2740936,3.860802,-1.504047,0.1757886,3.860802,-1.504047,-0.09891412,4.99947,-2.260616,0.3509684,4.99947,-2.260616,0.2689236,4.46618,-1.504047,-0.1809587,4.46618,-1.504047,0.3509684,4.99947,-1.927845,-0.09891412,4.99947,-1.927845,-2.568441,7.111793,-0.4393515,-2.568441,7.111793,0.01053087,-1.642441,5.718124,-0.2249411,-1.642441,5.718124,0.2249412,0.2249411,5.000625,0.2249412,-0.2249412,5.000625,0.2249412,0.2249411,7.275625,-0.1250588,-0.2249412,5.606002,0.1318061,-0.2249412,7.275625,-0.1250588,-0.2249412,5.606002,-0.3180763,-0.2249412,7.275625,-0.1250588,-0.2249412,5.606002,0.1318061,-0.2249412,9.075624,-0.08403211,-0.2249412,7.275625,-0.5749412,-0.2249412,9.075624,0.3658504,-1.642441,5.718124,0.2249412,-2.568441,7.111793,0.01053087,-1.642441,6.323503,0.1318061,-2.268886,7.111793,0.01053087,-2.268886,7.111793,-0.4393515,-1.642441,6.323503,-0.3180763,-2.268886,7.111793,0.01053087,-1.642441,6.323503,0.1318061,-0.2249412,5.000625,-0.2249411,-0.2249412,5.606002,-0.3180763,-1.642441,5.718124,-0.2249411,-1.642441,6.323503,-0.3180763,-0.2249412,7.275625,-0.5749412,0.2249411,7.275625,-0.5749412,-0.2249412,9.075624,-0.08403211,0.2249411,9.075624,-0.08403211,0.3542381,0,0.3542381,-0.3542381,0,0.3542381,0.2249411,5.000625,0.2249412,-0.2249412,5.000625,0.2249412,0.3542381,0,-0.3542381,0.3542381,0,0.3542381,0.2249411,5.000625,-0.2249411,0.2249411,5.000625,0.2249412 + } + PolygonVertexIndex: *684 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,47,-49,50,49,-49,47,51,-46,52,45,-52,50,52,-52,48,52,-51,53,52,-49,54,56,-56,57,55,-57,58,60,-60,59,61,-59,58,61,-63,63,62,-62,64,63,-62,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,77,-79,80,79,-79,77,81,-76,82,75,-82,80,82,-82,78,82,-81,83,82,-79,84,83,-79,83,85,-83,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,96,97,-96,95,97,-99,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,116,-116,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,159,-162,163,162,-162,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,173,-176,177,176,-176,178,180,-180,181,179,-181,182,181,-181,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,198,-198,200,196,-199,201,203,-203,204,202,-204,205,207,-207,207,208,-207,209,206,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,257,-257,259,257,-259,260,259,-259,257,261,-256,262,255,-262,260,262,-262,258,262,-261,263,262,-259,264,266,-266,267,265,-267,268,265,-268,269,268,-268,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,277,-277,277,279,-276,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,285,-288,289,288,-288,290,284,-290,287,290,-290,291,289,-285,285,291,-285,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,327,-327,329,331,-331,332,330,-332,333,335,-335,336,334,-336,337,339,-339,340,338,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348,349,351,-351,352,350,-352,353,355,-355,356,354,-356,357,359,-359,360,358,-360,361,360,-360,362,364,-364,363,365,-363,366,362,-366,367,365,-364,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2052 { + a: 0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *784 { + a: 13.47994,28.61065,7.133781,28.61065,12.75013,36.13876,7.863589,36.13876,3.789654,35.74439,-4.325111,35.74439,4.934042,40.45352,-5.469501,40.45352,10.6693,19.76065,4.323137,19.76065,9.939492,27.28877,5.052945,27.28877,9.094043,24.64168,8.395966,22.20926,2.747882,24.64168,3.445959,22.20926,4.296444,40.16846,3.152054,35.45933,-6.107102,40.16846,-4.962708,35.45933,-4.296443,38.42488,-3.100035,53.58684,6.1071,38.42488,4.910693,53.58684,7.863589,16.58366,9.423505,19.83239,12.75013,16.58366,11.19022,19.83239,-4.564172,38.30313,-3.367764,53.46509,5.839374,38.30313,4.642962,53.46509,1.212821,27.18627,1.942629,34.71438,7.558982,27.18627,6.829174,34.71438,3.502546,12.77749,5.269256,12.77749,1.94263,9.528756,6.829175,9.528756,1.212824,33.51555,7.558985,33.51555,1.910901,31.08313,6.860909,31.08313,-5.356855,-0.8862692,-7.831858,-5.1731,-7.831858,3.400563,-8.93262,0.0414601,-12.78186,3.400563,-10.11197,0.0414601,-10.11197,-1.72973,-8.93262,-1.72973,-12.78186,-5.1731,-15.25687,-0.8862692,-5.037607,13.51457,-3.477691,10.26583,-6.804318,13.51457,-8.364236,10.26583,-3.152052,35.27956,0.4922525,37.26415,0.620468,35.27956,3.1288,39.25286,-4.296443,39.98869,6.107101,39.98869,5.643001,39.25286,5.884091,39.071,-7.831858,25.98538,-12.78186,25.98538,-7.133781,28.4178,-13.47994,28.4178,4.564171,38.48826,-5.839374,38.48826,3.367763,53.65022,-4.642966,53.65022,7.847036,0.8908105,3.789654,-6.136781,3.789654,7.9184,0.8855949,1.440356,-4.325111,7.9184,-0.8855951,1.440356,-0.8855951,-0.3308351,0.8855949,-0.3308351,-4.325111,-6.136781,-5.066247,-0.8862692,-7.237368,2.874224,-6.21137,-2.869682,-8.395971,30.64259,-9.094048,33.075,-3.445962,30.64259,-2.747886,33.075,-9.094045,27.33508,-8.364236,34.8632,-2.747883,27.33508,-3.477691,34.8632,-1.129533,35.65451,-1.010117,37.5029,4.694981,35.65451,5.839374,40.36364,-1.067517,37.6391,-4.564172,40.36364,-4.341161,39.44596,2.085723,34.8614,4.64296,29.12135,-0.810524,34.8614,-3.367766,29.12135,12.78186,26.86647,7.831858,26.86647,13.47994,29.29889,7.133781,29.29889,3.737635,28.95658,-4.273093,28.95658,1.180395,34.69664,-1.715852,34.69664,-7.133781,28.90828,-13.47994,28.90828,-7.851439,36.31106,-12.75013,36.4364,-7.929789,36.4364,-1.212818,24.20113,-1.910896,21.76871,-7.55898,24.20113,-6.860903,21.76871,4.564172,39.7935,3.419781,35.08437,-5.839373,39.7935,-4.694983,35.08437,2.093655,23.622,-2.856351,23.622,2.791733,26.05441,-3.55443,26.05441,3.55443,22.05171,-2.791733,22.05171,2.82462,29.57982,-2.061924,29.57982,10.32083,28.77917,11.05064,21.25105,5.43429,28.77917,4.704482,21.25105,2.82462,20.08479,-2.061924,20.08479,1.264704,23.33352,-0.5020064,23.33352,3.100038,29.47917,-4.910688,29.47917,0.5427958,35.21923,-2.353451,35.21923,5.469501,38.51744,-4.934042,38.51744,4.273093,53.67941,-3.737635,53.67941,-9.971217,16.83967,-10.66929,19.27208,-5.021211,16.83967,-4.323133,19.27208,4.325111,34.99449,-3.789654,34.99449,5.469501,39.70362,-4.934042,39.70362,-2.148058,-8.876054,-1.264704,-7.346038,-1.264704,-10.40607,0.5020064,-10.40607,0.5020064,-7.346038,1.385363,-8.876054,10.32083,16.11918,5.43429,16.11918,8.760917,19.36792,6.994207,19.36792,11.05064,19.60041,10.35256,17.168,4.704482,19.60041,5.402559,17.168,8.913896,-1.533614,10.171,0.6437477,9.423505,-2.416285,11.19022,-2.416285,11.19022,0.6437477,12.07357,-0.8862692,-1.765592,36.03462,-1.212818,30.33266,-6.107835,36.03462,-7.55898,30.33266,-6.841321,37.73544,-2.82462,5.320986,-1.264704,8.569724,2.061924,5.320986,0.5020064,8.569724,2.791733,19.07091,-3.55443,19.07091,2.061924,26.59902,-2.82462,26.59902,5.052944,8.737286,6.61286,11.98602,9.939491,8.737286,8.37957,11.98602,9.094043,30.18385,2.747882,30.18385,8.364234,37.71196,5.590903,35.88581,6.37844,37.71196,3.300655,35.88581,-4.642966,30.16656,-2.085724,35.90662,3.367763,30.16656,0.8105231,35.90662,-10.171,21.30653,-10.22525,21.00946,-11.19022,21.30653,-12.75013,18.0578,-7.92979,18.0578,-3.737635,30.33134,-1.180395,36.0714,4.273093,30.33134,1.715852,36.0714,10.6693,24.01252,9.971226,21.58011,4.323138,24.01252,5.021215,21.58011,-8.760919,12.53535,-6.994207,12.53535,-10.32084,9.286611,-5.434291,9.286611,-11.05065,23.68419,-4.704484,23.68419,-10.35257,21.25178,-5.402561,21.25178,-10.66929,21.36196,-9.939486,28.89008,-4.323133,21.36196,-5.052942,28.89008,2.856351,14.79778,-2.093655,14.79778,3.55443,17.23019,-2.791733,17.23019,-0.5427949,35.54879,2.353453,35.54879,-3.100035,29.80873,4.910694,29.80873,-6.612858,19.91724,-5.052942,16.66851,-8.379568,19.91724,-9.939486,16.66851,6.37844,24.37563,5.785097,27.62436,8.364235,24.37563,6.804318,27.62436,4.934042,38.27394,-5.469501,38.27394,3.737635,53.4359,-4.273093,53.4359,3.100037,53.52847,4.296444,38.3665,-4.910689,53.52847,-6.107102,38.3665,5.331354,-8.876054,2.856351,-13.16289,2.856351,-4.589223,1.381765,-7.589942,-2.093655,-4.589223,-0.3894257,-7.589942,-0.3894257,-8.900062,1.381765,-8.900062,-2.093655,-13.16289,-4.568658,-8.876054,-2.628519,0.8908105,-1.180395,3.399034,-1.180395,-1.617413,1.715852,-1.617413,1.715852,3.399034,3.163976,0.8908105,-11.05065,19.87156,-10.32084,27.39968,-4.704483,19.87156,-5.434291,27.39968,2.263548,28.64419,0.8855948,19.6875,0.3308351,35.73081,0.4923577,28.64419,-1.440356,35.73081,-0.8855951,19.6875,1.394638,1.394638,1.394638,-1.394638,-1.394638,1.394638,-1.394638,-1.394638,-1.394638,-0.03604795,0.8742259,12.93565,1.394638,-0.03604795,0.8855951,19.65803,0.576474,14.83567,-0.8518028,14.83567,-0.8855949,19.65803,-0.5574797,12.93565,5.870543,17.5786,5.886281,15.16724,0.9727497,14.83006,1.034448,12.90837,-6.005077,14.96368,-5.963983,17.37475,-1.150655,12.7051,-1.068484,14.62655,-8.900062,19.39486,-7.589942,19.39486,-5.921443,14.85917,-5.921443,17.27059,6.466303,22.38518,6.466303,24.7966,10.11197,27.93662,8.932619,27.93662,-0.6920812,11.72421,1.079109,11.72421,-0.5574798,6.374006,0.8742259,6.374006,-0.9516777,19.33649,-6.515542,22.19433,-0.92321,21.74774,-6.487074,24.60558,1.058754,13.69251,0.8518028,8.080023,-0.7124357,13.69251,-0.576474,8.080023,1.252269,10.75766,-0.5189217,10.75766,1.252269,17.01257,-0.5189217,17.01257,0.8855953,19.59323,-0.8855948,19.59323,0.8855953,22.00464,-0.8855947,28.6553,0.8855954,28.6553,-1.394638,-0.03604794,-0.8855948,19.65803,1.394638,-0.03604794,0.8855951,19.65803,0.8855949,27.50533,-0.8855951,27.50533,0.8855949,34.85077,-0.8855951,34.85077,8.900062,19.66418,5.921443,15.1285,7.589942,19.66418,5.921443,17.53991,0.8855951,9.681292,-0.8855948,9.681292,0.8855951,15.93619,-0.8855948,15.93619,1.079109,15.9372,-0.6920812,15.9372,0.3894257,21.31948,-1.381765,21.31948,1.058754,17.44998,-0.7124357,17.44998,1.381765,20.13179,-0.3894257,20.13179,-1.72973,28.91682,0.0414601,28.91682,-0.8855948,22.3292,0.8855951,22.3292,0.885595,19.32391,-0.8855951,19.32391,0.8855948,28.38598,-0.8855951,21.73532,-0.8855951,28.38598,-1.252269,22.07088,-0.4923577,28.64419,0.5189217,22.07088,-0.3308351,35.73081,-2.263548,28.64419,1.440356,35.73081,-6.466304,22.11586,-10.11197,27.6673,-6.466304,24.52728,-8.93262,27.6673,1.72973,27.47786,1.252269,23.51371,-0.0414601,27.47786,-0.5189217,23.51371,0.8141664,19.60421,0.7856987,22.01545,6.37803,22.46204,6.349563,24.87329,0.8855951,27.0393,-0.8855949,27.0393,0.8855951,34.38474,-0.8855949,34.38474,1.394638,-0.03604794,-1.394638,-0.03604794,0.8855949,19.65803,-0.8855951,19.65803,1.394638,-0.03604796,-1.394638,-0.03604796,0.8855948,19.65803,-0.8855951,19.65803 + } + UVIndex: *684 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,47,48,50,49,48,47,51,45,52,45,51,50,52,51,48,52,50,53,52,48,54,56,55,57,55,56,58,60,59,59,61,58,58,61,62,63,62,61,64,63,61,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,77,78,80,79,78,77,81,75,82,75,81,80,82,81,78,82,80,83,82,78,84,83,78,83,85,82,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,96,97,95,95,97,98,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,116,115,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,159,161,163,162,161,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,173,175,177,176,175,178,180,179,181,179,180,182,181,180,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,198,197,200,196,198,201,203,202,204,202,203,205,207,206,207,208,206,209,206,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,257,256,259,257,258,260,259,258,257,261,255,262,255,261,260,262,261,258,262,260,263,262,258,264,266,265,267,265,266,268,265,267,269,268,267,270,272,271,273,271,272,274,276,275,277,275,276,278,277,276,277,279,275,280,282,281,283,281,282,284,286,285,287,285,286,288,285,287,289,288,287,290,284,289,287,290,289,291,289,284,285,291,284,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,327,326,329,331,330,332,330,331,333,335,334,336,334,335,337,339,338,340,338,339,341,343,342,344,342,343,345,347,346,348,346,347,349,351,350,352,350,351,353,355,354,356,354,355,357,359,358,360,358,359,361,360,359,362,364,363,363,365,362,366,362,365,367,365,363,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *228 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3030, "Material::leafsGreen", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1607843,0.7882353,0.6705883 + P: "DiffuseColor", "Color", "", "A",0.1607843,0.7882353,0.6705883 + } + } + + Material: 3046, "Material::woodBark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8862745,0.5137255,0.3411765 + P: "DiffuseColor", "Color", "", "A",0.8862745,0.5137255,0.3411765 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_thin, Model::RootNode + C: "OO",4802391682145434813,0 + + ;Geometry::, Model::Mesh tree_thin + C: "OO",4783943820010772098,4802391682145434813 + + ;Material::leafsGreen, Model::Mesh tree_thin + C: "OO",3030,4802391682145434813 + + ;Material::woodBark, Model::Mesh tree_thin + C: "OO",3046,4802391682145434813 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_thin.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin.fbx.import new file mode 100644 index 0000000..ace3dc7 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://cpihakma2ktve" +path="res://.godot/imported/tree_thin.fbx-a94024d8859690093ecefe43f36ee21a.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_thin.fbx" +dest_files=["res://.godot/imported/tree_thin.fbx-a94024d8859690093ecefe43f36ee21a.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_dark.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_dark.fbx new file mode 100644 index 0000000..84b7918 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_dark.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 847 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_thin_dark.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_thin_dark.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5432576335061960921, "Model::tree_thin_dark", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4924399644883455060, "Geometry::", "Mesh" { + Vertices: *2352 { + a: -3.423905,7.647891,-1.62108,-1.81198,7.647891,-1.62108,-3.238534,9.532882,-1.300008,-1.997352,9.532882,-1.300008,0.962572,9.075624,2.011274,-1.098578,9.075624,2.011274,1.253247,10.16063,2.514739,-1.389253,10.16063,2.514739,0.9028251,5.535567,-3.650486,1.708787,5.535567,-2.254518,0.7174535,7.420559,-3.329414,1.338045,7.420559,-2.254518,-1.81198,7.647891,-1.62108,-1.989292,7.111793,-1.313967,-1.006018,7.647891,-0.2251124,-1.360641,7.111793,-0.2251124,2.574497,10.16063,0.2262659,1.993147,9.075624,0.2262659,1.253247,10.16063,2.514739,0.962572,9.075624,2.011274,-1.389253,10.16063,-2.062207,-1.085366,13.97563,-1.535857,-2.710503,10.16063,0.2262659,-2.102728,13.97563,0.2262659,-1.997352,9.532882,-1.300008,-2.39357,9.991088,-0.6137365,-3.238534,9.532882,-1.300008,-2.842315,9.991088,-0.6137365,-2.710503,10.16063,0.2262659,-2.102728,13.97563,0.2262659,-1.389253,10.16063,2.514739,-1.085366,13.97563,1.988389,-3.423905,7.647891,-1.62108,-3.238534,9.532882,-1.300008,-4.229868,7.647891,-0.2251124,-3.859125,9.532882,-0.2251124,-2.842315,9.991088,-0.6137365,-3.066687,9.991088,-0.2251124,-3.238534,9.532882,-1.300008,-3.859125,9.532882,-0.2251124,-3.423905,7.647891,-1.62108,-4.229868,7.647891,-0.2251124,-3.246593,7.111793,-1.313967,-3.875245,7.111793,-0.2251124,-1.360641,7.111793,-0.2251124,-1.989292,7.111793,-1.313967,-1.989292,7.111793,0.8637429,-2.268886,7.111793,0.01053087,-3.246593,7.111793,0.8637429,-2.568441,7.111793,0.01053087,-2.568441,7.111793,-0.4393515,-2.268886,7.111793,-0.4393515,-3.246593,7.111793,-1.313967,-3.875245,7.111793,-0.2251124,-2.842315,9.991088,0.1635119,-3.238534,9.532882,0.8497831,-3.066687,9.991088,-0.2251124,-3.859125,9.532882,-0.2251124,-1.098578,9.075624,-1.558742,-1.745156,9.532882,-0.8631916,-1.577688,9.075624,-0.7288993,-2.26413,9.991088,-0.3895379,-1.389253,10.16063,-2.062207,-2.710503,10.16063,0.2262659,-2.583433,9.991088,0.1635119,-2.597214,9.949187,0.2262659,-1.989292,7.111793,0.8637429,-3.246593,7.111793,0.8637429,-1.81198,7.647891,1.170856,-3.423905,7.647891,1.170856,1.253247,10.16063,-2.062207,2.574497,10.16063,0.2262659,0.9493594,13.97563,-1.535857,1.966722,13.97563,0.2262659,1.993147,9.075624,0.2262659,0.962572,9.075624,-1.558742,0.962572,9.075624,2.011274,0.2249411,9.075624,0.3658504,-1.098578,9.075624,2.011274,-0.2249412,9.075624,0.3658504,-0.2249412,9.075624,-0.08403211,0.2249411,9.075624,-0.08403211,-1.098578,9.075624,-1.558742,-1.286827,9.075624,-0.2251124,-1.838291,9.075624,0.7300529,-1.577688,9.075624,-0.7288993,-3.875245,7.111793,-0.2251124,-4.229868,7.647891,-0.2251124,-3.246593,7.111793,0.8637429,-3.423905,7.647891,1.170856,-4.229868,7.647891,-0.2251124,-3.859125,9.532882,-0.2251124,-3.423905,7.647891,1.170856,-3.238534,9.532882,0.8497831,-1.838291,9.075624,0.7300529,-1.994265,9.5015,0.8551284,-1.098578,9.075624,2.011274,-1.389253,10.16063,2.514739,-2.014166,9.532882,0.8497831,-2.710503,10.16063,0.2262659,-2.597214,9.949187,0.2262659,-0.4358264,14.90298,0.8633547,-1.085366,13.97563,1.988389,-0.8036499,14.90298,0.2262659,-2.102728,13.97563,0.2262659,-3.246593,7.111793,-1.313967,-1.989292,7.111793,-1.313967,-3.423905,7.647891,-1.62108,-1.81198,7.647891,-1.62108,0.9493594,13.97563,1.988389,-1.085366,13.97563,1.988389,0.2998204,14.90298,0.8633547,-0.4358264,14.90298,0.8633547,-1.81198,7.647891,1.170856,-3.423905,7.647891,1.170856,-1.994265,9.5015,0.8551284,-3.238534,9.532882,0.8497831,-2.014166,9.532882,0.8497831,-1.006018,7.647891,-0.2251124,-1.360641,7.111793,-0.2251124,-1.81198,7.647891,1.170856,-1.989292,7.111793,0.8637429,1.253247,10.16063,-2.062207,0.962572,9.075624,-1.558742,2.574497,10.16063,0.2262659,1.993147,9.075624,0.2262659,-0.5317884,4.99947,-3.343374,0.725513,4.99947,-3.343374,-0.7091001,5.535567,-3.650486,0.9028251,5.535567,-3.650486,0.9028251,5.535567,-0.8585496,-0.7091001,5.535567,-0.8585496,0.7174535,7.420559,-1.179622,-0.5237286,7.420559,-1.179622,1.338045,7.420559,-2.254518,1.708787,5.535567,-2.254518,0.7174535,7.420559,-1.179622,0.9028251,5.535567,-0.8585496,0.7174535,7.420559,-1.179622,-0.5237286,7.420559,-1.179622,0.3212349,7.878765,-1.865894,-0.1275096,7.878765,-1.865894,1.966722,13.97563,0.2262659,0.9493594,13.97563,1.988389,0.6676439,14.90298,0.2262659,0.2998204,14.90298,0.8633547,-1.389253,10.16063,-2.062207,1.253247,10.16063,-2.062207,-1.085366,13.97563,-1.535857,0.9493594,13.97563,-1.535857,-1.160439,4.99947,-2.254518,-1.515063,5.535567,-2.254518,-0.5317884,4.99947,-1.165663,-0.7091001,5.535567,-0.8585496,-1.098578,9.075624,-1.558742,0.962572,9.075624,-1.558742,-1.389253,10.16063,-2.062207,1.253247,10.16063,-2.062207,0.5456069,7.878765,-2.254518,0.3212349,7.878765,-1.865894,0.3212349,7.878765,-2.643142,-0.1275096,7.878765,-2.643142,-0.1275096,7.878765,-1.865894,-0.3518821,7.878765,-2.254518,1.338045,7.420559,-2.254518,0.7174535,7.420559,-1.179622,0.5456069,7.878765,-2.254518,0.3212349,7.878765,-1.865894,1.708787,5.535567,-2.254518,1.354164,4.99947,-2.254518,0.9028251,5.535567,-0.8585496,0.725513,4.99947,-1.165663,-2.26413,9.991088,-0.3895379,-2.583433,9.991088,0.1635119,-2.39357,9.991088,-0.6137365,-2.842315,9.991088,-0.6137365,-2.842315,9.991088,0.1635119,-3.066687,9.991088,-0.2251124,-1.286827,9.075624,-0.2251124,-1.006018,7.647891,-0.2251124,-1.838291,9.075624,0.7300529,-1.81198,7.647891,1.170856,-1.994265,9.5015,0.8551284,0.7174535,7.420559,-3.329414,0.3212349,7.878765,-2.643142,-0.5237286,7.420559,-3.329414,-0.1275096,7.878765,-2.643142,-0.7091001,5.535567,-3.650486,0.9028251,5.535567,-3.650486,-0.5237286,7.420559,-3.329414,0.7174535,7.420559,-3.329414,1.338045,7.420559,-2.254518,0.5456069,7.878765,-2.254518,0.7174535,7.420559,-3.329414,0.3212349,7.878765,-2.643142,-1.81198,7.647891,-1.62108,-1.006018,7.647891,-0.2251124,-1.997352,9.532882,-1.300008,-1.577688,9.075624,-0.7288993,-1.745156,9.532882,-0.8631916,-1.286827,9.075624,-0.2251124,1.966722,13.97563,0.2262659,0.6676439,14.90298,0.2262659,0.9493594,13.97563,-1.535857,0.2998204,14.90298,-0.410823,-2.583433,9.991088,0.1635119,-2.597214,9.949187,0.2262659,-2.842315,9.991088,0.1635119,-3.238534,9.532882,0.8497831,-2.014166,9.532882,0.8497831,0.9493594,13.97563,-1.535857,0.2998204,14.90298,-0.410823,-1.085366,13.97563,-1.535857,-0.4358264,14.90298,-0.410823,0.9028251,5.535567,-3.650486,0.725513,4.99947,-3.343374,1.708787,5.535567,-2.254518,1.354164,4.99947,-2.254518,-0.1275096,7.878765,-2.643142,-0.3518821,7.878765,-2.254518,-0.5237286,7.420559,-3.329414,-1.14432,7.420559,-2.254518,-0.7091001,5.535567,-3.650486,-1.515063,5.535567,-2.254518,-0.5317884,4.99947,-3.343374,-1.160439,4.99947,-2.254518,-1.515063,5.535567,-2.254518,-1.14432,7.420559,-2.254518,-0.7091001,5.535567,-0.8585496,-0.5237286,7.420559,-1.179622,0.725513,4.99947,-1.165663,-0.5317884,4.99947,-1.165663,0.9028251,5.535567,-0.8585496,-0.7091001,5.535567,-0.8585496,-0.4358264,14.90298,-0.410823,-0.8036499,14.90298,0.2262659,-1.085366,13.97563,-1.535857,-2.102728,13.97563,0.2262659,-0.1275096,7.878765,-1.865894,-0.5237286,7.420559,-1.179622,-0.3518821,7.878765,-2.254518,-1.14432,7.420559,-2.254518,-1.745156,9.532882,-0.8631916,-2.26413,9.991088,-0.3895379,-1.997352,9.532882,-1.300008,-2.39357,9.991088,-0.6137365,1.253247,10.16063,2.514739,-1.389253,10.16063,2.514739,0.9493594,13.97563,1.988389,-1.085366,13.97563,1.988389,1.966722,13.97563,0.2262659,2.574497,10.16063,0.2262659,0.9493594,13.97563,1.988389,1.253247,10.16063,2.514739,1.354164,4.99947,-2.254518,0.725513,4.99947,-3.343374,0.725513,4.99947,-1.165663,0.3509684,4.99947,-1.927845,-0.5317884,4.99947,-1.165663,-0.09891412,4.99947,-1.927845,-0.09891412,4.99947,-2.260616,0.3509684,4.99947,-2.260616,-0.5317884,4.99947,-3.343374,-1.160439,4.99947,-2.254518,0.6676439,14.90298,0.2262659,0.2998204,14.90298,0.8633547,0.2998204,14.90298,-0.410823,-0.4358264,14.90298,-0.410823,-0.4358264,14.90298,0.8633547,-0.8036499,14.90298,0.2262659,-0.7091001,5.535567,-3.650486,-0.5237286,7.420559,-3.329414,-1.515063,5.535567,-2.254518,-1.14432,7.420559,-2.254518,-3.238534,9.532882,-1.300008,-1.81198,7.647891,-1.62108,-3.423905,7.647891,-1.62108,-1.997352,9.532882,-1.300008,0.2249411,7.275625,-0.5749412,0.2249411,5.000625,-0.2249411,0.2249411,9.075624,-0.08403211,0.2249411,7.275625,-0.1250588,0.2249411,9.075624,0.3658504,0.2249411,5.000625,0.2249412,0.2249411,9.075624,-0.08403211,0.2249411,5.000625,-0.2249411,0.2249411,7.275625,-0.5749412,0.2249411,7.275625,-0.1250588,0.2249411,9.075624,0.3658504,0.2249411,5.000625,0.2249412,1.253247,10.16063,2.514739,-1.098578,9.075624,2.011274,0.962572,9.075624,2.011274,-1.389253,10.16063,2.514739,0.7174535,7.420559,-3.329414,1.708787,5.535567,-2.254518,0.9028251,5.535567,-3.650486,1.338045,7.420559,-2.254518,0.3542381,0,0.3542381,0.3542381,0,-0.3542381,-0.3542381,0,0.3542381,-0.3542381,0,-0.3542381,-0.3542381,0,0.3542381,0.3542381,0,-0.3542381,0.3542381,0,0.3542381,-0.3542381,0,-0.3542381,-1.006018,7.647891,-0.2251124,-1.989292,7.111793,-1.313967,-1.81198,7.647891,-1.62108,-1.360641,7.111793,-0.2251124,0.3542381,0,-0.3542381,-0.2220534,3.29371,-0.2690754,-0.3542381,0,-0.3542381,-0.2249412,5.000625,-0.2249411,-0.1464244,3.776155,-0.2566013,0.2163579,3.776155,-0.2566013,0.2249411,5.000625,-0.2249411,0.1415999,3.29371,-0.2690754,-0.3542381,0,-0.3542381,-0.2220534,3.29371,-0.2690754,0.3542381,0,-0.3542381,-0.2249412,5.000625,-0.2249411,-0.1464244,3.776155,-0.2566013,0.2163579,3.776155,-0.2566013,0.2249411,5.000625,-0.2249411,0.1415999,3.29371,-0.2690754,1.253247,10.16063,2.514739,1.993147,9.075624,0.2262659,2.574497,10.16063,0.2262659,0.962572,9.075624,2.011274,0.2689236,4.46618,-1.504047,0.1757886,3.860802,-1.504047,0.2163579,3.776155,-0.2566013,0.1415999,3.29371,-0.2690754,0.2163579,3.776155,-0.2566013,0.1757886,3.860802,-1.504047,0.2689236,4.46618,-1.504047,0.1415999,3.29371,-0.2690754,-0.2740936,3.860802,-1.504047,-0.1809587,4.46618,-1.504047,-0.2220534,3.29371,-0.2690754,-0.1464244,3.776155,-0.2566013,-0.2220534,3.29371,-0.2690754,-0.1809587,4.46618,-1.504047,-0.2740936,3.860802,-1.504047,-0.1464244,3.776155,-0.2566013,-0.09891412,4.99947,-2.260616,-0.09891412,4.99947,-1.927845,-0.2740936,3.860802,-1.504047,-0.1809587,4.46618,-1.504047,-0.2740936,3.860802,-1.504047,-0.09891412,4.99947,-1.927845,-0.09891412,4.99947,-2.260616,-0.1809587,4.46618,-1.504047,-2.710503,10.16063,0.2262659,-1.085366,13.97563,-1.535857,-1.389253,10.16063,-2.062207,-2.102728,13.97563,0.2262659,-1.642441,5.718124,-0.2249411,-1.642441,6.323503,-0.3180763,-2.568441,7.111793,-0.4393515,-2.268886,7.111793,-0.4393515,-2.568441,7.111793,-0.4393515,-1.642441,6.323503,-0.3180763,-1.642441,5.718124,-0.2249411,-2.268886,7.111793,-0.4393515,-3.238534,9.532882,-1.300008,-2.39357,9.991088,-0.6137365,-1.997352,9.532882,-1.300008,-2.842315,9.991088,-0.6137365,0.1757886,3.860802,-1.504047,-0.2740936,3.860802,-1.504047,0.1415999,3.29371,-0.2690754,-0.2220534,3.29371,-0.2690754,0.1415999,3.29371,-0.2690754,-0.2740936,3.860802,-1.504047,0.1757886,3.860802,-1.504047,-0.2220534,3.29371,-0.2690754,-1.389253,10.16063,2.514739,-2.102728,13.97563,0.2262659,-2.710503,10.16063,0.2262659,-1.085366,13.97563,1.988389,-0.2249412,5.000625,0.2249412,-1.642441,5.718124,0.2249412,-0.2249412,5.606002,0.1318061,-1.642441,6.323503,0.1318061,-0.2249412,5.606002,0.1318061,-1.642441,5.718124,0.2249412,-0.2249412,5.000625,0.2249412,-1.642441,6.323503,0.1318061,0.2689236,4.46618,-1.504047,0.2163579,3.776155,-0.2566013,-0.1809587,4.46618,-1.504047,-0.1464244,3.776155,-0.2566013,-0.1809587,4.46618,-1.504047,0.2163579,3.776155,-0.2566013,0.2689236,4.46618,-1.504047,-0.1464244,3.776155,-0.2566013,-4.229868,7.647891,-0.2251124,-3.238534,9.532882,-1.300008,-3.423905,7.647891,-1.62108,-3.859125,9.532882,-0.2251124,-0.2249412,5.606002,-0.3180763,-0.2249412,5.606002,0.1318061,-1.642441,6.323503,-0.3180763,-1.642441,6.323503,0.1318061,-1.642441,6.323503,-0.3180763,-0.2249412,5.606002,0.1318061,-0.2249412,5.606002,-0.3180763,-1.642441,6.323503,0.1318061,-0.2249412,5.000625,-0.2249411,0.2249411,5.000625,-0.2249411,-0.2249412,5.606002,-0.3180763,0.2249411,7.275625,-0.5749412,-0.2249412,7.275625,-0.5749412,-0.2249412,5.606002,-0.3180763,0.2249411,5.000625,-0.2249411,-0.2249412,5.000625,-0.2249411,0.2249411,7.275625,-0.5749412,-0.2249412,7.275625,-0.5749412,-0.3542381,0,-0.3542381,-0.2249412,5.000625,-0.2249411,-0.3542381,0,0.3542381,-0.2249412,5.000625,0.2249412,-0.3542381,0,0.3542381,-0.2249412,5.000625,-0.2249411,-0.3542381,0,-0.3542381,-0.2249412,5.000625,0.2249412,0.2249411,7.275625,-0.1250588,-0.2249412,7.275625,-0.1250588,0.2249411,9.075624,0.3658504,-0.2249412,9.075624,0.3658504,0.2249411,9.075624,0.3658504,-0.2249412,7.275625,-0.1250588,0.2249411,7.275625,-0.1250588,-0.2249412,9.075624,0.3658504,0.3509684,4.99947,-2.260616,0.1757886,3.860802,-1.504047,0.3509684,4.99947,-1.927845,0.2689236,4.46618,-1.504047,0.3509684,4.99947,-1.927845,0.1757886,3.860802,-1.504047,0.3509684,4.99947,-2.260616,0.2689236,4.46618,-1.504047,-3.238534,9.532882,-1.300008,-3.066687,9.991088,-0.2251124,-2.842315,9.991088,-0.6137365,-3.859125,9.532882,-0.2251124,-0.2249412,5.000625,0.2249412,-0.2249412,5.000625,-0.2249411,-1.642441,5.718124,0.2249412,-1.642441,5.718124,-0.2249411,-1.642441,5.718124,0.2249412,-0.2249412,5.000625,-0.2249411,-0.2249412,5.000625,0.2249412,-1.642441,5.718124,-0.2249411,-0.2740936,3.860802,-1.504047,0.1757886,3.860802,-1.504047,-0.09891412,4.99947,-2.260616,0.3509684,4.99947,-2.260616,-0.09891412,4.99947,-2.260616,0.1757886,3.860802,-1.504047,-0.2740936,3.860802,-1.504047,0.3509684,4.99947,-2.260616,0.2689236,4.46618,-1.504047,-0.1809587,4.46618,-1.504047,0.3509684,4.99947,-1.927845,-0.09891412,4.99947,-1.927845,0.3509684,4.99947,-1.927845,-0.1809587,4.46618,-1.504047,0.2689236,4.46618,-1.504047,-0.09891412,4.99947,-1.927845,-2.568441,7.111793,-0.4393515,-2.568441,7.111793,0.01053087,-1.642441,5.718124,-0.2249411,-1.642441,5.718124,0.2249412,-1.642441,5.718124,-0.2249411,-2.568441,7.111793,0.01053087,-2.568441,7.111793,-0.4393515,-1.642441,5.718124,0.2249412,0.2249411,5.000625,0.2249412,-0.2249412,5.000625,0.2249412,0.2249411,7.275625,-0.1250588,-0.2249412,5.606002,0.1318061,-0.2249412,7.275625,-0.1250588,0.2249411,7.275625,-0.1250588,-0.2249412,5.000625,0.2249412,0.2249411,5.000625,0.2249412,-0.2249412,5.606002,0.1318061,-0.2249412,7.275625,-0.1250588,-0.2249412,5.606002,-0.3180763,-0.2249412,7.275625,-0.1250588,-0.2249412,5.606002,0.1318061,-0.2249412,9.075624,-0.08403211,-0.2249412,7.275625,-0.5749412,-0.2249412,9.075624,0.3658504,-0.2249412,5.606002,0.1318061,-0.2249412,7.275625,-0.1250588,-0.2249412,5.606002,-0.3180763,-0.2249412,9.075624,-0.08403211,-0.2249412,7.275625,-0.5749412,-0.2249412,9.075624,0.3658504,-1.642441,5.718124,0.2249412,-2.568441,7.111793,0.01053087,-1.642441,6.323503,0.1318061,-2.268886,7.111793,0.01053087,-1.642441,6.323503,0.1318061,-2.568441,7.111793,0.01053087,-1.642441,5.718124,0.2249412,-2.268886,7.111793,0.01053087,-2.268886,7.111793,-0.4393515,-1.642441,6.323503,-0.3180763,-2.268886,7.111793,0.01053087,-1.642441,6.323503,0.1318061,-2.268886,7.111793,0.01053087,-1.642441,6.323503,-0.3180763,-2.268886,7.111793,-0.4393515,-1.642441,6.323503,0.1318061,-0.2249412,5.000625,-0.2249411,-0.2249412,5.606002,-0.3180763,-1.642441,5.718124,-0.2249411,-1.642441,6.323503,-0.3180763,-1.642441,5.718124,-0.2249411,-0.2249412,5.606002,-0.3180763,-0.2249412,5.000625,-0.2249411,-1.642441,6.323503,-0.3180763,-0.2249412,7.275625,-0.5749412,0.2249411,7.275625,-0.5749412,-0.2249412,9.075624,-0.08403211,0.2249411,9.075624,-0.08403211,-0.2249412,9.075624,-0.08403211,0.2249411,7.275625,-0.5749412,-0.2249412,7.275625,-0.5749412,0.2249411,9.075624,-0.08403211,-3.246593,7.111793,-1.313967,-4.229868,7.647891,-0.2251124,-3.423905,7.647891,-1.62108,-3.875245,7.111793,-0.2251124,-1.989292,7.111793,0.8637429,-1.989292,7.111793,-1.313967,-1.360641,7.111793,-0.2251124,-2.268886,7.111793,0.01053087,-3.246593,7.111793,0.8637429,-2.568441,7.111793,0.01053087,-2.568441,7.111793,-0.4393515,-2.268886,7.111793,-0.4393515,-3.246593,7.111793,-1.313967,-3.875245,7.111793,-0.2251124,-3.066687,9.991088,-0.2251124,-3.238534,9.532882,0.8497831,-2.842315,9.991088,0.1635119,-3.859125,9.532882,-0.2251124,-1.577688,9.075624,-0.7288993,-1.745156,9.532882,-0.8631916,-1.098578,9.075624,-1.558742,-2.26413,9.991088,-0.3895379,-1.389253,10.16063,-2.062207,-2.710503,10.16063,0.2262659,-2.583433,9.991088,0.1635119,-2.597214,9.949187,0.2262659,-1.81198,7.647891,1.170856,-3.246593,7.111793,0.8637429,-1.989292,7.111793,0.8637429,-3.423905,7.647891,1.170856,0.9493594,13.97563,-1.535857,2.574497,10.16063,0.2262659,1.253247,10.16063,-2.062207,1.966722,13.97563,0.2262659,0.3542381,0,0.3542381,-0.3542381,0,0.3542381,0.2249411,5.000625,0.2249412,-0.2249412,5.000625,0.2249412,0.2249411,5.000625,0.2249412,-0.3542381,0,0.3542381,0.3542381,0,0.3542381,-0.2249412,5.000625,0.2249412,0.962572,9.075624,2.011274,0.962572,9.075624,-1.558742,1.993147,9.075624,0.2262659,0.2249411,9.075624,0.3658504,-1.098578,9.075624,2.011274,-0.2249412,9.075624,0.3658504,-0.2249412,9.075624,-0.08403211,0.2249411,9.075624,-0.08403211,-1.098578,9.075624,-1.558742,-1.286827,9.075624,-0.2251124,-1.838291,9.075624,0.7300529,-1.577688,9.075624,-0.7288993,0.3542381,0,-0.3542381,0.3542381,0,0.3542381,0.2249411,5.000625,-0.2249411,0.2249411,5.000625,0.2249412,0.2249411,5.000625,-0.2249411,0.3542381,0,0.3542381,0.3542381,0,-0.3542381,0.2249411,5.000625,0.2249412,-3.246593,7.111793,0.8637429,-4.229868,7.647891,-0.2251124,-3.875245,7.111793,-0.2251124,-3.423905,7.647891,1.170856,-3.423905,7.647891,1.170856,-3.859125,9.532882,-0.2251124,-4.229868,7.647891,-0.2251124,-3.238534,9.532882,0.8497831,-1.098578,9.075624,2.011274,-1.994265,9.5015,0.8551284,-1.838291,9.075624,0.7300529,-1.389253,10.16063,2.514739,-2.014166,9.532882,0.8497831,-2.710503,10.16063,0.2262659,-2.597214,9.949187,0.2262659,-0.8036499,14.90298,0.2262659,-1.085366,13.97563,1.988389,-0.4358264,14.90298,0.8633547,-2.102728,13.97563,0.2262659,-3.423905,7.647891,-1.62108,-1.989292,7.111793,-1.313967,-3.246593,7.111793,-1.313967,-1.81198,7.647891,-1.62108,0.2998204,14.90298,0.8633547,-1.085366,13.97563,1.988389,0.9493594,13.97563,1.988389,-0.4358264,14.90298,0.8633547,-1.994265,9.5015,0.8551284,-3.423905,7.647891,1.170856,-1.81198,7.647891,1.170856,-3.238534,9.532882,0.8497831,-2.014166,9.532882,0.8497831,-1.81198,7.647891,1.170856,-1.360641,7.111793,-0.2251124,-1.006018,7.647891,-0.2251124,-1.989292,7.111793,0.8637429,2.574497,10.16063,0.2262659,0.962572,9.075624,-1.558742,1.253247,10.16063,-2.062207,1.993147,9.075624,0.2262659,-0.7091001,5.535567,-3.650486,0.725513,4.99947,-3.343374,-0.5317884,4.99947,-3.343374,0.9028251,5.535567,-3.650486,0.7174535,7.420559,-1.179622,-0.7091001,5.535567,-0.8585496,0.9028251,5.535567,-0.8585496,-0.5237286,7.420559,-1.179622,0.7174535,7.420559,-1.179622,1.708787,5.535567,-2.254518,1.338045,7.420559,-2.254518,0.9028251,5.535567,-0.8585496,0.3212349,7.878765,-1.865894,-0.5237286,7.420559,-1.179622,0.7174535,7.420559,-1.179622,-0.1275096,7.878765,-1.865894,0.6676439,14.90298,0.2262659,0.9493594,13.97563,1.988389,1.966722,13.97563,0.2262659,0.2998204,14.90298,0.8633547,-1.085366,13.97563,-1.535857,1.253247,10.16063,-2.062207,-1.389253,10.16063,-2.062207,0.9493594,13.97563,-1.535857,-0.5317884,4.99947,-1.165663,-1.515063,5.535567,-2.254518,-1.160439,4.99947,-2.254518,-0.7091001,5.535567,-0.8585496,-1.389253,10.16063,-2.062207,0.962572,9.075624,-1.558742,-1.098578,9.075624,-1.558742,1.253247,10.16063,-2.062207,0.3212349,7.878765,-2.643142,0.3212349,7.878765,-1.865894,0.5456069,7.878765,-2.254518,-0.1275096,7.878765,-2.643142,-0.1275096,7.878765,-1.865894,-0.3518821,7.878765,-2.254518,0.5456069,7.878765,-2.254518,0.7174535,7.420559,-1.179622,1.338045,7.420559,-2.254518,0.3212349,7.878765,-1.865894,0.9028251,5.535567,-0.8585496,1.354164,4.99947,-2.254518,1.708787,5.535567,-2.254518,0.725513,4.99947,-1.165663,-2.39357,9.991088,-0.6137365,-2.583433,9.991088,0.1635119,-2.26413,9.991088,-0.3895379,-2.842315,9.991088,-0.6137365,-2.842315,9.991088,0.1635119,-3.066687,9.991088,-0.2251124,-1.838291,9.075624,0.7300529,-1.006018,7.647891,-0.2251124,-1.286827,9.075624,-0.2251124,-1.81198,7.647891,1.170856,-1.994265,9.5015,0.8551284,-0.5237286,7.420559,-3.329414,0.3212349,7.878765,-2.643142,0.7174535,7.420559,-3.329414,-0.1275096,7.878765,-2.643142,-0.5237286,7.420559,-3.329414,0.9028251,5.535567,-3.650486,-0.7091001,5.535567,-3.650486,0.7174535,7.420559,-3.329414,0.7174535,7.420559,-3.329414,0.5456069,7.878765,-2.254518,1.338045,7.420559,-2.254518,0.3212349,7.878765,-2.643142,-1.997352,9.532882,-1.300008,-1.006018,7.647891,-0.2251124,-1.81198,7.647891,-1.62108,-1.577688,9.075624,-0.7288993,-1.745156,9.532882,-0.8631916,-1.286827,9.075624,-0.2251124,0.9493594,13.97563,-1.535857,0.6676439,14.90298,0.2262659,1.966722,13.97563,0.2262659,0.2998204,14.90298,-0.410823,-2.842315,9.991088,0.1635119,-2.597214,9.949187,0.2262659,-2.583433,9.991088,0.1635119,-3.238534,9.532882,0.8497831,-2.014166,9.532882,0.8497831,-1.085366,13.97563,-1.535857,0.2998204,14.90298,-0.410823,0.9493594,13.97563,-1.535857,-0.4358264,14.90298,-0.410823,1.708787,5.535567,-2.254518,0.725513,4.99947,-3.343374,0.9028251,5.535567,-3.650486,1.354164,4.99947,-2.254518,-0.5237286,7.420559,-3.329414,-0.3518821,7.878765,-2.254518,-0.1275096,7.878765,-2.643142,-1.14432,7.420559,-2.254518,-0.5317884,4.99947,-3.343374,-1.515063,5.535567,-2.254518,-0.7091001,5.535567,-3.650486,-1.160439,4.99947,-2.254518,-0.7091001,5.535567,-0.8585496,-1.14432,7.420559,-2.254518,-1.515063,5.535567,-2.254518,-0.5237286,7.420559,-1.179622,0.9028251,5.535567,-0.8585496,-0.5317884,4.99947,-1.165663,0.725513,4.99947,-1.165663,-0.7091001,5.535567,-0.8585496,-1.085366,13.97563,-1.535857,-0.8036499,14.90298,0.2262659,-0.4358264,14.90298,-0.410823,-2.102728,13.97563,0.2262659,-0.3518821,7.878765,-2.254518,-0.5237286,7.420559,-1.179622,-0.1275096,7.878765,-1.865894,-1.14432,7.420559,-2.254518,-1.997352,9.532882,-1.300008,-2.26413,9.991088,-0.3895379,-1.745156,9.532882,-0.8631916,-2.39357,9.991088,-0.6137365,0.9493594,13.97563,1.988389,-1.389253,10.16063,2.514739,1.253247,10.16063,2.514739,-1.085366,13.97563,1.988389,0.9493594,13.97563,1.988389,2.574497,10.16063,0.2262659,1.966722,13.97563,0.2262659,1.253247,10.16063,2.514739,0.725513,4.99947,-1.165663,0.725513,4.99947,-3.343374,1.354164,4.99947,-2.254518,0.3509684,4.99947,-1.927845,-0.5317884,4.99947,-1.165663,-0.09891412,4.99947,-1.927845,-0.09891412,4.99947,-2.260616,0.3509684,4.99947,-2.260616,-0.5317884,4.99947,-3.343374,-1.160439,4.99947,-2.254518,0.2998204,14.90298,-0.410823,0.2998204,14.90298,0.8633547,0.6676439,14.90298,0.2262659,-0.4358264,14.90298,-0.410823,-0.4358264,14.90298,0.8633547,-0.8036499,14.90298,0.2262659,-1.515063,5.535567,-2.254518,-0.5237286,7.420559,-3.329414,-0.7091001,5.535567,-3.650486,-1.14432,7.420559,-2.254518 + } + PolygonVertexIndex: *1368 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,47,-49,50,49,-49,47,51,-46,52,45,-52,50,52,-52,48,52,-51,53,52,-49,54,56,-56,57,55,-57,58,60,-60,59,61,-59,58,61,-63,63,62,-62,64,63,-62,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,77,-79,80,79,-79,77,81,-76,82,75,-82,80,82,-82,78,82,-81,83,82,-79,84,83,-79,83,85,-83,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,96,97,-96,95,97,-99,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,116,-116,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,159,-162,163,162,-162,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,173,-176,177,176,-176,178,180,-180,181,179,-181,182,181,-181,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,198,-198,200,196,-199,201,203,-203,204,202,-204,205,207,-207,207,208,-207,209,206,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,257,-257,259,257,-259,260,259,-259,257,261,-256,262,255,-262,260,262,-262,258,262,-261,263,262,-259,264,266,-266,267,265,-267,268,265,-268,269,268,-268,270,272,-272,273,271,-273,274,276,-276,275,277,-275,278,280,-280,281,279,-281,282,281,-281,281,283,-280,284,286,-286,285,287,-285,287,288,-285,289,287,-286,290,292,-292,291,293,-291,294,296,-296,295,297,-295,298,300,-300,301,299,-301,302,304,-304,303,305,-303,306,308,-308,307,309,-307,310,312,-312,313,311,-313,314,311,-314,315,314,-314,316,310,-316,313,316,-316,317,315,-311,311,317,-311,318,320,-320,319,321,-319,319,322,-322,322,323,-322,320,324,-324,324,321,-324,323,325,-321,325,319,-321,326,328,-328,327,329,-327,330,332,-332,333,331,-333,334,336,-336,335,337,-335,338,340,-340,341,339,-341,342,344,-344,343,345,-343,346,348,-348,349,347,-349,350,352,-352,351,353,-351,354,356,-356,355,357,-355,358,360,-360,361,359,-361,362,364,-364,363,365,-363,366,368,-368,367,369,-367,370,372,-372,373,371,-373,374,376,-376,375,377,-375,378,380,-380,379,381,-379,382,384,-384,385,383,-385,386,388,-388,387,389,-387,390,392,-392,393,391,-393,394,396,-396,395,397,-395,398,400,-400,399,401,-399,402,404,-404,405,403,-405,406,408,-408,407,409,-407,410,412,-412,413,411,-413,414,413,-413,415,417,-417,416,418,-416,418,419,-416,420,422,-422,423,421,-423,424,426,-426,425,427,-425,428,430,-430,431,429,-431,432,434,-434,433,435,-433,436,438,-438,439,437,-439,440,442,-442,441,443,-441,444,446,-446,445,447,-445,448,450,-450,451,449,-451,452,454,-454,453,455,-453,456,458,-458,459,457,-459,460,462,-462,461,463,-461,464,466,-466,467,465,-467,468,470,-470,469,471,-469,472,474,-474,475,473,-475,476,478,-478,477,479,-477,480,482,-482,483,481,-483,484,483,-483,485,487,-487,486,488,-486,488,489,-486,490,492,-492,491,493,-491,494,490,-494,495,493,-492,496,498,-498,499,497,-499,498,500,-500,499,501,-498,502,504,-504,505,503,-505,506,508,-508,507,509,-507,510,512,-512,513,511,-513,514,516,-516,515,517,-515,518,520,-520,521,519,-521,522,524,-524,523,525,-523,526,528,-528,529,527,-529,530,532,-532,531,533,-531,534,536,-536,535,537,-535,538,540,-540,539,541,-539,541,542,-539,541,543,-543,543,544,-543,545,541,-540,539,546,-546,546,544,-546,546,542,-545,546,547,-543,548,550,-550,549,551,-549,552,554,-554,555,553,-555,555,554,-557,556,557,-556,557,558,-556,557,559,-559,560,562,-562,561,563,-561,564,566,-566,565,567,-565,568,570,-570,571,569,-571,572,574,-574,573,575,-573,576,578,-578,577,579,-577,579,580,-577,579,581,-581,581,582,-581,583,579,-578,577,584,-584,584,582,-584,584,580,-583,584,585,-581,585,586,-581,587,585,-585,588,590,-590,591,589,-591,592,594,-594,593,595,-593,596,598,-598,597,599,-597,600,602,-602,601,603,-601,604,606,-606,607,604,-606,607,605,-609,609,607,-609,608,610,-610,611,613,-613,612,614,-612,615,617,-617,616,618,-616,619,621,-621,620,622,-620,623,625,-625,624,626,-624,626,627,-624,628,630,-630,629,631,-629,632,634,-634,633,635,-633,636,638,-638,637,639,-637,640,642,-642,641,643,-641,644,646,-646,645,647,-645,648,650,-650,649,651,-649,652,654,-654,653,655,-653,656,658,-658,657,659,-657,660,662,-662,661,663,-661,664,666,-666,665,667,-665,668,670,-670,669,671,-669,669,672,-672,672,673,-672,674,676,-676,675,677,-675,678,680,-680,679,681,-679,682,684,-684,683,685,-683,683,686,-686,686,687,-686,688,690,-690,689,691,-689,691,692,-689,693,695,-695,694,696,-694,697,699,-699,698,700,-698,701,703,-703,702,704,-702,705,707,-707,706,708,-706,708,709,-706,706,710,-709,711,713,-713,712,714,-712,715,717,-717,718,715,-717,716,719,-719,720,722,-722,721,723,-721,724,726,-726,725,727,-725,728,730,-730,729,731,-729,732,734,-734,733,735,-733,736,738,-738,737,739,-737,740,742,-742,741,743,-741,744,746,-746,745,747,-745,748,750,-750,749,751,-749,752,754,-754,753,755,-753,756,758,-758,757,759,-757,760,762,-762,761,763,-761,764,766,-766,765,767,-765,767,768,-765,767,769,-769,769,770,-769,771,767,-766,765,772,-772,772,770,-772,772,768,-771,772,773,-769,774,776,-776,775,777,-775,775,778,-778,778,779,-778,780,782,-782,781,783,-781 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *4104 { + a: 0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.4209152,-0.9071,0,0.4209152,-0.9071,0,0.4209152,-0.9071,0,0.4209152,-0.9071,0,0.4209152,-0.9071,0,0.4209152,-0.9071,-0.8537297,-0.1679125,0.4929007,-0.8537297,-0.1679125,0.4929007,-0.8537297,-0.1679125,0.4929007,-0.8537297,-0.1679125,0.4929007,-0.8537297,-0.1679125,0.4929007,-0.8537297,-0.1679125,0.4929007,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.7514544,0.4970798,0.4338525,-0.7514544,0.4970798,0.4338525,-0.7514544,0.4970798,0.4338525,-0.7514544,0.4970798,0.4338525,-0.7514544,0.4970798,0.4338525,-0.7514544,0.4970798,0.4338525,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,0,-0.02584753,0.9996659,-0.7855719,0.4209146,-0.4535502,-0.7855719,0.4209146,-0.4535502,-0.7855719,0.4209146,-0.4535502,-0.7855719,0.4209146,-0.4535502,-0.7855719,0.4209146,-0.4535502,-0.7855719,0.4209146,-0.4535502,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,-0.987482,0.1519202,0.0424236,-0.987482,0.1519202,0.0424236,-0.987482,0.1519202,0.0424236,-0.987482,0.1519202,0.0424236,-0.987482,0.1519202,0.0424236,-0.987482,0.1519202,0.0424236,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,0.9822875,-0.151121,-0.1107864,0.9822875,-0.151121,-0.1107864,0.9822875,-0.151121,-0.1107864,0.9822875,-0.151121,-0.1107864,0.9822875,-0.151121,-0.1107864,0.9822875,-0.151121,-0.1107864,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,0.9883717,-0.1520571,0,0.9883717,-0.1520571,0,0.9883717,-0.1520571,0,0.9883717,-0.1520571,0,0.9883717,-0.1520571,0,0.9883717,-0.1520571,0,0.8578988,-0.1366735,0.4953081,0.8578988,-0.1366735,0.4953081,0.8578988,-0.1366735,0.4953081,0.8578988,-0.1366735,0.4953081,0.8578988,-0.1366735,0.4953081,0.8578988,-0.1366735,0.4953081,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,0.1520573,0.9883717,0,0.1520573,0.9883717,0,0.1520573,0.9883717,0,0.1520573,0.9883717,0,0.1520573,0.9883717,0,0.1520573,0.9883717,0,-0.8316636,0.5552799,0,-0.8316636,0.5552799,0,-0.8316636,0.5552799,0,-0.8316636,0.5552799,0,-0.8316636,0.5552799,0,-0.8316636,0.5552799,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,0.9087681,0.4173016,0,0.9087681,0.4173016,0,0.9087681,0.4173016,0,0.9087681,0.4173016,0,0.9087681,0.4173016,0,0.9087681,0.4173016,0.8578987,-0.1366736,-0.4953081,0.8578987,-0.1366736,-0.4953081,0.8578987,-0.1366736,-0.4953081,0.8578987,-0.1366736,-0.4953081,0.8578987,-0.1366736,-0.4953081,0.8578987,-0.1366736,-0.4953081,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,-0.07674031,-0.1516089,-0.9854571,-0.07674031,-0.1516089,-0.9854571,-0.07674031,-0.1516089,-0.9854571,-0.07674031,-0.1516089,-0.9854571,-0.07674031,-0.1516089,-0.9854571,-0.07674031,-0.1516089,-0.9854571,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,-0.8750492,-0.4840339,0,-0.8750492,-0.4840339,0,-0.8750492,-0.4840339,0,-0.8750492,-0.4840339,0,-0.8750492,-0.4840339,0,-0.8750492,-0.4840339,0.8537294,-0.1679126,0.4929011,0.8537294,-0.1679126,0.4929011,0.8537294,-0.1679126,0.4929011,0.8537294,-0.1679126,0.4929011,0.8537294,-0.1679126,0.4929011,0.8537294,-0.1679126,0.4929011,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,-0.4516143,-0.8922133,0,-0.4516143,-0.8922133,0,-0.4516143,-0.8922133,0,-0.4516143,-0.8922133,0,-0.4516143,-0.8922133,0,-0.4516143,-0.8922133,0,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,0.9996659,-0.02584752,0,0.9996659,-0.02584752,0,0.9996659,-0.02584752,0,0.9996659,-0.02584752,0,0.9996659,-0.02584752,0,0.9996659,-0.02584752,0,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,-0.9883717,0.1520572,0,-0.9883717,0.1520572,0,-0.9883717,0.1520572,0,-0.9883717,0.1520572,0,-0.9883717,0.1520572,0,-0.9883717,0.1520572,0,0.4808863,-0.8316637,0.27764,0.4808863,-0.8316637,0.27764,0.4808863,-0.8316637,0.27764,0.4808863,-0.8316637,0.27764,0.4808863,-0.8316637,0.27764,0.4808863,-0.8316637,0.27764,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,0.4516141,0.8922134,0,0.4516141,0.8922134,0,0.4516141,0.8922134,0,0.4516141,0.8922134,0,0.4516141,0.8922134,0,0.4516141,0.8922134,0,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,0.5534118,0.8329077,0,0.5534118,0.8329077,0,0.5534118,0.8329077,0,0.5534118,0.8329077,0,0.5534118,0.8329077,0,0.5534118,0.8329077,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,-0.6221551,-0.782894,0,-0.6221551,-0.782894,0,-0.6221551,-0.782894,0,-0.6221551,-0.782894,0,-0.6221551,-0.782894,0,-0.6221551,-0.782894,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,0.8329077,0.553412,0,0.8329077,0.553412,0,0.8329077,0.553412,0,0.8329077,0.553412,0,0.8329077,0.553412,0,0.8329077,0.553412,0,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,-0.7828935,-0.6221557,0,-0.7828935,-0.6221557,0,-0.7828935,-0.6221557,0,-0.7828935,-0.6221557,0,-0.7828935,-0.6221557,0,-0.7828935,-0.6221557,0,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,0.07674035,0.151609,0.985457,0.07674035,0.151609,0.985457,0.07674035,0.151609,0.985457,0.07674035,0.151609,0.985457,0.07674035,0.151609,0.985457,0.07674035,0.151609,0.985457,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0.7514544,0.4970796,0.4338527,0.7514544,0.4970796,0.4338527,0.7514544,0.4970796,0.4338527,0.7514544,0.4970796,0.4338527,0.7514544,0.4970796,0.4338527,0.7514544,0.4970796,0.4338527,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4808863,-0.8316637,-0.2776399,0.4808863,-0.8316637,-0.2776399,0.4808863,-0.8316637,-0.2776399,0.4808863,-0.8316637,-0.2776399,0.4808863,-0.8316637,-0.2776399,0.4808863,-0.8316637,-0.2776399,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0.7855719,0.4209146,0.4535502,0,0.4970797,-0.867705,0,0.4970797,-0.867705,0,0.4970797,-0.867705,0,0.4970797,-0.867705,0,0.4970797,-0.867705,0,0.4970797,-0.867705,-0.8578987,-0.1366735,0.4953082,-0.8578987,-0.1366735,0.4953082,-0.8578987,-0.1366735,0.4953082,-0.8578987,-0.1366735,0.4953082,-0.8578987,-0.1366735,0.4953082,-0.8578987,-0.1366735,0.4953082,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,-0.02584752,-0.9996659,0,-0.02584752,-0.9996659,0,-0.02584752,-0.9996659,0,-0.02584752,-0.9996659,0,-0.02584752,-0.9996659,0,-0.02584752,-0.9996659,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,-0.9996659,-0.02584753,0,-0.9996659,-0.02584753,0,-0.9996659,-0.02584753,0,-0.9996659,-0.02584753,0,-0.9996659,-0.02584753,0,-0.9996659,-0.02584753,0,0.7514545,0.4970796,-0.4338528,0.7514545,0.4970796,-0.4338528,0.7514545,0.4970796,-0.4338528,0.7514545,0.4970796,-0.4338528,0.7514545,0.4970796,-0.4338528,0.7514545,0.4970796,-0.4338528,0.8537294,-0.1679125,-0.492901,0.8537294,-0.1679125,-0.492901,0.8537294,-0.1679125,-0.492901,0.8537294,-0.1679125,-0.492901,0.8537294,-0.1679125,-0.492901,0.8537294,-0.1679125,-0.492901,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.7855718,0.4209148,-0.4535501,0.5508414,-0.7716421,-0.3180286,0.5508414,-0.7716421,-0.3180286,0.5508414,-0.7716421,-0.3180286,0.5508414,-0.7716421,-0.3180286,0.5508414,-0.7716421,-0.3180286,0.5508414,-0.7716421,-0.3180286,0,0.4970799,0.8677047,0,0.4970799,0.8677047,0,0.4970799,0.8677047,0,0.4970799,0.8677047,0,0.4970799,0.8677047,0,0.4970799,0.8677047,0,-0.771642,-0.6360571,0,-0.771642,-0.6360571,0,-0.771642,-0.6360571,0,-0.771642,-0.6360571,0,-0.771642,-0.6360571,0,-0.771642,-0.6360571,0,-0.1679125,-0.9858019,0,-0.1679125,-0.9858019,0,-0.1679125,-0.9858019,0,-0.1679125,-0.9858019,0,-0.1679125,-0.9858019,0,-0.1679125,-0.9858019,0,-0.1679125,-0.9858019,0,-0.1679125,-0.9858019,0,-0.1679125,-0.9858019,-0.7514545,0.4970798,-0.4338525,-0.7514545,0.4970798,-0.4338525,-0.7514545,0.4970798,-0.4338525,-0.7514545,0.4970798,-0.4338525,-0.7514545,0.4970798,-0.4338525,-0.7514545,0.4970798,-0.4338525,-0.7855719,0.4209144,0.4535502,-0.7855719,0.4209144,0.4535502,-0.7855719,0.4209144,0.4535502,-0.7855719,0.4209144,0.4535502,-0.7855719,0.4209144,0.4535502,-0.7855719,0.4209144,0.4535502,0,0.4970797,0.8677049,0,0.4970797,0.8677049,0,0.4970797,0.8677049,0,0.4970797,0.8677049,0,0.4970797,0.8677049,0,0.4970797,0.8677049,0,-0.1679127,-0.9858019,0,-0.1679127,-0.9858019,0,-0.1679127,-0.9858019,0,-0.1679127,-0.9858019,0,-0.1679127,-0.9858019,0,-0.1679127,-0.9858019,-0.8537295,-0.1679126,-0.4929009,-0.8537295,-0.1679126,-0.4929009,-0.8537295,-0.1679126,-0.4929009,-0.8537295,-0.1679126,-0.4929009,-0.8537295,-0.1679126,-0.4929009,-0.8537295,-0.1679126,-0.4929009,0,-0.8316636,-0.5552799,0,-0.8316636,-0.5552799,0,-0.8316636,-0.5552799,0,-0.8316636,-0.5552799,0,-0.8316636,-0.5552799,0,-0.8316636,-0.5552799,-0.5508414,-0.7716421,-0.3180286,-0.5508414,-0.7716421,-0.3180286,-0.5508414,-0.7716421,-0.3180286,-0.5508414,-0.7716421,-0.3180286,-0.5508414,-0.7716421,-0.3180286,-0.5508414,-0.7716421,-0.3180286,0,-0.1366736,0.9906161,0,-0.1366736,0.9906161,0,-0.1366736,0.9906161,0,-0.1366736,0.9906161,0,-0.1366736,0.9906161,0,-0.1366736,0.9906161,0.7514541,0.4970803,-0.4338523,0.7514541,0.4970803,-0.4338523,0.7514541,0.4970803,-0.4338523,0.7514541,0.4970803,-0.4338523,0.7514541,0.4970803,-0.4338523,0.7514541,0.4970803,-0.4338523,0,0.4209146,0.9071002,0,0.4209146,0.9071002,0,0.4209146,0.9071002,0,0.4209146,0.9071002,0,0.4209146,0.9071002,0,0.4209146,0.9071002,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4808865,-0.8316636,-0.27764,-0.4808865,-0.8316636,-0.27764,-0.4808865,-0.8316636,-0.27764,-0.4808865,-0.8316636,-0.27764,-0.4808865,-0.8316636,-0.27764,-0.4808865,-0.8316636,-0.27764,-0.7514542,0.4970804,-0.4338521,-0.7514542,0.4970804,-0.4338521,-0.7514542,0.4970804,-0.4338521,-0.7514542,0.4970804,-0.4338521,-0.7514542,0.4970804,-0.4338521,-0.7514542,0.4970804,-0.4338521,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.8537294,-0.1679125,-0.492901,-0.8537294,-0.1679125,-0.492901,-0.8537294,-0.1679125,-0.492901,-0.8537294,-0.1679125,-0.492901,-0.8537294,-0.1679125,-0.492901,-0.8537294,-0.1679125,-0.492901,-0.8537294,-0.1679125,-0.492901,-0.8537294,-0.1679125,-0.492901,-0.8537294,-0.1679125,-0.492901,0,-0.8316639,0.5552794,0,-0.8316639,0.5552794,0,-0.8316639,0.5552794,0,-0.8316639,0.5552794,0,-0.8316639,0.5552794,0,-0.8316639,0.5552794,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,0,-0.1679126,0.9858019,-0.4808865,-0.8316637,0.2776397,-0.4808865,-0.8316637,0.2776397,-0.4808865,-0.8316637,0.2776397,-0.4808865,-0.8316637,0.2776397,-0.4808865,-0.8316637,0.2776397,-0.4808865,-0.8316637,0.2776397,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.8537294,-0.1679126,0.492901,-0.5508414,-0.7716421,0.3180286,-0.5508414,-0.7716421,0.3180286,-0.5508414,-0.7716421,0.3180286,-0.5508414,-0.7716421,0.3180286,-0.5508414,-0.7716421,0.3180286,-0.5508414,-0.7716421,0.3180286,0,-0.8316638,-0.5552796,0,-0.8316638,-0.5552796,0,-0.8316638,-0.5552796,0,-0.8316638,-0.5552796,0,-0.8316638,-0.5552796,0,-0.8316638,-0.5552796,0,-0.8316638,-0.5552796,0,-0.8316638,-0.5552796,0,-0.8316638,-0.5552796,0,-0.7716421,0.636057,0,-0.7716421,0.636057,0,-0.7716421,0.636057,0,-0.7716421,0.636057,0,-0.7716421,0.636057,0,-0.7716421,0.636057,-0.7514544,0.4970802,0.4338519,-0.7514544,0.4970802,0.4338519,-0.7514544,0.4970802,0.4338519,-0.7514544,0.4970802,0.4338519,-0.7514544,0.4970802,0.4338519,-0.7514544,0.4970802,0.4338519,0.4808864,-0.8316637,0.2776398,0.4808864,-0.8316637,0.2776398,0.4808864,-0.8316637,0.2776398,0.4808864,-0.8316637,0.2776398,0.4808864,-0.8316637,0.2776398,0.4808864,-0.8316637,0.2776398,0.7514544,0.4970802,0.4338521,0.7514544,0.4970802,0.4338521,0.7514544,0.4970802,0.4338521,0.7514544,0.4970802,0.4338521,0.7514544,0.4970802,0.4338521,0.7514544,0.4970802,0.4338521,0.8537294,-0.1679126,-0.492901,0.8537294,-0.1679126,-0.492901,0.8537294,-0.1679126,-0.492901,0.8537294,-0.1679126,-0.492901,0.8537294,-0.1679126,-0.492901,0.8537294,-0.1679126,-0.492901,0,0.4970804,-0.8677045,0,0.4970804,-0.8677045,0,0.4970804,-0.8677045,0,0.4970804,-0.8677045,0,0.4970804,-0.8677045,0,0.4970804,-0.8677045,0.5508414,-0.7716422,0.3180285,0.5508414,-0.7716422,0.3180285,0.5508414,-0.7716422,0.3180285,0.5508414,-0.7716422,0.3180285,0.5508414,-0.7716422,0.3180285,0.5508414,-0.7716422,0.3180285,0.4808864,-0.8316636,-0.27764,0.4808864,-0.8316636,-0.27764,0.4808864,-0.8316636,-0.27764,0.4808864,-0.8316636,-0.27764,0.4808864,-0.8316636,-0.27764,0.4808864,-0.8316636,-0.27764,-0.4808865,-0.8316636,0.27764,-0.4808865,-0.8316636,0.27764,-0.4808865,-0.8316636,0.27764,-0.4808865,-0.8316636,0.27764,-0.4808865,-0.8316636,0.27764,-0.4808865,-0.8316636,0.27764,0,-0.1366739,-0.990616,0,-0.1366739,-0.990616,0,-0.1366739,-0.990616,0,-0.1366739,-0.990616,0,-0.1366739,-0.990616,0,-0.1366739,-0.990616,-0.8578987,-0.1366736,-0.4953082,-0.8578987,-0.1366736,-0.4953082,-0.8578987,-0.1366736,-0.4953082,-0.8578987,-0.1366736,-0.4953082,-0.8578987,-0.1366736,-0.4953082,-0.8578987,-0.1366736,-0.4953082,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.8537296,-0.1679126,0.4929008,0.8537296,-0.1679126,0.4929008,0.8537296,-0.1679126,0.4929008,0.8537296,-0.1679126,0.4929008,0.8537296,-0.1679126,0.4929008,0.8537296,-0.1679126,0.4929008 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1568 { + a: 13.47994,28.61065,7.133781,28.61065,12.75013,36.13876,7.863589,36.13876,3.789654,35.74439,-4.325111,35.74439,4.934042,40.45352,-5.469501,40.45352,10.6693,19.76065,4.323137,19.76065,9.939492,27.28877,5.052945,27.28877,9.094043,24.64168,8.395966,22.20926,2.747882,24.64168,3.445959,22.20926,4.296444,40.16846,3.152054,35.45933,-6.107102,40.16846,-4.962708,35.45933,-4.296443,38.42488,-3.100035,53.58684,6.1071,38.42488,4.910693,53.58684,7.863589,16.58366,9.423505,19.83239,12.75013,16.58366,11.19022,19.83239,-4.564172,38.30313,-3.367764,53.46509,5.839374,38.30313,4.642962,53.46509,1.212821,27.18627,1.942629,34.71438,7.558982,27.18627,6.829174,34.71438,3.502546,12.77749,5.269256,12.77749,1.94263,9.528756,6.829175,9.528756,1.212824,33.51555,7.558985,33.51555,1.910901,31.08313,6.860909,31.08313,-5.356855,-0.8862692,-7.831858,-5.1731,-7.831858,3.400563,-8.93262,0.0414601,-12.78186,3.400563,-10.11197,0.0414601,-10.11197,-1.72973,-8.93262,-1.72973,-12.78186,-5.1731,-15.25687,-0.8862692,-5.037607,13.51457,-3.477691,10.26583,-6.804318,13.51457,-8.364236,10.26583,-3.152052,35.27956,0.4922525,37.26415,0.620468,35.27956,3.1288,39.25286,-4.296443,39.98869,6.107101,39.98869,5.643001,39.25286,5.884091,39.071,-7.831858,25.98538,-12.78186,25.98538,-7.133781,28.4178,-13.47994,28.4178,4.564171,38.48826,-5.839374,38.48826,3.367763,53.65022,-4.642966,53.65022,7.847036,0.8908105,3.789654,-6.136781,3.789654,7.9184,0.8855949,1.440356,-4.325111,7.9184,-0.8855951,1.440356,-0.8855951,-0.3308351,0.8855949,-0.3308351,-4.325111,-6.136781,-5.066247,-0.8862692,-7.237368,2.874224,-6.21137,-2.869682,-8.395971,30.64259,-9.094048,33.075,-3.445962,30.64259,-2.747886,33.075,-9.094045,27.33508,-8.364236,34.8632,-2.747883,27.33508,-3.477691,34.8632,-1.129533,35.65451,-1.010117,37.5029,4.694981,35.65451,5.839374,40.36364,-1.067517,37.6391,-4.564172,40.36364,-4.341161,39.44596,2.085723,34.8614,4.64296,29.12135,-0.810524,34.8614,-3.367766,29.12135,12.78186,26.86647,7.831858,26.86647,13.47994,29.29889,7.133781,29.29889,3.737635,28.95658,-4.273093,28.95658,1.180395,34.69664,-1.715852,34.69664,-7.133781,28.90828,-13.47994,28.90828,-7.851439,36.31106,-12.75013,36.4364,-7.929789,36.4364,-1.212818,24.20113,-1.910896,21.76871,-7.55898,24.20113,-6.860903,21.76871,4.564172,39.7935,3.419781,35.08437,-5.839373,39.7935,-4.694983,35.08437,2.093655,23.622,-2.856351,23.622,2.791733,26.05441,-3.55443,26.05441,3.55443,22.05171,-2.791733,22.05171,2.82462,29.57982,-2.061924,29.57982,10.32083,28.77917,11.05064,21.25105,5.43429,28.77917,4.704482,21.25105,2.82462,20.08479,-2.061924,20.08479,1.264704,23.33352,-0.5020064,23.33352,3.100038,29.47917,-4.910688,29.47917,0.5427958,35.21923,-2.353451,35.21923,5.469501,38.51744,-4.934042,38.51744,4.273093,53.67941,-3.737635,53.67941,-9.971217,16.83967,-10.66929,19.27208,-5.021211,16.83967,-4.323133,19.27208,4.325111,34.99449,-3.789654,34.99449,5.469501,39.70362,-4.934042,39.70362,-2.148058,-8.876054,-1.264704,-7.346038,-1.264704,-10.40607,0.5020064,-10.40607,0.5020064,-7.346038,1.385363,-8.876054,10.32083,16.11918,5.43429,16.11918,8.760917,19.36792,6.994207,19.36792,11.05064,19.60041,10.35256,17.168,4.704482,19.60041,5.402559,17.168,8.913896,-1.533614,10.171,0.6437477,9.423505,-2.416285,11.19022,-2.416285,11.19022,0.6437477,12.07357,-0.8862692,-1.765592,36.03462,-1.212818,30.33266,-6.107835,36.03462,-7.55898,30.33266,-6.841321,37.73544,-2.82462,5.320986,-1.264704,8.569724,2.061924,5.320986,0.5020064,8.569724,2.791733,19.07091,-3.55443,19.07091,2.061924,26.59902,-2.82462,26.59902,5.052944,8.737286,6.61286,11.98602,9.939491,8.737286,8.37957,11.98602,9.094043,30.18385,2.747882,30.18385,8.364234,37.71196,5.590903,35.88581,6.37844,37.71196,3.300655,35.88581,-4.642966,30.16656,-2.085724,35.90662,3.367763,30.16656,0.8105231,35.90662,-10.171,21.30653,-10.22525,21.00946,-11.19022,21.30653,-12.75013,18.0578,-7.92979,18.0578,-3.737635,30.33134,-1.180395,36.0714,4.273093,30.33134,1.715852,36.0714,10.6693,24.01252,9.971226,21.58011,4.323138,24.01252,5.021215,21.58011,-8.760919,12.53535,-6.994207,12.53535,-10.32084,9.286611,-5.434291,9.286611,-11.05065,23.68419,-4.704484,23.68419,-10.35257,21.25178,-5.402561,21.25178,-10.66929,21.36196,-9.939486,28.89008,-4.323133,21.36196,-5.052942,28.89008,2.856351,14.79778,-2.093655,14.79778,3.55443,17.23019,-2.791733,17.23019,-0.5427949,35.54879,2.353453,35.54879,-3.100035,29.80873,4.910694,29.80873,-6.612858,19.91724,-5.052942,16.66851,-8.379568,19.91724,-9.939486,16.66851,6.37844,24.37563,5.785097,27.62436,8.364235,24.37563,6.804318,27.62436,4.934042,38.27394,-5.469501,38.27394,3.737635,53.4359,-4.273093,53.4359,3.100037,53.52847,4.296444,38.3665,-4.910689,53.52847,-6.107102,38.3665,5.331354,-8.876054,2.856351,-13.16289,2.856351,-4.589223,1.381765,-7.589942,-2.093655,-4.589223,-0.3894257,-7.589942,-0.3894257,-8.900062,1.381765,-8.900062,-2.093655,-13.16289,-4.568658,-8.876054,-2.628519,0.8908105,-1.180395,3.399034,-1.180395,-1.617413,1.715852,-1.617413,1.715852,3.399034,3.163976,0.8908105,-11.05065,19.87156,-10.32084,27.39968,-4.704483,19.87156,-5.434291,27.39968,12.75013,36.13876,7.133781,28.61065,13.47994,28.61065,7.863589,36.13876,2.263548,28.64419,0.8855948,19.6875,0.3308351,35.73081,0.4923577,28.64419,-1.440356,35.73081,-0.8855951,19.6875,0.3308351,35.73081,0.8855948,19.6875,2.263548,28.64419,0.4923577,28.64419,-1.440356,35.73081,-0.8855951,19.6875,4.934042,40.45352,-4.325111,35.74439,3.789654,35.74439,-5.469501,40.45352,9.939492,27.28877,4.323137,19.76065,10.6693,19.76065,5.052945,27.28877,1.394638,1.394638,1.394638,-1.394638,-1.394638,1.394638,-1.394638,-1.394638,-1.394638,1.394638,1.394638,-1.394638,1.394638,1.394638,-1.394638,-1.394638,2.747882,24.64168,8.395966,22.20926,9.094043,24.64168,3.445959,22.20926,-1.394638,-0.03604795,0.8742259,12.93565,1.394638,-0.03604795,0.8855951,19.65803,0.576474,14.83567,-0.8518028,14.83567,-0.8855949,19.65803,-0.5574797,12.93565,1.394638,-0.03604795,0.8742259,12.93565,-1.394638,-0.03604795,0.8855951,19.65803,0.576474,14.83567,-0.8518028,14.83567,-0.8855949,19.65803,-0.5574797,12.93565,-6.107102,40.16846,3.152054,35.45933,4.296444,40.16846,-4.962708,35.45933,5.870543,17.5786,5.886281,15.16724,0.9727497,14.83006,1.034448,12.90837,0.9727497,14.83006,5.886281,15.16724,5.870543,17.5786,1.034448,12.90837,-6.005077,14.96368,-5.963983,17.37475,-1.150655,12.7051,-1.068484,14.62655,-1.150655,12.7051,-5.963983,17.37475,-6.005077,14.96368,-1.068484,14.62655,-8.900062,19.39486,-7.589942,19.39486,-5.921443,14.85917,-5.921443,17.27059,-5.921443,14.85917,-7.589942,19.39486,-8.900062,19.39486,-5.921443,17.27059,6.1071,38.42488,-3.100035,53.58684,-4.296443,38.42488,4.910693,53.58684,6.466303,22.38518,6.466303,24.7966,10.11197,27.93662,8.932619,27.93662,10.11197,27.93662,6.466303,24.7966,6.466303,22.38518,8.932619,27.93662,12.75013,16.58366,9.423505,19.83239,7.863589,16.58366,11.19022,19.83239,-0.6920812,11.72421,1.079109,11.72421,-0.5574798,6.374006,0.8742259,6.374006,-0.5574798,6.374006,1.079109,11.72421,-0.6920812,11.72421,0.8742259,6.374006,5.839374,38.30313,-3.367764,53.46509,-4.564172,38.30313,4.642962,53.46509,-0.9516777,19.33649,-6.515542,22.19433,-0.92321,21.74774,-6.487074,24.60558,-0.92321,21.74774,-6.515542,22.19433,-0.9516777,19.33649,-6.487074,24.60558,1.058754,13.69251,0.8518028,8.080023,-0.7124357,13.69251,-0.576474,8.080023,-0.7124357,13.69251,0.8518028,8.080023,1.058754,13.69251,-0.576474,8.080023,7.558982,27.18627,1.942629,34.71438,1.212821,27.18627,6.829174,34.71438,1.252269,10.75766,-0.5189217,10.75766,1.252269,17.01257,-0.5189217,17.01257,1.252269,17.01257,-0.5189217,10.75766,1.252269,10.75766,-0.5189217,17.01257,0.8855953,19.59323,-0.8855948,19.59323,0.8855953,22.00464,-0.8855947,28.6553,0.8855954,28.6553,0.8855953,22.00464,-0.8855948,19.59323,0.8855953,19.59323,-0.8855947,28.6553,0.8855954,28.6553,-1.394638,-0.03604794,-0.8855948,19.65803,1.394638,-0.03604794,0.8855951,19.65803,1.394638,-0.03604794,-0.8855948,19.65803,-1.394638,-0.03604794,0.8855951,19.65803,0.8855949,27.50533,-0.8855951,27.50533,0.8855949,34.85077,-0.8855951,34.85077,0.8855949,34.85077,-0.8855951,27.50533,0.8855949,27.50533,-0.8855951,34.85077,8.900062,19.66418,5.921443,15.1285,7.589942,19.66418,5.921443,17.53991,7.589942,19.66418,5.921443,15.1285,8.900062,19.66418,5.921443,17.53991,1.94263,9.528756,5.269256,12.77749,3.502546,12.77749,6.829175,9.528756,0.8855951,9.681292,-0.8855948,9.681292,0.8855951,15.93619,-0.8855948,15.93619,0.8855951,15.93619,-0.8855948,9.681292,0.8855951,9.681292,-0.8855948,15.93619,1.079109,15.9372,-0.6920812,15.9372,0.3894257,21.31948,-1.381765,21.31948,0.3894257,21.31948,-0.6920812,15.9372,1.079109,15.9372,-1.381765,21.31948,1.058754,17.44998,-0.7124357,17.44998,1.381765,20.13179,-0.3894257,20.13179,1.381765,20.13179,-0.7124357,17.44998,1.058754,17.44998,-0.3894257,20.13179,-1.72973,28.91682,0.0414601,28.91682,-0.8855948,22.3292,0.8855951,22.3292,-0.8855948,22.3292,0.0414601,28.91682,-1.72973,28.91682,0.8855951,22.3292,0.885595,19.32391,-0.8855951,19.32391,0.8855948,28.38598,-0.8855951,21.73532,-0.8855951,28.38598,0.8855948,28.38598,-0.8855951,19.32391,0.885595,19.32391,-0.8855951,21.73532,-0.8855951,28.38598,-1.252269,22.07088,-0.4923577,28.64419,0.5189217,22.07088,-0.3308351,35.73081,-2.263548,28.64419,1.440356,35.73081,0.5189217,22.07088,-0.4923577,28.64419,-1.252269,22.07088,-0.3308351,35.73081,-2.263548,28.64419,1.440356,35.73081,-6.466304,22.11586,-10.11197,27.6673,-6.466304,24.52728,-8.93262,27.6673,-6.466304,24.52728,-10.11197,27.6673,-6.466304,22.11586,-8.93262,27.6673,1.72973,27.47786,1.252269,23.51371,-0.0414601,27.47786,-0.5189217,23.51371,-0.0414601,27.47786,1.252269,23.51371,1.72973,27.47786,-0.5189217,23.51371,0.8141664,19.60421,0.7856987,22.01545,6.37803,22.46204,6.349563,24.87329,6.37803,22.46204,0.7856987,22.01545,0.8141664,19.60421,6.349563,24.87329,0.8855951,27.0393,-0.8855949,27.0393,0.8855951,34.38474,-0.8855949,34.38474,0.8855951,34.38474,-0.8855949,27.0393,0.8855951,27.0393,-0.8855949,34.38474,1.910901,31.08313,7.558985,33.51555,1.212824,33.51555,6.860909,31.08313,-7.831858,3.400563,-7.831858,-5.1731,-5.356855,-0.8862692,-8.93262,0.0414601,-12.78186,3.400563,-10.11197,0.0414601,-10.11197,-1.72973,-8.93262,-1.72973,-12.78186,-5.1731,-15.25687,-0.8862692,-6.804318,13.51457,-3.477691,10.26583,-5.037607,13.51457,-8.364236,10.26583,0.620468,35.27956,0.4922525,37.26415,-3.152052,35.27956,3.1288,39.25286,-4.296443,39.98869,6.107101,39.98869,5.643001,39.25286,5.884091,39.071,-7.133781,28.4178,-12.78186,25.98538,-7.831858,25.98538,-13.47994,28.4178,3.367763,53.65022,-5.839374,38.48826,4.564171,38.48826,-4.642966,53.65022,1.394638,-0.03604794,-1.394638,-0.03604794,0.8855949,19.65803,-0.8855951,19.65803,0.8855949,19.65803,-1.394638,-0.03604794,1.394638,-0.03604794,-0.8855951,19.65803,3.789654,7.9184,3.789654,-6.136781,7.847036,0.8908105,0.8855949,1.440356,-4.325111,7.9184,-0.8855951,1.440356,-0.8855951,-0.3308351,0.8855949,-0.3308351,-4.325111,-6.136781,-5.066247,-0.8862692,-7.237368,2.874224,-6.21137,-2.869682,1.394638,-0.03604796,-1.394638,-0.03604796,0.8855948,19.65803,-0.8855951,19.65803,0.8855948,19.65803,-1.394638,-0.03604796,1.394638,-0.03604796,-0.8855951,19.65803,-3.445962,30.64259,-9.094048,33.075,-8.395971,30.64259,-2.747886,33.075,-2.747883,27.33508,-8.364236,34.8632,-9.094045,27.33508,-3.477691,34.8632,4.694981,35.65451,-1.010117,37.5029,-1.129533,35.65451,5.839374,40.36364,-1.067517,37.6391,-4.564172,40.36364,-4.341161,39.44596,-0.810524,34.8614,4.64296,29.12135,2.085723,34.8614,-3.367766,29.12135,13.47994,29.29889,7.831858,26.86647,12.78186,26.86647,7.133781,29.29889,1.180395,34.69664,-4.273093,28.95658,3.737635,28.95658,-1.715852,34.69664,-7.851439,36.31106,-13.47994,28.90828,-7.133781,28.90828,-12.75013,36.4364,-7.929789,36.4364,-7.55898,24.20113,-1.910896,21.76871,-1.212818,24.20113,-6.860903,21.76871,-5.839373,39.7935,3.419781,35.08437,4.564172,39.7935,-4.694983,35.08437,2.791733,26.05441,-2.856351,23.622,2.093655,23.622,-3.55443,26.05441,2.82462,29.57982,-2.791733,22.05171,3.55443,22.05171,-2.061924,29.57982,5.43429,28.77917,11.05064,21.25105,10.32083,28.77917,4.704482,21.25105,1.264704,23.33352,-2.061924,20.08479,2.82462,20.08479,-0.5020064,23.33352,0.5427958,35.21923,-4.910688,29.47917,3.100038,29.47917,-2.353451,35.21923,4.273093,53.67941,-4.934042,38.51744,5.469501,38.51744,-3.737635,53.67941,-5.021211,16.83967,-10.66929,19.27208,-9.971217,16.83967,-4.323133,19.27208,5.469501,39.70362,-3.789654,34.99449,4.325111,34.99449,-4.934042,39.70362,-1.264704,-10.40607,-1.264704,-7.346038,-2.148058,-8.876054,0.5020064,-10.40607,0.5020064,-7.346038,1.385363,-8.876054,8.760917,19.36792,5.43429,16.11918,10.32083,16.11918,6.994207,19.36792,4.704482,19.60041,10.35256,17.168,11.05064,19.60041,5.402559,17.168,9.423505,-2.416285,10.171,0.6437477,8.913896,-1.533614,11.19022,-2.416285,11.19022,0.6437477,12.07357,-0.8862692,-6.107835,36.03462,-1.212818,30.33266,-1.765592,36.03462,-7.55898,30.33266,-6.841321,37.73544,2.061924,5.320986,-1.264704,8.569724,-2.82462,5.320986,0.5020064,8.569724,2.061924,26.59902,-3.55443,19.07091,2.791733,19.07091,-2.82462,26.59902,9.939491,8.737286,6.61286,11.98602,5.052944,8.737286,8.37957,11.98602,8.364234,37.71196,2.747882,30.18385,9.094043,30.18385,5.590903,35.88581,6.37844,37.71196,3.300655,35.88581,3.367763,30.16656,-2.085724,35.90662,-4.642966,30.16656,0.8105231,35.90662,-11.19022,21.30653,-10.22525,21.00946,-10.171,21.30653,-12.75013,18.0578,-7.92979,18.0578,4.273093,30.33134,-1.180395,36.0714,-3.737635,30.33134,1.715852,36.0714,4.323138,24.01252,9.971226,21.58011,10.6693,24.01252,5.021215,21.58011,-10.32084,9.286611,-6.994207,12.53535,-8.760919,12.53535,-5.434291,9.286611,-10.35257,21.25178,-4.704484,23.68419,-11.05065,23.68419,-5.402561,21.25178,-4.323133,21.36196,-9.939486,28.89008,-10.66929,21.36196,-5.052942,28.89008,3.55443,17.23019,-2.093655,14.79778,2.856351,14.79778,-2.791733,17.23019,-3.100035,29.80873,2.353453,35.54879,-0.5427949,35.54879,4.910694,29.80873,-8.379568,19.91724,-5.052942,16.66851,-6.612858,19.91724,-9.939486,16.66851,8.364235,24.37563,5.785097,27.62436,6.37844,24.37563,6.804318,27.62436,3.737635,53.4359,-5.469501,38.27394,4.934042,38.27394,-4.273093,53.4359,-4.910689,53.52847,4.296444,38.3665,3.100037,53.52847,-6.107102,38.3665,2.856351,-4.589223,2.856351,-13.16289,5.331354,-8.876054,1.381765,-7.589942,-2.093655,-4.589223,-0.3894257,-7.589942,-0.3894257,-8.900062,1.381765,-8.900062,-2.093655,-13.16289,-4.568658,-8.876054,-1.180395,-1.617413,-1.180395,3.399034,-2.628519,0.8908105,1.715852,-1.617413,1.715852,3.399034,3.163976,0.8908105,-4.704483,19.87156,-10.32084,27.39968,-11.05065,19.87156,-5.434291,27.39968 + } + UVIndex: *1368 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,47,48,50,49,48,47,51,45,52,45,51,50,52,51,48,52,50,53,52,48,54,56,55,57,55,56,58,60,59,59,61,58,58,61,62,63,62,61,64,63,61,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,77,78,80,79,78,77,81,75,82,75,81,80,82,81,78,82,80,83,82,78,84,83,78,83,85,82,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,96,97,95,95,97,98,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,116,115,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,159,161,163,162,161,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,173,175,177,176,175,178,180,179,181,179,180,182,181,180,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,198,197,200,196,198,201,203,202,204,202,203,205,207,206,207,208,206,209,206,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,257,256,259,257,258,260,259,258,257,261,255,262,255,261,260,262,261,258,262,260,263,262,258,264,266,265,267,265,266,268,265,267,269,268,267,270,272,271,273,271,272,274,276,275,275,277,274,278,280,279,281,279,280,282,281,280,281,283,279,284,286,285,285,287,284,287,288,284,289,287,285,290,292,291,291,293,290,294,296,295,295,297,294,298,300,299,301,299,300,302,304,303,303,305,302,306,308,307,307,309,306,310,312,311,313,311,312,314,311,313,315,314,313,316,310,315,313,316,315,317,315,310,311,317,310,318,320,319,319,321,318,319,322,321,322,323,321,320,324,323,324,321,323,323,325,320,325,319,320,326,328,327,327,329,326,330,332,331,333,331,332,334,336,335,335,337,334,338,340,339,341,339,340,342,344,343,343,345,342,346,348,347,349,347,348,350,352,351,351,353,350,354,356,355,355,357,354,358,360,359,361,359,360,362,364,363,363,365,362,366,368,367,367,369,366,370,372,371,373,371,372,374,376,375,375,377,374,378,380,379,379,381,378,382,384,383,385,383,384,386,388,387,387,389,386,390,392,391,393,391,392,394,396,395,395,397,394,398,400,399,399,401,398,402,404,403,405,403,404,406,408,407,407,409,406,410,412,411,413,411,412,414,413,412,415,417,416,416,418,415,418,419,415,420,422,421,423,421,422,424,426,425,425,427,424,428,430,429,431,429,430,432,434,433,433,435,432,436,438,437,439,437,438,440,442,441,441,443,440,444,446,445,445,447,444,448,450,449,451,449,450,452,454,453,453,455,452,456,458,457,459,457,458,460,462,461,461,463,460,464,466,465,467,465,466,468,470,469,469,471,468,472,474,473,475,473,474,476,478,477,477,479,476,480,482,481,483,481,482,484,483,482,485,487,486,486,488,485,488,489,485,490,492,491,491,493,490,494,490,493,495,493,491,496,498,497,499,497,498,498,500,499,499,501,497,502,504,503,505,503,504,506,508,507,507,509,506,510,512,511,513,511,512,514,516,515,515,517,514,518,520,519,521,519,520,522,524,523,523,525,522,526,528,527,529,527,528,530,532,531,531,533,530,534,536,535,535,537,534,538,540,539,539,541,538,541,542,538,541,543,542,543,544,542,545,541,539,539,546,545,546,544,545,546,542,544,546,547,542,548,550,549,549,551,548,552,554,553,555,553,554,555,554,556,556,557,555,557,558,555,557,559,558,560,562,561,561,563,560,564,566,565,565,567,564,568,570,569,571,569,570,572,574,573,573,575,572,576,578,577,577,579,576,579,580,576,579,581,580,581,582,580,583,579,577,577,584,583,584,582,583,584,580,582,584,585,580,585,586,580,587,585,584,588,590,589,591,589,590,592,594,593,593,595,592,596,598,597,597,599,596,600,602,601,601,603,600,604,606,605,607,604,605,607,605,608,609,607,608,608,610,609,611,613,612,612,614,611,615,617,616,616,618,615,619,621,620,620,622,619,623,625,624,624,626,623,626,627,623,628,630,629,629,631,628,632,634,633,633,635,632,636,638,637,637,639,636,640,642,641,641,643,640,644,646,645,645,647,644,648,650,649,649,651,648,652,654,653,653,655,652,656,658,657,657,659,656,660,662,661,661,663,660,664,666,665,665,667,664,668,670,669,669,671,668,669,672,671,672,673,671,674,676,675,675,677,674,678,680,679,679,681,678,682,684,683,683,685,682,683,686,685,686,687,685,688,690,689,689,691,688,691,692,688,693,695,694,694,696,693,697,699,698,698,700,697,701,703,702,702,704,701,705,707,706,706,708,705,708,709,705,706,710,708,711,713,712,712,714,711,715,717,716,718,715,716,716,719,718,720,722,721,721,723,720,724,726,725,725,727,724,728,730,729,729,731,728,732,734,733,733,735,732,736,738,737,737,739,736,740,742,741,741,743,740,744,746,745,745,747,744,748,750,749,749,751,748,752,754,753,753,755,752,756,758,757,757,759,756,760,762,761,761,763,760,764,766,765,765,767,764,767,768,764,767,769,768,769,770,768,771,767,765,765,772,771,772,770,771,772,768,770,772,773,768,774,776,775,775,777,774,775,778,777,778,779,777,780,782,781,781,783,780 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *456 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3026, "Material::leafsDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.1686275,0.6509804,0.6666667 + P: "DiffuseColor", "Color", "", "A",0.1686275,0.6509804,0.6666667 + } + } + + Material: 3048, "Material::woodBarkDark", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",0.8,0.4627451,0.3686275 + P: "DiffuseColor", "Color", "", "A",0.8,0.4627451,0.3686275 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_thin_dark, Model::RootNode + C: "OO",5432576335061960921,0 + + ;Geometry::, Model::Mesh tree_thin_dark + C: "OO",4924399644883455060,5432576335061960921 + + ;Material::leafsDark, Model::Mesh tree_thin_dark + C: "OO",3026,5432576335061960921 + + ;Material::woodBarkDark, Model::Mesh tree_thin_dark + C: "OO",3048,5432576335061960921 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_dark.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_dark.fbx.import new file mode 100644 index 0000000..c00f6c2 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_dark.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://bj1qb2o5107ih" +path="res://.godot/imported/tree_thin_dark.fbx-a76199fc01f5390ab1ba6f6b9cdd0651.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_thin_dark.fbx" +dest_files=["res://.godot/imported/tree_thin_dark.fbx-a76199fc01f5390ab1ba6f6b9cdd0651.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_fall.fbx b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_fall.fbx new file mode 100644 index 0000000..8ea1354 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_fall.fbx @@ -0,0 +1,340 @@ +; FBX 7.3.0 project file +; Copyright (C) 1997-2010 Autodesk Inc. and/or its licensors. +; All rights reserved. +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7300 + CreationTimeStamp: { + Version: 1000 + Year: 2020 + Month: 4 + Day: 29 + Hour: 1 + Minute: 4 + Second: 42 + Millisecond: 965 + } + Creator: "Model created by Kenney (www.kenney.nl)" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "tree_thin_fall.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "tree_thin_fall.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "" + P: "Original|ApplicationName", "KString", "", "", "" + P: "Original|ApplicationVersion", "KString", "", "", "" + P: "Original|DateTime_GMT", "DateTime", "", "", "" + P: "Original|FileName", "KString", "", "", "" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "" + P: "LastSaved|ApplicationName", "KString", "", "", "" + P: "LastSaved|ApplicationVersion", "KString", "", "", "" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",-1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",10 + P: "OriginalUnitScaleFactor", "double", "Number", "",10 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeSpanStart", "KTime", "Time", "",0 + P: "TimeSpanStop", "KTime", "Time", "",479181389250 + P: "CustomFrameRate", "double", "Number", "",-1 + } +} +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 4 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Model" { + Count: 1 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Geometry" { + Count: 1 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 1 + PropertyTemplate: "FbxSurfacePhong" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Phong" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + P: "SpecularColor", "Color", "", "A",0.2,0.2,0.2 + P: "SpecularFactor", "Number", "", "A",1 + P: "ShininessExponent", "Number", "", "A",20 + P: "ReflectionColor", "Color", "", "A",0,0,0 + P: "ReflectionFactor", "Number", "", "A",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Model: 5170713925168602669, "Model::tree_thin_fall", "Mesh" { + Version: 232 + Properties70: { + P: "RotationOrder", "enum", "", "",4 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A+",0,-0.5,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A+",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Geometry: 4939135762499291960, "Geometry::", "Mesh" { + Vertices: *1176 { + a: -3.423905,7.647891,-1.62108,-1.81198,7.647891,-1.62108,-3.238534,9.532882,-1.300008,-1.997352,9.532882,-1.300008,0.962572,9.075624,2.011274,-1.098578,9.075624,2.011274,1.253247,10.16063,2.514739,-1.389253,10.16063,2.514739,0.9028251,5.535567,-3.650486,1.708787,5.535567,-2.254518,0.7174535,7.420559,-3.329414,1.338045,7.420559,-2.254518,-1.81198,7.647891,-1.62108,-1.989292,7.111793,-1.313967,-1.006018,7.647891,-0.2251124,-1.360641,7.111793,-0.2251124,2.574497,10.16063,0.2262659,1.993147,9.075624,0.2262659,1.253247,10.16063,2.514739,0.962572,9.075624,2.011274,-1.389253,10.16063,-2.062207,-1.085366,13.97563,-1.535857,-2.710503,10.16063,0.2262659,-2.102728,13.97563,0.2262659,-1.997352,9.532882,-1.300008,-2.39357,9.991088,-0.6137365,-3.238534,9.532882,-1.300008,-2.842315,9.991088,-0.6137365,-2.710503,10.16063,0.2262659,-2.102728,13.97563,0.2262659,-1.389253,10.16063,2.514739,-1.085366,13.97563,1.988389,-3.423905,7.647891,-1.62108,-3.238534,9.532882,-1.300008,-4.229868,7.647891,-0.2251124,-3.859125,9.532882,-0.2251124,-2.842315,9.991088,-0.6137365,-3.066687,9.991088,-0.2251124,-3.238534,9.532882,-1.300008,-3.859125,9.532882,-0.2251124,-3.423905,7.647891,-1.62108,-4.229868,7.647891,-0.2251124,-3.246593,7.111793,-1.313967,-3.875245,7.111793,-0.2251124,-1.360641,7.111793,-0.2251124,-1.989292,7.111793,-1.313967,-1.989292,7.111793,0.8637429,-2.268886,7.111793,0.01053087,-3.246593,7.111793,0.8637429,-2.568441,7.111793,0.01053087,-2.568441,7.111793,-0.4393515,-2.268886,7.111793,-0.4393515,-3.246593,7.111793,-1.313967,-3.875245,7.111793,-0.2251124,-2.842315,9.991088,0.1635119,-3.238534,9.532882,0.8497831,-3.066687,9.991088,-0.2251124,-3.859125,9.532882,-0.2251124,-1.098578,9.075624,-1.558742,-1.745156,9.532882,-0.8631916,-1.577688,9.075624,-0.7288993,-2.26413,9.991088,-0.3895379,-1.389253,10.16063,-2.062207,-2.710503,10.16063,0.2262659,-2.583433,9.991088,0.1635119,-2.597214,9.949187,0.2262659,-1.989292,7.111793,0.8637429,-3.246593,7.111793,0.8637429,-1.81198,7.647891,1.170856,-3.423905,7.647891,1.170856,1.253247,10.16063,-2.062207,2.574497,10.16063,0.2262659,0.9493594,13.97563,-1.535857,1.966722,13.97563,0.2262659,1.993147,9.075624,0.2262659,0.962572,9.075624,-1.558742,0.962572,9.075624,2.011274,0.2249411,9.075624,0.3658504,-1.098578,9.075624,2.011274,-0.2249412,9.075624,0.3658504,-0.2249412,9.075624,-0.08403211,0.2249411,9.075624,-0.08403211,-1.098578,9.075624,-1.558742,-1.286827,9.075624,-0.2251124,-1.838291,9.075624,0.7300529,-1.577688,9.075624,-0.7288993,-3.875245,7.111793,-0.2251124,-4.229868,7.647891,-0.2251124,-3.246593,7.111793,0.8637429,-3.423905,7.647891,1.170856,-4.229868,7.647891,-0.2251124,-3.859125,9.532882,-0.2251124,-3.423905,7.647891,1.170856,-3.238534,9.532882,0.8497831,-1.838291,9.075624,0.7300529,-1.994265,9.5015,0.8551284,-1.098578,9.075624,2.011274,-1.389253,10.16063,2.514739,-2.014166,9.532882,0.8497831,-2.710503,10.16063,0.2262659,-2.597214,9.949187,0.2262659,-0.4358264,14.90298,0.8633547,-1.085366,13.97563,1.988389,-0.8036499,14.90298,0.2262659,-2.102728,13.97563,0.2262659,-3.246593,7.111793,-1.313967,-1.989292,7.111793,-1.313967,-3.423905,7.647891,-1.62108,-1.81198,7.647891,-1.62108,0.9493594,13.97563,1.988389,-1.085366,13.97563,1.988389,0.2998204,14.90298,0.8633547,-0.4358264,14.90298,0.8633547,-1.81198,7.647891,1.170856,-3.423905,7.647891,1.170856,-1.994265,9.5015,0.8551284,-3.238534,9.532882,0.8497831,-2.014166,9.532882,0.8497831,-1.006018,7.647891,-0.2251124,-1.360641,7.111793,-0.2251124,-1.81198,7.647891,1.170856,-1.989292,7.111793,0.8637429,1.253247,10.16063,-2.062207,0.962572,9.075624,-1.558742,2.574497,10.16063,0.2262659,1.993147,9.075624,0.2262659,-0.5317884,4.99947,-3.343374,0.725513,4.99947,-3.343374,-0.7091001,5.535567,-3.650486,0.9028251,5.535567,-3.650486,0.9028251,5.535567,-0.8585496,-0.7091001,5.535567,-0.8585496,0.7174535,7.420559,-1.179622,-0.5237286,7.420559,-1.179622,1.338045,7.420559,-2.254518,1.708787,5.535567,-2.254518,0.7174535,7.420559,-1.179622,0.9028251,5.535567,-0.8585496,0.7174535,7.420559,-1.179622,-0.5237286,7.420559,-1.179622,0.3212349,7.878765,-1.865894,-0.1275096,7.878765,-1.865894,1.966722,13.97563,0.2262659,0.9493594,13.97563,1.988389,0.6676439,14.90298,0.2262659,0.2998204,14.90298,0.8633547,-1.389253,10.16063,-2.062207,1.253247,10.16063,-2.062207,-1.085366,13.97563,-1.535857,0.9493594,13.97563,-1.535857,-1.160439,4.99947,-2.254518,-1.515063,5.535567,-2.254518,-0.5317884,4.99947,-1.165663,-0.7091001,5.535567,-0.8585496,-1.098578,9.075624,-1.558742,0.962572,9.075624,-1.558742,-1.389253,10.16063,-2.062207,1.253247,10.16063,-2.062207,0.5456069,7.878765,-2.254518,0.3212349,7.878765,-1.865894,0.3212349,7.878765,-2.643142,-0.1275096,7.878765,-2.643142,-0.1275096,7.878765,-1.865894,-0.3518821,7.878765,-2.254518,1.338045,7.420559,-2.254518,0.7174535,7.420559,-1.179622,0.5456069,7.878765,-2.254518,0.3212349,7.878765,-1.865894,1.708787,5.535567,-2.254518,1.354164,4.99947,-2.254518,0.9028251,5.535567,-0.8585496,0.725513,4.99947,-1.165663,-2.26413,9.991088,-0.3895379,-2.583433,9.991088,0.1635119,-2.39357,9.991088,-0.6137365,-2.842315,9.991088,-0.6137365,-2.842315,9.991088,0.1635119,-3.066687,9.991088,-0.2251124,-1.286827,9.075624,-0.2251124,-1.006018,7.647891,-0.2251124,-1.838291,9.075624,0.7300529,-1.81198,7.647891,1.170856,-1.994265,9.5015,0.8551284,0.7174535,7.420559,-3.329414,0.3212349,7.878765,-2.643142,-0.5237286,7.420559,-3.329414,-0.1275096,7.878765,-2.643142,-0.7091001,5.535567,-3.650486,0.9028251,5.535567,-3.650486,-0.5237286,7.420559,-3.329414,0.7174535,7.420559,-3.329414,1.338045,7.420559,-2.254518,0.5456069,7.878765,-2.254518,0.7174535,7.420559,-3.329414,0.3212349,7.878765,-2.643142,-1.81198,7.647891,-1.62108,-1.006018,7.647891,-0.2251124,-1.997352,9.532882,-1.300008,-1.577688,9.075624,-0.7288993,-1.745156,9.532882,-0.8631916,-1.286827,9.075624,-0.2251124,1.966722,13.97563,0.2262659,0.6676439,14.90298,0.2262659,0.9493594,13.97563,-1.535857,0.2998204,14.90298,-0.410823,-2.583433,9.991088,0.1635119,-2.597214,9.949187,0.2262659,-2.842315,9.991088,0.1635119,-3.238534,9.532882,0.8497831,-2.014166,9.532882,0.8497831,0.9493594,13.97563,-1.535857,0.2998204,14.90298,-0.410823,-1.085366,13.97563,-1.535857,-0.4358264,14.90298,-0.410823,0.9028251,5.535567,-3.650486,0.725513,4.99947,-3.343374,1.708787,5.535567,-2.254518,1.354164,4.99947,-2.254518,-0.1275096,7.878765,-2.643142,-0.3518821,7.878765,-2.254518,-0.5237286,7.420559,-3.329414,-1.14432,7.420559,-2.254518,-0.7091001,5.535567,-3.650486,-1.515063,5.535567,-2.254518,-0.5317884,4.99947,-3.343374,-1.160439,4.99947,-2.254518,-1.515063,5.535567,-2.254518,-1.14432,7.420559,-2.254518,-0.7091001,5.535567,-0.8585496,-0.5237286,7.420559,-1.179622,0.725513,4.99947,-1.165663,-0.5317884,4.99947,-1.165663,0.9028251,5.535567,-0.8585496,-0.7091001,5.535567,-0.8585496,-0.4358264,14.90298,-0.410823,-0.8036499,14.90298,0.2262659,-1.085366,13.97563,-1.535857,-2.102728,13.97563,0.2262659,-0.1275096,7.878765,-1.865894,-0.5237286,7.420559,-1.179622,-0.3518821,7.878765,-2.254518,-1.14432,7.420559,-2.254518,-1.745156,9.532882,-0.8631916,-2.26413,9.991088,-0.3895379,-1.997352,9.532882,-1.300008,-2.39357,9.991088,-0.6137365,1.253247,10.16063,2.514739,-1.389253,10.16063,2.514739,0.9493594,13.97563,1.988389,-1.085366,13.97563,1.988389,1.966722,13.97563,0.2262659,2.574497,10.16063,0.2262659,0.9493594,13.97563,1.988389,1.253247,10.16063,2.514739,1.354164,4.99947,-2.254518,0.725513,4.99947,-3.343374,0.725513,4.99947,-1.165663,0.3509684,4.99947,-1.927845,-0.5317884,4.99947,-1.165663,-0.09891412,4.99947,-1.927845,-0.09891412,4.99947,-2.260616,0.3509684,4.99947,-2.260616,-0.5317884,4.99947,-3.343374,-1.160439,4.99947,-2.254518,0.6676439,14.90298,0.2262659,0.2998204,14.90298,0.8633547,0.2998204,14.90298,-0.410823,-0.4358264,14.90298,-0.410823,-0.4358264,14.90298,0.8633547,-0.8036499,14.90298,0.2262659,-0.7091001,5.535567,-3.650486,-0.5237286,7.420559,-3.329414,-1.515063,5.535567,-2.254518,-1.14432,7.420559,-2.254518,0.2249411,7.275625,-0.5749412,0.2249411,5.000625,-0.2249411,0.2249411,9.075624,-0.08403211,0.2249411,7.275625,-0.1250588,0.2249411,9.075624,0.3658504,0.2249411,5.000625,0.2249412,0.3542381,0,0.3542381,0.3542381,0,-0.3542381,-0.3542381,0,0.3542381,-0.3542381,0,-0.3542381,0.3542381,0,-0.3542381,-0.2220534,3.29371,-0.2690754,-0.3542381,0,-0.3542381,-0.2249412,5.000625,-0.2249411,-0.1464244,3.776155,-0.2566013,0.2163579,3.776155,-0.2566013,0.2249411,5.000625,-0.2249411,0.1415999,3.29371,-0.2690754,0.2689236,4.46618,-1.504047,0.1757886,3.860802,-1.504047,0.2163579,3.776155,-0.2566013,0.1415999,3.29371,-0.2690754,-0.2740936,3.860802,-1.504047,-0.1809587,4.46618,-1.504047,-0.2220534,3.29371,-0.2690754,-0.1464244,3.776155,-0.2566013,-0.09891412,4.99947,-2.260616,-0.09891412,4.99947,-1.927845,-0.2740936,3.860802,-1.504047,-0.1809587,4.46618,-1.504047,-1.642441,5.718124,-0.2249411,-1.642441,6.323503,-0.3180763,-2.568441,7.111793,-0.4393515,-2.268886,7.111793,-0.4393515,0.1757886,3.860802,-1.504047,-0.2740936,3.860802,-1.504047,0.1415999,3.29371,-0.2690754,-0.2220534,3.29371,-0.2690754,-0.2249412,5.000625,0.2249412,-1.642441,5.718124,0.2249412,-0.2249412,5.606002,0.1318061,-1.642441,6.323503,0.1318061,0.2689236,4.46618,-1.504047,0.2163579,3.776155,-0.2566013,-0.1809587,4.46618,-1.504047,-0.1464244,3.776155,-0.2566013,-0.2249412,5.606002,-0.3180763,-0.2249412,5.606002,0.1318061,-1.642441,6.323503,-0.3180763,-1.642441,6.323503,0.1318061,-0.2249412,5.000625,-0.2249411,0.2249411,5.000625,-0.2249411,-0.2249412,5.606002,-0.3180763,0.2249411,7.275625,-0.5749412,-0.2249412,7.275625,-0.5749412,-0.3542381,0,-0.3542381,-0.2249412,5.000625,-0.2249411,-0.3542381,0,0.3542381,-0.2249412,5.000625,0.2249412,0.2249411,7.275625,-0.1250588,-0.2249412,7.275625,-0.1250588,0.2249411,9.075624,0.3658504,-0.2249412,9.075624,0.3658504,0.3509684,4.99947,-2.260616,0.1757886,3.860802,-1.504047,0.3509684,4.99947,-1.927845,0.2689236,4.46618,-1.504047,-0.2249412,5.000625,0.2249412,-0.2249412,5.000625,-0.2249411,-1.642441,5.718124,0.2249412,-1.642441,5.718124,-0.2249411,-0.2740936,3.860802,-1.504047,0.1757886,3.860802,-1.504047,-0.09891412,4.99947,-2.260616,0.3509684,4.99947,-2.260616,0.2689236,4.46618,-1.504047,-0.1809587,4.46618,-1.504047,0.3509684,4.99947,-1.927845,-0.09891412,4.99947,-1.927845,-2.568441,7.111793,-0.4393515,-2.568441,7.111793,0.01053087,-1.642441,5.718124,-0.2249411,-1.642441,5.718124,0.2249412,0.2249411,5.000625,0.2249412,-0.2249412,5.000625,0.2249412,0.2249411,7.275625,-0.1250588,-0.2249412,5.606002,0.1318061,-0.2249412,7.275625,-0.1250588,-0.2249412,5.606002,-0.3180763,-0.2249412,7.275625,-0.1250588,-0.2249412,5.606002,0.1318061,-0.2249412,9.075624,-0.08403211,-0.2249412,7.275625,-0.5749412,-0.2249412,9.075624,0.3658504,-1.642441,5.718124,0.2249412,-2.568441,7.111793,0.01053087,-1.642441,6.323503,0.1318061,-2.268886,7.111793,0.01053087,-2.268886,7.111793,-0.4393515,-1.642441,6.323503,-0.3180763,-2.268886,7.111793,0.01053087,-1.642441,6.323503,0.1318061,-0.2249412,5.000625,-0.2249411,-0.2249412,5.606002,-0.3180763,-1.642441,5.718124,-0.2249411,-1.642441,6.323503,-0.3180763,-0.2249412,7.275625,-0.5749412,0.2249411,7.275625,-0.5749412,-0.2249412,9.075624,-0.08403211,0.2249411,9.075624,-0.08403211,0.3542381,0,0.3542381,-0.3542381,0,0.3542381,0.2249411,5.000625,0.2249412,-0.2249412,5.000625,0.2249412,0.3542381,0,-0.3542381,0.3542381,0,0.3542381,0.2249411,5.000625,-0.2249411,0.2249411,5.000625,0.2249412 + } + PolygonVertexIndex: *684 { + a: 0,2,-2,3,1,-3,4,6,-6,7,5,-7,8,10,-10,11,9,-11,12,14,-14,15,13,-15,16,18,-18,19,17,-19,20,22,-22,23,21,-23,24,26,-26,27,25,-27,28,30,-30,31,29,-31,32,34,-34,35,33,-35,36,38,-38,39,37,-39,40,42,-42,43,41,-43,44,46,-46,47,45,-47,48,47,-47,49,47,-49,50,49,-49,47,51,-46,52,45,-52,50,52,-52,48,52,-51,53,52,-49,54,56,-56,57,55,-57,58,60,-60,59,61,-59,58,61,-63,63,62,-62,64,63,-62,65,63,-65,66,68,-68,69,67,-69,70,72,-72,73,71,-73,74,76,-76,77,75,-77,78,77,-77,79,77,-79,80,79,-79,77,81,-76,82,75,-82,80,82,-82,78,82,-81,83,82,-79,84,83,-79,83,85,-83,86,88,-88,89,87,-89,90,92,-92,93,91,-93,94,96,-96,96,97,-96,95,97,-99,97,99,-99,100,98,-100,101,103,-103,104,102,-104,105,107,-107,108,106,-108,109,111,-111,112,110,-112,113,115,-115,116,114,-116,117,116,-116,118,120,-120,121,119,-121,122,124,-124,125,123,-125,126,128,-128,129,127,-129,130,132,-132,133,131,-133,134,136,-136,137,135,-137,138,140,-140,141,139,-141,142,144,-144,145,143,-145,146,148,-148,149,147,-149,150,152,-152,153,151,-153,154,156,-156,157,155,-157,158,160,-160,161,159,-161,162,159,-162,163,162,-162,164,166,-166,167,165,-167,168,170,-170,171,169,-171,172,174,-174,175,173,-175,176,173,-176,177,176,-176,178,180,-180,181,179,-181,182,181,-181,183,185,-185,186,184,-186,187,189,-189,190,188,-190,191,193,-193,194,192,-194,195,197,-197,198,196,-198,199,198,-198,200,196,-199,201,203,-203,204,202,-204,205,207,-207,207,208,-207,209,206,-209,210,212,-212,213,211,-213,214,216,-216,217,215,-217,218,220,-220,221,219,-221,222,224,-224,225,223,-225,226,228,-228,229,227,-229,230,232,-232,233,231,-233,234,236,-236,237,235,-237,238,240,-240,241,239,-241,242,244,-244,245,243,-245,246,248,-248,249,247,-249,250,252,-252,253,251,-253,254,256,-256,257,255,-257,258,257,-257,259,257,-259,260,259,-259,257,261,-256,262,255,-262,260,262,-262,258,262,-261,263,262,-259,264,266,-266,267,265,-267,268,265,-268,269,268,-268,270,272,-272,273,271,-273,274,276,-276,277,275,-277,278,277,-277,277,279,-276,280,282,-282,283,281,-283,284,286,-286,287,285,-287,288,285,-288,289,288,-288,290,284,-290,287,290,-290,291,289,-285,285,291,-285,292,294,-294,295,293,-295,296,298,-298,299,297,-299,300,302,-302,303,301,-303,304,306,-306,307,305,-307,308,310,-310,311,309,-311,312,314,-314,315,313,-315,316,318,-318,319,317,-319,320,322,-322,323,321,-323,324,326,-326,327,325,-327,328,327,-327,329,331,-331,332,330,-332,333,335,-335,336,334,-336,337,339,-339,340,338,-340,341,343,-343,344,342,-344,345,347,-347,348,346,-348,349,351,-351,352,350,-352,353,355,-355,356,354,-356,357,359,-359,360,358,-360,361,360,-360,362,364,-364,363,365,-363,366,362,-366,367,365,-364,368,370,-370,371,369,-371,372,374,-374,375,373,-375,376,378,-378,379,377,-379,380,382,-382,383,381,-383,384,386,-386,387,385,-387,388,390,-390,391,389,-391 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *2052 { + a: 0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0,-0.4209152,0.9071,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.8537297,0.1679125,-0.4929007,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7514544,-0.4970798,-0.4338525,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,0.7855719,-0.4209146,0.4535502,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,-0.8578988,0.1366735,-0.4953081,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,0,0.8316636,-0.5552799,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8578987,0.1366736,0.4953081,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.8537294,0.1679126,-0.4929011,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.4808863,0.8316637,-0.27764,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,-0.7514544,-0.4970796,-0.4338527,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.4808863,0.8316637,0.2776399,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,-0.7855719,-0.4209146,-0.4535502,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0,-0.4970797,0.867705,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0.8578987,0.1366735,-0.4953082,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.7514545,-0.4970796,0.4338528,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.8537294,0.1679125,0.492901,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.7855718,-0.4209148,0.4535501,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,-0.5508414,0.7716421,0.3180286,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,-0.4970799,-0.8677047,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.771642,0.6360571,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0,0.1679125,0.9858019,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7514545,-0.4970798,0.4338525,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0.7855719,-0.4209144,-0.4535502,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,-0.4970797,-0.8677049,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0,0.1679127,0.9858019,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0.8537295,0.1679126,0.4929009,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0,0.8316636,0.5552799,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0.5508414,0.7716421,0.3180286,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,0,0.1366736,-0.9906161,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,-0.7514541,-0.4970803,0.4338523,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,-0.4209146,-0.9071002,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.4808865,0.8316636,0.27764,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0.7514542,-0.4970804,0.4338521,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0.8537294,0.1679125,0.492901,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.8316639,-0.5552794,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0,0.1679126,-0.9858019,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.4808865,0.8316637,-0.2776397,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.8537294,0.1679126,-0.492901,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0.5508414,0.7716421,-0.3180286,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.8316638,0.5552796,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0,0.7716421,-0.636057,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,0.7514544,-0.4970802,-0.4338519,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.4808864,0.8316637,-0.2776398,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.7514544,-0.4970802,-0.4338521,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,-0.8537294,0.1679126,0.492901,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,0,-0.4970804,0.8677045,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.5508414,0.7716422,-0.3180285,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,-0.4808864,0.8316636,0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0.4808865,0.8316636,-0.27764,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0,0.1366739,0.990616,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0.8578987,0.1366736,0.4953082,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,-0.8537296,0.1679126,-0.4929008,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0,0.02584753,-0.9996659,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,0.987482,-0.1519202,-0.0424236,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9822875,0.151121,0.1107864,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,-0.9883717,0.1520571,0,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.1520573,-0.9883717,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0,-0.9087681,-0.4173016,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0.07674031,0.1516089,0.9854571,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0,0.8750492,0.4840339,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0.4516143,0.8922133,0,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,0,-0.1520572,-0.9883717,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,-0.9996659,0.02584752,0,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0,-0.2631174,0.9647638,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,0.9883717,-0.1520572,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,-0.4516141,-0.8922134,0,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,-0.5534118,-0.8329077,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,0,0.6221551,0.782894,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,-0.8329077,-0.553412,0,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0,0.1520572,0.9883717,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,0.7828935,0.6221557,0,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,-0.07674035,-0.151609,-0.985457,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.2631174,-0.9647638,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0,0.02584752,0.9996659,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0,0.9996659,0.02584753,0 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *784 { + a: 13.47994,28.61065,7.133781,28.61065,12.75013,36.13876,7.863589,36.13876,3.789654,35.74439,-4.325111,35.74439,4.934042,40.45352,-5.469501,40.45352,10.6693,19.76065,4.323137,19.76065,9.939492,27.28877,5.052945,27.28877,9.094043,24.64168,8.395966,22.20926,2.747882,24.64168,3.445959,22.20926,4.296444,40.16846,3.152054,35.45933,-6.107102,40.16846,-4.962708,35.45933,-4.296443,38.42488,-3.100035,53.58684,6.1071,38.42488,4.910693,53.58684,7.863589,16.58366,9.423505,19.83239,12.75013,16.58366,11.19022,19.83239,-4.564172,38.30313,-3.367764,53.46509,5.839374,38.30313,4.642962,53.46509,1.212821,27.18627,1.942629,34.71438,7.558982,27.18627,6.829174,34.71438,3.502546,12.77749,5.269256,12.77749,1.94263,9.528756,6.829175,9.528756,1.212824,33.51555,7.558985,33.51555,1.910901,31.08313,6.860909,31.08313,-5.356855,-0.8862692,-7.831858,-5.1731,-7.831858,3.400563,-8.93262,0.0414601,-12.78186,3.400563,-10.11197,0.0414601,-10.11197,-1.72973,-8.93262,-1.72973,-12.78186,-5.1731,-15.25687,-0.8862692,-5.037607,13.51457,-3.477691,10.26583,-6.804318,13.51457,-8.364236,10.26583,-3.152052,35.27956,0.4922525,37.26415,0.620468,35.27956,3.1288,39.25286,-4.296443,39.98869,6.107101,39.98869,5.643001,39.25286,5.884091,39.071,-7.831858,25.98538,-12.78186,25.98538,-7.133781,28.4178,-13.47994,28.4178,4.564171,38.48826,-5.839374,38.48826,3.367763,53.65022,-4.642966,53.65022,7.847036,0.8908105,3.789654,-6.136781,3.789654,7.9184,0.8855949,1.440356,-4.325111,7.9184,-0.8855951,1.440356,-0.8855951,-0.3308351,0.8855949,-0.3308351,-4.325111,-6.136781,-5.066247,-0.8862692,-7.237368,2.874224,-6.21137,-2.869682,-8.395971,30.64259,-9.094048,33.075,-3.445962,30.64259,-2.747886,33.075,-9.094045,27.33508,-8.364236,34.8632,-2.747883,27.33508,-3.477691,34.8632,-1.129533,35.65451,-1.010117,37.5029,4.694981,35.65451,5.839374,40.36364,-1.067517,37.6391,-4.564172,40.36364,-4.341161,39.44596,2.085723,34.8614,4.64296,29.12135,-0.810524,34.8614,-3.367766,29.12135,12.78186,26.86647,7.831858,26.86647,13.47994,29.29889,7.133781,29.29889,3.737635,28.95658,-4.273093,28.95658,1.180395,34.69664,-1.715852,34.69664,-7.133781,28.90828,-13.47994,28.90828,-7.851439,36.31106,-12.75013,36.4364,-7.929789,36.4364,-1.212818,24.20113,-1.910896,21.76871,-7.55898,24.20113,-6.860903,21.76871,4.564172,39.7935,3.419781,35.08437,-5.839373,39.7935,-4.694983,35.08437,2.093655,23.622,-2.856351,23.622,2.791733,26.05441,-3.55443,26.05441,3.55443,22.05171,-2.791733,22.05171,2.82462,29.57982,-2.061924,29.57982,10.32083,28.77917,11.05064,21.25105,5.43429,28.77917,4.704482,21.25105,2.82462,20.08479,-2.061924,20.08479,1.264704,23.33352,-0.5020064,23.33352,3.100038,29.47917,-4.910688,29.47917,0.5427958,35.21923,-2.353451,35.21923,5.469501,38.51744,-4.934042,38.51744,4.273093,53.67941,-3.737635,53.67941,-9.971217,16.83967,-10.66929,19.27208,-5.021211,16.83967,-4.323133,19.27208,4.325111,34.99449,-3.789654,34.99449,5.469501,39.70362,-4.934042,39.70362,-2.148058,-8.876054,-1.264704,-7.346038,-1.264704,-10.40607,0.5020064,-10.40607,0.5020064,-7.346038,1.385363,-8.876054,10.32083,16.11918,5.43429,16.11918,8.760917,19.36792,6.994207,19.36792,11.05064,19.60041,10.35256,17.168,4.704482,19.60041,5.402559,17.168,8.913896,-1.533614,10.171,0.6437477,9.423505,-2.416285,11.19022,-2.416285,11.19022,0.6437477,12.07357,-0.8862692,-1.765592,36.03462,-1.212818,30.33266,-6.107835,36.03462,-7.55898,30.33266,-6.841321,37.73544,-2.82462,5.320986,-1.264704,8.569724,2.061924,5.320986,0.5020064,8.569724,2.791733,19.07091,-3.55443,19.07091,2.061924,26.59902,-2.82462,26.59902,5.052944,8.737286,6.61286,11.98602,9.939491,8.737286,8.37957,11.98602,9.094043,30.18385,2.747882,30.18385,8.364234,37.71196,5.590903,35.88581,6.37844,37.71196,3.300655,35.88581,-4.642966,30.16656,-2.085724,35.90662,3.367763,30.16656,0.8105231,35.90662,-10.171,21.30653,-10.22525,21.00946,-11.19022,21.30653,-12.75013,18.0578,-7.92979,18.0578,-3.737635,30.33134,-1.180395,36.0714,4.273093,30.33134,1.715852,36.0714,10.6693,24.01252,9.971226,21.58011,4.323138,24.01252,5.021215,21.58011,-8.760919,12.53535,-6.994207,12.53535,-10.32084,9.286611,-5.434291,9.286611,-11.05065,23.68419,-4.704484,23.68419,-10.35257,21.25178,-5.402561,21.25178,-10.66929,21.36196,-9.939486,28.89008,-4.323133,21.36196,-5.052942,28.89008,2.856351,14.79778,-2.093655,14.79778,3.55443,17.23019,-2.791733,17.23019,-0.5427949,35.54879,2.353453,35.54879,-3.100035,29.80873,4.910694,29.80873,-6.612858,19.91724,-5.052942,16.66851,-8.379568,19.91724,-9.939486,16.66851,6.37844,24.37563,5.785097,27.62436,8.364235,24.37563,6.804318,27.62436,4.934042,38.27394,-5.469501,38.27394,3.737635,53.4359,-4.273093,53.4359,3.100037,53.52847,4.296444,38.3665,-4.910689,53.52847,-6.107102,38.3665,5.331354,-8.876054,2.856351,-13.16289,2.856351,-4.589223,1.381765,-7.589942,-2.093655,-4.589223,-0.3894257,-7.589942,-0.3894257,-8.900062,1.381765,-8.900062,-2.093655,-13.16289,-4.568658,-8.876054,-2.628519,0.8908105,-1.180395,3.399034,-1.180395,-1.617413,1.715852,-1.617413,1.715852,3.399034,3.163976,0.8908105,-11.05065,19.87156,-10.32084,27.39968,-4.704483,19.87156,-5.434291,27.39968,2.263548,28.64419,0.8855948,19.6875,0.3308351,35.73081,0.4923577,28.64419,-1.440356,35.73081,-0.8855951,19.6875,1.394638,1.394638,1.394638,-1.394638,-1.394638,1.394638,-1.394638,-1.394638,-1.394638,-0.03604795,0.8742259,12.93565,1.394638,-0.03604795,0.8855951,19.65803,0.576474,14.83567,-0.8518028,14.83567,-0.8855949,19.65803,-0.5574797,12.93565,5.870543,17.5786,5.886281,15.16724,0.9727497,14.83006,1.034448,12.90837,-6.005077,14.96368,-5.963983,17.37475,-1.150655,12.7051,-1.068484,14.62655,-8.900062,19.39486,-7.589942,19.39486,-5.921443,14.85917,-5.921443,17.27059,6.466303,22.38518,6.466303,24.7966,10.11197,27.93662,8.932619,27.93662,-0.6920812,11.72421,1.079109,11.72421,-0.5574798,6.374006,0.8742259,6.374006,-0.9516777,19.33649,-6.515542,22.19433,-0.92321,21.74774,-6.487074,24.60558,1.058754,13.69251,0.8518028,8.080023,-0.7124357,13.69251,-0.576474,8.080023,1.252269,10.75766,-0.5189217,10.75766,1.252269,17.01257,-0.5189217,17.01257,0.8855953,19.59323,-0.8855948,19.59323,0.8855953,22.00464,-0.8855947,28.6553,0.8855954,28.6553,-1.394638,-0.03604794,-0.8855948,19.65803,1.394638,-0.03604794,0.8855951,19.65803,0.8855949,27.50533,-0.8855951,27.50533,0.8855949,34.85077,-0.8855951,34.85077,8.900062,19.66418,5.921443,15.1285,7.589942,19.66418,5.921443,17.53991,0.8855951,9.681292,-0.8855948,9.681292,0.8855951,15.93619,-0.8855948,15.93619,1.079109,15.9372,-0.6920812,15.9372,0.3894257,21.31948,-1.381765,21.31948,1.058754,17.44998,-0.7124357,17.44998,1.381765,20.13179,-0.3894257,20.13179,-1.72973,28.91682,0.0414601,28.91682,-0.8855948,22.3292,0.8855951,22.3292,0.885595,19.32391,-0.8855951,19.32391,0.8855948,28.38598,-0.8855951,21.73532,-0.8855951,28.38598,-1.252269,22.07088,-0.4923577,28.64419,0.5189217,22.07088,-0.3308351,35.73081,-2.263548,28.64419,1.440356,35.73081,-6.466304,22.11586,-10.11197,27.6673,-6.466304,24.52728,-8.93262,27.6673,1.72973,27.47786,1.252269,23.51371,-0.0414601,27.47786,-0.5189217,23.51371,0.8141664,19.60421,0.7856987,22.01545,6.37803,22.46204,6.349563,24.87329,0.8855951,27.0393,-0.8855949,27.0393,0.8855951,34.38474,-0.8855949,34.38474,1.394638,-0.03604794,-1.394638,-0.03604794,0.8855949,19.65803,-0.8855951,19.65803,1.394638,-0.03604796,-1.394638,-0.03604796,0.8855948,19.65803,-0.8855951,19.65803 + } + UVIndex: *684 { + a: 0,2,1,3,1,2,4,6,5,7,5,6,8,10,9,11,9,10,12,14,13,15,13,14,16,18,17,19,17,18,20,22,21,23,21,22,24,26,25,27,25,26,28,30,29,31,29,30,32,34,33,35,33,34,36,38,37,39,37,38,40,42,41,43,41,42,44,46,45,47,45,46,48,47,46,49,47,48,50,49,48,47,51,45,52,45,51,50,52,51,48,52,50,53,52,48,54,56,55,57,55,56,58,60,59,59,61,58,58,61,62,63,62,61,64,63,61,65,63,64,66,68,67,69,67,68,70,72,71,73,71,72,74,76,75,77,75,76,78,77,76,79,77,78,80,79,78,77,81,75,82,75,81,80,82,81,78,82,80,83,82,78,84,83,78,83,85,82,86,88,87,89,87,88,90,92,91,93,91,92,94,96,95,96,97,95,95,97,98,97,99,98,100,98,99,101,103,102,104,102,103,105,107,106,108,106,107,109,111,110,112,110,111,113,115,114,116,114,115,117,116,115,118,120,119,121,119,120,122,124,123,125,123,124,126,128,127,129,127,128,130,132,131,133,131,132,134,136,135,137,135,136,138,140,139,141,139,140,142,144,143,145,143,144,146,148,147,149,147,148,150,152,151,153,151,152,154,156,155,157,155,156,158,160,159,161,159,160,162,159,161,163,162,161,164,166,165,167,165,166,168,170,169,171,169,170,172,174,173,175,173,174,176,173,175,177,176,175,178,180,179,181,179,180,182,181,180,183,185,184,186,184,185,187,189,188,190,188,189,191,193,192,194,192,193,195,197,196,198,196,197,199,198,197,200,196,198,201,203,202,204,202,203,205,207,206,207,208,206,209,206,208,210,212,211,213,211,212,214,216,215,217,215,216,218,220,219,221,219,220,222,224,223,225,223,224,226,228,227,229,227,228,230,232,231,233,231,232,234,236,235,237,235,236,238,240,239,241,239,240,242,244,243,245,243,244,246,248,247,249,247,248,250,252,251,253,251,252,254,256,255,257,255,256,258,257,256,259,257,258,260,259,258,257,261,255,262,255,261,260,262,261,258,262,260,263,262,258,264,266,265,267,265,266,268,265,267,269,268,267,270,272,271,273,271,272,274,276,275,277,275,276,278,277,276,277,279,275,280,282,281,283,281,282,284,286,285,287,285,286,288,285,287,289,288,287,290,284,289,287,290,289,291,289,284,285,291,284,292,294,293,295,293,294,296,298,297,299,297,298,300,302,301,303,301,302,304,306,305,307,305,306,308,310,309,311,309,310,312,314,313,315,313,314,316,318,317,319,317,318,320,322,321,323,321,322,324,326,325,327,325,326,328,327,326,329,331,330,332,330,331,333,335,334,336,334,335,337,339,338,340,338,339,341,343,342,344,342,343,345,347,346,348,346,347,349,351,350,352,350,351,353,355,354,356,354,355,357,359,358,360,358,359,361,360,359,362,364,363,363,365,362,366,362,365,367,365,363,368,370,369,371,369,370,372,374,373,375,373,374,376,378,377,379,377,378,380,382,381,383,381,382,384,386,385,387,385,386,388,390,389,391,389,390 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *228 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementTexture" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + + Material: 3028, "Material::leafsFall", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.572549,0.254902 + P: "DiffuseColor", "Color", "", "A",1,0.572549,0.254902 + } + } + + Material: 3050, "Material::woodBirch", "" { + Version: 102 + ShadingModel: "phong" + MultiLayer: 0 + Properties70: { + P: "Diffuse", "Vector3D", "Vector", "",1,0.9490196,0.8705882 + P: "DiffuseColor", "Color", "", "A",1,0.9490196,0.8705882 + } + } +} +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Mesh tree_thin_fall, Model::RootNode + C: "OO",5170713925168602669,0 + + ;Geometry::, Model::Mesh tree_thin_fall + C: "OO",4939135762499291960,5170713925168602669 + + ;Material::leafsFall, Model::Mesh tree_thin_fall + C: "OO",3028,5170713925168602669 + + ;Material::woodBirch, Model::Mesh tree_thin_fall + C: "OO",3050,5170713925168602669 + +} diff --git a/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_fall.fbx.import b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_fall.fbx.import new file mode 100644 index 0000000..2b265e5 --- /dev/null +++ b/assets/models/kenney_nature-kit/Models/FBX format/tree_thin_fall.fbx.import @@ -0,0 +1,34 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://b0nbk68jkock6" +path="res://.godot/imported/tree_thin_fall.fbx-84d6cde189d133e20ffaec772efd3cb2.scn" + +[deps] + +source_file="res://assets/models/kenney_nature-kit/Models/FBX format/tree_thin_fall.fbx" +dest_files=["res://.godot/imported/tree_thin_fall.fbx-84d6cde189d133e20ffaec772efd3cb2.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/apply_root_scale=true +nodes/root_scale=1.0 +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +import_script/path="" +_subresources={} +gltf/naming_version=1 +gltf/embedded_image_handling=1 diff --git a/assets/sounds/new_song.wav b/assets/sounds/new_song.wav new file mode 100644 index 0000000..f51a486 Binary files /dev/null and b/assets/sounds/new_song.wav differ diff --git a/assets/sounds/new_song.wav.import b/assets/sounds/new_song.wav.import new file mode 100644 index 0000000..8478098 --- /dev/null +++ b/assets/sounds/new_song.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://dxglatx1qey5u" +path="res://.godot/imported/new_song.wav-7cfd2a2b290d790920bd61c317d520db.sample" + +[deps] + +source_file="res://assets/sounds/new_song.wav" +dest_files=["res://.godot/imported/new_song.wav-7cfd2a2b290d790920bd61c317d520db.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/assets/sounds/sfx/collect.mp3 b/assets/sounds/sfx/collect.mp3 new file mode 100644 index 0000000..1592320 Binary files /dev/null and b/assets/sounds/sfx/collect.mp3 differ diff --git a/assets/sounds/sfx/collect.mp3.import b/assets/sounds/sfx/collect.mp3.import new file mode 100644 index 0000000..2865a98 --- /dev/null +++ b/assets/sounds/sfx/collect.mp3.import @@ -0,0 +1,19 @@ +[remap] + +importer="mp3" +type="AudioStreamMP3" +uid="uid://cyltn1w4djlcp" +path="res://.godot/imported/collect.mp3-683ae7633ebf1b7dfcdb971307588307.mp3str" + +[deps] + +source_file="res://assets/sounds/sfx/collect.mp3" +dest_files=["res://.godot/imported/collect.mp3-683ae7633ebf1b7dfcdb971307588307.mp3str"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/concrete/0.ogg b/assets/sounds/sfx/footsteep/concrete/0.ogg new file mode 100644 index 0000000..ea36b08 Binary files /dev/null and b/assets/sounds/sfx/footsteep/concrete/0.ogg differ diff --git a/assets/sounds/sfx/footsteep/concrete/0.ogg.import b/assets/sounds/sfx/footsteep/concrete/0.ogg.import new file mode 100644 index 0000000..7fce5de --- /dev/null +++ b/assets/sounds/sfx/footsteep/concrete/0.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://xglsomthmdrl" +path="res://.godot/imported/0.ogg-5ef8b74463428fdad8a56714d7e5402e.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/concrete/0.ogg" +dest_files=["res://.godot/imported/0.ogg-5ef8b74463428fdad8a56714d7e5402e.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/concrete/1.ogg b/assets/sounds/sfx/footsteep/concrete/1.ogg new file mode 100644 index 0000000..75d2cb7 Binary files /dev/null and b/assets/sounds/sfx/footsteep/concrete/1.ogg differ diff --git a/assets/sounds/sfx/footsteep/concrete/1.ogg.import b/assets/sounds/sfx/footsteep/concrete/1.ogg.import new file mode 100644 index 0000000..0762dcc --- /dev/null +++ b/assets/sounds/sfx/footsteep/concrete/1.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://xbaubcjxdrdo" +path="res://.godot/imported/1.ogg-6d7761761d201543914d0157e12981ad.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/concrete/1.ogg" +dest_files=["res://.godot/imported/1.ogg-6d7761761d201543914d0157e12981ad.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/concrete/2.ogg b/assets/sounds/sfx/footsteep/concrete/2.ogg new file mode 100644 index 0000000..08bdc7e Binary files /dev/null and b/assets/sounds/sfx/footsteep/concrete/2.ogg differ diff --git a/assets/sounds/sfx/footsteep/concrete/2.ogg.import b/assets/sounds/sfx/footsteep/concrete/2.ogg.import new file mode 100644 index 0000000..d170ff4 --- /dev/null +++ b/assets/sounds/sfx/footsteep/concrete/2.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://c33he3ovudyjf" +path="res://.godot/imported/2.ogg-a4d2f4f89d5c79f7e6e61a2976c9238f.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/concrete/2.ogg" +dest_files=["res://.godot/imported/2.ogg-a4d2f4f89d5c79f7e6e61a2976c9238f.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/concrete/3.ogg b/assets/sounds/sfx/footsteep/concrete/3.ogg new file mode 100644 index 0000000..df7d414 Binary files /dev/null and b/assets/sounds/sfx/footsteep/concrete/3.ogg differ diff --git a/assets/sounds/sfx/footsteep/concrete/3.ogg.import b/assets/sounds/sfx/footsteep/concrete/3.ogg.import new file mode 100644 index 0000000..f6640b0 --- /dev/null +++ b/assets/sounds/sfx/footsteep/concrete/3.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://mol6r8oyb8sg" +path="res://.godot/imported/3.ogg-77cc4fb1706a78fc48f09fdfd6f30125.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/concrete/3.ogg" +dest_files=["res://.godot/imported/3.ogg-77cc4fb1706a78fc48f09fdfd6f30125.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/concrete/4.ogg b/assets/sounds/sfx/footsteep/concrete/4.ogg new file mode 100644 index 0000000..93dcf2d Binary files /dev/null and b/assets/sounds/sfx/footsteep/concrete/4.ogg differ diff --git a/assets/sounds/sfx/footsteep/concrete/4.ogg.import b/assets/sounds/sfx/footsteep/concrete/4.ogg.import new file mode 100644 index 0000000..0d6d8a2 --- /dev/null +++ b/assets/sounds/sfx/footsteep/concrete/4.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://c4i10yba5urnq" +path="res://.godot/imported/4.ogg-5bcb9227bb35e189b7668e86adf48ede.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/concrete/4.ogg" +dest_files=["res://.godot/imported/4.ogg-5bcb9227bb35e189b7668e86adf48ede.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/concrete/5.ogg b/assets/sounds/sfx/footsteep/concrete/5.ogg new file mode 100644 index 0000000..06e79da Binary files /dev/null and b/assets/sounds/sfx/footsteep/concrete/5.ogg differ diff --git a/assets/sounds/sfx/footsteep/concrete/5.ogg.import b/assets/sounds/sfx/footsteep/concrete/5.ogg.import new file mode 100644 index 0000000..3eb6443 --- /dev/null +++ b/assets/sounds/sfx/footsteep/concrete/5.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://cdxnee7srpwxa" +path="res://.godot/imported/5.ogg-1da32fca4bade8ccb2bf808029fb881c.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/concrete/5.ogg" +dest_files=["res://.godot/imported/5.ogg-1da32fca4bade8ccb2bf808029fb881c.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/concrete/6.ogg b/assets/sounds/sfx/footsteep/concrete/6.ogg new file mode 100644 index 0000000..0c4bfc6 Binary files /dev/null and b/assets/sounds/sfx/footsteep/concrete/6.ogg differ diff --git a/assets/sounds/sfx/footsteep/concrete/6.ogg.import b/assets/sounds/sfx/footsteep/concrete/6.ogg.import new file mode 100644 index 0000000..863a3e6 --- /dev/null +++ b/assets/sounds/sfx/footsteep/concrete/6.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://cq7x5sntunxsw" +path="res://.godot/imported/6.ogg-b743a66a02f2bb5100a0950937c00771.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/concrete/6.ogg" +dest_files=["res://.godot/imported/6.ogg-b743a66a02f2bb5100a0950937c00771.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/grass/0.ogg b/assets/sounds/sfx/footsteep/grass/0.ogg new file mode 100644 index 0000000..c5ce291 Binary files /dev/null and b/assets/sounds/sfx/footsteep/grass/0.ogg differ diff --git a/assets/sounds/sfx/footsteep/grass/0.ogg.import b/assets/sounds/sfx/footsteep/grass/0.ogg.import new file mode 100644 index 0000000..91c56ca --- /dev/null +++ b/assets/sounds/sfx/footsteep/grass/0.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://dxw1e0pf7f3fw" +path="res://.godot/imported/0.ogg-75601aff950ad181168655f618e1a769.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/grass/0.ogg" +dest_files=["res://.godot/imported/0.ogg-75601aff950ad181168655f618e1a769.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/grass/1.ogg b/assets/sounds/sfx/footsteep/grass/1.ogg new file mode 100644 index 0000000..f966d1f Binary files /dev/null and b/assets/sounds/sfx/footsteep/grass/1.ogg differ diff --git a/assets/sounds/sfx/footsteep/grass/1.ogg.import b/assets/sounds/sfx/footsteep/grass/1.ogg.import new file mode 100644 index 0000000..38eacea --- /dev/null +++ b/assets/sounds/sfx/footsteep/grass/1.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://bv7hgk25mwc3r" +path="res://.godot/imported/1.ogg-945217c7ca09f7f0f84622f2c5ae1293.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/grass/1.ogg" +dest_files=["res://.godot/imported/1.ogg-945217c7ca09f7f0f84622f2c5ae1293.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/grass/2.ogg b/assets/sounds/sfx/footsteep/grass/2.ogg new file mode 100644 index 0000000..de50d41 Binary files /dev/null and b/assets/sounds/sfx/footsteep/grass/2.ogg differ diff --git a/assets/sounds/sfx/footsteep/grass/2.ogg.import b/assets/sounds/sfx/footsteep/grass/2.ogg.import new file mode 100644 index 0000000..c8ab01e --- /dev/null +++ b/assets/sounds/sfx/footsteep/grass/2.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://bpp1ia6ssgwca" +path="res://.godot/imported/2.ogg-d4d948656139cac1ad8ea15a299f2bd5.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/grass/2.ogg" +dest_files=["res://.godot/imported/2.ogg-d4d948656139cac1ad8ea15a299f2bd5.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/grass/3.ogg b/assets/sounds/sfx/footsteep/grass/3.ogg new file mode 100644 index 0000000..03269dc Binary files /dev/null and b/assets/sounds/sfx/footsteep/grass/3.ogg differ diff --git a/assets/sounds/sfx/footsteep/grass/3.ogg.import b/assets/sounds/sfx/footsteep/grass/3.ogg.import new file mode 100644 index 0000000..a1eb58b --- /dev/null +++ b/assets/sounds/sfx/footsteep/grass/3.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://ci2keftqoo4px" +path="res://.godot/imported/3.ogg-d1867b78e8593038a43ee8c8da1e5e30.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/grass/3.ogg" +dest_files=["res://.godot/imported/3.ogg-d1867b78e8593038a43ee8c8da1e5e30.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/grass/4.ogg b/assets/sounds/sfx/footsteep/grass/4.ogg new file mode 100644 index 0000000..7073ee0 Binary files /dev/null and b/assets/sounds/sfx/footsteep/grass/4.ogg differ diff --git a/assets/sounds/sfx/footsteep/grass/4.ogg.import b/assets/sounds/sfx/footsteep/grass/4.ogg.import new file mode 100644 index 0000000..2fddcdb --- /dev/null +++ b/assets/sounds/sfx/footsteep/grass/4.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://dorj60uxb2dai" +path="res://.godot/imported/4.ogg-f32835d601cdaf86743f30016820a6aa.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/grass/4.ogg" +dest_files=["res://.godot/imported/4.ogg-f32835d601cdaf86743f30016820a6aa.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/footsteep/grass/5.ogg b/assets/sounds/sfx/footsteep/grass/5.ogg new file mode 100644 index 0000000..9a5780e Binary files /dev/null and b/assets/sounds/sfx/footsteep/grass/5.ogg differ diff --git a/assets/sounds/sfx/footsteep/grass/5.ogg.import b/assets/sounds/sfx/footsteep/grass/5.ogg.import new file mode 100644 index 0000000..9687a40 --- /dev/null +++ b/assets/sounds/sfx/footsteep/grass/5.ogg.import @@ -0,0 +1,19 @@ +[remap] + +importer="oggvorbisstr" +type="AudioStreamOggVorbis" +uid="uid://cn1dfegrixor0" +path="res://.godot/imported/5.ogg-e59d0f1ad774a29cf2fa263e8dc95138.oggvorbisstr" + +[deps] + +source_file="res://assets/sounds/sfx/footsteep/grass/5.ogg" +dest_files=["res://.godot/imported/5.ogg-e59d0f1ad774a29cf2fa263e8dc95138.oggvorbisstr"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/river/running-water.mp3 b/assets/sounds/sfx/river/running-water.mp3 new file mode 100644 index 0000000..d72e188 Binary files /dev/null and b/assets/sounds/sfx/river/running-water.mp3 differ diff --git a/assets/sounds/sfx/river/running-water.mp3.import b/assets/sounds/sfx/river/running-water.mp3.import new file mode 100644 index 0000000..cd763e5 --- /dev/null +++ b/assets/sounds/sfx/river/running-water.mp3.import @@ -0,0 +1,19 @@ +[remap] + +importer="mp3" +type="AudioStreamMP3" +uid="uid://bej54vtdr65c6" +path="res://.godot/imported/running-water.mp3-99afb0dc6f38749fe4b95441262fb35e.mp3str" + +[deps] + +source_file="res://assets/sounds/sfx/river/running-water.mp3" +dest_files=["res://.godot/imported/running-water.mp3-99afb0dc6f38749fe4b95441262fb35e.mp3str"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/river/water-splosh.mp3 b/assets/sounds/sfx/river/water-splosh.mp3 new file mode 100644 index 0000000..d22443f Binary files /dev/null and b/assets/sounds/sfx/river/water-splosh.mp3 differ diff --git a/assets/sounds/sfx/river/water-splosh.mp3.import b/assets/sounds/sfx/river/water-splosh.mp3.import new file mode 100644 index 0000000..fe8f077 --- /dev/null +++ b/assets/sounds/sfx/river/water-splosh.mp3.import @@ -0,0 +1,19 @@ +[remap] + +importer="mp3" +type="AudioStreamMP3" +uid="uid://5s062r3iey2v" +path="res://.godot/imported/water-splosh.mp3-92c7d29e8f402d9c820e6564fa7796da.mp3str" + +[deps] + +source_file="res://assets/sounds/sfx/river/water-splosh.mp3" +dest_files=["res://.godot/imported/water-splosh.mp3-92c7d29e8f402d9c820e6564fa7796da.mp3str"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/river/water-stream.mp3 b/assets/sounds/sfx/river/water-stream.mp3 new file mode 100644 index 0000000..8f99b5f Binary files /dev/null and b/assets/sounds/sfx/river/water-stream.mp3 differ diff --git a/assets/sounds/sfx/river/water-stream.mp3.import b/assets/sounds/sfx/river/water-stream.mp3.import new file mode 100644 index 0000000..de9930f --- /dev/null +++ b/assets/sounds/sfx/river/water-stream.mp3.import @@ -0,0 +1,19 @@ +[remap] + +importer="mp3" +type="AudioStreamMP3" +uid="uid://cpn351wrbbh4e" +path="res://.godot/imported/water-stream.mp3-a68173a9021fa9ddcf37c25345820309.mp3str" + +[deps] + +source_file="res://assets/sounds/sfx/river/water-stream.mp3" +dest_files=["res://.godot/imported/water-stream.mp3-a68173a9021fa9ddcf37c25345820309.mp3str"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/road/car-ambiant.mp3 b/assets/sounds/sfx/road/car-ambiant.mp3 new file mode 100644 index 0000000..3d13773 Binary files /dev/null and b/assets/sounds/sfx/road/car-ambiant.mp3 differ diff --git a/assets/sounds/sfx/road/car-ambiant.mp3.import b/assets/sounds/sfx/road/car-ambiant.mp3.import new file mode 100644 index 0000000..b0f8bad --- /dev/null +++ b/assets/sounds/sfx/road/car-ambiant.mp3.import @@ -0,0 +1,19 @@ +[remap] + +importer="mp3" +type="AudioStreamMP3" +uid="uid://cka5iah8btell" +path="res://.godot/imported/car-ambiant.mp3-ff24ca63c4d5f0794881a808d0e98485.mp3str" + +[deps] + +source_file="res://assets/sounds/sfx/road/car-ambiant.mp3" +dest_files=["res://.godot/imported/car-ambiant.mp3-ff24ca63c4d5f0794881a808d0e98485.mp3str"] + +[params] + +loop=true +loop_offset=0.0 +bpm=0.0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/road/car-horn.mp3 b/assets/sounds/sfx/road/car-horn.mp3 new file mode 100644 index 0000000..369a437 Binary files /dev/null and b/assets/sounds/sfx/road/car-horn.mp3 differ diff --git a/assets/sounds/sfx/road/car-horn.mp3.import b/assets/sounds/sfx/road/car-horn.mp3.import new file mode 100644 index 0000000..dfa8e39 --- /dev/null +++ b/assets/sounds/sfx/road/car-horn.mp3.import @@ -0,0 +1,19 @@ +[remap] + +importer="mp3" +type="AudioStreamMP3" +uid="uid://cwtm4ekx071k4" +path="res://.godot/imported/car-horn.mp3-77e293a7ad53bb580807765d09019218.mp3str" + +[deps] + +source_file="res://assets/sounds/sfx/road/car-horn.mp3" +dest_files=["res://.godot/imported/car-horn.mp3-77e293a7ad53bb580807765d09019218.mp3str"] + +[params] + +loop=false +loop_offset=0 +bpm=0 +beat_count=0 +bar_beats=4 diff --git a/assets/sounds/sfx/road/car-horn.wav b/assets/sounds/sfx/road/car-horn.wav new file mode 100644 index 0000000..d8084e3 Binary files /dev/null and b/assets/sounds/sfx/road/car-horn.wav differ diff --git a/assets/sounds/sfx/road/car-horn.wav.import b/assets/sounds/sfx/road/car-horn.wav.import new file mode 100644 index 0000000..99fbb5d --- /dev/null +++ b/assets/sounds/sfx/road/car-horn.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://bf30y1ow15kvv" +path="res://.godot/imported/car-horn.wav-89bf7b50c8e9525f026a4711b5f57c18.sample" + +[deps] + +source_file="res://assets/sounds/sfx/road/car-horn.wav" +dest_files=["res://.godot/imported/car-horn.wav-89bf7b50c8e9525f026a4711b5f57c18.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/export_presets.cfg b/export_presets.cfg new file mode 100644 index 0000000..5105c40 --- /dev/null +++ b/export_presets.cfg @@ -0,0 +1,251 @@ +[preset.0] + +name="Windows Desktop" +platform="Windows Desktop" +runnable=true +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false + +[preset.0.options] + +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +binary_format/embed_pck=false +texture_format/bptc=true +texture_format/s3tc=true +texture_format/etc=false +texture_format/etc2=false +binary_format/architecture="x86_64" +codesign/enable=false +codesign/timestamp=true +codesign/timestamp_server_url="" +codesign/digest_algorithm=1 +codesign/description="" +codesign/custom_options=PackedStringArray() +application/modify_resources=true +application/icon="" +application/console_wrapper_icon="" +application/icon_interpolation=4 +application/file_version="0.1.0.20240722" +application/product_version="0.1.0.20240722" +application/company_name="Mechanical Flower" +application/product_name="Frogger3D" +application/file_description="" +application/copyright="2024-present Mechanical Flower" +application/trademarks="" +application/export_angle=0 +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}' +$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}' +$trigger = New-ScheduledTaskTrigger -Once -At 00:00 +$settings = New-ScheduledTaskSettingsSet +$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings +Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true +Start-ScheduledTask -TaskName godot_remote_debug +while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 } +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue" +ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue +Remove-Item -Recurse -Force '{temp_dir}'" +debug/export_console_script=1 + +[preset.1] + +name="Web" +platform="Web" +runnable=true +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false + +[preset.1.options] + +custom_template/debug="" +custom_template/release="" +variant/extensions_support=false +vram_texture_compression/for_desktop=true +vram_texture_compression/for_mobile=false +html/export_icon=true +html/custom_html_shell="" +html/head_include="" +html/canvas_resize_policy=2 +html/focus_canvas_on_start=true +html/experimental_virtual_keyboard=false +progressive_web_app/enabled=false +progressive_web_app/offline_page="" +progressive_web_app/display=1 +progressive_web_app/orientation=0 +progressive_web_app/icon_144x144="" +progressive_web_app/icon_180x180="" +progressive_web_app/icon_512x512="" +progressive_web_app/background_color=Color(0, 0, 0, 1) +include_coi_service_worker=true +iframe_breakout="Disabled" + +[preset.2] + +name="macOS" +platform="macOS" +runnable=true +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false + +[preset.2.options] + +export/distribution_type=1 +binary_format/architecture="universal" +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +application/icon="" +application/icon_interpolation=4 +application/bundle_identifier="io.itch.MechanicalFlower" +application/signature="" +application/app_category="Games" +application/short_version="0.1" +application/version="0.1.0" +application/copyright="2024-present Mechanical Flower" +application/copyright_localized={} +application/min_macos_version="10.12" +application/export_angle=0 +display/high_res=true +xcode/platform_build="14C18" +xcode/sdk_version="13.1" +xcode/sdk_build="22C55" +xcode/sdk_name="macosx13.1" +xcode/xcode_version="1420" +xcode/xcode_build="14C18" +codesign/codesign=1 +codesign/installer_identity="" +codesign/apple_team_id="" +codesign/identity="" +codesign/entitlements/custom_file="" +codesign/entitlements/allow_jit_code_execution=false +codesign/entitlements/allow_unsigned_executable_memory=false +codesign/entitlements/allow_dyld_environment_variables=false +codesign/entitlements/disable_library_validation=false +codesign/entitlements/audio_input=false +codesign/entitlements/camera=false +codesign/entitlements/location=false +codesign/entitlements/address_book=false +codesign/entitlements/calendars=false +codesign/entitlements/photos_library=false +codesign/entitlements/apple_events=false +codesign/entitlements/debugging=false +codesign/entitlements/app_sandbox/enabled=false +codesign/entitlements/app_sandbox/network_server=false +codesign/entitlements/app_sandbox/network_client=false +codesign/entitlements/app_sandbox/device_usb=false +codesign/entitlements/app_sandbox/device_bluetooth=false +codesign/entitlements/app_sandbox/files_downloads=0 +codesign/entitlements/app_sandbox/files_pictures=0 +codesign/entitlements/app_sandbox/files_music=0 +codesign/entitlements/app_sandbox/files_movies=0 +codesign/entitlements/app_sandbox/files_user_selected=0 +codesign/entitlements/app_sandbox/helper_executables=[] +codesign/custom_options=PackedStringArray() +notarization/notarization=0 +privacy/microphone_usage_description="" +privacy/microphone_usage_description_localized={} +privacy/camera_usage_description="" +privacy/camera_usage_description_localized={} +privacy/location_usage_description="" +privacy/location_usage_description_localized={} +privacy/address_book_usage_description="" +privacy/address_book_usage_description_localized={} +privacy/calendar_usage_description="" +privacy/calendar_usage_description_localized={} +privacy/photos_library_usage_description="" +privacy/photos_library_usage_description_localized={} +privacy/desktop_folder_usage_description="" +privacy/desktop_folder_usage_description_localized={} +privacy/documents_folder_usage_description="" +privacy/documents_folder_usage_description_localized={} +privacy/downloads_folder_usage_description="" +privacy/downloads_folder_usage_description_localized={} +privacy/network_volumes_usage_description="" +privacy/network_volumes_usage_description_localized={} +privacy/removable_volumes_usage_description="" +privacy/removable_volumes_usage_description_localized={} +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +open \"{temp_dir}/{exe_name}.app\" --args {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name}.app/Contents/MacOS/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" +debug/export_console_script=1 +notarization/apple_team_id="" + +[preset.3] + +name="Linux/X11" +platform="Linux/X11" +runnable=true +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false + +[preset.3.options] + +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +binary_format/embed_pck=false +texture_format/bptc=true +texture_format/s3tc=true +texture_format/etc=false +texture_format/etc2=false +binary_format/architecture="x86_64" +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +export DISPLAY=:0 +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +\"{temp_dir}/{exe_name}\" {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" +debug/export_console_script=1 diff --git a/plug.gd b/plug.gd new file mode 100644 index 0000000..592da69 --- /dev/null +++ b/plug.gd @@ -0,0 +1,8 @@ +extends "res://addons/gd-plug/plug.gd" + + +func _plugging(): + plug( + "godot-extended-libraries/godot-debug-menu", + {"commit": "9d36ea23661d095198ff7fcfff2715172f73c983", "renovate-branch": "master"} + ) diff --git a/project.godot b/project.godot new file mode 100644 index 0000000..78f887b --- /dev/null +++ b/project.godot @@ -0,0 +1,116 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[application] + +config/name="Frogger3D" +config/version="0.1.0" +run/main_scene="res://scenes/main.tscn" +config/features=PackedStringArray("4.2", "Forward Plus") + +[audio] + +buses/default_bus_layout="res://resources/default_audio_bus_layout.tres" + +[autoload] + +DebugMenu="*res://addons/debug_menu/debug_menu.tscn" + +[custom_options] + +build_info/commit="10856c7df6fbb74c96a3e1a6ea8aca86904ad5d5" +build_info/date="2024/07/22" + +[display] + +window/size/mode=2 + +[editor_plugins] + +enabled=PackedStringArray("res://addons/debug_menu/plugin.cfg", "res://addons/export-build-info/plugin.cfg") + +[gui] + +theme/custom_font="res://assets/fonts/vcr_osd_mono.001.ttf" + +[input] + +pm_moveleft={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":81,"physical_keycode":0,"key_label":0,"unicode":113,"echo":false,"script":null) +] +} +pm_moveright={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":68,"physical_keycode":0,"key_label":0,"unicode":100,"echo":false,"script":null) +] +} +pm_moveforward={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":90,"physical_keycode":0,"key_label":0,"unicode":122,"echo":false,"script":null) +] +} +pm_jump={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"echo":false,"script":null) +] +} +pm_movebackward={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":83,"physical_keycode":0,"key_label":0,"unicode":115,"echo":false,"script":null) +] +} +pm_duck={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194326,"key_label":0,"unicode":0,"echo":false,"script":null) +] +} +jump={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"echo":false,"script":null) +] +} +sprint={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194325,"key_label":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":6,"pressure":0.0,"pressed":false,"script":null) +] +} +change_mouse_input={ +"deadzone": 0.5, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":true,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194332,"key_label":0,"unicode":0,"echo":false,"script":null) +] +} +look_up={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":1.0,"script":null) +] +} +look_down={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":-1.0,"script":null) +] +} +look_left={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":2,"axis_value":-1.0,"script":null) +] +} +look_right={ +"deadzone": 0.5, +"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":2,"axis_value":1.0,"script":null) +] +} + +[rendering] + +camera/depth_of_field/depth_of_field_bokeh_shape=0 +environment/ssao/quality=0 +global_illumination/sdfgi/frames_to_converge=0 diff --git a/public/.gdignore b/public/.gdignore new file mode 100644 index 0000000..e69de29 diff --git a/public/.gitignore b/public/.gitignore new file mode 100644 index 0000000..e4fdbdb --- /dev/null +++ b/public/.gitignore @@ -0,0 +1 @@ +*.import diff --git a/public/publishing/store/github.webp b/public/publishing/store/github.webp new file mode 100644 index 0000000..43a9803 Binary files /dev/null and b/public/publishing/store/github.webp differ diff --git a/public/publishing/store/itchio.webp b/public/publishing/store/itchio.webp new file mode 100644 index 0000000..935d13a Binary files /dev/null and b/public/publishing/store/itchio.webp differ diff --git a/resources/default_audio_bus_layout.tres b/resources/default_audio_bus_layout.tres new file mode 100644 index 0000000..e31ba95 --- /dev/null +++ b/resources/default_audio_bus_layout.tres @@ -0,0 +1,3 @@ +[gd_resource type="AudioBusLayout" format=3 uid="uid://chkt5s008mwdy"] + +[resource] diff --git a/scenes/log/big_log.tscn b/scenes/log/big_log.tscn new file mode 100644 index 0000000..e972ba9 --- /dev/null +++ b/scenes/log/big_log.tscn @@ -0,0 +1,22 @@ +[gd_scene load_steps=5 format=3 uid="uid://0mnmbf5uoxd1"] + +[ext_resource type="Script" path="res://scripts/log.gd" id="1_reyji"] +[ext_resource type="PackedScene" uid="uid://cqmiobe4axfkd" path="res://assets/models/kenney_nature-kit/Models/FBX format/log_large.fbx" id="2_s4may"] +[ext_resource type="PackedScene" uid="uid://stovxul1ryhk" path="res://scenes/log/water.tscn" id="3_ypeqe"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_hf6of"] +size = Vector3(0.25, 0.25, 0.755) + +[node name="BigLog" type="RigidBody3D"] +gravity_scale = 0.0 +custom_integrator = true +script = ExtResource("1_reyji") + +[node name="LogModel" parent="." instance=ExtResource("2_s4may")] +transform = Transform3D(-4.37114e-07, -8.74228e-07, -10, 0, -10, 8.74228e-07, -10, 3.82137e-14, 4.37114e-07, 0, 1.31759, 0) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0.0408602, 0) +shape = SubResource("BoxShape3D_hf6of") + +[node name="Ambiant" parent="." instance=ExtResource("3_ypeqe")] diff --git a/scenes/log/canoe.tscn b/scenes/log/canoe.tscn new file mode 100644 index 0000000..73df8ec --- /dev/null +++ b/scenes/log/canoe.tscn @@ -0,0 +1,22 @@ +[gd_scene load_steps=5 format=3 uid="uid://ujqrach2dsg3"] + +[ext_resource type="Script" path="res://scripts/log.gd" id="1_yg678"] +[ext_resource type="PackedScene" uid="uid://bjqws1c25gxi7" path="res://assets/models/kenney_nature-kit/Models/FBX format/canoe.fbx" id="2_h4rmd"] +[ext_resource type="PackedScene" uid="uid://stovxul1ryhk" path="res://scenes/log/water.tscn" id="3_kmnsf"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_hf6of"] +size = Vector3(0.25, 0.25, 0.755) + +[node name="Canoe" type="RigidBody3D"] +gravity_scale = 0.0 +custom_integrator = true +script = ExtResource("1_yg678") + +[node name="Root Scene" parent="." instance=ExtResource("2_h4rmd")] +transform = Transform3D(10, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0.0408602, 0) +shape = SubResource("BoxShape3D_hf6of") + +[node name="Ambiant" parent="." instance=ExtResource("3_kmnsf")] diff --git a/scenes/log/log.tscn b/scenes/log/log.tscn new file mode 100644 index 0000000..8a15ab3 --- /dev/null +++ b/scenes/log/log.tscn @@ -0,0 +1,23 @@ +[gd_scene load_steps=5 format=3 uid="uid://blqq8gdyl42e7"] + +[ext_resource type="Script" path="res://scripts/log.gd" id="1_1nsax"] +[ext_resource type="PackedScene" uid="uid://3j580moju3ot" path="res://assets/models/kenney_nature-kit/Models/FBX format/log.fbx" id="1_wldmq"] +[ext_resource type="PackedScene" uid="uid://stovxul1ryhk" path="res://scenes/log/water.tscn" id="3_701ns"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_hf6of"] +size = Vector3(0.25, 0.25, 0.755) + +[node name="Log" type="RigidBody3D"] +gravity_scale = 0.0 +custom_integrator = true +script = ExtResource("1_1nsax") + +[node name="LogModel" parent="." instance=ExtResource("1_wldmq")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0.0408602, 0) +shape = SubResource("BoxShape3D_hf6of") + +[node name="Ambiant" parent="." instance=ExtResource("3_701ns")] +volume_db = 0.0 diff --git a/scenes/log/water.tscn b/scenes/log/water.tscn new file mode 100644 index 0000000..1fade00 --- /dev/null +++ b/scenes/log/water.tscn @@ -0,0 +1,9 @@ +[gd_scene load_steps=2 format=3 uid="uid://stovxul1ryhk"] + +[ext_resource type="AudioStream" uid="uid://bej54vtdr65c6" path="res://assets/sounds/sfx/river/running-water.mp3" id="1_ly57d"] + +[node name="Ambiant" type="AudioStreamPlayer3D"] +stream = ExtResource("1_ly57d") +volume_db = 10.0 +autoplay = true +max_distance = 30.0 diff --git a/scenes/main.tscn b/scenes/main.tscn new file mode 100644 index 0000000..d86c9a8 --- /dev/null +++ b/scenes/main.tscn @@ -0,0 +1,527 @@ +[gd_scene load_steps=50 format=3 uid="uid://cwfu5gdkeefe3"] + +[ext_resource type="Script" path="res://scripts/main.gd" id="1_nernh"] +[ext_resource type="PackedScene" uid="uid://bdupkh0grwy27" path="res://scenes/player/player.tscn" id="2_mkirp"] +[ext_resource type="AudioStream" uid="uid://5s062r3iey2v" path="res://assets/sounds/sfx/river/water-splosh.mp3" id="3_0v83q"] +[ext_resource type="PackedScene" uid="uid://c1evrcw3fm5gi" path="res://assets/models/kenney_city-kit-roads/Models/FBX format/road_straight.fbx" id="3_w80es"] +[ext_resource type="PackedScene" uid="uid://d7ail17lprvc" path="res://scenes/tractor/tractor.tscn" id="4_wfc7x"] +[ext_resource type="PackedScene" uid="uid://belb31j0q0k6x" path="res://scenes/tractor/firetruck.tscn" id="5_sk3ub"] +[ext_resource type="PackedScene" uid="uid://mie8fcqjh13u" path="res://scenes/tractor/ambulance.tscn" id="6_0hg0x"] +[ext_resource type="PackedScene" uid="uid://chuk1csqkfwl5" path="res://scenes/tractor/race.tscn" id="7_rwnh3"] +[ext_resource type="Shader" path="res://shaders/water.gdshader" id="8_ecwnw"] +[ext_resource type="PackedScene" uid="uid://blqq8gdyl42e7" path="res://scenes/log/log.tscn" id="9_ljy4a"] +[ext_resource type="PackedScene" uid="uid://0mnmbf5uoxd1" path="res://scenes/log/big_log.tscn" id="10_y7yb4"] +[ext_resource type="PackedScene" uid="uid://ujqrach2dsg3" path="res://scenes/log/canoe.tscn" id="11_t2brj"] +[ext_resource type="PackedScene" uid="uid://qp8i87t1ymf" path="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/rockSmall.fbx" id="12_q13ol"] +[ext_resource type="PackedScene" uid="uid://cqou4v5um2sk0" path="res://assets/models/kenney_fantasy-town-kit/Models/FBX format/rockLarge.fbx" id="13_xjjjg"] +[ext_resource type="AudioStream" uid="uid://cpn351wrbbh4e" path="res://assets/sounds/sfx/river/water-stream.mp3" id="14_6wfmo"] +[ext_resource type="PackedScene" uid="uid://calm0v2vs4t2" path="res://assets/models/kenney_nature-kit/Models/FBX format/crop_melon.fbx" id="14_xi7oe"] +[ext_resource type="Script" path="res://scripts/nenuphar.gd" id="15_bptro"] +[ext_resource type="Script" path="res://scripts/timer.gd" id="16_ph0yr"] +[ext_resource type="Script" path="res://scripts/restart.gd" id="17_yly6e"] +[ext_resource type="AudioStream" uid="uid://cyltn1w4djlcp" path="res://assets/sounds/sfx/collect.mp3" id="19_30v8a"] +[ext_resource type="PackedScene" uid="uid://dub7o6bgvdwph" path="res://assets/models/kenney_nature-kit/Models/FBX format/bed_floor.fbx" id="19_vxkh4"] +[ext_resource type="PackedScene" uid="uid://cg4riy1wwwu4y" path="res://assets/models/kenney_nature-kit/Models/FBX format/campfire_planks.fbx" id="20_cg3om"] +[ext_resource type="FontFile" uid="uid://h2n7gxhuvcw0" path="res://assets/fonts/ka1.ttf" id="20_wftmn"] +[ext_resource type="AudioStream" uid="uid://cka5iah8btell" path="res://assets/sounds/sfx/road/car-ambiant.mp3" id="21_rfnye"] +[ext_resource type="PackedScene" uid="uid://cyyxu8uf5pp5g" path="res://assets/models/kenney_nature-kit/Models/FBX format/tree_oak.fbx" id="24_muora"] +[ext_resource type="PackedScene" uid="uid://7hdlcumt1gsy" path="res://assets/models/kenney_nature-kit/Models/FBX format/flower_redC.fbx" id="25_788gj"] +[ext_resource type="PackedScene" uid="uid://ba4q2fd3cayq" path="res://assets/models/kenney_nature-kit/Models/FBX format/tree_tall.fbx" id="25_cwg3e"] +[ext_resource type="PackedScene" uid="uid://cpihakma2ktve" path="res://assets/models/kenney_nature-kit/Models/FBX format/tree_thin.fbx" id="26_3qwpp"] +[ext_resource type="PackedScene" uid="uid://btxh1tvgordpq" path="res://assets/models/kenney_nature-kit/Models/FBX format/sign.fbx" id="27_4bnda"] +[ext_resource type="PackedScene" uid="uid://d3yscke00peps" path="res://assets/models/kenney_nature-kit/Models/FBX format/plant_bush.fbx" id="27_20xtt"] +[ext_resource type="PackedScene" uid="uid://g274nxrcb4ot" path="res://assets/models/kenney_nature-kit/Models/FBX format/tree_plateau.fbx" id="28_v4tm7"] +[ext_resource type="FontFile" uid="uid://5ag0am7kcnrb" path="res://assets/fonts/vcr_osd_mono.001.ttf" id="28_vllpu"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_1avmj"] +sky_top_color = Color(0.185614, 0.254854, 0.699219, 1) +sky_horizon_color = Color(0.9375, 0.86134, 0.553694, 1) +sky_curve = 0.310579 +ground_bottom_color = Color(0.14902, 0.392157, 1, 1) +ground_horizon_color = Color(0.701104, 0.655653, 0.988281, 1) +ground_curve = 0.0373213 + +[sub_resource type="Sky" id="Sky_k2oox"] +sky_material = SubResource("ProceduralSkyMaterial_1avmj") + +[sub_resource type="Environment" id="Environment_qbprn"] +background_mode = 2 +background_color = Color(0.262745, 0.792157, 0.792157, 1) +sky = SubResource("Sky_k2oox") +ambient_light_source = 2 +ambient_light_color = Color(0.882812, 0.882812, 0.882812, 1) + +[sub_resource type="BoxShape3D" id="BoxShape3D_jc7li"] +size = Vector3(75, 0.802734, 30) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_rpikh"] +albedo_color = Color(0.247237, 0.710938, 0.565111, 1) + +[sub_resource type="BoxShape3D" id="BoxShape3D_4lsi6"] +size = Vector3(80, 1, 1) + +[sub_resource type="NoiseTexture2D" id="NoiseTexture2D_4w3uo"] + +[sub_resource type="NoiseTexture2D" id="NoiseTexture2D_te767"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_tlag1"] +render_priority = 0 +shader = ExtResource("8_ecwnw") +shader_parameter/WaveSpeed = 0.5 +shader_parameter/WaveIntensity = 0.075 +shader_parameter/WaveColor = Color(0, 1, 0.986607, 1) +shader_parameter/WaterColor = Color(0, 0.169643, 1, 1) +shader_parameter/FoamSize = 0.5 +shader_parameter/WaterOpacity = 1.0 +shader_parameter/tex_frg_19 = SubResource("NoiseTexture2D_te767") +shader_parameter/tex_frg_11 = SubResource("NoiseTexture2D_4w3uo") + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_qew2d"] +data = PackedVector3Array(-0.0295, 0.0206, -0.0044, -0.0186, 0.0206, 0.0048, -0.0438, 0.0062, -0.008, -0.0438, 0.0062, -0.008, -0.0186, 0.0206, 0.0048, -0.0471, 0, -0.0072, -0.0261, 0, 0.0104, -0.0471, 0, -0.0072, -0.0186, 0.0206, 0.0048, -0.0164, 0.102, -0.0157, -0.0268, 0.0206, -0.0134, -0.0112, 0.102, -0.0319, -0.0268, 0.0206, -0.0134, -0.0198, 0.0206, -0.0351, -0.0112, 0.102, -0.0319, -0.0198, 0.0206, -0.0351, -0.0183, 0, -0.047, -0.0112, 0.102, -0.0319, -0.0112, 0.102, -0.0319, -0.0183, 0, -0.047, -0.0133, 0.0347, -0.0499, -0.016, 0, -0.0542, -0.0133, 0.0347, -0.0499, -0.0183, 0, -0.047, 0.0024, 0.102, -0.0418, -0.0133, 0.0347, -0.0499, 0.0194, 0.102, -0.0418, 0.0194, 0.102, -0.0418, -0.0133, 0.0347, -0.0499, 0.0275, 0, -0.0542, -0.016, 0, -0.0542, 0.0275, 0, -0.0542, -0.0133, 0.0347, -0.0499, -0.0112, 0.102, -0.0319, 0.0024, 0.102, -0.0418, -0.0164, 0.102, -0.0157, -0.0164, 0.102, -0.0157, 0.0024, 0.102, -0.0418, 0.0057, 0.102, 0.0004, 0.0057, 0.102, 0.0004, 0.0024, 0.102, -0.0418, 0.0123, 0.102, -0.0044, 0.0024, 0.102, -0.0418, 0.0194, 0.102, -0.0418, 0.0123, 0.102, -0.0044, 0.026, 0.102, -0.0218, 0.0123, 0.102, -0.0044, 0.0194, 0.102, -0.0418, 0.0363, 0.036, -0.0138, 0.026, 0.102, -0.0218, 0.0409, 0, -0.0128, 0.026, 0.102, -0.0218, 0.0194, 0.102, -0.0418, 0.0409, 0, -0.0128, 0.0275, 0, -0.0542, 0.0409, 0, -0.0128, 0.0194, 0.102, -0.0418, -0.0198, 0.0206, -0.0351, -0.0291, 0.0206, -0.0351, -0.0183, 0, -0.047, -0.0358, 0, -0.047, -0.0183, 0, -0.047, -0.0291, 0.0206, -0.0351, 0.0057, 0.102, 0.0004, 0.0123, 0.102, -0.0044, 0.0057, 0.0453, 0.0073, 0.0057, 0.0453, 0.0073, 0.0123, 0.102, -0.0044, 0.0257, 0.0453, -0.0072, 0.0123, 0.102, -0.0044, 0.0363, 0.036, -0.0138, 0.0257, 0.0453, -0.0072, 0.0257, 0.0453, -0.0072, 0.0363, 0.036, -0.0138, 0.0378, 0, -0.0105, 0.0409, 0, -0.0128, 0.0378, 0, -0.0105, 0.0363, 0.036, -0.0138, -0.0438, 0.0062, -0.008, -0.0471, 0, -0.0072, -0.0338, 0.0206, -0.0184, -0.0338, 0.0206, -0.0184, -0.0471, 0, -0.0072, -0.0291, 0.0206, -0.0351, -0.0358, 0, -0.047, -0.0291, 0.0206, -0.0351, -0.0471, 0, -0.0072, 0.0088, 0.0453, 0.0387, 0.0329, 0.0453, 0.0185, 0.0088, 0, 0.0542, 0.0471, 0, 0.0222, 0.0088, 0, 0.0542, 0.0329, 0.0453, 0.0185, -0.0471, 0, -0.0072, -0.0261, 0, 0.0104, -0.0358, 0, -0.047, -0.0183, 0, -0.047, -0.0261, 0, 0.0104, -0.016, 0, -0.0542, -0.0183, 0, -0.047, -0.0358, 0, -0.047, -0.0261, 0, 0.0104, -0.0294, 0, 0.0222, 0.0088, 0, 0.0542, -0.0261, 0, 0.0104, -0.0261, 0, 0.0104, 0.0088, 0, 0.0542, -0.016, 0, -0.0542, -0.016, 0, -0.0542, 0.0088, 0, 0.0542, 0.0275, 0, -0.0542, 0.0471, 0, 0.0222, 0.0378, 0, -0.0105, 0.0088, 0, 0.0542, 0.0275, 0, -0.0542, 0.0088, 0, 0.0542, 0.0378, 0, -0.0105, 0.0378, 0, -0.0105, 0.0409, 0, -0.0128, 0.0275, 0, -0.0542, -0.0032, 0.0453, 0.0286, 0.0088, 0.0453, 0.0387, -0.0237, 0.0183, 0.0207, -0.0237, 0.0183, 0.0207, 0.0088, 0.0453, 0.0387, -0.0294, 0, 0.0222, 0.0088, 0, 0.0542, -0.0294, 0, 0.0222, 0.0088, 0.0453, 0.0387, -0.0133, 0.0453, 0.0114, -0.0091, 0.0453, -0.0035, -0.0032, 0.0453, 0.0286, -0.0091, 0.0453, -0.0035, 0.0057, 0.0453, 0.0073, -0.0032, 0.0453, 0.0286, -0.0032, 0.0453, 0.0286, 0.0057, 0.0453, 0.0073, 0.0088, 0.0453, 0.0387, 0.0057, 0.0453, 0.0073, 0.0257, 0.0453, -0.0072, 0.0088, 0.0453, 0.0387, 0.0329, 0.0453, 0.0185, 0.0088, 0.0453, 0.0387, 0.0257, 0.0453, -0.0072, 0.0329, 0.0453, 0.0185, 0.0257, 0.0453, -0.0072, 0.0471, 0, 0.0222, 0.0378, 0, -0.0105, 0.0471, 0, 0.0222, 0.0257, 0.0453, -0.0072, -0.0268, 0.0206, -0.0134, -0.0164, 0.102, -0.0157, -0.0157, 0.0206, -0.0053, -0.0091, 0.0453, -0.0035, -0.0157, 0.0206, -0.0053, -0.0164, 0.102, -0.0157, 0.0057, 0.102, 0.0004, -0.0091, 0.0453, -0.0035, -0.0164, 0.102, -0.0157, 0.0057, 0.0453, 0.0073, -0.0091, 0.0453, -0.0035, 0.0057, 0.102, 0.0004, -0.0237, 0.0183, 0.0207, -0.0294, 0, 0.0222, -0.0133, 0.0453, 0.0114, -0.0294, 0, 0.0222, -0.0261, 0, 0.0104, -0.0133, 0.0453, 0.0114, -0.0261, 0, 0.0104, -0.0186, 0.0206, 0.0048, -0.0133, 0.0453, 0.0114, -0.0133, 0.0453, 0.0114, -0.0186, 0.0206, 0.0048, -0.0091, 0.0453, -0.0035, -0.0157, 0.0206, -0.0053, -0.0091, 0.0453, -0.0035, -0.0186, 0.0206, 0.0048, -0.0157, 0.0206, -0.0053, -0.0186, 0.0206, 0.0048, -0.0268, 0.0206, -0.0134, -0.0338, 0.0206, -0.0184, -0.0291, 0.0206, -0.0351, -0.0295, 0.0206, -0.0044, -0.0295, 0.0206, -0.0044, -0.0268, 0.0206, -0.0134, -0.0186, 0.0206, 0.0048, -0.0291, 0.0206, -0.0351, -0.0268, 0.0206, -0.0134, -0.0295, 0.0206, -0.0044, -0.0198, 0.0206, -0.0351, -0.0268, 0.0206, -0.0134, -0.0291, 0.0206, -0.0351, 0.026, 0.102, -0.0218, 0.0363, 0.036, -0.0138, 0.0123, 0.102, -0.0044, -0.0438, 0.0062, -0.008, -0.0338, 0.0206, -0.0184, -0.0295, 0.0206, -0.0044, -0.0237, 0.0183, 0.0207, -0.0133, 0.0453, 0.0114, -0.0032, 0.0453, 0.0286, -0.0112, 0.102, -0.0319, -0.0133, 0.0347, -0.0499, 0.0024, 0.102, -0.0418) + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_2xv4e"] +data = PackedVector3Array(-0.0295, 0.0206, -0.0044, -0.0186, 0.0206, 0.0048, -0.0438, 0.0062, -0.008, -0.0438, 0.0062, -0.008, -0.0186, 0.0206, 0.0048, -0.0471, 0, -0.0072, -0.0261, 0, 0.0104, -0.0471, 0, -0.0072, -0.0186, 0.0206, 0.0048, -0.0164, 0.102, -0.0157, -0.0268, 0.0206, -0.0134, -0.0112, 0.102, -0.0319, -0.0268, 0.0206, -0.0134, -0.0198, 0.0206, -0.0351, -0.0112, 0.102, -0.0319, -0.0198, 0.0206, -0.0351, -0.0183, 0, -0.047, -0.0112, 0.102, -0.0319, -0.0112, 0.102, -0.0319, -0.0183, 0, -0.047, -0.0133, 0.0347, -0.0499, -0.016, 0, -0.0542, -0.0133, 0.0347, -0.0499, -0.0183, 0, -0.047, 0.0024, 0.102, -0.0418, -0.0133, 0.0347, -0.0499, 0.0194, 0.102, -0.0418, 0.0194, 0.102, -0.0418, -0.0133, 0.0347, -0.0499, 0.0275, 0, -0.0542, -0.016, 0, -0.0542, 0.0275, 0, -0.0542, -0.0133, 0.0347, -0.0499, -0.0112, 0.102, -0.0319, 0.0024, 0.102, -0.0418, -0.0164, 0.102, -0.0157, -0.0164, 0.102, -0.0157, 0.0024, 0.102, -0.0418, 0.0057, 0.102, 0.0004, 0.0057, 0.102, 0.0004, 0.0024, 0.102, -0.0418, 0.0123, 0.102, -0.0044, 0.0024, 0.102, -0.0418, 0.0194, 0.102, -0.0418, 0.0123, 0.102, -0.0044, 0.026, 0.102, -0.0218, 0.0123, 0.102, -0.0044, 0.0194, 0.102, -0.0418, 0.0363, 0.036, -0.0138, 0.026, 0.102, -0.0218, 0.0409, 0, -0.0128, 0.026, 0.102, -0.0218, 0.0194, 0.102, -0.0418, 0.0409, 0, -0.0128, 0.0275, 0, -0.0542, 0.0409, 0, -0.0128, 0.0194, 0.102, -0.0418, -0.0198, 0.0206, -0.0351, -0.0291, 0.0206, -0.0351, -0.0183, 0, -0.047, -0.0358, 0, -0.047, -0.0183, 0, -0.047, -0.0291, 0.0206, -0.0351, 0.0057, 0.102, 0.0004, 0.0123, 0.102, -0.0044, 0.0057, 0.0453, 0.0073, 0.0057, 0.0453, 0.0073, 0.0123, 0.102, -0.0044, 0.0257, 0.0453, -0.0072, 0.0123, 0.102, -0.0044, 0.0363, 0.036, -0.0138, 0.0257, 0.0453, -0.0072, 0.0257, 0.0453, -0.0072, 0.0363, 0.036, -0.0138, 0.0378, 0, -0.0105, 0.0409, 0, -0.0128, 0.0378, 0, -0.0105, 0.0363, 0.036, -0.0138, -0.0438, 0.0062, -0.008, -0.0471, 0, -0.0072, -0.0338, 0.0206, -0.0184, -0.0338, 0.0206, -0.0184, -0.0471, 0, -0.0072, -0.0291, 0.0206, -0.0351, -0.0358, 0, -0.047, -0.0291, 0.0206, -0.0351, -0.0471, 0, -0.0072, 0.0088, 0.0453, 0.0387, 0.0329, 0.0453, 0.0185, 0.0088, 0, 0.0542, 0.0471, 0, 0.0222, 0.0088, 0, 0.0542, 0.0329, 0.0453, 0.0185, -0.0471, 0, -0.0072, -0.0261, 0, 0.0104, -0.0358, 0, -0.047, -0.0183, 0, -0.047, -0.0261, 0, 0.0104, -0.016, 0, -0.0542, -0.0183, 0, -0.047, -0.0358, 0, -0.047, -0.0261, 0, 0.0104, -0.0294, 0, 0.0222, 0.0088, 0, 0.0542, -0.0261, 0, 0.0104, -0.0261, 0, 0.0104, 0.0088, 0, 0.0542, -0.016, 0, -0.0542, -0.016, 0, -0.0542, 0.0088, 0, 0.0542, 0.0275, 0, -0.0542, 0.0471, 0, 0.0222, 0.0378, 0, -0.0105, 0.0088, 0, 0.0542, 0.0275, 0, -0.0542, 0.0088, 0, 0.0542, 0.0378, 0, -0.0105, 0.0378, 0, -0.0105, 0.0409, 0, -0.0128, 0.0275, 0, -0.0542, -0.0032, 0.0453, 0.0286, 0.0088, 0.0453, 0.0387, -0.0237, 0.0183, 0.0207, -0.0237, 0.0183, 0.0207, 0.0088, 0.0453, 0.0387, -0.0294, 0, 0.0222, 0.0088, 0, 0.0542, -0.0294, 0, 0.0222, 0.0088, 0.0453, 0.0387, -0.0133, 0.0453, 0.0114, -0.0091, 0.0453, -0.0035, -0.0032, 0.0453, 0.0286, -0.0091, 0.0453, -0.0035, 0.0057, 0.0453, 0.0073, -0.0032, 0.0453, 0.0286, -0.0032, 0.0453, 0.0286, 0.0057, 0.0453, 0.0073, 0.0088, 0.0453, 0.0387, 0.0057, 0.0453, 0.0073, 0.0257, 0.0453, -0.0072, 0.0088, 0.0453, 0.0387, 0.0329, 0.0453, 0.0185, 0.0088, 0.0453, 0.0387, 0.0257, 0.0453, -0.0072, 0.0329, 0.0453, 0.0185, 0.0257, 0.0453, -0.0072, 0.0471, 0, 0.0222, 0.0378, 0, -0.0105, 0.0471, 0, 0.0222, 0.0257, 0.0453, -0.0072, -0.0268, 0.0206, -0.0134, -0.0164, 0.102, -0.0157, -0.0157, 0.0206, -0.0053, -0.0091, 0.0453, -0.0035, -0.0157, 0.0206, -0.0053, -0.0164, 0.102, -0.0157, 0.0057, 0.102, 0.0004, -0.0091, 0.0453, -0.0035, -0.0164, 0.102, -0.0157, 0.0057, 0.0453, 0.0073, -0.0091, 0.0453, -0.0035, 0.0057, 0.102, 0.0004, -0.0237, 0.0183, 0.0207, -0.0294, 0, 0.0222, -0.0133, 0.0453, 0.0114, -0.0294, 0, 0.0222, -0.0261, 0, 0.0104, -0.0133, 0.0453, 0.0114, -0.0261, 0, 0.0104, -0.0186, 0.0206, 0.0048, -0.0133, 0.0453, 0.0114, -0.0133, 0.0453, 0.0114, -0.0186, 0.0206, 0.0048, -0.0091, 0.0453, -0.0035, -0.0157, 0.0206, -0.0053, -0.0091, 0.0453, -0.0035, -0.0186, 0.0206, 0.0048, -0.0157, 0.0206, -0.0053, -0.0186, 0.0206, 0.0048, -0.0268, 0.0206, -0.0134, -0.0338, 0.0206, -0.0184, -0.0291, 0.0206, -0.0351, -0.0295, 0.0206, -0.0044, -0.0295, 0.0206, -0.0044, -0.0268, 0.0206, -0.0134, -0.0186, 0.0206, 0.0048, -0.0291, 0.0206, -0.0351, -0.0268, 0.0206, -0.0134, -0.0295, 0.0206, -0.0044, -0.0198, 0.0206, -0.0351, -0.0268, 0.0206, -0.0134, -0.0291, 0.0206, -0.0351, 0.026, 0.102, -0.0218, 0.0363, 0.036, -0.0138, 0.0123, 0.102, -0.0044, -0.0438, 0.0062, -0.008, -0.0338, 0.0206, -0.0184, -0.0295, 0.0206, -0.0044, -0.0237, 0.0183, 0.0207, -0.0133, 0.0453, 0.0114, -0.0032, 0.0453, 0.0286, -0.0112, 0.102, -0.0319, -0.0133, 0.0347, -0.0499, 0.0024, 0.102, -0.0418) + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_c70sx"] +data = PackedVector3Array(0.0603, 0.0434, -0.0046, 0.0537, 0.0434, -0.0248, 0.0799, 0, -0.0002, 0.0537, 0.0434, -0.0248, 0.0558, 0.0138, -0.0567, 0.0799, 0, -0.0002, 0.0596, 0, -0.0626, 0.0799, 0, -0.0002, 0.0558, 0.0138, -0.0567, 0.0062, 0.0434, -0.0439, -0.0009, 0.018, -0.0548, 0.0388, 0.0434, -0.0439, 0.0388, 0.0434, -0.0439, -0.0009, 0.018, -0.0548, 0.0558, 0.0138, -0.0567, 0.0558, 0.0138, -0.0567, -0.0009, 0.018, -0.0548, 0.0596, 0, -0.0626, 0.0008, 0, -0.0626, 0.0596, 0, -0.0626, -0.0009, 0.018, -0.0548, 0.0037, 0.0434, -0.0362, 0.0062, 0.0434, -0.0439, 0.019, 0.0434, -0.0362, 0.0062, 0.0434, -0.0439, 0.0388, 0.0434, -0.0439, 0.019, 0.0434, -0.0362, 0.019, 0.0434, -0.0362, 0.0388, 0.0434, -0.0439, 0.0322, 0.0434, 0.0044, 0.0322, 0.0434, 0.0044, 0.0327, 0.0434, 0.0154, 0.0298, 0.0434, 0.0062, 0.0322, 0.0434, 0.0044, 0.0388, 0.0434, -0.0439, 0.0327, 0.0434, 0.0154, 0.0388, 0.0434, -0.0439, 0.0537, 0.0434, -0.0248, 0.0327, 0.0434, 0.0154, 0.0603, 0.0434, -0.0046, 0.0327, 0.0434, 0.0154, 0.0537, 0.0434, -0.0248, 0.0037, 0.0434, -0.0362, 0.0006, 0.0355, -0.0372, 0.0062, 0.0434, -0.0439, -0.0009, 0.018, -0.0548, 0.0062, 0.0434, -0.0439, 0.0006, 0.0355, -0.0372, 0.0327, 0.0434, 0.0154, 0.0603, 0.0434, -0.0046, 0.0434, 0, 0.0263, 0.0799, 0, -0.0002, 0.0434, 0, 0.0263, 0.0603, 0.0434, -0.0046, -0.0616, 0, -0.0185, -0.0799, 0, 0.0377, -0.0462, 0, -0.0185, -0.0614, 0, -0.0296, -0.0462, 0, -0.0185, -0.0475, 0, -0.0725, -0.0462, 0, -0.0185, -0.0321, 0, 0.0725, -0.0475, 0, -0.0725, -0.0321, 0, 0.0725, -0.0462, 0, -0.0185, -0.0799, 0, 0.0377, -0.0321, 0, 0.0725, -0.0057, 0, 0.0533, -0.0475, 0, -0.0725, -0.0475, 0, -0.0725, -0.0057, 0, 0.0533, -0.0024, 0, -0.0725, -0.0024, 0, -0.0725, -0.0057, 0, 0.0533, 0.0008, 0, -0.0626, 0.0799, 0, -0.0002, 0.0596, 0, -0.0626, 0.0434, 0, 0.0263, -0.0057, 0, 0.0533, 0.011, 0, 0.0654, 0.0008, 0, -0.0626, 0.0008, 0, -0.0626, 0.0434, 0, 0.0263, 0.0596, 0, -0.0626, 0.011, 0, 0.0654, 0.0434, 0, 0.0263, 0.0008, 0, -0.0626, 0.0475, 0, 0.0389, 0.0434, 0, 0.0263, 0.011, 0, 0.0654, -0.0215, 0.1163, -0.0165, -0.018, 0.1163, -0.0274, -0.0215, 0.1163, 0.0068, -0.0215, 0.1163, 0.0068, -0.018, 0.1163, -0.0274, -0.0024, 0.1163, 0.0207, -0.018, 0.1163, -0.0274, 0.0133, 0.1163, -0.0274, -0.0024, 0.1163, 0.0207, 0.0229, 0.1163, 0.0023, -0.0024, 0.1163, 0.0207, 0.0133, 0.1163, -0.0274, -0.0711, 0.0138, 0.0357, -0.0799, 0, 0.0377, -0.0589, 0.0275, 0.0235, -0.0589, 0.0275, 0.0235, -0.0799, 0, 0.0377, -0.0507, 0.0275, -0.0017, -0.0616, 0, -0.0185, -0.0507, 0.0275, -0.0017, -0.0799, 0, 0.0377, -0.0461, 0.0275, 0.0454, -0.0321, 0.0275, 0.0556, -0.0711, 0.0138, 0.0357, -0.0711, 0.0138, 0.0357, -0.0321, 0.0275, 0.0556, -0.0799, 0, 0.0377, -0.0321, 0, 0.0725, -0.0799, 0, 0.0377, -0.0321, 0.0275, 0.0556, 0.0451, 0.0138, 0.0384, 0.0317, 0.0762, 0.0286, 0.0475, 0, 0.0389, 0.0475, 0, 0.0389, 0.0317, 0.0762, 0.0286, 0.0434, 0, 0.0263, 0.0434, 0, 0.0263, 0.0317, 0.0762, 0.0286, 0.0327, 0.0434, 0.0154, 0.0317, 0.0762, 0.0286, 0.0252, 0.0762, 0.0088, 0.0327, 0.0434, 0.0154, 0.0327, 0.0434, 0.0154, 0.0252, 0.0762, 0.0088, 0.0298, 0.0434, 0.0062, 0.027, 0.0604, 0.0062, 0.0298, 0.0434, 0.0062, 0.0252, 0.0762, 0.0088, -0.0074, 0.0762, 0.0219, -0.0024, 0.0762, 0.0256, -0.012, 0.0762, 0.0359, -0.012, 0.0762, 0.0359, -0.0024, 0.0762, 0.0256, 0.011, 0.0762, 0.0526, -0.0024, 0.0762, 0.0256, 0.0206, 0.0762, 0.0088, 0.011, 0.0762, 0.0526, 0.0206, 0.0762, 0.0088, 0.0252, 0.0762, 0.0088, 0.011, 0.0762, 0.0526, 0.011, 0.0762, 0.0526, 0.0252, 0.0762, 0.0088, 0.0279, 0.0762, 0.0403, 0.0317, 0.0762, 0.0286, 0.0279, 0.0762, 0.0403, 0.0252, 0.0762, 0.0088, -0.0321, 0.0275, 0.0556, -0.0141, 0.0275, 0.0426, -0.0321, 0, 0.0725, -0.0057, 0, 0.0533, -0.0321, 0, 0.0725, -0.0141, 0.0275, 0.0426, 0.0279, 0.0762, 0.0403, 0.0451, 0.0138, 0.0384, 0.011, 0.0762, 0.0526, 0.011, 0.0762, 0.0526, 0.0451, 0.0138, 0.0384, 0.011, 0, 0.0654, 0.0475, 0, 0.0389, 0.011, 0, 0.0654, 0.0451, 0.0138, 0.0384, -0.0479, 0.0526, -0.0326, -0.0614, 0, -0.0296, -0.0429, 0.0526, -0.0482, -0.0429, 0.0526, -0.0482, -0.0614, 0, -0.0296, -0.0461, 0.0087, -0.0703, -0.0475, 0, -0.0725, -0.0461, 0.0087, -0.0703, -0.0614, 0, -0.0296, -0.0271, 0.0526, -0.0596, -0.0461, 0.0087, -0.0703, -0.0107, 0.0526, -0.0596, -0.0107, 0.0526, -0.0596, -0.0461, 0.0087, -0.0703, -0.0024, 0, -0.0725, -0.0475, 0, -0.0725, -0.0024, 0, -0.0725, -0.0461, 0.0087, -0.0703, -0.0479, 0.0526, -0.0326, -0.0429, 0.0526, -0.0482, -0.0284, 0.0526, -0.0184, -0.0429, 0.0526, -0.0482, -0.0271, 0.0526, -0.0596, -0.0284, 0.0526, -0.0184, -0.0284, 0.0526, -0.0184, -0.0271, 0.0526, -0.0596, -0.023, 0.0526, -0.0351, -0.0271, 0.0526, -0.0596, -0.0107, 0.0526, -0.0596, -0.023, 0.0526, -0.0351, -0.0028, 0.0526, -0.0351, -0.023, 0.0526, -0.0351, -0.0107, 0.0526, -0.0596, -0.0368, 0.0275, -0.0017, -0.0507, 0.0275, -0.0017, -0.0354, 0.0092, -0.0129, -0.0507, 0.0275, -0.0017, -0.0616, 0, -0.0185, -0.0354, 0.0092, -0.0129, -0.0462, 0, -0.0185, -0.0354, 0.0092, -0.0129, -0.0616, 0, -0.0185, -0.0206, 0.0275, 0.0378, -0.012, 0.0762, 0.0359, -0.0141, 0.0275, 0.0426, -0.0141, 0.0275, 0.0426, 0.011, 0.0762, 0.0526, -0.0057, 0, 0.0533, 0.011, 0.0762, 0.0526, -0.0141, 0.0275, 0.0426, -0.012, 0.0762, 0.0359, 0.011, 0, 0.0654, -0.0057, 0, 0.0533, 0.011, 0.0762, 0.0526, 0.0229, 0.1163, 0.0023, 0.0133, 0.1163, -0.0274, 0.0322, 0.0434, 0.0044, 0.019, 0.0434, -0.0362, 0.0322, 0.0434, 0.0044, 0.0133, 0.1163, -0.0274, 0.0006, 0.0355, -0.0372, -0.0028, 0.0526, -0.0351, -0.0009, 0.018, -0.0548, -0.0028, 0.0526, -0.0351, -0.0107, 0.0526, -0.0596, -0.0009, 0.018, -0.0548, -0.0009, 0.018, -0.0548, -0.0107, 0.0526, -0.0596, 0.0008, 0, -0.0626, -0.0024, 0, -0.0725, 0.0008, 0, -0.0626, -0.0107, 0.0526, -0.0596, -0.018, 0.1163, -0.0274, -0.023, 0.0526, -0.0351, 0.0133, 0.1163, -0.0274, -0.023, 0.0526, -0.0351, -0.0028, 0.0526, -0.0351, 0.0133, 0.1163, -0.0274, 0.0133, 0.1163, -0.0274, -0.0028, 0.0526, -0.0351, 0.019, 0.0434, -0.0362, 0.019, 0.0434, -0.0362, -0.0028, 0.0526, -0.0351, 0.0037, 0.0434, -0.0362, 0.0006, 0.0355, -0.0372, 0.0037, 0.0434, -0.0362, -0.0028, 0.0526, -0.0351, -0.039, 0.0275, 0.0049, -0.0368, 0.0275, -0.0017, -0.0358, 0.0526, 0.0042, -0.0368, 0.0275, -0.0017, -0.0354, 0.0092, -0.0129, -0.0358, 0.0526, 0.0042, -0.0358, 0.0526, 0.0042, -0.0354, 0.0092, -0.0129, -0.0215, 0.1163, -0.0165, -0.0354, 0.0092, -0.0129, -0.0284, 0.0526, -0.0184, -0.0215, 0.1163, -0.0165, -0.0215, 0.1163, -0.0165, -0.0284, 0.0526, -0.0184, -0.018, 0.1163, -0.0274, -0.023, 0.0526, -0.0351, -0.018, 0.1163, -0.0274, -0.0284, 0.0526, -0.0184, -0.0284, 0.0526, -0.0184, -0.0354, 0.0092, -0.0129, -0.0479, 0.0526, -0.0326, -0.0354, 0.0092, -0.0129, -0.0462, 0, -0.0185, -0.0479, 0.0526, -0.0326, -0.0614, 0, -0.0296, -0.0479, 0.0526, -0.0326, -0.0462, 0, -0.0185, -0.0024, 0.1163, 0.0207, 0.0229, 0.1163, 0.0023, -0.0024, 0.0762, 0.0256, -0.0024, 0.0762, 0.0256, 0.0229, 0.1163, 0.0023, 0.0206, 0.0762, 0.0088, 0.0206, 0.0762, 0.0088, 0.0229, 0.1163, 0.0023, 0.027, 0.0604, 0.0062, 0.027, 0.0604, 0.0062, 0.0229, 0.1163, 0.0023, 0.0298, 0.0434, 0.0062, 0.0322, 0.0434, 0.0044, 0.0298, 0.0434, 0.0062, 0.0229, 0.1163, 0.0023, -0.039, 0.0275, 0.0049, -0.0358, 0.0526, 0.0042, -0.0155, 0.0275, 0.0219, -0.0215, 0.1163, 0.0068, -0.0074, 0.0762, 0.0219, -0.0358, 0.0526, 0.0042, -0.0074, 0.0762, 0.0219, -0.0155, 0.0275, 0.0219, -0.0358, 0.0526, 0.0042, -0.0024, 0.1163, 0.0207, -0.0074, 0.0762, 0.0219, -0.0215, 0.1163, 0.0068, -0.0024, 0.0762, 0.0256, -0.0074, 0.0762, 0.0219, -0.0024, 0.1163, 0.0207, -0.0206, 0.0275, 0.0378, -0.0155, 0.0275, 0.0219, -0.012, 0.0762, 0.0359, -0.0074, 0.0762, 0.0219, -0.012, 0.0762, 0.0359, -0.0155, 0.0275, 0.0219, -0.0155, 0.0275, 0.0219, -0.0206, 0.0275, 0.0378, -0.039, 0.0275, 0.0049, -0.0206, 0.0275, 0.0378, -0.0141, 0.0275, 0.0426, -0.0321, 0.0275, 0.0556, -0.0321, 0.0275, 0.0556, -0.039, 0.0275, 0.0049, -0.0206, 0.0275, 0.0378, -0.0589, 0.0275, 0.0235, -0.0507, 0.0275, -0.0017, -0.0461, 0.0275, 0.0454, -0.0461, 0.0275, 0.0454, -0.039, 0.0275, 0.0049, -0.0321, 0.0275, 0.0556, -0.0461, 0.0275, 0.0454, -0.0507, 0.0275, -0.0017, -0.039, 0.0275, 0.0049, -0.0368, 0.0275, -0.0017, -0.039, 0.0275, 0.0049, -0.0507, 0.0275, -0.0017, 0.0317, 0.0762, 0.0286, 0.0451, 0.0138, 0.0384, 0.0279, 0.0762, 0.0403, 0.0388, 0.0434, -0.0439, 0.0558, 0.0138, -0.0567, 0.0537, 0.0434, -0.0248, -0.0589, 0.0275, 0.0235, -0.0461, 0.0275, 0.0454, -0.0711, 0.0138, 0.0357, -0.0358, 0.0526, 0.0042, -0.0215, 0.1163, -0.0165, -0.0215, 0.1163, 0.0068, -0.0429, 0.0526, -0.0482, -0.0461, 0.0087, -0.0703, -0.0271, 0.0526, -0.0596, 0.0206, 0.0762, 0.0088, 0.027, 0.0604, 0.0062, 0.0252, 0.0762, 0.0088) + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_amtrf"] +data = PackedVector3Array(0.0181, 0.0087, 0.0048, 0.0181, 0.0261, 0.0048, 0.0209, 0.0087, 0, 0.0209, 0.0261, 0, 0.0209, 0.0087, 0, 0.0181, 0.0261, 0.0048, 0.0104, 0.0261, 0.0181, 0.0083, 0.0348, 0.0143, 0.0132, 0.0261, 0.0132, 0.0105, 0.0348, 0.0105, 0.0132, 0.0261, 0.0132, 0.0083, 0.0348, 0.0143, 0.0181, 0.0087, 0.0048, 0.0209, 0.0087, 0, 0.0143, 0, 0.0038, 0.0165, 0, 0, 0.0143, 0, 0.0038, 0.0209, 0.0087, 0, -0.0165, 0.0348, 0, -0.0143, 0.0348, -0.0038, -0.0143, 0.0348, 0.0038, -0.0143, 0.0348, 0.0038, -0.0143, 0.0348, -0.0038, -0.0077, 0.0348, 0, -0.0077, 0.0348, 0, -0.007, 0.0348, 0.0012, -0.0143, 0.0348, 0.0038, -0.007, 0.0348, -0.0012, -0.0077, 0.0348, 0, -0.0143, 0.0348, -0.0038, -0.0104, 0.0087, 0.0181, -0.0083, 0, 0.0143, -0.0132, 0.0087, 0.0132, -0.0105, 0, 0.0105, -0.0132, 0.0087, 0.0132, -0.0083, 0, 0.0143, -0.0048, 0.0261, 0.0181, -0.0048, 0.0087, 0.0181, -0.0104, 0.0261, 0.0181, -0.0104, 0.0087, 0.0181, -0.0104, 0.0261, 0.0181, -0.0048, 0.0087, 0.0181, -0.0209, 0.0087, 0, -0.0181, 0.0087, -0.0048, -0.0209, 0.0261, 0, -0.0181, 0.0261, -0.0048, -0.0209, 0.0261, 0, -0.0181, 0.0087, -0.0048, 0.0025, 0.0348, -0.0066, 0.0038, 0.0348, -0.0143, 0.0038, 0.0348, -0.0066, 0.0038, 0.0348, -0.0066, 0.0038, 0.0348, -0.0143, 0.0045, 0.0348, -0.0055, 0.0038, 0.0348, -0.0143, 0.0083, 0.0348, -0.0143, 0.0045, 0.0348, -0.0055, 0.0105, 0.0348, -0.0105, 0.0045, 0.0348, -0.0055, 0.0083, 0.0348, -0.0143, -0.0104, 0.0261, 0.0181, -0.0132, 0.0261, 0.0132, -0.0083, 0.0348, 0.0143, -0.0105, 0.0348, 0.0105, -0.0083, 0.0348, 0.0143, -0.0132, 0.0261, 0.0132, 0.0038, 0.0348, 0.0143, 0.0083, 0.0348, 0.0143, 0.0048, 0.0261, 0.0181, 0.0104, 0.0261, 0.0181, 0.0048, 0.0261, 0.0181, 0.0083, 0.0348, 0.0143, -0.0105, 0, -0.0105, -0.0083, 0, -0.0143, -0.0132, 0.0087, -0.0132, -0.0104, 0.0087, -0.0181, -0.0132, 0.0087, -0.0132, -0.0083, 0, -0.0143, -0.0105, 0.0348, 0.0105, -0.0045, 0.0348, 0.0055, -0.0083, 0.0348, 0.0143, -0.0045, 0.0348, 0.0055, -0.0038, 0.0348, 0.0066, -0.0083, 0.0348, 0.0143, -0.0083, 0.0348, 0.0143, -0.0038, 0.0348, 0.0066, -0.0038, 0.0348, 0.0143, -0.0025, 0.0348, 0.0066, -0.0038, 0.0348, 0.0143, -0.0038, 0.0348, 0.0066, -0.0038, 0.0348, -0.0143, -0.0083, 0.0348, -0.0143, -0.0048, 0.0261, -0.0181, -0.0104, 0.0261, -0.0181, -0.0048, 0.0261, -0.0181, -0.0083, 0.0348, -0.0143, 0.0083, 0.0348, -0.0143, 0.0038, 0.0348, -0.0143, 0.0104, 0.0261, -0.0181, 0.0048, 0.0261, -0.0181, 0.0104, 0.0261, -0.0181, 0.0038, 0.0348, -0.0143, 0.0104, 0.0087, -0.0181, 0.0048, 0.0087, -0.0181, 0.0083, 0, -0.0143, 0.0038, 0, -0.0143, 0.0083, 0, -0.0143, 0.0048, 0.0087, -0.0181, -0.0143, 0.0348, 0.0038, -0.0181, 0.0261, 0.0048, -0.0165, 0.0348, 0, -0.0209, 0.0261, 0, -0.0165, 0.0348, 0, -0.0181, 0.0261, 0.0048, 0.0165, 0.0348, 0, 0.0143, 0.0348, -0.0038, 0.0209, 0.0261, 0, 0.0181, 0.0261, -0.0048, 0.0209, 0.0261, 0, 0.0143, 0.0348, -0.0038, 0.0048, 0.0261, 0.0181, 0.0104, 0.0261, 0.0181, 0.0048, 0.0087, 0.0181, 0.0104, 0.0087, 0.0181, 0.0048, 0.0087, 0.0181, 0.0104, 0.0261, 0.0181, 0.0105, 0, -0.0105, 0.0132, 0.0087, -0.0132, 0.0083, 0, -0.0143, 0.0104, 0.0087, -0.0181, 0.0083, 0, -0.0143, 0.0132, 0.0087, -0.0132, 0.0025, 0.0348, 0.0066, 0.0038, 0.0348, 0.0066, 0.0038, 0.0348, 0.0143, 0.0038, 0.0348, 0.0066, 0.0045, 0.0348, 0.0055, 0.0038, 0.0348, 0.0143, 0.0038, 0.0348, 0.0143, 0.0045, 0.0348, 0.0055, 0.0083, 0.0348, 0.0143, 0.0105, 0.0348, 0.0105, 0.0083, 0.0348, 0.0143, 0.0045, 0.0348, 0.0055, 0.0165, 0.0348, 0, 0.0143, 0.0348, 0.0038, 0.0143, 0.0348, -0.0038, 0.007, 0.0348, 0.0012, 0.0143, 0.0348, -0.0038, 0.0143, 0.0348, 0.0038, 0.0077, 0.0348, 0, 0.0143, 0.0348, -0.0038, 0.007, 0.0348, 0.0012, 0.0143, 0.0348, -0.0038, 0.0077, 0.0348, 0, 0.007, 0.0348, -0.0012, 0.0104, 0.0087, 0.0181, 0.0104, 0.0261, 0.0181, 0.0132, 0.0087, 0.0132, 0.0132, 0.0261, 0.0132, 0.0132, 0.0087, 0.0132, 0.0104, 0.0261, 0.0181, 0.0181, 0.0261, 0.0048, 0.0143, 0.0348, 0.0038, 0.0209, 0.0261, 0, 0.0165, 0.0348, 0, 0.0209, 0.0261, 0, 0.0143, 0.0348, 0.0038, -0.0048, 0.0261, -0.0181, -0.0104, 0.0261, -0.0181, -0.0048, 0.0087, -0.0181, -0.0104, 0.0087, -0.0181, -0.0048, 0.0087, -0.0181, -0.0104, 0.0261, -0.0181, 0.0132, 0.0087, -0.0132, 0.0132, 0.0261, -0.0132, 0.0104, 0.0087, -0.0181, 0.0104, 0.0261, -0.0181, 0.0104, 0.0087, -0.0181, 0.0132, 0.0261, -0.0132, -0.0083, 0.0348, 0.0143, -0.0038, 0.0348, 0.0143, -0.0104, 0.0261, 0.0181, -0.0048, 0.0261, 0.0181, -0.0104, 0.0261, 0.0181, -0.0038, 0.0348, 0.0143, -0.0105, 0.0348, -0.0105, -0.0132, 0.0261, -0.0132, -0.0083, 0.0348, -0.0143, -0.0104, 0.0261, -0.0181, -0.0083, 0.0348, -0.0143, -0.0132, 0.0261, -0.0132, -0.0104, 0.0087, 0.0181, -0.0048, 0.0087, 0.0181, -0.0083, 0, 0.0143, -0.0038, 0, 0.0143, -0.0083, 0, 0.0143, -0.0048, 0.0087, 0.0181, 0.0104, 0.0087, 0.0181, 0.0132, 0.0087, 0.0132, 0.0083, 0, 0.0143, 0.0105, 0, 0.0105, 0.0083, 0, 0.0143, 0.0132, 0.0087, 0.0132, 0.0105, 0.0348, -0.0105, 0.0083, 0.0348, -0.0143, 0.0132, 0.0261, -0.0132, 0.0104, 0.0261, -0.0181, 0.0132, 0.0261, -0.0132, 0.0083, 0.0348, -0.0143, 0.0048, 0.0087, 0.0181, 0.0104, 0.0087, 0.0181, 0.0038, 0, 0.0143, 0.0083, 0, 0.0143, 0.0038, 0, 0.0143, 0.0104, 0.0087, 0.0181, -0.0165, 0, 0, -0.0143, 0, -0.0038, -0.0209, 0.0087, 0, -0.0181, 0.0087, -0.0048, -0.0209, 0.0087, 0, -0.0143, 0, -0.0038, -0.0105, 0.0348, -0.0105, -0.0083, 0.0348, -0.0143, -0.0045, 0.0348, -0.0055, -0.0045, 0.0348, -0.0055, -0.0083, 0.0348, -0.0143, -0.0038, 0.0348, -0.0066, -0.0083, 0.0348, -0.0143, -0.0038, 0.0348, -0.0143, -0.0038, 0.0348, -0.0066, -0.0025, 0.0348, -0.0066, -0.0038, 0.0348, -0.0066, -0.0038, 0.0348, -0.0143, -0.0048, 0.0087, -0.0181, -0.0104, 0.0087, -0.0181, -0.0038, 0, -0.0143, -0.0083, 0, -0.0143, -0.0038, 0, -0.0143, -0.0104, 0.0087, -0.0181, 0.0209, 0.0087, 0, 0.0209, 0.0261, 0, 0.0181, 0.0087, -0.0048, 0.0181, 0.0261, -0.0048, 0.0181, 0.0087, -0.0048, 0.0209, 0.0261, 0, -0.0165, 0.0348, 0, -0.0209, 0.0261, 0, -0.0143, 0.0348, -0.0038, -0.0181, 0.0261, -0.0048, -0.0143, 0.0348, -0.0038, -0.0209, 0.0261, 0, -0.0165, 0, 0, -0.0143, 0, 0.0038, -0.0143, 0, -0.0038, -0.0143, 0, -0.0038, -0.0143, 0, 0.0038, -0.0124, 0, -0.0072, -0.0143, 0, 0.0038, -0.0124, 0, 0.0072, -0.0124, 0, -0.0072, -0.0124, 0, -0.0072, -0.0124, 0, 0.0072, -0.0105, 0, -0.0105, -0.0124, 0, 0.0072, -0.0105, 0, 0.0105, -0.0105, 0, -0.0105, -0.0105, 0, 0.0105, -0.0083, 0, 0.0143, -0.0105, 0, -0.0105, -0.0105, 0, -0.0105, -0.0083, 0, 0.0143, -0.0083, 0, -0.0143, -0.0083, 0, -0.0143, -0.0083, 0, 0.0143, -0.0038, 0, -0.0143, -0.0083, 0, 0.0143, -0.0038, 0, 0.0143, -0.0038, 0, -0.0143, -0.0038, 0, -0.0143, -0.0038, 0, 0.0143, 0, 0, -0.0143, -0.0038, 0, 0.0143, 0, 0, 0.0143, 0, 0, -0.0143, 0, 0, -0.0143, 0, 0, 0.0143, 0.0038, 0, -0.0143, 0, 0, 0.0143, 0.0038, 0, 0.0143, 0.0038, 0, -0.0143, 0.0038, 0, -0.0143, 0.0038, 0, 0.0143, 0.0083, 0, -0.0143, 0.0038, 0, 0.0143, 0.0083, 0, 0.0143, 0.0083, 0, -0.0143, 0.0083, 0, -0.0143, 0.0083, 0, 0.0143, 0.0105, 0, -0.0105, 0.0083, 0, 0.0143, 0.0105, 0, 0.0105, 0.0105, 0, -0.0105, 0.0105, 0, -0.0105, 0.0105, 0, 0.0105, 0.0124, 0, -0.0072, 0.0105, 0, 0.0105, 0.0124, 0, 0.0072, 0.0124, 0, -0.0072, 0.0124, 0, -0.0072, 0.0124, 0, 0.0072, 0.0143, 0, -0.0038, 0.0124, 0, 0.0072, 0.0143, 0, 0.0038, 0.0143, 0, -0.0038, 0.0165, 0, 0, 0.0143, 0, -0.0038, 0.0143, 0, 0.0038, -0.0104, 0.0261, 0.0181, -0.0104, 0.0087, 0.0181, -0.0132, 0.0261, 0.0132, -0.0132, 0.0087, 0.0132, -0.0132, 0.0261, 0.0132, -0.0104, 0.0087, 0.0181, 0.0048, 0.0261, -0.0181, 0.0048, 0.0087, -0.0181, 0.0104, 0.0261, -0.0181, 0.0104, 0.0087, -0.0181, 0.0104, 0.0261, -0.0181, 0.0048, 0.0087, -0.0181, -0.0132, 0.0087, -0.0132, -0.0104, 0.0087, -0.0181, -0.0132, 0.0261, -0.0132, -0.0104, 0.0261, -0.0181, -0.0132, 0.0261, -0.0132, -0.0104, 0.0087, -0.0181, -0.0181, 0.0087, 0.0048, -0.0143, 0, 0.0038, -0.0209, 0.0087, 0, -0.0165, 0, 0, -0.0209, 0.0087, 0, -0.0143, 0, 0.0038, -0.0181, 0.0087, 0.0048, -0.0209, 0.0087, 0, -0.0181, 0.0261, 0.0048, -0.0209, 0.0261, 0, -0.0181, 0.0261, 0.0048, -0.0209, 0.0087, 0, 0.0165, 0, 0, 0.0209, 0.0087, 0, 0.0143, 0, -0.0038, 0.0181, 0.0087, -0.0048, 0.0143, 0, -0.0038, 0.0209, 0.0087, 0, 0.0157, 0.0261, 0.009, 0.0181, 0.0261, 0.0048, 0.0157, 0.0087, 0.009, 0, 0.0261, 0.0181, 0.0048, 0.0261, 0.0181, -0.0048, 0.0261, 0.0181, 0, 0.0087, 0.0181, -0.0048, 0.0087, 0.0181, 0.0048, 0.0087, 0.0181, 0.0124, 0.0348, -0.0072, 0.0105, 0.0348, -0.0105, 0.0157, 0.0261, -0.009, 0.0157, 0.0261, 0.009, 0.0124, 0.0348, 0.0072, 0.0181, 0.0261, 0.0048, 0, 0.0087, 0.0181, 0.0048, 0.0087, 0.0181, -0.0038, 0, 0.0143, 0, 0.0087, 0.0181, -0.0038, 0, 0.0143, -0.0048, 0.0087, 0.0181, -0.0157, 0.0087, 0.009, -0.0124, 0, 0.0072, -0.0181, 0.0087, 0.0048, 0.0157, 0.0087, -0.009, 0.0157, 0.0261, -0.009, 0.0132, 0.0087, -0.0132, 0, 0.0348, -0.0143, -0.0038, 0.0348, -0.0143, 0.0038, 0.0348, -0.0143, -0.0157, 0.0261, 0.009, -0.0181, 0.0261, 0.0048, -0.0124, 0.0348, 0.0072, -0.0124, 0.0348, 0.0072, -0.0143, 0.0348, 0.0038, -0.0105, 0.0348, 0.0105, -0.0124, 0.0348, -0.0072, -0.0105, 0.0348, -0.0105, -0.007, 0.0348, -0.0012, -0.0019, 0.0348, -0.0033, -0.0038, 0.0348, 0, -0.0025, 0.0348, -0.0066, -0.0019, 0.0348, -0.0033, 0, 0.0348, -0.0143, 0.0019, 0.0348, -0.0033, 0.0019, 0.0348, -0.0033, 0.0038, 0.0348, -0.0066, 0.0038, 0.0348, 0, 0.0019, 0.0348, -0.0033, 0, 0.0348, -0.0143, 0.0025, 0.0348, -0.0066, -0.0019, 0.0348, 0.0033, 0.0019, 0.0348, 0.0033, 0, 0.0348, 0.0143, -0.0019, 0.0348, 0.0033, -0.0025, 0.0348, 0.0066, -0.0038, 0.0348, 0, 0.0019, 0.0348, 0.0033, 0.0038, 0.0348, 0, 0.0038, 0.0348, 0.0066, 0.0019, 0.0348, 0.0033, 0.0025, 0.0348, 0.0066, 0, 0.0348, 0.0143, 0.0038, 0.0348, 0, 0.0045, 0.0348, -0.0055, 0.0038, 0.0348, 0.0066, -0.0157, 0.0261, 0.009, -0.0157, 0.0087, 0.009, -0.0181, 0.0261, 0.0048, 0.0157, 0.0087, 0.009, 0.0181, 0.0087, 0.0048, 0.0124, 0, 0.0072, -0.0157, 0.0261, -0.009, -0.0157, 0.0087, -0.009, -0.0132, 0.0261, -0.0132, 0, 0.0348, 0.0143, 0.0038, 0.0348, 0.0143, -0.0038, 0.0348, 0.0143, -0.0124, 0, -0.0072, -0.0105, 0, -0.0105, -0.0157, 0.0087, -0.009, 0, 0.0087, -0.0181, 0.0038, 0, -0.0143, 0.0048, 0.0087, -0.0181, 0, 0.0087, -0.0181, -0.0048, 0.0087, -0.0181, 0.0038, 0, -0.0143, -0.0124, 0.0348, -0.0072, -0.0157, 0.0261, -0.009, -0.0105, 0.0348, -0.0105, 0, 0.0261, -0.0181, -0.0048, 0.0261, -0.0181, 0.0048, 0.0261, -0.0181, 0, 0.0087, -0.0181, 0.0048, 0.0087, -0.0181, -0.0048, 0.0087, -0.0181, 0.0124, 0, -0.0072, 0.0157, 0.0087, -0.009, 0.0105, 0, -0.0105, 0.0181, 0.0087, 0.0048, 0.0157, 0.0087, 0.009, 0.0181, 0.0261, 0.0048, 0.0132, 0.0261, 0.0132, 0.0105, 0.0348, 0.0105, 0.0157, 0.0261, 0.009, 0.0105, 0.0348, 0.0105, 0.0124, 0.0348, 0.0072, 0.0157, 0.0261, 0.009, 0.0143, 0, 0.0038, 0.0124, 0, 0.0072, 0.0181, 0.0087, 0.0048, -0.007, 0.0348, 0.0012, -0.0045, 0.0348, -0.0055, -0.0105, 0.0348, 0.0105, -0.0143, 0.0348, 0.0038, -0.007, 0.0348, 0.0012, -0.0105, 0.0348, 0.0105, -0.0143, 0.0348, -0.0038, -0.0124, 0.0348, -0.0072, -0.007, 0.0348, -0.0012, -0.007, 0.0348, -0.0012, -0.0045, 0.0348, -0.0055, -0.007, 0.0348, 0.0012, -0.007, 0.0348, -0.0012, -0.007, 0.0348, 0.0012, -0.0077, 0.0348, 0, -0.0132, 0.0087, 0.0132, -0.0105, 0, 0.0105, -0.0157, 0.0087, 0.009, -0.0105, 0, 0.0105, -0.0124, 0, 0.0072, -0.0157, 0.0087, 0.009, -0.0048, 0.0261, 0.0181, 0.0048, 0.0261, 0.0181, -0.0048, 0.0087, 0.0181, -0.0181, 0.0087, -0.0048, -0.0157, 0.0087, -0.009, -0.0157, 0.0261, -0.009, -0.0181, 0.0261, -0.0048, -0.0181, 0.0087, -0.0048, -0.0157, 0.0261, -0.009, 0.0025, 0.0348, -0.0066, 0.0038, 0.0348, -0.0066, 0.0019, 0.0348, -0.0033, 0.0038, 0.0348, -0.0143, 0.0025, 0.0348, -0.0066, 0, 0.0348, -0.0143, 0.0045, 0.0348, -0.0055, 0.0105, 0.0348, -0.0105, 0.007, 0.0348, -0.0012, 0.0045, 0.0348, -0.0055, 0.0038, 0.0348, 0, 0.0038, 0.0348, -0.0066, 0.0105, 0.0348, -0.0105, 0.0124, 0.0348, -0.0072, 0.007, 0.0348, -0.0012, -0.0132, 0.0261, 0.0132, -0.0157, 0.0261, 0.009, -0.0105, 0.0348, 0.0105, -0.0105, 0.0348, 0.0105, -0.0157, 0.0261, 0.009, -0.0124, 0.0348, 0.0072, 0.0048, 0.0261, 0.0181, 0, 0.0261, 0.0181, 0.0038, 0.0348, 0.0143, -0.0132, 0.0087, -0.0132, -0.0157, 0.0087, -0.009, -0.0105, 0, -0.0105, -0.0105, 0.0348, 0.0105, -0.0045, 0.0348, -0.0055, -0.0045, 0.0348, 0.0055, -0.0045, 0.0348, 0.0055, -0.0038, 0.0348, -0.0066, -0.0038, 0.0348, 0.0066, -0.0038, 0.0348, 0.0143, -0.0019, 0.0348, 0.0033, 0, 0.0348, 0.0143, -0.0038, 0.0348, 0.0066, -0.0038, 0.0348, -0.0066, -0.0038, 0.0348, 0, -0.0038, 0.0348, 0.0066, -0.0038, 0.0348, 0, -0.0025, 0.0348, 0.0066, -0.0025, 0.0348, 0.0066, -0.0019, 0.0348, 0.0033, -0.0038, 0.0348, 0.0143, -0.0048, 0.0261, -0.0181, 0, 0.0261, -0.0181, -0.0038, 0.0348, -0.0143, 0.0038, 0.0348, -0.0143, -0.0038, 0.0348, -0.0143, 0.0048, 0.0261, -0.0181, 0.0048, 0.0261, -0.0181, -0.0038, 0.0348, -0.0143, 0, 0.0261, -0.0181, 0.0038, 0, -0.0143, -0.0048, 0.0087, -0.0181, 0, 0, -0.0143, -0.0143, 0.0348, 0.0038, -0.0124, 0.0348, 0.0072, -0.0181, 0.0261, 0.0048, 0.0143, 0.0348, -0.0038, 0.0124, 0.0348, -0.0072, 0.0181, 0.0261, -0.0048, 0.0181, 0.0261, -0.0048, 0.0124, 0.0348, -0.0072, 0.0157, 0.0261, -0.009, 0.0048, 0.0261, 0.0181, 0.0048, 0.0087, 0.0181, -0.0048, 0.0087, 0.0181, 0.0132, 0.0087, -0.0132, 0.0105, 0, -0.0105, 0.0157, 0.0087, -0.009, 0.0025, 0.0348, 0.0066, 0.0019, 0.0348, 0.0033, 0.0038, 0.0348, 0.0066, 0.0038, 0.0348, 0.0066, 0.0045, 0.0348, -0.0055, 0.0045, 0.0348, 0.0055, 0.0038, 0.0348, 0.0143, 0, 0.0348, 0.0143, 0.0025, 0.0348, 0.0066, 0.0045, 0.0348, 0.0055, 0.0045, 0.0348, -0.0055, 0.007, 0.0348, -0.0012, 0.0045, 0.0348, 0.0055, 0.007, 0.0348, 0.0012, 0.0105, 0.0348, 0.0105, 0.0105, 0.0348, 0.0105, 0.007, 0.0348, 0.0012, 0.0124, 0.0348, 0.0072, 0.0143, 0.0348, 0.0038, 0.0124, 0.0348, 0.0072, 0.007, 0.0348, 0.0012, 0.0077, 0.0348, 0, 0.007, 0.0348, 0.0012, 0.007, 0.0348, -0.0012, 0.007, 0.0348, -0.0012, 0.007, 0.0348, 0.0012, 0.0045, 0.0348, 0.0055, 0.0143, 0.0348, -0.0038, 0.007, 0.0348, -0.0012, 0.0124, 0.0348, -0.0072, 0.0132, 0.0087, 0.0132, 0.0132, 0.0261, 0.0132, 0.0157, 0.0087, 0.009, 0.0132, 0.0261, 0.0132, 0.0157, 0.0261, 0.009, 0.0157, 0.0087, 0.009, 0.0143, 0.0348, 0.0038, 0.0181, 0.0261, 0.0048, 0.0124, 0.0348, 0.0072, -0.0048, 0.0261, -0.0181, -0.0048, 0.0087, -0.0181, 0.0048, 0.0087, -0.0181, 0.0132, 0.0261, -0.0132, 0.0132, 0.0087, -0.0132, 0.0157, 0.0261, -0.009, -0.0038, 0.0348, 0.0143, 0.0038, 0.0348, 0.0143, -0.0048, 0.0261, 0.0181, -0.0048, 0.0261, 0.0181, 0.0038, 0.0348, 0.0143, 0, 0.0261, 0.0181, -0.0132, 0.0261, -0.0132, -0.0105, 0.0348, -0.0105, -0.0157, 0.0261, -0.009, -0.0038, 0, 0.0143, 0.0048, 0.0087, 0.0181, 0, 0, 0.0143, 0.0132, 0.0087, 0.0132, 0.0157, 0.0087, 0.009, 0.0105, 0, 0.0105, 0.0105, 0, 0.0105, 0.0157, 0.0087, 0.009, 0.0124, 0, 0.0072, 0.0132, 0.0261, -0.0132, 0.0157, 0.0261, -0.009, 0.0105, 0.0348, -0.0105, 0.0038, 0, 0.0143, 0, 0, 0.0143, 0.0048, 0.0087, 0.0181, -0.0143, 0, -0.0038, -0.0124, 0, -0.0072, -0.0181, 0.0087, -0.0048, -0.0181, 0.0087, -0.0048, -0.0124, 0, -0.0072, -0.0157, 0.0087, -0.009, -0.0045, 0.0348, -0.0055, -0.0038, 0.0348, -0.0066, -0.0045, 0.0348, 0.0055, -0.0045, 0.0348, -0.0055, -0.007, 0.0348, -0.0012, -0.0105, 0.0348, -0.0105, -0.0038, 0.0348, -0.0066, -0.0025, 0.0348, -0.0066, -0.0038, 0.0348, 0, -0.0038, 0.0348, -0.0143, 0, 0.0348, -0.0143, -0.0025, 0.0348, -0.0066, -0.0025, 0.0348, -0.0066, 0, 0.0348, -0.0143, -0.0019, 0.0348, -0.0033, -0.0038, 0, -0.0143, 0, 0, -0.0143, -0.0048, 0.0087, -0.0181, 0.0181, 0.0087, -0.0048, 0.0181, 0.0261, -0.0048, 0.0157, 0.0087, -0.009, 0.0181, 0.0261, -0.0048, 0.0157, 0.0261, -0.009, 0.0157, 0.0087, -0.009, -0.0143, 0.0348, -0.0038, -0.0181, 0.0261, -0.0048, -0.0124, 0.0348, -0.0072, -0.0181, 0.0261, -0.0048, -0.0157, 0.0261, -0.009, -0.0124, 0.0348, -0.0072, -0.0132, 0.0261, 0.0132, -0.0157, 0.0087, 0.009, -0.0157, 0.0261, 0.009, -0.0132, 0.0087, 0.0132, -0.0157, 0.0087, 0.009, -0.0132, 0.0261, 0.0132, 0.0048, 0.0261, -0.0181, -0.0048, 0.0261, -0.0181, 0.0048, 0.0087, -0.0181, -0.0132, 0.0087, -0.0132, -0.0132, 0.0261, -0.0132, -0.0157, 0.0087, -0.009, -0.0143, 0, 0.0038, -0.0181, 0.0087, 0.0048, -0.0124, 0, 0.0072, -0.0181, 0.0087, 0.0048, -0.0181, 0.0261, 0.0048, -0.0157, 0.0087, 0.009, 0.0143, 0, -0.0038, 0.0181, 0.0087, -0.0048, 0.0124, 0, -0.0072, 0.0181, 0.0087, -0.0048, 0.0157, 0.0087, -0.009, 0.0124, 0, -0.0072, -0.0038, 0.0348, 0, -0.0019, 0.0348, -0.0033, -0.0019, 0.0348, 0.0033, -0.0019, 0.0348, -0.0033, 0.0019, 0.0348, -0.0033, 0.0019, 0.0348, 0.0033, -0.0019, 0.0348, 0.0033, -0.0019, 0.0348, -0.0033, 0.0019, 0.0348, 0.0033, 0.0038, 0.0348, 0, 0.0019, 0.0348, 0.0033, 0.0019, 0.0348, -0.0033) + +[sub_resource type="BoxShape3D" id="BoxShape3D_famnj"] +size = Vector3(0.186493, 0.804321, 0.16684) + +[sub_resource type="ConcavePolygonShape3D" id="ConcavePolygonShape3D_pe0kh"] +data = PackedVector3Array(0.0017, 0.0409, -0.0017, -0.0017, 0.0409, -0.0017, 0.0017, 0, -0.0017, -0.0017, 0, -0.0017, 0.0017, 0, -0.0017, -0.0017, 0.0409, -0.0017, 0.0017, 0.0203, 0.0017, 0.0017, 0.0381, 0.0017, 0.0017, 0, 0.0017, 0.0017, 0.0381, 0.0017, 0.0017, 0.0409, 0.0017, 0.0017, 0, 0.0017, 0.0017, 0, 0.0017, 0.0017, 0.0409, 0.0017, 0.0017, 0, -0.0017, 0.0017, 0.0409, -0.0017, 0.0017, 0, -0.0017, 0.0017, 0.0409, 0.0017, -0.0017, 0.0409, 0.0017, 0.0017, 0.0409, 0.0017, -0.0017, 0.0381, 0.0017, 0.0017, 0.0381, 0.0017, -0.0017, 0.0381, 0.0017, 0.0017, 0.0409, 0.0017, -0.012, 0.0351, 0.0052, 0.012, 0.0351, 0.0052, -0.012, 0.0233, 0.0052, 0.012, 0.0233, 0.0052, -0.012, 0.0233, 0.0052, 0.012, 0.0351, 0.0052, -0.0017, 0.0409, -0.0017, 0.0017, 0.0409, -0.0017, -0.0017, 0.0409, 0.0017, 0.0017, 0.0409, 0.0017, -0.0017, 0.0409, 0.0017, 0.0017, 0.0409, -0.0017, -0.0017, 0.0381, 0.0017, -0.0017, 0.0203, 0.0017, -0.0017, 0.0409, 0.0017, -0.0017, 0.0203, 0.0017, -0.0017, 0, 0.0017, -0.0017, 0.0409, 0.0017, -0.0017, 0.0409, 0.0017, -0.0017, 0, 0.0017, -0.0017, 0.0409, -0.0017, -0.0017, 0, -0.0017, -0.0017, 0.0409, -0.0017, -0.0017, 0, 0.0017, -0.0017, 0.0203, 0.0017, 0.0017, 0.0203, 0.0017, -0.0017, 0, 0.0017, 0.0017, 0, 0.0017, -0.0017, 0, 0.0017, 0.0017, 0.0203, 0.0017, -0.015, 0.0381, 0.0052, -0.012, 0.0233, 0.0052, -0.015, 0.0203, 0.0052, 0.015, 0.0381, 0.0052, -0.012, 0.0351, 0.0052, -0.015, 0.0381, 0.0052, 0.015, 0.0381, 0.0052, 0.015, 0.0203, 0.0052, 0.012, 0.0233, 0.0052, -0.015, 0.0203, 0.0052, 0.012, 0.0233, 0.0052, 0.015, 0.0203, 0.0052, -0.0018, 0.0381, 0.0017, -0.015, 0.0381, 0.0017, -0.0018, 0.0203, 0.0017, -0.015, 0.0203, 0.0017, -0.0018, 0.0203, 0.0017, -0.015, 0.0381, 0.0017, -0.015, 0.0381, 0.0017, -0.0018, 0.0381, 0.0017, -0.015, 0.0381, 0.0052, -0.0018, 0.0381, 0.0017, 0.0017, 0.0381, 0.0017, -0.015, 0.0381, 0.0052, -0.015, 0.0381, 0.0052, 0.0017, 0.0381, 0.0017, 0.015, 0.0381, 0.0052, 0.015, 0.0381, 0.0017, 0.015, 0.0381, 0.0052, 0.0017, 0.0381, 0.0017, -0.015, 0.0203, 0.0017, -0.015, 0.0203, 0.0052, -0.0018, 0.0203, 0.0017, -0.0018, 0.0203, 0.0017, -0.015, 0.0203, 0.0052, 0.0017, 0.0203, 0.0017, 0.0017, 0.0203, 0.0017, -0.015, 0.0203, 0.0052, 0.015, 0.0203, 0.0017, 0.015, 0.0203, 0.0052, 0.015, 0.0203, 0.0017, -0.015, 0.0203, 0.0052, 0.0017, 0.0381, 0.0017, 0.0017, 0.0203, 0.0017, 0.015, 0.0381, 0.0017, 0.015, 0.0203, 0.0017, 0.015, 0.0381, 0.0017, 0.0017, 0.0203, 0.0017, 0.015, 0.0203, 0.0052, 0.015, 0.0381, 0.0052, 0.015, 0.0203, 0.0017, 0.015, 0.0381, 0.0017, 0.015, 0.0203, 0.0017, 0.015, 0.0381, 0.0052, -0.015, 0.0381, 0.0052, -0.015, 0.0203, 0.0052, -0.015, 0.0381, 0.0017, -0.015, 0.0203, 0.0017, -0.015, 0.0381, 0.0017, -0.015, 0.0203, 0.0052, -0.012, 0.0351, 0.0052, 0.015, 0.0381, 0.0052, 0.012, 0.0351, 0.0052, -0.012, 0.0351, 0.0052, -0.012, 0.0233, 0.0052, -0.015, 0.0381, 0.0052, 0.012, 0.0351, 0.0052, 0.015, 0.0381, 0.0052, 0.012, 0.0233, 0.0052, 0.012, 0.0233, 0.0052, -0.015, 0.0203, 0.0052, -0.012, 0.0233, 0.0052, -0.0017, 0, -0.0017, -0.0017, 0, 0.0017, 0.0017, 0, -0.0017, 0.0017, 0, 0.0017, 0.0017, 0, -0.0017, -0.0017, 0, 0.0017) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_s5mnv"] +albedo_color = Color(0.186475, 0.183691, 0.222656, 1) + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_8kwpy"] +albedo_color = Color(0.576471, 0.603922, 0.733333, 1) + +[node name="Main" type="Node3D"] +script = ExtResource("1_nernh") + +[node name="Player" parent="." instance=ExtResource("2_mkirp")] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 17) + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="Player"] +process_mode = 3 +stream = ExtResource("3_0v83q") + +[node name="WorldEnvironment" type="WorldEnvironment" parent="."] +environment = SubResource("Environment_qbprn") + +[node name="Road" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.65398, 0) + +[node name="Road" type="Node3D" parent="Road"] +metadata/_edit_group_ = true + +[node name="Root Scene" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 0) + +[node name="Root Scene2" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 15, 0, 0) + +[node name="Root Scene3" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, -15, 0, 0) + +[node name="Root Scene4" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, -30, 0, 0) + +[node name="Root Scene5" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 30, 0, 0) + +[node name="Root Scene6" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 0, 0, 15) + +[node name="Root Scene7" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 15, 0, 15) + +[node name="Root Scene8" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, -15, 0, 15) + +[node name="Root Scene9" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, -30, 0, 15) + +[node name="Root Scene10" parent="Road/Road" instance=ExtResource("3_w80es")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 30, 0, 15) + +[node name="StaticBody3D" type="StaticBody3D" parent="Road/Road" groups=["concrete"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -4) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Road/Road/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.0986328, 0) +shape = SubResource("BoxShape3D_jc7li") + +[node name="Tractor2" parent="Road" instance=ExtResource("4_wfc7x")] +transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 8.10123, 0.320646, 6.26388) +dir = -1 + +[node name="Firetruck" parent="Road" instance=ExtResource("5_sk3ub")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -19.4605, 0.320644, 1.40431) +speed = 28 + +[node name="Firetruck2" parent="Road" instance=ExtResource("5_sk3ub")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -0.460501, 0.320644, 1.40431) +speed = 28 + +[node name="Ambulance" parent="Road" instance=ExtResource("6_0hg0x")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -24.9421, 0.320644, -13.5264) +speed = 27 + +[node name="Ambulance2" parent="Road" instance=ExtResource("6_0hg0x")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -6.9421, 0.320644, -13.5264) +speed = 27 + +[node name="Ambulance3" parent="Road" instance=ExtResource("6_0hg0x")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 10.0579, 0.320644, -13.5264) +speed = 27 + +[node name="Race" parent="Road" instance=ExtResource("7_rwnh3")] +transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, -12.4898, 0.320644, -8.48858) +dir = -1 +speed = 30 + +[node name="Race2" parent="Road" instance=ExtResource("7_rwnh3")] +transform = Transform3D(-4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 15.5102, 0.320644, -8.48858) +dir = -1 +speed = 30 + +[node name="Ambiant" type="AudioStreamPlayer3D" parent="Road"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.65398, -4.13113) +stream = ExtResource("21_rfnye") +volume_db = 80.0 +unit_size = 11.0 +max_db = 6.0 +autoplay = true + +[node name="Grass" type="Node3D" parent="."] +metadata/_edit_group_ = true + +[node name="CSGBox3D" type="CSGBox3D" parent="Grass" groups=["grass"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1.597, 17.8971) +use_collision = true +size = Vector3(75, 0.015, 14.6058) +material = SubResource("StandardMaterial3D_rpikh") + +[node name="CSGBox3D2" type="CSGBox3D" parent="Grass" groups=["grass"]] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -16.6155, -24.4582) +use_collision = true +size = Vector3(75, 30.0519, 14.9837) +material = SubResource("StandardMaterial3D_rpikh") + +[node name="StaticBody3D" type="StaticBody3D" parent="Grass"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 11.25) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Grass/StaticBody3D"] +transform = Transform3D(1, 0, 0, 0, 0.952321, -0.305097, 0, 0.305097, 0.952321, 0.0817842, -1.98489, 0.319663) +shape = SubResource("BoxShape3D_4lsi6") + +[node name="StaticBody3D2" type="StaticBody3D" parent="Grass"] +transform = Transform3D(1, 0, 0, 0, 0.718915, 0.695098, 0, -0.695098, 0.718915, 0, -0.818228, -20.5703) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Grass/StaticBody3D2"] +transform = Transform3D(1, 0, 0, 0, 0.952321, -0.305097, 0, 0.305097, 0.952321, 0.0817842, -1.97453, 0.308952) +shape = SubResource("BoxShape3D_4lsi6") + +[node name="River" type="Node3D" parent="."] + +[node name="Water" type="CSGBox3D" parent="River"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.26231, -15.6145, -176.094) +size = Vector3(969.444, 28.229, 288.188) +material = SubResource("ShaderMaterial_tlag1") + +[node name="Log" parent="River" instance=ExtResource("9_ljy4a")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 0.383197, -3.00447, -35.005) + +[node name="Log4" parent="River" instance=ExtResource("9_ljy4a")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -24.6168, -3.00447, -35.005) + +[node name="Log2" parent="River" instance=ExtResource("9_ljy4a")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -8.6168, -3.00447, -40.005) +dir = -1 + +[node name="Log5" parent="River" instance=ExtResource("9_ljy4a")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 16.3832, -3.00447, -40.005) +dir = -1 + +[node name="Log6" parent="River" instance=ExtResource("9_ljy4a")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 40.3832, -3.00447, -40.005) +dir = -1 + +[node name="Log8" parent="River" instance=ExtResource("9_ljy4a")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 6.3832, -3.00447, -49.3936) + +[node name="BigLog" parent="River" instance=ExtResource("10_y7yb4")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -21, -2.84458, -44.8587) +speed = 6 + +[node name="BigLog2" parent="River" instance=ExtResource("10_y7yb4")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 17, -2.84458, -44.8587) +speed = 6 + +[node name="Canoe" parent="River" instance=ExtResource("11_t2brj")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -19.6072, -1.84804, -55.0381) +dir = -1 +speed = 10 + +[node name="Canoe2" parent="River" instance=ExtResource("11_t2brj")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 26.3928, -1.84804, -55.0381) +dir = -1 +speed = 10 + +[node name="Log9" parent="River" instance=ExtResource("9_ljy4a")] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, -10.617, -3.004, -49.394) + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="River"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -44.0168) +stream = ExtResource("14_6wfmo") +autoplay = true + +[node name="End" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -3.3935) + +[node name="Root Scene" parent="End" instance=ExtResource("12_q13ol")] +transform = Transform3D(-4.18034, 0, 5.61469, 0, 7, 0, -5.61469, 0, -4.18034, 0.679744, -2.4931, -60.1168) + +[node name="StaticBody3D" type="StaticBody3D" parent="End/Root Scene/RootNode/rockSmall" index="0" groups=["concrete"]] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="End/Root Scene/RootNode/rockSmall/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_qew2d") + +[node name="Root Scene2" parent="End" instance=ExtResource("12_q13ol")] +transform = Transform3D(-3.78014, 0, 5.89156, 0, 7, 0, -5.89156, 0, -3.78014, 1.65059, -4.87001, -65.7962) + +[node name="StaticBody3D" type="StaticBody3D" parent="End/Root Scene2/RootNode/rockSmall" index="0" groups=["concrete"]] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="End/Root Scene2/RootNode/rockSmall/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_2xv4e") + +[node name="Rock" parent="End" instance=ExtResource("13_xjjjg")] +transform = Transform3D(-4.37114e-07, 0, -10, 0, 10, 0, 10, 0, -4.37114e-07, 0, -5.176, -62.633) + +[node name="StaticBody3D" type="StaticBody3D" parent="End/Rock/RootNode/rockLarge" index="0" groups=["concrete"]] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="End/Rock/RootNode/rockLarge/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_c70sx") + +[node name="Melon" parent="End" instance=ExtResource("14_xi7oe")] +transform = Transform3D(5, 0, 0, 0, 5, 0, 0, 0, 5, 0.216975, 6.78174, -63.4464) + +[node name="crop_melon" parent="End/Melon/RootNode" index="0"] +transform = Transform3D(-9.4528, 0, -3.26261, 0, 10, 0, 3.26261, 0, -9.4528, 0, -0.05, 0) + +[node name="Area3D" type="Area3D" parent="End/Melon/RootNode/crop_melon" index="0"] +collision_layer = 0 +collision_mask = 3 +script = ExtResource("15_bptro") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="End/Melon/RootNode/crop_melon/Area3D"] +shape = SubResource("ConcavePolygonShape3D_amtrf") + +[node name="AudioStreamPlayer3D" type="AudioStreamPlayer3D" parent="End/Melon/RootNode/crop_melon/Area3D"] +process_mode = 3 +transform = Transform3D(-0.0189056, 0, 0.00652522, 0, 0.02, 0, -0.00652522, 0, -0.0189056, 0, 0.005, 0) +stream = ExtResource("19_30v8a") + +[node name="DeadLayer" type="CanvasLayer" parent="."] +visible = false + +[node name="ColorRect" type="ColorRect" parent="DeadLayer"] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0.207843, 0.207843, 0.207843, 0.427451) + +[node name="CenterContainer" type="CenterContainer" parent="DeadLayer/ColorRect"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="DeadLayer/ColorRect/CenterContainer"] +layout_mode = 2 +alignment = 1 + +[node name="Label" type="Label" parent="DeadLayer/ColorRect/CenterContainer/VBoxContainer"] +layout_mode = 2 +theme_override_fonts/font = ExtResource("20_wftmn") +theme_override_font_sizes/font_size = 50 +text = "DEAD" +horizontal_alignment = 1 + +[node name="Label2" type="Label" parent="DeadLayer/ColorRect/CenterContainer/VBoxContainer"] +layout_mode = 2 +text = "Press \"R\" to restart" +horizontal_alignment = 1 + +[node name="WinLayer" type="CanvasLayer" parent="."] +visible = false + +[node name="ColorRect" type="ColorRect" parent="WinLayer"] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +color = Color(0.207843, 0.207843, 0.207843, 0.427451) + +[node name="CenterContainer" type="CenterContainer" parent="WinLayer/ColorRect"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="WinLayer/ColorRect/CenterContainer"] +layout_mode = 2 +alignment = 1 + +[node name="Label" type="Label" parent="WinLayer/ColorRect/CenterContainer/VBoxContainer"] +layout_mode = 2 +theme_override_fonts/font = ExtResource("20_wftmn") +theme_override_font_sizes/font_size = 50 +text = "WIN" +horizontal_alignment = 1 + +[node name="Label2" type="Label" parent="WinLayer/ColorRect/CenterContainer/VBoxContainer"] +layout_mode = 2 +text = "0:00" +horizontal_alignment = 1 +script = ExtResource("16_ph0yr") + +[node name="Restart" type="Node" parent="."] +process_mode = 3 +script = ExtResource("17_yly6e") + +[node name="Decors" type="Node3D" parent="."] + +[node name="TreeOak" parent="Decors" instance=ExtResource("24_muora")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 29.7405, -1.5895, -26.659) + +[node name="StaticBody3D" type="StaticBody3D" parent="Decors/TreeOak"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Decors/TreeOak/StaticBody3D"] +transform = Transform3D(0.999999, 0, 0, 0, 0.999999, 0, 0, 0, 0.999999, -0.0095979, 0.342101, -0.00535583) +shape = SubResource("BoxShape3D_famnj") + +[node name="TreeTall" parent="Decors" instance=ExtResource("25_cwg3e")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, -27.6951, -1.5895, -26.0113) + +[node name="StaticBody3D" type="StaticBody3D" parent="Decors/TreeTall"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Decors/TreeTall/StaticBody3D"] +transform = Transform3D(0.999999, 0, 0, 0, 0.999999, 0, 0, 0, 0.999999, -0.0095979, 0.342101, -0.00535583) +shape = SubResource("BoxShape3D_famnj") + +[node name="TreeThin" parent="Decors" instance=ExtResource("26_3qwpp")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, -19.9034, -1.5895, 20.6142) + +[node name="StaticBody3D" type="StaticBody3D" parent="Decors/TreeThin"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Decors/TreeThin/StaticBody3D"] +transform = Transform3D(0.999999, 0, 0, 0, 0.999999, 0, 0, 0, 0.999999, -0.0095979, 0.342101, -0.00535583) +shape = SubResource("BoxShape3D_famnj") + +[node name="Bed" parent="Decors" instance=ExtResource("19_vxkh4")] +transform = Transform3D(-2.17246, 0, 4.50338, 0, 5, 0, -4.50338, 0, -2.17246, -0.971142, -1.3395, 19.8981) + +[node name="TreePlateau" parent="Decors" instance=ExtResource("28_v4tm7")] +transform = Transform3D(15, 0, 0, 0, 15, 0, 0, 0, 15, 21.5766, -1.5895, 16.5174) + +[node name="StaticBody3D" type="StaticBody3D" parent="Decors/TreePlateau"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Decors/TreePlateau/StaticBody3D"] +transform = Transform3D(0.999999, 0, 0, 0, 0.999999, 0, 0, 0, 0.999999, -0.0095979, 0.342101, -0.00535583) +shape = SubResource("BoxShape3D_famnj") + +[node name="Campfire" parent="Decors" instance=ExtResource("20_cg3om")] +transform = Transform3D(5, 0, 0, 0, 5, 0, 0, 0, 5, -2.79151, -1.3395, 17.9328) + +[node name="Flower" parent="Decors" instance=ExtResource("25_788gj")] +transform = Transform3D(5, 0, 0, 0, 5, 0, 0, 0, 5, 18.6738, -1.3395, 16.5205) + +[node name="Plant" parent="Decors" instance=ExtResource("27_20xtt")] +transform = Transform3D(5, 0, 0, 0, 5, 0, 0, 0, 5, -26.1069, -1.33955, -24.5028) + +[node name="Sign" parent="Decors" instance=ExtResource("27_4bnda")] +transform = Transform3D(2.89734, 0, -4.94526, 0, 5.5, 0, 5.95229, 0, 2.40716, 3.15474, -1.3395, 15.3129) + +[node name="StaticBody3D" type="StaticBody3D" parent="Decors/Sign/RootNode/sign" index="0"] + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Decors/Sign/RootNode/sign/StaticBody3D"] +shape = SubResource("ConcavePolygonShape3D_pe0kh") + +[node name="Label3D" type="Label3D" parent="Decors/Sign"] +transform = Transform3D(0.151057, 0, 0, 0, 0.181818, 0, -7.45058e-09, 0, 0.181818, 0, 0.244166, 0.0605106) +double_sided = false +text = "ZQSD to move +Space to jump +Shift to sprint" +font = ExtResource("28_vllpu") +outline_size = 7 +line_spacing = 7.12 + +[node name="CSGCombiner3D" type="CSGCombiner3D" parent="."] +use_collision = true +collision_layer = 2 +collision_mask = 2 + +[node name="CSGBox3D" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -37.2905, 4.86373, 3.67847) +layers = 2 +size = Vector3(1, 14.6968, 13.4062) +material = SubResource("StandardMaterial3D_s5mnv") + +[node name="CSGBox3D2" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -37.2905, 4.86373, -10.9446) +layers = 2 +size = Vector3(1, 14.6968, 13.4062) +material = SubResource("StandardMaterial3D_s5mnv") + +[node name="CSGBox3D3" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 37.7461, 4.86373, 3.67847) +layers = 2 +size = Vector3(1, 14.6968, 13.4062) +material = SubResource("StandardMaterial3D_s5mnv") + +[node name="CSGBox3D4" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 37.7461, 4.86373, -10.9446) +layers = 2 +size = Vector3(1, 14.6968, 13.4062) +material = SubResource("StandardMaterial3D_s5mnv") + +[node name="CSGBox3D5" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 313.981, 5.87183, -2.12035) +layers = 2 +size = Vector3(553.139, 22.8325, 56.6756) +material = SubResource("StandardMaterial3D_8kwpy") + +[node name="CSGBox3D6" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -332.444, 5.87183, -2.12035) +layers = 2 +size = Vector3(590.204, 22.8325, 56.6756) +material = SubResource("StandardMaterial3D_8kwpy") + +[node name="CSGBox3D7" type="CSGBox3D" parent="CSGCombiner3D"] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 1.36328, 5.87183, 25.2211) +layers = 2 +size = Vector3(1, 22.8325, 85.1424) +material = SubResource("StandardMaterial3D_8kwpy") + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 0.887864, 0.460107, 0, -0.460107, 0.887864, 17.7601, 49.9431, -121.709) + +[editable path="End/Root Scene"] +[editable path="End/Root Scene2"] +[editable path="End/Rock"] +[editable path="End/Melon"] +[editable path="Decors/Sign"] diff --git a/scenes/player/head.tscn b/scenes/player/head.tscn new file mode 100644 index 0000000..820e787 --- /dev/null +++ b/scenes/player/head.tscn @@ -0,0 +1,11 @@ +[gd_scene load_steps=2 format=3 uid="uid://b8drbos167vf8"] + +[ext_resource type="Script" path="res://scripts/player/head.gd" id="1_enjfg"] + +[node name="Head" type="Node3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.64, 0) +script = ExtResource("1_enjfg") + +[node name="Camera" type="Camera3D" parent="."] +current = true +far = 300.0 diff --git a/scenes/player/movement_controller.tscn b/scenes/player/movement_controller.tscn new file mode 100644 index 0000000..d7ad336 --- /dev/null +++ b/scenes/player/movement_controller.tscn @@ -0,0 +1,15 @@ +[gd_scene load_steps=3 format=3 uid="uid://lqyku5wn2wo0"] + +[ext_resource type="Script" path="res://scripts/player/movement_controller.gd" id="1_h4547"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_fn1rj"] + +[node name="MovementController" type="CharacterBody3D"] +collision_layer = 2 +collision_mask = 3 +floor_block_on_wall = false +floor_snap_length = 0.5 +script = ExtResource("1_h4547") + +[node name="Collision" type="CollisionShape3D" parent="."] +shape = SubResource("CapsuleShape3D_fn1rj") diff --git a/scenes/player/player.tscn b/scenes/player/player.tscn new file mode 100644 index 0000000..c7f0604 --- /dev/null +++ b/scenes/player/player.tscn @@ -0,0 +1,24 @@ +[gd_scene load_steps=5 format=3 uid="uid://bdupkh0grwy27"] + +[ext_resource type="PackedScene" uid="uid://lqyku5wn2wo0" path="res://scenes/player/movement_controller.tscn" id="1_t1jcr"] +[ext_resource type="PackedScene" uid="uid://b8drbos167vf8" path="res://scenes/player/head.tscn" id="2_41iu1"] +[ext_resource type="Script" path="res://scripts/player/sprint.gd" id="3_bgqcu"] +[ext_resource type="Script" path="res://scripts/player/footsteep.gd" id="10_jo4mt"] + +[node name="Player" groups=["player"] instance=ExtResource("1_t1jcr")] +collision_mask = 7 + +[node name="Head" parent="." index="1" instance=ExtResource("2_41iu1")] + +[node name="Foot" type="RayCast3D" parent="Head" index="1"] +transform = Transform3D(1, 0, 0, 0, -4.37114e-08, 1, 0, -1, -4.37114e-08, 0, -1, 0) +target_position = Vector3(0, 0, -2) + +[node name="Sprint" type="Node" parent="." index="2"] +script = ExtResource("3_bgqcu") + +[node name="FootstepComponent" type="Node" parent="." index="3"] +script = ExtResource("10_jo4mt") +feet_path = NodePath("../Head/Foot") + +[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="FootstepComponent" index="0"] diff --git a/scenes/tractor/ambulance.tscn b/scenes/tractor/ambulance.tscn new file mode 100644 index 0000000..200de25 --- /dev/null +++ b/scenes/tractor/ambulance.tscn @@ -0,0 +1,25 @@ +[gd_scene load_steps=5 format=3 uid="uid://mie8fcqjh13u"] + +[ext_resource type="Script" path="res://scripts/tractor.gd" id="1_o2x10"] +[ext_resource type="PackedScene" uid="uid://dk0pf3p1laanl" path="res://assets/models/kenney_car-kit/Models/FBX format/ambulance.fbx" id="2_24smu"] +[ext_resource type="PackedScene" uid="uid://dukxhsxnyfjeu" path="res://scenes/tractor/horn.tscn" id="3_0ok0d"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_qt663"] +size = Vector3(1.515, 1.88973, 3.2932) + +[node name="Ambulance" type="RigidBody3D"] +custom_integrator = true +max_contacts_reported = 50 +contact_monitor = true +script = ExtResource("1_o2x10") + +[node name="AmbulanceModel" parent="." instance=ExtResource("2_24smu")] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 1.87182, -0.048157) +shape = SubResource("BoxShape3D_qt663") + +[node name="Horn" parent="." instance=ExtResource("3_0ok0d")] + +[connection signal="body_entered" from="." to="." method="_on_body_entered"] diff --git a/scenes/tractor/firetruck.tscn b/scenes/tractor/firetruck.tscn new file mode 100644 index 0000000..9a24266 --- /dev/null +++ b/scenes/tractor/firetruck.tscn @@ -0,0 +1,25 @@ +[gd_scene load_steps=5 format=3 uid="uid://belb31j0q0k6x"] + +[ext_resource type="Script" path="res://scripts/tractor.gd" id="1_p84bo"] +[ext_resource type="PackedScene" uid="uid://dukxhsxnyfjeu" path="res://scenes/tractor/horn.tscn" id="3_gep5f"] +[ext_resource type="PackedScene" uid="uid://dhb23yr1wb35h" path="res://assets/models/kenney_car-kit/Models/FBX format/firetruck.fbx" id="3_thu77"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_qt663"] +size = Vector3(1.515, 1.62736, 3.46676) + +[node name="Firetruck" type="RigidBody3D"] +custom_integrator = true +max_contacts_reported = 50 +contact_monitor = true +script = ExtResource("1_p84bo") + +[node name="FiretruckModel" parent="." instance=ExtResource("3_thu77")] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 1.60945, 0.0175078) +shape = SubResource("BoxShape3D_qt663") + +[node name="Horn" parent="." instance=ExtResource("3_gep5f")] + +[connection signal="body_entered" from="." to="." method="_on_body_entered"] diff --git a/scenes/tractor/horn.tscn b/scenes/tractor/horn.tscn new file mode 100644 index 0000000..28f3a8f --- /dev/null +++ b/scenes/tractor/horn.tscn @@ -0,0 +1,7 @@ +[gd_scene load_steps=2 format=3 uid="uid://dukxhsxnyfjeu"] + +[ext_resource type="AudioStream" uid="uid://bf30y1ow15kvv" path="res://assets/sounds/sfx/road/car-horn.wav" id="1_2h8bh"] + +[node name="Horn" type="AudioStreamPlayer3D"] +process_mode = 3 +stream = ExtResource("1_2h8bh") diff --git a/scenes/tractor/race.tscn b/scenes/tractor/race.tscn new file mode 100644 index 0000000..8479dc0 --- /dev/null +++ b/scenes/tractor/race.tscn @@ -0,0 +1,25 @@ +[gd_scene load_steps=5 format=3 uid="uid://chuk1csqkfwl5"] + +[ext_resource type="Script" path="res://scripts/tractor.gd" id="1_tvfuv"] +[ext_resource type="PackedScene" uid="uid://rmfhx401afqu" path="res://assets/models/kenney_car-kit/Models/FBX format/race.fbx" id="2_1cp7m"] +[ext_resource type="PackedScene" uid="uid://dukxhsxnyfjeu" path="res://scenes/tractor/horn.tscn" id="3_6qvyb"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_qt663"] +size = Vector3(1.37338, 0.775594, 2.65867) + +[node name="Race" type="RigidBody3D"] +custom_integrator = true +max_contacts_reported = 50 +contact_monitor = true +script = ExtResource("1_tvfuv") + +[node name="RaceModel" parent="." instance=ExtResource("2_1cp7m")] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0.000332117, 0.757684, -0.011946) +shape = SubResource("BoxShape3D_qt663") + +[node name="Horn" parent="." instance=ExtResource("3_6qvyb")] + +[connection signal="body_entered" from="." to="." method="_on_body_entered"] diff --git a/scenes/tractor/tractor.tscn b/scenes/tractor/tractor.tscn new file mode 100644 index 0000000..f056e68 --- /dev/null +++ b/scenes/tractor/tractor.tscn @@ -0,0 +1,25 @@ +[gd_scene load_steps=5 format=3 uid="uid://d7ail17lprvc"] + +[ext_resource type="Script" path="res://scripts/tractor.gd" id="1_m1ddm"] +[ext_resource type="PackedScene" uid="uid://sfuy81no4ir4" path="res://assets/models/kenney_car-kit/Models/FBX format/tractor.fbx" id="2_tb8y4"] +[ext_resource type="PackedScene" uid="uid://dukxhsxnyfjeu" path="res://scenes/tractor/horn.tscn" id="3_61uua"] + +[sub_resource type="BoxShape3D" id="BoxShape3D_qt663"] +size = Vector3(1.515, 1.62736, 2.32) + +[node name="Tractor" type="RigidBody3D"] +custom_integrator = true +max_contacts_reported = 50 +contact_monitor = true +script = ExtResource("1_m1ddm") + +[node name="TractorModel" parent="." instance=ExtResource("2_tb8y4")] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0) + +[node name="CollisionShape3D" type="CollisionShape3D" parent="."] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 1.60945, 0) +shape = SubResource("BoxShape3D_qt663") + +[node name="Horn" parent="." instance=ExtResource("3_61uua")] + +[connection signal="body_entered" from="." to="." method="_on_body_entered"] diff --git a/scripts/log.gd b/scripts/log.gd new file mode 100644 index 0000000..8e19047 --- /dev/null +++ b/scripts/log.gd @@ -0,0 +1,18 @@ +extends RigidBody3D + +@export var dir = 1 +@export var speed = 8 +var map_limit = 40 + + +func _ready(): + look_at(global_transform.origin - Vector3.RIGHT * dir, Vector3.UP) + + +func _integrate_forces(_state: PhysicsDirectBodyState3D): + if dir == 1 and global_transform.origin.x >= map_limit: + global_transform.origin.x = -map_limit + if dir == -1 and global_transform.origin.x <= -map_limit: + global_transform.origin.x = map_limit + + linear_velocity = Vector3.RIGHT * dir * speed diff --git a/scripts/main.gd b/scripts/main.gd new file mode 100644 index 0000000..1815224 --- /dev/null +++ b/scripts/main.gd @@ -0,0 +1,28 @@ +extends Node3D + +@onready var player = get_tree().get_nodes_in_group(&"player")[0] + + +func _ready() -> void: + get_viewport().scaling_3d_scale = 0.5 + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + + +func _process(_delta): + if player.global_transform.origin.y < -1: + player.get_node("AudioStreamPlayer3D").play() + get_node("DeadLayer").show() + get_tree().paused = true + #get_tree().quit() + + +func _input(event: InputEvent) -> void: + # if event.is_action_pressed(&"ui_cancel"): + # get_tree().change_scene_to_file("res://scenes/menu.tscn") + + if event.is_action_pressed(&"change_mouse_input"): + match Input.get_mouse_mode(): + Input.MOUSE_MODE_CAPTURED: + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + Input.MOUSE_MODE_VISIBLE: + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) diff --git a/scripts/nenuphar.gd b/scripts/nenuphar.gd new file mode 100644 index 0000000..61a043e --- /dev/null +++ b/scripts/nenuphar.gd @@ -0,0 +1,12 @@ +extends Area3D + + +func _ready(): + connect("body_entered", win) + + +func win(body): + if body is MovementController: + get_node("AudioStreamPlayer3D").play() + get_owner().get_node("WinLayer").show() + get_tree().paused = true diff --git a/scripts/player/footsteep.gd b/scripts/player/footsteep.gd new file mode 100644 index 0000000..0ef65a1 --- /dev/null +++ b/scripts/player/footsteep.gd @@ -0,0 +1,62 @@ +extends Node + +@export var feet_path: NodePath + +var footsteep_timer: float = 0 +var footsteep_list: Dictionary = {} + +var dont_repeat: int = 0 + +@onready var feet: RayCast3D = get_node(feet_path) +@onready var character: MovementController = get_owner() +@onready var player: AudioStreamPlayer = get_node(^"AudioStreamPlayer") + + +func _ready() -> void: + randomize() + + footsteep_list = { + &"grass": + [ + preload("res://assets/sounds/sfx/footsteep/grass/0.ogg"), + preload("res://assets/sounds/sfx/footsteep/grass/1.ogg"), + preload("res://assets/sounds/sfx/footsteep/grass/2.ogg"), + preload("res://assets/sounds/sfx/footsteep/grass/3.ogg"), + preload("res://assets/sounds/sfx/footsteep/grass/4.ogg"), + preload("res://assets/sounds/sfx/footsteep/grass/5.ogg"), + ], + &"concrete": + [ + preload("res://assets/sounds/sfx/footsteep/concrete/0.ogg"), + preload("res://assets/sounds/sfx/footsteep/concrete/1.ogg"), + preload("res://assets/sounds/sfx/footsteep/concrete/2.ogg"), + preload("res://assets/sounds/sfx/footsteep/concrete/3.ogg"), + preload("res://assets/sounds/sfx/footsteep/concrete/4.ogg"), + preload("res://assets/sounds/sfx/footsteep/concrete/5.ogg"), + preload("res://assets/sounds/sfx/footsteep/concrete/6.ogg"), + ], + } + + +func _process(_delta) -> void: + if footsteep_timer <= 0 and character.direction and feet.is_colliding(): + var collider = feet.get_collider() + + if collider: + for g in collider.get_groups(): + if footsteep_list.has(g): + var footsteep_sounds = footsteep_list[g] + + if len(footsteep_sounds) > 0: + var audio: AudioStreamOggVorbis = footsteep_sounds[ + randi() % len(footsteep_sounds) + ] + + player.stream = audio + player.play() + + var temp_accel: float = character.get_accel() + (character.speed - 10) / 4 + footsteep_timer = 1 - (0.06 * temp_accel) + break + else: + footsteep_timer -= _delta diff --git a/scripts/player/head.gd b/scripts/player/head.gd new file mode 100644 index 0000000..e3ee194 --- /dev/null +++ b/scripts/player/head.gd @@ -0,0 +1,44 @@ +extends Node3D + +@export_node_path("Camera3D") var cam_path := NodePath(^"Camera") + +@export var mouse_sensitivity := 2.0 +@export var y_limit := 90.0 + +var mouse_axis := Vector2() +var rot := Vector3() + +@onready var cam: Camera3D = get_node(cam_path) + + +# Called when the node enters the scene tree for the first time. +func _ready() -> void: + mouse_sensitivity = mouse_sensitivity / 1000 + y_limit = deg_to_rad(y_limit) + + +# Called when there is an input event +func _input(event: InputEvent) -> void: + # Mouse look (only if the mouse is captured). + if event is InputEventMouseMotion and Input.get_mouse_mode() == Input.MOUSE_MODE_CAPTURED: + mouse_axis = event.relative + camera_rotation() + + +# Called every physics tick. 'delta' is constant +func _physics_process(delta: float) -> void: + var joystick_axis := Input.get_vector(&"look_left", &"look_right", &"look_down", &"look_up") + + if joystick_axis != Vector2.ZERO: + mouse_axis = joystick_axis * 1000.0 * delta + camera_rotation() + + +func camera_rotation() -> void: + # Horizontal mouse look. + rot.y -= mouse_axis.x * mouse_sensitivity + # Vertical mouse look. + rot.x = clamp(rot.x - mouse_axis.y * mouse_sensitivity, -y_limit, y_limit) + + get_owner().rotation.y = rot.y + rotation.x = rot.x diff --git a/scripts/player/movement_controller.gd b/scripts/player/movement_controller.gd new file mode 100644 index 0000000..e394182 --- /dev/null +++ b/scripts/player/movement_controller.gd @@ -0,0 +1,72 @@ +class_name MovementController +extends CharacterBody3D + +@export_range(0.0, 1.0, 0.05) var air_control := 0.3 + +@export var gravity_multiplier := 3.0 +@export var speed := 10 +@export var acceleration := 8 +@export var deceleration := 10 +@export var jump_height := 10 + +var direction := Vector3() +var input_axis := Vector2() + +# Get the gravity from the project settings to be synced with RigidDynamicBody nodes. +@onready +var gravity: float = ProjectSettings.get_setting("physics/3d/default_gravity") * gravity_multiplier + + +# Called every physics tick. 'delta' is constant +func _physics_process(delta: float) -> void: + input_axis = Input.get_vector( + &"pm_movebackward", &"pm_moveforward", &"pm_moveleft", &"pm_moveright" + ) + + direction_input() + + if is_on_floor(): + if Input.is_action_just_pressed(&"jump"): + velocity.y = jump_height + else: + velocity.y -= gravity * delta + + accelerate(delta) + + move_and_slide() + + +func direction_input() -> void: + direction = Vector3() + var aim: Basis = get_global_transform().basis + direction = aim.z * -input_axis.x + aim.x * input_axis.y + + +func get_accel() -> float: + var temp_vel := velocity + temp_vel.y = 0 + + var temp_accel: float + if direction.dot(temp_vel) > 0: + temp_accel = acceleration + else: + temp_accel = deceleration + + if not is_on_floor(): + temp_accel *= air_control + + return temp_accel + + +func accelerate(delta: float) -> void: + # Using only the horizontal velocity, interpolate towards the input. + var temp_vel := velocity + temp_vel.y = 0 + + var temp_accel := get_accel() + var target: Vector3 = direction * speed + + temp_vel = temp_vel.lerp(target, temp_accel * delta) + + velocity.x = temp_vel.x + velocity.z = temp_vel.z diff --git a/scripts/player/sprint.gd b/scripts/player/sprint.gd new file mode 100644 index 0000000..fa5ba3f --- /dev/null +++ b/scripts/player/sprint.gd @@ -0,0 +1,31 @@ +extends Node + +@export_node_path("MovementController") var controller_path: NodePath = ^"../" +@export_node_path("Node3D") var head_path: NodePath = ^"../Head" + +@export var sprint_speed := 16 +@export var fov_multiplier := 1.05 + +@onready var controller: MovementController = get_node(controller_path) +@onready var cam: Camera3D = get_node(head_path).cam + +@onready var normal_speed: int = controller.speed +@onready var normal_fov: float = cam.fov + + +# Called every physics tick. 'delta' is constant +func _physics_process(delta: float) -> void: + if can_sprint(): + controller.speed = sprint_speed + cam.set_fov(lerp(cam.fov, normal_fov * fov_multiplier, delta * 8)) + else: + controller.speed = normal_speed + cam.set_fov(lerp(cam.fov, normal_fov, delta * 8)) + + +func can_sprint() -> bool: + return ( + controller.is_on_floor() + and Input.is_action_pressed(&"sprint") + and controller.input_axis.x >= 0.5 + ) diff --git a/scripts/restart.gd b/scripts/restart.gd new file mode 100644 index 0000000..03a9edd --- /dev/null +++ b/scripts/restart.gd @@ -0,0 +1,12 @@ +extends Node + + +func _unhandled_input(event): + if event is InputEventKey: + if event.pressed: + match event.keycode: + KEY_R: + get_tree().paused = false + get_tree().change_scene_to_file("res://scenes/main.tscn") + KEY_T: + get_tree().quit() diff --git a/scripts/timer.gd b/scripts/timer.gd new file mode 100644 index 0000000..7862ef3 --- /dev/null +++ b/scripts/timer.gd @@ -0,0 +1,8 @@ +extends Label + +var time = 0 + + +func _process(delta): + set_text("Time: %02d:%02d" % [time / 60, fmod(time, 60)]) + time += delta diff --git a/scripts/tractor.gd b/scripts/tractor.gd new file mode 100644 index 0000000..c5f790a --- /dev/null +++ b/scripts/tractor.gd @@ -0,0 +1,25 @@ +extends RigidBody3D + +@export var dir = 1 +@export var speed = 25 +var map_limit = 40 + + +func _ready(): + look_at(global_transform.origin - Vector3.RIGHT * dir, Vector3.UP) + + +func _integrate_forces(_state: PhysicsDirectBodyState3D): + if dir == 1 and global_transform.origin.x >= map_limit: + global_transform.origin.x = -map_limit + if dir == -1 and global_transform.origin.x <= -map_limit: + global_transform.origin.x = map_limit + + linear_velocity = Vector3.RIGHT * dir * speed + + +func _on_body_entered(body): + if body is MovementController: + get_node("Horn").play() + get_owner().get_node("DeadLayer").show() + get_tree().paused = true diff --git a/shaders/checkbox.gdshader b/shaders/checkbox.gdshader new file mode 100644 index 0000000..8f43071 --- /dev/null +++ b/shaders/checkbox.gdshader @@ -0,0 +1,19 @@ +shader_type spatial; +varying vec3 world_position; + +void vertex() { world_position = VERTEX; } + +const float gridSize = 3.5; + +void fragment() { + vec3 pos = world_position; + pos /= gridSize; + pos += gridSize * 20.0; + // to offset a bug that appears when one of the coordinate is close to 0 + // can be tweaked if the bug is visible + pos.y += 1.0 * float(fract(float(int(pos.x * 2.0)) / 2.0)); + pos.z += float(fract(float(int(pos.y * 2.0)) / 2.0)); + vec3 col = vec3(fract(float(int(pos.z * 2.0)) / 2.0)); + ROUGHNESS = col.x / 2.0 + 0.2; + ALBEDO = col; +} diff --git a/shaders/sky.gdshader b/shaders/sky.gdshader new file mode 100644 index 0000000..5c04fe2 --- /dev/null +++ b/shaders/sky.gdshader @@ -0,0 +1,328 @@ +shader_type sky; +render_mode use_quarter_res_pass; + +// Originally based on +// https://godotshaders.com/shader/stylized-sky-shader-with-clouds/ but there's +// not much left + +group_uniforms sky; +uniform vec3 day_top_color : source_color = vec3(0.1, 0.6, 1.0); +uniform vec3 day_bottom_color : source_color = vec3(0.4, 0.8, 1.0); +uniform vec3 sunset_top_color : source_color = vec3(0.7, 0.75, 1.0); +uniform vec3 sunset_bottom_color : source_color = vec3(1.0, 0.5, 0.7); +uniform vec3 night_top_color : source_color = vec3(0.02, 0.0, 0.04); +uniform vec3 night_bottom_color : source_color = vec3(0.1, 0.0, 0.2); + +group_uniforms horizon; +uniform vec3 horizon_color : source_color = vec3(0.0, 0.7, 0.8); +uniform float horizon_blur : hint_range(0.0, 1.0, 0.01) = 0.05; + +group_uniforms sun; // First DirectionalLight3D will be the sun +uniform vec3 sun_color : source_color = vec3(10.0, 8.0, 1.0); +uniform vec3 sun_sunset_color : source_color = vec3(10.0, 0.0, 0.0); +uniform float sun_size : hint_range(0.01, 1.0) = 0.2; +uniform float sun_blur : hint_range(0.01, 20.0) = 10.0; + +group_uniforms moon; // Second DirectionalLight3D will be the moon +uniform vec3 moon_color : source_color = vec3(1.0, 0.95, 0.7); +uniform float moon_size : hint_range(0.01, 1.0) = 0.06; +uniform float moon_blur : hint_range(0.01, 10.0) = 0.1; + +group_uniforms clouds; +// Replaced by noise functions, unncomment if you want to use graphical +// textures +// uniform sampler2D clouds_top_texture : filter_linear_mipmap, +// hint_default_black; uniform sampler2D clouds_middle_texture : +// filter_linear_mipmap, hint_default_black; uniform sampler2D +// clouds_bottom_texture : filter_linear_mipmap, hint_default_black; +uniform vec3 clouds_edge_color : source_color = vec3(0.8, 0.8, 0.98); +uniform vec3 clouds_top_color : source_color = vec3(1.0, 1.0, 1.00); +uniform vec3 clouds_middle_color : source_color = vec3(0.92, 0.92, 0.98); +uniform vec3 clouds_bottom_color : source_color = vec3(0.83, 0.83, 0.94); +uniform float clouds_speed : hint_range(0.0, 20.0, 0.01) = 2.0; +uniform float clouds_direction : hint_range(-0.5, 0.5, 0.0) = 0.2; +uniform float clouds_scale : hint_range(0.0, 4.0, 0.01) = 1.0; +uniform float clouds_cutoff : hint_range(0.0, 1.0, 0.01) = 0.3; +uniform float clouds_fuzziness : hint_range(0.0, 2.0, 0.01) = 0.5; +// More weight is simply a darker color, useful for rain/storm +uniform float clouds_weight : hint_range(0.0, 1.0, 0.01) = 0.0; +uniform float clouds_blur : hint_range(0.0, 1.0, 0.01) = 0.25; + +group_uniforms stars; +// Stars should be at black background +uniform sampler2D stars_texture : filter_linear_mipmap, hint_default_black; +uniform float stars_speed : hint_range(0.0, 20.0, 0.01) = 1.0; + +group_uniforms settings; +uniform float overwritten_time = 0.0; + +//////////////////////////////////////////////////////////////////////////////////////////////////// +// Function for clouds noises. You can replace using "gen_fractal_ping_pong" +// with a simple texture reading. I was frustrated with the repeating texture +// that's why I included the algorithm in the code. Source: +// https://github.com/Auburn/FastNoiseLite/tree/master +const int PRIME_X = 501125321; +const int PRIME_Y = 1136930381; + +float lerp(float a, float b, float t) { return a + t * (b - a); } + +float cubic_lerp(float a, float b, float c, float d, float t) { + float p = d - c - (a - b); + return t * t * t * p + t * t * (a - b - p) + t * (c - a) + b; +} + +float ping_pong(float t) { + t -= trunc(t * 0.5) * 2.0; + return t < 1.0 ? t : 2.0 - t; +} + +int hash(int seed, int x_primed, int y_primed) { + return (seed ^ x_primed ^ y_primed) * 0x27d4eb2d; +} + +float val_coord(int seed, int x_primed, int y_primed) { + int hash = hash(seed, x_primed, y_primed); + hash *= hash; + hash ^= hash << 19; + return float(hash) * (1.0 / 2147483648.0); +} +float single_value_cubic(int seed, float x, float y) { + int x1 = int(floor(x)); + int y1 = int(floor(y)); + + float xs = x - float(x1); + float ys = y - float(y1); + + x1 *= PRIME_X; + y1 *= PRIME_Y; + int x0 = x1 - PRIME_X; + int y0 = y1 - PRIME_Y; + int x2 = x1 + PRIME_X; + int y2 = y1 + PRIME_Y; + int x3 = x1 + (PRIME_X << 1); + int y3 = y1 + (PRIME_Y << 1); + + return cubic_lerp( + cubic_lerp(val_coord(seed, x0, y0), val_coord(seed, x1, y0), + val_coord(seed, x2, y0), val_coord(seed, x3, y0), xs), + cubic_lerp(val_coord(seed, x0, y1), val_coord(seed, x1, y1), + val_coord(seed, x2, y1), val_coord(seed, x3, y1), xs), + cubic_lerp(val_coord(seed, x0, y2), val_coord(seed, x1, y2), + val_coord(seed, x2, y2), val_coord(seed, x3, y2), xs), + cubic_lerp(val_coord(seed, x0, y3), val_coord(seed, x1, y3), + val_coord(seed, x2, y3), val_coord(seed, x3, y3), xs), + ys) * + (1.0 / (1.5 * 1.5)); +} + +// Params can be change in the same way as in noise settings in Godot +const float FRACTAL_BOUNDING = 1.0 / 1.75; +const int OCTAVES = 5; +const float PING_PONG_STRENGTH = 2.0; +const float WEIGHTED_STRENGTH = 0.0; +const float GAIN = 0.5; +const float LACUNARITY = 2.0; + +float gen_fractal_ping_pong(vec2 pos, int seed, float frequency) { + float x = pos.x * frequency; + float y = pos.y * frequency; + float sum = 0.0; + float amp = FRACTAL_BOUNDING; + for (int i = 0; i < OCTAVES; i++) { + float noise = ping_pong((single_value_cubic(seed++, x, y) + 1.0) * + PING_PONG_STRENGTH); + sum += (noise - 0.5) * 2.0 * amp; + amp *= lerp(1.0, noise, WEIGHTED_STRENGTH); + x *= LACUNARITY; + y *= LACUNARITY; + amp *= GAIN; + } + return sum * 0.5 + 0.5; +} +//////////////////////////////////////////////////////////////////////////////////////////////////// + +// Function needed to calculate the phase of the moon +// Source: https://kelvinvanhoorn.com/2022/03/17/skybox-tutorial-part-1/ +float sphere_intersect(vec3 view_dir, vec3 sphere_pos, float radius) { + float b = dot(-sphere_pos, view_dir); + float c = dot(-sphere_pos, -sphere_pos) - pow(radius, 2); + float h = pow(b, 2) - c; + return h < 0.0 ? -1.0 : -b - sqrt(h); +} + +void sky() { + float time = overwritten_time != 0.0 ? overwritten_time : TIME; + + //////////////////// SKY + ////////////////////////////////////////////////////////////////////////// + float _eyedir_y = abs(sin(EYEDIR.y * PI * 0.5)); + + // The day color will be our base color + vec3 _sky_color = mix(day_bottom_color, day_top_color, _eyedir_y); + _sky_color = mix(_sky_color, vec3(0.0), + clamp((0.7 - clouds_cutoff) * clouds_weight, 0.0, 1.0)); + + float _sunset_amount = clamp(0.5 - abs(LIGHT0_DIRECTION.y), 0.0, 0.5) * 2.0; + // The sky should be more red around the west, on the opposite side you don't + // see it as much + float _sunset_distance = + clamp(1.0 - pow(distance(EYEDIR, LIGHT0_DIRECTION), 2), 0.0, 1.0); + vec3 _sky_sunset_color = + mix(sunset_bottom_color, sunset_top_color, _eyedir_y + 0.5); + _sky_sunset_color = mix(_sky_sunset_color, sunset_bottom_color, + _sunset_amount * _sunset_distance); + _sky_color = mix(_sky_color, _sky_sunset_color, _sunset_amount); + + float _night_amount = clamp(-LIGHT0_DIRECTION.y + 0.7, 0.0, 1.0); + vec3 _sky_night_color = mix(night_bottom_color, night_top_color, _eyedir_y); + _sky_color = mix(_sky_color, _sky_night_color, _night_amount); + + // Final sky color + COLOR = _sky_color; + + //////////////////// HORIZON + ////////////////////////////////////////////////////////////////////// + float _horizon_amount = 0.0; + if (EYEDIR.y < 0.0) { + _horizon_amount = clamp(abs(EYEDIR.y) / horizon_blur, 0.0, 1.0); + // Mixing with the color of the night sky to make the horizon darker + vec3 _horizon_color = mix(horizon_color, _sky_color, _night_amount * 0.9); + // And if there are many dark clouds, we also make the horizon darker + _horizon_color = mix(_horizon_color, vec3(0.0), + (1.0 - clouds_cutoff) * clouds_weight * 0.7); + COLOR = mix(COLOR, _horizon_color, _horizon_amount); + } + + //////////////////// MOON + ///////////////////////////////////////////////////////////////////////// + float _moon_amount = 0.0; + if (LIGHT1_ENABLED) { + // Bigger moon near the horizon + float _moon_size = + moon_size + cos(LIGHT1_DIRECTION.y * PI) * moon_size * 0.25; + float _moon_distance = distance(EYEDIR, LIGHT1_DIRECTION) / _moon_size; + // Finding moon disc and edge blur + _moon_amount = clamp((1.0 - _moon_distance) / moon_blur, 0.0, 1.0); + if (_moon_amount > 0.0) { + // Moon illumination depending on the position of the sun + float _moon_intersect = + sphere_intersect(EYEDIR, LIGHT1_DIRECTION, _moon_size); + vec3 _moon_normal = + normalize(LIGHT1_DIRECTION - EYEDIR * _moon_intersect); + // Power on the result gives a better effect + float _moon_n_dot_l = + pow(clamp(dot(_moon_normal, -LIGHT0_DIRECTION), 0.05, 1.0), 2); + // Hiding the moon behind the horizon + _moon_amount *= 1.0 - _horizon_amount; + COLOR = mix(COLOR, moon_color, _moon_n_dot_l * _moon_amount); + } + } + + //////////////////// SUN + ////////////////////////////////////////////////////////////////////////// + float _sun_distance = 0.0; + if (LIGHT0_ENABLED) { + _sun_distance = distance(EYEDIR, LIGHT0_DIRECTION); + // Bigger sun near the horizon + float _sun_size = sun_size + cos(LIGHT0_DIRECTION.y * PI) * sun_size * 0.25; + // Finding sun disc and edge blur + float _sun_amount = + clamp((1.0 - _sun_distance / _sun_size) / sun_blur, 0.0, 1.0); + if (_sun_amount > 0.0) { + // Changing color of the sun during sunset + float _sunset_amount = 1.0; + if (LIGHT0_DIRECTION.y > 0.0) + _sunset_amount = clamp(cos(LIGHT0_DIRECTION.y * PI), 0.0, 1.0); + vec3 _sun_color = mix(sun_color, sun_sunset_color, _sunset_amount); + // Hiding the sun behind the moon + _sun_amount = clamp(_sun_amount * (1.0 - _moon_amount), 0.0, 1.0); + // Hiding the sun behind the horizon + _sun_amount *= 1.0 - _horizon_amount; + // Leveling the "glow" in color + if (_sun_color.r > 1.0 || _sun_color.g > 1.0 || _sun_color.b > 1.0) + _sun_color *= _sun_amount; + COLOR = mix(COLOR, _sun_color, _sun_amount); + } + } + + //////////////////// STARS + //////////////////////////////////////////////////////////////////// + vec2 _sky_uv = EYEDIR.xz / sqrt(EYEDIR.y); + if (EYEDIR.y > -0.01 && LIGHT0_DIRECTION.y < 0.0) { + // Stars UV rotation + float _stars_speed_cos = cos(stars_speed * time * 0.005); + float _stars_speed_sin = sin(stars_speed * time * 0.005); + vec2 _stars_uv = + vec2(_sky_uv.x * _stars_speed_cos - _sky_uv.y * _stars_speed_sin, + _sky_uv.x * _stars_speed_sin + _sky_uv.y * _stars_speed_cos); + // Stars texture + vec3 _stars_color = + texture(stars_texture, _stars_uv).rgb * -LIGHT0_DIRECTION.y; + // Hiding stars behind the moon + _stars_color *= 1.0 - _moon_amount; + COLOR += _stars_color; + } + + //////////////////// CLOUDS + /////////////////////////////////////////////////////////////////// + if (EYEDIR.y > 0.0) { + // Clouds UV movement direction + float _clouds_speed = time * clouds_speed * 0.01; + float _sin_x = sin(clouds_direction * PI * 2.0); + float _cos_y = cos(clouds_direction * PI * 2.0); + // I using 3 levels of clouds. Top is the lightes and botom the darkest. + // The speed of movement (and direction a little) is different for the + // illusion of the changing shape of the clouds. + vec2 _clouds_movement = vec2(_sin_x, _cos_y) * _clouds_speed; + // float _noise_top = texture( clouds_top_texture, ( + //_sky_uv + _clouds_movement ) * clouds_scale ).r; + float _noise_top = gen_fractal_ping_pong( + (_sky_uv + _clouds_movement) * clouds_scale, 0, 0.5); + _clouds_movement = + vec2(_sin_x * 0.97, _cos_y * 1.07) * _clouds_speed * 0.89; + // float _noise_middle = texture( clouds_middle_texture, ( + //_sky_uv + //+ _clouds_movement ) * clouds_scale ).r; + float _noise_middle = gen_fractal_ping_pong( + (_sky_uv + _clouds_movement) * clouds_scale, 1, 0.75); + _clouds_movement = + vec2(_sin_x * 1.01, _cos_y * 0.89) * _clouds_speed * 0.79; + // float _noise_bottom = texture( clouds_bottom_texture, ( + //_sky_uv + //+ _clouds_movement ) * clouds_scale ).r; + float _noise_bottom = gen_fractal_ping_pong( + (_sky_uv + _clouds_movement) * clouds_scale, 2, 1.0); + // Smoothstep with the addition of a noise value from a lower level gives + // a nice, deep result + _noise_bottom = smoothstep(clouds_cutoff, clouds_cutoff + clouds_fuzziness, + _noise_bottom); + _noise_middle = smoothstep(clouds_cutoff, clouds_cutoff + clouds_fuzziness, + _noise_middle + _noise_bottom * 0.2) * + 1.1; + _noise_top = smoothstep(clouds_cutoff, clouds_cutoff + clouds_fuzziness, + _noise_top + _noise_middle * 0.4) * + 1.2; + float _clouds_amount = + clamp(_noise_top + _noise_middle + _noise_bottom, 0.0, 1.0); + // Fading clouds near the horizon + _clouds_amount *= clamp(abs(EYEDIR.y) / clouds_blur, 0.0, 1.0); + + vec3 _clouds_color = mix(vec3(0.0), clouds_top_color, _noise_top); + _clouds_color = mix(_clouds_color, clouds_middle_color, _noise_middle); + _clouds_color = mix(_clouds_color, clouds_bottom_color, _noise_bottom); + // The edge color gives a nice smooth edge, you can try turning this off + // if you need sharper edges + _clouds_color = mix(clouds_edge_color, _clouds_color, _noise_top); + // The sun passing through the clouds effect + _clouds_color = mix(_clouds_color, clamp(sun_color, 0.0, 1.0), + pow(1.0 - clamp(_sun_distance, 0.0, 1.0), 5)); + // Color combined with sunset condition + _clouds_color = + mix(_clouds_color, sunset_bottom_color, _sunset_amount * 0.75); + // Color depending on the "progress" of the night. + _clouds_color = + mix(_clouds_color, _sky_color, clamp(_night_amount, 0.0, 0.98)); + _clouds_color = mix(_clouds_color, vec3(0.0), clouds_weight * 0.9); + COLOR = mix(COLOR, _clouds_color, _clouds_amount); + } +} diff --git a/shaders/water.gdshader b/shaders/water.gdshader new file mode 100644 index 0000000..6894db3 --- /dev/null +++ b/shaders/water.gdshader @@ -0,0 +1,103 @@ +shader_type spatial; +render_mode blend_mix, depth_draw_opaque, cull_back, diffuse_lambert, + specular_schlick_ggx; + +uniform float WaveSpeed = 0.00999999977648; +uniform sampler2D tex_frg_19; +uniform sampler2D tex_frg_11; +uniform float WaveIntensity = 0.20000000298023; +uniform vec4 WaveColor : source_color = + vec4(0.000000, 1.000000, 0.986607, 1.000000); +uniform vec4 WaterColor : source_color = + vec4(0.000000, 0.169643, 1.000000, 1.000000); +uniform float FoamSize = 0.10000000149012; +uniform sampler2D depth_tex_frg_2 : hint_depth_texture; +uniform float WaterOpacity = 0.40000000596046; + +void fragment() { + // FloatParameter:23 + float n_out23p0 = WaveSpeed; + + // FloatOp:24 + float n_in24p1 = -1.00000; + float n_out24p0 = n_out23p0 * n_in24p1; + + // Input:21 + float n_out21p0 = TIME; + + // UVFunc:20 + vec2 n_out20p0 = vec2(n_out21p0) * vec2(n_out24p0) + UV; + + // Texture2D:19 + vec4 n_out19p0 = texture(tex_frg_19, n_out20p0); + + // Input:18 + float n_out18p0 = TIME; + + // UVFunc:17 + vec2 n_out17p0 = vec2(n_out18p0) * vec2(n_out23p0) + UV; + + // Texture2D:11 + vec4 n_out11p0 = texture(tex_frg_11, n_out17p0); + + // Mix:22 + float n_in22p2 = 0.50000; + float n_out22p0 = mix(n_out19p0.x, n_out11p0.x, n_in22p2); + + // FloatFunc:13 + float n_out13p0 = round(n_out22p0); + + // FloatParameter:28 + float n_out28p0 = WaveIntensity; + + // FloatOp:14 + float n_out14p0 = n_out13p0 * n_out28p0; + + // ColorParameter:27 + vec4 n_out27p0 = WaveColor; + + // VectorOp:15 + vec3 n_out15p0 = vec3(n_out14p0) * vec3(n_out27p0.xyz); + + // ColorParameter:26 + vec4 n_out26p0 = WaterColor; + + // VectorOp:12 + vec3 n_out12p0 = n_out15p0 + vec3(n_out26p0.xyz); + + // FloatParameter:29 + float n_out29p0 = FoamSize; + + float n_out2p0; + // ProximityFade:2 + { + float __depth_tex = texture(depth_tex_frg_2, SCREEN_UV).r; + vec4 __depth_world_pos = + INV_PROJECTION_MATRIX * vec4(SCREEN_UV * 2.0 - 1.0, __depth_tex, 1.0); + __depth_world_pos.xyz /= __depth_world_pos.w; + n_out2p0 = clamp(1.0 - smoothstep(__depth_world_pos.z + n_out29p0, + __depth_world_pos.z, VERTEX.z), + 0.0, 1.0); + } + + // FloatFunc:3 + float n_out3p0 = 1.0 - n_out2p0; + + // FloatFunc:4 + float n_out4p0 = round(n_out3p0); + + // FloatParameter:30 + float n_out30p0 = WaterOpacity; + + // FloatOp:10 + float n_out10p0 = n_out4p0 + n_out30p0; + + // FloatOp:25 + float n_in25p1 = 1.00000; + float n_out25p0 = n_out4p0 * n_in25p1; + + // Output:0 + ALBEDO = n_out12p0; + ALPHA = n_out10p0; + EMISSION = vec3(n_out25p0); +}